diff --git a/tests/baselines/reference/NonNullableInNonStrictMode.js b/tests/baselines/reference/NonNullableInNonStrictMode.js deleted file mode 100644 index e5a577ed7ba88..0000000000000 --- a/tests/baselines/reference/NonNullableInNonStrictMode.js +++ /dev/null @@ -1,21 +0,0 @@ -//// [NonNullableInNonStrictMode.ts] -// These should all resolve to never - -type T0 = NonNullable; -type T1 = NonNullable; -type T2 = null & {}; -type T3 = undefined & {}; -type T4 = null & undefined; -type T6 = null & { a: string } & {}; - -// Repro from #50519 - -type NonNullableNew = T & {}; -type NonNullableOld = T extends null | undefined ? never : T; - -type IsNullWithoutStrictNullChecks = NonNullableNew; -type IsAlwaysNever = NonNullableOld; - - -//// [NonNullableInNonStrictMode.js] -// These should all resolve to never diff --git a/tests/baselines/reference/NonNullableInNonStrictMode.symbols b/tests/baselines/reference/NonNullableInNonStrictMode.symbols deleted file mode 100644 index b01bdc9cfbeee..0000000000000 --- a/tests/baselines/reference/NonNullableInNonStrictMode.symbols +++ /dev/null @@ -1,45 +0,0 @@ -=== tests/cases/compiler/NonNullableInNonStrictMode.ts === -// These should all resolve to never - -type T0 = NonNullable; ->T0 : Symbol(T0, Decl(NonNullableInNonStrictMode.ts, 0, 0)) ->NonNullable : Symbol(NonNullable, Decl(lib.es5.d.ts, --, --)) - -type T1 = NonNullable; ->T1 : Symbol(T1, Decl(NonNullableInNonStrictMode.ts, 2, 28)) ->NonNullable : Symbol(NonNullable, Decl(lib.es5.d.ts, --, --)) - -type T2 = null & {}; ->T2 : Symbol(T2, Decl(NonNullableInNonStrictMode.ts, 3, 33)) - -type T3 = undefined & {}; ->T3 : Symbol(T3, Decl(NonNullableInNonStrictMode.ts, 4, 20)) - -type T4 = null & undefined; ->T4 : Symbol(T4, Decl(NonNullableInNonStrictMode.ts, 5, 25)) - -type T6 = null & { a: string } & {}; ->T6 : Symbol(T6, Decl(NonNullableInNonStrictMode.ts, 6, 27)) ->a : Symbol(a, Decl(NonNullableInNonStrictMode.ts, 7, 18)) - -// Repro from #50519 - -type NonNullableNew = T & {}; ->NonNullableNew : Symbol(NonNullableNew, Decl(NonNullableInNonStrictMode.ts, 7, 36)) ->T : Symbol(T, Decl(NonNullableInNonStrictMode.ts, 11, 20)) ->T : Symbol(T, Decl(NonNullableInNonStrictMode.ts, 11, 20)) - -type NonNullableOld = T extends null | undefined ? never : T; ->NonNullableOld : Symbol(NonNullableOld, Decl(NonNullableInNonStrictMode.ts, 11, 32)) ->T : Symbol(T, Decl(NonNullableInNonStrictMode.ts, 12, 20)) ->T : Symbol(T, Decl(NonNullableInNonStrictMode.ts, 12, 20)) ->T : Symbol(T, Decl(NonNullableInNonStrictMode.ts, 12, 20)) - -type IsNullWithoutStrictNullChecks = NonNullableNew; ->IsNullWithoutStrictNullChecks : Symbol(IsNullWithoutStrictNullChecks, Decl(NonNullableInNonStrictMode.ts, 12, 64)) ->NonNullableNew : Symbol(NonNullableNew, Decl(NonNullableInNonStrictMode.ts, 7, 36)) - -type IsAlwaysNever = NonNullableOld; ->IsAlwaysNever : Symbol(IsAlwaysNever, Decl(NonNullableInNonStrictMode.ts, 14, 58)) ->NonNullableOld : Symbol(NonNullableOld, Decl(NonNullableInNonStrictMode.ts, 11, 32)) - diff --git a/tests/baselines/reference/NonNullableInNonStrictMode.types b/tests/baselines/reference/NonNullableInNonStrictMode.types deleted file mode 100644 index cb2894ce0526b..0000000000000 --- a/tests/baselines/reference/NonNullableInNonStrictMode.types +++ /dev/null @@ -1,43 +0,0 @@ -=== tests/cases/compiler/NonNullableInNonStrictMode.ts === -// These should all resolve to never - -type T0 = NonNullable; ->T0 : never ->null : null - -type T1 = NonNullable; ->T1 : never - -type T2 = null & {}; ->T2 : never ->null : null - -type T3 = undefined & {}; ->T3 : never - -type T4 = null & undefined; ->T4 : never ->null : null - -type T6 = null & { a: string } & {}; ->T6 : never ->null : null ->a : string - -// Repro from #50519 - -type NonNullableNew = T & {}; ->NonNullableNew : NonNullableNew - -type NonNullableOld = T extends null | undefined ? never : T; ->NonNullableOld : NonNullableOld ->null : null - -type IsNullWithoutStrictNullChecks = NonNullableNew; ->IsNullWithoutStrictNullChecks : never ->null : null - -type IsAlwaysNever = NonNullableOld; ->IsAlwaysNever : never ->null : null - diff --git a/tests/baselines/reference/cancellationWhenfindingAllRefsOnDefinition.3.baseline.jsonc b/tests/baselines/reference/cancellationWhenfindingAllRefsOnDefinition.3.baseline.jsonc deleted file mode 100644 index fac647eb0ac2e..0000000000000 --- a/tests/baselines/reference/cancellationWhenfindingAllRefsOnDefinition.3.baseline.jsonc +++ /dev/null @@ -1,116 +0,0 @@ -// === /tests/cases/fourslash/findAllRefsOnDefinition-import.ts === -// export class Test{ -// -// constructor(){ -// -// } -// -// public /*FIND ALL REFS*/[|start|](){ -// return this; -// } -// -// public stop(){ -// return this; -// } -// } - -// === /tests/cases/fourslash/findAllRefsOnDefinition.ts === -// import Second = require("./findAllRefsOnDefinition-import"); -// -// var second = new Second.Test() -// second.[|start|](); -// second.stop(); - -[ - { - "definition": { - "containerKind": "", - "containerName": "", - "fileName": "/tests/cases/fourslash/findAllRefsOnDefinition-import.ts", - "kind": "method", - "name": "(method) Test.start(): this", - "textSpan": { - "start": 58, - "length": 5 - }, - "displayParts": [ - { - "text": "(", - "kind": "punctuation" - }, - { - "text": "method", - "kind": "text" - }, - { - "text": ")", - "kind": "punctuation" - }, - { - "text": " ", - "kind": "space" - }, - { - "text": "Test", - "kind": "className" - }, - { - "text": ".", - "kind": "punctuation" - }, - { - "text": "start", - "kind": "methodName" - }, - { - "text": "(", - "kind": "punctuation" - }, - { - "text": ")", - "kind": "punctuation" - }, - { - "text": ":", - "kind": "punctuation" - }, - { - "text": " ", - "kind": "space" - }, - { - "text": "this", - "kind": "keyword" - } - ], - "contextSpan": { - "start": 51, - "length": 42 - } - }, - "references": [ - { - "textSpan": { - "start": 58, - "length": 5 - }, - "fileName": "/tests/cases/fourslash/findAllRefsOnDefinition-import.ts", - "contextSpan": { - "start": 51, - "length": 42 - }, - "isWriteAccess": true, - "isDefinition": true - }, - { - "textSpan": { - "start": 100, - "length": 5 - }, - "fileName": "/tests/cases/fourslash/findAllRefsOnDefinition.ts", - "isWriteAccess": false, - "isDefinition": false - } - ] - } -] \ No newline at end of file diff --git a/tests/baselines/reference/findReferencesAfterEdit.2.baseline.jsonc b/tests/baselines/reference/findReferencesAfterEdit.2.baseline.jsonc deleted file mode 100644 index c4ffdfb45bd7f..0000000000000 --- a/tests/baselines/reference/findReferencesAfterEdit.2.baseline.jsonc +++ /dev/null @@ -1,195 +0,0 @@ -// === /tests/cases/fourslash/a.ts === -// interface A { -// /*FIND ALL REFS*/[|foo|]: string; -// } - -// === /tests/cases/fourslash/b.ts === -// /// -// -// -// function foo(x: A) { -// x.[|foo|] -// } - -[ - { - "definition": { - "containerKind": "", - "containerName": "", - "fileName": "/tests/cases/fourslash/a.ts", - "kind": "property", - "name": "(property) A.foo: string", - "textSpan": { - "start": 18, - "length": 3 - }, - "displayParts": [ - { - "text": "(", - "kind": "punctuation" - }, - { - "text": "property", - "kind": "text" - }, - { - "text": ")", - "kind": "punctuation" - }, - { - "text": " ", - "kind": "space" - }, - { - "text": "A", - "kind": "interfaceName" - }, - { - "text": ".", - "kind": "punctuation" - }, - { - "text": "foo", - "kind": "propertyName" - }, - { - "text": ":", - "kind": "punctuation" - }, - { - "text": " ", - "kind": "space" - }, - { - "text": "string", - "kind": "keyword" - } - ], - "contextSpan": { - "start": 18, - "length": 12 - } - }, - "references": [ - { - "textSpan": { - "start": 18, - "length": 3 - }, - "fileName": "/tests/cases/fourslash/a.ts", - "contextSpan": { - "start": 18, - "length": 12 - }, - "isWriteAccess": false, - "isDefinition": true - }, - { - "textSpan": { - "start": 57, - "length": 3 - }, - "fileName": "/tests/cases/fourslash/b.ts", - "isWriteAccess": false, - "isDefinition": false - } - ] - } -] - -// === /tests/cases/fourslash/a.ts === -// interface A { -// [|foo|]: string; -// } - -// === /tests/cases/fourslash/b.ts === -// /// -// -// -// function foo(x: A) { -// x./*FIND ALL REFS*/[|foo|] -// } - -[ - { - "definition": { - "containerKind": "", - "containerName": "", - "fileName": "/tests/cases/fourslash/a.ts", - "kind": "property", - "name": "(property) A.foo: string", - "textSpan": { - "start": 18, - "length": 3 - }, - "displayParts": [ - { - "text": "(", - "kind": "punctuation" - }, - { - "text": "property", - "kind": "text" - }, - { - "text": ")", - "kind": "punctuation" - }, - { - "text": " ", - "kind": "space" - }, - { - "text": "A", - "kind": "interfaceName" - }, - { - "text": ".", - "kind": "punctuation" - }, - { - "text": "foo", - "kind": "propertyName" - }, - { - "text": ":", - "kind": "punctuation" - }, - { - "text": " ", - "kind": "space" - }, - { - "text": "string", - "kind": "keyword" - } - ], - "contextSpan": { - "start": 18, - "length": 12 - } - }, - "references": [ - { - "textSpan": { - "start": 18, - "length": 3 - }, - "fileName": "/tests/cases/fourslash/a.ts", - "contextSpan": { - "start": 18, - "length": 12 - }, - "isWriteAccess": false - }, - { - "textSpan": { - "start": 57, - "length": 3 - }, - "fileName": "/tests/cases/fourslash/b.ts", - "isWriteAccess": false - } - ] - } -] \ No newline at end of file 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 12d886ed02ffe..7eb455e3927d9 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 @@ -1,4 +1,4 @@ -Info 0 [16:00:07.000] Provided types map file "/typesMap.json" doesn't exist +Info 0 [00:00:07.000] Provided types map file "/typesMap.json" doesn't exist Creating project service //// [/c/foo.ts] import {y} from "bar" @@ -10,44 +10,44 @@ FsWatches:: FsWatchesRecursive:: -Info 1 [16:00:08.000] Search path: /c -Info 2 [16:00:09.000] For info: /c/foo.ts :: No config files found. -Info 3 [16:00:10.000] Plugins were requested but not running in environment that supports 'require'. Nothing will be loaded -Info 4 [16:00:11.000] Starting updateGraphWorker: Project: /dev/null/inferredProject1* -Info 5 [16:00:12.000] DirectoryWatcher:: Added:: WatchInfo: /c/node_modules 1 undefined Project: /dev/null/inferredProject1* WatchType: Failed Lookup Locations -Info 6 [16:00:13.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /c/node_modules 1 undefined Project: /dev/null/inferredProject1* WatchType: Failed Lookup Locations -Info 7 [16:00:14.000] DirectoryWatcher:: Added:: WatchInfo: /c 0 undefined Project: /dev/null/inferredProject1* WatchType: Failed Lookup Locations -Info 8 [16:00:15.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /c 0 undefined Project: /dev/null/inferredProject1* WatchType: Failed Lookup Locations -Info 9 [16:00:16.000] DirectoryWatcher:: Added:: WatchInfo: /c/node_modules/@types 1 undefined Project: /dev/null/inferredProject1* WatchType: Type roots -Info 10 [16:00:17.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /c/node_modules/@types 1 undefined Project: /dev/null/inferredProject1* WatchType: Type roots -Info 11 [16:00:18.000] Finishing updateGraphWorker: Project: /dev/null/inferredProject1* Version: 1 structureChanged: true structureIsReused:: Not Elapsed:: *ms -Info 12 [16:00:19.000] Project '/dev/null/inferredProject1*' (Inferred) -Info 13 [16:00:20.000] Files (1) +Info 1 [00:00:08.000] Search path: /c +Info 2 [00:00:09.000] For info: /c/foo.ts :: No config files found. +Info 3 [00:00:10.000] Plugins were requested but not running in environment that supports 'require'. Nothing will be loaded +Info 4 [00:00:11.000] Starting updateGraphWorker: Project: /dev/null/inferredProject1* +Info 5 [00:00:12.000] DirectoryWatcher:: Added:: WatchInfo: /c/node_modules 1 undefined Project: /dev/null/inferredProject1* WatchType: Failed Lookup Locations +Info 6 [00:00:13.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /c/node_modules 1 undefined Project: /dev/null/inferredProject1* WatchType: Failed Lookup Locations +Info 7 [00:00:14.000] DirectoryWatcher:: Added:: WatchInfo: /c 0 undefined Project: /dev/null/inferredProject1* WatchType: Failed Lookup Locations +Info 8 [00:00:15.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /c 0 undefined Project: /dev/null/inferredProject1* WatchType: Failed Lookup Locations +Info 9 [00:00:16.000] DirectoryWatcher:: Added:: WatchInfo: /c/node_modules/@types 1 undefined Project: /dev/null/inferredProject1* WatchType: Type roots +Info 10 [00:00:17.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /c/node_modules/@types 1 undefined Project: /dev/null/inferredProject1* WatchType: Type roots +Info 11 [00:00:18.000] Finishing updateGraphWorker: Project: /dev/null/inferredProject1* Version: 1 structureChanged: true structureIsReused:: Not Elapsed:: *ms +Info 12 [00:00:19.000] Project '/dev/null/inferredProject1*' (Inferred) +Info 13 [00:00:20.000] Files (1) /c/foo.ts foo.ts Root file specified for compilation -Info 14 [16:00:21.000] ----------------------------------------------- -Info 15 [16:00:22.000] Project '/dev/null/inferredProject1*' (Inferred) -Info 15 [16:00:23.000] Files (1) - -Info 15 [16:00:24.000] ----------------------------------------------- -Info 15 [16:00:25.000] Open files: -Info 15 [16:00:26.000] FileName: /c/foo.ts ProjectRootPath: undefined -Info 15 [16:00:27.000] Projects: /dev/null/inferredProject1* -Info 15 [16:00:28.000] getSemanticDiagnostics:: /c/foo.ts:: 1 -Info 16 [16:00:29.000] foo.ts(1,17): error TS2792: Cannot find module 'bar'. Did you mean to set the 'moduleResolution' option to 'node', or to add aliases to the 'paths' option? - -Info 17 [16:00:30.000] fileExists:: [{"key":"/c/tsconfig.json","count":1},{"key":"/c/jsconfig.json","count":1},{"key":"/tsconfig.json","count":1},{"key":"/jsconfig.json","count":1},{"key":"/c/bar.ts","count":1},{"key":"/c/bar.tsx","count":1},{"key":"/c/bar.d.ts","count":1},{"key":"/bar.ts","count":1},{"key":"/bar.tsx","count":1},{"key":"/bar.d.ts","count":1},{"key":"/c/bar.js","count":1},{"key":"/c/bar.jsx","count":1},{"key":"/bar.js","count":1},{"key":"/bar.jsx","count":1},{"key":"/c/package.json","count":1},{"key":"/package.json","count":1}] -Info 18 [16:00:31.000] directoryExists:: [{"key":"/c","count":3},{"key":"/","count":2},{"key":"/c/node_modules","count":2},{"key":"/node_modules","count":1},{"key":"/c/node_modules/@types","count":2},{"key":"/node_modules/@types","count":1}] -Info 19 [16:00:32.000] getDirectories:: [] -Info 20 [16:00:33.000] readFile:: [{"key":"/c/foo.ts","count":1}] -Info 21 [16:00:34.000] readDirectory:: [] -Info 22 [16:00:37.000] DirectoryWatcher:: Triggered with /c/bar.d.ts :: WatchInfo: /c 0 undefined Project: /dev/null/inferredProject1* WatchType: Failed Lookup Locations -Info 23 [16:00:38.000] Scheduled: /dev/null/inferredProject1*FailedLookupInvalidation -Info 24 [16:00:39.000] Elapsed:: *ms DirectoryWatcher:: Triggered with /c/bar.d.ts :: WatchInfo: /c 0 undefined Project: /dev/null/inferredProject1* WatchType: Failed Lookup Locations +Info 14 [00:00:21.000] ----------------------------------------------- +Info 15 [00:00:22.000] Project '/dev/null/inferredProject1*' (Inferred) +Info 15 [00:00:23.000] Files (1) + +Info 15 [00:00:24.000] ----------------------------------------------- +Info 15 [00:00:25.000] Open files: +Info 15 [00:00:26.000] FileName: /c/foo.ts ProjectRootPath: undefined +Info 15 [00:00:27.000] Projects: /dev/null/inferredProject1* +Info 15 [00:00:28.000] getSemanticDiagnostics:: /c/foo.ts:: 1 +Info 16 [00:00:29.000] foo.ts(1,17): error TS2792: Cannot find module 'bar'. Did you mean to set the 'moduleResolution' option to 'node', or to add aliases to the 'paths' option? + +Info 17 [00:00:30.000] fileExists:: [{"key":"/c/tsconfig.json","count":1},{"key":"/c/jsconfig.json","count":1},{"key":"/tsconfig.json","count":1},{"key":"/jsconfig.json","count":1},{"key":"/c/bar.ts","count":1},{"key":"/c/bar.tsx","count":1},{"key":"/c/bar.d.ts","count":1},{"key":"/bar.ts","count":1},{"key":"/bar.tsx","count":1},{"key":"/bar.d.ts","count":1},{"key":"/c/bar.js","count":1},{"key":"/c/bar.jsx","count":1},{"key":"/bar.js","count":1},{"key":"/bar.jsx","count":1},{"key":"/c/package.json","count":1},{"key":"/package.json","count":1}] +Info 18 [00:00:31.000] directoryExists:: [{"key":"/c","count":3},{"key":"/","count":2},{"key":"/c/node_modules","count":2},{"key":"/node_modules","count":1},{"key":"/c/node_modules/@types","count":2},{"key":"/node_modules/@types","count":1}] +Info 19 [00:00:32.000] getDirectories:: [] +Info 20 [00:00:33.000] readFile:: [{"key":"/c/foo.ts","count":1}] +Info 21 [00:00:34.000] readDirectory:: [] +Info 22 [00:00:37.000] DirectoryWatcher:: Triggered with /c/bar.d.ts :: WatchInfo: /c 0 undefined Project: /dev/null/inferredProject1* WatchType: Failed Lookup Locations +Info 23 [00:00:38.000] Scheduled: /dev/null/inferredProject1*FailedLookupInvalidation +Info 24 [00:00:39.000] Elapsed:: *ms DirectoryWatcher:: Triggered with /c/bar.d.ts :: WatchInfo: /c 0 undefined Project: /dev/null/inferredProject1* WatchType: Failed Lookup Locations Before running timeout callbacks //// [/c/bar.d.ts] export var y = 1 @@ -65,9 +65,9 @@ FsWatches:: FsWatchesRecursive:: -Info 25 [16:00:40.000] Running: /dev/null/inferredProject1*FailedLookupInvalidation -Info 26 [16:00:41.000] Scheduled: /dev/null/inferredProject1* -Info 27 [16:00:42.000] Scheduled: *ensureProjectForOpenFiles* +Info 25 [00:00:40.000] Running: /dev/null/inferredProject1*FailedLookupInvalidation +Info 26 [00:00:41.000] Scheduled: /dev/null/inferredProject1* +Info 27 [00:00:42.000] Scheduled: *ensureProjectForOpenFiles* After running timeout callbacks PolledWatches:: @@ -82,13 +82,13 @@ FsWatches:: FsWatchesRecursive:: -Info 28 [16:00:43.000] Starting updateGraphWorker: Project: /dev/null/inferredProject1* -Info 29 [16:00:44.000] FileWatcher:: Added:: WatchInfo: /c/bar.d.ts 500 undefined WatchType: Closed Script info -Info 30 [16:00:45.000] DirectoryWatcher:: Close:: WatchInfo: /c/node_modules 1 undefined Project: /dev/null/inferredProject1* WatchType: Failed Lookup Locations -Info 31 [16:00:46.000] Elapsed:: *ms DirectoryWatcher:: Close:: WatchInfo: /c/node_modules 1 undefined Project: /dev/null/inferredProject1* WatchType: Failed Lookup Locations -Info 32 [16:00:47.000] Finishing updateGraphWorker: Project: /dev/null/inferredProject1* Version: 2 structureChanged: true structureIsReused:: SafeModules Elapsed:: *ms -Info 33 [16:00:48.000] Project '/dev/null/inferredProject1*' (Inferred) -Info 34 [16:00:49.000] Files (2) +Info 28 [00:00:43.000] Starting updateGraphWorker: Project: /dev/null/inferredProject1* +Info 29 [00:00:44.000] FileWatcher:: Added:: WatchInfo: /c/bar.d.ts 500 undefined WatchType: Closed Script info +Info 30 [00:00:45.000] DirectoryWatcher:: Close:: WatchInfo: /c/node_modules 1 undefined Project: /dev/null/inferredProject1* WatchType: Failed Lookup Locations +Info 31 [00:00:46.000] Elapsed:: *ms DirectoryWatcher:: Close:: WatchInfo: /c/node_modules 1 undefined Project: /dev/null/inferredProject1* WatchType: Failed Lookup Locations +Info 32 [00:00:47.000] Finishing updateGraphWorker: Project: /dev/null/inferredProject1* Version: 2 structureChanged: true structureIsReused:: SafeModules Elapsed:: *ms +Info 33 [00:00:48.000] Project '/dev/null/inferredProject1*' (Inferred) +Info 34 [00:00:49.000] Files (2) /c/bar.d.ts /c/foo.ts @@ -98,10 +98,10 @@ Info 34 [16:00:49.000] Files (2) foo.ts Root file specified for compilation -Info 35 [16:00:50.000] ----------------------------------------------- -Info 36 [16:00:51.000] getSemanticDiagnostics:: /c/foo.ts:: 0 -Info 37 [16:00:52.000] fileExists:: [{"key":"/c/bar.ts","count":1},{"key":"/c/bar.tsx","count":1},{"key":"/c/bar.d.ts","count":3}] -Info 38 [16:00:53.000] directoryExists:: [{"key":"/c","count":1},{"key":"/c/node_modules/@types","count":1},{"key":"/node_modules/@types","count":1}] -Info 39 [16:00:54.000] getDirectories:: [] -Info 40 [16:00:55.000] readFile:: [{"key":"/c/bar.d.ts","count":1}] -Info 41 [16:00:56.000] readDirectory:: [] \ No newline at end of file +Info 35 [00:00:50.000] ----------------------------------------------- +Info 36 [00:00:51.000] getSemanticDiagnostics:: /c/foo.ts:: 0 +Info 37 [00:00:52.000] fileExists:: [{"key":"/c/bar.ts","count":1},{"key":"/c/bar.tsx","count":1},{"key":"/c/bar.d.ts","count":3}] +Info 38 [00:00:53.000] directoryExists:: [{"key":"/c","count":1},{"key":"/c/node_modules/@types","count":1},{"key":"/node_modules/@types","count":1}] +Info 39 [00:00:54.000] getDirectories:: [] +Info 40 [00:00:55.000] readFile:: [{"key":"/c/bar.d.ts","count":1}] +Info 41 [00:00:56.000] readDirectory:: [] \ No newline at end of file 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 b599ebbf1abbe..f6e9ceca25363 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 @@ -1,4 +1,4 @@ -Info 0 [16:00:27.000] Provided types map file "/typesMap.json" doesn't exist +Info 0 [00:00:27.000] Provided types map file "/typesMap.json" doesn't exist Creating project service //// [/user/username/rootfolder/otherfolder/a/b/app.ts] import _ from 'lodash'; @@ -50,11 +50,11 @@ FsWatches:: FsWatchesRecursive:: -Info 1 [16:00:28.000] Search path: /user/username/rootfolder/otherfolder/a/b -Info 2 [16:00:29.000] For info: /user/username/rootfolder/otherfolder/a/b/app.ts :: Config file name: /user/username/rootfolder/otherfolder/a/b/tsconfig.json -Info 3 [16:00:30.000] Creating configuration project /user/username/rootfolder/otherfolder/a/b/tsconfig.json -Info 4 [16:00:31.000] FileWatcher:: Added:: WatchInfo: /user/username/rootfolder/otherfolder/a/b/tsconfig.json 2000 undefined Project: /user/username/rootfolder/otherfolder/a/b/tsconfig.json WatchType: Config file -Info 5 [16:00:32.000] Config: /user/username/rootfolder/otherfolder/a/b/tsconfig.json : { +Info 1 [00:00:28.000] Search path: /user/username/rootfolder/otherfolder/a/b +Info 2 [00:00:29.000] For info: /user/username/rootfolder/otherfolder/a/b/app.ts :: Config file name: /user/username/rootfolder/otherfolder/a/b/tsconfig.json +Info 3 [00:00:30.000] Creating configuration project /user/username/rootfolder/otherfolder/a/b/tsconfig.json +Info 4 [00:00:31.000] FileWatcher:: Added:: WatchInfo: /user/username/rootfolder/otherfolder/a/b/tsconfig.json 2000 undefined Project: /user/username/rootfolder/otherfolder/a/b/tsconfig.json WatchType: Config file +Info 5 [00:00:32.000] Config: /user/username/rootfolder/otherfolder/a/b/tsconfig.json : { "rootNames": [ "/user/username/rootfolder/otherfolder/a/b/app.ts" ], @@ -62,26 +62,26 @@ Info 5 [16:00:32.000] Config: /user/username/rootfolder/otherfolder/a/b/tscon "configFilePath": "/user/username/rootfolder/otherfolder/a/b/tsconfig.json" } } -Info 6 [16:00:33.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/rootfolder/otherfolder/a/b 1 undefined Config: /user/username/rootfolder/otherfolder/a/b/tsconfig.json WatchType: Wild card directory -Info 7 [16:00:34.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/rootfolder/otherfolder/a/b 1 undefined Config: /user/username/rootfolder/otherfolder/a/b/tsconfig.json WatchType: Wild card directory -Info 8 [16:00:35.000] Plugins were requested but not running in environment that supports 'require'. Nothing will be loaded -Info 9 [16:00:36.000] Starting updateGraphWorker: Project: /user/username/rootfolder/otherfolder/a/b/tsconfig.json -Info 10 [16:00:37.000] FileWatcher:: Added:: WatchInfo: /a/lib/lib.d.ts 500 undefined WatchType: Closed Script info -Info 11 [16:00:38.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/rootfolder/otherfolder/a/b/node_modules 1 undefined Project: /user/username/rootfolder/otherfolder/a/b/tsconfig.json WatchType: Failed Lookup Locations -Info 12 [16:00:39.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/rootfolder/otherfolder/a/b/node_modules 1 undefined Project: /user/username/rootfolder/otherfolder/a/b/tsconfig.json WatchType: Failed Lookup Locations -Info 13 [16:00:40.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/rootfolder/otherfolder/a/node_modules 1 undefined Project: /user/username/rootfolder/otherfolder/a/b/tsconfig.json WatchType: Failed Lookup Locations -Info 14 [16:00:41.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/rootfolder/otherfolder/a/node_modules 1 undefined Project: /user/username/rootfolder/otherfolder/a/b/tsconfig.json WatchType: Failed Lookup Locations -Info 15 [16:00:42.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/rootfolder/otherfolder/node_modules 1 undefined Project: /user/username/rootfolder/otherfolder/a/b/tsconfig.json WatchType: Failed Lookup Locations -Info 16 [16:00:43.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/rootfolder/otherfolder/node_modules 1 undefined Project: /user/username/rootfolder/otherfolder/a/b/tsconfig.json WatchType: Failed Lookup Locations -Info 17 [16:00:44.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/rootfolder/otherfolder/a/b/node_modules/@types 1 undefined Project: /user/username/rootfolder/otherfolder/a/b/tsconfig.json WatchType: Type roots -Info 18 [16:00:45.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/rootfolder/otherfolder/a/b/node_modules/@types 1 undefined Project: /user/username/rootfolder/otherfolder/a/b/tsconfig.json WatchType: Type roots -Info 19 [16:00:46.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/rootfolder/otherfolder/a/node_modules/@types 1 undefined Project: /user/username/rootfolder/otherfolder/a/b/tsconfig.json WatchType: Type roots -Info 20 [16:00:47.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/rootfolder/otherfolder/a/node_modules/@types 1 undefined Project: /user/username/rootfolder/otherfolder/a/b/tsconfig.json WatchType: Type roots -Info 21 [16:00:48.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/rootfolder/otherfolder/node_modules/@types 1 undefined Project: /user/username/rootfolder/otherfolder/a/b/tsconfig.json WatchType: Type roots -Info 22 [16:00:49.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/rootfolder/otherfolder/node_modules/@types 1 undefined Project: /user/username/rootfolder/otherfolder/a/b/tsconfig.json WatchType: Type roots -Info 23 [16:00:50.000] Finishing updateGraphWorker: Project: /user/username/rootfolder/otherfolder/a/b/tsconfig.json Version: 1 structureChanged: true structureIsReused:: Not Elapsed:: *ms -Info 24 [16:00:51.000] Project '/user/username/rootfolder/otherfolder/a/b/tsconfig.json' (Configured) -Info 25 [16:00:52.000] Files (2) +Info 6 [00:00:33.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/rootfolder/otherfolder/a/b 1 undefined Config: /user/username/rootfolder/otherfolder/a/b/tsconfig.json WatchType: Wild card directory +Info 7 [00:00:34.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/rootfolder/otherfolder/a/b 1 undefined Config: /user/username/rootfolder/otherfolder/a/b/tsconfig.json WatchType: Wild card directory +Info 8 [00:00:35.000] Plugins were requested but not running in environment that supports 'require'. Nothing will be loaded +Info 9 [00:00:36.000] Starting updateGraphWorker: Project: /user/username/rootfolder/otherfolder/a/b/tsconfig.json +Info 10 [00:00:37.000] FileWatcher:: Added:: WatchInfo: /a/lib/lib.d.ts 500 undefined WatchType: Closed Script info +Info 11 [00:00:38.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/rootfolder/otherfolder/a/b/node_modules 1 undefined Project: /user/username/rootfolder/otherfolder/a/b/tsconfig.json WatchType: Failed Lookup Locations +Info 12 [00:00:39.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/rootfolder/otherfolder/a/b/node_modules 1 undefined Project: /user/username/rootfolder/otherfolder/a/b/tsconfig.json WatchType: Failed Lookup Locations +Info 13 [00:00:40.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/rootfolder/otherfolder/a/node_modules 1 undefined Project: /user/username/rootfolder/otherfolder/a/b/tsconfig.json WatchType: Failed Lookup Locations +Info 14 [00:00:41.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/rootfolder/otherfolder/a/node_modules 1 undefined Project: /user/username/rootfolder/otherfolder/a/b/tsconfig.json WatchType: Failed Lookup Locations +Info 15 [00:00:42.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/rootfolder/otherfolder/node_modules 1 undefined Project: /user/username/rootfolder/otherfolder/a/b/tsconfig.json WatchType: Failed Lookup Locations +Info 16 [00:00:43.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/rootfolder/otherfolder/node_modules 1 undefined Project: /user/username/rootfolder/otherfolder/a/b/tsconfig.json WatchType: Failed Lookup Locations +Info 17 [00:00:44.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/rootfolder/otherfolder/a/b/node_modules/@types 1 undefined Project: /user/username/rootfolder/otherfolder/a/b/tsconfig.json WatchType: Type roots +Info 18 [00:00:45.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/rootfolder/otherfolder/a/b/node_modules/@types 1 undefined Project: /user/username/rootfolder/otherfolder/a/b/tsconfig.json WatchType: Type roots +Info 19 [00:00:46.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/rootfolder/otherfolder/a/node_modules/@types 1 undefined Project: /user/username/rootfolder/otherfolder/a/b/tsconfig.json WatchType: Type roots +Info 20 [00:00:47.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/rootfolder/otherfolder/a/node_modules/@types 1 undefined Project: /user/username/rootfolder/otherfolder/a/b/tsconfig.json WatchType: Type roots +Info 21 [00:00:48.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/rootfolder/otherfolder/node_modules/@types 1 undefined Project: /user/username/rootfolder/otherfolder/a/b/tsconfig.json WatchType: Type roots +Info 22 [00:00:49.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/rootfolder/otherfolder/node_modules/@types 1 undefined Project: /user/username/rootfolder/otherfolder/a/b/tsconfig.json WatchType: Type roots +Info 23 [00:00:50.000] Finishing updateGraphWorker: Project: /user/username/rootfolder/otherfolder/a/b/tsconfig.json Version: 1 structureChanged: true structureIsReused:: Not Elapsed:: *ms +Info 24 [00:00:51.000] Project '/user/username/rootfolder/otherfolder/a/b/tsconfig.json' (Configured) +Info 25 [00:00:52.000] Files (2) /a/lib/lib.d.ts /user/username/rootfolder/otherfolder/a/b/app.ts @@ -91,101 +91,101 @@ Info 25 [16:00:52.000] Files (2) app.ts Matched by default include pattern '**/*' -Info 26 [16:00:53.000] ----------------------------------------------- -Info 27 [16:00:54.000] Project '/user/username/rootfolder/otherfolder/a/b/tsconfig.json' (Configured) -Info 27 [16:00:55.000] Files (2) - -Info 27 [16:00:56.000] ----------------------------------------------- -Info 27 [16:00:57.000] Open files: -Info 27 [16:00:58.000] FileName: /user/username/rootfolder/otherfolder/a/b/app.ts ProjectRootPath: undefined -Info 27 [16:00:59.000] Projects: /user/username/rootfolder/otherfolder/a/b/tsconfig.json -Info 27 [16:01:02.000] DirectoryWatcher:: Triggered with /user/username/rootfolder/otherfolder/a/b/node_modules :: WatchInfo: /user/username/rootfolder/otherfolder/a/b/node_modules 1 undefined Project: /user/username/rootfolder/otherfolder/a/b/tsconfig.json WatchType: Failed Lookup Locations -Info 28 [16:01:03.000] Scheduled: /user/username/rootfolder/otherfolder/a/b/tsconfig.jsonFailedLookupInvalidation -Info 29 [16:01:04.000] Elapsed:: *ms DirectoryWatcher:: Triggered with /user/username/rootfolder/otherfolder/a/b/node_modules :: WatchInfo: /user/username/rootfolder/otherfolder/a/b/node_modules 1 undefined Project: /user/username/rootfolder/otherfolder/a/b/tsconfig.json WatchType: Failed Lookup Locations -Info 30 [16:01:05.000] DirectoryWatcher:: Triggered with /user/username/rootfolder/otherfolder/a/b/node_modules :: WatchInfo: /user/username/rootfolder/otherfolder/a/b/node_modules 1 undefined Project: /user/username/rootfolder/otherfolder/a/b/tsconfig.json WatchType: Failed Lookup Locations -Info 31 [16:01:06.000] Scheduled: /user/username/rootfolder/otherfolder/a/b/tsconfig.jsonFailedLookupInvalidation, Cancelled earlier one -Info 32 [16:01:07.000] Elapsed:: *ms DirectoryWatcher:: Triggered with /user/username/rootfolder/otherfolder/a/b/node_modules :: WatchInfo: /user/username/rootfolder/otherfolder/a/b/node_modules 1 undefined Project: /user/username/rootfolder/otherfolder/a/b/tsconfig.json WatchType: Failed Lookup Locations -Info 33 [16:01:08.000] DirectoryWatcher:: Triggered with /user/username/rootfolder/otherfolder/a/b/node_modules :: WatchInfo: /user/username/rootfolder/otherfolder/a/b 1 undefined Config: /user/username/rootfolder/otherfolder/a/b/tsconfig.json WatchType: Wild card directory -Info 34 [16:01:09.000] Scheduled: /user/username/rootfolder/otherfolder/a/b/tsconfig.json -Info 35 [16:01:10.000] Scheduled: *ensureProjectForOpenFiles* -Info 36 [16:01:11.000] Elapsed:: *ms DirectoryWatcher:: Triggered with /user/username/rootfolder/otherfolder/a/b/node_modules :: WatchInfo: /user/username/rootfolder/otherfolder/a/b 1 undefined Config: /user/username/rootfolder/otherfolder/a/b/tsconfig.json WatchType: Wild card directory -Info 37 [16:01:14.000] DirectoryWatcher:: Triggered with /user/username/rootfolder/otherfolder/a/b/node_modules/.staging :: WatchInfo: /user/username/rootfolder/otherfolder/a/b/node_modules 1 undefined Project: /user/username/rootfolder/otherfolder/a/b/tsconfig.json WatchType: Failed Lookup Locations -Info 38 [16:01:15.000] Scheduled: /user/username/rootfolder/otherfolder/a/b/tsconfig.jsonFailedLookupInvalidation, Cancelled earlier one -Info 39 [16:01:16.000] Elapsed:: *ms DirectoryWatcher:: Triggered with /user/username/rootfolder/otherfolder/a/b/node_modules/.staging :: WatchInfo: /user/username/rootfolder/otherfolder/a/b/node_modules 1 undefined Project: /user/username/rootfolder/otherfolder/a/b/tsconfig.json WatchType: Failed Lookup Locations -Info 40 [16:01:17.000] DirectoryWatcher:: Triggered with /user/username/rootfolder/otherfolder/a/b/node_modules/.staging :: WatchInfo: /user/username/rootfolder/otherfolder/a/b 1 undefined Config: /user/username/rootfolder/otherfolder/a/b/tsconfig.json WatchType: Wild card directory -Info 41 [16:01:18.000] Scheduled: /user/username/rootfolder/otherfolder/a/b/tsconfig.json, Cancelled earlier one -Info 42 [16:01:19.000] Scheduled: *ensureProjectForOpenFiles*, Cancelled earlier one -Info 43 [16:01:20.000] Elapsed:: *ms DirectoryWatcher:: Triggered with /user/username/rootfolder/otherfolder/a/b/node_modules/.staging :: WatchInfo: /user/username/rootfolder/otherfolder/a/b 1 undefined Config: /user/username/rootfolder/otherfolder/a/b/tsconfig.json WatchType: Wild card directory -Info 44 [16:01:23.000] DirectoryWatcher:: Triggered with /user/username/rootfolder/otherfolder/a/b/node_modules/.staging/@types :: WatchInfo: /user/username/rootfolder/otherfolder/a/b/node_modules 1 undefined Project: /user/username/rootfolder/otherfolder/a/b/tsconfig.json WatchType: Failed Lookup Locations -Info 45 [16:01:24.000] Elapsed:: *ms DirectoryWatcher:: Triggered with /user/username/rootfolder/otherfolder/a/b/node_modules/.staging/@types :: WatchInfo: /user/username/rootfolder/otherfolder/a/b/node_modules 1 undefined Project: /user/username/rootfolder/otherfolder/a/b/tsconfig.json WatchType: Failed Lookup Locations -Info 46 [16:01:25.000] DirectoryWatcher:: Triggered with /user/username/rootfolder/otherfolder/a/b/node_modules/.staging/@types :: WatchInfo: /user/username/rootfolder/otherfolder/a/b 1 undefined Config: /user/username/rootfolder/otherfolder/a/b/tsconfig.json WatchType: Wild card directory -Info 47 [16:01:26.000] Project: /user/username/rootfolder/otherfolder/a/b/tsconfig.json Detected ignored path: /user/username/rootfolder/otherfolder/a/b/node_modules/.staging/@types -Info 48 [16:01:27.000] Elapsed:: *ms DirectoryWatcher:: Triggered with /user/username/rootfolder/otherfolder/a/b/node_modules/.staging/@types :: WatchInfo: /user/username/rootfolder/otherfolder/a/b 1 undefined Config: /user/username/rootfolder/otherfolder/a/b/tsconfig.json WatchType: Wild card directory -Info 49 [16:01:30.000] DirectoryWatcher:: Triggered with /user/username/rootfolder/otherfolder/a/b/node_modules/.staging/lodash-b0733faa :: WatchInfo: /user/username/rootfolder/otherfolder/a/b/node_modules 1 undefined Project: /user/username/rootfolder/otherfolder/a/b/tsconfig.json WatchType: Failed Lookup Locations -Info 50 [16:01:31.000] Elapsed:: *ms DirectoryWatcher:: Triggered with /user/username/rootfolder/otherfolder/a/b/node_modules/.staging/lodash-b0733faa :: WatchInfo: /user/username/rootfolder/otherfolder/a/b/node_modules 1 undefined Project: /user/username/rootfolder/otherfolder/a/b/tsconfig.json WatchType: Failed Lookup Locations -Info 51 [16:01:32.000] DirectoryWatcher:: Triggered with /user/username/rootfolder/otherfolder/a/b/node_modules/.staging/lodash-b0733faa :: WatchInfo: /user/username/rootfolder/otherfolder/a/b 1 undefined Config: /user/username/rootfolder/otherfolder/a/b/tsconfig.json WatchType: Wild card directory -Info 52 [16:01:33.000] Project: /user/username/rootfolder/otherfolder/a/b/tsconfig.json Detected ignored path: /user/username/rootfolder/otherfolder/a/b/node_modules/.staging/lodash-b0733faa -Info 53 [16:01:34.000] Elapsed:: *ms DirectoryWatcher:: Triggered with /user/username/rootfolder/otherfolder/a/b/node_modules/.staging/lodash-b0733faa :: WatchInfo: /user/username/rootfolder/otherfolder/a/b 1 undefined Config: /user/username/rootfolder/otherfolder/a/b/tsconfig.json WatchType: Wild card directory -Info 54 [16:01:37.000] DirectoryWatcher:: Triggered with /user/username/rootfolder/otherfolder/a/b/node_modules/.staging/@types/lodash-e56c4fe7 :: WatchInfo: /user/username/rootfolder/otherfolder/a/b/node_modules 1 undefined Project: /user/username/rootfolder/otherfolder/a/b/tsconfig.json WatchType: Failed Lookup Locations -Info 55 [16:01:38.000] Elapsed:: *ms DirectoryWatcher:: Triggered with /user/username/rootfolder/otherfolder/a/b/node_modules/.staging/@types/lodash-e56c4fe7 :: WatchInfo: /user/username/rootfolder/otherfolder/a/b/node_modules 1 undefined Project: /user/username/rootfolder/otherfolder/a/b/tsconfig.json WatchType: Failed Lookup Locations -Info 56 [16:01:39.000] DirectoryWatcher:: Triggered with /user/username/rootfolder/otherfolder/a/b/node_modules/.staging/@types/lodash-e56c4fe7 :: WatchInfo: /user/username/rootfolder/otherfolder/a/b 1 undefined Config: /user/username/rootfolder/otherfolder/a/b/tsconfig.json WatchType: Wild card directory -Info 57 [16:01:40.000] Project: /user/username/rootfolder/otherfolder/a/b/tsconfig.json Detected ignored path: /user/username/rootfolder/otherfolder/a/b/node_modules/.staging/@types/lodash-e56c4fe7 -Info 58 [16:01:41.000] Elapsed:: *ms DirectoryWatcher:: Triggered with /user/username/rootfolder/otherfolder/a/b/node_modules/.staging/@types/lodash-e56c4fe7 :: WatchInfo: /user/username/rootfolder/otherfolder/a/b 1 undefined Config: /user/username/rootfolder/otherfolder/a/b/tsconfig.json WatchType: Wild card directory -Info 59 [16:01:44.000] DirectoryWatcher:: Triggered with /user/username/rootfolder/otherfolder/a/b/node_modules/.staging/symbol-observable-24bcbbff :: WatchInfo: /user/username/rootfolder/otherfolder/a/b/node_modules 1 undefined Project: /user/username/rootfolder/otherfolder/a/b/tsconfig.json WatchType: Failed Lookup Locations -Info 60 [16:01:45.000] Elapsed:: *ms DirectoryWatcher:: Triggered with /user/username/rootfolder/otherfolder/a/b/node_modules/.staging/symbol-observable-24bcbbff :: WatchInfo: /user/username/rootfolder/otherfolder/a/b/node_modules 1 undefined Project: /user/username/rootfolder/otherfolder/a/b/tsconfig.json WatchType: Failed Lookup Locations -Info 61 [16:01:46.000] DirectoryWatcher:: Triggered with /user/username/rootfolder/otherfolder/a/b/node_modules/.staging/symbol-observable-24bcbbff :: WatchInfo: /user/username/rootfolder/otherfolder/a/b 1 undefined Config: /user/username/rootfolder/otherfolder/a/b/tsconfig.json WatchType: Wild card directory -Info 62 [16:01:47.000] Project: /user/username/rootfolder/otherfolder/a/b/tsconfig.json Detected ignored path: /user/username/rootfolder/otherfolder/a/b/node_modules/.staging/symbol-observable-24bcbbff -Info 63 [16:01:48.000] Elapsed:: *ms DirectoryWatcher:: Triggered with /user/username/rootfolder/otherfolder/a/b/node_modules/.staging/symbol-observable-24bcbbff :: WatchInfo: /user/username/rootfolder/otherfolder/a/b 1 undefined Config: /user/username/rootfolder/otherfolder/a/b/tsconfig.json WatchType: Wild card directory -Info 64 [16:01:51.000] DirectoryWatcher:: Triggered with /user/username/rootfolder/otherfolder/a/b/node_modules/.staging/rxjs-22375c61 :: WatchInfo: /user/username/rootfolder/otherfolder/a/b/node_modules 1 undefined Project: /user/username/rootfolder/otherfolder/a/b/tsconfig.json WatchType: Failed Lookup Locations -Info 65 [16:01:52.000] Elapsed:: *ms DirectoryWatcher:: Triggered with /user/username/rootfolder/otherfolder/a/b/node_modules/.staging/rxjs-22375c61 :: WatchInfo: /user/username/rootfolder/otherfolder/a/b/node_modules 1 undefined Project: /user/username/rootfolder/otherfolder/a/b/tsconfig.json WatchType: Failed Lookup Locations -Info 66 [16:01:53.000] DirectoryWatcher:: Triggered with /user/username/rootfolder/otherfolder/a/b/node_modules/.staging/rxjs-22375c61 :: WatchInfo: /user/username/rootfolder/otherfolder/a/b 1 undefined Config: /user/username/rootfolder/otherfolder/a/b/tsconfig.json WatchType: Wild card directory -Info 67 [16:01:54.000] Project: /user/username/rootfolder/otherfolder/a/b/tsconfig.json Detected ignored path: /user/username/rootfolder/otherfolder/a/b/node_modules/.staging/rxjs-22375c61 -Info 68 [16:01:55.000] Elapsed:: *ms DirectoryWatcher:: Triggered with /user/username/rootfolder/otherfolder/a/b/node_modules/.staging/rxjs-22375c61 :: WatchInfo: /user/username/rootfolder/otherfolder/a/b 1 undefined Config: /user/username/rootfolder/otherfolder/a/b/tsconfig.json WatchType: Wild card directory -Info 69 [16:01:58.000] DirectoryWatcher:: Triggered with /user/username/rootfolder/otherfolder/a/b/node_modules/.staging/typescript-8493ea5d :: WatchInfo: /user/username/rootfolder/otherfolder/a/b/node_modules 1 undefined Project: /user/username/rootfolder/otherfolder/a/b/tsconfig.json WatchType: Failed Lookup Locations -Info 70 [16:01:59.000] Elapsed:: *ms DirectoryWatcher:: Triggered with /user/username/rootfolder/otherfolder/a/b/node_modules/.staging/typescript-8493ea5d :: WatchInfo: /user/username/rootfolder/otherfolder/a/b/node_modules 1 undefined Project: /user/username/rootfolder/otherfolder/a/b/tsconfig.json WatchType: Failed Lookup Locations -Info 71 [16:02:00.000] DirectoryWatcher:: Triggered with /user/username/rootfolder/otherfolder/a/b/node_modules/.staging/typescript-8493ea5d :: WatchInfo: /user/username/rootfolder/otherfolder/a/b 1 undefined Config: /user/username/rootfolder/otherfolder/a/b/tsconfig.json WatchType: Wild card directory -Info 72 [16:02:01.000] Project: /user/username/rootfolder/otherfolder/a/b/tsconfig.json Detected ignored path: /user/username/rootfolder/otherfolder/a/b/node_modules/.staging/typescript-8493ea5d -Info 73 [16:02:02.000] Elapsed:: *ms DirectoryWatcher:: Triggered with /user/username/rootfolder/otherfolder/a/b/node_modules/.staging/typescript-8493ea5d :: WatchInfo: /user/username/rootfolder/otherfolder/a/b 1 undefined Config: /user/username/rootfolder/otherfolder/a/b/tsconfig.json WatchType: Wild card directory -Info 74 [16:02:05.000] DirectoryWatcher:: Triggered with /user/username/rootfolder/otherfolder/a/b/node_modules/.staging/symbol-observable-24bcbbff/package.json :: WatchInfo: /user/username/rootfolder/otherfolder/a/b/node_modules 1 undefined Project: /user/username/rootfolder/otherfolder/a/b/tsconfig.json WatchType: Failed Lookup Locations -Info 75 [16:02:06.000] Elapsed:: *ms DirectoryWatcher:: Triggered with /user/username/rootfolder/otherfolder/a/b/node_modules/.staging/symbol-observable-24bcbbff/package.json :: WatchInfo: /user/username/rootfolder/otherfolder/a/b/node_modules 1 undefined Project: /user/username/rootfolder/otherfolder/a/b/tsconfig.json WatchType: Failed Lookup Locations -Info 76 [16:02:07.000] DirectoryWatcher:: Triggered with /user/username/rootfolder/otherfolder/a/b/node_modules/.staging/symbol-observable-24bcbbff/package.json :: WatchInfo: /user/username/rootfolder/otherfolder/a/b 1 undefined Config: /user/username/rootfolder/otherfolder/a/b/tsconfig.json WatchType: Wild card directory -Info 77 [16:02:08.000] Project: /user/username/rootfolder/otherfolder/a/b/tsconfig.json Detected ignored path: /user/username/rootfolder/otherfolder/a/b/node_modules/.staging/symbol-observable-24bcbbff/package.json -Info 78 [16:02:09.000] Elapsed:: *ms DirectoryWatcher:: Triggered with /user/username/rootfolder/otherfolder/a/b/node_modules/.staging/symbol-observable-24bcbbff/package.json :: WatchInfo: /user/username/rootfolder/otherfolder/a/b 1 undefined Config: /user/username/rootfolder/otherfolder/a/b/tsconfig.json WatchType: Wild card directory -Info 79 [16:02:12.000] DirectoryWatcher:: Triggered with /user/username/rootfolder/otherfolder/a/b/node_modules/.staging/lodash-b0733faa/package.json :: WatchInfo: /user/username/rootfolder/otherfolder/a/b/node_modules 1 undefined Project: /user/username/rootfolder/otherfolder/a/b/tsconfig.json WatchType: Failed Lookup Locations -Info 80 [16:02:13.000] Elapsed:: *ms DirectoryWatcher:: Triggered with /user/username/rootfolder/otherfolder/a/b/node_modules/.staging/lodash-b0733faa/package.json :: WatchInfo: /user/username/rootfolder/otherfolder/a/b/node_modules 1 undefined Project: /user/username/rootfolder/otherfolder/a/b/tsconfig.json WatchType: Failed Lookup Locations -Info 81 [16:02:14.000] DirectoryWatcher:: Triggered with /user/username/rootfolder/otherfolder/a/b/node_modules/.staging/lodash-b0733faa/package.json :: WatchInfo: /user/username/rootfolder/otherfolder/a/b 1 undefined Config: /user/username/rootfolder/otherfolder/a/b/tsconfig.json WatchType: Wild card directory -Info 82 [16:02:15.000] Project: /user/username/rootfolder/otherfolder/a/b/tsconfig.json Detected ignored path: /user/username/rootfolder/otherfolder/a/b/node_modules/.staging/lodash-b0733faa/package.json -Info 83 [16:02:16.000] Elapsed:: *ms DirectoryWatcher:: Triggered with /user/username/rootfolder/otherfolder/a/b/node_modules/.staging/lodash-b0733faa/package.json :: WatchInfo: /user/username/rootfolder/otherfolder/a/b 1 undefined Config: /user/username/rootfolder/otherfolder/a/b/tsconfig.json WatchType: Wild card directory -Info 84 [16:02:19.000] DirectoryWatcher:: Triggered with /user/username/rootfolder/otherfolder/a/b/node_modules/.staging/rxjs-22375c61/package.json :: WatchInfo: /user/username/rootfolder/otherfolder/a/b/node_modules 1 undefined Project: /user/username/rootfolder/otherfolder/a/b/tsconfig.json WatchType: Failed Lookup Locations -Info 85 [16:02:20.000] Elapsed:: *ms DirectoryWatcher:: Triggered with /user/username/rootfolder/otherfolder/a/b/node_modules/.staging/rxjs-22375c61/package.json :: WatchInfo: /user/username/rootfolder/otherfolder/a/b/node_modules 1 undefined Project: /user/username/rootfolder/otherfolder/a/b/tsconfig.json WatchType: Failed Lookup Locations -Info 86 [16:02:21.000] DirectoryWatcher:: Triggered with /user/username/rootfolder/otherfolder/a/b/node_modules/.staging/rxjs-22375c61/package.json :: WatchInfo: /user/username/rootfolder/otherfolder/a/b 1 undefined Config: /user/username/rootfolder/otherfolder/a/b/tsconfig.json WatchType: Wild card directory -Info 87 [16:02:22.000] Project: /user/username/rootfolder/otherfolder/a/b/tsconfig.json Detected ignored path: /user/username/rootfolder/otherfolder/a/b/node_modules/.staging/rxjs-22375c61/package.json -Info 88 [16:02:23.000] Elapsed:: *ms DirectoryWatcher:: Triggered with /user/username/rootfolder/otherfolder/a/b/node_modules/.staging/rxjs-22375c61/package.json :: WatchInfo: /user/username/rootfolder/otherfolder/a/b 1 undefined Config: /user/username/rootfolder/otherfolder/a/b/tsconfig.json WatchType: Wild card directory -Info 89 [16:02:26.000] DirectoryWatcher:: Triggered with /user/username/rootfolder/otherfolder/a/b/node_modules/.staging/typescript-8493ea5d/package.json :: WatchInfo: /user/username/rootfolder/otherfolder/a/b/node_modules 1 undefined Project: /user/username/rootfolder/otherfolder/a/b/tsconfig.json WatchType: Failed Lookup Locations -Info 90 [16:02:27.000] Elapsed:: *ms DirectoryWatcher:: Triggered with /user/username/rootfolder/otherfolder/a/b/node_modules/.staging/typescript-8493ea5d/package.json :: WatchInfo: /user/username/rootfolder/otherfolder/a/b/node_modules 1 undefined Project: /user/username/rootfolder/otherfolder/a/b/tsconfig.json WatchType: Failed Lookup Locations -Info 91 [16:02:28.000] DirectoryWatcher:: Triggered with /user/username/rootfolder/otherfolder/a/b/node_modules/.staging/typescript-8493ea5d/package.json :: WatchInfo: /user/username/rootfolder/otherfolder/a/b 1 undefined Config: /user/username/rootfolder/otherfolder/a/b/tsconfig.json WatchType: Wild card directory -Info 92 [16:02:29.000] Project: /user/username/rootfolder/otherfolder/a/b/tsconfig.json Detected ignored path: /user/username/rootfolder/otherfolder/a/b/node_modules/.staging/typescript-8493ea5d/package.json -Info 93 [16:02:30.000] Elapsed:: *ms DirectoryWatcher:: Triggered with /user/username/rootfolder/otherfolder/a/b/node_modules/.staging/typescript-8493ea5d/package.json :: WatchInfo: /user/username/rootfolder/otherfolder/a/b 1 undefined Config: /user/username/rootfolder/otherfolder/a/b/tsconfig.json WatchType: Wild card directory -Info 94 [16:02:33.000] DirectoryWatcher:: Triggered with /user/username/rootfolder/otherfolder/a/b/node_modules/.staging/symbol-observable-24bcbbff/index.js :: WatchInfo: /user/username/rootfolder/otherfolder/a/b/node_modules 1 undefined Project: /user/username/rootfolder/otherfolder/a/b/tsconfig.json WatchType: Failed Lookup Locations -Info 95 [16:02:34.000] Elapsed:: *ms DirectoryWatcher:: Triggered with /user/username/rootfolder/otherfolder/a/b/node_modules/.staging/symbol-observable-24bcbbff/index.js :: WatchInfo: /user/username/rootfolder/otherfolder/a/b/node_modules 1 undefined Project: /user/username/rootfolder/otherfolder/a/b/tsconfig.json WatchType: Failed Lookup Locations -Info 96 [16:02:35.000] DirectoryWatcher:: Triggered with /user/username/rootfolder/otherfolder/a/b/node_modules/.staging/symbol-observable-24bcbbff/index.js :: WatchInfo: /user/username/rootfolder/otherfolder/a/b 1 undefined Config: /user/username/rootfolder/otherfolder/a/b/tsconfig.json WatchType: Wild card directory -Info 97 [16:02:36.000] Project: /user/username/rootfolder/otherfolder/a/b/tsconfig.json Detected ignored path: /user/username/rootfolder/otherfolder/a/b/node_modules/.staging/symbol-observable-24bcbbff/index.js -Info 98 [16:02:37.000] Elapsed:: *ms DirectoryWatcher:: Triggered with /user/username/rootfolder/otherfolder/a/b/node_modules/.staging/symbol-observable-24bcbbff/index.js :: WatchInfo: /user/username/rootfolder/otherfolder/a/b 1 undefined Config: /user/username/rootfolder/otherfolder/a/b/tsconfig.json WatchType: Wild card directory -Info 99 [16:02:40.000] DirectoryWatcher:: Triggered with /user/username/rootfolder/otherfolder/a/b/node_modules/.staging/symbol-observable-24bcbbff/index.d.ts :: WatchInfo: /user/username/rootfolder/otherfolder/a/b/node_modules 1 undefined Project: /user/username/rootfolder/otherfolder/a/b/tsconfig.json WatchType: Failed Lookup Locations -Info 100 [16:02:41.000] Elapsed:: *ms DirectoryWatcher:: Triggered with /user/username/rootfolder/otherfolder/a/b/node_modules/.staging/symbol-observable-24bcbbff/index.d.ts :: WatchInfo: /user/username/rootfolder/otherfolder/a/b/node_modules 1 undefined Project: /user/username/rootfolder/otherfolder/a/b/tsconfig.json WatchType: Failed Lookup Locations -Info 101 [16:02:42.000] DirectoryWatcher:: Triggered with /user/username/rootfolder/otherfolder/a/b/node_modules/.staging/symbol-observable-24bcbbff/index.d.ts :: WatchInfo: /user/username/rootfolder/otherfolder/a/b 1 undefined Config: /user/username/rootfolder/otherfolder/a/b/tsconfig.json WatchType: Wild card directory -Info 102 [16:02:43.000] Project: /user/username/rootfolder/otherfolder/a/b/tsconfig.json Detected ignored path: /user/username/rootfolder/otherfolder/a/b/node_modules/.staging/symbol-observable-24bcbbff/index.d.ts -Info 103 [16:02:44.000] Elapsed:: *ms DirectoryWatcher:: Triggered with /user/username/rootfolder/otherfolder/a/b/node_modules/.staging/symbol-observable-24bcbbff/index.d.ts :: WatchInfo: /user/username/rootfolder/otherfolder/a/b 1 undefined Config: /user/username/rootfolder/otherfolder/a/b/tsconfig.json WatchType: Wild card directory -Info 104 [16:02:47.000] DirectoryWatcher:: Triggered with /user/username/rootfolder/otherfolder/a/b/node_modules/.staging/symbol-observable-24bcbbff/lib :: WatchInfo: /user/username/rootfolder/otherfolder/a/b/node_modules 1 undefined Project: /user/username/rootfolder/otherfolder/a/b/tsconfig.json WatchType: Failed Lookup Locations -Info 105 [16:02:48.000] Elapsed:: *ms DirectoryWatcher:: Triggered with /user/username/rootfolder/otherfolder/a/b/node_modules/.staging/symbol-observable-24bcbbff/lib :: WatchInfo: /user/username/rootfolder/otherfolder/a/b/node_modules 1 undefined Project: /user/username/rootfolder/otherfolder/a/b/tsconfig.json WatchType: Failed Lookup Locations -Info 106 [16:02:49.000] DirectoryWatcher:: Triggered with /user/username/rootfolder/otherfolder/a/b/node_modules/.staging/symbol-observable-24bcbbff/lib :: WatchInfo: /user/username/rootfolder/otherfolder/a/b 1 undefined Config: /user/username/rootfolder/otherfolder/a/b/tsconfig.json WatchType: Wild card directory -Info 107 [16:02:50.000] Project: /user/username/rootfolder/otherfolder/a/b/tsconfig.json Detected ignored path: /user/username/rootfolder/otherfolder/a/b/node_modules/.staging/symbol-observable-24bcbbff/lib -Info 108 [16:02:51.000] Elapsed:: *ms DirectoryWatcher:: Triggered with /user/username/rootfolder/otherfolder/a/b/node_modules/.staging/symbol-observable-24bcbbff/lib :: WatchInfo: /user/username/rootfolder/otherfolder/a/b 1 undefined Config: /user/username/rootfolder/otherfolder/a/b/tsconfig.json WatchType: Wild card directory -Info 109 [16:02:54.000] DirectoryWatcher:: Triggered with /user/username/rootfolder/otherfolder/a/b/node_modules/.staging/symbol-observable-24bcbbff/lib/index.js :: WatchInfo: /user/username/rootfolder/otherfolder/a/b/node_modules 1 undefined Project: /user/username/rootfolder/otherfolder/a/b/tsconfig.json WatchType: Failed Lookup Locations -Info 110 [16:02:55.000] Elapsed:: *ms DirectoryWatcher:: Triggered with /user/username/rootfolder/otherfolder/a/b/node_modules/.staging/symbol-observable-24bcbbff/lib/index.js :: WatchInfo: /user/username/rootfolder/otherfolder/a/b/node_modules 1 undefined Project: /user/username/rootfolder/otherfolder/a/b/tsconfig.json WatchType: Failed Lookup Locations -Info 111 [16:02:56.000] DirectoryWatcher:: Triggered with /user/username/rootfolder/otherfolder/a/b/node_modules/.staging/symbol-observable-24bcbbff/lib/index.js :: WatchInfo: /user/username/rootfolder/otherfolder/a/b 1 undefined Config: /user/username/rootfolder/otherfolder/a/b/tsconfig.json WatchType: Wild card directory -Info 112 [16:02:57.000] Project: /user/username/rootfolder/otherfolder/a/b/tsconfig.json Detected ignored path: /user/username/rootfolder/otherfolder/a/b/node_modules/.staging/symbol-observable-24bcbbff/lib/index.js -Info 113 [16:02:58.000] Elapsed:: *ms DirectoryWatcher:: Triggered with /user/username/rootfolder/otherfolder/a/b/node_modules/.staging/symbol-observable-24bcbbff/lib/index.js :: WatchInfo: /user/username/rootfolder/otherfolder/a/b 1 undefined Config: /user/username/rootfolder/otherfolder/a/b/tsconfig.json WatchType: Wild card directory +Info 26 [00:00:53.000] ----------------------------------------------- +Info 27 [00:00:54.000] Project '/user/username/rootfolder/otherfolder/a/b/tsconfig.json' (Configured) +Info 27 [00:00:55.000] Files (2) + +Info 27 [00:00:56.000] ----------------------------------------------- +Info 27 [00:00:57.000] Open files: +Info 27 [00:00:58.000] FileName: /user/username/rootfolder/otherfolder/a/b/app.ts ProjectRootPath: undefined +Info 27 [00:00:59.000] Projects: /user/username/rootfolder/otherfolder/a/b/tsconfig.json +Info 27 [00:01:02.000] DirectoryWatcher:: Triggered with /user/username/rootfolder/otherfolder/a/b/node_modules :: WatchInfo: /user/username/rootfolder/otherfolder/a/b/node_modules 1 undefined Project: /user/username/rootfolder/otherfolder/a/b/tsconfig.json WatchType: Failed Lookup Locations +Info 28 [00:01:03.000] Scheduled: /user/username/rootfolder/otherfolder/a/b/tsconfig.jsonFailedLookupInvalidation +Info 29 [00:01:04.000] Elapsed:: *ms DirectoryWatcher:: Triggered with /user/username/rootfolder/otherfolder/a/b/node_modules :: WatchInfo: /user/username/rootfolder/otherfolder/a/b/node_modules 1 undefined Project: /user/username/rootfolder/otherfolder/a/b/tsconfig.json WatchType: Failed Lookup Locations +Info 30 [00:01:05.000] DirectoryWatcher:: Triggered with /user/username/rootfolder/otherfolder/a/b/node_modules :: WatchInfo: /user/username/rootfolder/otherfolder/a/b/node_modules 1 undefined Project: /user/username/rootfolder/otherfolder/a/b/tsconfig.json WatchType: Failed Lookup Locations +Info 31 [00:01:06.000] Scheduled: /user/username/rootfolder/otherfolder/a/b/tsconfig.jsonFailedLookupInvalidation, Cancelled earlier one +Info 32 [00:01:07.000] Elapsed:: *ms DirectoryWatcher:: Triggered with /user/username/rootfolder/otherfolder/a/b/node_modules :: WatchInfo: /user/username/rootfolder/otherfolder/a/b/node_modules 1 undefined Project: /user/username/rootfolder/otherfolder/a/b/tsconfig.json WatchType: Failed Lookup Locations +Info 33 [00:01:08.000] DirectoryWatcher:: Triggered with /user/username/rootfolder/otherfolder/a/b/node_modules :: WatchInfo: /user/username/rootfolder/otherfolder/a/b 1 undefined Config: /user/username/rootfolder/otherfolder/a/b/tsconfig.json WatchType: Wild card directory +Info 34 [00:01:09.000] Scheduled: /user/username/rootfolder/otherfolder/a/b/tsconfig.json +Info 35 [00:01:10.000] Scheduled: *ensureProjectForOpenFiles* +Info 36 [00:01:11.000] Elapsed:: *ms DirectoryWatcher:: Triggered with /user/username/rootfolder/otherfolder/a/b/node_modules :: WatchInfo: /user/username/rootfolder/otherfolder/a/b 1 undefined Config: /user/username/rootfolder/otherfolder/a/b/tsconfig.json WatchType: Wild card directory +Info 37 [00:01:14.000] DirectoryWatcher:: Triggered with /user/username/rootfolder/otherfolder/a/b/node_modules/.staging :: WatchInfo: /user/username/rootfolder/otherfolder/a/b/node_modules 1 undefined Project: /user/username/rootfolder/otherfolder/a/b/tsconfig.json WatchType: Failed Lookup Locations +Info 38 [00:01:15.000] Scheduled: /user/username/rootfolder/otherfolder/a/b/tsconfig.jsonFailedLookupInvalidation, Cancelled earlier one +Info 39 [00:01:16.000] Elapsed:: *ms DirectoryWatcher:: Triggered with /user/username/rootfolder/otherfolder/a/b/node_modules/.staging :: WatchInfo: /user/username/rootfolder/otherfolder/a/b/node_modules 1 undefined Project: /user/username/rootfolder/otherfolder/a/b/tsconfig.json WatchType: Failed Lookup Locations +Info 40 [00:01:17.000] DirectoryWatcher:: Triggered with /user/username/rootfolder/otherfolder/a/b/node_modules/.staging :: WatchInfo: /user/username/rootfolder/otherfolder/a/b 1 undefined Config: /user/username/rootfolder/otherfolder/a/b/tsconfig.json WatchType: Wild card directory +Info 41 [00:01:18.000] Scheduled: /user/username/rootfolder/otherfolder/a/b/tsconfig.json, Cancelled earlier one +Info 42 [00:01:19.000] Scheduled: *ensureProjectForOpenFiles*, Cancelled earlier one +Info 43 [00:01:20.000] Elapsed:: *ms DirectoryWatcher:: Triggered with /user/username/rootfolder/otherfolder/a/b/node_modules/.staging :: WatchInfo: /user/username/rootfolder/otherfolder/a/b 1 undefined Config: /user/username/rootfolder/otherfolder/a/b/tsconfig.json WatchType: Wild card directory +Info 44 [00:01:23.000] DirectoryWatcher:: Triggered with /user/username/rootfolder/otherfolder/a/b/node_modules/.staging/@types :: WatchInfo: /user/username/rootfolder/otherfolder/a/b/node_modules 1 undefined Project: /user/username/rootfolder/otherfolder/a/b/tsconfig.json WatchType: Failed Lookup Locations +Info 45 [00:01:24.000] Elapsed:: *ms DirectoryWatcher:: Triggered with /user/username/rootfolder/otherfolder/a/b/node_modules/.staging/@types :: WatchInfo: /user/username/rootfolder/otherfolder/a/b/node_modules 1 undefined Project: /user/username/rootfolder/otherfolder/a/b/tsconfig.json WatchType: Failed Lookup Locations +Info 46 [00:01:25.000] DirectoryWatcher:: Triggered with /user/username/rootfolder/otherfolder/a/b/node_modules/.staging/@types :: WatchInfo: /user/username/rootfolder/otherfolder/a/b 1 undefined Config: /user/username/rootfolder/otherfolder/a/b/tsconfig.json WatchType: Wild card directory +Info 47 [00:01:26.000] Project: /user/username/rootfolder/otherfolder/a/b/tsconfig.json Detected ignored path: /user/username/rootfolder/otherfolder/a/b/node_modules/.staging/@types +Info 48 [00:01:27.000] Elapsed:: *ms DirectoryWatcher:: Triggered with /user/username/rootfolder/otherfolder/a/b/node_modules/.staging/@types :: WatchInfo: /user/username/rootfolder/otherfolder/a/b 1 undefined Config: /user/username/rootfolder/otherfolder/a/b/tsconfig.json WatchType: Wild card directory +Info 49 [00:01:30.000] DirectoryWatcher:: Triggered with /user/username/rootfolder/otherfolder/a/b/node_modules/.staging/lodash-b0733faa :: WatchInfo: /user/username/rootfolder/otherfolder/a/b/node_modules 1 undefined Project: /user/username/rootfolder/otherfolder/a/b/tsconfig.json WatchType: Failed Lookup Locations +Info 50 [00:01:31.000] Elapsed:: *ms DirectoryWatcher:: Triggered with /user/username/rootfolder/otherfolder/a/b/node_modules/.staging/lodash-b0733faa :: WatchInfo: /user/username/rootfolder/otherfolder/a/b/node_modules 1 undefined Project: /user/username/rootfolder/otherfolder/a/b/tsconfig.json WatchType: Failed Lookup Locations +Info 51 [00:01:32.000] DirectoryWatcher:: Triggered with /user/username/rootfolder/otherfolder/a/b/node_modules/.staging/lodash-b0733faa :: WatchInfo: /user/username/rootfolder/otherfolder/a/b 1 undefined Config: /user/username/rootfolder/otherfolder/a/b/tsconfig.json WatchType: Wild card directory +Info 52 [00:01:33.000] Project: /user/username/rootfolder/otherfolder/a/b/tsconfig.json Detected ignored path: /user/username/rootfolder/otherfolder/a/b/node_modules/.staging/lodash-b0733faa +Info 53 [00:01:34.000] Elapsed:: *ms DirectoryWatcher:: Triggered with /user/username/rootfolder/otherfolder/a/b/node_modules/.staging/lodash-b0733faa :: WatchInfo: /user/username/rootfolder/otherfolder/a/b 1 undefined Config: /user/username/rootfolder/otherfolder/a/b/tsconfig.json WatchType: Wild card directory +Info 54 [00:01:37.000] DirectoryWatcher:: Triggered with /user/username/rootfolder/otherfolder/a/b/node_modules/.staging/@types/lodash-e56c4fe7 :: WatchInfo: /user/username/rootfolder/otherfolder/a/b/node_modules 1 undefined Project: /user/username/rootfolder/otherfolder/a/b/tsconfig.json WatchType: Failed Lookup Locations +Info 55 [00:01:38.000] Elapsed:: *ms DirectoryWatcher:: Triggered with /user/username/rootfolder/otherfolder/a/b/node_modules/.staging/@types/lodash-e56c4fe7 :: WatchInfo: /user/username/rootfolder/otherfolder/a/b/node_modules 1 undefined Project: /user/username/rootfolder/otherfolder/a/b/tsconfig.json WatchType: Failed Lookup Locations +Info 56 [00:01:39.000] DirectoryWatcher:: Triggered with /user/username/rootfolder/otherfolder/a/b/node_modules/.staging/@types/lodash-e56c4fe7 :: WatchInfo: /user/username/rootfolder/otherfolder/a/b 1 undefined Config: /user/username/rootfolder/otherfolder/a/b/tsconfig.json WatchType: Wild card directory +Info 57 [00:01:40.000] Project: /user/username/rootfolder/otherfolder/a/b/tsconfig.json Detected ignored path: /user/username/rootfolder/otherfolder/a/b/node_modules/.staging/@types/lodash-e56c4fe7 +Info 58 [00:01:41.000] Elapsed:: *ms DirectoryWatcher:: Triggered with /user/username/rootfolder/otherfolder/a/b/node_modules/.staging/@types/lodash-e56c4fe7 :: WatchInfo: /user/username/rootfolder/otherfolder/a/b 1 undefined Config: /user/username/rootfolder/otherfolder/a/b/tsconfig.json WatchType: Wild card directory +Info 59 [00:01:44.000] DirectoryWatcher:: Triggered with /user/username/rootfolder/otherfolder/a/b/node_modules/.staging/symbol-observable-24bcbbff :: WatchInfo: /user/username/rootfolder/otherfolder/a/b/node_modules 1 undefined Project: /user/username/rootfolder/otherfolder/a/b/tsconfig.json WatchType: Failed Lookup Locations +Info 60 [00:01:45.000] Elapsed:: *ms DirectoryWatcher:: Triggered with /user/username/rootfolder/otherfolder/a/b/node_modules/.staging/symbol-observable-24bcbbff :: WatchInfo: /user/username/rootfolder/otherfolder/a/b/node_modules 1 undefined Project: /user/username/rootfolder/otherfolder/a/b/tsconfig.json WatchType: Failed Lookup Locations +Info 61 [00:01:46.000] DirectoryWatcher:: Triggered with /user/username/rootfolder/otherfolder/a/b/node_modules/.staging/symbol-observable-24bcbbff :: WatchInfo: /user/username/rootfolder/otherfolder/a/b 1 undefined Config: /user/username/rootfolder/otherfolder/a/b/tsconfig.json WatchType: Wild card directory +Info 62 [00:01:47.000] Project: /user/username/rootfolder/otherfolder/a/b/tsconfig.json Detected ignored path: /user/username/rootfolder/otherfolder/a/b/node_modules/.staging/symbol-observable-24bcbbff +Info 63 [00:01:48.000] Elapsed:: *ms DirectoryWatcher:: Triggered with /user/username/rootfolder/otherfolder/a/b/node_modules/.staging/symbol-observable-24bcbbff :: WatchInfo: /user/username/rootfolder/otherfolder/a/b 1 undefined Config: /user/username/rootfolder/otherfolder/a/b/tsconfig.json WatchType: Wild card directory +Info 64 [00:01:51.000] DirectoryWatcher:: Triggered with /user/username/rootfolder/otherfolder/a/b/node_modules/.staging/rxjs-22375c61 :: WatchInfo: /user/username/rootfolder/otherfolder/a/b/node_modules 1 undefined Project: /user/username/rootfolder/otherfolder/a/b/tsconfig.json WatchType: Failed Lookup Locations +Info 65 [00:01:52.000] Elapsed:: *ms DirectoryWatcher:: Triggered with /user/username/rootfolder/otherfolder/a/b/node_modules/.staging/rxjs-22375c61 :: WatchInfo: /user/username/rootfolder/otherfolder/a/b/node_modules 1 undefined Project: /user/username/rootfolder/otherfolder/a/b/tsconfig.json WatchType: Failed Lookup Locations +Info 66 [00:01:53.000] DirectoryWatcher:: Triggered with /user/username/rootfolder/otherfolder/a/b/node_modules/.staging/rxjs-22375c61 :: WatchInfo: /user/username/rootfolder/otherfolder/a/b 1 undefined Config: /user/username/rootfolder/otherfolder/a/b/tsconfig.json WatchType: Wild card directory +Info 67 [00:01:54.000] Project: /user/username/rootfolder/otherfolder/a/b/tsconfig.json Detected ignored path: /user/username/rootfolder/otherfolder/a/b/node_modules/.staging/rxjs-22375c61 +Info 68 [00:01:55.000] Elapsed:: *ms DirectoryWatcher:: Triggered with /user/username/rootfolder/otherfolder/a/b/node_modules/.staging/rxjs-22375c61 :: WatchInfo: /user/username/rootfolder/otherfolder/a/b 1 undefined Config: /user/username/rootfolder/otherfolder/a/b/tsconfig.json WatchType: Wild card directory +Info 69 [00:01:58.000] DirectoryWatcher:: Triggered with /user/username/rootfolder/otherfolder/a/b/node_modules/.staging/typescript-8493ea5d :: WatchInfo: /user/username/rootfolder/otherfolder/a/b/node_modules 1 undefined Project: /user/username/rootfolder/otherfolder/a/b/tsconfig.json WatchType: Failed Lookup Locations +Info 70 [00:01:59.000] Elapsed:: *ms DirectoryWatcher:: Triggered with /user/username/rootfolder/otherfolder/a/b/node_modules/.staging/typescript-8493ea5d :: WatchInfo: /user/username/rootfolder/otherfolder/a/b/node_modules 1 undefined Project: /user/username/rootfolder/otherfolder/a/b/tsconfig.json WatchType: Failed Lookup Locations +Info 71 [00:02:00.000] DirectoryWatcher:: Triggered with /user/username/rootfolder/otherfolder/a/b/node_modules/.staging/typescript-8493ea5d :: WatchInfo: /user/username/rootfolder/otherfolder/a/b 1 undefined Config: /user/username/rootfolder/otherfolder/a/b/tsconfig.json WatchType: Wild card directory +Info 72 [00:02:01.000] Project: /user/username/rootfolder/otherfolder/a/b/tsconfig.json Detected ignored path: /user/username/rootfolder/otherfolder/a/b/node_modules/.staging/typescript-8493ea5d +Info 73 [00:02:02.000] Elapsed:: *ms DirectoryWatcher:: Triggered with /user/username/rootfolder/otherfolder/a/b/node_modules/.staging/typescript-8493ea5d :: WatchInfo: /user/username/rootfolder/otherfolder/a/b 1 undefined Config: /user/username/rootfolder/otherfolder/a/b/tsconfig.json WatchType: Wild card directory +Info 74 [00:02:05.000] DirectoryWatcher:: Triggered with /user/username/rootfolder/otherfolder/a/b/node_modules/.staging/symbol-observable-24bcbbff/package.json :: WatchInfo: /user/username/rootfolder/otherfolder/a/b/node_modules 1 undefined Project: /user/username/rootfolder/otherfolder/a/b/tsconfig.json WatchType: Failed Lookup Locations +Info 75 [00:02:06.000] Elapsed:: *ms DirectoryWatcher:: Triggered with /user/username/rootfolder/otherfolder/a/b/node_modules/.staging/symbol-observable-24bcbbff/package.json :: WatchInfo: /user/username/rootfolder/otherfolder/a/b/node_modules 1 undefined Project: /user/username/rootfolder/otherfolder/a/b/tsconfig.json WatchType: Failed Lookup Locations +Info 76 [00:02:07.000] DirectoryWatcher:: Triggered with /user/username/rootfolder/otherfolder/a/b/node_modules/.staging/symbol-observable-24bcbbff/package.json :: WatchInfo: /user/username/rootfolder/otherfolder/a/b 1 undefined Config: /user/username/rootfolder/otherfolder/a/b/tsconfig.json WatchType: Wild card directory +Info 77 [00:02:08.000] Project: /user/username/rootfolder/otherfolder/a/b/tsconfig.json Detected ignored path: /user/username/rootfolder/otherfolder/a/b/node_modules/.staging/symbol-observable-24bcbbff/package.json +Info 78 [00:02:09.000] Elapsed:: *ms DirectoryWatcher:: Triggered with /user/username/rootfolder/otherfolder/a/b/node_modules/.staging/symbol-observable-24bcbbff/package.json :: WatchInfo: /user/username/rootfolder/otherfolder/a/b 1 undefined Config: /user/username/rootfolder/otherfolder/a/b/tsconfig.json WatchType: Wild card directory +Info 79 [00:02:12.000] DirectoryWatcher:: Triggered with /user/username/rootfolder/otherfolder/a/b/node_modules/.staging/lodash-b0733faa/package.json :: WatchInfo: /user/username/rootfolder/otherfolder/a/b/node_modules 1 undefined Project: /user/username/rootfolder/otherfolder/a/b/tsconfig.json WatchType: Failed Lookup Locations +Info 80 [00:02:13.000] Elapsed:: *ms DirectoryWatcher:: Triggered with /user/username/rootfolder/otherfolder/a/b/node_modules/.staging/lodash-b0733faa/package.json :: WatchInfo: /user/username/rootfolder/otherfolder/a/b/node_modules 1 undefined Project: /user/username/rootfolder/otherfolder/a/b/tsconfig.json WatchType: Failed Lookup Locations +Info 81 [00:02:14.000] DirectoryWatcher:: Triggered with /user/username/rootfolder/otherfolder/a/b/node_modules/.staging/lodash-b0733faa/package.json :: WatchInfo: /user/username/rootfolder/otherfolder/a/b 1 undefined Config: /user/username/rootfolder/otherfolder/a/b/tsconfig.json WatchType: Wild card directory +Info 82 [00:02:15.000] Project: /user/username/rootfolder/otherfolder/a/b/tsconfig.json Detected ignored path: /user/username/rootfolder/otherfolder/a/b/node_modules/.staging/lodash-b0733faa/package.json +Info 83 [00:02:16.000] Elapsed:: *ms DirectoryWatcher:: Triggered with /user/username/rootfolder/otherfolder/a/b/node_modules/.staging/lodash-b0733faa/package.json :: WatchInfo: /user/username/rootfolder/otherfolder/a/b 1 undefined Config: /user/username/rootfolder/otherfolder/a/b/tsconfig.json WatchType: Wild card directory +Info 84 [00:02:19.000] DirectoryWatcher:: Triggered with /user/username/rootfolder/otherfolder/a/b/node_modules/.staging/rxjs-22375c61/package.json :: WatchInfo: /user/username/rootfolder/otherfolder/a/b/node_modules 1 undefined Project: /user/username/rootfolder/otherfolder/a/b/tsconfig.json WatchType: Failed Lookup Locations +Info 85 [00:02:20.000] Elapsed:: *ms DirectoryWatcher:: Triggered with /user/username/rootfolder/otherfolder/a/b/node_modules/.staging/rxjs-22375c61/package.json :: WatchInfo: /user/username/rootfolder/otherfolder/a/b/node_modules 1 undefined Project: /user/username/rootfolder/otherfolder/a/b/tsconfig.json WatchType: Failed Lookup Locations +Info 86 [00:02:21.000] DirectoryWatcher:: Triggered with /user/username/rootfolder/otherfolder/a/b/node_modules/.staging/rxjs-22375c61/package.json :: WatchInfo: /user/username/rootfolder/otherfolder/a/b 1 undefined Config: /user/username/rootfolder/otherfolder/a/b/tsconfig.json WatchType: Wild card directory +Info 87 [00:02:22.000] Project: /user/username/rootfolder/otherfolder/a/b/tsconfig.json Detected ignored path: /user/username/rootfolder/otherfolder/a/b/node_modules/.staging/rxjs-22375c61/package.json +Info 88 [00:02:23.000] Elapsed:: *ms DirectoryWatcher:: Triggered with /user/username/rootfolder/otherfolder/a/b/node_modules/.staging/rxjs-22375c61/package.json :: WatchInfo: /user/username/rootfolder/otherfolder/a/b 1 undefined Config: /user/username/rootfolder/otherfolder/a/b/tsconfig.json WatchType: Wild card directory +Info 89 [00:02:26.000] DirectoryWatcher:: Triggered with /user/username/rootfolder/otherfolder/a/b/node_modules/.staging/typescript-8493ea5d/package.json :: WatchInfo: /user/username/rootfolder/otherfolder/a/b/node_modules 1 undefined Project: /user/username/rootfolder/otherfolder/a/b/tsconfig.json WatchType: Failed Lookup Locations +Info 90 [00:02:27.000] Elapsed:: *ms DirectoryWatcher:: Triggered with /user/username/rootfolder/otherfolder/a/b/node_modules/.staging/typescript-8493ea5d/package.json :: WatchInfo: /user/username/rootfolder/otherfolder/a/b/node_modules 1 undefined Project: /user/username/rootfolder/otherfolder/a/b/tsconfig.json WatchType: Failed Lookup Locations +Info 91 [00:02:28.000] DirectoryWatcher:: Triggered with /user/username/rootfolder/otherfolder/a/b/node_modules/.staging/typescript-8493ea5d/package.json :: WatchInfo: /user/username/rootfolder/otherfolder/a/b 1 undefined Config: /user/username/rootfolder/otherfolder/a/b/tsconfig.json WatchType: Wild card directory +Info 92 [00:02:29.000] Project: /user/username/rootfolder/otherfolder/a/b/tsconfig.json Detected ignored path: /user/username/rootfolder/otherfolder/a/b/node_modules/.staging/typescript-8493ea5d/package.json +Info 93 [00:02:30.000] Elapsed:: *ms DirectoryWatcher:: Triggered with /user/username/rootfolder/otherfolder/a/b/node_modules/.staging/typescript-8493ea5d/package.json :: WatchInfo: /user/username/rootfolder/otherfolder/a/b 1 undefined Config: /user/username/rootfolder/otherfolder/a/b/tsconfig.json WatchType: Wild card directory +Info 94 [00:02:33.000] DirectoryWatcher:: Triggered with /user/username/rootfolder/otherfolder/a/b/node_modules/.staging/symbol-observable-24bcbbff/index.js :: WatchInfo: /user/username/rootfolder/otherfolder/a/b/node_modules 1 undefined Project: /user/username/rootfolder/otherfolder/a/b/tsconfig.json WatchType: Failed Lookup Locations +Info 95 [00:02:34.000] Elapsed:: *ms DirectoryWatcher:: Triggered with /user/username/rootfolder/otherfolder/a/b/node_modules/.staging/symbol-observable-24bcbbff/index.js :: WatchInfo: /user/username/rootfolder/otherfolder/a/b/node_modules 1 undefined Project: /user/username/rootfolder/otherfolder/a/b/tsconfig.json WatchType: Failed Lookup Locations +Info 96 [00:02:35.000] DirectoryWatcher:: Triggered with /user/username/rootfolder/otherfolder/a/b/node_modules/.staging/symbol-observable-24bcbbff/index.js :: WatchInfo: /user/username/rootfolder/otherfolder/a/b 1 undefined Config: /user/username/rootfolder/otherfolder/a/b/tsconfig.json WatchType: Wild card directory +Info 97 [00:02:36.000] Project: /user/username/rootfolder/otherfolder/a/b/tsconfig.json Detected ignored path: /user/username/rootfolder/otherfolder/a/b/node_modules/.staging/symbol-observable-24bcbbff/index.js +Info 98 [00:02:37.000] Elapsed:: *ms DirectoryWatcher:: Triggered with /user/username/rootfolder/otherfolder/a/b/node_modules/.staging/symbol-observable-24bcbbff/index.js :: WatchInfo: /user/username/rootfolder/otherfolder/a/b 1 undefined Config: /user/username/rootfolder/otherfolder/a/b/tsconfig.json WatchType: Wild card directory +Info 99 [00:02:40.000] DirectoryWatcher:: Triggered with /user/username/rootfolder/otherfolder/a/b/node_modules/.staging/symbol-observable-24bcbbff/index.d.ts :: WatchInfo: /user/username/rootfolder/otherfolder/a/b/node_modules 1 undefined Project: /user/username/rootfolder/otherfolder/a/b/tsconfig.json WatchType: Failed Lookup Locations +Info 100 [00:02:41.000] Elapsed:: *ms DirectoryWatcher:: Triggered with /user/username/rootfolder/otherfolder/a/b/node_modules/.staging/symbol-observable-24bcbbff/index.d.ts :: WatchInfo: /user/username/rootfolder/otherfolder/a/b/node_modules 1 undefined Project: /user/username/rootfolder/otherfolder/a/b/tsconfig.json WatchType: Failed Lookup Locations +Info 101 [00:02:42.000] DirectoryWatcher:: Triggered with /user/username/rootfolder/otherfolder/a/b/node_modules/.staging/symbol-observable-24bcbbff/index.d.ts :: WatchInfo: /user/username/rootfolder/otherfolder/a/b 1 undefined Config: /user/username/rootfolder/otherfolder/a/b/tsconfig.json WatchType: Wild card directory +Info 102 [00:02:43.000] Project: /user/username/rootfolder/otherfolder/a/b/tsconfig.json Detected ignored path: /user/username/rootfolder/otherfolder/a/b/node_modules/.staging/symbol-observable-24bcbbff/index.d.ts +Info 103 [00:02:44.000] Elapsed:: *ms DirectoryWatcher:: Triggered with /user/username/rootfolder/otherfolder/a/b/node_modules/.staging/symbol-observable-24bcbbff/index.d.ts :: WatchInfo: /user/username/rootfolder/otherfolder/a/b 1 undefined Config: /user/username/rootfolder/otherfolder/a/b/tsconfig.json WatchType: Wild card directory +Info 104 [00:02:47.000] DirectoryWatcher:: Triggered with /user/username/rootfolder/otherfolder/a/b/node_modules/.staging/symbol-observable-24bcbbff/lib :: WatchInfo: /user/username/rootfolder/otherfolder/a/b/node_modules 1 undefined Project: /user/username/rootfolder/otherfolder/a/b/tsconfig.json WatchType: Failed Lookup Locations +Info 105 [00:02:48.000] Elapsed:: *ms DirectoryWatcher:: Triggered with /user/username/rootfolder/otherfolder/a/b/node_modules/.staging/symbol-observable-24bcbbff/lib :: WatchInfo: /user/username/rootfolder/otherfolder/a/b/node_modules 1 undefined Project: /user/username/rootfolder/otherfolder/a/b/tsconfig.json WatchType: Failed Lookup Locations +Info 106 [00:02:49.000] DirectoryWatcher:: Triggered with /user/username/rootfolder/otherfolder/a/b/node_modules/.staging/symbol-observable-24bcbbff/lib :: WatchInfo: /user/username/rootfolder/otherfolder/a/b 1 undefined Config: /user/username/rootfolder/otherfolder/a/b/tsconfig.json WatchType: Wild card directory +Info 107 [00:02:50.000] Project: /user/username/rootfolder/otherfolder/a/b/tsconfig.json Detected ignored path: /user/username/rootfolder/otherfolder/a/b/node_modules/.staging/symbol-observable-24bcbbff/lib +Info 108 [00:02:51.000] Elapsed:: *ms DirectoryWatcher:: Triggered with /user/username/rootfolder/otherfolder/a/b/node_modules/.staging/symbol-observable-24bcbbff/lib :: WatchInfo: /user/username/rootfolder/otherfolder/a/b 1 undefined Config: /user/username/rootfolder/otherfolder/a/b/tsconfig.json WatchType: Wild card directory +Info 109 [00:02:54.000] DirectoryWatcher:: Triggered with /user/username/rootfolder/otherfolder/a/b/node_modules/.staging/symbol-observable-24bcbbff/lib/index.js :: WatchInfo: /user/username/rootfolder/otherfolder/a/b/node_modules 1 undefined Project: /user/username/rootfolder/otherfolder/a/b/tsconfig.json WatchType: Failed Lookup Locations +Info 110 [00:02:55.000] Elapsed:: *ms DirectoryWatcher:: Triggered with /user/username/rootfolder/otherfolder/a/b/node_modules/.staging/symbol-observable-24bcbbff/lib/index.js :: WatchInfo: /user/username/rootfolder/otherfolder/a/b/node_modules 1 undefined Project: /user/username/rootfolder/otherfolder/a/b/tsconfig.json WatchType: Failed Lookup Locations +Info 111 [00:02:56.000] DirectoryWatcher:: Triggered with /user/username/rootfolder/otherfolder/a/b/node_modules/.staging/symbol-observable-24bcbbff/lib/index.js :: WatchInfo: /user/username/rootfolder/otherfolder/a/b 1 undefined Config: /user/username/rootfolder/otherfolder/a/b/tsconfig.json WatchType: Wild card directory +Info 112 [00:02:57.000] Project: /user/username/rootfolder/otherfolder/a/b/tsconfig.json Detected ignored path: /user/username/rootfolder/otherfolder/a/b/node_modules/.staging/symbol-observable-24bcbbff/lib/index.js +Info 113 [00:02:58.000] Elapsed:: *ms DirectoryWatcher:: Triggered with /user/username/rootfolder/otherfolder/a/b/node_modules/.staging/symbol-observable-24bcbbff/lib/index.js :: WatchInfo: /user/username/rootfolder/otherfolder/a/b 1 undefined Config: /user/username/rootfolder/otherfolder/a/b/tsconfig.json WatchType: Wild card directory Checking timeout queue length: 3 //// [/user/username/rootfolder/otherfolder/a/b/node_modules/.staging/symbol-observable-24bcbbff/package.json] { @@ -558,36 +558,36 @@ FsWatchesRecursive:: /user/username/rootfolder/otherfolder/a/b/node_modules: {} -Info 114 [16:03:08.000] DirectoryWatcher:: Triggered with /user/username/rootfolder/otherfolder/a/b/node_modules/.staging/typescript-8493ea5d/lib :: WatchInfo: /user/username/rootfolder/otherfolder/a/b/node_modules 1 undefined Project: /user/username/rootfolder/otherfolder/a/b/tsconfig.json WatchType: Failed Lookup Locations -Info 115 [16:03:09.000] Elapsed:: *ms DirectoryWatcher:: Triggered with /user/username/rootfolder/otherfolder/a/b/node_modules/.staging/typescript-8493ea5d/lib :: WatchInfo: /user/username/rootfolder/otherfolder/a/b/node_modules 1 undefined Project: /user/username/rootfolder/otherfolder/a/b/tsconfig.json WatchType: Failed Lookup Locations -Info 116 [16:03:10.000] DirectoryWatcher:: Triggered with /user/username/rootfolder/otherfolder/a/b/node_modules/.staging/typescript-8493ea5d/lib :: WatchInfo: /user/username/rootfolder/otherfolder/a/b 1 undefined Config: /user/username/rootfolder/otherfolder/a/b/tsconfig.json WatchType: Wild card directory -Info 117 [16:03:11.000] Project: /user/username/rootfolder/otherfolder/a/b/tsconfig.json Detected ignored path: /user/username/rootfolder/otherfolder/a/b/node_modules/.staging/typescript-8493ea5d/lib -Info 118 [16:03:12.000] Elapsed:: *ms DirectoryWatcher:: Triggered with /user/username/rootfolder/otherfolder/a/b/node_modules/.staging/typescript-8493ea5d/lib :: WatchInfo: /user/username/rootfolder/otherfolder/a/b 1 undefined Config: /user/username/rootfolder/otherfolder/a/b/tsconfig.json WatchType: Wild card directory -Info 119 [16:03:15.000] DirectoryWatcher:: Triggered with /user/username/rootfolder/otherfolder/a/b/node_modules/.staging/rxjs-22375c61/add :: WatchInfo: /user/username/rootfolder/otherfolder/a/b/node_modules 1 undefined Project: /user/username/rootfolder/otherfolder/a/b/tsconfig.json WatchType: Failed Lookup Locations -Info 120 [16:03:16.000] Elapsed:: *ms DirectoryWatcher:: Triggered with /user/username/rootfolder/otherfolder/a/b/node_modules/.staging/rxjs-22375c61/add :: WatchInfo: /user/username/rootfolder/otherfolder/a/b/node_modules 1 undefined Project: /user/username/rootfolder/otherfolder/a/b/tsconfig.json WatchType: Failed Lookup Locations -Info 121 [16:03:17.000] DirectoryWatcher:: Triggered with /user/username/rootfolder/otherfolder/a/b/node_modules/.staging/rxjs-22375c61/add :: WatchInfo: /user/username/rootfolder/otherfolder/a/b 1 undefined Config: /user/username/rootfolder/otherfolder/a/b/tsconfig.json WatchType: Wild card directory -Info 122 [16:03:18.000] Project: /user/username/rootfolder/otherfolder/a/b/tsconfig.json Detected ignored path: /user/username/rootfolder/otherfolder/a/b/node_modules/.staging/rxjs-22375c61/add -Info 123 [16:03:19.000] Elapsed:: *ms DirectoryWatcher:: Triggered with /user/username/rootfolder/otherfolder/a/b/node_modules/.staging/rxjs-22375c61/add :: WatchInfo: /user/username/rootfolder/otherfolder/a/b 1 undefined Config: /user/username/rootfolder/otherfolder/a/b/tsconfig.json WatchType: Wild card directory -Info 124 [16:03:22.000] DirectoryWatcher:: Triggered with /user/username/rootfolder/otherfolder/a/b/node_modules/.staging/rxjs-22375c61/add/operator :: WatchInfo: /user/username/rootfolder/otherfolder/a/b/node_modules 1 undefined Project: /user/username/rootfolder/otherfolder/a/b/tsconfig.json WatchType: Failed Lookup Locations -Info 125 [16:03:23.000] Elapsed:: *ms DirectoryWatcher:: Triggered with /user/username/rootfolder/otherfolder/a/b/node_modules/.staging/rxjs-22375c61/add/operator :: WatchInfo: /user/username/rootfolder/otherfolder/a/b/node_modules 1 undefined Project: /user/username/rootfolder/otherfolder/a/b/tsconfig.json WatchType: Failed Lookup Locations -Info 126 [16:03:24.000] DirectoryWatcher:: Triggered with /user/username/rootfolder/otherfolder/a/b/node_modules/.staging/rxjs-22375c61/add/operator :: WatchInfo: /user/username/rootfolder/otherfolder/a/b 1 undefined Config: /user/username/rootfolder/otherfolder/a/b/tsconfig.json WatchType: Wild card directory -Info 127 [16:03:25.000] Project: /user/username/rootfolder/otherfolder/a/b/tsconfig.json Detected ignored path: /user/username/rootfolder/otherfolder/a/b/node_modules/.staging/rxjs-22375c61/add/operator -Info 128 [16:03:26.000] Elapsed:: *ms DirectoryWatcher:: Triggered with /user/username/rootfolder/otherfolder/a/b/node_modules/.staging/rxjs-22375c61/add/operator :: WatchInfo: /user/username/rootfolder/otherfolder/a/b 1 undefined Config: /user/username/rootfolder/otherfolder/a/b/tsconfig.json WatchType: Wild card directory -Info 129 [16:03:29.000] DirectoryWatcher:: Triggered with /user/username/rootfolder/otherfolder/a/b/node_modules/.staging/@types/lodash-e56c4fe7/package.json :: WatchInfo: /user/username/rootfolder/otherfolder/a/b/node_modules 1 undefined Project: /user/username/rootfolder/otherfolder/a/b/tsconfig.json WatchType: Failed Lookup Locations -Info 130 [16:03:30.000] Elapsed:: *ms DirectoryWatcher:: Triggered with /user/username/rootfolder/otherfolder/a/b/node_modules/.staging/@types/lodash-e56c4fe7/package.json :: WatchInfo: /user/username/rootfolder/otherfolder/a/b/node_modules 1 undefined Project: /user/username/rootfolder/otherfolder/a/b/tsconfig.json WatchType: Failed Lookup Locations -Info 131 [16:03:31.000] DirectoryWatcher:: Triggered with /user/username/rootfolder/otherfolder/a/b/node_modules/.staging/@types/lodash-e56c4fe7/package.json :: WatchInfo: /user/username/rootfolder/otherfolder/a/b 1 undefined Config: /user/username/rootfolder/otherfolder/a/b/tsconfig.json WatchType: Wild card directory -Info 132 [16:03:32.000] Project: /user/username/rootfolder/otherfolder/a/b/tsconfig.json Detected ignored path: /user/username/rootfolder/otherfolder/a/b/node_modules/.staging/@types/lodash-e56c4fe7/package.json -Info 133 [16:03:33.000] Elapsed:: *ms DirectoryWatcher:: Triggered with /user/username/rootfolder/otherfolder/a/b/node_modules/.staging/@types/lodash-e56c4fe7/package.json :: WatchInfo: /user/username/rootfolder/otherfolder/a/b 1 undefined Config: /user/username/rootfolder/otherfolder/a/b/tsconfig.json WatchType: Wild card directory -Info 134 [16:03:36.000] DirectoryWatcher:: Triggered with /user/username/rootfolder/otherfolder/a/b/node_modules/.staging/lodash-b0733faa/index.js :: WatchInfo: /user/username/rootfolder/otherfolder/a/b/node_modules 1 undefined Project: /user/username/rootfolder/otherfolder/a/b/tsconfig.json WatchType: Failed Lookup Locations -Info 135 [16:03:37.000] Elapsed:: *ms DirectoryWatcher:: Triggered with /user/username/rootfolder/otherfolder/a/b/node_modules/.staging/lodash-b0733faa/index.js :: WatchInfo: /user/username/rootfolder/otherfolder/a/b/node_modules 1 undefined Project: /user/username/rootfolder/otherfolder/a/b/tsconfig.json WatchType: Failed Lookup Locations -Info 136 [16:03:38.000] DirectoryWatcher:: Triggered with /user/username/rootfolder/otherfolder/a/b/node_modules/.staging/lodash-b0733faa/index.js :: WatchInfo: /user/username/rootfolder/otherfolder/a/b 1 undefined Config: /user/username/rootfolder/otherfolder/a/b/tsconfig.json WatchType: Wild card directory -Info 137 [16:03:39.000] Project: /user/username/rootfolder/otherfolder/a/b/tsconfig.json Detected ignored path: /user/username/rootfolder/otherfolder/a/b/node_modules/.staging/lodash-b0733faa/index.js -Info 138 [16:03:40.000] Elapsed:: *ms DirectoryWatcher:: Triggered with /user/username/rootfolder/otherfolder/a/b/node_modules/.staging/lodash-b0733faa/index.js :: WatchInfo: /user/username/rootfolder/otherfolder/a/b 1 undefined Config: /user/username/rootfolder/otherfolder/a/b/tsconfig.json WatchType: Wild card directory -Info 139 [16:03:43.000] DirectoryWatcher:: Triggered with /user/username/rootfolder/otherfolder/a/b/node_modules/.staging/typescript-8493ea5d/package.json.3017591594 :: WatchInfo: /user/username/rootfolder/otherfolder/a/b/node_modules 1 undefined Project: /user/username/rootfolder/otherfolder/a/b/tsconfig.json WatchType: Failed Lookup Locations -Info 140 [16:03:44.000] Elapsed:: *ms DirectoryWatcher:: Triggered with /user/username/rootfolder/otherfolder/a/b/node_modules/.staging/typescript-8493ea5d/package.json.3017591594 :: WatchInfo: /user/username/rootfolder/otherfolder/a/b/node_modules 1 undefined Project: /user/username/rootfolder/otherfolder/a/b/tsconfig.json WatchType: Failed Lookup Locations -Info 141 [16:03:45.000] DirectoryWatcher:: Triggered with /user/username/rootfolder/otherfolder/a/b/node_modules/.staging/typescript-8493ea5d/package.json.3017591594 :: WatchInfo: /user/username/rootfolder/otherfolder/a/b 1 undefined Config: /user/username/rootfolder/otherfolder/a/b/tsconfig.json WatchType: Wild card directory -Info 142 [16:03:46.000] Project: /user/username/rootfolder/otherfolder/a/b/tsconfig.json Detected ignored path: /user/username/rootfolder/otherfolder/a/b/node_modules/.staging/typescript-8493ea5d/package.json.3017591594 -Info 143 [16:03:47.000] Elapsed:: *ms DirectoryWatcher:: Triggered with /user/username/rootfolder/otherfolder/a/b/node_modules/.staging/typescript-8493ea5d/package.json.3017591594 :: WatchInfo: /user/username/rootfolder/otherfolder/a/b 1 undefined Config: /user/username/rootfolder/otherfolder/a/b/tsconfig.json WatchType: Wild card directory +Info 114 [00:03:08.000] DirectoryWatcher:: Triggered with /user/username/rootfolder/otherfolder/a/b/node_modules/.staging/typescript-8493ea5d/lib :: WatchInfo: /user/username/rootfolder/otherfolder/a/b/node_modules 1 undefined Project: /user/username/rootfolder/otherfolder/a/b/tsconfig.json WatchType: Failed Lookup Locations +Info 115 [00:03:09.000] Elapsed:: *ms DirectoryWatcher:: Triggered with /user/username/rootfolder/otherfolder/a/b/node_modules/.staging/typescript-8493ea5d/lib :: WatchInfo: /user/username/rootfolder/otherfolder/a/b/node_modules 1 undefined Project: /user/username/rootfolder/otherfolder/a/b/tsconfig.json WatchType: Failed Lookup Locations +Info 116 [00:03:10.000] DirectoryWatcher:: Triggered with /user/username/rootfolder/otherfolder/a/b/node_modules/.staging/typescript-8493ea5d/lib :: WatchInfo: /user/username/rootfolder/otherfolder/a/b 1 undefined Config: /user/username/rootfolder/otherfolder/a/b/tsconfig.json WatchType: Wild card directory +Info 117 [00:03:11.000] Project: /user/username/rootfolder/otherfolder/a/b/tsconfig.json Detected ignored path: /user/username/rootfolder/otherfolder/a/b/node_modules/.staging/typescript-8493ea5d/lib +Info 118 [00:03:12.000] Elapsed:: *ms DirectoryWatcher:: Triggered with /user/username/rootfolder/otherfolder/a/b/node_modules/.staging/typescript-8493ea5d/lib :: WatchInfo: /user/username/rootfolder/otherfolder/a/b 1 undefined Config: /user/username/rootfolder/otherfolder/a/b/tsconfig.json WatchType: Wild card directory +Info 119 [00:03:15.000] DirectoryWatcher:: Triggered with /user/username/rootfolder/otherfolder/a/b/node_modules/.staging/rxjs-22375c61/add :: WatchInfo: /user/username/rootfolder/otherfolder/a/b/node_modules 1 undefined Project: /user/username/rootfolder/otherfolder/a/b/tsconfig.json WatchType: Failed Lookup Locations +Info 120 [00:03:16.000] Elapsed:: *ms DirectoryWatcher:: Triggered with /user/username/rootfolder/otherfolder/a/b/node_modules/.staging/rxjs-22375c61/add :: WatchInfo: /user/username/rootfolder/otherfolder/a/b/node_modules 1 undefined Project: /user/username/rootfolder/otherfolder/a/b/tsconfig.json WatchType: Failed Lookup Locations +Info 121 [00:03:17.000] DirectoryWatcher:: Triggered with /user/username/rootfolder/otherfolder/a/b/node_modules/.staging/rxjs-22375c61/add :: WatchInfo: /user/username/rootfolder/otherfolder/a/b 1 undefined Config: /user/username/rootfolder/otherfolder/a/b/tsconfig.json WatchType: Wild card directory +Info 122 [00:03:18.000] Project: /user/username/rootfolder/otherfolder/a/b/tsconfig.json Detected ignored path: /user/username/rootfolder/otherfolder/a/b/node_modules/.staging/rxjs-22375c61/add +Info 123 [00:03:19.000] Elapsed:: *ms DirectoryWatcher:: Triggered with /user/username/rootfolder/otherfolder/a/b/node_modules/.staging/rxjs-22375c61/add :: WatchInfo: /user/username/rootfolder/otherfolder/a/b 1 undefined Config: /user/username/rootfolder/otherfolder/a/b/tsconfig.json WatchType: Wild card directory +Info 124 [00:03:22.000] DirectoryWatcher:: Triggered with /user/username/rootfolder/otherfolder/a/b/node_modules/.staging/rxjs-22375c61/add/operator :: WatchInfo: /user/username/rootfolder/otherfolder/a/b/node_modules 1 undefined Project: /user/username/rootfolder/otherfolder/a/b/tsconfig.json WatchType: Failed Lookup Locations +Info 125 [00:03:23.000] Elapsed:: *ms DirectoryWatcher:: Triggered with /user/username/rootfolder/otherfolder/a/b/node_modules/.staging/rxjs-22375c61/add/operator :: WatchInfo: /user/username/rootfolder/otherfolder/a/b/node_modules 1 undefined Project: /user/username/rootfolder/otherfolder/a/b/tsconfig.json WatchType: Failed Lookup Locations +Info 126 [00:03:24.000] DirectoryWatcher:: Triggered with /user/username/rootfolder/otherfolder/a/b/node_modules/.staging/rxjs-22375c61/add/operator :: WatchInfo: /user/username/rootfolder/otherfolder/a/b 1 undefined Config: /user/username/rootfolder/otherfolder/a/b/tsconfig.json WatchType: Wild card directory +Info 127 [00:03:25.000] Project: /user/username/rootfolder/otherfolder/a/b/tsconfig.json Detected ignored path: /user/username/rootfolder/otherfolder/a/b/node_modules/.staging/rxjs-22375c61/add/operator +Info 128 [00:03:26.000] Elapsed:: *ms DirectoryWatcher:: Triggered with /user/username/rootfolder/otherfolder/a/b/node_modules/.staging/rxjs-22375c61/add/operator :: WatchInfo: /user/username/rootfolder/otherfolder/a/b 1 undefined Config: /user/username/rootfolder/otherfolder/a/b/tsconfig.json WatchType: Wild card directory +Info 129 [00:03:29.000] DirectoryWatcher:: Triggered with /user/username/rootfolder/otherfolder/a/b/node_modules/.staging/@types/lodash-e56c4fe7/package.json :: WatchInfo: /user/username/rootfolder/otherfolder/a/b/node_modules 1 undefined Project: /user/username/rootfolder/otherfolder/a/b/tsconfig.json WatchType: Failed Lookup Locations +Info 130 [00:03:30.000] Elapsed:: *ms DirectoryWatcher:: Triggered with /user/username/rootfolder/otherfolder/a/b/node_modules/.staging/@types/lodash-e56c4fe7/package.json :: WatchInfo: /user/username/rootfolder/otherfolder/a/b/node_modules 1 undefined Project: /user/username/rootfolder/otherfolder/a/b/tsconfig.json WatchType: Failed Lookup Locations +Info 131 [00:03:31.000] DirectoryWatcher:: Triggered with /user/username/rootfolder/otherfolder/a/b/node_modules/.staging/@types/lodash-e56c4fe7/package.json :: WatchInfo: /user/username/rootfolder/otherfolder/a/b 1 undefined Config: /user/username/rootfolder/otherfolder/a/b/tsconfig.json WatchType: Wild card directory +Info 132 [00:03:32.000] Project: /user/username/rootfolder/otherfolder/a/b/tsconfig.json Detected ignored path: /user/username/rootfolder/otherfolder/a/b/node_modules/.staging/@types/lodash-e56c4fe7/package.json +Info 133 [00:03:33.000] Elapsed:: *ms DirectoryWatcher:: Triggered with /user/username/rootfolder/otherfolder/a/b/node_modules/.staging/@types/lodash-e56c4fe7/package.json :: WatchInfo: /user/username/rootfolder/otherfolder/a/b 1 undefined Config: /user/username/rootfolder/otherfolder/a/b/tsconfig.json WatchType: Wild card directory +Info 134 [00:03:36.000] DirectoryWatcher:: Triggered with /user/username/rootfolder/otherfolder/a/b/node_modules/.staging/lodash-b0733faa/index.js :: WatchInfo: /user/username/rootfolder/otherfolder/a/b/node_modules 1 undefined Project: /user/username/rootfolder/otherfolder/a/b/tsconfig.json WatchType: Failed Lookup Locations +Info 135 [00:03:37.000] Elapsed:: *ms DirectoryWatcher:: Triggered with /user/username/rootfolder/otherfolder/a/b/node_modules/.staging/lodash-b0733faa/index.js :: WatchInfo: /user/username/rootfolder/otherfolder/a/b/node_modules 1 undefined Project: /user/username/rootfolder/otherfolder/a/b/tsconfig.json WatchType: Failed Lookup Locations +Info 136 [00:03:38.000] DirectoryWatcher:: Triggered with /user/username/rootfolder/otherfolder/a/b/node_modules/.staging/lodash-b0733faa/index.js :: WatchInfo: /user/username/rootfolder/otherfolder/a/b 1 undefined Config: /user/username/rootfolder/otherfolder/a/b/tsconfig.json WatchType: Wild card directory +Info 137 [00:03:39.000] Project: /user/username/rootfolder/otherfolder/a/b/tsconfig.json Detected ignored path: /user/username/rootfolder/otherfolder/a/b/node_modules/.staging/lodash-b0733faa/index.js +Info 138 [00:03:40.000] Elapsed:: *ms DirectoryWatcher:: Triggered with /user/username/rootfolder/otherfolder/a/b/node_modules/.staging/lodash-b0733faa/index.js :: WatchInfo: /user/username/rootfolder/otherfolder/a/b 1 undefined Config: /user/username/rootfolder/otherfolder/a/b/tsconfig.json WatchType: Wild card directory +Info 139 [00:03:43.000] DirectoryWatcher:: Triggered with /user/username/rootfolder/otherfolder/a/b/node_modules/.staging/typescript-8493ea5d/package.json.3017591594 :: WatchInfo: /user/username/rootfolder/otherfolder/a/b/node_modules 1 undefined Project: /user/username/rootfolder/otherfolder/a/b/tsconfig.json WatchType: Failed Lookup Locations +Info 140 [00:03:44.000] Elapsed:: *ms DirectoryWatcher:: Triggered with /user/username/rootfolder/otherfolder/a/b/node_modules/.staging/typescript-8493ea5d/package.json.3017591594 :: WatchInfo: /user/username/rootfolder/otherfolder/a/b/node_modules 1 undefined Project: /user/username/rootfolder/otherfolder/a/b/tsconfig.json WatchType: Failed Lookup Locations +Info 141 [00:03:45.000] DirectoryWatcher:: Triggered with /user/username/rootfolder/otherfolder/a/b/node_modules/.staging/typescript-8493ea5d/package.json.3017591594 :: WatchInfo: /user/username/rootfolder/otherfolder/a/b 1 undefined Config: /user/username/rootfolder/otherfolder/a/b/tsconfig.json WatchType: Wild card directory +Info 142 [00:03:46.000] Project: /user/username/rootfolder/otherfolder/a/b/tsconfig.json Detected ignored path: /user/username/rootfolder/otherfolder/a/b/node_modules/.staging/typescript-8493ea5d/package.json.3017591594 +Info 143 [00:03:47.000] Elapsed:: *ms DirectoryWatcher:: Triggered with /user/username/rootfolder/otherfolder/a/b/node_modules/.staging/typescript-8493ea5d/package.json.3017591594 :: WatchInfo: /user/username/rootfolder/otherfolder/a/b 1 undefined Config: /user/username/rootfolder/otherfolder/a/b/tsconfig.json WatchType: Wild card directory Checking timeout queue length: 3 //// [/user/username/rootfolder/otherfolder/a/b/node_modules/.staging/@types/lodash-e56c4fe7/package.json] { @@ -663,11 +663,11 @@ FsWatchesRecursive:: /user/username/rootfolder/otherfolder/a/b/node_modules: {} -Info 144 [16:03:49.000] DirectoryWatcher:: Triggered with /user/username/rootfolder/otherfolder/a/b/node_modules/.staging/typescript-8493ea5d/package.json.3017591594 :: WatchInfo: /user/username/rootfolder/otherfolder/a/b/node_modules 1 undefined Project: /user/username/rootfolder/otherfolder/a/b/tsconfig.json WatchType: Failed Lookup Locations -Info 145 [16:03:50.000] Elapsed:: *ms DirectoryWatcher:: Triggered with /user/username/rootfolder/otherfolder/a/b/node_modules/.staging/typescript-8493ea5d/package.json.3017591594 :: WatchInfo: /user/username/rootfolder/otherfolder/a/b/node_modules 1 undefined Project: /user/username/rootfolder/otherfolder/a/b/tsconfig.json WatchType: Failed Lookup Locations -Info 146 [16:03:51.000] DirectoryWatcher:: Triggered with /user/username/rootfolder/otherfolder/a/b/node_modules/.staging/typescript-8493ea5d/package.json.3017591594 :: WatchInfo: /user/username/rootfolder/otherfolder/a/b 1 undefined Config: /user/username/rootfolder/otherfolder/a/b/tsconfig.json WatchType: Wild card directory -Info 147 [16:03:52.000] Project: /user/username/rootfolder/otherfolder/a/b/tsconfig.json Detected ignored path: /user/username/rootfolder/otherfolder/a/b/node_modules/.staging/typescript-8493ea5d/package.json.3017591594 -Info 148 [16:03:53.000] Elapsed:: *ms DirectoryWatcher:: Triggered with /user/username/rootfolder/otherfolder/a/b/node_modules/.staging/typescript-8493ea5d/package.json.3017591594 :: WatchInfo: /user/username/rootfolder/otherfolder/a/b 1 undefined Config: /user/username/rootfolder/otherfolder/a/b/tsconfig.json WatchType: Wild card directory +Info 144 [00:03:49.000] DirectoryWatcher:: Triggered with /user/username/rootfolder/otherfolder/a/b/node_modules/.staging/typescript-8493ea5d/package.json.3017591594 :: WatchInfo: /user/username/rootfolder/otherfolder/a/b/node_modules 1 undefined Project: /user/username/rootfolder/otherfolder/a/b/tsconfig.json WatchType: Failed Lookup Locations +Info 145 [00:03:50.000] Elapsed:: *ms DirectoryWatcher:: Triggered with /user/username/rootfolder/otherfolder/a/b/node_modules/.staging/typescript-8493ea5d/package.json.3017591594 :: WatchInfo: /user/username/rootfolder/otherfolder/a/b/node_modules 1 undefined Project: /user/username/rootfolder/otherfolder/a/b/tsconfig.json WatchType: Failed Lookup Locations +Info 146 [00:03:51.000] DirectoryWatcher:: Triggered with /user/username/rootfolder/otherfolder/a/b/node_modules/.staging/typescript-8493ea5d/package.json.3017591594 :: WatchInfo: /user/username/rootfolder/otherfolder/a/b 1 undefined Config: /user/username/rootfolder/otherfolder/a/b/tsconfig.json WatchType: Wild card directory +Info 147 [00:03:52.000] Project: /user/username/rootfolder/otherfolder/a/b/tsconfig.json Detected ignored path: /user/username/rootfolder/otherfolder/a/b/node_modules/.staging/typescript-8493ea5d/package.json.3017591594 +Info 148 [00:03:53.000] Elapsed:: *ms DirectoryWatcher:: Triggered with /user/username/rootfolder/otherfolder/a/b/node_modules/.staging/typescript-8493ea5d/package.json.3017591594 :: WatchInfo: /user/username/rootfolder/otherfolder/a/b 1 undefined Config: /user/username/rootfolder/otherfolder/a/b/tsconfig.json WatchType: Wild card directory Checking timeout queue length: 3 //// [/user/username/rootfolder/otherfolder/a/b/node_modules/.staging/typescript-8493ea5d/package.json.3017591594] deleted @@ -695,41 +695,41 @@ FsWatchesRecursive:: /user/username/rootfolder/otherfolder/a/b/node_modules: {} -Info 149 [16:04:14.000] DirectoryWatcher:: Triggered with /user/username/rootfolder/otherfolder/a/b/node_modules/.staging/rxjs-22375c61/bundles :: WatchInfo: /user/username/rootfolder/otherfolder/a/b/node_modules 1 undefined Project: /user/username/rootfolder/otherfolder/a/b/tsconfig.json WatchType: Failed Lookup Locations -Info 150 [16:04:15.000] Elapsed:: *ms DirectoryWatcher:: Triggered with /user/username/rootfolder/otherfolder/a/b/node_modules/.staging/rxjs-22375c61/bundles :: WatchInfo: /user/username/rootfolder/otherfolder/a/b/node_modules 1 undefined Project: /user/username/rootfolder/otherfolder/a/b/tsconfig.json WatchType: Failed Lookup Locations -Info 151 [16:04:16.000] DirectoryWatcher:: Triggered with /user/username/rootfolder/otherfolder/a/b/node_modules/.staging/rxjs-22375c61/bundles :: WatchInfo: /user/username/rootfolder/otherfolder/a/b 1 undefined Config: /user/username/rootfolder/otherfolder/a/b/tsconfig.json WatchType: Wild card directory -Info 152 [16:04:17.000] Project: /user/username/rootfolder/otherfolder/a/b/tsconfig.json Detected ignored path: /user/username/rootfolder/otherfolder/a/b/node_modules/.staging/rxjs-22375c61/bundles -Info 153 [16:04:18.000] Elapsed:: *ms DirectoryWatcher:: Triggered with /user/username/rootfolder/otherfolder/a/b/node_modules/.staging/rxjs-22375c61/bundles :: WatchInfo: /user/username/rootfolder/otherfolder/a/b 1 undefined Config: /user/username/rootfolder/otherfolder/a/b/tsconfig.json WatchType: Wild card directory -Info 154 [16:04:21.000] DirectoryWatcher:: Triggered with /user/username/rootfolder/otherfolder/a/b/node_modules/.staging/rxjs-22375c61/operator :: WatchInfo: /user/username/rootfolder/otherfolder/a/b/node_modules 1 undefined Project: /user/username/rootfolder/otherfolder/a/b/tsconfig.json WatchType: Failed Lookup Locations -Info 155 [16:04:22.000] Elapsed:: *ms DirectoryWatcher:: Triggered with /user/username/rootfolder/otherfolder/a/b/node_modules/.staging/rxjs-22375c61/operator :: WatchInfo: /user/username/rootfolder/otherfolder/a/b/node_modules 1 undefined Project: /user/username/rootfolder/otherfolder/a/b/tsconfig.json WatchType: Failed Lookup Locations -Info 156 [16:04:23.000] DirectoryWatcher:: Triggered with /user/username/rootfolder/otherfolder/a/b/node_modules/.staging/rxjs-22375c61/operator :: WatchInfo: /user/username/rootfolder/otherfolder/a/b 1 undefined Config: /user/username/rootfolder/otherfolder/a/b/tsconfig.json WatchType: Wild card directory -Info 157 [16:04:24.000] Project: /user/username/rootfolder/otherfolder/a/b/tsconfig.json Detected ignored path: /user/username/rootfolder/otherfolder/a/b/node_modules/.staging/rxjs-22375c61/operator -Info 158 [16:04:25.000] Elapsed:: *ms DirectoryWatcher:: Triggered with /user/username/rootfolder/otherfolder/a/b/node_modules/.staging/rxjs-22375c61/operator :: WatchInfo: /user/username/rootfolder/otherfolder/a/b 1 undefined Config: /user/username/rootfolder/otherfolder/a/b/tsconfig.json WatchType: Wild card directory -Info 159 [16:04:30.000] DirectoryWatcher:: Triggered with /user/username/rootfolder/otherfolder/a/b/node_modules/.staging/rxjs-22375c61/src :: WatchInfo: /user/username/rootfolder/otherfolder/a/b/node_modules 1 undefined Project: /user/username/rootfolder/otherfolder/a/b/tsconfig.json WatchType: Failed Lookup Locations -Info 160 [16:04:31.000] Elapsed:: *ms DirectoryWatcher:: Triggered with /user/username/rootfolder/otherfolder/a/b/node_modules/.staging/rxjs-22375c61/src :: WatchInfo: /user/username/rootfolder/otherfolder/a/b/node_modules 1 undefined Project: /user/username/rootfolder/otherfolder/a/b/tsconfig.json WatchType: Failed Lookup Locations -Info 161 [16:04:32.000] DirectoryWatcher:: Triggered with /user/username/rootfolder/otherfolder/a/b/node_modules/.staging/rxjs-22375c61/src :: WatchInfo: /user/username/rootfolder/otherfolder/a/b 1 undefined Config: /user/username/rootfolder/otherfolder/a/b/tsconfig.json WatchType: Wild card directory -Info 162 [16:04:33.000] Project: /user/username/rootfolder/otherfolder/a/b/tsconfig.json Detected ignored path: /user/username/rootfolder/otherfolder/a/b/node_modules/.staging/rxjs-22375c61/src -Info 163 [16:04:34.000] Elapsed:: *ms DirectoryWatcher:: Triggered with /user/username/rootfolder/otherfolder/a/b/node_modules/.staging/rxjs-22375c61/src :: WatchInfo: /user/username/rootfolder/otherfolder/a/b 1 undefined Config: /user/username/rootfolder/otherfolder/a/b/tsconfig.json WatchType: Wild card directory -Info 164 [16:04:36.000] DirectoryWatcher:: Triggered with /user/username/rootfolder/otherfolder/a/b/node_modules/.staging/rxjs-22375c61/src/add :: WatchInfo: /user/username/rootfolder/otherfolder/a/b/node_modules 1 undefined Project: /user/username/rootfolder/otherfolder/a/b/tsconfig.json WatchType: Failed Lookup Locations -Info 165 [16:04:37.000] Elapsed:: *ms DirectoryWatcher:: Triggered with /user/username/rootfolder/otherfolder/a/b/node_modules/.staging/rxjs-22375c61/src/add :: WatchInfo: /user/username/rootfolder/otherfolder/a/b/node_modules 1 undefined Project: /user/username/rootfolder/otherfolder/a/b/tsconfig.json WatchType: Failed Lookup Locations -Info 166 [16:04:38.000] DirectoryWatcher:: Triggered with /user/username/rootfolder/otherfolder/a/b/node_modules/.staging/rxjs-22375c61/src/add :: WatchInfo: /user/username/rootfolder/otherfolder/a/b 1 undefined Config: /user/username/rootfolder/otherfolder/a/b/tsconfig.json WatchType: Wild card directory -Info 167 [16:04:39.000] Project: /user/username/rootfolder/otherfolder/a/b/tsconfig.json Detected ignored path: /user/username/rootfolder/otherfolder/a/b/node_modules/.staging/rxjs-22375c61/src/add -Info 168 [16:04:40.000] Elapsed:: *ms DirectoryWatcher:: Triggered with /user/username/rootfolder/otherfolder/a/b/node_modules/.staging/rxjs-22375c61/src/add :: WatchInfo: /user/username/rootfolder/otherfolder/a/b 1 undefined Config: /user/username/rootfolder/otherfolder/a/b/tsconfig.json WatchType: Wild card directory -Info 169 [16:04:42.000] DirectoryWatcher:: Triggered with /user/username/rootfolder/otherfolder/a/b/node_modules/.staging/rxjs-22375c61/src/add/observable :: WatchInfo: /user/username/rootfolder/otherfolder/a/b/node_modules 1 undefined Project: /user/username/rootfolder/otherfolder/a/b/tsconfig.json WatchType: Failed Lookup Locations -Info 170 [16:04:43.000] Elapsed:: *ms DirectoryWatcher:: Triggered with /user/username/rootfolder/otherfolder/a/b/node_modules/.staging/rxjs-22375c61/src/add/observable :: WatchInfo: /user/username/rootfolder/otherfolder/a/b/node_modules 1 undefined Project: /user/username/rootfolder/otherfolder/a/b/tsconfig.json WatchType: Failed Lookup Locations -Info 171 [16:04:44.000] DirectoryWatcher:: Triggered with /user/username/rootfolder/otherfolder/a/b/node_modules/.staging/rxjs-22375c61/src/add/observable :: WatchInfo: /user/username/rootfolder/otherfolder/a/b 1 undefined Config: /user/username/rootfolder/otherfolder/a/b/tsconfig.json WatchType: Wild card directory -Info 172 [16:04:45.000] Project: /user/username/rootfolder/otherfolder/a/b/tsconfig.json Detected ignored path: /user/username/rootfolder/otherfolder/a/b/node_modules/.staging/rxjs-22375c61/src/add/observable -Info 173 [16:04:46.000] Elapsed:: *ms DirectoryWatcher:: Triggered with /user/username/rootfolder/otherfolder/a/b/node_modules/.staging/rxjs-22375c61/src/add/observable :: WatchInfo: /user/username/rootfolder/otherfolder/a/b 1 undefined Config: /user/username/rootfolder/otherfolder/a/b/tsconfig.json WatchType: Wild card directory -Info 174 [16:04:49.000] DirectoryWatcher:: Triggered with /user/username/rootfolder/otherfolder/a/b/node_modules/.staging/rxjs-22375c61/src/add/observable/dom :: WatchInfo: /user/username/rootfolder/otherfolder/a/b/node_modules 1 undefined Project: /user/username/rootfolder/otherfolder/a/b/tsconfig.json WatchType: Failed Lookup Locations -Info 175 [16:04:50.000] Elapsed:: *ms DirectoryWatcher:: Triggered with /user/username/rootfolder/otherfolder/a/b/node_modules/.staging/rxjs-22375c61/src/add/observable/dom :: WatchInfo: /user/username/rootfolder/otherfolder/a/b/node_modules 1 undefined Project: /user/username/rootfolder/otherfolder/a/b/tsconfig.json WatchType: Failed Lookup Locations -Info 176 [16:04:51.000] DirectoryWatcher:: Triggered with /user/username/rootfolder/otherfolder/a/b/node_modules/.staging/rxjs-22375c61/src/add/observable/dom :: WatchInfo: /user/username/rootfolder/otherfolder/a/b 1 undefined Config: /user/username/rootfolder/otherfolder/a/b/tsconfig.json WatchType: Wild card directory -Info 177 [16:04:52.000] Project: /user/username/rootfolder/otherfolder/a/b/tsconfig.json Detected ignored path: /user/username/rootfolder/otherfolder/a/b/node_modules/.staging/rxjs-22375c61/src/add/observable/dom -Info 178 [16:04:53.000] Elapsed:: *ms DirectoryWatcher:: Triggered with /user/username/rootfolder/otherfolder/a/b/node_modules/.staging/rxjs-22375c61/src/add/observable/dom :: WatchInfo: /user/username/rootfolder/otherfolder/a/b 1 undefined Config: /user/username/rootfolder/otherfolder/a/b/tsconfig.json WatchType: Wild card directory -Info 179 [16:04:56.000] DirectoryWatcher:: Triggered with /user/username/rootfolder/otherfolder/a/b/node_modules/.staging/@types/lodash-e56c4fe7/index.d.ts :: WatchInfo: /user/username/rootfolder/otherfolder/a/b/node_modules 1 undefined Project: /user/username/rootfolder/otherfolder/a/b/tsconfig.json WatchType: Failed Lookup Locations -Info 180 [16:04:57.000] Elapsed:: *ms DirectoryWatcher:: Triggered with /user/username/rootfolder/otherfolder/a/b/node_modules/.staging/@types/lodash-e56c4fe7/index.d.ts :: WatchInfo: /user/username/rootfolder/otherfolder/a/b/node_modules 1 undefined Project: /user/username/rootfolder/otherfolder/a/b/tsconfig.json WatchType: Failed Lookup Locations -Info 181 [16:04:58.000] DirectoryWatcher:: Triggered with /user/username/rootfolder/otherfolder/a/b/node_modules/.staging/@types/lodash-e56c4fe7/index.d.ts :: WatchInfo: /user/username/rootfolder/otherfolder/a/b 1 undefined Config: /user/username/rootfolder/otherfolder/a/b/tsconfig.json WatchType: Wild card directory -Info 182 [16:04:59.000] Project: /user/username/rootfolder/otherfolder/a/b/tsconfig.json Detected ignored path: /user/username/rootfolder/otherfolder/a/b/node_modules/.staging/@types/lodash-e56c4fe7/index.d.ts -Info 183 [16:05:00.000] Elapsed:: *ms DirectoryWatcher:: Triggered with /user/username/rootfolder/otherfolder/a/b/node_modules/.staging/@types/lodash-e56c4fe7/index.d.ts :: WatchInfo: /user/username/rootfolder/otherfolder/a/b 1 undefined Config: /user/username/rootfolder/otherfolder/a/b/tsconfig.json WatchType: Wild card directory +Info 149 [00:04:14.000] DirectoryWatcher:: Triggered with /user/username/rootfolder/otherfolder/a/b/node_modules/.staging/rxjs-22375c61/bundles :: WatchInfo: /user/username/rootfolder/otherfolder/a/b/node_modules 1 undefined Project: /user/username/rootfolder/otherfolder/a/b/tsconfig.json WatchType: Failed Lookup Locations +Info 150 [00:04:15.000] Elapsed:: *ms DirectoryWatcher:: Triggered with /user/username/rootfolder/otherfolder/a/b/node_modules/.staging/rxjs-22375c61/bundles :: WatchInfo: /user/username/rootfolder/otherfolder/a/b/node_modules 1 undefined Project: /user/username/rootfolder/otherfolder/a/b/tsconfig.json WatchType: Failed Lookup Locations +Info 151 [00:04:16.000] DirectoryWatcher:: Triggered with /user/username/rootfolder/otherfolder/a/b/node_modules/.staging/rxjs-22375c61/bundles :: WatchInfo: /user/username/rootfolder/otherfolder/a/b 1 undefined Config: /user/username/rootfolder/otherfolder/a/b/tsconfig.json WatchType: Wild card directory +Info 152 [00:04:17.000] Project: /user/username/rootfolder/otherfolder/a/b/tsconfig.json Detected ignored path: /user/username/rootfolder/otherfolder/a/b/node_modules/.staging/rxjs-22375c61/bundles +Info 153 [00:04:18.000] Elapsed:: *ms DirectoryWatcher:: Triggered with /user/username/rootfolder/otherfolder/a/b/node_modules/.staging/rxjs-22375c61/bundles :: WatchInfo: /user/username/rootfolder/otherfolder/a/b 1 undefined Config: /user/username/rootfolder/otherfolder/a/b/tsconfig.json WatchType: Wild card directory +Info 154 [00:04:21.000] DirectoryWatcher:: Triggered with /user/username/rootfolder/otherfolder/a/b/node_modules/.staging/rxjs-22375c61/operator :: WatchInfo: /user/username/rootfolder/otherfolder/a/b/node_modules 1 undefined Project: /user/username/rootfolder/otherfolder/a/b/tsconfig.json WatchType: Failed Lookup Locations +Info 155 [00:04:22.000] Elapsed:: *ms DirectoryWatcher:: Triggered with /user/username/rootfolder/otherfolder/a/b/node_modules/.staging/rxjs-22375c61/operator :: WatchInfo: /user/username/rootfolder/otherfolder/a/b/node_modules 1 undefined Project: /user/username/rootfolder/otherfolder/a/b/tsconfig.json WatchType: Failed Lookup Locations +Info 156 [00:04:23.000] DirectoryWatcher:: Triggered with /user/username/rootfolder/otherfolder/a/b/node_modules/.staging/rxjs-22375c61/operator :: WatchInfo: /user/username/rootfolder/otherfolder/a/b 1 undefined Config: /user/username/rootfolder/otherfolder/a/b/tsconfig.json WatchType: Wild card directory +Info 157 [00:04:24.000] Project: /user/username/rootfolder/otherfolder/a/b/tsconfig.json Detected ignored path: /user/username/rootfolder/otherfolder/a/b/node_modules/.staging/rxjs-22375c61/operator +Info 158 [00:04:25.000] Elapsed:: *ms DirectoryWatcher:: Triggered with /user/username/rootfolder/otherfolder/a/b/node_modules/.staging/rxjs-22375c61/operator :: WatchInfo: /user/username/rootfolder/otherfolder/a/b 1 undefined Config: /user/username/rootfolder/otherfolder/a/b/tsconfig.json WatchType: Wild card directory +Info 159 [00:04:30.000] DirectoryWatcher:: Triggered with /user/username/rootfolder/otherfolder/a/b/node_modules/.staging/rxjs-22375c61/src :: WatchInfo: /user/username/rootfolder/otherfolder/a/b/node_modules 1 undefined Project: /user/username/rootfolder/otherfolder/a/b/tsconfig.json WatchType: Failed Lookup Locations +Info 160 [00:04:31.000] Elapsed:: *ms DirectoryWatcher:: Triggered with /user/username/rootfolder/otherfolder/a/b/node_modules/.staging/rxjs-22375c61/src :: WatchInfo: /user/username/rootfolder/otherfolder/a/b/node_modules 1 undefined Project: /user/username/rootfolder/otherfolder/a/b/tsconfig.json WatchType: Failed Lookup Locations +Info 161 [00:04:32.000] DirectoryWatcher:: Triggered with /user/username/rootfolder/otherfolder/a/b/node_modules/.staging/rxjs-22375c61/src :: WatchInfo: /user/username/rootfolder/otherfolder/a/b 1 undefined Config: /user/username/rootfolder/otherfolder/a/b/tsconfig.json WatchType: Wild card directory +Info 162 [00:04:33.000] Project: /user/username/rootfolder/otherfolder/a/b/tsconfig.json Detected ignored path: /user/username/rootfolder/otherfolder/a/b/node_modules/.staging/rxjs-22375c61/src +Info 163 [00:04:34.000] Elapsed:: *ms DirectoryWatcher:: Triggered with /user/username/rootfolder/otherfolder/a/b/node_modules/.staging/rxjs-22375c61/src :: WatchInfo: /user/username/rootfolder/otherfolder/a/b 1 undefined Config: /user/username/rootfolder/otherfolder/a/b/tsconfig.json WatchType: Wild card directory +Info 164 [00:04:36.000] DirectoryWatcher:: Triggered with /user/username/rootfolder/otherfolder/a/b/node_modules/.staging/rxjs-22375c61/src/add :: WatchInfo: /user/username/rootfolder/otherfolder/a/b/node_modules 1 undefined Project: /user/username/rootfolder/otherfolder/a/b/tsconfig.json WatchType: Failed Lookup Locations +Info 165 [00:04:37.000] Elapsed:: *ms DirectoryWatcher:: Triggered with /user/username/rootfolder/otherfolder/a/b/node_modules/.staging/rxjs-22375c61/src/add :: WatchInfo: /user/username/rootfolder/otherfolder/a/b/node_modules 1 undefined Project: /user/username/rootfolder/otherfolder/a/b/tsconfig.json WatchType: Failed Lookup Locations +Info 166 [00:04:38.000] DirectoryWatcher:: Triggered with /user/username/rootfolder/otherfolder/a/b/node_modules/.staging/rxjs-22375c61/src/add :: WatchInfo: /user/username/rootfolder/otherfolder/a/b 1 undefined Config: /user/username/rootfolder/otherfolder/a/b/tsconfig.json WatchType: Wild card directory +Info 167 [00:04:39.000] Project: /user/username/rootfolder/otherfolder/a/b/tsconfig.json Detected ignored path: /user/username/rootfolder/otherfolder/a/b/node_modules/.staging/rxjs-22375c61/src/add +Info 168 [00:04:40.000] Elapsed:: *ms DirectoryWatcher:: Triggered with /user/username/rootfolder/otherfolder/a/b/node_modules/.staging/rxjs-22375c61/src/add :: WatchInfo: /user/username/rootfolder/otherfolder/a/b 1 undefined Config: /user/username/rootfolder/otherfolder/a/b/tsconfig.json WatchType: Wild card directory +Info 169 [00:04:42.000] DirectoryWatcher:: Triggered with /user/username/rootfolder/otherfolder/a/b/node_modules/.staging/rxjs-22375c61/src/add/observable :: WatchInfo: /user/username/rootfolder/otherfolder/a/b/node_modules 1 undefined Project: /user/username/rootfolder/otherfolder/a/b/tsconfig.json WatchType: Failed Lookup Locations +Info 170 [00:04:43.000] Elapsed:: *ms DirectoryWatcher:: Triggered with /user/username/rootfolder/otherfolder/a/b/node_modules/.staging/rxjs-22375c61/src/add/observable :: WatchInfo: /user/username/rootfolder/otherfolder/a/b/node_modules 1 undefined Project: /user/username/rootfolder/otherfolder/a/b/tsconfig.json WatchType: Failed Lookup Locations +Info 171 [00:04:44.000] DirectoryWatcher:: Triggered with /user/username/rootfolder/otherfolder/a/b/node_modules/.staging/rxjs-22375c61/src/add/observable :: WatchInfo: /user/username/rootfolder/otherfolder/a/b 1 undefined Config: /user/username/rootfolder/otherfolder/a/b/tsconfig.json WatchType: Wild card directory +Info 172 [00:04:45.000] Project: /user/username/rootfolder/otherfolder/a/b/tsconfig.json Detected ignored path: /user/username/rootfolder/otherfolder/a/b/node_modules/.staging/rxjs-22375c61/src/add/observable +Info 173 [00:04:46.000] Elapsed:: *ms DirectoryWatcher:: Triggered with /user/username/rootfolder/otherfolder/a/b/node_modules/.staging/rxjs-22375c61/src/add/observable :: WatchInfo: /user/username/rootfolder/otherfolder/a/b 1 undefined Config: /user/username/rootfolder/otherfolder/a/b/tsconfig.json WatchType: Wild card directory +Info 174 [00:04:49.000] DirectoryWatcher:: Triggered with /user/username/rootfolder/otherfolder/a/b/node_modules/.staging/rxjs-22375c61/src/add/observable/dom :: WatchInfo: /user/username/rootfolder/otherfolder/a/b/node_modules 1 undefined Project: /user/username/rootfolder/otherfolder/a/b/tsconfig.json WatchType: Failed Lookup Locations +Info 175 [00:04:50.000] Elapsed:: *ms DirectoryWatcher:: Triggered with /user/username/rootfolder/otherfolder/a/b/node_modules/.staging/rxjs-22375c61/src/add/observable/dom :: WatchInfo: /user/username/rootfolder/otherfolder/a/b/node_modules 1 undefined Project: /user/username/rootfolder/otherfolder/a/b/tsconfig.json WatchType: Failed Lookup Locations +Info 176 [00:04:51.000] DirectoryWatcher:: Triggered with /user/username/rootfolder/otherfolder/a/b/node_modules/.staging/rxjs-22375c61/src/add/observable/dom :: WatchInfo: /user/username/rootfolder/otherfolder/a/b 1 undefined Config: /user/username/rootfolder/otherfolder/a/b/tsconfig.json WatchType: Wild card directory +Info 177 [00:04:52.000] Project: /user/username/rootfolder/otherfolder/a/b/tsconfig.json Detected ignored path: /user/username/rootfolder/otherfolder/a/b/node_modules/.staging/rxjs-22375c61/src/add/observable/dom +Info 178 [00:04:53.000] Elapsed:: *ms DirectoryWatcher:: Triggered with /user/username/rootfolder/otherfolder/a/b/node_modules/.staging/rxjs-22375c61/src/add/observable/dom :: WatchInfo: /user/username/rootfolder/otherfolder/a/b 1 undefined Config: /user/username/rootfolder/otherfolder/a/b/tsconfig.json WatchType: Wild card directory +Info 179 [00:04:56.000] DirectoryWatcher:: Triggered with /user/username/rootfolder/otherfolder/a/b/node_modules/.staging/@types/lodash-e56c4fe7/index.d.ts :: WatchInfo: /user/username/rootfolder/otherfolder/a/b/node_modules 1 undefined Project: /user/username/rootfolder/otherfolder/a/b/tsconfig.json WatchType: Failed Lookup Locations +Info 180 [00:04:57.000] Elapsed:: *ms DirectoryWatcher:: Triggered with /user/username/rootfolder/otherfolder/a/b/node_modules/.staging/@types/lodash-e56c4fe7/index.d.ts :: WatchInfo: /user/username/rootfolder/otherfolder/a/b/node_modules 1 undefined Project: /user/username/rootfolder/otherfolder/a/b/tsconfig.json WatchType: Failed Lookup Locations +Info 181 [00:04:58.000] DirectoryWatcher:: Triggered with /user/username/rootfolder/otherfolder/a/b/node_modules/.staging/@types/lodash-e56c4fe7/index.d.ts :: WatchInfo: /user/username/rootfolder/otherfolder/a/b 1 undefined Config: /user/username/rootfolder/otherfolder/a/b/tsconfig.json WatchType: Wild card directory +Info 182 [00:04:59.000] Project: /user/username/rootfolder/otherfolder/a/b/tsconfig.json Detected ignored path: /user/username/rootfolder/otherfolder/a/b/node_modules/.staging/@types/lodash-e56c4fe7/index.d.ts +Info 183 [00:05:00.000] Elapsed:: *ms DirectoryWatcher:: Triggered with /user/username/rootfolder/otherfolder/a/b/node_modules/.staging/@types/lodash-e56c4fe7/index.d.ts :: WatchInfo: /user/username/rootfolder/otherfolder/a/b 1 undefined Config: /user/username/rootfolder/otherfolder/a/b/tsconfig.json WatchType: Wild card directory Checking timeout queue length: 3 //// [/user/username/rootfolder/otherfolder/a/b/node_modules/.staging/@types/lodash-e56c4fe7/index.d.ts] @@ -771,31 +771,31 @@ FsWatchesRecursive:: /user/username/rootfolder/otherfolder/a/b/node_modules: {} -Info 184 [16:05:13.000] DirectoryWatcher:: Triggered with /user/username/rootfolder/otherfolder/a/b/node_modules/.staging/rxjs-22375c61/src/scheduler :: WatchInfo: /user/username/rootfolder/otherfolder/a/b/node_modules 1 undefined Project: /user/username/rootfolder/otherfolder/a/b/tsconfig.json WatchType: Failed Lookup Locations -Info 185 [16:05:14.000] Elapsed:: *ms DirectoryWatcher:: Triggered with /user/username/rootfolder/otherfolder/a/b/node_modules/.staging/rxjs-22375c61/src/scheduler :: WatchInfo: /user/username/rootfolder/otherfolder/a/b/node_modules 1 undefined Project: /user/username/rootfolder/otherfolder/a/b/tsconfig.json WatchType: Failed Lookup Locations -Info 186 [16:05:15.000] DirectoryWatcher:: Triggered with /user/username/rootfolder/otherfolder/a/b/node_modules/.staging/rxjs-22375c61/src/scheduler :: WatchInfo: /user/username/rootfolder/otherfolder/a/b 1 undefined Config: /user/username/rootfolder/otherfolder/a/b/tsconfig.json WatchType: Wild card directory -Info 187 [16:05:16.000] Project: /user/username/rootfolder/otherfolder/a/b/tsconfig.json Detected ignored path: /user/username/rootfolder/otherfolder/a/b/node_modules/.staging/rxjs-22375c61/src/scheduler -Info 188 [16:05:17.000] Elapsed:: *ms DirectoryWatcher:: Triggered with /user/username/rootfolder/otherfolder/a/b/node_modules/.staging/rxjs-22375c61/src/scheduler :: WatchInfo: /user/username/rootfolder/otherfolder/a/b 1 undefined Config: /user/username/rootfolder/otherfolder/a/b/tsconfig.json WatchType: Wild card directory -Info 189 [16:05:20.000] DirectoryWatcher:: Triggered with /user/username/rootfolder/otherfolder/a/b/node_modules/.staging/rxjs-22375c61/src/util :: WatchInfo: /user/username/rootfolder/otherfolder/a/b/node_modules 1 undefined Project: /user/username/rootfolder/otherfolder/a/b/tsconfig.json WatchType: Failed Lookup Locations -Info 190 [16:05:21.000] Elapsed:: *ms DirectoryWatcher:: Triggered with /user/username/rootfolder/otherfolder/a/b/node_modules/.staging/rxjs-22375c61/src/util :: WatchInfo: /user/username/rootfolder/otherfolder/a/b/node_modules 1 undefined Project: /user/username/rootfolder/otherfolder/a/b/tsconfig.json WatchType: Failed Lookup Locations -Info 191 [16:05:22.000] DirectoryWatcher:: Triggered with /user/username/rootfolder/otherfolder/a/b/node_modules/.staging/rxjs-22375c61/src/util :: WatchInfo: /user/username/rootfolder/otherfolder/a/b 1 undefined Config: /user/username/rootfolder/otherfolder/a/b/tsconfig.json WatchType: Wild card directory -Info 192 [16:05:23.000] Project: /user/username/rootfolder/otherfolder/a/b/tsconfig.json Detected ignored path: /user/username/rootfolder/otherfolder/a/b/node_modules/.staging/rxjs-22375c61/src/util -Info 193 [16:05:24.000] Elapsed:: *ms DirectoryWatcher:: Triggered with /user/username/rootfolder/otherfolder/a/b/node_modules/.staging/rxjs-22375c61/src/util :: WatchInfo: /user/username/rootfolder/otherfolder/a/b 1 undefined Config: /user/username/rootfolder/otherfolder/a/b/tsconfig.json WatchType: Wild card directory -Info 194 [16:05:27.000] DirectoryWatcher:: Triggered with /user/username/rootfolder/otherfolder/a/b/node_modules/.staging/rxjs-22375c61/symbol :: WatchInfo: /user/username/rootfolder/otherfolder/a/b/node_modules 1 undefined Project: /user/username/rootfolder/otherfolder/a/b/tsconfig.json WatchType: Failed Lookup Locations -Info 195 [16:05:28.000] Elapsed:: *ms DirectoryWatcher:: Triggered with /user/username/rootfolder/otherfolder/a/b/node_modules/.staging/rxjs-22375c61/symbol :: WatchInfo: /user/username/rootfolder/otherfolder/a/b/node_modules 1 undefined Project: /user/username/rootfolder/otherfolder/a/b/tsconfig.json WatchType: Failed Lookup Locations -Info 196 [16:05:29.000] DirectoryWatcher:: Triggered with /user/username/rootfolder/otherfolder/a/b/node_modules/.staging/rxjs-22375c61/symbol :: WatchInfo: /user/username/rootfolder/otherfolder/a/b 1 undefined Config: /user/username/rootfolder/otherfolder/a/b/tsconfig.json WatchType: Wild card directory -Info 197 [16:05:30.000] Project: /user/username/rootfolder/otherfolder/a/b/tsconfig.json Detected ignored path: /user/username/rootfolder/otherfolder/a/b/node_modules/.staging/rxjs-22375c61/symbol -Info 198 [16:05:31.000] Elapsed:: *ms DirectoryWatcher:: Triggered with /user/username/rootfolder/otherfolder/a/b/node_modules/.staging/rxjs-22375c61/symbol :: WatchInfo: /user/username/rootfolder/otherfolder/a/b 1 undefined Config: /user/username/rootfolder/otherfolder/a/b/tsconfig.json WatchType: Wild card directory -Info 199 [16:05:34.000] DirectoryWatcher:: Triggered with /user/username/rootfolder/otherfolder/a/b/node_modules/.staging/rxjs-22375c61/testing :: WatchInfo: /user/username/rootfolder/otherfolder/a/b/node_modules 1 undefined Project: /user/username/rootfolder/otherfolder/a/b/tsconfig.json WatchType: Failed Lookup Locations -Info 200 [16:05:35.000] Elapsed:: *ms DirectoryWatcher:: Triggered with /user/username/rootfolder/otherfolder/a/b/node_modules/.staging/rxjs-22375c61/testing :: WatchInfo: /user/username/rootfolder/otherfolder/a/b/node_modules 1 undefined Project: /user/username/rootfolder/otherfolder/a/b/tsconfig.json WatchType: Failed Lookup Locations -Info 201 [16:05:36.000] DirectoryWatcher:: Triggered with /user/username/rootfolder/otherfolder/a/b/node_modules/.staging/rxjs-22375c61/testing :: WatchInfo: /user/username/rootfolder/otherfolder/a/b 1 undefined Config: /user/username/rootfolder/otherfolder/a/b/tsconfig.json WatchType: Wild card directory -Info 202 [16:05:37.000] Project: /user/username/rootfolder/otherfolder/a/b/tsconfig.json Detected ignored path: /user/username/rootfolder/otherfolder/a/b/node_modules/.staging/rxjs-22375c61/testing -Info 203 [16:05:38.000] Elapsed:: *ms DirectoryWatcher:: Triggered with /user/username/rootfolder/otherfolder/a/b/node_modules/.staging/rxjs-22375c61/testing :: WatchInfo: /user/username/rootfolder/otherfolder/a/b 1 undefined Config: /user/username/rootfolder/otherfolder/a/b/tsconfig.json WatchType: Wild card directory -Info 204 [16:05:41.000] DirectoryWatcher:: Triggered with /user/username/rootfolder/otherfolder/a/b/node_modules/.staging/rxjs-22375c61/package.json.2252192041 :: WatchInfo: /user/username/rootfolder/otherfolder/a/b/node_modules 1 undefined Project: /user/username/rootfolder/otherfolder/a/b/tsconfig.json WatchType: Failed Lookup Locations -Info 205 [16:05:42.000] Elapsed:: *ms DirectoryWatcher:: Triggered with /user/username/rootfolder/otherfolder/a/b/node_modules/.staging/rxjs-22375c61/package.json.2252192041 :: WatchInfo: /user/username/rootfolder/otherfolder/a/b/node_modules 1 undefined Project: /user/username/rootfolder/otherfolder/a/b/tsconfig.json WatchType: Failed Lookup Locations -Info 206 [16:05:43.000] DirectoryWatcher:: Triggered with /user/username/rootfolder/otherfolder/a/b/node_modules/.staging/rxjs-22375c61/package.json.2252192041 :: WatchInfo: /user/username/rootfolder/otherfolder/a/b 1 undefined Config: /user/username/rootfolder/otherfolder/a/b/tsconfig.json WatchType: Wild card directory -Info 207 [16:05:44.000] Project: /user/username/rootfolder/otherfolder/a/b/tsconfig.json Detected ignored path: /user/username/rootfolder/otherfolder/a/b/node_modules/.staging/rxjs-22375c61/package.json.2252192041 -Info 208 [16:05:45.000] Elapsed:: *ms DirectoryWatcher:: Triggered with /user/username/rootfolder/otherfolder/a/b/node_modules/.staging/rxjs-22375c61/package.json.2252192041 :: WatchInfo: /user/username/rootfolder/otherfolder/a/b 1 undefined Config: /user/username/rootfolder/otherfolder/a/b/tsconfig.json WatchType: Wild card directory +Info 184 [00:05:13.000] DirectoryWatcher:: Triggered with /user/username/rootfolder/otherfolder/a/b/node_modules/.staging/rxjs-22375c61/src/scheduler :: WatchInfo: /user/username/rootfolder/otherfolder/a/b/node_modules 1 undefined Project: /user/username/rootfolder/otherfolder/a/b/tsconfig.json WatchType: Failed Lookup Locations +Info 185 [00:05:14.000] Elapsed:: *ms DirectoryWatcher:: Triggered with /user/username/rootfolder/otherfolder/a/b/node_modules/.staging/rxjs-22375c61/src/scheduler :: WatchInfo: /user/username/rootfolder/otherfolder/a/b/node_modules 1 undefined Project: /user/username/rootfolder/otherfolder/a/b/tsconfig.json WatchType: Failed Lookup Locations +Info 186 [00:05:15.000] DirectoryWatcher:: Triggered with /user/username/rootfolder/otherfolder/a/b/node_modules/.staging/rxjs-22375c61/src/scheduler :: WatchInfo: /user/username/rootfolder/otherfolder/a/b 1 undefined Config: /user/username/rootfolder/otherfolder/a/b/tsconfig.json WatchType: Wild card directory +Info 187 [00:05:16.000] Project: /user/username/rootfolder/otherfolder/a/b/tsconfig.json Detected ignored path: /user/username/rootfolder/otherfolder/a/b/node_modules/.staging/rxjs-22375c61/src/scheduler +Info 188 [00:05:17.000] Elapsed:: *ms DirectoryWatcher:: Triggered with /user/username/rootfolder/otherfolder/a/b/node_modules/.staging/rxjs-22375c61/src/scheduler :: WatchInfo: /user/username/rootfolder/otherfolder/a/b 1 undefined Config: /user/username/rootfolder/otherfolder/a/b/tsconfig.json WatchType: Wild card directory +Info 189 [00:05:20.000] DirectoryWatcher:: Triggered with /user/username/rootfolder/otherfolder/a/b/node_modules/.staging/rxjs-22375c61/src/util :: WatchInfo: /user/username/rootfolder/otherfolder/a/b/node_modules 1 undefined Project: /user/username/rootfolder/otherfolder/a/b/tsconfig.json WatchType: Failed Lookup Locations +Info 190 [00:05:21.000] Elapsed:: *ms DirectoryWatcher:: Triggered with /user/username/rootfolder/otherfolder/a/b/node_modules/.staging/rxjs-22375c61/src/util :: WatchInfo: /user/username/rootfolder/otherfolder/a/b/node_modules 1 undefined Project: /user/username/rootfolder/otherfolder/a/b/tsconfig.json WatchType: Failed Lookup Locations +Info 191 [00:05:22.000] DirectoryWatcher:: Triggered with /user/username/rootfolder/otherfolder/a/b/node_modules/.staging/rxjs-22375c61/src/util :: WatchInfo: /user/username/rootfolder/otherfolder/a/b 1 undefined Config: /user/username/rootfolder/otherfolder/a/b/tsconfig.json WatchType: Wild card directory +Info 192 [00:05:23.000] Project: /user/username/rootfolder/otherfolder/a/b/tsconfig.json Detected ignored path: /user/username/rootfolder/otherfolder/a/b/node_modules/.staging/rxjs-22375c61/src/util +Info 193 [00:05:24.000] Elapsed:: *ms DirectoryWatcher:: Triggered with /user/username/rootfolder/otherfolder/a/b/node_modules/.staging/rxjs-22375c61/src/util :: WatchInfo: /user/username/rootfolder/otherfolder/a/b 1 undefined Config: /user/username/rootfolder/otherfolder/a/b/tsconfig.json WatchType: Wild card directory +Info 194 [00:05:27.000] DirectoryWatcher:: Triggered with /user/username/rootfolder/otherfolder/a/b/node_modules/.staging/rxjs-22375c61/symbol :: WatchInfo: /user/username/rootfolder/otherfolder/a/b/node_modules 1 undefined Project: /user/username/rootfolder/otherfolder/a/b/tsconfig.json WatchType: Failed Lookup Locations +Info 195 [00:05:28.000] Elapsed:: *ms DirectoryWatcher:: Triggered with /user/username/rootfolder/otherfolder/a/b/node_modules/.staging/rxjs-22375c61/symbol :: WatchInfo: /user/username/rootfolder/otherfolder/a/b/node_modules 1 undefined Project: /user/username/rootfolder/otherfolder/a/b/tsconfig.json WatchType: Failed Lookup Locations +Info 196 [00:05:29.000] DirectoryWatcher:: Triggered with /user/username/rootfolder/otherfolder/a/b/node_modules/.staging/rxjs-22375c61/symbol :: WatchInfo: /user/username/rootfolder/otherfolder/a/b 1 undefined Config: /user/username/rootfolder/otherfolder/a/b/tsconfig.json WatchType: Wild card directory +Info 197 [00:05:30.000] Project: /user/username/rootfolder/otherfolder/a/b/tsconfig.json Detected ignored path: /user/username/rootfolder/otherfolder/a/b/node_modules/.staging/rxjs-22375c61/symbol +Info 198 [00:05:31.000] Elapsed:: *ms DirectoryWatcher:: Triggered with /user/username/rootfolder/otherfolder/a/b/node_modules/.staging/rxjs-22375c61/symbol :: WatchInfo: /user/username/rootfolder/otherfolder/a/b 1 undefined Config: /user/username/rootfolder/otherfolder/a/b/tsconfig.json WatchType: Wild card directory +Info 199 [00:05:34.000] DirectoryWatcher:: Triggered with /user/username/rootfolder/otherfolder/a/b/node_modules/.staging/rxjs-22375c61/testing :: WatchInfo: /user/username/rootfolder/otherfolder/a/b/node_modules 1 undefined Project: /user/username/rootfolder/otherfolder/a/b/tsconfig.json WatchType: Failed Lookup Locations +Info 200 [00:05:35.000] Elapsed:: *ms DirectoryWatcher:: Triggered with /user/username/rootfolder/otherfolder/a/b/node_modules/.staging/rxjs-22375c61/testing :: WatchInfo: /user/username/rootfolder/otherfolder/a/b/node_modules 1 undefined Project: /user/username/rootfolder/otherfolder/a/b/tsconfig.json WatchType: Failed Lookup Locations +Info 201 [00:05:36.000] DirectoryWatcher:: Triggered with /user/username/rootfolder/otherfolder/a/b/node_modules/.staging/rxjs-22375c61/testing :: WatchInfo: /user/username/rootfolder/otherfolder/a/b 1 undefined Config: /user/username/rootfolder/otherfolder/a/b/tsconfig.json WatchType: Wild card directory +Info 202 [00:05:37.000] Project: /user/username/rootfolder/otherfolder/a/b/tsconfig.json Detected ignored path: /user/username/rootfolder/otherfolder/a/b/node_modules/.staging/rxjs-22375c61/testing +Info 203 [00:05:38.000] Elapsed:: *ms DirectoryWatcher:: Triggered with /user/username/rootfolder/otherfolder/a/b/node_modules/.staging/rxjs-22375c61/testing :: WatchInfo: /user/username/rootfolder/otherfolder/a/b 1 undefined Config: /user/username/rootfolder/otherfolder/a/b/tsconfig.json WatchType: Wild card directory +Info 204 [00:05:41.000] DirectoryWatcher:: Triggered with /user/username/rootfolder/otherfolder/a/b/node_modules/.staging/rxjs-22375c61/package.json.2252192041 :: WatchInfo: /user/username/rootfolder/otherfolder/a/b/node_modules 1 undefined Project: /user/username/rootfolder/otherfolder/a/b/tsconfig.json WatchType: Failed Lookup Locations +Info 205 [00:05:42.000] Elapsed:: *ms DirectoryWatcher:: Triggered with /user/username/rootfolder/otherfolder/a/b/node_modules/.staging/rxjs-22375c61/package.json.2252192041 :: WatchInfo: /user/username/rootfolder/otherfolder/a/b/node_modules 1 undefined Project: /user/username/rootfolder/otherfolder/a/b/tsconfig.json WatchType: Failed Lookup Locations +Info 206 [00:05:43.000] DirectoryWatcher:: Triggered with /user/username/rootfolder/otherfolder/a/b/node_modules/.staging/rxjs-22375c61/package.json.2252192041 :: WatchInfo: /user/username/rootfolder/otherfolder/a/b 1 undefined Config: /user/username/rootfolder/otherfolder/a/b/tsconfig.json WatchType: Wild card directory +Info 207 [00:05:44.000] Project: /user/username/rootfolder/otherfolder/a/b/tsconfig.json Detected ignored path: /user/username/rootfolder/otherfolder/a/b/node_modules/.staging/rxjs-22375c61/package.json.2252192041 +Info 208 [00:05:45.000] Elapsed:: *ms DirectoryWatcher:: Triggered with /user/username/rootfolder/otherfolder/a/b/node_modules/.staging/rxjs-22375c61/package.json.2252192041 :: WatchInfo: /user/username/rootfolder/otherfolder/a/b 1 undefined Config: /user/username/rootfolder/otherfolder/a/b/tsconfig.json WatchType: Wild card directory Checking timeout queue length: 3 //// [/user/username/rootfolder/otherfolder/a/b/node_modules/.staging/rxjs-22375c61/package.json.2252192041] { @@ -1053,73 +1053,73 @@ FsWatchesRecursive:: /user/username/rootfolder/otherfolder/a/b/node_modules: {} -Info 209 [16:05:47.000] DirectoryWatcher:: Triggered with /user/username/rootfolder/otherfolder/a/b/node_modules/.staging/rxjs-22375c61/package.json.2252192041 :: WatchInfo: /user/username/rootfolder/otherfolder/a/b/node_modules 1 undefined Project: /user/username/rootfolder/otherfolder/a/b/tsconfig.json WatchType: Failed Lookup Locations -Info 210 [16:05:48.000] Elapsed:: *ms DirectoryWatcher:: Triggered with /user/username/rootfolder/otherfolder/a/b/node_modules/.staging/rxjs-22375c61/package.json.2252192041 :: WatchInfo: /user/username/rootfolder/otherfolder/a/b/node_modules 1 undefined Project: /user/username/rootfolder/otherfolder/a/b/tsconfig.json WatchType: Failed Lookup Locations -Info 211 [16:05:49.000] DirectoryWatcher:: Triggered with /user/username/rootfolder/otherfolder/a/b/node_modules/.staging/rxjs-22375c61/package.json.2252192041 :: WatchInfo: /user/username/rootfolder/otherfolder/a/b 1 undefined Config: /user/username/rootfolder/otherfolder/a/b/tsconfig.json WatchType: Wild card directory -Info 212 [16:05:50.000] Project: /user/username/rootfolder/otherfolder/a/b/tsconfig.json Detected ignored path: /user/username/rootfolder/otherfolder/a/b/node_modules/.staging/rxjs-22375c61/package.json.2252192041 -Info 213 [16:05:51.000] Elapsed:: *ms DirectoryWatcher:: Triggered with /user/username/rootfolder/otherfolder/a/b/node_modules/.staging/rxjs-22375c61/package.json.2252192041 :: WatchInfo: /user/username/rootfolder/otherfolder/a/b 1 undefined Config: /user/username/rootfolder/otherfolder/a/b/tsconfig.json WatchType: Wild card directory -Info 214 [16:06:04.000] DirectoryWatcher:: Triggered with /user/username/rootfolder/otherfolder/a/b/node_modules/symbol-observable :: WatchInfo: /user/username/rootfolder/otherfolder/a/b/node_modules 1 undefined Project: /user/username/rootfolder/otherfolder/a/b/tsconfig.json WatchType: Failed Lookup Locations -Info 215 [16:06:05.000] Scheduled: /user/username/rootfolder/otherfolder/a/b/tsconfig.jsonFailedLookupInvalidation, Cancelled earlier one -Info 216 [16:06:06.000] Elapsed:: *ms DirectoryWatcher:: Triggered with /user/username/rootfolder/otherfolder/a/b/node_modules/symbol-observable :: WatchInfo: /user/username/rootfolder/otherfolder/a/b/node_modules 1 undefined Project: /user/username/rootfolder/otherfolder/a/b/tsconfig.json WatchType: Failed Lookup Locations -Info 217 [16:06:07.000] DirectoryWatcher:: Triggered with /user/username/rootfolder/otherfolder/a/b/node_modules/symbol-observable :: WatchInfo: /user/username/rootfolder/otherfolder/a/b 1 undefined Config: /user/username/rootfolder/otherfolder/a/b/tsconfig.json WatchType: Wild card directory -Info 218 [16:06:08.000] Scheduled: /user/username/rootfolder/otherfolder/a/b/tsconfig.json, Cancelled earlier one -Info 219 [16:06:09.000] Scheduled: *ensureProjectForOpenFiles*, Cancelled earlier one -Info 220 [16:06:10.000] Elapsed:: *ms DirectoryWatcher:: Triggered with /user/username/rootfolder/otherfolder/a/b/node_modules/symbol-observable :: WatchInfo: /user/username/rootfolder/otherfolder/a/b 1 undefined Config: /user/username/rootfolder/otherfolder/a/b/tsconfig.json WatchType: Wild card directory -Info 221 [16:06:13.000] DirectoryWatcher:: Triggered with /user/username/rootfolder/otherfolder/a/b/node_modules/@types :: WatchInfo: /user/username/rootfolder/otherfolder/a/b/node_modules/@types 1 undefined Project: /user/username/rootfolder/otherfolder/a/b/tsconfig.json WatchType: Type roots -Info 222 [16:06:14.000] Scheduled: /user/username/rootfolder/otherfolder/a/b/tsconfig.json, Cancelled earlier one -Info 223 [16:06:15.000] Scheduled: *ensureProjectForOpenFiles*, Cancelled earlier one -Info 224 [16:06:16.000] Scheduled: /user/username/rootfolder/otherfolder/a/b/tsconfig.jsonFailedLookupInvalidation, Cancelled earlier one -Info 225 [16:06:17.000] Elapsed:: *ms DirectoryWatcher:: Triggered with /user/username/rootfolder/otherfolder/a/b/node_modules/@types :: WatchInfo: /user/username/rootfolder/otherfolder/a/b/node_modules/@types 1 undefined Project: /user/username/rootfolder/otherfolder/a/b/tsconfig.json WatchType: Type roots -Info 226 [16:06:18.000] DirectoryWatcher:: Triggered with /user/username/rootfolder/otherfolder/a/b/node_modules/@types :: WatchInfo: /user/username/rootfolder/otherfolder/a/b/node_modules/@types 1 undefined Project: /user/username/rootfolder/otherfolder/a/b/tsconfig.json WatchType: Type roots -Info 227 [16:06:19.000] Scheduled: /user/username/rootfolder/otherfolder/a/b/tsconfig.json, Cancelled earlier one -Info 228 [16:06:20.000] Scheduled: *ensureProjectForOpenFiles*, Cancelled earlier one -Info 229 [16:06:21.000] Scheduled: /user/username/rootfolder/otherfolder/a/b/tsconfig.jsonFailedLookupInvalidation, Cancelled earlier one -Info 230 [16:06:22.000] Elapsed:: *ms DirectoryWatcher:: Triggered with /user/username/rootfolder/otherfolder/a/b/node_modules/@types :: WatchInfo: /user/username/rootfolder/otherfolder/a/b/node_modules/@types 1 undefined Project: /user/username/rootfolder/otherfolder/a/b/tsconfig.json WatchType: Type roots -Info 231 [16:06:23.000] DirectoryWatcher:: Triggered with /user/username/rootfolder/otherfolder/a/b/node_modules/@types :: WatchInfo: /user/username/rootfolder/otherfolder/a/b/node_modules 1 undefined Project: /user/username/rootfolder/otherfolder/a/b/tsconfig.json WatchType: Failed Lookup Locations -Info 232 [16:06:24.000] Scheduled: /user/username/rootfolder/otherfolder/a/b/tsconfig.jsonFailedLookupInvalidation, Cancelled earlier one -Info 233 [16:06:25.000] Elapsed:: *ms DirectoryWatcher:: Triggered with /user/username/rootfolder/otherfolder/a/b/node_modules/@types :: WatchInfo: /user/username/rootfolder/otherfolder/a/b/node_modules 1 undefined Project: /user/username/rootfolder/otherfolder/a/b/tsconfig.json WatchType: Failed Lookup Locations -Info 234 [16:06:26.000] DirectoryWatcher:: Triggered with /user/username/rootfolder/otherfolder/a/b/node_modules/@types :: WatchInfo: /user/username/rootfolder/otherfolder/a/b 1 undefined Config: /user/username/rootfolder/otherfolder/a/b/tsconfig.json WatchType: Wild card directory -Info 235 [16:06:27.000] Scheduled: /user/username/rootfolder/otherfolder/a/b/tsconfig.json, Cancelled earlier one -Info 236 [16:06:28.000] Scheduled: *ensureProjectForOpenFiles*, Cancelled earlier one -Info 237 [16:06:29.000] Elapsed:: *ms DirectoryWatcher:: Triggered with /user/username/rootfolder/otherfolder/a/b/node_modules/@types :: WatchInfo: /user/username/rootfolder/otherfolder/a/b 1 undefined Config: /user/username/rootfolder/otherfolder/a/b/tsconfig.json WatchType: Wild card directory -Info 238 [16:06:32.000] DirectoryWatcher:: Triggered with /user/username/rootfolder/otherfolder/a/b/node_modules/@types/lodash :: WatchInfo: /user/username/rootfolder/otherfolder/a/b/node_modules/@types 1 undefined Project: /user/username/rootfolder/otherfolder/a/b/tsconfig.json WatchType: Type roots -Info 239 [16:06:33.000] Scheduled: /user/username/rootfolder/otherfolder/a/b/tsconfig.json, Cancelled earlier one -Info 240 [16:06:34.000] Scheduled: *ensureProjectForOpenFiles*, Cancelled earlier one -Info 241 [16:06:35.000] Scheduled: /user/username/rootfolder/otherfolder/a/b/tsconfig.jsonFailedLookupInvalidation, Cancelled earlier one -Info 242 [16:06:36.000] Elapsed:: *ms DirectoryWatcher:: Triggered with /user/username/rootfolder/otherfolder/a/b/node_modules/@types/lodash :: WatchInfo: /user/username/rootfolder/otherfolder/a/b/node_modules/@types 1 undefined Project: /user/username/rootfolder/otherfolder/a/b/tsconfig.json WatchType: Type roots -Info 243 [16:06:37.000] DirectoryWatcher:: Triggered with /user/username/rootfolder/otherfolder/a/b/node_modules/@types/lodash :: WatchInfo: /user/username/rootfolder/otherfolder/a/b/node_modules 1 undefined Project: /user/username/rootfolder/otherfolder/a/b/tsconfig.json WatchType: Failed Lookup Locations -Info 244 [16:06:38.000] Scheduled: /user/username/rootfolder/otherfolder/a/b/tsconfig.jsonFailedLookupInvalidation, Cancelled earlier one -Info 245 [16:06:39.000] Elapsed:: *ms DirectoryWatcher:: Triggered with /user/username/rootfolder/otherfolder/a/b/node_modules/@types/lodash :: WatchInfo: /user/username/rootfolder/otherfolder/a/b/node_modules 1 undefined Project: /user/username/rootfolder/otherfolder/a/b/tsconfig.json WatchType: Failed Lookup Locations -Info 246 [16:06:40.000] DirectoryWatcher:: Triggered with /user/username/rootfolder/otherfolder/a/b/node_modules/@types/lodash :: WatchInfo: /user/username/rootfolder/otherfolder/a/b 1 undefined Config: /user/username/rootfolder/otherfolder/a/b/tsconfig.json WatchType: Wild card directory -Info 247 [16:06:41.000] Scheduled: /user/username/rootfolder/otherfolder/a/b/tsconfig.json, Cancelled earlier one -Info 248 [16:06:42.000] Scheduled: *ensureProjectForOpenFiles*, Cancelled earlier one -Info 249 [16:06:43.000] Elapsed:: *ms DirectoryWatcher:: Triggered with /user/username/rootfolder/otherfolder/a/b/node_modules/@types/lodash :: WatchInfo: /user/username/rootfolder/otherfolder/a/b 1 undefined Config: /user/username/rootfolder/otherfolder/a/b/tsconfig.json WatchType: Wild card directory -Info 250 [16:06:46.000] DirectoryWatcher:: Triggered with /user/username/rootfolder/otherfolder/a/b/node_modules/lodash :: WatchInfo: /user/username/rootfolder/otherfolder/a/b/node_modules 1 undefined Project: /user/username/rootfolder/otherfolder/a/b/tsconfig.json WatchType: Failed Lookup Locations -Info 251 [16:06:47.000] Scheduled: /user/username/rootfolder/otherfolder/a/b/tsconfig.jsonFailedLookupInvalidation, Cancelled earlier one -Info 252 [16:06:48.000] Elapsed:: *ms DirectoryWatcher:: Triggered with /user/username/rootfolder/otherfolder/a/b/node_modules/lodash :: WatchInfo: /user/username/rootfolder/otherfolder/a/b/node_modules 1 undefined Project: /user/username/rootfolder/otherfolder/a/b/tsconfig.json WatchType: Failed Lookup Locations -Info 253 [16:06:49.000] DirectoryWatcher:: Triggered with /user/username/rootfolder/otherfolder/a/b/node_modules/lodash :: WatchInfo: /user/username/rootfolder/otherfolder/a/b 1 undefined Config: /user/username/rootfolder/otherfolder/a/b/tsconfig.json WatchType: Wild card directory -Info 254 [16:06:50.000] Scheduled: /user/username/rootfolder/otherfolder/a/b/tsconfig.json, Cancelled earlier one -Info 255 [16:06:51.000] Scheduled: *ensureProjectForOpenFiles*, Cancelled earlier one -Info 256 [16:06:52.000] Elapsed:: *ms DirectoryWatcher:: Triggered with /user/username/rootfolder/otherfolder/a/b/node_modules/lodash :: WatchInfo: /user/username/rootfolder/otherfolder/a/b 1 undefined Config: /user/username/rootfolder/otherfolder/a/b/tsconfig.json WatchType: Wild card directory -Info 257 [16:06:55.000] DirectoryWatcher:: Triggered with /user/username/rootfolder/otherfolder/a/b/node_modules/rxjs :: WatchInfo: /user/username/rootfolder/otherfolder/a/b/node_modules 1 undefined Project: /user/username/rootfolder/otherfolder/a/b/tsconfig.json WatchType: Failed Lookup Locations -Info 258 [16:06:56.000] Scheduled: /user/username/rootfolder/otherfolder/a/b/tsconfig.jsonFailedLookupInvalidation, Cancelled earlier one -Info 259 [16:06:57.000] Elapsed:: *ms DirectoryWatcher:: Triggered with /user/username/rootfolder/otherfolder/a/b/node_modules/rxjs :: WatchInfo: /user/username/rootfolder/otherfolder/a/b/node_modules 1 undefined Project: /user/username/rootfolder/otherfolder/a/b/tsconfig.json WatchType: Failed Lookup Locations -Info 260 [16:06:58.000] DirectoryWatcher:: Triggered with /user/username/rootfolder/otherfolder/a/b/node_modules/rxjs :: WatchInfo: /user/username/rootfolder/otherfolder/a/b 1 undefined Config: /user/username/rootfolder/otherfolder/a/b/tsconfig.json WatchType: Wild card directory -Info 261 [16:06:59.000] Scheduled: /user/username/rootfolder/otherfolder/a/b/tsconfig.json, Cancelled earlier one -Info 262 [16:07:00.000] Scheduled: *ensureProjectForOpenFiles*, Cancelled earlier one -Info 263 [16:07:01.000] Elapsed:: *ms DirectoryWatcher:: Triggered with /user/username/rootfolder/otherfolder/a/b/node_modules/rxjs :: WatchInfo: /user/username/rootfolder/otherfolder/a/b 1 undefined Config: /user/username/rootfolder/otherfolder/a/b/tsconfig.json WatchType: Wild card directory -Info 264 [16:07:04.000] DirectoryWatcher:: Triggered with /user/username/rootfolder/otherfolder/a/b/node_modules/typescript :: WatchInfo: /user/username/rootfolder/otherfolder/a/b/node_modules 1 undefined Project: /user/username/rootfolder/otherfolder/a/b/tsconfig.json WatchType: Failed Lookup Locations -Info 265 [16:07:05.000] Scheduled: /user/username/rootfolder/otherfolder/a/b/tsconfig.jsonFailedLookupInvalidation, Cancelled earlier one -Info 266 [16:07:06.000] Elapsed:: *ms DirectoryWatcher:: Triggered with /user/username/rootfolder/otherfolder/a/b/node_modules/typescript :: WatchInfo: /user/username/rootfolder/otherfolder/a/b/node_modules 1 undefined Project: /user/username/rootfolder/otherfolder/a/b/tsconfig.json WatchType: Failed Lookup Locations -Info 267 [16:07:07.000] DirectoryWatcher:: Triggered with /user/username/rootfolder/otherfolder/a/b/node_modules/typescript :: WatchInfo: /user/username/rootfolder/otherfolder/a/b 1 undefined Config: /user/username/rootfolder/otherfolder/a/b/tsconfig.json WatchType: Wild card directory -Info 268 [16:07:08.000] Scheduled: /user/username/rootfolder/otherfolder/a/b/tsconfig.json, Cancelled earlier one -Info 269 [16:07:09.000] Scheduled: *ensureProjectForOpenFiles*, Cancelled earlier one -Info 270 [16:07:10.000] Elapsed:: *ms DirectoryWatcher:: Triggered with /user/username/rootfolder/otherfolder/a/b/node_modules/typescript :: WatchInfo: /user/username/rootfolder/otherfolder/a/b 1 undefined Config: /user/username/rootfolder/otherfolder/a/b/tsconfig.json WatchType: Wild card directory -Info 271 [16:07:13.000] DirectoryWatcher:: Triggered with /user/username/rootfolder/otherfolder/a/b/node_modules/.bin :: WatchInfo: /user/username/rootfolder/otherfolder/a/b/node_modules 1 undefined Project: /user/username/rootfolder/otherfolder/a/b/tsconfig.json WatchType: Failed Lookup Locations -Info 272 [16:07:14.000] Elapsed:: *ms DirectoryWatcher:: Triggered with /user/username/rootfolder/otherfolder/a/b/node_modules/.bin :: WatchInfo: /user/username/rootfolder/otherfolder/a/b/node_modules 1 undefined Project: /user/username/rootfolder/otherfolder/a/b/tsconfig.json WatchType: Failed Lookup Locations -Info 273 [16:07:15.000] DirectoryWatcher:: Triggered with /user/username/rootfolder/otherfolder/a/b/node_modules/.bin :: WatchInfo: /user/username/rootfolder/otherfolder/a/b 1 undefined Config: /user/username/rootfolder/otherfolder/a/b/tsconfig.json WatchType: Wild card directory -Info 274 [16:07:16.000] Project: /user/username/rootfolder/otherfolder/a/b/tsconfig.json Detected ignored path: /user/username/rootfolder/otherfolder/a/b/node_modules/.bin -Info 275 [16:07:17.000] Elapsed:: *ms DirectoryWatcher:: Triggered with /user/username/rootfolder/otherfolder/a/b/node_modules/.bin :: WatchInfo: /user/username/rootfolder/otherfolder/a/b 1 undefined Config: /user/username/rootfolder/otherfolder/a/b/tsconfig.json WatchType: Wild card directory +Info 209 [00:05:47.000] DirectoryWatcher:: Triggered with /user/username/rootfolder/otherfolder/a/b/node_modules/.staging/rxjs-22375c61/package.json.2252192041 :: WatchInfo: /user/username/rootfolder/otherfolder/a/b/node_modules 1 undefined Project: /user/username/rootfolder/otherfolder/a/b/tsconfig.json WatchType: Failed Lookup Locations +Info 210 [00:05:48.000] Elapsed:: *ms DirectoryWatcher:: Triggered with /user/username/rootfolder/otherfolder/a/b/node_modules/.staging/rxjs-22375c61/package.json.2252192041 :: WatchInfo: /user/username/rootfolder/otherfolder/a/b/node_modules 1 undefined Project: /user/username/rootfolder/otherfolder/a/b/tsconfig.json WatchType: Failed Lookup Locations +Info 211 [00:05:49.000] DirectoryWatcher:: Triggered with /user/username/rootfolder/otherfolder/a/b/node_modules/.staging/rxjs-22375c61/package.json.2252192041 :: WatchInfo: /user/username/rootfolder/otherfolder/a/b 1 undefined Config: /user/username/rootfolder/otherfolder/a/b/tsconfig.json WatchType: Wild card directory +Info 212 [00:05:50.000] Project: /user/username/rootfolder/otherfolder/a/b/tsconfig.json Detected ignored path: /user/username/rootfolder/otherfolder/a/b/node_modules/.staging/rxjs-22375c61/package.json.2252192041 +Info 213 [00:05:51.000] Elapsed:: *ms DirectoryWatcher:: Triggered with /user/username/rootfolder/otherfolder/a/b/node_modules/.staging/rxjs-22375c61/package.json.2252192041 :: WatchInfo: /user/username/rootfolder/otherfolder/a/b 1 undefined Config: /user/username/rootfolder/otherfolder/a/b/tsconfig.json WatchType: Wild card directory +Info 214 [00:06:04.000] DirectoryWatcher:: Triggered with /user/username/rootfolder/otherfolder/a/b/node_modules/symbol-observable :: WatchInfo: /user/username/rootfolder/otherfolder/a/b/node_modules 1 undefined Project: /user/username/rootfolder/otherfolder/a/b/tsconfig.json WatchType: Failed Lookup Locations +Info 215 [00:06:05.000] Scheduled: /user/username/rootfolder/otherfolder/a/b/tsconfig.jsonFailedLookupInvalidation, Cancelled earlier one +Info 216 [00:06:06.000] Elapsed:: *ms DirectoryWatcher:: Triggered with /user/username/rootfolder/otherfolder/a/b/node_modules/symbol-observable :: WatchInfo: /user/username/rootfolder/otherfolder/a/b/node_modules 1 undefined Project: /user/username/rootfolder/otherfolder/a/b/tsconfig.json WatchType: Failed Lookup Locations +Info 217 [00:06:07.000] DirectoryWatcher:: Triggered with /user/username/rootfolder/otherfolder/a/b/node_modules/symbol-observable :: WatchInfo: /user/username/rootfolder/otherfolder/a/b 1 undefined Config: /user/username/rootfolder/otherfolder/a/b/tsconfig.json WatchType: Wild card directory +Info 218 [00:06:08.000] Scheduled: /user/username/rootfolder/otherfolder/a/b/tsconfig.json, Cancelled earlier one +Info 219 [00:06:09.000] Scheduled: *ensureProjectForOpenFiles*, Cancelled earlier one +Info 220 [00:06:10.000] Elapsed:: *ms DirectoryWatcher:: Triggered with /user/username/rootfolder/otherfolder/a/b/node_modules/symbol-observable :: WatchInfo: /user/username/rootfolder/otherfolder/a/b 1 undefined Config: /user/username/rootfolder/otherfolder/a/b/tsconfig.json WatchType: Wild card directory +Info 221 [00:06:13.000] DirectoryWatcher:: Triggered with /user/username/rootfolder/otherfolder/a/b/node_modules/@types :: WatchInfo: /user/username/rootfolder/otherfolder/a/b/node_modules/@types 1 undefined Project: /user/username/rootfolder/otherfolder/a/b/tsconfig.json WatchType: Type roots +Info 222 [00:06:14.000] Scheduled: /user/username/rootfolder/otherfolder/a/b/tsconfig.json, Cancelled earlier one +Info 223 [00:06:15.000] Scheduled: *ensureProjectForOpenFiles*, Cancelled earlier one +Info 224 [00:06:16.000] Scheduled: /user/username/rootfolder/otherfolder/a/b/tsconfig.jsonFailedLookupInvalidation, Cancelled earlier one +Info 225 [00:06:17.000] Elapsed:: *ms DirectoryWatcher:: Triggered with /user/username/rootfolder/otherfolder/a/b/node_modules/@types :: WatchInfo: /user/username/rootfolder/otherfolder/a/b/node_modules/@types 1 undefined Project: /user/username/rootfolder/otherfolder/a/b/tsconfig.json WatchType: Type roots +Info 226 [00:06:18.000] DirectoryWatcher:: Triggered with /user/username/rootfolder/otherfolder/a/b/node_modules/@types :: WatchInfo: /user/username/rootfolder/otherfolder/a/b/node_modules/@types 1 undefined Project: /user/username/rootfolder/otherfolder/a/b/tsconfig.json WatchType: Type roots +Info 227 [00:06:19.000] Scheduled: /user/username/rootfolder/otherfolder/a/b/tsconfig.json, Cancelled earlier one +Info 228 [00:06:20.000] Scheduled: *ensureProjectForOpenFiles*, Cancelled earlier one +Info 229 [00:06:21.000] Scheduled: /user/username/rootfolder/otherfolder/a/b/tsconfig.jsonFailedLookupInvalidation, Cancelled earlier one +Info 230 [00:06:22.000] Elapsed:: *ms DirectoryWatcher:: Triggered with /user/username/rootfolder/otherfolder/a/b/node_modules/@types :: WatchInfo: /user/username/rootfolder/otherfolder/a/b/node_modules/@types 1 undefined Project: /user/username/rootfolder/otherfolder/a/b/tsconfig.json WatchType: Type roots +Info 231 [00:06:23.000] DirectoryWatcher:: Triggered with /user/username/rootfolder/otherfolder/a/b/node_modules/@types :: WatchInfo: /user/username/rootfolder/otherfolder/a/b/node_modules 1 undefined Project: /user/username/rootfolder/otherfolder/a/b/tsconfig.json WatchType: Failed Lookup Locations +Info 232 [00:06:24.000] Scheduled: /user/username/rootfolder/otherfolder/a/b/tsconfig.jsonFailedLookupInvalidation, Cancelled earlier one +Info 233 [00:06:25.000] Elapsed:: *ms DirectoryWatcher:: Triggered with /user/username/rootfolder/otherfolder/a/b/node_modules/@types :: WatchInfo: /user/username/rootfolder/otherfolder/a/b/node_modules 1 undefined Project: /user/username/rootfolder/otherfolder/a/b/tsconfig.json WatchType: Failed Lookup Locations +Info 234 [00:06:26.000] DirectoryWatcher:: Triggered with /user/username/rootfolder/otherfolder/a/b/node_modules/@types :: WatchInfo: /user/username/rootfolder/otherfolder/a/b 1 undefined Config: /user/username/rootfolder/otherfolder/a/b/tsconfig.json WatchType: Wild card directory +Info 235 [00:06:27.000] Scheduled: /user/username/rootfolder/otherfolder/a/b/tsconfig.json, Cancelled earlier one +Info 236 [00:06:28.000] Scheduled: *ensureProjectForOpenFiles*, Cancelled earlier one +Info 237 [00:06:29.000] Elapsed:: *ms DirectoryWatcher:: Triggered with /user/username/rootfolder/otherfolder/a/b/node_modules/@types :: WatchInfo: /user/username/rootfolder/otherfolder/a/b 1 undefined Config: /user/username/rootfolder/otherfolder/a/b/tsconfig.json WatchType: Wild card directory +Info 238 [00:06:32.000] DirectoryWatcher:: Triggered with /user/username/rootfolder/otherfolder/a/b/node_modules/@types/lodash :: WatchInfo: /user/username/rootfolder/otherfolder/a/b/node_modules/@types 1 undefined Project: /user/username/rootfolder/otherfolder/a/b/tsconfig.json WatchType: Type roots +Info 239 [00:06:33.000] Scheduled: /user/username/rootfolder/otherfolder/a/b/tsconfig.json, Cancelled earlier one +Info 240 [00:06:34.000] Scheduled: *ensureProjectForOpenFiles*, Cancelled earlier one +Info 241 [00:06:35.000] Scheduled: /user/username/rootfolder/otherfolder/a/b/tsconfig.jsonFailedLookupInvalidation, Cancelled earlier one +Info 242 [00:06:36.000] Elapsed:: *ms DirectoryWatcher:: Triggered with /user/username/rootfolder/otherfolder/a/b/node_modules/@types/lodash :: WatchInfo: /user/username/rootfolder/otherfolder/a/b/node_modules/@types 1 undefined Project: /user/username/rootfolder/otherfolder/a/b/tsconfig.json WatchType: Type roots +Info 243 [00:06:37.000] DirectoryWatcher:: Triggered with /user/username/rootfolder/otherfolder/a/b/node_modules/@types/lodash :: WatchInfo: /user/username/rootfolder/otherfolder/a/b/node_modules 1 undefined Project: /user/username/rootfolder/otherfolder/a/b/tsconfig.json WatchType: Failed Lookup Locations +Info 244 [00:06:38.000] Scheduled: /user/username/rootfolder/otherfolder/a/b/tsconfig.jsonFailedLookupInvalidation, Cancelled earlier one +Info 245 [00:06:39.000] Elapsed:: *ms DirectoryWatcher:: Triggered with /user/username/rootfolder/otherfolder/a/b/node_modules/@types/lodash :: WatchInfo: /user/username/rootfolder/otherfolder/a/b/node_modules 1 undefined Project: /user/username/rootfolder/otherfolder/a/b/tsconfig.json WatchType: Failed Lookup Locations +Info 246 [00:06:40.000] DirectoryWatcher:: Triggered with /user/username/rootfolder/otherfolder/a/b/node_modules/@types/lodash :: WatchInfo: /user/username/rootfolder/otherfolder/a/b 1 undefined Config: /user/username/rootfolder/otherfolder/a/b/tsconfig.json WatchType: Wild card directory +Info 247 [00:06:41.000] Scheduled: /user/username/rootfolder/otherfolder/a/b/tsconfig.json, Cancelled earlier one +Info 248 [00:06:42.000] Scheduled: *ensureProjectForOpenFiles*, Cancelled earlier one +Info 249 [00:06:43.000] Elapsed:: *ms DirectoryWatcher:: Triggered with /user/username/rootfolder/otherfolder/a/b/node_modules/@types/lodash :: WatchInfo: /user/username/rootfolder/otherfolder/a/b 1 undefined Config: /user/username/rootfolder/otherfolder/a/b/tsconfig.json WatchType: Wild card directory +Info 250 [00:06:46.000] DirectoryWatcher:: Triggered with /user/username/rootfolder/otherfolder/a/b/node_modules/lodash :: WatchInfo: /user/username/rootfolder/otherfolder/a/b/node_modules 1 undefined Project: /user/username/rootfolder/otherfolder/a/b/tsconfig.json WatchType: Failed Lookup Locations +Info 251 [00:06:47.000] Scheduled: /user/username/rootfolder/otherfolder/a/b/tsconfig.jsonFailedLookupInvalidation, Cancelled earlier one +Info 252 [00:06:48.000] Elapsed:: *ms DirectoryWatcher:: Triggered with /user/username/rootfolder/otherfolder/a/b/node_modules/lodash :: WatchInfo: /user/username/rootfolder/otherfolder/a/b/node_modules 1 undefined Project: /user/username/rootfolder/otherfolder/a/b/tsconfig.json WatchType: Failed Lookup Locations +Info 253 [00:06:49.000] DirectoryWatcher:: Triggered with /user/username/rootfolder/otherfolder/a/b/node_modules/lodash :: WatchInfo: /user/username/rootfolder/otherfolder/a/b 1 undefined Config: /user/username/rootfolder/otherfolder/a/b/tsconfig.json WatchType: Wild card directory +Info 254 [00:06:50.000] Scheduled: /user/username/rootfolder/otherfolder/a/b/tsconfig.json, Cancelled earlier one +Info 255 [00:06:51.000] Scheduled: *ensureProjectForOpenFiles*, Cancelled earlier one +Info 256 [00:06:52.000] Elapsed:: *ms DirectoryWatcher:: Triggered with /user/username/rootfolder/otherfolder/a/b/node_modules/lodash :: WatchInfo: /user/username/rootfolder/otherfolder/a/b 1 undefined Config: /user/username/rootfolder/otherfolder/a/b/tsconfig.json WatchType: Wild card directory +Info 257 [00:06:55.000] DirectoryWatcher:: Triggered with /user/username/rootfolder/otherfolder/a/b/node_modules/rxjs :: WatchInfo: /user/username/rootfolder/otherfolder/a/b/node_modules 1 undefined Project: /user/username/rootfolder/otherfolder/a/b/tsconfig.json WatchType: Failed Lookup Locations +Info 258 [00:06:56.000] Scheduled: /user/username/rootfolder/otherfolder/a/b/tsconfig.jsonFailedLookupInvalidation, Cancelled earlier one +Info 259 [00:06:57.000] Elapsed:: *ms DirectoryWatcher:: Triggered with /user/username/rootfolder/otherfolder/a/b/node_modules/rxjs :: WatchInfo: /user/username/rootfolder/otherfolder/a/b/node_modules 1 undefined Project: /user/username/rootfolder/otherfolder/a/b/tsconfig.json WatchType: Failed Lookup Locations +Info 260 [00:06:58.000] DirectoryWatcher:: Triggered with /user/username/rootfolder/otherfolder/a/b/node_modules/rxjs :: WatchInfo: /user/username/rootfolder/otherfolder/a/b 1 undefined Config: /user/username/rootfolder/otherfolder/a/b/tsconfig.json WatchType: Wild card directory +Info 261 [00:06:59.000] Scheduled: /user/username/rootfolder/otherfolder/a/b/tsconfig.json, Cancelled earlier one +Info 262 [00:07:00.000] Scheduled: *ensureProjectForOpenFiles*, Cancelled earlier one +Info 263 [00:07:01.000] Elapsed:: *ms DirectoryWatcher:: Triggered with /user/username/rootfolder/otherfolder/a/b/node_modules/rxjs :: WatchInfo: /user/username/rootfolder/otherfolder/a/b 1 undefined Config: /user/username/rootfolder/otherfolder/a/b/tsconfig.json WatchType: Wild card directory +Info 264 [00:07:04.000] DirectoryWatcher:: Triggered with /user/username/rootfolder/otherfolder/a/b/node_modules/typescript :: WatchInfo: /user/username/rootfolder/otherfolder/a/b/node_modules 1 undefined Project: /user/username/rootfolder/otherfolder/a/b/tsconfig.json WatchType: Failed Lookup Locations +Info 265 [00:07:05.000] Scheduled: /user/username/rootfolder/otherfolder/a/b/tsconfig.jsonFailedLookupInvalidation, Cancelled earlier one +Info 266 [00:07:06.000] Elapsed:: *ms DirectoryWatcher:: Triggered with /user/username/rootfolder/otherfolder/a/b/node_modules/typescript :: WatchInfo: /user/username/rootfolder/otherfolder/a/b/node_modules 1 undefined Project: /user/username/rootfolder/otherfolder/a/b/tsconfig.json WatchType: Failed Lookup Locations +Info 267 [00:07:07.000] DirectoryWatcher:: Triggered with /user/username/rootfolder/otherfolder/a/b/node_modules/typescript :: WatchInfo: /user/username/rootfolder/otherfolder/a/b 1 undefined Config: /user/username/rootfolder/otherfolder/a/b/tsconfig.json WatchType: Wild card directory +Info 268 [00:07:08.000] Scheduled: /user/username/rootfolder/otherfolder/a/b/tsconfig.json, Cancelled earlier one +Info 269 [00:07:09.000] Scheduled: *ensureProjectForOpenFiles*, Cancelled earlier one +Info 270 [00:07:10.000] Elapsed:: *ms DirectoryWatcher:: Triggered with /user/username/rootfolder/otherfolder/a/b/node_modules/typescript :: WatchInfo: /user/username/rootfolder/otherfolder/a/b 1 undefined Config: /user/username/rootfolder/otherfolder/a/b/tsconfig.json WatchType: Wild card directory +Info 271 [00:07:13.000] DirectoryWatcher:: Triggered with /user/username/rootfolder/otherfolder/a/b/node_modules/.bin :: WatchInfo: /user/username/rootfolder/otherfolder/a/b/node_modules 1 undefined Project: /user/username/rootfolder/otherfolder/a/b/tsconfig.json WatchType: Failed Lookup Locations +Info 272 [00:07:14.000] Elapsed:: *ms DirectoryWatcher:: Triggered with /user/username/rootfolder/otherfolder/a/b/node_modules/.bin :: WatchInfo: /user/username/rootfolder/otherfolder/a/b/node_modules 1 undefined Project: /user/username/rootfolder/otherfolder/a/b/tsconfig.json WatchType: Failed Lookup Locations +Info 273 [00:07:15.000] DirectoryWatcher:: Triggered with /user/username/rootfolder/otherfolder/a/b/node_modules/.bin :: WatchInfo: /user/username/rootfolder/otherfolder/a/b 1 undefined Config: /user/username/rootfolder/otherfolder/a/b/tsconfig.json WatchType: Wild card directory +Info 274 [00:07:16.000] Project: /user/username/rootfolder/otherfolder/a/b/tsconfig.json Detected ignored path: /user/username/rootfolder/otherfolder/a/b/node_modules/.bin +Info 275 [00:07:17.000] Elapsed:: *ms DirectoryWatcher:: Triggered with /user/username/rootfolder/otherfolder/a/b/node_modules/.bin :: WatchInfo: /user/username/rootfolder/otherfolder/a/b 1 undefined Config: /user/username/rootfolder/otherfolder/a/b/tsconfig.json WatchType: Wild card directory Checking timeout queue length: 3 //// [/user/username/rootfolder/otherfolder/a/b/node_modules/.staging/rxjs-22375c61/package.json.2252192041] deleted @@ -1147,326 +1147,326 @@ FsWatchesRecursive:: /user/username/rootfolder/otherfolder/a/b/node_modules/@types: {} -Info 276 [16:07:19.000] DirectoryWatcher:: Triggered with /user/username/rootfolder/otherfolder/a/b/node_modules/.staging/@types/lodash-e56c4fe7/index.d.ts :: WatchInfo: /user/username/rootfolder/otherfolder/a/b/node_modules 1 undefined Project: /user/username/rootfolder/otherfolder/a/b/tsconfig.json WatchType: Failed Lookup Locations -Info 277 [16:07:20.000] Elapsed:: *ms DirectoryWatcher:: Triggered with /user/username/rootfolder/otherfolder/a/b/node_modules/.staging/@types/lodash-e56c4fe7/index.d.ts :: WatchInfo: /user/username/rootfolder/otherfolder/a/b/node_modules 1 undefined Project: /user/username/rootfolder/otherfolder/a/b/tsconfig.json WatchType: Failed Lookup Locations -Info 278 [16:07:21.000] DirectoryWatcher:: Triggered with /user/username/rootfolder/otherfolder/a/b/node_modules/.staging/@types/lodash-e56c4fe7/index.d.ts :: WatchInfo: /user/username/rootfolder/otherfolder/a/b 1 undefined Config: /user/username/rootfolder/otherfolder/a/b/tsconfig.json WatchType: Wild card directory -Info 279 [16:07:22.000] Project: /user/username/rootfolder/otherfolder/a/b/tsconfig.json Detected ignored path: /user/username/rootfolder/otherfolder/a/b/node_modules/.staging/@types/lodash-e56c4fe7/index.d.ts -Info 280 [16:07:23.000] Elapsed:: *ms DirectoryWatcher:: Triggered with /user/username/rootfolder/otherfolder/a/b/node_modules/.staging/@types/lodash-e56c4fe7/index.d.ts :: WatchInfo: /user/username/rootfolder/otherfolder/a/b 1 undefined Config: /user/username/rootfolder/otherfolder/a/b/tsconfig.json WatchType: Wild card directory -Info 281 [16:07:25.000] DirectoryWatcher:: Triggered with /user/username/rootfolder/otherfolder/a/b/node_modules/.staging/@types/lodash-e56c4fe7/package.json :: WatchInfo: /user/username/rootfolder/otherfolder/a/b/node_modules 1 undefined Project: /user/username/rootfolder/otherfolder/a/b/tsconfig.json WatchType: Failed Lookup Locations -Info 282 [16:07:26.000] Elapsed:: *ms DirectoryWatcher:: Triggered with /user/username/rootfolder/otherfolder/a/b/node_modules/.staging/@types/lodash-e56c4fe7/package.json :: WatchInfo: /user/username/rootfolder/otherfolder/a/b/node_modules 1 undefined Project: /user/username/rootfolder/otherfolder/a/b/tsconfig.json WatchType: Failed Lookup Locations -Info 283 [16:07:27.000] DirectoryWatcher:: Triggered with /user/username/rootfolder/otherfolder/a/b/node_modules/.staging/@types/lodash-e56c4fe7/package.json :: WatchInfo: /user/username/rootfolder/otherfolder/a/b 1 undefined Config: /user/username/rootfolder/otherfolder/a/b/tsconfig.json WatchType: Wild card directory -Info 284 [16:07:28.000] Project: /user/username/rootfolder/otherfolder/a/b/tsconfig.json Detected ignored path: /user/username/rootfolder/otherfolder/a/b/node_modules/.staging/@types/lodash-e56c4fe7/package.json -Info 285 [16:07:29.000] Elapsed:: *ms DirectoryWatcher:: Triggered with /user/username/rootfolder/otherfolder/a/b/node_modules/.staging/@types/lodash-e56c4fe7/package.json :: WatchInfo: /user/username/rootfolder/otherfolder/a/b 1 undefined Config: /user/username/rootfolder/otherfolder/a/b/tsconfig.json WatchType: Wild card directory -Info 286 [16:07:31.000] DirectoryWatcher:: Triggered with /user/username/rootfolder/otherfolder/a/b/node_modules/.staging/@types/lodash-e56c4fe7 :: WatchInfo: /user/username/rootfolder/otherfolder/a/b/node_modules 1 undefined Project: /user/username/rootfolder/otherfolder/a/b/tsconfig.json WatchType: Failed Lookup Locations -Info 287 [16:07:32.000] Elapsed:: *ms DirectoryWatcher:: Triggered with /user/username/rootfolder/otherfolder/a/b/node_modules/.staging/@types/lodash-e56c4fe7 :: WatchInfo: /user/username/rootfolder/otherfolder/a/b/node_modules 1 undefined Project: /user/username/rootfolder/otherfolder/a/b/tsconfig.json WatchType: Failed Lookup Locations -Info 288 [16:07:33.000] DirectoryWatcher:: Triggered with /user/username/rootfolder/otherfolder/a/b/node_modules/.staging/@types/lodash-e56c4fe7 :: WatchInfo: /user/username/rootfolder/otherfolder/a/b 1 undefined Config: /user/username/rootfolder/otherfolder/a/b/tsconfig.json WatchType: Wild card directory -Info 289 [16:07:34.000] Project: /user/username/rootfolder/otherfolder/a/b/tsconfig.json Detected ignored path: /user/username/rootfolder/otherfolder/a/b/node_modules/.staging/@types/lodash-e56c4fe7 -Info 290 [16:07:35.000] Elapsed:: *ms DirectoryWatcher:: Triggered with /user/username/rootfolder/otherfolder/a/b/node_modules/.staging/@types/lodash-e56c4fe7 :: WatchInfo: /user/username/rootfolder/otherfolder/a/b 1 undefined Config: /user/username/rootfolder/otherfolder/a/b/tsconfig.json WatchType: Wild card directory -Info 291 [16:07:37.000] DirectoryWatcher:: Triggered with /user/username/rootfolder/otherfolder/a/b/node_modules/.staging/@types :: WatchInfo: /user/username/rootfolder/otherfolder/a/b/node_modules 1 undefined Project: /user/username/rootfolder/otherfolder/a/b/tsconfig.json WatchType: Failed Lookup Locations -Info 292 [16:07:38.000] Elapsed:: *ms DirectoryWatcher:: Triggered with /user/username/rootfolder/otherfolder/a/b/node_modules/.staging/@types :: WatchInfo: /user/username/rootfolder/otherfolder/a/b/node_modules 1 undefined Project: /user/username/rootfolder/otherfolder/a/b/tsconfig.json WatchType: Failed Lookup Locations -Info 293 [16:07:39.000] DirectoryWatcher:: Triggered with /user/username/rootfolder/otherfolder/a/b/node_modules/.staging/@types :: WatchInfo: /user/username/rootfolder/otherfolder/a/b 1 undefined Config: /user/username/rootfolder/otherfolder/a/b/tsconfig.json WatchType: Wild card directory -Info 294 [16:07:40.000] Project: /user/username/rootfolder/otherfolder/a/b/tsconfig.json Detected ignored path: /user/username/rootfolder/otherfolder/a/b/node_modules/.staging/@types -Info 295 [16:07:41.000] Elapsed:: *ms DirectoryWatcher:: Triggered with /user/username/rootfolder/otherfolder/a/b/node_modules/.staging/@types :: WatchInfo: /user/username/rootfolder/otherfolder/a/b 1 undefined Config: /user/username/rootfolder/otherfolder/a/b/tsconfig.json WatchType: Wild card directory -Info 296 [16:07:43.000] DirectoryWatcher:: Triggered with /user/username/rootfolder/otherfolder/a/b/node_modules/.staging/lodash-b0733faa/index.js :: WatchInfo: /user/username/rootfolder/otherfolder/a/b/node_modules 1 undefined Project: /user/username/rootfolder/otherfolder/a/b/tsconfig.json WatchType: Failed Lookup Locations -Info 297 [16:07:44.000] Elapsed:: *ms DirectoryWatcher:: Triggered with /user/username/rootfolder/otherfolder/a/b/node_modules/.staging/lodash-b0733faa/index.js :: WatchInfo: /user/username/rootfolder/otherfolder/a/b/node_modules 1 undefined Project: /user/username/rootfolder/otherfolder/a/b/tsconfig.json WatchType: Failed Lookup Locations -Info 298 [16:07:45.000] DirectoryWatcher:: Triggered with /user/username/rootfolder/otherfolder/a/b/node_modules/.staging/lodash-b0733faa/index.js :: WatchInfo: /user/username/rootfolder/otherfolder/a/b 1 undefined Config: /user/username/rootfolder/otherfolder/a/b/tsconfig.json WatchType: Wild card directory -Info 299 [16:07:46.000] Project: /user/username/rootfolder/otherfolder/a/b/tsconfig.json Detected ignored path: /user/username/rootfolder/otherfolder/a/b/node_modules/.staging/lodash-b0733faa/index.js -Info 300 [16:07:47.000] Elapsed:: *ms DirectoryWatcher:: Triggered with /user/username/rootfolder/otherfolder/a/b/node_modules/.staging/lodash-b0733faa/index.js :: WatchInfo: /user/username/rootfolder/otherfolder/a/b 1 undefined Config: /user/username/rootfolder/otherfolder/a/b/tsconfig.json WatchType: Wild card directory -Info 301 [16:07:49.000] DirectoryWatcher:: Triggered with /user/username/rootfolder/otherfolder/a/b/node_modules/.staging/lodash-b0733faa/package.json :: WatchInfo: /user/username/rootfolder/otherfolder/a/b/node_modules 1 undefined Project: /user/username/rootfolder/otherfolder/a/b/tsconfig.json WatchType: Failed Lookup Locations -Info 302 [16:07:50.000] Elapsed:: *ms DirectoryWatcher:: Triggered with /user/username/rootfolder/otherfolder/a/b/node_modules/.staging/lodash-b0733faa/package.json :: WatchInfo: /user/username/rootfolder/otherfolder/a/b/node_modules 1 undefined Project: /user/username/rootfolder/otherfolder/a/b/tsconfig.json WatchType: Failed Lookup Locations -Info 303 [16:07:51.000] DirectoryWatcher:: Triggered with /user/username/rootfolder/otherfolder/a/b/node_modules/.staging/lodash-b0733faa/package.json :: WatchInfo: /user/username/rootfolder/otherfolder/a/b 1 undefined Config: /user/username/rootfolder/otherfolder/a/b/tsconfig.json WatchType: Wild card directory -Info 304 [16:07:52.000] Project: /user/username/rootfolder/otherfolder/a/b/tsconfig.json Detected ignored path: /user/username/rootfolder/otherfolder/a/b/node_modules/.staging/lodash-b0733faa/package.json -Info 305 [16:07:53.000] Elapsed:: *ms DirectoryWatcher:: Triggered with /user/username/rootfolder/otherfolder/a/b/node_modules/.staging/lodash-b0733faa/package.json :: WatchInfo: /user/username/rootfolder/otherfolder/a/b 1 undefined Config: /user/username/rootfolder/otherfolder/a/b/tsconfig.json WatchType: Wild card directory -Info 306 [16:07:55.000] DirectoryWatcher:: Triggered with /user/username/rootfolder/otherfolder/a/b/node_modules/.staging/lodash-b0733faa :: WatchInfo: /user/username/rootfolder/otherfolder/a/b/node_modules 1 undefined Project: /user/username/rootfolder/otherfolder/a/b/tsconfig.json WatchType: Failed Lookup Locations -Info 307 [16:07:56.000] Elapsed:: *ms DirectoryWatcher:: Triggered with /user/username/rootfolder/otherfolder/a/b/node_modules/.staging/lodash-b0733faa :: WatchInfo: /user/username/rootfolder/otherfolder/a/b/node_modules 1 undefined Project: /user/username/rootfolder/otherfolder/a/b/tsconfig.json WatchType: Failed Lookup Locations -Info 308 [16:07:57.000] DirectoryWatcher:: Triggered with /user/username/rootfolder/otherfolder/a/b/node_modules/.staging/lodash-b0733faa :: WatchInfo: /user/username/rootfolder/otherfolder/a/b 1 undefined Config: /user/username/rootfolder/otherfolder/a/b/tsconfig.json WatchType: Wild card directory -Info 309 [16:07:58.000] Project: /user/username/rootfolder/otherfolder/a/b/tsconfig.json Detected ignored path: /user/username/rootfolder/otherfolder/a/b/node_modules/.staging/lodash-b0733faa -Info 310 [16:07:59.000] Elapsed:: *ms DirectoryWatcher:: Triggered with /user/username/rootfolder/otherfolder/a/b/node_modules/.staging/lodash-b0733faa :: WatchInfo: /user/username/rootfolder/otherfolder/a/b 1 undefined Config: /user/username/rootfolder/otherfolder/a/b/tsconfig.json WatchType: Wild card directory -Info 311 [16:08:01.000] DirectoryWatcher:: Triggered with /user/username/rootfolder/otherfolder/a/b/node_modules/.staging/rxjs-22375c61/add/operator :: WatchInfo: /user/username/rootfolder/otherfolder/a/b/node_modules 1 undefined Project: /user/username/rootfolder/otherfolder/a/b/tsconfig.json WatchType: Failed Lookup Locations -Info 312 [16:08:02.000] Elapsed:: *ms DirectoryWatcher:: Triggered with /user/username/rootfolder/otherfolder/a/b/node_modules/.staging/rxjs-22375c61/add/operator :: WatchInfo: /user/username/rootfolder/otherfolder/a/b/node_modules 1 undefined Project: /user/username/rootfolder/otherfolder/a/b/tsconfig.json WatchType: Failed Lookup Locations -Info 313 [16:08:03.000] DirectoryWatcher:: Triggered with /user/username/rootfolder/otherfolder/a/b/node_modules/.staging/rxjs-22375c61/add/operator :: WatchInfo: /user/username/rootfolder/otherfolder/a/b 1 undefined Config: /user/username/rootfolder/otherfolder/a/b/tsconfig.json WatchType: Wild card directory -Info 314 [16:08:04.000] Project: /user/username/rootfolder/otherfolder/a/b/tsconfig.json Detected ignored path: /user/username/rootfolder/otherfolder/a/b/node_modules/.staging/rxjs-22375c61/add/operator -Info 315 [16:08:05.000] Elapsed:: *ms DirectoryWatcher:: Triggered with /user/username/rootfolder/otherfolder/a/b/node_modules/.staging/rxjs-22375c61/add/operator :: WatchInfo: /user/username/rootfolder/otherfolder/a/b 1 undefined Config: /user/username/rootfolder/otherfolder/a/b/tsconfig.json WatchType: Wild card directory -Info 316 [16:08:07.000] DirectoryWatcher:: Triggered with /user/username/rootfolder/otherfolder/a/b/node_modules/.staging/rxjs-22375c61/add :: WatchInfo: /user/username/rootfolder/otherfolder/a/b/node_modules 1 undefined Project: /user/username/rootfolder/otherfolder/a/b/tsconfig.json WatchType: Failed Lookup Locations -Info 317 [16:08:08.000] Elapsed:: *ms DirectoryWatcher:: Triggered with /user/username/rootfolder/otherfolder/a/b/node_modules/.staging/rxjs-22375c61/add :: WatchInfo: /user/username/rootfolder/otherfolder/a/b/node_modules 1 undefined Project: /user/username/rootfolder/otherfolder/a/b/tsconfig.json WatchType: Failed Lookup Locations -Info 318 [16:08:09.000] DirectoryWatcher:: Triggered with /user/username/rootfolder/otherfolder/a/b/node_modules/.staging/rxjs-22375c61/add :: WatchInfo: /user/username/rootfolder/otherfolder/a/b 1 undefined Config: /user/username/rootfolder/otherfolder/a/b/tsconfig.json WatchType: Wild card directory -Info 319 [16:08:10.000] Project: /user/username/rootfolder/otherfolder/a/b/tsconfig.json Detected ignored path: /user/username/rootfolder/otherfolder/a/b/node_modules/.staging/rxjs-22375c61/add -Info 320 [16:08:11.000] Elapsed:: *ms DirectoryWatcher:: Triggered with /user/username/rootfolder/otherfolder/a/b/node_modules/.staging/rxjs-22375c61/add :: WatchInfo: /user/username/rootfolder/otherfolder/a/b 1 undefined Config: /user/username/rootfolder/otherfolder/a/b/tsconfig.json WatchType: Wild card directory -Info 321 [16:08:13.000] DirectoryWatcher:: Triggered with /user/username/rootfolder/otherfolder/a/b/node_modules/.staging/rxjs-22375c61/bundles :: WatchInfo: /user/username/rootfolder/otherfolder/a/b/node_modules 1 undefined Project: /user/username/rootfolder/otherfolder/a/b/tsconfig.json WatchType: Failed Lookup Locations -Info 322 [16:08:14.000] Elapsed:: *ms DirectoryWatcher:: Triggered with /user/username/rootfolder/otherfolder/a/b/node_modules/.staging/rxjs-22375c61/bundles :: WatchInfo: /user/username/rootfolder/otherfolder/a/b/node_modules 1 undefined Project: /user/username/rootfolder/otherfolder/a/b/tsconfig.json WatchType: Failed Lookup Locations -Info 323 [16:08:15.000] DirectoryWatcher:: Triggered with /user/username/rootfolder/otherfolder/a/b/node_modules/.staging/rxjs-22375c61/bundles :: WatchInfo: /user/username/rootfolder/otherfolder/a/b 1 undefined Config: /user/username/rootfolder/otherfolder/a/b/tsconfig.json WatchType: Wild card directory -Info 324 [16:08:16.000] Project: /user/username/rootfolder/otherfolder/a/b/tsconfig.json Detected ignored path: /user/username/rootfolder/otherfolder/a/b/node_modules/.staging/rxjs-22375c61/bundles -Info 325 [16:08:17.000] Elapsed:: *ms DirectoryWatcher:: Triggered with /user/username/rootfolder/otherfolder/a/b/node_modules/.staging/rxjs-22375c61/bundles :: WatchInfo: /user/username/rootfolder/otherfolder/a/b 1 undefined Config: /user/username/rootfolder/otherfolder/a/b/tsconfig.json WatchType: Wild card directory -Info 326 [16:08:19.000] DirectoryWatcher:: Triggered with /user/username/rootfolder/otherfolder/a/b/node_modules/.staging/rxjs-22375c61/operator :: WatchInfo: /user/username/rootfolder/otherfolder/a/b/node_modules 1 undefined Project: /user/username/rootfolder/otherfolder/a/b/tsconfig.json WatchType: Failed Lookup Locations -Info 327 [16:08:20.000] Elapsed:: *ms DirectoryWatcher:: Triggered with /user/username/rootfolder/otherfolder/a/b/node_modules/.staging/rxjs-22375c61/operator :: WatchInfo: /user/username/rootfolder/otherfolder/a/b/node_modules 1 undefined Project: /user/username/rootfolder/otherfolder/a/b/tsconfig.json WatchType: Failed Lookup Locations -Info 328 [16:08:21.000] DirectoryWatcher:: Triggered with /user/username/rootfolder/otherfolder/a/b/node_modules/.staging/rxjs-22375c61/operator :: WatchInfo: /user/username/rootfolder/otherfolder/a/b 1 undefined Config: /user/username/rootfolder/otherfolder/a/b/tsconfig.json WatchType: Wild card directory -Info 329 [16:08:22.000] Project: /user/username/rootfolder/otherfolder/a/b/tsconfig.json Detected ignored path: /user/username/rootfolder/otherfolder/a/b/node_modules/.staging/rxjs-22375c61/operator -Info 330 [16:08:23.000] Elapsed:: *ms DirectoryWatcher:: Triggered with /user/username/rootfolder/otherfolder/a/b/node_modules/.staging/rxjs-22375c61/operator :: WatchInfo: /user/username/rootfolder/otherfolder/a/b 1 undefined Config: /user/username/rootfolder/otherfolder/a/b/tsconfig.json WatchType: Wild card directory -Info 331 [16:08:25.000] DirectoryWatcher:: Triggered with /user/username/rootfolder/otherfolder/a/b/node_modules/.staging/rxjs-22375c61/package.json :: WatchInfo: /user/username/rootfolder/otherfolder/a/b/node_modules 1 undefined Project: /user/username/rootfolder/otherfolder/a/b/tsconfig.json WatchType: Failed Lookup Locations -Info 332 [16:08:26.000] Elapsed:: *ms DirectoryWatcher:: Triggered with /user/username/rootfolder/otherfolder/a/b/node_modules/.staging/rxjs-22375c61/package.json :: WatchInfo: /user/username/rootfolder/otherfolder/a/b/node_modules 1 undefined Project: /user/username/rootfolder/otherfolder/a/b/tsconfig.json WatchType: Failed Lookup Locations -Info 333 [16:08:27.000] DirectoryWatcher:: Triggered with /user/username/rootfolder/otherfolder/a/b/node_modules/.staging/rxjs-22375c61/package.json :: WatchInfo: /user/username/rootfolder/otherfolder/a/b 1 undefined Config: /user/username/rootfolder/otherfolder/a/b/tsconfig.json WatchType: Wild card directory -Info 334 [16:08:28.000] Project: /user/username/rootfolder/otherfolder/a/b/tsconfig.json Detected ignored path: /user/username/rootfolder/otherfolder/a/b/node_modules/.staging/rxjs-22375c61/package.json -Info 335 [16:08:29.000] Elapsed:: *ms DirectoryWatcher:: Triggered with /user/username/rootfolder/otherfolder/a/b/node_modules/.staging/rxjs-22375c61/package.json :: WatchInfo: /user/username/rootfolder/otherfolder/a/b 1 undefined Config: /user/username/rootfolder/otherfolder/a/b/tsconfig.json WatchType: Wild card directory -Info 336 [16:08:31.000] DirectoryWatcher:: Triggered with /user/username/rootfolder/otherfolder/a/b/node_modules/.staging/rxjs-22375c61/src/add/observable/dom :: WatchInfo: /user/username/rootfolder/otherfolder/a/b/node_modules 1 undefined Project: /user/username/rootfolder/otherfolder/a/b/tsconfig.json WatchType: Failed Lookup Locations -Info 337 [16:08:32.000] Elapsed:: *ms DirectoryWatcher:: Triggered with /user/username/rootfolder/otherfolder/a/b/node_modules/.staging/rxjs-22375c61/src/add/observable/dom :: WatchInfo: /user/username/rootfolder/otherfolder/a/b/node_modules 1 undefined Project: /user/username/rootfolder/otherfolder/a/b/tsconfig.json WatchType: Failed Lookup Locations -Info 338 [16:08:33.000] DirectoryWatcher:: Triggered with /user/username/rootfolder/otherfolder/a/b/node_modules/.staging/rxjs-22375c61/src/add/observable/dom :: WatchInfo: /user/username/rootfolder/otherfolder/a/b 1 undefined Config: /user/username/rootfolder/otherfolder/a/b/tsconfig.json WatchType: Wild card directory -Info 339 [16:08:34.000] Project: /user/username/rootfolder/otherfolder/a/b/tsconfig.json Detected ignored path: /user/username/rootfolder/otherfolder/a/b/node_modules/.staging/rxjs-22375c61/src/add/observable/dom -Info 340 [16:08:35.000] Elapsed:: *ms DirectoryWatcher:: Triggered with /user/username/rootfolder/otherfolder/a/b/node_modules/.staging/rxjs-22375c61/src/add/observable/dom :: WatchInfo: /user/username/rootfolder/otherfolder/a/b 1 undefined Config: /user/username/rootfolder/otherfolder/a/b/tsconfig.json WatchType: Wild card directory -Info 341 [16:08:37.000] DirectoryWatcher:: Triggered with /user/username/rootfolder/otherfolder/a/b/node_modules/.staging/rxjs-22375c61/src/add/observable :: WatchInfo: /user/username/rootfolder/otherfolder/a/b/node_modules 1 undefined Project: /user/username/rootfolder/otherfolder/a/b/tsconfig.json WatchType: Failed Lookup Locations -Info 342 [16:08:38.000] Elapsed:: *ms DirectoryWatcher:: Triggered with /user/username/rootfolder/otherfolder/a/b/node_modules/.staging/rxjs-22375c61/src/add/observable :: WatchInfo: /user/username/rootfolder/otherfolder/a/b/node_modules 1 undefined Project: /user/username/rootfolder/otherfolder/a/b/tsconfig.json WatchType: Failed Lookup Locations -Info 343 [16:08:39.000] DirectoryWatcher:: Triggered with /user/username/rootfolder/otherfolder/a/b/node_modules/.staging/rxjs-22375c61/src/add/observable :: WatchInfo: /user/username/rootfolder/otherfolder/a/b 1 undefined Config: /user/username/rootfolder/otherfolder/a/b/tsconfig.json WatchType: Wild card directory -Info 344 [16:08:40.000] Project: /user/username/rootfolder/otherfolder/a/b/tsconfig.json Detected ignored path: /user/username/rootfolder/otherfolder/a/b/node_modules/.staging/rxjs-22375c61/src/add/observable -Info 345 [16:08:41.000] Elapsed:: *ms DirectoryWatcher:: Triggered with /user/username/rootfolder/otherfolder/a/b/node_modules/.staging/rxjs-22375c61/src/add/observable :: WatchInfo: /user/username/rootfolder/otherfolder/a/b 1 undefined Config: /user/username/rootfolder/otherfolder/a/b/tsconfig.json WatchType: Wild card directory -Info 346 [16:08:43.000] DirectoryWatcher:: Triggered with /user/username/rootfolder/otherfolder/a/b/node_modules/.staging/rxjs-22375c61/src/add :: WatchInfo: /user/username/rootfolder/otherfolder/a/b/node_modules 1 undefined Project: /user/username/rootfolder/otherfolder/a/b/tsconfig.json WatchType: Failed Lookup Locations -Info 347 [16:08:44.000] Elapsed:: *ms DirectoryWatcher:: Triggered with /user/username/rootfolder/otherfolder/a/b/node_modules/.staging/rxjs-22375c61/src/add :: WatchInfo: /user/username/rootfolder/otherfolder/a/b/node_modules 1 undefined Project: /user/username/rootfolder/otherfolder/a/b/tsconfig.json WatchType: Failed Lookup Locations -Info 348 [16:08:45.000] DirectoryWatcher:: Triggered with /user/username/rootfolder/otherfolder/a/b/node_modules/.staging/rxjs-22375c61/src/add :: WatchInfo: /user/username/rootfolder/otherfolder/a/b 1 undefined Config: /user/username/rootfolder/otherfolder/a/b/tsconfig.json WatchType: Wild card directory -Info 349 [16:08:46.000] Project: /user/username/rootfolder/otherfolder/a/b/tsconfig.json Detected ignored path: /user/username/rootfolder/otherfolder/a/b/node_modules/.staging/rxjs-22375c61/src/add -Info 350 [16:08:47.000] Elapsed:: *ms DirectoryWatcher:: Triggered with /user/username/rootfolder/otherfolder/a/b/node_modules/.staging/rxjs-22375c61/src/add :: WatchInfo: /user/username/rootfolder/otherfolder/a/b 1 undefined Config: /user/username/rootfolder/otherfolder/a/b/tsconfig.json WatchType: Wild card directory -Info 351 [16:08:49.000] DirectoryWatcher:: Triggered with /user/username/rootfolder/otherfolder/a/b/node_modules/.staging/rxjs-22375c61/src/scheduler :: WatchInfo: /user/username/rootfolder/otherfolder/a/b/node_modules 1 undefined Project: /user/username/rootfolder/otherfolder/a/b/tsconfig.json WatchType: Failed Lookup Locations -Info 352 [16:08:50.000] Elapsed:: *ms DirectoryWatcher:: Triggered with /user/username/rootfolder/otherfolder/a/b/node_modules/.staging/rxjs-22375c61/src/scheduler :: WatchInfo: /user/username/rootfolder/otherfolder/a/b/node_modules 1 undefined Project: /user/username/rootfolder/otherfolder/a/b/tsconfig.json WatchType: Failed Lookup Locations -Info 353 [16:08:51.000] DirectoryWatcher:: Triggered with /user/username/rootfolder/otherfolder/a/b/node_modules/.staging/rxjs-22375c61/src/scheduler :: WatchInfo: /user/username/rootfolder/otherfolder/a/b 1 undefined Config: /user/username/rootfolder/otherfolder/a/b/tsconfig.json WatchType: Wild card directory -Info 354 [16:08:52.000] Project: /user/username/rootfolder/otherfolder/a/b/tsconfig.json Detected ignored path: /user/username/rootfolder/otherfolder/a/b/node_modules/.staging/rxjs-22375c61/src/scheduler -Info 355 [16:08:53.000] Elapsed:: *ms DirectoryWatcher:: Triggered with /user/username/rootfolder/otherfolder/a/b/node_modules/.staging/rxjs-22375c61/src/scheduler :: WatchInfo: /user/username/rootfolder/otherfolder/a/b 1 undefined Config: /user/username/rootfolder/otherfolder/a/b/tsconfig.json WatchType: Wild card directory -Info 356 [16:08:55.000] DirectoryWatcher:: Triggered with /user/username/rootfolder/otherfolder/a/b/node_modules/.staging/rxjs-22375c61/src/util :: WatchInfo: /user/username/rootfolder/otherfolder/a/b/node_modules 1 undefined Project: /user/username/rootfolder/otherfolder/a/b/tsconfig.json WatchType: Failed Lookup Locations -Info 357 [16:08:56.000] Elapsed:: *ms DirectoryWatcher:: Triggered with /user/username/rootfolder/otherfolder/a/b/node_modules/.staging/rxjs-22375c61/src/util :: WatchInfo: /user/username/rootfolder/otherfolder/a/b/node_modules 1 undefined Project: /user/username/rootfolder/otherfolder/a/b/tsconfig.json WatchType: Failed Lookup Locations -Info 358 [16:08:57.000] DirectoryWatcher:: Triggered with /user/username/rootfolder/otherfolder/a/b/node_modules/.staging/rxjs-22375c61/src/util :: WatchInfo: /user/username/rootfolder/otherfolder/a/b 1 undefined Config: /user/username/rootfolder/otherfolder/a/b/tsconfig.json WatchType: Wild card directory -Info 359 [16:08:58.000] Project: /user/username/rootfolder/otherfolder/a/b/tsconfig.json Detected ignored path: /user/username/rootfolder/otherfolder/a/b/node_modules/.staging/rxjs-22375c61/src/util -Info 360 [16:08:59.000] Elapsed:: *ms DirectoryWatcher:: Triggered with /user/username/rootfolder/otherfolder/a/b/node_modules/.staging/rxjs-22375c61/src/util :: WatchInfo: /user/username/rootfolder/otherfolder/a/b 1 undefined Config: /user/username/rootfolder/otherfolder/a/b/tsconfig.json WatchType: Wild card directory -Info 361 [16:09:01.000] DirectoryWatcher:: Triggered with /user/username/rootfolder/otherfolder/a/b/node_modules/.staging/rxjs-22375c61/src :: WatchInfo: /user/username/rootfolder/otherfolder/a/b/node_modules 1 undefined Project: /user/username/rootfolder/otherfolder/a/b/tsconfig.json WatchType: Failed Lookup Locations -Info 362 [16:09:02.000] Elapsed:: *ms DirectoryWatcher:: Triggered with /user/username/rootfolder/otherfolder/a/b/node_modules/.staging/rxjs-22375c61/src :: WatchInfo: /user/username/rootfolder/otherfolder/a/b/node_modules 1 undefined Project: /user/username/rootfolder/otherfolder/a/b/tsconfig.json WatchType: Failed Lookup Locations -Info 363 [16:09:03.000] DirectoryWatcher:: Triggered with /user/username/rootfolder/otherfolder/a/b/node_modules/.staging/rxjs-22375c61/src :: WatchInfo: /user/username/rootfolder/otherfolder/a/b 1 undefined Config: /user/username/rootfolder/otherfolder/a/b/tsconfig.json WatchType: Wild card directory -Info 364 [16:09:04.000] Project: /user/username/rootfolder/otherfolder/a/b/tsconfig.json Detected ignored path: /user/username/rootfolder/otherfolder/a/b/node_modules/.staging/rxjs-22375c61/src -Info 365 [16:09:05.000] Elapsed:: *ms DirectoryWatcher:: Triggered with /user/username/rootfolder/otherfolder/a/b/node_modules/.staging/rxjs-22375c61/src :: WatchInfo: /user/username/rootfolder/otherfolder/a/b 1 undefined Config: /user/username/rootfolder/otherfolder/a/b/tsconfig.json WatchType: Wild card directory -Info 366 [16:09:07.000] DirectoryWatcher:: Triggered with /user/username/rootfolder/otherfolder/a/b/node_modules/.staging/rxjs-22375c61/symbol :: WatchInfo: /user/username/rootfolder/otherfolder/a/b/node_modules 1 undefined Project: /user/username/rootfolder/otherfolder/a/b/tsconfig.json WatchType: Failed Lookup Locations -Info 367 [16:09:08.000] Elapsed:: *ms DirectoryWatcher:: Triggered with /user/username/rootfolder/otherfolder/a/b/node_modules/.staging/rxjs-22375c61/symbol :: WatchInfo: /user/username/rootfolder/otherfolder/a/b/node_modules 1 undefined Project: /user/username/rootfolder/otherfolder/a/b/tsconfig.json WatchType: Failed Lookup Locations -Info 368 [16:09:09.000] DirectoryWatcher:: Triggered with /user/username/rootfolder/otherfolder/a/b/node_modules/.staging/rxjs-22375c61/symbol :: WatchInfo: /user/username/rootfolder/otherfolder/a/b 1 undefined Config: /user/username/rootfolder/otherfolder/a/b/tsconfig.json WatchType: Wild card directory -Info 369 [16:09:10.000] Project: /user/username/rootfolder/otherfolder/a/b/tsconfig.json Detected ignored path: /user/username/rootfolder/otherfolder/a/b/node_modules/.staging/rxjs-22375c61/symbol -Info 370 [16:09:11.000] Elapsed:: *ms DirectoryWatcher:: Triggered with /user/username/rootfolder/otherfolder/a/b/node_modules/.staging/rxjs-22375c61/symbol :: WatchInfo: /user/username/rootfolder/otherfolder/a/b 1 undefined Config: /user/username/rootfolder/otherfolder/a/b/tsconfig.json WatchType: Wild card directory -Info 371 [16:09:13.000] DirectoryWatcher:: Triggered with /user/username/rootfolder/otherfolder/a/b/node_modules/.staging/rxjs-22375c61/testing :: WatchInfo: /user/username/rootfolder/otherfolder/a/b/node_modules 1 undefined Project: /user/username/rootfolder/otherfolder/a/b/tsconfig.json WatchType: Failed Lookup Locations -Info 372 [16:09:14.000] Elapsed:: *ms DirectoryWatcher:: Triggered with /user/username/rootfolder/otherfolder/a/b/node_modules/.staging/rxjs-22375c61/testing :: WatchInfo: /user/username/rootfolder/otherfolder/a/b/node_modules 1 undefined Project: /user/username/rootfolder/otherfolder/a/b/tsconfig.json WatchType: Failed Lookup Locations -Info 373 [16:09:15.000] DirectoryWatcher:: Triggered with /user/username/rootfolder/otherfolder/a/b/node_modules/.staging/rxjs-22375c61/testing :: WatchInfo: /user/username/rootfolder/otherfolder/a/b 1 undefined Config: /user/username/rootfolder/otherfolder/a/b/tsconfig.json WatchType: Wild card directory -Info 374 [16:09:16.000] Project: /user/username/rootfolder/otherfolder/a/b/tsconfig.json Detected ignored path: /user/username/rootfolder/otherfolder/a/b/node_modules/.staging/rxjs-22375c61/testing -Info 375 [16:09:17.000] Elapsed:: *ms DirectoryWatcher:: Triggered with /user/username/rootfolder/otherfolder/a/b/node_modules/.staging/rxjs-22375c61/testing :: WatchInfo: /user/username/rootfolder/otherfolder/a/b 1 undefined Config: /user/username/rootfolder/otherfolder/a/b/tsconfig.json WatchType: Wild card directory -Info 376 [16:09:19.000] DirectoryWatcher:: Triggered with /user/username/rootfolder/otherfolder/a/b/node_modules/.staging/rxjs-22375c61 :: WatchInfo: /user/username/rootfolder/otherfolder/a/b/node_modules 1 undefined Project: /user/username/rootfolder/otherfolder/a/b/tsconfig.json WatchType: Failed Lookup Locations -Info 377 [16:09:20.000] Elapsed:: *ms DirectoryWatcher:: Triggered with /user/username/rootfolder/otherfolder/a/b/node_modules/.staging/rxjs-22375c61 :: WatchInfo: /user/username/rootfolder/otherfolder/a/b/node_modules 1 undefined Project: /user/username/rootfolder/otherfolder/a/b/tsconfig.json WatchType: Failed Lookup Locations -Info 378 [16:09:21.000] DirectoryWatcher:: Triggered with /user/username/rootfolder/otherfolder/a/b/node_modules/.staging/rxjs-22375c61 :: WatchInfo: /user/username/rootfolder/otherfolder/a/b 1 undefined Config: /user/username/rootfolder/otherfolder/a/b/tsconfig.json WatchType: Wild card directory -Info 379 [16:09:22.000] Project: /user/username/rootfolder/otherfolder/a/b/tsconfig.json Detected ignored path: /user/username/rootfolder/otherfolder/a/b/node_modules/.staging/rxjs-22375c61 -Info 380 [16:09:23.000] Elapsed:: *ms DirectoryWatcher:: Triggered with /user/username/rootfolder/otherfolder/a/b/node_modules/.staging/rxjs-22375c61 :: WatchInfo: /user/username/rootfolder/otherfolder/a/b 1 undefined Config: /user/username/rootfolder/otherfolder/a/b/tsconfig.json WatchType: Wild card directory -Info 381 [16:09:25.000] DirectoryWatcher:: Triggered with /user/username/rootfolder/otherfolder/a/b/node_modules/.staging/symbol-observable-24bcbbff/index.d.ts :: WatchInfo: /user/username/rootfolder/otherfolder/a/b/node_modules 1 undefined Project: /user/username/rootfolder/otherfolder/a/b/tsconfig.json WatchType: Failed Lookup Locations -Info 382 [16:09:26.000] Elapsed:: *ms DirectoryWatcher:: Triggered with /user/username/rootfolder/otherfolder/a/b/node_modules/.staging/symbol-observable-24bcbbff/index.d.ts :: WatchInfo: /user/username/rootfolder/otherfolder/a/b/node_modules 1 undefined Project: /user/username/rootfolder/otherfolder/a/b/tsconfig.json WatchType: Failed Lookup Locations -Info 383 [16:09:27.000] DirectoryWatcher:: Triggered with /user/username/rootfolder/otherfolder/a/b/node_modules/.staging/symbol-observable-24bcbbff/index.d.ts :: WatchInfo: /user/username/rootfolder/otherfolder/a/b 1 undefined Config: /user/username/rootfolder/otherfolder/a/b/tsconfig.json WatchType: Wild card directory -Info 384 [16:09:28.000] Project: /user/username/rootfolder/otherfolder/a/b/tsconfig.json Detected ignored path: /user/username/rootfolder/otherfolder/a/b/node_modules/.staging/symbol-observable-24bcbbff/index.d.ts -Info 385 [16:09:29.000] Elapsed:: *ms DirectoryWatcher:: Triggered with /user/username/rootfolder/otherfolder/a/b/node_modules/.staging/symbol-observable-24bcbbff/index.d.ts :: WatchInfo: /user/username/rootfolder/otherfolder/a/b 1 undefined Config: /user/username/rootfolder/otherfolder/a/b/tsconfig.json WatchType: Wild card directory -Info 386 [16:09:31.000] DirectoryWatcher:: Triggered with /user/username/rootfolder/otherfolder/a/b/node_modules/.staging/symbol-observable-24bcbbff/index.js :: WatchInfo: /user/username/rootfolder/otherfolder/a/b/node_modules 1 undefined Project: /user/username/rootfolder/otherfolder/a/b/tsconfig.json WatchType: Failed Lookup Locations -Info 387 [16:09:32.000] Elapsed:: *ms DirectoryWatcher:: Triggered with /user/username/rootfolder/otherfolder/a/b/node_modules/.staging/symbol-observable-24bcbbff/index.js :: WatchInfo: /user/username/rootfolder/otherfolder/a/b/node_modules 1 undefined Project: /user/username/rootfolder/otherfolder/a/b/tsconfig.json WatchType: Failed Lookup Locations -Info 388 [16:09:33.000] DirectoryWatcher:: Triggered with /user/username/rootfolder/otherfolder/a/b/node_modules/.staging/symbol-observable-24bcbbff/index.js :: WatchInfo: /user/username/rootfolder/otherfolder/a/b 1 undefined Config: /user/username/rootfolder/otherfolder/a/b/tsconfig.json WatchType: Wild card directory -Info 389 [16:09:34.000] Project: /user/username/rootfolder/otherfolder/a/b/tsconfig.json Detected ignored path: /user/username/rootfolder/otherfolder/a/b/node_modules/.staging/symbol-observable-24bcbbff/index.js -Info 390 [16:09:35.000] Elapsed:: *ms DirectoryWatcher:: Triggered with /user/username/rootfolder/otherfolder/a/b/node_modules/.staging/symbol-observable-24bcbbff/index.js :: WatchInfo: /user/username/rootfolder/otherfolder/a/b 1 undefined Config: /user/username/rootfolder/otherfolder/a/b/tsconfig.json WatchType: Wild card directory -Info 391 [16:09:37.000] DirectoryWatcher:: Triggered with /user/username/rootfolder/otherfolder/a/b/node_modules/.staging/symbol-observable-24bcbbff/lib/index.js :: WatchInfo: /user/username/rootfolder/otherfolder/a/b/node_modules 1 undefined Project: /user/username/rootfolder/otherfolder/a/b/tsconfig.json WatchType: Failed Lookup Locations -Info 392 [16:09:38.000] Elapsed:: *ms DirectoryWatcher:: Triggered with /user/username/rootfolder/otherfolder/a/b/node_modules/.staging/symbol-observable-24bcbbff/lib/index.js :: WatchInfo: /user/username/rootfolder/otherfolder/a/b/node_modules 1 undefined Project: /user/username/rootfolder/otherfolder/a/b/tsconfig.json WatchType: Failed Lookup Locations -Info 393 [16:09:39.000] DirectoryWatcher:: Triggered with /user/username/rootfolder/otherfolder/a/b/node_modules/.staging/symbol-observable-24bcbbff/lib/index.js :: WatchInfo: /user/username/rootfolder/otherfolder/a/b 1 undefined Config: /user/username/rootfolder/otherfolder/a/b/tsconfig.json WatchType: Wild card directory -Info 394 [16:09:40.000] Project: /user/username/rootfolder/otherfolder/a/b/tsconfig.json Detected ignored path: /user/username/rootfolder/otherfolder/a/b/node_modules/.staging/symbol-observable-24bcbbff/lib/index.js -Info 395 [16:09:41.000] Elapsed:: *ms DirectoryWatcher:: Triggered with /user/username/rootfolder/otherfolder/a/b/node_modules/.staging/symbol-observable-24bcbbff/lib/index.js :: WatchInfo: /user/username/rootfolder/otherfolder/a/b 1 undefined Config: /user/username/rootfolder/otherfolder/a/b/tsconfig.json WatchType: Wild card directory -Info 396 [16:09:43.000] DirectoryWatcher:: Triggered with /user/username/rootfolder/otherfolder/a/b/node_modules/.staging/symbol-observable-24bcbbff/lib :: WatchInfo: /user/username/rootfolder/otherfolder/a/b/node_modules 1 undefined Project: /user/username/rootfolder/otherfolder/a/b/tsconfig.json WatchType: Failed Lookup Locations -Info 397 [16:09:44.000] Elapsed:: *ms DirectoryWatcher:: Triggered with /user/username/rootfolder/otherfolder/a/b/node_modules/.staging/symbol-observable-24bcbbff/lib :: WatchInfo: /user/username/rootfolder/otherfolder/a/b/node_modules 1 undefined Project: /user/username/rootfolder/otherfolder/a/b/tsconfig.json WatchType: Failed Lookup Locations -Info 398 [16:09:45.000] DirectoryWatcher:: Triggered with /user/username/rootfolder/otherfolder/a/b/node_modules/.staging/symbol-observable-24bcbbff/lib :: WatchInfo: /user/username/rootfolder/otherfolder/a/b 1 undefined Config: /user/username/rootfolder/otherfolder/a/b/tsconfig.json WatchType: Wild card directory -Info 399 [16:09:46.000] Project: /user/username/rootfolder/otherfolder/a/b/tsconfig.json Detected ignored path: /user/username/rootfolder/otherfolder/a/b/node_modules/.staging/symbol-observable-24bcbbff/lib -Info 400 [16:09:47.000] Elapsed:: *ms DirectoryWatcher:: Triggered with /user/username/rootfolder/otherfolder/a/b/node_modules/.staging/symbol-observable-24bcbbff/lib :: WatchInfo: /user/username/rootfolder/otherfolder/a/b 1 undefined Config: /user/username/rootfolder/otherfolder/a/b/tsconfig.json WatchType: Wild card directory -Info 401 [16:09:49.000] DirectoryWatcher:: Triggered with /user/username/rootfolder/otherfolder/a/b/node_modules/.staging/symbol-observable-24bcbbff/package.json :: WatchInfo: /user/username/rootfolder/otherfolder/a/b/node_modules 1 undefined Project: /user/username/rootfolder/otherfolder/a/b/tsconfig.json WatchType: Failed Lookup Locations -Info 402 [16:09:50.000] Elapsed:: *ms DirectoryWatcher:: Triggered with /user/username/rootfolder/otherfolder/a/b/node_modules/.staging/symbol-observable-24bcbbff/package.json :: WatchInfo: /user/username/rootfolder/otherfolder/a/b/node_modules 1 undefined Project: /user/username/rootfolder/otherfolder/a/b/tsconfig.json WatchType: Failed Lookup Locations -Info 403 [16:09:51.000] DirectoryWatcher:: Triggered with /user/username/rootfolder/otherfolder/a/b/node_modules/.staging/symbol-observable-24bcbbff/package.json :: WatchInfo: /user/username/rootfolder/otherfolder/a/b 1 undefined Config: /user/username/rootfolder/otherfolder/a/b/tsconfig.json WatchType: Wild card directory -Info 404 [16:09:52.000] Project: /user/username/rootfolder/otherfolder/a/b/tsconfig.json Detected ignored path: /user/username/rootfolder/otherfolder/a/b/node_modules/.staging/symbol-observable-24bcbbff/package.json -Info 405 [16:09:53.000] Elapsed:: *ms DirectoryWatcher:: Triggered with /user/username/rootfolder/otherfolder/a/b/node_modules/.staging/symbol-observable-24bcbbff/package.json :: WatchInfo: /user/username/rootfolder/otherfolder/a/b 1 undefined Config: /user/username/rootfolder/otherfolder/a/b/tsconfig.json WatchType: Wild card directory -Info 406 [16:09:55.000] DirectoryWatcher:: Triggered with /user/username/rootfolder/otherfolder/a/b/node_modules/.staging/symbol-observable-24bcbbff :: WatchInfo: /user/username/rootfolder/otherfolder/a/b/node_modules 1 undefined Project: /user/username/rootfolder/otherfolder/a/b/tsconfig.json WatchType: Failed Lookup Locations -Info 407 [16:09:56.000] Elapsed:: *ms DirectoryWatcher:: Triggered with /user/username/rootfolder/otherfolder/a/b/node_modules/.staging/symbol-observable-24bcbbff :: WatchInfo: /user/username/rootfolder/otherfolder/a/b/node_modules 1 undefined Project: /user/username/rootfolder/otherfolder/a/b/tsconfig.json WatchType: Failed Lookup Locations -Info 408 [16:09:57.000] DirectoryWatcher:: Triggered with /user/username/rootfolder/otherfolder/a/b/node_modules/.staging/symbol-observable-24bcbbff :: WatchInfo: /user/username/rootfolder/otherfolder/a/b 1 undefined Config: /user/username/rootfolder/otherfolder/a/b/tsconfig.json WatchType: Wild card directory -Info 409 [16:09:58.000] Project: /user/username/rootfolder/otherfolder/a/b/tsconfig.json Detected ignored path: /user/username/rootfolder/otherfolder/a/b/node_modules/.staging/symbol-observable-24bcbbff -Info 410 [16:09:59.000] Elapsed:: *ms DirectoryWatcher:: Triggered with /user/username/rootfolder/otherfolder/a/b/node_modules/.staging/symbol-observable-24bcbbff :: WatchInfo: /user/username/rootfolder/otherfolder/a/b 1 undefined Config: /user/username/rootfolder/otherfolder/a/b/tsconfig.json WatchType: Wild card directory -Info 411 [16:10:01.000] DirectoryWatcher:: Triggered with /user/username/rootfolder/otherfolder/a/b/node_modules/.staging/typescript-8493ea5d/lib :: WatchInfo: /user/username/rootfolder/otherfolder/a/b/node_modules 1 undefined Project: /user/username/rootfolder/otherfolder/a/b/tsconfig.json WatchType: Failed Lookup Locations -Info 412 [16:10:02.000] Elapsed:: *ms DirectoryWatcher:: Triggered with /user/username/rootfolder/otherfolder/a/b/node_modules/.staging/typescript-8493ea5d/lib :: WatchInfo: /user/username/rootfolder/otherfolder/a/b/node_modules 1 undefined Project: /user/username/rootfolder/otherfolder/a/b/tsconfig.json WatchType: Failed Lookup Locations -Info 413 [16:10:03.000] DirectoryWatcher:: Triggered with /user/username/rootfolder/otherfolder/a/b/node_modules/.staging/typescript-8493ea5d/lib :: WatchInfo: /user/username/rootfolder/otherfolder/a/b 1 undefined Config: /user/username/rootfolder/otherfolder/a/b/tsconfig.json WatchType: Wild card directory -Info 414 [16:10:04.000] Project: /user/username/rootfolder/otherfolder/a/b/tsconfig.json Detected ignored path: /user/username/rootfolder/otherfolder/a/b/node_modules/.staging/typescript-8493ea5d/lib -Info 415 [16:10:05.000] Elapsed:: *ms DirectoryWatcher:: Triggered with /user/username/rootfolder/otherfolder/a/b/node_modules/.staging/typescript-8493ea5d/lib :: WatchInfo: /user/username/rootfolder/otherfolder/a/b 1 undefined Config: /user/username/rootfolder/otherfolder/a/b/tsconfig.json WatchType: Wild card directory -Info 416 [16:10:07.000] DirectoryWatcher:: Triggered with /user/username/rootfolder/otherfolder/a/b/node_modules/.staging/typescript-8493ea5d/package.json :: WatchInfo: /user/username/rootfolder/otherfolder/a/b/node_modules 1 undefined Project: /user/username/rootfolder/otherfolder/a/b/tsconfig.json WatchType: Failed Lookup Locations -Info 417 [16:10:08.000] Elapsed:: *ms DirectoryWatcher:: Triggered with /user/username/rootfolder/otherfolder/a/b/node_modules/.staging/typescript-8493ea5d/package.json :: WatchInfo: /user/username/rootfolder/otherfolder/a/b/node_modules 1 undefined Project: /user/username/rootfolder/otherfolder/a/b/tsconfig.json WatchType: Failed Lookup Locations -Info 418 [16:10:09.000] DirectoryWatcher:: Triggered with /user/username/rootfolder/otherfolder/a/b/node_modules/.staging/typescript-8493ea5d/package.json :: WatchInfo: /user/username/rootfolder/otherfolder/a/b 1 undefined Config: /user/username/rootfolder/otherfolder/a/b/tsconfig.json WatchType: Wild card directory -Info 419 [16:10:10.000] Project: /user/username/rootfolder/otherfolder/a/b/tsconfig.json Detected ignored path: /user/username/rootfolder/otherfolder/a/b/node_modules/.staging/typescript-8493ea5d/package.json -Info 420 [16:10:11.000] Elapsed:: *ms DirectoryWatcher:: Triggered with /user/username/rootfolder/otherfolder/a/b/node_modules/.staging/typescript-8493ea5d/package.json :: WatchInfo: /user/username/rootfolder/otherfolder/a/b 1 undefined Config: /user/username/rootfolder/otherfolder/a/b/tsconfig.json WatchType: Wild card directory -Info 421 [16:10:13.000] DirectoryWatcher:: Triggered with /user/username/rootfolder/otherfolder/a/b/node_modules/.staging/typescript-8493ea5d :: WatchInfo: /user/username/rootfolder/otherfolder/a/b/node_modules 1 undefined Project: /user/username/rootfolder/otherfolder/a/b/tsconfig.json WatchType: Failed Lookup Locations -Info 422 [16:10:14.000] Elapsed:: *ms DirectoryWatcher:: Triggered with /user/username/rootfolder/otherfolder/a/b/node_modules/.staging/typescript-8493ea5d :: WatchInfo: /user/username/rootfolder/otherfolder/a/b/node_modules 1 undefined Project: /user/username/rootfolder/otherfolder/a/b/tsconfig.json WatchType: Failed Lookup Locations -Info 423 [16:10:15.000] DirectoryWatcher:: Triggered with /user/username/rootfolder/otherfolder/a/b/node_modules/.staging/typescript-8493ea5d :: WatchInfo: /user/username/rootfolder/otherfolder/a/b 1 undefined Config: /user/username/rootfolder/otherfolder/a/b/tsconfig.json WatchType: Wild card directory -Info 424 [16:10:16.000] Project: /user/username/rootfolder/otherfolder/a/b/tsconfig.json Detected ignored path: /user/username/rootfolder/otherfolder/a/b/node_modules/.staging/typescript-8493ea5d -Info 425 [16:10:17.000] Elapsed:: *ms DirectoryWatcher:: Triggered with /user/username/rootfolder/otherfolder/a/b/node_modules/.staging/typescript-8493ea5d :: WatchInfo: /user/username/rootfolder/otherfolder/a/b 1 undefined Config: /user/username/rootfolder/otherfolder/a/b/tsconfig.json WatchType: Wild card directory -Info 426 [16:10:19.000] DirectoryWatcher:: Triggered with /user/username/rootfolder/otherfolder/a/b/node_modules/.staging :: WatchInfo: /user/username/rootfolder/otherfolder/a/b/node_modules 1 undefined Project: /user/username/rootfolder/otherfolder/a/b/tsconfig.json WatchType: Failed Lookup Locations -Info 427 [16:10:20.000] Scheduled: /user/username/rootfolder/otherfolder/a/b/tsconfig.jsonFailedLookupInvalidation, Cancelled earlier one -Info 428 [16:10:21.000] Elapsed:: *ms DirectoryWatcher:: Triggered with /user/username/rootfolder/otherfolder/a/b/node_modules/.staging :: WatchInfo: /user/username/rootfolder/otherfolder/a/b/node_modules 1 undefined Project: /user/username/rootfolder/otherfolder/a/b/tsconfig.json WatchType: Failed Lookup Locations -Info 429 [16:10:22.000] DirectoryWatcher:: Triggered with /user/username/rootfolder/otherfolder/a/b/node_modules/.staging :: WatchInfo: /user/username/rootfolder/otherfolder/a/b 1 undefined Config: /user/username/rootfolder/otherfolder/a/b/tsconfig.json WatchType: Wild card directory -Info 430 [16:10:23.000] Scheduled: /user/username/rootfolder/otherfolder/a/b/tsconfig.json, Cancelled earlier one -Info 431 [16:10:24.000] Scheduled: *ensureProjectForOpenFiles*, Cancelled earlier one -Info 432 [16:10:25.000] Elapsed:: *ms DirectoryWatcher:: Triggered with /user/username/rootfolder/otherfolder/a/b/node_modules/.staging :: WatchInfo: /user/username/rootfolder/otherfolder/a/b 1 undefined Config: /user/username/rootfolder/otherfolder/a/b/tsconfig.json WatchType: Wild card directory -Info 433 [16:10:28.000] DirectoryWatcher:: Triggered with /user/username/rootfolder/otherfolder/a/b/node_modules/symbolle :: WatchInfo: /user/username/rootfolder/otherfolder/a/b/node_modules 1 undefined Project: /user/username/rootfolder/otherfolder/a/b/tsconfig.json WatchType: Failed Lookup Locations -Info 434 [16:10:29.000] Scheduled: /user/username/rootfolder/otherfolder/a/b/tsconfig.jsonFailedLookupInvalidation, Cancelled earlier one -Info 435 [16:10:30.000] Elapsed:: *ms DirectoryWatcher:: Triggered with /user/username/rootfolder/otherfolder/a/b/node_modules/symbolle :: WatchInfo: /user/username/rootfolder/otherfolder/a/b/node_modules 1 undefined Project: /user/username/rootfolder/otherfolder/a/b/tsconfig.json WatchType: Failed Lookup Locations -Info 436 [16:10:31.000] DirectoryWatcher:: Triggered with /user/username/rootfolder/otherfolder/a/b/node_modules/symbolle :: WatchInfo: /user/username/rootfolder/otherfolder/a/b 1 undefined Config: /user/username/rootfolder/otherfolder/a/b/tsconfig.json WatchType: Wild card directory -Info 437 [16:10:32.000] Scheduled: /user/username/rootfolder/otherfolder/a/b/tsconfig.json, Cancelled earlier one -Info 438 [16:10:33.000] Scheduled: *ensureProjectForOpenFiles*, Cancelled earlier one -Info 439 [16:10:34.000] Elapsed:: *ms DirectoryWatcher:: Triggered with /user/username/rootfolder/otherfolder/a/b/node_modules/symbolle :: WatchInfo: /user/username/rootfolder/otherfolder/a/b 1 undefined Config: /user/username/rootfolder/otherfolder/a/b/tsconfig.json WatchType: Wild card directory -Info 440 [16:10:37.000] DirectoryWatcher:: Triggered with /user/username/rootfolder/otherfolder/a/b/node_modules/symbolle/package.json :: WatchInfo: /user/username/rootfolder/otherfolder/a/b/node_modules 1 undefined Project: /user/username/rootfolder/otherfolder/a/b/tsconfig.json WatchType: Failed Lookup Locations -Info 441 [16:10:38.000] Scheduled: /user/username/rootfolder/otherfolder/a/b/tsconfig.jsonFailedLookupInvalidation, Cancelled earlier one -Info 442 [16:10:39.000] Elapsed:: *ms DirectoryWatcher:: Triggered with /user/username/rootfolder/otherfolder/a/b/node_modules/symbolle/package.json :: WatchInfo: /user/username/rootfolder/otherfolder/a/b/node_modules 1 undefined Project: /user/username/rootfolder/otherfolder/a/b/tsconfig.json WatchType: Failed Lookup Locations -Info 443 [16:10:40.000] DirectoryWatcher:: Triggered with /user/username/rootfolder/otherfolder/a/b/node_modules/symbolle/package.json :: WatchInfo: /user/username/rootfolder/otherfolder/a/b 1 undefined Config: /user/username/rootfolder/otherfolder/a/b/tsconfig.json WatchType: Wild card directory -Info 444 [16:10:41.000] Project: /user/username/rootfolder/otherfolder/a/b/tsconfig.json Detected file add/remove of non supported extension: /user/username/rootfolder/otherfolder/a/b/node_modules/symbolle/package.json -Info 445 [16:10:42.000] Elapsed:: *ms DirectoryWatcher:: Triggered with /user/username/rootfolder/otherfolder/a/b/node_modules/symbolle/package.json :: WatchInfo: /user/username/rootfolder/otherfolder/a/b 1 undefined Config: /user/username/rootfolder/otherfolder/a/b/tsconfig.json WatchType: Wild card directory -Info 446 [16:10:45.000] DirectoryWatcher:: Triggered with /user/username/rootfolder/otherfolder/a/b/node_modules/lodash/package.json :: WatchInfo: /user/username/rootfolder/otherfolder/a/b/node_modules 1 undefined Project: /user/username/rootfolder/otherfolder/a/b/tsconfig.json WatchType: Failed Lookup Locations -Info 447 [16:10:46.000] Scheduled: /user/username/rootfolder/otherfolder/a/b/tsconfig.jsonFailedLookupInvalidation, Cancelled earlier one -Info 448 [16:10:47.000] Elapsed:: *ms DirectoryWatcher:: Triggered with /user/username/rootfolder/otherfolder/a/b/node_modules/lodash/package.json :: WatchInfo: /user/username/rootfolder/otherfolder/a/b/node_modules 1 undefined Project: /user/username/rootfolder/otherfolder/a/b/tsconfig.json WatchType: Failed Lookup Locations -Info 449 [16:10:48.000] DirectoryWatcher:: Triggered with /user/username/rootfolder/otherfolder/a/b/node_modules/lodash/package.json :: WatchInfo: /user/username/rootfolder/otherfolder/a/b 1 undefined Config: /user/username/rootfolder/otherfolder/a/b/tsconfig.json WatchType: Wild card directory -Info 450 [16:10:49.000] Project: /user/username/rootfolder/otherfolder/a/b/tsconfig.json Detected file add/remove of non supported extension: /user/username/rootfolder/otherfolder/a/b/node_modules/lodash/package.json -Info 451 [16:10:50.000] Elapsed:: *ms DirectoryWatcher:: Triggered with /user/username/rootfolder/otherfolder/a/b/node_modules/lodash/package.json :: WatchInfo: /user/username/rootfolder/otherfolder/a/b 1 undefined Config: /user/username/rootfolder/otherfolder/a/b/tsconfig.json WatchType: Wild card directory -Info 452 [16:10:53.000] DirectoryWatcher:: Triggered with /user/username/rootfolder/otherfolder/a/b/node_modules/rxjs/package.json :: WatchInfo: /user/username/rootfolder/otherfolder/a/b/node_modules 1 undefined Project: /user/username/rootfolder/otherfolder/a/b/tsconfig.json WatchType: Failed Lookup Locations -Info 453 [16:10:54.000] Scheduled: /user/username/rootfolder/otherfolder/a/b/tsconfig.jsonFailedLookupInvalidation, Cancelled earlier one -Info 454 [16:10:55.000] Elapsed:: *ms DirectoryWatcher:: Triggered with /user/username/rootfolder/otherfolder/a/b/node_modules/rxjs/package.json :: WatchInfo: /user/username/rootfolder/otherfolder/a/b/node_modules 1 undefined Project: /user/username/rootfolder/otherfolder/a/b/tsconfig.json WatchType: Failed Lookup Locations -Info 455 [16:10:56.000] DirectoryWatcher:: Triggered with /user/username/rootfolder/otherfolder/a/b/node_modules/rxjs/package.json :: WatchInfo: /user/username/rootfolder/otherfolder/a/b 1 undefined Config: /user/username/rootfolder/otherfolder/a/b/tsconfig.json WatchType: Wild card directory -Info 456 [16:10:57.000] Project: /user/username/rootfolder/otherfolder/a/b/tsconfig.json Detected file add/remove of non supported extension: /user/username/rootfolder/otherfolder/a/b/node_modules/rxjs/package.json -Info 457 [16:10:58.000] Elapsed:: *ms DirectoryWatcher:: Triggered with /user/username/rootfolder/otherfolder/a/b/node_modules/rxjs/package.json :: WatchInfo: /user/username/rootfolder/otherfolder/a/b 1 undefined Config: /user/username/rootfolder/otherfolder/a/b/tsconfig.json WatchType: Wild card directory -Info 458 [16:11:01.000] DirectoryWatcher:: Triggered with /user/username/rootfolder/otherfolder/a/b/node_modules/typescript/package.json :: WatchInfo: /user/username/rootfolder/otherfolder/a/b/node_modules 1 undefined Project: /user/username/rootfolder/otherfolder/a/b/tsconfig.json WatchType: Failed Lookup Locations -Info 459 [16:11:02.000] Scheduled: /user/username/rootfolder/otherfolder/a/b/tsconfig.jsonFailedLookupInvalidation, Cancelled earlier one -Info 460 [16:11:03.000] Elapsed:: *ms DirectoryWatcher:: Triggered with /user/username/rootfolder/otherfolder/a/b/node_modules/typescript/package.json :: WatchInfo: /user/username/rootfolder/otherfolder/a/b/node_modules 1 undefined Project: /user/username/rootfolder/otherfolder/a/b/tsconfig.json WatchType: Failed Lookup Locations -Info 461 [16:11:04.000] DirectoryWatcher:: Triggered with /user/username/rootfolder/otherfolder/a/b/node_modules/typescript/package.json :: WatchInfo: /user/username/rootfolder/otherfolder/a/b 1 undefined Config: /user/username/rootfolder/otherfolder/a/b/tsconfig.json WatchType: Wild card directory -Info 462 [16:11:05.000] Project: /user/username/rootfolder/otherfolder/a/b/tsconfig.json Detected file add/remove of non supported extension: /user/username/rootfolder/otherfolder/a/b/node_modules/typescript/package.json -Info 463 [16:11:06.000] Elapsed:: *ms DirectoryWatcher:: Triggered with /user/username/rootfolder/otherfolder/a/b/node_modules/typescript/package.json :: WatchInfo: /user/username/rootfolder/otherfolder/a/b 1 undefined Config: /user/username/rootfolder/otherfolder/a/b/tsconfig.json WatchType: Wild card directory -Info 464 [16:11:09.000] DirectoryWatcher:: Triggered with /user/username/rootfolder/otherfolder/a/b/node_modules/symbolle/index.js :: WatchInfo: /user/username/rootfolder/otherfolder/a/b/node_modules 1 undefined Project: /user/username/rootfolder/otherfolder/a/b/tsconfig.json WatchType: Failed Lookup Locations -Info 465 [16:11:10.000] Scheduled: /user/username/rootfolder/otherfolder/a/b/tsconfig.jsonFailedLookupInvalidation, Cancelled earlier one -Info 466 [16:11:11.000] Elapsed:: *ms DirectoryWatcher:: Triggered with /user/username/rootfolder/otherfolder/a/b/node_modules/symbolle/index.js :: WatchInfo: /user/username/rootfolder/otherfolder/a/b/node_modules 1 undefined Project: /user/username/rootfolder/otherfolder/a/b/tsconfig.json WatchType: Failed Lookup Locations -Info 467 [16:11:12.000] DirectoryWatcher:: Triggered with /user/username/rootfolder/otherfolder/a/b/node_modules/symbolle/index.js :: WatchInfo: /user/username/rootfolder/otherfolder/a/b 1 undefined Config: /user/username/rootfolder/otherfolder/a/b/tsconfig.json WatchType: Wild card directory -Info 468 [16:11:13.000] Project: /user/username/rootfolder/otherfolder/a/b/tsconfig.json Detected file add/remove of non supported extension: /user/username/rootfolder/otherfolder/a/b/node_modules/symbolle/index.js -Info 469 [16:11:14.000] Elapsed:: *ms DirectoryWatcher:: Triggered with /user/username/rootfolder/otherfolder/a/b/node_modules/symbolle/index.js :: WatchInfo: /user/username/rootfolder/otherfolder/a/b 1 undefined Config: /user/username/rootfolder/otherfolder/a/b/tsconfig.json WatchType: Wild card directory -Info 470 [16:11:17.000] DirectoryWatcher:: Triggered with /user/username/rootfolder/otherfolder/a/b/node_modules/symbolle/index.d.ts :: WatchInfo: /user/username/rootfolder/otherfolder/a/b/node_modules 1 undefined Project: /user/username/rootfolder/otherfolder/a/b/tsconfig.json WatchType: Failed Lookup Locations -Info 471 [16:11:18.000] Scheduled: /user/username/rootfolder/otherfolder/a/b/tsconfig.jsonFailedLookupInvalidation, Cancelled earlier one -Info 472 [16:11:19.000] Elapsed:: *ms DirectoryWatcher:: Triggered with /user/username/rootfolder/otherfolder/a/b/node_modules/symbolle/index.d.ts :: WatchInfo: /user/username/rootfolder/otherfolder/a/b/node_modules 1 undefined Project: /user/username/rootfolder/otherfolder/a/b/tsconfig.json WatchType: Failed Lookup Locations -Info 473 [16:11:20.000] DirectoryWatcher:: Triggered with /user/username/rootfolder/otherfolder/a/b/node_modules/symbolle/index.d.ts :: WatchInfo: /user/username/rootfolder/otherfolder/a/b 1 undefined Config: /user/username/rootfolder/otherfolder/a/b/tsconfig.json WatchType: Wild card directory -Info 474 [16:11:21.000] Scheduled: /user/username/rootfolder/otherfolder/a/b/tsconfig.json, Cancelled earlier one -Info 475 [16:11:22.000] Scheduled: *ensureProjectForOpenFiles*, Cancelled earlier one -Info 476 [16:11:23.000] Elapsed:: *ms DirectoryWatcher:: Triggered with /user/username/rootfolder/otherfolder/a/b/node_modules/symbolle/index.d.ts :: WatchInfo: /user/username/rootfolder/otherfolder/a/b 1 undefined Config: /user/username/rootfolder/otherfolder/a/b/tsconfig.json WatchType: Wild card directory -Info 477 [16:11:26.000] DirectoryWatcher:: Triggered with /user/username/rootfolder/otherfolder/a/b/node_modules/symbolle/lib :: WatchInfo: /user/username/rootfolder/otherfolder/a/b/node_modules 1 undefined Project: /user/username/rootfolder/otherfolder/a/b/tsconfig.json WatchType: Failed Lookup Locations -Info 478 [16:11:27.000] Elapsed:: *ms DirectoryWatcher:: Triggered with /user/username/rootfolder/otherfolder/a/b/node_modules/symbolle/lib :: WatchInfo: /user/username/rootfolder/otherfolder/a/b/node_modules 1 undefined Project: /user/username/rootfolder/otherfolder/a/b/tsconfig.json WatchType: Failed Lookup Locations -Info 479 [16:11:28.000] DirectoryWatcher:: Triggered with /user/username/rootfolder/otherfolder/a/b/node_modules/symbolle/lib :: WatchInfo: /user/username/rootfolder/otherfolder/a/b 1 undefined Config: /user/username/rootfolder/otherfolder/a/b/tsconfig.json WatchType: Wild card directory -Info 480 [16:11:29.000] Scheduled: /user/username/rootfolder/otherfolder/a/b/tsconfig.json, Cancelled earlier one -Info 481 [16:11:30.000] Scheduled: *ensureProjectForOpenFiles*, Cancelled earlier one -Info 482 [16:11:31.000] Elapsed:: *ms DirectoryWatcher:: Triggered with /user/username/rootfolder/otherfolder/a/b/node_modules/symbolle/lib :: WatchInfo: /user/username/rootfolder/otherfolder/a/b 1 undefined Config: /user/username/rootfolder/otherfolder/a/b/tsconfig.json WatchType: Wild card directory -Info 483 [16:11:34.000] DirectoryWatcher:: Triggered with /user/username/rootfolder/otherfolder/a/b/node_modules/symbolle/lib/index.js :: WatchInfo: /user/username/rootfolder/otherfolder/a/b/node_modules 1 undefined Project: /user/username/rootfolder/otherfolder/a/b/tsconfig.json WatchType: Failed Lookup Locations -Info 484 [16:11:35.000] Scheduled: /user/username/rootfolder/otherfolder/a/b/tsconfig.jsonFailedLookupInvalidation, Cancelled earlier one -Info 485 [16:11:36.000] Elapsed:: *ms DirectoryWatcher:: Triggered with /user/username/rootfolder/otherfolder/a/b/node_modules/symbolle/lib/index.js :: WatchInfo: /user/username/rootfolder/otherfolder/a/b/node_modules 1 undefined Project: /user/username/rootfolder/otherfolder/a/b/tsconfig.json WatchType: Failed Lookup Locations -Info 486 [16:11:37.000] DirectoryWatcher:: Triggered with /user/username/rootfolder/otherfolder/a/b/node_modules/symbolle/lib/index.js :: WatchInfo: /user/username/rootfolder/otherfolder/a/b 1 undefined Config: /user/username/rootfolder/otherfolder/a/b/tsconfig.json WatchType: Wild card directory -Info 487 [16:11:38.000] Project: /user/username/rootfolder/otherfolder/a/b/tsconfig.json Detected file add/remove of non supported extension: /user/username/rootfolder/otherfolder/a/b/node_modules/symbolle/lib/index.js -Info 488 [16:11:39.000] Elapsed:: *ms DirectoryWatcher:: Triggered with /user/username/rootfolder/otherfolder/a/b/node_modules/symbolle/lib/index.js :: WatchInfo: /user/username/rootfolder/otherfolder/a/b 1 undefined Config: /user/username/rootfolder/otherfolder/a/b/tsconfig.json WatchType: Wild card directory -Info 489 [16:11:42.000] DirectoryWatcher:: Triggered with /user/username/rootfolder/otherfolder/a/b/node_modules/typescript/lib :: WatchInfo: /user/username/rootfolder/otherfolder/a/b/node_modules 1 undefined Project: /user/username/rootfolder/otherfolder/a/b/tsconfig.json WatchType: Failed Lookup Locations -Info 490 [16:11:43.000] Elapsed:: *ms DirectoryWatcher:: Triggered with /user/username/rootfolder/otherfolder/a/b/node_modules/typescript/lib :: WatchInfo: /user/username/rootfolder/otherfolder/a/b/node_modules 1 undefined Project: /user/username/rootfolder/otherfolder/a/b/tsconfig.json WatchType: Failed Lookup Locations -Info 491 [16:11:44.000] DirectoryWatcher:: Triggered with /user/username/rootfolder/otherfolder/a/b/node_modules/typescript/lib :: WatchInfo: /user/username/rootfolder/otherfolder/a/b 1 undefined Config: /user/username/rootfolder/otherfolder/a/b/tsconfig.json WatchType: Wild card directory -Info 492 [16:11:45.000] Scheduled: /user/username/rootfolder/otherfolder/a/b/tsconfig.json, Cancelled earlier one -Info 493 [16:11:46.000] Scheduled: *ensureProjectForOpenFiles*, Cancelled earlier one -Info 494 [16:11:47.000] Elapsed:: *ms DirectoryWatcher:: Triggered with /user/username/rootfolder/otherfolder/a/b/node_modules/typescript/lib :: WatchInfo: /user/username/rootfolder/otherfolder/a/b 1 undefined Config: /user/username/rootfolder/otherfolder/a/b/tsconfig.json WatchType: Wild card directory -Info 495 [16:11:50.000] DirectoryWatcher:: Triggered with /user/username/rootfolder/otherfolder/a/b/node_modules/rxjs/add :: WatchInfo: /user/username/rootfolder/otherfolder/a/b/node_modules 1 undefined Project: /user/username/rootfolder/otherfolder/a/b/tsconfig.json WatchType: Failed Lookup Locations -Info 496 [16:11:51.000] Elapsed:: *ms DirectoryWatcher:: Triggered with /user/username/rootfolder/otherfolder/a/b/node_modules/rxjs/add :: WatchInfo: /user/username/rootfolder/otherfolder/a/b/node_modules 1 undefined Project: /user/username/rootfolder/otherfolder/a/b/tsconfig.json WatchType: Failed Lookup Locations -Info 497 [16:11:52.000] DirectoryWatcher:: Triggered with /user/username/rootfolder/otherfolder/a/b/node_modules/rxjs/add :: WatchInfo: /user/username/rootfolder/otherfolder/a/b 1 undefined Config: /user/username/rootfolder/otherfolder/a/b/tsconfig.json WatchType: Wild card directory -Info 498 [16:11:53.000] Scheduled: /user/username/rootfolder/otherfolder/a/b/tsconfig.json, Cancelled earlier one -Info 499 [16:11:54.000] Scheduled: *ensureProjectForOpenFiles*, Cancelled earlier one -Info 500 [16:11:55.000] Elapsed:: *ms DirectoryWatcher:: Triggered with /user/username/rootfolder/otherfolder/a/b/node_modules/rxjs/add :: WatchInfo: /user/username/rootfolder/otherfolder/a/b 1 undefined Config: /user/username/rootfolder/otherfolder/a/b/tsconfig.json WatchType: Wild card directory -Info 501 [16:11:58.000] DirectoryWatcher:: Triggered with /user/username/rootfolder/otherfolder/a/b/node_modules/rxjs/add/operator :: WatchInfo: /user/username/rootfolder/otherfolder/a/b/node_modules 1 undefined Project: /user/username/rootfolder/otherfolder/a/b/tsconfig.json WatchType: Failed Lookup Locations -Info 502 [16:11:59.000] Elapsed:: *ms DirectoryWatcher:: Triggered with /user/username/rootfolder/otherfolder/a/b/node_modules/rxjs/add/operator :: WatchInfo: /user/username/rootfolder/otherfolder/a/b/node_modules 1 undefined Project: /user/username/rootfolder/otherfolder/a/b/tsconfig.json WatchType: Failed Lookup Locations -Info 503 [16:12:00.000] DirectoryWatcher:: Triggered with /user/username/rootfolder/otherfolder/a/b/node_modules/rxjs/add/operator :: WatchInfo: /user/username/rootfolder/otherfolder/a/b 1 undefined Config: /user/username/rootfolder/otherfolder/a/b/tsconfig.json WatchType: Wild card directory -Info 504 [16:12:01.000] Scheduled: /user/username/rootfolder/otherfolder/a/b/tsconfig.json, Cancelled earlier one -Info 505 [16:12:02.000] Scheduled: *ensureProjectForOpenFiles*, Cancelled earlier one -Info 506 [16:12:03.000] Elapsed:: *ms DirectoryWatcher:: Triggered with /user/username/rootfolder/otherfolder/a/b/node_modules/rxjs/add/operator :: WatchInfo: /user/username/rootfolder/otherfolder/a/b 1 undefined Config: /user/username/rootfolder/otherfolder/a/b/tsconfig.json WatchType: Wild card directory -Info 507 [16:12:06.000] DirectoryWatcher:: Triggered with /user/username/rootfolder/otherfolder/a/b/node_modules/@types/lodash/package.json :: WatchInfo: /user/username/rootfolder/otherfolder/a/b/node_modules/@types 1 undefined Project: /user/username/rootfolder/otherfolder/a/b/tsconfig.json WatchType: Type roots -Info 508 [16:12:07.000] Scheduled: /user/username/rootfolder/otherfolder/a/b/tsconfig.json, Cancelled earlier one -Info 509 [16:12:08.000] Scheduled: *ensureProjectForOpenFiles*, Cancelled earlier one -Info 510 [16:12:09.000] Scheduled: /user/username/rootfolder/otherfolder/a/b/tsconfig.jsonFailedLookupInvalidation, Cancelled earlier one -Info 511 [16:12:10.000] Elapsed:: *ms DirectoryWatcher:: Triggered with /user/username/rootfolder/otherfolder/a/b/node_modules/@types/lodash/package.json :: WatchInfo: /user/username/rootfolder/otherfolder/a/b/node_modules/@types 1 undefined Project: /user/username/rootfolder/otherfolder/a/b/tsconfig.json WatchType: Type roots -Info 512 [16:12:11.000] DirectoryWatcher:: Triggered with /user/username/rootfolder/otherfolder/a/b/node_modules/@types/lodash/package.json :: WatchInfo: /user/username/rootfolder/otherfolder/a/b/node_modules 1 undefined Project: /user/username/rootfolder/otherfolder/a/b/tsconfig.json WatchType: Failed Lookup Locations -Info 513 [16:12:12.000] Scheduled: /user/username/rootfolder/otherfolder/a/b/tsconfig.jsonFailedLookupInvalidation, Cancelled earlier one -Info 514 [16:12:13.000] Elapsed:: *ms DirectoryWatcher:: Triggered with /user/username/rootfolder/otherfolder/a/b/node_modules/@types/lodash/package.json :: WatchInfo: /user/username/rootfolder/otherfolder/a/b/node_modules 1 undefined Project: /user/username/rootfolder/otherfolder/a/b/tsconfig.json WatchType: Failed Lookup Locations -Info 515 [16:12:14.000] DirectoryWatcher:: Triggered with /user/username/rootfolder/otherfolder/a/b/node_modules/@types/lodash/package.json :: WatchInfo: /user/username/rootfolder/otherfolder/a/b 1 undefined Config: /user/username/rootfolder/otherfolder/a/b/tsconfig.json WatchType: Wild card directory -Info 516 [16:12:15.000] Project: /user/username/rootfolder/otherfolder/a/b/tsconfig.json Detected file add/remove of non supported extension: /user/username/rootfolder/otherfolder/a/b/node_modules/@types/lodash/package.json -Info 517 [16:12:16.000] Elapsed:: *ms DirectoryWatcher:: Triggered with /user/username/rootfolder/otherfolder/a/b/node_modules/@types/lodash/package.json :: WatchInfo: /user/username/rootfolder/otherfolder/a/b 1 undefined Config: /user/username/rootfolder/otherfolder/a/b/tsconfig.json WatchType: Wild card directory -Info 518 [16:12:19.000] DirectoryWatcher:: Triggered with /user/username/rootfolder/otherfolder/a/b/node_modules/lodash/index.js :: WatchInfo: /user/username/rootfolder/otherfolder/a/b/node_modules 1 undefined Project: /user/username/rootfolder/otherfolder/a/b/tsconfig.json WatchType: Failed Lookup Locations -Info 519 [16:12:20.000] Scheduled: /user/username/rootfolder/otherfolder/a/b/tsconfig.jsonFailedLookupInvalidation, Cancelled earlier one -Info 520 [16:12:21.000] Elapsed:: *ms DirectoryWatcher:: Triggered with /user/username/rootfolder/otherfolder/a/b/node_modules/lodash/index.js :: WatchInfo: /user/username/rootfolder/otherfolder/a/b/node_modules 1 undefined Project: /user/username/rootfolder/otherfolder/a/b/tsconfig.json WatchType: Failed Lookup Locations -Info 521 [16:12:22.000] DirectoryWatcher:: Triggered with /user/username/rootfolder/otherfolder/a/b/node_modules/lodash/index.js :: WatchInfo: /user/username/rootfolder/otherfolder/a/b 1 undefined Config: /user/username/rootfolder/otherfolder/a/b/tsconfig.json WatchType: Wild card directory -Info 522 [16:12:23.000] Project: /user/username/rootfolder/otherfolder/a/b/tsconfig.json Detected file add/remove of non supported extension: /user/username/rootfolder/otherfolder/a/b/node_modules/lodash/index.js -Info 523 [16:12:24.000] Elapsed:: *ms DirectoryWatcher:: Triggered with /user/username/rootfolder/otherfolder/a/b/node_modules/lodash/index.js :: WatchInfo: /user/username/rootfolder/otherfolder/a/b 1 undefined Config: /user/username/rootfolder/otherfolder/a/b/tsconfig.json WatchType: Wild card directory -Info 524 [16:12:27.000] DirectoryWatcher:: Triggered with /user/username/rootfolder/otherfolder/a/b/node_modules/rxjs/bundles :: WatchInfo: /user/username/rootfolder/otherfolder/a/b/node_modules 1 undefined Project: /user/username/rootfolder/otherfolder/a/b/tsconfig.json WatchType: Failed Lookup Locations -Info 525 [16:12:28.000] Elapsed:: *ms DirectoryWatcher:: Triggered with /user/username/rootfolder/otherfolder/a/b/node_modules/rxjs/bundles :: WatchInfo: /user/username/rootfolder/otherfolder/a/b/node_modules 1 undefined Project: /user/username/rootfolder/otherfolder/a/b/tsconfig.json WatchType: Failed Lookup Locations -Info 526 [16:12:29.000] DirectoryWatcher:: Triggered with /user/username/rootfolder/otherfolder/a/b/node_modules/rxjs/bundles :: WatchInfo: /user/username/rootfolder/otherfolder/a/b 1 undefined Config: /user/username/rootfolder/otherfolder/a/b/tsconfig.json WatchType: Wild card directory -Info 527 [16:12:30.000] Scheduled: /user/username/rootfolder/otherfolder/a/b/tsconfig.json, Cancelled earlier one -Info 528 [16:12:31.000] Scheduled: *ensureProjectForOpenFiles*, Cancelled earlier one -Info 529 [16:12:32.000] Elapsed:: *ms DirectoryWatcher:: Triggered with /user/username/rootfolder/otherfolder/a/b/node_modules/rxjs/bundles :: WatchInfo: /user/username/rootfolder/otherfolder/a/b 1 undefined Config: /user/username/rootfolder/otherfolder/a/b/tsconfig.json WatchType: Wild card directory -Info 530 [16:12:35.000] DirectoryWatcher:: Triggered with /user/username/rootfolder/otherfolder/a/b/node_modules/rxjs/operator :: WatchInfo: /user/username/rootfolder/otherfolder/a/b/node_modules 1 undefined Project: /user/username/rootfolder/otherfolder/a/b/tsconfig.json WatchType: Failed Lookup Locations -Info 531 [16:12:36.000] Elapsed:: *ms DirectoryWatcher:: Triggered with /user/username/rootfolder/otherfolder/a/b/node_modules/rxjs/operator :: WatchInfo: /user/username/rootfolder/otherfolder/a/b/node_modules 1 undefined Project: /user/username/rootfolder/otherfolder/a/b/tsconfig.json WatchType: Failed Lookup Locations -Info 532 [16:12:37.000] DirectoryWatcher:: Triggered with /user/username/rootfolder/otherfolder/a/b/node_modules/rxjs/operator :: WatchInfo: /user/username/rootfolder/otherfolder/a/b 1 undefined Config: /user/username/rootfolder/otherfolder/a/b/tsconfig.json WatchType: Wild card directory -Info 533 [16:12:38.000] Scheduled: /user/username/rootfolder/otherfolder/a/b/tsconfig.json, Cancelled earlier one -Info 534 [16:12:39.000] Scheduled: *ensureProjectForOpenFiles*, Cancelled earlier one -Info 535 [16:12:40.000] Elapsed:: *ms DirectoryWatcher:: Triggered with /user/username/rootfolder/otherfolder/a/b/node_modules/rxjs/operator :: WatchInfo: /user/username/rootfolder/otherfolder/a/b 1 undefined Config: /user/username/rootfolder/otherfolder/a/b/tsconfig.json WatchType: Wild card directory -Info 536 [16:12:45.000] DirectoryWatcher:: Triggered with /user/username/rootfolder/otherfolder/a/b/node_modules/rxjs/src :: WatchInfo: /user/username/rootfolder/otherfolder/a/b/node_modules 1 undefined Project: /user/username/rootfolder/otherfolder/a/b/tsconfig.json WatchType: Failed Lookup Locations -Info 537 [16:12:46.000] Elapsed:: *ms DirectoryWatcher:: Triggered with /user/username/rootfolder/otherfolder/a/b/node_modules/rxjs/src :: WatchInfo: /user/username/rootfolder/otherfolder/a/b/node_modules 1 undefined Project: /user/username/rootfolder/otherfolder/a/b/tsconfig.json WatchType: Failed Lookup Locations -Info 538 [16:12:47.000] DirectoryWatcher:: Triggered with /user/username/rootfolder/otherfolder/a/b/node_modules/rxjs/src :: WatchInfo: /user/username/rootfolder/otherfolder/a/b 1 undefined Config: /user/username/rootfolder/otherfolder/a/b/tsconfig.json WatchType: Wild card directory -Info 539 [16:12:48.000] Scheduled: /user/username/rootfolder/otherfolder/a/b/tsconfig.json, Cancelled earlier one -Info 540 [16:12:49.000] Scheduled: *ensureProjectForOpenFiles*, Cancelled earlier one -Info 541 [16:12:50.000] Elapsed:: *ms DirectoryWatcher:: Triggered with /user/username/rootfolder/otherfolder/a/b/node_modules/rxjs/src :: WatchInfo: /user/username/rootfolder/otherfolder/a/b 1 undefined Config: /user/username/rootfolder/otherfolder/a/b/tsconfig.json WatchType: Wild card directory -Info 542 [16:12:52.000] DirectoryWatcher:: Triggered with /user/username/rootfolder/otherfolder/a/b/node_modules/rxjs/src/add :: WatchInfo: /user/username/rootfolder/otherfolder/a/b/node_modules 1 undefined Project: /user/username/rootfolder/otherfolder/a/b/tsconfig.json WatchType: Failed Lookup Locations -Info 543 [16:12:53.000] Elapsed:: *ms DirectoryWatcher:: Triggered with /user/username/rootfolder/otherfolder/a/b/node_modules/rxjs/src/add :: WatchInfo: /user/username/rootfolder/otherfolder/a/b/node_modules 1 undefined Project: /user/username/rootfolder/otherfolder/a/b/tsconfig.json WatchType: Failed Lookup Locations -Info 544 [16:12:54.000] DirectoryWatcher:: Triggered with /user/username/rootfolder/otherfolder/a/b/node_modules/rxjs/src/add :: WatchInfo: /user/username/rootfolder/otherfolder/a/b 1 undefined Config: /user/username/rootfolder/otherfolder/a/b/tsconfig.json WatchType: Wild card directory -Info 545 [16:12:55.000] Scheduled: /user/username/rootfolder/otherfolder/a/b/tsconfig.json, Cancelled earlier one -Info 546 [16:12:56.000] Scheduled: *ensureProjectForOpenFiles*, Cancelled earlier one -Info 547 [16:12:57.000] Elapsed:: *ms DirectoryWatcher:: Triggered with /user/username/rootfolder/otherfolder/a/b/node_modules/rxjs/src/add :: WatchInfo: /user/username/rootfolder/otherfolder/a/b 1 undefined Config: /user/username/rootfolder/otherfolder/a/b/tsconfig.json WatchType: Wild card directory -Info 548 [16:12:59.000] DirectoryWatcher:: Triggered with /user/username/rootfolder/otherfolder/a/b/node_modules/rxjs/src/add/observable :: WatchInfo: /user/username/rootfolder/otherfolder/a/b/node_modules 1 undefined Project: /user/username/rootfolder/otherfolder/a/b/tsconfig.json WatchType: Failed Lookup Locations -Info 549 [16:13:00.000] Elapsed:: *ms DirectoryWatcher:: Triggered with /user/username/rootfolder/otherfolder/a/b/node_modules/rxjs/src/add/observable :: WatchInfo: /user/username/rootfolder/otherfolder/a/b/node_modules 1 undefined Project: /user/username/rootfolder/otherfolder/a/b/tsconfig.json WatchType: Failed Lookup Locations -Info 550 [16:13:01.000] DirectoryWatcher:: Triggered with /user/username/rootfolder/otherfolder/a/b/node_modules/rxjs/src/add/observable :: WatchInfo: /user/username/rootfolder/otherfolder/a/b 1 undefined Config: /user/username/rootfolder/otherfolder/a/b/tsconfig.json WatchType: Wild card directory -Info 551 [16:13:02.000] Scheduled: /user/username/rootfolder/otherfolder/a/b/tsconfig.json, Cancelled earlier one -Info 552 [16:13:03.000] Scheduled: *ensureProjectForOpenFiles*, Cancelled earlier one -Info 553 [16:13:04.000] Elapsed:: *ms DirectoryWatcher:: Triggered with /user/username/rootfolder/otherfolder/a/b/node_modules/rxjs/src/add/observable :: WatchInfo: /user/username/rootfolder/otherfolder/a/b 1 undefined Config: /user/username/rootfolder/otherfolder/a/b/tsconfig.json WatchType: Wild card directory -Info 554 [16:13:07.000] DirectoryWatcher:: Triggered with /user/username/rootfolder/otherfolder/a/b/node_modules/rxjs/src/add/observable/dom :: WatchInfo: /user/username/rootfolder/otherfolder/a/b/node_modules 1 undefined Project: /user/username/rootfolder/otherfolder/a/b/tsconfig.json WatchType: Failed Lookup Locations -Info 555 [16:13:08.000] Elapsed:: *ms DirectoryWatcher:: Triggered with /user/username/rootfolder/otherfolder/a/b/node_modules/rxjs/src/add/observable/dom :: WatchInfo: /user/username/rootfolder/otherfolder/a/b/node_modules 1 undefined Project: /user/username/rootfolder/otherfolder/a/b/tsconfig.json WatchType: Failed Lookup Locations -Info 556 [16:13:09.000] DirectoryWatcher:: Triggered with /user/username/rootfolder/otherfolder/a/b/node_modules/rxjs/src/add/observable/dom :: WatchInfo: /user/username/rootfolder/otherfolder/a/b 1 undefined Config: /user/username/rootfolder/otherfolder/a/b/tsconfig.json WatchType: Wild card directory -Info 557 [16:13:10.000] Scheduled: /user/username/rootfolder/otherfolder/a/b/tsconfig.json, Cancelled earlier one -Info 558 [16:13:11.000] Scheduled: *ensureProjectForOpenFiles*, Cancelled earlier one -Info 559 [16:13:12.000] Elapsed:: *ms DirectoryWatcher:: Triggered with /user/username/rootfolder/otherfolder/a/b/node_modules/rxjs/src/add/observable/dom :: WatchInfo: /user/username/rootfolder/otherfolder/a/b 1 undefined Config: /user/username/rootfolder/otherfolder/a/b/tsconfig.json WatchType: Wild card directory -Info 560 [16:13:15.000] DirectoryWatcher:: Triggered with /user/username/rootfolder/otherfolder/a/b/node_modules/@types/lodash/index.d.ts :: WatchInfo: /user/username/rootfolder/otherfolder/a/b/node_modules/@types 1 undefined Project: /user/username/rootfolder/otherfolder/a/b/tsconfig.json WatchType: Type roots -Info 561 [16:13:16.000] Scheduled: /user/username/rootfolder/otherfolder/a/b/tsconfig.json, Cancelled earlier one -Info 562 [16:13:17.000] Scheduled: *ensureProjectForOpenFiles*, Cancelled earlier one -Info 563 [16:13:18.000] Scheduled: /user/username/rootfolder/otherfolder/a/b/tsconfig.jsonFailedLookupInvalidation, Cancelled earlier one -Info 564 [16:13:19.000] Elapsed:: *ms DirectoryWatcher:: Triggered with /user/username/rootfolder/otherfolder/a/b/node_modules/@types/lodash/index.d.ts :: WatchInfo: /user/username/rootfolder/otherfolder/a/b/node_modules/@types 1 undefined Project: /user/username/rootfolder/otherfolder/a/b/tsconfig.json WatchType: Type roots -Info 565 [16:13:20.000] DirectoryWatcher:: Triggered with /user/username/rootfolder/otherfolder/a/b/node_modules/@types/lodash/index.d.ts :: WatchInfo: /user/username/rootfolder/otherfolder/a/b/node_modules 1 undefined Project: /user/username/rootfolder/otherfolder/a/b/tsconfig.json WatchType: Failed Lookup Locations -Info 566 [16:13:21.000] Scheduled: /user/username/rootfolder/otherfolder/a/b/tsconfig.jsonFailedLookupInvalidation, Cancelled earlier one -Info 567 [16:13:22.000] Elapsed:: *ms DirectoryWatcher:: Triggered with /user/username/rootfolder/otherfolder/a/b/node_modules/@types/lodash/index.d.ts :: WatchInfo: /user/username/rootfolder/otherfolder/a/b/node_modules 1 undefined Project: /user/username/rootfolder/otherfolder/a/b/tsconfig.json WatchType: Failed Lookup Locations -Info 568 [16:13:23.000] DirectoryWatcher:: Triggered with /user/username/rootfolder/otherfolder/a/b/node_modules/@types/lodash/index.d.ts :: WatchInfo: /user/username/rootfolder/otherfolder/a/b 1 undefined Config: /user/username/rootfolder/otherfolder/a/b/tsconfig.json WatchType: Wild card directory -Info 569 [16:13:24.000] Scheduled: /user/username/rootfolder/otherfolder/a/b/tsconfig.json, Cancelled earlier one -Info 570 [16:13:25.000] Scheduled: *ensureProjectForOpenFiles*, Cancelled earlier one -Info 571 [16:13:26.000] Elapsed:: *ms DirectoryWatcher:: Triggered with /user/username/rootfolder/otherfolder/a/b/node_modules/@types/lodash/index.d.ts :: WatchInfo: /user/username/rootfolder/otherfolder/a/b 1 undefined Config: /user/username/rootfolder/otherfolder/a/b/tsconfig.json WatchType: Wild card directory -Info 572 [16:13:29.000] DirectoryWatcher:: Triggered with /user/username/rootfolder/otherfolder/a/b/node_modules/rxjs/src/scheduler :: WatchInfo: /user/username/rootfolder/otherfolder/a/b/node_modules 1 undefined Project: /user/username/rootfolder/otherfolder/a/b/tsconfig.json WatchType: Failed Lookup Locations -Info 573 [16:13:30.000] Elapsed:: *ms DirectoryWatcher:: Triggered with /user/username/rootfolder/otherfolder/a/b/node_modules/rxjs/src/scheduler :: WatchInfo: /user/username/rootfolder/otherfolder/a/b/node_modules 1 undefined Project: /user/username/rootfolder/otherfolder/a/b/tsconfig.json WatchType: Failed Lookup Locations -Info 574 [16:13:31.000] DirectoryWatcher:: Triggered with /user/username/rootfolder/otherfolder/a/b/node_modules/rxjs/src/scheduler :: WatchInfo: /user/username/rootfolder/otherfolder/a/b 1 undefined Config: /user/username/rootfolder/otherfolder/a/b/tsconfig.json WatchType: Wild card directory -Info 575 [16:13:32.000] Scheduled: /user/username/rootfolder/otherfolder/a/b/tsconfig.json, Cancelled earlier one -Info 576 [16:13:33.000] Scheduled: *ensureProjectForOpenFiles*, Cancelled earlier one -Info 577 [16:13:34.000] Elapsed:: *ms DirectoryWatcher:: Triggered with /user/username/rootfolder/otherfolder/a/b/node_modules/rxjs/src/scheduler :: WatchInfo: /user/username/rootfolder/otherfolder/a/b 1 undefined Config: /user/username/rootfolder/otherfolder/a/b/tsconfig.json WatchType: Wild card directory -Info 578 [16:13:37.000] DirectoryWatcher:: Triggered with /user/username/rootfolder/otherfolder/a/b/node_modules/rxjs/src/util :: WatchInfo: /user/username/rootfolder/otherfolder/a/b/node_modules 1 undefined Project: /user/username/rootfolder/otherfolder/a/b/tsconfig.json WatchType: Failed Lookup Locations -Info 579 [16:13:38.000] Elapsed:: *ms DirectoryWatcher:: Triggered with /user/username/rootfolder/otherfolder/a/b/node_modules/rxjs/src/util :: WatchInfo: /user/username/rootfolder/otherfolder/a/b/node_modules 1 undefined Project: /user/username/rootfolder/otherfolder/a/b/tsconfig.json WatchType: Failed Lookup Locations -Info 580 [16:13:39.000] DirectoryWatcher:: Triggered with /user/username/rootfolder/otherfolder/a/b/node_modules/rxjs/src/util :: WatchInfo: /user/username/rootfolder/otherfolder/a/b 1 undefined Config: /user/username/rootfolder/otherfolder/a/b/tsconfig.json WatchType: Wild card directory -Info 581 [16:13:40.000] Scheduled: /user/username/rootfolder/otherfolder/a/b/tsconfig.json, Cancelled earlier one -Info 582 [16:13:41.000] Scheduled: *ensureProjectForOpenFiles*, Cancelled earlier one -Info 583 [16:13:42.000] Elapsed:: *ms DirectoryWatcher:: Triggered with /user/username/rootfolder/otherfolder/a/b/node_modules/rxjs/src/util :: WatchInfo: /user/username/rootfolder/otherfolder/a/b 1 undefined Config: /user/username/rootfolder/otherfolder/a/b/tsconfig.json WatchType: Wild card directory -Info 584 [16:13:45.000] DirectoryWatcher:: Triggered with /user/username/rootfolder/otherfolder/a/b/node_modules/rxjs/symbol :: WatchInfo: /user/username/rootfolder/otherfolder/a/b/node_modules 1 undefined Project: /user/username/rootfolder/otherfolder/a/b/tsconfig.json WatchType: Failed Lookup Locations -Info 585 [16:13:46.000] Elapsed:: *ms DirectoryWatcher:: Triggered with /user/username/rootfolder/otherfolder/a/b/node_modules/rxjs/symbol :: WatchInfo: /user/username/rootfolder/otherfolder/a/b/node_modules 1 undefined Project: /user/username/rootfolder/otherfolder/a/b/tsconfig.json WatchType: Failed Lookup Locations -Info 586 [16:13:47.000] DirectoryWatcher:: Triggered with /user/username/rootfolder/otherfolder/a/b/node_modules/rxjs/symbol :: WatchInfo: /user/username/rootfolder/otherfolder/a/b 1 undefined Config: /user/username/rootfolder/otherfolder/a/b/tsconfig.json WatchType: Wild card directory -Info 587 [16:13:48.000] Scheduled: /user/username/rootfolder/otherfolder/a/b/tsconfig.json, Cancelled earlier one -Info 588 [16:13:49.000] Scheduled: *ensureProjectForOpenFiles*, Cancelled earlier one -Info 589 [16:13:50.000] Elapsed:: *ms DirectoryWatcher:: Triggered with /user/username/rootfolder/otherfolder/a/b/node_modules/rxjs/symbol :: WatchInfo: /user/username/rootfolder/otherfolder/a/b 1 undefined Config: /user/username/rootfolder/otherfolder/a/b/tsconfig.json WatchType: Wild card directory -Info 590 [16:13:53.000] DirectoryWatcher:: Triggered with /user/username/rootfolder/otherfolder/a/b/node_modules/rxjs/testing :: WatchInfo: /user/username/rootfolder/otherfolder/a/b/node_modules 1 undefined Project: /user/username/rootfolder/otherfolder/a/b/tsconfig.json WatchType: Failed Lookup Locations -Info 591 [16:13:54.000] Elapsed:: *ms DirectoryWatcher:: Triggered with /user/username/rootfolder/otherfolder/a/b/node_modules/rxjs/testing :: WatchInfo: /user/username/rootfolder/otherfolder/a/b/node_modules 1 undefined Project: /user/username/rootfolder/otherfolder/a/b/tsconfig.json WatchType: Failed Lookup Locations -Info 592 [16:13:55.000] DirectoryWatcher:: Triggered with /user/username/rootfolder/otherfolder/a/b/node_modules/rxjs/testing :: WatchInfo: /user/username/rootfolder/otherfolder/a/b 1 undefined Config: /user/username/rootfolder/otherfolder/a/b/tsconfig.json WatchType: Wild card directory -Info 593 [16:13:56.000] Scheduled: /user/username/rootfolder/otherfolder/a/b/tsconfig.json, Cancelled earlier one -Info 594 [16:13:57.000] Scheduled: *ensureProjectForOpenFiles*, Cancelled earlier one -Info 595 [16:13:58.000] Elapsed:: *ms DirectoryWatcher:: Triggered with /user/username/rootfolder/otherfolder/a/b/node_modules/rxjs/testing :: WatchInfo: /user/username/rootfolder/otherfolder/a/b 1 undefined Config: /user/username/rootfolder/otherfolder/a/b/tsconfig.json WatchType: Wild card directory +Info 276 [00:07:19.000] DirectoryWatcher:: Triggered with /user/username/rootfolder/otherfolder/a/b/node_modules/.staging/@types/lodash-e56c4fe7/index.d.ts :: WatchInfo: /user/username/rootfolder/otherfolder/a/b/node_modules 1 undefined Project: /user/username/rootfolder/otherfolder/a/b/tsconfig.json WatchType: Failed Lookup Locations +Info 277 [00:07:20.000] Elapsed:: *ms DirectoryWatcher:: Triggered with /user/username/rootfolder/otherfolder/a/b/node_modules/.staging/@types/lodash-e56c4fe7/index.d.ts :: WatchInfo: /user/username/rootfolder/otherfolder/a/b/node_modules 1 undefined Project: /user/username/rootfolder/otherfolder/a/b/tsconfig.json WatchType: Failed Lookup Locations +Info 278 [00:07:21.000] DirectoryWatcher:: Triggered with /user/username/rootfolder/otherfolder/a/b/node_modules/.staging/@types/lodash-e56c4fe7/index.d.ts :: WatchInfo: /user/username/rootfolder/otherfolder/a/b 1 undefined Config: /user/username/rootfolder/otherfolder/a/b/tsconfig.json WatchType: Wild card directory +Info 279 [00:07:22.000] Project: /user/username/rootfolder/otherfolder/a/b/tsconfig.json Detected ignored path: /user/username/rootfolder/otherfolder/a/b/node_modules/.staging/@types/lodash-e56c4fe7/index.d.ts +Info 280 [00:07:23.000] Elapsed:: *ms DirectoryWatcher:: Triggered with /user/username/rootfolder/otherfolder/a/b/node_modules/.staging/@types/lodash-e56c4fe7/index.d.ts :: WatchInfo: /user/username/rootfolder/otherfolder/a/b 1 undefined Config: /user/username/rootfolder/otherfolder/a/b/tsconfig.json WatchType: Wild card directory +Info 281 [00:07:25.000] DirectoryWatcher:: Triggered with /user/username/rootfolder/otherfolder/a/b/node_modules/.staging/@types/lodash-e56c4fe7/package.json :: WatchInfo: /user/username/rootfolder/otherfolder/a/b/node_modules 1 undefined Project: /user/username/rootfolder/otherfolder/a/b/tsconfig.json WatchType: Failed Lookup Locations +Info 282 [00:07:26.000] Elapsed:: *ms DirectoryWatcher:: Triggered with /user/username/rootfolder/otherfolder/a/b/node_modules/.staging/@types/lodash-e56c4fe7/package.json :: WatchInfo: /user/username/rootfolder/otherfolder/a/b/node_modules 1 undefined Project: /user/username/rootfolder/otherfolder/a/b/tsconfig.json WatchType: Failed Lookup Locations +Info 283 [00:07:27.000] DirectoryWatcher:: Triggered with /user/username/rootfolder/otherfolder/a/b/node_modules/.staging/@types/lodash-e56c4fe7/package.json :: WatchInfo: /user/username/rootfolder/otherfolder/a/b 1 undefined Config: /user/username/rootfolder/otherfolder/a/b/tsconfig.json WatchType: Wild card directory +Info 284 [00:07:28.000] Project: /user/username/rootfolder/otherfolder/a/b/tsconfig.json Detected ignored path: /user/username/rootfolder/otherfolder/a/b/node_modules/.staging/@types/lodash-e56c4fe7/package.json +Info 285 [00:07:29.000] Elapsed:: *ms DirectoryWatcher:: Triggered with /user/username/rootfolder/otherfolder/a/b/node_modules/.staging/@types/lodash-e56c4fe7/package.json :: WatchInfo: /user/username/rootfolder/otherfolder/a/b 1 undefined Config: /user/username/rootfolder/otherfolder/a/b/tsconfig.json WatchType: Wild card directory +Info 286 [00:07:31.000] DirectoryWatcher:: Triggered with /user/username/rootfolder/otherfolder/a/b/node_modules/.staging/@types/lodash-e56c4fe7 :: WatchInfo: /user/username/rootfolder/otherfolder/a/b/node_modules 1 undefined Project: /user/username/rootfolder/otherfolder/a/b/tsconfig.json WatchType: Failed Lookup Locations +Info 287 [00:07:32.000] Elapsed:: *ms DirectoryWatcher:: Triggered with /user/username/rootfolder/otherfolder/a/b/node_modules/.staging/@types/lodash-e56c4fe7 :: WatchInfo: /user/username/rootfolder/otherfolder/a/b/node_modules 1 undefined Project: /user/username/rootfolder/otherfolder/a/b/tsconfig.json WatchType: Failed Lookup Locations +Info 288 [00:07:33.000] DirectoryWatcher:: Triggered with /user/username/rootfolder/otherfolder/a/b/node_modules/.staging/@types/lodash-e56c4fe7 :: WatchInfo: /user/username/rootfolder/otherfolder/a/b 1 undefined Config: /user/username/rootfolder/otherfolder/a/b/tsconfig.json WatchType: Wild card directory +Info 289 [00:07:34.000] Project: /user/username/rootfolder/otherfolder/a/b/tsconfig.json Detected ignored path: /user/username/rootfolder/otherfolder/a/b/node_modules/.staging/@types/lodash-e56c4fe7 +Info 290 [00:07:35.000] Elapsed:: *ms DirectoryWatcher:: Triggered with /user/username/rootfolder/otherfolder/a/b/node_modules/.staging/@types/lodash-e56c4fe7 :: WatchInfo: /user/username/rootfolder/otherfolder/a/b 1 undefined Config: /user/username/rootfolder/otherfolder/a/b/tsconfig.json WatchType: Wild card directory +Info 291 [00:07:37.000] DirectoryWatcher:: Triggered with /user/username/rootfolder/otherfolder/a/b/node_modules/.staging/@types :: WatchInfo: /user/username/rootfolder/otherfolder/a/b/node_modules 1 undefined Project: /user/username/rootfolder/otherfolder/a/b/tsconfig.json WatchType: Failed Lookup Locations +Info 292 [00:07:38.000] Elapsed:: *ms DirectoryWatcher:: Triggered with /user/username/rootfolder/otherfolder/a/b/node_modules/.staging/@types :: WatchInfo: /user/username/rootfolder/otherfolder/a/b/node_modules 1 undefined Project: /user/username/rootfolder/otherfolder/a/b/tsconfig.json WatchType: Failed Lookup Locations +Info 293 [00:07:39.000] DirectoryWatcher:: Triggered with /user/username/rootfolder/otherfolder/a/b/node_modules/.staging/@types :: WatchInfo: /user/username/rootfolder/otherfolder/a/b 1 undefined Config: /user/username/rootfolder/otherfolder/a/b/tsconfig.json WatchType: Wild card directory +Info 294 [00:07:40.000] Project: /user/username/rootfolder/otherfolder/a/b/tsconfig.json Detected ignored path: /user/username/rootfolder/otherfolder/a/b/node_modules/.staging/@types +Info 295 [00:07:41.000] Elapsed:: *ms DirectoryWatcher:: Triggered with /user/username/rootfolder/otherfolder/a/b/node_modules/.staging/@types :: WatchInfo: /user/username/rootfolder/otherfolder/a/b 1 undefined Config: /user/username/rootfolder/otherfolder/a/b/tsconfig.json WatchType: Wild card directory +Info 296 [00:07:43.000] DirectoryWatcher:: Triggered with /user/username/rootfolder/otherfolder/a/b/node_modules/.staging/lodash-b0733faa/index.js :: WatchInfo: /user/username/rootfolder/otherfolder/a/b/node_modules 1 undefined Project: /user/username/rootfolder/otherfolder/a/b/tsconfig.json WatchType: Failed Lookup Locations +Info 297 [00:07:44.000] Elapsed:: *ms DirectoryWatcher:: Triggered with /user/username/rootfolder/otherfolder/a/b/node_modules/.staging/lodash-b0733faa/index.js :: WatchInfo: /user/username/rootfolder/otherfolder/a/b/node_modules 1 undefined Project: /user/username/rootfolder/otherfolder/a/b/tsconfig.json WatchType: Failed Lookup Locations +Info 298 [00:07:45.000] DirectoryWatcher:: Triggered with /user/username/rootfolder/otherfolder/a/b/node_modules/.staging/lodash-b0733faa/index.js :: WatchInfo: /user/username/rootfolder/otherfolder/a/b 1 undefined Config: /user/username/rootfolder/otherfolder/a/b/tsconfig.json WatchType: Wild card directory +Info 299 [00:07:46.000] Project: /user/username/rootfolder/otherfolder/a/b/tsconfig.json Detected ignored path: /user/username/rootfolder/otherfolder/a/b/node_modules/.staging/lodash-b0733faa/index.js +Info 300 [00:07:47.000] Elapsed:: *ms DirectoryWatcher:: Triggered with /user/username/rootfolder/otherfolder/a/b/node_modules/.staging/lodash-b0733faa/index.js :: WatchInfo: /user/username/rootfolder/otherfolder/a/b 1 undefined Config: /user/username/rootfolder/otherfolder/a/b/tsconfig.json WatchType: Wild card directory +Info 301 [00:07:49.000] DirectoryWatcher:: Triggered with /user/username/rootfolder/otherfolder/a/b/node_modules/.staging/lodash-b0733faa/package.json :: WatchInfo: /user/username/rootfolder/otherfolder/a/b/node_modules 1 undefined Project: /user/username/rootfolder/otherfolder/a/b/tsconfig.json WatchType: Failed Lookup Locations +Info 302 [00:07:50.000] Elapsed:: *ms DirectoryWatcher:: Triggered with /user/username/rootfolder/otherfolder/a/b/node_modules/.staging/lodash-b0733faa/package.json :: WatchInfo: /user/username/rootfolder/otherfolder/a/b/node_modules 1 undefined Project: /user/username/rootfolder/otherfolder/a/b/tsconfig.json WatchType: Failed Lookup Locations +Info 303 [00:07:51.000] DirectoryWatcher:: Triggered with /user/username/rootfolder/otherfolder/a/b/node_modules/.staging/lodash-b0733faa/package.json :: WatchInfo: /user/username/rootfolder/otherfolder/a/b 1 undefined Config: /user/username/rootfolder/otherfolder/a/b/tsconfig.json WatchType: Wild card directory +Info 304 [00:07:52.000] Project: /user/username/rootfolder/otherfolder/a/b/tsconfig.json Detected ignored path: /user/username/rootfolder/otherfolder/a/b/node_modules/.staging/lodash-b0733faa/package.json +Info 305 [00:07:53.000] Elapsed:: *ms DirectoryWatcher:: Triggered with /user/username/rootfolder/otherfolder/a/b/node_modules/.staging/lodash-b0733faa/package.json :: WatchInfo: /user/username/rootfolder/otherfolder/a/b 1 undefined Config: /user/username/rootfolder/otherfolder/a/b/tsconfig.json WatchType: Wild card directory +Info 306 [00:07:55.000] DirectoryWatcher:: Triggered with /user/username/rootfolder/otherfolder/a/b/node_modules/.staging/lodash-b0733faa :: WatchInfo: /user/username/rootfolder/otherfolder/a/b/node_modules 1 undefined Project: /user/username/rootfolder/otherfolder/a/b/tsconfig.json WatchType: Failed Lookup Locations +Info 307 [00:07:56.000] Elapsed:: *ms DirectoryWatcher:: Triggered with /user/username/rootfolder/otherfolder/a/b/node_modules/.staging/lodash-b0733faa :: WatchInfo: /user/username/rootfolder/otherfolder/a/b/node_modules 1 undefined Project: /user/username/rootfolder/otherfolder/a/b/tsconfig.json WatchType: Failed Lookup Locations +Info 308 [00:07:57.000] DirectoryWatcher:: Triggered with /user/username/rootfolder/otherfolder/a/b/node_modules/.staging/lodash-b0733faa :: WatchInfo: /user/username/rootfolder/otherfolder/a/b 1 undefined Config: /user/username/rootfolder/otherfolder/a/b/tsconfig.json WatchType: Wild card directory +Info 309 [00:07:58.000] Project: /user/username/rootfolder/otherfolder/a/b/tsconfig.json Detected ignored path: /user/username/rootfolder/otherfolder/a/b/node_modules/.staging/lodash-b0733faa +Info 310 [00:07:59.000] Elapsed:: *ms DirectoryWatcher:: Triggered with /user/username/rootfolder/otherfolder/a/b/node_modules/.staging/lodash-b0733faa :: WatchInfo: /user/username/rootfolder/otherfolder/a/b 1 undefined Config: /user/username/rootfolder/otherfolder/a/b/tsconfig.json WatchType: Wild card directory +Info 311 [00:08:01.000] DirectoryWatcher:: Triggered with /user/username/rootfolder/otherfolder/a/b/node_modules/.staging/rxjs-22375c61/add/operator :: WatchInfo: /user/username/rootfolder/otherfolder/a/b/node_modules 1 undefined Project: /user/username/rootfolder/otherfolder/a/b/tsconfig.json WatchType: Failed Lookup Locations +Info 312 [00:08:02.000] Elapsed:: *ms DirectoryWatcher:: Triggered with /user/username/rootfolder/otherfolder/a/b/node_modules/.staging/rxjs-22375c61/add/operator :: WatchInfo: /user/username/rootfolder/otherfolder/a/b/node_modules 1 undefined Project: /user/username/rootfolder/otherfolder/a/b/tsconfig.json WatchType: Failed Lookup Locations +Info 313 [00:08:03.000] DirectoryWatcher:: Triggered with /user/username/rootfolder/otherfolder/a/b/node_modules/.staging/rxjs-22375c61/add/operator :: WatchInfo: /user/username/rootfolder/otherfolder/a/b 1 undefined Config: /user/username/rootfolder/otherfolder/a/b/tsconfig.json WatchType: Wild card directory +Info 314 [00:08:04.000] Project: /user/username/rootfolder/otherfolder/a/b/tsconfig.json Detected ignored path: /user/username/rootfolder/otherfolder/a/b/node_modules/.staging/rxjs-22375c61/add/operator +Info 315 [00:08:05.000] Elapsed:: *ms DirectoryWatcher:: Triggered with /user/username/rootfolder/otherfolder/a/b/node_modules/.staging/rxjs-22375c61/add/operator :: WatchInfo: /user/username/rootfolder/otherfolder/a/b 1 undefined Config: /user/username/rootfolder/otherfolder/a/b/tsconfig.json WatchType: Wild card directory +Info 316 [00:08:07.000] DirectoryWatcher:: Triggered with /user/username/rootfolder/otherfolder/a/b/node_modules/.staging/rxjs-22375c61/add :: WatchInfo: /user/username/rootfolder/otherfolder/a/b/node_modules 1 undefined Project: /user/username/rootfolder/otherfolder/a/b/tsconfig.json WatchType: Failed Lookup Locations +Info 317 [00:08:08.000] Elapsed:: *ms DirectoryWatcher:: Triggered with /user/username/rootfolder/otherfolder/a/b/node_modules/.staging/rxjs-22375c61/add :: WatchInfo: /user/username/rootfolder/otherfolder/a/b/node_modules 1 undefined Project: /user/username/rootfolder/otherfolder/a/b/tsconfig.json WatchType: Failed Lookup Locations +Info 318 [00:08:09.000] DirectoryWatcher:: Triggered with /user/username/rootfolder/otherfolder/a/b/node_modules/.staging/rxjs-22375c61/add :: WatchInfo: /user/username/rootfolder/otherfolder/a/b 1 undefined Config: /user/username/rootfolder/otherfolder/a/b/tsconfig.json WatchType: Wild card directory +Info 319 [00:08:10.000] Project: /user/username/rootfolder/otherfolder/a/b/tsconfig.json Detected ignored path: /user/username/rootfolder/otherfolder/a/b/node_modules/.staging/rxjs-22375c61/add +Info 320 [00:08:11.000] Elapsed:: *ms DirectoryWatcher:: Triggered with /user/username/rootfolder/otherfolder/a/b/node_modules/.staging/rxjs-22375c61/add :: WatchInfo: /user/username/rootfolder/otherfolder/a/b 1 undefined Config: /user/username/rootfolder/otherfolder/a/b/tsconfig.json WatchType: Wild card directory +Info 321 [00:08:13.000] DirectoryWatcher:: Triggered with /user/username/rootfolder/otherfolder/a/b/node_modules/.staging/rxjs-22375c61/bundles :: WatchInfo: /user/username/rootfolder/otherfolder/a/b/node_modules 1 undefined Project: /user/username/rootfolder/otherfolder/a/b/tsconfig.json WatchType: Failed Lookup Locations +Info 322 [00:08:14.000] Elapsed:: *ms DirectoryWatcher:: Triggered with /user/username/rootfolder/otherfolder/a/b/node_modules/.staging/rxjs-22375c61/bundles :: WatchInfo: /user/username/rootfolder/otherfolder/a/b/node_modules 1 undefined Project: /user/username/rootfolder/otherfolder/a/b/tsconfig.json WatchType: Failed Lookup Locations +Info 323 [00:08:15.000] DirectoryWatcher:: Triggered with /user/username/rootfolder/otherfolder/a/b/node_modules/.staging/rxjs-22375c61/bundles :: WatchInfo: /user/username/rootfolder/otherfolder/a/b 1 undefined Config: /user/username/rootfolder/otherfolder/a/b/tsconfig.json WatchType: Wild card directory +Info 324 [00:08:16.000] Project: /user/username/rootfolder/otherfolder/a/b/tsconfig.json Detected ignored path: /user/username/rootfolder/otherfolder/a/b/node_modules/.staging/rxjs-22375c61/bundles +Info 325 [00:08:17.000] Elapsed:: *ms DirectoryWatcher:: Triggered with /user/username/rootfolder/otherfolder/a/b/node_modules/.staging/rxjs-22375c61/bundles :: WatchInfo: /user/username/rootfolder/otherfolder/a/b 1 undefined Config: /user/username/rootfolder/otherfolder/a/b/tsconfig.json WatchType: Wild card directory +Info 326 [00:08:19.000] DirectoryWatcher:: Triggered with /user/username/rootfolder/otherfolder/a/b/node_modules/.staging/rxjs-22375c61/operator :: WatchInfo: /user/username/rootfolder/otherfolder/a/b/node_modules 1 undefined Project: /user/username/rootfolder/otherfolder/a/b/tsconfig.json WatchType: Failed Lookup Locations +Info 327 [00:08:20.000] Elapsed:: *ms DirectoryWatcher:: Triggered with /user/username/rootfolder/otherfolder/a/b/node_modules/.staging/rxjs-22375c61/operator :: WatchInfo: /user/username/rootfolder/otherfolder/a/b/node_modules 1 undefined Project: /user/username/rootfolder/otherfolder/a/b/tsconfig.json WatchType: Failed Lookup Locations +Info 328 [00:08:21.000] DirectoryWatcher:: Triggered with /user/username/rootfolder/otherfolder/a/b/node_modules/.staging/rxjs-22375c61/operator :: WatchInfo: /user/username/rootfolder/otherfolder/a/b 1 undefined Config: /user/username/rootfolder/otherfolder/a/b/tsconfig.json WatchType: Wild card directory +Info 329 [00:08:22.000] Project: /user/username/rootfolder/otherfolder/a/b/tsconfig.json Detected ignored path: /user/username/rootfolder/otherfolder/a/b/node_modules/.staging/rxjs-22375c61/operator +Info 330 [00:08:23.000] Elapsed:: *ms DirectoryWatcher:: Triggered with /user/username/rootfolder/otherfolder/a/b/node_modules/.staging/rxjs-22375c61/operator :: WatchInfo: /user/username/rootfolder/otherfolder/a/b 1 undefined Config: /user/username/rootfolder/otherfolder/a/b/tsconfig.json WatchType: Wild card directory +Info 331 [00:08:25.000] DirectoryWatcher:: Triggered with /user/username/rootfolder/otherfolder/a/b/node_modules/.staging/rxjs-22375c61/package.json :: WatchInfo: /user/username/rootfolder/otherfolder/a/b/node_modules 1 undefined Project: /user/username/rootfolder/otherfolder/a/b/tsconfig.json WatchType: Failed Lookup Locations +Info 332 [00:08:26.000] Elapsed:: *ms DirectoryWatcher:: Triggered with /user/username/rootfolder/otherfolder/a/b/node_modules/.staging/rxjs-22375c61/package.json :: WatchInfo: /user/username/rootfolder/otherfolder/a/b/node_modules 1 undefined Project: /user/username/rootfolder/otherfolder/a/b/tsconfig.json WatchType: Failed Lookup Locations +Info 333 [00:08:27.000] DirectoryWatcher:: Triggered with /user/username/rootfolder/otherfolder/a/b/node_modules/.staging/rxjs-22375c61/package.json :: WatchInfo: /user/username/rootfolder/otherfolder/a/b 1 undefined Config: /user/username/rootfolder/otherfolder/a/b/tsconfig.json WatchType: Wild card directory +Info 334 [00:08:28.000] Project: /user/username/rootfolder/otherfolder/a/b/tsconfig.json Detected ignored path: /user/username/rootfolder/otherfolder/a/b/node_modules/.staging/rxjs-22375c61/package.json +Info 335 [00:08:29.000] Elapsed:: *ms DirectoryWatcher:: Triggered with /user/username/rootfolder/otherfolder/a/b/node_modules/.staging/rxjs-22375c61/package.json :: WatchInfo: /user/username/rootfolder/otherfolder/a/b 1 undefined Config: /user/username/rootfolder/otherfolder/a/b/tsconfig.json WatchType: Wild card directory +Info 336 [00:08:31.000] DirectoryWatcher:: Triggered with /user/username/rootfolder/otherfolder/a/b/node_modules/.staging/rxjs-22375c61/src/add/observable/dom :: WatchInfo: /user/username/rootfolder/otherfolder/a/b/node_modules 1 undefined Project: /user/username/rootfolder/otherfolder/a/b/tsconfig.json WatchType: Failed Lookup Locations +Info 337 [00:08:32.000] Elapsed:: *ms DirectoryWatcher:: Triggered with /user/username/rootfolder/otherfolder/a/b/node_modules/.staging/rxjs-22375c61/src/add/observable/dom :: WatchInfo: /user/username/rootfolder/otherfolder/a/b/node_modules 1 undefined Project: /user/username/rootfolder/otherfolder/a/b/tsconfig.json WatchType: Failed Lookup Locations +Info 338 [00:08:33.000] DirectoryWatcher:: Triggered with /user/username/rootfolder/otherfolder/a/b/node_modules/.staging/rxjs-22375c61/src/add/observable/dom :: WatchInfo: /user/username/rootfolder/otherfolder/a/b 1 undefined Config: /user/username/rootfolder/otherfolder/a/b/tsconfig.json WatchType: Wild card directory +Info 339 [00:08:34.000] Project: /user/username/rootfolder/otherfolder/a/b/tsconfig.json Detected ignored path: /user/username/rootfolder/otherfolder/a/b/node_modules/.staging/rxjs-22375c61/src/add/observable/dom +Info 340 [00:08:35.000] Elapsed:: *ms DirectoryWatcher:: Triggered with /user/username/rootfolder/otherfolder/a/b/node_modules/.staging/rxjs-22375c61/src/add/observable/dom :: WatchInfo: /user/username/rootfolder/otherfolder/a/b 1 undefined Config: /user/username/rootfolder/otherfolder/a/b/tsconfig.json WatchType: Wild card directory +Info 341 [00:08:37.000] DirectoryWatcher:: Triggered with /user/username/rootfolder/otherfolder/a/b/node_modules/.staging/rxjs-22375c61/src/add/observable :: WatchInfo: /user/username/rootfolder/otherfolder/a/b/node_modules 1 undefined Project: /user/username/rootfolder/otherfolder/a/b/tsconfig.json WatchType: Failed Lookup Locations +Info 342 [00:08:38.000] Elapsed:: *ms DirectoryWatcher:: Triggered with /user/username/rootfolder/otherfolder/a/b/node_modules/.staging/rxjs-22375c61/src/add/observable :: WatchInfo: /user/username/rootfolder/otherfolder/a/b/node_modules 1 undefined Project: /user/username/rootfolder/otherfolder/a/b/tsconfig.json WatchType: Failed Lookup Locations +Info 343 [00:08:39.000] DirectoryWatcher:: Triggered with /user/username/rootfolder/otherfolder/a/b/node_modules/.staging/rxjs-22375c61/src/add/observable :: WatchInfo: /user/username/rootfolder/otherfolder/a/b 1 undefined Config: /user/username/rootfolder/otherfolder/a/b/tsconfig.json WatchType: Wild card directory +Info 344 [00:08:40.000] Project: /user/username/rootfolder/otherfolder/a/b/tsconfig.json Detected ignored path: /user/username/rootfolder/otherfolder/a/b/node_modules/.staging/rxjs-22375c61/src/add/observable +Info 345 [00:08:41.000] Elapsed:: *ms DirectoryWatcher:: Triggered with /user/username/rootfolder/otherfolder/a/b/node_modules/.staging/rxjs-22375c61/src/add/observable :: WatchInfo: /user/username/rootfolder/otherfolder/a/b 1 undefined Config: /user/username/rootfolder/otherfolder/a/b/tsconfig.json WatchType: Wild card directory +Info 346 [00:08:43.000] DirectoryWatcher:: Triggered with /user/username/rootfolder/otherfolder/a/b/node_modules/.staging/rxjs-22375c61/src/add :: WatchInfo: /user/username/rootfolder/otherfolder/a/b/node_modules 1 undefined Project: /user/username/rootfolder/otherfolder/a/b/tsconfig.json WatchType: Failed Lookup Locations +Info 347 [00:08:44.000] Elapsed:: *ms DirectoryWatcher:: Triggered with /user/username/rootfolder/otherfolder/a/b/node_modules/.staging/rxjs-22375c61/src/add :: WatchInfo: /user/username/rootfolder/otherfolder/a/b/node_modules 1 undefined Project: /user/username/rootfolder/otherfolder/a/b/tsconfig.json WatchType: Failed Lookup Locations +Info 348 [00:08:45.000] DirectoryWatcher:: Triggered with /user/username/rootfolder/otherfolder/a/b/node_modules/.staging/rxjs-22375c61/src/add :: WatchInfo: /user/username/rootfolder/otherfolder/a/b 1 undefined Config: /user/username/rootfolder/otherfolder/a/b/tsconfig.json WatchType: Wild card directory +Info 349 [00:08:46.000] Project: /user/username/rootfolder/otherfolder/a/b/tsconfig.json Detected ignored path: /user/username/rootfolder/otherfolder/a/b/node_modules/.staging/rxjs-22375c61/src/add +Info 350 [00:08:47.000] Elapsed:: *ms DirectoryWatcher:: Triggered with /user/username/rootfolder/otherfolder/a/b/node_modules/.staging/rxjs-22375c61/src/add :: WatchInfo: /user/username/rootfolder/otherfolder/a/b 1 undefined Config: /user/username/rootfolder/otherfolder/a/b/tsconfig.json WatchType: Wild card directory +Info 351 [00:08:49.000] DirectoryWatcher:: Triggered with /user/username/rootfolder/otherfolder/a/b/node_modules/.staging/rxjs-22375c61/src/scheduler :: WatchInfo: /user/username/rootfolder/otherfolder/a/b/node_modules 1 undefined Project: /user/username/rootfolder/otherfolder/a/b/tsconfig.json WatchType: Failed Lookup Locations +Info 352 [00:08:50.000] Elapsed:: *ms DirectoryWatcher:: Triggered with /user/username/rootfolder/otherfolder/a/b/node_modules/.staging/rxjs-22375c61/src/scheduler :: WatchInfo: /user/username/rootfolder/otherfolder/a/b/node_modules 1 undefined Project: /user/username/rootfolder/otherfolder/a/b/tsconfig.json WatchType: Failed Lookup Locations +Info 353 [00:08:51.000] DirectoryWatcher:: Triggered with /user/username/rootfolder/otherfolder/a/b/node_modules/.staging/rxjs-22375c61/src/scheduler :: WatchInfo: /user/username/rootfolder/otherfolder/a/b 1 undefined Config: /user/username/rootfolder/otherfolder/a/b/tsconfig.json WatchType: Wild card directory +Info 354 [00:08:52.000] Project: /user/username/rootfolder/otherfolder/a/b/tsconfig.json Detected ignored path: /user/username/rootfolder/otherfolder/a/b/node_modules/.staging/rxjs-22375c61/src/scheduler +Info 355 [00:08:53.000] Elapsed:: *ms DirectoryWatcher:: Triggered with /user/username/rootfolder/otherfolder/a/b/node_modules/.staging/rxjs-22375c61/src/scheduler :: WatchInfo: /user/username/rootfolder/otherfolder/a/b 1 undefined Config: /user/username/rootfolder/otherfolder/a/b/tsconfig.json WatchType: Wild card directory +Info 356 [00:08:55.000] DirectoryWatcher:: Triggered with /user/username/rootfolder/otherfolder/a/b/node_modules/.staging/rxjs-22375c61/src/util :: WatchInfo: /user/username/rootfolder/otherfolder/a/b/node_modules 1 undefined Project: /user/username/rootfolder/otherfolder/a/b/tsconfig.json WatchType: Failed Lookup Locations +Info 357 [00:08:56.000] Elapsed:: *ms DirectoryWatcher:: Triggered with /user/username/rootfolder/otherfolder/a/b/node_modules/.staging/rxjs-22375c61/src/util :: WatchInfo: /user/username/rootfolder/otherfolder/a/b/node_modules 1 undefined Project: /user/username/rootfolder/otherfolder/a/b/tsconfig.json WatchType: Failed Lookup Locations +Info 358 [00:08:57.000] DirectoryWatcher:: Triggered with /user/username/rootfolder/otherfolder/a/b/node_modules/.staging/rxjs-22375c61/src/util :: WatchInfo: /user/username/rootfolder/otherfolder/a/b 1 undefined Config: /user/username/rootfolder/otherfolder/a/b/tsconfig.json WatchType: Wild card directory +Info 359 [00:08:58.000] Project: /user/username/rootfolder/otherfolder/a/b/tsconfig.json Detected ignored path: /user/username/rootfolder/otherfolder/a/b/node_modules/.staging/rxjs-22375c61/src/util +Info 360 [00:08:59.000] Elapsed:: *ms DirectoryWatcher:: Triggered with /user/username/rootfolder/otherfolder/a/b/node_modules/.staging/rxjs-22375c61/src/util :: WatchInfo: /user/username/rootfolder/otherfolder/a/b 1 undefined Config: /user/username/rootfolder/otherfolder/a/b/tsconfig.json WatchType: Wild card directory +Info 361 [00:09:01.000] DirectoryWatcher:: Triggered with /user/username/rootfolder/otherfolder/a/b/node_modules/.staging/rxjs-22375c61/src :: WatchInfo: /user/username/rootfolder/otherfolder/a/b/node_modules 1 undefined Project: /user/username/rootfolder/otherfolder/a/b/tsconfig.json WatchType: Failed Lookup Locations +Info 362 [00:09:02.000] Elapsed:: *ms DirectoryWatcher:: Triggered with /user/username/rootfolder/otherfolder/a/b/node_modules/.staging/rxjs-22375c61/src :: WatchInfo: /user/username/rootfolder/otherfolder/a/b/node_modules 1 undefined Project: /user/username/rootfolder/otherfolder/a/b/tsconfig.json WatchType: Failed Lookup Locations +Info 363 [00:09:03.000] DirectoryWatcher:: Triggered with /user/username/rootfolder/otherfolder/a/b/node_modules/.staging/rxjs-22375c61/src :: WatchInfo: /user/username/rootfolder/otherfolder/a/b 1 undefined Config: /user/username/rootfolder/otherfolder/a/b/tsconfig.json WatchType: Wild card directory +Info 364 [00:09:04.000] Project: /user/username/rootfolder/otherfolder/a/b/tsconfig.json Detected ignored path: /user/username/rootfolder/otherfolder/a/b/node_modules/.staging/rxjs-22375c61/src +Info 365 [00:09:05.000] Elapsed:: *ms DirectoryWatcher:: Triggered with /user/username/rootfolder/otherfolder/a/b/node_modules/.staging/rxjs-22375c61/src :: WatchInfo: /user/username/rootfolder/otherfolder/a/b 1 undefined Config: /user/username/rootfolder/otherfolder/a/b/tsconfig.json WatchType: Wild card directory +Info 366 [00:09:07.000] DirectoryWatcher:: Triggered with /user/username/rootfolder/otherfolder/a/b/node_modules/.staging/rxjs-22375c61/symbol :: WatchInfo: /user/username/rootfolder/otherfolder/a/b/node_modules 1 undefined Project: /user/username/rootfolder/otherfolder/a/b/tsconfig.json WatchType: Failed Lookup Locations +Info 367 [00:09:08.000] Elapsed:: *ms DirectoryWatcher:: Triggered with /user/username/rootfolder/otherfolder/a/b/node_modules/.staging/rxjs-22375c61/symbol :: WatchInfo: /user/username/rootfolder/otherfolder/a/b/node_modules 1 undefined Project: /user/username/rootfolder/otherfolder/a/b/tsconfig.json WatchType: Failed Lookup Locations +Info 368 [00:09:09.000] DirectoryWatcher:: Triggered with /user/username/rootfolder/otherfolder/a/b/node_modules/.staging/rxjs-22375c61/symbol :: WatchInfo: /user/username/rootfolder/otherfolder/a/b 1 undefined Config: /user/username/rootfolder/otherfolder/a/b/tsconfig.json WatchType: Wild card directory +Info 369 [00:09:10.000] Project: /user/username/rootfolder/otherfolder/a/b/tsconfig.json Detected ignored path: /user/username/rootfolder/otherfolder/a/b/node_modules/.staging/rxjs-22375c61/symbol +Info 370 [00:09:11.000] Elapsed:: *ms DirectoryWatcher:: Triggered with /user/username/rootfolder/otherfolder/a/b/node_modules/.staging/rxjs-22375c61/symbol :: WatchInfo: /user/username/rootfolder/otherfolder/a/b 1 undefined Config: /user/username/rootfolder/otherfolder/a/b/tsconfig.json WatchType: Wild card directory +Info 371 [00:09:13.000] DirectoryWatcher:: Triggered with /user/username/rootfolder/otherfolder/a/b/node_modules/.staging/rxjs-22375c61/testing :: WatchInfo: /user/username/rootfolder/otherfolder/a/b/node_modules 1 undefined Project: /user/username/rootfolder/otherfolder/a/b/tsconfig.json WatchType: Failed Lookup Locations +Info 372 [00:09:14.000] Elapsed:: *ms DirectoryWatcher:: Triggered with /user/username/rootfolder/otherfolder/a/b/node_modules/.staging/rxjs-22375c61/testing :: WatchInfo: /user/username/rootfolder/otherfolder/a/b/node_modules 1 undefined Project: /user/username/rootfolder/otherfolder/a/b/tsconfig.json WatchType: Failed Lookup Locations +Info 373 [00:09:15.000] DirectoryWatcher:: Triggered with /user/username/rootfolder/otherfolder/a/b/node_modules/.staging/rxjs-22375c61/testing :: WatchInfo: /user/username/rootfolder/otherfolder/a/b 1 undefined Config: /user/username/rootfolder/otherfolder/a/b/tsconfig.json WatchType: Wild card directory +Info 374 [00:09:16.000] Project: /user/username/rootfolder/otherfolder/a/b/tsconfig.json Detected ignored path: /user/username/rootfolder/otherfolder/a/b/node_modules/.staging/rxjs-22375c61/testing +Info 375 [00:09:17.000] Elapsed:: *ms DirectoryWatcher:: Triggered with /user/username/rootfolder/otherfolder/a/b/node_modules/.staging/rxjs-22375c61/testing :: WatchInfo: /user/username/rootfolder/otherfolder/a/b 1 undefined Config: /user/username/rootfolder/otherfolder/a/b/tsconfig.json WatchType: Wild card directory +Info 376 [00:09:19.000] DirectoryWatcher:: Triggered with /user/username/rootfolder/otherfolder/a/b/node_modules/.staging/rxjs-22375c61 :: WatchInfo: /user/username/rootfolder/otherfolder/a/b/node_modules 1 undefined Project: /user/username/rootfolder/otherfolder/a/b/tsconfig.json WatchType: Failed Lookup Locations +Info 377 [00:09:20.000] Elapsed:: *ms DirectoryWatcher:: Triggered with /user/username/rootfolder/otherfolder/a/b/node_modules/.staging/rxjs-22375c61 :: WatchInfo: /user/username/rootfolder/otherfolder/a/b/node_modules 1 undefined Project: /user/username/rootfolder/otherfolder/a/b/tsconfig.json WatchType: Failed Lookup Locations +Info 378 [00:09:21.000] DirectoryWatcher:: Triggered with /user/username/rootfolder/otherfolder/a/b/node_modules/.staging/rxjs-22375c61 :: WatchInfo: /user/username/rootfolder/otherfolder/a/b 1 undefined Config: /user/username/rootfolder/otherfolder/a/b/tsconfig.json WatchType: Wild card directory +Info 379 [00:09:22.000] Project: /user/username/rootfolder/otherfolder/a/b/tsconfig.json Detected ignored path: /user/username/rootfolder/otherfolder/a/b/node_modules/.staging/rxjs-22375c61 +Info 380 [00:09:23.000] Elapsed:: *ms DirectoryWatcher:: Triggered with /user/username/rootfolder/otherfolder/a/b/node_modules/.staging/rxjs-22375c61 :: WatchInfo: /user/username/rootfolder/otherfolder/a/b 1 undefined Config: /user/username/rootfolder/otherfolder/a/b/tsconfig.json WatchType: Wild card directory +Info 381 [00:09:25.000] DirectoryWatcher:: Triggered with /user/username/rootfolder/otherfolder/a/b/node_modules/.staging/symbol-observable-24bcbbff/index.d.ts :: WatchInfo: /user/username/rootfolder/otherfolder/a/b/node_modules 1 undefined Project: /user/username/rootfolder/otherfolder/a/b/tsconfig.json WatchType: Failed Lookup Locations +Info 382 [00:09:26.000] Elapsed:: *ms DirectoryWatcher:: Triggered with /user/username/rootfolder/otherfolder/a/b/node_modules/.staging/symbol-observable-24bcbbff/index.d.ts :: WatchInfo: /user/username/rootfolder/otherfolder/a/b/node_modules 1 undefined Project: /user/username/rootfolder/otherfolder/a/b/tsconfig.json WatchType: Failed Lookup Locations +Info 383 [00:09:27.000] DirectoryWatcher:: Triggered with /user/username/rootfolder/otherfolder/a/b/node_modules/.staging/symbol-observable-24bcbbff/index.d.ts :: WatchInfo: /user/username/rootfolder/otherfolder/a/b 1 undefined Config: /user/username/rootfolder/otherfolder/a/b/tsconfig.json WatchType: Wild card directory +Info 384 [00:09:28.000] Project: /user/username/rootfolder/otherfolder/a/b/tsconfig.json Detected ignored path: /user/username/rootfolder/otherfolder/a/b/node_modules/.staging/symbol-observable-24bcbbff/index.d.ts +Info 385 [00:09:29.000] Elapsed:: *ms DirectoryWatcher:: Triggered with /user/username/rootfolder/otherfolder/a/b/node_modules/.staging/symbol-observable-24bcbbff/index.d.ts :: WatchInfo: /user/username/rootfolder/otherfolder/a/b 1 undefined Config: /user/username/rootfolder/otherfolder/a/b/tsconfig.json WatchType: Wild card directory +Info 386 [00:09:31.000] DirectoryWatcher:: Triggered with /user/username/rootfolder/otherfolder/a/b/node_modules/.staging/symbol-observable-24bcbbff/index.js :: WatchInfo: /user/username/rootfolder/otherfolder/a/b/node_modules 1 undefined Project: /user/username/rootfolder/otherfolder/a/b/tsconfig.json WatchType: Failed Lookup Locations +Info 387 [00:09:32.000] Elapsed:: *ms DirectoryWatcher:: Triggered with /user/username/rootfolder/otherfolder/a/b/node_modules/.staging/symbol-observable-24bcbbff/index.js :: WatchInfo: /user/username/rootfolder/otherfolder/a/b/node_modules 1 undefined Project: /user/username/rootfolder/otherfolder/a/b/tsconfig.json WatchType: Failed Lookup Locations +Info 388 [00:09:33.000] DirectoryWatcher:: Triggered with /user/username/rootfolder/otherfolder/a/b/node_modules/.staging/symbol-observable-24bcbbff/index.js :: WatchInfo: /user/username/rootfolder/otherfolder/a/b 1 undefined Config: /user/username/rootfolder/otherfolder/a/b/tsconfig.json WatchType: Wild card directory +Info 389 [00:09:34.000] Project: /user/username/rootfolder/otherfolder/a/b/tsconfig.json Detected ignored path: /user/username/rootfolder/otherfolder/a/b/node_modules/.staging/symbol-observable-24bcbbff/index.js +Info 390 [00:09:35.000] Elapsed:: *ms DirectoryWatcher:: Triggered with /user/username/rootfolder/otherfolder/a/b/node_modules/.staging/symbol-observable-24bcbbff/index.js :: WatchInfo: /user/username/rootfolder/otherfolder/a/b 1 undefined Config: /user/username/rootfolder/otherfolder/a/b/tsconfig.json WatchType: Wild card directory +Info 391 [00:09:37.000] DirectoryWatcher:: Triggered with /user/username/rootfolder/otherfolder/a/b/node_modules/.staging/symbol-observable-24bcbbff/lib/index.js :: WatchInfo: /user/username/rootfolder/otherfolder/a/b/node_modules 1 undefined Project: /user/username/rootfolder/otherfolder/a/b/tsconfig.json WatchType: Failed Lookup Locations +Info 392 [00:09:38.000] Elapsed:: *ms DirectoryWatcher:: Triggered with /user/username/rootfolder/otherfolder/a/b/node_modules/.staging/symbol-observable-24bcbbff/lib/index.js :: WatchInfo: /user/username/rootfolder/otherfolder/a/b/node_modules 1 undefined Project: /user/username/rootfolder/otherfolder/a/b/tsconfig.json WatchType: Failed Lookup Locations +Info 393 [00:09:39.000] DirectoryWatcher:: Triggered with /user/username/rootfolder/otherfolder/a/b/node_modules/.staging/symbol-observable-24bcbbff/lib/index.js :: WatchInfo: /user/username/rootfolder/otherfolder/a/b 1 undefined Config: /user/username/rootfolder/otherfolder/a/b/tsconfig.json WatchType: Wild card directory +Info 394 [00:09:40.000] Project: /user/username/rootfolder/otherfolder/a/b/tsconfig.json Detected ignored path: /user/username/rootfolder/otherfolder/a/b/node_modules/.staging/symbol-observable-24bcbbff/lib/index.js +Info 395 [00:09:41.000] Elapsed:: *ms DirectoryWatcher:: Triggered with /user/username/rootfolder/otherfolder/a/b/node_modules/.staging/symbol-observable-24bcbbff/lib/index.js :: WatchInfo: /user/username/rootfolder/otherfolder/a/b 1 undefined Config: /user/username/rootfolder/otherfolder/a/b/tsconfig.json WatchType: Wild card directory +Info 396 [00:09:43.000] DirectoryWatcher:: Triggered with /user/username/rootfolder/otherfolder/a/b/node_modules/.staging/symbol-observable-24bcbbff/lib :: WatchInfo: /user/username/rootfolder/otherfolder/a/b/node_modules 1 undefined Project: /user/username/rootfolder/otherfolder/a/b/tsconfig.json WatchType: Failed Lookup Locations +Info 397 [00:09:44.000] Elapsed:: *ms DirectoryWatcher:: Triggered with /user/username/rootfolder/otherfolder/a/b/node_modules/.staging/symbol-observable-24bcbbff/lib :: WatchInfo: /user/username/rootfolder/otherfolder/a/b/node_modules 1 undefined Project: /user/username/rootfolder/otherfolder/a/b/tsconfig.json WatchType: Failed Lookup Locations +Info 398 [00:09:45.000] DirectoryWatcher:: Triggered with /user/username/rootfolder/otherfolder/a/b/node_modules/.staging/symbol-observable-24bcbbff/lib :: WatchInfo: /user/username/rootfolder/otherfolder/a/b 1 undefined Config: /user/username/rootfolder/otherfolder/a/b/tsconfig.json WatchType: Wild card directory +Info 399 [00:09:46.000] Project: /user/username/rootfolder/otherfolder/a/b/tsconfig.json Detected ignored path: /user/username/rootfolder/otherfolder/a/b/node_modules/.staging/symbol-observable-24bcbbff/lib +Info 400 [00:09:47.000] Elapsed:: *ms DirectoryWatcher:: Triggered with /user/username/rootfolder/otherfolder/a/b/node_modules/.staging/symbol-observable-24bcbbff/lib :: WatchInfo: /user/username/rootfolder/otherfolder/a/b 1 undefined Config: /user/username/rootfolder/otherfolder/a/b/tsconfig.json WatchType: Wild card directory +Info 401 [00:09:49.000] DirectoryWatcher:: Triggered with /user/username/rootfolder/otherfolder/a/b/node_modules/.staging/symbol-observable-24bcbbff/package.json :: WatchInfo: /user/username/rootfolder/otherfolder/a/b/node_modules 1 undefined Project: /user/username/rootfolder/otherfolder/a/b/tsconfig.json WatchType: Failed Lookup Locations +Info 402 [00:09:50.000] Elapsed:: *ms DirectoryWatcher:: Triggered with /user/username/rootfolder/otherfolder/a/b/node_modules/.staging/symbol-observable-24bcbbff/package.json :: WatchInfo: /user/username/rootfolder/otherfolder/a/b/node_modules 1 undefined Project: /user/username/rootfolder/otherfolder/a/b/tsconfig.json WatchType: Failed Lookup Locations +Info 403 [00:09:51.000] DirectoryWatcher:: Triggered with /user/username/rootfolder/otherfolder/a/b/node_modules/.staging/symbol-observable-24bcbbff/package.json :: WatchInfo: /user/username/rootfolder/otherfolder/a/b 1 undefined Config: /user/username/rootfolder/otherfolder/a/b/tsconfig.json WatchType: Wild card directory +Info 404 [00:09:52.000] Project: /user/username/rootfolder/otherfolder/a/b/tsconfig.json Detected ignored path: /user/username/rootfolder/otherfolder/a/b/node_modules/.staging/symbol-observable-24bcbbff/package.json +Info 405 [00:09:53.000] Elapsed:: *ms DirectoryWatcher:: Triggered with /user/username/rootfolder/otherfolder/a/b/node_modules/.staging/symbol-observable-24bcbbff/package.json :: WatchInfo: /user/username/rootfolder/otherfolder/a/b 1 undefined Config: /user/username/rootfolder/otherfolder/a/b/tsconfig.json WatchType: Wild card directory +Info 406 [00:09:55.000] DirectoryWatcher:: Triggered with /user/username/rootfolder/otherfolder/a/b/node_modules/.staging/symbol-observable-24bcbbff :: WatchInfo: /user/username/rootfolder/otherfolder/a/b/node_modules 1 undefined Project: /user/username/rootfolder/otherfolder/a/b/tsconfig.json WatchType: Failed Lookup Locations +Info 407 [00:09:56.000] Elapsed:: *ms DirectoryWatcher:: Triggered with /user/username/rootfolder/otherfolder/a/b/node_modules/.staging/symbol-observable-24bcbbff :: WatchInfo: /user/username/rootfolder/otherfolder/a/b/node_modules 1 undefined Project: /user/username/rootfolder/otherfolder/a/b/tsconfig.json WatchType: Failed Lookup Locations +Info 408 [00:09:57.000] DirectoryWatcher:: Triggered with /user/username/rootfolder/otherfolder/a/b/node_modules/.staging/symbol-observable-24bcbbff :: WatchInfo: /user/username/rootfolder/otherfolder/a/b 1 undefined Config: /user/username/rootfolder/otherfolder/a/b/tsconfig.json WatchType: Wild card directory +Info 409 [00:09:58.000] Project: /user/username/rootfolder/otherfolder/a/b/tsconfig.json Detected ignored path: /user/username/rootfolder/otherfolder/a/b/node_modules/.staging/symbol-observable-24bcbbff +Info 410 [00:09:59.000] Elapsed:: *ms DirectoryWatcher:: Triggered with /user/username/rootfolder/otherfolder/a/b/node_modules/.staging/symbol-observable-24bcbbff :: WatchInfo: /user/username/rootfolder/otherfolder/a/b 1 undefined Config: /user/username/rootfolder/otherfolder/a/b/tsconfig.json WatchType: Wild card directory +Info 411 [00:10:01.000] DirectoryWatcher:: Triggered with /user/username/rootfolder/otherfolder/a/b/node_modules/.staging/typescript-8493ea5d/lib :: WatchInfo: /user/username/rootfolder/otherfolder/a/b/node_modules 1 undefined Project: /user/username/rootfolder/otherfolder/a/b/tsconfig.json WatchType: Failed Lookup Locations +Info 412 [00:10:02.000] Elapsed:: *ms DirectoryWatcher:: Triggered with /user/username/rootfolder/otherfolder/a/b/node_modules/.staging/typescript-8493ea5d/lib :: WatchInfo: /user/username/rootfolder/otherfolder/a/b/node_modules 1 undefined Project: /user/username/rootfolder/otherfolder/a/b/tsconfig.json WatchType: Failed Lookup Locations +Info 413 [00:10:03.000] DirectoryWatcher:: Triggered with /user/username/rootfolder/otherfolder/a/b/node_modules/.staging/typescript-8493ea5d/lib :: WatchInfo: /user/username/rootfolder/otherfolder/a/b 1 undefined Config: /user/username/rootfolder/otherfolder/a/b/tsconfig.json WatchType: Wild card directory +Info 414 [00:10:04.000] Project: /user/username/rootfolder/otherfolder/a/b/tsconfig.json Detected ignored path: /user/username/rootfolder/otherfolder/a/b/node_modules/.staging/typescript-8493ea5d/lib +Info 415 [00:10:05.000] Elapsed:: *ms DirectoryWatcher:: Triggered with /user/username/rootfolder/otherfolder/a/b/node_modules/.staging/typescript-8493ea5d/lib :: WatchInfo: /user/username/rootfolder/otherfolder/a/b 1 undefined Config: /user/username/rootfolder/otherfolder/a/b/tsconfig.json WatchType: Wild card directory +Info 416 [00:10:07.000] DirectoryWatcher:: Triggered with /user/username/rootfolder/otherfolder/a/b/node_modules/.staging/typescript-8493ea5d/package.json :: WatchInfo: /user/username/rootfolder/otherfolder/a/b/node_modules 1 undefined Project: /user/username/rootfolder/otherfolder/a/b/tsconfig.json WatchType: Failed Lookup Locations +Info 417 [00:10:08.000] Elapsed:: *ms DirectoryWatcher:: Triggered with /user/username/rootfolder/otherfolder/a/b/node_modules/.staging/typescript-8493ea5d/package.json :: WatchInfo: /user/username/rootfolder/otherfolder/a/b/node_modules 1 undefined Project: /user/username/rootfolder/otherfolder/a/b/tsconfig.json WatchType: Failed Lookup Locations +Info 418 [00:10:09.000] DirectoryWatcher:: Triggered with /user/username/rootfolder/otherfolder/a/b/node_modules/.staging/typescript-8493ea5d/package.json :: WatchInfo: /user/username/rootfolder/otherfolder/a/b 1 undefined Config: /user/username/rootfolder/otherfolder/a/b/tsconfig.json WatchType: Wild card directory +Info 419 [00:10:10.000] Project: /user/username/rootfolder/otherfolder/a/b/tsconfig.json Detected ignored path: /user/username/rootfolder/otherfolder/a/b/node_modules/.staging/typescript-8493ea5d/package.json +Info 420 [00:10:11.000] Elapsed:: *ms DirectoryWatcher:: Triggered with /user/username/rootfolder/otherfolder/a/b/node_modules/.staging/typescript-8493ea5d/package.json :: WatchInfo: /user/username/rootfolder/otherfolder/a/b 1 undefined Config: /user/username/rootfolder/otherfolder/a/b/tsconfig.json WatchType: Wild card directory +Info 421 [00:10:13.000] DirectoryWatcher:: Triggered with /user/username/rootfolder/otherfolder/a/b/node_modules/.staging/typescript-8493ea5d :: WatchInfo: /user/username/rootfolder/otherfolder/a/b/node_modules 1 undefined Project: /user/username/rootfolder/otherfolder/a/b/tsconfig.json WatchType: Failed Lookup Locations +Info 422 [00:10:14.000] Elapsed:: *ms DirectoryWatcher:: Triggered with /user/username/rootfolder/otherfolder/a/b/node_modules/.staging/typescript-8493ea5d :: WatchInfo: /user/username/rootfolder/otherfolder/a/b/node_modules 1 undefined Project: /user/username/rootfolder/otherfolder/a/b/tsconfig.json WatchType: Failed Lookup Locations +Info 423 [00:10:15.000] DirectoryWatcher:: Triggered with /user/username/rootfolder/otherfolder/a/b/node_modules/.staging/typescript-8493ea5d :: WatchInfo: /user/username/rootfolder/otherfolder/a/b 1 undefined Config: /user/username/rootfolder/otherfolder/a/b/tsconfig.json WatchType: Wild card directory +Info 424 [00:10:16.000] Project: /user/username/rootfolder/otherfolder/a/b/tsconfig.json Detected ignored path: /user/username/rootfolder/otherfolder/a/b/node_modules/.staging/typescript-8493ea5d +Info 425 [00:10:17.000] Elapsed:: *ms DirectoryWatcher:: Triggered with /user/username/rootfolder/otherfolder/a/b/node_modules/.staging/typescript-8493ea5d :: WatchInfo: /user/username/rootfolder/otherfolder/a/b 1 undefined Config: /user/username/rootfolder/otherfolder/a/b/tsconfig.json WatchType: Wild card directory +Info 426 [00:10:19.000] DirectoryWatcher:: Triggered with /user/username/rootfolder/otherfolder/a/b/node_modules/.staging :: WatchInfo: /user/username/rootfolder/otherfolder/a/b/node_modules 1 undefined Project: /user/username/rootfolder/otherfolder/a/b/tsconfig.json WatchType: Failed Lookup Locations +Info 427 [00:10:20.000] Scheduled: /user/username/rootfolder/otherfolder/a/b/tsconfig.jsonFailedLookupInvalidation, Cancelled earlier one +Info 428 [00:10:21.000] Elapsed:: *ms DirectoryWatcher:: Triggered with /user/username/rootfolder/otherfolder/a/b/node_modules/.staging :: WatchInfo: /user/username/rootfolder/otherfolder/a/b/node_modules 1 undefined Project: /user/username/rootfolder/otherfolder/a/b/tsconfig.json WatchType: Failed Lookup Locations +Info 429 [00:10:22.000] DirectoryWatcher:: Triggered with /user/username/rootfolder/otherfolder/a/b/node_modules/.staging :: WatchInfo: /user/username/rootfolder/otherfolder/a/b 1 undefined Config: /user/username/rootfolder/otherfolder/a/b/tsconfig.json WatchType: Wild card directory +Info 430 [00:10:23.000] Scheduled: /user/username/rootfolder/otherfolder/a/b/tsconfig.json, Cancelled earlier one +Info 431 [00:10:24.000] Scheduled: *ensureProjectForOpenFiles*, Cancelled earlier one +Info 432 [00:10:25.000] Elapsed:: *ms DirectoryWatcher:: Triggered with /user/username/rootfolder/otherfolder/a/b/node_modules/.staging :: WatchInfo: /user/username/rootfolder/otherfolder/a/b 1 undefined Config: /user/username/rootfolder/otherfolder/a/b/tsconfig.json WatchType: Wild card directory +Info 433 [00:10:28.000] DirectoryWatcher:: Triggered with /user/username/rootfolder/otherfolder/a/b/node_modules/symbolle :: WatchInfo: /user/username/rootfolder/otherfolder/a/b/node_modules 1 undefined Project: /user/username/rootfolder/otherfolder/a/b/tsconfig.json WatchType: Failed Lookup Locations +Info 434 [00:10:29.000] Scheduled: /user/username/rootfolder/otherfolder/a/b/tsconfig.jsonFailedLookupInvalidation, Cancelled earlier one +Info 435 [00:10:30.000] Elapsed:: *ms DirectoryWatcher:: Triggered with /user/username/rootfolder/otherfolder/a/b/node_modules/symbolle :: WatchInfo: /user/username/rootfolder/otherfolder/a/b/node_modules 1 undefined Project: /user/username/rootfolder/otherfolder/a/b/tsconfig.json WatchType: Failed Lookup Locations +Info 436 [00:10:31.000] DirectoryWatcher:: Triggered with /user/username/rootfolder/otherfolder/a/b/node_modules/symbolle :: WatchInfo: /user/username/rootfolder/otherfolder/a/b 1 undefined Config: /user/username/rootfolder/otherfolder/a/b/tsconfig.json WatchType: Wild card directory +Info 437 [00:10:32.000] Scheduled: /user/username/rootfolder/otherfolder/a/b/tsconfig.json, Cancelled earlier one +Info 438 [00:10:33.000] Scheduled: *ensureProjectForOpenFiles*, Cancelled earlier one +Info 439 [00:10:34.000] Elapsed:: *ms DirectoryWatcher:: Triggered with /user/username/rootfolder/otherfolder/a/b/node_modules/symbolle :: WatchInfo: /user/username/rootfolder/otherfolder/a/b 1 undefined Config: /user/username/rootfolder/otherfolder/a/b/tsconfig.json WatchType: Wild card directory +Info 440 [00:10:37.000] DirectoryWatcher:: Triggered with /user/username/rootfolder/otherfolder/a/b/node_modules/symbolle/package.json :: WatchInfo: /user/username/rootfolder/otherfolder/a/b/node_modules 1 undefined Project: /user/username/rootfolder/otherfolder/a/b/tsconfig.json WatchType: Failed Lookup Locations +Info 441 [00:10:38.000] Scheduled: /user/username/rootfolder/otherfolder/a/b/tsconfig.jsonFailedLookupInvalidation, Cancelled earlier one +Info 442 [00:10:39.000] Elapsed:: *ms DirectoryWatcher:: Triggered with /user/username/rootfolder/otherfolder/a/b/node_modules/symbolle/package.json :: WatchInfo: /user/username/rootfolder/otherfolder/a/b/node_modules 1 undefined Project: /user/username/rootfolder/otherfolder/a/b/tsconfig.json WatchType: Failed Lookup Locations +Info 443 [00:10:40.000] DirectoryWatcher:: Triggered with /user/username/rootfolder/otherfolder/a/b/node_modules/symbolle/package.json :: WatchInfo: /user/username/rootfolder/otherfolder/a/b 1 undefined Config: /user/username/rootfolder/otherfolder/a/b/tsconfig.json WatchType: Wild card directory +Info 444 [00:10:41.000] Project: /user/username/rootfolder/otherfolder/a/b/tsconfig.json Detected file add/remove of non supported extension: /user/username/rootfolder/otherfolder/a/b/node_modules/symbolle/package.json +Info 445 [00:10:42.000] Elapsed:: *ms DirectoryWatcher:: Triggered with /user/username/rootfolder/otherfolder/a/b/node_modules/symbolle/package.json :: WatchInfo: /user/username/rootfolder/otherfolder/a/b 1 undefined Config: /user/username/rootfolder/otherfolder/a/b/tsconfig.json WatchType: Wild card directory +Info 446 [00:10:45.000] DirectoryWatcher:: Triggered with /user/username/rootfolder/otherfolder/a/b/node_modules/lodash/package.json :: WatchInfo: /user/username/rootfolder/otherfolder/a/b/node_modules 1 undefined Project: /user/username/rootfolder/otherfolder/a/b/tsconfig.json WatchType: Failed Lookup Locations +Info 447 [00:10:46.000] Scheduled: /user/username/rootfolder/otherfolder/a/b/tsconfig.jsonFailedLookupInvalidation, Cancelled earlier one +Info 448 [00:10:47.000] Elapsed:: *ms DirectoryWatcher:: Triggered with /user/username/rootfolder/otherfolder/a/b/node_modules/lodash/package.json :: WatchInfo: /user/username/rootfolder/otherfolder/a/b/node_modules 1 undefined Project: /user/username/rootfolder/otherfolder/a/b/tsconfig.json WatchType: Failed Lookup Locations +Info 449 [00:10:48.000] DirectoryWatcher:: Triggered with /user/username/rootfolder/otherfolder/a/b/node_modules/lodash/package.json :: WatchInfo: /user/username/rootfolder/otherfolder/a/b 1 undefined Config: /user/username/rootfolder/otherfolder/a/b/tsconfig.json WatchType: Wild card directory +Info 450 [00:10:49.000] Project: /user/username/rootfolder/otherfolder/a/b/tsconfig.json Detected file add/remove of non supported extension: /user/username/rootfolder/otherfolder/a/b/node_modules/lodash/package.json +Info 451 [00:10:50.000] Elapsed:: *ms DirectoryWatcher:: Triggered with /user/username/rootfolder/otherfolder/a/b/node_modules/lodash/package.json :: WatchInfo: /user/username/rootfolder/otherfolder/a/b 1 undefined Config: /user/username/rootfolder/otherfolder/a/b/tsconfig.json WatchType: Wild card directory +Info 452 [00:10:53.000] DirectoryWatcher:: Triggered with /user/username/rootfolder/otherfolder/a/b/node_modules/rxjs/package.json :: WatchInfo: /user/username/rootfolder/otherfolder/a/b/node_modules 1 undefined Project: /user/username/rootfolder/otherfolder/a/b/tsconfig.json WatchType: Failed Lookup Locations +Info 453 [00:10:54.000] Scheduled: /user/username/rootfolder/otherfolder/a/b/tsconfig.jsonFailedLookupInvalidation, Cancelled earlier one +Info 454 [00:10:55.000] Elapsed:: *ms DirectoryWatcher:: Triggered with /user/username/rootfolder/otherfolder/a/b/node_modules/rxjs/package.json :: WatchInfo: /user/username/rootfolder/otherfolder/a/b/node_modules 1 undefined Project: /user/username/rootfolder/otherfolder/a/b/tsconfig.json WatchType: Failed Lookup Locations +Info 455 [00:10:56.000] DirectoryWatcher:: Triggered with /user/username/rootfolder/otherfolder/a/b/node_modules/rxjs/package.json :: WatchInfo: /user/username/rootfolder/otherfolder/a/b 1 undefined Config: /user/username/rootfolder/otherfolder/a/b/tsconfig.json WatchType: Wild card directory +Info 456 [00:10:57.000] Project: /user/username/rootfolder/otherfolder/a/b/tsconfig.json Detected file add/remove of non supported extension: /user/username/rootfolder/otherfolder/a/b/node_modules/rxjs/package.json +Info 457 [00:10:58.000] Elapsed:: *ms DirectoryWatcher:: Triggered with /user/username/rootfolder/otherfolder/a/b/node_modules/rxjs/package.json :: WatchInfo: /user/username/rootfolder/otherfolder/a/b 1 undefined Config: /user/username/rootfolder/otherfolder/a/b/tsconfig.json WatchType: Wild card directory +Info 458 [00:11:01.000] DirectoryWatcher:: Triggered with /user/username/rootfolder/otherfolder/a/b/node_modules/typescript/package.json :: WatchInfo: /user/username/rootfolder/otherfolder/a/b/node_modules 1 undefined Project: /user/username/rootfolder/otherfolder/a/b/tsconfig.json WatchType: Failed Lookup Locations +Info 459 [00:11:02.000] Scheduled: /user/username/rootfolder/otherfolder/a/b/tsconfig.jsonFailedLookupInvalidation, Cancelled earlier one +Info 460 [00:11:03.000] Elapsed:: *ms DirectoryWatcher:: Triggered with /user/username/rootfolder/otherfolder/a/b/node_modules/typescript/package.json :: WatchInfo: /user/username/rootfolder/otherfolder/a/b/node_modules 1 undefined Project: /user/username/rootfolder/otherfolder/a/b/tsconfig.json WatchType: Failed Lookup Locations +Info 461 [00:11:04.000] DirectoryWatcher:: Triggered with /user/username/rootfolder/otherfolder/a/b/node_modules/typescript/package.json :: WatchInfo: /user/username/rootfolder/otherfolder/a/b 1 undefined Config: /user/username/rootfolder/otherfolder/a/b/tsconfig.json WatchType: Wild card directory +Info 462 [00:11:05.000] Project: /user/username/rootfolder/otherfolder/a/b/tsconfig.json Detected file add/remove of non supported extension: /user/username/rootfolder/otherfolder/a/b/node_modules/typescript/package.json +Info 463 [00:11:06.000] Elapsed:: *ms DirectoryWatcher:: Triggered with /user/username/rootfolder/otherfolder/a/b/node_modules/typescript/package.json :: WatchInfo: /user/username/rootfolder/otherfolder/a/b 1 undefined Config: /user/username/rootfolder/otherfolder/a/b/tsconfig.json WatchType: Wild card directory +Info 464 [00:11:09.000] DirectoryWatcher:: Triggered with /user/username/rootfolder/otherfolder/a/b/node_modules/symbolle/index.js :: WatchInfo: /user/username/rootfolder/otherfolder/a/b/node_modules 1 undefined Project: /user/username/rootfolder/otherfolder/a/b/tsconfig.json WatchType: Failed Lookup Locations +Info 465 [00:11:10.000] Scheduled: /user/username/rootfolder/otherfolder/a/b/tsconfig.jsonFailedLookupInvalidation, Cancelled earlier one +Info 466 [00:11:11.000] Elapsed:: *ms DirectoryWatcher:: Triggered with /user/username/rootfolder/otherfolder/a/b/node_modules/symbolle/index.js :: WatchInfo: /user/username/rootfolder/otherfolder/a/b/node_modules 1 undefined Project: /user/username/rootfolder/otherfolder/a/b/tsconfig.json WatchType: Failed Lookup Locations +Info 467 [00:11:12.000] DirectoryWatcher:: Triggered with /user/username/rootfolder/otherfolder/a/b/node_modules/symbolle/index.js :: WatchInfo: /user/username/rootfolder/otherfolder/a/b 1 undefined Config: /user/username/rootfolder/otherfolder/a/b/tsconfig.json WatchType: Wild card directory +Info 468 [00:11:13.000] Project: /user/username/rootfolder/otherfolder/a/b/tsconfig.json Detected file add/remove of non supported extension: /user/username/rootfolder/otherfolder/a/b/node_modules/symbolle/index.js +Info 469 [00:11:14.000] Elapsed:: *ms DirectoryWatcher:: Triggered with /user/username/rootfolder/otherfolder/a/b/node_modules/symbolle/index.js :: WatchInfo: /user/username/rootfolder/otherfolder/a/b 1 undefined Config: /user/username/rootfolder/otherfolder/a/b/tsconfig.json WatchType: Wild card directory +Info 470 [00:11:17.000] DirectoryWatcher:: Triggered with /user/username/rootfolder/otherfolder/a/b/node_modules/symbolle/index.d.ts :: WatchInfo: /user/username/rootfolder/otherfolder/a/b/node_modules 1 undefined Project: /user/username/rootfolder/otherfolder/a/b/tsconfig.json WatchType: Failed Lookup Locations +Info 471 [00:11:18.000] Scheduled: /user/username/rootfolder/otherfolder/a/b/tsconfig.jsonFailedLookupInvalidation, Cancelled earlier one +Info 472 [00:11:19.000] Elapsed:: *ms DirectoryWatcher:: Triggered with /user/username/rootfolder/otherfolder/a/b/node_modules/symbolle/index.d.ts :: WatchInfo: /user/username/rootfolder/otherfolder/a/b/node_modules 1 undefined Project: /user/username/rootfolder/otherfolder/a/b/tsconfig.json WatchType: Failed Lookup Locations +Info 473 [00:11:20.000] DirectoryWatcher:: Triggered with /user/username/rootfolder/otherfolder/a/b/node_modules/symbolle/index.d.ts :: WatchInfo: /user/username/rootfolder/otherfolder/a/b 1 undefined Config: /user/username/rootfolder/otherfolder/a/b/tsconfig.json WatchType: Wild card directory +Info 474 [00:11:21.000] Scheduled: /user/username/rootfolder/otherfolder/a/b/tsconfig.json, Cancelled earlier one +Info 475 [00:11:22.000] Scheduled: *ensureProjectForOpenFiles*, Cancelled earlier one +Info 476 [00:11:23.000] Elapsed:: *ms DirectoryWatcher:: Triggered with /user/username/rootfolder/otherfolder/a/b/node_modules/symbolle/index.d.ts :: WatchInfo: /user/username/rootfolder/otherfolder/a/b 1 undefined Config: /user/username/rootfolder/otherfolder/a/b/tsconfig.json WatchType: Wild card directory +Info 477 [00:11:26.000] DirectoryWatcher:: Triggered with /user/username/rootfolder/otherfolder/a/b/node_modules/symbolle/lib :: WatchInfo: /user/username/rootfolder/otherfolder/a/b/node_modules 1 undefined Project: /user/username/rootfolder/otherfolder/a/b/tsconfig.json WatchType: Failed Lookup Locations +Info 478 [00:11:27.000] Elapsed:: *ms DirectoryWatcher:: Triggered with /user/username/rootfolder/otherfolder/a/b/node_modules/symbolle/lib :: WatchInfo: /user/username/rootfolder/otherfolder/a/b/node_modules 1 undefined Project: /user/username/rootfolder/otherfolder/a/b/tsconfig.json WatchType: Failed Lookup Locations +Info 479 [00:11:28.000] DirectoryWatcher:: Triggered with /user/username/rootfolder/otherfolder/a/b/node_modules/symbolle/lib :: WatchInfo: /user/username/rootfolder/otherfolder/a/b 1 undefined Config: /user/username/rootfolder/otherfolder/a/b/tsconfig.json WatchType: Wild card directory +Info 480 [00:11:29.000] Scheduled: /user/username/rootfolder/otherfolder/a/b/tsconfig.json, Cancelled earlier one +Info 481 [00:11:30.000] Scheduled: *ensureProjectForOpenFiles*, Cancelled earlier one +Info 482 [00:11:31.000] Elapsed:: *ms DirectoryWatcher:: Triggered with /user/username/rootfolder/otherfolder/a/b/node_modules/symbolle/lib :: WatchInfo: /user/username/rootfolder/otherfolder/a/b 1 undefined Config: /user/username/rootfolder/otherfolder/a/b/tsconfig.json WatchType: Wild card directory +Info 483 [00:11:34.000] DirectoryWatcher:: Triggered with /user/username/rootfolder/otherfolder/a/b/node_modules/symbolle/lib/index.js :: WatchInfo: /user/username/rootfolder/otherfolder/a/b/node_modules 1 undefined Project: /user/username/rootfolder/otherfolder/a/b/tsconfig.json WatchType: Failed Lookup Locations +Info 484 [00:11:35.000] Scheduled: /user/username/rootfolder/otherfolder/a/b/tsconfig.jsonFailedLookupInvalidation, Cancelled earlier one +Info 485 [00:11:36.000] Elapsed:: *ms DirectoryWatcher:: Triggered with /user/username/rootfolder/otherfolder/a/b/node_modules/symbolle/lib/index.js :: WatchInfo: /user/username/rootfolder/otherfolder/a/b/node_modules 1 undefined Project: /user/username/rootfolder/otherfolder/a/b/tsconfig.json WatchType: Failed Lookup Locations +Info 486 [00:11:37.000] DirectoryWatcher:: Triggered with /user/username/rootfolder/otherfolder/a/b/node_modules/symbolle/lib/index.js :: WatchInfo: /user/username/rootfolder/otherfolder/a/b 1 undefined Config: /user/username/rootfolder/otherfolder/a/b/tsconfig.json WatchType: Wild card directory +Info 487 [00:11:38.000] Project: /user/username/rootfolder/otherfolder/a/b/tsconfig.json Detected file add/remove of non supported extension: /user/username/rootfolder/otherfolder/a/b/node_modules/symbolle/lib/index.js +Info 488 [00:11:39.000] Elapsed:: *ms DirectoryWatcher:: Triggered with /user/username/rootfolder/otherfolder/a/b/node_modules/symbolle/lib/index.js :: WatchInfo: /user/username/rootfolder/otherfolder/a/b 1 undefined Config: /user/username/rootfolder/otherfolder/a/b/tsconfig.json WatchType: Wild card directory +Info 489 [00:11:42.000] DirectoryWatcher:: Triggered with /user/username/rootfolder/otherfolder/a/b/node_modules/typescript/lib :: WatchInfo: /user/username/rootfolder/otherfolder/a/b/node_modules 1 undefined Project: /user/username/rootfolder/otherfolder/a/b/tsconfig.json WatchType: Failed Lookup Locations +Info 490 [00:11:43.000] Elapsed:: *ms DirectoryWatcher:: Triggered with /user/username/rootfolder/otherfolder/a/b/node_modules/typescript/lib :: WatchInfo: /user/username/rootfolder/otherfolder/a/b/node_modules 1 undefined Project: /user/username/rootfolder/otherfolder/a/b/tsconfig.json WatchType: Failed Lookup Locations +Info 491 [00:11:44.000] DirectoryWatcher:: Triggered with /user/username/rootfolder/otherfolder/a/b/node_modules/typescript/lib :: WatchInfo: /user/username/rootfolder/otherfolder/a/b 1 undefined Config: /user/username/rootfolder/otherfolder/a/b/tsconfig.json WatchType: Wild card directory +Info 492 [00:11:45.000] Scheduled: /user/username/rootfolder/otherfolder/a/b/tsconfig.json, Cancelled earlier one +Info 493 [00:11:46.000] Scheduled: *ensureProjectForOpenFiles*, Cancelled earlier one +Info 494 [00:11:47.000] Elapsed:: *ms DirectoryWatcher:: Triggered with /user/username/rootfolder/otherfolder/a/b/node_modules/typescript/lib :: WatchInfo: /user/username/rootfolder/otherfolder/a/b 1 undefined Config: /user/username/rootfolder/otherfolder/a/b/tsconfig.json WatchType: Wild card directory +Info 495 [00:11:50.000] DirectoryWatcher:: Triggered with /user/username/rootfolder/otherfolder/a/b/node_modules/rxjs/add :: WatchInfo: /user/username/rootfolder/otherfolder/a/b/node_modules 1 undefined Project: /user/username/rootfolder/otherfolder/a/b/tsconfig.json WatchType: Failed Lookup Locations +Info 496 [00:11:51.000] Elapsed:: *ms DirectoryWatcher:: Triggered with /user/username/rootfolder/otherfolder/a/b/node_modules/rxjs/add :: WatchInfo: /user/username/rootfolder/otherfolder/a/b/node_modules 1 undefined Project: /user/username/rootfolder/otherfolder/a/b/tsconfig.json WatchType: Failed Lookup Locations +Info 497 [00:11:52.000] DirectoryWatcher:: Triggered with /user/username/rootfolder/otherfolder/a/b/node_modules/rxjs/add :: WatchInfo: /user/username/rootfolder/otherfolder/a/b 1 undefined Config: /user/username/rootfolder/otherfolder/a/b/tsconfig.json WatchType: Wild card directory +Info 498 [00:11:53.000] Scheduled: /user/username/rootfolder/otherfolder/a/b/tsconfig.json, Cancelled earlier one +Info 499 [00:11:54.000] Scheduled: *ensureProjectForOpenFiles*, Cancelled earlier one +Info 500 [00:11:55.000] Elapsed:: *ms DirectoryWatcher:: Triggered with /user/username/rootfolder/otherfolder/a/b/node_modules/rxjs/add :: WatchInfo: /user/username/rootfolder/otherfolder/a/b 1 undefined Config: /user/username/rootfolder/otherfolder/a/b/tsconfig.json WatchType: Wild card directory +Info 501 [00:11:58.000] DirectoryWatcher:: Triggered with /user/username/rootfolder/otherfolder/a/b/node_modules/rxjs/add/operator :: WatchInfo: /user/username/rootfolder/otherfolder/a/b/node_modules 1 undefined Project: /user/username/rootfolder/otherfolder/a/b/tsconfig.json WatchType: Failed Lookup Locations +Info 502 [00:11:59.000] Elapsed:: *ms DirectoryWatcher:: Triggered with /user/username/rootfolder/otherfolder/a/b/node_modules/rxjs/add/operator :: WatchInfo: /user/username/rootfolder/otherfolder/a/b/node_modules 1 undefined Project: /user/username/rootfolder/otherfolder/a/b/tsconfig.json WatchType: Failed Lookup Locations +Info 503 [00:12:00.000] DirectoryWatcher:: Triggered with /user/username/rootfolder/otherfolder/a/b/node_modules/rxjs/add/operator :: WatchInfo: /user/username/rootfolder/otherfolder/a/b 1 undefined Config: /user/username/rootfolder/otherfolder/a/b/tsconfig.json WatchType: Wild card directory +Info 504 [00:12:01.000] Scheduled: /user/username/rootfolder/otherfolder/a/b/tsconfig.json, Cancelled earlier one +Info 505 [00:12:02.000] Scheduled: *ensureProjectForOpenFiles*, Cancelled earlier one +Info 506 [00:12:03.000] Elapsed:: *ms DirectoryWatcher:: Triggered with /user/username/rootfolder/otherfolder/a/b/node_modules/rxjs/add/operator :: WatchInfo: /user/username/rootfolder/otherfolder/a/b 1 undefined Config: /user/username/rootfolder/otherfolder/a/b/tsconfig.json WatchType: Wild card directory +Info 507 [00:12:06.000] DirectoryWatcher:: Triggered with /user/username/rootfolder/otherfolder/a/b/node_modules/@types/lodash/package.json :: WatchInfo: /user/username/rootfolder/otherfolder/a/b/node_modules/@types 1 undefined Project: /user/username/rootfolder/otherfolder/a/b/tsconfig.json WatchType: Type roots +Info 508 [00:12:07.000] Scheduled: /user/username/rootfolder/otherfolder/a/b/tsconfig.json, Cancelled earlier one +Info 509 [00:12:08.000] Scheduled: *ensureProjectForOpenFiles*, Cancelled earlier one +Info 510 [00:12:09.000] Scheduled: /user/username/rootfolder/otherfolder/a/b/tsconfig.jsonFailedLookupInvalidation, Cancelled earlier one +Info 511 [00:12:10.000] Elapsed:: *ms DirectoryWatcher:: Triggered with /user/username/rootfolder/otherfolder/a/b/node_modules/@types/lodash/package.json :: WatchInfo: /user/username/rootfolder/otherfolder/a/b/node_modules/@types 1 undefined Project: /user/username/rootfolder/otherfolder/a/b/tsconfig.json WatchType: Type roots +Info 512 [00:12:11.000] DirectoryWatcher:: Triggered with /user/username/rootfolder/otherfolder/a/b/node_modules/@types/lodash/package.json :: WatchInfo: /user/username/rootfolder/otherfolder/a/b/node_modules 1 undefined Project: /user/username/rootfolder/otherfolder/a/b/tsconfig.json WatchType: Failed Lookup Locations +Info 513 [00:12:12.000] Scheduled: /user/username/rootfolder/otherfolder/a/b/tsconfig.jsonFailedLookupInvalidation, Cancelled earlier one +Info 514 [00:12:13.000] Elapsed:: *ms DirectoryWatcher:: Triggered with /user/username/rootfolder/otherfolder/a/b/node_modules/@types/lodash/package.json :: WatchInfo: /user/username/rootfolder/otherfolder/a/b/node_modules 1 undefined Project: /user/username/rootfolder/otherfolder/a/b/tsconfig.json WatchType: Failed Lookup Locations +Info 515 [00:12:14.000] DirectoryWatcher:: Triggered with /user/username/rootfolder/otherfolder/a/b/node_modules/@types/lodash/package.json :: WatchInfo: /user/username/rootfolder/otherfolder/a/b 1 undefined Config: /user/username/rootfolder/otherfolder/a/b/tsconfig.json WatchType: Wild card directory +Info 516 [00:12:15.000] Project: /user/username/rootfolder/otherfolder/a/b/tsconfig.json Detected file add/remove of non supported extension: /user/username/rootfolder/otherfolder/a/b/node_modules/@types/lodash/package.json +Info 517 [00:12:16.000] Elapsed:: *ms DirectoryWatcher:: Triggered with /user/username/rootfolder/otherfolder/a/b/node_modules/@types/lodash/package.json :: WatchInfo: /user/username/rootfolder/otherfolder/a/b 1 undefined Config: /user/username/rootfolder/otherfolder/a/b/tsconfig.json WatchType: Wild card directory +Info 518 [00:12:19.000] DirectoryWatcher:: Triggered with /user/username/rootfolder/otherfolder/a/b/node_modules/lodash/index.js :: WatchInfo: /user/username/rootfolder/otherfolder/a/b/node_modules 1 undefined Project: /user/username/rootfolder/otherfolder/a/b/tsconfig.json WatchType: Failed Lookup Locations +Info 519 [00:12:20.000] Scheduled: /user/username/rootfolder/otherfolder/a/b/tsconfig.jsonFailedLookupInvalidation, Cancelled earlier one +Info 520 [00:12:21.000] Elapsed:: *ms DirectoryWatcher:: Triggered with /user/username/rootfolder/otherfolder/a/b/node_modules/lodash/index.js :: WatchInfo: /user/username/rootfolder/otherfolder/a/b/node_modules 1 undefined Project: /user/username/rootfolder/otherfolder/a/b/tsconfig.json WatchType: Failed Lookup Locations +Info 521 [00:12:22.000] DirectoryWatcher:: Triggered with /user/username/rootfolder/otherfolder/a/b/node_modules/lodash/index.js :: WatchInfo: /user/username/rootfolder/otherfolder/a/b 1 undefined Config: /user/username/rootfolder/otherfolder/a/b/tsconfig.json WatchType: Wild card directory +Info 522 [00:12:23.000] Project: /user/username/rootfolder/otherfolder/a/b/tsconfig.json Detected file add/remove of non supported extension: /user/username/rootfolder/otherfolder/a/b/node_modules/lodash/index.js +Info 523 [00:12:24.000] Elapsed:: *ms DirectoryWatcher:: Triggered with /user/username/rootfolder/otherfolder/a/b/node_modules/lodash/index.js :: WatchInfo: /user/username/rootfolder/otherfolder/a/b 1 undefined Config: /user/username/rootfolder/otherfolder/a/b/tsconfig.json WatchType: Wild card directory +Info 524 [00:12:27.000] DirectoryWatcher:: Triggered with /user/username/rootfolder/otherfolder/a/b/node_modules/rxjs/bundles :: WatchInfo: /user/username/rootfolder/otherfolder/a/b/node_modules 1 undefined Project: /user/username/rootfolder/otherfolder/a/b/tsconfig.json WatchType: Failed Lookup Locations +Info 525 [00:12:28.000] Elapsed:: *ms DirectoryWatcher:: Triggered with /user/username/rootfolder/otherfolder/a/b/node_modules/rxjs/bundles :: WatchInfo: /user/username/rootfolder/otherfolder/a/b/node_modules 1 undefined Project: /user/username/rootfolder/otherfolder/a/b/tsconfig.json WatchType: Failed Lookup Locations +Info 526 [00:12:29.000] DirectoryWatcher:: Triggered with /user/username/rootfolder/otherfolder/a/b/node_modules/rxjs/bundles :: WatchInfo: /user/username/rootfolder/otherfolder/a/b 1 undefined Config: /user/username/rootfolder/otherfolder/a/b/tsconfig.json WatchType: Wild card directory +Info 527 [00:12:30.000] Scheduled: /user/username/rootfolder/otherfolder/a/b/tsconfig.json, Cancelled earlier one +Info 528 [00:12:31.000] Scheduled: *ensureProjectForOpenFiles*, Cancelled earlier one +Info 529 [00:12:32.000] Elapsed:: *ms DirectoryWatcher:: Triggered with /user/username/rootfolder/otherfolder/a/b/node_modules/rxjs/bundles :: WatchInfo: /user/username/rootfolder/otherfolder/a/b 1 undefined Config: /user/username/rootfolder/otherfolder/a/b/tsconfig.json WatchType: Wild card directory +Info 530 [00:12:35.000] DirectoryWatcher:: Triggered with /user/username/rootfolder/otherfolder/a/b/node_modules/rxjs/operator :: WatchInfo: /user/username/rootfolder/otherfolder/a/b/node_modules 1 undefined Project: /user/username/rootfolder/otherfolder/a/b/tsconfig.json WatchType: Failed Lookup Locations +Info 531 [00:12:36.000] Elapsed:: *ms DirectoryWatcher:: Triggered with /user/username/rootfolder/otherfolder/a/b/node_modules/rxjs/operator :: WatchInfo: /user/username/rootfolder/otherfolder/a/b/node_modules 1 undefined Project: /user/username/rootfolder/otherfolder/a/b/tsconfig.json WatchType: Failed Lookup Locations +Info 532 [00:12:37.000] DirectoryWatcher:: Triggered with /user/username/rootfolder/otherfolder/a/b/node_modules/rxjs/operator :: WatchInfo: /user/username/rootfolder/otherfolder/a/b 1 undefined Config: /user/username/rootfolder/otherfolder/a/b/tsconfig.json WatchType: Wild card directory +Info 533 [00:12:38.000] Scheduled: /user/username/rootfolder/otherfolder/a/b/tsconfig.json, Cancelled earlier one +Info 534 [00:12:39.000] Scheduled: *ensureProjectForOpenFiles*, Cancelled earlier one +Info 535 [00:12:40.000] Elapsed:: *ms DirectoryWatcher:: Triggered with /user/username/rootfolder/otherfolder/a/b/node_modules/rxjs/operator :: WatchInfo: /user/username/rootfolder/otherfolder/a/b 1 undefined Config: /user/username/rootfolder/otherfolder/a/b/tsconfig.json WatchType: Wild card directory +Info 536 [00:12:45.000] DirectoryWatcher:: Triggered with /user/username/rootfolder/otherfolder/a/b/node_modules/rxjs/src :: WatchInfo: /user/username/rootfolder/otherfolder/a/b/node_modules 1 undefined Project: /user/username/rootfolder/otherfolder/a/b/tsconfig.json WatchType: Failed Lookup Locations +Info 537 [00:12:46.000] Elapsed:: *ms DirectoryWatcher:: Triggered with /user/username/rootfolder/otherfolder/a/b/node_modules/rxjs/src :: WatchInfo: /user/username/rootfolder/otherfolder/a/b/node_modules 1 undefined Project: /user/username/rootfolder/otherfolder/a/b/tsconfig.json WatchType: Failed Lookup Locations +Info 538 [00:12:47.000] DirectoryWatcher:: Triggered with /user/username/rootfolder/otherfolder/a/b/node_modules/rxjs/src :: WatchInfo: /user/username/rootfolder/otherfolder/a/b 1 undefined Config: /user/username/rootfolder/otherfolder/a/b/tsconfig.json WatchType: Wild card directory +Info 539 [00:12:48.000] Scheduled: /user/username/rootfolder/otherfolder/a/b/tsconfig.json, Cancelled earlier one +Info 540 [00:12:49.000] Scheduled: *ensureProjectForOpenFiles*, Cancelled earlier one +Info 541 [00:12:50.000] Elapsed:: *ms DirectoryWatcher:: Triggered with /user/username/rootfolder/otherfolder/a/b/node_modules/rxjs/src :: WatchInfo: /user/username/rootfolder/otherfolder/a/b 1 undefined Config: /user/username/rootfolder/otherfolder/a/b/tsconfig.json WatchType: Wild card directory +Info 542 [00:12:52.000] DirectoryWatcher:: Triggered with /user/username/rootfolder/otherfolder/a/b/node_modules/rxjs/src/add :: WatchInfo: /user/username/rootfolder/otherfolder/a/b/node_modules 1 undefined Project: /user/username/rootfolder/otherfolder/a/b/tsconfig.json WatchType: Failed Lookup Locations +Info 543 [00:12:53.000] Elapsed:: *ms DirectoryWatcher:: Triggered with /user/username/rootfolder/otherfolder/a/b/node_modules/rxjs/src/add :: WatchInfo: /user/username/rootfolder/otherfolder/a/b/node_modules 1 undefined Project: /user/username/rootfolder/otherfolder/a/b/tsconfig.json WatchType: Failed Lookup Locations +Info 544 [00:12:54.000] DirectoryWatcher:: Triggered with /user/username/rootfolder/otherfolder/a/b/node_modules/rxjs/src/add :: WatchInfo: /user/username/rootfolder/otherfolder/a/b 1 undefined Config: /user/username/rootfolder/otherfolder/a/b/tsconfig.json WatchType: Wild card directory +Info 545 [00:12:55.000] Scheduled: /user/username/rootfolder/otherfolder/a/b/tsconfig.json, Cancelled earlier one +Info 546 [00:12:56.000] Scheduled: *ensureProjectForOpenFiles*, Cancelled earlier one +Info 547 [00:12:57.000] Elapsed:: *ms DirectoryWatcher:: Triggered with /user/username/rootfolder/otherfolder/a/b/node_modules/rxjs/src/add :: WatchInfo: /user/username/rootfolder/otherfolder/a/b 1 undefined Config: /user/username/rootfolder/otherfolder/a/b/tsconfig.json WatchType: Wild card directory +Info 548 [00:12:59.000] DirectoryWatcher:: Triggered with /user/username/rootfolder/otherfolder/a/b/node_modules/rxjs/src/add/observable :: WatchInfo: /user/username/rootfolder/otherfolder/a/b/node_modules 1 undefined Project: /user/username/rootfolder/otherfolder/a/b/tsconfig.json WatchType: Failed Lookup Locations +Info 549 [00:13:00.000] Elapsed:: *ms DirectoryWatcher:: Triggered with /user/username/rootfolder/otherfolder/a/b/node_modules/rxjs/src/add/observable :: WatchInfo: /user/username/rootfolder/otherfolder/a/b/node_modules 1 undefined Project: /user/username/rootfolder/otherfolder/a/b/tsconfig.json WatchType: Failed Lookup Locations +Info 550 [00:13:01.000] DirectoryWatcher:: Triggered with /user/username/rootfolder/otherfolder/a/b/node_modules/rxjs/src/add/observable :: WatchInfo: /user/username/rootfolder/otherfolder/a/b 1 undefined Config: /user/username/rootfolder/otherfolder/a/b/tsconfig.json WatchType: Wild card directory +Info 551 [00:13:02.000] Scheduled: /user/username/rootfolder/otherfolder/a/b/tsconfig.json, Cancelled earlier one +Info 552 [00:13:03.000] Scheduled: *ensureProjectForOpenFiles*, Cancelled earlier one +Info 553 [00:13:04.000] Elapsed:: *ms DirectoryWatcher:: Triggered with /user/username/rootfolder/otherfolder/a/b/node_modules/rxjs/src/add/observable :: WatchInfo: /user/username/rootfolder/otherfolder/a/b 1 undefined Config: /user/username/rootfolder/otherfolder/a/b/tsconfig.json WatchType: Wild card directory +Info 554 [00:13:07.000] DirectoryWatcher:: Triggered with /user/username/rootfolder/otherfolder/a/b/node_modules/rxjs/src/add/observable/dom :: WatchInfo: /user/username/rootfolder/otherfolder/a/b/node_modules 1 undefined Project: /user/username/rootfolder/otherfolder/a/b/tsconfig.json WatchType: Failed Lookup Locations +Info 555 [00:13:08.000] Elapsed:: *ms DirectoryWatcher:: Triggered with /user/username/rootfolder/otherfolder/a/b/node_modules/rxjs/src/add/observable/dom :: WatchInfo: /user/username/rootfolder/otherfolder/a/b/node_modules 1 undefined Project: /user/username/rootfolder/otherfolder/a/b/tsconfig.json WatchType: Failed Lookup Locations +Info 556 [00:13:09.000] DirectoryWatcher:: Triggered with /user/username/rootfolder/otherfolder/a/b/node_modules/rxjs/src/add/observable/dom :: WatchInfo: /user/username/rootfolder/otherfolder/a/b 1 undefined Config: /user/username/rootfolder/otherfolder/a/b/tsconfig.json WatchType: Wild card directory +Info 557 [00:13:10.000] Scheduled: /user/username/rootfolder/otherfolder/a/b/tsconfig.json, Cancelled earlier one +Info 558 [00:13:11.000] Scheduled: *ensureProjectForOpenFiles*, Cancelled earlier one +Info 559 [00:13:12.000] Elapsed:: *ms DirectoryWatcher:: Triggered with /user/username/rootfolder/otherfolder/a/b/node_modules/rxjs/src/add/observable/dom :: WatchInfo: /user/username/rootfolder/otherfolder/a/b 1 undefined Config: /user/username/rootfolder/otherfolder/a/b/tsconfig.json WatchType: Wild card directory +Info 560 [00:13:15.000] DirectoryWatcher:: Triggered with /user/username/rootfolder/otherfolder/a/b/node_modules/@types/lodash/index.d.ts :: WatchInfo: /user/username/rootfolder/otherfolder/a/b/node_modules/@types 1 undefined Project: /user/username/rootfolder/otherfolder/a/b/tsconfig.json WatchType: Type roots +Info 561 [00:13:16.000] Scheduled: /user/username/rootfolder/otherfolder/a/b/tsconfig.json, Cancelled earlier one +Info 562 [00:13:17.000] Scheduled: *ensureProjectForOpenFiles*, Cancelled earlier one +Info 563 [00:13:18.000] Scheduled: /user/username/rootfolder/otherfolder/a/b/tsconfig.jsonFailedLookupInvalidation, Cancelled earlier one +Info 564 [00:13:19.000] Elapsed:: *ms DirectoryWatcher:: Triggered with /user/username/rootfolder/otherfolder/a/b/node_modules/@types/lodash/index.d.ts :: WatchInfo: /user/username/rootfolder/otherfolder/a/b/node_modules/@types 1 undefined Project: /user/username/rootfolder/otherfolder/a/b/tsconfig.json WatchType: Type roots +Info 565 [00:13:20.000] DirectoryWatcher:: Triggered with /user/username/rootfolder/otherfolder/a/b/node_modules/@types/lodash/index.d.ts :: WatchInfo: /user/username/rootfolder/otherfolder/a/b/node_modules 1 undefined Project: /user/username/rootfolder/otherfolder/a/b/tsconfig.json WatchType: Failed Lookup Locations +Info 566 [00:13:21.000] Scheduled: /user/username/rootfolder/otherfolder/a/b/tsconfig.jsonFailedLookupInvalidation, Cancelled earlier one +Info 567 [00:13:22.000] Elapsed:: *ms DirectoryWatcher:: Triggered with /user/username/rootfolder/otherfolder/a/b/node_modules/@types/lodash/index.d.ts :: WatchInfo: /user/username/rootfolder/otherfolder/a/b/node_modules 1 undefined Project: /user/username/rootfolder/otherfolder/a/b/tsconfig.json WatchType: Failed Lookup Locations +Info 568 [00:13:23.000] DirectoryWatcher:: Triggered with /user/username/rootfolder/otherfolder/a/b/node_modules/@types/lodash/index.d.ts :: WatchInfo: /user/username/rootfolder/otherfolder/a/b 1 undefined Config: /user/username/rootfolder/otherfolder/a/b/tsconfig.json WatchType: Wild card directory +Info 569 [00:13:24.000] Scheduled: /user/username/rootfolder/otherfolder/a/b/tsconfig.json, Cancelled earlier one +Info 570 [00:13:25.000] Scheduled: *ensureProjectForOpenFiles*, Cancelled earlier one +Info 571 [00:13:26.000] Elapsed:: *ms DirectoryWatcher:: Triggered with /user/username/rootfolder/otherfolder/a/b/node_modules/@types/lodash/index.d.ts :: WatchInfo: /user/username/rootfolder/otherfolder/a/b 1 undefined Config: /user/username/rootfolder/otherfolder/a/b/tsconfig.json WatchType: Wild card directory +Info 572 [00:13:29.000] DirectoryWatcher:: Triggered with /user/username/rootfolder/otherfolder/a/b/node_modules/rxjs/src/scheduler :: WatchInfo: /user/username/rootfolder/otherfolder/a/b/node_modules 1 undefined Project: /user/username/rootfolder/otherfolder/a/b/tsconfig.json WatchType: Failed Lookup Locations +Info 573 [00:13:30.000] Elapsed:: *ms DirectoryWatcher:: Triggered with /user/username/rootfolder/otherfolder/a/b/node_modules/rxjs/src/scheduler :: WatchInfo: /user/username/rootfolder/otherfolder/a/b/node_modules 1 undefined Project: /user/username/rootfolder/otherfolder/a/b/tsconfig.json WatchType: Failed Lookup Locations +Info 574 [00:13:31.000] DirectoryWatcher:: Triggered with /user/username/rootfolder/otherfolder/a/b/node_modules/rxjs/src/scheduler :: WatchInfo: /user/username/rootfolder/otherfolder/a/b 1 undefined Config: /user/username/rootfolder/otherfolder/a/b/tsconfig.json WatchType: Wild card directory +Info 575 [00:13:32.000] Scheduled: /user/username/rootfolder/otherfolder/a/b/tsconfig.json, Cancelled earlier one +Info 576 [00:13:33.000] Scheduled: *ensureProjectForOpenFiles*, Cancelled earlier one +Info 577 [00:13:34.000] Elapsed:: *ms DirectoryWatcher:: Triggered with /user/username/rootfolder/otherfolder/a/b/node_modules/rxjs/src/scheduler :: WatchInfo: /user/username/rootfolder/otherfolder/a/b 1 undefined Config: /user/username/rootfolder/otherfolder/a/b/tsconfig.json WatchType: Wild card directory +Info 578 [00:13:37.000] DirectoryWatcher:: Triggered with /user/username/rootfolder/otherfolder/a/b/node_modules/rxjs/src/util :: WatchInfo: /user/username/rootfolder/otherfolder/a/b/node_modules 1 undefined Project: /user/username/rootfolder/otherfolder/a/b/tsconfig.json WatchType: Failed Lookup Locations +Info 579 [00:13:38.000] Elapsed:: *ms DirectoryWatcher:: Triggered with /user/username/rootfolder/otherfolder/a/b/node_modules/rxjs/src/util :: WatchInfo: /user/username/rootfolder/otherfolder/a/b/node_modules 1 undefined Project: /user/username/rootfolder/otherfolder/a/b/tsconfig.json WatchType: Failed Lookup Locations +Info 580 [00:13:39.000] DirectoryWatcher:: Triggered with /user/username/rootfolder/otherfolder/a/b/node_modules/rxjs/src/util :: WatchInfo: /user/username/rootfolder/otherfolder/a/b 1 undefined Config: /user/username/rootfolder/otherfolder/a/b/tsconfig.json WatchType: Wild card directory +Info 581 [00:13:40.000] Scheduled: /user/username/rootfolder/otherfolder/a/b/tsconfig.json, Cancelled earlier one +Info 582 [00:13:41.000] Scheduled: *ensureProjectForOpenFiles*, Cancelled earlier one +Info 583 [00:13:42.000] Elapsed:: *ms DirectoryWatcher:: Triggered with /user/username/rootfolder/otherfolder/a/b/node_modules/rxjs/src/util :: WatchInfo: /user/username/rootfolder/otherfolder/a/b 1 undefined Config: /user/username/rootfolder/otherfolder/a/b/tsconfig.json WatchType: Wild card directory +Info 584 [00:13:45.000] DirectoryWatcher:: Triggered with /user/username/rootfolder/otherfolder/a/b/node_modules/rxjs/symbol :: WatchInfo: /user/username/rootfolder/otherfolder/a/b/node_modules 1 undefined Project: /user/username/rootfolder/otherfolder/a/b/tsconfig.json WatchType: Failed Lookup Locations +Info 585 [00:13:46.000] Elapsed:: *ms DirectoryWatcher:: Triggered with /user/username/rootfolder/otherfolder/a/b/node_modules/rxjs/symbol :: WatchInfo: /user/username/rootfolder/otherfolder/a/b/node_modules 1 undefined Project: /user/username/rootfolder/otherfolder/a/b/tsconfig.json WatchType: Failed Lookup Locations +Info 586 [00:13:47.000] DirectoryWatcher:: Triggered with /user/username/rootfolder/otherfolder/a/b/node_modules/rxjs/symbol :: WatchInfo: /user/username/rootfolder/otherfolder/a/b 1 undefined Config: /user/username/rootfolder/otherfolder/a/b/tsconfig.json WatchType: Wild card directory +Info 587 [00:13:48.000] Scheduled: /user/username/rootfolder/otherfolder/a/b/tsconfig.json, Cancelled earlier one +Info 588 [00:13:49.000] Scheduled: *ensureProjectForOpenFiles*, Cancelled earlier one +Info 589 [00:13:50.000] Elapsed:: *ms DirectoryWatcher:: Triggered with /user/username/rootfolder/otherfolder/a/b/node_modules/rxjs/symbol :: WatchInfo: /user/username/rootfolder/otherfolder/a/b 1 undefined Config: /user/username/rootfolder/otherfolder/a/b/tsconfig.json WatchType: Wild card directory +Info 590 [00:13:53.000] DirectoryWatcher:: Triggered with /user/username/rootfolder/otherfolder/a/b/node_modules/rxjs/testing :: WatchInfo: /user/username/rootfolder/otherfolder/a/b/node_modules 1 undefined Project: /user/username/rootfolder/otherfolder/a/b/tsconfig.json WatchType: Failed Lookup Locations +Info 591 [00:13:54.000] Elapsed:: *ms DirectoryWatcher:: Triggered with /user/username/rootfolder/otherfolder/a/b/node_modules/rxjs/testing :: WatchInfo: /user/username/rootfolder/otherfolder/a/b/node_modules 1 undefined Project: /user/username/rootfolder/otherfolder/a/b/tsconfig.json WatchType: Failed Lookup Locations +Info 592 [00:13:55.000] DirectoryWatcher:: Triggered with /user/username/rootfolder/otherfolder/a/b/node_modules/rxjs/testing :: WatchInfo: /user/username/rootfolder/otherfolder/a/b 1 undefined Config: /user/username/rootfolder/otherfolder/a/b/tsconfig.json WatchType: Wild card directory +Info 593 [00:13:56.000] Scheduled: /user/username/rootfolder/otherfolder/a/b/tsconfig.json, Cancelled earlier one +Info 594 [00:13:57.000] Scheduled: *ensureProjectForOpenFiles*, Cancelled earlier one +Info 595 [00:13:58.000] Elapsed:: *ms DirectoryWatcher:: Triggered with /user/username/rootfolder/otherfolder/a/b/node_modules/rxjs/testing :: WatchInfo: /user/username/rootfolder/otherfolder/a/b 1 undefined Config: /user/username/rootfolder/otherfolder/a/b/tsconfig.json WatchType: Wild card directory Before checking timeout queue length (3) and running //// [/user/username/rootfolder/otherfolder/a/b/node_modules/symbolle/package.json] { @@ -1910,9 +1910,9 @@ FsWatchesRecursive:: /user/username/rootfolder/otherfolder/a/b/node_modules/@types: {} -Info 596 [16:13:59.000] Running: /user/username/rootfolder/otherfolder/a/b/tsconfig.jsonFailedLookupInvalidation -Info 597 [16:14:00.000] Scheduled: /user/username/rootfolder/otherfolder/a/b/tsconfig.json, Cancelled earlier one -Info 598 [16:14:01.000] Scheduled: *ensureProjectForOpenFiles*, Cancelled earlier one +Info 596 [00:13:59.000] Running: /user/username/rootfolder/otherfolder/a/b/tsconfig.jsonFailedLookupInvalidation +Info 597 [00:14:00.000] Scheduled: /user/username/rootfolder/otherfolder/a/b/tsconfig.json, Cancelled earlier one +Info 598 [00:14:01.000] Scheduled: *ensureProjectForOpenFiles*, Cancelled earlier one After checking timeout queue length (3) and running PolledWatches:: @@ -1965,19 +1965,19 @@ FsWatchesRecursive:: /user/username/rootfolder/otherfolder/a/b/node_modules/@types: {} -Info 599 [16:14:02.000] Running: /user/username/rootfolder/otherfolder/a/b/tsconfig.json -Info 600 [16:14:03.000] Starting updateGraphWorker: Project: /user/username/rootfolder/otherfolder/a/b/tsconfig.json -Info 601 [16:14:04.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/rootfolder/otherfolder/a/b/node_modules 1 undefined WatchType: node_modules for closed script infos and package.jsons affecting module specifier cache -Info 602 [16:14:05.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/rootfolder/otherfolder/a/b/node_modules 1 undefined WatchType: node_modules for closed script infos and package.jsons affecting module specifier cache -Info 603 [16:14:06.000] FileWatcher:: Added:: WatchInfo: /user/username/rootfolder/otherfolder/a/b/node_modules/lodash/package.json 2000 undefined Project: /user/username/rootfolder/otherfolder/a/b/tsconfig.json WatchType: File location affecting resolution -Info 604 [16:14:07.000] FileWatcher:: Added:: WatchInfo: /user/username/rootfolder/otherfolder/a/b/node_modules/@types/lodash/package.json 2000 undefined Project: /user/username/rootfolder/otherfolder/a/b/tsconfig.json WatchType: File location affecting resolution -Info 605 [16:14:08.000] DirectoryWatcher:: Close:: WatchInfo: /user/username/rootfolder/otherfolder/a/node_modules 1 undefined Project: /user/username/rootfolder/otherfolder/a/b/tsconfig.json WatchType: Failed Lookup Locations -Info 606 [16:14:09.000] Elapsed:: *ms DirectoryWatcher:: Close:: WatchInfo: /user/username/rootfolder/otherfolder/a/node_modules 1 undefined Project: /user/username/rootfolder/otherfolder/a/b/tsconfig.json WatchType: Failed Lookup Locations -Info 607 [16:14:10.000] DirectoryWatcher:: Close:: WatchInfo: /user/username/rootfolder/otherfolder/node_modules 1 undefined Project: /user/username/rootfolder/otherfolder/a/b/tsconfig.json WatchType: Failed Lookup Locations -Info 608 [16:14:11.000] Elapsed:: *ms DirectoryWatcher:: Close:: WatchInfo: /user/username/rootfolder/otherfolder/node_modules 1 undefined Project: /user/username/rootfolder/otherfolder/a/b/tsconfig.json WatchType: Failed Lookup Locations -Info 609 [16:14:12.000] Finishing updateGraphWorker: Project: /user/username/rootfolder/otherfolder/a/b/tsconfig.json Version: 2 structureChanged: true structureIsReused:: SafeModules Elapsed:: *ms -Info 610 [16:14:13.000] Project '/user/username/rootfolder/otherfolder/a/b/tsconfig.json' (Configured) -Info 611 [16:14:14.000] Files (3) +Info 599 [00:14:02.000] Running: /user/username/rootfolder/otherfolder/a/b/tsconfig.json +Info 600 [00:14:03.000] Starting updateGraphWorker: Project: /user/username/rootfolder/otherfolder/a/b/tsconfig.json +Info 601 [00:14:04.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/rootfolder/otherfolder/a/b/node_modules 1 undefined WatchType: node_modules for closed script infos and package.jsons affecting module specifier cache +Info 602 [00:14:05.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/rootfolder/otherfolder/a/b/node_modules 1 undefined WatchType: node_modules for closed script infos and package.jsons affecting module specifier cache +Info 603 [00:14:06.000] FileWatcher:: Added:: WatchInfo: /user/username/rootfolder/otherfolder/a/b/node_modules/lodash/package.json 2000 undefined Project: /user/username/rootfolder/otherfolder/a/b/tsconfig.json WatchType: File location affecting resolution +Info 604 [00:14:07.000] FileWatcher:: Added:: WatchInfo: /user/username/rootfolder/otherfolder/a/b/node_modules/@types/lodash/package.json 2000 undefined Project: /user/username/rootfolder/otherfolder/a/b/tsconfig.json WatchType: File location affecting resolution +Info 605 [00:14:08.000] DirectoryWatcher:: Close:: WatchInfo: /user/username/rootfolder/otherfolder/a/node_modules 1 undefined Project: /user/username/rootfolder/otherfolder/a/b/tsconfig.json WatchType: Failed Lookup Locations +Info 606 [00:14:09.000] Elapsed:: *ms DirectoryWatcher:: Close:: WatchInfo: /user/username/rootfolder/otherfolder/a/node_modules 1 undefined Project: /user/username/rootfolder/otherfolder/a/b/tsconfig.json WatchType: Failed Lookup Locations +Info 607 [00:14:10.000] DirectoryWatcher:: Close:: WatchInfo: /user/username/rootfolder/otherfolder/node_modules 1 undefined Project: /user/username/rootfolder/otherfolder/a/b/tsconfig.json WatchType: Failed Lookup Locations +Info 608 [00:14:11.000] Elapsed:: *ms DirectoryWatcher:: Close:: WatchInfo: /user/username/rootfolder/otherfolder/node_modules 1 undefined Project: /user/username/rootfolder/otherfolder/a/b/tsconfig.json WatchType: Failed Lookup Locations +Info 609 [00:14:12.000] Finishing updateGraphWorker: Project: /user/username/rootfolder/otherfolder/a/b/tsconfig.json Version: 2 structureChanged: true structureIsReused:: SafeModules Elapsed:: *ms +Info 610 [00:14:13.000] Project '/user/username/rootfolder/otherfolder/a/b/tsconfig.json' (Configured) +Info 611 [00:14:14.000] Files (3) /a/lib/lib.d.ts /user/username/rootfolder/otherfolder/a/b/node_modules/@types/lodash/index.d.ts /user/username/rootfolder/otherfolder/a/b/app.ts @@ -1991,24 +1991,24 @@ Info 611 [16:14:14.000] Files (3) app.ts Matched by default include pattern '**/*' -Info 612 [16:14:15.000] ----------------------------------------------- -Info 613 [16:14:16.000] Running: *ensureProjectForOpenFiles* -Info 614 [16:14:17.000] Before ensureProjectForOpenFiles: -Info 615 [16:14:18.000] Project '/user/username/rootfolder/otherfolder/a/b/tsconfig.json' (Configured) -Info 615 [16:14:19.000] Files (3) - -Info 615 [16:14:20.000] ----------------------------------------------- -Info 615 [16:14:21.000] Open files: -Info 615 [16:14:22.000] FileName: /user/username/rootfolder/otherfolder/a/b/app.ts ProjectRootPath: undefined -Info 615 [16:14:23.000] Projects: /user/username/rootfolder/otherfolder/a/b/tsconfig.json -Info 615 [16:14:24.000] After ensureProjectForOpenFiles: -Info 616 [16:14:25.000] Project '/user/username/rootfolder/otherfolder/a/b/tsconfig.json' (Configured) -Info 616 [16:14:26.000] Files (3) - -Info 616 [16:14:27.000] ----------------------------------------------- -Info 616 [16:14:28.000] Open files: -Info 616 [16:14:29.000] FileName: /user/username/rootfolder/otherfolder/a/b/app.ts ProjectRootPath: undefined -Info 616 [16:14:30.000] Projects: /user/username/rootfolder/otherfolder/a/b/tsconfig.json +Info 612 [00:14:15.000] ----------------------------------------------- +Info 613 [00:14:16.000] Running: *ensureProjectForOpenFiles* +Info 614 [00:14:17.000] Before ensureProjectForOpenFiles: +Info 615 [00:14:18.000] Project '/user/username/rootfolder/otherfolder/a/b/tsconfig.json' (Configured) +Info 615 [00:14:19.000] Files (3) + +Info 615 [00:14:20.000] ----------------------------------------------- +Info 615 [00:14:21.000] Open files: +Info 615 [00:14:22.000] FileName: /user/username/rootfolder/otherfolder/a/b/app.ts ProjectRootPath: undefined +Info 615 [00:14:23.000] Projects: /user/username/rootfolder/otherfolder/a/b/tsconfig.json +Info 615 [00:14:24.000] After ensureProjectForOpenFiles: +Info 616 [00:14:25.000] Project '/user/username/rootfolder/otherfolder/a/b/tsconfig.json' (Configured) +Info 616 [00:14:26.000] Files (3) + +Info 616 [00:14:27.000] ----------------------------------------------- +Info 616 [00:14:28.000] Open files: +Info 616 [00:14:29.000] FileName: /user/username/rootfolder/otherfolder/a/b/app.ts ProjectRootPath: undefined +Info 616 [00:14:30.000] Projects: /user/username/rootfolder/otherfolder/a/b/tsconfig.json After running timeout callbacks PolledWatches:: 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 fe28d10e5b847..ced2780dc22d0 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 @@ -1,4 +1,4 @@ -Info 0 [16:00:27.000] Provided types map file "/typesMap.json" doesn't exist +Info 0 [00:00:27.000] Provided types map file "/typesMap.json" doesn't exist Creating project service //// [/user/username/rootfolder/otherfolder/a/b/app.ts] import _ from 'lodash'; @@ -50,11 +50,11 @@ FsWatches:: FsWatchesRecursive:: -Info 1 [16:00:28.000] Search path: /user/username/rootfolder/otherfolder/a/b -Info 2 [16:00:29.000] For info: /user/username/rootfolder/otherfolder/a/b/app.ts :: Config file name: /user/username/rootfolder/otherfolder/a/b/tsconfig.json -Info 3 [16:00:30.000] Creating configuration project /user/username/rootfolder/otherfolder/a/b/tsconfig.json -Info 4 [16:00:31.000] FileWatcher:: Added:: WatchInfo: /user/username/rootfolder/otherfolder/a/b/tsconfig.json 2000 undefined Project: /user/username/rootfolder/otherfolder/a/b/tsconfig.json WatchType: Config file -Info 5 [16:00:32.000] Config: /user/username/rootfolder/otherfolder/a/b/tsconfig.json : { +Info 1 [00:00:28.000] Search path: /user/username/rootfolder/otherfolder/a/b +Info 2 [00:00:29.000] For info: /user/username/rootfolder/otherfolder/a/b/app.ts :: Config file name: /user/username/rootfolder/otherfolder/a/b/tsconfig.json +Info 3 [00:00:30.000] Creating configuration project /user/username/rootfolder/otherfolder/a/b/tsconfig.json +Info 4 [00:00:31.000] FileWatcher:: Added:: WatchInfo: /user/username/rootfolder/otherfolder/a/b/tsconfig.json 2000 undefined Project: /user/username/rootfolder/otherfolder/a/b/tsconfig.json WatchType: Config file +Info 5 [00:00:32.000] Config: /user/username/rootfolder/otherfolder/a/b/tsconfig.json : { "rootNames": [ "/user/username/rootfolder/otherfolder/a/b/app.ts" ], @@ -62,26 +62,26 @@ Info 5 [16:00:32.000] Config: /user/username/rootfolder/otherfolder/a/b/tscon "configFilePath": "/user/username/rootfolder/otherfolder/a/b/tsconfig.json" } } -Info 6 [16:00:33.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/rootfolder/otherfolder/a/b 1 undefined Config: /user/username/rootfolder/otherfolder/a/b/tsconfig.json WatchType: Wild card directory -Info 7 [16:00:34.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/rootfolder/otherfolder/a/b 1 undefined Config: /user/username/rootfolder/otherfolder/a/b/tsconfig.json WatchType: Wild card directory -Info 8 [16:00:35.000] Plugins were requested but not running in environment that supports 'require'. Nothing will be loaded -Info 9 [16:00:36.000] Starting updateGraphWorker: Project: /user/username/rootfolder/otherfolder/a/b/tsconfig.json -Info 10 [16:00:37.000] FileWatcher:: Added:: WatchInfo: /a/lib/lib.d.ts 500 undefined WatchType: Closed Script info -Info 11 [16:00:38.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/rootfolder/otherfolder/a/b/node_modules 1 undefined Project: /user/username/rootfolder/otherfolder/a/b/tsconfig.json WatchType: Failed Lookup Locations -Info 12 [16:00:39.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/rootfolder/otherfolder/a/b/node_modules 1 undefined Project: /user/username/rootfolder/otherfolder/a/b/tsconfig.json WatchType: Failed Lookup Locations -Info 13 [16:00:40.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/rootfolder/otherfolder/a/node_modules 1 undefined Project: /user/username/rootfolder/otherfolder/a/b/tsconfig.json WatchType: Failed Lookup Locations -Info 14 [16:00:41.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/rootfolder/otherfolder/a/node_modules 1 undefined Project: /user/username/rootfolder/otherfolder/a/b/tsconfig.json WatchType: Failed Lookup Locations -Info 15 [16:00:42.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/rootfolder/otherfolder/node_modules 1 undefined Project: /user/username/rootfolder/otherfolder/a/b/tsconfig.json WatchType: Failed Lookup Locations -Info 16 [16:00:43.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/rootfolder/otherfolder/node_modules 1 undefined Project: /user/username/rootfolder/otherfolder/a/b/tsconfig.json WatchType: Failed Lookup Locations -Info 17 [16:00:44.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/rootfolder/otherfolder/a/b/node_modules/@types 1 undefined Project: /user/username/rootfolder/otherfolder/a/b/tsconfig.json WatchType: Type roots -Info 18 [16:00:45.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/rootfolder/otherfolder/a/b/node_modules/@types 1 undefined Project: /user/username/rootfolder/otherfolder/a/b/tsconfig.json WatchType: Type roots -Info 19 [16:00:46.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/rootfolder/otherfolder/a/node_modules/@types 1 undefined Project: /user/username/rootfolder/otherfolder/a/b/tsconfig.json WatchType: Type roots -Info 20 [16:00:47.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/rootfolder/otherfolder/a/node_modules/@types 1 undefined Project: /user/username/rootfolder/otherfolder/a/b/tsconfig.json WatchType: Type roots -Info 21 [16:00:48.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/rootfolder/otherfolder/node_modules/@types 1 undefined Project: /user/username/rootfolder/otherfolder/a/b/tsconfig.json WatchType: Type roots -Info 22 [16:00:49.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/rootfolder/otherfolder/node_modules/@types 1 undefined Project: /user/username/rootfolder/otherfolder/a/b/tsconfig.json WatchType: Type roots -Info 23 [16:00:50.000] Finishing updateGraphWorker: Project: /user/username/rootfolder/otherfolder/a/b/tsconfig.json Version: 1 structureChanged: true structureIsReused:: Not Elapsed:: *ms -Info 24 [16:00:51.000] Project '/user/username/rootfolder/otherfolder/a/b/tsconfig.json' (Configured) -Info 25 [16:00:52.000] Files (2) +Info 6 [00:00:33.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/rootfolder/otherfolder/a/b 1 undefined Config: /user/username/rootfolder/otherfolder/a/b/tsconfig.json WatchType: Wild card directory +Info 7 [00:00:34.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/rootfolder/otherfolder/a/b 1 undefined Config: /user/username/rootfolder/otherfolder/a/b/tsconfig.json WatchType: Wild card directory +Info 8 [00:00:35.000] Plugins were requested but not running in environment that supports 'require'. Nothing will be loaded +Info 9 [00:00:36.000] Starting updateGraphWorker: Project: /user/username/rootfolder/otherfolder/a/b/tsconfig.json +Info 10 [00:00:37.000] FileWatcher:: Added:: WatchInfo: /a/lib/lib.d.ts 500 undefined WatchType: Closed Script info +Info 11 [00:00:38.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/rootfolder/otherfolder/a/b/node_modules 1 undefined Project: /user/username/rootfolder/otherfolder/a/b/tsconfig.json WatchType: Failed Lookup Locations +Info 12 [00:00:39.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/rootfolder/otherfolder/a/b/node_modules 1 undefined Project: /user/username/rootfolder/otherfolder/a/b/tsconfig.json WatchType: Failed Lookup Locations +Info 13 [00:00:40.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/rootfolder/otherfolder/a/node_modules 1 undefined Project: /user/username/rootfolder/otherfolder/a/b/tsconfig.json WatchType: Failed Lookup Locations +Info 14 [00:00:41.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/rootfolder/otherfolder/a/node_modules 1 undefined Project: /user/username/rootfolder/otherfolder/a/b/tsconfig.json WatchType: Failed Lookup Locations +Info 15 [00:00:42.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/rootfolder/otherfolder/node_modules 1 undefined Project: /user/username/rootfolder/otherfolder/a/b/tsconfig.json WatchType: Failed Lookup Locations +Info 16 [00:00:43.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/rootfolder/otherfolder/node_modules 1 undefined Project: /user/username/rootfolder/otherfolder/a/b/tsconfig.json WatchType: Failed Lookup Locations +Info 17 [00:00:44.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/rootfolder/otherfolder/a/b/node_modules/@types 1 undefined Project: /user/username/rootfolder/otherfolder/a/b/tsconfig.json WatchType: Type roots +Info 18 [00:00:45.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/rootfolder/otherfolder/a/b/node_modules/@types 1 undefined Project: /user/username/rootfolder/otherfolder/a/b/tsconfig.json WatchType: Type roots +Info 19 [00:00:46.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/rootfolder/otherfolder/a/node_modules/@types 1 undefined Project: /user/username/rootfolder/otherfolder/a/b/tsconfig.json WatchType: Type roots +Info 20 [00:00:47.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/rootfolder/otherfolder/a/node_modules/@types 1 undefined Project: /user/username/rootfolder/otherfolder/a/b/tsconfig.json WatchType: Type roots +Info 21 [00:00:48.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/rootfolder/otherfolder/node_modules/@types 1 undefined Project: /user/username/rootfolder/otherfolder/a/b/tsconfig.json WatchType: Type roots +Info 22 [00:00:49.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/rootfolder/otherfolder/node_modules/@types 1 undefined Project: /user/username/rootfolder/otherfolder/a/b/tsconfig.json WatchType: Type roots +Info 23 [00:00:50.000] Finishing updateGraphWorker: Project: /user/username/rootfolder/otherfolder/a/b/tsconfig.json Version: 1 structureChanged: true structureIsReused:: Not Elapsed:: *ms +Info 24 [00:00:51.000] Project '/user/username/rootfolder/otherfolder/a/b/tsconfig.json' (Configured) +Info 25 [00:00:52.000] Files (2) /a/lib/lib.d.ts /user/username/rootfolder/otherfolder/a/b/app.ts @@ -91,101 +91,101 @@ Info 25 [16:00:52.000] Files (2) app.ts Matched by default include pattern '**/*' -Info 26 [16:00:53.000] ----------------------------------------------- -Info 27 [16:00:54.000] Project '/user/username/rootfolder/otherfolder/a/b/tsconfig.json' (Configured) -Info 27 [16:00:55.000] Files (2) - -Info 27 [16:00:56.000] ----------------------------------------------- -Info 27 [16:00:57.000] Open files: -Info 27 [16:00:58.000] FileName: /user/username/rootfolder/otherfolder/a/b/app.ts ProjectRootPath: undefined -Info 27 [16:00:59.000] Projects: /user/username/rootfolder/otherfolder/a/b/tsconfig.json -Info 27 [16:01:02.000] DirectoryWatcher:: Triggered with /user/username/rootfolder/otherfolder/a/b/node_modules :: WatchInfo: /user/username/rootfolder/otherfolder/a/b/node_modules 1 undefined Project: /user/username/rootfolder/otherfolder/a/b/tsconfig.json WatchType: Failed Lookup Locations -Info 28 [16:01:03.000] Scheduled: /user/username/rootfolder/otherfolder/a/b/tsconfig.jsonFailedLookupInvalidation -Info 29 [16:01:04.000] Elapsed:: *ms DirectoryWatcher:: Triggered with /user/username/rootfolder/otherfolder/a/b/node_modules :: WatchInfo: /user/username/rootfolder/otherfolder/a/b/node_modules 1 undefined Project: /user/username/rootfolder/otherfolder/a/b/tsconfig.json WatchType: Failed Lookup Locations -Info 30 [16:01:05.000] DirectoryWatcher:: Triggered with /user/username/rootfolder/otherfolder/a/b/node_modules :: WatchInfo: /user/username/rootfolder/otherfolder/a/b/node_modules 1 undefined Project: /user/username/rootfolder/otherfolder/a/b/tsconfig.json WatchType: Failed Lookup Locations -Info 31 [16:01:06.000] Scheduled: /user/username/rootfolder/otherfolder/a/b/tsconfig.jsonFailedLookupInvalidation, Cancelled earlier one -Info 32 [16:01:07.000] Elapsed:: *ms DirectoryWatcher:: Triggered with /user/username/rootfolder/otherfolder/a/b/node_modules :: WatchInfo: /user/username/rootfolder/otherfolder/a/b/node_modules 1 undefined Project: /user/username/rootfolder/otherfolder/a/b/tsconfig.json WatchType: Failed Lookup Locations -Info 33 [16:01:08.000] DirectoryWatcher:: Triggered with /user/username/rootfolder/otherfolder/a/b/node_modules :: WatchInfo: /user/username/rootfolder/otherfolder/a/b 1 undefined Config: /user/username/rootfolder/otherfolder/a/b/tsconfig.json WatchType: Wild card directory -Info 34 [16:01:09.000] Scheduled: /user/username/rootfolder/otherfolder/a/b/tsconfig.json -Info 35 [16:01:10.000] Scheduled: *ensureProjectForOpenFiles* -Info 36 [16:01:11.000] Elapsed:: *ms DirectoryWatcher:: Triggered with /user/username/rootfolder/otherfolder/a/b/node_modules :: WatchInfo: /user/username/rootfolder/otherfolder/a/b 1 undefined Config: /user/username/rootfolder/otherfolder/a/b/tsconfig.json WatchType: Wild card directory -Info 37 [16:01:14.000] DirectoryWatcher:: Triggered with /user/username/rootfolder/otherfolder/a/b/node_modules/.staging :: WatchInfo: /user/username/rootfolder/otherfolder/a/b/node_modules 1 undefined Project: /user/username/rootfolder/otherfolder/a/b/tsconfig.json WatchType: Failed Lookup Locations -Info 38 [16:01:15.000] Scheduled: /user/username/rootfolder/otherfolder/a/b/tsconfig.jsonFailedLookupInvalidation, Cancelled earlier one -Info 39 [16:01:16.000] Elapsed:: *ms DirectoryWatcher:: Triggered with /user/username/rootfolder/otherfolder/a/b/node_modules/.staging :: WatchInfo: /user/username/rootfolder/otherfolder/a/b/node_modules 1 undefined Project: /user/username/rootfolder/otherfolder/a/b/tsconfig.json WatchType: Failed Lookup Locations -Info 40 [16:01:17.000] DirectoryWatcher:: Triggered with /user/username/rootfolder/otherfolder/a/b/node_modules/.staging :: WatchInfo: /user/username/rootfolder/otherfolder/a/b 1 undefined Config: /user/username/rootfolder/otherfolder/a/b/tsconfig.json WatchType: Wild card directory -Info 41 [16:01:18.000] Scheduled: /user/username/rootfolder/otherfolder/a/b/tsconfig.json, Cancelled earlier one -Info 42 [16:01:19.000] Scheduled: *ensureProjectForOpenFiles*, Cancelled earlier one -Info 43 [16:01:20.000] Elapsed:: *ms DirectoryWatcher:: Triggered with /user/username/rootfolder/otherfolder/a/b/node_modules/.staging :: WatchInfo: /user/username/rootfolder/otherfolder/a/b 1 undefined Config: /user/username/rootfolder/otherfolder/a/b/tsconfig.json WatchType: Wild card directory -Info 44 [16:01:23.000] DirectoryWatcher:: Triggered with /user/username/rootfolder/otherfolder/a/b/node_modules/.staging/@types :: WatchInfo: /user/username/rootfolder/otherfolder/a/b/node_modules 1 undefined Project: /user/username/rootfolder/otherfolder/a/b/tsconfig.json WatchType: Failed Lookup Locations -Info 45 [16:01:24.000] Elapsed:: *ms DirectoryWatcher:: Triggered with /user/username/rootfolder/otherfolder/a/b/node_modules/.staging/@types :: WatchInfo: /user/username/rootfolder/otherfolder/a/b/node_modules 1 undefined Project: /user/username/rootfolder/otherfolder/a/b/tsconfig.json WatchType: Failed Lookup Locations -Info 46 [16:01:25.000] DirectoryWatcher:: Triggered with /user/username/rootfolder/otherfolder/a/b/node_modules/.staging/@types :: WatchInfo: /user/username/rootfolder/otherfolder/a/b 1 undefined Config: /user/username/rootfolder/otherfolder/a/b/tsconfig.json WatchType: Wild card directory -Info 47 [16:01:26.000] Project: /user/username/rootfolder/otherfolder/a/b/tsconfig.json Detected ignored path: /user/username/rootfolder/otherfolder/a/b/node_modules/.staging/@types -Info 48 [16:01:27.000] Elapsed:: *ms DirectoryWatcher:: Triggered with /user/username/rootfolder/otherfolder/a/b/node_modules/.staging/@types :: WatchInfo: /user/username/rootfolder/otherfolder/a/b 1 undefined Config: /user/username/rootfolder/otherfolder/a/b/tsconfig.json WatchType: Wild card directory -Info 49 [16:01:30.000] DirectoryWatcher:: Triggered with /user/username/rootfolder/otherfolder/a/b/node_modules/.staging/lodash-b0733faa :: WatchInfo: /user/username/rootfolder/otherfolder/a/b/node_modules 1 undefined Project: /user/username/rootfolder/otherfolder/a/b/tsconfig.json WatchType: Failed Lookup Locations -Info 50 [16:01:31.000] Elapsed:: *ms DirectoryWatcher:: Triggered with /user/username/rootfolder/otherfolder/a/b/node_modules/.staging/lodash-b0733faa :: WatchInfo: /user/username/rootfolder/otherfolder/a/b/node_modules 1 undefined Project: /user/username/rootfolder/otherfolder/a/b/tsconfig.json WatchType: Failed Lookup Locations -Info 51 [16:01:32.000] DirectoryWatcher:: Triggered with /user/username/rootfolder/otherfolder/a/b/node_modules/.staging/lodash-b0733faa :: WatchInfo: /user/username/rootfolder/otherfolder/a/b 1 undefined Config: /user/username/rootfolder/otherfolder/a/b/tsconfig.json WatchType: Wild card directory -Info 52 [16:01:33.000] Project: /user/username/rootfolder/otherfolder/a/b/tsconfig.json Detected ignored path: /user/username/rootfolder/otherfolder/a/b/node_modules/.staging/lodash-b0733faa -Info 53 [16:01:34.000] Elapsed:: *ms DirectoryWatcher:: Triggered with /user/username/rootfolder/otherfolder/a/b/node_modules/.staging/lodash-b0733faa :: WatchInfo: /user/username/rootfolder/otherfolder/a/b 1 undefined Config: /user/username/rootfolder/otherfolder/a/b/tsconfig.json WatchType: Wild card directory -Info 54 [16:01:37.000] DirectoryWatcher:: Triggered with /user/username/rootfolder/otherfolder/a/b/node_modules/.staging/@types/lodash-e56c4fe7 :: WatchInfo: /user/username/rootfolder/otherfolder/a/b/node_modules 1 undefined Project: /user/username/rootfolder/otherfolder/a/b/tsconfig.json WatchType: Failed Lookup Locations -Info 55 [16:01:38.000] Elapsed:: *ms DirectoryWatcher:: Triggered with /user/username/rootfolder/otherfolder/a/b/node_modules/.staging/@types/lodash-e56c4fe7 :: WatchInfo: /user/username/rootfolder/otherfolder/a/b/node_modules 1 undefined Project: /user/username/rootfolder/otherfolder/a/b/tsconfig.json WatchType: Failed Lookup Locations -Info 56 [16:01:39.000] DirectoryWatcher:: Triggered with /user/username/rootfolder/otherfolder/a/b/node_modules/.staging/@types/lodash-e56c4fe7 :: WatchInfo: /user/username/rootfolder/otherfolder/a/b 1 undefined Config: /user/username/rootfolder/otherfolder/a/b/tsconfig.json WatchType: Wild card directory -Info 57 [16:01:40.000] Project: /user/username/rootfolder/otherfolder/a/b/tsconfig.json Detected ignored path: /user/username/rootfolder/otherfolder/a/b/node_modules/.staging/@types/lodash-e56c4fe7 -Info 58 [16:01:41.000] Elapsed:: *ms DirectoryWatcher:: Triggered with /user/username/rootfolder/otherfolder/a/b/node_modules/.staging/@types/lodash-e56c4fe7 :: WatchInfo: /user/username/rootfolder/otherfolder/a/b 1 undefined Config: /user/username/rootfolder/otherfolder/a/b/tsconfig.json WatchType: Wild card directory -Info 59 [16:01:44.000] DirectoryWatcher:: Triggered with /user/username/rootfolder/otherfolder/a/b/node_modules/.staging/symbol-observable-24bcbbff :: WatchInfo: /user/username/rootfolder/otherfolder/a/b/node_modules 1 undefined Project: /user/username/rootfolder/otherfolder/a/b/tsconfig.json WatchType: Failed Lookup Locations -Info 60 [16:01:45.000] Elapsed:: *ms DirectoryWatcher:: Triggered with /user/username/rootfolder/otherfolder/a/b/node_modules/.staging/symbol-observable-24bcbbff :: WatchInfo: /user/username/rootfolder/otherfolder/a/b/node_modules 1 undefined Project: /user/username/rootfolder/otherfolder/a/b/tsconfig.json WatchType: Failed Lookup Locations -Info 61 [16:01:46.000] DirectoryWatcher:: Triggered with /user/username/rootfolder/otherfolder/a/b/node_modules/.staging/symbol-observable-24bcbbff :: WatchInfo: /user/username/rootfolder/otherfolder/a/b 1 undefined Config: /user/username/rootfolder/otherfolder/a/b/tsconfig.json WatchType: Wild card directory -Info 62 [16:01:47.000] Project: /user/username/rootfolder/otherfolder/a/b/tsconfig.json Detected ignored path: /user/username/rootfolder/otherfolder/a/b/node_modules/.staging/symbol-observable-24bcbbff -Info 63 [16:01:48.000] Elapsed:: *ms DirectoryWatcher:: Triggered with /user/username/rootfolder/otherfolder/a/b/node_modules/.staging/symbol-observable-24bcbbff :: WatchInfo: /user/username/rootfolder/otherfolder/a/b 1 undefined Config: /user/username/rootfolder/otherfolder/a/b/tsconfig.json WatchType: Wild card directory -Info 64 [16:01:51.000] DirectoryWatcher:: Triggered with /user/username/rootfolder/otherfolder/a/b/node_modules/.staging/rxjs-22375c61 :: WatchInfo: /user/username/rootfolder/otherfolder/a/b/node_modules 1 undefined Project: /user/username/rootfolder/otherfolder/a/b/tsconfig.json WatchType: Failed Lookup Locations -Info 65 [16:01:52.000] Elapsed:: *ms DirectoryWatcher:: Triggered with /user/username/rootfolder/otherfolder/a/b/node_modules/.staging/rxjs-22375c61 :: WatchInfo: /user/username/rootfolder/otherfolder/a/b/node_modules 1 undefined Project: /user/username/rootfolder/otherfolder/a/b/tsconfig.json WatchType: Failed Lookup Locations -Info 66 [16:01:53.000] DirectoryWatcher:: Triggered with /user/username/rootfolder/otherfolder/a/b/node_modules/.staging/rxjs-22375c61 :: WatchInfo: /user/username/rootfolder/otherfolder/a/b 1 undefined Config: /user/username/rootfolder/otherfolder/a/b/tsconfig.json WatchType: Wild card directory -Info 67 [16:01:54.000] Project: /user/username/rootfolder/otherfolder/a/b/tsconfig.json Detected ignored path: /user/username/rootfolder/otherfolder/a/b/node_modules/.staging/rxjs-22375c61 -Info 68 [16:01:55.000] Elapsed:: *ms DirectoryWatcher:: Triggered with /user/username/rootfolder/otherfolder/a/b/node_modules/.staging/rxjs-22375c61 :: WatchInfo: /user/username/rootfolder/otherfolder/a/b 1 undefined Config: /user/username/rootfolder/otherfolder/a/b/tsconfig.json WatchType: Wild card directory -Info 69 [16:01:58.000] DirectoryWatcher:: Triggered with /user/username/rootfolder/otherfolder/a/b/node_modules/.staging/typescript-8493ea5d :: WatchInfo: /user/username/rootfolder/otherfolder/a/b/node_modules 1 undefined Project: /user/username/rootfolder/otherfolder/a/b/tsconfig.json WatchType: Failed Lookup Locations -Info 70 [16:01:59.000] Elapsed:: *ms DirectoryWatcher:: Triggered with /user/username/rootfolder/otherfolder/a/b/node_modules/.staging/typescript-8493ea5d :: WatchInfo: /user/username/rootfolder/otherfolder/a/b/node_modules 1 undefined Project: /user/username/rootfolder/otherfolder/a/b/tsconfig.json WatchType: Failed Lookup Locations -Info 71 [16:02:00.000] DirectoryWatcher:: Triggered with /user/username/rootfolder/otherfolder/a/b/node_modules/.staging/typescript-8493ea5d :: WatchInfo: /user/username/rootfolder/otherfolder/a/b 1 undefined Config: /user/username/rootfolder/otherfolder/a/b/tsconfig.json WatchType: Wild card directory -Info 72 [16:02:01.000] Project: /user/username/rootfolder/otherfolder/a/b/tsconfig.json Detected ignored path: /user/username/rootfolder/otherfolder/a/b/node_modules/.staging/typescript-8493ea5d -Info 73 [16:02:02.000] Elapsed:: *ms DirectoryWatcher:: Triggered with /user/username/rootfolder/otherfolder/a/b/node_modules/.staging/typescript-8493ea5d :: WatchInfo: /user/username/rootfolder/otherfolder/a/b 1 undefined Config: /user/username/rootfolder/otherfolder/a/b/tsconfig.json WatchType: Wild card directory -Info 74 [16:02:05.000] DirectoryWatcher:: Triggered with /user/username/rootfolder/otherfolder/a/b/node_modules/.staging/symbol-observable-24bcbbff/package.json :: WatchInfo: /user/username/rootfolder/otherfolder/a/b/node_modules 1 undefined Project: /user/username/rootfolder/otherfolder/a/b/tsconfig.json WatchType: Failed Lookup Locations -Info 75 [16:02:06.000] Elapsed:: *ms DirectoryWatcher:: Triggered with /user/username/rootfolder/otherfolder/a/b/node_modules/.staging/symbol-observable-24bcbbff/package.json :: WatchInfo: /user/username/rootfolder/otherfolder/a/b/node_modules 1 undefined Project: /user/username/rootfolder/otherfolder/a/b/tsconfig.json WatchType: Failed Lookup Locations -Info 76 [16:02:07.000] DirectoryWatcher:: Triggered with /user/username/rootfolder/otherfolder/a/b/node_modules/.staging/symbol-observable-24bcbbff/package.json :: WatchInfo: /user/username/rootfolder/otherfolder/a/b 1 undefined Config: /user/username/rootfolder/otherfolder/a/b/tsconfig.json WatchType: Wild card directory -Info 77 [16:02:08.000] Project: /user/username/rootfolder/otherfolder/a/b/tsconfig.json Detected ignored path: /user/username/rootfolder/otherfolder/a/b/node_modules/.staging/symbol-observable-24bcbbff/package.json -Info 78 [16:02:09.000] Elapsed:: *ms DirectoryWatcher:: Triggered with /user/username/rootfolder/otherfolder/a/b/node_modules/.staging/symbol-observable-24bcbbff/package.json :: WatchInfo: /user/username/rootfolder/otherfolder/a/b 1 undefined Config: /user/username/rootfolder/otherfolder/a/b/tsconfig.json WatchType: Wild card directory -Info 79 [16:02:12.000] DirectoryWatcher:: Triggered with /user/username/rootfolder/otherfolder/a/b/node_modules/.staging/lodash-b0733faa/package.json :: WatchInfo: /user/username/rootfolder/otherfolder/a/b/node_modules 1 undefined Project: /user/username/rootfolder/otherfolder/a/b/tsconfig.json WatchType: Failed Lookup Locations -Info 80 [16:02:13.000] Elapsed:: *ms DirectoryWatcher:: Triggered with /user/username/rootfolder/otherfolder/a/b/node_modules/.staging/lodash-b0733faa/package.json :: WatchInfo: /user/username/rootfolder/otherfolder/a/b/node_modules 1 undefined Project: /user/username/rootfolder/otherfolder/a/b/tsconfig.json WatchType: Failed Lookup Locations -Info 81 [16:02:14.000] DirectoryWatcher:: Triggered with /user/username/rootfolder/otherfolder/a/b/node_modules/.staging/lodash-b0733faa/package.json :: WatchInfo: /user/username/rootfolder/otherfolder/a/b 1 undefined Config: /user/username/rootfolder/otherfolder/a/b/tsconfig.json WatchType: Wild card directory -Info 82 [16:02:15.000] Project: /user/username/rootfolder/otherfolder/a/b/tsconfig.json Detected ignored path: /user/username/rootfolder/otherfolder/a/b/node_modules/.staging/lodash-b0733faa/package.json -Info 83 [16:02:16.000] Elapsed:: *ms DirectoryWatcher:: Triggered with /user/username/rootfolder/otherfolder/a/b/node_modules/.staging/lodash-b0733faa/package.json :: WatchInfo: /user/username/rootfolder/otherfolder/a/b 1 undefined Config: /user/username/rootfolder/otherfolder/a/b/tsconfig.json WatchType: Wild card directory -Info 84 [16:02:19.000] DirectoryWatcher:: Triggered with /user/username/rootfolder/otherfolder/a/b/node_modules/.staging/rxjs-22375c61/package.json :: WatchInfo: /user/username/rootfolder/otherfolder/a/b/node_modules 1 undefined Project: /user/username/rootfolder/otherfolder/a/b/tsconfig.json WatchType: Failed Lookup Locations -Info 85 [16:02:20.000] Elapsed:: *ms DirectoryWatcher:: Triggered with /user/username/rootfolder/otherfolder/a/b/node_modules/.staging/rxjs-22375c61/package.json :: WatchInfo: /user/username/rootfolder/otherfolder/a/b/node_modules 1 undefined Project: /user/username/rootfolder/otherfolder/a/b/tsconfig.json WatchType: Failed Lookup Locations -Info 86 [16:02:21.000] DirectoryWatcher:: Triggered with /user/username/rootfolder/otherfolder/a/b/node_modules/.staging/rxjs-22375c61/package.json :: WatchInfo: /user/username/rootfolder/otherfolder/a/b 1 undefined Config: /user/username/rootfolder/otherfolder/a/b/tsconfig.json WatchType: Wild card directory -Info 87 [16:02:22.000] Project: /user/username/rootfolder/otherfolder/a/b/tsconfig.json Detected ignored path: /user/username/rootfolder/otherfolder/a/b/node_modules/.staging/rxjs-22375c61/package.json -Info 88 [16:02:23.000] Elapsed:: *ms DirectoryWatcher:: Triggered with /user/username/rootfolder/otherfolder/a/b/node_modules/.staging/rxjs-22375c61/package.json :: WatchInfo: /user/username/rootfolder/otherfolder/a/b 1 undefined Config: /user/username/rootfolder/otherfolder/a/b/tsconfig.json WatchType: Wild card directory -Info 89 [16:02:26.000] DirectoryWatcher:: Triggered with /user/username/rootfolder/otherfolder/a/b/node_modules/.staging/typescript-8493ea5d/package.json :: WatchInfo: /user/username/rootfolder/otherfolder/a/b/node_modules 1 undefined Project: /user/username/rootfolder/otherfolder/a/b/tsconfig.json WatchType: Failed Lookup Locations -Info 90 [16:02:27.000] Elapsed:: *ms DirectoryWatcher:: Triggered with /user/username/rootfolder/otherfolder/a/b/node_modules/.staging/typescript-8493ea5d/package.json :: WatchInfo: /user/username/rootfolder/otherfolder/a/b/node_modules 1 undefined Project: /user/username/rootfolder/otherfolder/a/b/tsconfig.json WatchType: Failed Lookup Locations -Info 91 [16:02:28.000] DirectoryWatcher:: Triggered with /user/username/rootfolder/otherfolder/a/b/node_modules/.staging/typescript-8493ea5d/package.json :: WatchInfo: /user/username/rootfolder/otherfolder/a/b 1 undefined Config: /user/username/rootfolder/otherfolder/a/b/tsconfig.json WatchType: Wild card directory -Info 92 [16:02:29.000] Project: /user/username/rootfolder/otherfolder/a/b/tsconfig.json Detected ignored path: /user/username/rootfolder/otherfolder/a/b/node_modules/.staging/typescript-8493ea5d/package.json -Info 93 [16:02:30.000] Elapsed:: *ms DirectoryWatcher:: Triggered with /user/username/rootfolder/otherfolder/a/b/node_modules/.staging/typescript-8493ea5d/package.json :: WatchInfo: /user/username/rootfolder/otherfolder/a/b 1 undefined Config: /user/username/rootfolder/otherfolder/a/b/tsconfig.json WatchType: Wild card directory -Info 94 [16:02:33.000] DirectoryWatcher:: Triggered with /user/username/rootfolder/otherfolder/a/b/node_modules/.staging/symbol-observable-24bcbbff/index.js :: WatchInfo: /user/username/rootfolder/otherfolder/a/b/node_modules 1 undefined Project: /user/username/rootfolder/otherfolder/a/b/tsconfig.json WatchType: Failed Lookup Locations -Info 95 [16:02:34.000] Elapsed:: *ms DirectoryWatcher:: Triggered with /user/username/rootfolder/otherfolder/a/b/node_modules/.staging/symbol-observable-24bcbbff/index.js :: WatchInfo: /user/username/rootfolder/otherfolder/a/b/node_modules 1 undefined Project: /user/username/rootfolder/otherfolder/a/b/tsconfig.json WatchType: Failed Lookup Locations -Info 96 [16:02:35.000] DirectoryWatcher:: Triggered with /user/username/rootfolder/otherfolder/a/b/node_modules/.staging/symbol-observable-24bcbbff/index.js :: WatchInfo: /user/username/rootfolder/otherfolder/a/b 1 undefined Config: /user/username/rootfolder/otherfolder/a/b/tsconfig.json WatchType: Wild card directory -Info 97 [16:02:36.000] Project: /user/username/rootfolder/otherfolder/a/b/tsconfig.json Detected ignored path: /user/username/rootfolder/otherfolder/a/b/node_modules/.staging/symbol-observable-24bcbbff/index.js -Info 98 [16:02:37.000] Elapsed:: *ms DirectoryWatcher:: Triggered with /user/username/rootfolder/otherfolder/a/b/node_modules/.staging/symbol-observable-24bcbbff/index.js :: WatchInfo: /user/username/rootfolder/otherfolder/a/b 1 undefined Config: /user/username/rootfolder/otherfolder/a/b/tsconfig.json WatchType: Wild card directory -Info 99 [16:02:40.000] DirectoryWatcher:: Triggered with /user/username/rootfolder/otherfolder/a/b/node_modules/.staging/symbol-observable-24bcbbff/index.d.ts :: WatchInfo: /user/username/rootfolder/otherfolder/a/b/node_modules 1 undefined Project: /user/username/rootfolder/otherfolder/a/b/tsconfig.json WatchType: Failed Lookup Locations -Info 100 [16:02:41.000] Elapsed:: *ms DirectoryWatcher:: Triggered with /user/username/rootfolder/otherfolder/a/b/node_modules/.staging/symbol-observable-24bcbbff/index.d.ts :: WatchInfo: /user/username/rootfolder/otherfolder/a/b/node_modules 1 undefined Project: /user/username/rootfolder/otherfolder/a/b/tsconfig.json WatchType: Failed Lookup Locations -Info 101 [16:02:42.000] DirectoryWatcher:: Triggered with /user/username/rootfolder/otherfolder/a/b/node_modules/.staging/symbol-observable-24bcbbff/index.d.ts :: WatchInfo: /user/username/rootfolder/otherfolder/a/b 1 undefined Config: /user/username/rootfolder/otherfolder/a/b/tsconfig.json WatchType: Wild card directory -Info 102 [16:02:43.000] Project: /user/username/rootfolder/otherfolder/a/b/tsconfig.json Detected ignored path: /user/username/rootfolder/otherfolder/a/b/node_modules/.staging/symbol-observable-24bcbbff/index.d.ts -Info 103 [16:02:44.000] Elapsed:: *ms DirectoryWatcher:: Triggered with /user/username/rootfolder/otherfolder/a/b/node_modules/.staging/symbol-observable-24bcbbff/index.d.ts :: WatchInfo: /user/username/rootfolder/otherfolder/a/b 1 undefined Config: /user/username/rootfolder/otherfolder/a/b/tsconfig.json WatchType: Wild card directory -Info 104 [16:02:47.000] DirectoryWatcher:: Triggered with /user/username/rootfolder/otherfolder/a/b/node_modules/.staging/symbol-observable-24bcbbff/lib :: WatchInfo: /user/username/rootfolder/otherfolder/a/b/node_modules 1 undefined Project: /user/username/rootfolder/otherfolder/a/b/tsconfig.json WatchType: Failed Lookup Locations -Info 105 [16:02:48.000] Elapsed:: *ms DirectoryWatcher:: Triggered with /user/username/rootfolder/otherfolder/a/b/node_modules/.staging/symbol-observable-24bcbbff/lib :: WatchInfo: /user/username/rootfolder/otherfolder/a/b/node_modules 1 undefined Project: /user/username/rootfolder/otherfolder/a/b/tsconfig.json WatchType: Failed Lookup Locations -Info 106 [16:02:49.000] DirectoryWatcher:: Triggered with /user/username/rootfolder/otherfolder/a/b/node_modules/.staging/symbol-observable-24bcbbff/lib :: WatchInfo: /user/username/rootfolder/otherfolder/a/b 1 undefined Config: /user/username/rootfolder/otherfolder/a/b/tsconfig.json WatchType: Wild card directory -Info 107 [16:02:50.000] Project: /user/username/rootfolder/otherfolder/a/b/tsconfig.json Detected ignored path: /user/username/rootfolder/otherfolder/a/b/node_modules/.staging/symbol-observable-24bcbbff/lib -Info 108 [16:02:51.000] Elapsed:: *ms DirectoryWatcher:: Triggered with /user/username/rootfolder/otherfolder/a/b/node_modules/.staging/symbol-observable-24bcbbff/lib :: WatchInfo: /user/username/rootfolder/otherfolder/a/b 1 undefined Config: /user/username/rootfolder/otherfolder/a/b/tsconfig.json WatchType: Wild card directory -Info 109 [16:02:54.000] DirectoryWatcher:: Triggered with /user/username/rootfolder/otherfolder/a/b/node_modules/.staging/symbol-observable-24bcbbff/lib/index.js :: WatchInfo: /user/username/rootfolder/otherfolder/a/b/node_modules 1 undefined Project: /user/username/rootfolder/otherfolder/a/b/tsconfig.json WatchType: Failed Lookup Locations -Info 110 [16:02:55.000] Elapsed:: *ms DirectoryWatcher:: Triggered with /user/username/rootfolder/otherfolder/a/b/node_modules/.staging/symbol-observable-24bcbbff/lib/index.js :: WatchInfo: /user/username/rootfolder/otherfolder/a/b/node_modules 1 undefined Project: /user/username/rootfolder/otherfolder/a/b/tsconfig.json WatchType: Failed Lookup Locations -Info 111 [16:02:56.000] DirectoryWatcher:: Triggered with /user/username/rootfolder/otherfolder/a/b/node_modules/.staging/symbol-observable-24bcbbff/lib/index.js :: WatchInfo: /user/username/rootfolder/otherfolder/a/b 1 undefined Config: /user/username/rootfolder/otherfolder/a/b/tsconfig.json WatchType: Wild card directory -Info 112 [16:02:57.000] Project: /user/username/rootfolder/otherfolder/a/b/tsconfig.json Detected ignored path: /user/username/rootfolder/otherfolder/a/b/node_modules/.staging/symbol-observable-24bcbbff/lib/index.js -Info 113 [16:02:58.000] Elapsed:: *ms DirectoryWatcher:: Triggered with /user/username/rootfolder/otherfolder/a/b/node_modules/.staging/symbol-observable-24bcbbff/lib/index.js :: WatchInfo: /user/username/rootfolder/otherfolder/a/b 1 undefined Config: /user/username/rootfolder/otherfolder/a/b/tsconfig.json WatchType: Wild card directory +Info 26 [00:00:53.000] ----------------------------------------------- +Info 27 [00:00:54.000] Project '/user/username/rootfolder/otherfolder/a/b/tsconfig.json' (Configured) +Info 27 [00:00:55.000] Files (2) + +Info 27 [00:00:56.000] ----------------------------------------------- +Info 27 [00:00:57.000] Open files: +Info 27 [00:00:58.000] FileName: /user/username/rootfolder/otherfolder/a/b/app.ts ProjectRootPath: undefined +Info 27 [00:00:59.000] Projects: /user/username/rootfolder/otherfolder/a/b/tsconfig.json +Info 27 [00:01:02.000] DirectoryWatcher:: Triggered with /user/username/rootfolder/otherfolder/a/b/node_modules :: WatchInfo: /user/username/rootfolder/otherfolder/a/b/node_modules 1 undefined Project: /user/username/rootfolder/otherfolder/a/b/tsconfig.json WatchType: Failed Lookup Locations +Info 28 [00:01:03.000] Scheduled: /user/username/rootfolder/otherfolder/a/b/tsconfig.jsonFailedLookupInvalidation +Info 29 [00:01:04.000] Elapsed:: *ms DirectoryWatcher:: Triggered with /user/username/rootfolder/otherfolder/a/b/node_modules :: WatchInfo: /user/username/rootfolder/otherfolder/a/b/node_modules 1 undefined Project: /user/username/rootfolder/otherfolder/a/b/tsconfig.json WatchType: Failed Lookup Locations +Info 30 [00:01:05.000] DirectoryWatcher:: Triggered with /user/username/rootfolder/otherfolder/a/b/node_modules :: WatchInfo: /user/username/rootfolder/otherfolder/a/b/node_modules 1 undefined Project: /user/username/rootfolder/otherfolder/a/b/tsconfig.json WatchType: Failed Lookup Locations +Info 31 [00:01:06.000] Scheduled: /user/username/rootfolder/otherfolder/a/b/tsconfig.jsonFailedLookupInvalidation, Cancelled earlier one +Info 32 [00:01:07.000] Elapsed:: *ms DirectoryWatcher:: Triggered with /user/username/rootfolder/otherfolder/a/b/node_modules :: WatchInfo: /user/username/rootfolder/otherfolder/a/b/node_modules 1 undefined Project: /user/username/rootfolder/otherfolder/a/b/tsconfig.json WatchType: Failed Lookup Locations +Info 33 [00:01:08.000] DirectoryWatcher:: Triggered with /user/username/rootfolder/otherfolder/a/b/node_modules :: WatchInfo: /user/username/rootfolder/otherfolder/a/b 1 undefined Config: /user/username/rootfolder/otherfolder/a/b/tsconfig.json WatchType: Wild card directory +Info 34 [00:01:09.000] Scheduled: /user/username/rootfolder/otherfolder/a/b/tsconfig.json +Info 35 [00:01:10.000] Scheduled: *ensureProjectForOpenFiles* +Info 36 [00:01:11.000] Elapsed:: *ms DirectoryWatcher:: Triggered with /user/username/rootfolder/otherfolder/a/b/node_modules :: WatchInfo: /user/username/rootfolder/otherfolder/a/b 1 undefined Config: /user/username/rootfolder/otherfolder/a/b/tsconfig.json WatchType: Wild card directory +Info 37 [00:01:14.000] DirectoryWatcher:: Triggered with /user/username/rootfolder/otherfolder/a/b/node_modules/.staging :: WatchInfo: /user/username/rootfolder/otherfolder/a/b/node_modules 1 undefined Project: /user/username/rootfolder/otherfolder/a/b/tsconfig.json WatchType: Failed Lookup Locations +Info 38 [00:01:15.000] Scheduled: /user/username/rootfolder/otherfolder/a/b/tsconfig.jsonFailedLookupInvalidation, Cancelled earlier one +Info 39 [00:01:16.000] Elapsed:: *ms DirectoryWatcher:: Triggered with /user/username/rootfolder/otherfolder/a/b/node_modules/.staging :: WatchInfo: /user/username/rootfolder/otherfolder/a/b/node_modules 1 undefined Project: /user/username/rootfolder/otherfolder/a/b/tsconfig.json WatchType: Failed Lookup Locations +Info 40 [00:01:17.000] DirectoryWatcher:: Triggered with /user/username/rootfolder/otherfolder/a/b/node_modules/.staging :: WatchInfo: /user/username/rootfolder/otherfolder/a/b 1 undefined Config: /user/username/rootfolder/otherfolder/a/b/tsconfig.json WatchType: Wild card directory +Info 41 [00:01:18.000] Scheduled: /user/username/rootfolder/otherfolder/a/b/tsconfig.json, Cancelled earlier one +Info 42 [00:01:19.000] Scheduled: *ensureProjectForOpenFiles*, Cancelled earlier one +Info 43 [00:01:20.000] Elapsed:: *ms DirectoryWatcher:: Triggered with /user/username/rootfolder/otherfolder/a/b/node_modules/.staging :: WatchInfo: /user/username/rootfolder/otherfolder/a/b 1 undefined Config: /user/username/rootfolder/otherfolder/a/b/tsconfig.json WatchType: Wild card directory +Info 44 [00:01:23.000] DirectoryWatcher:: Triggered with /user/username/rootfolder/otherfolder/a/b/node_modules/.staging/@types :: WatchInfo: /user/username/rootfolder/otherfolder/a/b/node_modules 1 undefined Project: /user/username/rootfolder/otherfolder/a/b/tsconfig.json WatchType: Failed Lookup Locations +Info 45 [00:01:24.000] Elapsed:: *ms DirectoryWatcher:: Triggered with /user/username/rootfolder/otherfolder/a/b/node_modules/.staging/@types :: WatchInfo: /user/username/rootfolder/otherfolder/a/b/node_modules 1 undefined Project: /user/username/rootfolder/otherfolder/a/b/tsconfig.json WatchType: Failed Lookup Locations +Info 46 [00:01:25.000] DirectoryWatcher:: Triggered with /user/username/rootfolder/otherfolder/a/b/node_modules/.staging/@types :: WatchInfo: /user/username/rootfolder/otherfolder/a/b 1 undefined Config: /user/username/rootfolder/otherfolder/a/b/tsconfig.json WatchType: Wild card directory +Info 47 [00:01:26.000] Project: /user/username/rootfolder/otherfolder/a/b/tsconfig.json Detected ignored path: /user/username/rootfolder/otherfolder/a/b/node_modules/.staging/@types +Info 48 [00:01:27.000] Elapsed:: *ms DirectoryWatcher:: Triggered with /user/username/rootfolder/otherfolder/a/b/node_modules/.staging/@types :: WatchInfo: /user/username/rootfolder/otherfolder/a/b 1 undefined Config: /user/username/rootfolder/otherfolder/a/b/tsconfig.json WatchType: Wild card directory +Info 49 [00:01:30.000] DirectoryWatcher:: Triggered with /user/username/rootfolder/otherfolder/a/b/node_modules/.staging/lodash-b0733faa :: WatchInfo: /user/username/rootfolder/otherfolder/a/b/node_modules 1 undefined Project: /user/username/rootfolder/otherfolder/a/b/tsconfig.json WatchType: Failed Lookup Locations +Info 50 [00:01:31.000] Elapsed:: *ms DirectoryWatcher:: Triggered with /user/username/rootfolder/otherfolder/a/b/node_modules/.staging/lodash-b0733faa :: WatchInfo: /user/username/rootfolder/otherfolder/a/b/node_modules 1 undefined Project: /user/username/rootfolder/otherfolder/a/b/tsconfig.json WatchType: Failed Lookup Locations +Info 51 [00:01:32.000] DirectoryWatcher:: Triggered with /user/username/rootfolder/otherfolder/a/b/node_modules/.staging/lodash-b0733faa :: WatchInfo: /user/username/rootfolder/otherfolder/a/b 1 undefined Config: /user/username/rootfolder/otherfolder/a/b/tsconfig.json WatchType: Wild card directory +Info 52 [00:01:33.000] Project: /user/username/rootfolder/otherfolder/a/b/tsconfig.json Detected ignored path: /user/username/rootfolder/otherfolder/a/b/node_modules/.staging/lodash-b0733faa +Info 53 [00:01:34.000] Elapsed:: *ms DirectoryWatcher:: Triggered with /user/username/rootfolder/otherfolder/a/b/node_modules/.staging/lodash-b0733faa :: WatchInfo: /user/username/rootfolder/otherfolder/a/b 1 undefined Config: /user/username/rootfolder/otherfolder/a/b/tsconfig.json WatchType: Wild card directory +Info 54 [00:01:37.000] DirectoryWatcher:: Triggered with /user/username/rootfolder/otherfolder/a/b/node_modules/.staging/@types/lodash-e56c4fe7 :: WatchInfo: /user/username/rootfolder/otherfolder/a/b/node_modules 1 undefined Project: /user/username/rootfolder/otherfolder/a/b/tsconfig.json WatchType: Failed Lookup Locations +Info 55 [00:01:38.000] Elapsed:: *ms DirectoryWatcher:: Triggered with /user/username/rootfolder/otherfolder/a/b/node_modules/.staging/@types/lodash-e56c4fe7 :: WatchInfo: /user/username/rootfolder/otherfolder/a/b/node_modules 1 undefined Project: /user/username/rootfolder/otherfolder/a/b/tsconfig.json WatchType: Failed Lookup Locations +Info 56 [00:01:39.000] DirectoryWatcher:: Triggered with /user/username/rootfolder/otherfolder/a/b/node_modules/.staging/@types/lodash-e56c4fe7 :: WatchInfo: /user/username/rootfolder/otherfolder/a/b 1 undefined Config: /user/username/rootfolder/otherfolder/a/b/tsconfig.json WatchType: Wild card directory +Info 57 [00:01:40.000] Project: /user/username/rootfolder/otherfolder/a/b/tsconfig.json Detected ignored path: /user/username/rootfolder/otherfolder/a/b/node_modules/.staging/@types/lodash-e56c4fe7 +Info 58 [00:01:41.000] Elapsed:: *ms DirectoryWatcher:: Triggered with /user/username/rootfolder/otherfolder/a/b/node_modules/.staging/@types/lodash-e56c4fe7 :: WatchInfo: /user/username/rootfolder/otherfolder/a/b 1 undefined Config: /user/username/rootfolder/otherfolder/a/b/tsconfig.json WatchType: Wild card directory +Info 59 [00:01:44.000] DirectoryWatcher:: Triggered with /user/username/rootfolder/otherfolder/a/b/node_modules/.staging/symbol-observable-24bcbbff :: WatchInfo: /user/username/rootfolder/otherfolder/a/b/node_modules 1 undefined Project: /user/username/rootfolder/otherfolder/a/b/tsconfig.json WatchType: Failed Lookup Locations +Info 60 [00:01:45.000] Elapsed:: *ms DirectoryWatcher:: Triggered with /user/username/rootfolder/otherfolder/a/b/node_modules/.staging/symbol-observable-24bcbbff :: WatchInfo: /user/username/rootfolder/otherfolder/a/b/node_modules 1 undefined Project: /user/username/rootfolder/otherfolder/a/b/tsconfig.json WatchType: Failed Lookup Locations +Info 61 [00:01:46.000] DirectoryWatcher:: Triggered with /user/username/rootfolder/otherfolder/a/b/node_modules/.staging/symbol-observable-24bcbbff :: WatchInfo: /user/username/rootfolder/otherfolder/a/b 1 undefined Config: /user/username/rootfolder/otherfolder/a/b/tsconfig.json WatchType: Wild card directory +Info 62 [00:01:47.000] Project: /user/username/rootfolder/otherfolder/a/b/tsconfig.json Detected ignored path: /user/username/rootfolder/otherfolder/a/b/node_modules/.staging/symbol-observable-24bcbbff +Info 63 [00:01:48.000] Elapsed:: *ms DirectoryWatcher:: Triggered with /user/username/rootfolder/otherfolder/a/b/node_modules/.staging/symbol-observable-24bcbbff :: WatchInfo: /user/username/rootfolder/otherfolder/a/b 1 undefined Config: /user/username/rootfolder/otherfolder/a/b/tsconfig.json WatchType: Wild card directory +Info 64 [00:01:51.000] DirectoryWatcher:: Triggered with /user/username/rootfolder/otherfolder/a/b/node_modules/.staging/rxjs-22375c61 :: WatchInfo: /user/username/rootfolder/otherfolder/a/b/node_modules 1 undefined Project: /user/username/rootfolder/otherfolder/a/b/tsconfig.json WatchType: Failed Lookup Locations +Info 65 [00:01:52.000] Elapsed:: *ms DirectoryWatcher:: Triggered with /user/username/rootfolder/otherfolder/a/b/node_modules/.staging/rxjs-22375c61 :: WatchInfo: /user/username/rootfolder/otherfolder/a/b/node_modules 1 undefined Project: /user/username/rootfolder/otherfolder/a/b/tsconfig.json WatchType: Failed Lookup Locations +Info 66 [00:01:53.000] DirectoryWatcher:: Triggered with /user/username/rootfolder/otherfolder/a/b/node_modules/.staging/rxjs-22375c61 :: WatchInfo: /user/username/rootfolder/otherfolder/a/b 1 undefined Config: /user/username/rootfolder/otherfolder/a/b/tsconfig.json WatchType: Wild card directory +Info 67 [00:01:54.000] Project: /user/username/rootfolder/otherfolder/a/b/tsconfig.json Detected ignored path: /user/username/rootfolder/otherfolder/a/b/node_modules/.staging/rxjs-22375c61 +Info 68 [00:01:55.000] Elapsed:: *ms DirectoryWatcher:: Triggered with /user/username/rootfolder/otherfolder/a/b/node_modules/.staging/rxjs-22375c61 :: WatchInfo: /user/username/rootfolder/otherfolder/a/b 1 undefined Config: /user/username/rootfolder/otherfolder/a/b/tsconfig.json WatchType: Wild card directory +Info 69 [00:01:58.000] DirectoryWatcher:: Triggered with /user/username/rootfolder/otherfolder/a/b/node_modules/.staging/typescript-8493ea5d :: WatchInfo: /user/username/rootfolder/otherfolder/a/b/node_modules 1 undefined Project: /user/username/rootfolder/otherfolder/a/b/tsconfig.json WatchType: Failed Lookup Locations +Info 70 [00:01:59.000] Elapsed:: *ms DirectoryWatcher:: Triggered with /user/username/rootfolder/otherfolder/a/b/node_modules/.staging/typescript-8493ea5d :: WatchInfo: /user/username/rootfolder/otherfolder/a/b/node_modules 1 undefined Project: /user/username/rootfolder/otherfolder/a/b/tsconfig.json WatchType: Failed Lookup Locations +Info 71 [00:02:00.000] DirectoryWatcher:: Triggered with /user/username/rootfolder/otherfolder/a/b/node_modules/.staging/typescript-8493ea5d :: WatchInfo: /user/username/rootfolder/otherfolder/a/b 1 undefined Config: /user/username/rootfolder/otherfolder/a/b/tsconfig.json WatchType: Wild card directory +Info 72 [00:02:01.000] Project: /user/username/rootfolder/otherfolder/a/b/tsconfig.json Detected ignored path: /user/username/rootfolder/otherfolder/a/b/node_modules/.staging/typescript-8493ea5d +Info 73 [00:02:02.000] Elapsed:: *ms DirectoryWatcher:: Triggered with /user/username/rootfolder/otherfolder/a/b/node_modules/.staging/typescript-8493ea5d :: WatchInfo: /user/username/rootfolder/otherfolder/a/b 1 undefined Config: /user/username/rootfolder/otherfolder/a/b/tsconfig.json WatchType: Wild card directory +Info 74 [00:02:05.000] DirectoryWatcher:: Triggered with /user/username/rootfolder/otherfolder/a/b/node_modules/.staging/symbol-observable-24bcbbff/package.json :: WatchInfo: /user/username/rootfolder/otherfolder/a/b/node_modules 1 undefined Project: /user/username/rootfolder/otherfolder/a/b/tsconfig.json WatchType: Failed Lookup Locations +Info 75 [00:02:06.000] Elapsed:: *ms DirectoryWatcher:: Triggered with /user/username/rootfolder/otherfolder/a/b/node_modules/.staging/symbol-observable-24bcbbff/package.json :: WatchInfo: /user/username/rootfolder/otherfolder/a/b/node_modules 1 undefined Project: /user/username/rootfolder/otherfolder/a/b/tsconfig.json WatchType: Failed Lookup Locations +Info 76 [00:02:07.000] DirectoryWatcher:: Triggered with /user/username/rootfolder/otherfolder/a/b/node_modules/.staging/symbol-observable-24bcbbff/package.json :: WatchInfo: /user/username/rootfolder/otherfolder/a/b 1 undefined Config: /user/username/rootfolder/otherfolder/a/b/tsconfig.json WatchType: Wild card directory +Info 77 [00:02:08.000] Project: /user/username/rootfolder/otherfolder/a/b/tsconfig.json Detected ignored path: /user/username/rootfolder/otherfolder/a/b/node_modules/.staging/symbol-observable-24bcbbff/package.json +Info 78 [00:02:09.000] Elapsed:: *ms DirectoryWatcher:: Triggered with /user/username/rootfolder/otherfolder/a/b/node_modules/.staging/symbol-observable-24bcbbff/package.json :: WatchInfo: /user/username/rootfolder/otherfolder/a/b 1 undefined Config: /user/username/rootfolder/otherfolder/a/b/tsconfig.json WatchType: Wild card directory +Info 79 [00:02:12.000] DirectoryWatcher:: Triggered with /user/username/rootfolder/otherfolder/a/b/node_modules/.staging/lodash-b0733faa/package.json :: WatchInfo: /user/username/rootfolder/otherfolder/a/b/node_modules 1 undefined Project: /user/username/rootfolder/otherfolder/a/b/tsconfig.json WatchType: Failed Lookup Locations +Info 80 [00:02:13.000] Elapsed:: *ms DirectoryWatcher:: Triggered with /user/username/rootfolder/otherfolder/a/b/node_modules/.staging/lodash-b0733faa/package.json :: WatchInfo: /user/username/rootfolder/otherfolder/a/b/node_modules 1 undefined Project: /user/username/rootfolder/otherfolder/a/b/tsconfig.json WatchType: Failed Lookup Locations +Info 81 [00:02:14.000] DirectoryWatcher:: Triggered with /user/username/rootfolder/otherfolder/a/b/node_modules/.staging/lodash-b0733faa/package.json :: WatchInfo: /user/username/rootfolder/otherfolder/a/b 1 undefined Config: /user/username/rootfolder/otherfolder/a/b/tsconfig.json WatchType: Wild card directory +Info 82 [00:02:15.000] Project: /user/username/rootfolder/otherfolder/a/b/tsconfig.json Detected ignored path: /user/username/rootfolder/otherfolder/a/b/node_modules/.staging/lodash-b0733faa/package.json +Info 83 [00:02:16.000] Elapsed:: *ms DirectoryWatcher:: Triggered with /user/username/rootfolder/otherfolder/a/b/node_modules/.staging/lodash-b0733faa/package.json :: WatchInfo: /user/username/rootfolder/otherfolder/a/b 1 undefined Config: /user/username/rootfolder/otherfolder/a/b/tsconfig.json WatchType: Wild card directory +Info 84 [00:02:19.000] DirectoryWatcher:: Triggered with /user/username/rootfolder/otherfolder/a/b/node_modules/.staging/rxjs-22375c61/package.json :: WatchInfo: /user/username/rootfolder/otherfolder/a/b/node_modules 1 undefined Project: /user/username/rootfolder/otherfolder/a/b/tsconfig.json WatchType: Failed Lookup Locations +Info 85 [00:02:20.000] Elapsed:: *ms DirectoryWatcher:: Triggered with /user/username/rootfolder/otherfolder/a/b/node_modules/.staging/rxjs-22375c61/package.json :: WatchInfo: /user/username/rootfolder/otherfolder/a/b/node_modules 1 undefined Project: /user/username/rootfolder/otherfolder/a/b/tsconfig.json WatchType: Failed Lookup Locations +Info 86 [00:02:21.000] DirectoryWatcher:: Triggered with /user/username/rootfolder/otherfolder/a/b/node_modules/.staging/rxjs-22375c61/package.json :: WatchInfo: /user/username/rootfolder/otherfolder/a/b 1 undefined Config: /user/username/rootfolder/otherfolder/a/b/tsconfig.json WatchType: Wild card directory +Info 87 [00:02:22.000] Project: /user/username/rootfolder/otherfolder/a/b/tsconfig.json Detected ignored path: /user/username/rootfolder/otherfolder/a/b/node_modules/.staging/rxjs-22375c61/package.json +Info 88 [00:02:23.000] Elapsed:: *ms DirectoryWatcher:: Triggered with /user/username/rootfolder/otherfolder/a/b/node_modules/.staging/rxjs-22375c61/package.json :: WatchInfo: /user/username/rootfolder/otherfolder/a/b 1 undefined Config: /user/username/rootfolder/otherfolder/a/b/tsconfig.json WatchType: Wild card directory +Info 89 [00:02:26.000] DirectoryWatcher:: Triggered with /user/username/rootfolder/otherfolder/a/b/node_modules/.staging/typescript-8493ea5d/package.json :: WatchInfo: /user/username/rootfolder/otherfolder/a/b/node_modules 1 undefined Project: /user/username/rootfolder/otherfolder/a/b/tsconfig.json WatchType: Failed Lookup Locations +Info 90 [00:02:27.000] Elapsed:: *ms DirectoryWatcher:: Triggered with /user/username/rootfolder/otherfolder/a/b/node_modules/.staging/typescript-8493ea5d/package.json :: WatchInfo: /user/username/rootfolder/otherfolder/a/b/node_modules 1 undefined Project: /user/username/rootfolder/otherfolder/a/b/tsconfig.json WatchType: Failed Lookup Locations +Info 91 [00:02:28.000] DirectoryWatcher:: Triggered with /user/username/rootfolder/otherfolder/a/b/node_modules/.staging/typescript-8493ea5d/package.json :: WatchInfo: /user/username/rootfolder/otherfolder/a/b 1 undefined Config: /user/username/rootfolder/otherfolder/a/b/tsconfig.json WatchType: Wild card directory +Info 92 [00:02:29.000] Project: /user/username/rootfolder/otherfolder/a/b/tsconfig.json Detected ignored path: /user/username/rootfolder/otherfolder/a/b/node_modules/.staging/typescript-8493ea5d/package.json +Info 93 [00:02:30.000] Elapsed:: *ms DirectoryWatcher:: Triggered with /user/username/rootfolder/otherfolder/a/b/node_modules/.staging/typescript-8493ea5d/package.json :: WatchInfo: /user/username/rootfolder/otherfolder/a/b 1 undefined Config: /user/username/rootfolder/otherfolder/a/b/tsconfig.json WatchType: Wild card directory +Info 94 [00:02:33.000] DirectoryWatcher:: Triggered with /user/username/rootfolder/otherfolder/a/b/node_modules/.staging/symbol-observable-24bcbbff/index.js :: WatchInfo: /user/username/rootfolder/otherfolder/a/b/node_modules 1 undefined Project: /user/username/rootfolder/otherfolder/a/b/tsconfig.json WatchType: Failed Lookup Locations +Info 95 [00:02:34.000] Elapsed:: *ms DirectoryWatcher:: Triggered with /user/username/rootfolder/otherfolder/a/b/node_modules/.staging/symbol-observable-24bcbbff/index.js :: WatchInfo: /user/username/rootfolder/otherfolder/a/b/node_modules 1 undefined Project: /user/username/rootfolder/otherfolder/a/b/tsconfig.json WatchType: Failed Lookup Locations +Info 96 [00:02:35.000] DirectoryWatcher:: Triggered with /user/username/rootfolder/otherfolder/a/b/node_modules/.staging/symbol-observable-24bcbbff/index.js :: WatchInfo: /user/username/rootfolder/otherfolder/a/b 1 undefined Config: /user/username/rootfolder/otherfolder/a/b/tsconfig.json WatchType: Wild card directory +Info 97 [00:02:36.000] Project: /user/username/rootfolder/otherfolder/a/b/tsconfig.json Detected ignored path: /user/username/rootfolder/otherfolder/a/b/node_modules/.staging/symbol-observable-24bcbbff/index.js +Info 98 [00:02:37.000] Elapsed:: *ms DirectoryWatcher:: Triggered with /user/username/rootfolder/otherfolder/a/b/node_modules/.staging/symbol-observable-24bcbbff/index.js :: WatchInfo: /user/username/rootfolder/otherfolder/a/b 1 undefined Config: /user/username/rootfolder/otherfolder/a/b/tsconfig.json WatchType: Wild card directory +Info 99 [00:02:40.000] DirectoryWatcher:: Triggered with /user/username/rootfolder/otherfolder/a/b/node_modules/.staging/symbol-observable-24bcbbff/index.d.ts :: WatchInfo: /user/username/rootfolder/otherfolder/a/b/node_modules 1 undefined Project: /user/username/rootfolder/otherfolder/a/b/tsconfig.json WatchType: Failed Lookup Locations +Info 100 [00:02:41.000] Elapsed:: *ms DirectoryWatcher:: Triggered with /user/username/rootfolder/otherfolder/a/b/node_modules/.staging/symbol-observable-24bcbbff/index.d.ts :: WatchInfo: /user/username/rootfolder/otherfolder/a/b/node_modules 1 undefined Project: /user/username/rootfolder/otherfolder/a/b/tsconfig.json WatchType: Failed Lookup Locations +Info 101 [00:02:42.000] DirectoryWatcher:: Triggered with /user/username/rootfolder/otherfolder/a/b/node_modules/.staging/symbol-observable-24bcbbff/index.d.ts :: WatchInfo: /user/username/rootfolder/otherfolder/a/b 1 undefined Config: /user/username/rootfolder/otherfolder/a/b/tsconfig.json WatchType: Wild card directory +Info 102 [00:02:43.000] Project: /user/username/rootfolder/otherfolder/a/b/tsconfig.json Detected ignored path: /user/username/rootfolder/otherfolder/a/b/node_modules/.staging/symbol-observable-24bcbbff/index.d.ts +Info 103 [00:02:44.000] Elapsed:: *ms DirectoryWatcher:: Triggered with /user/username/rootfolder/otherfolder/a/b/node_modules/.staging/symbol-observable-24bcbbff/index.d.ts :: WatchInfo: /user/username/rootfolder/otherfolder/a/b 1 undefined Config: /user/username/rootfolder/otherfolder/a/b/tsconfig.json WatchType: Wild card directory +Info 104 [00:02:47.000] DirectoryWatcher:: Triggered with /user/username/rootfolder/otherfolder/a/b/node_modules/.staging/symbol-observable-24bcbbff/lib :: WatchInfo: /user/username/rootfolder/otherfolder/a/b/node_modules 1 undefined Project: /user/username/rootfolder/otherfolder/a/b/tsconfig.json WatchType: Failed Lookup Locations +Info 105 [00:02:48.000] Elapsed:: *ms DirectoryWatcher:: Triggered with /user/username/rootfolder/otherfolder/a/b/node_modules/.staging/symbol-observable-24bcbbff/lib :: WatchInfo: /user/username/rootfolder/otherfolder/a/b/node_modules 1 undefined Project: /user/username/rootfolder/otherfolder/a/b/tsconfig.json WatchType: Failed Lookup Locations +Info 106 [00:02:49.000] DirectoryWatcher:: Triggered with /user/username/rootfolder/otherfolder/a/b/node_modules/.staging/symbol-observable-24bcbbff/lib :: WatchInfo: /user/username/rootfolder/otherfolder/a/b 1 undefined Config: /user/username/rootfolder/otherfolder/a/b/tsconfig.json WatchType: Wild card directory +Info 107 [00:02:50.000] Project: /user/username/rootfolder/otherfolder/a/b/tsconfig.json Detected ignored path: /user/username/rootfolder/otherfolder/a/b/node_modules/.staging/symbol-observable-24bcbbff/lib +Info 108 [00:02:51.000] Elapsed:: *ms DirectoryWatcher:: Triggered with /user/username/rootfolder/otherfolder/a/b/node_modules/.staging/symbol-observable-24bcbbff/lib :: WatchInfo: /user/username/rootfolder/otherfolder/a/b 1 undefined Config: /user/username/rootfolder/otherfolder/a/b/tsconfig.json WatchType: Wild card directory +Info 109 [00:02:54.000] DirectoryWatcher:: Triggered with /user/username/rootfolder/otherfolder/a/b/node_modules/.staging/symbol-observable-24bcbbff/lib/index.js :: WatchInfo: /user/username/rootfolder/otherfolder/a/b/node_modules 1 undefined Project: /user/username/rootfolder/otherfolder/a/b/tsconfig.json WatchType: Failed Lookup Locations +Info 110 [00:02:55.000] Elapsed:: *ms DirectoryWatcher:: Triggered with /user/username/rootfolder/otherfolder/a/b/node_modules/.staging/symbol-observable-24bcbbff/lib/index.js :: WatchInfo: /user/username/rootfolder/otherfolder/a/b/node_modules 1 undefined Project: /user/username/rootfolder/otherfolder/a/b/tsconfig.json WatchType: Failed Lookup Locations +Info 111 [00:02:56.000] DirectoryWatcher:: Triggered with /user/username/rootfolder/otherfolder/a/b/node_modules/.staging/symbol-observable-24bcbbff/lib/index.js :: WatchInfo: /user/username/rootfolder/otherfolder/a/b 1 undefined Config: /user/username/rootfolder/otherfolder/a/b/tsconfig.json WatchType: Wild card directory +Info 112 [00:02:57.000] Project: /user/username/rootfolder/otherfolder/a/b/tsconfig.json Detected ignored path: /user/username/rootfolder/otherfolder/a/b/node_modules/.staging/symbol-observable-24bcbbff/lib/index.js +Info 113 [00:02:58.000] Elapsed:: *ms DirectoryWatcher:: Triggered with /user/username/rootfolder/otherfolder/a/b/node_modules/.staging/symbol-observable-24bcbbff/lib/index.js :: WatchInfo: /user/username/rootfolder/otherfolder/a/b 1 undefined Config: /user/username/rootfolder/otherfolder/a/b/tsconfig.json WatchType: Wild card directory Before checking timeout queue length (3) and running //// [/user/username/rootfolder/otherfolder/a/b/node_modules/.staging/symbol-observable-24bcbbff/package.json] { @@ -558,9 +558,9 @@ FsWatchesRecursive:: /user/username/rootfolder/otherfolder/a/b/node_modules: {} -Info 114 [16:02:59.000] Running: /user/username/rootfolder/otherfolder/a/b/tsconfig.jsonFailedLookupInvalidation -Info 115 [16:03:00.000] Scheduled: /user/username/rootfolder/otherfolder/a/b/tsconfig.json, Cancelled earlier one -Info 116 [16:03:01.000] Scheduled: *ensureProjectForOpenFiles*, Cancelled earlier one +Info 114 [00:02:59.000] Running: /user/username/rootfolder/otherfolder/a/b/tsconfig.jsonFailedLookupInvalidation +Info 115 [00:03:00.000] Scheduled: /user/username/rootfolder/otherfolder/a/b/tsconfig.json, Cancelled earlier one +Info 116 [00:03:01.000] Scheduled: *ensureProjectForOpenFiles*, Cancelled earlier one After checking timeout queue length (3) and running PolledWatches:: @@ -613,27 +613,27 @@ FsWatchesRecursive:: /user/username/rootfolder/otherfolder/a/b/node_modules: {} -Info 117 [16:03:02.000] Running: /user/username/rootfolder/otherfolder/a/b/tsconfig.json -Info 118 [16:03:03.000] Starting updateGraphWorker: Project: /user/username/rootfolder/otherfolder/a/b/tsconfig.json -Info 119 [16:03:04.000] Finishing updateGraphWorker: Project: /user/username/rootfolder/otherfolder/a/b/tsconfig.json Version: 2 structureChanged: true structureIsReused:: SafeModules Elapsed:: *ms -Info 120 [16:03:05.000] Different program with same set of files -Info 121 [16:03:06.000] Running: *ensureProjectForOpenFiles* -Info 122 [16:03:07.000] Before ensureProjectForOpenFiles: -Info 123 [16:03:08.000] Project '/user/username/rootfolder/otherfolder/a/b/tsconfig.json' (Configured) -Info 123 [16:03:09.000] Files (2) - -Info 123 [16:03:10.000] ----------------------------------------------- -Info 123 [16:03:11.000] Open files: -Info 123 [16:03:12.000] FileName: /user/username/rootfolder/otherfolder/a/b/app.ts ProjectRootPath: undefined -Info 123 [16:03:13.000] Projects: /user/username/rootfolder/otherfolder/a/b/tsconfig.json -Info 123 [16:03:14.000] After ensureProjectForOpenFiles: -Info 124 [16:03:15.000] Project '/user/username/rootfolder/otherfolder/a/b/tsconfig.json' (Configured) -Info 124 [16:03:16.000] Files (2) - -Info 124 [16:03:17.000] ----------------------------------------------- -Info 124 [16:03:18.000] Open files: -Info 124 [16:03:19.000] FileName: /user/username/rootfolder/otherfolder/a/b/app.ts ProjectRootPath: undefined -Info 124 [16:03:20.000] Projects: /user/username/rootfolder/otherfolder/a/b/tsconfig.json +Info 117 [00:03:02.000] Running: /user/username/rootfolder/otherfolder/a/b/tsconfig.json +Info 118 [00:03:03.000] Starting updateGraphWorker: Project: /user/username/rootfolder/otherfolder/a/b/tsconfig.json +Info 119 [00:03:04.000] Finishing updateGraphWorker: Project: /user/username/rootfolder/otherfolder/a/b/tsconfig.json Version: 2 structureChanged: true structureIsReused:: SafeModules Elapsed:: *ms +Info 120 [00:03:05.000] Different program with same set of files +Info 121 [00:03:06.000] Running: *ensureProjectForOpenFiles* +Info 122 [00:03:07.000] Before ensureProjectForOpenFiles: +Info 123 [00:03:08.000] Project '/user/username/rootfolder/otherfolder/a/b/tsconfig.json' (Configured) +Info 123 [00:03:09.000] Files (2) + +Info 123 [00:03:10.000] ----------------------------------------------- +Info 123 [00:03:11.000] Open files: +Info 123 [00:03:12.000] FileName: /user/username/rootfolder/otherfolder/a/b/app.ts ProjectRootPath: undefined +Info 123 [00:03:13.000] Projects: /user/username/rootfolder/otherfolder/a/b/tsconfig.json +Info 123 [00:03:14.000] After ensureProjectForOpenFiles: +Info 124 [00:03:15.000] Project '/user/username/rootfolder/otherfolder/a/b/tsconfig.json' (Configured) +Info 124 [00:03:16.000] Files (2) + +Info 124 [00:03:17.000] ----------------------------------------------- +Info 124 [00:03:18.000] Open files: +Info 124 [00:03:19.000] FileName: /user/username/rootfolder/otherfolder/a/b/app.ts ProjectRootPath: undefined +Info 124 [00:03:20.000] Projects: /user/username/rootfolder/otherfolder/a/b/tsconfig.json After running timeout callbacks PolledWatches:: @@ -660,36 +660,36 @@ FsWatchesRecursive:: /user/username/rootfolder/otherfolder/a/b/node_modules: {} -Info 124 [16:03:30.000] DirectoryWatcher:: Triggered with /user/username/rootfolder/otherfolder/a/b/node_modules/.staging/typescript-8493ea5d/lib :: WatchInfo: /user/username/rootfolder/otherfolder/a/b/node_modules 1 undefined Project: /user/username/rootfolder/otherfolder/a/b/tsconfig.json WatchType: Failed Lookup Locations -Info 125 [16:03:31.000] Elapsed:: *ms DirectoryWatcher:: Triggered with /user/username/rootfolder/otherfolder/a/b/node_modules/.staging/typescript-8493ea5d/lib :: WatchInfo: /user/username/rootfolder/otherfolder/a/b/node_modules 1 undefined Project: /user/username/rootfolder/otherfolder/a/b/tsconfig.json WatchType: Failed Lookup Locations -Info 126 [16:03:32.000] DirectoryWatcher:: Triggered with /user/username/rootfolder/otherfolder/a/b/node_modules/.staging/typescript-8493ea5d/lib :: WatchInfo: /user/username/rootfolder/otherfolder/a/b 1 undefined Config: /user/username/rootfolder/otherfolder/a/b/tsconfig.json WatchType: Wild card directory -Info 127 [16:03:33.000] Project: /user/username/rootfolder/otherfolder/a/b/tsconfig.json Detected ignored path: /user/username/rootfolder/otherfolder/a/b/node_modules/.staging/typescript-8493ea5d/lib -Info 128 [16:03:34.000] Elapsed:: *ms DirectoryWatcher:: Triggered with /user/username/rootfolder/otherfolder/a/b/node_modules/.staging/typescript-8493ea5d/lib :: WatchInfo: /user/username/rootfolder/otherfolder/a/b 1 undefined Config: /user/username/rootfolder/otherfolder/a/b/tsconfig.json WatchType: Wild card directory -Info 129 [16:03:37.000] DirectoryWatcher:: Triggered with /user/username/rootfolder/otherfolder/a/b/node_modules/.staging/rxjs-22375c61/add :: WatchInfo: /user/username/rootfolder/otherfolder/a/b/node_modules 1 undefined Project: /user/username/rootfolder/otherfolder/a/b/tsconfig.json WatchType: Failed Lookup Locations -Info 130 [16:03:38.000] Elapsed:: *ms DirectoryWatcher:: Triggered with /user/username/rootfolder/otherfolder/a/b/node_modules/.staging/rxjs-22375c61/add :: WatchInfo: /user/username/rootfolder/otherfolder/a/b/node_modules 1 undefined Project: /user/username/rootfolder/otherfolder/a/b/tsconfig.json WatchType: Failed Lookup Locations -Info 131 [16:03:39.000] DirectoryWatcher:: Triggered with /user/username/rootfolder/otherfolder/a/b/node_modules/.staging/rxjs-22375c61/add :: WatchInfo: /user/username/rootfolder/otherfolder/a/b 1 undefined Config: /user/username/rootfolder/otherfolder/a/b/tsconfig.json WatchType: Wild card directory -Info 132 [16:03:40.000] Project: /user/username/rootfolder/otherfolder/a/b/tsconfig.json Detected ignored path: /user/username/rootfolder/otherfolder/a/b/node_modules/.staging/rxjs-22375c61/add -Info 133 [16:03:41.000] Elapsed:: *ms DirectoryWatcher:: Triggered with /user/username/rootfolder/otherfolder/a/b/node_modules/.staging/rxjs-22375c61/add :: WatchInfo: /user/username/rootfolder/otherfolder/a/b 1 undefined Config: /user/username/rootfolder/otherfolder/a/b/tsconfig.json WatchType: Wild card directory -Info 134 [16:03:44.000] DirectoryWatcher:: Triggered with /user/username/rootfolder/otherfolder/a/b/node_modules/.staging/rxjs-22375c61/add/operator :: WatchInfo: /user/username/rootfolder/otherfolder/a/b/node_modules 1 undefined Project: /user/username/rootfolder/otherfolder/a/b/tsconfig.json WatchType: Failed Lookup Locations -Info 135 [16:03:45.000] Elapsed:: *ms DirectoryWatcher:: Triggered with /user/username/rootfolder/otherfolder/a/b/node_modules/.staging/rxjs-22375c61/add/operator :: WatchInfo: /user/username/rootfolder/otherfolder/a/b/node_modules 1 undefined Project: /user/username/rootfolder/otherfolder/a/b/tsconfig.json WatchType: Failed Lookup Locations -Info 136 [16:03:46.000] DirectoryWatcher:: Triggered with /user/username/rootfolder/otherfolder/a/b/node_modules/.staging/rxjs-22375c61/add/operator :: WatchInfo: /user/username/rootfolder/otherfolder/a/b 1 undefined Config: /user/username/rootfolder/otherfolder/a/b/tsconfig.json WatchType: Wild card directory -Info 137 [16:03:47.000] Project: /user/username/rootfolder/otherfolder/a/b/tsconfig.json Detected ignored path: /user/username/rootfolder/otherfolder/a/b/node_modules/.staging/rxjs-22375c61/add/operator -Info 138 [16:03:48.000] Elapsed:: *ms DirectoryWatcher:: Triggered with /user/username/rootfolder/otherfolder/a/b/node_modules/.staging/rxjs-22375c61/add/operator :: WatchInfo: /user/username/rootfolder/otherfolder/a/b 1 undefined Config: /user/username/rootfolder/otherfolder/a/b/tsconfig.json WatchType: Wild card directory -Info 139 [16:03:51.000] DirectoryWatcher:: Triggered with /user/username/rootfolder/otherfolder/a/b/node_modules/.staging/@types/lodash-e56c4fe7/package.json :: WatchInfo: /user/username/rootfolder/otherfolder/a/b/node_modules 1 undefined Project: /user/username/rootfolder/otherfolder/a/b/tsconfig.json WatchType: Failed Lookup Locations -Info 140 [16:03:52.000] Elapsed:: *ms DirectoryWatcher:: Triggered with /user/username/rootfolder/otherfolder/a/b/node_modules/.staging/@types/lodash-e56c4fe7/package.json :: WatchInfo: /user/username/rootfolder/otherfolder/a/b/node_modules 1 undefined Project: /user/username/rootfolder/otherfolder/a/b/tsconfig.json WatchType: Failed Lookup Locations -Info 141 [16:03:53.000] DirectoryWatcher:: Triggered with /user/username/rootfolder/otherfolder/a/b/node_modules/.staging/@types/lodash-e56c4fe7/package.json :: WatchInfo: /user/username/rootfolder/otherfolder/a/b 1 undefined Config: /user/username/rootfolder/otherfolder/a/b/tsconfig.json WatchType: Wild card directory -Info 142 [16:03:54.000] Project: /user/username/rootfolder/otherfolder/a/b/tsconfig.json Detected ignored path: /user/username/rootfolder/otherfolder/a/b/node_modules/.staging/@types/lodash-e56c4fe7/package.json -Info 143 [16:03:55.000] Elapsed:: *ms DirectoryWatcher:: Triggered with /user/username/rootfolder/otherfolder/a/b/node_modules/.staging/@types/lodash-e56c4fe7/package.json :: WatchInfo: /user/username/rootfolder/otherfolder/a/b 1 undefined Config: /user/username/rootfolder/otherfolder/a/b/tsconfig.json WatchType: Wild card directory -Info 144 [16:03:58.000] DirectoryWatcher:: Triggered with /user/username/rootfolder/otherfolder/a/b/node_modules/.staging/lodash-b0733faa/index.js :: WatchInfo: /user/username/rootfolder/otherfolder/a/b/node_modules 1 undefined Project: /user/username/rootfolder/otherfolder/a/b/tsconfig.json WatchType: Failed Lookup Locations -Info 145 [16:03:59.000] Elapsed:: *ms DirectoryWatcher:: Triggered with /user/username/rootfolder/otherfolder/a/b/node_modules/.staging/lodash-b0733faa/index.js :: WatchInfo: /user/username/rootfolder/otherfolder/a/b/node_modules 1 undefined Project: /user/username/rootfolder/otherfolder/a/b/tsconfig.json WatchType: Failed Lookup Locations -Info 146 [16:04:00.000] DirectoryWatcher:: Triggered with /user/username/rootfolder/otherfolder/a/b/node_modules/.staging/lodash-b0733faa/index.js :: WatchInfo: /user/username/rootfolder/otherfolder/a/b 1 undefined Config: /user/username/rootfolder/otherfolder/a/b/tsconfig.json WatchType: Wild card directory -Info 147 [16:04:01.000] Project: /user/username/rootfolder/otherfolder/a/b/tsconfig.json Detected ignored path: /user/username/rootfolder/otherfolder/a/b/node_modules/.staging/lodash-b0733faa/index.js -Info 148 [16:04:02.000] Elapsed:: *ms DirectoryWatcher:: Triggered with /user/username/rootfolder/otherfolder/a/b/node_modules/.staging/lodash-b0733faa/index.js :: WatchInfo: /user/username/rootfolder/otherfolder/a/b 1 undefined Config: /user/username/rootfolder/otherfolder/a/b/tsconfig.json WatchType: Wild card directory -Info 149 [16:04:05.000] DirectoryWatcher:: Triggered with /user/username/rootfolder/otherfolder/a/b/node_modules/.staging/typescript-8493ea5d/package.json.3017591594 :: WatchInfo: /user/username/rootfolder/otherfolder/a/b/node_modules 1 undefined Project: /user/username/rootfolder/otherfolder/a/b/tsconfig.json WatchType: Failed Lookup Locations -Info 150 [16:04:06.000] Elapsed:: *ms DirectoryWatcher:: Triggered with /user/username/rootfolder/otherfolder/a/b/node_modules/.staging/typescript-8493ea5d/package.json.3017591594 :: WatchInfo: /user/username/rootfolder/otherfolder/a/b/node_modules 1 undefined Project: /user/username/rootfolder/otherfolder/a/b/tsconfig.json WatchType: Failed Lookup Locations -Info 151 [16:04:07.000] DirectoryWatcher:: Triggered with /user/username/rootfolder/otherfolder/a/b/node_modules/.staging/typescript-8493ea5d/package.json.3017591594 :: WatchInfo: /user/username/rootfolder/otherfolder/a/b 1 undefined Config: /user/username/rootfolder/otherfolder/a/b/tsconfig.json WatchType: Wild card directory -Info 152 [16:04:08.000] Project: /user/username/rootfolder/otherfolder/a/b/tsconfig.json Detected ignored path: /user/username/rootfolder/otherfolder/a/b/node_modules/.staging/typescript-8493ea5d/package.json.3017591594 -Info 153 [16:04:09.000] Elapsed:: *ms DirectoryWatcher:: Triggered with /user/username/rootfolder/otherfolder/a/b/node_modules/.staging/typescript-8493ea5d/package.json.3017591594 :: WatchInfo: /user/username/rootfolder/otherfolder/a/b 1 undefined Config: /user/username/rootfolder/otherfolder/a/b/tsconfig.json WatchType: Wild card directory +Info 124 [00:03:30.000] DirectoryWatcher:: Triggered with /user/username/rootfolder/otherfolder/a/b/node_modules/.staging/typescript-8493ea5d/lib :: WatchInfo: /user/username/rootfolder/otherfolder/a/b/node_modules 1 undefined Project: /user/username/rootfolder/otherfolder/a/b/tsconfig.json WatchType: Failed Lookup Locations +Info 125 [00:03:31.000] Elapsed:: *ms DirectoryWatcher:: Triggered with /user/username/rootfolder/otherfolder/a/b/node_modules/.staging/typescript-8493ea5d/lib :: WatchInfo: /user/username/rootfolder/otherfolder/a/b/node_modules 1 undefined Project: /user/username/rootfolder/otherfolder/a/b/tsconfig.json WatchType: Failed Lookup Locations +Info 126 [00:03:32.000] DirectoryWatcher:: Triggered with /user/username/rootfolder/otherfolder/a/b/node_modules/.staging/typescript-8493ea5d/lib :: WatchInfo: /user/username/rootfolder/otherfolder/a/b 1 undefined Config: /user/username/rootfolder/otherfolder/a/b/tsconfig.json WatchType: Wild card directory +Info 127 [00:03:33.000] Project: /user/username/rootfolder/otherfolder/a/b/tsconfig.json Detected ignored path: /user/username/rootfolder/otherfolder/a/b/node_modules/.staging/typescript-8493ea5d/lib +Info 128 [00:03:34.000] Elapsed:: *ms DirectoryWatcher:: Triggered with /user/username/rootfolder/otherfolder/a/b/node_modules/.staging/typescript-8493ea5d/lib :: WatchInfo: /user/username/rootfolder/otherfolder/a/b 1 undefined Config: /user/username/rootfolder/otherfolder/a/b/tsconfig.json WatchType: Wild card directory +Info 129 [00:03:37.000] DirectoryWatcher:: Triggered with /user/username/rootfolder/otherfolder/a/b/node_modules/.staging/rxjs-22375c61/add :: WatchInfo: /user/username/rootfolder/otherfolder/a/b/node_modules 1 undefined Project: /user/username/rootfolder/otherfolder/a/b/tsconfig.json WatchType: Failed Lookup Locations +Info 130 [00:03:38.000] Elapsed:: *ms DirectoryWatcher:: Triggered with /user/username/rootfolder/otherfolder/a/b/node_modules/.staging/rxjs-22375c61/add :: WatchInfo: /user/username/rootfolder/otherfolder/a/b/node_modules 1 undefined Project: /user/username/rootfolder/otherfolder/a/b/tsconfig.json WatchType: Failed Lookup Locations +Info 131 [00:03:39.000] DirectoryWatcher:: Triggered with /user/username/rootfolder/otherfolder/a/b/node_modules/.staging/rxjs-22375c61/add :: WatchInfo: /user/username/rootfolder/otherfolder/a/b 1 undefined Config: /user/username/rootfolder/otherfolder/a/b/tsconfig.json WatchType: Wild card directory +Info 132 [00:03:40.000] Project: /user/username/rootfolder/otherfolder/a/b/tsconfig.json Detected ignored path: /user/username/rootfolder/otherfolder/a/b/node_modules/.staging/rxjs-22375c61/add +Info 133 [00:03:41.000] Elapsed:: *ms DirectoryWatcher:: Triggered with /user/username/rootfolder/otherfolder/a/b/node_modules/.staging/rxjs-22375c61/add :: WatchInfo: /user/username/rootfolder/otherfolder/a/b 1 undefined Config: /user/username/rootfolder/otherfolder/a/b/tsconfig.json WatchType: Wild card directory +Info 134 [00:03:44.000] DirectoryWatcher:: Triggered with /user/username/rootfolder/otherfolder/a/b/node_modules/.staging/rxjs-22375c61/add/operator :: WatchInfo: /user/username/rootfolder/otherfolder/a/b/node_modules 1 undefined Project: /user/username/rootfolder/otherfolder/a/b/tsconfig.json WatchType: Failed Lookup Locations +Info 135 [00:03:45.000] Elapsed:: *ms DirectoryWatcher:: Triggered with /user/username/rootfolder/otherfolder/a/b/node_modules/.staging/rxjs-22375c61/add/operator :: WatchInfo: /user/username/rootfolder/otherfolder/a/b/node_modules 1 undefined Project: /user/username/rootfolder/otherfolder/a/b/tsconfig.json WatchType: Failed Lookup Locations +Info 136 [00:03:46.000] DirectoryWatcher:: Triggered with /user/username/rootfolder/otherfolder/a/b/node_modules/.staging/rxjs-22375c61/add/operator :: WatchInfo: /user/username/rootfolder/otherfolder/a/b 1 undefined Config: /user/username/rootfolder/otherfolder/a/b/tsconfig.json WatchType: Wild card directory +Info 137 [00:03:47.000] Project: /user/username/rootfolder/otherfolder/a/b/tsconfig.json Detected ignored path: /user/username/rootfolder/otherfolder/a/b/node_modules/.staging/rxjs-22375c61/add/operator +Info 138 [00:03:48.000] Elapsed:: *ms DirectoryWatcher:: Triggered with /user/username/rootfolder/otherfolder/a/b/node_modules/.staging/rxjs-22375c61/add/operator :: WatchInfo: /user/username/rootfolder/otherfolder/a/b 1 undefined Config: /user/username/rootfolder/otherfolder/a/b/tsconfig.json WatchType: Wild card directory +Info 139 [00:03:51.000] DirectoryWatcher:: Triggered with /user/username/rootfolder/otherfolder/a/b/node_modules/.staging/@types/lodash-e56c4fe7/package.json :: WatchInfo: /user/username/rootfolder/otherfolder/a/b/node_modules 1 undefined Project: /user/username/rootfolder/otherfolder/a/b/tsconfig.json WatchType: Failed Lookup Locations +Info 140 [00:03:52.000] Elapsed:: *ms DirectoryWatcher:: Triggered with /user/username/rootfolder/otherfolder/a/b/node_modules/.staging/@types/lodash-e56c4fe7/package.json :: WatchInfo: /user/username/rootfolder/otherfolder/a/b/node_modules 1 undefined Project: /user/username/rootfolder/otherfolder/a/b/tsconfig.json WatchType: Failed Lookup Locations +Info 141 [00:03:53.000] DirectoryWatcher:: Triggered with /user/username/rootfolder/otherfolder/a/b/node_modules/.staging/@types/lodash-e56c4fe7/package.json :: WatchInfo: /user/username/rootfolder/otherfolder/a/b 1 undefined Config: /user/username/rootfolder/otherfolder/a/b/tsconfig.json WatchType: Wild card directory +Info 142 [00:03:54.000] Project: /user/username/rootfolder/otherfolder/a/b/tsconfig.json Detected ignored path: /user/username/rootfolder/otherfolder/a/b/node_modules/.staging/@types/lodash-e56c4fe7/package.json +Info 143 [00:03:55.000] Elapsed:: *ms DirectoryWatcher:: Triggered with /user/username/rootfolder/otherfolder/a/b/node_modules/.staging/@types/lodash-e56c4fe7/package.json :: WatchInfo: /user/username/rootfolder/otherfolder/a/b 1 undefined Config: /user/username/rootfolder/otherfolder/a/b/tsconfig.json WatchType: Wild card directory +Info 144 [00:03:58.000] DirectoryWatcher:: Triggered with /user/username/rootfolder/otherfolder/a/b/node_modules/.staging/lodash-b0733faa/index.js :: WatchInfo: /user/username/rootfolder/otherfolder/a/b/node_modules 1 undefined Project: /user/username/rootfolder/otherfolder/a/b/tsconfig.json WatchType: Failed Lookup Locations +Info 145 [00:03:59.000] Elapsed:: *ms DirectoryWatcher:: Triggered with /user/username/rootfolder/otherfolder/a/b/node_modules/.staging/lodash-b0733faa/index.js :: WatchInfo: /user/username/rootfolder/otherfolder/a/b/node_modules 1 undefined Project: /user/username/rootfolder/otherfolder/a/b/tsconfig.json WatchType: Failed Lookup Locations +Info 146 [00:04:00.000] DirectoryWatcher:: Triggered with /user/username/rootfolder/otherfolder/a/b/node_modules/.staging/lodash-b0733faa/index.js :: WatchInfo: /user/username/rootfolder/otherfolder/a/b 1 undefined Config: /user/username/rootfolder/otherfolder/a/b/tsconfig.json WatchType: Wild card directory +Info 147 [00:04:01.000] Project: /user/username/rootfolder/otherfolder/a/b/tsconfig.json Detected ignored path: /user/username/rootfolder/otherfolder/a/b/node_modules/.staging/lodash-b0733faa/index.js +Info 148 [00:04:02.000] Elapsed:: *ms DirectoryWatcher:: Triggered with /user/username/rootfolder/otherfolder/a/b/node_modules/.staging/lodash-b0733faa/index.js :: WatchInfo: /user/username/rootfolder/otherfolder/a/b 1 undefined Config: /user/username/rootfolder/otherfolder/a/b/tsconfig.json WatchType: Wild card directory +Info 149 [00:04:05.000] DirectoryWatcher:: Triggered with /user/username/rootfolder/otherfolder/a/b/node_modules/.staging/typescript-8493ea5d/package.json.3017591594 :: WatchInfo: /user/username/rootfolder/otherfolder/a/b/node_modules 1 undefined Project: /user/username/rootfolder/otherfolder/a/b/tsconfig.json WatchType: Failed Lookup Locations +Info 150 [00:04:06.000] Elapsed:: *ms DirectoryWatcher:: Triggered with /user/username/rootfolder/otherfolder/a/b/node_modules/.staging/typescript-8493ea5d/package.json.3017591594 :: WatchInfo: /user/username/rootfolder/otherfolder/a/b/node_modules 1 undefined Project: /user/username/rootfolder/otherfolder/a/b/tsconfig.json WatchType: Failed Lookup Locations +Info 151 [00:04:07.000] DirectoryWatcher:: Triggered with /user/username/rootfolder/otherfolder/a/b/node_modules/.staging/typescript-8493ea5d/package.json.3017591594 :: WatchInfo: /user/username/rootfolder/otherfolder/a/b 1 undefined Config: /user/username/rootfolder/otherfolder/a/b/tsconfig.json WatchType: Wild card directory +Info 152 [00:04:08.000] Project: /user/username/rootfolder/otherfolder/a/b/tsconfig.json Detected ignored path: /user/username/rootfolder/otherfolder/a/b/node_modules/.staging/typescript-8493ea5d/package.json.3017591594 +Info 153 [00:04:09.000] Elapsed:: *ms DirectoryWatcher:: Triggered with /user/username/rootfolder/otherfolder/a/b/node_modules/.staging/typescript-8493ea5d/package.json.3017591594 :: WatchInfo: /user/username/rootfolder/otherfolder/a/b 1 undefined Config: /user/username/rootfolder/otherfolder/a/b/tsconfig.json WatchType: Wild card directory Before checking timeout queue length (0) and running //// [/user/username/rootfolder/otherfolder/a/b/node_modules/.staging/@types/lodash-e56c4fe7/package.json] { @@ -791,11 +791,11 @@ FsWatchesRecursive:: /user/username/rootfolder/otherfolder/a/b/node_modules: {} -Info 154 [16:04:11.000] DirectoryWatcher:: Triggered with /user/username/rootfolder/otherfolder/a/b/node_modules/.staging/typescript-8493ea5d/package.json.3017591594 :: WatchInfo: /user/username/rootfolder/otherfolder/a/b/node_modules 1 undefined Project: /user/username/rootfolder/otherfolder/a/b/tsconfig.json WatchType: Failed Lookup Locations -Info 155 [16:04:12.000] Elapsed:: *ms DirectoryWatcher:: Triggered with /user/username/rootfolder/otherfolder/a/b/node_modules/.staging/typescript-8493ea5d/package.json.3017591594 :: WatchInfo: /user/username/rootfolder/otherfolder/a/b/node_modules 1 undefined Project: /user/username/rootfolder/otherfolder/a/b/tsconfig.json WatchType: Failed Lookup Locations -Info 156 [16:04:13.000] DirectoryWatcher:: Triggered with /user/username/rootfolder/otherfolder/a/b/node_modules/.staging/typescript-8493ea5d/package.json.3017591594 :: WatchInfo: /user/username/rootfolder/otherfolder/a/b 1 undefined Config: /user/username/rootfolder/otherfolder/a/b/tsconfig.json WatchType: Wild card directory -Info 157 [16:04:14.000] Project: /user/username/rootfolder/otherfolder/a/b/tsconfig.json Detected ignored path: /user/username/rootfolder/otherfolder/a/b/node_modules/.staging/typescript-8493ea5d/package.json.3017591594 -Info 158 [16:04:15.000] Elapsed:: *ms DirectoryWatcher:: Triggered with /user/username/rootfolder/otherfolder/a/b/node_modules/.staging/typescript-8493ea5d/package.json.3017591594 :: WatchInfo: /user/username/rootfolder/otherfolder/a/b 1 undefined Config: /user/username/rootfolder/otherfolder/a/b/tsconfig.json WatchType: Wild card directory +Info 154 [00:04:11.000] DirectoryWatcher:: Triggered with /user/username/rootfolder/otherfolder/a/b/node_modules/.staging/typescript-8493ea5d/package.json.3017591594 :: WatchInfo: /user/username/rootfolder/otherfolder/a/b/node_modules 1 undefined Project: /user/username/rootfolder/otherfolder/a/b/tsconfig.json WatchType: Failed Lookup Locations +Info 155 [00:04:12.000] Elapsed:: *ms DirectoryWatcher:: Triggered with /user/username/rootfolder/otherfolder/a/b/node_modules/.staging/typescript-8493ea5d/package.json.3017591594 :: WatchInfo: /user/username/rootfolder/otherfolder/a/b/node_modules 1 undefined Project: /user/username/rootfolder/otherfolder/a/b/tsconfig.json WatchType: Failed Lookup Locations +Info 156 [00:04:13.000] DirectoryWatcher:: Triggered with /user/username/rootfolder/otherfolder/a/b/node_modules/.staging/typescript-8493ea5d/package.json.3017591594 :: WatchInfo: /user/username/rootfolder/otherfolder/a/b 1 undefined Config: /user/username/rootfolder/otherfolder/a/b/tsconfig.json WatchType: Wild card directory +Info 157 [00:04:14.000] Project: /user/username/rootfolder/otherfolder/a/b/tsconfig.json Detected ignored path: /user/username/rootfolder/otherfolder/a/b/node_modules/.staging/typescript-8493ea5d/package.json.3017591594 +Info 158 [00:04:15.000] Elapsed:: *ms DirectoryWatcher:: Triggered with /user/username/rootfolder/otherfolder/a/b/node_modules/.staging/typescript-8493ea5d/package.json.3017591594 :: WatchInfo: /user/username/rootfolder/otherfolder/a/b 1 undefined Config: /user/username/rootfolder/otherfolder/a/b/tsconfig.json WatchType: Wild card directory Before checking timeout queue length (0) and running //// [/user/username/rootfolder/otherfolder/a/b/node_modules/.staging/typescript-8493ea5d/package.json.3017591594] deleted @@ -849,41 +849,41 @@ FsWatchesRecursive:: /user/username/rootfolder/otherfolder/a/b/node_modules: {} -Info 159 [16:04:36.000] DirectoryWatcher:: Triggered with /user/username/rootfolder/otherfolder/a/b/node_modules/.staging/rxjs-22375c61/bundles :: WatchInfo: /user/username/rootfolder/otherfolder/a/b/node_modules 1 undefined Project: /user/username/rootfolder/otherfolder/a/b/tsconfig.json WatchType: Failed Lookup Locations -Info 160 [16:04:37.000] Elapsed:: *ms DirectoryWatcher:: Triggered with /user/username/rootfolder/otherfolder/a/b/node_modules/.staging/rxjs-22375c61/bundles :: WatchInfo: /user/username/rootfolder/otherfolder/a/b/node_modules 1 undefined Project: /user/username/rootfolder/otherfolder/a/b/tsconfig.json WatchType: Failed Lookup Locations -Info 161 [16:04:38.000] DirectoryWatcher:: Triggered with /user/username/rootfolder/otherfolder/a/b/node_modules/.staging/rxjs-22375c61/bundles :: WatchInfo: /user/username/rootfolder/otherfolder/a/b 1 undefined Config: /user/username/rootfolder/otherfolder/a/b/tsconfig.json WatchType: Wild card directory -Info 162 [16:04:39.000] Project: /user/username/rootfolder/otherfolder/a/b/tsconfig.json Detected ignored path: /user/username/rootfolder/otherfolder/a/b/node_modules/.staging/rxjs-22375c61/bundles -Info 163 [16:04:40.000] Elapsed:: *ms DirectoryWatcher:: Triggered with /user/username/rootfolder/otherfolder/a/b/node_modules/.staging/rxjs-22375c61/bundles :: WatchInfo: /user/username/rootfolder/otherfolder/a/b 1 undefined Config: /user/username/rootfolder/otherfolder/a/b/tsconfig.json WatchType: Wild card directory -Info 164 [16:04:43.000] DirectoryWatcher:: Triggered with /user/username/rootfolder/otherfolder/a/b/node_modules/.staging/rxjs-22375c61/operator :: WatchInfo: /user/username/rootfolder/otherfolder/a/b/node_modules 1 undefined Project: /user/username/rootfolder/otherfolder/a/b/tsconfig.json WatchType: Failed Lookup Locations -Info 165 [16:04:44.000] Elapsed:: *ms DirectoryWatcher:: Triggered with /user/username/rootfolder/otherfolder/a/b/node_modules/.staging/rxjs-22375c61/operator :: WatchInfo: /user/username/rootfolder/otherfolder/a/b/node_modules 1 undefined Project: /user/username/rootfolder/otherfolder/a/b/tsconfig.json WatchType: Failed Lookup Locations -Info 166 [16:04:45.000] DirectoryWatcher:: Triggered with /user/username/rootfolder/otherfolder/a/b/node_modules/.staging/rxjs-22375c61/operator :: WatchInfo: /user/username/rootfolder/otherfolder/a/b 1 undefined Config: /user/username/rootfolder/otherfolder/a/b/tsconfig.json WatchType: Wild card directory -Info 167 [16:04:46.000] Project: /user/username/rootfolder/otherfolder/a/b/tsconfig.json Detected ignored path: /user/username/rootfolder/otherfolder/a/b/node_modules/.staging/rxjs-22375c61/operator -Info 168 [16:04:47.000] Elapsed:: *ms DirectoryWatcher:: Triggered with /user/username/rootfolder/otherfolder/a/b/node_modules/.staging/rxjs-22375c61/operator :: WatchInfo: /user/username/rootfolder/otherfolder/a/b 1 undefined Config: /user/username/rootfolder/otherfolder/a/b/tsconfig.json WatchType: Wild card directory -Info 169 [16:04:52.000] DirectoryWatcher:: Triggered with /user/username/rootfolder/otherfolder/a/b/node_modules/.staging/rxjs-22375c61/src :: WatchInfo: /user/username/rootfolder/otherfolder/a/b/node_modules 1 undefined Project: /user/username/rootfolder/otherfolder/a/b/tsconfig.json WatchType: Failed Lookup Locations -Info 170 [16:04:53.000] Elapsed:: *ms DirectoryWatcher:: Triggered with /user/username/rootfolder/otherfolder/a/b/node_modules/.staging/rxjs-22375c61/src :: WatchInfo: /user/username/rootfolder/otherfolder/a/b/node_modules 1 undefined Project: /user/username/rootfolder/otherfolder/a/b/tsconfig.json WatchType: Failed Lookup Locations -Info 171 [16:04:54.000] DirectoryWatcher:: Triggered with /user/username/rootfolder/otherfolder/a/b/node_modules/.staging/rxjs-22375c61/src :: WatchInfo: /user/username/rootfolder/otherfolder/a/b 1 undefined Config: /user/username/rootfolder/otherfolder/a/b/tsconfig.json WatchType: Wild card directory -Info 172 [16:04:55.000] Project: /user/username/rootfolder/otherfolder/a/b/tsconfig.json Detected ignored path: /user/username/rootfolder/otherfolder/a/b/node_modules/.staging/rxjs-22375c61/src -Info 173 [16:04:56.000] Elapsed:: *ms DirectoryWatcher:: Triggered with /user/username/rootfolder/otherfolder/a/b/node_modules/.staging/rxjs-22375c61/src :: WatchInfo: /user/username/rootfolder/otherfolder/a/b 1 undefined Config: /user/username/rootfolder/otherfolder/a/b/tsconfig.json WatchType: Wild card directory -Info 174 [16:04:58.000] DirectoryWatcher:: Triggered with /user/username/rootfolder/otherfolder/a/b/node_modules/.staging/rxjs-22375c61/src/add :: WatchInfo: /user/username/rootfolder/otherfolder/a/b/node_modules 1 undefined Project: /user/username/rootfolder/otherfolder/a/b/tsconfig.json WatchType: Failed Lookup Locations -Info 175 [16:04:59.000] Elapsed:: *ms DirectoryWatcher:: Triggered with /user/username/rootfolder/otherfolder/a/b/node_modules/.staging/rxjs-22375c61/src/add :: WatchInfo: /user/username/rootfolder/otherfolder/a/b/node_modules 1 undefined Project: /user/username/rootfolder/otherfolder/a/b/tsconfig.json WatchType: Failed Lookup Locations -Info 176 [16:05:00.000] DirectoryWatcher:: Triggered with /user/username/rootfolder/otherfolder/a/b/node_modules/.staging/rxjs-22375c61/src/add :: WatchInfo: /user/username/rootfolder/otherfolder/a/b 1 undefined Config: /user/username/rootfolder/otherfolder/a/b/tsconfig.json WatchType: Wild card directory -Info 177 [16:05:01.000] Project: /user/username/rootfolder/otherfolder/a/b/tsconfig.json Detected ignored path: /user/username/rootfolder/otherfolder/a/b/node_modules/.staging/rxjs-22375c61/src/add -Info 178 [16:05:02.000] Elapsed:: *ms DirectoryWatcher:: Triggered with /user/username/rootfolder/otherfolder/a/b/node_modules/.staging/rxjs-22375c61/src/add :: WatchInfo: /user/username/rootfolder/otherfolder/a/b 1 undefined Config: /user/username/rootfolder/otherfolder/a/b/tsconfig.json WatchType: Wild card directory -Info 179 [16:05:04.000] DirectoryWatcher:: Triggered with /user/username/rootfolder/otherfolder/a/b/node_modules/.staging/rxjs-22375c61/src/add/observable :: WatchInfo: /user/username/rootfolder/otherfolder/a/b/node_modules 1 undefined Project: /user/username/rootfolder/otherfolder/a/b/tsconfig.json WatchType: Failed Lookup Locations -Info 180 [16:05:05.000] Elapsed:: *ms DirectoryWatcher:: Triggered with /user/username/rootfolder/otherfolder/a/b/node_modules/.staging/rxjs-22375c61/src/add/observable :: WatchInfo: /user/username/rootfolder/otherfolder/a/b/node_modules 1 undefined Project: /user/username/rootfolder/otherfolder/a/b/tsconfig.json WatchType: Failed Lookup Locations -Info 181 [16:05:06.000] DirectoryWatcher:: Triggered with /user/username/rootfolder/otherfolder/a/b/node_modules/.staging/rxjs-22375c61/src/add/observable :: WatchInfo: /user/username/rootfolder/otherfolder/a/b 1 undefined Config: /user/username/rootfolder/otherfolder/a/b/tsconfig.json WatchType: Wild card directory -Info 182 [16:05:07.000] Project: /user/username/rootfolder/otherfolder/a/b/tsconfig.json Detected ignored path: /user/username/rootfolder/otherfolder/a/b/node_modules/.staging/rxjs-22375c61/src/add/observable -Info 183 [16:05:08.000] Elapsed:: *ms DirectoryWatcher:: Triggered with /user/username/rootfolder/otherfolder/a/b/node_modules/.staging/rxjs-22375c61/src/add/observable :: WatchInfo: /user/username/rootfolder/otherfolder/a/b 1 undefined Config: /user/username/rootfolder/otherfolder/a/b/tsconfig.json WatchType: Wild card directory -Info 184 [16:05:11.000] DirectoryWatcher:: Triggered with /user/username/rootfolder/otherfolder/a/b/node_modules/.staging/rxjs-22375c61/src/add/observable/dom :: WatchInfo: /user/username/rootfolder/otherfolder/a/b/node_modules 1 undefined Project: /user/username/rootfolder/otherfolder/a/b/tsconfig.json WatchType: Failed Lookup Locations -Info 185 [16:05:12.000] Elapsed:: *ms DirectoryWatcher:: Triggered with /user/username/rootfolder/otherfolder/a/b/node_modules/.staging/rxjs-22375c61/src/add/observable/dom :: WatchInfo: /user/username/rootfolder/otherfolder/a/b/node_modules 1 undefined Project: /user/username/rootfolder/otherfolder/a/b/tsconfig.json WatchType: Failed Lookup Locations -Info 186 [16:05:13.000] DirectoryWatcher:: Triggered with /user/username/rootfolder/otherfolder/a/b/node_modules/.staging/rxjs-22375c61/src/add/observable/dom :: WatchInfo: /user/username/rootfolder/otherfolder/a/b 1 undefined Config: /user/username/rootfolder/otherfolder/a/b/tsconfig.json WatchType: Wild card directory -Info 187 [16:05:14.000] Project: /user/username/rootfolder/otherfolder/a/b/tsconfig.json Detected ignored path: /user/username/rootfolder/otherfolder/a/b/node_modules/.staging/rxjs-22375c61/src/add/observable/dom -Info 188 [16:05:15.000] Elapsed:: *ms DirectoryWatcher:: Triggered with /user/username/rootfolder/otherfolder/a/b/node_modules/.staging/rxjs-22375c61/src/add/observable/dom :: WatchInfo: /user/username/rootfolder/otherfolder/a/b 1 undefined Config: /user/username/rootfolder/otherfolder/a/b/tsconfig.json WatchType: Wild card directory -Info 189 [16:05:18.000] DirectoryWatcher:: Triggered with /user/username/rootfolder/otherfolder/a/b/node_modules/.staging/@types/lodash-e56c4fe7/index.d.ts :: WatchInfo: /user/username/rootfolder/otherfolder/a/b/node_modules 1 undefined Project: /user/username/rootfolder/otherfolder/a/b/tsconfig.json WatchType: Failed Lookup Locations -Info 190 [16:05:19.000] Elapsed:: *ms DirectoryWatcher:: Triggered with /user/username/rootfolder/otherfolder/a/b/node_modules/.staging/@types/lodash-e56c4fe7/index.d.ts :: WatchInfo: /user/username/rootfolder/otherfolder/a/b/node_modules 1 undefined Project: /user/username/rootfolder/otherfolder/a/b/tsconfig.json WatchType: Failed Lookup Locations -Info 191 [16:05:20.000] DirectoryWatcher:: Triggered with /user/username/rootfolder/otherfolder/a/b/node_modules/.staging/@types/lodash-e56c4fe7/index.d.ts :: WatchInfo: /user/username/rootfolder/otherfolder/a/b 1 undefined Config: /user/username/rootfolder/otherfolder/a/b/tsconfig.json WatchType: Wild card directory -Info 192 [16:05:21.000] Project: /user/username/rootfolder/otherfolder/a/b/tsconfig.json Detected ignored path: /user/username/rootfolder/otherfolder/a/b/node_modules/.staging/@types/lodash-e56c4fe7/index.d.ts -Info 193 [16:05:22.000] Elapsed:: *ms DirectoryWatcher:: Triggered with /user/username/rootfolder/otherfolder/a/b/node_modules/.staging/@types/lodash-e56c4fe7/index.d.ts :: WatchInfo: /user/username/rootfolder/otherfolder/a/b 1 undefined Config: /user/username/rootfolder/otherfolder/a/b/tsconfig.json WatchType: Wild card directory +Info 159 [00:04:36.000] DirectoryWatcher:: Triggered with /user/username/rootfolder/otherfolder/a/b/node_modules/.staging/rxjs-22375c61/bundles :: WatchInfo: /user/username/rootfolder/otherfolder/a/b/node_modules 1 undefined Project: /user/username/rootfolder/otherfolder/a/b/tsconfig.json WatchType: Failed Lookup Locations +Info 160 [00:04:37.000] Elapsed:: *ms DirectoryWatcher:: Triggered with /user/username/rootfolder/otherfolder/a/b/node_modules/.staging/rxjs-22375c61/bundles :: WatchInfo: /user/username/rootfolder/otherfolder/a/b/node_modules 1 undefined Project: /user/username/rootfolder/otherfolder/a/b/tsconfig.json WatchType: Failed Lookup Locations +Info 161 [00:04:38.000] DirectoryWatcher:: Triggered with /user/username/rootfolder/otherfolder/a/b/node_modules/.staging/rxjs-22375c61/bundles :: WatchInfo: /user/username/rootfolder/otherfolder/a/b 1 undefined Config: /user/username/rootfolder/otherfolder/a/b/tsconfig.json WatchType: Wild card directory +Info 162 [00:04:39.000] Project: /user/username/rootfolder/otherfolder/a/b/tsconfig.json Detected ignored path: /user/username/rootfolder/otherfolder/a/b/node_modules/.staging/rxjs-22375c61/bundles +Info 163 [00:04:40.000] Elapsed:: *ms DirectoryWatcher:: Triggered with /user/username/rootfolder/otherfolder/a/b/node_modules/.staging/rxjs-22375c61/bundles :: WatchInfo: /user/username/rootfolder/otherfolder/a/b 1 undefined Config: /user/username/rootfolder/otherfolder/a/b/tsconfig.json WatchType: Wild card directory +Info 164 [00:04:43.000] DirectoryWatcher:: Triggered with /user/username/rootfolder/otherfolder/a/b/node_modules/.staging/rxjs-22375c61/operator :: WatchInfo: /user/username/rootfolder/otherfolder/a/b/node_modules 1 undefined Project: /user/username/rootfolder/otherfolder/a/b/tsconfig.json WatchType: Failed Lookup Locations +Info 165 [00:04:44.000] Elapsed:: *ms DirectoryWatcher:: Triggered with /user/username/rootfolder/otherfolder/a/b/node_modules/.staging/rxjs-22375c61/operator :: WatchInfo: /user/username/rootfolder/otherfolder/a/b/node_modules 1 undefined Project: /user/username/rootfolder/otherfolder/a/b/tsconfig.json WatchType: Failed Lookup Locations +Info 166 [00:04:45.000] DirectoryWatcher:: Triggered with /user/username/rootfolder/otherfolder/a/b/node_modules/.staging/rxjs-22375c61/operator :: WatchInfo: /user/username/rootfolder/otherfolder/a/b 1 undefined Config: /user/username/rootfolder/otherfolder/a/b/tsconfig.json WatchType: Wild card directory +Info 167 [00:04:46.000] Project: /user/username/rootfolder/otherfolder/a/b/tsconfig.json Detected ignored path: /user/username/rootfolder/otherfolder/a/b/node_modules/.staging/rxjs-22375c61/operator +Info 168 [00:04:47.000] Elapsed:: *ms DirectoryWatcher:: Triggered with /user/username/rootfolder/otherfolder/a/b/node_modules/.staging/rxjs-22375c61/operator :: WatchInfo: /user/username/rootfolder/otherfolder/a/b 1 undefined Config: /user/username/rootfolder/otherfolder/a/b/tsconfig.json WatchType: Wild card directory +Info 169 [00:04:52.000] DirectoryWatcher:: Triggered with /user/username/rootfolder/otherfolder/a/b/node_modules/.staging/rxjs-22375c61/src :: WatchInfo: /user/username/rootfolder/otherfolder/a/b/node_modules 1 undefined Project: /user/username/rootfolder/otherfolder/a/b/tsconfig.json WatchType: Failed Lookup Locations +Info 170 [00:04:53.000] Elapsed:: *ms DirectoryWatcher:: Triggered with /user/username/rootfolder/otherfolder/a/b/node_modules/.staging/rxjs-22375c61/src :: WatchInfo: /user/username/rootfolder/otherfolder/a/b/node_modules 1 undefined Project: /user/username/rootfolder/otherfolder/a/b/tsconfig.json WatchType: Failed Lookup Locations +Info 171 [00:04:54.000] DirectoryWatcher:: Triggered with /user/username/rootfolder/otherfolder/a/b/node_modules/.staging/rxjs-22375c61/src :: WatchInfo: /user/username/rootfolder/otherfolder/a/b 1 undefined Config: /user/username/rootfolder/otherfolder/a/b/tsconfig.json WatchType: Wild card directory +Info 172 [00:04:55.000] Project: /user/username/rootfolder/otherfolder/a/b/tsconfig.json Detected ignored path: /user/username/rootfolder/otherfolder/a/b/node_modules/.staging/rxjs-22375c61/src +Info 173 [00:04:56.000] Elapsed:: *ms DirectoryWatcher:: Triggered with /user/username/rootfolder/otherfolder/a/b/node_modules/.staging/rxjs-22375c61/src :: WatchInfo: /user/username/rootfolder/otherfolder/a/b 1 undefined Config: /user/username/rootfolder/otherfolder/a/b/tsconfig.json WatchType: Wild card directory +Info 174 [00:04:58.000] DirectoryWatcher:: Triggered with /user/username/rootfolder/otherfolder/a/b/node_modules/.staging/rxjs-22375c61/src/add :: WatchInfo: /user/username/rootfolder/otherfolder/a/b/node_modules 1 undefined Project: /user/username/rootfolder/otherfolder/a/b/tsconfig.json WatchType: Failed Lookup Locations +Info 175 [00:04:59.000] Elapsed:: *ms DirectoryWatcher:: Triggered with /user/username/rootfolder/otherfolder/a/b/node_modules/.staging/rxjs-22375c61/src/add :: WatchInfo: /user/username/rootfolder/otherfolder/a/b/node_modules 1 undefined Project: /user/username/rootfolder/otherfolder/a/b/tsconfig.json WatchType: Failed Lookup Locations +Info 176 [00:05:00.000] DirectoryWatcher:: Triggered with /user/username/rootfolder/otherfolder/a/b/node_modules/.staging/rxjs-22375c61/src/add :: WatchInfo: /user/username/rootfolder/otherfolder/a/b 1 undefined Config: /user/username/rootfolder/otherfolder/a/b/tsconfig.json WatchType: Wild card directory +Info 177 [00:05:01.000] Project: /user/username/rootfolder/otherfolder/a/b/tsconfig.json Detected ignored path: /user/username/rootfolder/otherfolder/a/b/node_modules/.staging/rxjs-22375c61/src/add +Info 178 [00:05:02.000] Elapsed:: *ms DirectoryWatcher:: Triggered with /user/username/rootfolder/otherfolder/a/b/node_modules/.staging/rxjs-22375c61/src/add :: WatchInfo: /user/username/rootfolder/otherfolder/a/b 1 undefined Config: /user/username/rootfolder/otherfolder/a/b/tsconfig.json WatchType: Wild card directory +Info 179 [00:05:04.000] DirectoryWatcher:: Triggered with /user/username/rootfolder/otherfolder/a/b/node_modules/.staging/rxjs-22375c61/src/add/observable :: WatchInfo: /user/username/rootfolder/otherfolder/a/b/node_modules 1 undefined Project: /user/username/rootfolder/otherfolder/a/b/tsconfig.json WatchType: Failed Lookup Locations +Info 180 [00:05:05.000] Elapsed:: *ms DirectoryWatcher:: Triggered with /user/username/rootfolder/otherfolder/a/b/node_modules/.staging/rxjs-22375c61/src/add/observable :: WatchInfo: /user/username/rootfolder/otherfolder/a/b/node_modules 1 undefined Project: /user/username/rootfolder/otherfolder/a/b/tsconfig.json WatchType: Failed Lookup Locations +Info 181 [00:05:06.000] DirectoryWatcher:: Triggered with /user/username/rootfolder/otherfolder/a/b/node_modules/.staging/rxjs-22375c61/src/add/observable :: WatchInfo: /user/username/rootfolder/otherfolder/a/b 1 undefined Config: /user/username/rootfolder/otherfolder/a/b/tsconfig.json WatchType: Wild card directory +Info 182 [00:05:07.000] Project: /user/username/rootfolder/otherfolder/a/b/tsconfig.json Detected ignored path: /user/username/rootfolder/otherfolder/a/b/node_modules/.staging/rxjs-22375c61/src/add/observable +Info 183 [00:05:08.000] Elapsed:: *ms DirectoryWatcher:: Triggered with /user/username/rootfolder/otherfolder/a/b/node_modules/.staging/rxjs-22375c61/src/add/observable :: WatchInfo: /user/username/rootfolder/otherfolder/a/b 1 undefined Config: /user/username/rootfolder/otherfolder/a/b/tsconfig.json WatchType: Wild card directory +Info 184 [00:05:11.000] DirectoryWatcher:: Triggered with /user/username/rootfolder/otherfolder/a/b/node_modules/.staging/rxjs-22375c61/src/add/observable/dom :: WatchInfo: /user/username/rootfolder/otherfolder/a/b/node_modules 1 undefined Project: /user/username/rootfolder/otherfolder/a/b/tsconfig.json WatchType: Failed Lookup Locations +Info 185 [00:05:12.000] Elapsed:: *ms DirectoryWatcher:: Triggered with /user/username/rootfolder/otherfolder/a/b/node_modules/.staging/rxjs-22375c61/src/add/observable/dom :: WatchInfo: /user/username/rootfolder/otherfolder/a/b/node_modules 1 undefined Project: /user/username/rootfolder/otherfolder/a/b/tsconfig.json WatchType: Failed Lookup Locations +Info 186 [00:05:13.000] DirectoryWatcher:: Triggered with /user/username/rootfolder/otherfolder/a/b/node_modules/.staging/rxjs-22375c61/src/add/observable/dom :: WatchInfo: /user/username/rootfolder/otherfolder/a/b 1 undefined Config: /user/username/rootfolder/otherfolder/a/b/tsconfig.json WatchType: Wild card directory +Info 187 [00:05:14.000] Project: /user/username/rootfolder/otherfolder/a/b/tsconfig.json Detected ignored path: /user/username/rootfolder/otherfolder/a/b/node_modules/.staging/rxjs-22375c61/src/add/observable/dom +Info 188 [00:05:15.000] Elapsed:: *ms DirectoryWatcher:: Triggered with /user/username/rootfolder/otherfolder/a/b/node_modules/.staging/rxjs-22375c61/src/add/observable/dom :: WatchInfo: /user/username/rootfolder/otherfolder/a/b 1 undefined Config: /user/username/rootfolder/otherfolder/a/b/tsconfig.json WatchType: Wild card directory +Info 189 [00:05:18.000] DirectoryWatcher:: Triggered with /user/username/rootfolder/otherfolder/a/b/node_modules/.staging/@types/lodash-e56c4fe7/index.d.ts :: WatchInfo: /user/username/rootfolder/otherfolder/a/b/node_modules 1 undefined Project: /user/username/rootfolder/otherfolder/a/b/tsconfig.json WatchType: Failed Lookup Locations +Info 190 [00:05:19.000] Elapsed:: *ms DirectoryWatcher:: Triggered with /user/username/rootfolder/otherfolder/a/b/node_modules/.staging/@types/lodash-e56c4fe7/index.d.ts :: WatchInfo: /user/username/rootfolder/otherfolder/a/b/node_modules 1 undefined Project: /user/username/rootfolder/otherfolder/a/b/tsconfig.json WatchType: Failed Lookup Locations +Info 191 [00:05:20.000] DirectoryWatcher:: Triggered with /user/username/rootfolder/otherfolder/a/b/node_modules/.staging/@types/lodash-e56c4fe7/index.d.ts :: WatchInfo: /user/username/rootfolder/otherfolder/a/b 1 undefined Config: /user/username/rootfolder/otherfolder/a/b/tsconfig.json WatchType: Wild card directory +Info 192 [00:05:21.000] Project: /user/username/rootfolder/otherfolder/a/b/tsconfig.json Detected ignored path: /user/username/rootfolder/otherfolder/a/b/node_modules/.staging/@types/lodash-e56c4fe7/index.d.ts +Info 193 [00:05:22.000] Elapsed:: *ms DirectoryWatcher:: Triggered with /user/username/rootfolder/otherfolder/a/b/node_modules/.staging/@types/lodash-e56c4fe7/index.d.ts :: WatchInfo: /user/username/rootfolder/otherfolder/a/b 1 undefined Config: /user/username/rootfolder/otherfolder/a/b/tsconfig.json WatchType: Wild card directory Before checking timeout queue length (0) and running //// [/user/username/rootfolder/otherfolder/a/b/node_modules/.staging/@types/lodash-e56c4fe7/index.d.ts] @@ -951,31 +951,31 @@ FsWatchesRecursive:: /user/username/rootfolder/otherfolder/a/b/node_modules: {} -Info 194 [16:05:35.000] DirectoryWatcher:: Triggered with /user/username/rootfolder/otherfolder/a/b/node_modules/.staging/rxjs-22375c61/src/scheduler :: WatchInfo: /user/username/rootfolder/otherfolder/a/b/node_modules 1 undefined Project: /user/username/rootfolder/otherfolder/a/b/tsconfig.json WatchType: Failed Lookup Locations -Info 195 [16:05:36.000] Elapsed:: *ms DirectoryWatcher:: Triggered with /user/username/rootfolder/otherfolder/a/b/node_modules/.staging/rxjs-22375c61/src/scheduler :: WatchInfo: /user/username/rootfolder/otherfolder/a/b/node_modules 1 undefined Project: /user/username/rootfolder/otherfolder/a/b/tsconfig.json WatchType: Failed Lookup Locations -Info 196 [16:05:37.000] DirectoryWatcher:: Triggered with /user/username/rootfolder/otherfolder/a/b/node_modules/.staging/rxjs-22375c61/src/scheduler :: WatchInfo: /user/username/rootfolder/otherfolder/a/b 1 undefined Config: /user/username/rootfolder/otherfolder/a/b/tsconfig.json WatchType: Wild card directory -Info 197 [16:05:38.000] Project: /user/username/rootfolder/otherfolder/a/b/tsconfig.json Detected ignored path: /user/username/rootfolder/otherfolder/a/b/node_modules/.staging/rxjs-22375c61/src/scheduler -Info 198 [16:05:39.000] Elapsed:: *ms DirectoryWatcher:: Triggered with /user/username/rootfolder/otherfolder/a/b/node_modules/.staging/rxjs-22375c61/src/scheduler :: WatchInfo: /user/username/rootfolder/otherfolder/a/b 1 undefined Config: /user/username/rootfolder/otherfolder/a/b/tsconfig.json WatchType: Wild card directory -Info 199 [16:05:42.000] DirectoryWatcher:: Triggered with /user/username/rootfolder/otherfolder/a/b/node_modules/.staging/rxjs-22375c61/src/util :: WatchInfo: /user/username/rootfolder/otherfolder/a/b/node_modules 1 undefined Project: /user/username/rootfolder/otherfolder/a/b/tsconfig.json WatchType: Failed Lookup Locations -Info 200 [16:05:43.000] Elapsed:: *ms DirectoryWatcher:: Triggered with /user/username/rootfolder/otherfolder/a/b/node_modules/.staging/rxjs-22375c61/src/util :: WatchInfo: /user/username/rootfolder/otherfolder/a/b/node_modules 1 undefined Project: /user/username/rootfolder/otherfolder/a/b/tsconfig.json WatchType: Failed Lookup Locations -Info 201 [16:05:44.000] DirectoryWatcher:: Triggered with /user/username/rootfolder/otherfolder/a/b/node_modules/.staging/rxjs-22375c61/src/util :: WatchInfo: /user/username/rootfolder/otherfolder/a/b 1 undefined Config: /user/username/rootfolder/otherfolder/a/b/tsconfig.json WatchType: Wild card directory -Info 202 [16:05:45.000] Project: /user/username/rootfolder/otherfolder/a/b/tsconfig.json Detected ignored path: /user/username/rootfolder/otherfolder/a/b/node_modules/.staging/rxjs-22375c61/src/util -Info 203 [16:05:46.000] Elapsed:: *ms DirectoryWatcher:: Triggered with /user/username/rootfolder/otherfolder/a/b/node_modules/.staging/rxjs-22375c61/src/util :: WatchInfo: /user/username/rootfolder/otherfolder/a/b 1 undefined Config: /user/username/rootfolder/otherfolder/a/b/tsconfig.json WatchType: Wild card directory -Info 204 [16:05:49.000] DirectoryWatcher:: Triggered with /user/username/rootfolder/otherfolder/a/b/node_modules/.staging/rxjs-22375c61/symbol :: WatchInfo: /user/username/rootfolder/otherfolder/a/b/node_modules 1 undefined Project: /user/username/rootfolder/otherfolder/a/b/tsconfig.json WatchType: Failed Lookup Locations -Info 205 [16:05:50.000] Elapsed:: *ms DirectoryWatcher:: Triggered with /user/username/rootfolder/otherfolder/a/b/node_modules/.staging/rxjs-22375c61/symbol :: WatchInfo: /user/username/rootfolder/otherfolder/a/b/node_modules 1 undefined Project: /user/username/rootfolder/otherfolder/a/b/tsconfig.json WatchType: Failed Lookup Locations -Info 206 [16:05:51.000] DirectoryWatcher:: Triggered with /user/username/rootfolder/otherfolder/a/b/node_modules/.staging/rxjs-22375c61/symbol :: WatchInfo: /user/username/rootfolder/otherfolder/a/b 1 undefined Config: /user/username/rootfolder/otherfolder/a/b/tsconfig.json WatchType: Wild card directory -Info 207 [16:05:52.000] Project: /user/username/rootfolder/otherfolder/a/b/tsconfig.json Detected ignored path: /user/username/rootfolder/otherfolder/a/b/node_modules/.staging/rxjs-22375c61/symbol -Info 208 [16:05:53.000] Elapsed:: *ms DirectoryWatcher:: Triggered with /user/username/rootfolder/otherfolder/a/b/node_modules/.staging/rxjs-22375c61/symbol :: WatchInfo: /user/username/rootfolder/otherfolder/a/b 1 undefined Config: /user/username/rootfolder/otherfolder/a/b/tsconfig.json WatchType: Wild card directory -Info 209 [16:05:56.000] DirectoryWatcher:: Triggered with /user/username/rootfolder/otherfolder/a/b/node_modules/.staging/rxjs-22375c61/testing :: WatchInfo: /user/username/rootfolder/otherfolder/a/b/node_modules 1 undefined Project: /user/username/rootfolder/otherfolder/a/b/tsconfig.json WatchType: Failed Lookup Locations -Info 210 [16:05:57.000] Elapsed:: *ms DirectoryWatcher:: Triggered with /user/username/rootfolder/otherfolder/a/b/node_modules/.staging/rxjs-22375c61/testing :: WatchInfo: /user/username/rootfolder/otherfolder/a/b/node_modules 1 undefined Project: /user/username/rootfolder/otherfolder/a/b/tsconfig.json WatchType: Failed Lookup Locations -Info 211 [16:05:58.000] DirectoryWatcher:: Triggered with /user/username/rootfolder/otherfolder/a/b/node_modules/.staging/rxjs-22375c61/testing :: WatchInfo: /user/username/rootfolder/otherfolder/a/b 1 undefined Config: /user/username/rootfolder/otherfolder/a/b/tsconfig.json WatchType: Wild card directory -Info 212 [16:05:59.000] Project: /user/username/rootfolder/otherfolder/a/b/tsconfig.json Detected ignored path: /user/username/rootfolder/otherfolder/a/b/node_modules/.staging/rxjs-22375c61/testing -Info 213 [16:06:00.000] Elapsed:: *ms DirectoryWatcher:: Triggered with /user/username/rootfolder/otherfolder/a/b/node_modules/.staging/rxjs-22375c61/testing :: WatchInfo: /user/username/rootfolder/otherfolder/a/b 1 undefined Config: /user/username/rootfolder/otherfolder/a/b/tsconfig.json WatchType: Wild card directory -Info 214 [16:06:03.000] DirectoryWatcher:: Triggered with /user/username/rootfolder/otherfolder/a/b/node_modules/.staging/rxjs-22375c61/package.json.2252192041 :: WatchInfo: /user/username/rootfolder/otherfolder/a/b/node_modules 1 undefined Project: /user/username/rootfolder/otherfolder/a/b/tsconfig.json WatchType: Failed Lookup Locations -Info 215 [16:06:04.000] Elapsed:: *ms DirectoryWatcher:: Triggered with /user/username/rootfolder/otherfolder/a/b/node_modules/.staging/rxjs-22375c61/package.json.2252192041 :: WatchInfo: /user/username/rootfolder/otherfolder/a/b/node_modules 1 undefined Project: /user/username/rootfolder/otherfolder/a/b/tsconfig.json WatchType: Failed Lookup Locations -Info 216 [16:06:05.000] DirectoryWatcher:: Triggered with /user/username/rootfolder/otherfolder/a/b/node_modules/.staging/rxjs-22375c61/package.json.2252192041 :: WatchInfo: /user/username/rootfolder/otherfolder/a/b 1 undefined Config: /user/username/rootfolder/otherfolder/a/b/tsconfig.json WatchType: Wild card directory -Info 217 [16:06:06.000] Project: /user/username/rootfolder/otherfolder/a/b/tsconfig.json Detected ignored path: /user/username/rootfolder/otherfolder/a/b/node_modules/.staging/rxjs-22375c61/package.json.2252192041 -Info 218 [16:06:07.000] Elapsed:: *ms DirectoryWatcher:: Triggered with /user/username/rootfolder/otherfolder/a/b/node_modules/.staging/rxjs-22375c61/package.json.2252192041 :: WatchInfo: /user/username/rootfolder/otherfolder/a/b 1 undefined Config: /user/username/rootfolder/otherfolder/a/b/tsconfig.json WatchType: Wild card directory +Info 194 [00:05:35.000] DirectoryWatcher:: Triggered with /user/username/rootfolder/otherfolder/a/b/node_modules/.staging/rxjs-22375c61/src/scheduler :: WatchInfo: /user/username/rootfolder/otherfolder/a/b/node_modules 1 undefined Project: /user/username/rootfolder/otherfolder/a/b/tsconfig.json WatchType: Failed Lookup Locations +Info 195 [00:05:36.000] Elapsed:: *ms DirectoryWatcher:: Triggered with /user/username/rootfolder/otherfolder/a/b/node_modules/.staging/rxjs-22375c61/src/scheduler :: WatchInfo: /user/username/rootfolder/otherfolder/a/b/node_modules 1 undefined Project: /user/username/rootfolder/otherfolder/a/b/tsconfig.json WatchType: Failed Lookup Locations +Info 196 [00:05:37.000] DirectoryWatcher:: Triggered with /user/username/rootfolder/otherfolder/a/b/node_modules/.staging/rxjs-22375c61/src/scheduler :: WatchInfo: /user/username/rootfolder/otherfolder/a/b 1 undefined Config: /user/username/rootfolder/otherfolder/a/b/tsconfig.json WatchType: Wild card directory +Info 197 [00:05:38.000] Project: /user/username/rootfolder/otherfolder/a/b/tsconfig.json Detected ignored path: /user/username/rootfolder/otherfolder/a/b/node_modules/.staging/rxjs-22375c61/src/scheduler +Info 198 [00:05:39.000] Elapsed:: *ms DirectoryWatcher:: Triggered with /user/username/rootfolder/otherfolder/a/b/node_modules/.staging/rxjs-22375c61/src/scheduler :: WatchInfo: /user/username/rootfolder/otherfolder/a/b 1 undefined Config: /user/username/rootfolder/otherfolder/a/b/tsconfig.json WatchType: Wild card directory +Info 199 [00:05:42.000] DirectoryWatcher:: Triggered with /user/username/rootfolder/otherfolder/a/b/node_modules/.staging/rxjs-22375c61/src/util :: WatchInfo: /user/username/rootfolder/otherfolder/a/b/node_modules 1 undefined Project: /user/username/rootfolder/otherfolder/a/b/tsconfig.json WatchType: Failed Lookup Locations +Info 200 [00:05:43.000] Elapsed:: *ms DirectoryWatcher:: Triggered with /user/username/rootfolder/otherfolder/a/b/node_modules/.staging/rxjs-22375c61/src/util :: WatchInfo: /user/username/rootfolder/otherfolder/a/b/node_modules 1 undefined Project: /user/username/rootfolder/otherfolder/a/b/tsconfig.json WatchType: Failed Lookup Locations +Info 201 [00:05:44.000] DirectoryWatcher:: Triggered with /user/username/rootfolder/otherfolder/a/b/node_modules/.staging/rxjs-22375c61/src/util :: WatchInfo: /user/username/rootfolder/otherfolder/a/b 1 undefined Config: /user/username/rootfolder/otherfolder/a/b/tsconfig.json WatchType: Wild card directory +Info 202 [00:05:45.000] Project: /user/username/rootfolder/otherfolder/a/b/tsconfig.json Detected ignored path: /user/username/rootfolder/otherfolder/a/b/node_modules/.staging/rxjs-22375c61/src/util +Info 203 [00:05:46.000] Elapsed:: *ms DirectoryWatcher:: Triggered with /user/username/rootfolder/otherfolder/a/b/node_modules/.staging/rxjs-22375c61/src/util :: WatchInfo: /user/username/rootfolder/otherfolder/a/b 1 undefined Config: /user/username/rootfolder/otherfolder/a/b/tsconfig.json WatchType: Wild card directory +Info 204 [00:05:49.000] DirectoryWatcher:: Triggered with /user/username/rootfolder/otherfolder/a/b/node_modules/.staging/rxjs-22375c61/symbol :: WatchInfo: /user/username/rootfolder/otherfolder/a/b/node_modules 1 undefined Project: /user/username/rootfolder/otherfolder/a/b/tsconfig.json WatchType: Failed Lookup Locations +Info 205 [00:05:50.000] Elapsed:: *ms DirectoryWatcher:: Triggered with /user/username/rootfolder/otherfolder/a/b/node_modules/.staging/rxjs-22375c61/symbol :: WatchInfo: /user/username/rootfolder/otherfolder/a/b/node_modules 1 undefined Project: /user/username/rootfolder/otherfolder/a/b/tsconfig.json WatchType: Failed Lookup Locations +Info 206 [00:05:51.000] DirectoryWatcher:: Triggered with /user/username/rootfolder/otherfolder/a/b/node_modules/.staging/rxjs-22375c61/symbol :: WatchInfo: /user/username/rootfolder/otherfolder/a/b 1 undefined Config: /user/username/rootfolder/otherfolder/a/b/tsconfig.json WatchType: Wild card directory +Info 207 [00:05:52.000] Project: /user/username/rootfolder/otherfolder/a/b/tsconfig.json Detected ignored path: /user/username/rootfolder/otherfolder/a/b/node_modules/.staging/rxjs-22375c61/symbol +Info 208 [00:05:53.000] Elapsed:: *ms DirectoryWatcher:: Triggered with /user/username/rootfolder/otherfolder/a/b/node_modules/.staging/rxjs-22375c61/symbol :: WatchInfo: /user/username/rootfolder/otherfolder/a/b 1 undefined Config: /user/username/rootfolder/otherfolder/a/b/tsconfig.json WatchType: Wild card directory +Info 209 [00:05:56.000] DirectoryWatcher:: Triggered with /user/username/rootfolder/otherfolder/a/b/node_modules/.staging/rxjs-22375c61/testing :: WatchInfo: /user/username/rootfolder/otherfolder/a/b/node_modules 1 undefined Project: /user/username/rootfolder/otherfolder/a/b/tsconfig.json WatchType: Failed Lookup Locations +Info 210 [00:05:57.000] Elapsed:: *ms DirectoryWatcher:: Triggered with /user/username/rootfolder/otherfolder/a/b/node_modules/.staging/rxjs-22375c61/testing :: WatchInfo: /user/username/rootfolder/otherfolder/a/b/node_modules 1 undefined Project: /user/username/rootfolder/otherfolder/a/b/tsconfig.json WatchType: Failed Lookup Locations +Info 211 [00:05:58.000] DirectoryWatcher:: Triggered with /user/username/rootfolder/otherfolder/a/b/node_modules/.staging/rxjs-22375c61/testing :: WatchInfo: /user/username/rootfolder/otherfolder/a/b 1 undefined Config: /user/username/rootfolder/otherfolder/a/b/tsconfig.json WatchType: Wild card directory +Info 212 [00:05:59.000] Project: /user/username/rootfolder/otherfolder/a/b/tsconfig.json Detected ignored path: /user/username/rootfolder/otherfolder/a/b/node_modules/.staging/rxjs-22375c61/testing +Info 213 [00:06:00.000] Elapsed:: *ms DirectoryWatcher:: Triggered with /user/username/rootfolder/otherfolder/a/b/node_modules/.staging/rxjs-22375c61/testing :: WatchInfo: /user/username/rootfolder/otherfolder/a/b 1 undefined Config: /user/username/rootfolder/otherfolder/a/b/tsconfig.json WatchType: Wild card directory +Info 214 [00:06:03.000] DirectoryWatcher:: Triggered with /user/username/rootfolder/otherfolder/a/b/node_modules/.staging/rxjs-22375c61/package.json.2252192041 :: WatchInfo: /user/username/rootfolder/otherfolder/a/b/node_modules 1 undefined Project: /user/username/rootfolder/otherfolder/a/b/tsconfig.json WatchType: Failed Lookup Locations +Info 215 [00:06:04.000] Elapsed:: *ms DirectoryWatcher:: Triggered with /user/username/rootfolder/otherfolder/a/b/node_modules/.staging/rxjs-22375c61/package.json.2252192041 :: WatchInfo: /user/username/rootfolder/otherfolder/a/b/node_modules 1 undefined Project: /user/username/rootfolder/otherfolder/a/b/tsconfig.json WatchType: Failed Lookup Locations +Info 216 [00:06:05.000] DirectoryWatcher:: Triggered with /user/username/rootfolder/otherfolder/a/b/node_modules/.staging/rxjs-22375c61/package.json.2252192041 :: WatchInfo: /user/username/rootfolder/otherfolder/a/b 1 undefined Config: /user/username/rootfolder/otherfolder/a/b/tsconfig.json WatchType: Wild card directory +Info 217 [00:06:06.000] Project: /user/username/rootfolder/otherfolder/a/b/tsconfig.json Detected ignored path: /user/username/rootfolder/otherfolder/a/b/node_modules/.staging/rxjs-22375c61/package.json.2252192041 +Info 218 [00:06:07.000] Elapsed:: *ms DirectoryWatcher:: Triggered with /user/username/rootfolder/otherfolder/a/b/node_modules/.staging/rxjs-22375c61/package.json.2252192041 :: WatchInfo: /user/username/rootfolder/otherfolder/a/b 1 undefined Config: /user/username/rootfolder/otherfolder/a/b/tsconfig.json WatchType: Wild card directory Before checking timeout queue length (0) and running //// [/user/username/rootfolder/otherfolder/a/b/node_modules/.staging/rxjs-22375c61/package.json.2252192041] { @@ -1259,73 +1259,73 @@ FsWatchesRecursive:: /user/username/rootfolder/otherfolder/a/b/node_modules: {} -Info 219 [16:06:09.000] DirectoryWatcher:: Triggered with /user/username/rootfolder/otherfolder/a/b/node_modules/.staging/rxjs-22375c61/package.json.2252192041 :: WatchInfo: /user/username/rootfolder/otherfolder/a/b/node_modules 1 undefined Project: /user/username/rootfolder/otherfolder/a/b/tsconfig.json WatchType: Failed Lookup Locations -Info 220 [16:06:10.000] Elapsed:: *ms DirectoryWatcher:: Triggered with /user/username/rootfolder/otherfolder/a/b/node_modules/.staging/rxjs-22375c61/package.json.2252192041 :: WatchInfo: /user/username/rootfolder/otherfolder/a/b/node_modules 1 undefined Project: /user/username/rootfolder/otherfolder/a/b/tsconfig.json WatchType: Failed Lookup Locations -Info 221 [16:06:11.000] DirectoryWatcher:: Triggered with /user/username/rootfolder/otherfolder/a/b/node_modules/.staging/rxjs-22375c61/package.json.2252192041 :: WatchInfo: /user/username/rootfolder/otherfolder/a/b 1 undefined Config: /user/username/rootfolder/otherfolder/a/b/tsconfig.json WatchType: Wild card directory -Info 222 [16:06:12.000] Project: /user/username/rootfolder/otherfolder/a/b/tsconfig.json Detected ignored path: /user/username/rootfolder/otherfolder/a/b/node_modules/.staging/rxjs-22375c61/package.json.2252192041 -Info 223 [16:06:13.000] Elapsed:: *ms DirectoryWatcher:: Triggered with /user/username/rootfolder/otherfolder/a/b/node_modules/.staging/rxjs-22375c61/package.json.2252192041 :: WatchInfo: /user/username/rootfolder/otherfolder/a/b 1 undefined Config: /user/username/rootfolder/otherfolder/a/b/tsconfig.json WatchType: Wild card directory -Info 224 [16:06:26.000] DirectoryWatcher:: Triggered with /user/username/rootfolder/otherfolder/a/b/node_modules/symbol-observable :: WatchInfo: /user/username/rootfolder/otherfolder/a/b/node_modules 1 undefined Project: /user/username/rootfolder/otherfolder/a/b/tsconfig.json WatchType: Failed Lookup Locations -Info 225 [16:06:27.000] Scheduled: /user/username/rootfolder/otherfolder/a/b/tsconfig.jsonFailedLookupInvalidation -Info 226 [16:06:28.000] Elapsed:: *ms DirectoryWatcher:: Triggered with /user/username/rootfolder/otherfolder/a/b/node_modules/symbol-observable :: WatchInfo: /user/username/rootfolder/otherfolder/a/b/node_modules 1 undefined Project: /user/username/rootfolder/otherfolder/a/b/tsconfig.json WatchType: Failed Lookup Locations -Info 227 [16:06:29.000] DirectoryWatcher:: Triggered with /user/username/rootfolder/otherfolder/a/b/node_modules/symbol-observable :: WatchInfo: /user/username/rootfolder/otherfolder/a/b 1 undefined Config: /user/username/rootfolder/otherfolder/a/b/tsconfig.json WatchType: Wild card directory -Info 228 [16:06:30.000] Scheduled: /user/username/rootfolder/otherfolder/a/b/tsconfig.json -Info 229 [16:06:31.000] Scheduled: *ensureProjectForOpenFiles* -Info 230 [16:06:32.000] Elapsed:: *ms DirectoryWatcher:: Triggered with /user/username/rootfolder/otherfolder/a/b/node_modules/symbol-observable :: WatchInfo: /user/username/rootfolder/otherfolder/a/b 1 undefined Config: /user/username/rootfolder/otherfolder/a/b/tsconfig.json WatchType: Wild card directory -Info 231 [16:06:35.000] DirectoryWatcher:: Triggered with /user/username/rootfolder/otherfolder/a/b/node_modules/@types :: WatchInfo: /user/username/rootfolder/otherfolder/a/b/node_modules/@types 1 undefined Project: /user/username/rootfolder/otherfolder/a/b/tsconfig.json WatchType: Type roots -Info 232 [16:06:36.000] Scheduled: /user/username/rootfolder/otherfolder/a/b/tsconfig.json, Cancelled earlier one -Info 233 [16:06:37.000] Scheduled: *ensureProjectForOpenFiles*, Cancelled earlier one -Info 234 [16:06:38.000] Scheduled: /user/username/rootfolder/otherfolder/a/b/tsconfig.jsonFailedLookupInvalidation, Cancelled earlier one -Info 235 [16:06:39.000] Elapsed:: *ms DirectoryWatcher:: Triggered with /user/username/rootfolder/otherfolder/a/b/node_modules/@types :: WatchInfo: /user/username/rootfolder/otherfolder/a/b/node_modules/@types 1 undefined Project: /user/username/rootfolder/otherfolder/a/b/tsconfig.json WatchType: Type roots -Info 236 [16:06:40.000] DirectoryWatcher:: Triggered with /user/username/rootfolder/otherfolder/a/b/node_modules/@types :: WatchInfo: /user/username/rootfolder/otherfolder/a/b/node_modules/@types 1 undefined Project: /user/username/rootfolder/otherfolder/a/b/tsconfig.json WatchType: Type roots -Info 237 [16:06:41.000] Scheduled: /user/username/rootfolder/otherfolder/a/b/tsconfig.json, Cancelled earlier one -Info 238 [16:06:42.000] Scheduled: *ensureProjectForOpenFiles*, Cancelled earlier one -Info 239 [16:06:43.000] Scheduled: /user/username/rootfolder/otherfolder/a/b/tsconfig.jsonFailedLookupInvalidation, Cancelled earlier one -Info 240 [16:06:44.000] Elapsed:: *ms DirectoryWatcher:: Triggered with /user/username/rootfolder/otherfolder/a/b/node_modules/@types :: WatchInfo: /user/username/rootfolder/otherfolder/a/b/node_modules/@types 1 undefined Project: /user/username/rootfolder/otherfolder/a/b/tsconfig.json WatchType: Type roots -Info 241 [16:06:45.000] DirectoryWatcher:: Triggered with /user/username/rootfolder/otherfolder/a/b/node_modules/@types :: WatchInfo: /user/username/rootfolder/otherfolder/a/b/node_modules 1 undefined Project: /user/username/rootfolder/otherfolder/a/b/tsconfig.json WatchType: Failed Lookup Locations -Info 242 [16:06:46.000] Scheduled: /user/username/rootfolder/otherfolder/a/b/tsconfig.jsonFailedLookupInvalidation, Cancelled earlier one -Info 243 [16:06:47.000] Elapsed:: *ms DirectoryWatcher:: Triggered with /user/username/rootfolder/otherfolder/a/b/node_modules/@types :: WatchInfo: /user/username/rootfolder/otherfolder/a/b/node_modules 1 undefined Project: /user/username/rootfolder/otherfolder/a/b/tsconfig.json WatchType: Failed Lookup Locations -Info 244 [16:06:48.000] DirectoryWatcher:: Triggered with /user/username/rootfolder/otherfolder/a/b/node_modules/@types :: WatchInfo: /user/username/rootfolder/otherfolder/a/b 1 undefined Config: /user/username/rootfolder/otherfolder/a/b/tsconfig.json WatchType: Wild card directory -Info 245 [16:06:49.000] Scheduled: /user/username/rootfolder/otherfolder/a/b/tsconfig.json, Cancelled earlier one -Info 246 [16:06:50.000] Scheduled: *ensureProjectForOpenFiles*, Cancelled earlier one -Info 247 [16:06:51.000] Elapsed:: *ms DirectoryWatcher:: Triggered with /user/username/rootfolder/otherfolder/a/b/node_modules/@types :: WatchInfo: /user/username/rootfolder/otherfolder/a/b 1 undefined Config: /user/username/rootfolder/otherfolder/a/b/tsconfig.json WatchType: Wild card directory -Info 248 [16:06:54.000] DirectoryWatcher:: Triggered with /user/username/rootfolder/otherfolder/a/b/node_modules/@types/lodash :: WatchInfo: /user/username/rootfolder/otherfolder/a/b/node_modules/@types 1 undefined Project: /user/username/rootfolder/otherfolder/a/b/tsconfig.json WatchType: Type roots -Info 249 [16:06:55.000] Scheduled: /user/username/rootfolder/otherfolder/a/b/tsconfig.json, Cancelled earlier one -Info 250 [16:06:56.000] Scheduled: *ensureProjectForOpenFiles*, Cancelled earlier one -Info 251 [16:06:57.000] Scheduled: /user/username/rootfolder/otherfolder/a/b/tsconfig.jsonFailedLookupInvalidation, Cancelled earlier one -Info 252 [16:06:58.000] Elapsed:: *ms DirectoryWatcher:: Triggered with /user/username/rootfolder/otherfolder/a/b/node_modules/@types/lodash :: WatchInfo: /user/username/rootfolder/otherfolder/a/b/node_modules/@types 1 undefined Project: /user/username/rootfolder/otherfolder/a/b/tsconfig.json WatchType: Type roots -Info 253 [16:06:59.000] DirectoryWatcher:: Triggered with /user/username/rootfolder/otherfolder/a/b/node_modules/@types/lodash :: WatchInfo: /user/username/rootfolder/otherfolder/a/b/node_modules 1 undefined Project: /user/username/rootfolder/otherfolder/a/b/tsconfig.json WatchType: Failed Lookup Locations -Info 254 [16:07:00.000] Scheduled: /user/username/rootfolder/otherfolder/a/b/tsconfig.jsonFailedLookupInvalidation, Cancelled earlier one -Info 255 [16:07:01.000] Elapsed:: *ms DirectoryWatcher:: Triggered with /user/username/rootfolder/otherfolder/a/b/node_modules/@types/lodash :: WatchInfo: /user/username/rootfolder/otherfolder/a/b/node_modules 1 undefined Project: /user/username/rootfolder/otherfolder/a/b/tsconfig.json WatchType: Failed Lookup Locations -Info 256 [16:07:02.000] DirectoryWatcher:: Triggered with /user/username/rootfolder/otherfolder/a/b/node_modules/@types/lodash :: WatchInfo: /user/username/rootfolder/otherfolder/a/b 1 undefined Config: /user/username/rootfolder/otherfolder/a/b/tsconfig.json WatchType: Wild card directory -Info 257 [16:07:03.000] Scheduled: /user/username/rootfolder/otherfolder/a/b/tsconfig.json, Cancelled earlier one -Info 258 [16:07:04.000] Scheduled: *ensureProjectForOpenFiles*, Cancelled earlier one -Info 259 [16:07:05.000] Elapsed:: *ms DirectoryWatcher:: Triggered with /user/username/rootfolder/otherfolder/a/b/node_modules/@types/lodash :: WatchInfo: /user/username/rootfolder/otherfolder/a/b 1 undefined Config: /user/username/rootfolder/otherfolder/a/b/tsconfig.json WatchType: Wild card directory -Info 260 [16:07:08.000] DirectoryWatcher:: Triggered with /user/username/rootfolder/otherfolder/a/b/node_modules/lodash :: WatchInfo: /user/username/rootfolder/otherfolder/a/b/node_modules 1 undefined Project: /user/username/rootfolder/otherfolder/a/b/tsconfig.json WatchType: Failed Lookup Locations -Info 261 [16:07:09.000] Scheduled: /user/username/rootfolder/otherfolder/a/b/tsconfig.jsonFailedLookupInvalidation, Cancelled earlier one -Info 262 [16:07:10.000] Elapsed:: *ms DirectoryWatcher:: Triggered with /user/username/rootfolder/otherfolder/a/b/node_modules/lodash :: WatchInfo: /user/username/rootfolder/otherfolder/a/b/node_modules 1 undefined Project: /user/username/rootfolder/otherfolder/a/b/tsconfig.json WatchType: Failed Lookup Locations -Info 263 [16:07:11.000] DirectoryWatcher:: Triggered with /user/username/rootfolder/otherfolder/a/b/node_modules/lodash :: WatchInfo: /user/username/rootfolder/otherfolder/a/b 1 undefined Config: /user/username/rootfolder/otherfolder/a/b/tsconfig.json WatchType: Wild card directory -Info 264 [16:07:12.000] Scheduled: /user/username/rootfolder/otherfolder/a/b/tsconfig.json, Cancelled earlier one -Info 265 [16:07:13.000] Scheduled: *ensureProjectForOpenFiles*, Cancelled earlier one -Info 266 [16:07:14.000] Elapsed:: *ms DirectoryWatcher:: Triggered with /user/username/rootfolder/otherfolder/a/b/node_modules/lodash :: WatchInfo: /user/username/rootfolder/otherfolder/a/b 1 undefined Config: /user/username/rootfolder/otherfolder/a/b/tsconfig.json WatchType: Wild card directory -Info 267 [16:07:17.000] DirectoryWatcher:: Triggered with /user/username/rootfolder/otherfolder/a/b/node_modules/rxjs :: WatchInfo: /user/username/rootfolder/otherfolder/a/b/node_modules 1 undefined Project: /user/username/rootfolder/otherfolder/a/b/tsconfig.json WatchType: Failed Lookup Locations -Info 268 [16:07:18.000] Scheduled: /user/username/rootfolder/otherfolder/a/b/tsconfig.jsonFailedLookupInvalidation, Cancelled earlier one -Info 269 [16:07:19.000] Elapsed:: *ms DirectoryWatcher:: Triggered with /user/username/rootfolder/otherfolder/a/b/node_modules/rxjs :: WatchInfo: /user/username/rootfolder/otherfolder/a/b/node_modules 1 undefined Project: /user/username/rootfolder/otherfolder/a/b/tsconfig.json WatchType: Failed Lookup Locations -Info 270 [16:07:20.000] DirectoryWatcher:: Triggered with /user/username/rootfolder/otherfolder/a/b/node_modules/rxjs :: WatchInfo: /user/username/rootfolder/otherfolder/a/b 1 undefined Config: /user/username/rootfolder/otherfolder/a/b/tsconfig.json WatchType: Wild card directory -Info 271 [16:07:21.000] Scheduled: /user/username/rootfolder/otherfolder/a/b/tsconfig.json, Cancelled earlier one -Info 272 [16:07:22.000] Scheduled: *ensureProjectForOpenFiles*, Cancelled earlier one -Info 273 [16:07:23.000] Elapsed:: *ms DirectoryWatcher:: Triggered with /user/username/rootfolder/otherfolder/a/b/node_modules/rxjs :: WatchInfo: /user/username/rootfolder/otherfolder/a/b 1 undefined Config: /user/username/rootfolder/otherfolder/a/b/tsconfig.json WatchType: Wild card directory -Info 274 [16:07:26.000] DirectoryWatcher:: Triggered with /user/username/rootfolder/otherfolder/a/b/node_modules/typescript :: WatchInfo: /user/username/rootfolder/otherfolder/a/b/node_modules 1 undefined Project: /user/username/rootfolder/otherfolder/a/b/tsconfig.json WatchType: Failed Lookup Locations -Info 275 [16:07:27.000] Scheduled: /user/username/rootfolder/otherfolder/a/b/tsconfig.jsonFailedLookupInvalidation, Cancelled earlier one -Info 276 [16:07:28.000] Elapsed:: *ms DirectoryWatcher:: Triggered with /user/username/rootfolder/otherfolder/a/b/node_modules/typescript :: WatchInfo: /user/username/rootfolder/otherfolder/a/b/node_modules 1 undefined Project: /user/username/rootfolder/otherfolder/a/b/tsconfig.json WatchType: Failed Lookup Locations -Info 277 [16:07:29.000] DirectoryWatcher:: Triggered with /user/username/rootfolder/otherfolder/a/b/node_modules/typescript :: WatchInfo: /user/username/rootfolder/otherfolder/a/b 1 undefined Config: /user/username/rootfolder/otherfolder/a/b/tsconfig.json WatchType: Wild card directory -Info 278 [16:07:30.000] Scheduled: /user/username/rootfolder/otherfolder/a/b/tsconfig.json, Cancelled earlier one -Info 279 [16:07:31.000] Scheduled: *ensureProjectForOpenFiles*, Cancelled earlier one -Info 280 [16:07:32.000] Elapsed:: *ms DirectoryWatcher:: Triggered with /user/username/rootfolder/otherfolder/a/b/node_modules/typescript :: WatchInfo: /user/username/rootfolder/otherfolder/a/b 1 undefined Config: /user/username/rootfolder/otherfolder/a/b/tsconfig.json WatchType: Wild card directory -Info 281 [16:07:35.000] DirectoryWatcher:: Triggered with /user/username/rootfolder/otherfolder/a/b/node_modules/.bin :: WatchInfo: /user/username/rootfolder/otherfolder/a/b/node_modules 1 undefined Project: /user/username/rootfolder/otherfolder/a/b/tsconfig.json WatchType: Failed Lookup Locations -Info 282 [16:07:36.000] Elapsed:: *ms DirectoryWatcher:: Triggered with /user/username/rootfolder/otherfolder/a/b/node_modules/.bin :: WatchInfo: /user/username/rootfolder/otherfolder/a/b/node_modules 1 undefined Project: /user/username/rootfolder/otherfolder/a/b/tsconfig.json WatchType: Failed Lookup Locations -Info 283 [16:07:37.000] DirectoryWatcher:: Triggered with /user/username/rootfolder/otherfolder/a/b/node_modules/.bin :: WatchInfo: /user/username/rootfolder/otherfolder/a/b 1 undefined Config: /user/username/rootfolder/otherfolder/a/b/tsconfig.json WatchType: Wild card directory -Info 284 [16:07:38.000] Project: /user/username/rootfolder/otherfolder/a/b/tsconfig.json Detected ignored path: /user/username/rootfolder/otherfolder/a/b/node_modules/.bin -Info 285 [16:07:39.000] Elapsed:: *ms DirectoryWatcher:: Triggered with /user/username/rootfolder/otherfolder/a/b/node_modules/.bin :: WatchInfo: /user/username/rootfolder/otherfolder/a/b 1 undefined Config: /user/username/rootfolder/otherfolder/a/b/tsconfig.json WatchType: Wild card directory +Info 219 [00:06:09.000] DirectoryWatcher:: Triggered with /user/username/rootfolder/otherfolder/a/b/node_modules/.staging/rxjs-22375c61/package.json.2252192041 :: WatchInfo: /user/username/rootfolder/otherfolder/a/b/node_modules 1 undefined Project: /user/username/rootfolder/otherfolder/a/b/tsconfig.json WatchType: Failed Lookup Locations +Info 220 [00:06:10.000] Elapsed:: *ms DirectoryWatcher:: Triggered with /user/username/rootfolder/otherfolder/a/b/node_modules/.staging/rxjs-22375c61/package.json.2252192041 :: WatchInfo: /user/username/rootfolder/otherfolder/a/b/node_modules 1 undefined Project: /user/username/rootfolder/otherfolder/a/b/tsconfig.json WatchType: Failed Lookup Locations +Info 221 [00:06:11.000] DirectoryWatcher:: Triggered with /user/username/rootfolder/otherfolder/a/b/node_modules/.staging/rxjs-22375c61/package.json.2252192041 :: WatchInfo: /user/username/rootfolder/otherfolder/a/b 1 undefined Config: /user/username/rootfolder/otherfolder/a/b/tsconfig.json WatchType: Wild card directory +Info 222 [00:06:12.000] Project: /user/username/rootfolder/otherfolder/a/b/tsconfig.json Detected ignored path: /user/username/rootfolder/otherfolder/a/b/node_modules/.staging/rxjs-22375c61/package.json.2252192041 +Info 223 [00:06:13.000] Elapsed:: *ms DirectoryWatcher:: Triggered with /user/username/rootfolder/otherfolder/a/b/node_modules/.staging/rxjs-22375c61/package.json.2252192041 :: WatchInfo: /user/username/rootfolder/otherfolder/a/b 1 undefined Config: /user/username/rootfolder/otherfolder/a/b/tsconfig.json WatchType: Wild card directory +Info 224 [00:06:26.000] DirectoryWatcher:: Triggered with /user/username/rootfolder/otherfolder/a/b/node_modules/symbol-observable :: WatchInfo: /user/username/rootfolder/otherfolder/a/b/node_modules 1 undefined Project: /user/username/rootfolder/otherfolder/a/b/tsconfig.json WatchType: Failed Lookup Locations +Info 225 [00:06:27.000] Scheduled: /user/username/rootfolder/otherfolder/a/b/tsconfig.jsonFailedLookupInvalidation +Info 226 [00:06:28.000] Elapsed:: *ms DirectoryWatcher:: Triggered with /user/username/rootfolder/otherfolder/a/b/node_modules/symbol-observable :: WatchInfo: /user/username/rootfolder/otherfolder/a/b/node_modules 1 undefined Project: /user/username/rootfolder/otherfolder/a/b/tsconfig.json WatchType: Failed Lookup Locations +Info 227 [00:06:29.000] DirectoryWatcher:: Triggered with /user/username/rootfolder/otherfolder/a/b/node_modules/symbol-observable :: WatchInfo: /user/username/rootfolder/otherfolder/a/b 1 undefined Config: /user/username/rootfolder/otherfolder/a/b/tsconfig.json WatchType: Wild card directory +Info 228 [00:06:30.000] Scheduled: /user/username/rootfolder/otherfolder/a/b/tsconfig.json +Info 229 [00:06:31.000] Scheduled: *ensureProjectForOpenFiles* +Info 230 [00:06:32.000] Elapsed:: *ms DirectoryWatcher:: Triggered with /user/username/rootfolder/otherfolder/a/b/node_modules/symbol-observable :: WatchInfo: /user/username/rootfolder/otherfolder/a/b 1 undefined Config: /user/username/rootfolder/otherfolder/a/b/tsconfig.json WatchType: Wild card directory +Info 231 [00:06:35.000] DirectoryWatcher:: Triggered with /user/username/rootfolder/otherfolder/a/b/node_modules/@types :: WatchInfo: /user/username/rootfolder/otherfolder/a/b/node_modules/@types 1 undefined Project: /user/username/rootfolder/otherfolder/a/b/tsconfig.json WatchType: Type roots +Info 232 [00:06:36.000] Scheduled: /user/username/rootfolder/otherfolder/a/b/tsconfig.json, Cancelled earlier one +Info 233 [00:06:37.000] Scheduled: *ensureProjectForOpenFiles*, Cancelled earlier one +Info 234 [00:06:38.000] Scheduled: /user/username/rootfolder/otherfolder/a/b/tsconfig.jsonFailedLookupInvalidation, Cancelled earlier one +Info 235 [00:06:39.000] Elapsed:: *ms DirectoryWatcher:: Triggered with /user/username/rootfolder/otherfolder/a/b/node_modules/@types :: WatchInfo: /user/username/rootfolder/otherfolder/a/b/node_modules/@types 1 undefined Project: /user/username/rootfolder/otherfolder/a/b/tsconfig.json WatchType: Type roots +Info 236 [00:06:40.000] DirectoryWatcher:: Triggered with /user/username/rootfolder/otherfolder/a/b/node_modules/@types :: WatchInfo: /user/username/rootfolder/otherfolder/a/b/node_modules/@types 1 undefined Project: /user/username/rootfolder/otherfolder/a/b/tsconfig.json WatchType: Type roots +Info 237 [00:06:41.000] Scheduled: /user/username/rootfolder/otherfolder/a/b/tsconfig.json, Cancelled earlier one +Info 238 [00:06:42.000] Scheduled: *ensureProjectForOpenFiles*, Cancelled earlier one +Info 239 [00:06:43.000] Scheduled: /user/username/rootfolder/otherfolder/a/b/tsconfig.jsonFailedLookupInvalidation, Cancelled earlier one +Info 240 [00:06:44.000] Elapsed:: *ms DirectoryWatcher:: Triggered with /user/username/rootfolder/otherfolder/a/b/node_modules/@types :: WatchInfo: /user/username/rootfolder/otherfolder/a/b/node_modules/@types 1 undefined Project: /user/username/rootfolder/otherfolder/a/b/tsconfig.json WatchType: Type roots +Info 241 [00:06:45.000] DirectoryWatcher:: Triggered with /user/username/rootfolder/otherfolder/a/b/node_modules/@types :: WatchInfo: /user/username/rootfolder/otherfolder/a/b/node_modules 1 undefined Project: /user/username/rootfolder/otherfolder/a/b/tsconfig.json WatchType: Failed Lookup Locations +Info 242 [00:06:46.000] Scheduled: /user/username/rootfolder/otherfolder/a/b/tsconfig.jsonFailedLookupInvalidation, Cancelled earlier one +Info 243 [00:06:47.000] Elapsed:: *ms DirectoryWatcher:: Triggered with /user/username/rootfolder/otherfolder/a/b/node_modules/@types :: WatchInfo: /user/username/rootfolder/otherfolder/a/b/node_modules 1 undefined Project: /user/username/rootfolder/otherfolder/a/b/tsconfig.json WatchType: Failed Lookup Locations +Info 244 [00:06:48.000] DirectoryWatcher:: Triggered with /user/username/rootfolder/otherfolder/a/b/node_modules/@types :: WatchInfo: /user/username/rootfolder/otherfolder/a/b 1 undefined Config: /user/username/rootfolder/otherfolder/a/b/tsconfig.json WatchType: Wild card directory +Info 245 [00:06:49.000] Scheduled: /user/username/rootfolder/otherfolder/a/b/tsconfig.json, Cancelled earlier one +Info 246 [00:06:50.000] Scheduled: *ensureProjectForOpenFiles*, Cancelled earlier one +Info 247 [00:06:51.000] Elapsed:: *ms DirectoryWatcher:: Triggered with /user/username/rootfolder/otherfolder/a/b/node_modules/@types :: WatchInfo: /user/username/rootfolder/otherfolder/a/b 1 undefined Config: /user/username/rootfolder/otherfolder/a/b/tsconfig.json WatchType: Wild card directory +Info 248 [00:06:54.000] DirectoryWatcher:: Triggered with /user/username/rootfolder/otherfolder/a/b/node_modules/@types/lodash :: WatchInfo: /user/username/rootfolder/otherfolder/a/b/node_modules/@types 1 undefined Project: /user/username/rootfolder/otherfolder/a/b/tsconfig.json WatchType: Type roots +Info 249 [00:06:55.000] Scheduled: /user/username/rootfolder/otherfolder/a/b/tsconfig.json, Cancelled earlier one +Info 250 [00:06:56.000] Scheduled: *ensureProjectForOpenFiles*, Cancelled earlier one +Info 251 [00:06:57.000] Scheduled: /user/username/rootfolder/otherfolder/a/b/tsconfig.jsonFailedLookupInvalidation, Cancelled earlier one +Info 252 [00:06:58.000] Elapsed:: *ms DirectoryWatcher:: Triggered with /user/username/rootfolder/otherfolder/a/b/node_modules/@types/lodash :: WatchInfo: /user/username/rootfolder/otherfolder/a/b/node_modules/@types 1 undefined Project: /user/username/rootfolder/otherfolder/a/b/tsconfig.json WatchType: Type roots +Info 253 [00:06:59.000] DirectoryWatcher:: Triggered with /user/username/rootfolder/otherfolder/a/b/node_modules/@types/lodash :: WatchInfo: /user/username/rootfolder/otherfolder/a/b/node_modules 1 undefined Project: /user/username/rootfolder/otherfolder/a/b/tsconfig.json WatchType: Failed Lookup Locations +Info 254 [00:07:00.000] Scheduled: /user/username/rootfolder/otherfolder/a/b/tsconfig.jsonFailedLookupInvalidation, Cancelled earlier one +Info 255 [00:07:01.000] Elapsed:: *ms DirectoryWatcher:: Triggered with /user/username/rootfolder/otherfolder/a/b/node_modules/@types/lodash :: WatchInfo: /user/username/rootfolder/otherfolder/a/b/node_modules 1 undefined Project: /user/username/rootfolder/otherfolder/a/b/tsconfig.json WatchType: Failed Lookup Locations +Info 256 [00:07:02.000] DirectoryWatcher:: Triggered with /user/username/rootfolder/otherfolder/a/b/node_modules/@types/lodash :: WatchInfo: /user/username/rootfolder/otherfolder/a/b 1 undefined Config: /user/username/rootfolder/otherfolder/a/b/tsconfig.json WatchType: Wild card directory +Info 257 [00:07:03.000] Scheduled: /user/username/rootfolder/otherfolder/a/b/tsconfig.json, Cancelled earlier one +Info 258 [00:07:04.000] Scheduled: *ensureProjectForOpenFiles*, Cancelled earlier one +Info 259 [00:07:05.000] Elapsed:: *ms DirectoryWatcher:: Triggered with /user/username/rootfolder/otherfolder/a/b/node_modules/@types/lodash :: WatchInfo: /user/username/rootfolder/otherfolder/a/b 1 undefined Config: /user/username/rootfolder/otherfolder/a/b/tsconfig.json WatchType: Wild card directory +Info 260 [00:07:08.000] DirectoryWatcher:: Triggered with /user/username/rootfolder/otherfolder/a/b/node_modules/lodash :: WatchInfo: /user/username/rootfolder/otherfolder/a/b/node_modules 1 undefined Project: /user/username/rootfolder/otherfolder/a/b/tsconfig.json WatchType: Failed Lookup Locations +Info 261 [00:07:09.000] Scheduled: /user/username/rootfolder/otherfolder/a/b/tsconfig.jsonFailedLookupInvalidation, Cancelled earlier one +Info 262 [00:07:10.000] Elapsed:: *ms DirectoryWatcher:: Triggered with /user/username/rootfolder/otherfolder/a/b/node_modules/lodash :: WatchInfo: /user/username/rootfolder/otherfolder/a/b/node_modules 1 undefined Project: /user/username/rootfolder/otherfolder/a/b/tsconfig.json WatchType: Failed Lookup Locations +Info 263 [00:07:11.000] DirectoryWatcher:: Triggered with /user/username/rootfolder/otherfolder/a/b/node_modules/lodash :: WatchInfo: /user/username/rootfolder/otherfolder/a/b 1 undefined Config: /user/username/rootfolder/otherfolder/a/b/tsconfig.json WatchType: Wild card directory +Info 264 [00:07:12.000] Scheduled: /user/username/rootfolder/otherfolder/a/b/tsconfig.json, Cancelled earlier one +Info 265 [00:07:13.000] Scheduled: *ensureProjectForOpenFiles*, Cancelled earlier one +Info 266 [00:07:14.000] Elapsed:: *ms DirectoryWatcher:: Triggered with /user/username/rootfolder/otherfolder/a/b/node_modules/lodash :: WatchInfo: /user/username/rootfolder/otherfolder/a/b 1 undefined Config: /user/username/rootfolder/otherfolder/a/b/tsconfig.json WatchType: Wild card directory +Info 267 [00:07:17.000] DirectoryWatcher:: Triggered with /user/username/rootfolder/otherfolder/a/b/node_modules/rxjs :: WatchInfo: /user/username/rootfolder/otherfolder/a/b/node_modules 1 undefined Project: /user/username/rootfolder/otherfolder/a/b/tsconfig.json WatchType: Failed Lookup Locations +Info 268 [00:07:18.000] Scheduled: /user/username/rootfolder/otherfolder/a/b/tsconfig.jsonFailedLookupInvalidation, Cancelled earlier one +Info 269 [00:07:19.000] Elapsed:: *ms DirectoryWatcher:: Triggered with /user/username/rootfolder/otherfolder/a/b/node_modules/rxjs :: WatchInfo: /user/username/rootfolder/otherfolder/a/b/node_modules 1 undefined Project: /user/username/rootfolder/otherfolder/a/b/tsconfig.json WatchType: Failed Lookup Locations +Info 270 [00:07:20.000] DirectoryWatcher:: Triggered with /user/username/rootfolder/otherfolder/a/b/node_modules/rxjs :: WatchInfo: /user/username/rootfolder/otherfolder/a/b 1 undefined Config: /user/username/rootfolder/otherfolder/a/b/tsconfig.json WatchType: Wild card directory +Info 271 [00:07:21.000] Scheduled: /user/username/rootfolder/otherfolder/a/b/tsconfig.json, Cancelled earlier one +Info 272 [00:07:22.000] Scheduled: *ensureProjectForOpenFiles*, Cancelled earlier one +Info 273 [00:07:23.000] Elapsed:: *ms DirectoryWatcher:: Triggered with /user/username/rootfolder/otherfolder/a/b/node_modules/rxjs :: WatchInfo: /user/username/rootfolder/otherfolder/a/b 1 undefined Config: /user/username/rootfolder/otherfolder/a/b/tsconfig.json WatchType: Wild card directory +Info 274 [00:07:26.000] DirectoryWatcher:: Triggered with /user/username/rootfolder/otherfolder/a/b/node_modules/typescript :: WatchInfo: /user/username/rootfolder/otherfolder/a/b/node_modules 1 undefined Project: /user/username/rootfolder/otherfolder/a/b/tsconfig.json WatchType: Failed Lookup Locations +Info 275 [00:07:27.000] Scheduled: /user/username/rootfolder/otherfolder/a/b/tsconfig.jsonFailedLookupInvalidation, Cancelled earlier one +Info 276 [00:07:28.000] Elapsed:: *ms DirectoryWatcher:: Triggered with /user/username/rootfolder/otherfolder/a/b/node_modules/typescript :: WatchInfo: /user/username/rootfolder/otherfolder/a/b/node_modules 1 undefined Project: /user/username/rootfolder/otherfolder/a/b/tsconfig.json WatchType: Failed Lookup Locations +Info 277 [00:07:29.000] DirectoryWatcher:: Triggered with /user/username/rootfolder/otherfolder/a/b/node_modules/typescript :: WatchInfo: /user/username/rootfolder/otherfolder/a/b 1 undefined Config: /user/username/rootfolder/otherfolder/a/b/tsconfig.json WatchType: Wild card directory +Info 278 [00:07:30.000] Scheduled: /user/username/rootfolder/otherfolder/a/b/tsconfig.json, Cancelled earlier one +Info 279 [00:07:31.000] Scheduled: *ensureProjectForOpenFiles*, Cancelled earlier one +Info 280 [00:07:32.000] Elapsed:: *ms DirectoryWatcher:: Triggered with /user/username/rootfolder/otherfolder/a/b/node_modules/typescript :: WatchInfo: /user/username/rootfolder/otherfolder/a/b 1 undefined Config: /user/username/rootfolder/otherfolder/a/b/tsconfig.json WatchType: Wild card directory +Info 281 [00:07:35.000] DirectoryWatcher:: Triggered with /user/username/rootfolder/otherfolder/a/b/node_modules/.bin :: WatchInfo: /user/username/rootfolder/otherfolder/a/b/node_modules 1 undefined Project: /user/username/rootfolder/otherfolder/a/b/tsconfig.json WatchType: Failed Lookup Locations +Info 282 [00:07:36.000] Elapsed:: *ms DirectoryWatcher:: Triggered with /user/username/rootfolder/otherfolder/a/b/node_modules/.bin :: WatchInfo: /user/username/rootfolder/otherfolder/a/b/node_modules 1 undefined Project: /user/username/rootfolder/otherfolder/a/b/tsconfig.json WatchType: Failed Lookup Locations +Info 283 [00:07:37.000] DirectoryWatcher:: Triggered with /user/username/rootfolder/otherfolder/a/b/node_modules/.bin :: WatchInfo: /user/username/rootfolder/otherfolder/a/b 1 undefined Config: /user/username/rootfolder/otherfolder/a/b/tsconfig.json WatchType: Wild card directory +Info 284 [00:07:38.000] Project: /user/username/rootfolder/otherfolder/a/b/tsconfig.json Detected ignored path: /user/username/rootfolder/otherfolder/a/b/node_modules/.bin +Info 285 [00:07:39.000] Elapsed:: *ms DirectoryWatcher:: Triggered with /user/username/rootfolder/otherfolder/a/b/node_modules/.bin :: WatchInfo: /user/username/rootfolder/otherfolder/a/b 1 undefined Config: /user/username/rootfolder/otherfolder/a/b/tsconfig.json WatchType: Wild card directory Before checking timeout queue length (3) and running //// [/user/username/rootfolder/otherfolder/a/b/node_modules/.staging/rxjs-22375c61/package.json.2252192041] deleted @@ -1353,9 +1353,9 @@ FsWatchesRecursive:: /user/username/rootfolder/otherfolder/a/b/node_modules/@types: {} -Info 286 [16:07:40.000] Running: /user/username/rootfolder/otherfolder/a/b/tsconfig.jsonFailedLookupInvalidation -Info 287 [16:07:41.000] Scheduled: /user/username/rootfolder/otherfolder/a/b/tsconfig.json, Cancelled earlier one -Info 288 [16:07:42.000] Scheduled: *ensureProjectForOpenFiles*, Cancelled earlier one +Info 286 [00:07:40.000] Running: /user/username/rootfolder/otherfolder/a/b/tsconfig.jsonFailedLookupInvalidation +Info 287 [00:07:41.000] Scheduled: /user/username/rootfolder/otherfolder/a/b/tsconfig.json, Cancelled earlier one +Info 288 [00:07:42.000] Scheduled: *ensureProjectForOpenFiles*, Cancelled earlier one After checking timeout queue length (3) and running PolledWatches:: @@ -1408,27 +1408,27 @@ FsWatchesRecursive:: /user/username/rootfolder/otherfolder/a/b/node_modules/@types: {} -Info 289 [16:07:43.000] Running: /user/username/rootfolder/otherfolder/a/b/tsconfig.json -Info 290 [16:07:44.000] Starting updateGraphWorker: Project: /user/username/rootfolder/otherfolder/a/b/tsconfig.json -Info 291 [16:07:45.000] Finishing updateGraphWorker: Project: /user/username/rootfolder/otherfolder/a/b/tsconfig.json Version: 3 structureChanged: true structureIsReused:: SafeModules Elapsed:: *ms -Info 292 [16:07:46.000] Different program with same set of files -Info 293 [16:07:47.000] Running: *ensureProjectForOpenFiles* -Info 294 [16:07:48.000] Before ensureProjectForOpenFiles: -Info 295 [16:07:49.000] Project '/user/username/rootfolder/otherfolder/a/b/tsconfig.json' (Configured) -Info 295 [16:07:50.000] Files (2) - -Info 295 [16:07:51.000] ----------------------------------------------- -Info 295 [16:07:52.000] Open files: -Info 295 [16:07:53.000] FileName: /user/username/rootfolder/otherfolder/a/b/app.ts ProjectRootPath: undefined -Info 295 [16:07:54.000] Projects: /user/username/rootfolder/otherfolder/a/b/tsconfig.json -Info 295 [16:07:55.000] After ensureProjectForOpenFiles: -Info 296 [16:07:56.000] Project '/user/username/rootfolder/otherfolder/a/b/tsconfig.json' (Configured) -Info 296 [16:07:57.000] Files (2) - -Info 296 [16:07:58.000] ----------------------------------------------- -Info 296 [16:07:59.000] Open files: -Info 296 [16:08:00.000] FileName: /user/username/rootfolder/otherfolder/a/b/app.ts ProjectRootPath: undefined -Info 296 [16:08:01.000] Projects: /user/username/rootfolder/otherfolder/a/b/tsconfig.json +Info 289 [00:07:43.000] Running: /user/username/rootfolder/otherfolder/a/b/tsconfig.json +Info 290 [00:07:44.000] Starting updateGraphWorker: Project: /user/username/rootfolder/otherfolder/a/b/tsconfig.json +Info 291 [00:07:45.000] Finishing updateGraphWorker: Project: /user/username/rootfolder/otherfolder/a/b/tsconfig.json Version: 3 structureChanged: true structureIsReused:: SafeModules Elapsed:: *ms +Info 292 [00:07:46.000] Different program with same set of files +Info 293 [00:07:47.000] Running: *ensureProjectForOpenFiles* +Info 294 [00:07:48.000] Before ensureProjectForOpenFiles: +Info 295 [00:07:49.000] Project '/user/username/rootfolder/otherfolder/a/b/tsconfig.json' (Configured) +Info 295 [00:07:50.000] Files (2) + +Info 295 [00:07:51.000] ----------------------------------------------- +Info 295 [00:07:52.000] Open files: +Info 295 [00:07:53.000] FileName: /user/username/rootfolder/otherfolder/a/b/app.ts ProjectRootPath: undefined +Info 295 [00:07:54.000] Projects: /user/username/rootfolder/otherfolder/a/b/tsconfig.json +Info 295 [00:07:55.000] After ensureProjectForOpenFiles: +Info 296 [00:07:56.000] Project '/user/username/rootfolder/otherfolder/a/b/tsconfig.json' (Configured) +Info 296 [00:07:57.000] Files (2) + +Info 296 [00:07:58.000] ----------------------------------------------- +Info 296 [00:07:59.000] Open files: +Info 296 [00:08:00.000] FileName: /user/username/rootfolder/otherfolder/a/b/app.ts ProjectRootPath: undefined +Info 296 [00:08:01.000] Projects: /user/username/rootfolder/otherfolder/a/b/tsconfig.json After running timeout callbacks PolledWatches:: @@ -1455,326 +1455,326 @@ FsWatchesRecursive:: /user/username/rootfolder/otherfolder/a/b/node_modules/@types: {} -Info 296 [16:08:03.000] DirectoryWatcher:: Triggered with /user/username/rootfolder/otherfolder/a/b/node_modules/.staging/@types/lodash-e56c4fe7/index.d.ts :: WatchInfo: /user/username/rootfolder/otherfolder/a/b/node_modules 1 undefined Project: /user/username/rootfolder/otherfolder/a/b/tsconfig.json WatchType: Failed Lookup Locations -Info 297 [16:08:04.000] Elapsed:: *ms DirectoryWatcher:: Triggered with /user/username/rootfolder/otherfolder/a/b/node_modules/.staging/@types/lodash-e56c4fe7/index.d.ts :: WatchInfo: /user/username/rootfolder/otherfolder/a/b/node_modules 1 undefined Project: /user/username/rootfolder/otherfolder/a/b/tsconfig.json WatchType: Failed Lookup Locations -Info 298 [16:08:05.000] DirectoryWatcher:: Triggered with /user/username/rootfolder/otherfolder/a/b/node_modules/.staging/@types/lodash-e56c4fe7/index.d.ts :: WatchInfo: /user/username/rootfolder/otherfolder/a/b 1 undefined Config: /user/username/rootfolder/otherfolder/a/b/tsconfig.json WatchType: Wild card directory -Info 299 [16:08:06.000] Project: /user/username/rootfolder/otherfolder/a/b/tsconfig.json Detected ignored path: /user/username/rootfolder/otherfolder/a/b/node_modules/.staging/@types/lodash-e56c4fe7/index.d.ts -Info 300 [16:08:07.000] Elapsed:: *ms DirectoryWatcher:: Triggered with /user/username/rootfolder/otherfolder/a/b/node_modules/.staging/@types/lodash-e56c4fe7/index.d.ts :: WatchInfo: /user/username/rootfolder/otherfolder/a/b 1 undefined Config: /user/username/rootfolder/otherfolder/a/b/tsconfig.json WatchType: Wild card directory -Info 301 [16:08:09.000] DirectoryWatcher:: Triggered with /user/username/rootfolder/otherfolder/a/b/node_modules/.staging/@types/lodash-e56c4fe7/package.json :: WatchInfo: /user/username/rootfolder/otherfolder/a/b/node_modules 1 undefined Project: /user/username/rootfolder/otherfolder/a/b/tsconfig.json WatchType: Failed Lookup Locations -Info 302 [16:08:10.000] Elapsed:: *ms DirectoryWatcher:: Triggered with /user/username/rootfolder/otherfolder/a/b/node_modules/.staging/@types/lodash-e56c4fe7/package.json :: WatchInfo: /user/username/rootfolder/otherfolder/a/b/node_modules 1 undefined Project: /user/username/rootfolder/otherfolder/a/b/tsconfig.json WatchType: Failed Lookup Locations -Info 303 [16:08:11.000] DirectoryWatcher:: Triggered with /user/username/rootfolder/otherfolder/a/b/node_modules/.staging/@types/lodash-e56c4fe7/package.json :: WatchInfo: /user/username/rootfolder/otherfolder/a/b 1 undefined Config: /user/username/rootfolder/otherfolder/a/b/tsconfig.json WatchType: Wild card directory -Info 304 [16:08:12.000] Project: /user/username/rootfolder/otherfolder/a/b/tsconfig.json Detected ignored path: /user/username/rootfolder/otherfolder/a/b/node_modules/.staging/@types/lodash-e56c4fe7/package.json -Info 305 [16:08:13.000] Elapsed:: *ms DirectoryWatcher:: Triggered with /user/username/rootfolder/otherfolder/a/b/node_modules/.staging/@types/lodash-e56c4fe7/package.json :: WatchInfo: /user/username/rootfolder/otherfolder/a/b 1 undefined Config: /user/username/rootfolder/otherfolder/a/b/tsconfig.json WatchType: Wild card directory -Info 306 [16:08:15.000] DirectoryWatcher:: Triggered with /user/username/rootfolder/otherfolder/a/b/node_modules/.staging/@types/lodash-e56c4fe7 :: WatchInfo: /user/username/rootfolder/otherfolder/a/b/node_modules 1 undefined Project: /user/username/rootfolder/otherfolder/a/b/tsconfig.json WatchType: Failed Lookup Locations -Info 307 [16:08:16.000] Elapsed:: *ms DirectoryWatcher:: Triggered with /user/username/rootfolder/otherfolder/a/b/node_modules/.staging/@types/lodash-e56c4fe7 :: WatchInfo: /user/username/rootfolder/otherfolder/a/b/node_modules 1 undefined Project: /user/username/rootfolder/otherfolder/a/b/tsconfig.json WatchType: Failed Lookup Locations -Info 308 [16:08:17.000] DirectoryWatcher:: Triggered with /user/username/rootfolder/otherfolder/a/b/node_modules/.staging/@types/lodash-e56c4fe7 :: WatchInfo: /user/username/rootfolder/otherfolder/a/b 1 undefined Config: /user/username/rootfolder/otherfolder/a/b/tsconfig.json WatchType: Wild card directory -Info 309 [16:08:18.000] Project: /user/username/rootfolder/otherfolder/a/b/tsconfig.json Detected ignored path: /user/username/rootfolder/otherfolder/a/b/node_modules/.staging/@types/lodash-e56c4fe7 -Info 310 [16:08:19.000] Elapsed:: *ms DirectoryWatcher:: Triggered with /user/username/rootfolder/otherfolder/a/b/node_modules/.staging/@types/lodash-e56c4fe7 :: WatchInfo: /user/username/rootfolder/otherfolder/a/b 1 undefined Config: /user/username/rootfolder/otherfolder/a/b/tsconfig.json WatchType: Wild card directory -Info 311 [16:08:21.000] DirectoryWatcher:: Triggered with /user/username/rootfolder/otherfolder/a/b/node_modules/.staging/@types :: WatchInfo: /user/username/rootfolder/otherfolder/a/b/node_modules 1 undefined Project: /user/username/rootfolder/otherfolder/a/b/tsconfig.json WatchType: Failed Lookup Locations -Info 312 [16:08:22.000] Elapsed:: *ms DirectoryWatcher:: Triggered with /user/username/rootfolder/otherfolder/a/b/node_modules/.staging/@types :: WatchInfo: /user/username/rootfolder/otherfolder/a/b/node_modules 1 undefined Project: /user/username/rootfolder/otherfolder/a/b/tsconfig.json WatchType: Failed Lookup Locations -Info 313 [16:08:23.000] DirectoryWatcher:: Triggered with /user/username/rootfolder/otherfolder/a/b/node_modules/.staging/@types :: WatchInfo: /user/username/rootfolder/otherfolder/a/b 1 undefined Config: /user/username/rootfolder/otherfolder/a/b/tsconfig.json WatchType: Wild card directory -Info 314 [16:08:24.000] Project: /user/username/rootfolder/otherfolder/a/b/tsconfig.json Detected ignored path: /user/username/rootfolder/otherfolder/a/b/node_modules/.staging/@types -Info 315 [16:08:25.000] Elapsed:: *ms DirectoryWatcher:: Triggered with /user/username/rootfolder/otherfolder/a/b/node_modules/.staging/@types :: WatchInfo: /user/username/rootfolder/otherfolder/a/b 1 undefined Config: /user/username/rootfolder/otherfolder/a/b/tsconfig.json WatchType: Wild card directory -Info 316 [16:08:27.000] DirectoryWatcher:: Triggered with /user/username/rootfolder/otherfolder/a/b/node_modules/.staging/lodash-b0733faa/index.js :: WatchInfo: /user/username/rootfolder/otherfolder/a/b/node_modules 1 undefined Project: /user/username/rootfolder/otherfolder/a/b/tsconfig.json WatchType: Failed Lookup Locations -Info 317 [16:08:28.000] Elapsed:: *ms DirectoryWatcher:: Triggered with /user/username/rootfolder/otherfolder/a/b/node_modules/.staging/lodash-b0733faa/index.js :: WatchInfo: /user/username/rootfolder/otherfolder/a/b/node_modules 1 undefined Project: /user/username/rootfolder/otherfolder/a/b/tsconfig.json WatchType: Failed Lookup Locations -Info 318 [16:08:29.000] DirectoryWatcher:: Triggered with /user/username/rootfolder/otherfolder/a/b/node_modules/.staging/lodash-b0733faa/index.js :: WatchInfo: /user/username/rootfolder/otherfolder/a/b 1 undefined Config: /user/username/rootfolder/otherfolder/a/b/tsconfig.json WatchType: Wild card directory -Info 319 [16:08:30.000] Project: /user/username/rootfolder/otherfolder/a/b/tsconfig.json Detected ignored path: /user/username/rootfolder/otherfolder/a/b/node_modules/.staging/lodash-b0733faa/index.js -Info 320 [16:08:31.000] Elapsed:: *ms DirectoryWatcher:: Triggered with /user/username/rootfolder/otherfolder/a/b/node_modules/.staging/lodash-b0733faa/index.js :: WatchInfo: /user/username/rootfolder/otherfolder/a/b 1 undefined Config: /user/username/rootfolder/otherfolder/a/b/tsconfig.json WatchType: Wild card directory -Info 321 [16:08:33.000] DirectoryWatcher:: Triggered with /user/username/rootfolder/otherfolder/a/b/node_modules/.staging/lodash-b0733faa/package.json :: WatchInfo: /user/username/rootfolder/otherfolder/a/b/node_modules 1 undefined Project: /user/username/rootfolder/otherfolder/a/b/tsconfig.json WatchType: Failed Lookup Locations -Info 322 [16:08:34.000] Elapsed:: *ms DirectoryWatcher:: Triggered with /user/username/rootfolder/otherfolder/a/b/node_modules/.staging/lodash-b0733faa/package.json :: WatchInfo: /user/username/rootfolder/otherfolder/a/b/node_modules 1 undefined Project: /user/username/rootfolder/otherfolder/a/b/tsconfig.json WatchType: Failed Lookup Locations -Info 323 [16:08:35.000] DirectoryWatcher:: Triggered with /user/username/rootfolder/otherfolder/a/b/node_modules/.staging/lodash-b0733faa/package.json :: WatchInfo: /user/username/rootfolder/otherfolder/a/b 1 undefined Config: /user/username/rootfolder/otherfolder/a/b/tsconfig.json WatchType: Wild card directory -Info 324 [16:08:36.000] Project: /user/username/rootfolder/otherfolder/a/b/tsconfig.json Detected ignored path: /user/username/rootfolder/otherfolder/a/b/node_modules/.staging/lodash-b0733faa/package.json -Info 325 [16:08:37.000] Elapsed:: *ms DirectoryWatcher:: Triggered with /user/username/rootfolder/otherfolder/a/b/node_modules/.staging/lodash-b0733faa/package.json :: WatchInfo: /user/username/rootfolder/otherfolder/a/b 1 undefined Config: /user/username/rootfolder/otherfolder/a/b/tsconfig.json WatchType: Wild card directory -Info 326 [16:08:39.000] DirectoryWatcher:: Triggered with /user/username/rootfolder/otherfolder/a/b/node_modules/.staging/lodash-b0733faa :: WatchInfo: /user/username/rootfolder/otherfolder/a/b/node_modules 1 undefined Project: /user/username/rootfolder/otherfolder/a/b/tsconfig.json WatchType: Failed Lookup Locations -Info 327 [16:08:40.000] Elapsed:: *ms DirectoryWatcher:: Triggered with /user/username/rootfolder/otherfolder/a/b/node_modules/.staging/lodash-b0733faa :: WatchInfo: /user/username/rootfolder/otherfolder/a/b/node_modules 1 undefined Project: /user/username/rootfolder/otherfolder/a/b/tsconfig.json WatchType: Failed Lookup Locations -Info 328 [16:08:41.000] DirectoryWatcher:: Triggered with /user/username/rootfolder/otherfolder/a/b/node_modules/.staging/lodash-b0733faa :: WatchInfo: /user/username/rootfolder/otherfolder/a/b 1 undefined Config: /user/username/rootfolder/otherfolder/a/b/tsconfig.json WatchType: Wild card directory -Info 329 [16:08:42.000] Project: /user/username/rootfolder/otherfolder/a/b/tsconfig.json Detected ignored path: /user/username/rootfolder/otherfolder/a/b/node_modules/.staging/lodash-b0733faa -Info 330 [16:08:43.000] Elapsed:: *ms DirectoryWatcher:: Triggered with /user/username/rootfolder/otherfolder/a/b/node_modules/.staging/lodash-b0733faa :: WatchInfo: /user/username/rootfolder/otherfolder/a/b 1 undefined Config: /user/username/rootfolder/otherfolder/a/b/tsconfig.json WatchType: Wild card directory -Info 331 [16:08:45.000] DirectoryWatcher:: Triggered with /user/username/rootfolder/otherfolder/a/b/node_modules/.staging/rxjs-22375c61/add/operator :: WatchInfo: /user/username/rootfolder/otherfolder/a/b/node_modules 1 undefined Project: /user/username/rootfolder/otherfolder/a/b/tsconfig.json WatchType: Failed Lookup Locations -Info 332 [16:08:46.000] Elapsed:: *ms DirectoryWatcher:: Triggered with /user/username/rootfolder/otherfolder/a/b/node_modules/.staging/rxjs-22375c61/add/operator :: WatchInfo: /user/username/rootfolder/otherfolder/a/b/node_modules 1 undefined Project: /user/username/rootfolder/otherfolder/a/b/tsconfig.json WatchType: Failed Lookup Locations -Info 333 [16:08:47.000] DirectoryWatcher:: Triggered with /user/username/rootfolder/otherfolder/a/b/node_modules/.staging/rxjs-22375c61/add/operator :: WatchInfo: /user/username/rootfolder/otherfolder/a/b 1 undefined Config: /user/username/rootfolder/otherfolder/a/b/tsconfig.json WatchType: Wild card directory -Info 334 [16:08:48.000] Project: /user/username/rootfolder/otherfolder/a/b/tsconfig.json Detected ignored path: /user/username/rootfolder/otherfolder/a/b/node_modules/.staging/rxjs-22375c61/add/operator -Info 335 [16:08:49.000] Elapsed:: *ms DirectoryWatcher:: Triggered with /user/username/rootfolder/otherfolder/a/b/node_modules/.staging/rxjs-22375c61/add/operator :: WatchInfo: /user/username/rootfolder/otherfolder/a/b 1 undefined Config: /user/username/rootfolder/otherfolder/a/b/tsconfig.json WatchType: Wild card directory -Info 336 [16:08:51.000] DirectoryWatcher:: Triggered with /user/username/rootfolder/otherfolder/a/b/node_modules/.staging/rxjs-22375c61/add :: WatchInfo: /user/username/rootfolder/otherfolder/a/b/node_modules 1 undefined Project: /user/username/rootfolder/otherfolder/a/b/tsconfig.json WatchType: Failed Lookup Locations -Info 337 [16:08:52.000] Elapsed:: *ms DirectoryWatcher:: Triggered with /user/username/rootfolder/otherfolder/a/b/node_modules/.staging/rxjs-22375c61/add :: WatchInfo: /user/username/rootfolder/otherfolder/a/b/node_modules 1 undefined Project: /user/username/rootfolder/otherfolder/a/b/tsconfig.json WatchType: Failed Lookup Locations -Info 338 [16:08:53.000] DirectoryWatcher:: Triggered with /user/username/rootfolder/otherfolder/a/b/node_modules/.staging/rxjs-22375c61/add :: WatchInfo: /user/username/rootfolder/otherfolder/a/b 1 undefined Config: /user/username/rootfolder/otherfolder/a/b/tsconfig.json WatchType: Wild card directory -Info 339 [16:08:54.000] Project: /user/username/rootfolder/otherfolder/a/b/tsconfig.json Detected ignored path: /user/username/rootfolder/otherfolder/a/b/node_modules/.staging/rxjs-22375c61/add -Info 340 [16:08:55.000] Elapsed:: *ms DirectoryWatcher:: Triggered with /user/username/rootfolder/otherfolder/a/b/node_modules/.staging/rxjs-22375c61/add :: WatchInfo: /user/username/rootfolder/otherfolder/a/b 1 undefined Config: /user/username/rootfolder/otherfolder/a/b/tsconfig.json WatchType: Wild card directory -Info 341 [16:08:57.000] DirectoryWatcher:: Triggered with /user/username/rootfolder/otherfolder/a/b/node_modules/.staging/rxjs-22375c61/bundles :: WatchInfo: /user/username/rootfolder/otherfolder/a/b/node_modules 1 undefined Project: /user/username/rootfolder/otherfolder/a/b/tsconfig.json WatchType: Failed Lookup Locations -Info 342 [16:08:58.000] Elapsed:: *ms DirectoryWatcher:: Triggered with /user/username/rootfolder/otherfolder/a/b/node_modules/.staging/rxjs-22375c61/bundles :: WatchInfo: /user/username/rootfolder/otherfolder/a/b/node_modules 1 undefined Project: /user/username/rootfolder/otherfolder/a/b/tsconfig.json WatchType: Failed Lookup Locations -Info 343 [16:08:59.000] DirectoryWatcher:: Triggered with /user/username/rootfolder/otherfolder/a/b/node_modules/.staging/rxjs-22375c61/bundles :: WatchInfo: /user/username/rootfolder/otherfolder/a/b 1 undefined Config: /user/username/rootfolder/otherfolder/a/b/tsconfig.json WatchType: Wild card directory -Info 344 [16:09:00.000] Project: /user/username/rootfolder/otherfolder/a/b/tsconfig.json Detected ignored path: /user/username/rootfolder/otherfolder/a/b/node_modules/.staging/rxjs-22375c61/bundles -Info 345 [16:09:01.000] Elapsed:: *ms DirectoryWatcher:: Triggered with /user/username/rootfolder/otherfolder/a/b/node_modules/.staging/rxjs-22375c61/bundles :: WatchInfo: /user/username/rootfolder/otherfolder/a/b 1 undefined Config: /user/username/rootfolder/otherfolder/a/b/tsconfig.json WatchType: Wild card directory -Info 346 [16:09:03.000] DirectoryWatcher:: Triggered with /user/username/rootfolder/otherfolder/a/b/node_modules/.staging/rxjs-22375c61/operator :: WatchInfo: /user/username/rootfolder/otherfolder/a/b/node_modules 1 undefined Project: /user/username/rootfolder/otherfolder/a/b/tsconfig.json WatchType: Failed Lookup Locations -Info 347 [16:09:04.000] Elapsed:: *ms DirectoryWatcher:: Triggered with /user/username/rootfolder/otherfolder/a/b/node_modules/.staging/rxjs-22375c61/operator :: WatchInfo: /user/username/rootfolder/otherfolder/a/b/node_modules 1 undefined Project: /user/username/rootfolder/otherfolder/a/b/tsconfig.json WatchType: Failed Lookup Locations -Info 348 [16:09:05.000] DirectoryWatcher:: Triggered with /user/username/rootfolder/otherfolder/a/b/node_modules/.staging/rxjs-22375c61/operator :: WatchInfo: /user/username/rootfolder/otherfolder/a/b 1 undefined Config: /user/username/rootfolder/otherfolder/a/b/tsconfig.json WatchType: Wild card directory -Info 349 [16:09:06.000] Project: /user/username/rootfolder/otherfolder/a/b/tsconfig.json Detected ignored path: /user/username/rootfolder/otherfolder/a/b/node_modules/.staging/rxjs-22375c61/operator -Info 350 [16:09:07.000] Elapsed:: *ms DirectoryWatcher:: Triggered with /user/username/rootfolder/otherfolder/a/b/node_modules/.staging/rxjs-22375c61/operator :: WatchInfo: /user/username/rootfolder/otherfolder/a/b 1 undefined Config: /user/username/rootfolder/otherfolder/a/b/tsconfig.json WatchType: Wild card directory -Info 351 [16:09:09.000] DirectoryWatcher:: Triggered with /user/username/rootfolder/otherfolder/a/b/node_modules/.staging/rxjs-22375c61/package.json :: WatchInfo: /user/username/rootfolder/otherfolder/a/b/node_modules 1 undefined Project: /user/username/rootfolder/otherfolder/a/b/tsconfig.json WatchType: Failed Lookup Locations -Info 352 [16:09:10.000] Elapsed:: *ms DirectoryWatcher:: Triggered with /user/username/rootfolder/otherfolder/a/b/node_modules/.staging/rxjs-22375c61/package.json :: WatchInfo: /user/username/rootfolder/otherfolder/a/b/node_modules 1 undefined Project: /user/username/rootfolder/otherfolder/a/b/tsconfig.json WatchType: Failed Lookup Locations -Info 353 [16:09:11.000] DirectoryWatcher:: Triggered with /user/username/rootfolder/otherfolder/a/b/node_modules/.staging/rxjs-22375c61/package.json :: WatchInfo: /user/username/rootfolder/otherfolder/a/b 1 undefined Config: /user/username/rootfolder/otherfolder/a/b/tsconfig.json WatchType: Wild card directory -Info 354 [16:09:12.000] Project: /user/username/rootfolder/otherfolder/a/b/tsconfig.json Detected ignored path: /user/username/rootfolder/otherfolder/a/b/node_modules/.staging/rxjs-22375c61/package.json -Info 355 [16:09:13.000] Elapsed:: *ms DirectoryWatcher:: Triggered with /user/username/rootfolder/otherfolder/a/b/node_modules/.staging/rxjs-22375c61/package.json :: WatchInfo: /user/username/rootfolder/otherfolder/a/b 1 undefined Config: /user/username/rootfolder/otherfolder/a/b/tsconfig.json WatchType: Wild card directory -Info 356 [16:09:15.000] DirectoryWatcher:: Triggered with /user/username/rootfolder/otherfolder/a/b/node_modules/.staging/rxjs-22375c61/src/add/observable/dom :: WatchInfo: /user/username/rootfolder/otherfolder/a/b/node_modules 1 undefined Project: /user/username/rootfolder/otherfolder/a/b/tsconfig.json WatchType: Failed Lookup Locations -Info 357 [16:09:16.000] Elapsed:: *ms DirectoryWatcher:: Triggered with /user/username/rootfolder/otherfolder/a/b/node_modules/.staging/rxjs-22375c61/src/add/observable/dom :: WatchInfo: /user/username/rootfolder/otherfolder/a/b/node_modules 1 undefined Project: /user/username/rootfolder/otherfolder/a/b/tsconfig.json WatchType: Failed Lookup Locations -Info 358 [16:09:17.000] DirectoryWatcher:: Triggered with /user/username/rootfolder/otherfolder/a/b/node_modules/.staging/rxjs-22375c61/src/add/observable/dom :: WatchInfo: /user/username/rootfolder/otherfolder/a/b 1 undefined Config: /user/username/rootfolder/otherfolder/a/b/tsconfig.json WatchType: Wild card directory -Info 359 [16:09:18.000] Project: /user/username/rootfolder/otherfolder/a/b/tsconfig.json Detected ignored path: /user/username/rootfolder/otherfolder/a/b/node_modules/.staging/rxjs-22375c61/src/add/observable/dom -Info 360 [16:09:19.000] Elapsed:: *ms DirectoryWatcher:: Triggered with /user/username/rootfolder/otherfolder/a/b/node_modules/.staging/rxjs-22375c61/src/add/observable/dom :: WatchInfo: /user/username/rootfolder/otherfolder/a/b 1 undefined Config: /user/username/rootfolder/otherfolder/a/b/tsconfig.json WatchType: Wild card directory -Info 361 [16:09:21.000] DirectoryWatcher:: Triggered with /user/username/rootfolder/otherfolder/a/b/node_modules/.staging/rxjs-22375c61/src/add/observable :: WatchInfo: /user/username/rootfolder/otherfolder/a/b/node_modules 1 undefined Project: /user/username/rootfolder/otherfolder/a/b/tsconfig.json WatchType: Failed Lookup Locations -Info 362 [16:09:22.000] Elapsed:: *ms DirectoryWatcher:: Triggered with /user/username/rootfolder/otherfolder/a/b/node_modules/.staging/rxjs-22375c61/src/add/observable :: WatchInfo: /user/username/rootfolder/otherfolder/a/b/node_modules 1 undefined Project: /user/username/rootfolder/otherfolder/a/b/tsconfig.json WatchType: Failed Lookup Locations -Info 363 [16:09:23.000] DirectoryWatcher:: Triggered with /user/username/rootfolder/otherfolder/a/b/node_modules/.staging/rxjs-22375c61/src/add/observable :: WatchInfo: /user/username/rootfolder/otherfolder/a/b 1 undefined Config: /user/username/rootfolder/otherfolder/a/b/tsconfig.json WatchType: Wild card directory -Info 364 [16:09:24.000] Project: /user/username/rootfolder/otherfolder/a/b/tsconfig.json Detected ignored path: /user/username/rootfolder/otherfolder/a/b/node_modules/.staging/rxjs-22375c61/src/add/observable -Info 365 [16:09:25.000] Elapsed:: *ms DirectoryWatcher:: Triggered with /user/username/rootfolder/otherfolder/a/b/node_modules/.staging/rxjs-22375c61/src/add/observable :: WatchInfo: /user/username/rootfolder/otherfolder/a/b 1 undefined Config: /user/username/rootfolder/otherfolder/a/b/tsconfig.json WatchType: Wild card directory -Info 366 [16:09:27.000] DirectoryWatcher:: Triggered with /user/username/rootfolder/otherfolder/a/b/node_modules/.staging/rxjs-22375c61/src/add :: WatchInfo: /user/username/rootfolder/otherfolder/a/b/node_modules 1 undefined Project: /user/username/rootfolder/otherfolder/a/b/tsconfig.json WatchType: Failed Lookup Locations -Info 367 [16:09:28.000] Elapsed:: *ms DirectoryWatcher:: Triggered with /user/username/rootfolder/otherfolder/a/b/node_modules/.staging/rxjs-22375c61/src/add :: WatchInfo: /user/username/rootfolder/otherfolder/a/b/node_modules 1 undefined Project: /user/username/rootfolder/otherfolder/a/b/tsconfig.json WatchType: Failed Lookup Locations -Info 368 [16:09:29.000] DirectoryWatcher:: Triggered with /user/username/rootfolder/otherfolder/a/b/node_modules/.staging/rxjs-22375c61/src/add :: WatchInfo: /user/username/rootfolder/otherfolder/a/b 1 undefined Config: /user/username/rootfolder/otherfolder/a/b/tsconfig.json WatchType: Wild card directory -Info 369 [16:09:30.000] Project: /user/username/rootfolder/otherfolder/a/b/tsconfig.json Detected ignored path: /user/username/rootfolder/otherfolder/a/b/node_modules/.staging/rxjs-22375c61/src/add -Info 370 [16:09:31.000] Elapsed:: *ms DirectoryWatcher:: Triggered with /user/username/rootfolder/otherfolder/a/b/node_modules/.staging/rxjs-22375c61/src/add :: WatchInfo: /user/username/rootfolder/otherfolder/a/b 1 undefined Config: /user/username/rootfolder/otherfolder/a/b/tsconfig.json WatchType: Wild card directory -Info 371 [16:09:33.000] DirectoryWatcher:: Triggered with /user/username/rootfolder/otherfolder/a/b/node_modules/.staging/rxjs-22375c61/src/scheduler :: WatchInfo: /user/username/rootfolder/otherfolder/a/b/node_modules 1 undefined Project: /user/username/rootfolder/otherfolder/a/b/tsconfig.json WatchType: Failed Lookup Locations -Info 372 [16:09:34.000] Elapsed:: *ms DirectoryWatcher:: Triggered with /user/username/rootfolder/otherfolder/a/b/node_modules/.staging/rxjs-22375c61/src/scheduler :: WatchInfo: /user/username/rootfolder/otherfolder/a/b/node_modules 1 undefined Project: /user/username/rootfolder/otherfolder/a/b/tsconfig.json WatchType: Failed Lookup Locations -Info 373 [16:09:35.000] DirectoryWatcher:: Triggered with /user/username/rootfolder/otherfolder/a/b/node_modules/.staging/rxjs-22375c61/src/scheduler :: WatchInfo: /user/username/rootfolder/otherfolder/a/b 1 undefined Config: /user/username/rootfolder/otherfolder/a/b/tsconfig.json WatchType: Wild card directory -Info 374 [16:09:36.000] Project: /user/username/rootfolder/otherfolder/a/b/tsconfig.json Detected ignored path: /user/username/rootfolder/otherfolder/a/b/node_modules/.staging/rxjs-22375c61/src/scheduler -Info 375 [16:09:37.000] Elapsed:: *ms DirectoryWatcher:: Triggered with /user/username/rootfolder/otherfolder/a/b/node_modules/.staging/rxjs-22375c61/src/scheduler :: WatchInfo: /user/username/rootfolder/otherfolder/a/b 1 undefined Config: /user/username/rootfolder/otherfolder/a/b/tsconfig.json WatchType: Wild card directory -Info 376 [16:09:39.000] DirectoryWatcher:: Triggered with /user/username/rootfolder/otherfolder/a/b/node_modules/.staging/rxjs-22375c61/src/util :: WatchInfo: /user/username/rootfolder/otherfolder/a/b/node_modules 1 undefined Project: /user/username/rootfolder/otherfolder/a/b/tsconfig.json WatchType: Failed Lookup Locations -Info 377 [16:09:40.000] Elapsed:: *ms DirectoryWatcher:: Triggered with /user/username/rootfolder/otherfolder/a/b/node_modules/.staging/rxjs-22375c61/src/util :: WatchInfo: /user/username/rootfolder/otherfolder/a/b/node_modules 1 undefined Project: /user/username/rootfolder/otherfolder/a/b/tsconfig.json WatchType: Failed Lookup Locations -Info 378 [16:09:41.000] DirectoryWatcher:: Triggered with /user/username/rootfolder/otherfolder/a/b/node_modules/.staging/rxjs-22375c61/src/util :: WatchInfo: /user/username/rootfolder/otherfolder/a/b 1 undefined Config: /user/username/rootfolder/otherfolder/a/b/tsconfig.json WatchType: Wild card directory -Info 379 [16:09:42.000] Project: /user/username/rootfolder/otherfolder/a/b/tsconfig.json Detected ignored path: /user/username/rootfolder/otherfolder/a/b/node_modules/.staging/rxjs-22375c61/src/util -Info 380 [16:09:43.000] Elapsed:: *ms DirectoryWatcher:: Triggered with /user/username/rootfolder/otherfolder/a/b/node_modules/.staging/rxjs-22375c61/src/util :: WatchInfo: /user/username/rootfolder/otherfolder/a/b 1 undefined Config: /user/username/rootfolder/otherfolder/a/b/tsconfig.json WatchType: Wild card directory -Info 381 [16:09:45.000] DirectoryWatcher:: Triggered with /user/username/rootfolder/otherfolder/a/b/node_modules/.staging/rxjs-22375c61/src :: WatchInfo: /user/username/rootfolder/otherfolder/a/b/node_modules 1 undefined Project: /user/username/rootfolder/otherfolder/a/b/tsconfig.json WatchType: Failed Lookup Locations -Info 382 [16:09:46.000] Elapsed:: *ms DirectoryWatcher:: Triggered with /user/username/rootfolder/otherfolder/a/b/node_modules/.staging/rxjs-22375c61/src :: WatchInfo: /user/username/rootfolder/otherfolder/a/b/node_modules 1 undefined Project: /user/username/rootfolder/otherfolder/a/b/tsconfig.json WatchType: Failed Lookup Locations -Info 383 [16:09:47.000] DirectoryWatcher:: Triggered with /user/username/rootfolder/otherfolder/a/b/node_modules/.staging/rxjs-22375c61/src :: WatchInfo: /user/username/rootfolder/otherfolder/a/b 1 undefined Config: /user/username/rootfolder/otherfolder/a/b/tsconfig.json WatchType: Wild card directory -Info 384 [16:09:48.000] Project: /user/username/rootfolder/otherfolder/a/b/tsconfig.json Detected ignored path: /user/username/rootfolder/otherfolder/a/b/node_modules/.staging/rxjs-22375c61/src -Info 385 [16:09:49.000] Elapsed:: *ms DirectoryWatcher:: Triggered with /user/username/rootfolder/otherfolder/a/b/node_modules/.staging/rxjs-22375c61/src :: WatchInfo: /user/username/rootfolder/otherfolder/a/b 1 undefined Config: /user/username/rootfolder/otherfolder/a/b/tsconfig.json WatchType: Wild card directory -Info 386 [16:09:51.000] DirectoryWatcher:: Triggered with /user/username/rootfolder/otherfolder/a/b/node_modules/.staging/rxjs-22375c61/symbol :: WatchInfo: /user/username/rootfolder/otherfolder/a/b/node_modules 1 undefined Project: /user/username/rootfolder/otherfolder/a/b/tsconfig.json WatchType: Failed Lookup Locations -Info 387 [16:09:52.000] Elapsed:: *ms DirectoryWatcher:: Triggered with /user/username/rootfolder/otherfolder/a/b/node_modules/.staging/rxjs-22375c61/symbol :: WatchInfo: /user/username/rootfolder/otherfolder/a/b/node_modules 1 undefined Project: /user/username/rootfolder/otherfolder/a/b/tsconfig.json WatchType: Failed Lookup Locations -Info 388 [16:09:53.000] DirectoryWatcher:: Triggered with /user/username/rootfolder/otherfolder/a/b/node_modules/.staging/rxjs-22375c61/symbol :: WatchInfo: /user/username/rootfolder/otherfolder/a/b 1 undefined Config: /user/username/rootfolder/otherfolder/a/b/tsconfig.json WatchType: Wild card directory -Info 389 [16:09:54.000] Project: /user/username/rootfolder/otherfolder/a/b/tsconfig.json Detected ignored path: /user/username/rootfolder/otherfolder/a/b/node_modules/.staging/rxjs-22375c61/symbol -Info 390 [16:09:55.000] Elapsed:: *ms DirectoryWatcher:: Triggered with /user/username/rootfolder/otherfolder/a/b/node_modules/.staging/rxjs-22375c61/symbol :: WatchInfo: /user/username/rootfolder/otherfolder/a/b 1 undefined Config: /user/username/rootfolder/otherfolder/a/b/tsconfig.json WatchType: Wild card directory -Info 391 [16:09:57.000] DirectoryWatcher:: Triggered with /user/username/rootfolder/otherfolder/a/b/node_modules/.staging/rxjs-22375c61/testing :: WatchInfo: /user/username/rootfolder/otherfolder/a/b/node_modules 1 undefined Project: /user/username/rootfolder/otherfolder/a/b/tsconfig.json WatchType: Failed Lookup Locations -Info 392 [16:09:58.000] Elapsed:: *ms DirectoryWatcher:: Triggered with /user/username/rootfolder/otherfolder/a/b/node_modules/.staging/rxjs-22375c61/testing :: WatchInfo: /user/username/rootfolder/otherfolder/a/b/node_modules 1 undefined Project: /user/username/rootfolder/otherfolder/a/b/tsconfig.json WatchType: Failed Lookup Locations -Info 393 [16:09:59.000] DirectoryWatcher:: Triggered with /user/username/rootfolder/otherfolder/a/b/node_modules/.staging/rxjs-22375c61/testing :: WatchInfo: /user/username/rootfolder/otherfolder/a/b 1 undefined Config: /user/username/rootfolder/otherfolder/a/b/tsconfig.json WatchType: Wild card directory -Info 394 [16:10:00.000] Project: /user/username/rootfolder/otherfolder/a/b/tsconfig.json Detected ignored path: /user/username/rootfolder/otherfolder/a/b/node_modules/.staging/rxjs-22375c61/testing -Info 395 [16:10:01.000] Elapsed:: *ms DirectoryWatcher:: Triggered with /user/username/rootfolder/otherfolder/a/b/node_modules/.staging/rxjs-22375c61/testing :: WatchInfo: /user/username/rootfolder/otherfolder/a/b 1 undefined Config: /user/username/rootfolder/otherfolder/a/b/tsconfig.json WatchType: Wild card directory -Info 396 [16:10:03.000] DirectoryWatcher:: Triggered with /user/username/rootfolder/otherfolder/a/b/node_modules/.staging/rxjs-22375c61 :: WatchInfo: /user/username/rootfolder/otherfolder/a/b/node_modules 1 undefined Project: /user/username/rootfolder/otherfolder/a/b/tsconfig.json WatchType: Failed Lookup Locations -Info 397 [16:10:04.000] Elapsed:: *ms DirectoryWatcher:: Triggered with /user/username/rootfolder/otherfolder/a/b/node_modules/.staging/rxjs-22375c61 :: WatchInfo: /user/username/rootfolder/otherfolder/a/b/node_modules 1 undefined Project: /user/username/rootfolder/otherfolder/a/b/tsconfig.json WatchType: Failed Lookup Locations -Info 398 [16:10:05.000] DirectoryWatcher:: Triggered with /user/username/rootfolder/otherfolder/a/b/node_modules/.staging/rxjs-22375c61 :: WatchInfo: /user/username/rootfolder/otherfolder/a/b 1 undefined Config: /user/username/rootfolder/otherfolder/a/b/tsconfig.json WatchType: Wild card directory -Info 399 [16:10:06.000] Project: /user/username/rootfolder/otherfolder/a/b/tsconfig.json Detected ignored path: /user/username/rootfolder/otherfolder/a/b/node_modules/.staging/rxjs-22375c61 -Info 400 [16:10:07.000] Elapsed:: *ms DirectoryWatcher:: Triggered with /user/username/rootfolder/otherfolder/a/b/node_modules/.staging/rxjs-22375c61 :: WatchInfo: /user/username/rootfolder/otherfolder/a/b 1 undefined Config: /user/username/rootfolder/otherfolder/a/b/tsconfig.json WatchType: Wild card directory -Info 401 [16:10:09.000] DirectoryWatcher:: Triggered with /user/username/rootfolder/otherfolder/a/b/node_modules/.staging/symbol-observable-24bcbbff/index.d.ts :: WatchInfo: /user/username/rootfolder/otherfolder/a/b/node_modules 1 undefined Project: /user/username/rootfolder/otherfolder/a/b/tsconfig.json WatchType: Failed Lookup Locations -Info 402 [16:10:10.000] Elapsed:: *ms DirectoryWatcher:: Triggered with /user/username/rootfolder/otherfolder/a/b/node_modules/.staging/symbol-observable-24bcbbff/index.d.ts :: WatchInfo: /user/username/rootfolder/otherfolder/a/b/node_modules 1 undefined Project: /user/username/rootfolder/otherfolder/a/b/tsconfig.json WatchType: Failed Lookup Locations -Info 403 [16:10:11.000] DirectoryWatcher:: Triggered with /user/username/rootfolder/otherfolder/a/b/node_modules/.staging/symbol-observable-24bcbbff/index.d.ts :: WatchInfo: /user/username/rootfolder/otherfolder/a/b 1 undefined Config: /user/username/rootfolder/otherfolder/a/b/tsconfig.json WatchType: Wild card directory -Info 404 [16:10:12.000] Project: /user/username/rootfolder/otherfolder/a/b/tsconfig.json Detected ignored path: /user/username/rootfolder/otherfolder/a/b/node_modules/.staging/symbol-observable-24bcbbff/index.d.ts -Info 405 [16:10:13.000] Elapsed:: *ms DirectoryWatcher:: Triggered with /user/username/rootfolder/otherfolder/a/b/node_modules/.staging/symbol-observable-24bcbbff/index.d.ts :: WatchInfo: /user/username/rootfolder/otherfolder/a/b 1 undefined Config: /user/username/rootfolder/otherfolder/a/b/tsconfig.json WatchType: Wild card directory -Info 406 [16:10:15.000] DirectoryWatcher:: Triggered with /user/username/rootfolder/otherfolder/a/b/node_modules/.staging/symbol-observable-24bcbbff/index.js :: WatchInfo: /user/username/rootfolder/otherfolder/a/b/node_modules 1 undefined Project: /user/username/rootfolder/otherfolder/a/b/tsconfig.json WatchType: Failed Lookup Locations -Info 407 [16:10:16.000] Elapsed:: *ms DirectoryWatcher:: Triggered with /user/username/rootfolder/otherfolder/a/b/node_modules/.staging/symbol-observable-24bcbbff/index.js :: WatchInfo: /user/username/rootfolder/otherfolder/a/b/node_modules 1 undefined Project: /user/username/rootfolder/otherfolder/a/b/tsconfig.json WatchType: Failed Lookup Locations -Info 408 [16:10:17.000] DirectoryWatcher:: Triggered with /user/username/rootfolder/otherfolder/a/b/node_modules/.staging/symbol-observable-24bcbbff/index.js :: WatchInfo: /user/username/rootfolder/otherfolder/a/b 1 undefined Config: /user/username/rootfolder/otherfolder/a/b/tsconfig.json WatchType: Wild card directory -Info 409 [16:10:18.000] Project: /user/username/rootfolder/otherfolder/a/b/tsconfig.json Detected ignored path: /user/username/rootfolder/otherfolder/a/b/node_modules/.staging/symbol-observable-24bcbbff/index.js -Info 410 [16:10:19.000] Elapsed:: *ms DirectoryWatcher:: Triggered with /user/username/rootfolder/otherfolder/a/b/node_modules/.staging/symbol-observable-24bcbbff/index.js :: WatchInfo: /user/username/rootfolder/otherfolder/a/b 1 undefined Config: /user/username/rootfolder/otherfolder/a/b/tsconfig.json WatchType: Wild card directory -Info 411 [16:10:21.000] DirectoryWatcher:: Triggered with /user/username/rootfolder/otherfolder/a/b/node_modules/.staging/symbol-observable-24bcbbff/lib/index.js :: WatchInfo: /user/username/rootfolder/otherfolder/a/b/node_modules 1 undefined Project: /user/username/rootfolder/otherfolder/a/b/tsconfig.json WatchType: Failed Lookup Locations -Info 412 [16:10:22.000] Elapsed:: *ms DirectoryWatcher:: Triggered with /user/username/rootfolder/otherfolder/a/b/node_modules/.staging/symbol-observable-24bcbbff/lib/index.js :: WatchInfo: /user/username/rootfolder/otherfolder/a/b/node_modules 1 undefined Project: /user/username/rootfolder/otherfolder/a/b/tsconfig.json WatchType: Failed Lookup Locations -Info 413 [16:10:23.000] DirectoryWatcher:: Triggered with /user/username/rootfolder/otherfolder/a/b/node_modules/.staging/symbol-observable-24bcbbff/lib/index.js :: WatchInfo: /user/username/rootfolder/otherfolder/a/b 1 undefined Config: /user/username/rootfolder/otherfolder/a/b/tsconfig.json WatchType: Wild card directory -Info 414 [16:10:24.000] Project: /user/username/rootfolder/otherfolder/a/b/tsconfig.json Detected ignored path: /user/username/rootfolder/otherfolder/a/b/node_modules/.staging/symbol-observable-24bcbbff/lib/index.js -Info 415 [16:10:25.000] Elapsed:: *ms DirectoryWatcher:: Triggered with /user/username/rootfolder/otherfolder/a/b/node_modules/.staging/symbol-observable-24bcbbff/lib/index.js :: WatchInfo: /user/username/rootfolder/otherfolder/a/b 1 undefined Config: /user/username/rootfolder/otherfolder/a/b/tsconfig.json WatchType: Wild card directory -Info 416 [16:10:27.000] DirectoryWatcher:: Triggered with /user/username/rootfolder/otherfolder/a/b/node_modules/.staging/symbol-observable-24bcbbff/lib :: WatchInfo: /user/username/rootfolder/otherfolder/a/b/node_modules 1 undefined Project: /user/username/rootfolder/otherfolder/a/b/tsconfig.json WatchType: Failed Lookup Locations -Info 417 [16:10:28.000] Elapsed:: *ms DirectoryWatcher:: Triggered with /user/username/rootfolder/otherfolder/a/b/node_modules/.staging/symbol-observable-24bcbbff/lib :: WatchInfo: /user/username/rootfolder/otherfolder/a/b/node_modules 1 undefined Project: /user/username/rootfolder/otherfolder/a/b/tsconfig.json WatchType: Failed Lookup Locations -Info 418 [16:10:29.000] DirectoryWatcher:: Triggered with /user/username/rootfolder/otherfolder/a/b/node_modules/.staging/symbol-observable-24bcbbff/lib :: WatchInfo: /user/username/rootfolder/otherfolder/a/b 1 undefined Config: /user/username/rootfolder/otherfolder/a/b/tsconfig.json WatchType: Wild card directory -Info 419 [16:10:30.000] Project: /user/username/rootfolder/otherfolder/a/b/tsconfig.json Detected ignored path: /user/username/rootfolder/otherfolder/a/b/node_modules/.staging/symbol-observable-24bcbbff/lib -Info 420 [16:10:31.000] Elapsed:: *ms DirectoryWatcher:: Triggered with /user/username/rootfolder/otherfolder/a/b/node_modules/.staging/symbol-observable-24bcbbff/lib :: WatchInfo: /user/username/rootfolder/otherfolder/a/b 1 undefined Config: /user/username/rootfolder/otherfolder/a/b/tsconfig.json WatchType: Wild card directory -Info 421 [16:10:33.000] DirectoryWatcher:: Triggered with /user/username/rootfolder/otherfolder/a/b/node_modules/.staging/symbol-observable-24bcbbff/package.json :: WatchInfo: /user/username/rootfolder/otherfolder/a/b/node_modules 1 undefined Project: /user/username/rootfolder/otherfolder/a/b/tsconfig.json WatchType: Failed Lookup Locations -Info 422 [16:10:34.000] Elapsed:: *ms DirectoryWatcher:: Triggered with /user/username/rootfolder/otherfolder/a/b/node_modules/.staging/symbol-observable-24bcbbff/package.json :: WatchInfo: /user/username/rootfolder/otherfolder/a/b/node_modules 1 undefined Project: /user/username/rootfolder/otherfolder/a/b/tsconfig.json WatchType: Failed Lookup Locations -Info 423 [16:10:35.000] DirectoryWatcher:: Triggered with /user/username/rootfolder/otherfolder/a/b/node_modules/.staging/symbol-observable-24bcbbff/package.json :: WatchInfo: /user/username/rootfolder/otherfolder/a/b 1 undefined Config: /user/username/rootfolder/otherfolder/a/b/tsconfig.json WatchType: Wild card directory -Info 424 [16:10:36.000] Project: /user/username/rootfolder/otherfolder/a/b/tsconfig.json Detected ignored path: /user/username/rootfolder/otherfolder/a/b/node_modules/.staging/symbol-observable-24bcbbff/package.json -Info 425 [16:10:37.000] Elapsed:: *ms DirectoryWatcher:: Triggered with /user/username/rootfolder/otherfolder/a/b/node_modules/.staging/symbol-observable-24bcbbff/package.json :: WatchInfo: /user/username/rootfolder/otherfolder/a/b 1 undefined Config: /user/username/rootfolder/otherfolder/a/b/tsconfig.json WatchType: Wild card directory -Info 426 [16:10:39.000] DirectoryWatcher:: Triggered with /user/username/rootfolder/otherfolder/a/b/node_modules/.staging/symbol-observable-24bcbbff :: WatchInfo: /user/username/rootfolder/otherfolder/a/b/node_modules 1 undefined Project: /user/username/rootfolder/otherfolder/a/b/tsconfig.json WatchType: Failed Lookup Locations -Info 427 [16:10:40.000] Elapsed:: *ms DirectoryWatcher:: Triggered with /user/username/rootfolder/otherfolder/a/b/node_modules/.staging/symbol-observable-24bcbbff :: WatchInfo: /user/username/rootfolder/otherfolder/a/b/node_modules 1 undefined Project: /user/username/rootfolder/otherfolder/a/b/tsconfig.json WatchType: Failed Lookup Locations -Info 428 [16:10:41.000] DirectoryWatcher:: Triggered with /user/username/rootfolder/otherfolder/a/b/node_modules/.staging/symbol-observable-24bcbbff :: WatchInfo: /user/username/rootfolder/otherfolder/a/b 1 undefined Config: /user/username/rootfolder/otherfolder/a/b/tsconfig.json WatchType: Wild card directory -Info 429 [16:10:42.000] Project: /user/username/rootfolder/otherfolder/a/b/tsconfig.json Detected ignored path: /user/username/rootfolder/otherfolder/a/b/node_modules/.staging/symbol-observable-24bcbbff -Info 430 [16:10:43.000] Elapsed:: *ms DirectoryWatcher:: Triggered with /user/username/rootfolder/otherfolder/a/b/node_modules/.staging/symbol-observable-24bcbbff :: WatchInfo: /user/username/rootfolder/otherfolder/a/b 1 undefined Config: /user/username/rootfolder/otherfolder/a/b/tsconfig.json WatchType: Wild card directory -Info 431 [16:10:45.000] DirectoryWatcher:: Triggered with /user/username/rootfolder/otherfolder/a/b/node_modules/.staging/typescript-8493ea5d/lib :: WatchInfo: /user/username/rootfolder/otherfolder/a/b/node_modules 1 undefined Project: /user/username/rootfolder/otherfolder/a/b/tsconfig.json WatchType: Failed Lookup Locations -Info 432 [16:10:46.000] Elapsed:: *ms DirectoryWatcher:: Triggered with /user/username/rootfolder/otherfolder/a/b/node_modules/.staging/typescript-8493ea5d/lib :: WatchInfo: /user/username/rootfolder/otherfolder/a/b/node_modules 1 undefined Project: /user/username/rootfolder/otherfolder/a/b/tsconfig.json WatchType: Failed Lookup Locations -Info 433 [16:10:47.000] DirectoryWatcher:: Triggered with /user/username/rootfolder/otherfolder/a/b/node_modules/.staging/typescript-8493ea5d/lib :: WatchInfo: /user/username/rootfolder/otherfolder/a/b 1 undefined Config: /user/username/rootfolder/otherfolder/a/b/tsconfig.json WatchType: Wild card directory -Info 434 [16:10:48.000] Project: /user/username/rootfolder/otherfolder/a/b/tsconfig.json Detected ignored path: /user/username/rootfolder/otherfolder/a/b/node_modules/.staging/typescript-8493ea5d/lib -Info 435 [16:10:49.000] Elapsed:: *ms DirectoryWatcher:: Triggered with /user/username/rootfolder/otherfolder/a/b/node_modules/.staging/typescript-8493ea5d/lib :: WatchInfo: /user/username/rootfolder/otherfolder/a/b 1 undefined Config: /user/username/rootfolder/otherfolder/a/b/tsconfig.json WatchType: Wild card directory -Info 436 [16:10:51.000] DirectoryWatcher:: Triggered with /user/username/rootfolder/otherfolder/a/b/node_modules/.staging/typescript-8493ea5d/package.json :: WatchInfo: /user/username/rootfolder/otherfolder/a/b/node_modules 1 undefined Project: /user/username/rootfolder/otherfolder/a/b/tsconfig.json WatchType: Failed Lookup Locations -Info 437 [16:10:52.000] Elapsed:: *ms DirectoryWatcher:: Triggered with /user/username/rootfolder/otherfolder/a/b/node_modules/.staging/typescript-8493ea5d/package.json :: WatchInfo: /user/username/rootfolder/otherfolder/a/b/node_modules 1 undefined Project: /user/username/rootfolder/otherfolder/a/b/tsconfig.json WatchType: Failed Lookup Locations -Info 438 [16:10:53.000] DirectoryWatcher:: Triggered with /user/username/rootfolder/otherfolder/a/b/node_modules/.staging/typescript-8493ea5d/package.json :: WatchInfo: /user/username/rootfolder/otherfolder/a/b 1 undefined Config: /user/username/rootfolder/otherfolder/a/b/tsconfig.json WatchType: Wild card directory -Info 439 [16:10:54.000] Project: /user/username/rootfolder/otherfolder/a/b/tsconfig.json Detected ignored path: /user/username/rootfolder/otherfolder/a/b/node_modules/.staging/typescript-8493ea5d/package.json -Info 440 [16:10:55.000] Elapsed:: *ms DirectoryWatcher:: Triggered with /user/username/rootfolder/otherfolder/a/b/node_modules/.staging/typescript-8493ea5d/package.json :: WatchInfo: /user/username/rootfolder/otherfolder/a/b 1 undefined Config: /user/username/rootfolder/otherfolder/a/b/tsconfig.json WatchType: Wild card directory -Info 441 [16:10:57.000] DirectoryWatcher:: Triggered with /user/username/rootfolder/otherfolder/a/b/node_modules/.staging/typescript-8493ea5d :: WatchInfo: /user/username/rootfolder/otherfolder/a/b/node_modules 1 undefined Project: /user/username/rootfolder/otherfolder/a/b/tsconfig.json WatchType: Failed Lookup Locations -Info 442 [16:10:58.000] Elapsed:: *ms DirectoryWatcher:: Triggered with /user/username/rootfolder/otherfolder/a/b/node_modules/.staging/typescript-8493ea5d :: WatchInfo: /user/username/rootfolder/otherfolder/a/b/node_modules 1 undefined Project: /user/username/rootfolder/otherfolder/a/b/tsconfig.json WatchType: Failed Lookup Locations -Info 443 [16:10:59.000] DirectoryWatcher:: Triggered with /user/username/rootfolder/otherfolder/a/b/node_modules/.staging/typescript-8493ea5d :: WatchInfo: /user/username/rootfolder/otherfolder/a/b 1 undefined Config: /user/username/rootfolder/otherfolder/a/b/tsconfig.json WatchType: Wild card directory -Info 444 [16:11:00.000] Project: /user/username/rootfolder/otherfolder/a/b/tsconfig.json Detected ignored path: /user/username/rootfolder/otherfolder/a/b/node_modules/.staging/typescript-8493ea5d -Info 445 [16:11:01.000] Elapsed:: *ms DirectoryWatcher:: Triggered with /user/username/rootfolder/otherfolder/a/b/node_modules/.staging/typescript-8493ea5d :: WatchInfo: /user/username/rootfolder/otherfolder/a/b 1 undefined Config: /user/username/rootfolder/otherfolder/a/b/tsconfig.json WatchType: Wild card directory -Info 446 [16:11:03.000] DirectoryWatcher:: Triggered with /user/username/rootfolder/otherfolder/a/b/node_modules/.staging :: WatchInfo: /user/username/rootfolder/otherfolder/a/b/node_modules 1 undefined Project: /user/username/rootfolder/otherfolder/a/b/tsconfig.json WatchType: Failed Lookup Locations -Info 447 [16:11:04.000] Scheduled: /user/username/rootfolder/otherfolder/a/b/tsconfig.jsonFailedLookupInvalidation -Info 448 [16:11:05.000] Elapsed:: *ms DirectoryWatcher:: Triggered with /user/username/rootfolder/otherfolder/a/b/node_modules/.staging :: WatchInfo: /user/username/rootfolder/otherfolder/a/b/node_modules 1 undefined Project: /user/username/rootfolder/otherfolder/a/b/tsconfig.json WatchType: Failed Lookup Locations -Info 449 [16:11:06.000] DirectoryWatcher:: Triggered with /user/username/rootfolder/otherfolder/a/b/node_modules/.staging :: WatchInfo: /user/username/rootfolder/otherfolder/a/b 1 undefined Config: /user/username/rootfolder/otherfolder/a/b/tsconfig.json WatchType: Wild card directory -Info 450 [16:11:07.000] Scheduled: /user/username/rootfolder/otherfolder/a/b/tsconfig.json -Info 451 [16:11:08.000] Scheduled: *ensureProjectForOpenFiles* -Info 452 [16:11:09.000] Elapsed:: *ms DirectoryWatcher:: Triggered with /user/username/rootfolder/otherfolder/a/b/node_modules/.staging :: WatchInfo: /user/username/rootfolder/otherfolder/a/b 1 undefined Config: /user/username/rootfolder/otherfolder/a/b/tsconfig.json WatchType: Wild card directory -Info 453 [16:11:12.000] DirectoryWatcher:: Triggered with /user/username/rootfolder/otherfolder/a/b/node_modules/symbolle :: WatchInfo: /user/username/rootfolder/otherfolder/a/b/node_modules 1 undefined Project: /user/username/rootfolder/otherfolder/a/b/tsconfig.json WatchType: Failed Lookup Locations -Info 454 [16:11:13.000] Scheduled: /user/username/rootfolder/otherfolder/a/b/tsconfig.jsonFailedLookupInvalidation, Cancelled earlier one -Info 455 [16:11:14.000] Elapsed:: *ms DirectoryWatcher:: Triggered with /user/username/rootfolder/otherfolder/a/b/node_modules/symbolle :: WatchInfo: /user/username/rootfolder/otherfolder/a/b/node_modules 1 undefined Project: /user/username/rootfolder/otherfolder/a/b/tsconfig.json WatchType: Failed Lookup Locations -Info 456 [16:11:15.000] DirectoryWatcher:: Triggered with /user/username/rootfolder/otherfolder/a/b/node_modules/symbolle :: WatchInfo: /user/username/rootfolder/otherfolder/a/b 1 undefined Config: /user/username/rootfolder/otherfolder/a/b/tsconfig.json WatchType: Wild card directory -Info 457 [16:11:16.000] Scheduled: /user/username/rootfolder/otherfolder/a/b/tsconfig.json, Cancelled earlier one -Info 458 [16:11:17.000] Scheduled: *ensureProjectForOpenFiles*, Cancelled earlier one -Info 459 [16:11:18.000] Elapsed:: *ms DirectoryWatcher:: Triggered with /user/username/rootfolder/otherfolder/a/b/node_modules/symbolle :: WatchInfo: /user/username/rootfolder/otherfolder/a/b 1 undefined Config: /user/username/rootfolder/otherfolder/a/b/tsconfig.json WatchType: Wild card directory -Info 460 [16:11:21.000] DirectoryWatcher:: Triggered with /user/username/rootfolder/otherfolder/a/b/node_modules/symbolle/package.json :: WatchInfo: /user/username/rootfolder/otherfolder/a/b/node_modules 1 undefined Project: /user/username/rootfolder/otherfolder/a/b/tsconfig.json WatchType: Failed Lookup Locations -Info 461 [16:11:22.000] Scheduled: /user/username/rootfolder/otherfolder/a/b/tsconfig.jsonFailedLookupInvalidation, Cancelled earlier one -Info 462 [16:11:23.000] Elapsed:: *ms DirectoryWatcher:: Triggered with /user/username/rootfolder/otherfolder/a/b/node_modules/symbolle/package.json :: WatchInfo: /user/username/rootfolder/otherfolder/a/b/node_modules 1 undefined Project: /user/username/rootfolder/otherfolder/a/b/tsconfig.json WatchType: Failed Lookup Locations -Info 463 [16:11:24.000] DirectoryWatcher:: Triggered with /user/username/rootfolder/otherfolder/a/b/node_modules/symbolle/package.json :: WatchInfo: /user/username/rootfolder/otherfolder/a/b 1 undefined Config: /user/username/rootfolder/otherfolder/a/b/tsconfig.json WatchType: Wild card directory -Info 464 [16:11:25.000] Project: /user/username/rootfolder/otherfolder/a/b/tsconfig.json Detected file add/remove of non supported extension: /user/username/rootfolder/otherfolder/a/b/node_modules/symbolle/package.json -Info 465 [16:11:26.000] Elapsed:: *ms DirectoryWatcher:: Triggered with /user/username/rootfolder/otherfolder/a/b/node_modules/symbolle/package.json :: WatchInfo: /user/username/rootfolder/otherfolder/a/b 1 undefined Config: /user/username/rootfolder/otherfolder/a/b/tsconfig.json WatchType: Wild card directory -Info 466 [16:11:29.000] DirectoryWatcher:: Triggered with /user/username/rootfolder/otherfolder/a/b/node_modules/lodash/package.json :: WatchInfo: /user/username/rootfolder/otherfolder/a/b/node_modules 1 undefined Project: /user/username/rootfolder/otherfolder/a/b/tsconfig.json WatchType: Failed Lookup Locations -Info 467 [16:11:30.000] Scheduled: /user/username/rootfolder/otherfolder/a/b/tsconfig.jsonFailedLookupInvalidation, Cancelled earlier one -Info 468 [16:11:31.000] Elapsed:: *ms DirectoryWatcher:: Triggered with /user/username/rootfolder/otherfolder/a/b/node_modules/lodash/package.json :: WatchInfo: /user/username/rootfolder/otherfolder/a/b/node_modules 1 undefined Project: /user/username/rootfolder/otherfolder/a/b/tsconfig.json WatchType: Failed Lookup Locations -Info 469 [16:11:32.000] DirectoryWatcher:: Triggered with /user/username/rootfolder/otherfolder/a/b/node_modules/lodash/package.json :: WatchInfo: /user/username/rootfolder/otherfolder/a/b 1 undefined Config: /user/username/rootfolder/otherfolder/a/b/tsconfig.json WatchType: Wild card directory -Info 470 [16:11:33.000] Project: /user/username/rootfolder/otherfolder/a/b/tsconfig.json Detected file add/remove of non supported extension: /user/username/rootfolder/otherfolder/a/b/node_modules/lodash/package.json -Info 471 [16:11:34.000] Elapsed:: *ms DirectoryWatcher:: Triggered with /user/username/rootfolder/otherfolder/a/b/node_modules/lodash/package.json :: WatchInfo: /user/username/rootfolder/otherfolder/a/b 1 undefined Config: /user/username/rootfolder/otherfolder/a/b/tsconfig.json WatchType: Wild card directory -Info 472 [16:11:37.000] DirectoryWatcher:: Triggered with /user/username/rootfolder/otherfolder/a/b/node_modules/rxjs/package.json :: WatchInfo: /user/username/rootfolder/otherfolder/a/b/node_modules 1 undefined Project: /user/username/rootfolder/otherfolder/a/b/tsconfig.json WatchType: Failed Lookup Locations -Info 473 [16:11:38.000] Scheduled: /user/username/rootfolder/otherfolder/a/b/tsconfig.jsonFailedLookupInvalidation, Cancelled earlier one -Info 474 [16:11:39.000] Elapsed:: *ms DirectoryWatcher:: Triggered with /user/username/rootfolder/otherfolder/a/b/node_modules/rxjs/package.json :: WatchInfo: /user/username/rootfolder/otherfolder/a/b/node_modules 1 undefined Project: /user/username/rootfolder/otherfolder/a/b/tsconfig.json WatchType: Failed Lookup Locations -Info 475 [16:11:40.000] DirectoryWatcher:: Triggered with /user/username/rootfolder/otherfolder/a/b/node_modules/rxjs/package.json :: WatchInfo: /user/username/rootfolder/otherfolder/a/b 1 undefined Config: /user/username/rootfolder/otherfolder/a/b/tsconfig.json WatchType: Wild card directory -Info 476 [16:11:41.000] Project: /user/username/rootfolder/otherfolder/a/b/tsconfig.json Detected file add/remove of non supported extension: /user/username/rootfolder/otherfolder/a/b/node_modules/rxjs/package.json -Info 477 [16:11:42.000] Elapsed:: *ms DirectoryWatcher:: Triggered with /user/username/rootfolder/otherfolder/a/b/node_modules/rxjs/package.json :: WatchInfo: /user/username/rootfolder/otherfolder/a/b 1 undefined Config: /user/username/rootfolder/otherfolder/a/b/tsconfig.json WatchType: Wild card directory -Info 478 [16:11:45.000] DirectoryWatcher:: Triggered with /user/username/rootfolder/otherfolder/a/b/node_modules/typescript/package.json :: WatchInfo: /user/username/rootfolder/otherfolder/a/b/node_modules 1 undefined Project: /user/username/rootfolder/otherfolder/a/b/tsconfig.json WatchType: Failed Lookup Locations -Info 479 [16:11:46.000] Scheduled: /user/username/rootfolder/otherfolder/a/b/tsconfig.jsonFailedLookupInvalidation, Cancelled earlier one -Info 480 [16:11:47.000] Elapsed:: *ms DirectoryWatcher:: Triggered with /user/username/rootfolder/otherfolder/a/b/node_modules/typescript/package.json :: WatchInfo: /user/username/rootfolder/otherfolder/a/b/node_modules 1 undefined Project: /user/username/rootfolder/otherfolder/a/b/tsconfig.json WatchType: Failed Lookup Locations -Info 481 [16:11:48.000] DirectoryWatcher:: Triggered with /user/username/rootfolder/otherfolder/a/b/node_modules/typescript/package.json :: WatchInfo: /user/username/rootfolder/otherfolder/a/b 1 undefined Config: /user/username/rootfolder/otherfolder/a/b/tsconfig.json WatchType: Wild card directory -Info 482 [16:11:49.000] Project: /user/username/rootfolder/otherfolder/a/b/tsconfig.json Detected file add/remove of non supported extension: /user/username/rootfolder/otherfolder/a/b/node_modules/typescript/package.json -Info 483 [16:11:50.000] Elapsed:: *ms DirectoryWatcher:: Triggered with /user/username/rootfolder/otherfolder/a/b/node_modules/typescript/package.json :: WatchInfo: /user/username/rootfolder/otherfolder/a/b 1 undefined Config: /user/username/rootfolder/otherfolder/a/b/tsconfig.json WatchType: Wild card directory -Info 484 [16:11:53.000] DirectoryWatcher:: Triggered with /user/username/rootfolder/otherfolder/a/b/node_modules/symbolle/index.js :: WatchInfo: /user/username/rootfolder/otherfolder/a/b/node_modules 1 undefined Project: /user/username/rootfolder/otherfolder/a/b/tsconfig.json WatchType: Failed Lookup Locations -Info 485 [16:11:54.000] Scheduled: /user/username/rootfolder/otherfolder/a/b/tsconfig.jsonFailedLookupInvalidation, Cancelled earlier one -Info 486 [16:11:55.000] Elapsed:: *ms DirectoryWatcher:: Triggered with /user/username/rootfolder/otherfolder/a/b/node_modules/symbolle/index.js :: WatchInfo: /user/username/rootfolder/otherfolder/a/b/node_modules 1 undefined Project: /user/username/rootfolder/otherfolder/a/b/tsconfig.json WatchType: Failed Lookup Locations -Info 487 [16:11:56.000] DirectoryWatcher:: Triggered with /user/username/rootfolder/otherfolder/a/b/node_modules/symbolle/index.js :: WatchInfo: /user/username/rootfolder/otherfolder/a/b 1 undefined Config: /user/username/rootfolder/otherfolder/a/b/tsconfig.json WatchType: Wild card directory -Info 488 [16:11:57.000] Project: /user/username/rootfolder/otherfolder/a/b/tsconfig.json Detected file add/remove of non supported extension: /user/username/rootfolder/otherfolder/a/b/node_modules/symbolle/index.js -Info 489 [16:11:58.000] Elapsed:: *ms DirectoryWatcher:: Triggered with /user/username/rootfolder/otherfolder/a/b/node_modules/symbolle/index.js :: WatchInfo: /user/username/rootfolder/otherfolder/a/b 1 undefined Config: /user/username/rootfolder/otherfolder/a/b/tsconfig.json WatchType: Wild card directory -Info 490 [16:12:01.000] DirectoryWatcher:: Triggered with /user/username/rootfolder/otherfolder/a/b/node_modules/symbolle/index.d.ts :: WatchInfo: /user/username/rootfolder/otherfolder/a/b/node_modules 1 undefined Project: /user/username/rootfolder/otherfolder/a/b/tsconfig.json WatchType: Failed Lookup Locations -Info 491 [16:12:02.000] Scheduled: /user/username/rootfolder/otherfolder/a/b/tsconfig.jsonFailedLookupInvalidation, Cancelled earlier one -Info 492 [16:12:03.000] Elapsed:: *ms DirectoryWatcher:: Triggered with /user/username/rootfolder/otherfolder/a/b/node_modules/symbolle/index.d.ts :: WatchInfo: /user/username/rootfolder/otherfolder/a/b/node_modules 1 undefined Project: /user/username/rootfolder/otherfolder/a/b/tsconfig.json WatchType: Failed Lookup Locations -Info 493 [16:12:04.000] DirectoryWatcher:: Triggered with /user/username/rootfolder/otherfolder/a/b/node_modules/symbolle/index.d.ts :: WatchInfo: /user/username/rootfolder/otherfolder/a/b 1 undefined Config: /user/username/rootfolder/otherfolder/a/b/tsconfig.json WatchType: Wild card directory -Info 494 [16:12:05.000] Scheduled: /user/username/rootfolder/otherfolder/a/b/tsconfig.json, Cancelled earlier one -Info 495 [16:12:06.000] Scheduled: *ensureProjectForOpenFiles*, Cancelled earlier one -Info 496 [16:12:07.000] Elapsed:: *ms DirectoryWatcher:: Triggered with /user/username/rootfolder/otherfolder/a/b/node_modules/symbolle/index.d.ts :: WatchInfo: /user/username/rootfolder/otherfolder/a/b 1 undefined Config: /user/username/rootfolder/otherfolder/a/b/tsconfig.json WatchType: Wild card directory -Info 497 [16:12:10.000] DirectoryWatcher:: Triggered with /user/username/rootfolder/otherfolder/a/b/node_modules/symbolle/lib :: WatchInfo: /user/username/rootfolder/otherfolder/a/b/node_modules 1 undefined Project: /user/username/rootfolder/otherfolder/a/b/tsconfig.json WatchType: Failed Lookup Locations -Info 498 [16:12:11.000] Elapsed:: *ms DirectoryWatcher:: Triggered with /user/username/rootfolder/otherfolder/a/b/node_modules/symbolle/lib :: WatchInfo: /user/username/rootfolder/otherfolder/a/b/node_modules 1 undefined Project: /user/username/rootfolder/otherfolder/a/b/tsconfig.json WatchType: Failed Lookup Locations -Info 499 [16:12:12.000] DirectoryWatcher:: Triggered with /user/username/rootfolder/otherfolder/a/b/node_modules/symbolle/lib :: WatchInfo: /user/username/rootfolder/otherfolder/a/b 1 undefined Config: /user/username/rootfolder/otherfolder/a/b/tsconfig.json WatchType: Wild card directory -Info 500 [16:12:13.000] Scheduled: /user/username/rootfolder/otherfolder/a/b/tsconfig.json, Cancelled earlier one -Info 501 [16:12:14.000] Scheduled: *ensureProjectForOpenFiles*, Cancelled earlier one -Info 502 [16:12:15.000] Elapsed:: *ms DirectoryWatcher:: Triggered with /user/username/rootfolder/otherfolder/a/b/node_modules/symbolle/lib :: WatchInfo: /user/username/rootfolder/otherfolder/a/b 1 undefined Config: /user/username/rootfolder/otherfolder/a/b/tsconfig.json WatchType: Wild card directory -Info 503 [16:12:18.000] DirectoryWatcher:: Triggered with /user/username/rootfolder/otherfolder/a/b/node_modules/symbolle/lib/index.js :: WatchInfo: /user/username/rootfolder/otherfolder/a/b/node_modules 1 undefined Project: /user/username/rootfolder/otherfolder/a/b/tsconfig.json WatchType: Failed Lookup Locations -Info 504 [16:12:19.000] Scheduled: /user/username/rootfolder/otherfolder/a/b/tsconfig.jsonFailedLookupInvalidation, Cancelled earlier one -Info 505 [16:12:20.000] Elapsed:: *ms DirectoryWatcher:: Triggered with /user/username/rootfolder/otherfolder/a/b/node_modules/symbolle/lib/index.js :: WatchInfo: /user/username/rootfolder/otherfolder/a/b/node_modules 1 undefined Project: /user/username/rootfolder/otherfolder/a/b/tsconfig.json WatchType: Failed Lookup Locations -Info 506 [16:12:21.000] DirectoryWatcher:: Triggered with /user/username/rootfolder/otherfolder/a/b/node_modules/symbolle/lib/index.js :: WatchInfo: /user/username/rootfolder/otherfolder/a/b 1 undefined Config: /user/username/rootfolder/otherfolder/a/b/tsconfig.json WatchType: Wild card directory -Info 507 [16:12:22.000] Project: /user/username/rootfolder/otherfolder/a/b/tsconfig.json Detected file add/remove of non supported extension: /user/username/rootfolder/otherfolder/a/b/node_modules/symbolle/lib/index.js -Info 508 [16:12:23.000] Elapsed:: *ms DirectoryWatcher:: Triggered with /user/username/rootfolder/otherfolder/a/b/node_modules/symbolle/lib/index.js :: WatchInfo: /user/username/rootfolder/otherfolder/a/b 1 undefined Config: /user/username/rootfolder/otherfolder/a/b/tsconfig.json WatchType: Wild card directory -Info 509 [16:12:26.000] DirectoryWatcher:: Triggered with /user/username/rootfolder/otherfolder/a/b/node_modules/typescript/lib :: WatchInfo: /user/username/rootfolder/otherfolder/a/b/node_modules 1 undefined Project: /user/username/rootfolder/otherfolder/a/b/tsconfig.json WatchType: Failed Lookup Locations -Info 510 [16:12:27.000] Elapsed:: *ms DirectoryWatcher:: Triggered with /user/username/rootfolder/otherfolder/a/b/node_modules/typescript/lib :: WatchInfo: /user/username/rootfolder/otherfolder/a/b/node_modules 1 undefined Project: /user/username/rootfolder/otherfolder/a/b/tsconfig.json WatchType: Failed Lookup Locations -Info 511 [16:12:28.000] DirectoryWatcher:: Triggered with /user/username/rootfolder/otherfolder/a/b/node_modules/typescript/lib :: WatchInfo: /user/username/rootfolder/otherfolder/a/b 1 undefined Config: /user/username/rootfolder/otherfolder/a/b/tsconfig.json WatchType: Wild card directory -Info 512 [16:12:29.000] Scheduled: /user/username/rootfolder/otherfolder/a/b/tsconfig.json, Cancelled earlier one -Info 513 [16:12:30.000] Scheduled: *ensureProjectForOpenFiles*, Cancelled earlier one -Info 514 [16:12:31.000] Elapsed:: *ms DirectoryWatcher:: Triggered with /user/username/rootfolder/otherfolder/a/b/node_modules/typescript/lib :: WatchInfo: /user/username/rootfolder/otherfolder/a/b 1 undefined Config: /user/username/rootfolder/otherfolder/a/b/tsconfig.json WatchType: Wild card directory -Info 515 [16:12:34.000] DirectoryWatcher:: Triggered with /user/username/rootfolder/otherfolder/a/b/node_modules/rxjs/add :: WatchInfo: /user/username/rootfolder/otherfolder/a/b/node_modules 1 undefined Project: /user/username/rootfolder/otherfolder/a/b/tsconfig.json WatchType: Failed Lookup Locations -Info 516 [16:12:35.000] Elapsed:: *ms DirectoryWatcher:: Triggered with /user/username/rootfolder/otherfolder/a/b/node_modules/rxjs/add :: WatchInfo: /user/username/rootfolder/otherfolder/a/b/node_modules 1 undefined Project: /user/username/rootfolder/otherfolder/a/b/tsconfig.json WatchType: Failed Lookup Locations -Info 517 [16:12:36.000] DirectoryWatcher:: Triggered with /user/username/rootfolder/otherfolder/a/b/node_modules/rxjs/add :: WatchInfo: /user/username/rootfolder/otherfolder/a/b 1 undefined Config: /user/username/rootfolder/otherfolder/a/b/tsconfig.json WatchType: Wild card directory -Info 518 [16:12:37.000] Scheduled: /user/username/rootfolder/otherfolder/a/b/tsconfig.json, Cancelled earlier one -Info 519 [16:12:38.000] Scheduled: *ensureProjectForOpenFiles*, Cancelled earlier one -Info 520 [16:12:39.000] Elapsed:: *ms DirectoryWatcher:: Triggered with /user/username/rootfolder/otherfolder/a/b/node_modules/rxjs/add :: WatchInfo: /user/username/rootfolder/otherfolder/a/b 1 undefined Config: /user/username/rootfolder/otherfolder/a/b/tsconfig.json WatchType: Wild card directory -Info 521 [16:12:42.000] DirectoryWatcher:: Triggered with /user/username/rootfolder/otherfolder/a/b/node_modules/rxjs/add/operator :: WatchInfo: /user/username/rootfolder/otherfolder/a/b/node_modules 1 undefined Project: /user/username/rootfolder/otherfolder/a/b/tsconfig.json WatchType: Failed Lookup Locations -Info 522 [16:12:43.000] Elapsed:: *ms DirectoryWatcher:: Triggered with /user/username/rootfolder/otherfolder/a/b/node_modules/rxjs/add/operator :: WatchInfo: /user/username/rootfolder/otherfolder/a/b/node_modules 1 undefined Project: /user/username/rootfolder/otherfolder/a/b/tsconfig.json WatchType: Failed Lookup Locations -Info 523 [16:12:44.000] DirectoryWatcher:: Triggered with /user/username/rootfolder/otherfolder/a/b/node_modules/rxjs/add/operator :: WatchInfo: /user/username/rootfolder/otherfolder/a/b 1 undefined Config: /user/username/rootfolder/otherfolder/a/b/tsconfig.json WatchType: Wild card directory -Info 524 [16:12:45.000] Scheduled: /user/username/rootfolder/otherfolder/a/b/tsconfig.json, Cancelled earlier one -Info 525 [16:12:46.000] Scheduled: *ensureProjectForOpenFiles*, Cancelled earlier one -Info 526 [16:12:47.000] Elapsed:: *ms DirectoryWatcher:: Triggered with /user/username/rootfolder/otherfolder/a/b/node_modules/rxjs/add/operator :: WatchInfo: /user/username/rootfolder/otherfolder/a/b 1 undefined Config: /user/username/rootfolder/otherfolder/a/b/tsconfig.json WatchType: Wild card directory -Info 527 [16:12:50.000] DirectoryWatcher:: Triggered with /user/username/rootfolder/otherfolder/a/b/node_modules/@types/lodash/package.json :: WatchInfo: /user/username/rootfolder/otherfolder/a/b/node_modules/@types 1 undefined Project: /user/username/rootfolder/otherfolder/a/b/tsconfig.json WatchType: Type roots -Info 528 [16:12:51.000] Scheduled: /user/username/rootfolder/otherfolder/a/b/tsconfig.json, Cancelled earlier one -Info 529 [16:12:52.000] Scheduled: *ensureProjectForOpenFiles*, Cancelled earlier one -Info 530 [16:12:53.000] Scheduled: /user/username/rootfolder/otherfolder/a/b/tsconfig.jsonFailedLookupInvalidation, Cancelled earlier one -Info 531 [16:12:54.000] Elapsed:: *ms DirectoryWatcher:: Triggered with /user/username/rootfolder/otherfolder/a/b/node_modules/@types/lodash/package.json :: WatchInfo: /user/username/rootfolder/otherfolder/a/b/node_modules/@types 1 undefined Project: /user/username/rootfolder/otherfolder/a/b/tsconfig.json WatchType: Type roots -Info 532 [16:12:55.000] DirectoryWatcher:: Triggered with /user/username/rootfolder/otherfolder/a/b/node_modules/@types/lodash/package.json :: WatchInfo: /user/username/rootfolder/otherfolder/a/b/node_modules 1 undefined Project: /user/username/rootfolder/otherfolder/a/b/tsconfig.json WatchType: Failed Lookup Locations -Info 533 [16:12:56.000] Scheduled: /user/username/rootfolder/otherfolder/a/b/tsconfig.jsonFailedLookupInvalidation, Cancelled earlier one -Info 534 [16:12:57.000] Elapsed:: *ms DirectoryWatcher:: Triggered with /user/username/rootfolder/otherfolder/a/b/node_modules/@types/lodash/package.json :: WatchInfo: /user/username/rootfolder/otherfolder/a/b/node_modules 1 undefined Project: /user/username/rootfolder/otherfolder/a/b/tsconfig.json WatchType: Failed Lookup Locations -Info 535 [16:12:58.000] DirectoryWatcher:: Triggered with /user/username/rootfolder/otherfolder/a/b/node_modules/@types/lodash/package.json :: WatchInfo: /user/username/rootfolder/otherfolder/a/b 1 undefined Config: /user/username/rootfolder/otherfolder/a/b/tsconfig.json WatchType: Wild card directory -Info 536 [16:12:59.000] Project: /user/username/rootfolder/otherfolder/a/b/tsconfig.json Detected file add/remove of non supported extension: /user/username/rootfolder/otherfolder/a/b/node_modules/@types/lodash/package.json -Info 537 [16:13:00.000] Elapsed:: *ms DirectoryWatcher:: Triggered with /user/username/rootfolder/otherfolder/a/b/node_modules/@types/lodash/package.json :: WatchInfo: /user/username/rootfolder/otherfolder/a/b 1 undefined Config: /user/username/rootfolder/otherfolder/a/b/tsconfig.json WatchType: Wild card directory -Info 538 [16:13:03.000] DirectoryWatcher:: Triggered with /user/username/rootfolder/otherfolder/a/b/node_modules/lodash/index.js :: WatchInfo: /user/username/rootfolder/otherfolder/a/b/node_modules 1 undefined Project: /user/username/rootfolder/otherfolder/a/b/tsconfig.json WatchType: Failed Lookup Locations -Info 539 [16:13:04.000] Scheduled: /user/username/rootfolder/otherfolder/a/b/tsconfig.jsonFailedLookupInvalidation, Cancelled earlier one -Info 540 [16:13:05.000] Elapsed:: *ms DirectoryWatcher:: Triggered with /user/username/rootfolder/otherfolder/a/b/node_modules/lodash/index.js :: WatchInfo: /user/username/rootfolder/otherfolder/a/b/node_modules 1 undefined Project: /user/username/rootfolder/otherfolder/a/b/tsconfig.json WatchType: Failed Lookup Locations -Info 541 [16:13:06.000] DirectoryWatcher:: Triggered with /user/username/rootfolder/otherfolder/a/b/node_modules/lodash/index.js :: WatchInfo: /user/username/rootfolder/otherfolder/a/b 1 undefined Config: /user/username/rootfolder/otherfolder/a/b/tsconfig.json WatchType: Wild card directory -Info 542 [16:13:07.000] Project: /user/username/rootfolder/otherfolder/a/b/tsconfig.json Detected file add/remove of non supported extension: /user/username/rootfolder/otherfolder/a/b/node_modules/lodash/index.js -Info 543 [16:13:08.000] Elapsed:: *ms DirectoryWatcher:: Triggered with /user/username/rootfolder/otherfolder/a/b/node_modules/lodash/index.js :: WatchInfo: /user/username/rootfolder/otherfolder/a/b 1 undefined Config: /user/username/rootfolder/otherfolder/a/b/tsconfig.json WatchType: Wild card directory -Info 544 [16:13:11.000] DirectoryWatcher:: Triggered with /user/username/rootfolder/otherfolder/a/b/node_modules/rxjs/bundles :: WatchInfo: /user/username/rootfolder/otherfolder/a/b/node_modules 1 undefined Project: /user/username/rootfolder/otherfolder/a/b/tsconfig.json WatchType: Failed Lookup Locations -Info 545 [16:13:12.000] Elapsed:: *ms DirectoryWatcher:: Triggered with /user/username/rootfolder/otherfolder/a/b/node_modules/rxjs/bundles :: WatchInfo: /user/username/rootfolder/otherfolder/a/b/node_modules 1 undefined Project: /user/username/rootfolder/otherfolder/a/b/tsconfig.json WatchType: Failed Lookup Locations -Info 546 [16:13:13.000] DirectoryWatcher:: Triggered with /user/username/rootfolder/otherfolder/a/b/node_modules/rxjs/bundles :: WatchInfo: /user/username/rootfolder/otherfolder/a/b 1 undefined Config: /user/username/rootfolder/otherfolder/a/b/tsconfig.json WatchType: Wild card directory -Info 547 [16:13:14.000] Scheduled: /user/username/rootfolder/otherfolder/a/b/tsconfig.json, Cancelled earlier one -Info 548 [16:13:15.000] Scheduled: *ensureProjectForOpenFiles*, Cancelled earlier one -Info 549 [16:13:16.000] Elapsed:: *ms DirectoryWatcher:: Triggered with /user/username/rootfolder/otherfolder/a/b/node_modules/rxjs/bundles :: WatchInfo: /user/username/rootfolder/otherfolder/a/b 1 undefined Config: /user/username/rootfolder/otherfolder/a/b/tsconfig.json WatchType: Wild card directory -Info 550 [16:13:19.000] DirectoryWatcher:: Triggered with /user/username/rootfolder/otherfolder/a/b/node_modules/rxjs/operator :: WatchInfo: /user/username/rootfolder/otherfolder/a/b/node_modules 1 undefined Project: /user/username/rootfolder/otherfolder/a/b/tsconfig.json WatchType: Failed Lookup Locations -Info 551 [16:13:20.000] Elapsed:: *ms DirectoryWatcher:: Triggered with /user/username/rootfolder/otherfolder/a/b/node_modules/rxjs/operator :: WatchInfo: /user/username/rootfolder/otherfolder/a/b/node_modules 1 undefined Project: /user/username/rootfolder/otherfolder/a/b/tsconfig.json WatchType: Failed Lookup Locations -Info 552 [16:13:21.000] DirectoryWatcher:: Triggered with /user/username/rootfolder/otherfolder/a/b/node_modules/rxjs/operator :: WatchInfo: /user/username/rootfolder/otherfolder/a/b 1 undefined Config: /user/username/rootfolder/otherfolder/a/b/tsconfig.json WatchType: Wild card directory -Info 553 [16:13:22.000] Scheduled: /user/username/rootfolder/otherfolder/a/b/tsconfig.json, Cancelled earlier one -Info 554 [16:13:23.000] Scheduled: *ensureProjectForOpenFiles*, Cancelled earlier one -Info 555 [16:13:24.000] Elapsed:: *ms DirectoryWatcher:: Triggered with /user/username/rootfolder/otherfolder/a/b/node_modules/rxjs/operator :: WatchInfo: /user/username/rootfolder/otherfolder/a/b 1 undefined Config: /user/username/rootfolder/otherfolder/a/b/tsconfig.json WatchType: Wild card directory -Info 556 [16:13:29.000] DirectoryWatcher:: Triggered with /user/username/rootfolder/otherfolder/a/b/node_modules/rxjs/src :: WatchInfo: /user/username/rootfolder/otherfolder/a/b/node_modules 1 undefined Project: /user/username/rootfolder/otherfolder/a/b/tsconfig.json WatchType: Failed Lookup Locations -Info 557 [16:13:30.000] Elapsed:: *ms DirectoryWatcher:: Triggered with /user/username/rootfolder/otherfolder/a/b/node_modules/rxjs/src :: WatchInfo: /user/username/rootfolder/otherfolder/a/b/node_modules 1 undefined Project: /user/username/rootfolder/otherfolder/a/b/tsconfig.json WatchType: Failed Lookup Locations -Info 558 [16:13:31.000] DirectoryWatcher:: Triggered with /user/username/rootfolder/otherfolder/a/b/node_modules/rxjs/src :: WatchInfo: /user/username/rootfolder/otherfolder/a/b 1 undefined Config: /user/username/rootfolder/otherfolder/a/b/tsconfig.json WatchType: Wild card directory -Info 559 [16:13:32.000] Scheduled: /user/username/rootfolder/otherfolder/a/b/tsconfig.json, Cancelled earlier one -Info 560 [16:13:33.000] Scheduled: *ensureProjectForOpenFiles*, Cancelled earlier one -Info 561 [16:13:34.000] Elapsed:: *ms DirectoryWatcher:: Triggered with /user/username/rootfolder/otherfolder/a/b/node_modules/rxjs/src :: WatchInfo: /user/username/rootfolder/otherfolder/a/b 1 undefined Config: /user/username/rootfolder/otherfolder/a/b/tsconfig.json WatchType: Wild card directory -Info 562 [16:13:36.000] DirectoryWatcher:: Triggered with /user/username/rootfolder/otherfolder/a/b/node_modules/rxjs/src/add :: WatchInfo: /user/username/rootfolder/otherfolder/a/b/node_modules 1 undefined Project: /user/username/rootfolder/otherfolder/a/b/tsconfig.json WatchType: Failed Lookup Locations -Info 563 [16:13:37.000] Elapsed:: *ms DirectoryWatcher:: Triggered with /user/username/rootfolder/otherfolder/a/b/node_modules/rxjs/src/add :: WatchInfo: /user/username/rootfolder/otherfolder/a/b/node_modules 1 undefined Project: /user/username/rootfolder/otherfolder/a/b/tsconfig.json WatchType: Failed Lookup Locations -Info 564 [16:13:38.000] DirectoryWatcher:: Triggered with /user/username/rootfolder/otherfolder/a/b/node_modules/rxjs/src/add :: WatchInfo: /user/username/rootfolder/otherfolder/a/b 1 undefined Config: /user/username/rootfolder/otherfolder/a/b/tsconfig.json WatchType: Wild card directory -Info 565 [16:13:39.000] Scheduled: /user/username/rootfolder/otherfolder/a/b/tsconfig.json, Cancelled earlier one -Info 566 [16:13:40.000] Scheduled: *ensureProjectForOpenFiles*, Cancelled earlier one -Info 567 [16:13:41.000] Elapsed:: *ms DirectoryWatcher:: Triggered with /user/username/rootfolder/otherfolder/a/b/node_modules/rxjs/src/add :: WatchInfo: /user/username/rootfolder/otherfolder/a/b 1 undefined Config: /user/username/rootfolder/otherfolder/a/b/tsconfig.json WatchType: Wild card directory -Info 568 [16:13:43.000] DirectoryWatcher:: Triggered with /user/username/rootfolder/otherfolder/a/b/node_modules/rxjs/src/add/observable :: WatchInfo: /user/username/rootfolder/otherfolder/a/b/node_modules 1 undefined Project: /user/username/rootfolder/otherfolder/a/b/tsconfig.json WatchType: Failed Lookup Locations -Info 569 [16:13:44.000] Elapsed:: *ms DirectoryWatcher:: Triggered with /user/username/rootfolder/otherfolder/a/b/node_modules/rxjs/src/add/observable :: WatchInfo: /user/username/rootfolder/otherfolder/a/b/node_modules 1 undefined Project: /user/username/rootfolder/otherfolder/a/b/tsconfig.json WatchType: Failed Lookup Locations -Info 570 [16:13:45.000] DirectoryWatcher:: Triggered with /user/username/rootfolder/otherfolder/a/b/node_modules/rxjs/src/add/observable :: WatchInfo: /user/username/rootfolder/otherfolder/a/b 1 undefined Config: /user/username/rootfolder/otherfolder/a/b/tsconfig.json WatchType: Wild card directory -Info 571 [16:13:46.000] Scheduled: /user/username/rootfolder/otherfolder/a/b/tsconfig.json, Cancelled earlier one -Info 572 [16:13:47.000] Scheduled: *ensureProjectForOpenFiles*, Cancelled earlier one -Info 573 [16:13:48.000] Elapsed:: *ms DirectoryWatcher:: Triggered with /user/username/rootfolder/otherfolder/a/b/node_modules/rxjs/src/add/observable :: WatchInfo: /user/username/rootfolder/otherfolder/a/b 1 undefined Config: /user/username/rootfolder/otherfolder/a/b/tsconfig.json WatchType: Wild card directory -Info 574 [16:13:51.000] DirectoryWatcher:: Triggered with /user/username/rootfolder/otherfolder/a/b/node_modules/rxjs/src/add/observable/dom :: WatchInfo: /user/username/rootfolder/otherfolder/a/b/node_modules 1 undefined Project: /user/username/rootfolder/otherfolder/a/b/tsconfig.json WatchType: Failed Lookup Locations -Info 575 [16:13:52.000] Elapsed:: *ms DirectoryWatcher:: Triggered with /user/username/rootfolder/otherfolder/a/b/node_modules/rxjs/src/add/observable/dom :: WatchInfo: /user/username/rootfolder/otherfolder/a/b/node_modules 1 undefined Project: /user/username/rootfolder/otherfolder/a/b/tsconfig.json WatchType: Failed Lookup Locations -Info 576 [16:13:53.000] DirectoryWatcher:: Triggered with /user/username/rootfolder/otherfolder/a/b/node_modules/rxjs/src/add/observable/dom :: WatchInfo: /user/username/rootfolder/otherfolder/a/b 1 undefined Config: /user/username/rootfolder/otherfolder/a/b/tsconfig.json WatchType: Wild card directory -Info 577 [16:13:54.000] Scheduled: /user/username/rootfolder/otherfolder/a/b/tsconfig.json, Cancelled earlier one -Info 578 [16:13:55.000] Scheduled: *ensureProjectForOpenFiles*, Cancelled earlier one -Info 579 [16:13:56.000] Elapsed:: *ms DirectoryWatcher:: Triggered with /user/username/rootfolder/otherfolder/a/b/node_modules/rxjs/src/add/observable/dom :: WatchInfo: /user/username/rootfolder/otherfolder/a/b 1 undefined Config: /user/username/rootfolder/otherfolder/a/b/tsconfig.json WatchType: Wild card directory -Info 580 [16:13:59.000] DirectoryWatcher:: Triggered with /user/username/rootfolder/otherfolder/a/b/node_modules/@types/lodash/index.d.ts :: WatchInfo: /user/username/rootfolder/otherfolder/a/b/node_modules/@types 1 undefined Project: /user/username/rootfolder/otherfolder/a/b/tsconfig.json WatchType: Type roots -Info 581 [16:14:00.000] Scheduled: /user/username/rootfolder/otherfolder/a/b/tsconfig.json, Cancelled earlier one -Info 582 [16:14:01.000] Scheduled: *ensureProjectForOpenFiles*, Cancelled earlier one -Info 583 [16:14:02.000] Scheduled: /user/username/rootfolder/otherfolder/a/b/tsconfig.jsonFailedLookupInvalidation, Cancelled earlier one -Info 584 [16:14:03.000] Elapsed:: *ms DirectoryWatcher:: Triggered with /user/username/rootfolder/otherfolder/a/b/node_modules/@types/lodash/index.d.ts :: WatchInfo: /user/username/rootfolder/otherfolder/a/b/node_modules/@types 1 undefined Project: /user/username/rootfolder/otherfolder/a/b/tsconfig.json WatchType: Type roots -Info 585 [16:14:04.000] DirectoryWatcher:: Triggered with /user/username/rootfolder/otherfolder/a/b/node_modules/@types/lodash/index.d.ts :: WatchInfo: /user/username/rootfolder/otherfolder/a/b/node_modules 1 undefined Project: /user/username/rootfolder/otherfolder/a/b/tsconfig.json WatchType: Failed Lookup Locations -Info 586 [16:14:05.000] Scheduled: /user/username/rootfolder/otherfolder/a/b/tsconfig.jsonFailedLookupInvalidation, Cancelled earlier one -Info 587 [16:14:06.000] Elapsed:: *ms DirectoryWatcher:: Triggered with /user/username/rootfolder/otherfolder/a/b/node_modules/@types/lodash/index.d.ts :: WatchInfo: /user/username/rootfolder/otherfolder/a/b/node_modules 1 undefined Project: /user/username/rootfolder/otherfolder/a/b/tsconfig.json WatchType: Failed Lookup Locations -Info 588 [16:14:07.000] DirectoryWatcher:: Triggered with /user/username/rootfolder/otherfolder/a/b/node_modules/@types/lodash/index.d.ts :: WatchInfo: /user/username/rootfolder/otherfolder/a/b 1 undefined Config: /user/username/rootfolder/otherfolder/a/b/tsconfig.json WatchType: Wild card directory -Info 589 [16:14:08.000] Scheduled: /user/username/rootfolder/otherfolder/a/b/tsconfig.json, Cancelled earlier one -Info 590 [16:14:09.000] Scheduled: *ensureProjectForOpenFiles*, Cancelled earlier one -Info 591 [16:14:10.000] Elapsed:: *ms DirectoryWatcher:: Triggered with /user/username/rootfolder/otherfolder/a/b/node_modules/@types/lodash/index.d.ts :: WatchInfo: /user/username/rootfolder/otherfolder/a/b 1 undefined Config: /user/username/rootfolder/otherfolder/a/b/tsconfig.json WatchType: Wild card directory -Info 592 [16:14:13.000] DirectoryWatcher:: Triggered with /user/username/rootfolder/otherfolder/a/b/node_modules/rxjs/src/scheduler :: WatchInfo: /user/username/rootfolder/otherfolder/a/b/node_modules 1 undefined Project: /user/username/rootfolder/otherfolder/a/b/tsconfig.json WatchType: Failed Lookup Locations -Info 593 [16:14:14.000] Elapsed:: *ms DirectoryWatcher:: Triggered with /user/username/rootfolder/otherfolder/a/b/node_modules/rxjs/src/scheduler :: WatchInfo: /user/username/rootfolder/otherfolder/a/b/node_modules 1 undefined Project: /user/username/rootfolder/otherfolder/a/b/tsconfig.json WatchType: Failed Lookup Locations -Info 594 [16:14:15.000] DirectoryWatcher:: Triggered with /user/username/rootfolder/otherfolder/a/b/node_modules/rxjs/src/scheduler :: WatchInfo: /user/username/rootfolder/otherfolder/a/b 1 undefined Config: /user/username/rootfolder/otherfolder/a/b/tsconfig.json WatchType: Wild card directory -Info 595 [16:14:16.000] Scheduled: /user/username/rootfolder/otherfolder/a/b/tsconfig.json, Cancelled earlier one -Info 596 [16:14:17.000] Scheduled: *ensureProjectForOpenFiles*, Cancelled earlier one -Info 597 [16:14:18.000] Elapsed:: *ms DirectoryWatcher:: Triggered with /user/username/rootfolder/otherfolder/a/b/node_modules/rxjs/src/scheduler :: WatchInfo: /user/username/rootfolder/otherfolder/a/b 1 undefined Config: /user/username/rootfolder/otherfolder/a/b/tsconfig.json WatchType: Wild card directory -Info 598 [16:14:21.000] DirectoryWatcher:: Triggered with /user/username/rootfolder/otherfolder/a/b/node_modules/rxjs/src/util :: WatchInfo: /user/username/rootfolder/otherfolder/a/b/node_modules 1 undefined Project: /user/username/rootfolder/otherfolder/a/b/tsconfig.json WatchType: Failed Lookup Locations -Info 599 [16:14:22.000] Elapsed:: *ms DirectoryWatcher:: Triggered with /user/username/rootfolder/otherfolder/a/b/node_modules/rxjs/src/util :: WatchInfo: /user/username/rootfolder/otherfolder/a/b/node_modules 1 undefined Project: /user/username/rootfolder/otherfolder/a/b/tsconfig.json WatchType: Failed Lookup Locations -Info 600 [16:14:23.000] DirectoryWatcher:: Triggered with /user/username/rootfolder/otherfolder/a/b/node_modules/rxjs/src/util :: WatchInfo: /user/username/rootfolder/otherfolder/a/b 1 undefined Config: /user/username/rootfolder/otherfolder/a/b/tsconfig.json WatchType: Wild card directory -Info 601 [16:14:24.000] Scheduled: /user/username/rootfolder/otherfolder/a/b/tsconfig.json, Cancelled earlier one -Info 602 [16:14:25.000] Scheduled: *ensureProjectForOpenFiles*, Cancelled earlier one -Info 603 [16:14:26.000] Elapsed:: *ms DirectoryWatcher:: Triggered with /user/username/rootfolder/otherfolder/a/b/node_modules/rxjs/src/util :: WatchInfo: /user/username/rootfolder/otherfolder/a/b 1 undefined Config: /user/username/rootfolder/otherfolder/a/b/tsconfig.json WatchType: Wild card directory -Info 604 [16:14:29.000] DirectoryWatcher:: Triggered with /user/username/rootfolder/otherfolder/a/b/node_modules/rxjs/symbol :: WatchInfo: /user/username/rootfolder/otherfolder/a/b/node_modules 1 undefined Project: /user/username/rootfolder/otherfolder/a/b/tsconfig.json WatchType: Failed Lookup Locations -Info 605 [16:14:30.000] Elapsed:: *ms DirectoryWatcher:: Triggered with /user/username/rootfolder/otherfolder/a/b/node_modules/rxjs/symbol :: WatchInfo: /user/username/rootfolder/otherfolder/a/b/node_modules 1 undefined Project: /user/username/rootfolder/otherfolder/a/b/tsconfig.json WatchType: Failed Lookup Locations -Info 606 [16:14:31.000] DirectoryWatcher:: Triggered with /user/username/rootfolder/otherfolder/a/b/node_modules/rxjs/symbol :: WatchInfo: /user/username/rootfolder/otherfolder/a/b 1 undefined Config: /user/username/rootfolder/otherfolder/a/b/tsconfig.json WatchType: Wild card directory -Info 607 [16:14:32.000] Scheduled: /user/username/rootfolder/otherfolder/a/b/tsconfig.json, Cancelled earlier one -Info 608 [16:14:33.000] Scheduled: *ensureProjectForOpenFiles*, Cancelled earlier one -Info 609 [16:14:34.000] Elapsed:: *ms DirectoryWatcher:: Triggered with /user/username/rootfolder/otherfolder/a/b/node_modules/rxjs/symbol :: WatchInfo: /user/username/rootfolder/otherfolder/a/b 1 undefined Config: /user/username/rootfolder/otherfolder/a/b/tsconfig.json WatchType: Wild card directory -Info 610 [16:14:37.000] DirectoryWatcher:: Triggered with /user/username/rootfolder/otherfolder/a/b/node_modules/rxjs/testing :: WatchInfo: /user/username/rootfolder/otherfolder/a/b/node_modules 1 undefined Project: /user/username/rootfolder/otherfolder/a/b/tsconfig.json WatchType: Failed Lookup Locations -Info 611 [16:14:38.000] Elapsed:: *ms DirectoryWatcher:: Triggered with /user/username/rootfolder/otherfolder/a/b/node_modules/rxjs/testing :: WatchInfo: /user/username/rootfolder/otherfolder/a/b/node_modules 1 undefined Project: /user/username/rootfolder/otherfolder/a/b/tsconfig.json WatchType: Failed Lookup Locations -Info 612 [16:14:39.000] DirectoryWatcher:: Triggered with /user/username/rootfolder/otherfolder/a/b/node_modules/rxjs/testing :: WatchInfo: /user/username/rootfolder/otherfolder/a/b 1 undefined Config: /user/username/rootfolder/otherfolder/a/b/tsconfig.json WatchType: Wild card directory -Info 613 [16:14:40.000] Scheduled: /user/username/rootfolder/otherfolder/a/b/tsconfig.json, Cancelled earlier one -Info 614 [16:14:41.000] Scheduled: *ensureProjectForOpenFiles*, Cancelled earlier one -Info 615 [16:14:42.000] Elapsed:: *ms DirectoryWatcher:: Triggered with /user/username/rootfolder/otherfolder/a/b/node_modules/rxjs/testing :: WatchInfo: /user/username/rootfolder/otherfolder/a/b 1 undefined Config: /user/username/rootfolder/otherfolder/a/b/tsconfig.json WatchType: Wild card directory +Info 296 [00:08:03.000] DirectoryWatcher:: Triggered with /user/username/rootfolder/otherfolder/a/b/node_modules/.staging/@types/lodash-e56c4fe7/index.d.ts :: WatchInfo: /user/username/rootfolder/otherfolder/a/b/node_modules 1 undefined Project: /user/username/rootfolder/otherfolder/a/b/tsconfig.json WatchType: Failed Lookup Locations +Info 297 [00:08:04.000] Elapsed:: *ms DirectoryWatcher:: Triggered with /user/username/rootfolder/otherfolder/a/b/node_modules/.staging/@types/lodash-e56c4fe7/index.d.ts :: WatchInfo: /user/username/rootfolder/otherfolder/a/b/node_modules 1 undefined Project: /user/username/rootfolder/otherfolder/a/b/tsconfig.json WatchType: Failed Lookup Locations +Info 298 [00:08:05.000] DirectoryWatcher:: Triggered with /user/username/rootfolder/otherfolder/a/b/node_modules/.staging/@types/lodash-e56c4fe7/index.d.ts :: WatchInfo: /user/username/rootfolder/otherfolder/a/b 1 undefined Config: /user/username/rootfolder/otherfolder/a/b/tsconfig.json WatchType: Wild card directory +Info 299 [00:08:06.000] Project: /user/username/rootfolder/otherfolder/a/b/tsconfig.json Detected ignored path: /user/username/rootfolder/otherfolder/a/b/node_modules/.staging/@types/lodash-e56c4fe7/index.d.ts +Info 300 [00:08:07.000] Elapsed:: *ms DirectoryWatcher:: Triggered with /user/username/rootfolder/otherfolder/a/b/node_modules/.staging/@types/lodash-e56c4fe7/index.d.ts :: WatchInfo: /user/username/rootfolder/otherfolder/a/b 1 undefined Config: /user/username/rootfolder/otherfolder/a/b/tsconfig.json WatchType: Wild card directory +Info 301 [00:08:09.000] DirectoryWatcher:: Triggered with /user/username/rootfolder/otherfolder/a/b/node_modules/.staging/@types/lodash-e56c4fe7/package.json :: WatchInfo: /user/username/rootfolder/otherfolder/a/b/node_modules 1 undefined Project: /user/username/rootfolder/otherfolder/a/b/tsconfig.json WatchType: Failed Lookup Locations +Info 302 [00:08:10.000] Elapsed:: *ms DirectoryWatcher:: Triggered with /user/username/rootfolder/otherfolder/a/b/node_modules/.staging/@types/lodash-e56c4fe7/package.json :: WatchInfo: /user/username/rootfolder/otherfolder/a/b/node_modules 1 undefined Project: /user/username/rootfolder/otherfolder/a/b/tsconfig.json WatchType: Failed Lookup Locations +Info 303 [00:08:11.000] DirectoryWatcher:: Triggered with /user/username/rootfolder/otherfolder/a/b/node_modules/.staging/@types/lodash-e56c4fe7/package.json :: WatchInfo: /user/username/rootfolder/otherfolder/a/b 1 undefined Config: /user/username/rootfolder/otherfolder/a/b/tsconfig.json WatchType: Wild card directory +Info 304 [00:08:12.000] Project: /user/username/rootfolder/otherfolder/a/b/tsconfig.json Detected ignored path: /user/username/rootfolder/otherfolder/a/b/node_modules/.staging/@types/lodash-e56c4fe7/package.json +Info 305 [00:08:13.000] Elapsed:: *ms DirectoryWatcher:: Triggered with /user/username/rootfolder/otherfolder/a/b/node_modules/.staging/@types/lodash-e56c4fe7/package.json :: WatchInfo: /user/username/rootfolder/otherfolder/a/b 1 undefined Config: /user/username/rootfolder/otherfolder/a/b/tsconfig.json WatchType: Wild card directory +Info 306 [00:08:15.000] DirectoryWatcher:: Triggered with /user/username/rootfolder/otherfolder/a/b/node_modules/.staging/@types/lodash-e56c4fe7 :: WatchInfo: /user/username/rootfolder/otherfolder/a/b/node_modules 1 undefined Project: /user/username/rootfolder/otherfolder/a/b/tsconfig.json WatchType: Failed Lookup Locations +Info 307 [00:08:16.000] Elapsed:: *ms DirectoryWatcher:: Triggered with /user/username/rootfolder/otherfolder/a/b/node_modules/.staging/@types/lodash-e56c4fe7 :: WatchInfo: /user/username/rootfolder/otherfolder/a/b/node_modules 1 undefined Project: /user/username/rootfolder/otherfolder/a/b/tsconfig.json WatchType: Failed Lookup Locations +Info 308 [00:08:17.000] DirectoryWatcher:: Triggered with /user/username/rootfolder/otherfolder/a/b/node_modules/.staging/@types/lodash-e56c4fe7 :: WatchInfo: /user/username/rootfolder/otherfolder/a/b 1 undefined Config: /user/username/rootfolder/otherfolder/a/b/tsconfig.json WatchType: Wild card directory +Info 309 [00:08:18.000] Project: /user/username/rootfolder/otherfolder/a/b/tsconfig.json Detected ignored path: /user/username/rootfolder/otherfolder/a/b/node_modules/.staging/@types/lodash-e56c4fe7 +Info 310 [00:08:19.000] Elapsed:: *ms DirectoryWatcher:: Triggered with /user/username/rootfolder/otherfolder/a/b/node_modules/.staging/@types/lodash-e56c4fe7 :: WatchInfo: /user/username/rootfolder/otherfolder/a/b 1 undefined Config: /user/username/rootfolder/otherfolder/a/b/tsconfig.json WatchType: Wild card directory +Info 311 [00:08:21.000] DirectoryWatcher:: Triggered with /user/username/rootfolder/otherfolder/a/b/node_modules/.staging/@types :: WatchInfo: /user/username/rootfolder/otherfolder/a/b/node_modules 1 undefined Project: /user/username/rootfolder/otherfolder/a/b/tsconfig.json WatchType: Failed Lookup Locations +Info 312 [00:08:22.000] Elapsed:: *ms DirectoryWatcher:: Triggered with /user/username/rootfolder/otherfolder/a/b/node_modules/.staging/@types :: WatchInfo: /user/username/rootfolder/otherfolder/a/b/node_modules 1 undefined Project: /user/username/rootfolder/otherfolder/a/b/tsconfig.json WatchType: Failed Lookup Locations +Info 313 [00:08:23.000] DirectoryWatcher:: Triggered with /user/username/rootfolder/otherfolder/a/b/node_modules/.staging/@types :: WatchInfo: /user/username/rootfolder/otherfolder/a/b 1 undefined Config: /user/username/rootfolder/otherfolder/a/b/tsconfig.json WatchType: Wild card directory +Info 314 [00:08:24.000] Project: /user/username/rootfolder/otherfolder/a/b/tsconfig.json Detected ignored path: /user/username/rootfolder/otherfolder/a/b/node_modules/.staging/@types +Info 315 [00:08:25.000] Elapsed:: *ms DirectoryWatcher:: Triggered with /user/username/rootfolder/otherfolder/a/b/node_modules/.staging/@types :: WatchInfo: /user/username/rootfolder/otherfolder/a/b 1 undefined Config: /user/username/rootfolder/otherfolder/a/b/tsconfig.json WatchType: Wild card directory +Info 316 [00:08:27.000] DirectoryWatcher:: Triggered with /user/username/rootfolder/otherfolder/a/b/node_modules/.staging/lodash-b0733faa/index.js :: WatchInfo: /user/username/rootfolder/otherfolder/a/b/node_modules 1 undefined Project: /user/username/rootfolder/otherfolder/a/b/tsconfig.json WatchType: Failed Lookup Locations +Info 317 [00:08:28.000] Elapsed:: *ms DirectoryWatcher:: Triggered with /user/username/rootfolder/otherfolder/a/b/node_modules/.staging/lodash-b0733faa/index.js :: WatchInfo: /user/username/rootfolder/otherfolder/a/b/node_modules 1 undefined Project: /user/username/rootfolder/otherfolder/a/b/tsconfig.json WatchType: Failed Lookup Locations +Info 318 [00:08:29.000] DirectoryWatcher:: Triggered with /user/username/rootfolder/otherfolder/a/b/node_modules/.staging/lodash-b0733faa/index.js :: WatchInfo: /user/username/rootfolder/otherfolder/a/b 1 undefined Config: /user/username/rootfolder/otherfolder/a/b/tsconfig.json WatchType: Wild card directory +Info 319 [00:08:30.000] Project: /user/username/rootfolder/otherfolder/a/b/tsconfig.json Detected ignored path: /user/username/rootfolder/otherfolder/a/b/node_modules/.staging/lodash-b0733faa/index.js +Info 320 [00:08:31.000] Elapsed:: *ms DirectoryWatcher:: Triggered with /user/username/rootfolder/otherfolder/a/b/node_modules/.staging/lodash-b0733faa/index.js :: WatchInfo: /user/username/rootfolder/otherfolder/a/b 1 undefined Config: /user/username/rootfolder/otherfolder/a/b/tsconfig.json WatchType: Wild card directory +Info 321 [00:08:33.000] DirectoryWatcher:: Triggered with /user/username/rootfolder/otherfolder/a/b/node_modules/.staging/lodash-b0733faa/package.json :: WatchInfo: /user/username/rootfolder/otherfolder/a/b/node_modules 1 undefined Project: /user/username/rootfolder/otherfolder/a/b/tsconfig.json WatchType: Failed Lookup Locations +Info 322 [00:08:34.000] Elapsed:: *ms DirectoryWatcher:: Triggered with /user/username/rootfolder/otherfolder/a/b/node_modules/.staging/lodash-b0733faa/package.json :: WatchInfo: /user/username/rootfolder/otherfolder/a/b/node_modules 1 undefined Project: /user/username/rootfolder/otherfolder/a/b/tsconfig.json WatchType: Failed Lookup Locations +Info 323 [00:08:35.000] DirectoryWatcher:: Triggered with /user/username/rootfolder/otherfolder/a/b/node_modules/.staging/lodash-b0733faa/package.json :: WatchInfo: /user/username/rootfolder/otherfolder/a/b 1 undefined Config: /user/username/rootfolder/otherfolder/a/b/tsconfig.json WatchType: Wild card directory +Info 324 [00:08:36.000] Project: /user/username/rootfolder/otherfolder/a/b/tsconfig.json Detected ignored path: /user/username/rootfolder/otherfolder/a/b/node_modules/.staging/lodash-b0733faa/package.json +Info 325 [00:08:37.000] Elapsed:: *ms DirectoryWatcher:: Triggered with /user/username/rootfolder/otherfolder/a/b/node_modules/.staging/lodash-b0733faa/package.json :: WatchInfo: /user/username/rootfolder/otherfolder/a/b 1 undefined Config: /user/username/rootfolder/otherfolder/a/b/tsconfig.json WatchType: Wild card directory +Info 326 [00:08:39.000] DirectoryWatcher:: Triggered with /user/username/rootfolder/otherfolder/a/b/node_modules/.staging/lodash-b0733faa :: WatchInfo: /user/username/rootfolder/otherfolder/a/b/node_modules 1 undefined Project: /user/username/rootfolder/otherfolder/a/b/tsconfig.json WatchType: Failed Lookup Locations +Info 327 [00:08:40.000] Elapsed:: *ms DirectoryWatcher:: Triggered with /user/username/rootfolder/otherfolder/a/b/node_modules/.staging/lodash-b0733faa :: WatchInfo: /user/username/rootfolder/otherfolder/a/b/node_modules 1 undefined Project: /user/username/rootfolder/otherfolder/a/b/tsconfig.json WatchType: Failed Lookup Locations +Info 328 [00:08:41.000] DirectoryWatcher:: Triggered with /user/username/rootfolder/otherfolder/a/b/node_modules/.staging/lodash-b0733faa :: WatchInfo: /user/username/rootfolder/otherfolder/a/b 1 undefined Config: /user/username/rootfolder/otherfolder/a/b/tsconfig.json WatchType: Wild card directory +Info 329 [00:08:42.000] Project: /user/username/rootfolder/otherfolder/a/b/tsconfig.json Detected ignored path: /user/username/rootfolder/otherfolder/a/b/node_modules/.staging/lodash-b0733faa +Info 330 [00:08:43.000] Elapsed:: *ms DirectoryWatcher:: Triggered with /user/username/rootfolder/otherfolder/a/b/node_modules/.staging/lodash-b0733faa :: WatchInfo: /user/username/rootfolder/otherfolder/a/b 1 undefined Config: /user/username/rootfolder/otherfolder/a/b/tsconfig.json WatchType: Wild card directory +Info 331 [00:08:45.000] DirectoryWatcher:: Triggered with /user/username/rootfolder/otherfolder/a/b/node_modules/.staging/rxjs-22375c61/add/operator :: WatchInfo: /user/username/rootfolder/otherfolder/a/b/node_modules 1 undefined Project: /user/username/rootfolder/otherfolder/a/b/tsconfig.json WatchType: Failed Lookup Locations +Info 332 [00:08:46.000] Elapsed:: *ms DirectoryWatcher:: Triggered with /user/username/rootfolder/otherfolder/a/b/node_modules/.staging/rxjs-22375c61/add/operator :: WatchInfo: /user/username/rootfolder/otherfolder/a/b/node_modules 1 undefined Project: /user/username/rootfolder/otherfolder/a/b/tsconfig.json WatchType: Failed Lookup Locations +Info 333 [00:08:47.000] DirectoryWatcher:: Triggered with /user/username/rootfolder/otherfolder/a/b/node_modules/.staging/rxjs-22375c61/add/operator :: WatchInfo: /user/username/rootfolder/otherfolder/a/b 1 undefined Config: /user/username/rootfolder/otherfolder/a/b/tsconfig.json WatchType: Wild card directory +Info 334 [00:08:48.000] Project: /user/username/rootfolder/otherfolder/a/b/tsconfig.json Detected ignored path: /user/username/rootfolder/otherfolder/a/b/node_modules/.staging/rxjs-22375c61/add/operator +Info 335 [00:08:49.000] Elapsed:: *ms DirectoryWatcher:: Triggered with /user/username/rootfolder/otherfolder/a/b/node_modules/.staging/rxjs-22375c61/add/operator :: WatchInfo: /user/username/rootfolder/otherfolder/a/b 1 undefined Config: /user/username/rootfolder/otherfolder/a/b/tsconfig.json WatchType: Wild card directory +Info 336 [00:08:51.000] DirectoryWatcher:: Triggered with /user/username/rootfolder/otherfolder/a/b/node_modules/.staging/rxjs-22375c61/add :: WatchInfo: /user/username/rootfolder/otherfolder/a/b/node_modules 1 undefined Project: /user/username/rootfolder/otherfolder/a/b/tsconfig.json WatchType: Failed Lookup Locations +Info 337 [00:08:52.000] Elapsed:: *ms DirectoryWatcher:: Triggered with /user/username/rootfolder/otherfolder/a/b/node_modules/.staging/rxjs-22375c61/add :: WatchInfo: /user/username/rootfolder/otherfolder/a/b/node_modules 1 undefined Project: /user/username/rootfolder/otherfolder/a/b/tsconfig.json WatchType: Failed Lookup Locations +Info 338 [00:08:53.000] DirectoryWatcher:: Triggered with /user/username/rootfolder/otherfolder/a/b/node_modules/.staging/rxjs-22375c61/add :: WatchInfo: /user/username/rootfolder/otherfolder/a/b 1 undefined Config: /user/username/rootfolder/otherfolder/a/b/tsconfig.json WatchType: Wild card directory +Info 339 [00:08:54.000] Project: /user/username/rootfolder/otherfolder/a/b/tsconfig.json Detected ignored path: /user/username/rootfolder/otherfolder/a/b/node_modules/.staging/rxjs-22375c61/add +Info 340 [00:08:55.000] Elapsed:: *ms DirectoryWatcher:: Triggered with /user/username/rootfolder/otherfolder/a/b/node_modules/.staging/rxjs-22375c61/add :: WatchInfo: /user/username/rootfolder/otherfolder/a/b 1 undefined Config: /user/username/rootfolder/otherfolder/a/b/tsconfig.json WatchType: Wild card directory +Info 341 [00:08:57.000] DirectoryWatcher:: Triggered with /user/username/rootfolder/otherfolder/a/b/node_modules/.staging/rxjs-22375c61/bundles :: WatchInfo: /user/username/rootfolder/otherfolder/a/b/node_modules 1 undefined Project: /user/username/rootfolder/otherfolder/a/b/tsconfig.json WatchType: Failed Lookup Locations +Info 342 [00:08:58.000] Elapsed:: *ms DirectoryWatcher:: Triggered with /user/username/rootfolder/otherfolder/a/b/node_modules/.staging/rxjs-22375c61/bundles :: WatchInfo: /user/username/rootfolder/otherfolder/a/b/node_modules 1 undefined Project: /user/username/rootfolder/otherfolder/a/b/tsconfig.json WatchType: Failed Lookup Locations +Info 343 [00:08:59.000] DirectoryWatcher:: Triggered with /user/username/rootfolder/otherfolder/a/b/node_modules/.staging/rxjs-22375c61/bundles :: WatchInfo: /user/username/rootfolder/otherfolder/a/b 1 undefined Config: /user/username/rootfolder/otherfolder/a/b/tsconfig.json WatchType: Wild card directory +Info 344 [00:09:00.000] Project: /user/username/rootfolder/otherfolder/a/b/tsconfig.json Detected ignored path: /user/username/rootfolder/otherfolder/a/b/node_modules/.staging/rxjs-22375c61/bundles +Info 345 [00:09:01.000] Elapsed:: *ms DirectoryWatcher:: Triggered with /user/username/rootfolder/otherfolder/a/b/node_modules/.staging/rxjs-22375c61/bundles :: WatchInfo: /user/username/rootfolder/otherfolder/a/b 1 undefined Config: /user/username/rootfolder/otherfolder/a/b/tsconfig.json WatchType: Wild card directory +Info 346 [00:09:03.000] DirectoryWatcher:: Triggered with /user/username/rootfolder/otherfolder/a/b/node_modules/.staging/rxjs-22375c61/operator :: WatchInfo: /user/username/rootfolder/otherfolder/a/b/node_modules 1 undefined Project: /user/username/rootfolder/otherfolder/a/b/tsconfig.json WatchType: Failed Lookup Locations +Info 347 [00:09:04.000] Elapsed:: *ms DirectoryWatcher:: Triggered with /user/username/rootfolder/otherfolder/a/b/node_modules/.staging/rxjs-22375c61/operator :: WatchInfo: /user/username/rootfolder/otherfolder/a/b/node_modules 1 undefined Project: /user/username/rootfolder/otherfolder/a/b/tsconfig.json WatchType: Failed Lookup Locations +Info 348 [00:09:05.000] DirectoryWatcher:: Triggered with /user/username/rootfolder/otherfolder/a/b/node_modules/.staging/rxjs-22375c61/operator :: WatchInfo: /user/username/rootfolder/otherfolder/a/b 1 undefined Config: /user/username/rootfolder/otherfolder/a/b/tsconfig.json WatchType: Wild card directory +Info 349 [00:09:06.000] Project: /user/username/rootfolder/otherfolder/a/b/tsconfig.json Detected ignored path: /user/username/rootfolder/otherfolder/a/b/node_modules/.staging/rxjs-22375c61/operator +Info 350 [00:09:07.000] Elapsed:: *ms DirectoryWatcher:: Triggered with /user/username/rootfolder/otherfolder/a/b/node_modules/.staging/rxjs-22375c61/operator :: WatchInfo: /user/username/rootfolder/otherfolder/a/b 1 undefined Config: /user/username/rootfolder/otherfolder/a/b/tsconfig.json WatchType: Wild card directory +Info 351 [00:09:09.000] DirectoryWatcher:: Triggered with /user/username/rootfolder/otherfolder/a/b/node_modules/.staging/rxjs-22375c61/package.json :: WatchInfo: /user/username/rootfolder/otherfolder/a/b/node_modules 1 undefined Project: /user/username/rootfolder/otherfolder/a/b/tsconfig.json WatchType: Failed Lookup Locations +Info 352 [00:09:10.000] Elapsed:: *ms DirectoryWatcher:: Triggered with /user/username/rootfolder/otherfolder/a/b/node_modules/.staging/rxjs-22375c61/package.json :: WatchInfo: /user/username/rootfolder/otherfolder/a/b/node_modules 1 undefined Project: /user/username/rootfolder/otherfolder/a/b/tsconfig.json WatchType: Failed Lookup Locations +Info 353 [00:09:11.000] DirectoryWatcher:: Triggered with /user/username/rootfolder/otherfolder/a/b/node_modules/.staging/rxjs-22375c61/package.json :: WatchInfo: /user/username/rootfolder/otherfolder/a/b 1 undefined Config: /user/username/rootfolder/otherfolder/a/b/tsconfig.json WatchType: Wild card directory +Info 354 [00:09:12.000] Project: /user/username/rootfolder/otherfolder/a/b/tsconfig.json Detected ignored path: /user/username/rootfolder/otherfolder/a/b/node_modules/.staging/rxjs-22375c61/package.json +Info 355 [00:09:13.000] Elapsed:: *ms DirectoryWatcher:: Triggered with /user/username/rootfolder/otherfolder/a/b/node_modules/.staging/rxjs-22375c61/package.json :: WatchInfo: /user/username/rootfolder/otherfolder/a/b 1 undefined Config: /user/username/rootfolder/otherfolder/a/b/tsconfig.json WatchType: Wild card directory +Info 356 [00:09:15.000] DirectoryWatcher:: Triggered with /user/username/rootfolder/otherfolder/a/b/node_modules/.staging/rxjs-22375c61/src/add/observable/dom :: WatchInfo: /user/username/rootfolder/otherfolder/a/b/node_modules 1 undefined Project: /user/username/rootfolder/otherfolder/a/b/tsconfig.json WatchType: Failed Lookup Locations +Info 357 [00:09:16.000] Elapsed:: *ms DirectoryWatcher:: Triggered with /user/username/rootfolder/otherfolder/a/b/node_modules/.staging/rxjs-22375c61/src/add/observable/dom :: WatchInfo: /user/username/rootfolder/otherfolder/a/b/node_modules 1 undefined Project: /user/username/rootfolder/otherfolder/a/b/tsconfig.json WatchType: Failed Lookup Locations +Info 358 [00:09:17.000] DirectoryWatcher:: Triggered with /user/username/rootfolder/otherfolder/a/b/node_modules/.staging/rxjs-22375c61/src/add/observable/dom :: WatchInfo: /user/username/rootfolder/otherfolder/a/b 1 undefined Config: /user/username/rootfolder/otherfolder/a/b/tsconfig.json WatchType: Wild card directory +Info 359 [00:09:18.000] Project: /user/username/rootfolder/otherfolder/a/b/tsconfig.json Detected ignored path: /user/username/rootfolder/otherfolder/a/b/node_modules/.staging/rxjs-22375c61/src/add/observable/dom +Info 360 [00:09:19.000] Elapsed:: *ms DirectoryWatcher:: Triggered with /user/username/rootfolder/otherfolder/a/b/node_modules/.staging/rxjs-22375c61/src/add/observable/dom :: WatchInfo: /user/username/rootfolder/otherfolder/a/b 1 undefined Config: /user/username/rootfolder/otherfolder/a/b/tsconfig.json WatchType: Wild card directory +Info 361 [00:09:21.000] DirectoryWatcher:: Triggered with /user/username/rootfolder/otherfolder/a/b/node_modules/.staging/rxjs-22375c61/src/add/observable :: WatchInfo: /user/username/rootfolder/otherfolder/a/b/node_modules 1 undefined Project: /user/username/rootfolder/otherfolder/a/b/tsconfig.json WatchType: Failed Lookup Locations +Info 362 [00:09:22.000] Elapsed:: *ms DirectoryWatcher:: Triggered with /user/username/rootfolder/otherfolder/a/b/node_modules/.staging/rxjs-22375c61/src/add/observable :: WatchInfo: /user/username/rootfolder/otherfolder/a/b/node_modules 1 undefined Project: /user/username/rootfolder/otherfolder/a/b/tsconfig.json WatchType: Failed Lookup Locations +Info 363 [00:09:23.000] DirectoryWatcher:: Triggered with /user/username/rootfolder/otherfolder/a/b/node_modules/.staging/rxjs-22375c61/src/add/observable :: WatchInfo: /user/username/rootfolder/otherfolder/a/b 1 undefined Config: /user/username/rootfolder/otherfolder/a/b/tsconfig.json WatchType: Wild card directory +Info 364 [00:09:24.000] Project: /user/username/rootfolder/otherfolder/a/b/tsconfig.json Detected ignored path: /user/username/rootfolder/otherfolder/a/b/node_modules/.staging/rxjs-22375c61/src/add/observable +Info 365 [00:09:25.000] Elapsed:: *ms DirectoryWatcher:: Triggered with /user/username/rootfolder/otherfolder/a/b/node_modules/.staging/rxjs-22375c61/src/add/observable :: WatchInfo: /user/username/rootfolder/otherfolder/a/b 1 undefined Config: /user/username/rootfolder/otherfolder/a/b/tsconfig.json WatchType: Wild card directory +Info 366 [00:09:27.000] DirectoryWatcher:: Triggered with /user/username/rootfolder/otherfolder/a/b/node_modules/.staging/rxjs-22375c61/src/add :: WatchInfo: /user/username/rootfolder/otherfolder/a/b/node_modules 1 undefined Project: /user/username/rootfolder/otherfolder/a/b/tsconfig.json WatchType: Failed Lookup Locations +Info 367 [00:09:28.000] Elapsed:: *ms DirectoryWatcher:: Triggered with /user/username/rootfolder/otherfolder/a/b/node_modules/.staging/rxjs-22375c61/src/add :: WatchInfo: /user/username/rootfolder/otherfolder/a/b/node_modules 1 undefined Project: /user/username/rootfolder/otherfolder/a/b/tsconfig.json WatchType: Failed Lookup Locations +Info 368 [00:09:29.000] DirectoryWatcher:: Triggered with /user/username/rootfolder/otherfolder/a/b/node_modules/.staging/rxjs-22375c61/src/add :: WatchInfo: /user/username/rootfolder/otherfolder/a/b 1 undefined Config: /user/username/rootfolder/otherfolder/a/b/tsconfig.json WatchType: Wild card directory +Info 369 [00:09:30.000] Project: /user/username/rootfolder/otherfolder/a/b/tsconfig.json Detected ignored path: /user/username/rootfolder/otherfolder/a/b/node_modules/.staging/rxjs-22375c61/src/add +Info 370 [00:09:31.000] Elapsed:: *ms DirectoryWatcher:: Triggered with /user/username/rootfolder/otherfolder/a/b/node_modules/.staging/rxjs-22375c61/src/add :: WatchInfo: /user/username/rootfolder/otherfolder/a/b 1 undefined Config: /user/username/rootfolder/otherfolder/a/b/tsconfig.json WatchType: Wild card directory +Info 371 [00:09:33.000] DirectoryWatcher:: Triggered with /user/username/rootfolder/otherfolder/a/b/node_modules/.staging/rxjs-22375c61/src/scheduler :: WatchInfo: /user/username/rootfolder/otherfolder/a/b/node_modules 1 undefined Project: /user/username/rootfolder/otherfolder/a/b/tsconfig.json WatchType: Failed Lookup Locations +Info 372 [00:09:34.000] Elapsed:: *ms DirectoryWatcher:: Triggered with /user/username/rootfolder/otherfolder/a/b/node_modules/.staging/rxjs-22375c61/src/scheduler :: WatchInfo: /user/username/rootfolder/otherfolder/a/b/node_modules 1 undefined Project: /user/username/rootfolder/otherfolder/a/b/tsconfig.json WatchType: Failed Lookup Locations +Info 373 [00:09:35.000] DirectoryWatcher:: Triggered with /user/username/rootfolder/otherfolder/a/b/node_modules/.staging/rxjs-22375c61/src/scheduler :: WatchInfo: /user/username/rootfolder/otherfolder/a/b 1 undefined Config: /user/username/rootfolder/otherfolder/a/b/tsconfig.json WatchType: Wild card directory +Info 374 [00:09:36.000] Project: /user/username/rootfolder/otherfolder/a/b/tsconfig.json Detected ignored path: /user/username/rootfolder/otherfolder/a/b/node_modules/.staging/rxjs-22375c61/src/scheduler +Info 375 [00:09:37.000] Elapsed:: *ms DirectoryWatcher:: Triggered with /user/username/rootfolder/otherfolder/a/b/node_modules/.staging/rxjs-22375c61/src/scheduler :: WatchInfo: /user/username/rootfolder/otherfolder/a/b 1 undefined Config: /user/username/rootfolder/otherfolder/a/b/tsconfig.json WatchType: Wild card directory +Info 376 [00:09:39.000] DirectoryWatcher:: Triggered with /user/username/rootfolder/otherfolder/a/b/node_modules/.staging/rxjs-22375c61/src/util :: WatchInfo: /user/username/rootfolder/otherfolder/a/b/node_modules 1 undefined Project: /user/username/rootfolder/otherfolder/a/b/tsconfig.json WatchType: Failed Lookup Locations +Info 377 [00:09:40.000] Elapsed:: *ms DirectoryWatcher:: Triggered with /user/username/rootfolder/otherfolder/a/b/node_modules/.staging/rxjs-22375c61/src/util :: WatchInfo: /user/username/rootfolder/otherfolder/a/b/node_modules 1 undefined Project: /user/username/rootfolder/otherfolder/a/b/tsconfig.json WatchType: Failed Lookup Locations +Info 378 [00:09:41.000] DirectoryWatcher:: Triggered with /user/username/rootfolder/otherfolder/a/b/node_modules/.staging/rxjs-22375c61/src/util :: WatchInfo: /user/username/rootfolder/otherfolder/a/b 1 undefined Config: /user/username/rootfolder/otherfolder/a/b/tsconfig.json WatchType: Wild card directory +Info 379 [00:09:42.000] Project: /user/username/rootfolder/otherfolder/a/b/tsconfig.json Detected ignored path: /user/username/rootfolder/otherfolder/a/b/node_modules/.staging/rxjs-22375c61/src/util +Info 380 [00:09:43.000] Elapsed:: *ms DirectoryWatcher:: Triggered with /user/username/rootfolder/otherfolder/a/b/node_modules/.staging/rxjs-22375c61/src/util :: WatchInfo: /user/username/rootfolder/otherfolder/a/b 1 undefined Config: /user/username/rootfolder/otherfolder/a/b/tsconfig.json WatchType: Wild card directory +Info 381 [00:09:45.000] DirectoryWatcher:: Triggered with /user/username/rootfolder/otherfolder/a/b/node_modules/.staging/rxjs-22375c61/src :: WatchInfo: /user/username/rootfolder/otherfolder/a/b/node_modules 1 undefined Project: /user/username/rootfolder/otherfolder/a/b/tsconfig.json WatchType: Failed Lookup Locations +Info 382 [00:09:46.000] Elapsed:: *ms DirectoryWatcher:: Triggered with /user/username/rootfolder/otherfolder/a/b/node_modules/.staging/rxjs-22375c61/src :: WatchInfo: /user/username/rootfolder/otherfolder/a/b/node_modules 1 undefined Project: /user/username/rootfolder/otherfolder/a/b/tsconfig.json WatchType: Failed Lookup Locations +Info 383 [00:09:47.000] DirectoryWatcher:: Triggered with /user/username/rootfolder/otherfolder/a/b/node_modules/.staging/rxjs-22375c61/src :: WatchInfo: /user/username/rootfolder/otherfolder/a/b 1 undefined Config: /user/username/rootfolder/otherfolder/a/b/tsconfig.json WatchType: Wild card directory +Info 384 [00:09:48.000] Project: /user/username/rootfolder/otherfolder/a/b/tsconfig.json Detected ignored path: /user/username/rootfolder/otherfolder/a/b/node_modules/.staging/rxjs-22375c61/src +Info 385 [00:09:49.000] Elapsed:: *ms DirectoryWatcher:: Triggered with /user/username/rootfolder/otherfolder/a/b/node_modules/.staging/rxjs-22375c61/src :: WatchInfo: /user/username/rootfolder/otherfolder/a/b 1 undefined Config: /user/username/rootfolder/otherfolder/a/b/tsconfig.json WatchType: Wild card directory +Info 386 [00:09:51.000] DirectoryWatcher:: Triggered with /user/username/rootfolder/otherfolder/a/b/node_modules/.staging/rxjs-22375c61/symbol :: WatchInfo: /user/username/rootfolder/otherfolder/a/b/node_modules 1 undefined Project: /user/username/rootfolder/otherfolder/a/b/tsconfig.json WatchType: Failed Lookup Locations +Info 387 [00:09:52.000] Elapsed:: *ms DirectoryWatcher:: Triggered with /user/username/rootfolder/otherfolder/a/b/node_modules/.staging/rxjs-22375c61/symbol :: WatchInfo: /user/username/rootfolder/otherfolder/a/b/node_modules 1 undefined Project: /user/username/rootfolder/otherfolder/a/b/tsconfig.json WatchType: Failed Lookup Locations +Info 388 [00:09:53.000] DirectoryWatcher:: Triggered with /user/username/rootfolder/otherfolder/a/b/node_modules/.staging/rxjs-22375c61/symbol :: WatchInfo: /user/username/rootfolder/otherfolder/a/b 1 undefined Config: /user/username/rootfolder/otherfolder/a/b/tsconfig.json WatchType: Wild card directory +Info 389 [00:09:54.000] Project: /user/username/rootfolder/otherfolder/a/b/tsconfig.json Detected ignored path: /user/username/rootfolder/otherfolder/a/b/node_modules/.staging/rxjs-22375c61/symbol +Info 390 [00:09:55.000] Elapsed:: *ms DirectoryWatcher:: Triggered with /user/username/rootfolder/otherfolder/a/b/node_modules/.staging/rxjs-22375c61/symbol :: WatchInfo: /user/username/rootfolder/otherfolder/a/b 1 undefined Config: /user/username/rootfolder/otherfolder/a/b/tsconfig.json WatchType: Wild card directory +Info 391 [00:09:57.000] DirectoryWatcher:: Triggered with /user/username/rootfolder/otherfolder/a/b/node_modules/.staging/rxjs-22375c61/testing :: WatchInfo: /user/username/rootfolder/otherfolder/a/b/node_modules 1 undefined Project: /user/username/rootfolder/otherfolder/a/b/tsconfig.json WatchType: Failed Lookup Locations +Info 392 [00:09:58.000] Elapsed:: *ms DirectoryWatcher:: Triggered with /user/username/rootfolder/otherfolder/a/b/node_modules/.staging/rxjs-22375c61/testing :: WatchInfo: /user/username/rootfolder/otherfolder/a/b/node_modules 1 undefined Project: /user/username/rootfolder/otherfolder/a/b/tsconfig.json WatchType: Failed Lookup Locations +Info 393 [00:09:59.000] DirectoryWatcher:: Triggered with /user/username/rootfolder/otherfolder/a/b/node_modules/.staging/rxjs-22375c61/testing :: WatchInfo: /user/username/rootfolder/otherfolder/a/b 1 undefined Config: /user/username/rootfolder/otherfolder/a/b/tsconfig.json WatchType: Wild card directory +Info 394 [00:10:00.000] Project: /user/username/rootfolder/otherfolder/a/b/tsconfig.json Detected ignored path: /user/username/rootfolder/otherfolder/a/b/node_modules/.staging/rxjs-22375c61/testing +Info 395 [00:10:01.000] Elapsed:: *ms DirectoryWatcher:: Triggered with /user/username/rootfolder/otherfolder/a/b/node_modules/.staging/rxjs-22375c61/testing :: WatchInfo: /user/username/rootfolder/otherfolder/a/b 1 undefined Config: /user/username/rootfolder/otherfolder/a/b/tsconfig.json WatchType: Wild card directory +Info 396 [00:10:03.000] DirectoryWatcher:: Triggered with /user/username/rootfolder/otherfolder/a/b/node_modules/.staging/rxjs-22375c61 :: WatchInfo: /user/username/rootfolder/otherfolder/a/b/node_modules 1 undefined Project: /user/username/rootfolder/otherfolder/a/b/tsconfig.json WatchType: Failed Lookup Locations +Info 397 [00:10:04.000] Elapsed:: *ms DirectoryWatcher:: Triggered with /user/username/rootfolder/otherfolder/a/b/node_modules/.staging/rxjs-22375c61 :: WatchInfo: /user/username/rootfolder/otherfolder/a/b/node_modules 1 undefined Project: /user/username/rootfolder/otherfolder/a/b/tsconfig.json WatchType: Failed Lookup Locations +Info 398 [00:10:05.000] DirectoryWatcher:: Triggered with /user/username/rootfolder/otherfolder/a/b/node_modules/.staging/rxjs-22375c61 :: WatchInfo: /user/username/rootfolder/otherfolder/a/b 1 undefined Config: /user/username/rootfolder/otherfolder/a/b/tsconfig.json WatchType: Wild card directory +Info 399 [00:10:06.000] Project: /user/username/rootfolder/otherfolder/a/b/tsconfig.json Detected ignored path: /user/username/rootfolder/otherfolder/a/b/node_modules/.staging/rxjs-22375c61 +Info 400 [00:10:07.000] Elapsed:: *ms DirectoryWatcher:: Triggered with /user/username/rootfolder/otherfolder/a/b/node_modules/.staging/rxjs-22375c61 :: WatchInfo: /user/username/rootfolder/otherfolder/a/b 1 undefined Config: /user/username/rootfolder/otherfolder/a/b/tsconfig.json WatchType: Wild card directory +Info 401 [00:10:09.000] DirectoryWatcher:: Triggered with /user/username/rootfolder/otherfolder/a/b/node_modules/.staging/symbol-observable-24bcbbff/index.d.ts :: WatchInfo: /user/username/rootfolder/otherfolder/a/b/node_modules 1 undefined Project: /user/username/rootfolder/otherfolder/a/b/tsconfig.json WatchType: Failed Lookup Locations +Info 402 [00:10:10.000] Elapsed:: *ms DirectoryWatcher:: Triggered with /user/username/rootfolder/otherfolder/a/b/node_modules/.staging/symbol-observable-24bcbbff/index.d.ts :: WatchInfo: /user/username/rootfolder/otherfolder/a/b/node_modules 1 undefined Project: /user/username/rootfolder/otherfolder/a/b/tsconfig.json WatchType: Failed Lookup Locations +Info 403 [00:10:11.000] DirectoryWatcher:: Triggered with /user/username/rootfolder/otherfolder/a/b/node_modules/.staging/symbol-observable-24bcbbff/index.d.ts :: WatchInfo: /user/username/rootfolder/otherfolder/a/b 1 undefined Config: /user/username/rootfolder/otherfolder/a/b/tsconfig.json WatchType: Wild card directory +Info 404 [00:10:12.000] Project: /user/username/rootfolder/otherfolder/a/b/tsconfig.json Detected ignored path: /user/username/rootfolder/otherfolder/a/b/node_modules/.staging/symbol-observable-24bcbbff/index.d.ts +Info 405 [00:10:13.000] Elapsed:: *ms DirectoryWatcher:: Triggered with /user/username/rootfolder/otherfolder/a/b/node_modules/.staging/symbol-observable-24bcbbff/index.d.ts :: WatchInfo: /user/username/rootfolder/otherfolder/a/b 1 undefined Config: /user/username/rootfolder/otherfolder/a/b/tsconfig.json WatchType: Wild card directory +Info 406 [00:10:15.000] DirectoryWatcher:: Triggered with /user/username/rootfolder/otherfolder/a/b/node_modules/.staging/symbol-observable-24bcbbff/index.js :: WatchInfo: /user/username/rootfolder/otherfolder/a/b/node_modules 1 undefined Project: /user/username/rootfolder/otherfolder/a/b/tsconfig.json WatchType: Failed Lookup Locations +Info 407 [00:10:16.000] Elapsed:: *ms DirectoryWatcher:: Triggered with /user/username/rootfolder/otherfolder/a/b/node_modules/.staging/symbol-observable-24bcbbff/index.js :: WatchInfo: /user/username/rootfolder/otherfolder/a/b/node_modules 1 undefined Project: /user/username/rootfolder/otherfolder/a/b/tsconfig.json WatchType: Failed Lookup Locations +Info 408 [00:10:17.000] DirectoryWatcher:: Triggered with /user/username/rootfolder/otherfolder/a/b/node_modules/.staging/symbol-observable-24bcbbff/index.js :: WatchInfo: /user/username/rootfolder/otherfolder/a/b 1 undefined Config: /user/username/rootfolder/otherfolder/a/b/tsconfig.json WatchType: Wild card directory +Info 409 [00:10:18.000] Project: /user/username/rootfolder/otherfolder/a/b/tsconfig.json Detected ignored path: /user/username/rootfolder/otherfolder/a/b/node_modules/.staging/symbol-observable-24bcbbff/index.js +Info 410 [00:10:19.000] Elapsed:: *ms DirectoryWatcher:: Triggered with /user/username/rootfolder/otherfolder/a/b/node_modules/.staging/symbol-observable-24bcbbff/index.js :: WatchInfo: /user/username/rootfolder/otherfolder/a/b 1 undefined Config: /user/username/rootfolder/otherfolder/a/b/tsconfig.json WatchType: Wild card directory +Info 411 [00:10:21.000] DirectoryWatcher:: Triggered with /user/username/rootfolder/otherfolder/a/b/node_modules/.staging/symbol-observable-24bcbbff/lib/index.js :: WatchInfo: /user/username/rootfolder/otherfolder/a/b/node_modules 1 undefined Project: /user/username/rootfolder/otherfolder/a/b/tsconfig.json WatchType: Failed Lookup Locations +Info 412 [00:10:22.000] Elapsed:: *ms DirectoryWatcher:: Triggered with /user/username/rootfolder/otherfolder/a/b/node_modules/.staging/symbol-observable-24bcbbff/lib/index.js :: WatchInfo: /user/username/rootfolder/otherfolder/a/b/node_modules 1 undefined Project: /user/username/rootfolder/otherfolder/a/b/tsconfig.json WatchType: Failed Lookup Locations +Info 413 [00:10:23.000] DirectoryWatcher:: Triggered with /user/username/rootfolder/otherfolder/a/b/node_modules/.staging/symbol-observable-24bcbbff/lib/index.js :: WatchInfo: /user/username/rootfolder/otherfolder/a/b 1 undefined Config: /user/username/rootfolder/otherfolder/a/b/tsconfig.json WatchType: Wild card directory +Info 414 [00:10:24.000] Project: /user/username/rootfolder/otherfolder/a/b/tsconfig.json Detected ignored path: /user/username/rootfolder/otherfolder/a/b/node_modules/.staging/symbol-observable-24bcbbff/lib/index.js +Info 415 [00:10:25.000] Elapsed:: *ms DirectoryWatcher:: Triggered with /user/username/rootfolder/otherfolder/a/b/node_modules/.staging/symbol-observable-24bcbbff/lib/index.js :: WatchInfo: /user/username/rootfolder/otherfolder/a/b 1 undefined Config: /user/username/rootfolder/otherfolder/a/b/tsconfig.json WatchType: Wild card directory +Info 416 [00:10:27.000] DirectoryWatcher:: Triggered with /user/username/rootfolder/otherfolder/a/b/node_modules/.staging/symbol-observable-24bcbbff/lib :: WatchInfo: /user/username/rootfolder/otherfolder/a/b/node_modules 1 undefined Project: /user/username/rootfolder/otherfolder/a/b/tsconfig.json WatchType: Failed Lookup Locations +Info 417 [00:10:28.000] Elapsed:: *ms DirectoryWatcher:: Triggered with /user/username/rootfolder/otherfolder/a/b/node_modules/.staging/symbol-observable-24bcbbff/lib :: WatchInfo: /user/username/rootfolder/otherfolder/a/b/node_modules 1 undefined Project: /user/username/rootfolder/otherfolder/a/b/tsconfig.json WatchType: Failed Lookup Locations +Info 418 [00:10:29.000] DirectoryWatcher:: Triggered with /user/username/rootfolder/otherfolder/a/b/node_modules/.staging/symbol-observable-24bcbbff/lib :: WatchInfo: /user/username/rootfolder/otherfolder/a/b 1 undefined Config: /user/username/rootfolder/otherfolder/a/b/tsconfig.json WatchType: Wild card directory +Info 419 [00:10:30.000] Project: /user/username/rootfolder/otherfolder/a/b/tsconfig.json Detected ignored path: /user/username/rootfolder/otherfolder/a/b/node_modules/.staging/symbol-observable-24bcbbff/lib +Info 420 [00:10:31.000] Elapsed:: *ms DirectoryWatcher:: Triggered with /user/username/rootfolder/otherfolder/a/b/node_modules/.staging/symbol-observable-24bcbbff/lib :: WatchInfo: /user/username/rootfolder/otherfolder/a/b 1 undefined Config: /user/username/rootfolder/otherfolder/a/b/tsconfig.json WatchType: Wild card directory +Info 421 [00:10:33.000] DirectoryWatcher:: Triggered with /user/username/rootfolder/otherfolder/a/b/node_modules/.staging/symbol-observable-24bcbbff/package.json :: WatchInfo: /user/username/rootfolder/otherfolder/a/b/node_modules 1 undefined Project: /user/username/rootfolder/otherfolder/a/b/tsconfig.json WatchType: Failed Lookup Locations +Info 422 [00:10:34.000] Elapsed:: *ms DirectoryWatcher:: Triggered with /user/username/rootfolder/otherfolder/a/b/node_modules/.staging/symbol-observable-24bcbbff/package.json :: WatchInfo: /user/username/rootfolder/otherfolder/a/b/node_modules 1 undefined Project: /user/username/rootfolder/otherfolder/a/b/tsconfig.json WatchType: Failed Lookup Locations +Info 423 [00:10:35.000] DirectoryWatcher:: Triggered with /user/username/rootfolder/otherfolder/a/b/node_modules/.staging/symbol-observable-24bcbbff/package.json :: WatchInfo: /user/username/rootfolder/otherfolder/a/b 1 undefined Config: /user/username/rootfolder/otherfolder/a/b/tsconfig.json WatchType: Wild card directory +Info 424 [00:10:36.000] Project: /user/username/rootfolder/otherfolder/a/b/tsconfig.json Detected ignored path: /user/username/rootfolder/otherfolder/a/b/node_modules/.staging/symbol-observable-24bcbbff/package.json +Info 425 [00:10:37.000] Elapsed:: *ms DirectoryWatcher:: Triggered with /user/username/rootfolder/otherfolder/a/b/node_modules/.staging/symbol-observable-24bcbbff/package.json :: WatchInfo: /user/username/rootfolder/otherfolder/a/b 1 undefined Config: /user/username/rootfolder/otherfolder/a/b/tsconfig.json WatchType: Wild card directory +Info 426 [00:10:39.000] DirectoryWatcher:: Triggered with /user/username/rootfolder/otherfolder/a/b/node_modules/.staging/symbol-observable-24bcbbff :: WatchInfo: /user/username/rootfolder/otherfolder/a/b/node_modules 1 undefined Project: /user/username/rootfolder/otherfolder/a/b/tsconfig.json WatchType: Failed Lookup Locations +Info 427 [00:10:40.000] Elapsed:: *ms DirectoryWatcher:: Triggered with /user/username/rootfolder/otherfolder/a/b/node_modules/.staging/symbol-observable-24bcbbff :: WatchInfo: /user/username/rootfolder/otherfolder/a/b/node_modules 1 undefined Project: /user/username/rootfolder/otherfolder/a/b/tsconfig.json WatchType: Failed Lookup Locations +Info 428 [00:10:41.000] DirectoryWatcher:: Triggered with /user/username/rootfolder/otherfolder/a/b/node_modules/.staging/symbol-observable-24bcbbff :: WatchInfo: /user/username/rootfolder/otherfolder/a/b 1 undefined Config: /user/username/rootfolder/otherfolder/a/b/tsconfig.json WatchType: Wild card directory +Info 429 [00:10:42.000] Project: /user/username/rootfolder/otherfolder/a/b/tsconfig.json Detected ignored path: /user/username/rootfolder/otherfolder/a/b/node_modules/.staging/symbol-observable-24bcbbff +Info 430 [00:10:43.000] Elapsed:: *ms DirectoryWatcher:: Triggered with /user/username/rootfolder/otherfolder/a/b/node_modules/.staging/symbol-observable-24bcbbff :: WatchInfo: /user/username/rootfolder/otherfolder/a/b 1 undefined Config: /user/username/rootfolder/otherfolder/a/b/tsconfig.json WatchType: Wild card directory +Info 431 [00:10:45.000] DirectoryWatcher:: Triggered with /user/username/rootfolder/otherfolder/a/b/node_modules/.staging/typescript-8493ea5d/lib :: WatchInfo: /user/username/rootfolder/otherfolder/a/b/node_modules 1 undefined Project: /user/username/rootfolder/otherfolder/a/b/tsconfig.json WatchType: Failed Lookup Locations +Info 432 [00:10:46.000] Elapsed:: *ms DirectoryWatcher:: Triggered with /user/username/rootfolder/otherfolder/a/b/node_modules/.staging/typescript-8493ea5d/lib :: WatchInfo: /user/username/rootfolder/otherfolder/a/b/node_modules 1 undefined Project: /user/username/rootfolder/otherfolder/a/b/tsconfig.json WatchType: Failed Lookup Locations +Info 433 [00:10:47.000] DirectoryWatcher:: Triggered with /user/username/rootfolder/otherfolder/a/b/node_modules/.staging/typescript-8493ea5d/lib :: WatchInfo: /user/username/rootfolder/otherfolder/a/b 1 undefined Config: /user/username/rootfolder/otherfolder/a/b/tsconfig.json WatchType: Wild card directory +Info 434 [00:10:48.000] Project: /user/username/rootfolder/otherfolder/a/b/tsconfig.json Detected ignored path: /user/username/rootfolder/otherfolder/a/b/node_modules/.staging/typescript-8493ea5d/lib +Info 435 [00:10:49.000] Elapsed:: *ms DirectoryWatcher:: Triggered with /user/username/rootfolder/otherfolder/a/b/node_modules/.staging/typescript-8493ea5d/lib :: WatchInfo: /user/username/rootfolder/otherfolder/a/b 1 undefined Config: /user/username/rootfolder/otherfolder/a/b/tsconfig.json WatchType: Wild card directory +Info 436 [00:10:51.000] DirectoryWatcher:: Triggered with /user/username/rootfolder/otherfolder/a/b/node_modules/.staging/typescript-8493ea5d/package.json :: WatchInfo: /user/username/rootfolder/otherfolder/a/b/node_modules 1 undefined Project: /user/username/rootfolder/otherfolder/a/b/tsconfig.json WatchType: Failed Lookup Locations +Info 437 [00:10:52.000] Elapsed:: *ms DirectoryWatcher:: Triggered with /user/username/rootfolder/otherfolder/a/b/node_modules/.staging/typescript-8493ea5d/package.json :: WatchInfo: /user/username/rootfolder/otherfolder/a/b/node_modules 1 undefined Project: /user/username/rootfolder/otherfolder/a/b/tsconfig.json WatchType: Failed Lookup Locations +Info 438 [00:10:53.000] DirectoryWatcher:: Triggered with /user/username/rootfolder/otherfolder/a/b/node_modules/.staging/typescript-8493ea5d/package.json :: WatchInfo: /user/username/rootfolder/otherfolder/a/b 1 undefined Config: /user/username/rootfolder/otherfolder/a/b/tsconfig.json WatchType: Wild card directory +Info 439 [00:10:54.000] Project: /user/username/rootfolder/otherfolder/a/b/tsconfig.json Detected ignored path: /user/username/rootfolder/otherfolder/a/b/node_modules/.staging/typescript-8493ea5d/package.json +Info 440 [00:10:55.000] Elapsed:: *ms DirectoryWatcher:: Triggered with /user/username/rootfolder/otherfolder/a/b/node_modules/.staging/typescript-8493ea5d/package.json :: WatchInfo: /user/username/rootfolder/otherfolder/a/b 1 undefined Config: /user/username/rootfolder/otherfolder/a/b/tsconfig.json WatchType: Wild card directory +Info 441 [00:10:57.000] DirectoryWatcher:: Triggered with /user/username/rootfolder/otherfolder/a/b/node_modules/.staging/typescript-8493ea5d :: WatchInfo: /user/username/rootfolder/otherfolder/a/b/node_modules 1 undefined Project: /user/username/rootfolder/otherfolder/a/b/tsconfig.json WatchType: Failed Lookup Locations +Info 442 [00:10:58.000] Elapsed:: *ms DirectoryWatcher:: Triggered with /user/username/rootfolder/otherfolder/a/b/node_modules/.staging/typescript-8493ea5d :: WatchInfo: /user/username/rootfolder/otherfolder/a/b/node_modules 1 undefined Project: /user/username/rootfolder/otherfolder/a/b/tsconfig.json WatchType: Failed Lookup Locations +Info 443 [00:10:59.000] DirectoryWatcher:: Triggered with /user/username/rootfolder/otherfolder/a/b/node_modules/.staging/typescript-8493ea5d :: WatchInfo: /user/username/rootfolder/otherfolder/a/b 1 undefined Config: /user/username/rootfolder/otherfolder/a/b/tsconfig.json WatchType: Wild card directory +Info 444 [00:11:00.000] Project: /user/username/rootfolder/otherfolder/a/b/tsconfig.json Detected ignored path: /user/username/rootfolder/otherfolder/a/b/node_modules/.staging/typescript-8493ea5d +Info 445 [00:11:01.000] Elapsed:: *ms DirectoryWatcher:: Triggered with /user/username/rootfolder/otherfolder/a/b/node_modules/.staging/typescript-8493ea5d :: WatchInfo: /user/username/rootfolder/otherfolder/a/b 1 undefined Config: /user/username/rootfolder/otherfolder/a/b/tsconfig.json WatchType: Wild card directory +Info 446 [00:11:03.000] DirectoryWatcher:: Triggered with /user/username/rootfolder/otherfolder/a/b/node_modules/.staging :: WatchInfo: /user/username/rootfolder/otherfolder/a/b/node_modules 1 undefined Project: /user/username/rootfolder/otherfolder/a/b/tsconfig.json WatchType: Failed Lookup Locations +Info 447 [00:11:04.000] Scheduled: /user/username/rootfolder/otherfolder/a/b/tsconfig.jsonFailedLookupInvalidation +Info 448 [00:11:05.000] Elapsed:: *ms DirectoryWatcher:: Triggered with /user/username/rootfolder/otherfolder/a/b/node_modules/.staging :: WatchInfo: /user/username/rootfolder/otherfolder/a/b/node_modules 1 undefined Project: /user/username/rootfolder/otherfolder/a/b/tsconfig.json WatchType: Failed Lookup Locations +Info 449 [00:11:06.000] DirectoryWatcher:: Triggered with /user/username/rootfolder/otherfolder/a/b/node_modules/.staging :: WatchInfo: /user/username/rootfolder/otherfolder/a/b 1 undefined Config: /user/username/rootfolder/otherfolder/a/b/tsconfig.json WatchType: Wild card directory +Info 450 [00:11:07.000] Scheduled: /user/username/rootfolder/otherfolder/a/b/tsconfig.json +Info 451 [00:11:08.000] Scheduled: *ensureProjectForOpenFiles* +Info 452 [00:11:09.000] Elapsed:: *ms DirectoryWatcher:: Triggered with /user/username/rootfolder/otherfolder/a/b/node_modules/.staging :: WatchInfo: /user/username/rootfolder/otherfolder/a/b 1 undefined Config: /user/username/rootfolder/otherfolder/a/b/tsconfig.json WatchType: Wild card directory +Info 453 [00:11:12.000] DirectoryWatcher:: Triggered with /user/username/rootfolder/otherfolder/a/b/node_modules/symbolle :: WatchInfo: /user/username/rootfolder/otherfolder/a/b/node_modules 1 undefined Project: /user/username/rootfolder/otherfolder/a/b/tsconfig.json WatchType: Failed Lookup Locations +Info 454 [00:11:13.000] Scheduled: /user/username/rootfolder/otherfolder/a/b/tsconfig.jsonFailedLookupInvalidation, Cancelled earlier one +Info 455 [00:11:14.000] Elapsed:: *ms DirectoryWatcher:: Triggered with /user/username/rootfolder/otherfolder/a/b/node_modules/symbolle :: WatchInfo: /user/username/rootfolder/otherfolder/a/b/node_modules 1 undefined Project: /user/username/rootfolder/otherfolder/a/b/tsconfig.json WatchType: Failed Lookup Locations +Info 456 [00:11:15.000] DirectoryWatcher:: Triggered with /user/username/rootfolder/otherfolder/a/b/node_modules/symbolle :: WatchInfo: /user/username/rootfolder/otherfolder/a/b 1 undefined Config: /user/username/rootfolder/otherfolder/a/b/tsconfig.json WatchType: Wild card directory +Info 457 [00:11:16.000] Scheduled: /user/username/rootfolder/otherfolder/a/b/tsconfig.json, Cancelled earlier one +Info 458 [00:11:17.000] Scheduled: *ensureProjectForOpenFiles*, Cancelled earlier one +Info 459 [00:11:18.000] Elapsed:: *ms DirectoryWatcher:: Triggered with /user/username/rootfolder/otherfolder/a/b/node_modules/symbolle :: WatchInfo: /user/username/rootfolder/otherfolder/a/b 1 undefined Config: /user/username/rootfolder/otherfolder/a/b/tsconfig.json WatchType: Wild card directory +Info 460 [00:11:21.000] DirectoryWatcher:: Triggered with /user/username/rootfolder/otherfolder/a/b/node_modules/symbolle/package.json :: WatchInfo: /user/username/rootfolder/otherfolder/a/b/node_modules 1 undefined Project: /user/username/rootfolder/otherfolder/a/b/tsconfig.json WatchType: Failed Lookup Locations +Info 461 [00:11:22.000] Scheduled: /user/username/rootfolder/otherfolder/a/b/tsconfig.jsonFailedLookupInvalidation, Cancelled earlier one +Info 462 [00:11:23.000] Elapsed:: *ms DirectoryWatcher:: Triggered with /user/username/rootfolder/otherfolder/a/b/node_modules/symbolle/package.json :: WatchInfo: /user/username/rootfolder/otherfolder/a/b/node_modules 1 undefined Project: /user/username/rootfolder/otherfolder/a/b/tsconfig.json WatchType: Failed Lookup Locations +Info 463 [00:11:24.000] DirectoryWatcher:: Triggered with /user/username/rootfolder/otherfolder/a/b/node_modules/symbolle/package.json :: WatchInfo: /user/username/rootfolder/otherfolder/a/b 1 undefined Config: /user/username/rootfolder/otherfolder/a/b/tsconfig.json WatchType: Wild card directory +Info 464 [00:11:25.000] Project: /user/username/rootfolder/otherfolder/a/b/tsconfig.json Detected file add/remove of non supported extension: /user/username/rootfolder/otherfolder/a/b/node_modules/symbolle/package.json +Info 465 [00:11:26.000] Elapsed:: *ms DirectoryWatcher:: Triggered with /user/username/rootfolder/otherfolder/a/b/node_modules/symbolle/package.json :: WatchInfo: /user/username/rootfolder/otherfolder/a/b 1 undefined Config: /user/username/rootfolder/otherfolder/a/b/tsconfig.json WatchType: Wild card directory +Info 466 [00:11:29.000] DirectoryWatcher:: Triggered with /user/username/rootfolder/otherfolder/a/b/node_modules/lodash/package.json :: WatchInfo: /user/username/rootfolder/otherfolder/a/b/node_modules 1 undefined Project: /user/username/rootfolder/otherfolder/a/b/tsconfig.json WatchType: Failed Lookup Locations +Info 467 [00:11:30.000] Scheduled: /user/username/rootfolder/otherfolder/a/b/tsconfig.jsonFailedLookupInvalidation, Cancelled earlier one +Info 468 [00:11:31.000] Elapsed:: *ms DirectoryWatcher:: Triggered with /user/username/rootfolder/otherfolder/a/b/node_modules/lodash/package.json :: WatchInfo: /user/username/rootfolder/otherfolder/a/b/node_modules 1 undefined Project: /user/username/rootfolder/otherfolder/a/b/tsconfig.json WatchType: Failed Lookup Locations +Info 469 [00:11:32.000] DirectoryWatcher:: Triggered with /user/username/rootfolder/otherfolder/a/b/node_modules/lodash/package.json :: WatchInfo: /user/username/rootfolder/otherfolder/a/b 1 undefined Config: /user/username/rootfolder/otherfolder/a/b/tsconfig.json WatchType: Wild card directory +Info 470 [00:11:33.000] Project: /user/username/rootfolder/otherfolder/a/b/tsconfig.json Detected file add/remove of non supported extension: /user/username/rootfolder/otherfolder/a/b/node_modules/lodash/package.json +Info 471 [00:11:34.000] Elapsed:: *ms DirectoryWatcher:: Triggered with /user/username/rootfolder/otherfolder/a/b/node_modules/lodash/package.json :: WatchInfo: /user/username/rootfolder/otherfolder/a/b 1 undefined Config: /user/username/rootfolder/otherfolder/a/b/tsconfig.json WatchType: Wild card directory +Info 472 [00:11:37.000] DirectoryWatcher:: Triggered with /user/username/rootfolder/otherfolder/a/b/node_modules/rxjs/package.json :: WatchInfo: /user/username/rootfolder/otherfolder/a/b/node_modules 1 undefined Project: /user/username/rootfolder/otherfolder/a/b/tsconfig.json WatchType: Failed Lookup Locations +Info 473 [00:11:38.000] Scheduled: /user/username/rootfolder/otherfolder/a/b/tsconfig.jsonFailedLookupInvalidation, Cancelled earlier one +Info 474 [00:11:39.000] Elapsed:: *ms DirectoryWatcher:: Triggered with /user/username/rootfolder/otherfolder/a/b/node_modules/rxjs/package.json :: WatchInfo: /user/username/rootfolder/otherfolder/a/b/node_modules 1 undefined Project: /user/username/rootfolder/otherfolder/a/b/tsconfig.json WatchType: Failed Lookup Locations +Info 475 [00:11:40.000] DirectoryWatcher:: Triggered with /user/username/rootfolder/otherfolder/a/b/node_modules/rxjs/package.json :: WatchInfo: /user/username/rootfolder/otherfolder/a/b 1 undefined Config: /user/username/rootfolder/otherfolder/a/b/tsconfig.json WatchType: Wild card directory +Info 476 [00:11:41.000] Project: /user/username/rootfolder/otherfolder/a/b/tsconfig.json Detected file add/remove of non supported extension: /user/username/rootfolder/otherfolder/a/b/node_modules/rxjs/package.json +Info 477 [00:11:42.000] Elapsed:: *ms DirectoryWatcher:: Triggered with /user/username/rootfolder/otherfolder/a/b/node_modules/rxjs/package.json :: WatchInfo: /user/username/rootfolder/otherfolder/a/b 1 undefined Config: /user/username/rootfolder/otherfolder/a/b/tsconfig.json WatchType: Wild card directory +Info 478 [00:11:45.000] DirectoryWatcher:: Triggered with /user/username/rootfolder/otherfolder/a/b/node_modules/typescript/package.json :: WatchInfo: /user/username/rootfolder/otherfolder/a/b/node_modules 1 undefined Project: /user/username/rootfolder/otherfolder/a/b/tsconfig.json WatchType: Failed Lookup Locations +Info 479 [00:11:46.000] Scheduled: /user/username/rootfolder/otherfolder/a/b/tsconfig.jsonFailedLookupInvalidation, Cancelled earlier one +Info 480 [00:11:47.000] Elapsed:: *ms DirectoryWatcher:: Triggered with /user/username/rootfolder/otherfolder/a/b/node_modules/typescript/package.json :: WatchInfo: /user/username/rootfolder/otherfolder/a/b/node_modules 1 undefined Project: /user/username/rootfolder/otherfolder/a/b/tsconfig.json WatchType: Failed Lookup Locations +Info 481 [00:11:48.000] DirectoryWatcher:: Triggered with /user/username/rootfolder/otherfolder/a/b/node_modules/typescript/package.json :: WatchInfo: /user/username/rootfolder/otherfolder/a/b 1 undefined Config: /user/username/rootfolder/otherfolder/a/b/tsconfig.json WatchType: Wild card directory +Info 482 [00:11:49.000] Project: /user/username/rootfolder/otherfolder/a/b/tsconfig.json Detected file add/remove of non supported extension: /user/username/rootfolder/otherfolder/a/b/node_modules/typescript/package.json +Info 483 [00:11:50.000] Elapsed:: *ms DirectoryWatcher:: Triggered with /user/username/rootfolder/otherfolder/a/b/node_modules/typescript/package.json :: WatchInfo: /user/username/rootfolder/otherfolder/a/b 1 undefined Config: /user/username/rootfolder/otherfolder/a/b/tsconfig.json WatchType: Wild card directory +Info 484 [00:11:53.000] DirectoryWatcher:: Triggered with /user/username/rootfolder/otherfolder/a/b/node_modules/symbolle/index.js :: WatchInfo: /user/username/rootfolder/otherfolder/a/b/node_modules 1 undefined Project: /user/username/rootfolder/otherfolder/a/b/tsconfig.json WatchType: Failed Lookup Locations +Info 485 [00:11:54.000] Scheduled: /user/username/rootfolder/otherfolder/a/b/tsconfig.jsonFailedLookupInvalidation, Cancelled earlier one +Info 486 [00:11:55.000] Elapsed:: *ms DirectoryWatcher:: Triggered with /user/username/rootfolder/otherfolder/a/b/node_modules/symbolle/index.js :: WatchInfo: /user/username/rootfolder/otherfolder/a/b/node_modules 1 undefined Project: /user/username/rootfolder/otherfolder/a/b/tsconfig.json WatchType: Failed Lookup Locations +Info 487 [00:11:56.000] DirectoryWatcher:: Triggered with /user/username/rootfolder/otherfolder/a/b/node_modules/symbolle/index.js :: WatchInfo: /user/username/rootfolder/otherfolder/a/b 1 undefined Config: /user/username/rootfolder/otherfolder/a/b/tsconfig.json WatchType: Wild card directory +Info 488 [00:11:57.000] Project: /user/username/rootfolder/otherfolder/a/b/tsconfig.json Detected file add/remove of non supported extension: /user/username/rootfolder/otherfolder/a/b/node_modules/symbolle/index.js +Info 489 [00:11:58.000] Elapsed:: *ms DirectoryWatcher:: Triggered with /user/username/rootfolder/otherfolder/a/b/node_modules/symbolle/index.js :: WatchInfo: /user/username/rootfolder/otherfolder/a/b 1 undefined Config: /user/username/rootfolder/otherfolder/a/b/tsconfig.json WatchType: Wild card directory +Info 490 [00:12:01.000] DirectoryWatcher:: Triggered with /user/username/rootfolder/otherfolder/a/b/node_modules/symbolle/index.d.ts :: WatchInfo: /user/username/rootfolder/otherfolder/a/b/node_modules 1 undefined Project: /user/username/rootfolder/otherfolder/a/b/tsconfig.json WatchType: Failed Lookup Locations +Info 491 [00:12:02.000] Scheduled: /user/username/rootfolder/otherfolder/a/b/tsconfig.jsonFailedLookupInvalidation, Cancelled earlier one +Info 492 [00:12:03.000] Elapsed:: *ms DirectoryWatcher:: Triggered with /user/username/rootfolder/otherfolder/a/b/node_modules/symbolle/index.d.ts :: WatchInfo: /user/username/rootfolder/otherfolder/a/b/node_modules 1 undefined Project: /user/username/rootfolder/otherfolder/a/b/tsconfig.json WatchType: Failed Lookup Locations +Info 493 [00:12:04.000] DirectoryWatcher:: Triggered with /user/username/rootfolder/otherfolder/a/b/node_modules/symbolle/index.d.ts :: WatchInfo: /user/username/rootfolder/otherfolder/a/b 1 undefined Config: /user/username/rootfolder/otherfolder/a/b/tsconfig.json WatchType: Wild card directory +Info 494 [00:12:05.000] Scheduled: /user/username/rootfolder/otherfolder/a/b/tsconfig.json, Cancelled earlier one +Info 495 [00:12:06.000] Scheduled: *ensureProjectForOpenFiles*, Cancelled earlier one +Info 496 [00:12:07.000] Elapsed:: *ms DirectoryWatcher:: Triggered with /user/username/rootfolder/otherfolder/a/b/node_modules/symbolle/index.d.ts :: WatchInfo: /user/username/rootfolder/otherfolder/a/b 1 undefined Config: /user/username/rootfolder/otherfolder/a/b/tsconfig.json WatchType: Wild card directory +Info 497 [00:12:10.000] DirectoryWatcher:: Triggered with /user/username/rootfolder/otherfolder/a/b/node_modules/symbolle/lib :: WatchInfo: /user/username/rootfolder/otherfolder/a/b/node_modules 1 undefined Project: /user/username/rootfolder/otherfolder/a/b/tsconfig.json WatchType: Failed Lookup Locations +Info 498 [00:12:11.000] Elapsed:: *ms DirectoryWatcher:: Triggered with /user/username/rootfolder/otherfolder/a/b/node_modules/symbolle/lib :: WatchInfo: /user/username/rootfolder/otherfolder/a/b/node_modules 1 undefined Project: /user/username/rootfolder/otherfolder/a/b/tsconfig.json WatchType: Failed Lookup Locations +Info 499 [00:12:12.000] DirectoryWatcher:: Triggered with /user/username/rootfolder/otherfolder/a/b/node_modules/symbolle/lib :: WatchInfo: /user/username/rootfolder/otherfolder/a/b 1 undefined Config: /user/username/rootfolder/otherfolder/a/b/tsconfig.json WatchType: Wild card directory +Info 500 [00:12:13.000] Scheduled: /user/username/rootfolder/otherfolder/a/b/tsconfig.json, Cancelled earlier one +Info 501 [00:12:14.000] Scheduled: *ensureProjectForOpenFiles*, Cancelled earlier one +Info 502 [00:12:15.000] Elapsed:: *ms DirectoryWatcher:: Triggered with /user/username/rootfolder/otherfolder/a/b/node_modules/symbolle/lib :: WatchInfo: /user/username/rootfolder/otherfolder/a/b 1 undefined Config: /user/username/rootfolder/otherfolder/a/b/tsconfig.json WatchType: Wild card directory +Info 503 [00:12:18.000] DirectoryWatcher:: Triggered with /user/username/rootfolder/otherfolder/a/b/node_modules/symbolle/lib/index.js :: WatchInfo: /user/username/rootfolder/otherfolder/a/b/node_modules 1 undefined Project: /user/username/rootfolder/otherfolder/a/b/tsconfig.json WatchType: Failed Lookup Locations +Info 504 [00:12:19.000] Scheduled: /user/username/rootfolder/otherfolder/a/b/tsconfig.jsonFailedLookupInvalidation, Cancelled earlier one +Info 505 [00:12:20.000] Elapsed:: *ms DirectoryWatcher:: Triggered with /user/username/rootfolder/otherfolder/a/b/node_modules/symbolle/lib/index.js :: WatchInfo: /user/username/rootfolder/otherfolder/a/b/node_modules 1 undefined Project: /user/username/rootfolder/otherfolder/a/b/tsconfig.json WatchType: Failed Lookup Locations +Info 506 [00:12:21.000] DirectoryWatcher:: Triggered with /user/username/rootfolder/otherfolder/a/b/node_modules/symbolle/lib/index.js :: WatchInfo: /user/username/rootfolder/otherfolder/a/b 1 undefined Config: /user/username/rootfolder/otherfolder/a/b/tsconfig.json WatchType: Wild card directory +Info 507 [00:12:22.000] Project: /user/username/rootfolder/otherfolder/a/b/tsconfig.json Detected file add/remove of non supported extension: /user/username/rootfolder/otherfolder/a/b/node_modules/symbolle/lib/index.js +Info 508 [00:12:23.000] Elapsed:: *ms DirectoryWatcher:: Triggered with /user/username/rootfolder/otherfolder/a/b/node_modules/symbolle/lib/index.js :: WatchInfo: /user/username/rootfolder/otherfolder/a/b 1 undefined Config: /user/username/rootfolder/otherfolder/a/b/tsconfig.json WatchType: Wild card directory +Info 509 [00:12:26.000] DirectoryWatcher:: Triggered with /user/username/rootfolder/otherfolder/a/b/node_modules/typescript/lib :: WatchInfo: /user/username/rootfolder/otherfolder/a/b/node_modules 1 undefined Project: /user/username/rootfolder/otherfolder/a/b/tsconfig.json WatchType: Failed Lookup Locations +Info 510 [00:12:27.000] Elapsed:: *ms DirectoryWatcher:: Triggered with /user/username/rootfolder/otherfolder/a/b/node_modules/typescript/lib :: WatchInfo: /user/username/rootfolder/otherfolder/a/b/node_modules 1 undefined Project: /user/username/rootfolder/otherfolder/a/b/tsconfig.json WatchType: Failed Lookup Locations +Info 511 [00:12:28.000] DirectoryWatcher:: Triggered with /user/username/rootfolder/otherfolder/a/b/node_modules/typescript/lib :: WatchInfo: /user/username/rootfolder/otherfolder/a/b 1 undefined Config: /user/username/rootfolder/otherfolder/a/b/tsconfig.json WatchType: Wild card directory +Info 512 [00:12:29.000] Scheduled: /user/username/rootfolder/otherfolder/a/b/tsconfig.json, Cancelled earlier one +Info 513 [00:12:30.000] Scheduled: *ensureProjectForOpenFiles*, Cancelled earlier one +Info 514 [00:12:31.000] Elapsed:: *ms DirectoryWatcher:: Triggered with /user/username/rootfolder/otherfolder/a/b/node_modules/typescript/lib :: WatchInfo: /user/username/rootfolder/otherfolder/a/b 1 undefined Config: /user/username/rootfolder/otherfolder/a/b/tsconfig.json WatchType: Wild card directory +Info 515 [00:12:34.000] DirectoryWatcher:: Triggered with /user/username/rootfolder/otherfolder/a/b/node_modules/rxjs/add :: WatchInfo: /user/username/rootfolder/otherfolder/a/b/node_modules 1 undefined Project: /user/username/rootfolder/otherfolder/a/b/tsconfig.json WatchType: Failed Lookup Locations +Info 516 [00:12:35.000] Elapsed:: *ms DirectoryWatcher:: Triggered with /user/username/rootfolder/otherfolder/a/b/node_modules/rxjs/add :: WatchInfo: /user/username/rootfolder/otherfolder/a/b/node_modules 1 undefined Project: /user/username/rootfolder/otherfolder/a/b/tsconfig.json WatchType: Failed Lookup Locations +Info 517 [00:12:36.000] DirectoryWatcher:: Triggered with /user/username/rootfolder/otherfolder/a/b/node_modules/rxjs/add :: WatchInfo: /user/username/rootfolder/otherfolder/a/b 1 undefined Config: /user/username/rootfolder/otherfolder/a/b/tsconfig.json WatchType: Wild card directory +Info 518 [00:12:37.000] Scheduled: /user/username/rootfolder/otherfolder/a/b/tsconfig.json, Cancelled earlier one +Info 519 [00:12:38.000] Scheduled: *ensureProjectForOpenFiles*, Cancelled earlier one +Info 520 [00:12:39.000] Elapsed:: *ms DirectoryWatcher:: Triggered with /user/username/rootfolder/otherfolder/a/b/node_modules/rxjs/add :: WatchInfo: /user/username/rootfolder/otherfolder/a/b 1 undefined Config: /user/username/rootfolder/otherfolder/a/b/tsconfig.json WatchType: Wild card directory +Info 521 [00:12:42.000] DirectoryWatcher:: Triggered with /user/username/rootfolder/otherfolder/a/b/node_modules/rxjs/add/operator :: WatchInfo: /user/username/rootfolder/otherfolder/a/b/node_modules 1 undefined Project: /user/username/rootfolder/otherfolder/a/b/tsconfig.json WatchType: Failed Lookup Locations +Info 522 [00:12:43.000] Elapsed:: *ms DirectoryWatcher:: Triggered with /user/username/rootfolder/otherfolder/a/b/node_modules/rxjs/add/operator :: WatchInfo: /user/username/rootfolder/otherfolder/a/b/node_modules 1 undefined Project: /user/username/rootfolder/otherfolder/a/b/tsconfig.json WatchType: Failed Lookup Locations +Info 523 [00:12:44.000] DirectoryWatcher:: Triggered with /user/username/rootfolder/otherfolder/a/b/node_modules/rxjs/add/operator :: WatchInfo: /user/username/rootfolder/otherfolder/a/b 1 undefined Config: /user/username/rootfolder/otherfolder/a/b/tsconfig.json WatchType: Wild card directory +Info 524 [00:12:45.000] Scheduled: /user/username/rootfolder/otherfolder/a/b/tsconfig.json, Cancelled earlier one +Info 525 [00:12:46.000] Scheduled: *ensureProjectForOpenFiles*, Cancelled earlier one +Info 526 [00:12:47.000] Elapsed:: *ms DirectoryWatcher:: Triggered with /user/username/rootfolder/otherfolder/a/b/node_modules/rxjs/add/operator :: WatchInfo: /user/username/rootfolder/otherfolder/a/b 1 undefined Config: /user/username/rootfolder/otherfolder/a/b/tsconfig.json WatchType: Wild card directory +Info 527 [00:12:50.000] DirectoryWatcher:: Triggered with /user/username/rootfolder/otherfolder/a/b/node_modules/@types/lodash/package.json :: WatchInfo: /user/username/rootfolder/otherfolder/a/b/node_modules/@types 1 undefined Project: /user/username/rootfolder/otherfolder/a/b/tsconfig.json WatchType: Type roots +Info 528 [00:12:51.000] Scheduled: /user/username/rootfolder/otherfolder/a/b/tsconfig.json, Cancelled earlier one +Info 529 [00:12:52.000] Scheduled: *ensureProjectForOpenFiles*, Cancelled earlier one +Info 530 [00:12:53.000] Scheduled: /user/username/rootfolder/otherfolder/a/b/tsconfig.jsonFailedLookupInvalidation, Cancelled earlier one +Info 531 [00:12:54.000] Elapsed:: *ms DirectoryWatcher:: Triggered with /user/username/rootfolder/otherfolder/a/b/node_modules/@types/lodash/package.json :: WatchInfo: /user/username/rootfolder/otherfolder/a/b/node_modules/@types 1 undefined Project: /user/username/rootfolder/otherfolder/a/b/tsconfig.json WatchType: Type roots +Info 532 [00:12:55.000] DirectoryWatcher:: Triggered with /user/username/rootfolder/otherfolder/a/b/node_modules/@types/lodash/package.json :: WatchInfo: /user/username/rootfolder/otherfolder/a/b/node_modules 1 undefined Project: /user/username/rootfolder/otherfolder/a/b/tsconfig.json WatchType: Failed Lookup Locations +Info 533 [00:12:56.000] Scheduled: /user/username/rootfolder/otherfolder/a/b/tsconfig.jsonFailedLookupInvalidation, Cancelled earlier one +Info 534 [00:12:57.000] Elapsed:: *ms DirectoryWatcher:: Triggered with /user/username/rootfolder/otherfolder/a/b/node_modules/@types/lodash/package.json :: WatchInfo: /user/username/rootfolder/otherfolder/a/b/node_modules 1 undefined Project: /user/username/rootfolder/otherfolder/a/b/tsconfig.json WatchType: Failed Lookup Locations +Info 535 [00:12:58.000] DirectoryWatcher:: Triggered with /user/username/rootfolder/otherfolder/a/b/node_modules/@types/lodash/package.json :: WatchInfo: /user/username/rootfolder/otherfolder/a/b 1 undefined Config: /user/username/rootfolder/otherfolder/a/b/tsconfig.json WatchType: Wild card directory +Info 536 [00:12:59.000] Project: /user/username/rootfolder/otherfolder/a/b/tsconfig.json Detected file add/remove of non supported extension: /user/username/rootfolder/otherfolder/a/b/node_modules/@types/lodash/package.json +Info 537 [00:13:00.000] Elapsed:: *ms DirectoryWatcher:: Triggered with /user/username/rootfolder/otherfolder/a/b/node_modules/@types/lodash/package.json :: WatchInfo: /user/username/rootfolder/otherfolder/a/b 1 undefined Config: /user/username/rootfolder/otherfolder/a/b/tsconfig.json WatchType: Wild card directory +Info 538 [00:13:03.000] DirectoryWatcher:: Triggered with /user/username/rootfolder/otherfolder/a/b/node_modules/lodash/index.js :: WatchInfo: /user/username/rootfolder/otherfolder/a/b/node_modules 1 undefined Project: /user/username/rootfolder/otherfolder/a/b/tsconfig.json WatchType: Failed Lookup Locations +Info 539 [00:13:04.000] Scheduled: /user/username/rootfolder/otherfolder/a/b/tsconfig.jsonFailedLookupInvalidation, Cancelled earlier one +Info 540 [00:13:05.000] Elapsed:: *ms DirectoryWatcher:: Triggered with /user/username/rootfolder/otherfolder/a/b/node_modules/lodash/index.js :: WatchInfo: /user/username/rootfolder/otherfolder/a/b/node_modules 1 undefined Project: /user/username/rootfolder/otherfolder/a/b/tsconfig.json WatchType: Failed Lookup Locations +Info 541 [00:13:06.000] DirectoryWatcher:: Triggered with /user/username/rootfolder/otherfolder/a/b/node_modules/lodash/index.js :: WatchInfo: /user/username/rootfolder/otherfolder/a/b 1 undefined Config: /user/username/rootfolder/otherfolder/a/b/tsconfig.json WatchType: Wild card directory +Info 542 [00:13:07.000] Project: /user/username/rootfolder/otherfolder/a/b/tsconfig.json Detected file add/remove of non supported extension: /user/username/rootfolder/otherfolder/a/b/node_modules/lodash/index.js +Info 543 [00:13:08.000] Elapsed:: *ms DirectoryWatcher:: Triggered with /user/username/rootfolder/otherfolder/a/b/node_modules/lodash/index.js :: WatchInfo: /user/username/rootfolder/otherfolder/a/b 1 undefined Config: /user/username/rootfolder/otherfolder/a/b/tsconfig.json WatchType: Wild card directory +Info 544 [00:13:11.000] DirectoryWatcher:: Triggered with /user/username/rootfolder/otherfolder/a/b/node_modules/rxjs/bundles :: WatchInfo: /user/username/rootfolder/otherfolder/a/b/node_modules 1 undefined Project: /user/username/rootfolder/otherfolder/a/b/tsconfig.json WatchType: Failed Lookup Locations +Info 545 [00:13:12.000] Elapsed:: *ms DirectoryWatcher:: Triggered with /user/username/rootfolder/otherfolder/a/b/node_modules/rxjs/bundles :: WatchInfo: /user/username/rootfolder/otherfolder/a/b/node_modules 1 undefined Project: /user/username/rootfolder/otherfolder/a/b/tsconfig.json WatchType: Failed Lookup Locations +Info 546 [00:13:13.000] DirectoryWatcher:: Triggered with /user/username/rootfolder/otherfolder/a/b/node_modules/rxjs/bundles :: WatchInfo: /user/username/rootfolder/otherfolder/a/b 1 undefined Config: /user/username/rootfolder/otherfolder/a/b/tsconfig.json WatchType: Wild card directory +Info 547 [00:13:14.000] Scheduled: /user/username/rootfolder/otherfolder/a/b/tsconfig.json, Cancelled earlier one +Info 548 [00:13:15.000] Scheduled: *ensureProjectForOpenFiles*, Cancelled earlier one +Info 549 [00:13:16.000] Elapsed:: *ms DirectoryWatcher:: Triggered with /user/username/rootfolder/otherfolder/a/b/node_modules/rxjs/bundles :: WatchInfo: /user/username/rootfolder/otherfolder/a/b 1 undefined Config: /user/username/rootfolder/otherfolder/a/b/tsconfig.json WatchType: Wild card directory +Info 550 [00:13:19.000] DirectoryWatcher:: Triggered with /user/username/rootfolder/otherfolder/a/b/node_modules/rxjs/operator :: WatchInfo: /user/username/rootfolder/otherfolder/a/b/node_modules 1 undefined Project: /user/username/rootfolder/otherfolder/a/b/tsconfig.json WatchType: Failed Lookup Locations +Info 551 [00:13:20.000] Elapsed:: *ms DirectoryWatcher:: Triggered with /user/username/rootfolder/otherfolder/a/b/node_modules/rxjs/operator :: WatchInfo: /user/username/rootfolder/otherfolder/a/b/node_modules 1 undefined Project: /user/username/rootfolder/otherfolder/a/b/tsconfig.json WatchType: Failed Lookup Locations +Info 552 [00:13:21.000] DirectoryWatcher:: Triggered with /user/username/rootfolder/otherfolder/a/b/node_modules/rxjs/operator :: WatchInfo: /user/username/rootfolder/otherfolder/a/b 1 undefined Config: /user/username/rootfolder/otherfolder/a/b/tsconfig.json WatchType: Wild card directory +Info 553 [00:13:22.000] Scheduled: /user/username/rootfolder/otherfolder/a/b/tsconfig.json, Cancelled earlier one +Info 554 [00:13:23.000] Scheduled: *ensureProjectForOpenFiles*, Cancelled earlier one +Info 555 [00:13:24.000] Elapsed:: *ms DirectoryWatcher:: Triggered with /user/username/rootfolder/otherfolder/a/b/node_modules/rxjs/operator :: WatchInfo: /user/username/rootfolder/otherfolder/a/b 1 undefined Config: /user/username/rootfolder/otherfolder/a/b/tsconfig.json WatchType: Wild card directory +Info 556 [00:13:29.000] DirectoryWatcher:: Triggered with /user/username/rootfolder/otherfolder/a/b/node_modules/rxjs/src :: WatchInfo: /user/username/rootfolder/otherfolder/a/b/node_modules 1 undefined Project: /user/username/rootfolder/otherfolder/a/b/tsconfig.json WatchType: Failed Lookup Locations +Info 557 [00:13:30.000] Elapsed:: *ms DirectoryWatcher:: Triggered with /user/username/rootfolder/otherfolder/a/b/node_modules/rxjs/src :: WatchInfo: /user/username/rootfolder/otherfolder/a/b/node_modules 1 undefined Project: /user/username/rootfolder/otherfolder/a/b/tsconfig.json WatchType: Failed Lookup Locations +Info 558 [00:13:31.000] DirectoryWatcher:: Triggered with /user/username/rootfolder/otherfolder/a/b/node_modules/rxjs/src :: WatchInfo: /user/username/rootfolder/otherfolder/a/b 1 undefined Config: /user/username/rootfolder/otherfolder/a/b/tsconfig.json WatchType: Wild card directory +Info 559 [00:13:32.000] Scheduled: /user/username/rootfolder/otherfolder/a/b/tsconfig.json, Cancelled earlier one +Info 560 [00:13:33.000] Scheduled: *ensureProjectForOpenFiles*, Cancelled earlier one +Info 561 [00:13:34.000] Elapsed:: *ms DirectoryWatcher:: Triggered with /user/username/rootfolder/otherfolder/a/b/node_modules/rxjs/src :: WatchInfo: /user/username/rootfolder/otherfolder/a/b 1 undefined Config: /user/username/rootfolder/otherfolder/a/b/tsconfig.json WatchType: Wild card directory +Info 562 [00:13:36.000] DirectoryWatcher:: Triggered with /user/username/rootfolder/otherfolder/a/b/node_modules/rxjs/src/add :: WatchInfo: /user/username/rootfolder/otherfolder/a/b/node_modules 1 undefined Project: /user/username/rootfolder/otherfolder/a/b/tsconfig.json WatchType: Failed Lookup Locations +Info 563 [00:13:37.000] Elapsed:: *ms DirectoryWatcher:: Triggered with /user/username/rootfolder/otherfolder/a/b/node_modules/rxjs/src/add :: WatchInfo: /user/username/rootfolder/otherfolder/a/b/node_modules 1 undefined Project: /user/username/rootfolder/otherfolder/a/b/tsconfig.json WatchType: Failed Lookup Locations +Info 564 [00:13:38.000] DirectoryWatcher:: Triggered with /user/username/rootfolder/otherfolder/a/b/node_modules/rxjs/src/add :: WatchInfo: /user/username/rootfolder/otherfolder/a/b 1 undefined Config: /user/username/rootfolder/otherfolder/a/b/tsconfig.json WatchType: Wild card directory +Info 565 [00:13:39.000] Scheduled: /user/username/rootfolder/otherfolder/a/b/tsconfig.json, Cancelled earlier one +Info 566 [00:13:40.000] Scheduled: *ensureProjectForOpenFiles*, Cancelled earlier one +Info 567 [00:13:41.000] Elapsed:: *ms DirectoryWatcher:: Triggered with /user/username/rootfolder/otherfolder/a/b/node_modules/rxjs/src/add :: WatchInfo: /user/username/rootfolder/otherfolder/a/b 1 undefined Config: /user/username/rootfolder/otherfolder/a/b/tsconfig.json WatchType: Wild card directory +Info 568 [00:13:43.000] DirectoryWatcher:: Triggered with /user/username/rootfolder/otherfolder/a/b/node_modules/rxjs/src/add/observable :: WatchInfo: /user/username/rootfolder/otherfolder/a/b/node_modules 1 undefined Project: /user/username/rootfolder/otherfolder/a/b/tsconfig.json WatchType: Failed Lookup Locations +Info 569 [00:13:44.000] Elapsed:: *ms DirectoryWatcher:: Triggered with /user/username/rootfolder/otherfolder/a/b/node_modules/rxjs/src/add/observable :: WatchInfo: /user/username/rootfolder/otherfolder/a/b/node_modules 1 undefined Project: /user/username/rootfolder/otherfolder/a/b/tsconfig.json WatchType: Failed Lookup Locations +Info 570 [00:13:45.000] DirectoryWatcher:: Triggered with /user/username/rootfolder/otherfolder/a/b/node_modules/rxjs/src/add/observable :: WatchInfo: /user/username/rootfolder/otherfolder/a/b 1 undefined Config: /user/username/rootfolder/otherfolder/a/b/tsconfig.json WatchType: Wild card directory +Info 571 [00:13:46.000] Scheduled: /user/username/rootfolder/otherfolder/a/b/tsconfig.json, Cancelled earlier one +Info 572 [00:13:47.000] Scheduled: *ensureProjectForOpenFiles*, Cancelled earlier one +Info 573 [00:13:48.000] Elapsed:: *ms DirectoryWatcher:: Triggered with /user/username/rootfolder/otherfolder/a/b/node_modules/rxjs/src/add/observable :: WatchInfo: /user/username/rootfolder/otherfolder/a/b 1 undefined Config: /user/username/rootfolder/otherfolder/a/b/tsconfig.json WatchType: Wild card directory +Info 574 [00:13:51.000] DirectoryWatcher:: Triggered with /user/username/rootfolder/otherfolder/a/b/node_modules/rxjs/src/add/observable/dom :: WatchInfo: /user/username/rootfolder/otherfolder/a/b/node_modules 1 undefined Project: /user/username/rootfolder/otherfolder/a/b/tsconfig.json WatchType: Failed Lookup Locations +Info 575 [00:13:52.000] Elapsed:: *ms DirectoryWatcher:: Triggered with /user/username/rootfolder/otherfolder/a/b/node_modules/rxjs/src/add/observable/dom :: WatchInfo: /user/username/rootfolder/otherfolder/a/b/node_modules 1 undefined Project: /user/username/rootfolder/otherfolder/a/b/tsconfig.json WatchType: Failed Lookup Locations +Info 576 [00:13:53.000] DirectoryWatcher:: Triggered with /user/username/rootfolder/otherfolder/a/b/node_modules/rxjs/src/add/observable/dom :: WatchInfo: /user/username/rootfolder/otherfolder/a/b 1 undefined Config: /user/username/rootfolder/otherfolder/a/b/tsconfig.json WatchType: Wild card directory +Info 577 [00:13:54.000] Scheduled: /user/username/rootfolder/otherfolder/a/b/tsconfig.json, Cancelled earlier one +Info 578 [00:13:55.000] Scheduled: *ensureProjectForOpenFiles*, Cancelled earlier one +Info 579 [00:13:56.000] Elapsed:: *ms DirectoryWatcher:: Triggered with /user/username/rootfolder/otherfolder/a/b/node_modules/rxjs/src/add/observable/dom :: WatchInfo: /user/username/rootfolder/otherfolder/a/b 1 undefined Config: /user/username/rootfolder/otherfolder/a/b/tsconfig.json WatchType: Wild card directory +Info 580 [00:13:59.000] DirectoryWatcher:: Triggered with /user/username/rootfolder/otherfolder/a/b/node_modules/@types/lodash/index.d.ts :: WatchInfo: /user/username/rootfolder/otherfolder/a/b/node_modules/@types 1 undefined Project: /user/username/rootfolder/otherfolder/a/b/tsconfig.json WatchType: Type roots +Info 581 [00:14:00.000] Scheduled: /user/username/rootfolder/otherfolder/a/b/tsconfig.json, Cancelled earlier one +Info 582 [00:14:01.000] Scheduled: *ensureProjectForOpenFiles*, Cancelled earlier one +Info 583 [00:14:02.000] Scheduled: /user/username/rootfolder/otherfolder/a/b/tsconfig.jsonFailedLookupInvalidation, Cancelled earlier one +Info 584 [00:14:03.000] Elapsed:: *ms DirectoryWatcher:: Triggered with /user/username/rootfolder/otherfolder/a/b/node_modules/@types/lodash/index.d.ts :: WatchInfo: /user/username/rootfolder/otherfolder/a/b/node_modules/@types 1 undefined Project: /user/username/rootfolder/otherfolder/a/b/tsconfig.json WatchType: Type roots +Info 585 [00:14:04.000] DirectoryWatcher:: Triggered with /user/username/rootfolder/otherfolder/a/b/node_modules/@types/lodash/index.d.ts :: WatchInfo: /user/username/rootfolder/otherfolder/a/b/node_modules 1 undefined Project: /user/username/rootfolder/otherfolder/a/b/tsconfig.json WatchType: Failed Lookup Locations +Info 586 [00:14:05.000] Scheduled: /user/username/rootfolder/otherfolder/a/b/tsconfig.jsonFailedLookupInvalidation, Cancelled earlier one +Info 587 [00:14:06.000] Elapsed:: *ms DirectoryWatcher:: Triggered with /user/username/rootfolder/otherfolder/a/b/node_modules/@types/lodash/index.d.ts :: WatchInfo: /user/username/rootfolder/otherfolder/a/b/node_modules 1 undefined Project: /user/username/rootfolder/otherfolder/a/b/tsconfig.json WatchType: Failed Lookup Locations +Info 588 [00:14:07.000] DirectoryWatcher:: Triggered with /user/username/rootfolder/otherfolder/a/b/node_modules/@types/lodash/index.d.ts :: WatchInfo: /user/username/rootfolder/otherfolder/a/b 1 undefined Config: /user/username/rootfolder/otherfolder/a/b/tsconfig.json WatchType: Wild card directory +Info 589 [00:14:08.000] Scheduled: /user/username/rootfolder/otherfolder/a/b/tsconfig.json, Cancelled earlier one +Info 590 [00:14:09.000] Scheduled: *ensureProjectForOpenFiles*, Cancelled earlier one +Info 591 [00:14:10.000] Elapsed:: *ms DirectoryWatcher:: Triggered with /user/username/rootfolder/otherfolder/a/b/node_modules/@types/lodash/index.d.ts :: WatchInfo: /user/username/rootfolder/otherfolder/a/b 1 undefined Config: /user/username/rootfolder/otherfolder/a/b/tsconfig.json WatchType: Wild card directory +Info 592 [00:14:13.000] DirectoryWatcher:: Triggered with /user/username/rootfolder/otherfolder/a/b/node_modules/rxjs/src/scheduler :: WatchInfo: /user/username/rootfolder/otherfolder/a/b/node_modules 1 undefined Project: /user/username/rootfolder/otherfolder/a/b/tsconfig.json WatchType: Failed Lookup Locations +Info 593 [00:14:14.000] Elapsed:: *ms DirectoryWatcher:: Triggered with /user/username/rootfolder/otherfolder/a/b/node_modules/rxjs/src/scheduler :: WatchInfo: /user/username/rootfolder/otherfolder/a/b/node_modules 1 undefined Project: /user/username/rootfolder/otherfolder/a/b/tsconfig.json WatchType: Failed Lookup Locations +Info 594 [00:14:15.000] DirectoryWatcher:: Triggered with /user/username/rootfolder/otherfolder/a/b/node_modules/rxjs/src/scheduler :: WatchInfo: /user/username/rootfolder/otherfolder/a/b 1 undefined Config: /user/username/rootfolder/otherfolder/a/b/tsconfig.json WatchType: Wild card directory +Info 595 [00:14:16.000] Scheduled: /user/username/rootfolder/otherfolder/a/b/tsconfig.json, Cancelled earlier one +Info 596 [00:14:17.000] Scheduled: *ensureProjectForOpenFiles*, Cancelled earlier one +Info 597 [00:14:18.000] Elapsed:: *ms DirectoryWatcher:: Triggered with /user/username/rootfolder/otherfolder/a/b/node_modules/rxjs/src/scheduler :: WatchInfo: /user/username/rootfolder/otherfolder/a/b 1 undefined Config: /user/username/rootfolder/otherfolder/a/b/tsconfig.json WatchType: Wild card directory +Info 598 [00:14:21.000] DirectoryWatcher:: Triggered with /user/username/rootfolder/otherfolder/a/b/node_modules/rxjs/src/util :: WatchInfo: /user/username/rootfolder/otherfolder/a/b/node_modules 1 undefined Project: /user/username/rootfolder/otherfolder/a/b/tsconfig.json WatchType: Failed Lookup Locations +Info 599 [00:14:22.000] Elapsed:: *ms DirectoryWatcher:: Triggered with /user/username/rootfolder/otherfolder/a/b/node_modules/rxjs/src/util :: WatchInfo: /user/username/rootfolder/otherfolder/a/b/node_modules 1 undefined Project: /user/username/rootfolder/otherfolder/a/b/tsconfig.json WatchType: Failed Lookup Locations +Info 600 [00:14:23.000] DirectoryWatcher:: Triggered with /user/username/rootfolder/otherfolder/a/b/node_modules/rxjs/src/util :: WatchInfo: /user/username/rootfolder/otherfolder/a/b 1 undefined Config: /user/username/rootfolder/otherfolder/a/b/tsconfig.json WatchType: Wild card directory +Info 601 [00:14:24.000] Scheduled: /user/username/rootfolder/otherfolder/a/b/tsconfig.json, Cancelled earlier one +Info 602 [00:14:25.000] Scheduled: *ensureProjectForOpenFiles*, Cancelled earlier one +Info 603 [00:14:26.000] Elapsed:: *ms DirectoryWatcher:: Triggered with /user/username/rootfolder/otherfolder/a/b/node_modules/rxjs/src/util :: WatchInfo: /user/username/rootfolder/otherfolder/a/b 1 undefined Config: /user/username/rootfolder/otherfolder/a/b/tsconfig.json WatchType: Wild card directory +Info 604 [00:14:29.000] DirectoryWatcher:: Triggered with /user/username/rootfolder/otherfolder/a/b/node_modules/rxjs/symbol :: WatchInfo: /user/username/rootfolder/otherfolder/a/b/node_modules 1 undefined Project: /user/username/rootfolder/otherfolder/a/b/tsconfig.json WatchType: Failed Lookup Locations +Info 605 [00:14:30.000] Elapsed:: *ms DirectoryWatcher:: Triggered with /user/username/rootfolder/otherfolder/a/b/node_modules/rxjs/symbol :: WatchInfo: /user/username/rootfolder/otherfolder/a/b/node_modules 1 undefined Project: /user/username/rootfolder/otherfolder/a/b/tsconfig.json WatchType: Failed Lookup Locations +Info 606 [00:14:31.000] DirectoryWatcher:: Triggered with /user/username/rootfolder/otherfolder/a/b/node_modules/rxjs/symbol :: WatchInfo: /user/username/rootfolder/otherfolder/a/b 1 undefined Config: /user/username/rootfolder/otherfolder/a/b/tsconfig.json WatchType: Wild card directory +Info 607 [00:14:32.000] Scheduled: /user/username/rootfolder/otherfolder/a/b/tsconfig.json, Cancelled earlier one +Info 608 [00:14:33.000] Scheduled: *ensureProjectForOpenFiles*, Cancelled earlier one +Info 609 [00:14:34.000] Elapsed:: *ms DirectoryWatcher:: Triggered with /user/username/rootfolder/otherfolder/a/b/node_modules/rxjs/symbol :: WatchInfo: /user/username/rootfolder/otherfolder/a/b 1 undefined Config: /user/username/rootfolder/otherfolder/a/b/tsconfig.json WatchType: Wild card directory +Info 610 [00:14:37.000] DirectoryWatcher:: Triggered with /user/username/rootfolder/otherfolder/a/b/node_modules/rxjs/testing :: WatchInfo: /user/username/rootfolder/otherfolder/a/b/node_modules 1 undefined Project: /user/username/rootfolder/otherfolder/a/b/tsconfig.json WatchType: Failed Lookup Locations +Info 611 [00:14:38.000] Elapsed:: *ms DirectoryWatcher:: Triggered with /user/username/rootfolder/otherfolder/a/b/node_modules/rxjs/testing :: WatchInfo: /user/username/rootfolder/otherfolder/a/b/node_modules 1 undefined Project: /user/username/rootfolder/otherfolder/a/b/tsconfig.json WatchType: Failed Lookup Locations +Info 612 [00:14:39.000] DirectoryWatcher:: Triggered with /user/username/rootfolder/otherfolder/a/b/node_modules/rxjs/testing :: WatchInfo: /user/username/rootfolder/otherfolder/a/b 1 undefined Config: /user/username/rootfolder/otherfolder/a/b/tsconfig.json WatchType: Wild card directory +Info 613 [00:14:40.000] Scheduled: /user/username/rootfolder/otherfolder/a/b/tsconfig.json, Cancelled earlier one +Info 614 [00:14:41.000] Scheduled: *ensureProjectForOpenFiles*, Cancelled earlier one +Info 615 [00:14:42.000] Elapsed:: *ms DirectoryWatcher:: Triggered with /user/username/rootfolder/otherfolder/a/b/node_modules/rxjs/testing :: WatchInfo: /user/username/rootfolder/otherfolder/a/b 1 undefined Config: /user/username/rootfolder/otherfolder/a/b/tsconfig.json WatchType: Wild card directory Before checking timeout queue length (3) and running //// [/user/username/rootfolder/otherfolder/a/b/node_modules/symbolle/package.json] { @@ -2218,9 +2218,9 @@ FsWatchesRecursive:: /user/username/rootfolder/otherfolder/a/b/node_modules/@types: {} -Info 616 [16:14:43.000] Running: /user/username/rootfolder/otherfolder/a/b/tsconfig.jsonFailedLookupInvalidation -Info 617 [16:14:44.000] Scheduled: /user/username/rootfolder/otherfolder/a/b/tsconfig.json, Cancelled earlier one -Info 618 [16:14:45.000] Scheduled: *ensureProjectForOpenFiles*, Cancelled earlier one +Info 616 [00:14:43.000] Running: /user/username/rootfolder/otherfolder/a/b/tsconfig.jsonFailedLookupInvalidation +Info 617 [00:14:44.000] Scheduled: /user/username/rootfolder/otherfolder/a/b/tsconfig.json, Cancelled earlier one +Info 618 [00:14:45.000] Scheduled: *ensureProjectForOpenFiles*, Cancelled earlier one After checking timeout queue length (3) and running PolledWatches:: @@ -2273,19 +2273,19 @@ FsWatchesRecursive:: /user/username/rootfolder/otherfolder/a/b/node_modules/@types: {} -Info 619 [16:14:46.000] Running: /user/username/rootfolder/otherfolder/a/b/tsconfig.json -Info 620 [16:14:47.000] Starting updateGraphWorker: Project: /user/username/rootfolder/otherfolder/a/b/tsconfig.json -Info 621 [16:14:48.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/rootfolder/otherfolder/a/b/node_modules 1 undefined WatchType: node_modules for closed script infos and package.jsons affecting module specifier cache -Info 622 [16:14:49.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/rootfolder/otherfolder/a/b/node_modules 1 undefined WatchType: node_modules for closed script infos and package.jsons affecting module specifier cache -Info 623 [16:14:50.000] FileWatcher:: Added:: WatchInfo: /user/username/rootfolder/otherfolder/a/b/node_modules/lodash/package.json 2000 undefined Project: /user/username/rootfolder/otherfolder/a/b/tsconfig.json WatchType: File location affecting resolution -Info 624 [16:14:51.000] FileWatcher:: Added:: WatchInfo: /user/username/rootfolder/otherfolder/a/b/node_modules/@types/lodash/package.json 2000 undefined Project: /user/username/rootfolder/otherfolder/a/b/tsconfig.json WatchType: File location affecting resolution -Info 625 [16:14:52.000] DirectoryWatcher:: Close:: WatchInfo: /user/username/rootfolder/otherfolder/a/node_modules 1 undefined Project: /user/username/rootfolder/otherfolder/a/b/tsconfig.json WatchType: Failed Lookup Locations -Info 626 [16:14:53.000] Elapsed:: *ms DirectoryWatcher:: Close:: WatchInfo: /user/username/rootfolder/otherfolder/a/node_modules 1 undefined Project: /user/username/rootfolder/otherfolder/a/b/tsconfig.json WatchType: Failed Lookup Locations -Info 627 [16:14:54.000] DirectoryWatcher:: Close:: WatchInfo: /user/username/rootfolder/otherfolder/node_modules 1 undefined Project: /user/username/rootfolder/otherfolder/a/b/tsconfig.json WatchType: Failed Lookup Locations -Info 628 [16:14:55.000] Elapsed:: *ms DirectoryWatcher:: Close:: WatchInfo: /user/username/rootfolder/otherfolder/node_modules 1 undefined Project: /user/username/rootfolder/otherfolder/a/b/tsconfig.json WatchType: Failed Lookup Locations -Info 629 [16:14:56.000] Finishing updateGraphWorker: Project: /user/username/rootfolder/otherfolder/a/b/tsconfig.json Version: 4 structureChanged: true structureIsReused:: SafeModules Elapsed:: *ms -Info 630 [16:14:57.000] Project '/user/username/rootfolder/otherfolder/a/b/tsconfig.json' (Configured) -Info 631 [16:14:58.000] Files (3) +Info 619 [00:14:46.000] Running: /user/username/rootfolder/otherfolder/a/b/tsconfig.json +Info 620 [00:14:47.000] Starting updateGraphWorker: Project: /user/username/rootfolder/otherfolder/a/b/tsconfig.json +Info 621 [00:14:48.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/rootfolder/otherfolder/a/b/node_modules 1 undefined WatchType: node_modules for closed script infos and package.jsons affecting module specifier cache +Info 622 [00:14:49.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/rootfolder/otherfolder/a/b/node_modules 1 undefined WatchType: node_modules for closed script infos and package.jsons affecting module specifier cache +Info 623 [00:14:50.000] FileWatcher:: Added:: WatchInfo: /user/username/rootfolder/otherfolder/a/b/node_modules/lodash/package.json 2000 undefined Project: /user/username/rootfolder/otherfolder/a/b/tsconfig.json WatchType: File location affecting resolution +Info 624 [00:14:51.000] FileWatcher:: Added:: WatchInfo: /user/username/rootfolder/otherfolder/a/b/node_modules/@types/lodash/package.json 2000 undefined Project: /user/username/rootfolder/otherfolder/a/b/tsconfig.json WatchType: File location affecting resolution +Info 625 [00:14:52.000] DirectoryWatcher:: Close:: WatchInfo: /user/username/rootfolder/otherfolder/a/node_modules 1 undefined Project: /user/username/rootfolder/otherfolder/a/b/tsconfig.json WatchType: Failed Lookup Locations +Info 626 [00:14:53.000] Elapsed:: *ms DirectoryWatcher:: Close:: WatchInfo: /user/username/rootfolder/otherfolder/a/node_modules 1 undefined Project: /user/username/rootfolder/otherfolder/a/b/tsconfig.json WatchType: Failed Lookup Locations +Info 627 [00:14:54.000] DirectoryWatcher:: Close:: WatchInfo: /user/username/rootfolder/otherfolder/node_modules 1 undefined Project: /user/username/rootfolder/otherfolder/a/b/tsconfig.json WatchType: Failed Lookup Locations +Info 628 [00:14:55.000] Elapsed:: *ms DirectoryWatcher:: Close:: WatchInfo: /user/username/rootfolder/otherfolder/node_modules 1 undefined Project: /user/username/rootfolder/otherfolder/a/b/tsconfig.json WatchType: Failed Lookup Locations +Info 629 [00:14:56.000] Finishing updateGraphWorker: Project: /user/username/rootfolder/otherfolder/a/b/tsconfig.json Version: 4 structureChanged: true structureIsReused:: SafeModules Elapsed:: *ms +Info 630 [00:14:57.000] Project '/user/username/rootfolder/otherfolder/a/b/tsconfig.json' (Configured) +Info 631 [00:14:58.000] Files (3) /a/lib/lib.d.ts /user/username/rootfolder/otherfolder/a/b/node_modules/@types/lodash/index.d.ts /user/username/rootfolder/otherfolder/a/b/app.ts @@ -2299,24 +2299,24 @@ Info 631 [16:14:58.000] Files (3) app.ts Matched by default include pattern '**/*' -Info 632 [16:14:59.000] ----------------------------------------------- -Info 633 [16:15:00.000] Running: *ensureProjectForOpenFiles* -Info 634 [16:15:01.000] Before ensureProjectForOpenFiles: -Info 635 [16:15:02.000] Project '/user/username/rootfolder/otherfolder/a/b/tsconfig.json' (Configured) -Info 635 [16:15:03.000] Files (3) - -Info 635 [16:15:04.000] ----------------------------------------------- -Info 635 [16:15:05.000] Open files: -Info 635 [16:15:06.000] FileName: /user/username/rootfolder/otherfolder/a/b/app.ts ProjectRootPath: undefined -Info 635 [16:15:07.000] Projects: /user/username/rootfolder/otherfolder/a/b/tsconfig.json -Info 635 [16:15:08.000] After ensureProjectForOpenFiles: -Info 636 [16:15:09.000] Project '/user/username/rootfolder/otherfolder/a/b/tsconfig.json' (Configured) -Info 636 [16:15:10.000] Files (3) - -Info 636 [16:15:11.000] ----------------------------------------------- -Info 636 [16:15:12.000] Open files: -Info 636 [16:15:13.000] FileName: /user/username/rootfolder/otherfolder/a/b/app.ts ProjectRootPath: undefined -Info 636 [16:15:14.000] Projects: /user/username/rootfolder/otherfolder/a/b/tsconfig.json +Info 632 [00:14:59.000] ----------------------------------------------- +Info 633 [00:15:00.000] Running: *ensureProjectForOpenFiles* +Info 634 [00:15:01.000] Before ensureProjectForOpenFiles: +Info 635 [00:15:02.000] Project '/user/username/rootfolder/otherfolder/a/b/tsconfig.json' (Configured) +Info 635 [00:15:03.000] Files (3) + +Info 635 [00:15:04.000] ----------------------------------------------- +Info 635 [00:15:05.000] Open files: +Info 635 [00:15:06.000] FileName: /user/username/rootfolder/otherfolder/a/b/app.ts ProjectRootPath: undefined +Info 635 [00:15:07.000] Projects: /user/username/rootfolder/otherfolder/a/b/tsconfig.json +Info 635 [00:15:08.000] After ensureProjectForOpenFiles: +Info 636 [00:15:09.000] Project '/user/username/rootfolder/otherfolder/a/b/tsconfig.json' (Configured) +Info 636 [00:15:10.000] Files (3) + +Info 636 [00:15:11.000] ----------------------------------------------- +Info 636 [00:15:12.000] Open files: +Info 636 [00:15:13.000] FileName: /user/username/rootfolder/otherfolder/a/b/app.ts ProjectRootPath: undefined +Info 636 [00:15:14.000] Projects: /user/username/rootfolder/otherfolder/a/b/tsconfig.json After running timeout callbacks PolledWatches:: diff --git a/tests/baselines/reference/tsserver/cachingFileSystemInformation/watchDirectories-for-config-file-with-case-insensitive-file-system.js b/tests/baselines/reference/tsserver/cachingFileSystemInformation/watchDirectories-for-config-file-with-case-insensitive-file-system.js index e1fdf30cf2d90..8debb4cdcab0c 100644 --- a/tests/baselines/reference/tsserver/cachingFileSystemInformation/watchDirectories-for-config-file-with-case-insensitive-file-system.js +++ b/tests/baselines/reference/tsserver/cachingFileSystemInformation/watchDirectories-for-config-file-with-case-insensitive-file-system.js @@ -1,4 +1,4 @@ -Info 0 [16:00:33.000] Provided types map file "/typesMap.json" doesn't exist +Info 0 [00:00:33.000] Provided types map file "/typesMap.json" doesn't exist Creating project service //// [/Users/someuser/work/applications/frontend/src/app/utils/Analytic.ts] export class SomeClass { }; @@ -29,11 +29,11 @@ FsWatches:: FsWatchesRecursive:: -Info 1 [16:00:34.000] Search path: /Users/someuser/work/applications/frontend/src/app/utils -Info 2 [16:00:35.000] For info: /Users/someuser/work/applications/frontend/src/app/utils/Analytic.ts :: Config file name: /Users/someuser/work/applications/frontend/tsconfig.json -Info 3 [16:00:36.000] Creating configuration project /Users/someuser/work/applications/frontend/tsconfig.json -Info 4 [16:00:37.000] FileWatcher:: Added:: WatchInfo: /Users/someuser/work/applications/frontend/tsconfig.json 2000 undefined Project: /Users/someuser/work/applications/frontend/tsconfig.json WatchType: Config file -Info 5 [16:00:38.000] Config: /Users/someuser/work/applications/frontend/tsconfig.json : { +Info 1 [00:00:34.000] Search path: /Users/someuser/work/applications/frontend/src/app/utils +Info 2 [00:00:35.000] For info: /Users/someuser/work/applications/frontend/src/app/utils/Analytic.ts :: Config file name: /Users/someuser/work/applications/frontend/tsconfig.json +Info 3 [00:00:36.000] Creating configuration project /Users/someuser/work/applications/frontend/tsconfig.json +Info 4 [00:00:37.000] FileWatcher:: Added:: WatchInfo: /Users/someuser/work/applications/frontend/tsconfig.json 2000 undefined Project: /Users/someuser/work/applications/frontend/tsconfig.json WatchType: Config file +Info 5 [00:00:38.000] Config: /Users/someuser/work/applications/frontend/tsconfig.json : { "rootNames": [ "/Users/someuser/work/applications/frontend/src/app/redux/configureStore.ts", "/Users/someuser/work/applications/frontend/src/app/utils/Analytic.ts" @@ -68,21 +68,21 @@ Info 5 [16:00:38.000] Config: /Users/someuser/work/applications/frontend/tsco "configFilePath": "/Users/someuser/work/applications/frontend/tsconfig.json" } } -Info 6 [16:00:39.000] DirectoryWatcher:: Added:: WatchInfo: /users/someuser/work/applications/frontend/src 1 undefined Config: /Users/someuser/work/applications/frontend/tsconfig.json WatchType: Wild card directory -Info 7 [16:00:40.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /users/someuser/work/applications/frontend/src 1 undefined Config: /Users/someuser/work/applications/frontend/tsconfig.json WatchType: Wild card directory -Info 8 [16:00:41.000] Plugins were requested but not running in environment that supports 'require'. Nothing will be loaded -Info 9 [16:00:42.000] FileWatcher:: Added:: WatchInfo: /Users/someuser/work/applications/frontend/src/app/redux/configureStore.ts 500 undefined WatchType: Closed Script info -Info 10 [16:00:43.000] Starting updateGraphWorker: Project: /Users/someuser/work/applications/frontend/tsconfig.json -Info 11 [16:00:44.000] FileWatcher:: Added:: WatchInfo: /a/lib/lib.es2016.full.d.ts 500 undefined WatchType: Closed Script info -Info 12 [16:00:45.000] DirectoryWatcher:: Added:: WatchInfo: /Users/someuser/work/applications/frontend/types 1 undefined Project: /Users/someuser/work/applications/frontend/tsconfig.json WatchType: Failed Lookup Locations -Info 13 [16:00:46.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /Users/someuser/work/applications/frontend/types 1 undefined Project: /Users/someuser/work/applications/frontend/tsconfig.json WatchType: Failed Lookup Locations -Info 14 [16:00:47.000] DirectoryWatcher:: Added:: WatchInfo: /Users/someuser/work/applications/frontend/node_modules 1 undefined Project: /Users/someuser/work/applications/frontend/tsconfig.json WatchType: Failed Lookup Locations -Info 15 [16:00:48.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /Users/someuser/work/applications/frontend/node_modules 1 undefined Project: /Users/someuser/work/applications/frontend/tsconfig.json WatchType: Failed Lookup Locations -Info 16 [16:00:49.000] DirectoryWatcher:: Added:: WatchInfo: /Users/someuser/work/applications/node_modules 1 undefined Project: /Users/someuser/work/applications/frontend/tsconfig.json WatchType: Failed Lookup Locations -Info 17 [16:00:50.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /Users/someuser/work/applications/node_modules 1 undefined Project: /Users/someuser/work/applications/frontend/tsconfig.json WatchType: Failed Lookup Locations -Info 18 [16:00:51.000] Finishing updateGraphWorker: Project: /Users/someuser/work/applications/frontend/tsconfig.json Version: 1 structureChanged: true structureIsReused:: Not Elapsed:: *ms -Info 19 [16:00:52.000] Project '/Users/someuser/work/applications/frontend/tsconfig.json' (Configured) -Info 20 [16:00:53.000] Files (3) +Info 6 [00:00:39.000] DirectoryWatcher:: Added:: WatchInfo: /users/someuser/work/applications/frontend/src 1 undefined Config: /Users/someuser/work/applications/frontend/tsconfig.json WatchType: Wild card directory +Info 7 [00:00:40.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /users/someuser/work/applications/frontend/src 1 undefined Config: /Users/someuser/work/applications/frontend/tsconfig.json WatchType: Wild card directory +Info 8 [00:00:41.000] Plugins were requested but not running in environment that supports 'require'. Nothing will be loaded +Info 9 [00:00:42.000] FileWatcher:: Added:: WatchInfo: /Users/someuser/work/applications/frontend/src/app/redux/configureStore.ts 500 undefined WatchType: Closed Script info +Info 10 [00:00:43.000] Starting updateGraphWorker: Project: /Users/someuser/work/applications/frontend/tsconfig.json +Info 11 [00:00:44.000] FileWatcher:: Added:: WatchInfo: /a/lib/lib.es2016.full.d.ts 500 undefined WatchType: Closed Script info +Info 12 [00:00:45.000] DirectoryWatcher:: Added:: WatchInfo: /Users/someuser/work/applications/frontend/types 1 undefined Project: /Users/someuser/work/applications/frontend/tsconfig.json WatchType: Failed Lookup Locations +Info 13 [00:00:46.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /Users/someuser/work/applications/frontend/types 1 undefined Project: /Users/someuser/work/applications/frontend/tsconfig.json WatchType: Failed Lookup Locations +Info 14 [00:00:47.000] DirectoryWatcher:: Added:: WatchInfo: /Users/someuser/work/applications/frontend/node_modules 1 undefined Project: /Users/someuser/work/applications/frontend/tsconfig.json WatchType: Failed Lookup Locations +Info 15 [00:00:48.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /Users/someuser/work/applications/frontend/node_modules 1 undefined Project: /Users/someuser/work/applications/frontend/tsconfig.json WatchType: Failed Lookup Locations +Info 16 [00:00:49.000] DirectoryWatcher:: Added:: WatchInfo: /Users/someuser/work/applications/node_modules 1 undefined Project: /Users/someuser/work/applications/frontend/tsconfig.json WatchType: Failed Lookup Locations +Info 17 [00:00:50.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /Users/someuser/work/applications/node_modules 1 undefined Project: /Users/someuser/work/applications/frontend/tsconfig.json WatchType: Failed Lookup Locations +Info 18 [00:00:51.000] Finishing updateGraphWorker: Project: /Users/someuser/work/applications/frontend/tsconfig.json Version: 1 structureChanged: true structureIsReused:: Not Elapsed:: *ms +Info 19 [00:00:52.000] Project '/Users/someuser/work/applications/frontend/tsconfig.json' (Configured) +Info 20 [00:00:53.000] Files (3) /a/lib/lib.es2016.full.d.ts /Users/someuser/work/applications/frontend/src/app/redux/configureStore.ts /Users/someuser/work/applications/frontend/src/app/utils/Analytic.ts @@ -95,18 +95,18 @@ Info 20 [16:00:53.000] Files (3) src/app/utils/Analytic.ts Matched by include pattern 'src/**/*' in 'tsconfig.json' -Info 21 [16:00:54.000] ----------------------------------------------- -Info 22 [16:00:55.000] Project '/Users/someuser/work/applications/frontend/tsconfig.json' (Configured) -Info 22 [16:00:56.000] Files (3) - -Info 22 [16:00:57.000] ----------------------------------------------- -Info 22 [16:00:58.000] Open files: -Info 22 [16:00:59.000] FileName: /Users/someuser/work/applications/frontend/src/app/utils/Analytic.ts ProjectRootPath: undefined -Info 22 [16:01:00.000] Projects: /Users/someuser/work/applications/frontend/tsconfig.json -Info 22 [16:01:03.000] DirectoryWatcher:: Triggered with /users/someuser/work/applications/frontend/src/app/utils/Cookie.ts :: WatchInfo: /users/someuser/work/applications/frontend/src 1 undefined Config: /Users/someuser/work/applications/frontend/tsconfig.json WatchType: Wild card directory -Info 23 [16:01:04.000] Scheduled: /Users/someuser/work/applications/frontend/tsconfig.json -Info 24 [16:01:05.000] Scheduled: *ensureProjectForOpenFiles* -Info 25 [16:01:06.000] Elapsed:: *ms DirectoryWatcher:: Triggered with /users/someuser/work/applications/frontend/src/app/utils/Cookie.ts :: WatchInfo: /users/someuser/work/applications/frontend/src 1 undefined Config: /Users/someuser/work/applications/frontend/tsconfig.json WatchType: Wild card directory +Info 21 [00:00:54.000] ----------------------------------------------- +Info 22 [00:00:55.000] Project '/Users/someuser/work/applications/frontend/tsconfig.json' (Configured) +Info 22 [00:00:56.000] Files (3) + +Info 22 [00:00:57.000] ----------------------------------------------- +Info 22 [00:00:58.000] Open files: +Info 22 [00:00:59.000] FileName: /Users/someuser/work/applications/frontend/src/app/utils/Analytic.ts ProjectRootPath: undefined +Info 22 [00:01:00.000] Projects: /Users/someuser/work/applications/frontend/tsconfig.json +Info 22 [00:01:03.000] DirectoryWatcher:: Triggered with /users/someuser/work/applications/frontend/src/app/utils/Cookie.ts :: WatchInfo: /users/someuser/work/applications/frontend/src 1 undefined Config: /Users/someuser/work/applications/frontend/tsconfig.json WatchType: Wild card directory +Info 23 [00:01:04.000] Scheduled: /Users/someuser/work/applications/frontend/tsconfig.json +Info 24 [00:01:05.000] Scheduled: *ensureProjectForOpenFiles* +Info 25 [00:01:06.000] Elapsed:: *ms DirectoryWatcher:: Triggered with /users/someuser/work/applications/frontend/src/app/utils/Cookie.ts :: WatchInfo: /users/someuser/work/applications/frontend/src 1 undefined Config: /Users/someuser/work/applications/frontend/tsconfig.json WatchType: Wild card directory Before running timeout callbacks //// [/Users/someuser/work/applications/frontend/src/app/utils/Cookie.ts] export class Cookie { } @@ -132,12 +132,12 @@ FsWatchesRecursive:: /users/someuser/work/applications/frontend/src: {} -Info 26 [16:01:07.000] Running: /Users/someuser/work/applications/frontend/tsconfig.json -Info 27 [16:01:08.000] FileWatcher:: Added:: WatchInfo: /Users/someuser/work/applications/frontend/src/app/utils/Cookie.ts 500 undefined WatchType: Closed Script info -Info 28 [16:01:09.000] Starting updateGraphWorker: Project: /Users/someuser/work/applications/frontend/tsconfig.json -Info 29 [16:01:10.000] Finishing updateGraphWorker: Project: /Users/someuser/work/applications/frontend/tsconfig.json Version: 2 structureChanged: true structureIsReused:: Not Elapsed:: *ms -Info 30 [16:01:11.000] Project '/Users/someuser/work/applications/frontend/tsconfig.json' (Configured) -Info 31 [16:01:12.000] Files (4) +Info 26 [00:01:07.000] Running: /Users/someuser/work/applications/frontend/tsconfig.json +Info 27 [00:01:08.000] FileWatcher:: Added:: WatchInfo: /Users/someuser/work/applications/frontend/src/app/utils/Cookie.ts 500 undefined WatchType: Closed Script info +Info 28 [00:01:09.000] Starting updateGraphWorker: Project: /Users/someuser/work/applications/frontend/tsconfig.json +Info 29 [00:01:10.000] Finishing updateGraphWorker: Project: /Users/someuser/work/applications/frontend/tsconfig.json Version: 2 structureChanged: true structureIsReused:: Not Elapsed:: *ms +Info 30 [00:01:11.000] Project '/Users/someuser/work/applications/frontend/tsconfig.json' (Configured) +Info 31 [00:01:12.000] Files (4) /a/lib/lib.es2016.full.d.ts /Users/someuser/work/applications/frontend/src/app/redux/configureStore.ts /Users/someuser/work/applications/frontend/src/app/utils/Analytic.ts @@ -153,24 +153,24 @@ Info 31 [16:01:12.000] Files (4) src/app/utils/Cookie.ts Matched by include pattern 'src/**/*' in 'tsconfig.json' -Info 32 [16:01:13.000] ----------------------------------------------- -Info 33 [16:01:14.000] Running: *ensureProjectForOpenFiles* -Info 34 [16:01:15.000] Before ensureProjectForOpenFiles: -Info 35 [16:01:16.000] Project '/Users/someuser/work/applications/frontend/tsconfig.json' (Configured) -Info 35 [16:01:17.000] Files (4) - -Info 35 [16:01:18.000] ----------------------------------------------- -Info 35 [16:01:19.000] Open files: -Info 35 [16:01:20.000] FileName: /Users/someuser/work/applications/frontend/src/app/utils/Analytic.ts ProjectRootPath: undefined -Info 35 [16:01:21.000] Projects: /Users/someuser/work/applications/frontend/tsconfig.json -Info 35 [16:01:22.000] After ensureProjectForOpenFiles: -Info 36 [16:01:23.000] Project '/Users/someuser/work/applications/frontend/tsconfig.json' (Configured) -Info 36 [16:01:24.000] Files (4) - -Info 36 [16:01:25.000] ----------------------------------------------- -Info 36 [16:01:26.000] Open files: -Info 36 [16:01:27.000] FileName: /Users/someuser/work/applications/frontend/src/app/utils/Analytic.ts ProjectRootPath: undefined -Info 36 [16:01:28.000] Projects: /Users/someuser/work/applications/frontend/tsconfig.json +Info 32 [00:01:13.000] ----------------------------------------------- +Info 33 [00:01:14.000] Running: *ensureProjectForOpenFiles* +Info 34 [00:01:15.000] Before ensureProjectForOpenFiles: +Info 35 [00:01:16.000] Project '/Users/someuser/work/applications/frontend/tsconfig.json' (Configured) +Info 35 [00:01:17.000] Files (4) + +Info 35 [00:01:18.000] ----------------------------------------------- +Info 35 [00:01:19.000] Open files: +Info 35 [00:01:20.000] FileName: /Users/someuser/work/applications/frontend/src/app/utils/Analytic.ts ProjectRootPath: undefined +Info 35 [00:01:21.000] Projects: /Users/someuser/work/applications/frontend/tsconfig.json +Info 35 [00:01:22.000] After ensureProjectForOpenFiles: +Info 36 [00:01:23.000] Project '/Users/someuser/work/applications/frontend/tsconfig.json' (Configured) +Info 36 [00:01:24.000] Files (4) + +Info 36 [00:01:25.000] ----------------------------------------------- +Info 36 [00:01:26.000] Open files: +Info 36 [00:01:27.000] FileName: /Users/someuser/work/applications/frontend/src/app/utils/Analytic.ts ProjectRootPath: undefined +Info 36 [00:01:28.000] Projects: /Users/someuser/work/applications/frontend/tsconfig.json After running timeout callbacks PolledWatches:: @@ -195,25 +195,25 @@ FsWatchesRecursive:: /users/someuser/work/applications/frontend/src: {} -Info 36 [16:01:29.000] fileExists:: [{"key":"/users/someuser/work/applications/frontend/src/app/utils/cookie.ts","count":1},{"key":"/Users/someuser/work/applications/frontend/src/app/utils/Cookie.ts","count":1}] -Info 37 [16:01:30.000] directoryExists:: [{"key":"/users/someuser/work/applications/frontend/src/app/utils/cookie.ts","count":1}] -Info 38 [16:01:31.000] getDirectories:: [] -Info 39 [16:01:32.000] readFile:: [{"key":"/Users/someuser/work/applications/frontend/src/app/utils/Cookie.ts","count":1}] -Info 40 [16:01:33.000] readDirectory:: [] -Info 41 [16:01:34.000] FileWatcher:: Close:: WatchInfo: /Users/someuser/work/applications/frontend/src/app/utils/Cookie.ts 500 undefined WatchType: Closed Script info -Info 42 [16:01:35.000] Search path: /Users/someuser/work/applications/frontend/src/app/utils -Info 43 [16:01:36.000] For info: /Users/someuser/work/applications/frontend/src/app/utils/Cookie.ts :: Config file name: /Users/someuser/work/applications/frontend/tsconfig.json -Info 44 [16:01:37.000] Project '/Users/someuser/work/applications/frontend/tsconfig.json' (Configured) -Info 44 [16:01:38.000] Files (4) - -Info 44 [16:01:39.000] ----------------------------------------------- -Info 44 [16:01:40.000] Open files: -Info 44 [16:01:41.000] FileName: /Users/someuser/work/applications/frontend/src/app/utils/Analytic.ts ProjectRootPath: undefined -Info 44 [16:01:42.000] Projects: /Users/someuser/work/applications/frontend/tsconfig.json -Info 44 [16:01:43.000] FileName: /Users/someuser/work/applications/frontend/src/app/utils/Cookie.ts ProjectRootPath: undefined -Info 44 [16:01:44.000] Projects: /Users/someuser/work/applications/frontend/tsconfig.json -Info 44 [16:01:45.000] fileExists:: [] -Info 45 [16:01:46.000] directoryExists:: [] -Info 46 [16:01:47.000] getDirectories:: [] -Info 47 [16:01:48.000] readFile:: [] -Info 48 [16:01:49.000] readDirectory:: [] \ No newline at end of file +Info 36 [00:01:29.000] fileExists:: [{"key":"/users/someuser/work/applications/frontend/src/app/utils/cookie.ts","count":1},{"key":"/Users/someuser/work/applications/frontend/src/app/utils/Cookie.ts","count":1}] +Info 37 [00:01:30.000] directoryExists:: [{"key":"/users/someuser/work/applications/frontend/src/app/utils/cookie.ts","count":1}] +Info 38 [00:01:31.000] getDirectories:: [] +Info 39 [00:01:32.000] readFile:: [{"key":"/Users/someuser/work/applications/frontend/src/app/utils/Cookie.ts","count":1}] +Info 40 [00:01:33.000] readDirectory:: [] +Info 41 [00:01:34.000] FileWatcher:: Close:: WatchInfo: /Users/someuser/work/applications/frontend/src/app/utils/Cookie.ts 500 undefined WatchType: Closed Script info +Info 42 [00:01:35.000] Search path: /Users/someuser/work/applications/frontend/src/app/utils +Info 43 [00:01:36.000] For info: /Users/someuser/work/applications/frontend/src/app/utils/Cookie.ts :: Config file name: /Users/someuser/work/applications/frontend/tsconfig.json +Info 44 [00:01:37.000] Project '/Users/someuser/work/applications/frontend/tsconfig.json' (Configured) +Info 44 [00:01:38.000] Files (4) + +Info 44 [00:01:39.000] ----------------------------------------------- +Info 44 [00:01:40.000] Open files: +Info 44 [00:01:41.000] FileName: /Users/someuser/work/applications/frontend/src/app/utils/Analytic.ts ProjectRootPath: undefined +Info 44 [00:01:42.000] Projects: /Users/someuser/work/applications/frontend/tsconfig.json +Info 44 [00:01:43.000] FileName: /Users/someuser/work/applications/frontend/src/app/utils/Cookie.ts ProjectRootPath: undefined +Info 44 [00:01:44.000] Projects: /Users/someuser/work/applications/frontend/tsconfig.json +Info 44 [00:01:45.000] fileExists:: [] +Info 45 [00:01:46.000] directoryExists:: [] +Info 46 [00:01:47.000] getDirectories:: [] +Info 47 [00:01:48.000] readFile:: [] +Info 48 [00:01:49.000] readDirectory:: [] \ No newline at end of file diff --git a/tests/baselines/reference/tsserver/cachingFileSystemInformation/watchDirectories-for-config-file-with-case-sensitive-file-system.js b/tests/baselines/reference/tsserver/cachingFileSystemInformation/watchDirectories-for-config-file-with-case-sensitive-file-system.js index 8b0d7c76c3f5e..b957851482f24 100644 --- a/tests/baselines/reference/tsserver/cachingFileSystemInformation/watchDirectories-for-config-file-with-case-sensitive-file-system.js +++ b/tests/baselines/reference/tsserver/cachingFileSystemInformation/watchDirectories-for-config-file-with-case-sensitive-file-system.js @@ -1,4 +1,4 @@ -Info 0 [16:00:33.000] Provided types map file "/typesMap.json" doesn't exist +Info 0 [00:00:33.000] Provided types map file "/typesMap.json" doesn't exist Creating project service //// [/Users/someuser/work/applications/frontend/src/app/utils/Analytic.ts] export class SomeClass { }; @@ -29,11 +29,11 @@ FsWatches:: FsWatchesRecursive:: -Info 1 [16:00:34.000] Search path: /Users/someuser/work/applications/frontend/src/app/utils -Info 2 [16:00:35.000] For info: /Users/someuser/work/applications/frontend/src/app/utils/Analytic.ts :: Config file name: /Users/someuser/work/applications/frontend/tsconfig.json -Info 3 [16:00:36.000] Creating configuration project /Users/someuser/work/applications/frontend/tsconfig.json -Info 4 [16:00:37.000] FileWatcher:: Added:: WatchInfo: /Users/someuser/work/applications/frontend/tsconfig.json 2000 undefined Project: /Users/someuser/work/applications/frontend/tsconfig.json WatchType: Config file -Info 5 [16:00:38.000] Config: /Users/someuser/work/applications/frontend/tsconfig.json : { +Info 1 [00:00:34.000] Search path: /Users/someuser/work/applications/frontend/src/app/utils +Info 2 [00:00:35.000] For info: /Users/someuser/work/applications/frontend/src/app/utils/Analytic.ts :: Config file name: /Users/someuser/work/applications/frontend/tsconfig.json +Info 3 [00:00:36.000] Creating configuration project /Users/someuser/work/applications/frontend/tsconfig.json +Info 4 [00:00:37.000] FileWatcher:: Added:: WatchInfo: /Users/someuser/work/applications/frontend/tsconfig.json 2000 undefined Project: /Users/someuser/work/applications/frontend/tsconfig.json WatchType: Config file +Info 5 [00:00:38.000] Config: /Users/someuser/work/applications/frontend/tsconfig.json : { "rootNames": [ "/Users/someuser/work/applications/frontend/src/app/redux/configureStore.ts", "/Users/someuser/work/applications/frontend/src/app/utils/Analytic.ts" @@ -68,21 +68,21 @@ Info 5 [16:00:38.000] Config: /Users/someuser/work/applications/frontend/tsco "configFilePath": "/Users/someuser/work/applications/frontend/tsconfig.json" } } -Info 6 [16:00:39.000] DirectoryWatcher:: Added:: WatchInfo: /Users/someuser/work/applications/frontend/src 1 undefined Config: /Users/someuser/work/applications/frontend/tsconfig.json WatchType: Wild card directory -Info 7 [16:00:40.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /Users/someuser/work/applications/frontend/src 1 undefined Config: /Users/someuser/work/applications/frontend/tsconfig.json WatchType: Wild card directory -Info 8 [16:00:41.000] Plugins were requested but not running in environment that supports 'require'. Nothing will be loaded -Info 9 [16:00:42.000] FileWatcher:: Added:: WatchInfo: /Users/someuser/work/applications/frontend/src/app/redux/configureStore.ts 500 undefined WatchType: Closed Script info -Info 10 [16:00:43.000] Starting updateGraphWorker: Project: /Users/someuser/work/applications/frontend/tsconfig.json -Info 11 [16:00:44.000] FileWatcher:: Added:: WatchInfo: /a/lib/lib.es2016.full.d.ts 500 undefined WatchType: Closed Script info -Info 12 [16:00:45.000] DirectoryWatcher:: Added:: WatchInfo: /Users/someuser/work/applications/frontend/types 1 undefined Project: /Users/someuser/work/applications/frontend/tsconfig.json WatchType: Failed Lookup Locations -Info 13 [16:00:46.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /Users/someuser/work/applications/frontend/types 1 undefined Project: /Users/someuser/work/applications/frontend/tsconfig.json WatchType: Failed Lookup Locations -Info 14 [16:00:47.000] DirectoryWatcher:: Added:: WatchInfo: /Users/someuser/work/applications/frontend/node_modules 1 undefined Project: /Users/someuser/work/applications/frontend/tsconfig.json WatchType: Failed Lookup Locations -Info 15 [16:00:48.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /Users/someuser/work/applications/frontend/node_modules 1 undefined Project: /Users/someuser/work/applications/frontend/tsconfig.json WatchType: Failed Lookup Locations -Info 16 [16:00:49.000] DirectoryWatcher:: Added:: WatchInfo: /Users/someuser/work/applications/node_modules 1 undefined Project: /Users/someuser/work/applications/frontend/tsconfig.json WatchType: Failed Lookup Locations -Info 17 [16:00:50.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /Users/someuser/work/applications/node_modules 1 undefined Project: /Users/someuser/work/applications/frontend/tsconfig.json WatchType: Failed Lookup Locations -Info 18 [16:00:51.000] Finishing updateGraphWorker: Project: /Users/someuser/work/applications/frontend/tsconfig.json Version: 1 structureChanged: true structureIsReused:: Not Elapsed:: *ms -Info 19 [16:00:52.000] Project '/Users/someuser/work/applications/frontend/tsconfig.json' (Configured) -Info 20 [16:00:53.000] Files (3) +Info 6 [00:00:39.000] DirectoryWatcher:: Added:: WatchInfo: /Users/someuser/work/applications/frontend/src 1 undefined Config: /Users/someuser/work/applications/frontend/tsconfig.json WatchType: Wild card directory +Info 7 [00:00:40.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /Users/someuser/work/applications/frontend/src 1 undefined Config: /Users/someuser/work/applications/frontend/tsconfig.json WatchType: Wild card directory +Info 8 [00:00:41.000] Plugins were requested but not running in environment that supports 'require'. Nothing will be loaded +Info 9 [00:00:42.000] FileWatcher:: Added:: WatchInfo: /Users/someuser/work/applications/frontend/src/app/redux/configureStore.ts 500 undefined WatchType: Closed Script info +Info 10 [00:00:43.000] Starting updateGraphWorker: Project: /Users/someuser/work/applications/frontend/tsconfig.json +Info 11 [00:00:44.000] FileWatcher:: Added:: WatchInfo: /a/lib/lib.es2016.full.d.ts 500 undefined WatchType: Closed Script info +Info 12 [00:00:45.000] DirectoryWatcher:: Added:: WatchInfo: /Users/someuser/work/applications/frontend/types 1 undefined Project: /Users/someuser/work/applications/frontend/tsconfig.json WatchType: Failed Lookup Locations +Info 13 [00:00:46.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /Users/someuser/work/applications/frontend/types 1 undefined Project: /Users/someuser/work/applications/frontend/tsconfig.json WatchType: Failed Lookup Locations +Info 14 [00:00:47.000] DirectoryWatcher:: Added:: WatchInfo: /Users/someuser/work/applications/frontend/node_modules 1 undefined Project: /Users/someuser/work/applications/frontend/tsconfig.json WatchType: Failed Lookup Locations +Info 15 [00:00:48.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /Users/someuser/work/applications/frontend/node_modules 1 undefined Project: /Users/someuser/work/applications/frontend/tsconfig.json WatchType: Failed Lookup Locations +Info 16 [00:00:49.000] DirectoryWatcher:: Added:: WatchInfo: /Users/someuser/work/applications/node_modules 1 undefined Project: /Users/someuser/work/applications/frontend/tsconfig.json WatchType: Failed Lookup Locations +Info 17 [00:00:50.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /Users/someuser/work/applications/node_modules 1 undefined Project: /Users/someuser/work/applications/frontend/tsconfig.json WatchType: Failed Lookup Locations +Info 18 [00:00:51.000] Finishing updateGraphWorker: Project: /Users/someuser/work/applications/frontend/tsconfig.json Version: 1 structureChanged: true structureIsReused:: Not Elapsed:: *ms +Info 19 [00:00:52.000] Project '/Users/someuser/work/applications/frontend/tsconfig.json' (Configured) +Info 20 [00:00:53.000] Files (3) /a/lib/lib.es2016.full.d.ts /Users/someuser/work/applications/frontend/src/app/redux/configureStore.ts /Users/someuser/work/applications/frontend/src/app/utils/Analytic.ts @@ -95,18 +95,18 @@ Info 20 [16:00:53.000] Files (3) src/app/utils/Analytic.ts Matched by include pattern 'src/**/*' in 'tsconfig.json' -Info 21 [16:00:54.000] ----------------------------------------------- -Info 22 [16:00:55.000] Project '/Users/someuser/work/applications/frontend/tsconfig.json' (Configured) -Info 22 [16:00:56.000] Files (3) - -Info 22 [16:00:57.000] ----------------------------------------------- -Info 22 [16:00:58.000] Open files: -Info 22 [16:00:59.000] FileName: /Users/someuser/work/applications/frontend/src/app/utils/Analytic.ts ProjectRootPath: undefined -Info 22 [16:01:00.000] Projects: /Users/someuser/work/applications/frontend/tsconfig.json -Info 22 [16:01:03.000] DirectoryWatcher:: Triggered with /Users/someuser/work/applications/frontend/src/app/utils/Cookie.ts :: WatchInfo: /Users/someuser/work/applications/frontend/src 1 undefined Config: /Users/someuser/work/applications/frontend/tsconfig.json WatchType: Wild card directory -Info 23 [16:01:04.000] Scheduled: /Users/someuser/work/applications/frontend/tsconfig.json -Info 24 [16:01:05.000] Scheduled: *ensureProjectForOpenFiles* -Info 25 [16:01:06.000] Elapsed:: *ms DirectoryWatcher:: Triggered with /Users/someuser/work/applications/frontend/src/app/utils/Cookie.ts :: WatchInfo: /Users/someuser/work/applications/frontend/src 1 undefined Config: /Users/someuser/work/applications/frontend/tsconfig.json WatchType: Wild card directory +Info 21 [00:00:54.000] ----------------------------------------------- +Info 22 [00:00:55.000] Project '/Users/someuser/work/applications/frontend/tsconfig.json' (Configured) +Info 22 [00:00:56.000] Files (3) + +Info 22 [00:00:57.000] ----------------------------------------------- +Info 22 [00:00:58.000] Open files: +Info 22 [00:00:59.000] FileName: /Users/someuser/work/applications/frontend/src/app/utils/Analytic.ts ProjectRootPath: undefined +Info 22 [00:01:00.000] Projects: /Users/someuser/work/applications/frontend/tsconfig.json +Info 22 [00:01:03.000] DirectoryWatcher:: Triggered with /Users/someuser/work/applications/frontend/src/app/utils/Cookie.ts :: WatchInfo: /Users/someuser/work/applications/frontend/src 1 undefined Config: /Users/someuser/work/applications/frontend/tsconfig.json WatchType: Wild card directory +Info 23 [00:01:04.000] Scheduled: /Users/someuser/work/applications/frontend/tsconfig.json +Info 24 [00:01:05.000] Scheduled: *ensureProjectForOpenFiles* +Info 25 [00:01:06.000] Elapsed:: *ms DirectoryWatcher:: Triggered with /Users/someuser/work/applications/frontend/src/app/utils/Cookie.ts :: WatchInfo: /Users/someuser/work/applications/frontend/src 1 undefined Config: /Users/someuser/work/applications/frontend/tsconfig.json WatchType: Wild card directory Before running timeout callbacks //// [/Users/someuser/work/applications/frontend/src/app/utils/Cookie.ts] export class Cookie { } @@ -132,12 +132,12 @@ FsWatchesRecursive:: /Users/someuser/work/applications/frontend/src: {} -Info 26 [16:01:07.000] Running: /Users/someuser/work/applications/frontend/tsconfig.json -Info 27 [16:01:08.000] FileWatcher:: Added:: WatchInfo: /Users/someuser/work/applications/frontend/src/app/utils/Cookie.ts 500 undefined WatchType: Closed Script info -Info 28 [16:01:09.000] Starting updateGraphWorker: Project: /Users/someuser/work/applications/frontend/tsconfig.json -Info 29 [16:01:10.000] Finishing updateGraphWorker: Project: /Users/someuser/work/applications/frontend/tsconfig.json Version: 2 structureChanged: true structureIsReused:: Not Elapsed:: *ms -Info 30 [16:01:11.000] Project '/Users/someuser/work/applications/frontend/tsconfig.json' (Configured) -Info 31 [16:01:12.000] Files (4) +Info 26 [00:01:07.000] Running: /Users/someuser/work/applications/frontend/tsconfig.json +Info 27 [00:01:08.000] FileWatcher:: Added:: WatchInfo: /Users/someuser/work/applications/frontend/src/app/utils/Cookie.ts 500 undefined WatchType: Closed Script info +Info 28 [00:01:09.000] Starting updateGraphWorker: Project: /Users/someuser/work/applications/frontend/tsconfig.json +Info 29 [00:01:10.000] Finishing updateGraphWorker: Project: /Users/someuser/work/applications/frontend/tsconfig.json Version: 2 structureChanged: true structureIsReused:: Not Elapsed:: *ms +Info 30 [00:01:11.000] Project '/Users/someuser/work/applications/frontend/tsconfig.json' (Configured) +Info 31 [00:01:12.000] Files (4) /a/lib/lib.es2016.full.d.ts /Users/someuser/work/applications/frontend/src/app/redux/configureStore.ts /Users/someuser/work/applications/frontend/src/app/utils/Analytic.ts @@ -153,24 +153,24 @@ Info 31 [16:01:12.000] Files (4) src/app/utils/Cookie.ts Matched by include pattern 'src/**/*' in 'tsconfig.json' -Info 32 [16:01:13.000] ----------------------------------------------- -Info 33 [16:01:14.000] Running: *ensureProjectForOpenFiles* -Info 34 [16:01:15.000] Before ensureProjectForOpenFiles: -Info 35 [16:01:16.000] Project '/Users/someuser/work/applications/frontend/tsconfig.json' (Configured) -Info 35 [16:01:17.000] Files (4) - -Info 35 [16:01:18.000] ----------------------------------------------- -Info 35 [16:01:19.000] Open files: -Info 35 [16:01:20.000] FileName: /Users/someuser/work/applications/frontend/src/app/utils/Analytic.ts ProjectRootPath: undefined -Info 35 [16:01:21.000] Projects: /Users/someuser/work/applications/frontend/tsconfig.json -Info 35 [16:01:22.000] After ensureProjectForOpenFiles: -Info 36 [16:01:23.000] Project '/Users/someuser/work/applications/frontend/tsconfig.json' (Configured) -Info 36 [16:01:24.000] Files (4) - -Info 36 [16:01:25.000] ----------------------------------------------- -Info 36 [16:01:26.000] Open files: -Info 36 [16:01:27.000] FileName: /Users/someuser/work/applications/frontend/src/app/utils/Analytic.ts ProjectRootPath: undefined -Info 36 [16:01:28.000] Projects: /Users/someuser/work/applications/frontend/tsconfig.json +Info 32 [00:01:13.000] ----------------------------------------------- +Info 33 [00:01:14.000] Running: *ensureProjectForOpenFiles* +Info 34 [00:01:15.000] Before ensureProjectForOpenFiles: +Info 35 [00:01:16.000] Project '/Users/someuser/work/applications/frontend/tsconfig.json' (Configured) +Info 35 [00:01:17.000] Files (4) + +Info 35 [00:01:18.000] ----------------------------------------------- +Info 35 [00:01:19.000] Open files: +Info 35 [00:01:20.000] FileName: /Users/someuser/work/applications/frontend/src/app/utils/Analytic.ts ProjectRootPath: undefined +Info 35 [00:01:21.000] Projects: /Users/someuser/work/applications/frontend/tsconfig.json +Info 35 [00:01:22.000] After ensureProjectForOpenFiles: +Info 36 [00:01:23.000] Project '/Users/someuser/work/applications/frontend/tsconfig.json' (Configured) +Info 36 [00:01:24.000] Files (4) + +Info 36 [00:01:25.000] ----------------------------------------------- +Info 36 [00:01:26.000] Open files: +Info 36 [00:01:27.000] FileName: /Users/someuser/work/applications/frontend/src/app/utils/Analytic.ts ProjectRootPath: undefined +Info 36 [00:01:28.000] Projects: /Users/someuser/work/applications/frontend/tsconfig.json After running timeout callbacks PolledWatches:: @@ -195,25 +195,25 @@ FsWatchesRecursive:: /Users/someuser/work/applications/frontend/src: {} -Info 36 [16:01:29.000] fileExists:: [{"key":"/Users/someuser/work/applications/frontend/src/app/utils/Cookie.ts","count":2}] -Info 37 [16:01:30.000] directoryExists:: [{"key":"/Users/someuser/work/applications/frontend/src/app/utils/Cookie.ts","count":1}] -Info 38 [16:01:31.000] getDirectories:: [] -Info 39 [16:01:32.000] readFile:: [{"key":"/Users/someuser/work/applications/frontend/src/app/utils/Cookie.ts","count":1}] -Info 40 [16:01:33.000] readDirectory:: [] -Info 41 [16:01:34.000] FileWatcher:: Close:: WatchInfo: /Users/someuser/work/applications/frontend/src/app/utils/Cookie.ts 500 undefined WatchType: Closed Script info -Info 42 [16:01:35.000] Search path: /Users/someuser/work/applications/frontend/src/app/utils -Info 43 [16:01:36.000] For info: /Users/someuser/work/applications/frontend/src/app/utils/Cookie.ts :: Config file name: /Users/someuser/work/applications/frontend/tsconfig.json -Info 44 [16:01:37.000] Project '/Users/someuser/work/applications/frontend/tsconfig.json' (Configured) -Info 44 [16:01:38.000] Files (4) - -Info 44 [16:01:39.000] ----------------------------------------------- -Info 44 [16:01:40.000] Open files: -Info 44 [16:01:41.000] FileName: /Users/someuser/work/applications/frontend/src/app/utils/Analytic.ts ProjectRootPath: undefined -Info 44 [16:01:42.000] Projects: /Users/someuser/work/applications/frontend/tsconfig.json -Info 44 [16:01:43.000] FileName: /Users/someuser/work/applications/frontend/src/app/utils/Cookie.ts ProjectRootPath: undefined -Info 44 [16:01:44.000] Projects: /Users/someuser/work/applications/frontend/tsconfig.json -Info 44 [16:01:45.000] fileExists:: [] -Info 45 [16:01:46.000] directoryExists:: [] -Info 46 [16:01:47.000] getDirectories:: [] -Info 47 [16:01:48.000] readFile:: [] -Info 48 [16:01:49.000] readDirectory:: [] \ No newline at end of file +Info 36 [00:01:29.000] fileExists:: [{"key":"/Users/someuser/work/applications/frontend/src/app/utils/Cookie.ts","count":2}] +Info 37 [00:01:30.000] directoryExists:: [{"key":"/Users/someuser/work/applications/frontend/src/app/utils/Cookie.ts","count":1}] +Info 38 [00:01:31.000] getDirectories:: [] +Info 39 [00:01:32.000] readFile:: [{"key":"/Users/someuser/work/applications/frontend/src/app/utils/Cookie.ts","count":1}] +Info 40 [00:01:33.000] readDirectory:: [] +Info 41 [00:01:34.000] FileWatcher:: Close:: WatchInfo: /Users/someuser/work/applications/frontend/src/app/utils/Cookie.ts 500 undefined WatchType: Closed Script info +Info 42 [00:01:35.000] Search path: /Users/someuser/work/applications/frontend/src/app/utils +Info 43 [00:01:36.000] For info: /Users/someuser/work/applications/frontend/src/app/utils/Cookie.ts :: Config file name: /Users/someuser/work/applications/frontend/tsconfig.json +Info 44 [00:01:37.000] Project '/Users/someuser/work/applications/frontend/tsconfig.json' (Configured) +Info 44 [00:01:38.000] Files (4) + +Info 44 [00:01:39.000] ----------------------------------------------- +Info 44 [00:01:40.000] Open files: +Info 44 [00:01:41.000] FileName: /Users/someuser/work/applications/frontend/src/app/utils/Analytic.ts ProjectRootPath: undefined +Info 44 [00:01:42.000] Projects: /Users/someuser/work/applications/frontend/tsconfig.json +Info 44 [00:01:43.000] FileName: /Users/someuser/work/applications/frontend/src/app/utils/Cookie.ts ProjectRootPath: undefined +Info 44 [00:01:44.000] Projects: /Users/someuser/work/applications/frontend/tsconfig.json +Info 44 [00:01:45.000] fileExists:: [] +Info 45 [00:01:46.000] directoryExists:: [] +Info 46 [00:01:47.000] getDirectories:: [] +Info 47 [00:01:48.000] readFile:: [] +Info 48 [00:01:49.000] readDirectory:: [] \ No newline at end of file diff --git a/tests/baselines/reference/tsserver/cachingFileSystemInformation/when-calling-goto-definition-of-module.js b/tests/baselines/reference/tsserver/cachingFileSystemInformation/when-calling-goto-definition-of-module.js index 6bef4381945d9..ab35046a09e45 100644 --- a/tests/baselines/reference/tsserver/cachingFileSystemInformation/when-calling-goto-definition-of-module.js +++ b/tests/baselines/reference/tsserver/cachingFileSystemInformation/when-calling-goto-definition-of-module.js @@ -1,5 +1,5 @@ -Info 0 [16:00:23.000] Provided types map file "/a/lib/typesMap.json" doesn't exist -Info 1 [16:00:24.000] request: +Info 0 [00:00:23.000] Provided types map file "/a/lib/typesMap.json" doesn't exist +Info 1 [00:00:24.000] request: { "seq": 0, "type": "request", @@ -34,11 +34,11 @@ FsWatches:: FsWatchesRecursive:: -Info 2 [16:00:25.000] Search path: /a/b/controllers/vessels -Info 3 [16:00:26.000] For info: /a/b/controllers/vessels/client.ts :: Config file name: /a/b/tsconfig.json -Info 4 [16:00:27.000] Creating configuration project /a/b/tsconfig.json -Info 5 [16:00:28.000] FileWatcher:: Added:: WatchInfo: /a/b/tsconfig.json 2000 undefined Project: /a/b/tsconfig.json WatchType: Config file -Info 6 [16:00:29.000] Config: /a/b/tsconfig.json : { +Info 2 [00:00:25.000] Search path: /a/b/controllers/vessels +Info 3 [00:00:26.000] For info: /a/b/controllers/vessels/client.ts :: Config file name: /a/b/tsconfig.json +Info 4 [00:00:27.000] Creating configuration project /a/b/tsconfig.json +Info 5 [00:00:28.000] FileWatcher:: Added:: WatchInfo: /a/b/tsconfig.json 2000 undefined Project: /a/b/tsconfig.json WatchType: Config file +Info 6 [00:00:29.000] Config: /a/b/tsconfig.json : { "rootNames": [ "/a/b/controllers/vessels/client.ts", "/a/b/models/vessel.ts", @@ -57,18 +57,18 @@ Info 6 [16:00:29.000] Config: /a/b/tsconfig.json : { "configFilePath": "/a/b/tsconfig.json" } } -Info 7 [16:00:30.000] DirectoryWatcher:: Added:: WatchInfo: /a/b 1 undefined Config: /a/b/tsconfig.json WatchType: Wild card directory -Info 8 [16:00:31.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /a/b 1 undefined Config: /a/b/tsconfig.json WatchType: Wild card directory -Info 9 [16:00:32.000] Plugins were requested but not running in environment that supports 'require'. Nothing will be loaded -Info 10 [16:00:33.000] FileWatcher:: Added:: WatchInfo: /a/b/models/vessel.ts 500 undefined WatchType: Closed Script info -Info 11 [16:00:34.000] FileWatcher:: Added:: WatchInfo: /a/b/utils/db.ts 500 undefined WatchType: Closed Script info -Info 12 [16:00:35.000] Starting updateGraphWorker: Project: /a/b/tsconfig.json -Info 13 [16:00:36.000] FileWatcher:: Added:: WatchInfo: /a/lib/lib.es6.d.ts 500 undefined Project: /a/b/tsconfig.json WatchType: Missing file -Info 14 [16:00:37.000] DirectoryWatcher:: Added:: WatchInfo: /a/b/node_modules/@types 1 undefined Project: /a/b/tsconfig.json WatchType: Type roots -Info 15 [16:00:38.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /a/b/node_modules/@types 1 undefined Project: /a/b/tsconfig.json WatchType: Type roots -Info 16 [16:00:39.000] Finishing updateGraphWorker: Project: /a/b/tsconfig.json Version: 1 structureChanged: true structureIsReused:: Not Elapsed:: *ms -Info 17 [16:00:40.000] Project '/a/b/tsconfig.json' (Configured) -Info 18 [16:00:41.000] Files (3) +Info 7 [00:00:30.000] DirectoryWatcher:: Added:: WatchInfo: /a/b 1 undefined Config: /a/b/tsconfig.json WatchType: Wild card directory +Info 8 [00:00:31.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /a/b 1 undefined Config: /a/b/tsconfig.json WatchType: Wild card directory +Info 9 [00:00:32.000] Plugins were requested but not running in environment that supports 'require'. Nothing will be loaded +Info 10 [00:00:33.000] FileWatcher:: Added:: WatchInfo: /a/b/models/vessel.ts 500 undefined WatchType: Closed Script info +Info 11 [00:00:34.000] FileWatcher:: Added:: WatchInfo: /a/b/utils/db.ts 500 undefined WatchType: Closed Script info +Info 12 [00:00:35.000] Starting updateGraphWorker: Project: /a/b/tsconfig.json +Info 13 [00:00:36.000] FileWatcher:: Added:: WatchInfo: /a/lib/lib.es6.d.ts 500 undefined Project: /a/b/tsconfig.json WatchType: Missing file +Info 14 [00:00:37.000] DirectoryWatcher:: Added:: WatchInfo: /a/b/node_modules/@types 1 undefined Project: /a/b/tsconfig.json WatchType: Type roots +Info 15 [00:00:38.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /a/b/node_modules/@types 1 undefined Project: /a/b/tsconfig.json WatchType: Type roots +Info 16 [00:00:39.000] Finishing updateGraphWorker: Project: /a/b/tsconfig.json Version: 1 structureChanged: true structureIsReused:: Not Elapsed:: *ms +Info 17 [00:00:40.000] Project '/a/b/tsconfig.json' (Configured) +Info 18 [00:00:41.000] Files (3) /a/b/utils/db.ts /a/b/models/vessel.ts /a/b/controllers/vessels/client.ts @@ -83,14 +83,14 @@ Info 18 [16:00:41.000] Files (3) controllers/vessels/client.ts Matched by default include pattern '**/*' -Info 19 [16:00:42.000] ----------------------------------------------- -Info 20 [16:00:43.000] Project '/a/b/tsconfig.json' (Configured) -Info 20 [16:00:44.000] Files (3) +Info 19 [00:00:42.000] ----------------------------------------------- +Info 20 [00:00:43.000] Project '/a/b/tsconfig.json' (Configured) +Info 20 [00:00:44.000] Files (3) -Info 20 [16:00:45.000] ----------------------------------------------- -Info 20 [16:00:46.000] Open files: -Info 20 [16:00:47.000] FileName: /a/b/controllers/vessels/client.ts ProjectRootPath: undefined -Info 20 [16:00:48.000] Projects: /a/b/tsconfig.json +Info 20 [00:00:45.000] ----------------------------------------------- +Info 20 [00:00:46.000] Open files: +Info 20 [00:00:47.000] FileName: /a/b/controllers/vessels/client.ts ProjectRootPath: undefined +Info 20 [00:00:48.000] Projects: /a/b/tsconfig.json After request PolledWatches:: @@ -111,11 +111,11 @@ FsWatchesRecursive:: /a/b: {} -Info 20 [16:00:49.000] response: +Info 20 [00:00:49.000] response: { "responseRequired": false } -Info 21 [16:00:50.000] request: +Info 21 [00:00:50.000] request: { "seq": 0, "type": "request", @@ -165,7 +165,7 @@ FsWatchesRecursive:: /a/b: {} -Info 22 [16:00:51.000] response: +Info 22 [00:00:51.000] response: { "response": [ { @@ -182,12 +182,12 @@ Info 22 [16:00:51.000] response: ], "responseRequired": true } -Info 23 [16:00:52.000] fileExists:: [] -Info 24 [16:00:53.000] directoryExists:: [] -Info 25 [16:00:54.000] getDirectories:: [] -Info 26 [16:00:55.000] readFile:: [] -Info 27 [16:00:56.000] readDirectory:: [] -Info 28 [16:00:57.000] request: +Info 23 [00:00:52.000] fileExists:: [] +Info 24 [00:00:53.000] directoryExists:: [] +Info 25 [00:00:54.000] getDirectories:: [] +Info 26 [00:00:55.000] readFile:: [] +Info 27 [00:00:56.000] readDirectory:: [] +Info 28 [00:00:57.000] request: { "seq": 0, "type": "request", @@ -216,18 +216,18 @@ FsWatchesRecursive:: /a/b: {} -Info 29 [16:00:58.000] FileWatcher:: Close:: WatchInfo: /a/b/models/vessel.ts 500 undefined WatchType: Closed Script info -Info 30 [16:00:59.000] Search path: /a/b/models -Info 31 [16:01:00.000] For info: /a/b/models/vessel.ts :: Config file name: /a/b/tsconfig.json -Info 32 [16:01:01.000] Project '/a/b/tsconfig.json' (Configured) -Info 32 [16:01:02.000] Files (3) +Info 29 [00:00:58.000] FileWatcher:: Close:: WatchInfo: /a/b/models/vessel.ts 500 undefined WatchType: Closed Script info +Info 30 [00:00:59.000] Search path: /a/b/models +Info 31 [00:01:00.000] For info: /a/b/models/vessel.ts :: Config file name: /a/b/tsconfig.json +Info 32 [00:01:01.000] Project '/a/b/tsconfig.json' (Configured) +Info 32 [00:01:02.000] Files (3) -Info 32 [16:01:03.000] ----------------------------------------------- -Info 32 [16:01:04.000] Open files: -Info 32 [16:01:05.000] FileName: /a/b/controllers/vessels/client.ts ProjectRootPath: undefined -Info 32 [16:01:06.000] Projects: /a/b/tsconfig.json -Info 32 [16:01:07.000] FileName: /a/b/models/vessel.ts ProjectRootPath: undefined -Info 32 [16:01:08.000] Projects: /a/b/tsconfig.json +Info 32 [00:01:03.000] ----------------------------------------------- +Info 32 [00:01:04.000] Open files: +Info 32 [00:01:05.000] FileName: /a/b/controllers/vessels/client.ts ProjectRootPath: undefined +Info 32 [00:01:06.000] Projects: /a/b/tsconfig.json +Info 32 [00:01:07.000] FileName: /a/b/models/vessel.ts ProjectRootPath: undefined +Info 32 [00:01:08.000] Projects: /a/b/tsconfig.json After request PolledWatches:: @@ -246,12 +246,12 @@ FsWatchesRecursive:: /a/b: {} -Info 32 [16:01:09.000] response: +Info 32 [00:01:09.000] response: { "responseRequired": false } -Info 33 [16:01:10.000] fileExists:: [{"key":"/a/b/models/tsconfig.json","count":1},{"key":"/a/b/models/jsconfig.json","count":1}] -Info 34 [16:01:11.000] directoryExists:: [] -Info 35 [16:01:12.000] getDirectories:: [] -Info 36 [16:01:13.000] readFile:: [] -Info 37 [16:01:14.000] readDirectory:: [] \ No newline at end of file +Info 33 [00:01:10.000] fileExists:: [{"key":"/a/b/models/tsconfig.json","count":1},{"key":"/a/b/models/jsconfig.json","count":1}] +Info 34 [00:01:11.000] directoryExists:: [] +Info 35 [00:01:12.000] getDirectories:: [] +Info 36 [00:01:13.000] readFile:: [] +Info 37 [00:01:14.000] readDirectory:: [] \ No newline at end of file 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 f4363a6862eb2..3f77a34d4d634 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 @@ -1,4 +1,4 @@ -Info 0 [16:00:11.000] Provided types map file "/typesMap.json" doesn't exist +Info 0 [00:00:11.000] Provided types map file "/typesMap.json" doesn't exist Creating project service //// [/c/d/f0.ts] import {x} from "f1" @@ -13,18 +13,18 @@ FsWatches:: FsWatchesRecursive:: -Info 1 [16:00:12.000] Search path: /c/d -Info 2 [16:00:13.000] For info: /c/d/f0.ts :: No config files found. -Info 3 [16:00:14.000] Plugins were requested but not running in environment that supports 'require'. Nothing will be loaded -Info 4 [16:00:15.000] Starting updateGraphWorker: Project: /dev/null/inferredProject1* -Info 5 [16:00:16.000] FileWatcher:: Added:: WatchInfo: /c/f1.ts 500 undefined WatchType: Closed Script info -Info 6 [16:00:17.000] DirectoryWatcher:: Added:: WatchInfo: /c/d 0 undefined Project: /dev/null/inferredProject1* WatchType: Failed Lookup Locations -Info 7 [16:00:18.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /c/d 0 undefined Project: /dev/null/inferredProject1* WatchType: Failed Lookup Locations -Info 8 [16:00:19.000] DirectoryWatcher:: Added:: WatchInfo: /c/d/node_modules/@types 1 undefined Project: /dev/null/inferredProject1* WatchType: Type roots -Info 9 [16:00:20.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /c/d/node_modules/@types 1 undefined Project: /dev/null/inferredProject1* WatchType: Type roots -Info 10 [16:00:21.000] Finishing updateGraphWorker: Project: /dev/null/inferredProject1* Version: 1 structureChanged: true structureIsReused:: Not Elapsed:: *ms -Info 11 [16:00:22.000] Project '/dev/null/inferredProject1*' (Inferred) -Info 12 [16:00:23.000] Files (2) +Info 1 [00:00:12.000] Search path: /c/d +Info 2 [00:00:13.000] For info: /c/d/f0.ts :: No config files found. +Info 3 [00:00:14.000] Plugins were requested but not running in environment that supports 'require'. Nothing will be loaded +Info 4 [00:00:15.000] Starting updateGraphWorker: Project: /dev/null/inferredProject1* +Info 5 [00:00:16.000] FileWatcher:: Added:: WatchInfo: /c/f1.ts 500 undefined WatchType: Closed Script info +Info 6 [00:00:17.000] DirectoryWatcher:: Added:: WatchInfo: /c/d 0 undefined Project: /dev/null/inferredProject1* WatchType: Failed Lookup Locations +Info 7 [00:00:18.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /c/d 0 undefined Project: /dev/null/inferredProject1* WatchType: Failed Lookup Locations +Info 8 [00:00:19.000] DirectoryWatcher:: Added:: WatchInfo: /c/d/node_modules/@types 1 undefined Project: /dev/null/inferredProject1* WatchType: Type roots +Info 9 [00:00:20.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /c/d/node_modules/@types 1 undefined Project: /dev/null/inferredProject1* WatchType: Type roots +Info 10 [00:00:21.000] Finishing updateGraphWorker: Project: /dev/null/inferredProject1* Version: 1 structureChanged: true structureIsReused:: Not Elapsed:: *ms +Info 11 [00:00:22.000] Project '/dev/null/inferredProject1*' (Inferred) +Info 12 [00:00:23.000] Files (2) /c/f1.ts /c/d/f0.ts @@ -34,53 +34,53 @@ Info 12 [16:00:23.000] Files (2) f0.ts Root file specified for compilation -Info 13 [16:00:24.000] ----------------------------------------------- -Info 14 [16:00:25.000] Project '/dev/null/inferredProject1*' (Inferred) -Info 14 [16:00:26.000] Files (2) +Info 13 [00:00:24.000] ----------------------------------------------- +Info 14 [00:00:25.000] Project '/dev/null/inferredProject1*' (Inferred) +Info 14 [00:00:26.000] Files (2) -Info 14 [16:00:27.000] ----------------------------------------------- -Info 14 [16:00:28.000] Open files: -Info 14 [16:00:29.000] FileName: /c/d/f0.ts ProjectRootPath: undefined -Info 14 [16:00:30.000] Projects: /dev/null/inferredProject1* -Info 14 [16:00:31.000] getSemanticDiagnostics:: /c/f1.ts:: 1 -Info 15 [16:00:32.000] ../f1.ts(1,1): error TS2304: Cannot find name 'foo'. +Info 14 [00:00:27.000] ----------------------------------------------- +Info 14 [00:00:28.000] Open files: +Info 14 [00:00:29.000] FileName: /c/d/f0.ts ProjectRootPath: undefined +Info 14 [00:00:30.000] Projects: /dev/null/inferredProject1* +Info 14 [00:00:31.000] getSemanticDiagnostics:: /c/f1.ts:: 1 +Info 15 [00:00:32.000] ../f1.ts(1,1): error TS2304: Cannot find name 'foo'. -Info 16 [16:00:33.000] Starting updateGraphWorker: Project: /dev/null/inferredProject1* -Info 17 [16:00:34.000] Finishing updateGraphWorker: Project: /dev/null/inferredProject1* Version: 2 structureChanged: false structureIsReused:: Completely Elapsed:: *ms -Info 18 [16:00:35.000] Different program with same set of files -Info 19 [16:00:36.000] getSemanticDiagnostics:: /c/f1.ts:: 1 -Info 20 [16:00:37.000] ../f1.ts(1,1): error TS2304: Cannot find name 'foo'. +Info 16 [00:00:33.000] Starting updateGraphWorker: Project: /dev/null/inferredProject1* +Info 17 [00:00:34.000] Finishing updateGraphWorker: Project: /dev/null/inferredProject1* Version: 2 structureChanged: false structureIsReused:: Completely Elapsed:: *ms +Info 18 [00:00:35.000] Different program with same set of files +Info 19 [00:00:36.000] getSemanticDiagnostics:: /c/f1.ts:: 1 +Info 20 [00:00:37.000] ../f1.ts(1,1): error TS2304: Cannot find name 'foo'. -Info 21 [16:00:38.000] fileExists:: [] -Info 22 [16:00:39.000] directoryExists:: [] -Info 23 [16:00:40.000] getDirectories:: [] -Info 24 [16:00:41.000] readFile:: [] -Info 25 [16:00:42.000] readDirectory:: [] -Info 26 [16:00:43.000] Starting updateGraphWorker: Project: /dev/null/inferredProject1* -Info 27 [16:00:44.000] DirectoryWatcher:: Added:: WatchInfo: /c/d/node_modules 1 undefined Project: /dev/null/inferredProject1* WatchType: Failed Lookup Locations -Info 28 [16:00:45.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /c/d/node_modules 1 undefined Project: /dev/null/inferredProject1* WatchType: Failed Lookup Locations -Info 29 [16:00:46.000] Finishing updateGraphWorker: Project: /dev/null/inferredProject1* Version: 3 structureChanged: true structureIsReused:: SafeModules Elapsed:: *ms -Info 30 [16:00:47.000] Project '/dev/null/inferredProject1*' (Inferred) -Info 31 [16:00:48.000] Files (1) +Info 21 [00:00:38.000] fileExists:: [] +Info 22 [00:00:39.000] directoryExists:: [] +Info 23 [00:00:40.000] getDirectories:: [] +Info 24 [00:00:41.000] readFile:: [] +Info 25 [00:00:42.000] readDirectory:: [] +Info 26 [00:00:43.000] Starting updateGraphWorker: Project: /dev/null/inferredProject1* +Info 27 [00:00:44.000] DirectoryWatcher:: Added:: WatchInfo: /c/d/node_modules 1 undefined Project: /dev/null/inferredProject1* WatchType: Failed Lookup Locations +Info 28 [00:00:45.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /c/d/node_modules 1 undefined Project: /dev/null/inferredProject1* WatchType: Failed Lookup Locations +Info 29 [00:00:46.000] Finishing updateGraphWorker: Project: /dev/null/inferredProject1* Version: 3 structureChanged: true structureIsReused:: SafeModules Elapsed:: *ms +Info 30 [00:00:47.000] Project '/dev/null/inferredProject1*' (Inferred) +Info 31 [00:00:48.000] Files (1) /c/d/f0.ts f0.ts Root file specified for compilation -Info 32 [16:00:49.000] ----------------------------------------------- -Info 33 [16:00:50.000] Could not find source file: '/c/f1.ts'. -Info 34 [16:00:51.000] fileExists:: [{"key":"/c/d/f2.ts","count":1},{"key":"/c/d/f2.tsx","count":1},{"key":"/c/d/f2.d.ts","count":1},{"key":"/c/f2.ts","count":1},{"key":"/c/f2.tsx","count":1},{"key":"/c/f2.d.ts","count":1},{"key":"/f2.ts","count":1},{"key":"/f2.tsx","count":1},{"key":"/f2.d.ts","count":1},{"key":"/c/d/f2.js","count":1},{"key":"/c/d/f2.jsx","count":1},{"key":"/c/f2.js","count":1},{"key":"/c/f2.jsx","count":1},{"key":"/f2.js","count":1},{"key":"/f2.jsx","count":1}] -Info 35 [16:00:52.000] directoryExists:: [{"key":"/c/d","count":2},{"key":"/c","count":2},{"key":"/","count":2},{"key":"/c/d/node_modules","count":2},{"key":"/c/node_modules","count":1},{"key":"/node_modules","count":1},{"key":"/c/d/node_modules/@types","count":1},{"key":"/c/node_modules/@types","count":1},{"key":"/node_modules/@types","count":1}] -Info 36 [16:00:53.000] getDirectories:: [] -Info 37 [16:00:54.000] readFile:: [] -Info 38 [16:00:55.000] readDirectory:: [] -Info 39 [16:00:56.000] Starting updateGraphWorker: Project: /dev/null/inferredProject1* -Info 40 [16:00:57.000] DirectoryWatcher:: Close:: WatchInfo: /c/d/node_modules 1 undefined Project: /dev/null/inferredProject1* WatchType: Failed Lookup Locations -Info 41 [16:00:58.000] Elapsed:: *ms DirectoryWatcher:: Close:: WatchInfo: /c/d/node_modules 1 undefined Project: /dev/null/inferredProject1* WatchType: Failed Lookup Locations -Info 42 [16:00:59.000] Finishing updateGraphWorker: Project: /dev/null/inferredProject1* Version: 4 structureChanged: true structureIsReused:: SafeModules Elapsed:: *ms -Info 43 [16:01:00.000] Project '/dev/null/inferredProject1*' (Inferred) -Info 44 [16:01:01.000] Files (2) +Info 32 [00:00:49.000] ----------------------------------------------- +Info 33 [00:00:50.000] Could not find source file: '/c/f1.ts'. +Info 34 [00:00:51.000] fileExists:: [{"key":"/c/d/f2.ts","count":1},{"key":"/c/d/f2.tsx","count":1},{"key":"/c/d/f2.d.ts","count":1},{"key":"/c/f2.ts","count":1},{"key":"/c/f2.tsx","count":1},{"key":"/c/f2.d.ts","count":1},{"key":"/f2.ts","count":1},{"key":"/f2.tsx","count":1},{"key":"/f2.d.ts","count":1},{"key":"/c/d/f2.js","count":1},{"key":"/c/d/f2.jsx","count":1},{"key":"/c/f2.js","count":1},{"key":"/c/f2.jsx","count":1},{"key":"/f2.js","count":1},{"key":"/f2.jsx","count":1}] +Info 35 [00:00:52.000] directoryExists:: [{"key":"/c/d","count":2},{"key":"/c","count":2},{"key":"/","count":2},{"key":"/c/d/node_modules","count":2},{"key":"/c/node_modules","count":1},{"key":"/node_modules","count":1},{"key":"/c/d/node_modules/@types","count":1},{"key":"/c/node_modules/@types","count":1},{"key":"/node_modules/@types","count":1}] +Info 36 [00:00:53.000] getDirectories:: [] +Info 37 [00:00:54.000] readFile:: [] +Info 38 [00:00:55.000] readDirectory:: [] +Info 39 [00:00:56.000] Starting updateGraphWorker: Project: /dev/null/inferredProject1* +Info 40 [00:00:57.000] DirectoryWatcher:: Close:: WatchInfo: /c/d/node_modules 1 undefined Project: /dev/null/inferredProject1* WatchType: Failed Lookup Locations +Info 41 [00:00:58.000] Elapsed:: *ms DirectoryWatcher:: Close:: WatchInfo: /c/d/node_modules 1 undefined Project: /dev/null/inferredProject1* WatchType: Failed Lookup Locations +Info 42 [00:00:59.000] Finishing updateGraphWorker: Project: /dev/null/inferredProject1* Version: 4 structureChanged: true structureIsReused:: SafeModules Elapsed:: *ms +Info 43 [00:01:00.000] Project '/dev/null/inferredProject1*' (Inferred) +Info 44 [00:01:01.000] Files (2) /c/f1.ts /c/d/f0.ts @@ -90,33 +90,33 @@ Info 44 [16:01:01.000] Files (2) f0.ts Root file specified for compilation -Info 45 [16:01:02.000] ----------------------------------------------- -Info 46 [16:01:03.000] getSemanticDiagnostics:: /c/f1.ts:: 1 -Info 47 [16:01:04.000] ../f1.ts(1,1): error TS2304: Cannot find name 'foo'. +Info 45 [00:01:02.000] ----------------------------------------------- +Info 46 [00:01:03.000] getSemanticDiagnostics:: /c/f1.ts:: 1 +Info 47 [00:01:04.000] ../f1.ts(1,1): error TS2304: Cannot find name 'foo'. -Info 48 [16:01:05.000] fileExists:: [{"key":"/c/d/f1.ts","count":1},{"key":"/c/d/f1.tsx","count":1},{"key":"/c/d/f1.d.ts","count":1},{"key":"/c/f1.ts","count":1}] -Info 49 [16:01:06.000] directoryExists:: [{"key":"/c/d","count":1},{"key":"/c","count":1},{"key":"/c/d/node_modules/@types","count":1},{"key":"/c/node_modules/@types","count":1},{"key":"/node_modules/@types","count":1}] -Info 50 [16:01:07.000] getDirectories:: [] -Info 51 [16:01:08.000] readFile:: [] -Info 52 [16:01:09.000] readDirectory:: [] -Info 53 [16:01:10.000] DirectoryWatcher:: Close:: WatchInfo: /c/d 0 undefined Project: /dev/null/inferredProject1* WatchType: Failed Lookup Locations -Info 54 [16:01:11.000] Elapsed:: *ms DirectoryWatcher:: Close:: WatchInfo: /c/d 0 undefined Project: /dev/null/inferredProject1* WatchType: Failed Lookup Locations -Info 55 [16:01:12.000] DirectoryWatcher:: Close:: WatchInfo: /c/d/node_modules/@types 1 undefined Project: /dev/null/inferredProject1* WatchType: Type roots -Info 56 [16:01:13.000] Elapsed:: *ms DirectoryWatcher:: Close:: WatchInfo: /c/d/node_modules/@types 1 undefined Project: /dev/null/inferredProject1* WatchType: Type roots -Info 57 [16:01:14.000] Scheduled: /dev/null/inferredProject1* -Info 58 [16:01:15.000] Scheduled: *ensureProjectForOpenFiles* -Info 59 [16:01:16.000] Starting updateGraphWorker: Project: /dev/null/inferredProject1* -Info 60 [16:01:17.000] DirectoryWatcher:: Added:: WatchInfo: /c/d 0 undefined Project: /dev/null/inferredProject1* WatchType: Failed Lookup Locations -Info 61 [16:01:18.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /c/d 0 undefined Project: /dev/null/inferredProject1* WatchType: Failed Lookup Locations -Info 62 [16:01:19.000] DirectoryWatcher:: Added:: WatchInfo: /c/d/node_modules/@types 1 undefined Project: /dev/null/inferredProject1* WatchType: Type roots -Info 63 [16:01:20.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /c/d/node_modules/@types 1 undefined Project: /dev/null/inferredProject1* WatchType: Type roots -Info 64 [16:01:21.000] Finishing updateGraphWorker: Project: /dev/null/inferredProject1* Version: 5 structureChanged: true structureIsReused:: Not Elapsed:: *ms -Info 65 [16:01:22.000] Different program with same set of files -Info 66 [16:01:23.000] getSemanticDiagnostics:: /c/f1.ts:: 1 -Info 67 [16:01:24.000] ../f1.ts(1,1): error TS2304: Cannot find name 'foo'. +Info 48 [00:01:05.000] fileExists:: [{"key":"/c/d/f1.ts","count":1},{"key":"/c/d/f1.tsx","count":1},{"key":"/c/d/f1.d.ts","count":1},{"key":"/c/f1.ts","count":1}] +Info 49 [00:01:06.000] directoryExists:: [{"key":"/c/d","count":1},{"key":"/c","count":1},{"key":"/c/d/node_modules/@types","count":1},{"key":"/c/node_modules/@types","count":1},{"key":"/node_modules/@types","count":1}] +Info 50 [00:01:07.000] getDirectories:: [] +Info 51 [00:01:08.000] readFile:: [] +Info 52 [00:01:09.000] readDirectory:: [] +Info 53 [00:01:10.000] DirectoryWatcher:: Close:: WatchInfo: /c/d 0 undefined Project: /dev/null/inferredProject1* WatchType: Failed Lookup Locations +Info 54 [00:01:11.000] Elapsed:: *ms DirectoryWatcher:: Close:: WatchInfo: /c/d 0 undefined Project: /dev/null/inferredProject1* WatchType: Failed Lookup Locations +Info 55 [00:01:12.000] DirectoryWatcher:: Close:: WatchInfo: /c/d/node_modules/@types 1 undefined Project: /dev/null/inferredProject1* WatchType: Type roots +Info 56 [00:01:13.000] Elapsed:: *ms DirectoryWatcher:: Close:: WatchInfo: /c/d/node_modules/@types 1 undefined Project: /dev/null/inferredProject1* WatchType: Type roots +Info 57 [00:01:14.000] Scheduled: /dev/null/inferredProject1* +Info 58 [00:01:15.000] Scheduled: *ensureProjectForOpenFiles* +Info 59 [00:01:16.000] Starting updateGraphWorker: Project: /dev/null/inferredProject1* +Info 60 [00:01:17.000] DirectoryWatcher:: Added:: WatchInfo: /c/d 0 undefined Project: /dev/null/inferredProject1* WatchType: Failed Lookup Locations +Info 61 [00:01:18.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /c/d 0 undefined Project: /dev/null/inferredProject1* WatchType: Failed Lookup Locations +Info 62 [00:01:19.000] DirectoryWatcher:: Added:: WatchInfo: /c/d/node_modules/@types 1 undefined Project: /dev/null/inferredProject1* WatchType: Type roots +Info 63 [00:01:20.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /c/d/node_modules/@types 1 undefined Project: /dev/null/inferredProject1* WatchType: Type roots +Info 64 [00:01:21.000] Finishing updateGraphWorker: Project: /dev/null/inferredProject1* Version: 5 structureChanged: true structureIsReused:: Not Elapsed:: *ms +Info 65 [00:01:22.000] Different program with same set of files +Info 66 [00:01:23.000] getSemanticDiagnostics:: /c/f1.ts:: 1 +Info 67 [00:01:24.000] ../f1.ts(1,1): error TS2304: Cannot find name 'foo'. -Info 68 [16:01:25.000] fileExists:: [{"key":"/c/d/f1.ts","count":1},{"key":"/c/d/f1.tsx","count":1},{"key":"/c/d/f1.d.ts","count":1},{"key":"/c/f1.ts","count":1}] -Info 69 [16:01:26.000] directoryExists:: [{"key":"/c/d","count":2},{"key":"/c","count":1},{"key":"/c/d/node_modules/@types","count":2},{"key":"/c/node_modules/@types","count":1},{"key":"/node_modules/@types","count":1}] -Info 70 [16:01:27.000] getDirectories:: [] -Info 71 [16:01:28.000] readFile:: [] -Info 72 [16:01:29.000] readDirectory:: [] \ No newline at end of file +Info 68 [00:01:25.000] fileExists:: [{"key":"/c/d/f1.ts","count":1},{"key":"/c/d/f1.tsx","count":1},{"key":"/c/d/f1.d.ts","count":1},{"key":"/c/f1.ts","count":1}] +Info 69 [00:01:26.000] directoryExists:: [{"key":"/c/d","count":2},{"key":"/c","count":1},{"key":"/c/d/node_modules/@types","count":2},{"key":"/c/node_modules/@types","count":1},{"key":"/node_modules/@types","count":1}] +Info 70 [00:01:27.000] getDirectories:: [] +Info 71 [00:01:28.000] readFile:: [] +Info 72 [00:01:29.000] readDirectory:: [] \ No newline at end of file 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 3bf144e306c6d..db685a0b263b1 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 @@ -1,4 +1,4 @@ -Info 0 [16:00:23.000] Provided types map file "/typesMap.json" doesn't exist +Info 0 [00:00:23.000] Provided types map file "/typesMap.json" doesn't exist Creating project service //// [/a/b/projects/project/src/file1.ts] @@ -29,11 +29,11 @@ FsWatches:: FsWatchesRecursive:: -Info 1 [16:00:24.000] Search path: /a/b/projects/project/src -Info 2 [16:00:25.000] For info: /a/b/projects/project/src/file1.ts :: Config file name: /a/b/projects/project/src/tsconfig.json -Info 3 [16:00:26.000] Creating configuration project /a/b/projects/project/src/tsconfig.json -Info 4 [16:00:27.000] FileWatcher:: Added:: WatchInfo: /a/b/projects/project/src/tsconfig.json 2000 undefined Project: /a/b/projects/project/src/tsconfig.json WatchType: Config file -Info 5 [16:00:28.000] Config: /a/b/projects/project/src/tsconfig.json : { +Info 1 [00:00:24.000] Search path: /a/b/projects/project/src +Info 2 [00:00:25.000] For info: /a/b/projects/project/src/file1.ts :: Config file name: /a/b/projects/project/src/tsconfig.json +Info 3 [00:00:26.000] Creating configuration project /a/b/projects/project/src/tsconfig.json +Info 4 [00:00:27.000] FileWatcher:: Added:: WatchInfo: /a/b/projects/project/src/tsconfig.json 2000 undefined Project: /a/b/projects/project/src/tsconfig.json WatchType: Config file +Info 5 [00:00:28.000] Config: /a/b/projects/project/src/tsconfig.json : { "rootNames": [ "/a/b/projects/project/src/file1.ts" ], @@ -41,18 +41,18 @@ Info 5 [16:00:28.000] Config: /a/b/projects/project/src/tsconfig.json : { "configFilePath": "/a/b/projects/project/src/tsconfig.json" } } -Info 6 [16:00:29.000] DirectoryWatcher:: Added:: WatchInfo: /a/b/projects/project/src 1 undefined Config: /a/b/projects/project/src/tsconfig.json WatchType: Wild card directory -Info 7 [16:00:30.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /a/b/projects/project/src 1 undefined Config: /a/b/projects/project/src/tsconfig.json WatchType: Wild card directory -Info 8 [16:00:31.000] Plugins were requested but not running in environment that supports 'require'. Nothing will be loaded -Info 9 [16:00:32.000] Starting updateGraphWorker: Project: /a/b/projects/project/src/tsconfig.json -Info 10 [16:00:33.000] FileWatcher:: Added:: WatchInfo: /a/lib/lib.d.ts 500 undefined WatchType: Closed Script info -Info 11 [16:00:34.000] DirectoryWatcher:: Added:: WatchInfo: /a/b/projects/project/src/node_modules/@types 1 undefined Project: /a/b/projects/project/src/tsconfig.json WatchType: Type roots -Info 12 [16:00:35.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /a/b/projects/project/src/node_modules/@types 1 undefined Project: /a/b/projects/project/src/tsconfig.json WatchType: Type roots -Info 13 [16:00:36.000] DirectoryWatcher:: Added:: WatchInfo: /a/b/projects/project/node_modules/@types 1 undefined Project: /a/b/projects/project/src/tsconfig.json WatchType: Type roots -Info 14 [16:00:37.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /a/b/projects/project/node_modules/@types 1 undefined Project: /a/b/projects/project/src/tsconfig.json WatchType: Type roots -Info 15 [16:00:38.000] Finishing updateGraphWorker: Project: /a/b/projects/project/src/tsconfig.json Version: 1 structureChanged: true structureIsReused:: Not Elapsed:: *ms -Info 16 [16:00:39.000] Project '/a/b/projects/project/src/tsconfig.json' (Configured) -Info 17 [16:00:40.000] Files (2) +Info 6 [00:00:29.000] DirectoryWatcher:: Added:: WatchInfo: /a/b/projects/project/src 1 undefined Config: /a/b/projects/project/src/tsconfig.json WatchType: Wild card directory +Info 7 [00:00:30.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /a/b/projects/project/src 1 undefined Config: /a/b/projects/project/src/tsconfig.json WatchType: Wild card directory +Info 8 [00:00:31.000] Plugins were requested but not running in environment that supports 'require'. Nothing will be loaded +Info 9 [00:00:32.000] Starting updateGraphWorker: Project: /a/b/projects/project/src/tsconfig.json +Info 10 [00:00:33.000] FileWatcher:: Added:: WatchInfo: /a/lib/lib.d.ts 500 undefined WatchType: Closed Script info +Info 11 [00:00:34.000] DirectoryWatcher:: Added:: WatchInfo: /a/b/projects/project/src/node_modules/@types 1 undefined Project: /a/b/projects/project/src/tsconfig.json WatchType: Type roots +Info 12 [00:00:35.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /a/b/projects/project/src/node_modules/@types 1 undefined Project: /a/b/projects/project/src/tsconfig.json WatchType: Type roots +Info 13 [00:00:36.000] DirectoryWatcher:: Added:: WatchInfo: /a/b/projects/project/node_modules/@types 1 undefined Project: /a/b/projects/project/src/tsconfig.json WatchType: Type roots +Info 14 [00:00:37.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /a/b/projects/project/node_modules/@types 1 undefined Project: /a/b/projects/project/src/tsconfig.json WatchType: Type roots +Info 15 [00:00:38.000] Finishing updateGraphWorker: Project: /a/b/projects/project/src/tsconfig.json Version: 1 structureChanged: true structureIsReused:: Not Elapsed:: *ms +Info 16 [00:00:39.000] Project '/a/b/projects/project/src/tsconfig.json' (Configured) +Info 17 [00:00:40.000] Files (2) /a/lib/lib.d.ts /a/b/projects/project/src/file1.ts @@ -62,18 +62,18 @@ Info 17 [16:00:40.000] Files (2) file1.ts Matched by default include pattern '**/*' -Info 18 [16:00:41.000] ----------------------------------------------- -Info 19 [16:00:42.000] Project '/a/b/projects/project/src/tsconfig.json' (Configured) -Info 19 [16:00:43.000] Files (2) - -Info 19 [16:00:44.000] ----------------------------------------------- -Info 19 [16:00:45.000] Open files: -Info 19 [16:00:46.000] FileName: /a/b/projects/project/src/file1.ts ProjectRootPath: /a/b/projects/project -Info 19 [16:00:47.000] Projects: /a/b/projects/project/src/tsconfig.json -Info 19 [16:00:49.000] FileWatcher:: Triggered with /a/b/projects/project/src/tsconfig.json 2:: WatchInfo: /a/b/projects/project/src/tsconfig.json 2000 undefined Project: /a/b/projects/project/src/tsconfig.json WatchType: Config file -Info 20 [16:00:50.000] `remove Project:: -Info 21 [16:00:51.000] Project '/a/b/projects/project/src/tsconfig.json' (Configured) -Info 22 [16:00:52.000] Files (2) +Info 18 [00:00:41.000] ----------------------------------------------- +Info 19 [00:00:42.000] Project '/a/b/projects/project/src/tsconfig.json' (Configured) +Info 19 [00:00:43.000] Files (2) + +Info 19 [00:00:44.000] ----------------------------------------------- +Info 19 [00:00:45.000] Open files: +Info 19 [00:00:46.000] FileName: /a/b/projects/project/src/file1.ts ProjectRootPath: /a/b/projects/project +Info 19 [00:00:47.000] Projects: /a/b/projects/project/src/tsconfig.json +Info 19 [00:00:49.000] FileWatcher:: Triggered with /a/b/projects/project/src/tsconfig.json 2:: WatchInfo: /a/b/projects/project/src/tsconfig.json 2000 undefined Project: /a/b/projects/project/src/tsconfig.json WatchType: Config file +Info 20 [00:00:50.000] `remove Project:: +Info 21 [00:00:51.000] Project '/a/b/projects/project/src/tsconfig.json' (Configured) +Info 22 [00:00:52.000] Files (2) /a/lib/lib.d.ts /a/b/projects/project/src/file1.ts @@ -83,18 +83,18 @@ Info 22 [16:00:52.000] Files (2) file1.ts Matched by default include pattern '**/*' -Info 23 [16:00:53.000] ----------------------------------------------- -Info 24 [16:00:54.000] DirectoryWatcher:: Close:: WatchInfo: /a/b/projects/project/src 1 undefined Config: /a/b/projects/project/src/tsconfig.json WatchType: Wild card directory -Info 25 [16:00:55.000] Elapsed:: *ms DirectoryWatcher:: Close:: WatchInfo: /a/b/projects/project/src 1 undefined Config: /a/b/projects/project/src/tsconfig.json WatchType: Wild card directory -Info 26 [16:00:56.000] FileWatcher:: Close:: WatchInfo: /a/b/projects/project/src/tsconfig.json 2000 undefined Project: /a/b/projects/project/src/tsconfig.json WatchType: Config file -Info 27 [16:00:57.000] DirectoryWatcher:: Close:: WatchInfo: /a/b/projects/project/src/node_modules/@types 1 undefined Project: /a/b/projects/project/src/tsconfig.json WatchType: Type roots -Info 28 [16:00:58.000] Elapsed:: *ms DirectoryWatcher:: Close:: WatchInfo: /a/b/projects/project/src/node_modules/@types 1 undefined Project: /a/b/projects/project/src/tsconfig.json WatchType: Type roots -Info 29 [16:00:59.000] DirectoryWatcher:: Close:: WatchInfo: /a/b/projects/project/node_modules/@types 1 undefined Project: /a/b/projects/project/src/tsconfig.json WatchType: Type roots -Info 30 [16:01:00.000] Elapsed:: *ms DirectoryWatcher:: Close:: WatchInfo: /a/b/projects/project/node_modules/@types 1 undefined Project: /a/b/projects/project/src/tsconfig.json WatchType: Type roots -Info 31 [16:01:01.000] Search path: /a/b/projects/project/src -Info 32 [16:01:02.000] For info: /a/b/projects/project/src/file1.ts :: No config files found. -Info 33 [16:01:03.000] Scheduled: *ensureProjectForOpenFiles* -Info 34 [16:01:04.000] Elapsed:: *ms FileWatcher:: Triggered with /a/b/projects/project/src/tsconfig.json 2:: WatchInfo: /a/b/projects/project/src/tsconfig.json 2000 undefined Project: /a/b/projects/project/src/tsconfig.json WatchType: Config file +Info 23 [00:00:53.000] ----------------------------------------------- +Info 24 [00:00:54.000] DirectoryWatcher:: Close:: WatchInfo: /a/b/projects/project/src 1 undefined Config: /a/b/projects/project/src/tsconfig.json WatchType: Wild card directory +Info 25 [00:00:55.000] Elapsed:: *ms DirectoryWatcher:: Close:: WatchInfo: /a/b/projects/project/src 1 undefined Config: /a/b/projects/project/src/tsconfig.json WatchType: Wild card directory +Info 26 [00:00:56.000] FileWatcher:: Close:: WatchInfo: /a/b/projects/project/src/tsconfig.json 2000 undefined Project: /a/b/projects/project/src/tsconfig.json WatchType: Config file +Info 27 [00:00:57.000] DirectoryWatcher:: Close:: WatchInfo: /a/b/projects/project/src/node_modules/@types 1 undefined Project: /a/b/projects/project/src/tsconfig.json WatchType: Type roots +Info 28 [00:00:58.000] Elapsed:: *ms DirectoryWatcher:: Close:: WatchInfo: /a/b/projects/project/src/node_modules/@types 1 undefined Project: /a/b/projects/project/src/tsconfig.json WatchType: Type roots +Info 29 [00:00:59.000] DirectoryWatcher:: Close:: WatchInfo: /a/b/projects/project/node_modules/@types 1 undefined Project: /a/b/projects/project/src/tsconfig.json WatchType: Type roots +Info 30 [00:01:00.000] Elapsed:: *ms DirectoryWatcher:: Close:: WatchInfo: /a/b/projects/project/node_modules/@types 1 undefined Project: /a/b/projects/project/src/tsconfig.json WatchType: Type roots +Info 31 [00:01:01.000] Search path: /a/b/projects/project/src +Info 32 [00:01:02.000] For info: /a/b/projects/project/src/file1.ts :: No config files found. +Info 33 [00:01:03.000] Scheduled: *ensureProjectForOpenFiles* +Info 34 [00:01:04.000] Elapsed:: *ms FileWatcher:: Triggered with /a/b/projects/project/src/tsconfig.json 2:: WatchInfo: /a/b/projects/project/src/tsconfig.json 2000 undefined Project: /a/b/projects/project/src/tsconfig.json WatchType: Config file Before running timeout callbacks //// [/a/b/projects/project/src/tsconfig.json] deleted @@ -106,22 +106,22 @@ FsWatches:: FsWatchesRecursive:: -Info 35 [16:01:05.500] Running: *ensureProjectForOpenFiles* -Info 36 [16:01:06.500] Before ensureProjectForOpenFiles: -Info 37 [16:01:07.500] Open files: -Info 37 [16:01:08.500] FileName: /a/b/projects/project/src/file1.ts ProjectRootPath: /a/b/projects/project -Info 37 [16:01:09.500] Projects: -Info 37 [16:01:10.500] Plugins were requested but not running in environment that supports 'require'. Nothing will be loaded -Info 38 [16:01:11.500] FileWatcher:: Added:: WatchInfo: /a/b/projects/project/src/tsconfig.json 2000 undefined WatchType: Config file for the inferred project root -Info 39 [16:01:12.500] FileWatcher:: Added:: WatchInfo: /a/b/projects/project/src/jsconfig.json 2000 undefined WatchType: Config file for the inferred project root -Info 40 [16:01:13.500] FileWatcher:: Added:: WatchInfo: /a/b/projects/project/tsconfig.json 2000 undefined WatchType: Config file for the inferred project root -Info 41 [16:01:14.500] FileWatcher:: Added:: WatchInfo: /a/b/projects/project/jsconfig.json 2000 undefined WatchType: Config file for the inferred project root -Info 42 [16:01:15.500] Starting updateGraphWorker: Project: /dev/null/inferredProject1* -Info 43 [16:01:16.500] DirectoryWatcher:: Added:: WatchInfo: /a/b/projects/project/node_modules/@types 1 undefined Project: /dev/null/inferredProject1* WatchType: Type roots -Info 44 [16:01:17.500] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /a/b/projects/project/node_modules/@types 1 undefined Project: /dev/null/inferredProject1* WatchType: Type roots -Info 45 [16:01:18.500] Finishing updateGraphWorker: Project: /dev/null/inferredProject1* Version: 1 structureChanged: true structureIsReused:: Not Elapsed:: *ms -Info 46 [16:01:19.500] Project '/dev/null/inferredProject1*' (Inferred) -Info 47 [16:01:20.500] Files (2) +Info 35 [00:01:05.500] Running: *ensureProjectForOpenFiles* +Info 36 [00:01:06.500] Before ensureProjectForOpenFiles: +Info 37 [00:01:07.500] Open files: +Info 37 [00:01:08.500] FileName: /a/b/projects/project/src/file1.ts ProjectRootPath: /a/b/projects/project +Info 37 [00:01:09.500] Projects: +Info 37 [00:01:10.500] Plugins were requested but not running in environment that supports 'require'. Nothing will be loaded +Info 38 [00:01:11.500] FileWatcher:: Added:: WatchInfo: /a/b/projects/project/src/tsconfig.json 2000 undefined WatchType: Config file for the inferred project root +Info 39 [00:01:12.500] FileWatcher:: Added:: WatchInfo: /a/b/projects/project/src/jsconfig.json 2000 undefined WatchType: Config file for the inferred project root +Info 40 [00:01:13.500] FileWatcher:: Added:: WatchInfo: /a/b/projects/project/tsconfig.json 2000 undefined WatchType: Config file for the inferred project root +Info 41 [00:01:14.500] FileWatcher:: Added:: WatchInfo: /a/b/projects/project/jsconfig.json 2000 undefined WatchType: Config file for the inferred project root +Info 42 [00:01:15.500] Starting updateGraphWorker: Project: /dev/null/inferredProject1* +Info 43 [00:01:16.500] DirectoryWatcher:: Added:: WatchInfo: /a/b/projects/project/node_modules/@types 1 undefined Project: /dev/null/inferredProject1* WatchType: Type roots +Info 44 [00:01:17.500] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /a/b/projects/project/node_modules/@types 1 undefined Project: /dev/null/inferredProject1* WatchType: Type roots +Info 45 [00:01:18.500] Finishing updateGraphWorker: Project: /dev/null/inferredProject1* Version: 1 structureChanged: true structureIsReused:: Not Elapsed:: *ms +Info 46 [00:01:19.500] Project '/dev/null/inferredProject1*' (Inferred) +Info 47 [00:01:20.500] Files (2) /a/lib/lib.d.ts /a/b/projects/project/src/file1.ts @@ -131,15 +131,15 @@ Info 47 [16:01:20.500] Files (2) src/file1.ts Root file specified for compilation -Info 48 [16:01:21.500] ----------------------------------------------- -Info 49 [16:01:22.500] After ensureProjectForOpenFiles: -Info 50 [16:01:23.500] Project '/dev/null/inferredProject1*' (Inferred) -Info 50 [16:01:24.500] Files (2) +Info 48 [00:01:21.500] ----------------------------------------------- +Info 49 [00:01:22.500] After ensureProjectForOpenFiles: +Info 50 [00:01:23.500] Project '/dev/null/inferredProject1*' (Inferred) +Info 50 [00:01:24.500] Files (2) -Info 50 [16:01:25.500] ----------------------------------------------- -Info 50 [16:01:26.500] Open files: -Info 50 [16:01:27.500] FileName: /a/b/projects/project/src/file1.ts ProjectRootPath: /a/b/projects/project -Info 50 [16:01:28.500] Projects: /dev/null/inferredProject1* +Info 50 [00:01:25.500] ----------------------------------------------- +Info 50 [00:01:26.500] Open files: +Info 50 [00:01:27.500] FileName: /a/b/projects/project/src/file1.ts ProjectRootPath: /a/b/projects/project +Info 50 [00:01:28.500] Projects: /dev/null/inferredProject1* After running timeout callbacks PolledWatches:: 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 0b6bd1d7bbc4a..6dda94d0efabd 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 @@ -1,4 +1,4 @@ -Info 0 [16:00:23.000] Provided types map file "/typesMap.json" doesn't exist +Info 0 [00:00:23.000] Provided types map file "/typesMap.json" doesn't exist Creating project service //// [/a/b/projects/project/src/file1.ts] @@ -29,11 +29,11 @@ FsWatches:: FsWatchesRecursive:: -Info 1 [16:00:24.000] Search path: /a/b/projects/project/src -Info 2 [16:00:25.000] For info: /a/b/projects/project/src/file1.ts :: Config file name: /a/b/projects/project/src/tsconfig.json -Info 3 [16:00:26.000] Creating configuration project /a/b/projects/project/src/tsconfig.json -Info 4 [16:00:27.000] FileWatcher:: Added:: WatchInfo: /a/b/projects/project/src/tsconfig.json 2000 undefined Project: /a/b/projects/project/src/tsconfig.json WatchType: Config file -Info 5 [16:00:28.000] Config: /a/b/projects/project/src/tsconfig.json : { +Info 1 [00:00:24.000] Search path: /a/b/projects/project/src +Info 2 [00:00:25.000] For info: /a/b/projects/project/src/file1.ts :: Config file name: /a/b/projects/project/src/tsconfig.json +Info 3 [00:00:26.000] Creating configuration project /a/b/projects/project/src/tsconfig.json +Info 4 [00:00:27.000] FileWatcher:: Added:: WatchInfo: /a/b/projects/project/src/tsconfig.json 2000 undefined Project: /a/b/projects/project/src/tsconfig.json WatchType: Config file +Info 5 [00:00:28.000] Config: /a/b/projects/project/src/tsconfig.json : { "rootNames": [ "/a/b/projects/project/src/file1.ts" ], @@ -41,18 +41,18 @@ Info 5 [16:00:28.000] Config: /a/b/projects/project/src/tsconfig.json : { "configFilePath": "/a/b/projects/project/src/tsconfig.json" } } -Info 6 [16:00:29.000] DirectoryWatcher:: Added:: WatchInfo: /a/b/projects/project/src 1 undefined Config: /a/b/projects/project/src/tsconfig.json WatchType: Wild card directory -Info 7 [16:00:30.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /a/b/projects/project/src 1 undefined Config: /a/b/projects/project/src/tsconfig.json WatchType: Wild card directory -Info 8 [16:00:31.000] Plugins were requested but not running in environment that supports 'require'. Nothing will be loaded -Info 9 [16:00:32.000] Starting updateGraphWorker: Project: /a/b/projects/project/src/tsconfig.json -Info 10 [16:00:33.000] FileWatcher:: Added:: WatchInfo: /a/lib/lib.d.ts 500 undefined WatchType: Closed Script info -Info 11 [16:00:34.000] DirectoryWatcher:: Added:: WatchInfo: /a/b/projects/project/src/node_modules/@types 1 undefined Project: /a/b/projects/project/src/tsconfig.json WatchType: Type roots -Info 12 [16:00:35.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /a/b/projects/project/src/node_modules/@types 1 undefined Project: /a/b/projects/project/src/tsconfig.json WatchType: Type roots -Info 13 [16:00:36.000] DirectoryWatcher:: Added:: WatchInfo: /a/b/projects/project/node_modules/@types 1 undefined Project: /a/b/projects/project/src/tsconfig.json WatchType: Type roots -Info 14 [16:00:37.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /a/b/projects/project/node_modules/@types 1 undefined Project: /a/b/projects/project/src/tsconfig.json WatchType: Type roots -Info 15 [16:00:38.000] Finishing updateGraphWorker: Project: /a/b/projects/project/src/tsconfig.json Version: 1 structureChanged: true structureIsReused:: Not Elapsed:: *ms -Info 16 [16:00:39.000] Project '/a/b/projects/project/src/tsconfig.json' (Configured) -Info 17 [16:00:40.000] Files (2) +Info 6 [00:00:29.000] DirectoryWatcher:: Added:: WatchInfo: /a/b/projects/project/src 1 undefined Config: /a/b/projects/project/src/tsconfig.json WatchType: Wild card directory +Info 7 [00:00:30.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /a/b/projects/project/src 1 undefined Config: /a/b/projects/project/src/tsconfig.json WatchType: Wild card directory +Info 8 [00:00:31.000] Plugins were requested but not running in environment that supports 'require'. Nothing will be loaded +Info 9 [00:00:32.000] Starting updateGraphWorker: Project: /a/b/projects/project/src/tsconfig.json +Info 10 [00:00:33.000] FileWatcher:: Added:: WatchInfo: /a/lib/lib.d.ts 500 undefined WatchType: Closed Script info +Info 11 [00:00:34.000] DirectoryWatcher:: Added:: WatchInfo: /a/b/projects/project/src/node_modules/@types 1 undefined Project: /a/b/projects/project/src/tsconfig.json WatchType: Type roots +Info 12 [00:00:35.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /a/b/projects/project/src/node_modules/@types 1 undefined Project: /a/b/projects/project/src/tsconfig.json WatchType: Type roots +Info 13 [00:00:36.000] DirectoryWatcher:: Added:: WatchInfo: /a/b/projects/project/node_modules/@types 1 undefined Project: /a/b/projects/project/src/tsconfig.json WatchType: Type roots +Info 14 [00:00:37.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /a/b/projects/project/node_modules/@types 1 undefined Project: /a/b/projects/project/src/tsconfig.json WatchType: Type roots +Info 15 [00:00:38.000] Finishing updateGraphWorker: Project: /a/b/projects/project/src/tsconfig.json Version: 1 structureChanged: true structureIsReused:: Not Elapsed:: *ms +Info 16 [00:00:39.000] Project '/a/b/projects/project/src/tsconfig.json' (Configured) +Info 17 [00:00:40.000] Files (2) /a/lib/lib.d.ts /a/b/projects/project/src/file1.ts @@ -62,18 +62,18 @@ Info 17 [16:00:40.000] Files (2) file1.ts Matched by default include pattern '**/*' -Info 18 [16:00:41.000] ----------------------------------------------- -Info 19 [16:00:42.000] Project '/a/b/projects/project/src/tsconfig.json' (Configured) -Info 19 [16:00:43.000] Files (2) - -Info 19 [16:00:44.000] ----------------------------------------------- -Info 19 [16:00:45.000] Open files: -Info 19 [16:00:46.000] FileName: /a/b/projects/project/src/file1.ts ProjectRootPath: /a/b/projects/project -Info 19 [16:00:47.000] Projects: /a/b/projects/project/src/tsconfig.json -Info 19 [16:00:49.000] FileWatcher:: Triggered with /a/b/projects/project/src/tsconfig.json 2:: WatchInfo: /a/b/projects/project/src/tsconfig.json 2000 undefined Project: /a/b/projects/project/src/tsconfig.json WatchType: Config file -Info 20 [16:00:50.000] `remove Project:: -Info 21 [16:00:51.000] Project '/a/b/projects/project/src/tsconfig.json' (Configured) -Info 22 [16:00:52.000] Files (2) +Info 18 [00:00:41.000] ----------------------------------------------- +Info 19 [00:00:42.000] Project '/a/b/projects/project/src/tsconfig.json' (Configured) +Info 19 [00:00:43.000] Files (2) + +Info 19 [00:00:44.000] ----------------------------------------------- +Info 19 [00:00:45.000] Open files: +Info 19 [00:00:46.000] FileName: /a/b/projects/project/src/file1.ts ProjectRootPath: /a/b/projects/project +Info 19 [00:00:47.000] Projects: /a/b/projects/project/src/tsconfig.json +Info 19 [00:00:49.000] FileWatcher:: Triggered with /a/b/projects/project/src/tsconfig.json 2:: WatchInfo: /a/b/projects/project/src/tsconfig.json 2000 undefined Project: /a/b/projects/project/src/tsconfig.json WatchType: Config file +Info 20 [00:00:50.000] `remove Project:: +Info 21 [00:00:51.000] Project '/a/b/projects/project/src/tsconfig.json' (Configured) +Info 22 [00:00:52.000] Files (2) /a/lib/lib.d.ts /a/b/projects/project/src/file1.ts @@ -83,18 +83,18 @@ Info 22 [16:00:52.000] Files (2) file1.ts Matched by default include pattern '**/*' -Info 23 [16:00:53.000] ----------------------------------------------- -Info 24 [16:00:54.000] DirectoryWatcher:: Close:: WatchInfo: /a/b/projects/project/src 1 undefined Config: /a/b/projects/project/src/tsconfig.json WatchType: Wild card directory -Info 25 [16:00:55.000] Elapsed:: *ms DirectoryWatcher:: Close:: WatchInfo: /a/b/projects/project/src 1 undefined Config: /a/b/projects/project/src/tsconfig.json WatchType: Wild card directory -Info 26 [16:00:56.000] FileWatcher:: Close:: WatchInfo: /a/b/projects/project/src/tsconfig.json 2000 undefined Project: /a/b/projects/project/src/tsconfig.json WatchType: Config file -Info 27 [16:00:57.000] DirectoryWatcher:: Close:: WatchInfo: /a/b/projects/project/src/node_modules/@types 1 undefined Project: /a/b/projects/project/src/tsconfig.json WatchType: Type roots -Info 28 [16:00:58.000] Elapsed:: *ms DirectoryWatcher:: Close:: WatchInfo: /a/b/projects/project/src/node_modules/@types 1 undefined Project: /a/b/projects/project/src/tsconfig.json WatchType: Type roots -Info 29 [16:00:59.000] DirectoryWatcher:: Close:: WatchInfo: /a/b/projects/project/node_modules/@types 1 undefined Project: /a/b/projects/project/src/tsconfig.json WatchType: Type roots -Info 30 [16:01:00.000] Elapsed:: *ms DirectoryWatcher:: Close:: WatchInfo: /a/b/projects/project/node_modules/@types 1 undefined Project: /a/b/projects/project/src/tsconfig.json WatchType: Type roots -Info 31 [16:01:01.000] Search path: /a/b/projects/project/src -Info 32 [16:01:02.000] For info: /a/b/projects/project/src/file1.ts :: No config files found. -Info 33 [16:01:03.000] Scheduled: *ensureProjectForOpenFiles* -Info 34 [16:01:04.000] Elapsed:: *ms FileWatcher:: Triggered with /a/b/projects/project/src/tsconfig.json 2:: WatchInfo: /a/b/projects/project/src/tsconfig.json 2000 undefined Project: /a/b/projects/project/src/tsconfig.json WatchType: Config file +Info 23 [00:00:53.000] ----------------------------------------------- +Info 24 [00:00:54.000] DirectoryWatcher:: Close:: WatchInfo: /a/b/projects/project/src 1 undefined Config: /a/b/projects/project/src/tsconfig.json WatchType: Wild card directory +Info 25 [00:00:55.000] Elapsed:: *ms DirectoryWatcher:: Close:: WatchInfo: /a/b/projects/project/src 1 undefined Config: /a/b/projects/project/src/tsconfig.json WatchType: Wild card directory +Info 26 [00:00:56.000] FileWatcher:: Close:: WatchInfo: /a/b/projects/project/src/tsconfig.json 2000 undefined Project: /a/b/projects/project/src/tsconfig.json WatchType: Config file +Info 27 [00:00:57.000] DirectoryWatcher:: Close:: WatchInfo: /a/b/projects/project/src/node_modules/@types 1 undefined Project: /a/b/projects/project/src/tsconfig.json WatchType: Type roots +Info 28 [00:00:58.000] Elapsed:: *ms DirectoryWatcher:: Close:: WatchInfo: /a/b/projects/project/src/node_modules/@types 1 undefined Project: /a/b/projects/project/src/tsconfig.json WatchType: Type roots +Info 29 [00:00:59.000] DirectoryWatcher:: Close:: WatchInfo: /a/b/projects/project/node_modules/@types 1 undefined Project: /a/b/projects/project/src/tsconfig.json WatchType: Type roots +Info 30 [00:01:00.000] Elapsed:: *ms DirectoryWatcher:: Close:: WatchInfo: /a/b/projects/project/node_modules/@types 1 undefined Project: /a/b/projects/project/src/tsconfig.json WatchType: Type roots +Info 31 [00:01:01.000] Search path: /a/b/projects/project/src +Info 32 [00:01:02.000] For info: /a/b/projects/project/src/file1.ts :: No config files found. +Info 33 [00:01:03.000] Scheduled: *ensureProjectForOpenFiles* +Info 34 [00:01:04.000] Elapsed:: *ms FileWatcher:: Triggered with /a/b/projects/project/src/tsconfig.json 2:: WatchInfo: /a/b/projects/project/src/tsconfig.json 2000 undefined Project: /a/b/projects/project/src/tsconfig.json WatchType: Config file Before running timeout callbacks //// [/a/b/projects/project/src/tsconfig.json] deleted @@ -106,24 +106,24 @@ FsWatches:: FsWatchesRecursive:: -Info 35 [16:01:05.500] Running: *ensureProjectForOpenFiles* -Info 36 [16:01:06.500] Before ensureProjectForOpenFiles: -Info 37 [16:01:07.500] Open files: -Info 37 [16:01:08.500] FileName: /a/b/projects/project/src/file1.ts ProjectRootPath: /a/b/projects/project -Info 37 [16:01:09.500] Projects: -Info 37 [16:01:10.500] Plugins were requested but not running in environment that supports 'require'. Nothing will be loaded -Info 38 [16:01:11.500] FileWatcher:: Added:: WatchInfo: /a/b/projects/project/src/tsconfig.json 2000 undefined WatchType: Config file for the inferred project root -Info 39 [16:01:12.500] FileWatcher:: Added:: WatchInfo: /a/b/projects/project/src/jsconfig.json 2000 undefined WatchType: Config file for the inferred project root -Info 40 [16:01:13.500] FileWatcher:: Added:: WatchInfo: /a/b/projects/project/tsconfig.json 2000 undefined WatchType: Config file for the inferred project root -Info 41 [16:01:14.500] FileWatcher:: Added:: WatchInfo: /a/b/projects/project/jsconfig.json 2000 undefined WatchType: Config file for the inferred project root -Info 42 [16:01:15.500] Starting updateGraphWorker: Project: /dev/null/inferredProject1* -Info 43 [16:01:16.500] DirectoryWatcher:: Added:: WatchInfo: /a/b/projects/project/src/node_modules/@types 1 undefined Project: /dev/null/inferredProject1* WatchType: Type roots -Info 44 [16:01:17.500] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /a/b/projects/project/src/node_modules/@types 1 undefined Project: /dev/null/inferredProject1* WatchType: Type roots -Info 45 [16:01:18.500] DirectoryWatcher:: Added:: WatchInfo: /a/b/projects/project/node_modules/@types 1 undefined Project: /dev/null/inferredProject1* WatchType: Type roots -Info 46 [16:01:19.500] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /a/b/projects/project/node_modules/@types 1 undefined Project: /dev/null/inferredProject1* WatchType: Type roots -Info 47 [16:01:20.500] Finishing updateGraphWorker: Project: /dev/null/inferredProject1* Version: 1 structureChanged: true structureIsReused:: Not Elapsed:: *ms -Info 48 [16:01:21.500] Project '/dev/null/inferredProject1*' (Inferred) -Info 49 [16:01:22.500] Files (2) +Info 35 [00:01:05.500] Running: *ensureProjectForOpenFiles* +Info 36 [00:01:06.500] Before ensureProjectForOpenFiles: +Info 37 [00:01:07.500] Open files: +Info 37 [00:01:08.500] FileName: /a/b/projects/project/src/file1.ts ProjectRootPath: /a/b/projects/project +Info 37 [00:01:09.500] Projects: +Info 37 [00:01:10.500] Plugins were requested but not running in environment that supports 'require'. Nothing will be loaded +Info 38 [00:01:11.500] FileWatcher:: Added:: WatchInfo: /a/b/projects/project/src/tsconfig.json 2000 undefined WatchType: Config file for the inferred project root +Info 39 [00:01:12.500] FileWatcher:: Added:: WatchInfo: /a/b/projects/project/src/jsconfig.json 2000 undefined WatchType: Config file for the inferred project root +Info 40 [00:01:13.500] FileWatcher:: Added:: WatchInfo: /a/b/projects/project/tsconfig.json 2000 undefined WatchType: Config file for the inferred project root +Info 41 [00:01:14.500] FileWatcher:: Added:: WatchInfo: /a/b/projects/project/jsconfig.json 2000 undefined WatchType: Config file for the inferred project root +Info 42 [00:01:15.500] Starting updateGraphWorker: Project: /dev/null/inferredProject1* +Info 43 [00:01:16.500] DirectoryWatcher:: Added:: WatchInfo: /a/b/projects/project/src/node_modules/@types 1 undefined Project: /dev/null/inferredProject1* WatchType: Type roots +Info 44 [00:01:17.500] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /a/b/projects/project/src/node_modules/@types 1 undefined Project: /dev/null/inferredProject1* WatchType: Type roots +Info 45 [00:01:18.500] DirectoryWatcher:: Added:: WatchInfo: /a/b/projects/project/node_modules/@types 1 undefined Project: /dev/null/inferredProject1* WatchType: Type roots +Info 46 [00:01:19.500] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /a/b/projects/project/node_modules/@types 1 undefined Project: /dev/null/inferredProject1* WatchType: Type roots +Info 47 [00:01:20.500] Finishing updateGraphWorker: Project: /dev/null/inferredProject1* Version: 1 structureChanged: true structureIsReused:: Not Elapsed:: *ms +Info 48 [00:01:21.500] Project '/dev/null/inferredProject1*' (Inferred) +Info 49 [00:01:22.500] Files (2) /a/lib/lib.d.ts /a/b/projects/project/src/file1.ts @@ -133,15 +133,15 @@ Info 49 [16:01:22.500] Files (2) file1.ts Root file specified for compilation -Info 50 [16:01:23.500] ----------------------------------------------- -Info 51 [16:01:24.500] After ensureProjectForOpenFiles: -Info 52 [16:01:25.500] Project '/dev/null/inferredProject1*' (Inferred) -Info 52 [16:01:26.500] Files (2) +Info 50 [00:01:23.500] ----------------------------------------------- +Info 51 [00:01:24.500] After ensureProjectForOpenFiles: +Info 52 [00:01:25.500] Project '/dev/null/inferredProject1*' (Inferred) +Info 52 [00:01:26.500] Files (2) -Info 52 [16:01:27.500] ----------------------------------------------- -Info 52 [16:01:28.500] Open files: -Info 52 [16:01:29.500] FileName: /a/b/projects/project/src/file1.ts ProjectRootPath: /a/b/projects/project -Info 52 [16:01:30.500] Projects: /dev/null/inferredProject1* +Info 52 [00:01:27.500] ----------------------------------------------- +Info 52 [00:01:28.500] Open files: +Info 52 [00:01:29.500] FileName: /a/b/projects/project/src/file1.ts ProjectRootPath: /a/b/projects/project +Info 52 [00:01:30.500] Projects: /dev/null/inferredProject1* After running timeout callbacks PolledWatches:: 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 ea18c9a413071..a69a15cffed88 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 @@ -1,4 +1,4 @@ -Info 0 [16:00:19.000] Provided types map file "/typesMap.json" doesn't exist +Info 0 [00:00:19.000] Provided types map file "/typesMap.json" doesn't exist Creating project service //// [/a/b/projects/project/src/index.ts] let y = 10 @@ -23,22 +23,22 @@ FsWatches:: FsWatchesRecursive:: -Info 1 [16:00:20.000] Search path: /a/b/projects/project/src -Info 2 [16:00:21.000] For info: /a/b/projects/project/src/index.ts :: No config files found. -Info 3 [16:00:22.000] Plugins were requested but not running in environment that supports 'require'. Nothing will be loaded -Info 4 [16:00:23.000] FileWatcher:: Added:: WatchInfo: /a/b/projects/project/src/tsconfig.json 2000 undefined WatchType: Config file for the inferred project root -Info 5 [16:00:24.000] FileWatcher:: Added:: WatchInfo: /a/b/projects/project/src/jsconfig.json 2000 undefined WatchType: Config file for the inferred project root -Info 6 [16:00:25.000] FileWatcher:: Added:: WatchInfo: /a/b/projects/project/tsconfig.json 2000 undefined WatchType: Config file for the inferred project root -Info 7 [16:00:26.000] FileWatcher:: Added:: WatchInfo: /a/b/projects/project/jsconfig.json 2000 undefined WatchType: Config file for the inferred project root -Info 8 [16:00:27.000] Starting updateGraphWorker: Project: /dev/null/inferredProject1* -Info 9 [16:00:28.000] FileWatcher:: Added:: WatchInfo: /a/lib/lib.d.ts 500 undefined WatchType: Closed Script info -Info 10 [16:00:29.000] DirectoryWatcher:: Added:: WatchInfo: /a/b/projects/project/src/node_modules/@types 1 undefined Project: /dev/null/inferredProject1* WatchType: Type roots -Info 11 [16:00:30.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /a/b/projects/project/src/node_modules/@types 1 undefined Project: /dev/null/inferredProject1* WatchType: Type roots -Info 12 [16:00:31.000] DirectoryWatcher:: Added:: WatchInfo: /a/b/projects/project/node_modules/@types 1 undefined Project: /dev/null/inferredProject1* WatchType: Type roots -Info 13 [16:00:32.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /a/b/projects/project/node_modules/@types 1 undefined Project: /dev/null/inferredProject1* WatchType: Type roots -Info 14 [16:00:33.000] Finishing updateGraphWorker: Project: /dev/null/inferredProject1* Version: 1 structureChanged: true structureIsReused:: Not Elapsed:: *ms -Info 15 [16:00:34.000] Project '/dev/null/inferredProject1*' (Inferred) -Info 16 [16:00:35.000] Files (2) +Info 1 [00:00:20.000] Search path: /a/b/projects/project/src +Info 2 [00:00:21.000] For info: /a/b/projects/project/src/index.ts :: No config files found. +Info 3 [00:00:22.000] Plugins were requested but not running in environment that supports 'require'. Nothing will be loaded +Info 4 [00:00:23.000] FileWatcher:: Added:: WatchInfo: /a/b/projects/project/src/tsconfig.json 2000 undefined WatchType: Config file for the inferred project root +Info 5 [00:00:24.000] FileWatcher:: Added:: WatchInfo: /a/b/projects/project/src/jsconfig.json 2000 undefined WatchType: Config file for the inferred project root +Info 6 [00:00:25.000] FileWatcher:: Added:: WatchInfo: /a/b/projects/project/tsconfig.json 2000 undefined WatchType: Config file for the inferred project root +Info 7 [00:00:26.000] FileWatcher:: Added:: WatchInfo: /a/b/projects/project/jsconfig.json 2000 undefined WatchType: Config file for the inferred project root +Info 8 [00:00:27.000] Starting updateGraphWorker: Project: /dev/null/inferredProject1* +Info 9 [00:00:28.000] FileWatcher:: Added:: WatchInfo: /a/lib/lib.d.ts 500 undefined WatchType: Closed Script info +Info 10 [00:00:29.000] DirectoryWatcher:: Added:: WatchInfo: /a/b/projects/project/src/node_modules/@types 1 undefined Project: /dev/null/inferredProject1* WatchType: Type roots +Info 11 [00:00:30.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /a/b/projects/project/src/node_modules/@types 1 undefined Project: /dev/null/inferredProject1* WatchType: Type roots +Info 12 [00:00:31.000] DirectoryWatcher:: Added:: WatchInfo: /a/b/projects/project/node_modules/@types 1 undefined Project: /dev/null/inferredProject1* WatchType: Type roots +Info 13 [00:00:32.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /a/b/projects/project/node_modules/@types 1 undefined Project: /dev/null/inferredProject1* WatchType: Type roots +Info 14 [00:00:33.000] Finishing updateGraphWorker: Project: /dev/null/inferredProject1* Version: 1 structureChanged: true structureIsReused:: Not Elapsed:: *ms +Info 15 [00:00:34.000] Project '/dev/null/inferredProject1*' (Inferred) +Info 16 [00:00:35.000] Files (2) /a/lib/lib.d.ts /a/b/projects/project/src/index.ts @@ -48,27 +48,27 @@ Info 16 [16:00:35.000] Files (2) index.ts Root file specified for compilation -Info 17 [16:00:36.000] ----------------------------------------------- -Info 18 [16:00:37.000] Project '/dev/null/inferredProject1*' (Inferred) -Info 18 [16:00:38.000] Files (2) - -Info 18 [16:00:39.000] ----------------------------------------------- -Info 18 [16:00:40.000] Open files: -Info 18 [16:00:41.000] FileName: /a/b/projects/project/src/index.ts ProjectRootPath: /a/b/projects/proj -Info 18 [16:00:42.000] Projects: /dev/null/inferredProject1* -Info 18 [16:00:45.000] FileWatcher:: Triggered with /a/b/projects/project/tsconfig.json 0:: WatchInfo: /a/b/projects/project/tsconfig.json 2000 undefined WatchType: Config file for the inferred project root -Info 19 [16:00:46.000] Search path: /a/b/projects/project/src -Info 20 [16:00:47.000] For info: /a/b/projects/project/src/index.ts :: Config file name: /a/b/projects/project/tsconfig.json -Info 21 [16:00:48.000] Creating configuration project /a/b/projects/project/tsconfig.json -Info 22 [16:00:49.000] Scheduled: /a/b/projects/project/tsconfig.json -Info 23 [16:00:50.000] Scheduled: *ensureProjectForOpenFiles* -Info 24 [16:00:51.000] Elapsed:: *ms FileWatcher:: Triggered with /a/b/projects/project/tsconfig.json 0:: WatchInfo: /a/b/projects/project/tsconfig.json 2000 undefined WatchType: Config file for the inferred project root -Info 25 [16:00:52.000] FileWatcher:: Triggered with /a/b/projects/project/tsconfig.json 0:: WatchInfo: /a/b/projects/project/tsconfig.json 2000 undefined WatchType: Config file for the inferred project root -Info 26 [16:00:53.000] Search path: /a/b/projects/project/src -Info 27 [16:00:54.000] For info: /a/b/projects/project/src/index.ts :: Config file name: /a/b/projects/project/tsconfig.json -Info 28 [16:00:55.000] Scheduled: /a/b/projects/project/tsconfig.json, Cancelled earlier one -Info 29 [16:00:56.000] Scheduled: *ensureProjectForOpenFiles*, Cancelled earlier one -Info 30 [16:00:57.000] Elapsed:: *ms FileWatcher:: Triggered with /a/b/projects/project/tsconfig.json 0:: WatchInfo: /a/b/projects/project/tsconfig.json 2000 undefined WatchType: Config file for the inferred project root +Info 17 [00:00:36.000] ----------------------------------------------- +Info 18 [00:00:37.000] Project '/dev/null/inferredProject1*' (Inferred) +Info 18 [00:00:38.000] Files (2) + +Info 18 [00:00:39.000] ----------------------------------------------- +Info 18 [00:00:40.000] Open files: +Info 18 [00:00:41.000] FileName: /a/b/projects/project/src/index.ts ProjectRootPath: /a/b/projects/proj +Info 18 [00:00:42.000] Projects: /dev/null/inferredProject1* +Info 18 [00:00:45.000] FileWatcher:: Triggered with /a/b/projects/project/tsconfig.json 0:: WatchInfo: /a/b/projects/project/tsconfig.json 2000 undefined WatchType: Config file for the inferred project root +Info 19 [00:00:46.000] Search path: /a/b/projects/project/src +Info 20 [00:00:47.000] For info: /a/b/projects/project/src/index.ts :: Config file name: /a/b/projects/project/tsconfig.json +Info 21 [00:00:48.000] Creating configuration project /a/b/projects/project/tsconfig.json +Info 22 [00:00:49.000] Scheduled: /a/b/projects/project/tsconfig.json +Info 23 [00:00:50.000] Scheduled: *ensureProjectForOpenFiles* +Info 24 [00:00:51.000] Elapsed:: *ms FileWatcher:: Triggered with /a/b/projects/project/tsconfig.json 0:: WatchInfo: /a/b/projects/project/tsconfig.json 2000 undefined WatchType: Config file for the inferred project root +Info 25 [00:00:52.000] FileWatcher:: Triggered with /a/b/projects/project/tsconfig.json 0:: WatchInfo: /a/b/projects/project/tsconfig.json 2000 undefined WatchType: Config file for the inferred project root +Info 26 [00:00:53.000] Search path: /a/b/projects/project/src +Info 27 [00:00:54.000] For info: /a/b/projects/project/src/index.ts :: Config file name: /a/b/projects/project/tsconfig.json +Info 28 [00:00:55.000] Scheduled: /a/b/projects/project/tsconfig.json, Cancelled earlier one +Info 29 [00:00:56.000] Scheduled: *ensureProjectForOpenFiles*, Cancelled earlier one +Info 30 [00:00:57.000] Elapsed:: *ms FileWatcher:: Triggered with /a/b/projects/project/tsconfig.json 0:: WatchInfo: /a/b/projects/project/tsconfig.json 2000 undefined WatchType: Config file for the inferred project root Before running timeout callbacks //// [/a/b/projects/project/tsconfig.json] {} @@ -94,9 +94,9 @@ FsWatches:: FsWatchesRecursive:: -Info 31 [16:00:58.000] Running: /a/b/projects/project/tsconfig.json -Info 32 [16:00:59.000] Loading configured project /a/b/projects/project/tsconfig.json -Info 33 [16:01:00.000] Config: /a/b/projects/project/tsconfig.json : { +Info 31 [00:00:58.000] Running: /a/b/projects/project/tsconfig.json +Info 32 [00:00:59.000] Loading configured project /a/b/projects/project/tsconfig.json +Info 33 [00:01:00.000] Config: /a/b/projects/project/tsconfig.json : { "rootNames": [ "/a/b/projects/project/src/index.ts" ], @@ -104,18 +104,18 @@ Info 33 [16:01:00.000] Config: /a/b/projects/project/tsconfig.json : { "configFilePath": "/a/b/projects/project/tsconfig.json" } } -Info 34 [16:01:01.000] DirectoryWatcher:: Added:: WatchInfo: /a/b/projects/project 1 undefined Config: /a/b/projects/project/tsconfig.json WatchType: Wild card directory -Info 35 [16:01:02.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /a/b/projects/project 1 undefined Config: /a/b/projects/project/tsconfig.json WatchType: Wild card directory -Info 36 [16:01:03.000] Plugins were requested but not running in environment that supports 'require'. Nothing will be loaded -Info 37 [16:01:04.000] FileWatcher:: Close:: WatchInfo: /a/b/projects/project/src/tsconfig.json 2000 undefined WatchType: Config file for the inferred project root -Info 38 [16:01:05.000] FileWatcher:: Close:: WatchInfo: /a/b/projects/project/src/jsconfig.json 2000 undefined WatchType: Config file for the inferred project root -Info 39 [16:01:06.000] FileWatcher:: Close:: WatchInfo: /a/b/projects/project/jsconfig.json 2000 undefined WatchType: Config file for the inferred project root -Info 40 [16:01:07.000] Starting updateGraphWorker: Project: /a/b/projects/project/tsconfig.json -Info 41 [16:01:08.000] DirectoryWatcher:: Added:: WatchInfo: /a/b/projects/project/node_modules/@types 1 undefined Project: /a/b/projects/project/tsconfig.json WatchType: Type roots -Info 42 [16:01:09.000] 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 43 [16:01:10.000] Finishing updateGraphWorker: Project: /a/b/projects/project/tsconfig.json Version: 1 structureChanged: true structureIsReused:: Not Elapsed:: *ms -Info 44 [16:01:11.000] Project '/a/b/projects/project/tsconfig.json' (Configured) -Info 45 [16:01:12.000] Files (2) +Info 34 [00:01:01.000] DirectoryWatcher:: Added:: WatchInfo: /a/b/projects/project 1 undefined Config: /a/b/projects/project/tsconfig.json WatchType: Wild card directory +Info 35 [00:01:02.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /a/b/projects/project 1 undefined Config: /a/b/projects/project/tsconfig.json WatchType: Wild card directory +Info 36 [00:01:03.000] Plugins were requested but not running in environment that supports 'require'. Nothing will be loaded +Info 37 [00:01:04.000] FileWatcher:: Close:: WatchInfo: /a/b/projects/project/src/tsconfig.json 2000 undefined WatchType: Config file for the inferred project root +Info 38 [00:01:05.000] FileWatcher:: Close:: WatchInfo: /a/b/projects/project/src/jsconfig.json 2000 undefined WatchType: Config file for the inferred project root +Info 39 [00:01:06.000] FileWatcher:: Close:: WatchInfo: /a/b/projects/project/jsconfig.json 2000 undefined WatchType: Config file for the inferred project root +Info 40 [00:01:07.000] Starting updateGraphWorker: Project: /a/b/projects/project/tsconfig.json +Info 41 [00:01:08.000] DirectoryWatcher:: Added:: WatchInfo: /a/b/projects/project/node_modules/@types 1 undefined Project: /a/b/projects/project/tsconfig.json WatchType: Type roots +Info 42 [00:01:09.000] 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 43 [00:01:10.000] Finishing updateGraphWorker: Project: /a/b/projects/project/tsconfig.json Version: 1 structureChanged: true structureIsReused:: Not Elapsed:: *ms +Info 44 [00:01:11.000] Project '/a/b/projects/project/tsconfig.json' (Configured) +Info 45 [00:01:12.000] Files (2) /a/lib/lib.d.ts /a/b/projects/project/src/index.ts @@ -125,40 +125,40 @@ Info 45 [16:01:12.000] Files (2) src/index.ts Matched by default include pattern '**/*' -Info 46 [16:01:13.000] ----------------------------------------------- -Info 47 [16:01:14.000] Running: *ensureProjectForOpenFiles* -Info 48 [16:01:15.000] Before ensureProjectForOpenFiles: -Info 49 [16:01:16.000] Project '/a/b/projects/project/tsconfig.json' (Configured) -Info 49 [16:01:17.000] Files (2) - -Info 49 [16:01:18.000] ----------------------------------------------- -Info 49 [16:01:19.000] Project '/dev/null/inferredProject1*' (Inferred) -Info 49 [16:01:20.000] Files (2) - -Info 49 [16:01:21.000] ----------------------------------------------- -Info 49 [16:01:22.000] Open files: -Info 49 [16:01:23.000] FileName: /a/b/projects/project/src/index.ts ProjectRootPath: /a/b/projects/proj -Info 49 [16:01:24.000] Projects: /a/b/projects/project/tsconfig.json -Info 49 [16:01:25.000] Starting updateGraphWorker: Project: /dev/null/inferredProject1* -Info 50 [16:01:26.000] Finishing updateGraphWorker: Project: /dev/null/inferredProject1* Version: 2 structureChanged: true structureIsReused:: Not Elapsed:: *ms -Info 51 [16:01:27.000] Project '/dev/null/inferredProject1*' (Inferred) -Info 52 [16:01:28.000] Files (0) +Info 46 [00:01:13.000] ----------------------------------------------- +Info 47 [00:01:14.000] Running: *ensureProjectForOpenFiles* +Info 48 [00:01:15.000] Before ensureProjectForOpenFiles: +Info 49 [00:01:16.000] Project '/a/b/projects/project/tsconfig.json' (Configured) +Info 49 [00:01:17.000] Files (2) + +Info 49 [00:01:18.000] ----------------------------------------------- +Info 49 [00:01:19.000] Project '/dev/null/inferredProject1*' (Inferred) +Info 49 [00:01:20.000] Files (2) + +Info 49 [00:01:21.000] ----------------------------------------------- +Info 49 [00:01:22.000] Open files: +Info 49 [00:01:23.000] FileName: /a/b/projects/project/src/index.ts ProjectRootPath: /a/b/projects/proj +Info 49 [00:01:24.000] Projects: /a/b/projects/project/tsconfig.json +Info 49 [00:01:25.000] Starting updateGraphWorker: Project: /dev/null/inferredProject1* +Info 50 [00:01:26.000] Finishing updateGraphWorker: Project: /dev/null/inferredProject1* Version: 2 structureChanged: true structureIsReused:: Not Elapsed:: *ms +Info 51 [00:01:27.000] Project '/dev/null/inferredProject1*' (Inferred) +Info 52 [00:01:28.000] Files (0) -Info 53 [16:01:29.000] ----------------------------------------------- -Info 54 [16:01:30.000] After ensureProjectForOpenFiles: -Info 55 [16:01:31.000] Project '/a/b/projects/project/tsconfig.json' (Configured) -Info 55 [16:01:32.000] Files (2) +Info 53 [00:01:29.000] ----------------------------------------------- +Info 54 [00:01:30.000] After ensureProjectForOpenFiles: +Info 55 [00:01:31.000] Project '/a/b/projects/project/tsconfig.json' (Configured) +Info 55 [00:01:32.000] Files (2) -Info 55 [16:01:33.000] ----------------------------------------------- -Info 55 [16:01:34.000] Project '/dev/null/inferredProject1*' (Inferred) -Info 55 [16:01:35.000] Files (0) +Info 55 [00:01:33.000] ----------------------------------------------- +Info 55 [00:01:34.000] Project '/dev/null/inferredProject1*' (Inferred) +Info 55 [00:01:35.000] Files (0) -Info 55 [16:01:36.000] ----------------------------------------------- -Info 55 [16:01:37.000] Open files: -Info 55 [16:01:38.000] FileName: /a/b/projects/project/src/index.ts ProjectRootPath: /a/b/projects/proj -Info 55 [16:01:39.000] Projects: /a/b/projects/project/tsconfig.json +Info 55 [00:01:36.000] ----------------------------------------------- +Info 55 [00:01:37.000] Open files: +Info 55 [00:01:38.000] FileName: /a/b/projects/project/src/index.ts ProjectRootPath: /a/b/projects/proj +Info 55 [00:01:39.000] Projects: /a/b/projects/project/tsconfig.json After running timeout callbacks PolledWatches:: @@ -177,10 +177,10 @@ FsWatchesRecursive:: /a/b/projects/project: {} -Info 55 [16:01:41.000] FileWatcher:: Triggered with /a/b/projects/project/tsconfig.json 2:: WatchInfo: /a/b/projects/project/tsconfig.json 2000 undefined WatchType: Config file for the inferred project root -Info 56 [16:01:42.000] `remove Project:: -Info 57 [16:01:43.000] Project '/a/b/projects/project/tsconfig.json' (Configured) -Info 58 [16:01:44.000] Files (2) +Info 55 [00:01:41.000] FileWatcher:: Triggered with /a/b/projects/project/tsconfig.json 2:: WatchInfo: /a/b/projects/project/tsconfig.json 2000 undefined WatchType: Config file for the inferred project root +Info 56 [00:01:42.000] `remove Project:: +Info 57 [00:01:43.000] Project '/a/b/projects/project/tsconfig.json' (Configured) +Info 58 [00:01:44.000] Files (2) /a/lib/lib.d.ts /a/b/projects/project/src/index.ts @@ -190,16 +190,16 @@ Info 58 [16:01:44.000] Files (2) src/index.ts Matched by default include pattern '**/*' -Info 59 [16:01:45.000] ----------------------------------------------- -Info 60 [16:01:46.000] DirectoryWatcher:: Close:: WatchInfo: /a/b/projects/project 1 undefined Config: /a/b/projects/project/tsconfig.json WatchType: Wild card directory -Info 61 [16:01:47.000] Elapsed:: *ms DirectoryWatcher:: Close:: WatchInfo: /a/b/projects/project 1 undefined Config: /a/b/projects/project/tsconfig.json WatchType: Wild card directory -Info 62 [16:01:48.000] FileWatcher:: Close:: WatchInfo: /a/b/projects/project/tsconfig.json 2000 undefined WatchType: Config file for the inferred project root -Info 63 [16:01:49.000] DirectoryWatcher:: Close:: WatchInfo: /a/b/projects/project/node_modules/@types 1 undefined Project: /a/b/projects/project/tsconfig.json WatchType: Type roots -Info 64 [16:01:50.000] Elapsed:: *ms DirectoryWatcher:: Close:: WatchInfo: /a/b/projects/project/node_modules/@types 1 undefined Project: /a/b/projects/project/tsconfig.json WatchType: Type roots -Info 65 [16:01:51.000] Search path: /a/b/projects/project/src -Info 66 [16:01:52.000] For info: /a/b/projects/project/src/index.ts :: No config files found. -Info 67 [16:01:53.000] Scheduled: *ensureProjectForOpenFiles* -Info 68 [16:01:54.000] Elapsed:: *ms FileWatcher:: Triggered with /a/b/projects/project/tsconfig.json 2:: WatchInfo: /a/b/projects/project/tsconfig.json 2000 undefined WatchType: Config file for the inferred project root +Info 59 [00:01:45.000] ----------------------------------------------- +Info 60 [00:01:46.000] DirectoryWatcher:: Close:: WatchInfo: /a/b/projects/project 1 undefined Config: /a/b/projects/project/tsconfig.json WatchType: Wild card directory +Info 61 [00:01:47.000] Elapsed:: *ms DirectoryWatcher:: Close:: WatchInfo: /a/b/projects/project 1 undefined Config: /a/b/projects/project/tsconfig.json WatchType: Wild card directory +Info 62 [00:01:48.000] FileWatcher:: Close:: WatchInfo: /a/b/projects/project/tsconfig.json 2000 undefined WatchType: Config file for the inferred project root +Info 63 [00:01:49.000] DirectoryWatcher:: Close:: WatchInfo: /a/b/projects/project/node_modules/@types 1 undefined Project: /a/b/projects/project/tsconfig.json WatchType: Type roots +Info 64 [00:01:50.000] Elapsed:: *ms DirectoryWatcher:: Close:: WatchInfo: /a/b/projects/project/node_modules/@types 1 undefined Project: /a/b/projects/project/tsconfig.json WatchType: Type roots +Info 65 [00:01:51.000] Search path: /a/b/projects/project/src +Info 66 [00:01:52.000] For info: /a/b/projects/project/src/index.ts :: No config files found. +Info 67 [00:01:53.000] Scheduled: *ensureProjectForOpenFiles* +Info 68 [00:01:54.000] Elapsed:: *ms FileWatcher:: Triggered with /a/b/projects/project/tsconfig.json 2:: WatchInfo: /a/b/projects/project/tsconfig.json 2000 undefined WatchType: Config file for the inferred project root Before running timeout callbacks //// [/a/b/projects/project/tsconfig.json] deleted @@ -215,23 +215,23 @@ FsWatches:: FsWatchesRecursive:: -Info 69 [16:01:55.500] Running: *ensureProjectForOpenFiles* -Info 70 [16:01:56.500] Before ensureProjectForOpenFiles: -Info 71 [16:01:57.500] Project '/dev/null/inferredProject1*' (Inferred) -Info 71 [16:01:58.500] Files (0) - -Info 71 [16:01:59.500] ----------------------------------------------- -Info 71 [16:02:00.500] Open files: -Info 71 [16:02:01.500] FileName: /a/b/projects/project/src/index.ts ProjectRootPath: /a/b/projects/proj -Info 71 [16:02:02.500] Projects: -Info 71 [16:02:03.500] FileWatcher:: Added:: WatchInfo: /a/b/projects/project/src/tsconfig.json 2000 undefined WatchType: Config file for the inferred project root -Info 72 [16:02:04.500] FileWatcher:: Added:: WatchInfo: /a/b/projects/project/src/jsconfig.json 2000 undefined WatchType: Config file for the inferred project root -Info 73 [16:02:05.500] FileWatcher:: Added:: WatchInfo: /a/b/projects/project/tsconfig.json 2000 undefined WatchType: Config file for the inferred project root -Info 74 [16:02:06.500] FileWatcher:: Added:: WatchInfo: /a/b/projects/project/jsconfig.json 2000 undefined WatchType: Config file for the inferred project root -Info 75 [16:02:07.500] Starting updateGraphWorker: Project: /dev/null/inferredProject1* -Info 76 [16:02:08.500] Finishing updateGraphWorker: Project: /dev/null/inferredProject1* Version: 3 structureChanged: true structureIsReused:: Not Elapsed:: *ms -Info 77 [16:02:09.500] Project '/dev/null/inferredProject1*' (Inferred) -Info 78 [16:02:10.500] Files (2) +Info 69 [00:01:55.500] Running: *ensureProjectForOpenFiles* +Info 70 [00:01:56.500] Before ensureProjectForOpenFiles: +Info 71 [00:01:57.500] Project '/dev/null/inferredProject1*' (Inferred) +Info 71 [00:01:58.500] Files (0) + +Info 71 [00:01:59.500] ----------------------------------------------- +Info 71 [00:02:00.500] Open files: +Info 71 [00:02:01.500] FileName: /a/b/projects/project/src/index.ts ProjectRootPath: /a/b/projects/proj +Info 71 [00:02:02.500] Projects: +Info 71 [00:02:03.500] FileWatcher:: Added:: WatchInfo: /a/b/projects/project/src/tsconfig.json 2000 undefined WatchType: Config file for the inferred project root +Info 72 [00:02:04.500] FileWatcher:: Added:: WatchInfo: /a/b/projects/project/src/jsconfig.json 2000 undefined WatchType: Config file for the inferred project root +Info 73 [00:02:05.500] FileWatcher:: Added:: WatchInfo: /a/b/projects/project/tsconfig.json 2000 undefined WatchType: Config file for the inferred project root +Info 74 [00:02:06.500] FileWatcher:: Added:: WatchInfo: /a/b/projects/project/jsconfig.json 2000 undefined WatchType: Config file for the inferred project root +Info 75 [00:02:07.500] Starting updateGraphWorker: Project: /dev/null/inferredProject1* +Info 76 [00:02:08.500] Finishing updateGraphWorker: Project: /dev/null/inferredProject1* Version: 3 structureChanged: true structureIsReused:: Not Elapsed:: *ms +Info 77 [00:02:09.500] Project '/dev/null/inferredProject1*' (Inferred) +Info 78 [00:02:10.500] Files (2) /a/lib/lib.d.ts /a/b/projects/project/src/index.ts @@ -241,15 +241,15 @@ Info 78 [16:02:10.500] Files (2) index.ts Root file specified for compilation -Info 79 [16:02:11.500] ----------------------------------------------- -Info 80 [16:02:12.500] After ensureProjectForOpenFiles: -Info 81 [16:02:13.500] Project '/dev/null/inferredProject1*' (Inferred) -Info 81 [16:02:14.500] Files (2) +Info 79 [00:02:11.500] ----------------------------------------------- +Info 80 [00:02:12.500] After ensureProjectForOpenFiles: +Info 81 [00:02:13.500] Project '/dev/null/inferredProject1*' (Inferred) +Info 81 [00:02:14.500] Files (2) -Info 81 [16:02:15.500] ----------------------------------------------- -Info 81 [16:02:16.500] Open files: -Info 81 [16:02:17.500] FileName: /a/b/projects/project/src/index.ts ProjectRootPath: /a/b/projects/proj -Info 81 [16:02:18.500] Projects: /dev/null/inferredProject1* +Info 81 [00:02:15.500] ----------------------------------------------- +Info 81 [00:02:16.500] Open files: +Info 81 [00:02:17.500] FileName: /a/b/projects/project/src/index.ts ProjectRootPath: /a/b/projects/proj +Info 81 [00:02:18.500] Projects: /dev/null/inferredProject1* After running timeout callbacks PolledWatches:: 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 77859cdf35078..b6b50f9196b17 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 @@ -1,4 +1,4 @@ -Info 0 [16:00:21.000] Provided types map file "/typesMap.json" doesn't exist +Info 0 [00:00:21.000] Provided types map file "/typesMap.json" doesn't exist Creating project service //// [/a/b/projects/project/src/index.ts] let y = 10 @@ -26,11 +26,11 @@ FsWatches:: FsWatchesRecursive:: -Info 1 [16:00:22.000] Search path: /a/b/projects/project/src -Info 2 [16:00:23.000] For info: /a/b/projects/project/src/index.ts :: Config file name: /a/b/projects/project/tsconfig.json -Info 3 [16:00:24.000] Creating configuration project /a/b/projects/project/tsconfig.json -Info 4 [16:00:25.000] FileWatcher:: Added:: WatchInfo: /a/b/projects/project/tsconfig.json 2000 undefined Project: /a/b/projects/project/tsconfig.json WatchType: Config file -Info 5 [16:00:26.000] Config: /a/b/projects/project/tsconfig.json : { +Info 1 [00:00:22.000] Search path: /a/b/projects/project/src +Info 2 [00:00:23.000] For info: /a/b/projects/project/src/index.ts :: Config file name: /a/b/projects/project/tsconfig.json +Info 3 [00:00:24.000] Creating configuration project /a/b/projects/project/tsconfig.json +Info 4 [00:00:25.000] FileWatcher:: Added:: WatchInfo: /a/b/projects/project/tsconfig.json 2000 undefined Project: /a/b/projects/project/tsconfig.json WatchType: Config file +Info 5 [00:00:26.000] Config: /a/b/projects/project/tsconfig.json : { "rootNames": [ "/a/b/projects/project/src/index.ts" ], @@ -38,16 +38,16 @@ Info 5 [16:00:26.000] Config: /a/b/projects/project/tsconfig.json : { "configFilePath": "/a/b/projects/project/tsconfig.json" } } -Info 6 [16:00:27.000] DirectoryWatcher:: Added:: WatchInfo: /a/b/projects/project 1 undefined Config: /a/b/projects/project/tsconfig.json WatchType: Wild card directory -Info 7 [16:00:28.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /a/b/projects/project 1 undefined Config: /a/b/projects/project/tsconfig.json WatchType: Wild card directory -Info 8 [16:00:29.000] Plugins were requested but not running in environment that supports 'require'. Nothing will be loaded -Info 9 [16:00:30.000] Starting updateGraphWorker: Project: /a/b/projects/project/tsconfig.json -Info 10 [16:00:31.000] FileWatcher:: Added:: WatchInfo: /a/lib/lib.d.ts 500 undefined WatchType: Closed Script info -Info 11 [16:00:32.000] DirectoryWatcher:: Added:: WatchInfo: /a/b/projects/project/node_modules/@types 1 undefined Project: /a/b/projects/project/tsconfig.json WatchType: Type roots -Info 12 [16:00:33.000] 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 13 [16:00:34.000] Finishing updateGraphWorker: Project: /a/b/projects/project/tsconfig.json Version: 1 structureChanged: true structureIsReused:: Not Elapsed:: *ms -Info 14 [16:00:35.000] Project '/a/b/projects/project/tsconfig.json' (Configured) -Info 15 [16:00:36.000] Files (2) +Info 6 [00:00:27.000] DirectoryWatcher:: Added:: WatchInfo: /a/b/projects/project 1 undefined Config: /a/b/projects/project/tsconfig.json WatchType: Wild card directory +Info 7 [00:00:28.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /a/b/projects/project 1 undefined Config: /a/b/projects/project/tsconfig.json WatchType: Wild card directory +Info 8 [00:00:29.000] Plugins were requested but not running in environment that supports 'require'. Nothing will be loaded +Info 9 [00:00:30.000] Starting updateGraphWorker: Project: /a/b/projects/project/tsconfig.json +Info 10 [00:00:31.000] FileWatcher:: Added:: WatchInfo: /a/lib/lib.d.ts 500 undefined WatchType: Closed Script info +Info 11 [00:00:32.000] DirectoryWatcher:: Added:: WatchInfo: /a/b/projects/project/node_modules/@types 1 undefined Project: /a/b/projects/project/tsconfig.json WatchType: Type roots +Info 12 [00:00:33.000] 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 13 [00:00:34.000] Finishing updateGraphWorker: Project: /a/b/projects/project/tsconfig.json Version: 1 structureChanged: true structureIsReused:: Not Elapsed:: *ms +Info 14 [00:00:35.000] Project '/a/b/projects/project/tsconfig.json' (Configured) +Info 15 [00:00:36.000] Files (2) /a/lib/lib.d.ts /a/b/projects/project/src/index.ts @@ -57,18 +57,18 @@ Info 15 [16:00:36.000] Files (2) src/index.ts Matched by default include pattern '**/*' -Info 16 [16:00:37.000] ----------------------------------------------- -Info 17 [16:00:38.000] Project '/a/b/projects/project/tsconfig.json' (Configured) -Info 17 [16:00:39.000] Files (2) - -Info 17 [16:00:40.000] ----------------------------------------------- -Info 17 [16:00:41.000] Open files: -Info 17 [16:00:42.000] FileName: /a/b/projects/project/src/index.ts ProjectRootPath: /a/b/projects/proj -Info 17 [16:00:43.000] Projects: /a/b/projects/project/tsconfig.json -Info 17 [16:00:45.000] FileWatcher:: Triggered with /a/b/projects/project/tsconfig.json 2:: WatchInfo: /a/b/projects/project/tsconfig.json 2000 undefined Project: /a/b/projects/project/tsconfig.json WatchType: Config file -Info 18 [16:00:46.000] `remove Project:: -Info 19 [16:00:47.000] Project '/a/b/projects/project/tsconfig.json' (Configured) -Info 20 [16:00:48.000] Files (2) +Info 16 [00:00:37.000] ----------------------------------------------- +Info 17 [00:00:38.000] Project '/a/b/projects/project/tsconfig.json' (Configured) +Info 17 [00:00:39.000] Files (2) + +Info 17 [00:00:40.000] ----------------------------------------------- +Info 17 [00:00:41.000] Open files: +Info 17 [00:00:42.000] FileName: /a/b/projects/project/src/index.ts ProjectRootPath: /a/b/projects/proj +Info 17 [00:00:43.000] Projects: /a/b/projects/project/tsconfig.json +Info 17 [00:00:45.000] FileWatcher:: Triggered with /a/b/projects/project/tsconfig.json 2:: WatchInfo: /a/b/projects/project/tsconfig.json 2000 undefined Project: /a/b/projects/project/tsconfig.json WatchType: Config file +Info 18 [00:00:46.000] `remove Project:: +Info 19 [00:00:47.000] Project '/a/b/projects/project/tsconfig.json' (Configured) +Info 20 [00:00:48.000] Files (2) /a/lib/lib.d.ts /a/b/projects/project/src/index.ts @@ -78,16 +78,16 @@ Info 20 [16:00:48.000] Files (2) src/index.ts Matched by default include pattern '**/*' -Info 21 [16:00:49.000] ----------------------------------------------- -Info 22 [16:00:50.000] DirectoryWatcher:: Close:: WatchInfo: /a/b/projects/project 1 undefined Config: /a/b/projects/project/tsconfig.json WatchType: Wild card directory -Info 23 [16:00:51.000] Elapsed:: *ms DirectoryWatcher:: Close:: WatchInfo: /a/b/projects/project 1 undefined Config: /a/b/projects/project/tsconfig.json WatchType: Wild card directory -Info 24 [16:00:52.000] FileWatcher:: Close:: WatchInfo: /a/b/projects/project/tsconfig.json 2000 undefined Project: /a/b/projects/project/tsconfig.json WatchType: Config file -Info 25 [16:00:53.000] DirectoryWatcher:: Close:: WatchInfo: /a/b/projects/project/node_modules/@types 1 undefined Project: /a/b/projects/project/tsconfig.json WatchType: Type roots -Info 26 [16:00:54.000] Elapsed:: *ms DirectoryWatcher:: Close:: WatchInfo: /a/b/projects/project/node_modules/@types 1 undefined Project: /a/b/projects/project/tsconfig.json WatchType: Type roots -Info 27 [16:00:55.000] Search path: /a/b/projects/project/src -Info 28 [16:00:56.000] For info: /a/b/projects/project/src/index.ts :: No config files found. -Info 29 [16:00:57.000] Scheduled: *ensureProjectForOpenFiles* -Info 30 [16:00:58.000] Elapsed:: *ms FileWatcher:: Triggered with /a/b/projects/project/tsconfig.json 2:: WatchInfo: /a/b/projects/project/tsconfig.json 2000 undefined Project: /a/b/projects/project/tsconfig.json WatchType: Config file +Info 21 [00:00:49.000] ----------------------------------------------- +Info 22 [00:00:50.000] DirectoryWatcher:: Close:: WatchInfo: /a/b/projects/project 1 undefined Config: /a/b/projects/project/tsconfig.json WatchType: Wild card directory +Info 23 [00:00:51.000] Elapsed:: *ms DirectoryWatcher:: Close:: WatchInfo: /a/b/projects/project 1 undefined Config: /a/b/projects/project/tsconfig.json WatchType: Wild card directory +Info 24 [00:00:52.000] FileWatcher:: Close:: WatchInfo: /a/b/projects/project/tsconfig.json 2000 undefined Project: /a/b/projects/project/tsconfig.json WatchType: Config file +Info 25 [00:00:53.000] DirectoryWatcher:: Close:: WatchInfo: /a/b/projects/project/node_modules/@types 1 undefined Project: /a/b/projects/project/tsconfig.json WatchType: Type roots +Info 26 [00:00:54.000] Elapsed:: *ms DirectoryWatcher:: Close:: WatchInfo: /a/b/projects/project/node_modules/@types 1 undefined Project: /a/b/projects/project/tsconfig.json WatchType: Type roots +Info 27 [00:00:55.000] Search path: /a/b/projects/project/src +Info 28 [00:00:56.000] For info: /a/b/projects/project/src/index.ts :: No config files found. +Info 29 [00:00:57.000] Scheduled: *ensureProjectForOpenFiles* +Info 30 [00:00:58.000] Elapsed:: *ms FileWatcher:: Triggered with /a/b/projects/project/tsconfig.json 2:: WatchInfo: /a/b/projects/project/tsconfig.json 2000 undefined Project: /a/b/projects/project/tsconfig.json WatchType: Config file Before running timeout callbacks //// [/a/b/projects/project/tsconfig.json] deleted @@ -99,24 +99,24 @@ FsWatches:: FsWatchesRecursive:: -Info 31 [16:00:59.500] Running: *ensureProjectForOpenFiles* -Info 32 [16:01:00.500] Before ensureProjectForOpenFiles: -Info 33 [16:01:01.500] Open files: -Info 33 [16:01:02.500] FileName: /a/b/projects/project/src/index.ts ProjectRootPath: /a/b/projects/proj -Info 33 [16:01:03.500] Projects: -Info 33 [16:01:04.500] Plugins were requested but not running in environment that supports 'require'. Nothing will be loaded -Info 34 [16:01:05.500] FileWatcher:: Added:: WatchInfo: /a/b/projects/project/src/tsconfig.json 2000 undefined WatchType: Config file for the inferred project root -Info 35 [16:01:06.500] FileWatcher:: Added:: WatchInfo: /a/b/projects/project/src/jsconfig.json 2000 undefined WatchType: Config file for the inferred project root -Info 36 [16:01:07.500] FileWatcher:: Added:: WatchInfo: /a/b/projects/project/tsconfig.json 2000 undefined WatchType: Config file for the inferred project root -Info 37 [16:01:08.500] FileWatcher:: Added:: WatchInfo: /a/b/projects/project/jsconfig.json 2000 undefined WatchType: Config file for the inferred project root -Info 38 [16:01:09.500] Starting updateGraphWorker: Project: /dev/null/inferredProject1* -Info 39 [16:01:10.500] DirectoryWatcher:: Added:: WatchInfo: /a/b/projects/project/src/node_modules/@types 1 undefined Project: /dev/null/inferredProject1* WatchType: Type roots -Info 40 [16:01:11.500] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /a/b/projects/project/src/node_modules/@types 1 undefined Project: /dev/null/inferredProject1* WatchType: Type roots -Info 41 [16:01:12.500] DirectoryWatcher:: Added:: WatchInfo: /a/b/projects/project/node_modules/@types 1 undefined Project: /dev/null/inferredProject1* WatchType: Type roots -Info 42 [16:01:13.500] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /a/b/projects/project/node_modules/@types 1 undefined Project: /dev/null/inferredProject1* WatchType: Type roots -Info 43 [16:01:14.500] Finishing updateGraphWorker: Project: /dev/null/inferredProject1* Version: 1 structureChanged: true structureIsReused:: Not Elapsed:: *ms -Info 44 [16:01:15.500] Project '/dev/null/inferredProject1*' (Inferred) -Info 45 [16:01:16.500] Files (2) +Info 31 [00:00:59.500] Running: *ensureProjectForOpenFiles* +Info 32 [00:01:00.500] Before ensureProjectForOpenFiles: +Info 33 [00:01:01.500] Open files: +Info 33 [00:01:02.500] FileName: /a/b/projects/project/src/index.ts ProjectRootPath: /a/b/projects/proj +Info 33 [00:01:03.500] Projects: +Info 33 [00:01:04.500] Plugins were requested but not running in environment that supports 'require'. Nothing will be loaded +Info 34 [00:01:05.500] FileWatcher:: Added:: WatchInfo: /a/b/projects/project/src/tsconfig.json 2000 undefined WatchType: Config file for the inferred project root +Info 35 [00:01:06.500] FileWatcher:: Added:: WatchInfo: /a/b/projects/project/src/jsconfig.json 2000 undefined WatchType: Config file for the inferred project root +Info 36 [00:01:07.500] FileWatcher:: Added:: WatchInfo: /a/b/projects/project/tsconfig.json 2000 undefined WatchType: Config file for the inferred project root +Info 37 [00:01:08.500] FileWatcher:: Added:: WatchInfo: /a/b/projects/project/jsconfig.json 2000 undefined WatchType: Config file for the inferred project root +Info 38 [00:01:09.500] Starting updateGraphWorker: Project: /dev/null/inferredProject1* +Info 39 [00:01:10.500] DirectoryWatcher:: Added:: WatchInfo: /a/b/projects/project/src/node_modules/@types 1 undefined Project: /dev/null/inferredProject1* WatchType: Type roots +Info 40 [00:01:11.500] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /a/b/projects/project/src/node_modules/@types 1 undefined Project: /dev/null/inferredProject1* WatchType: Type roots +Info 41 [00:01:12.500] DirectoryWatcher:: Added:: WatchInfo: /a/b/projects/project/node_modules/@types 1 undefined Project: /dev/null/inferredProject1* WatchType: Type roots +Info 42 [00:01:13.500] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /a/b/projects/project/node_modules/@types 1 undefined Project: /dev/null/inferredProject1* WatchType: Type roots +Info 43 [00:01:14.500] Finishing updateGraphWorker: Project: /dev/null/inferredProject1* Version: 1 structureChanged: true structureIsReused:: Not Elapsed:: *ms +Info 44 [00:01:15.500] Project '/dev/null/inferredProject1*' (Inferred) +Info 45 [00:01:16.500] Files (2) /a/lib/lib.d.ts /a/b/projects/project/src/index.ts @@ -126,15 +126,15 @@ Info 45 [16:01:16.500] Files (2) index.ts Root file specified for compilation -Info 46 [16:01:17.500] ----------------------------------------------- -Info 47 [16:01:18.500] After ensureProjectForOpenFiles: -Info 48 [16:01:19.500] Project '/dev/null/inferredProject1*' (Inferred) -Info 48 [16:01:20.500] Files (2) +Info 46 [00:01:17.500] ----------------------------------------------- +Info 47 [00:01:18.500] After ensureProjectForOpenFiles: +Info 48 [00:01:19.500] Project '/dev/null/inferredProject1*' (Inferred) +Info 48 [00:01:20.500] Files (2) -Info 48 [16:01:21.500] ----------------------------------------------- -Info 48 [16:01:22.500] Open files: -Info 48 [16:01:23.500] FileName: /a/b/projects/project/src/index.ts ProjectRootPath: /a/b/projects/proj -Info 48 [16:01:24.500] Projects: /dev/null/inferredProject1* +Info 48 [00:01:21.500] ----------------------------------------------- +Info 48 [00:01:22.500] Open files: +Info 48 [00:01:23.500] FileName: /a/b/projects/project/src/index.ts ProjectRootPath: /a/b/projects/proj +Info 48 [00:01:24.500] Projects: /dev/null/inferredProject1* After running timeout callbacks PolledWatches:: @@ -157,19 +157,19 @@ FsWatches:: FsWatchesRecursive:: -Info 48 [16:01:27.500] FileWatcher:: Triggered with /a/b/projects/project/tsconfig.json 0:: WatchInfo: /a/b/projects/project/tsconfig.json 2000 undefined WatchType: Config file for the inferred project root -Info 49 [16:01:28.500] Search path: /a/b/projects/project/src -Info 50 [16:01:29.500] For info: /a/b/projects/project/src/index.ts :: Config file name: /a/b/projects/project/tsconfig.json -Info 51 [16:01:30.500] Creating configuration project /a/b/projects/project/tsconfig.json -Info 52 [16:01:31.500] Scheduled: /a/b/projects/project/tsconfig.json -Info 53 [16:01:32.500] Scheduled: *ensureProjectForOpenFiles* -Info 54 [16:01:33.500] Elapsed:: *ms FileWatcher:: Triggered with /a/b/projects/project/tsconfig.json 0:: WatchInfo: /a/b/projects/project/tsconfig.json 2000 undefined WatchType: Config file for the inferred project root -Info 55 [16:01:34.500] FileWatcher:: Triggered with /a/b/projects/project/tsconfig.json 0:: WatchInfo: /a/b/projects/project/tsconfig.json 2000 undefined WatchType: Config file for the inferred project root -Info 56 [16:01:35.500] Search path: /a/b/projects/project/src -Info 57 [16:01:36.500] For info: /a/b/projects/project/src/index.ts :: Config file name: /a/b/projects/project/tsconfig.json -Info 58 [16:01:37.500] Scheduled: /a/b/projects/project/tsconfig.json, Cancelled earlier one -Info 59 [16:01:38.500] Scheduled: *ensureProjectForOpenFiles*, Cancelled earlier one -Info 60 [16:01:39.500] Elapsed:: *ms FileWatcher:: Triggered with /a/b/projects/project/tsconfig.json 0:: WatchInfo: /a/b/projects/project/tsconfig.json 2000 undefined WatchType: Config file for the inferred project root +Info 48 [00:01:27.500] FileWatcher:: Triggered with /a/b/projects/project/tsconfig.json 0:: WatchInfo: /a/b/projects/project/tsconfig.json 2000 undefined WatchType: Config file for the inferred project root +Info 49 [00:01:28.500] Search path: /a/b/projects/project/src +Info 50 [00:01:29.500] For info: /a/b/projects/project/src/index.ts :: Config file name: /a/b/projects/project/tsconfig.json +Info 51 [00:01:30.500] Creating configuration project /a/b/projects/project/tsconfig.json +Info 52 [00:01:31.500] Scheduled: /a/b/projects/project/tsconfig.json +Info 53 [00:01:32.500] Scheduled: *ensureProjectForOpenFiles* +Info 54 [00:01:33.500] Elapsed:: *ms FileWatcher:: Triggered with /a/b/projects/project/tsconfig.json 0:: WatchInfo: /a/b/projects/project/tsconfig.json 2000 undefined WatchType: Config file for the inferred project root +Info 55 [00:01:34.500] FileWatcher:: Triggered with /a/b/projects/project/tsconfig.json 0:: WatchInfo: /a/b/projects/project/tsconfig.json 2000 undefined WatchType: Config file for the inferred project root +Info 56 [00:01:35.500] Search path: /a/b/projects/project/src +Info 57 [00:01:36.500] For info: /a/b/projects/project/src/index.ts :: Config file name: /a/b/projects/project/tsconfig.json +Info 58 [00:01:37.500] Scheduled: /a/b/projects/project/tsconfig.json, Cancelled earlier one +Info 59 [00:01:38.500] Scheduled: *ensureProjectForOpenFiles*, Cancelled earlier one +Info 60 [00:01:39.500] Elapsed:: *ms FileWatcher:: Triggered with /a/b/projects/project/tsconfig.json 0:: WatchInfo: /a/b/projects/project/tsconfig.json 2000 undefined WatchType: Config file for the inferred project root Before running timeout callbacks //// [/a/b/projects/project/tsconfig.json] {} @@ -195,9 +195,9 @@ FsWatches:: FsWatchesRecursive:: -Info 61 [16:01:40.500] Running: /a/b/projects/project/tsconfig.json -Info 62 [16:01:41.500] Loading configured project /a/b/projects/project/tsconfig.json -Info 63 [16:01:42.500] Config: /a/b/projects/project/tsconfig.json : { +Info 61 [00:01:40.500] Running: /a/b/projects/project/tsconfig.json +Info 62 [00:01:41.500] Loading configured project /a/b/projects/project/tsconfig.json +Info 63 [00:01:42.500] Config: /a/b/projects/project/tsconfig.json : { "rootNames": [ "/a/b/projects/project/src/index.ts" ], @@ -205,18 +205,18 @@ Info 63 [16:01:42.500] Config: /a/b/projects/project/tsconfig.json : { "configFilePath": "/a/b/projects/project/tsconfig.json" } } -Info 64 [16:01:43.500] DirectoryWatcher:: Added:: WatchInfo: /a/b/projects/project 1 undefined Config: /a/b/projects/project/tsconfig.json WatchType: Wild card directory -Info 65 [16:01:44.500] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /a/b/projects/project 1 undefined Config: /a/b/projects/project/tsconfig.json WatchType: Wild card directory -Info 66 [16:01:45.500] Plugins were requested but not running in environment that supports 'require'. Nothing will be loaded -Info 67 [16:01:46.500] FileWatcher:: Close:: WatchInfo: /a/b/projects/project/src/tsconfig.json 2000 undefined WatchType: Config file for the inferred project root -Info 68 [16:01:47.500] FileWatcher:: Close:: WatchInfo: /a/b/projects/project/src/jsconfig.json 2000 undefined WatchType: Config file for the inferred project root -Info 69 [16:01:48.500] FileWatcher:: Close:: WatchInfo: /a/b/projects/project/jsconfig.json 2000 undefined WatchType: Config file for the inferred project root -Info 70 [16:01:49.500] Starting updateGraphWorker: Project: /a/b/projects/project/tsconfig.json -Info 71 [16:01:50.500] DirectoryWatcher:: Added:: WatchInfo: /a/b/projects/project/node_modules/@types 1 undefined Project: /a/b/projects/project/tsconfig.json WatchType: Type roots -Info 72 [16:01:51.500] 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 73 [16:01:52.500] Finishing updateGraphWorker: Project: /a/b/projects/project/tsconfig.json Version: 1 structureChanged: true structureIsReused:: Not Elapsed:: *ms -Info 74 [16:01:53.500] Project '/a/b/projects/project/tsconfig.json' (Configured) -Info 75 [16:01:54.500] Files (2) +Info 64 [00:01:43.500] DirectoryWatcher:: Added:: WatchInfo: /a/b/projects/project 1 undefined Config: /a/b/projects/project/tsconfig.json WatchType: Wild card directory +Info 65 [00:01:44.500] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /a/b/projects/project 1 undefined Config: /a/b/projects/project/tsconfig.json WatchType: Wild card directory +Info 66 [00:01:45.500] Plugins were requested but not running in environment that supports 'require'. Nothing will be loaded +Info 67 [00:01:46.500] FileWatcher:: Close:: WatchInfo: /a/b/projects/project/src/tsconfig.json 2000 undefined WatchType: Config file for the inferred project root +Info 68 [00:01:47.500] FileWatcher:: Close:: WatchInfo: /a/b/projects/project/src/jsconfig.json 2000 undefined WatchType: Config file for the inferred project root +Info 69 [00:01:48.500] FileWatcher:: Close:: WatchInfo: /a/b/projects/project/jsconfig.json 2000 undefined WatchType: Config file for the inferred project root +Info 70 [00:01:49.500] Starting updateGraphWorker: Project: /a/b/projects/project/tsconfig.json +Info 71 [00:01:50.500] DirectoryWatcher:: Added:: WatchInfo: /a/b/projects/project/node_modules/@types 1 undefined Project: /a/b/projects/project/tsconfig.json WatchType: Type roots +Info 72 [00:01:51.500] 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 73 [00:01:52.500] Finishing updateGraphWorker: Project: /a/b/projects/project/tsconfig.json Version: 1 structureChanged: true structureIsReused:: Not Elapsed:: *ms +Info 74 [00:01:53.500] Project '/a/b/projects/project/tsconfig.json' (Configured) +Info 75 [00:01:54.500] Files (2) /a/lib/lib.d.ts /a/b/projects/project/src/index.ts @@ -226,40 +226,40 @@ Info 75 [16:01:54.500] Files (2) src/index.ts Matched by default include pattern '**/*' -Info 76 [16:01:55.500] ----------------------------------------------- -Info 77 [16:01:56.500] Running: *ensureProjectForOpenFiles* -Info 78 [16:01:57.500] Before ensureProjectForOpenFiles: -Info 79 [16:01:58.500] Project '/a/b/projects/project/tsconfig.json' (Configured) -Info 79 [16:01:59.500] Files (2) - -Info 79 [16:02:00.500] ----------------------------------------------- -Info 79 [16:02:01.500] Project '/dev/null/inferredProject1*' (Inferred) -Info 79 [16:02:02.500] Files (2) - -Info 79 [16:02:03.500] ----------------------------------------------- -Info 79 [16:02:04.500] Open files: -Info 79 [16:02:05.500] FileName: /a/b/projects/project/src/index.ts ProjectRootPath: /a/b/projects/proj -Info 79 [16:02:06.500] Projects: /a/b/projects/project/tsconfig.json -Info 79 [16:02:07.500] Starting updateGraphWorker: Project: /dev/null/inferredProject1* -Info 80 [16:02:08.500] Finishing updateGraphWorker: Project: /dev/null/inferredProject1* Version: 2 structureChanged: true structureIsReused:: Not Elapsed:: *ms -Info 81 [16:02:09.500] Project '/dev/null/inferredProject1*' (Inferred) -Info 82 [16:02:10.500] Files (0) +Info 76 [00:01:55.500] ----------------------------------------------- +Info 77 [00:01:56.500] Running: *ensureProjectForOpenFiles* +Info 78 [00:01:57.500] Before ensureProjectForOpenFiles: +Info 79 [00:01:58.500] Project '/a/b/projects/project/tsconfig.json' (Configured) +Info 79 [00:01:59.500] Files (2) + +Info 79 [00:02:00.500] ----------------------------------------------- +Info 79 [00:02:01.500] Project '/dev/null/inferredProject1*' (Inferred) +Info 79 [00:02:02.500] Files (2) + +Info 79 [00:02:03.500] ----------------------------------------------- +Info 79 [00:02:04.500] Open files: +Info 79 [00:02:05.500] FileName: /a/b/projects/project/src/index.ts ProjectRootPath: /a/b/projects/proj +Info 79 [00:02:06.500] Projects: /a/b/projects/project/tsconfig.json +Info 79 [00:02:07.500] Starting updateGraphWorker: Project: /dev/null/inferredProject1* +Info 80 [00:02:08.500] Finishing updateGraphWorker: Project: /dev/null/inferredProject1* Version: 2 structureChanged: true structureIsReused:: Not Elapsed:: *ms +Info 81 [00:02:09.500] Project '/dev/null/inferredProject1*' (Inferred) +Info 82 [00:02:10.500] Files (0) -Info 83 [16:02:11.500] ----------------------------------------------- -Info 84 [16:02:12.500] After ensureProjectForOpenFiles: -Info 85 [16:02:13.500] Project '/a/b/projects/project/tsconfig.json' (Configured) -Info 85 [16:02:14.500] Files (2) +Info 83 [00:02:11.500] ----------------------------------------------- +Info 84 [00:02:12.500] After ensureProjectForOpenFiles: +Info 85 [00:02:13.500] Project '/a/b/projects/project/tsconfig.json' (Configured) +Info 85 [00:02:14.500] Files (2) -Info 85 [16:02:15.500] ----------------------------------------------- -Info 85 [16:02:16.500] Project '/dev/null/inferredProject1*' (Inferred) -Info 85 [16:02:17.500] Files (0) +Info 85 [00:02:15.500] ----------------------------------------------- +Info 85 [00:02:16.500] Project '/dev/null/inferredProject1*' (Inferred) +Info 85 [00:02:17.500] Files (0) -Info 85 [16:02:18.500] ----------------------------------------------- -Info 85 [16:02:19.500] Open files: -Info 85 [16:02:20.500] FileName: /a/b/projects/project/src/index.ts ProjectRootPath: /a/b/projects/proj -Info 85 [16:02:21.500] Projects: /a/b/projects/project/tsconfig.json +Info 85 [00:02:18.500] ----------------------------------------------- +Info 85 [00:02:19.500] Open files: +Info 85 [00:02:20.500] FileName: /a/b/projects/project/src/index.ts ProjectRootPath: /a/b/projects/proj +Info 85 [00:02:21.500] Projects: /a/b/projects/project/tsconfig.json After running timeout callbacks PolledWatches:: 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 ced97345168b6..8e57555af5578 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 @@ -1,4 +1,4 @@ -Info 0 [16:00:23.000] Provided types map file "/typesMap.json" doesn't exist +Info 0 [00:00:23.000] Provided types map file "/typesMap.json" doesn't exist Creating project service //// [/a/lib/lib.d.ts] /// @@ -23,26 +23,26 @@ FsWatches:: FsWatchesRecursive:: -Info 1 [16:00:24.000] Search path: /root/teams/VSCode68/Shared Documents/General/jt-ts-test-workspace -Info 2 [16:00:25.000] For info: /root/teams/VSCode68/Shared Documents/General/jt-ts-test-workspace/x.js :: No config files found. -Info 3 [16:00:26.000] Plugins were requested but not running in environment that supports 'require'. Nothing will be loaded -Info 4 [16:00:27.000] FileWatcher:: Added:: WatchInfo: /root/teams/VSCode68/Shared Documents/General/jt-ts-test-workspace/tsconfig.json 2000 undefined WatchType: Config file for the inferred project root -Info 5 [16:00:28.000] FileWatcher:: Added:: WatchInfo: /root/teams/VSCode68/Shared Documents/General/jt-ts-test-workspace/jsconfig.json 2000 undefined WatchType: Config file for the inferred project root -Info 6 [16:00:29.000] FileWatcher:: Added:: WatchInfo: /root/teams/VSCode68/Shared Documents/General/tsconfig.json 2000 undefined WatchType: Config file for the inferred project root -Info 7 [16:00:30.000] FileWatcher:: Added:: WatchInfo: /root/teams/VSCode68/Shared Documents/General/jsconfig.json 2000 undefined WatchType: Config file for the inferred project root -Info 8 [16:00:31.000] FileWatcher:: Added:: WatchInfo: /root/teams/VSCode68/Shared Documents/tsconfig.json 2000 undefined WatchType: Config file for the inferred project root -Info 9 [16:00:32.000] FileWatcher:: Added:: WatchInfo: /root/teams/VSCode68/Shared Documents/jsconfig.json 2000 undefined WatchType: Config file for the inferred project root -Info 10 [16:00:33.000] Starting updateGraphWorker: Project: /dev/null/inferredProject1* -Info 11 [16:00:34.000] FileWatcher:: Added:: WatchInfo: /a/lib/lib.d.ts 500 undefined WatchType: Closed Script info -Info 12 [16:00:35.000] DirectoryWatcher:: Added:: WatchInfo: /root/teams/VSCode68/Shared Documents/General/jt-ts-test-workspace/node_modules/@types 1 undefined Project: /dev/null/inferredProject1* WatchType: Type roots -Info 13 [16:00:36.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /root/teams/VSCode68/Shared Documents/General/jt-ts-test-workspace/node_modules/@types 1 undefined Project: /dev/null/inferredProject1* WatchType: Type roots -Info 14 [16:00:37.000] DirectoryWatcher:: Added:: WatchInfo: /root/teams/VSCode68/Shared Documents/General/node_modules/@types 1 undefined Project: /dev/null/inferredProject1* WatchType: Type roots -Info 15 [16:00:38.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /root/teams/VSCode68/Shared Documents/General/node_modules/@types 1 undefined Project: /dev/null/inferredProject1* WatchType: Type roots -Info 16 [16:00:39.000] DirectoryWatcher:: Added:: WatchInfo: /root/teams/VSCode68/Shared Documents/node_modules/@types 1 undefined Project: /dev/null/inferredProject1* WatchType: Type roots -Info 17 [16:00:40.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /root/teams/VSCode68/Shared Documents/node_modules/@types 1 undefined Project: /dev/null/inferredProject1* WatchType: Type roots -Info 18 [16:00:41.000] Finishing updateGraphWorker: Project: /dev/null/inferredProject1* Version: 1 structureChanged: true structureIsReused:: Not Elapsed:: *ms -Info 19 [16:00:42.000] Project '/dev/null/inferredProject1*' (Inferred) -Info 20 [16:00:43.000] Files (2) +Info 1 [00:00:24.000] Search path: /root/teams/VSCode68/Shared Documents/General/jt-ts-test-workspace +Info 2 [00:00:25.000] For info: /root/teams/VSCode68/Shared Documents/General/jt-ts-test-workspace/x.js :: No config files found. +Info 3 [00:00:26.000] Plugins were requested but not running in environment that supports 'require'. Nothing will be loaded +Info 4 [00:00:27.000] FileWatcher:: Added:: WatchInfo: /root/teams/VSCode68/Shared Documents/General/jt-ts-test-workspace/tsconfig.json 2000 undefined WatchType: Config file for the inferred project root +Info 5 [00:00:28.000] FileWatcher:: Added:: WatchInfo: /root/teams/VSCode68/Shared Documents/General/jt-ts-test-workspace/jsconfig.json 2000 undefined WatchType: Config file for the inferred project root +Info 6 [00:00:29.000] FileWatcher:: Added:: WatchInfo: /root/teams/VSCode68/Shared Documents/General/tsconfig.json 2000 undefined WatchType: Config file for the inferred project root +Info 7 [00:00:30.000] FileWatcher:: Added:: WatchInfo: /root/teams/VSCode68/Shared Documents/General/jsconfig.json 2000 undefined WatchType: Config file for the inferred project root +Info 8 [00:00:31.000] FileWatcher:: Added:: WatchInfo: /root/teams/VSCode68/Shared Documents/tsconfig.json 2000 undefined WatchType: Config file for the inferred project root +Info 9 [00:00:32.000] FileWatcher:: Added:: WatchInfo: /root/teams/VSCode68/Shared Documents/jsconfig.json 2000 undefined WatchType: Config file for the inferred project root +Info 10 [00:00:33.000] Starting updateGraphWorker: Project: /dev/null/inferredProject1* +Info 11 [00:00:34.000] FileWatcher:: Added:: WatchInfo: /a/lib/lib.d.ts 500 undefined WatchType: Closed Script info +Info 12 [00:00:35.000] DirectoryWatcher:: Added:: WatchInfo: /root/teams/VSCode68/Shared Documents/General/jt-ts-test-workspace/node_modules/@types 1 undefined Project: /dev/null/inferredProject1* WatchType: Type roots +Info 13 [00:00:36.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /root/teams/VSCode68/Shared Documents/General/jt-ts-test-workspace/node_modules/@types 1 undefined Project: /dev/null/inferredProject1* WatchType: Type roots +Info 14 [00:00:37.000] DirectoryWatcher:: Added:: WatchInfo: /root/teams/VSCode68/Shared Documents/General/node_modules/@types 1 undefined Project: /dev/null/inferredProject1* WatchType: Type roots +Info 15 [00:00:38.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /root/teams/VSCode68/Shared Documents/General/node_modules/@types 1 undefined Project: /dev/null/inferredProject1* WatchType: Type roots +Info 16 [00:00:39.000] DirectoryWatcher:: Added:: WatchInfo: /root/teams/VSCode68/Shared Documents/node_modules/@types 1 undefined Project: /dev/null/inferredProject1* WatchType: Type roots +Info 17 [00:00:40.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /root/teams/VSCode68/Shared Documents/node_modules/@types 1 undefined Project: /dev/null/inferredProject1* WatchType: Type roots +Info 18 [00:00:41.000] Finishing updateGraphWorker: Project: /dev/null/inferredProject1* Version: 1 structureChanged: true structureIsReused:: Not Elapsed:: *ms +Info 19 [00:00:42.000] Project '/dev/null/inferredProject1*' (Inferred) +Info 20 [00:00:43.000] Files (2) /a/lib/lib.d.ts /root/teams/VSCode68/Shared Documents/General/jt-ts-test-workspace/x.js @@ -52,11 +52,11 @@ Info 20 [16:00:43.000] Files (2) x.js Root file specified for compilation -Info 21 [16:00:44.000] ----------------------------------------------- -Info 22 [16:00:45.000] Project '/dev/null/inferredProject1*' (Inferred) -Info 22 [16:00:46.000] Files (2) +Info 21 [00:00:44.000] ----------------------------------------------- +Info 22 [00:00:45.000] Project '/dev/null/inferredProject1*' (Inferred) +Info 22 [00:00:46.000] Files (2) -Info 22 [16:00:47.000] ----------------------------------------------- -Info 22 [16:00:48.000] Open files: -Info 22 [16:00:49.000] FileName: /root/teams/VSCode68/Shared Documents/General/jt-ts-test-workspace/x.js ProjectRootPath: undefined -Info 22 [16:00:50.000] Projects: /dev/null/inferredProject1* \ No newline at end of file +Info 22 [00:00:47.000] ----------------------------------------------- +Info 22 [00:00:48.000] Open files: +Info 22 [00:00:49.000] FileName: /root/teams/VSCode68/Shared Documents/General/jt-ts-test-workspace/x.js ProjectRootPath: undefined +Info 22 [00:00:50.000] Projects: /dev/null/inferredProject1* \ No newline at end of file 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 1f607f709e89f..79225e0e9e855 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 @@ -1,4 +1,4 @@ -Info 0 [16:00:23.000] Provided types map file "/typesMap.json" doesn't exist +Info 0 [00:00:23.000] Provided types map file "/typesMap.json" doesn't exist Creating project service //// [/a/lib/lib.d.ts] /// @@ -23,26 +23,26 @@ FsWatches:: FsWatchesRecursive:: -Info 1 [16:00:24.000] Search path: /root/teams/VSCode68/Shared Documents/General/jt-ts-test-workspace -Info 2 [16:00:25.000] For info: /root/teams/VSCode68/Shared Documents/General/jt-ts-test-workspace/x.js :: No config files found. -Info 3 [16:00:26.000] Plugins were requested but not running in environment that supports 'require'. Nothing will be loaded -Info 4 [16:00:27.000] FileWatcher:: Added:: WatchInfo: /root/teams/VSCode68/Shared Documents/General/jt-ts-test-workspace/tsconfig.json 2000 undefined WatchType: Config file for the inferred project root -Info 5 [16:00:28.000] FileWatcher:: Added:: WatchInfo: /root/teams/VSCode68/Shared Documents/General/jt-ts-test-workspace/jsconfig.json 2000 undefined WatchType: Config file for the inferred project root -Info 6 [16:00:29.000] FileWatcher:: Added:: WatchInfo: /root/teams/VSCode68/Shared Documents/General/tsconfig.json 2000 undefined WatchType: Config file for the inferred project root -Info 7 [16:00:30.000] FileWatcher:: Added:: WatchInfo: /root/teams/VSCode68/Shared Documents/General/jsconfig.json 2000 undefined WatchType: Config file for the inferred project root -Info 8 [16:00:31.000] FileWatcher:: Added:: WatchInfo: /root/teams/VSCode68/Shared Documents/tsconfig.json 2000 undefined WatchType: Config file for the inferred project root -Info 9 [16:00:32.000] FileWatcher:: Added:: WatchInfo: /root/teams/VSCode68/Shared Documents/jsconfig.json 2000 undefined WatchType: Config file for the inferred project root -Info 10 [16:00:33.000] Starting updateGraphWorker: Project: /dev/null/inferredProject1* -Info 11 [16:00:34.000] FileWatcher:: Added:: WatchInfo: /a/lib/lib.d.ts 500 undefined WatchType: Closed Script info -Info 12 [16:00:35.000] DirectoryWatcher:: Added:: WatchInfo: /root/teams/VSCode68/Shared Documents/General/jt-ts-test-workspace/node_modules/@types 1 undefined Project: /dev/null/inferredProject1* WatchType: Type roots -Info 13 [16:00:36.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /root/teams/VSCode68/Shared Documents/General/jt-ts-test-workspace/node_modules/@types 1 undefined Project: /dev/null/inferredProject1* WatchType: Type roots -Info 14 [16:00:37.000] DirectoryWatcher:: Added:: WatchInfo: /root/teams/VSCode68/Shared Documents/General/node_modules/@types 1 undefined Project: /dev/null/inferredProject1* WatchType: Type roots -Info 15 [16:00:38.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /root/teams/VSCode68/Shared Documents/General/node_modules/@types 1 undefined Project: /dev/null/inferredProject1* WatchType: Type roots -Info 16 [16:00:39.000] DirectoryWatcher:: Added:: WatchInfo: /root/teams/VSCode68/Shared Documents/node_modules/@types 1 undefined Project: /dev/null/inferredProject1* WatchType: Type roots -Info 17 [16:00:40.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /root/teams/VSCode68/Shared Documents/node_modules/@types 1 undefined Project: /dev/null/inferredProject1* WatchType: Type roots -Info 18 [16:00:41.000] Finishing updateGraphWorker: Project: /dev/null/inferredProject1* Version: 1 structureChanged: true structureIsReused:: Not Elapsed:: *ms -Info 19 [16:00:42.000] Project '/dev/null/inferredProject1*' (Inferred) -Info 20 [16:00:43.000] Files (2) +Info 1 [00:00:24.000] Search path: /root/teams/VSCode68/Shared Documents/General/jt-ts-test-workspace +Info 2 [00:00:25.000] For info: /root/teams/VSCode68/Shared Documents/General/jt-ts-test-workspace/x.js :: No config files found. +Info 3 [00:00:26.000] Plugins were requested but not running in environment that supports 'require'. Nothing will be loaded +Info 4 [00:00:27.000] FileWatcher:: Added:: WatchInfo: /root/teams/VSCode68/Shared Documents/General/jt-ts-test-workspace/tsconfig.json 2000 undefined WatchType: Config file for the inferred project root +Info 5 [00:00:28.000] FileWatcher:: Added:: WatchInfo: /root/teams/VSCode68/Shared Documents/General/jt-ts-test-workspace/jsconfig.json 2000 undefined WatchType: Config file for the inferred project root +Info 6 [00:00:29.000] FileWatcher:: Added:: WatchInfo: /root/teams/VSCode68/Shared Documents/General/tsconfig.json 2000 undefined WatchType: Config file for the inferred project root +Info 7 [00:00:30.000] FileWatcher:: Added:: WatchInfo: /root/teams/VSCode68/Shared Documents/General/jsconfig.json 2000 undefined WatchType: Config file for the inferred project root +Info 8 [00:00:31.000] FileWatcher:: Added:: WatchInfo: /root/teams/VSCode68/Shared Documents/tsconfig.json 2000 undefined WatchType: Config file for the inferred project root +Info 9 [00:00:32.000] FileWatcher:: Added:: WatchInfo: /root/teams/VSCode68/Shared Documents/jsconfig.json 2000 undefined WatchType: Config file for the inferred project root +Info 10 [00:00:33.000] Starting updateGraphWorker: Project: /dev/null/inferredProject1* +Info 11 [00:00:34.000] FileWatcher:: Added:: WatchInfo: /a/lib/lib.d.ts 500 undefined WatchType: Closed Script info +Info 12 [00:00:35.000] DirectoryWatcher:: Added:: WatchInfo: /root/teams/VSCode68/Shared Documents/General/jt-ts-test-workspace/node_modules/@types 1 undefined Project: /dev/null/inferredProject1* WatchType: Type roots +Info 13 [00:00:36.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /root/teams/VSCode68/Shared Documents/General/jt-ts-test-workspace/node_modules/@types 1 undefined Project: /dev/null/inferredProject1* WatchType: Type roots +Info 14 [00:00:37.000] DirectoryWatcher:: Added:: WatchInfo: /root/teams/VSCode68/Shared Documents/General/node_modules/@types 1 undefined Project: /dev/null/inferredProject1* WatchType: Type roots +Info 15 [00:00:38.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /root/teams/VSCode68/Shared Documents/General/node_modules/@types 1 undefined Project: /dev/null/inferredProject1* WatchType: Type roots +Info 16 [00:00:39.000] DirectoryWatcher:: Added:: WatchInfo: /root/teams/VSCode68/Shared Documents/node_modules/@types 1 undefined Project: /dev/null/inferredProject1* WatchType: Type roots +Info 17 [00:00:40.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /root/teams/VSCode68/Shared Documents/node_modules/@types 1 undefined Project: /dev/null/inferredProject1* WatchType: Type roots +Info 18 [00:00:41.000] Finishing updateGraphWorker: Project: /dev/null/inferredProject1* Version: 1 structureChanged: true structureIsReused:: Not Elapsed:: *ms +Info 19 [00:00:42.000] Project '/dev/null/inferredProject1*' (Inferred) +Info 20 [00:00:43.000] Files (2) /a/lib/lib.d.ts /root/teams/VSCode68/Shared Documents/General/jt-ts-test-workspace/x.js @@ -52,11 +52,11 @@ Info 20 [16:00:43.000] Files (2) x.js Root file specified for compilation -Info 21 [16:00:44.000] ----------------------------------------------- -Info 22 [16:00:45.000] Project '/dev/null/inferredProject1*' (Inferred) -Info 22 [16:00:46.000] Files (2) +Info 21 [00:00:44.000] ----------------------------------------------- +Info 22 [00:00:45.000] Project '/dev/null/inferredProject1*' (Inferred) +Info 22 [00:00:46.000] Files (2) -Info 22 [16:00:47.000] ----------------------------------------------- -Info 22 [16:00:48.000] Open files: -Info 22 [16:00:49.000] FileName: /root/teams/VSCode68/Shared Documents/General/jt-ts-test-workspace/x.js ProjectRootPath: /a/b -Info 22 [16:00:50.000] Projects: /dev/null/inferredProject1* \ No newline at end of file +Info 22 [00:00:47.000] ----------------------------------------------- +Info 22 [00:00:48.000] Open files: +Info 22 [00:00:49.000] FileName: /root/teams/VSCode68/Shared Documents/General/jt-ts-test-workspace/x.js ProjectRootPath: /a/b +Info 22 [00:00:50.000] Projects: /dev/null/inferredProject1* \ No newline at end of file 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 db0e806ddd748..e57c0cadbfeb5 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 @@ -1,4 +1,4 @@ -Info 0 [16:00:19.000] Provided types map file "/typesMap.json" doesn't exist +Info 0 [00:00:19.000] Provided types map file "/typesMap.json" doesn't exist Creating project service //// [/a/b/src/file1.ts] let x = 1; @@ -22,11 +22,11 @@ FsWatches:: FsWatchesRecursive:: -Info 1 [16:00:20.000] Search path: /a/b/src -Info 2 [16:00:21.000] For info: /a/b/src/file1.ts :: Config file name: /a/b/tsconfig.json -Info 3 [16:00:22.000] Creating configuration project /a/b/tsconfig.json -Info 4 [16:00:23.000] FileWatcher:: Added:: WatchInfo: /a/b/tsconfig.json 2000 undefined Project: /a/b/tsconfig.json WatchType: Config file -Info 5 [16:00:24.000] Config: /a/b/tsconfig.json : { +Info 1 [00:00:20.000] Search path: /a/b/src +Info 2 [00:00:21.000] For info: /a/b/src/file1.ts :: Config file name: /a/b/tsconfig.json +Info 3 [00:00:22.000] Creating configuration project /a/b/tsconfig.json +Info 4 [00:00:23.000] FileWatcher:: Added:: WatchInfo: /a/b/tsconfig.json 2000 undefined Project: /a/b/tsconfig.json WatchType: Config file +Info 5 [00:00:24.000] Config: /a/b/tsconfig.json : { "rootNames": [ "/a/b/src/file1.ts", "/a/b/file3.ts" @@ -35,15 +35,15 @@ Info 5 [16:00:24.000] Config: /a/b/tsconfig.json : { "configFilePath": "/a/b/tsconfig.json" } } -Info 6 [16:00:25.000] Plugins were requested but not running in environment that supports 'require'. Nothing will be loaded -Info 7 [16:00:26.000] FileWatcher:: Added:: WatchInfo: /a/b/file3.ts 500 undefined WatchType: Closed Script info -Info 8 [16:00:27.000] Starting updateGraphWorker: Project: /a/b/tsconfig.json -Info 9 [16:00:28.000] FileWatcher:: Added:: WatchInfo: /a/lib/lib.d.ts 500 undefined Project: /a/b/tsconfig.json WatchType: Missing file -Info 10 [16:00:29.000] DirectoryWatcher:: Added:: WatchInfo: /a/b/node_modules/@types 1 undefined Project: /a/b/tsconfig.json WatchType: Type roots -Info 11 [16:00:30.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /a/b/node_modules/@types 1 undefined Project: /a/b/tsconfig.json WatchType: Type roots -Info 12 [16:00:31.000] Finishing updateGraphWorker: Project: /a/b/tsconfig.json Version: 1 structureChanged: true structureIsReused:: Not Elapsed:: *ms -Info 13 [16:00:32.000] Project '/a/b/tsconfig.json' (Configured) -Info 14 [16:00:33.000] Files (2) +Info 6 [00:00:25.000] Plugins were requested but not running in environment that supports 'require'. Nothing will be loaded +Info 7 [00:00:26.000] FileWatcher:: Added:: WatchInfo: /a/b/file3.ts 500 undefined WatchType: Closed Script info +Info 8 [00:00:27.000] Starting updateGraphWorker: Project: /a/b/tsconfig.json +Info 9 [00:00:28.000] FileWatcher:: Added:: WatchInfo: /a/lib/lib.d.ts 500 undefined Project: /a/b/tsconfig.json WatchType: Missing file +Info 10 [00:00:29.000] DirectoryWatcher:: Added:: WatchInfo: /a/b/node_modules/@types 1 undefined Project: /a/b/tsconfig.json WatchType: Type roots +Info 11 [00:00:30.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /a/b/node_modules/@types 1 undefined Project: /a/b/tsconfig.json WatchType: Type roots +Info 12 [00:00:31.000] Finishing updateGraphWorker: Project: /a/b/tsconfig.json Version: 1 structureChanged: true structureIsReused:: Not Elapsed:: *ms +Info 13 [00:00:32.000] Project '/a/b/tsconfig.json' (Configured) +Info 14 [00:00:33.000] Files (2) /a/b/src/file1.ts /a/b/file3.ts @@ -53,107 +53,107 @@ Info 14 [16:00:33.000] Files (2) file3.ts Part of 'files' list in tsconfig.json -Info 15 [16:00:34.000] ----------------------------------------------- -Info 16 [16:00:35.000] Project '/a/b/tsconfig.json' (Configured) -Info 16 [16:00:36.000] Files (2) - -Info 16 [16:00:37.000] ----------------------------------------------- -Info 16 [16:00:38.000] Open files: -Info 16 [16:00:39.000] FileName: /a/b/src/file1.ts ProjectRootPath: undefined -Info 16 [16:00:40.000] Projects: /a/b/tsconfig.json -Info 16 [16:00:41.000] Search path: /a/b/src -Info 17 [16:00:42.000] For info: /a/b/src/file2.ts :: Config file name: /a/b/tsconfig.json -Info 18 [16:00:43.000] Plugins were requested but not running in environment that supports 'require'. Nothing will be loaded -Info 19 [16:00:44.000] Starting updateGraphWorker: Project: /dev/null/inferredProject1* -Info 20 [16:00:45.000] FileWatcher:: Added:: WatchInfo: /a/lib/lib.d.ts 500 undefined Project: /dev/null/inferredProject1* WatchType: Missing file -Info 21 [16:00:46.000] DirectoryWatcher:: Added:: WatchInfo: /a/b/src/node_modules/@types 1 undefined Project: /dev/null/inferredProject1* WatchType: Type roots -Info 22 [16:00:47.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /a/b/src/node_modules/@types 1 undefined Project: /dev/null/inferredProject1* WatchType: Type roots -Info 23 [16:00:48.000] Finishing updateGraphWorker: Project: /dev/null/inferredProject1* Version: 1 structureChanged: true structureIsReused:: Not Elapsed:: *ms -Info 24 [16:00:49.000] Project '/dev/null/inferredProject1*' (Inferred) -Info 25 [16:00:50.000] Files (1) +Info 15 [00:00:34.000] ----------------------------------------------- +Info 16 [00:00:35.000] Project '/a/b/tsconfig.json' (Configured) +Info 16 [00:00:36.000] Files (2) + +Info 16 [00:00:37.000] ----------------------------------------------- +Info 16 [00:00:38.000] Open files: +Info 16 [00:00:39.000] FileName: /a/b/src/file1.ts ProjectRootPath: undefined +Info 16 [00:00:40.000] Projects: /a/b/tsconfig.json +Info 16 [00:00:41.000] Search path: /a/b/src +Info 17 [00:00:42.000] For info: /a/b/src/file2.ts :: Config file name: /a/b/tsconfig.json +Info 18 [00:00:43.000] Plugins were requested but not running in environment that supports 'require'. Nothing will be loaded +Info 19 [00:00:44.000] Starting updateGraphWorker: Project: /dev/null/inferredProject1* +Info 20 [00:00:45.000] FileWatcher:: Added:: WatchInfo: /a/lib/lib.d.ts 500 undefined Project: /dev/null/inferredProject1* WatchType: Missing file +Info 21 [00:00:46.000] DirectoryWatcher:: Added:: WatchInfo: /a/b/src/node_modules/@types 1 undefined Project: /dev/null/inferredProject1* WatchType: Type roots +Info 22 [00:00:47.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /a/b/src/node_modules/@types 1 undefined Project: /dev/null/inferredProject1* WatchType: Type roots +Info 23 [00:00:48.000] Finishing updateGraphWorker: Project: /dev/null/inferredProject1* Version: 1 structureChanged: true structureIsReused:: Not Elapsed:: *ms +Info 24 [00:00:49.000] Project '/dev/null/inferredProject1*' (Inferred) +Info 25 [00:00:50.000] Files (1) /a/b/src/file2.ts file2.ts Root file specified for compilation -Info 26 [16:00:51.000] ----------------------------------------------- -Info 27 [16:00:52.000] Project '/a/b/tsconfig.json' (Configured) -Info 27 [16:00:53.000] Files (2) - -Info 27 [16:00:54.000] ----------------------------------------------- -Info 27 [16:00:55.000] Project '/dev/null/inferredProject1*' (Inferred) -Info 27 [16:00:56.000] Files (1) - -Info 27 [16:00:57.000] ----------------------------------------------- -Info 27 [16:00:58.000] Open files: -Info 27 [16:00:59.000] FileName: /a/b/src/file1.ts ProjectRootPath: undefined -Info 27 [16:01:00.000] Projects: /a/b/tsconfig.json -Info 27 [16:01:01.000] FileName: /a/b/src/file2.ts ProjectRootPath: undefined -Info 27 [16:01:02.000] Projects: /dev/null/inferredProject1* -Info 27 [16:01:03.000] FileWatcher:: Close:: WatchInfo: /a/b/file3.ts 500 undefined WatchType: Closed Script info -Info 28 [16:01:04.000] Search path: /a/b -Info 29 [16:01:05.000] For info: /a/b/file3.ts :: Config file name: /a/b/tsconfig.json -Info 30 [16:01:06.000] Project '/a/b/tsconfig.json' (Configured) -Info 30 [16:01:07.000] Files (2) - -Info 30 [16:01:08.000] ----------------------------------------------- -Info 30 [16:01:09.000] Project '/dev/null/inferredProject1*' (Inferred) -Info 30 [16:01:10.000] Files (1) - -Info 30 [16:01:11.000] ----------------------------------------------- -Info 30 [16:01:12.000] Open files: -Info 30 [16:01:13.000] FileName: /a/b/src/file1.ts ProjectRootPath: undefined -Info 30 [16:01:14.000] Projects: /a/b/tsconfig.json -Info 30 [16:01:15.000] FileName: /a/b/src/file2.ts ProjectRootPath: undefined -Info 30 [16:01:16.000] Projects: /dev/null/inferredProject1* -Info 30 [16:01:17.000] FileName: /a/b/file3.ts ProjectRootPath: undefined -Info 30 [16:01:18.000] Projects: /a/b/tsconfig.json -Info 30 [16:01:19.000] Search path: /a -Info 31 [16:01:20.000] For info: /a/file4.ts :: No config files found. -Info 32 [16:01:21.000] Plugins were requested but not running in environment that supports 'require'. Nothing will be loaded -Info 33 [16:01:22.000] Starting updateGraphWorker: Project: /dev/null/inferredProject2* -Info 34 [16:01:23.000] FileWatcher:: Added:: WatchInfo: /a/lib/lib.d.ts 500 undefined Project: /dev/null/inferredProject2* WatchType: Missing file -Info 35 [16:01:24.000] DirectoryWatcher:: Added:: WatchInfo: /a/node_modules/@types 1 undefined Project: /dev/null/inferredProject2* WatchType: Type roots -Info 36 [16:01:25.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /a/node_modules/@types 1 undefined Project: /dev/null/inferredProject2* WatchType: Type roots -Info 37 [16:01:26.000] Finishing updateGraphWorker: Project: /dev/null/inferredProject2* Version: 1 structureChanged: true structureIsReused:: Not Elapsed:: *ms -Info 38 [16:01:27.000] Project '/dev/null/inferredProject2*' (Inferred) -Info 39 [16:01:28.000] Files (1) +Info 26 [00:00:51.000] ----------------------------------------------- +Info 27 [00:00:52.000] Project '/a/b/tsconfig.json' (Configured) +Info 27 [00:00:53.000] Files (2) + +Info 27 [00:00:54.000] ----------------------------------------------- +Info 27 [00:00:55.000] Project '/dev/null/inferredProject1*' (Inferred) +Info 27 [00:00:56.000] Files (1) + +Info 27 [00:00:57.000] ----------------------------------------------- +Info 27 [00:00:58.000] Open files: +Info 27 [00:00:59.000] FileName: /a/b/src/file1.ts ProjectRootPath: undefined +Info 27 [00:01:00.000] Projects: /a/b/tsconfig.json +Info 27 [00:01:01.000] FileName: /a/b/src/file2.ts ProjectRootPath: undefined +Info 27 [00:01:02.000] Projects: /dev/null/inferredProject1* +Info 27 [00:01:03.000] FileWatcher:: Close:: WatchInfo: /a/b/file3.ts 500 undefined WatchType: Closed Script info +Info 28 [00:01:04.000] Search path: /a/b +Info 29 [00:01:05.000] For info: /a/b/file3.ts :: Config file name: /a/b/tsconfig.json +Info 30 [00:01:06.000] Project '/a/b/tsconfig.json' (Configured) +Info 30 [00:01:07.000] Files (2) + +Info 30 [00:01:08.000] ----------------------------------------------- +Info 30 [00:01:09.000] Project '/dev/null/inferredProject1*' (Inferred) +Info 30 [00:01:10.000] Files (1) + +Info 30 [00:01:11.000] ----------------------------------------------- +Info 30 [00:01:12.000] Open files: +Info 30 [00:01:13.000] FileName: /a/b/src/file1.ts ProjectRootPath: undefined +Info 30 [00:01:14.000] Projects: /a/b/tsconfig.json +Info 30 [00:01:15.000] FileName: /a/b/src/file2.ts ProjectRootPath: undefined +Info 30 [00:01:16.000] Projects: /dev/null/inferredProject1* +Info 30 [00:01:17.000] FileName: /a/b/file3.ts ProjectRootPath: undefined +Info 30 [00:01:18.000] Projects: /a/b/tsconfig.json +Info 30 [00:01:19.000] Search path: /a +Info 31 [00:01:20.000] For info: /a/file4.ts :: No config files found. +Info 32 [00:01:21.000] Plugins were requested but not running in environment that supports 'require'. Nothing will be loaded +Info 33 [00:01:22.000] Starting updateGraphWorker: Project: /dev/null/inferredProject2* +Info 34 [00:01:23.000] FileWatcher:: Added:: WatchInfo: /a/lib/lib.d.ts 500 undefined Project: /dev/null/inferredProject2* WatchType: Missing file +Info 35 [00:01:24.000] DirectoryWatcher:: Added:: WatchInfo: /a/node_modules/@types 1 undefined Project: /dev/null/inferredProject2* WatchType: Type roots +Info 36 [00:01:25.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /a/node_modules/@types 1 undefined Project: /dev/null/inferredProject2* WatchType: Type roots +Info 37 [00:01:26.000] Finishing updateGraphWorker: Project: /dev/null/inferredProject2* Version: 1 structureChanged: true structureIsReused:: Not Elapsed:: *ms +Info 38 [00:01:27.000] Project '/dev/null/inferredProject2*' (Inferred) +Info 39 [00:01:28.000] Files (1) /a/file4.ts file4.ts Root file specified for compilation -Info 40 [16:01:29.000] ----------------------------------------------- -Info 41 [16:01:30.000] Project '/a/b/tsconfig.json' (Configured) -Info 41 [16:01:31.000] Files (2) - -Info 41 [16:01:32.000] ----------------------------------------------- -Info 41 [16:01:33.000] Project '/dev/null/inferredProject1*' (Inferred) -Info 41 [16:01:34.000] Files (1) - -Info 41 [16:01:35.000] ----------------------------------------------- -Info 41 [16:01:36.000] Project '/dev/null/inferredProject2*' (Inferred) -Info 41 [16:01:37.000] Files (1) - -Info 41 [16:01:38.000] ----------------------------------------------- -Info 41 [16:01:39.000] Open files: -Info 41 [16:01:40.000] FileName: /a/b/src/file1.ts ProjectRootPath: undefined -Info 41 [16:01:41.000] Projects: /a/b/tsconfig.json -Info 41 [16:01:42.000] FileName: /a/b/src/file2.ts ProjectRootPath: undefined -Info 41 [16:01:43.000] Projects: /dev/null/inferredProject1* -Info 41 [16:01:44.000] FileName: /a/b/file3.ts ProjectRootPath: undefined -Info 41 [16:01:45.000] Projects: /a/b/tsconfig.json -Info 41 [16:01:46.000] FileName: /a/file4.ts ProjectRootPath: undefined -Info 41 [16:01:47.000] Projects: /dev/null/inferredProject2* -Info 41 [16:01:51.000] FileWatcher:: Triggered with /a/b/tsconfig.json 1:: WatchInfo: /a/b/tsconfig.json 2000 undefined Project: /a/b/tsconfig.json WatchType: Config file -Info 42 [16:01:52.000] Scheduled: /a/b/tsconfig.json -Info 43 [16:01:53.000] Search path: /a/b/src -Info 44 [16:01:54.000] For info: /a/b/src/file2.ts :: Config file name: /a/b/tsconfig.json -Info 45 [16:01:55.000] Scheduled: /a/b/tsconfig.json, Cancelled earlier one -Info 46 [16:01:56.000] Scheduled: *ensureProjectForOpenFiles* -Info 47 [16:01:57.000] Elapsed:: *ms FileWatcher:: Triggered with /a/b/tsconfig.json 1:: WatchInfo: /a/b/tsconfig.json 2000 undefined Project: /a/b/tsconfig.json WatchType: Config file +Info 40 [00:01:29.000] ----------------------------------------------- +Info 41 [00:01:30.000] Project '/a/b/tsconfig.json' (Configured) +Info 41 [00:01:31.000] Files (2) + +Info 41 [00:01:32.000] ----------------------------------------------- +Info 41 [00:01:33.000] Project '/dev/null/inferredProject1*' (Inferred) +Info 41 [00:01:34.000] Files (1) + +Info 41 [00:01:35.000] ----------------------------------------------- +Info 41 [00:01:36.000] Project '/dev/null/inferredProject2*' (Inferred) +Info 41 [00:01:37.000] Files (1) + +Info 41 [00:01:38.000] ----------------------------------------------- +Info 41 [00:01:39.000] Open files: +Info 41 [00:01:40.000] FileName: /a/b/src/file1.ts ProjectRootPath: undefined +Info 41 [00:01:41.000] Projects: /a/b/tsconfig.json +Info 41 [00:01:42.000] FileName: /a/b/src/file2.ts ProjectRootPath: undefined +Info 41 [00:01:43.000] Projects: /dev/null/inferredProject1* +Info 41 [00:01:44.000] FileName: /a/b/file3.ts ProjectRootPath: undefined +Info 41 [00:01:45.000] Projects: /a/b/tsconfig.json +Info 41 [00:01:46.000] FileName: /a/file4.ts ProjectRootPath: undefined +Info 41 [00:01:47.000] Projects: /dev/null/inferredProject2* +Info 41 [00:01:51.000] FileWatcher:: Triggered with /a/b/tsconfig.json 1:: WatchInfo: /a/b/tsconfig.json 2000 undefined Project: /a/b/tsconfig.json WatchType: Config file +Info 42 [00:01:52.000] Scheduled: /a/b/tsconfig.json +Info 43 [00:01:53.000] Search path: /a/b/src +Info 44 [00:01:54.000] For info: /a/b/src/file2.ts :: Config file name: /a/b/tsconfig.json +Info 45 [00:01:55.000] Scheduled: /a/b/tsconfig.json, Cancelled earlier one +Info 46 [00:01:56.000] Scheduled: *ensureProjectForOpenFiles* +Info 47 [00:01:57.000] Elapsed:: *ms FileWatcher:: Triggered with /a/b/tsconfig.json 1:: WatchInfo: /a/b/tsconfig.json 2000 undefined Project: /a/b/tsconfig.json WatchType: Config file Before running timeout callbacks //// [/a/b/tsconfig.json] {} @@ -175,9 +175,9 @@ FsWatches:: FsWatchesRecursive:: -Info 48 [16:01:58.000] Running: /a/b/tsconfig.json -Info 49 [16:01:59.000] Reloading configured project /a/b/tsconfig.json -Info 50 [16:02:00.000] Config: /a/b/tsconfig.json : { +Info 48 [00:01:58.000] Running: /a/b/tsconfig.json +Info 49 [00:01:59.000] Reloading configured project /a/b/tsconfig.json +Info 50 [00:02:00.000] Config: /a/b/tsconfig.json : { "rootNames": [ "/a/b/file3.ts", "/a/b/src/file1.ts", @@ -187,13 +187,13 @@ Info 50 [16:02:00.000] Config: /a/b/tsconfig.json : { "configFilePath": "/a/b/tsconfig.json" } } -Info 51 [16:02:01.000] DirectoryWatcher:: Added:: WatchInfo: /a/b 1 undefined Config: /a/b/tsconfig.json WatchType: Wild card directory -Info 52 [16:02:02.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /a/b 1 undefined Config: /a/b/tsconfig.json WatchType: Wild card directory -Info 53 [16:02:03.000] Plugins were requested but not running in environment that supports 'require'. Nothing will be loaded -Info 54 [16:02:04.000] Starting updateGraphWorker: Project: /a/b/tsconfig.json -Info 55 [16:02:05.000] Finishing updateGraphWorker: Project: /a/b/tsconfig.json Version: 2 structureChanged: true structureIsReused:: Not Elapsed:: *ms -Info 56 [16:02:06.000] Project '/a/b/tsconfig.json' (Configured) -Info 57 [16:02:07.000] Files (3) +Info 51 [00:02:01.000] DirectoryWatcher:: Added:: WatchInfo: /a/b 1 undefined Config: /a/b/tsconfig.json WatchType: Wild card directory +Info 52 [00:02:02.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /a/b 1 undefined Config: /a/b/tsconfig.json WatchType: Wild card directory +Info 53 [00:02:03.000] Plugins were requested but not running in environment that supports 'require'. Nothing will be loaded +Info 54 [00:02:04.000] Starting updateGraphWorker: Project: /a/b/tsconfig.json +Info 55 [00:02:05.000] Finishing updateGraphWorker: Project: /a/b/tsconfig.json Version: 2 structureChanged: true structureIsReused:: Not Elapsed:: *ms +Info 56 [00:02:06.000] Project '/a/b/tsconfig.json' (Configured) +Info 57 [00:02:07.000] Files (3) /a/b/src/file1.ts /a/b/file3.ts /a/b/src/file2.ts @@ -206,61 +206,61 @@ Info 57 [16:02:07.000] Files (3) src/file2.ts Matched by default include pattern '**/*' -Info 58 [16:02:08.000] ----------------------------------------------- -Info 59 [16:02:09.000] Running: *ensureProjectForOpenFiles* -Info 60 [16:02:10.000] Before ensureProjectForOpenFiles: -Info 61 [16:02:11.000] Project '/a/b/tsconfig.json' (Configured) -Info 61 [16:02:12.000] Files (3) - -Info 61 [16:02:13.000] ----------------------------------------------- -Info 61 [16:02:14.000] Project '/dev/null/inferredProject1*' (Inferred) -Info 61 [16:02:15.000] Files (1) - -Info 61 [16:02:16.000] ----------------------------------------------- -Info 61 [16:02:17.000] Project '/dev/null/inferredProject2*' (Inferred) -Info 61 [16:02:18.000] Files (1) - -Info 61 [16:02:19.000] ----------------------------------------------- -Info 61 [16:02:20.000] Open files: -Info 61 [16:02:21.000] FileName: /a/b/src/file1.ts ProjectRootPath: undefined -Info 61 [16:02:22.000] Projects: /a/b/tsconfig.json -Info 61 [16:02:23.000] FileName: /a/b/src/file2.ts ProjectRootPath: undefined -Info 61 [16:02:24.000] Projects: /a/b/tsconfig.json -Info 61 [16:02:25.000] FileName: /a/b/file3.ts ProjectRootPath: undefined -Info 61 [16:02:26.000] Projects: /a/b/tsconfig.json -Info 61 [16:02:27.000] FileName: /a/file4.ts ProjectRootPath: undefined -Info 61 [16:02:28.000] Projects: /dev/null/inferredProject2* -Info 61 [16:02:29.000] Starting updateGraphWorker: Project: /dev/null/inferredProject1* -Info 62 [16:02:30.000] FileWatcher:: Close:: WatchInfo: /a/lib/lib.d.ts 500 undefined Project: /dev/null/inferredProject1* WatchType: Missing file -Info 63 [16:02:31.000] Finishing updateGraphWorker: Project: /dev/null/inferredProject1* Version: 2 structureChanged: true structureIsReused:: Not Elapsed:: *ms -Info 64 [16:02:32.000] Project '/dev/null/inferredProject1*' (Inferred) -Info 65 [16:02:33.000] Files (0) +Info 58 [00:02:08.000] ----------------------------------------------- +Info 59 [00:02:09.000] Running: *ensureProjectForOpenFiles* +Info 60 [00:02:10.000] Before ensureProjectForOpenFiles: +Info 61 [00:02:11.000] Project '/a/b/tsconfig.json' (Configured) +Info 61 [00:02:12.000] Files (3) + +Info 61 [00:02:13.000] ----------------------------------------------- +Info 61 [00:02:14.000] Project '/dev/null/inferredProject1*' (Inferred) +Info 61 [00:02:15.000] Files (1) + +Info 61 [00:02:16.000] ----------------------------------------------- +Info 61 [00:02:17.000] Project '/dev/null/inferredProject2*' (Inferred) +Info 61 [00:02:18.000] Files (1) + +Info 61 [00:02:19.000] ----------------------------------------------- +Info 61 [00:02:20.000] Open files: +Info 61 [00:02:21.000] FileName: /a/b/src/file1.ts ProjectRootPath: undefined +Info 61 [00:02:22.000] Projects: /a/b/tsconfig.json +Info 61 [00:02:23.000] FileName: /a/b/src/file2.ts ProjectRootPath: undefined +Info 61 [00:02:24.000] Projects: /a/b/tsconfig.json +Info 61 [00:02:25.000] FileName: /a/b/file3.ts ProjectRootPath: undefined +Info 61 [00:02:26.000] Projects: /a/b/tsconfig.json +Info 61 [00:02:27.000] FileName: /a/file4.ts ProjectRootPath: undefined +Info 61 [00:02:28.000] Projects: /dev/null/inferredProject2* +Info 61 [00:02:29.000] Starting updateGraphWorker: Project: /dev/null/inferredProject1* +Info 62 [00:02:30.000] FileWatcher:: Close:: WatchInfo: /a/lib/lib.d.ts 500 undefined Project: /dev/null/inferredProject1* WatchType: Missing file +Info 63 [00:02:31.000] Finishing updateGraphWorker: Project: /dev/null/inferredProject1* Version: 2 structureChanged: true structureIsReused:: Not Elapsed:: *ms +Info 64 [00:02:32.000] Project '/dev/null/inferredProject1*' (Inferred) +Info 65 [00:02:33.000] Files (0) -Info 66 [16:02:34.000] ----------------------------------------------- -Info 67 [16:02:35.000] After ensureProjectForOpenFiles: -Info 68 [16:02:36.000] Project '/a/b/tsconfig.json' (Configured) -Info 68 [16:02:37.000] Files (3) - -Info 68 [16:02:38.000] ----------------------------------------------- -Info 68 [16:02:39.000] Project '/dev/null/inferredProject1*' (Inferred) -Info 68 [16:02:40.000] Files (0) - -Info 68 [16:02:41.000] ----------------------------------------------- -Info 68 [16:02:42.000] Project '/dev/null/inferredProject2*' (Inferred) -Info 68 [16:02:43.000] Files (1) - -Info 68 [16:02:44.000] ----------------------------------------------- -Info 68 [16:02:45.000] Open files: -Info 68 [16:02:46.000] FileName: /a/b/src/file1.ts ProjectRootPath: undefined -Info 68 [16:02:47.000] Projects: /a/b/tsconfig.json -Info 68 [16:02:48.000] FileName: /a/b/src/file2.ts ProjectRootPath: undefined -Info 68 [16:02:49.000] Projects: /a/b/tsconfig.json -Info 68 [16:02:50.000] FileName: /a/b/file3.ts ProjectRootPath: undefined -Info 68 [16:02:51.000] Projects: /a/b/tsconfig.json -Info 68 [16:02:52.000] FileName: /a/file4.ts ProjectRootPath: undefined -Info 68 [16:02:53.000] Projects: /dev/null/inferredProject2* +Info 66 [00:02:34.000] ----------------------------------------------- +Info 67 [00:02:35.000] After ensureProjectForOpenFiles: +Info 68 [00:02:36.000] Project '/a/b/tsconfig.json' (Configured) +Info 68 [00:02:37.000] Files (3) + +Info 68 [00:02:38.000] ----------------------------------------------- +Info 68 [00:02:39.000] Project '/dev/null/inferredProject1*' (Inferred) +Info 68 [00:02:40.000] Files (0) + +Info 68 [00:02:41.000] ----------------------------------------------- +Info 68 [00:02:42.000] Project '/dev/null/inferredProject2*' (Inferred) +Info 68 [00:02:43.000] Files (1) + +Info 68 [00:02:44.000] ----------------------------------------------- +Info 68 [00:02:45.000] Open files: +Info 68 [00:02:46.000] FileName: /a/b/src/file1.ts ProjectRootPath: undefined +Info 68 [00:02:47.000] Projects: /a/b/tsconfig.json +Info 68 [00:02:48.000] FileName: /a/b/src/file2.ts ProjectRootPath: undefined +Info 68 [00:02:49.000] Projects: /a/b/tsconfig.json +Info 68 [00:02:50.000] FileName: /a/b/file3.ts ProjectRootPath: undefined +Info 68 [00:02:51.000] Projects: /a/b/tsconfig.json +Info 68 [00:02:52.000] FileName: /a/file4.ts ProjectRootPath: undefined +Info 68 [00:02:53.000] Projects: /dev/null/inferredProject2* After running timeout callbacks PolledWatches:: @@ -281,108 +281,108 @@ FsWatchesRecursive:: /a/b: {} -Info 68 [16:02:54.000] FileWatcher:: Added:: WatchInfo: /a/b/src/file1.ts 500 undefined WatchType: Closed Script info -Info 69 [16:02:55.000] Project '/a/b/tsconfig.json' (Configured) -Info 69 [16:02:56.000] Files (3) - -Info 69 [16:02:57.000] ----------------------------------------------- -Info 69 [16:02:58.000] Project '/dev/null/inferredProject1*' (Inferred) -Info 69 [16:02:59.000] Files (0) - -Info 69 [16:03:00.000] ----------------------------------------------- -Info 69 [16:03:01.000] Project '/dev/null/inferredProject2*' (Inferred) -Info 69 [16:03:02.000] Files (1) - -Info 69 [16:03:03.000] ----------------------------------------------- -Info 69 [16:03:04.000] Open files: -Info 69 [16:03:05.000] FileName: /a/b/src/file2.ts ProjectRootPath: undefined -Info 69 [16:03:06.000] Projects: /a/b/tsconfig.json -Info 69 [16:03:07.000] FileName: /a/b/file3.ts ProjectRootPath: undefined -Info 69 [16:03:08.000] Projects: /a/b/tsconfig.json -Info 69 [16:03:09.000] FileName: /a/file4.ts ProjectRootPath: undefined -Info 69 [16:03:10.000] Projects: /dev/null/inferredProject2* -Info 69 [16:03:11.000] FileWatcher:: Added:: WatchInfo: /a/b/src/file2.ts 500 undefined WatchType: Closed Script info -Info 70 [16:03:12.000] Project '/a/b/tsconfig.json' (Configured) -Info 70 [16:03:13.000] Files (3) - -Info 70 [16:03:14.000] ----------------------------------------------- -Info 70 [16:03:15.000] Project '/dev/null/inferredProject1*' (Inferred) -Info 70 [16:03:16.000] Files (0) - -Info 70 [16:03:17.000] ----------------------------------------------- -Info 70 [16:03:18.000] Project '/dev/null/inferredProject2*' (Inferred) -Info 70 [16:03:19.000] Files (1) - -Info 70 [16:03:20.000] ----------------------------------------------- -Info 70 [16:03:21.000] Open files: -Info 70 [16:03:22.000] FileName: /a/b/file3.ts ProjectRootPath: undefined -Info 70 [16:03:23.000] Projects: /a/b/tsconfig.json -Info 70 [16:03:24.000] FileName: /a/file4.ts ProjectRootPath: undefined -Info 70 [16:03:25.000] Projects: /dev/null/inferredProject2* -Info 70 [16:03:26.000] FileWatcher:: Added:: WatchInfo: /a/file4.ts 500 undefined WatchType: Closed Script info -Info 71 [16:03:27.000] Project '/a/b/tsconfig.json' (Configured) -Info 71 [16:03:28.000] Files (3) - -Info 71 [16:03:29.000] ----------------------------------------------- -Info 71 [16:03:30.000] Project '/dev/null/inferredProject1*' (Inferred) -Info 71 [16:03:31.000] Files (0) - -Info 71 [16:03:32.000] ----------------------------------------------- -Info 71 [16:03:33.000] Project '/dev/null/inferredProject2*' (Inferred) -Info 71 [16:03:34.000] Files (1) - -Info 71 [16:03:35.000] ----------------------------------------------- -Info 71 [16:03:36.000] Open files: -Info 71 [16:03:37.000] FileName: /a/b/file3.ts ProjectRootPath: undefined -Info 71 [16:03:38.000] Projects: /a/b/tsconfig.json -Info 71 [16:03:39.000] FileWatcher:: Close:: WatchInfo: /a/file4.ts 500 undefined WatchType: Closed Script info -Info 72 [16:03:40.000] Search path: /a -Info 73 [16:03:41.000] For info: /a/file4.ts :: No config files found. -Info 74 [16:03:42.000] Starting updateGraphWorker: Project: /dev/null/inferredProject2* -Info 75 [16:03:43.000] Finishing updateGraphWorker: Project: /dev/null/inferredProject2* Version: 2 structureChanged: false structureIsReused:: Not Elapsed:: *ms -Info 76 [16:03:44.000] Project '/dev/null/inferredProject2*' (Inferred) -Info 77 [16:03:45.000] Files (1) +Info 68 [00:02:54.000] FileWatcher:: Added:: WatchInfo: /a/b/src/file1.ts 500 undefined WatchType: Closed Script info +Info 69 [00:02:55.000] Project '/a/b/tsconfig.json' (Configured) +Info 69 [00:02:56.000] Files (3) + +Info 69 [00:02:57.000] ----------------------------------------------- +Info 69 [00:02:58.000] Project '/dev/null/inferredProject1*' (Inferred) +Info 69 [00:02:59.000] Files (0) + +Info 69 [00:03:00.000] ----------------------------------------------- +Info 69 [00:03:01.000] Project '/dev/null/inferredProject2*' (Inferred) +Info 69 [00:03:02.000] Files (1) + +Info 69 [00:03:03.000] ----------------------------------------------- +Info 69 [00:03:04.000] Open files: +Info 69 [00:03:05.000] FileName: /a/b/src/file2.ts ProjectRootPath: undefined +Info 69 [00:03:06.000] Projects: /a/b/tsconfig.json +Info 69 [00:03:07.000] FileName: /a/b/file3.ts ProjectRootPath: undefined +Info 69 [00:03:08.000] Projects: /a/b/tsconfig.json +Info 69 [00:03:09.000] FileName: /a/file4.ts ProjectRootPath: undefined +Info 69 [00:03:10.000] Projects: /dev/null/inferredProject2* +Info 69 [00:03:11.000] FileWatcher:: Added:: WatchInfo: /a/b/src/file2.ts 500 undefined WatchType: Closed Script info +Info 70 [00:03:12.000] Project '/a/b/tsconfig.json' (Configured) +Info 70 [00:03:13.000] Files (3) + +Info 70 [00:03:14.000] ----------------------------------------------- +Info 70 [00:03:15.000] Project '/dev/null/inferredProject1*' (Inferred) +Info 70 [00:03:16.000] Files (0) + +Info 70 [00:03:17.000] ----------------------------------------------- +Info 70 [00:03:18.000] Project '/dev/null/inferredProject2*' (Inferred) +Info 70 [00:03:19.000] Files (1) + +Info 70 [00:03:20.000] ----------------------------------------------- +Info 70 [00:03:21.000] Open files: +Info 70 [00:03:22.000] FileName: /a/b/file3.ts ProjectRootPath: undefined +Info 70 [00:03:23.000] Projects: /a/b/tsconfig.json +Info 70 [00:03:24.000] FileName: /a/file4.ts ProjectRootPath: undefined +Info 70 [00:03:25.000] Projects: /dev/null/inferredProject2* +Info 70 [00:03:26.000] FileWatcher:: Added:: WatchInfo: /a/file4.ts 500 undefined WatchType: Closed Script info +Info 71 [00:03:27.000] Project '/a/b/tsconfig.json' (Configured) +Info 71 [00:03:28.000] Files (3) + +Info 71 [00:03:29.000] ----------------------------------------------- +Info 71 [00:03:30.000] Project '/dev/null/inferredProject1*' (Inferred) +Info 71 [00:03:31.000] Files (0) + +Info 71 [00:03:32.000] ----------------------------------------------- +Info 71 [00:03:33.000] Project '/dev/null/inferredProject2*' (Inferred) +Info 71 [00:03:34.000] Files (1) + +Info 71 [00:03:35.000] ----------------------------------------------- +Info 71 [00:03:36.000] Open files: +Info 71 [00:03:37.000] FileName: /a/b/file3.ts ProjectRootPath: undefined +Info 71 [00:03:38.000] Projects: /a/b/tsconfig.json +Info 71 [00:03:39.000] FileWatcher:: Close:: WatchInfo: /a/file4.ts 500 undefined WatchType: Closed Script info +Info 72 [00:03:40.000] Search path: /a +Info 73 [00:03:41.000] For info: /a/file4.ts :: No config files found. +Info 74 [00:03:42.000] Starting updateGraphWorker: Project: /dev/null/inferredProject2* +Info 75 [00:03:43.000] Finishing updateGraphWorker: Project: /dev/null/inferredProject2* Version: 2 structureChanged: false structureIsReused:: Not Elapsed:: *ms +Info 76 [00:03:44.000] Project '/dev/null/inferredProject2*' (Inferred) +Info 77 [00:03:45.000] Files (1) /a/file4.ts file4.ts Root file specified for compilation -Info 78 [16:03:46.000] ----------------------------------------------- -Info 79 [16:03:47.000] `remove Project:: -Info 80 [16:03:48.000] Project '/dev/null/inferredProject1*' (Inferred) -Info 81 [16:03:49.000] Files (0) +Info 78 [00:03:46.000] ----------------------------------------------- +Info 79 [00:03:47.000] `remove Project:: +Info 80 [00:03:48.000] Project '/dev/null/inferredProject1*' (Inferred) +Info 81 [00:03:49.000] Files (0) -Info 82 [16:03:50.000] ----------------------------------------------- -Info 83 [16:03:51.000] DirectoryWatcher:: Close:: WatchInfo: /a/b/src/node_modules/@types 1 undefined Project: /dev/null/inferredProject1* WatchType: Type roots -Info 84 [16:03:52.000] Elapsed:: *ms DirectoryWatcher:: Close:: WatchInfo: /a/b/src/node_modules/@types 1 undefined Project: /dev/null/inferredProject1* WatchType: Type roots -Info 85 [16:03:53.000] Project '/a/b/tsconfig.json' (Configured) -Info 85 [16:03:54.000] Files (3) - -Info 85 [16:03:55.000] ----------------------------------------------- -Info 85 [16:03:56.000] Project '/dev/null/inferredProject2*' (Inferred) -Info 85 [16:03:57.000] Files (1) - -Info 85 [16:03:58.000] ----------------------------------------------- -Info 85 [16:03:59.000] Open files: -Info 85 [16:04:00.000] FileName: /a/b/file3.ts ProjectRootPath: undefined -Info 85 [16:04:01.000] Projects: /a/b/tsconfig.json -Info 85 [16:04:02.000] FileName: /a/file4.ts ProjectRootPath: undefined -Info 85 [16:04:03.000] Projects: /dev/null/inferredProject2* -Info 85 [16:04:04.000] FileWatcher:: Added:: WatchInfo: /a/b/file3.ts 500 undefined WatchType: Closed Script info -Info 86 [16:04:05.000] Project '/a/b/tsconfig.json' (Configured) -Info 86 [16:04:06.000] Files (3) - -Info 86 [16:04:07.000] ----------------------------------------------- -Info 86 [16:04:08.000] Project '/dev/null/inferredProject2*' (Inferred) -Info 86 [16:04:09.000] Files (1) - -Info 86 [16:04:10.000] ----------------------------------------------- -Info 86 [16:04:11.000] Open files: -Info 86 [16:04:12.000] FileName: /a/file4.ts ProjectRootPath: undefined -Info 86 [16:04:13.000] Projects: /dev/null/inferredProject2* +Info 82 [00:03:50.000] ----------------------------------------------- +Info 83 [00:03:51.000] DirectoryWatcher:: Close:: WatchInfo: /a/b/src/node_modules/@types 1 undefined Project: /dev/null/inferredProject1* WatchType: Type roots +Info 84 [00:03:52.000] Elapsed:: *ms DirectoryWatcher:: Close:: WatchInfo: /a/b/src/node_modules/@types 1 undefined Project: /dev/null/inferredProject1* WatchType: Type roots +Info 85 [00:03:53.000] Project '/a/b/tsconfig.json' (Configured) +Info 85 [00:03:54.000] Files (3) + +Info 85 [00:03:55.000] ----------------------------------------------- +Info 85 [00:03:56.000] Project '/dev/null/inferredProject2*' (Inferred) +Info 85 [00:03:57.000] Files (1) + +Info 85 [00:03:58.000] ----------------------------------------------- +Info 85 [00:03:59.000] Open files: +Info 85 [00:04:00.000] FileName: /a/b/file3.ts ProjectRootPath: undefined +Info 85 [00:04:01.000] Projects: /a/b/tsconfig.json +Info 85 [00:04:02.000] FileName: /a/file4.ts ProjectRootPath: undefined +Info 85 [00:04:03.000] Projects: /dev/null/inferredProject2* +Info 85 [00:04:04.000] FileWatcher:: Added:: WatchInfo: /a/b/file3.ts 500 undefined WatchType: Closed Script info +Info 86 [00:04:05.000] Project '/a/b/tsconfig.json' (Configured) +Info 86 [00:04:06.000] Files (3) + +Info 86 [00:04:07.000] ----------------------------------------------- +Info 86 [00:04:08.000] Project '/dev/null/inferredProject2*' (Inferred) +Info 86 [00:04:09.000] Files (1) + +Info 86 [00:04:10.000] ----------------------------------------------- +Info 86 [00:04:11.000] Open files: +Info 86 [00:04:12.000] FileName: /a/file4.ts ProjectRootPath: undefined +Info 86 [00:04:13.000] Projects: /dev/null/inferredProject2* File5 written //// [/file5.ts] let zz = 1; @@ -410,24 +410,24 @@ FsWatchesRecursive:: /a/b: {} -Info 86 [16:04:16.000] Search path: / -Info 87 [16:04:17.000] For info: /file5.ts :: No config files found. -Info 88 [16:04:18.000] Plugins were requested but not running in environment that supports 'require'. Nothing will be loaded -Info 89 [16:04:19.000] Starting updateGraphWorker: Project: /dev/null/inferredProject3* -Info 90 [16:04:20.000] FileWatcher:: Added:: WatchInfo: /a/lib/lib.d.ts 500 undefined Project: /dev/null/inferredProject3* WatchType: Missing file -Info 91 [16:04:21.000] Finishing updateGraphWorker: Project: /dev/null/inferredProject3* Version: 1 structureChanged: true structureIsReused:: Not Elapsed:: *ms -Info 92 [16:04:22.000] Project '/dev/null/inferredProject3*' (Inferred) -Info 93 [16:04:23.000] Files (1) +Info 86 [00:04:16.000] Search path: / +Info 87 [00:04:17.000] For info: /file5.ts :: No config files found. +Info 88 [00:04:18.000] Plugins were requested but not running in environment that supports 'require'. Nothing will be loaded +Info 89 [00:04:19.000] Starting updateGraphWorker: Project: /dev/null/inferredProject3* +Info 90 [00:04:20.000] FileWatcher:: Added:: WatchInfo: /a/lib/lib.d.ts 500 undefined Project: /dev/null/inferredProject3* WatchType: Missing file +Info 91 [00:04:21.000] Finishing updateGraphWorker: Project: /dev/null/inferredProject3* Version: 1 structureChanged: true structureIsReused:: Not Elapsed:: *ms +Info 92 [00:04:22.000] Project '/dev/null/inferredProject3*' (Inferred) +Info 93 [00:04:23.000] Files (1) /file5.ts file5.ts Root file specified for compilation -Info 94 [16:04:24.000] ----------------------------------------------- -Info 95 [16:04:25.000] `remove Project:: -Info 96 [16:04:26.000] Project '/a/b/tsconfig.json' (Configured) -Info 97 [16:04:27.000] Files (3) +Info 94 [00:04:24.000] ----------------------------------------------- +Info 95 [00:04:25.000] `remove Project:: +Info 96 [00:04:26.000] Project '/a/b/tsconfig.json' (Configured) +Info 97 [00:04:27.000] Files (3) /a/b/src/file1.ts /a/b/file3.ts /a/b/src/file2.ts @@ -440,26 +440,26 @@ Info 97 [16:04:27.000] Files (3) src/file2.ts Matched by default include pattern '**/*' -Info 98 [16:04:28.000] ----------------------------------------------- -Info 99 [16:04:29.000] DirectoryWatcher:: Close:: WatchInfo: /a/b 1 undefined Config: /a/b/tsconfig.json WatchType: Wild card directory -Info 100 [16:04:30.000] Elapsed:: *ms DirectoryWatcher:: Close:: WatchInfo: /a/b 1 undefined Config: /a/b/tsconfig.json WatchType: Wild card directory -Info 101 [16:04:31.000] FileWatcher:: Close:: WatchInfo: /a/b/tsconfig.json 2000 undefined Project: /a/b/tsconfig.json WatchType: Config file -Info 102 [16:04:32.000] DirectoryWatcher:: Close:: WatchInfo: /a/b/node_modules/@types 1 undefined Project: /a/b/tsconfig.json WatchType: Type roots -Info 103 [16:04:33.000] Elapsed:: *ms DirectoryWatcher:: Close:: WatchInfo: /a/b/node_modules/@types 1 undefined Project: /a/b/tsconfig.json WatchType: Type roots -Info 104 [16:04:34.000] FileWatcher:: Close:: WatchInfo: /a/lib/lib.d.ts 500 undefined Project: /a/b/tsconfig.json WatchType: Missing file -Info 105 [16:04:35.000] FileWatcher:: Close:: WatchInfo: /a/b/src/file1.ts 500 undefined WatchType: Closed Script info -Info 106 [16:04:36.000] FileWatcher:: Close:: WatchInfo: /a/b/file3.ts 500 undefined WatchType: Closed Script info -Info 107 [16:04:37.000] FileWatcher:: Close:: WatchInfo: /a/b/src/file2.ts 500 undefined WatchType: Closed Script info -Info 108 [16:04:38.000] Project '/dev/null/inferredProject2*' (Inferred) -Info 108 [16:04:39.000] Files (1) - -Info 108 [16:04:40.000] ----------------------------------------------- -Info 108 [16:04:41.000] Project '/dev/null/inferredProject3*' (Inferred) -Info 108 [16:04:42.000] Files (1) - -Info 108 [16:04:43.000] ----------------------------------------------- -Info 108 [16:04:44.000] Open files: -Info 108 [16:04:45.000] FileName: /a/file4.ts ProjectRootPath: undefined -Info 108 [16:04:46.000] Projects: /dev/null/inferredProject2* -Info 108 [16:04:47.000] FileName: /file5.ts ProjectRootPath: undefined -Info 108 [16:04:48.000] Projects: /dev/null/inferredProject3* \ No newline at end of file +Info 98 [00:04:28.000] ----------------------------------------------- +Info 99 [00:04:29.000] DirectoryWatcher:: Close:: WatchInfo: /a/b 1 undefined Config: /a/b/tsconfig.json WatchType: Wild card directory +Info 100 [00:04:30.000] Elapsed:: *ms DirectoryWatcher:: Close:: WatchInfo: /a/b 1 undefined Config: /a/b/tsconfig.json WatchType: Wild card directory +Info 101 [00:04:31.000] FileWatcher:: Close:: WatchInfo: /a/b/tsconfig.json 2000 undefined Project: /a/b/tsconfig.json WatchType: Config file +Info 102 [00:04:32.000] DirectoryWatcher:: Close:: WatchInfo: /a/b/node_modules/@types 1 undefined Project: /a/b/tsconfig.json WatchType: Type roots +Info 103 [00:04:33.000] Elapsed:: *ms DirectoryWatcher:: Close:: WatchInfo: /a/b/node_modules/@types 1 undefined Project: /a/b/tsconfig.json WatchType: Type roots +Info 104 [00:04:34.000] FileWatcher:: Close:: WatchInfo: /a/lib/lib.d.ts 500 undefined Project: /a/b/tsconfig.json WatchType: Missing file +Info 105 [00:04:35.000] FileWatcher:: Close:: WatchInfo: /a/b/src/file1.ts 500 undefined WatchType: Closed Script info +Info 106 [00:04:36.000] FileWatcher:: Close:: WatchInfo: /a/b/file3.ts 500 undefined WatchType: Closed Script info +Info 107 [00:04:37.000] FileWatcher:: Close:: WatchInfo: /a/b/src/file2.ts 500 undefined WatchType: Closed Script info +Info 108 [00:04:38.000] Project '/dev/null/inferredProject2*' (Inferred) +Info 108 [00:04:39.000] Files (1) + +Info 108 [00:04:40.000] ----------------------------------------------- +Info 108 [00:04:41.000] Project '/dev/null/inferredProject3*' (Inferred) +Info 108 [00:04:42.000] Files (1) + +Info 108 [00:04:43.000] ----------------------------------------------- +Info 108 [00:04:44.000] Open files: +Info 108 [00:04:45.000] FileName: /a/file4.ts ProjectRootPath: undefined +Info 108 [00:04:46.000] Projects: /dev/null/inferredProject2* +Info 108 [00:04:47.000] FileName: /file5.ts ProjectRootPath: undefined +Info 108 [00:04:48.000] Projects: /dev/null/inferredProject3* \ No newline at end of file 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 c6848604fa520..44528cf9a0294 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 @@ -1,4 +1,4 @@ -Info 0 [16:00:21.000] Provided types map file "/typesMap.json" doesn't exist +Info 0 [00:00:21.000] Provided types map file "/typesMap.json" doesn't exist Creating project service //// [/a/lib/lib.d.ts] /// @@ -26,18 +26,18 @@ FsWatches:: FsWatchesRecursive:: -Info 1 [16:00:22.000] Search path: /user/username/projects/myproject -Info 2 [16:00:23.000] For info: /user/username/projects/myproject/commonFile1.ts :: No config files found. -Info 3 [16:00:24.000] Plugins were requested but not running in environment that supports 'require'. Nothing will be loaded -Info 4 [16:00:25.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/tsconfig.json 2000 undefined WatchType: Config file for the inferred project root -Info 5 [16:00:26.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/jsconfig.json 2000 undefined WatchType: Config file for the inferred project root -Info 6 [16:00:27.000] Starting updateGraphWorker: Project: /dev/null/inferredProject1* -Info 7 [16:00:28.000] FileWatcher:: Added:: WatchInfo: /a/lib/lib.d.ts 500 undefined WatchType: Closed Script info -Info 8 [16:00:29.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /dev/null/inferredProject1* WatchType: Type roots -Info 9 [16:00:30.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /dev/null/inferredProject1* WatchType: Type roots -Info 10 [16:00:31.000] Finishing updateGraphWorker: Project: /dev/null/inferredProject1* Version: 1 structureChanged: true structureIsReused:: Not Elapsed:: *ms -Info 11 [16:00:32.000] Project '/dev/null/inferredProject1*' (Inferred) -Info 12 [16:00:33.000] Files (2) +Info 1 [00:00:22.000] Search path: /user/username/projects/myproject +Info 2 [00:00:23.000] For info: /user/username/projects/myproject/commonFile1.ts :: No config files found. +Info 3 [00:00:24.000] Plugins were requested but not running in environment that supports 'require'. Nothing will be loaded +Info 4 [00:00:25.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/tsconfig.json 2000 undefined WatchType: Config file for the inferred project root +Info 5 [00:00:26.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/jsconfig.json 2000 undefined WatchType: Config file for the inferred project root +Info 6 [00:00:27.000] Starting updateGraphWorker: Project: /dev/null/inferredProject1* +Info 7 [00:00:28.000] FileWatcher:: Added:: WatchInfo: /a/lib/lib.d.ts 500 undefined WatchType: Closed Script info +Info 8 [00:00:29.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /dev/null/inferredProject1* WatchType: Type roots +Info 9 [00:00:30.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /dev/null/inferredProject1* WatchType: Type roots +Info 10 [00:00:31.000] Finishing updateGraphWorker: Project: /dev/null/inferredProject1* Version: 1 structureChanged: true structureIsReused:: Not Elapsed:: *ms +Info 11 [00:00:32.000] Project '/dev/null/inferredProject1*' (Inferred) +Info 12 [00:00:33.000] Files (2) /a/lib/lib.d.ts /user/username/projects/myproject/commonFile1.ts @@ -47,23 +47,23 @@ Info 12 [16:00:33.000] Files (2) commonFile1.ts Root file specified for compilation -Info 13 [16:00:34.000] ----------------------------------------------- -Info 14 [16:00:35.000] Project '/dev/null/inferredProject1*' (Inferred) -Info 14 [16:00:36.000] Files (2) - -Info 14 [16:00:37.000] ----------------------------------------------- -Info 14 [16:00:38.000] Open files: -Info 14 [16:00:39.000] FileName: /user/username/projects/myproject/commonFile1.ts ProjectRootPath: undefined -Info 14 [16:00:40.000] Projects: /dev/null/inferredProject1* -Info 14 [16:00:41.000] Search path: /user/username/projects/myproject -Info 15 [16:00:42.000] For info: /user/username/projects/myproject/commonFile2.ts :: No config files found. -Info 16 [16:00:43.000] Plugins were requested but not running in environment that supports 'require'. Nothing will be loaded -Info 17 [16:00:44.000] Starting updateGraphWorker: Project: /dev/null/inferredProject2* -Info 18 [16:00:45.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /dev/null/inferredProject2* WatchType: Type roots -Info 19 [16:00:46.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /dev/null/inferredProject2* WatchType: Type roots -Info 20 [16:00:47.000] Finishing updateGraphWorker: Project: /dev/null/inferredProject2* Version: 1 structureChanged: true structureIsReused:: Not Elapsed:: *ms -Info 21 [16:00:48.000] Project '/dev/null/inferredProject2*' (Inferred) -Info 22 [16:00:49.000] Files (2) +Info 13 [00:00:34.000] ----------------------------------------------- +Info 14 [00:00:35.000] Project '/dev/null/inferredProject1*' (Inferred) +Info 14 [00:00:36.000] Files (2) + +Info 14 [00:00:37.000] ----------------------------------------------- +Info 14 [00:00:38.000] Open files: +Info 14 [00:00:39.000] FileName: /user/username/projects/myproject/commonFile1.ts ProjectRootPath: undefined +Info 14 [00:00:40.000] Projects: /dev/null/inferredProject1* +Info 14 [00:00:41.000] Search path: /user/username/projects/myproject +Info 15 [00:00:42.000] For info: /user/username/projects/myproject/commonFile2.ts :: No config files found. +Info 16 [00:00:43.000] Plugins were requested but not running in environment that supports 'require'. Nothing will be loaded +Info 17 [00:00:44.000] Starting updateGraphWorker: Project: /dev/null/inferredProject2* +Info 18 [00:00:45.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /dev/null/inferredProject2* WatchType: Type roots +Info 19 [00:00:46.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /dev/null/inferredProject2* WatchType: Type roots +Info 20 [00:00:47.000] Finishing updateGraphWorker: Project: /dev/null/inferredProject2* Version: 1 structureChanged: true structureIsReused:: Not Elapsed:: *ms +Info 21 [00:00:48.000] Project '/dev/null/inferredProject2*' (Inferred) +Info 22 [00:00:49.000] Files (2) /a/lib/lib.d.ts /user/username/projects/myproject/commonFile2.ts @@ -73,37 +73,37 @@ Info 22 [16:00:49.000] Files (2) commonFile2.ts Root file specified for compilation -Info 23 [16:00:50.000] ----------------------------------------------- -Info 24 [16:00:51.000] Project '/dev/null/inferredProject1*' (Inferred) -Info 24 [16:00:52.000] Files (2) - -Info 24 [16:00:53.000] ----------------------------------------------- -Info 24 [16:00:54.000] Project '/dev/null/inferredProject2*' (Inferred) -Info 24 [16:00:55.000] Files (2) - -Info 24 [16:00:56.000] ----------------------------------------------- -Info 24 [16:00:57.000] Open files: -Info 24 [16:00:58.000] FileName: /user/username/projects/myproject/commonFile1.ts ProjectRootPath: undefined -Info 24 [16:00:59.000] Projects: /dev/null/inferredProject1* -Info 24 [16:01:00.000] FileName: /user/username/projects/myproject/commonFile2.ts ProjectRootPath: undefined -Info 24 [16:01:01.000] Projects: /dev/null/inferredProject2* -Info 24 [16:01:04.000] FileWatcher:: Triggered with /user/username/projects/myproject/tsconfig.json 0:: WatchInfo: /user/username/projects/myproject/tsconfig.json 2000 undefined WatchType: Config file for the inferred project root -Info 25 [16:01:05.000] Search path: /user/username/projects/myproject -Info 26 [16:01:06.000] For info: /user/username/projects/myproject/commonFile1.ts :: Config file name: /user/username/projects/myproject/tsconfig.json -Info 27 [16:01:07.000] Creating configuration project /user/username/projects/myproject/tsconfig.json -Info 28 [16:01:08.000] Scheduled: /user/username/projects/myproject/tsconfig.json -Info 29 [16:01:09.000] Search path: /user/username/projects/myproject -Info 30 [16:01:10.000] For info: /user/username/projects/myproject/commonFile2.ts :: Config file name: /user/username/projects/myproject/tsconfig.json -Info 31 [16:01:11.000] Scheduled: *ensureProjectForOpenFiles* -Info 32 [16:01:12.000] Elapsed:: *ms FileWatcher:: Triggered with /user/username/projects/myproject/tsconfig.json 0:: WatchInfo: /user/username/projects/myproject/tsconfig.json 2000 undefined WatchType: Config file for the inferred project root -Info 33 [16:01:13.000] FileWatcher:: Triggered with /user/username/projects/myproject/tsconfig.json 0:: WatchInfo: /user/username/projects/myproject/tsconfig.json 2000 undefined WatchType: Config file for the inferred project root -Info 34 [16:01:14.000] Search path: /user/username/projects/myproject -Info 35 [16:01:15.000] For info: /user/username/projects/myproject/commonFile1.ts :: Config file name: /user/username/projects/myproject/tsconfig.json -Info 36 [16:01:16.000] Scheduled: /user/username/projects/myproject/tsconfig.json, Cancelled earlier one -Info 37 [16:01:17.000] Search path: /user/username/projects/myproject -Info 38 [16:01:18.000] For info: /user/username/projects/myproject/commonFile2.ts :: Config file name: /user/username/projects/myproject/tsconfig.json -Info 39 [16:01:19.000] Scheduled: *ensureProjectForOpenFiles*, Cancelled earlier one -Info 40 [16:01:20.000] Elapsed:: *ms FileWatcher:: Triggered with /user/username/projects/myproject/tsconfig.json 0:: WatchInfo: /user/username/projects/myproject/tsconfig.json 2000 undefined WatchType: Config file for the inferred project root +Info 23 [00:00:50.000] ----------------------------------------------- +Info 24 [00:00:51.000] Project '/dev/null/inferredProject1*' (Inferred) +Info 24 [00:00:52.000] Files (2) + +Info 24 [00:00:53.000] ----------------------------------------------- +Info 24 [00:00:54.000] Project '/dev/null/inferredProject2*' (Inferred) +Info 24 [00:00:55.000] Files (2) + +Info 24 [00:00:56.000] ----------------------------------------------- +Info 24 [00:00:57.000] Open files: +Info 24 [00:00:58.000] FileName: /user/username/projects/myproject/commonFile1.ts ProjectRootPath: undefined +Info 24 [00:00:59.000] Projects: /dev/null/inferredProject1* +Info 24 [00:01:00.000] FileName: /user/username/projects/myproject/commonFile2.ts ProjectRootPath: undefined +Info 24 [00:01:01.000] Projects: /dev/null/inferredProject2* +Info 24 [00:01:04.000] FileWatcher:: Triggered with /user/username/projects/myproject/tsconfig.json 0:: WatchInfo: /user/username/projects/myproject/tsconfig.json 2000 undefined WatchType: Config file for the inferred project root +Info 25 [00:01:05.000] Search path: /user/username/projects/myproject +Info 26 [00:01:06.000] For info: /user/username/projects/myproject/commonFile1.ts :: Config file name: /user/username/projects/myproject/tsconfig.json +Info 27 [00:01:07.000] Creating configuration project /user/username/projects/myproject/tsconfig.json +Info 28 [00:01:08.000] Scheduled: /user/username/projects/myproject/tsconfig.json +Info 29 [00:01:09.000] Search path: /user/username/projects/myproject +Info 30 [00:01:10.000] For info: /user/username/projects/myproject/commonFile2.ts :: Config file name: /user/username/projects/myproject/tsconfig.json +Info 31 [00:01:11.000] Scheduled: *ensureProjectForOpenFiles* +Info 32 [00:01:12.000] Elapsed:: *ms FileWatcher:: Triggered with /user/username/projects/myproject/tsconfig.json 0:: WatchInfo: /user/username/projects/myproject/tsconfig.json 2000 undefined WatchType: Config file for the inferred project root +Info 33 [00:01:13.000] FileWatcher:: Triggered with /user/username/projects/myproject/tsconfig.json 0:: WatchInfo: /user/username/projects/myproject/tsconfig.json 2000 undefined WatchType: Config file for the inferred project root +Info 34 [00:01:14.000] Search path: /user/username/projects/myproject +Info 35 [00:01:15.000] For info: /user/username/projects/myproject/commonFile1.ts :: Config file name: /user/username/projects/myproject/tsconfig.json +Info 36 [00:01:16.000] Scheduled: /user/username/projects/myproject/tsconfig.json, Cancelled earlier one +Info 37 [00:01:17.000] Search path: /user/username/projects/myproject +Info 38 [00:01:18.000] For info: /user/username/projects/myproject/commonFile2.ts :: Config file name: /user/username/projects/myproject/tsconfig.json +Info 39 [00:01:19.000] Scheduled: *ensureProjectForOpenFiles*, Cancelled earlier one +Info 40 [00:01:20.000] Elapsed:: *ms FileWatcher:: Triggered with /user/username/projects/myproject/tsconfig.json 0:: WatchInfo: /user/username/projects/myproject/tsconfig.json 2000 undefined WatchType: Config file for the inferred project root Before checking timeout queue length (2) and running //// [/user/username/projects/myproject/tsconfig.json] { @@ -125,9 +125,9 @@ FsWatches:: FsWatchesRecursive:: -Info 41 [16:01:21.000] Running: /user/username/projects/myproject/tsconfig.json -Info 42 [16:01:22.000] Loading configured project /user/username/projects/myproject/tsconfig.json -Info 43 [16:01:23.000] Config: /user/username/projects/myproject/tsconfig.json : { +Info 41 [00:01:21.000] Running: /user/username/projects/myproject/tsconfig.json +Info 42 [00:01:22.000] Loading configured project /user/username/projects/myproject/tsconfig.json +Info 43 [00:01:23.000] Config: /user/username/projects/myproject/tsconfig.json : { "rootNames": [ "/user/username/projects/myproject/commonFile1.ts" ], @@ -135,13 +135,13 @@ Info 43 [16:01:23.000] Config: /user/username/projects/myproject/tsconfig.json "configFilePath": "/user/username/projects/myproject/tsconfig.json" } } -Info 44 [16:01:24.000] Plugins were requested but not running in environment that supports 'require'. Nothing will be loaded -Info 45 [16:01:25.000] Starting updateGraphWorker: Project: /user/username/projects/myproject/tsconfig.json -Info 46 [16:01:26.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/tsconfig.json WatchType: Type roots -Info 47 [16:01:27.000] 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 48 [16:01:28.000] Finishing updateGraphWorker: Project: /user/username/projects/myproject/tsconfig.json Version: 1 structureChanged: true structureIsReused:: Not Elapsed:: *ms -Info 49 [16:01:29.000] Project '/user/username/projects/myproject/tsconfig.json' (Configured) -Info 50 [16:01:30.000] Files (2) +Info 44 [00:01:24.000] Plugins were requested but not running in environment that supports 'require'. Nothing will be loaded +Info 45 [00:01:25.000] Starting updateGraphWorker: Project: /user/username/projects/myproject/tsconfig.json +Info 46 [00:01:26.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/tsconfig.json WatchType: Type roots +Info 47 [00:01:27.000] 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 48 [00:01:28.000] Finishing updateGraphWorker: Project: /user/username/projects/myproject/tsconfig.json Version: 1 structureChanged: true structureIsReused:: Not Elapsed:: *ms +Info 49 [00:01:29.000] Project '/user/username/projects/myproject/tsconfig.json' (Configured) +Info 50 [00:01:30.000] Files (2) /a/lib/lib.d.ts /user/username/projects/myproject/commonFile1.ts @@ -151,52 +151,52 @@ Info 50 [16:01:30.000] Files (2) commonFile1.ts Part of 'files' list in tsconfig.json -Info 51 [16:01:31.000] ----------------------------------------------- -Info 52 [16:01:32.000] Running: *ensureProjectForOpenFiles* -Info 53 [16:01:33.000] Before ensureProjectForOpenFiles: -Info 54 [16:01:34.000] Project '/user/username/projects/myproject/tsconfig.json' (Configured) -Info 54 [16:01:35.000] Files (2) - -Info 54 [16:01:36.000] ----------------------------------------------- -Info 54 [16:01:37.000] Project '/dev/null/inferredProject1*' (Inferred) -Info 54 [16:01:38.000] Files (2) - -Info 54 [16:01:39.000] ----------------------------------------------- -Info 54 [16:01:40.000] Project '/dev/null/inferredProject2*' (Inferred) -Info 54 [16:01:41.000] Files (2) - -Info 54 [16:01:42.000] ----------------------------------------------- -Info 54 [16:01:43.000] Open files: -Info 54 [16:01:44.000] FileName: /user/username/projects/myproject/commonFile1.ts ProjectRootPath: undefined -Info 54 [16:01:45.000] Projects: /user/username/projects/myproject/tsconfig.json -Info 54 [16:01:46.000] FileName: /user/username/projects/myproject/commonFile2.ts ProjectRootPath: undefined -Info 54 [16:01:47.000] Projects: /dev/null/inferredProject2* -Info 54 [16:01:48.000] Starting updateGraphWorker: Project: /dev/null/inferredProject1* -Info 55 [16:01:49.000] Finishing updateGraphWorker: Project: /dev/null/inferredProject1* Version: 2 structureChanged: true structureIsReused:: Not Elapsed:: *ms -Info 56 [16:01:50.000] Project '/dev/null/inferredProject1*' (Inferred) -Info 57 [16:01:51.000] Files (0) +Info 51 [00:01:31.000] ----------------------------------------------- +Info 52 [00:01:32.000] Running: *ensureProjectForOpenFiles* +Info 53 [00:01:33.000] Before ensureProjectForOpenFiles: +Info 54 [00:01:34.000] Project '/user/username/projects/myproject/tsconfig.json' (Configured) +Info 54 [00:01:35.000] Files (2) + +Info 54 [00:01:36.000] ----------------------------------------------- +Info 54 [00:01:37.000] Project '/dev/null/inferredProject1*' (Inferred) +Info 54 [00:01:38.000] Files (2) + +Info 54 [00:01:39.000] ----------------------------------------------- +Info 54 [00:01:40.000] Project '/dev/null/inferredProject2*' (Inferred) +Info 54 [00:01:41.000] Files (2) + +Info 54 [00:01:42.000] ----------------------------------------------- +Info 54 [00:01:43.000] Open files: +Info 54 [00:01:44.000] FileName: /user/username/projects/myproject/commonFile1.ts ProjectRootPath: undefined +Info 54 [00:01:45.000] Projects: /user/username/projects/myproject/tsconfig.json +Info 54 [00:01:46.000] FileName: /user/username/projects/myproject/commonFile2.ts ProjectRootPath: undefined +Info 54 [00:01:47.000] Projects: /dev/null/inferredProject2* +Info 54 [00:01:48.000] Starting updateGraphWorker: Project: /dev/null/inferredProject1* +Info 55 [00:01:49.000] Finishing updateGraphWorker: Project: /dev/null/inferredProject1* Version: 2 structureChanged: true structureIsReused:: Not Elapsed:: *ms +Info 56 [00:01:50.000] Project '/dev/null/inferredProject1*' (Inferred) +Info 57 [00:01:51.000] Files (0) -Info 58 [16:01:52.000] ----------------------------------------------- -Info 59 [16:01:53.000] After ensureProjectForOpenFiles: -Info 60 [16:01:54.000] Project '/user/username/projects/myproject/tsconfig.json' (Configured) -Info 60 [16:01:55.000] Files (2) - -Info 60 [16:01:56.000] ----------------------------------------------- -Info 60 [16:01:57.000] Project '/dev/null/inferredProject1*' (Inferred) -Info 60 [16:01:58.000] Files (0) - -Info 60 [16:01:59.000] ----------------------------------------------- -Info 60 [16:02:00.000] Project '/dev/null/inferredProject2*' (Inferred) -Info 60 [16:02:01.000] Files (2) - -Info 60 [16:02:02.000] ----------------------------------------------- -Info 60 [16:02:03.000] Open files: -Info 60 [16:02:04.000] FileName: /user/username/projects/myproject/commonFile1.ts ProjectRootPath: undefined -Info 60 [16:02:05.000] Projects: /user/username/projects/myproject/tsconfig.json -Info 60 [16:02:06.000] FileName: /user/username/projects/myproject/commonFile2.ts ProjectRootPath: undefined -Info 60 [16:02:07.000] Projects: /dev/null/inferredProject2* +Info 58 [00:01:52.000] ----------------------------------------------- +Info 59 [00:01:53.000] After ensureProjectForOpenFiles: +Info 60 [00:01:54.000] Project '/user/username/projects/myproject/tsconfig.json' (Configured) +Info 60 [00:01:55.000] Files (2) + +Info 60 [00:01:56.000] ----------------------------------------------- +Info 60 [00:01:57.000] Project '/dev/null/inferredProject1*' (Inferred) +Info 60 [00:01:58.000] Files (0) + +Info 60 [00:01:59.000] ----------------------------------------------- +Info 60 [00:02:00.000] Project '/dev/null/inferredProject2*' (Inferred) +Info 60 [00:02:01.000] Files (2) + +Info 60 [00:02:02.000] ----------------------------------------------- +Info 60 [00:02:03.000] Open files: +Info 60 [00:02:04.000] FileName: /user/username/projects/myproject/commonFile1.ts ProjectRootPath: undefined +Info 60 [00:02:05.000] Projects: /user/username/projects/myproject/tsconfig.json +Info 60 [00:02:06.000] FileName: /user/username/projects/myproject/commonFile2.ts ProjectRootPath: undefined +Info 60 [00:02:07.000] Projects: /dev/null/inferredProject2* After checking timeout queue length (2) and running PolledWatches:: @@ -213,10 +213,10 @@ FsWatches:: FsWatchesRecursive:: -Info 60 [16:02:09.000] FileWatcher:: Triggered with /user/username/projects/myproject/tsconfig.json 2:: WatchInfo: /user/username/projects/myproject/tsconfig.json 2000 undefined WatchType: Config file for the inferred project root -Info 61 [16:02:10.000] `remove Project:: -Info 62 [16:02:11.000] Project '/user/username/projects/myproject/tsconfig.json' (Configured) -Info 63 [16:02:12.000] Files (2) +Info 60 [00:02:09.000] FileWatcher:: Triggered with /user/username/projects/myproject/tsconfig.json 2:: WatchInfo: /user/username/projects/myproject/tsconfig.json 2000 undefined WatchType: Config file for the inferred project root +Info 61 [00:02:10.000] `remove Project:: +Info 62 [00:02:11.000] Project '/user/username/projects/myproject/tsconfig.json' (Configured) +Info 63 [00:02:12.000] Files (2) /a/lib/lib.d.ts /user/username/projects/myproject/commonFile1.ts @@ -226,15 +226,15 @@ Info 63 [16:02:12.000] Files (2) commonFile1.ts Part of 'files' list in tsconfig.json -Info 64 [16:02:13.000] ----------------------------------------------- -Info 65 [16:02:14.000] DirectoryWatcher:: Close:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/tsconfig.json WatchType: Type roots -Info 66 [16:02:15.000] 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 67 [16:02:16.000] Search path: /user/username/projects/myproject -Info 68 [16:02:17.000] For info: /user/username/projects/myproject/commonFile1.ts :: No config files found. -Info 69 [16:02:18.000] Search path: /user/username/projects/myproject -Info 70 [16:02:19.000] For info: /user/username/projects/myproject/commonFile2.ts :: No config files found. -Info 71 [16:02:20.000] Scheduled: *ensureProjectForOpenFiles* -Info 72 [16:02:21.000] Elapsed:: *ms FileWatcher:: Triggered with /user/username/projects/myproject/tsconfig.json 2:: WatchInfo: /user/username/projects/myproject/tsconfig.json 2000 undefined WatchType: Config file for the inferred project root +Info 64 [00:02:13.000] ----------------------------------------------- +Info 65 [00:02:14.000] DirectoryWatcher:: Close:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/tsconfig.json WatchType: Type roots +Info 66 [00:02:15.000] 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 67 [00:02:16.000] Search path: /user/username/projects/myproject +Info 68 [00:02:17.000] For info: /user/username/projects/myproject/commonFile1.ts :: No config files found. +Info 69 [00:02:18.000] Search path: /user/username/projects/myproject +Info 70 [00:02:19.000] For info: /user/username/projects/myproject/commonFile2.ts :: No config files found. +Info 71 [00:02:20.000] Scheduled: *ensureProjectForOpenFiles* +Info 72 [00:02:21.000] Elapsed:: *ms FileWatcher:: Triggered with /user/username/projects/myproject/tsconfig.json 2:: WatchInfo: /user/username/projects/myproject/tsconfig.json 2000 undefined WatchType: Config file for the inferred project root Before checking timeout queue length (1) and running //// [/user/username/projects/myproject/tsconfig.json] deleted @@ -252,25 +252,25 @@ FsWatches:: FsWatchesRecursive:: -Info 73 [16:02:22.500] Running: *ensureProjectForOpenFiles* -Info 74 [16:02:23.500] Before ensureProjectForOpenFiles: -Info 75 [16:02:24.500] Project '/dev/null/inferredProject1*' (Inferred) -Info 75 [16:02:25.500] Files (0) - -Info 75 [16:02:26.500] ----------------------------------------------- -Info 75 [16:02:27.500] Project '/dev/null/inferredProject2*' (Inferred) -Info 75 [16:02:28.500] Files (2) - -Info 75 [16:02:29.500] ----------------------------------------------- -Info 75 [16:02:30.500] Open files: -Info 75 [16:02:31.500] FileName: /user/username/projects/myproject/commonFile1.ts ProjectRootPath: undefined -Info 75 [16:02:32.500] Projects: -Info 75 [16:02:33.500] FileName: /user/username/projects/myproject/commonFile2.ts ProjectRootPath: undefined -Info 75 [16:02:34.500] Projects: /dev/null/inferredProject2* -Info 75 [16:02:35.500] Starting updateGraphWorker: Project: /dev/null/inferredProject1* -Info 76 [16:02:36.500] Finishing updateGraphWorker: Project: /dev/null/inferredProject1* Version: 3 structureChanged: true structureIsReused:: Not Elapsed:: *ms -Info 77 [16:02:37.500] Project '/dev/null/inferredProject1*' (Inferred) -Info 78 [16:02:38.500] Files (2) +Info 73 [00:02:22.500] Running: *ensureProjectForOpenFiles* +Info 74 [00:02:23.500] Before ensureProjectForOpenFiles: +Info 75 [00:02:24.500] Project '/dev/null/inferredProject1*' (Inferred) +Info 75 [00:02:25.500] Files (0) + +Info 75 [00:02:26.500] ----------------------------------------------- +Info 75 [00:02:27.500] Project '/dev/null/inferredProject2*' (Inferred) +Info 75 [00:02:28.500] Files (2) + +Info 75 [00:02:29.500] ----------------------------------------------- +Info 75 [00:02:30.500] Open files: +Info 75 [00:02:31.500] FileName: /user/username/projects/myproject/commonFile1.ts ProjectRootPath: undefined +Info 75 [00:02:32.500] Projects: +Info 75 [00:02:33.500] FileName: /user/username/projects/myproject/commonFile2.ts ProjectRootPath: undefined +Info 75 [00:02:34.500] Projects: /dev/null/inferredProject2* +Info 75 [00:02:35.500] Starting updateGraphWorker: Project: /dev/null/inferredProject1* +Info 76 [00:02:36.500] Finishing updateGraphWorker: Project: /dev/null/inferredProject1* Version: 3 structureChanged: true structureIsReused:: Not Elapsed:: *ms +Info 77 [00:02:37.500] Project '/dev/null/inferredProject1*' (Inferred) +Info 78 [00:02:38.500] Files (2) /a/lib/lib.d.ts /user/username/projects/myproject/commonFile1.ts @@ -280,21 +280,21 @@ Info 78 [16:02:38.500] Files (2) commonFile1.ts Root file specified for compilation -Info 79 [16:02:39.500] ----------------------------------------------- -Info 80 [16:02:40.500] After ensureProjectForOpenFiles: -Info 81 [16:02:41.500] Project '/dev/null/inferredProject1*' (Inferred) -Info 81 [16:02:42.500] Files (2) - -Info 81 [16:02:43.500] ----------------------------------------------- -Info 81 [16:02:44.500] Project '/dev/null/inferredProject2*' (Inferred) -Info 81 [16:02:45.500] Files (2) - -Info 81 [16:02:46.500] ----------------------------------------------- -Info 81 [16:02:47.500] Open files: -Info 81 [16:02:48.500] FileName: /user/username/projects/myproject/commonFile1.ts ProjectRootPath: undefined -Info 81 [16:02:49.500] Projects: /dev/null/inferredProject1* -Info 81 [16:02:50.500] FileName: /user/username/projects/myproject/commonFile2.ts ProjectRootPath: undefined -Info 81 [16:02:51.500] Projects: /dev/null/inferredProject2* +Info 79 [00:02:39.500] ----------------------------------------------- +Info 80 [00:02:40.500] After ensureProjectForOpenFiles: +Info 81 [00:02:41.500] Project '/dev/null/inferredProject1*' (Inferred) +Info 81 [00:02:42.500] Files (2) + +Info 81 [00:02:43.500] ----------------------------------------------- +Info 81 [00:02:44.500] Project '/dev/null/inferredProject2*' (Inferred) +Info 81 [00:02:45.500] Files (2) + +Info 81 [00:02:46.500] ----------------------------------------------- +Info 81 [00:02:47.500] Open files: +Info 81 [00:02:48.500] FileName: /user/username/projects/myproject/commonFile1.ts ProjectRootPath: undefined +Info 81 [00:02:49.500] Projects: /dev/null/inferredProject1* +Info 81 [00:02:50.500] FileName: /user/username/projects/myproject/commonFile2.ts ProjectRootPath: undefined +Info 81 [00:02:51.500] Projects: /dev/null/inferredProject2* After checking timeout queue length (1) and running PolledWatches:: diff --git a/tests/baselines/reference/tsserver/configuredProjects/add-new-files-to-a-configured-project-without-file-list.js b/tests/baselines/reference/tsserver/configuredProjects/add-new-files-to-a-configured-project-without-file-list.js index 68c6ea573d055..e0955ccf51632 100644 --- a/tests/baselines/reference/tsserver/configuredProjects/add-new-files-to-a-configured-project-without-file-list.js +++ b/tests/baselines/reference/tsserver/configuredProjects/add-new-files-to-a-configured-project-without-file-list.js @@ -1,4 +1,4 @@ -Info 0 [16:00:15.000] Provided types map file "/typesMap.json" doesn't exist +Info 0 [00:00:15.000] Provided types map file "/typesMap.json" doesn't exist Creating project service //// [/a/b/commonFile1.ts] let x = 1 @@ -26,11 +26,11 @@ FsWatches:: FsWatchesRecursive:: -Info 1 [16:00:16.000] Search path: /a/b -Info 2 [16:00:17.000] For info: /a/b/commonFile1.ts :: Config file name: /a/b/tsconfig.json -Info 3 [16:00:18.000] Creating configuration project /a/b/tsconfig.json -Info 4 [16:00:19.000] FileWatcher:: Added:: WatchInfo: /a/b/tsconfig.json 2000 undefined Project: /a/b/tsconfig.json WatchType: Config file -Info 5 [16:00:20.000] Config: /a/b/tsconfig.json : { +Info 1 [00:00:16.000] Search path: /a/b +Info 2 [00:00:17.000] For info: /a/b/commonFile1.ts :: Config file name: /a/b/tsconfig.json +Info 3 [00:00:18.000] Creating configuration project /a/b/tsconfig.json +Info 4 [00:00:19.000] FileWatcher:: Added:: WatchInfo: /a/b/tsconfig.json 2000 undefined Project: /a/b/tsconfig.json WatchType: Config file +Info 5 [00:00:20.000] Config: /a/b/tsconfig.json : { "rootNames": [ "/a/b/commonFile1.ts" ], @@ -38,16 +38,16 @@ Info 5 [16:00:20.000] Config: /a/b/tsconfig.json : { "configFilePath": "/a/b/tsconfig.json" } } -Info 6 [16:00:21.000] DirectoryWatcher:: Added:: WatchInfo: /a/b 1 undefined Config: /a/b/tsconfig.json WatchType: Wild card directory -Info 7 [16:00:22.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /a/b 1 undefined Config: /a/b/tsconfig.json WatchType: Wild card directory -Info 8 [16:00:23.000] Plugins were requested but not running in environment that supports 'require'. Nothing will be loaded -Info 9 [16:00:24.000] Starting updateGraphWorker: Project: /a/b/tsconfig.json -Info 10 [16:00:25.000] FileWatcher:: Added:: WatchInfo: /a/lib/lib.d.ts 500 undefined WatchType: Closed Script info -Info 11 [16:00:26.000] DirectoryWatcher:: Added:: WatchInfo: /a/b/node_modules/@types 1 undefined Project: /a/b/tsconfig.json WatchType: Type roots -Info 12 [16:00:27.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /a/b/node_modules/@types 1 undefined Project: /a/b/tsconfig.json WatchType: Type roots -Info 13 [16:00:28.000] Finishing updateGraphWorker: Project: /a/b/tsconfig.json Version: 1 structureChanged: true structureIsReused:: Not Elapsed:: *ms -Info 14 [16:00:29.000] Project '/a/b/tsconfig.json' (Configured) -Info 15 [16:00:30.000] Files (2) +Info 6 [00:00:21.000] DirectoryWatcher:: Added:: WatchInfo: /a/b 1 undefined Config: /a/b/tsconfig.json WatchType: Wild card directory +Info 7 [00:00:22.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /a/b 1 undefined Config: /a/b/tsconfig.json WatchType: Wild card directory +Info 8 [00:00:23.000] Plugins were requested but not running in environment that supports 'require'. Nothing will be loaded +Info 9 [00:00:24.000] Starting updateGraphWorker: Project: /a/b/tsconfig.json +Info 10 [00:00:25.000] FileWatcher:: Added:: WatchInfo: /a/lib/lib.d.ts 500 undefined WatchType: Closed Script info +Info 11 [00:00:26.000] DirectoryWatcher:: Added:: WatchInfo: /a/b/node_modules/@types 1 undefined Project: /a/b/tsconfig.json WatchType: Type roots +Info 12 [00:00:27.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /a/b/node_modules/@types 1 undefined Project: /a/b/tsconfig.json WatchType: Type roots +Info 13 [00:00:28.000] Finishing updateGraphWorker: Project: /a/b/tsconfig.json Version: 1 structureChanged: true structureIsReused:: Not Elapsed:: *ms +Info 14 [00:00:29.000] Project '/a/b/tsconfig.json' (Configured) +Info 15 [00:00:30.000] Files (2) /a/lib/lib.d.ts /a/b/commonFile1.ts @@ -57,18 +57,18 @@ Info 15 [16:00:30.000] Files (2) commonFile1.ts Matched by default include pattern '**/*' -Info 16 [16:00:31.000] ----------------------------------------------- -Info 17 [16:00:32.000] Project '/a/b/tsconfig.json' (Configured) -Info 17 [16:00:33.000] Files (2) - -Info 17 [16:00:34.000] ----------------------------------------------- -Info 17 [16:00:35.000] Open files: -Info 17 [16:00:36.000] FileName: /a/b/commonFile1.ts ProjectRootPath: undefined -Info 17 [16:00:37.000] Projects: /a/b/tsconfig.json -Info 17 [16:00:40.000] DirectoryWatcher:: Triggered with /a/b/commonFile2.ts :: WatchInfo: /a/b 1 undefined Config: /a/b/tsconfig.json WatchType: Wild card directory -Info 18 [16:00:41.000] Scheduled: /a/b/tsconfig.json -Info 19 [16:00:42.000] Scheduled: *ensureProjectForOpenFiles* -Info 20 [16:00:43.000] Elapsed:: *ms DirectoryWatcher:: Triggered with /a/b/commonFile2.ts :: WatchInfo: /a/b 1 undefined Config: /a/b/tsconfig.json WatchType: Wild card directory +Info 16 [00:00:31.000] ----------------------------------------------- +Info 17 [00:00:32.000] Project '/a/b/tsconfig.json' (Configured) +Info 17 [00:00:33.000] Files (2) + +Info 17 [00:00:34.000] ----------------------------------------------- +Info 17 [00:00:35.000] Open files: +Info 17 [00:00:36.000] FileName: /a/b/commonFile1.ts ProjectRootPath: undefined +Info 17 [00:00:37.000] Projects: /a/b/tsconfig.json +Info 17 [00:00:40.000] DirectoryWatcher:: Triggered with /a/b/commonFile2.ts :: WatchInfo: /a/b 1 undefined Config: /a/b/tsconfig.json WatchType: Wild card directory +Info 18 [00:00:41.000] Scheduled: /a/b/tsconfig.json +Info 19 [00:00:42.000] Scheduled: *ensureProjectForOpenFiles* +Info 20 [00:00:43.000] Elapsed:: *ms DirectoryWatcher:: Triggered with /a/b/commonFile2.ts :: WatchInfo: /a/b 1 undefined Config: /a/b/tsconfig.json WatchType: Wild card directory Before checking timeout queue length (2) and running //// [/a/b/commonFile2.ts] let y = 1 @@ -88,12 +88,12 @@ FsWatchesRecursive:: /a/b: {} -Info 21 [16:00:44.000] Running: /a/b/tsconfig.json -Info 22 [16:00:45.000] FileWatcher:: Added:: WatchInfo: /a/b/commonFile2.ts 500 undefined WatchType: Closed Script info -Info 23 [16:00:46.000] Starting updateGraphWorker: Project: /a/b/tsconfig.json -Info 24 [16:00:47.000] Finishing updateGraphWorker: Project: /a/b/tsconfig.json Version: 2 structureChanged: true structureIsReused:: Not Elapsed:: *ms -Info 25 [16:00:48.000] Project '/a/b/tsconfig.json' (Configured) -Info 26 [16:00:49.000] Files (3) +Info 21 [00:00:44.000] Running: /a/b/tsconfig.json +Info 22 [00:00:45.000] FileWatcher:: Added:: WatchInfo: /a/b/commonFile2.ts 500 undefined WatchType: Closed Script info +Info 23 [00:00:46.000] Starting updateGraphWorker: Project: /a/b/tsconfig.json +Info 24 [00:00:47.000] Finishing updateGraphWorker: Project: /a/b/tsconfig.json Version: 2 structureChanged: true structureIsReused:: Not Elapsed:: *ms +Info 25 [00:00:48.000] Project '/a/b/tsconfig.json' (Configured) +Info 26 [00:00:49.000] Files (3) /a/lib/lib.d.ts /a/b/commonFile1.ts /a/b/commonFile2.ts @@ -106,24 +106,24 @@ Info 26 [16:00:49.000] Files (3) commonFile2.ts Matched by default include pattern '**/*' -Info 27 [16:00:50.000] ----------------------------------------------- -Info 28 [16:00:51.000] Running: *ensureProjectForOpenFiles* -Info 29 [16:00:52.000] Before ensureProjectForOpenFiles: -Info 30 [16:00:53.000] Project '/a/b/tsconfig.json' (Configured) -Info 30 [16:00:54.000] Files (3) - -Info 30 [16:00:55.000] ----------------------------------------------- -Info 30 [16:00:56.000] Open files: -Info 30 [16:00:57.000] FileName: /a/b/commonFile1.ts ProjectRootPath: undefined -Info 30 [16:00:58.000] Projects: /a/b/tsconfig.json -Info 30 [16:00:59.000] After ensureProjectForOpenFiles: -Info 31 [16:01:00.000] Project '/a/b/tsconfig.json' (Configured) -Info 31 [16:01:01.000] Files (3) - -Info 31 [16:01:02.000] ----------------------------------------------- -Info 31 [16:01:03.000] Open files: -Info 31 [16:01:04.000] FileName: /a/b/commonFile1.ts ProjectRootPath: undefined -Info 31 [16:01:05.000] Projects: /a/b/tsconfig.json +Info 27 [00:00:50.000] ----------------------------------------------- +Info 28 [00:00:51.000] Running: *ensureProjectForOpenFiles* +Info 29 [00:00:52.000] Before ensureProjectForOpenFiles: +Info 30 [00:00:53.000] Project '/a/b/tsconfig.json' (Configured) +Info 30 [00:00:54.000] Files (3) + +Info 30 [00:00:55.000] ----------------------------------------------- +Info 30 [00:00:56.000] Open files: +Info 30 [00:00:57.000] FileName: /a/b/commonFile1.ts ProjectRootPath: undefined +Info 30 [00:00:58.000] Projects: /a/b/tsconfig.json +Info 30 [00:00:59.000] After ensureProjectForOpenFiles: +Info 31 [00:01:00.000] Project '/a/b/tsconfig.json' (Configured) +Info 31 [00:01:01.000] Files (3) + +Info 31 [00:01:02.000] ----------------------------------------------- +Info 31 [00:01:03.000] Open files: +Info 31 [00:01:04.000] FileName: /a/b/commonFile1.ts ProjectRootPath: undefined +Info 31 [00:01:05.000] Projects: /a/b/tsconfig.json After checking timeout queue length (2) and running PolledWatches:: 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 adb7e4f2afbe4..eecec7bdbaa56 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 @@ -1,4 +1,4 @@ -Info 0 [16:00:17.000] Provided types map file "/typesMap.json" doesn't exist +Info 0 [00:00:17.000] Provided types map file "/typesMap.json" doesn't exist Creating project service //// [/a/b/file1.ts] import classc from "file2" @@ -29,11 +29,11 @@ FsWatches:: FsWatchesRecursive:: -Info 1 [16:00:18.000] Search path: /a/b -Info 2 [16:00:19.000] For info: /a/b/file1.ts :: Config file name: /a/b/tsconfig.json -Info 3 [16:00:20.000] Creating configuration project /a/b/tsconfig.json -Info 4 [16:00:21.000] FileWatcher:: Added:: WatchInfo: /a/b/tsconfig.json 2000 undefined Project: /a/b/tsconfig.json WatchType: Config file -Info 5 [16:00:22.000] Config: /a/b/tsconfig.json : { +Info 1 [00:00:18.000] Search path: /a/b +Info 2 [00:00:19.000] For info: /a/b/file1.ts :: Config file name: /a/b/tsconfig.json +Info 3 [00:00:20.000] Creating configuration project /a/b/tsconfig.json +Info 4 [00:00:21.000] FileWatcher:: Added:: WatchInfo: /a/b/tsconfig.json 2000 undefined Project: /a/b/tsconfig.json WatchType: Config file +Info 5 [00:00:22.000] Config: /a/b/tsconfig.json : { "rootNames": [ "/a/b/file1.ts" ], @@ -42,17 +42,17 @@ Info 5 [16:00:22.000] Config: /a/b/tsconfig.json : { "configFilePath": "/a/b/tsconfig.json" } } -Info 6 [16:00:23.000] Plugins were requested but not running in environment that supports 'require'. Nothing will be loaded -Info 7 [16:00:24.000] Starting updateGraphWorker: Project: /a/b/tsconfig.json -Info 8 [16:00:25.000] FileWatcher:: Added:: WatchInfo: /a/file2.ts 500 undefined WatchType: Closed Script info -Info 9 [16:00:26.000] FileWatcher:: Added:: WatchInfo: /a/lib/lib.d.ts 500 undefined WatchType: Closed Script info -Info 10 [16:00:27.000] DirectoryWatcher:: Added:: WatchInfo: /a/b 0 undefined Project: /a/b/tsconfig.json WatchType: Failed Lookup Locations -Info 11 [16:00:28.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /a/b 0 undefined Project: /a/b/tsconfig.json WatchType: Failed Lookup Locations -Info 12 [16:00:29.000] DirectoryWatcher:: Added:: WatchInfo: /a/b/node_modules/@types 1 undefined Project: /a/b/tsconfig.json WatchType: Type roots -Info 13 [16:00:30.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /a/b/node_modules/@types 1 undefined Project: /a/b/tsconfig.json WatchType: Type roots -Info 14 [16:00:31.000] Finishing updateGraphWorker: Project: /a/b/tsconfig.json Version: 1 structureChanged: true structureIsReused:: Not Elapsed:: *ms -Info 15 [16:00:32.000] Project '/a/b/tsconfig.json' (Configured) -Info 16 [16:00:33.000] Files (3) +Info 6 [00:00:23.000] Plugins were requested but not running in environment that supports 'require'. Nothing will be loaded +Info 7 [00:00:24.000] Starting updateGraphWorker: Project: /a/b/tsconfig.json +Info 8 [00:00:25.000] FileWatcher:: Added:: WatchInfo: /a/file2.ts 500 undefined WatchType: Closed Script info +Info 9 [00:00:26.000] FileWatcher:: Added:: WatchInfo: /a/lib/lib.d.ts 500 undefined WatchType: Closed Script info +Info 10 [00:00:27.000] DirectoryWatcher:: Added:: WatchInfo: /a/b 0 undefined Project: /a/b/tsconfig.json WatchType: Failed Lookup Locations +Info 11 [00:00:28.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /a/b 0 undefined Project: /a/b/tsconfig.json WatchType: Failed Lookup Locations +Info 12 [00:00:29.000] DirectoryWatcher:: Added:: WatchInfo: /a/b/node_modules/@types 1 undefined Project: /a/b/tsconfig.json WatchType: Type roots +Info 13 [00:00:30.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /a/b/node_modules/@types 1 undefined Project: /a/b/tsconfig.json WatchType: Type roots +Info 14 [00:00:31.000] Finishing updateGraphWorker: Project: /a/b/tsconfig.json Version: 1 structureChanged: true structureIsReused:: Not Elapsed:: *ms +Info 15 [00:00:32.000] Project '/a/b/tsconfig.json' (Configured) +Info 16 [00:00:33.000] Files (3) /a/lib/lib.d.ts /a/file2.ts /a/b/file1.ts @@ -65,17 +65,17 @@ Info 16 [16:00:33.000] Files (3) file1.ts Part of 'files' list in tsconfig.json -Info 17 [16:00:34.000] ----------------------------------------------- -Info 18 [16:00:35.000] Project '/a/b/tsconfig.json' (Configured) -Info 18 [16:00:36.000] Files (3) - -Info 18 [16:00:37.000] ----------------------------------------------- -Info 18 [16:00:38.000] Open files: -Info 18 [16:00:39.000] FileName: /a/b/file1.ts ProjectRootPath: undefined -Info 18 [16:00:40.000] Projects: /a/b/tsconfig.json -Info 18 [16:00:43.000] DirectoryWatcher:: Triggered with /a/b/file2.ts :: WatchInfo: /a/b 0 undefined Project: /a/b/tsconfig.json WatchType: Failed Lookup Locations -Info 19 [16:00:44.000] Scheduled: /a/b/tsconfig.jsonFailedLookupInvalidation -Info 20 [16:00:45.000] Elapsed:: *ms DirectoryWatcher:: Triggered with /a/b/file2.ts :: WatchInfo: /a/b 0 undefined Project: /a/b/tsconfig.json WatchType: Failed Lookup Locations +Info 17 [00:00:34.000] ----------------------------------------------- +Info 18 [00:00:35.000] Project '/a/b/tsconfig.json' (Configured) +Info 18 [00:00:36.000] Files (3) + +Info 18 [00:00:37.000] ----------------------------------------------- +Info 18 [00:00:38.000] Open files: +Info 18 [00:00:39.000] FileName: /a/b/file1.ts ProjectRootPath: undefined +Info 18 [00:00:40.000] Projects: /a/b/tsconfig.json +Info 18 [00:00:43.000] DirectoryWatcher:: Triggered with /a/b/file2.ts :: WatchInfo: /a/b 0 undefined Project: /a/b/tsconfig.json WatchType: Failed Lookup Locations +Info 19 [00:00:44.000] Scheduled: /a/b/tsconfig.jsonFailedLookupInvalidation +Info 20 [00:00:45.000] Elapsed:: *ms DirectoryWatcher:: Triggered with /a/b/file2.ts :: WatchInfo: /a/b 0 undefined Project: /a/b/tsconfig.json WatchType: Failed Lookup Locations Before running timeout callbacks //// [/a/b/file2.ts] export classc { method2() { return 10; } } @@ -97,9 +97,9 @@ FsWatches:: FsWatchesRecursive:: -Info 21 [16:00:46.000] Running: /a/b/tsconfig.jsonFailedLookupInvalidation -Info 22 [16:00:47.000] Scheduled: /a/b/tsconfig.json -Info 23 [16:00:48.000] Scheduled: *ensureProjectForOpenFiles* +Info 21 [00:00:46.000] Running: /a/b/tsconfig.jsonFailedLookupInvalidation +Info 22 [00:00:47.000] Scheduled: /a/b/tsconfig.json +Info 23 [00:00:48.000] Scheduled: *ensureProjectForOpenFiles* After running timeout callbacks PolledWatches:: @@ -136,14 +136,14 @@ FsWatches:: FsWatchesRecursive:: -Info 24 [16:00:49.000] Running: /a/b/tsconfig.json -Info 25 [16:00:50.000] Starting updateGraphWorker: Project: /a/b/tsconfig.json -Info 26 [16:00:51.000] FileWatcher:: Added:: WatchInfo: /a/b/file2.ts 500 undefined WatchType: Closed Script info -Info 27 [16:00:52.000] DirectoryWatcher:: Close:: WatchInfo: /a/b 0 undefined Project: /a/b/tsconfig.json WatchType: Failed Lookup Locations -Info 28 [16:00:53.000] Elapsed:: *ms DirectoryWatcher:: Close:: WatchInfo: /a/b 0 undefined Project: /a/b/tsconfig.json WatchType: Failed Lookup Locations -Info 29 [16:00:54.000] Finishing updateGraphWorker: Project: /a/b/tsconfig.json Version: 2 structureChanged: true structureIsReused:: SafeModules Elapsed:: *ms -Info 30 [16:00:55.000] Project '/a/b/tsconfig.json' (Configured) -Info 31 [16:00:56.000] Files (3) +Info 24 [00:00:49.000] Running: /a/b/tsconfig.json +Info 25 [00:00:50.000] Starting updateGraphWorker: Project: /a/b/tsconfig.json +Info 26 [00:00:51.000] FileWatcher:: Added:: WatchInfo: /a/b/file2.ts 500 undefined WatchType: Closed Script info +Info 27 [00:00:52.000] DirectoryWatcher:: Close:: WatchInfo: /a/b 0 undefined Project: /a/b/tsconfig.json WatchType: Failed Lookup Locations +Info 28 [00:00:53.000] Elapsed:: *ms DirectoryWatcher:: Close:: WatchInfo: /a/b 0 undefined Project: /a/b/tsconfig.json WatchType: Failed Lookup Locations +Info 29 [00:00:54.000] Finishing updateGraphWorker: Project: /a/b/tsconfig.json Version: 2 structureChanged: true structureIsReused:: SafeModules Elapsed:: *ms +Info 30 [00:00:55.000] Project '/a/b/tsconfig.json' (Configured) +Info 31 [00:00:56.000] Files (3) /a/lib/lib.d.ts /a/b/file2.ts /a/b/file1.ts @@ -156,24 +156,24 @@ Info 31 [16:00:56.000] Files (3) file1.ts Part of 'files' list in tsconfig.json -Info 32 [16:00:57.000] ----------------------------------------------- -Info 33 [16:00:58.000] Running: *ensureProjectForOpenFiles* -Info 34 [16:00:59.000] Before ensureProjectForOpenFiles: -Info 35 [16:01:00.000] Project '/a/b/tsconfig.json' (Configured) -Info 35 [16:01:01.000] Files (3) - -Info 35 [16:01:02.000] ----------------------------------------------- -Info 35 [16:01:03.000] Open files: -Info 35 [16:01:04.000] FileName: /a/b/file1.ts ProjectRootPath: undefined -Info 35 [16:01:05.000] Projects: /a/b/tsconfig.json -Info 35 [16:01:06.000] After ensureProjectForOpenFiles: -Info 36 [16:01:07.000] Project '/a/b/tsconfig.json' (Configured) -Info 36 [16:01:08.000] Files (3) - -Info 36 [16:01:09.000] ----------------------------------------------- -Info 36 [16:01:10.000] Open files: -Info 36 [16:01:11.000] FileName: /a/b/file1.ts ProjectRootPath: undefined -Info 36 [16:01:12.000] Projects: /a/b/tsconfig.json +Info 32 [00:00:57.000] ----------------------------------------------- +Info 33 [00:00:58.000] Running: *ensureProjectForOpenFiles* +Info 34 [00:00:59.000] Before ensureProjectForOpenFiles: +Info 35 [00:01:00.000] Project '/a/b/tsconfig.json' (Configured) +Info 35 [00:01:01.000] Files (3) + +Info 35 [00:01:02.000] ----------------------------------------------- +Info 35 [00:01:03.000] Open files: +Info 35 [00:01:04.000] FileName: /a/b/file1.ts ProjectRootPath: undefined +Info 35 [00:01:05.000] Projects: /a/b/tsconfig.json +Info 35 [00:01:06.000] After ensureProjectForOpenFiles: +Info 36 [00:01:07.000] Project '/a/b/tsconfig.json' (Configured) +Info 36 [00:01:08.000] Files (3) + +Info 36 [00:01:09.000] ----------------------------------------------- +Info 36 [00:01:10.000] Open files: +Info 36 [00:01:11.000] FileName: /a/b/file1.ts ProjectRootPath: undefined +Info 36 [00:01:12.000] Projects: /a/b/tsconfig.json After running timeout callbacks PolledWatches:: @@ -192,16 +192,16 @@ FsWatches:: FsWatchesRecursive:: -Info 36 [16:01:13.000] FileWatcher:: Close:: WatchInfo: /a/b/file2.ts 500 undefined WatchType: Closed Script info -Info 37 [16:01:14.000] Search path: /a/b -Info 38 [16:01:15.000] For info: /a/b/file2.ts :: Config file name: /a/b/tsconfig.json -Info 39 [16:01:16.000] FileWatcher:: Close:: WatchInfo: /a/file2.ts 500 undefined WatchType: Closed Script info -Info 40 [16:01:17.000] Project '/a/b/tsconfig.json' (Configured) -Info 40 [16:01:18.000] Files (3) - -Info 40 [16:01:19.000] ----------------------------------------------- -Info 40 [16:01:20.000] Open files: -Info 40 [16:01:21.000] FileName: /a/b/file1.ts ProjectRootPath: undefined -Info 40 [16:01:22.000] Projects: /a/b/tsconfig.json -Info 40 [16:01:23.000] FileName: /a/b/file2.ts ProjectRootPath: undefined -Info 40 [16:01:24.000] Projects: /a/b/tsconfig.json \ No newline at end of file +Info 36 [00:01:13.000] FileWatcher:: Close:: WatchInfo: /a/b/file2.ts 500 undefined WatchType: Closed Script info +Info 37 [00:01:14.000] Search path: /a/b +Info 38 [00:01:15.000] For info: /a/b/file2.ts :: Config file name: /a/b/tsconfig.json +Info 39 [00:01:16.000] FileWatcher:: Close:: WatchInfo: /a/file2.ts 500 undefined WatchType: Closed Script info +Info 40 [00:01:17.000] Project '/a/b/tsconfig.json' (Configured) +Info 40 [00:01:18.000] Files (3) + +Info 40 [00:01:19.000] ----------------------------------------------- +Info 40 [00:01:20.000] Open files: +Info 40 [00:01:21.000] FileName: /a/b/file1.ts ProjectRootPath: undefined +Info 40 [00:01:22.000] Projects: /a/b/tsconfig.json +Info 40 [00:01:23.000] FileName: /a/b/file2.ts ProjectRootPath: undefined +Info 40 [00:01:24.000] Projects: /a/b/tsconfig.json \ No newline at end of file diff --git a/tests/baselines/reference/tsserver/configuredProjects/create-configured-project-with-the-file-list.js b/tests/baselines/reference/tsserver/configuredProjects/create-configured-project-with-the-file-list.js index 1913e245993eb..07c2725919623 100644 --- a/tests/baselines/reference/tsserver/configuredProjects/create-configured-project-with-the-file-list.js +++ b/tests/baselines/reference/tsserver/configuredProjects/create-configured-project-with-the-file-list.js @@ -1,4 +1,4 @@ -Info 0 [16:00:21.000] Provided types map file "/typesMap.json" doesn't exist +Info 0 [00:00:21.000] Provided types map file "/typesMap.json" doesn't exist Creating project service //// [/a/b/tsconfig.json] @@ -36,11 +36,11 @@ FsWatches:: FsWatchesRecursive:: -Info 1 [16:00:22.000] Search path: /a/b -Info 2 [16:00:23.000] For info: /a/b/f1.ts :: Config file name: /a/b/tsconfig.json -Info 3 [16:00:24.000] Creating configuration project /a/b/tsconfig.json -Info 4 [16:00:25.000] FileWatcher:: Added:: WatchInfo: /a/b/tsconfig.json 2000 undefined Project: /a/b/tsconfig.json WatchType: Config file -Info 5 [16:00:26.000] Config: /a/b/tsconfig.json : { +Info 1 [00:00:22.000] Search path: /a/b +Info 2 [00:00:23.000] For info: /a/b/f1.ts :: Config file name: /a/b/tsconfig.json +Info 3 [00:00:24.000] Creating configuration project /a/b/tsconfig.json +Info 4 [00:00:25.000] FileWatcher:: Added:: WatchInfo: /a/b/tsconfig.json 2000 undefined Project: /a/b/tsconfig.json WatchType: Config file +Info 5 [00:00:26.000] Config: /a/b/tsconfig.json : { "rootNames": [ "/a/b/f1.ts", "/a/b/f2.ts" @@ -49,17 +49,17 @@ Info 5 [16:00:26.000] Config: /a/b/tsconfig.json : { "configFilePath": "/a/b/tsconfig.json" } } -Info 6 [16:00:27.000] DirectoryWatcher:: Added:: WatchInfo: /a/b 0 undefined Config: /a/b/tsconfig.json WatchType: Wild card directory -Info 7 [16:00:28.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /a/b 0 undefined Config: /a/b/tsconfig.json WatchType: Wild card directory -Info 8 [16:00:29.000] Plugins were requested but not running in environment that supports 'require'. Nothing will be loaded -Info 9 [16:00:30.000] FileWatcher:: Added:: WatchInfo: /a/b/f2.ts 500 undefined WatchType: Closed Script info -Info 10 [16:00:31.000] Starting updateGraphWorker: Project: /a/b/tsconfig.json -Info 11 [16:00:32.000] FileWatcher:: Added:: WatchInfo: /a/lib/lib.d.ts 500 undefined WatchType: Closed Script info -Info 12 [16:00:33.000] DirectoryWatcher:: Added:: WatchInfo: /a/b/node_modules/@types 1 undefined Project: /a/b/tsconfig.json WatchType: Type roots -Info 13 [16:00:34.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /a/b/node_modules/@types 1 undefined Project: /a/b/tsconfig.json WatchType: Type roots -Info 14 [16:00:35.000] Finishing updateGraphWorker: Project: /a/b/tsconfig.json Version: 1 structureChanged: true structureIsReused:: Not Elapsed:: *ms -Info 15 [16:00:36.000] Project '/a/b/tsconfig.json' (Configured) -Info 16 [16:00:37.000] Files (3) +Info 6 [00:00:27.000] DirectoryWatcher:: Added:: WatchInfo: /a/b 0 undefined Config: /a/b/tsconfig.json WatchType: Wild card directory +Info 7 [00:00:28.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /a/b 0 undefined Config: /a/b/tsconfig.json WatchType: Wild card directory +Info 8 [00:00:29.000] Plugins were requested but not running in environment that supports 'require'. Nothing will be loaded +Info 9 [00:00:30.000] FileWatcher:: Added:: WatchInfo: /a/b/f2.ts 500 undefined WatchType: Closed Script info +Info 10 [00:00:31.000] Starting updateGraphWorker: Project: /a/b/tsconfig.json +Info 11 [00:00:32.000] FileWatcher:: Added:: WatchInfo: /a/lib/lib.d.ts 500 undefined WatchType: Closed Script info +Info 12 [00:00:33.000] DirectoryWatcher:: Added:: WatchInfo: /a/b/node_modules/@types 1 undefined Project: /a/b/tsconfig.json WatchType: Type roots +Info 13 [00:00:34.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /a/b/node_modules/@types 1 undefined Project: /a/b/tsconfig.json WatchType: Type roots +Info 14 [00:00:35.000] Finishing updateGraphWorker: Project: /a/b/tsconfig.json Version: 1 structureChanged: true structureIsReused:: Not Elapsed:: *ms +Info 15 [00:00:36.000] Project '/a/b/tsconfig.json' (Configured) +Info 16 [00:00:37.000] Files (3) /a/lib/lib.d.ts /a/b/f1.ts /a/b/f2.ts @@ -72,11 +72,11 @@ Info 16 [16:00:37.000] Files (3) f2.ts Matched by include pattern '*.ts' in 'tsconfig.json' -Info 17 [16:00:38.000] ----------------------------------------------- -Info 18 [16:00:39.000] Project '/a/b/tsconfig.json' (Configured) -Info 18 [16:00:40.000] Files (3) +Info 17 [00:00:38.000] ----------------------------------------------- +Info 18 [00:00:39.000] Project '/a/b/tsconfig.json' (Configured) +Info 18 [00:00:40.000] Files (3) -Info 18 [16:00:41.000] ----------------------------------------------- -Info 18 [16:00:42.000] Open files: -Info 18 [16:00:43.000] FileName: /a/b/f1.ts ProjectRootPath: undefined -Info 18 [16:00:44.000] Projects: /a/b/tsconfig.json \ No newline at end of file +Info 18 [00:00:41.000] ----------------------------------------------- +Info 18 [00:00:42.000] Open files: +Info 18 [00:00:43.000] FileName: /a/b/f1.ts ProjectRootPath: undefined +Info 18 [00:00:44.000] Projects: /a/b/tsconfig.json \ No newline at end of file diff --git a/tests/baselines/reference/tsserver/configuredProjects/create-configured-project-without-file-list.js b/tests/baselines/reference/tsserver/configuredProjects/create-configured-project-without-file-list.js index f976e5ede4f52..01787bb7756ab 100644 --- a/tests/baselines/reference/tsserver/configuredProjects/create-configured-project-without-file-list.js +++ b/tests/baselines/reference/tsserver/configuredProjects/create-configured-project-without-file-list.js @@ -1,4 +1,4 @@ -Info 0 [16:00:25.000] Provided types map file "/typesMap.json" doesn't exist +Info 0 [00:00:25.000] Provided types map file "/typesMap.json" doesn't exist Creating project service //// [/a/b/tsconfig.json] @@ -38,11 +38,11 @@ FsWatches:: FsWatchesRecursive:: -Info 1 [16:00:26.000] Search path: /a/b/c -Info 2 [16:00:27.000] For info: /a/b/c/f1.ts :: Config file name: /a/b/tsconfig.json -Info 3 [16:00:28.000] Creating configuration project /a/b/tsconfig.json -Info 4 [16:00:29.000] FileWatcher:: Added:: WatchInfo: /a/b/tsconfig.json 2000 undefined Project: /a/b/tsconfig.json WatchType: Config file -Info 5 [16:00:30.000] Config: /a/b/tsconfig.json : { +Info 1 [00:00:26.000] Search path: /a/b/c +Info 2 [00:00:27.000] For info: /a/b/c/f1.ts :: Config file name: /a/b/tsconfig.json +Info 3 [00:00:28.000] Creating configuration project /a/b/tsconfig.json +Info 4 [00:00:29.000] FileWatcher:: Added:: WatchInfo: /a/b/tsconfig.json 2000 undefined Project: /a/b/tsconfig.json WatchType: Config file +Info 5 [00:00:30.000] Config: /a/b/tsconfig.json : { "rootNames": [ "/a/b/c/f1.ts", "/a/b/d/f2.ts" @@ -51,17 +51,17 @@ Info 5 [16:00:30.000] Config: /a/b/tsconfig.json : { "configFilePath": "/a/b/tsconfig.json" } } -Info 6 [16:00:31.000] DirectoryWatcher:: Added:: WatchInfo: /a/b 1 undefined Config: /a/b/tsconfig.json WatchType: Wild card directory -Info 7 [16:00:32.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /a/b 1 undefined Config: /a/b/tsconfig.json WatchType: Wild card directory -Info 8 [16:00:33.000] Plugins were requested but not running in environment that supports 'require'. Nothing will be loaded -Info 9 [16:00:34.000] FileWatcher:: Added:: WatchInfo: /a/b/d/f2.ts 500 undefined WatchType: Closed Script info -Info 10 [16:00:35.000] Starting updateGraphWorker: Project: /a/b/tsconfig.json -Info 11 [16:00:36.000] FileWatcher:: Added:: WatchInfo: /a/lib/lib.d.ts 500 undefined WatchType: Closed Script info -Info 12 [16:00:37.000] DirectoryWatcher:: Added:: WatchInfo: /a/b/node_modules/@types 1 undefined Project: /a/b/tsconfig.json WatchType: Type roots -Info 13 [16:00:38.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /a/b/node_modules/@types 1 undefined Project: /a/b/tsconfig.json WatchType: Type roots -Info 14 [16:00:39.000] Finishing updateGraphWorker: Project: /a/b/tsconfig.json Version: 1 structureChanged: true structureIsReused:: Not Elapsed:: *ms -Info 15 [16:00:40.000] Project '/a/b/tsconfig.json' (Configured) -Info 16 [16:00:41.000] Files (3) +Info 6 [00:00:31.000] DirectoryWatcher:: Added:: WatchInfo: /a/b 1 undefined Config: /a/b/tsconfig.json WatchType: Wild card directory +Info 7 [00:00:32.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /a/b 1 undefined Config: /a/b/tsconfig.json WatchType: Wild card directory +Info 8 [00:00:33.000] Plugins were requested but not running in environment that supports 'require'. Nothing will be loaded +Info 9 [00:00:34.000] FileWatcher:: Added:: WatchInfo: /a/b/d/f2.ts 500 undefined WatchType: Closed Script info +Info 10 [00:00:35.000] Starting updateGraphWorker: Project: /a/b/tsconfig.json +Info 11 [00:00:36.000] FileWatcher:: Added:: WatchInfo: /a/lib/lib.d.ts 500 undefined WatchType: Closed Script info +Info 12 [00:00:37.000] DirectoryWatcher:: Added:: WatchInfo: /a/b/node_modules/@types 1 undefined Project: /a/b/tsconfig.json WatchType: Type roots +Info 13 [00:00:38.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /a/b/node_modules/@types 1 undefined Project: /a/b/tsconfig.json WatchType: Type roots +Info 14 [00:00:39.000] Finishing updateGraphWorker: Project: /a/b/tsconfig.json Version: 1 structureChanged: true structureIsReused:: Not Elapsed:: *ms +Info 15 [00:00:40.000] Project '/a/b/tsconfig.json' (Configured) +Info 16 [00:00:41.000] Files (3) /a/lib/lib.d.ts /a/b/c/f1.ts /a/b/d/f2.ts @@ -74,11 +74,11 @@ Info 16 [16:00:41.000] Files (3) d/f2.ts Matched by default include pattern '**/*' -Info 17 [16:00:42.000] ----------------------------------------------- -Info 18 [16:00:43.000] Project '/a/b/tsconfig.json' (Configured) -Info 18 [16:00:44.000] Files (3) +Info 17 [00:00:42.000] ----------------------------------------------- +Info 18 [00:00:43.000] Project '/a/b/tsconfig.json' (Configured) +Info 18 [00:00:44.000] Files (3) -Info 18 [16:00:45.000] ----------------------------------------------- -Info 18 [16:00:46.000] Open files: -Info 18 [16:00:47.000] FileName: /a/b/c/f1.ts ProjectRootPath: undefined -Info 18 [16:00:48.000] Projects: /a/b/tsconfig.json \ No newline at end of file +Info 18 [00:00:45.000] ----------------------------------------------- +Info 18 [00:00:46.000] Open files: +Info 18 [00:00:47.000] FileName: /a/b/c/f1.ts ProjectRootPath: undefined +Info 18 [00:00:48.000] Projects: /a/b/tsconfig.json \ No newline at end of file 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 32ef887ad3d55..3f61cb6de7006 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 @@ -1,5 +1,5 @@ -Info 0 [16:00:27.000] Provided types map file "/a/lib/typesMap.json" doesn't exist -Info 1 [16:00:28.000] request: +Info 0 [00:00:27.000] Provided types map file "/a/lib/typesMap.json" doesn't exist +Info 1 [00:00:28.000] request: { "command": "open", "arguments": { @@ -40,13 +40,13 @@ FsWatches:: FsWatchesRecursive:: -Info 2 [16:00:29.000] Search path: /user/username/projects/myproject/src -Info 3 [16:00:30.000] For info: /user/username/projects/myproject/src/foo.ts :: Config file name: /user/username/projects/myproject/tsconfig.json -Info 4 [16:00:31.000] Creating configuration project /user/username/projects/myproject/tsconfig.json -Info 5 [16:00:32.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/tsconfig.json 2000 undefined Project: /user/username/projects/myproject/tsconfig.json WatchType: Config file -Info 6 [16:00:33.000] event: +Info 2 [00:00:29.000] Search path: /user/username/projects/myproject/src +Info 3 [00:00:30.000] For info: /user/username/projects/myproject/src/foo.ts :: Config file name: /user/username/projects/myproject/tsconfig.json +Info 4 [00:00:31.000] Creating configuration project /user/username/projects/myproject/tsconfig.json +Info 5 [00:00:32.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/tsconfig.json 2000 undefined Project: /user/username/projects/myproject/tsconfig.json WatchType: Config file +Info 6 [00:00:33.000] event: {"seq":0,"type":"event","event":"projectLoadingStart","body":{"projectName":"/user/username/projects/myproject/tsconfig.json","reason":"Creating possible configured project for /user/username/projects/myproject/src/foo.ts to open"}} -Info 7 [16:00:34.000] Config: /user/username/projects/myproject/tsconfig.json : { +Info 7 [00:00:34.000] Config: /user/username/projects/myproject/tsconfig.json : { "rootNames": [ "/user/username/projects/myproject/src/bar.ts", "/user/username/projects/myproject/src/foo.ts" @@ -55,17 +55,17 @@ Info 7 [16:00:34.000] Config: /user/username/projects/myproject/tsconfig.json "configFilePath": "/user/username/projects/myproject/tsconfig.json" } } -Info 8 [16:00:35.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/src 1 undefined Config: /user/username/projects/myproject/tsconfig.json WatchType: Wild card directory -Info 9 [16:00:36.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/src 1 undefined Config: /user/username/projects/myproject/tsconfig.json WatchType: Wild card directory -Info 10 [16:00:37.000] Plugins were requested but not running in environment that supports 'require'. Nothing will be loaded -Info 11 [16:00:38.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/src/bar.ts 500 undefined WatchType: Closed Script info -Info 12 [16:00:39.000] Starting updateGraphWorker: Project: /user/username/projects/myproject/tsconfig.json -Info 13 [16:00:40.000] FileWatcher:: Added:: WatchInfo: /a/lib/lib.d.ts 500 undefined WatchType: Closed Script info -Info 14 [16:00:41.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/tsconfig.json WatchType: Type roots -Info 15 [16:00:42.000] 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 16 [16:00:43.000] Finishing updateGraphWorker: Project: /user/username/projects/myproject/tsconfig.json Version: 1 structureChanged: true structureIsReused:: Not Elapsed:: *ms -Info 17 [16:00:44.000] Project '/user/username/projects/myproject/tsconfig.json' (Configured) -Info 18 [16:00:45.000] Files (3) +Info 8 [00:00:35.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/src 1 undefined Config: /user/username/projects/myproject/tsconfig.json WatchType: Wild card directory +Info 9 [00:00:36.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/src 1 undefined Config: /user/username/projects/myproject/tsconfig.json WatchType: Wild card directory +Info 10 [00:00:37.000] Plugins were requested but not running in environment that supports 'require'. Nothing will be loaded +Info 11 [00:00:38.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/src/bar.ts 500 undefined WatchType: Closed Script info +Info 12 [00:00:39.000] Starting updateGraphWorker: Project: /user/username/projects/myproject/tsconfig.json +Info 13 [00:00:40.000] FileWatcher:: Added:: WatchInfo: /a/lib/lib.d.ts 500 undefined WatchType: Closed Script info +Info 14 [00:00:41.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/tsconfig.json WatchType: Type roots +Info 15 [00:00:42.000] 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 16 [00:00:43.000] Finishing updateGraphWorker: Project: /user/username/projects/myproject/tsconfig.json Version: 1 structureChanged: true structureIsReused:: Not Elapsed:: *ms +Info 17 [00:00:44.000] Project '/user/username/projects/myproject/tsconfig.json' (Configured) +Info 18 [00:00:45.000] Files (3) /a/lib/lib.d.ts /user/username/projects/myproject/src/bar.ts /user/username/projects/myproject/src/foo.ts @@ -78,20 +78,20 @@ Info 18 [16:00:45.000] Files (3) src/foo.ts Matched by include pattern './src' in 'tsconfig.json' -Info 19 [16:00:46.000] ----------------------------------------------- -Info 20 [16:00:47.000] event: +Info 19 [00:00:46.000] ----------------------------------------------- +Info 20 [00:00:47.000] event: {"seq":0,"type":"event","event":"projectLoadingFinish","body":{"projectName":"/user/username/projects/myproject/tsconfig.json"}} -Info 21 [16:00:48.000] event: +Info 21 [00:00:48.000] event: {"seq":0,"type":"event","event":"telemetry","body":{"telemetryEventName":"projectInfo","payload":{"projectId":"4a33d78ee40d836c4f4e64c59aed976628aea0013be9585c5ff171dfc41baf98","fileStats":{"js":0,"jsSize":0,"jsx":0,"jsxSize":0,"ts":2,"tsSize":50,"tsx":0,"tsxSize":0,"dts":1,"dtsSize":334,"deferred":0,"deferredSize":0},"compilerOptions":{},"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 22 [16:00:49.000] event: +Info 22 [00:00:49.000] event: {"seq":0,"type":"event","event":"configFileDiag","body":{"triggerFile":"/user/username/projects/myproject/src/foo.ts","configFile":"/user/username/projects/myproject/tsconfig.json","diagnostics":[]}} -Info 23 [16:00:50.000] Project '/user/username/projects/myproject/tsconfig.json' (Configured) -Info 23 [16:00:51.000] Files (3) +Info 23 [00:00:50.000] Project '/user/username/projects/myproject/tsconfig.json' (Configured) +Info 23 [00:00:51.000] Files (3) -Info 23 [16:00:52.000] ----------------------------------------------- -Info 23 [16:00:53.000] Open files: -Info 23 [16:00:54.000] FileName: /user/username/projects/myproject/src/foo.ts ProjectRootPath: /user/username/projects/myproject -Info 23 [16:00:55.000] Projects: /user/username/projects/myproject/tsconfig.json +Info 23 [00:00:52.000] ----------------------------------------------- +Info 23 [00:00:53.000] Open files: +Info 23 [00:00:54.000] FileName: /user/username/projects/myproject/src/foo.ts ProjectRootPath: /user/username/projects/myproject +Info 23 [00:00:55.000] Projects: /user/username/projects/myproject/tsconfig.json After request PolledWatches:: @@ -110,14 +110,14 @@ FsWatchesRecursive:: /user/username/projects/myproject/src: {} -Info 23 [16:00:56.000] response: +Info 23 [00:00:56.000] response: { "responseRequired": false } -Info 24 [16:00:59.000] DirectoryWatcher:: Triggered with /user/username/projects/myproject/src/sub/fooBar.ts :: WatchInfo: /user/username/projects/myproject/src 1 undefined Config: /user/username/projects/myproject/tsconfig.json WatchType: Wild card directory -Info 25 [16:01:00.000] Project: /user/username/projects/myproject/tsconfig.json Detected excluded file: /user/username/projects/myproject/src/sub/fooBar.ts -Info 26 [16:01:01.000] Elapsed:: *ms DirectoryWatcher:: Triggered with /user/username/projects/myproject/src/sub/fooBar.ts :: WatchInfo: /user/username/projects/myproject/src 1 undefined Config: /user/username/projects/myproject/tsconfig.json WatchType: Wild card directory -Info 27 [16:01:02.000] request: +Info 24 [00:00:59.000] DirectoryWatcher:: Triggered with /user/username/projects/myproject/src/sub/fooBar.ts :: WatchInfo: /user/username/projects/myproject/src 1 undefined Config: /user/username/projects/myproject/tsconfig.json WatchType: Wild card directory +Info 25 [00:01:00.000] Project: /user/username/projects/myproject/tsconfig.json Detected excluded file: /user/username/projects/myproject/src/sub/fooBar.ts +Info 26 [00:01:01.000] Elapsed:: *ms DirectoryWatcher:: Triggered with /user/username/projects/myproject/src/sub/fooBar.ts :: WatchInfo: /user/username/projects/myproject/src 1 undefined Config: /user/username/projects/myproject/tsconfig.json WatchType: Wild card directory +Info 27 [00:01:02.000] request: { "command": "open", "arguments": { @@ -149,26 +149,26 @@ FsWatchesRecursive:: /user/username/projects/myproject/src: {} -Info 28 [16:01:03.000] Search path: /user/username/projects/myproject/src/sub -Info 29 [16:01:04.000] For info: /user/username/projects/myproject/src/sub/fooBar.ts :: Config file name: /user/username/projects/myproject/tsconfig.json -Info 30 [16:01:05.000] event: +Info 28 [00:01:03.000] Search path: /user/username/projects/myproject/src/sub +Info 29 [00:01:04.000] For info: /user/username/projects/myproject/src/sub/fooBar.ts :: Config file name: /user/username/projects/myproject/tsconfig.json +Info 30 [00:01:05.000] event: {"seq":0,"type":"event","event":"configFileDiag","body":{"triggerFile":"/user/username/projects/myproject/src/sub/fooBar.ts","configFile":"/user/username/projects/myproject/tsconfig.json","diagnostics":[]}} -Info 31 [16:01:06.000] Plugins were requested but not running in environment that supports 'require'. Nothing will be loaded -Info 32 [16:01:07.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/src/sub/tsconfig.json 2000 undefined WatchType: Config file for the inferred project root -Info 33 [16:01:08.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/src/sub/jsconfig.json 2000 undefined WatchType: Config file for the inferred project root -Info 34 [16:01:09.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/src/tsconfig.json 2000 undefined WatchType: Config file for the inferred project root -Info 35 [16:01:10.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/src/jsconfig.json 2000 undefined WatchType: Config file for the inferred project root -Info 36 [16:01:11.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/jsconfig.json 2000 undefined WatchType: Config file for the inferred project root -Info 37 [16:01:12.000] Starting updateGraphWorker: Project: /dev/null/inferredProject1* -Info 38 [16:01:13.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/src/sub/node_modules/@types 1 undefined Project: /dev/null/inferredProject1* WatchType: Type roots -Info 39 [16:01:14.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/src/sub/node_modules/@types 1 undefined Project: /dev/null/inferredProject1* WatchType: Type roots -Info 40 [16:01:15.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/src/node_modules/@types 1 undefined Project: /dev/null/inferredProject1* WatchType: Type roots -Info 41 [16:01:16.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/src/node_modules/@types 1 undefined Project: /dev/null/inferredProject1* WatchType: Type roots -Info 42 [16:01:17.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /dev/null/inferredProject1* WatchType: Type roots -Info 43 [16:01:18.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /dev/null/inferredProject1* WatchType: Type roots -Info 44 [16:01:19.000] Finishing updateGraphWorker: Project: /dev/null/inferredProject1* Version: 1 structureChanged: true structureIsReused:: Not Elapsed:: *ms -Info 45 [16:01:20.000] Project '/dev/null/inferredProject1*' (Inferred) -Info 46 [16:01:21.000] Files (2) +Info 31 [00:01:06.000] Plugins were requested but not running in environment that supports 'require'. Nothing will be loaded +Info 32 [00:01:07.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/src/sub/tsconfig.json 2000 undefined WatchType: Config file for the inferred project root +Info 33 [00:01:08.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/src/sub/jsconfig.json 2000 undefined WatchType: Config file for the inferred project root +Info 34 [00:01:09.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/src/tsconfig.json 2000 undefined WatchType: Config file for the inferred project root +Info 35 [00:01:10.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/src/jsconfig.json 2000 undefined WatchType: Config file for the inferred project root +Info 36 [00:01:11.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/jsconfig.json 2000 undefined WatchType: Config file for the inferred project root +Info 37 [00:01:12.000] Starting updateGraphWorker: Project: /dev/null/inferredProject1* +Info 38 [00:01:13.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/src/sub/node_modules/@types 1 undefined Project: /dev/null/inferredProject1* WatchType: Type roots +Info 39 [00:01:14.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/src/sub/node_modules/@types 1 undefined Project: /dev/null/inferredProject1* WatchType: Type roots +Info 40 [00:01:15.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/src/node_modules/@types 1 undefined Project: /dev/null/inferredProject1* WatchType: Type roots +Info 41 [00:01:16.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/src/node_modules/@types 1 undefined Project: /dev/null/inferredProject1* WatchType: Type roots +Info 42 [00:01:17.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /dev/null/inferredProject1* WatchType: Type roots +Info 43 [00:01:18.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /dev/null/inferredProject1* WatchType: Type roots +Info 44 [00:01:19.000] Finishing updateGraphWorker: Project: /dev/null/inferredProject1* Version: 1 structureChanged: true structureIsReused:: Not Elapsed:: *ms +Info 45 [00:01:20.000] Project '/dev/null/inferredProject1*' (Inferred) +Info 46 [00:01:21.000] Files (2) /a/lib/lib.d.ts /user/username/projects/myproject/src/sub/fooBar.ts @@ -178,20 +178,20 @@ Info 46 [16:01:21.000] Files (2) fooBar.ts Root file specified for compilation -Info 47 [16:01:22.000] ----------------------------------------------- -Info 48 [16:01:23.000] Project '/user/username/projects/myproject/tsconfig.json' (Configured) -Info 48 [16:01:24.000] Files (3) +Info 47 [00:01:22.000] ----------------------------------------------- +Info 48 [00:01:23.000] Project '/user/username/projects/myproject/tsconfig.json' (Configured) +Info 48 [00:01:24.000] Files (3) -Info 48 [16:01:25.000] ----------------------------------------------- -Info 48 [16:01:26.000] Project '/dev/null/inferredProject1*' (Inferred) -Info 48 [16:01:27.000] Files (2) +Info 48 [00:01:25.000] ----------------------------------------------- +Info 48 [00:01:26.000] Project '/dev/null/inferredProject1*' (Inferred) +Info 48 [00:01:27.000] Files (2) -Info 48 [16:01:28.000] ----------------------------------------------- -Info 48 [16:01:29.000] Open files: -Info 48 [16:01:30.000] FileName: /user/username/projects/myproject/src/foo.ts ProjectRootPath: /user/username/projects/myproject -Info 48 [16:01:31.000] Projects: /user/username/projects/myproject/tsconfig.json -Info 48 [16:01:32.000] FileName: /user/username/projects/myproject/src/sub/fooBar.ts ProjectRootPath: /user/username/projects/myproject -Info 48 [16:01:33.000] Projects: /dev/null/inferredProject1* +Info 48 [00:01:28.000] ----------------------------------------------- +Info 48 [00:01:29.000] Open files: +Info 48 [00:01:30.000] FileName: /user/username/projects/myproject/src/foo.ts ProjectRootPath: /user/username/projects/myproject +Info 48 [00:01:31.000] Projects: /user/username/projects/myproject/tsconfig.json +Info 48 [00:01:32.000] FileName: /user/username/projects/myproject/src/sub/fooBar.ts ProjectRootPath: /user/username/projects/myproject +Info 48 [00:01:33.000] Projects: /dev/null/inferredProject1* After request PolledWatches:: @@ -224,11 +224,11 @@ FsWatchesRecursive:: /user/username/projects/myproject/src: {} -Info 48 [16:01:34.000] response: +Info 48 [00:01:34.000] response: { "responseRequired": false } -Info 49 [16:01:35.000] request: +Info 49 [00:01:35.000] request: { "command": "geterr", "arguments": { @@ -305,7 +305,7 @@ FsWatchesRecursive:: /user/username/projects/myproject/src: {} -Info 50 [16:01:36.000] response: +Info 50 [00:01:36.000] response: { "responseRequired": false } @@ -373,7 +373,7 @@ FsWatchesRecursive:: /user/username/projects/myproject/src: {} -Info 51 [16:01:37.000] event: +Info 51 [00:01:37.000] event: {"seq":0,"type":"event","event":"syntaxDiag","body":{"file":"/user/username/projects/myproject/src/foo.ts","diagnostics":[]}} After running timeout callback1 @@ -439,7 +439,7 @@ FsWatchesRecursive:: /user/username/projects/myproject/src: {} -Info 52 [16:01:38.000] event: +Info 52 [00:01:38.000] event: {"seq":0,"type":"event","event":"semanticDiag","body":{"file":"/user/username/projects/myproject/src/foo.ts","diagnostics":[]}} Before running immediate callbacks and checking length (1) @@ -505,7 +505,7 @@ FsWatchesRecursive:: /user/username/projects/myproject/src: {} -Info 53 [16:01:39.000] event: +Info 53 [00:01:39.000] event: {"seq":0,"type":"event","event":"suggestionDiag","body":{"file":"/user/username/projects/myproject/src/foo.ts","diagnostics":[]}} Before running immediate callbacks and checking length (1) @@ -603,7 +603,7 @@ FsWatchesRecursive:: /user/username/projects/myproject/src: {} -Info 54 [16:01:40.000] event: +Info 54 [00:01:40.000] event: {"seq":0,"type":"event","event":"syntaxDiag","body":{"file":"/user/username/projects/myproject/src/sub/fooBar.ts","diagnostics":[]}} After running timeout callback2 @@ -669,7 +669,7 @@ FsWatchesRecursive:: /user/username/projects/myproject/src: {} -Info 55 [16:01:41.000] event: +Info 55 [00:01:41.000] event: {"seq":0,"type":"event","event":"semanticDiag","body":{"file":"/user/username/projects/myproject/src/sub/fooBar.ts","diagnostics":[]}} Before running immediate callbacks and checking length (1) @@ -735,9 +735,9 @@ FsWatchesRecursive:: /user/username/projects/myproject/src: {} -Info 56 [16:01:42.000] event: +Info 56 [00:01:42.000] event: {"seq":0,"type":"event","event":"suggestionDiag","body":{"file":"/user/username/projects/myproject/src/sub/fooBar.ts","diagnostics":[]}} -Info 57 [16:01:43.000] event: +Info 57 [00:01:43.000] event: {"seq":0,"type":"event","event":"requestCompleted","body":{"request_seq":3}} Before running immediate callbacks and checking length (1) 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.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.js index f607fe109263c..92ac1a111e9be 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.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.js @@ -1,5 +1,5 @@ -Info 0 [16:00:27.000] Provided types map file "/a/lib/typesMap.json" doesn't exist -Info 1 [16:00:28.000] request: +Info 0 [00:00:27.000] Provided types map file "/a/lib/typesMap.json" doesn't exist +Info 1 [00:00:28.000] request: { "command": "open", "arguments": { @@ -40,13 +40,13 @@ FsWatches:: FsWatchesRecursive:: -Info 2 [16:00:29.000] Search path: /user/username/projects/myproject/src -Info 3 [16:00:30.000] For info: /user/username/projects/myproject/src/foo.ts :: Config file name: /user/username/projects/myproject/tsconfig.json -Info 4 [16:00:31.000] Creating configuration project /user/username/projects/myproject/tsconfig.json -Info 5 [16:00:32.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/tsconfig.json 2000 undefined Project: /user/username/projects/myproject/tsconfig.json WatchType: Config file -Info 6 [16:00:33.000] event: +Info 2 [00:00:29.000] Search path: /user/username/projects/myproject/src +Info 3 [00:00:30.000] For info: /user/username/projects/myproject/src/foo.ts :: Config file name: /user/username/projects/myproject/tsconfig.json +Info 4 [00:00:31.000] Creating configuration project /user/username/projects/myproject/tsconfig.json +Info 5 [00:00:32.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/tsconfig.json 2000 undefined Project: /user/username/projects/myproject/tsconfig.json WatchType: Config file +Info 6 [00:00:33.000] event: {"seq":0,"type":"event","event":"projectLoadingStart","body":{"projectName":"/user/username/projects/myproject/tsconfig.json","reason":"Creating possible configured project for /user/username/projects/myproject/src/foo.ts to open"}} -Info 7 [16:00:34.000] Config: /user/username/projects/myproject/tsconfig.json : { +Info 7 [00:00:34.000] Config: /user/username/projects/myproject/tsconfig.json : { "rootNames": [ "/user/username/projects/myproject/src/bar.ts", "/user/username/projects/myproject/src/foo.ts" @@ -55,17 +55,17 @@ Info 7 [16:00:34.000] Config: /user/username/projects/myproject/tsconfig.json "configFilePath": "/user/username/projects/myproject/tsconfig.json" } } -Info 8 [16:00:35.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/src 1 undefined Config: /user/username/projects/myproject/tsconfig.json WatchType: Wild card directory -Info 9 [16:00:36.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/src 1 undefined Config: /user/username/projects/myproject/tsconfig.json WatchType: Wild card directory -Info 10 [16:00:37.000] Plugins were requested but not running in environment that supports 'require'. Nothing will be loaded -Info 11 [16:00:38.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/src/bar.ts 500 undefined WatchType: Closed Script info -Info 12 [16:00:39.000] Starting updateGraphWorker: Project: /user/username/projects/myproject/tsconfig.json -Info 13 [16:00:40.000] FileWatcher:: Added:: WatchInfo: /a/lib/lib.d.ts 500 undefined WatchType: Closed Script info -Info 14 [16:00:41.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/tsconfig.json WatchType: Type roots -Info 15 [16:00:42.000] 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 16 [16:00:43.000] Finishing updateGraphWorker: Project: /user/username/projects/myproject/tsconfig.json Version: 1 structureChanged: true structureIsReused:: Not Elapsed:: *ms -Info 17 [16:00:44.000] Project '/user/username/projects/myproject/tsconfig.json' (Configured) -Info 18 [16:00:45.000] Files (3) +Info 8 [00:00:35.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/src 1 undefined Config: /user/username/projects/myproject/tsconfig.json WatchType: Wild card directory +Info 9 [00:00:36.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/src 1 undefined Config: /user/username/projects/myproject/tsconfig.json WatchType: Wild card directory +Info 10 [00:00:37.000] Plugins were requested but not running in environment that supports 'require'. Nothing will be loaded +Info 11 [00:00:38.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/src/bar.ts 500 undefined WatchType: Closed Script info +Info 12 [00:00:39.000] Starting updateGraphWorker: Project: /user/username/projects/myproject/tsconfig.json +Info 13 [00:00:40.000] FileWatcher:: Added:: WatchInfo: /a/lib/lib.d.ts 500 undefined WatchType: Closed Script info +Info 14 [00:00:41.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/tsconfig.json WatchType: Type roots +Info 15 [00:00:42.000] 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 16 [00:00:43.000] Finishing updateGraphWorker: Project: /user/username/projects/myproject/tsconfig.json Version: 1 structureChanged: true structureIsReused:: Not Elapsed:: *ms +Info 17 [00:00:44.000] Project '/user/username/projects/myproject/tsconfig.json' (Configured) +Info 18 [00:00:45.000] Files (3) /a/lib/lib.d.ts /user/username/projects/myproject/src/bar.ts /user/username/projects/myproject/src/foo.ts @@ -78,20 +78,20 @@ Info 18 [16:00:45.000] Files (3) src/foo.ts Matched by include pattern './src' in 'tsconfig.json' -Info 19 [16:00:46.000] ----------------------------------------------- -Info 20 [16:00:47.000] event: +Info 19 [00:00:46.000] ----------------------------------------------- +Info 20 [00:00:47.000] event: {"seq":0,"type":"event","event":"projectLoadingFinish","body":{"projectName":"/user/username/projects/myproject/tsconfig.json"}} -Info 21 [16:00:48.000] event: +Info 21 [00:00:48.000] event: {"seq":0,"type":"event","event":"telemetry","body":{"telemetryEventName":"projectInfo","payload":{"projectId":"4a33d78ee40d836c4f4e64c59aed976628aea0013be9585c5ff171dfc41baf98","fileStats":{"js":0,"jsSize":0,"jsx":0,"jsxSize":0,"ts":2,"tsSize":50,"tsx":0,"tsxSize":0,"dts":1,"dtsSize":334,"deferred":0,"deferredSize":0},"compilerOptions":{},"typeAcquisition":{"enable":false,"include":false,"exclude":false},"extends":false,"files":false,"include":true,"exclude":false,"compileOnSave":false,"configFileName":"tsconfig.json","projectType":"configured","languageServiceEnabled":true,"version":"FakeVersion"}}} -Info 22 [16:00:49.000] event: +Info 22 [00:00:49.000] event: {"seq":0,"type":"event","event":"configFileDiag","body":{"triggerFile":"/user/username/projects/myproject/src/foo.ts","configFile":"/user/username/projects/myproject/tsconfig.json","diagnostics":[]}} -Info 23 [16:00:50.000] Project '/user/username/projects/myproject/tsconfig.json' (Configured) -Info 23 [16:00:51.000] Files (3) +Info 23 [00:00:50.000] Project '/user/username/projects/myproject/tsconfig.json' (Configured) +Info 23 [00:00:51.000] Files (3) -Info 23 [16:00:52.000] ----------------------------------------------- -Info 23 [16:00:53.000] Open files: -Info 23 [16:00:54.000] FileName: /user/username/projects/myproject/src/foo.ts ProjectRootPath: /user/username/projects/myproject -Info 23 [16:00:55.000] Projects: /user/username/projects/myproject/tsconfig.json +Info 23 [00:00:52.000] ----------------------------------------------- +Info 23 [00:00:53.000] Open files: +Info 23 [00:00:54.000] FileName: /user/username/projects/myproject/src/foo.ts ProjectRootPath: /user/username/projects/myproject +Info 23 [00:00:55.000] Projects: /user/username/projects/myproject/tsconfig.json After request PolledWatches:: @@ -110,15 +110,15 @@ FsWatchesRecursive:: /user/username/projects/myproject/src: {} -Info 23 [16:00:56.000] response: +Info 23 [00:00:56.000] response: { "responseRequired": false } -Info 24 [16:00:59.000] DirectoryWatcher:: Triggered with /user/username/projects/myproject/src/sub/fooBar.ts :: WatchInfo: /user/username/projects/myproject/src 1 undefined Config: /user/username/projects/myproject/tsconfig.json WatchType: Wild card directory -Info 25 [16:01:00.000] Scheduled: /user/username/projects/myproject/tsconfig.json -Info 26 [16:01:01.000] Scheduled: *ensureProjectForOpenFiles* -Info 27 [16:01:02.000] Elapsed:: *ms DirectoryWatcher:: Triggered with /user/username/projects/myproject/src/sub/fooBar.ts :: WatchInfo: /user/username/projects/myproject/src 1 undefined Config: /user/username/projects/myproject/tsconfig.json WatchType: Wild card directory -Info 28 [16:01:03.000] request: +Info 24 [00:00:59.000] DirectoryWatcher:: Triggered with /user/username/projects/myproject/src/sub/fooBar.ts :: WatchInfo: /user/username/projects/myproject/src 1 undefined Config: /user/username/projects/myproject/tsconfig.json WatchType: Wild card directory +Info 25 [00:01:00.000] Scheduled: /user/username/projects/myproject/tsconfig.json +Info 26 [00:01:01.000] Scheduled: *ensureProjectForOpenFiles* +Info 27 [00:01:02.000] Elapsed:: *ms DirectoryWatcher:: Triggered with /user/username/projects/myproject/src/sub/fooBar.ts :: WatchInfo: /user/username/projects/myproject/src 1 undefined Config: /user/username/projects/myproject/tsconfig.json WatchType: Wild card directory +Info 28 [00:01:03.000] request: { "command": "open", "arguments": { @@ -150,12 +150,12 @@ FsWatchesRecursive:: /user/username/projects/myproject/src: {} -Info 29 [16:01:04.000] Search path: /user/username/projects/myproject/src/sub -Info 30 [16:01:05.000] For info: /user/username/projects/myproject/src/sub/fooBar.ts :: Config file name: /user/username/projects/myproject/tsconfig.json -Info 31 [16:01:06.000] Starting updateGraphWorker: Project: /user/username/projects/myproject/tsconfig.json -Info 32 [16:01:07.000] Finishing updateGraphWorker: Project: /user/username/projects/myproject/tsconfig.json Version: 2 structureChanged: true structureIsReused:: Not Elapsed:: *ms -Info 33 [16:01:08.000] Project '/user/username/projects/myproject/tsconfig.json' (Configured) -Info 34 [16:01:09.000] Files (4) +Info 29 [00:01:04.000] Search path: /user/username/projects/myproject/src/sub +Info 30 [00:01:05.000] For info: /user/username/projects/myproject/src/sub/fooBar.ts :: Config file name: /user/username/projects/myproject/tsconfig.json +Info 31 [00:01:06.000] Starting updateGraphWorker: Project: /user/username/projects/myproject/tsconfig.json +Info 32 [00:01:07.000] Finishing updateGraphWorker: Project: /user/username/projects/myproject/tsconfig.json Version: 2 structureChanged: true structureIsReused:: Not Elapsed:: *ms +Info 33 [00:01:08.000] Project '/user/username/projects/myproject/tsconfig.json' (Configured) +Info 34 [00:01:09.000] Files (4) /a/lib/lib.d.ts /user/username/projects/myproject/src/bar.ts /user/username/projects/myproject/src/foo.ts @@ -171,16 +171,16 @@ Info 34 [16:01:09.000] Files (4) src/sub/fooBar.ts Matched by include pattern './src' in 'tsconfig.json' -Info 35 [16:01:10.000] ----------------------------------------------- -Info 36 [16:01:11.000] Project '/user/username/projects/myproject/tsconfig.json' (Configured) -Info 36 [16:01:12.000] Files (4) +Info 35 [00:01:10.000] ----------------------------------------------- +Info 36 [00:01:11.000] Project '/user/username/projects/myproject/tsconfig.json' (Configured) +Info 36 [00:01:12.000] Files (4) -Info 36 [16:01:13.000] ----------------------------------------------- -Info 36 [16:01:14.000] Open files: -Info 36 [16:01:15.000] FileName: /user/username/projects/myproject/src/foo.ts ProjectRootPath: /user/username/projects/myproject -Info 36 [16:01:16.000] Projects: /user/username/projects/myproject/tsconfig.json -Info 36 [16:01:17.000] FileName: /user/username/projects/myproject/src/sub/fooBar.ts ProjectRootPath: /user/username/projects/myproject -Info 36 [16:01:18.000] Projects: /user/username/projects/myproject/tsconfig.json +Info 36 [00:01:13.000] ----------------------------------------------- +Info 36 [00:01:14.000] Open files: +Info 36 [00:01:15.000] FileName: /user/username/projects/myproject/src/foo.ts ProjectRootPath: /user/username/projects/myproject +Info 36 [00:01:16.000] Projects: /user/username/projects/myproject/tsconfig.json +Info 36 [00:01:17.000] FileName: /user/username/projects/myproject/src/sub/fooBar.ts ProjectRootPath: /user/username/projects/myproject +Info 36 [00:01:18.000] Projects: /user/username/projects/myproject/tsconfig.json After request PolledWatches:: @@ -199,11 +199,11 @@ FsWatchesRecursive:: /user/username/projects/myproject/src: {} -Info 36 [16:01:19.000] response: +Info 36 [00:01:19.000] response: { "responseRequired": false } -Info 37 [16:01:20.000] request: +Info 37 [00:01:20.000] request: { "command": "geterr", "arguments": { @@ -252,7 +252,7 @@ FsWatchesRecursive:: /user/username/projects/myproject/src: {} -Info 38 [16:01:21.000] response: +Info 38 [00:01:21.000] response: { "responseRequired": false } @@ -292,7 +292,7 @@ FsWatchesRecursive:: /user/username/projects/myproject/src: {} -Info 39 [16:01:22.000] event: +Info 39 [00:01:22.000] event: {"seq":0,"type":"event","event":"syntaxDiag","body":{"file":"/user/username/projects/myproject/src/foo.ts","diagnostics":[]}} After running timeout callback3 @@ -330,7 +330,7 @@ FsWatchesRecursive:: /user/username/projects/myproject/src: {} -Info 40 [16:01:23.000] event: +Info 40 [00:01:23.000] event: {"seq":0,"type":"event","event":"semanticDiag","body":{"file":"/user/username/projects/myproject/src/foo.ts","diagnostics":[]}} Before running immediate callbacks and checking length (1) @@ -368,7 +368,7 @@ FsWatchesRecursive:: /user/username/projects/myproject/src: {} -Info 41 [16:01:24.000] event: +Info 41 [00:01:24.000] event: {"seq":0,"type":"event","event":"suggestionDiag","body":{"file":"/user/username/projects/myproject/src/foo.ts","diagnostics":[]}} Before running immediate callbacks and checking length (1) @@ -424,7 +424,7 @@ FsWatchesRecursive:: /user/username/projects/myproject/src: {} -Info 42 [16:01:25.000] event: +Info 42 [00:01:25.000] event: {"seq":0,"type":"event","event":"syntaxDiag","body":{"file":"/user/username/projects/myproject/src/sub/fooBar.ts","diagnostics":[]}} After running timeout callback4 @@ -462,7 +462,7 @@ FsWatchesRecursive:: /user/username/projects/myproject/src: {} -Info 43 [16:01:26.000] event: +Info 43 [00:01:26.000] event: {"seq":0,"type":"event","event":"semanticDiag","body":{"file":"/user/username/projects/myproject/src/sub/fooBar.ts","diagnostics":[]}} Before running immediate callbacks and checking length (1) @@ -500,9 +500,9 @@ FsWatchesRecursive:: /user/username/projects/myproject/src: {} -Info 44 [16:01:27.000] event: +Info 44 [00:01:27.000] event: {"seq":0,"type":"event","event":"suggestionDiag","body":{"file":"/user/username/projects/myproject/src/sub/fooBar.ts","diagnostics":[]}} -Info 45 [16:01:28.000] event: +Info 45 [00:01:28.000] event: {"seq":0,"type":"event","event":"requestCompleted","body":{"request_seq":3}} Before running immediate callbacks and checking length (1) 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 145d8af914b5e..07431ef9e23e2 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 @@ -1,5 +1,5 @@ -Info 0 [16:00:27.000] Provided types map file "/a/lib/typesMap.json" doesn't exist -Info 1 [16:00:28.000] request: +Info 0 [00:00:27.000] Provided types map file "/a/lib/typesMap.json" doesn't exist +Info 1 [00:00:28.000] request: { "command": "open", "arguments": { @@ -40,13 +40,13 @@ FsWatches:: FsWatchesRecursive:: -Info 2 [16:00:29.000] Search path: /user/username/projects/myproject/src -Info 3 [16:00:30.000] For info: /user/username/projects/myproject/src/foo.ts :: Config file name: /user/username/projects/myproject/tsconfig.json -Info 4 [16:00:31.000] Creating configuration project /user/username/projects/myproject/tsconfig.json -Info 5 [16:00:32.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/tsconfig.json 2000 undefined Project: /user/username/projects/myproject/tsconfig.json WatchType: Config file -Info 6 [16:00:33.000] event: +Info 2 [00:00:29.000] Search path: /user/username/projects/myproject/src +Info 3 [00:00:30.000] For info: /user/username/projects/myproject/src/foo.ts :: Config file name: /user/username/projects/myproject/tsconfig.json +Info 4 [00:00:31.000] Creating configuration project /user/username/projects/myproject/tsconfig.json +Info 5 [00:00:32.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/tsconfig.json 2000 undefined Project: /user/username/projects/myproject/tsconfig.json WatchType: Config file +Info 6 [00:00:33.000] event: {"seq":0,"type":"event","event":"projectLoadingStart","body":{"projectName":"/user/username/projects/myproject/tsconfig.json","reason":"Creating possible configured project for /user/username/projects/myproject/src/foo.ts to open"}} -Info 7 [16:00:34.000] Config: /user/username/projects/myproject/tsconfig.json : { +Info 7 [00:00:34.000] Config: /user/username/projects/myproject/tsconfig.json : { "rootNames": [ "/user/username/projects/myproject/src/bar.ts", "/user/username/projects/myproject/src/foo.ts" @@ -55,17 +55,17 @@ Info 7 [16:00:34.000] Config: /user/username/projects/myproject/tsconfig.json "configFilePath": "/user/username/projects/myproject/tsconfig.json" } } -Info 8 [16:00:35.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/src 1 undefined Config: /user/username/projects/myproject/tsconfig.json WatchType: Wild card directory -Info 9 [16:00:36.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/src 1 undefined Config: /user/username/projects/myproject/tsconfig.json WatchType: Wild card directory -Info 10 [16:00:37.000] Plugins were requested but not running in environment that supports 'require'. Nothing will be loaded -Info 11 [16:00:38.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/src/bar.ts 500 undefined WatchType: Closed Script info -Info 12 [16:00:39.000] Starting updateGraphWorker: Project: /user/username/projects/myproject/tsconfig.json -Info 13 [16:00:40.000] FileWatcher:: Added:: WatchInfo: /a/lib/lib.d.ts 500 undefined WatchType: Closed Script info -Info 14 [16:00:41.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/tsconfig.json WatchType: Type roots -Info 15 [16:00:42.000] 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 16 [16:00:43.000] Finishing updateGraphWorker: Project: /user/username/projects/myproject/tsconfig.json Version: 1 structureChanged: true structureIsReused:: Not Elapsed:: *ms -Info 17 [16:00:44.000] Project '/user/username/projects/myproject/tsconfig.json' (Configured) -Info 18 [16:00:45.000] Files (3) +Info 8 [00:00:35.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/src 1 undefined Config: /user/username/projects/myproject/tsconfig.json WatchType: Wild card directory +Info 9 [00:00:36.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/src 1 undefined Config: /user/username/projects/myproject/tsconfig.json WatchType: Wild card directory +Info 10 [00:00:37.000] Plugins were requested but not running in environment that supports 'require'. Nothing will be loaded +Info 11 [00:00:38.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/src/bar.ts 500 undefined WatchType: Closed Script info +Info 12 [00:00:39.000] Starting updateGraphWorker: Project: /user/username/projects/myproject/tsconfig.json +Info 13 [00:00:40.000] FileWatcher:: Added:: WatchInfo: /a/lib/lib.d.ts 500 undefined WatchType: Closed Script info +Info 14 [00:00:41.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/tsconfig.json WatchType: Type roots +Info 15 [00:00:42.000] 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 16 [00:00:43.000] Finishing updateGraphWorker: Project: /user/username/projects/myproject/tsconfig.json Version: 1 structureChanged: true structureIsReused:: Not Elapsed:: *ms +Info 17 [00:00:44.000] Project '/user/username/projects/myproject/tsconfig.json' (Configured) +Info 18 [00:00:45.000] Files (3) /a/lib/lib.d.ts /user/username/projects/myproject/src/bar.ts /user/username/projects/myproject/src/foo.ts @@ -78,20 +78,20 @@ Info 18 [16:00:45.000] Files (3) src/foo.ts Matched by include pattern './src' in 'tsconfig.json' -Info 19 [16:00:46.000] ----------------------------------------------- -Info 20 [16:00:47.000] event: +Info 19 [00:00:46.000] ----------------------------------------------- +Info 20 [00:00:47.000] event: {"seq":0,"type":"event","event":"projectLoadingFinish","body":{"projectName":"/user/username/projects/myproject/tsconfig.json"}} -Info 21 [16:00:48.000] event: +Info 21 [00:00:48.000] event: {"seq":0,"type":"event","event":"telemetry","body":{"telemetryEventName":"projectInfo","payload":{"projectId":"4a33d78ee40d836c4f4e64c59aed976628aea0013be9585c5ff171dfc41baf98","fileStats":{"js":0,"jsSize":0,"jsx":0,"jsxSize":0,"ts":2,"tsSize":50,"tsx":0,"tsxSize":0,"dts":1,"dtsSize":334,"deferred":0,"deferredSize":0},"compilerOptions":{},"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 22 [16:00:49.000] event: +Info 22 [00:00:49.000] event: {"seq":0,"type":"event","event":"configFileDiag","body":{"triggerFile":"/user/username/projects/myproject/src/foo.ts","configFile":"/user/username/projects/myproject/tsconfig.json","diagnostics":[]}} -Info 23 [16:00:50.000] Project '/user/username/projects/myproject/tsconfig.json' (Configured) -Info 23 [16:00:51.000] Files (3) +Info 23 [00:00:50.000] Project '/user/username/projects/myproject/tsconfig.json' (Configured) +Info 23 [00:00:51.000] Files (3) -Info 23 [16:00:52.000] ----------------------------------------------- -Info 23 [16:00:53.000] Open files: -Info 23 [16:00:54.000] FileName: /user/username/projects/myproject/src/foo.ts ProjectRootPath: /user/username/projects/myproject -Info 23 [16:00:55.000] Projects: /user/username/projects/myproject/tsconfig.json +Info 23 [00:00:52.000] ----------------------------------------------- +Info 23 [00:00:53.000] Open files: +Info 23 [00:00:54.000] FileName: /user/username/projects/myproject/src/foo.ts ProjectRootPath: /user/username/projects/myproject +Info 23 [00:00:55.000] Projects: /user/username/projects/myproject/tsconfig.json After request PolledWatches:: @@ -110,14 +110,14 @@ FsWatchesRecursive:: /user/username/projects/myproject/src: {} -Info 23 [16:00:56.000] response: +Info 23 [00:00:56.000] response: { "responseRequired": false } -Info 24 [16:00:59.000] DirectoryWatcher:: Triggered with /user/username/projects/myproject/src/sub/fooBar.ts :: WatchInfo: /user/username/projects/myproject/src 1 undefined Config: /user/username/projects/myproject/tsconfig.json WatchType: Wild card directory -Info 25 [16:01:00.000] Project: /user/username/projects/myproject/tsconfig.json Detected excluded file: /user/username/projects/myproject/src/sub/fooBar.ts -Info 26 [16:01:01.000] Elapsed:: *ms DirectoryWatcher:: Triggered with /user/username/projects/myproject/src/sub/fooBar.ts :: WatchInfo: /user/username/projects/myproject/src 1 undefined Config: /user/username/projects/myproject/tsconfig.json WatchType: Wild card directory -Info 27 [16:01:02.000] request: +Info 24 [00:00:59.000] DirectoryWatcher:: Triggered with /user/username/projects/myproject/src/sub/fooBar.ts :: WatchInfo: /user/username/projects/myproject/src 1 undefined Config: /user/username/projects/myproject/tsconfig.json WatchType: Wild card directory +Info 25 [00:01:00.000] Project: /user/username/projects/myproject/tsconfig.json Detected excluded file: /user/username/projects/myproject/src/sub/fooBar.ts +Info 26 [00:01:01.000] Elapsed:: *ms DirectoryWatcher:: Triggered with /user/username/projects/myproject/src/sub/fooBar.ts :: WatchInfo: /user/username/projects/myproject/src 1 undefined Config: /user/username/projects/myproject/tsconfig.json WatchType: Wild card directory +Info 27 [00:01:02.000] request: { "command": "open", "arguments": { @@ -149,26 +149,26 @@ FsWatchesRecursive:: /user/username/projects/myproject/src: {} -Info 28 [16:01:03.000] Search path: /user/username/projects/myproject/src/sub -Info 29 [16:01:04.000] For info: /user/username/projects/myproject/src/sub/fooBar.ts :: Config file name: /user/username/projects/myproject/tsconfig.json -Info 30 [16:01:05.000] event: +Info 28 [00:01:03.000] Search path: /user/username/projects/myproject/src/sub +Info 29 [00:01:04.000] For info: /user/username/projects/myproject/src/sub/fooBar.ts :: Config file name: /user/username/projects/myproject/tsconfig.json +Info 30 [00:01:05.000] event: {"seq":0,"type":"event","event":"configFileDiag","body":{"triggerFile":"/user/username/projects/myproject/src/sub/fooBar.ts","configFile":"/user/username/projects/myproject/tsconfig.json","diagnostics":[]}} -Info 31 [16:01:06.000] Plugins were requested but not running in environment that supports 'require'. Nothing will be loaded -Info 32 [16:01:07.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/src/sub/tsconfig.json 2000 undefined WatchType: Config file for the inferred project root -Info 33 [16:01:08.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/src/sub/jsconfig.json 2000 undefined WatchType: Config file for the inferred project root -Info 34 [16:01:09.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/src/tsconfig.json 2000 undefined WatchType: Config file for the inferred project root -Info 35 [16:01:10.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/src/jsconfig.json 2000 undefined WatchType: Config file for the inferred project root -Info 36 [16:01:11.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/jsconfig.json 2000 undefined WatchType: Config file for the inferred project root -Info 37 [16:01:12.000] Starting updateGraphWorker: Project: /dev/null/inferredProject1* -Info 38 [16:01:13.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/src/sub/node_modules/@types 1 undefined Project: /dev/null/inferredProject1* WatchType: Type roots -Info 39 [16:01:14.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/src/sub/node_modules/@types 1 undefined Project: /dev/null/inferredProject1* WatchType: Type roots -Info 40 [16:01:15.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/src/node_modules/@types 1 undefined Project: /dev/null/inferredProject1* WatchType: Type roots -Info 41 [16:01:16.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/src/node_modules/@types 1 undefined Project: /dev/null/inferredProject1* WatchType: Type roots -Info 42 [16:01:17.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /dev/null/inferredProject1* WatchType: Type roots -Info 43 [16:01:18.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /dev/null/inferredProject1* WatchType: Type roots -Info 44 [16:01:19.000] Finishing updateGraphWorker: Project: /dev/null/inferredProject1* Version: 1 structureChanged: true structureIsReused:: Not Elapsed:: *ms -Info 45 [16:01:20.000] Project '/dev/null/inferredProject1*' (Inferred) -Info 46 [16:01:21.000] Files (2) +Info 31 [00:01:06.000] Plugins were requested but not running in environment that supports 'require'. Nothing will be loaded +Info 32 [00:01:07.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/src/sub/tsconfig.json 2000 undefined WatchType: Config file for the inferred project root +Info 33 [00:01:08.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/src/sub/jsconfig.json 2000 undefined WatchType: Config file for the inferred project root +Info 34 [00:01:09.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/src/tsconfig.json 2000 undefined WatchType: Config file for the inferred project root +Info 35 [00:01:10.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/src/jsconfig.json 2000 undefined WatchType: Config file for the inferred project root +Info 36 [00:01:11.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/jsconfig.json 2000 undefined WatchType: Config file for the inferred project root +Info 37 [00:01:12.000] Starting updateGraphWorker: Project: /dev/null/inferredProject1* +Info 38 [00:01:13.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/src/sub/node_modules/@types 1 undefined Project: /dev/null/inferredProject1* WatchType: Type roots +Info 39 [00:01:14.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/src/sub/node_modules/@types 1 undefined Project: /dev/null/inferredProject1* WatchType: Type roots +Info 40 [00:01:15.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/src/node_modules/@types 1 undefined Project: /dev/null/inferredProject1* WatchType: Type roots +Info 41 [00:01:16.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/src/node_modules/@types 1 undefined Project: /dev/null/inferredProject1* WatchType: Type roots +Info 42 [00:01:17.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /dev/null/inferredProject1* WatchType: Type roots +Info 43 [00:01:18.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /dev/null/inferredProject1* WatchType: Type roots +Info 44 [00:01:19.000] Finishing updateGraphWorker: Project: /dev/null/inferredProject1* Version: 1 structureChanged: true structureIsReused:: Not Elapsed:: *ms +Info 45 [00:01:20.000] Project '/dev/null/inferredProject1*' (Inferred) +Info 46 [00:01:21.000] Files (2) /a/lib/lib.d.ts /user/username/projects/myproject/src/sub/fooBar.ts @@ -178,20 +178,20 @@ Info 46 [16:01:21.000] Files (2) fooBar.ts Root file specified for compilation -Info 47 [16:01:22.000] ----------------------------------------------- -Info 48 [16:01:23.000] Project '/user/username/projects/myproject/tsconfig.json' (Configured) -Info 48 [16:01:24.000] Files (3) +Info 47 [00:01:22.000] ----------------------------------------------- +Info 48 [00:01:23.000] Project '/user/username/projects/myproject/tsconfig.json' (Configured) +Info 48 [00:01:24.000] Files (3) -Info 48 [16:01:25.000] ----------------------------------------------- -Info 48 [16:01:26.000] Project '/dev/null/inferredProject1*' (Inferred) -Info 48 [16:01:27.000] Files (2) +Info 48 [00:01:25.000] ----------------------------------------------- +Info 48 [00:01:26.000] Project '/dev/null/inferredProject1*' (Inferred) +Info 48 [00:01:27.000] Files (2) -Info 48 [16:01:28.000] ----------------------------------------------- -Info 48 [16:01:29.000] Open files: -Info 48 [16:01:30.000] FileName: /user/username/projects/myproject/src/foo.ts ProjectRootPath: /user/username/projects/myproject -Info 48 [16:01:31.000] Projects: /user/username/projects/myproject/tsconfig.json -Info 48 [16:01:32.000] FileName: /user/username/projects/myproject/src/sub/fooBar.ts ProjectRootPath: /user/username/projects/myproject -Info 48 [16:01:33.000] Projects: /dev/null/inferredProject1* +Info 48 [00:01:28.000] ----------------------------------------------- +Info 48 [00:01:29.000] Open files: +Info 48 [00:01:30.000] FileName: /user/username/projects/myproject/src/foo.ts ProjectRootPath: /user/username/projects/myproject +Info 48 [00:01:31.000] Projects: /user/username/projects/myproject/tsconfig.json +Info 48 [00:01:32.000] FileName: /user/username/projects/myproject/src/sub/fooBar.ts ProjectRootPath: /user/username/projects/myproject +Info 48 [00:01:33.000] Projects: /dev/null/inferredProject1* After request PolledWatches:: @@ -224,11 +224,11 @@ FsWatchesRecursive:: /user/username/projects/myproject/src: {} -Info 48 [16:01:34.000] response: +Info 48 [00:01:34.000] response: { "responseRequired": false } -Info 49 [16:01:35.000] request: +Info 49 [00:01:35.000] request: { "command": "geterr", "arguments": { @@ -305,7 +305,7 @@ FsWatchesRecursive:: /user/username/projects/myproject/src: {} -Info 50 [16:01:36.000] response: +Info 50 [00:01:36.000] response: { "responseRequired": false } @@ -373,7 +373,7 @@ FsWatchesRecursive:: /user/username/projects/myproject/src: {} -Info 51 [16:01:37.000] event: +Info 51 [00:01:37.000] event: {"seq":0,"type":"event","event":"syntaxDiag","body":{"file":"/user/username/projects/myproject/src/sub/fooBar.ts","diagnostics":[]}} After running timeout callback1 @@ -439,7 +439,7 @@ FsWatchesRecursive:: /user/username/projects/myproject/src: {} -Info 52 [16:01:38.000] event: +Info 52 [00:01:38.000] event: {"seq":0,"type":"event","event":"semanticDiag","body":{"file":"/user/username/projects/myproject/src/sub/fooBar.ts","diagnostics":[]}} Before running immediate callbacks and checking length (1) @@ -505,7 +505,7 @@ FsWatchesRecursive:: /user/username/projects/myproject/src: {} -Info 53 [16:01:39.000] event: +Info 53 [00:01:39.000] event: {"seq":0,"type":"event","event":"suggestionDiag","body":{"file":"/user/username/projects/myproject/src/sub/fooBar.ts","diagnostics":[]}} Before running immediate callbacks and checking length (1) @@ -603,7 +603,7 @@ FsWatchesRecursive:: /user/username/projects/myproject/src: {} -Info 54 [16:01:40.000] event: +Info 54 [00:01:40.000] event: {"seq":0,"type":"event","event":"syntaxDiag","body":{"file":"/user/username/projects/myproject/src/foo.ts","diagnostics":[]}} After running timeout callback2 @@ -669,7 +669,7 @@ FsWatchesRecursive:: /user/username/projects/myproject/src: {} -Info 55 [16:01:41.000] event: +Info 55 [00:01:41.000] event: {"seq":0,"type":"event","event":"semanticDiag","body":{"file":"/user/username/projects/myproject/src/foo.ts","diagnostics":[]}} Before running immediate callbacks and checking length (1) @@ -735,9 +735,9 @@ FsWatchesRecursive:: /user/username/projects/myproject/src: {} -Info 56 [16:01:42.000] event: +Info 56 [00:01:42.000] event: {"seq":0,"type":"event","event":"suggestionDiag","body":{"file":"/user/username/projects/myproject/src/foo.ts","diagnostics":[]}} -Info 57 [16:01:43.000] event: +Info 57 [00:01:43.000] event: {"seq":0,"type":"event","event":"requestCompleted","body":{"request_seq":3}} Before running immediate callbacks and checking length (1) 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.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.js index ff272e034c518..bb3f0f7844356 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.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.js @@ -1,5 +1,5 @@ -Info 0 [16:00:27.000] Provided types map file "/a/lib/typesMap.json" doesn't exist -Info 1 [16:00:28.000] request: +Info 0 [00:00:27.000] Provided types map file "/a/lib/typesMap.json" doesn't exist +Info 1 [00:00:28.000] request: { "command": "open", "arguments": { @@ -40,13 +40,13 @@ FsWatches:: FsWatchesRecursive:: -Info 2 [16:00:29.000] Search path: /user/username/projects/myproject/src -Info 3 [16:00:30.000] For info: /user/username/projects/myproject/src/foo.ts :: Config file name: /user/username/projects/myproject/tsconfig.json -Info 4 [16:00:31.000] Creating configuration project /user/username/projects/myproject/tsconfig.json -Info 5 [16:00:32.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/tsconfig.json 2000 undefined Project: /user/username/projects/myproject/tsconfig.json WatchType: Config file -Info 6 [16:00:33.000] event: +Info 2 [00:00:29.000] Search path: /user/username/projects/myproject/src +Info 3 [00:00:30.000] For info: /user/username/projects/myproject/src/foo.ts :: Config file name: /user/username/projects/myproject/tsconfig.json +Info 4 [00:00:31.000] Creating configuration project /user/username/projects/myproject/tsconfig.json +Info 5 [00:00:32.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/tsconfig.json 2000 undefined Project: /user/username/projects/myproject/tsconfig.json WatchType: Config file +Info 6 [00:00:33.000] event: {"seq":0,"type":"event","event":"projectLoadingStart","body":{"projectName":"/user/username/projects/myproject/tsconfig.json","reason":"Creating possible configured project for /user/username/projects/myproject/src/foo.ts to open"}} -Info 7 [16:00:34.000] Config: /user/username/projects/myproject/tsconfig.json : { +Info 7 [00:00:34.000] Config: /user/username/projects/myproject/tsconfig.json : { "rootNames": [ "/user/username/projects/myproject/src/bar.ts", "/user/username/projects/myproject/src/foo.ts" @@ -55,17 +55,17 @@ Info 7 [16:00:34.000] Config: /user/username/projects/myproject/tsconfig.json "configFilePath": "/user/username/projects/myproject/tsconfig.json" } } -Info 8 [16:00:35.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/src 1 undefined Config: /user/username/projects/myproject/tsconfig.json WatchType: Wild card directory -Info 9 [16:00:36.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/src 1 undefined Config: /user/username/projects/myproject/tsconfig.json WatchType: Wild card directory -Info 10 [16:00:37.000] Plugins were requested but not running in environment that supports 'require'. Nothing will be loaded -Info 11 [16:00:38.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/src/bar.ts 500 undefined WatchType: Closed Script info -Info 12 [16:00:39.000] Starting updateGraphWorker: Project: /user/username/projects/myproject/tsconfig.json -Info 13 [16:00:40.000] FileWatcher:: Added:: WatchInfo: /a/lib/lib.d.ts 500 undefined WatchType: Closed Script info -Info 14 [16:00:41.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/tsconfig.json WatchType: Type roots -Info 15 [16:00:42.000] 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 16 [16:00:43.000] Finishing updateGraphWorker: Project: /user/username/projects/myproject/tsconfig.json Version: 1 structureChanged: true structureIsReused:: Not Elapsed:: *ms -Info 17 [16:00:44.000] Project '/user/username/projects/myproject/tsconfig.json' (Configured) -Info 18 [16:00:45.000] Files (3) +Info 8 [00:00:35.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/src 1 undefined Config: /user/username/projects/myproject/tsconfig.json WatchType: Wild card directory +Info 9 [00:00:36.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/src 1 undefined Config: /user/username/projects/myproject/tsconfig.json WatchType: Wild card directory +Info 10 [00:00:37.000] Plugins were requested but not running in environment that supports 'require'. Nothing will be loaded +Info 11 [00:00:38.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/src/bar.ts 500 undefined WatchType: Closed Script info +Info 12 [00:00:39.000] Starting updateGraphWorker: Project: /user/username/projects/myproject/tsconfig.json +Info 13 [00:00:40.000] FileWatcher:: Added:: WatchInfo: /a/lib/lib.d.ts 500 undefined WatchType: Closed Script info +Info 14 [00:00:41.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/tsconfig.json WatchType: Type roots +Info 15 [00:00:42.000] 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 16 [00:00:43.000] Finishing updateGraphWorker: Project: /user/username/projects/myproject/tsconfig.json Version: 1 structureChanged: true structureIsReused:: Not Elapsed:: *ms +Info 17 [00:00:44.000] Project '/user/username/projects/myproject/tsconfig.json' (Configured) +Info 18 [00:00:45.000] Files (3) /a/lib/lib.d.ts /user/username/projects/myproject/src/bar.ts /user/username/projects/myproject/src/foo.ts @@ -78,20 +78,20 @@ Info 18 [16:00:45.000] Files (3) src/foo.ts Matched by include pattern './src' in 'tsconfig.json' -Info 19 [16:00:46.000] ----------------------------------------------- -Info 20 [16:00:47.000] event: +Info 19 [00:00:46.000] ----------------------------------------------- +Info 20 [00:00:47.000] event: {"seq":0,"type":"event","event":"projectLoadingFinish","body":{"projectName":"/user/username/projects/myproject/tsconfig.json"}} -Info 21 [16:00:48.000] event: +Info 21 [00:00:48.000] event: {"seq":0,"type":"event","event":"telemetry","body":{"telemetryEventName":"projectInfo","payload":{"projectId":"4a33d78ee40d836c4f4e64c59aed976628aea0013be9585c5ff171dfc41baf98","fileStats":{"js":0,"jsSize":0,"jsx":0,"jsxSize":0,"ts":2,"tsSize":50,"tsx":0,"tsxSize":0,"dts":1,"dtsSize":334,"deferred":0,"deferredSize":0},"compilerOptions":{},"typeAcquisition":{"enable":false,"include":false,"exclude":false},"extends":false,"files":false,"include":true,"exclude":false,"compileOnSave":false,"configFileName":"tsconfig.json","projectType":"configured","languageServiceEnabled":true,"version":"FakeVersion"}}} -Info 22 [16:00:49.000] event: +Info 22 [00:00:49.000] event: {"seq":0,"type":"event","event":"configFileDiag","body":{"triggerFile":"/user/username/projects/myproject/src/foo.ts","configFile":"/user/username/projects/myproject/tsconfig.json","diagnostics":[]}} -Info 23 [16:00:50.000] Project '/user/username/projects/myproject/tsconfig.json' (Configured) -Info 23 [16:00:51.000] Files (3) +Info 23 [00:00:50.000] Project '/user/username/projects/myproject/tsconfig.json' (Configured) +Info 23 [00:00:51.000] Files (3) -Info 23 [16:00:52.000] ----------------------------------------------- -Info 23 [16:00:53.000] Open files: -Info 23 [16:00:54.000] FileName: /user/username/projects/myproject/src/foo.ts ProjectRootPath: /user/username/projects/myproject -Info 23 [16:00:55.000] Projects: /user/username/projects/myproject/tsconfig.json +Info 23 [00:00:52.000] ----------------------------------------------- +Info 23 [00:00:53.000] Open files: +Info 23 [00:00:54.000] FileName: /user/username/projects/myproject/src/foo.ts ProjectRootPath: /user/username/projects/myproject +Info 23 [00:00:55.000] Projects: /user/username/projects/myproject/tsconfig.json After request PolledWatches:: @@ -110,15 +110,15 @@ FsWatchesRecursive:: /user/username/projects/myproject/src: {} -Info 23 [16:00:56.000] response: +Info 23 [00:00:56.000] response: { "responseRequired": false } -Info 24 [16:00:59.000] DirectoryWatcher:: Triggered with /user/username/projects/myproject/src/sub/fooBar.ts :: WatchInfo: /user/username/projects/myproject/src 1 undefined Config: /user/username/projects/myproject/tsconfig.json WatchType: Wild card directory -Info 25 [16:01:00.000] Scheduled: /user/username/projects/myproject/tsconfig.json -Info 26 [16:01:01.000] Scheduled: *ensureProjectForOpenFiles* -Info 27 [16:01:02.000] Elapsed:: *ms DirectoryWatcher:: Triggered with /user/username/projects/myproject/src/sub/fooBar.ts :: WatchInfo: /user/username/projects/myproject/src 1 undefined Config: /user/username/projects/myproject/tsconfig.json WatchType: Wild card directory -Info 28 [16:01:03.000] request: +Info 24 [00:00:59.000] DirectoryWatcher:: Triggered with /user/username/projects/myproject/src/sub/fooBar.ts :: WatchInfo: /user/username/projects/myproject/src 1 undefined Config: /user/username/projects/myproject/tsconfig.json WatchType: Wild card directory +Info 25 [00:01:00.000] Scheduled: /user/username/projects/myproject/tsconfig.json +Info 26 [00:01:01.000] Scheduled: *ensureProjectForOpenFiles* +Info 27 [00:01:02.000] Elapsed:: *ms DirectoryWatcher:: Triggered with /user/username/projects/myproject/src/sub/fooBar.ts :: WatchInfo: /user/username/projects/myproject/src 1 undefined Config: /user/username/projects/myproject/tsconfig.json WatchType: Wild card directory +Info 28 [00:01:03.000] request: { "command": "open", "arguments": { @@ -150,12 +150,12 @@ FsWatchesRecursive:: /user/username/projects/myproject/src: {} -Info 29 [16:01:04.000] Search path: /user/username/projects/myproject/src/sub -Info 30 [16:01:05.000] For info: /user/username/projects/myproject/src/sub/fooBar.ts :: Config file name: /user/username/projects/myproject/tsconfig.json -Info 31 [16:01:06.000] Starting updateGraphWorker: Project: /user/username/projects/myproject/tsconfig.json -Info 32 [16:01:07.000] Finishing updateGraphWorker: Project: /user/username/projects/myproject/tsconfig.json Version: 2 structureChanged: true structureIsReused:: Not Elapsed:: *ms -Info 33 [16:01:08.000] Project '/user/username/projects/myproject/tsconfig.json' (Configured) -Info 34 [16:01:09.000] Files (4) +Info 29 [00:01:04.000] Search path: /user/username/projects/myproject/src/sub +Info 30 [00:01:05.000] For info: /user/username/projects/myproject/src/sub/fooBar.ts :: Config file name: /user/username/projects/myproject/tsconfig.json +Info 31 [00:01:06.000] Starting updateGraphWorker: Project: /user/username/projects/myproject/tsconfig.json +Info 32 [00:01:07.000] Finishing updateGraphWorker: Project: /user/username/projects/myproject/tsconfig.json Version: 2 structureChanged: true structureIsReused:: Not Elapsed:: *ms +Info 33 [00:01:08.000] Project '/user/username/projects/myproject/tsconfig.json' (Configured) +Info 34 [00:01:09.000] Files (4) /a/lib/lib.d.ts /user/username/projects/myproject/src/bar.ts /user/username/projects/myproject/src/foo.ts @@ -171,16 +171,16 @@ Info 34 [16:01:09.000] Files (4) src/sub/fooBar.ts Matched by include pattern './src' in 'tsconfig.json' -Info 35 [16:01:10.000] ----------------------------------------------- -Info 36 [16:01:11.000] Project '/user/username/projects/myproject/tsconfig.json' (Configured) -Info 36 [16:01:12.000] Files (4) +Info 35 [00:01:10.000] ----------------------------------------------- +Info 36 [00:01:11.000] Project '/user/username/projects/myproject/tsconfig.json' (Configured) +Info 36 [00:01:12.000] Files (4) -Info 36 [16:01:13.000] ----------------------------------------------- -Info 36 [16:01:14.000] Open files: -Info 36 [16:01:15.000] FileName: /user/username/projects/myproject/src/foo.ts ProjectRootPath: /user/username/projects/myproject -Info 36 [16:01:16.000] Projects: /user/username/projects/myproject/tsconfig.json -Info 36 [16:01:17.000] FileName: /user/username/projects/myproject/src/sub/fooBar.ts ProjectRootPath: /user/username/projects/myproject -Info 36 [16:01:18.000] Projects: /user/username/projects/myproject/tsconfig.json +Info 36 [00:01:13.000] ----------------------------------------------- +Info 36 [00:01:14.000] Open files: +Info 36 [00:01:15.000] FileName: /user/username/projects/myproject/src/foo.ts ProjectRootPath: /user/username/projects/myproject +Info 36 [00:01:16.000] Projects: /user/username/projects/myproject/tsconfig.json +Info 36 [00:01:17.000] FileName: /user/username/projects/myproject/src/sub/fooBar.ts ProjectRootPath: /user/username/projects/myproject +Info 36 [00:01:18.000] Projects: /user/username/projects/myproject/tsconfig.json After request PolledWatches:: @@ -199,11 +199,11 @@ FsWatchesRecursive:: /user/username/projects/myproject/src: {} -Info 36 [16:01:19.000] response: +Info 36 [00:01:19.000] response: { "responseRequired": false } -Info 37 [16:01:20.000] request: +Info 37 [00:01:20.000] request: { "command": "geterr", "arguments": { @@ -252,7 +252,7 @@ FsWatchesRecursive:: /user/username/projects/myproject/src: {} -Info 38 [16:01:21.000] response: +Info 38 [00:01:21.000] response: { "responseRequired": false } @@ -292,7 +292,7 @@ FsWatchesRecursive:: /user/username/projects/myproject/src: {} -Info 39 [16:01:22.000] event: +Info 39 [00:01:22.000] event: {"seq":0,"type":"event","event":"syntaxDiag","body":{"file":"/user/username/projects/myproject/src/sub/fooBar.ts","diagnostics":[]}} After running timeout callback3 @@ -330,7 +330,7 @@ FsWatchesRecursive:: /user/username/projects/myproject/src: {} -Info 40 [16:01:23.000] event: +Info 40 [00:01:23.000] event: {"seq":0,"type":"event","event":"semanticDiag","body":{"file":"/user/username/projects/myproject/src/sub/fooBar.ts","diagnostics":[]}} Before running immediate callbacks and checking length (1) @@ -368,7 +368,7 @@ FsWatchesRecursive:: /user/username/projects/myproject/src: {} -Info 41 [16:01:24.000] event: +Info 41 [00:01:24.000] event: {"seq":0,"type":"event","event":"suggestionDiag","body":{"file":"/user/username/projects/myproject/src/sub/fooBar.ts","diagnostics":[]}} Before running immediate callbacks and checking length (1) @@ -424,7 +424,7 @@ FsWatchesRecursive:: /user/username/projects/myproject/src: {} -Info 42 [16:01:25.000] event: +Info 42 [00:01:25.000] event: {"seq":0,"type":"event","event":"syntaxDiag","body":{"file":"/user/username/projects/myproject/src/foo.ts","diagnostics":[]}} After running timeout callback4 @@ -462,7 +462,7 @@ FsWatchesRecursive:: /user/username/projects/myproject/src: {} -Info 43 [16:01:26.000] event: +Info 43 [00:01:26.000] event: {"seq":0,"type":"event","event":"semanticDiag","body":{"file":"/user/username/projects/myproject/src/foo.ts","diagnostics":[]}} Before running immediate callbacks and checking length (1) @@ -500,9 +500,9 @@ FsWatchesRecursive:: /user/username/projects/myproject/src: {} -Info 44 [16:01:27.000] event: +Info 44 [00:01:27.000] event: {"seq":0,"type":"event","event":"suggestionDiag","body":{"file":"/user/username/projects/myproject/src/foo.ts","diagnostics":[]}} -Info 45 [16:01:28.000] event: +Info 45 [00:01:28.000] event: {"seq":0,"type":"event","event":"requestCompleted","body":{"request_seq":3}} Before running immediate callbacks and checking length (1) 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 5717af5831bce..7ceef00398200 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 @@ -1,5 +1,5 @@ -Info 0 [16:00:27.000] Provided types map file "/a/lib/typesMap.json" doesn't exist -Info 1 [16:00:28.000] request: +Info 0 [00:00:27.000] Provided types map file "/a/lib/typesMap.json" doesn't exist +Info 1 [00:00:28.000] request: { "command": "open", "arguments": { @@ -40,13 +40,13 @@ FsWatches:: FsWatchesRecursive:: -Info 2 [16:00:29.000] Search path: /user/username/projects/myproject/src -Info 3 [16:00:30.000] For info: /user/username/projects/myproject/src/foo.ts :: Config file name: /user/username/projects/myproject/tsconfig.json -Info 4 [16:00:31.000] Creating configuration project /user/username/projects/myproject/tsconfig.json -Info 5 [16:00:32.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/tsconfig.json 2000 undefined Project: /user/username/projects/myproject/tsconfig.json WatchType: Config file -Info 6 [16:00:33.000] event: +Info 2 [00:00:29.000] Search path: /user/username/projects/myproject/src +Info 3 [00:00:30.000] For info: /user/username/projects/myproject/src/foo.ts :: Config file name: /user/username/projects/myproject/tsconfig.json +Info 4 [00:00:31.000] Creating configuration project /user/username/projects/myproject/tsconfig.json +Info 5 [00:00:32.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/tsconfig.json 2000 undefined Project: /user/username/projects/myproject/tsconfig.json WatchType: Config file +Info 6 [00:00:33.000] event: {"seq":0,"type":"event","event":"projectLoadingStart","body":{"projectName":"/user/username/projects/myproject/tsconfig.json","reason":"Creating possible configured project for /user/username/projects/myproject/src/foo.ts to open"}} -Info 7 [16:00:34.000] Config: /user/username/projects/myproject/tsconfig.json : { +Info 7 [00:00:34.000] Config: /user/username/projects/myproject/tsconfig.json : { "rootNames": [ "/user/username/projects/myproject/src/bar.ts", "/user/username/projects/myproject/src/foo.ts" @@ -55,17 +55,17 @@ Info 7 [16:00:34.000] Config: /user/username/projects/myproject/tsconfig.json "configFilePath": "/user/username/projects/myproject/tsconfig.json" } } -Info 8 [16:00:35.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/src 1 undefined Config: /user/username/projects/myproject/tsconfig.json WatchType: Wild card directory -Info 9 [16:00:36.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/src 1 undefined Config: /user/username/projects/myproject/tsconfig.json WatchType: Wild card directory -Info 10 [16:00:37.000] Plugins were requested but not running in environment that supports 'require'. Nothing will be loaded -Info 11 [16:00:38.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/src/bar.ts 500 undefined WatchType: Closed Script info -Info 12 [16:00:39.000] Starting updateGraphWorker: Project: /user/username/projects/myproject/tsconfig.json -Info 13 [16:00:40.000] FileWatcher:: Added:: WatchInfo: /a/lib/lib.d.ts 500 undefined WatchType: Closed Script info -Info 14 [16:00:41.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/tsconfig.json WatchType: Type roots -Info 15 [16:00:42.000] 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 16 [16:00:43.000] Finishing updateGraphWorker: Project: /user/username/projects/myproject/tsconfig.json Version: 1 structureChanged: true structureIsReused:: Not Elapsed:: *ms -Info 17 [16:00:44.000] Project '/user/username/projects/myproject/tsconfig.json' (Configured) -Info 18 [16:00:45.000] Files (3) +Info 8 [00:00:35.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/src 1 undefined Config: /user/username/projects/myproject/tsconfig.json WatchType: Wild card directory +Info 9 [00:00:36.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/src 1 undefined Config: /user/username/projects/myproject/tsconfig.json WatchType: Wild card directory +Info 10 [00:00:37.000] Plugins were requested but not running in environment that supports 'require'. Nothing will be loaded +Info 11 [00:00:38.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/src/bar.ts 500 undefined WatchType: Closed Script info +Info 12 [00:00:39.000] Starting updateGraphWorker: Project: /user/username/projects/myproject/tsconfig.json +Info 13 [00:00:40.000] FileWatcher:: Added:: WatchInfo: /a/lib/lib.d.ts 500 undefined WatchType: Closed Script info +Info 14 [00:00:41.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/tsconfig.json WatchType: Type roots +Info 15 [00:00:42.000] 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 16 [00:00:43.000] Finishing updateGraphWorker: Project: /user/username/projects/myproject/tsconfig.json Version: 1 structureChanged: true structureIsReused:: Not Elapsed:: *ms +Info 17 [00:00:44.000] Project '/user/username/projects/myproject/tsconfig.json' (Configured) +Info 18 [00:00:45.000] Files (3) /a/lib/lib.d.ts /user/username/projects/myproject/src/bar.ts /user/username/projects/myproject/src/foo.ts @@ -78,20 +78,20 @@ Info 18 [16:00:45.000] Files (3) src/foo.ts Matched by include pattern './src' in 'tsconfig.json' -Info 19 [16:00:46.000] ----------------------------------------------- -Info 20 [16:00:47.000] event: +Info 19 [00:00:46.000] ----------------------------------------------- +Info 20 [00:00:47.000] event: {"seq":0,"type":"event","event":"projectLoadingFinish","body":{"projectName":"/user/username/projects/myproject/tsconfig.json"}} -Info 21 [16:00:48.000] event: +Info 21 [00:00:48.000] event: {"seq":0,"type":"event","event":"telemetry","body":{"telemetryEventName":"projectInfo","payload":{"projectId":"4a33d78ee40d836c4f4e64c59aed976628aea0013be9585c5ff171dfc41baf98","fileStats":{"js":0,"jsSize":0,"jsx":0,"jsxSize":0,"ts":2,"tsSize":50,"tsx":0,"tsxSize":0,"dts":1,"dtsSize":334,"deferred":0,"deferredSize":0},"compilerOptions":{},"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 22 [16:00:49.000] event: +Info 22 [00:00:49.000] event: {"seq":0,"type":"event","event":"configFileDiag","body":{"triggerFile":"/user/username/projects/myproject/src/foo.ts","configFile":"/user/username/projects/myproject/tsconfig.json","diagnostics":[]}} -Info 23 [16:00:50.000] Project '/user/username/projects/myproject/tsconfig.json' (Configured) -Info 23 [16:00:51.000] Files (3) +Info 23 [00:00:50.000] Project '/user/username/projects/myproject/tsconfig.json' (Configured) +Info 23 [00:00:51.000] Files (3) -Info 23 [16:00:52.000] ----------------------------------------------- -Info 23 [16:00:53.000] Open files: -Info 23 [16:00:54.000] FileName: /user/username/projects/myproject/src/foo.ts ProjectRootPath: /user/username/projects/myproject -Info 23 [16:00:55.000] Projects: /user/username/projects/myproject/tsconfig.json +Info 23 [00:00:52.000] ----------------------------------------------- +Info 23 [00:00:53.000] Open files: +Info 23 [00:00:54.000] FileName: /user/username/projects/myproject/src/foo.ts ProjectRootPath: /user/username/projects/myproject +Info 23 [00:00:55.000] Projects: /user/username/projects/myproject/tsconfig.json After request PolledWatches:: @@ -110,11 +110,11 @@ FsWatchesRecursive:: /user/username/projects/myproject/src: {} -Info 23 [16:00:56.000] response: +Info 23 [00:00:56.000] response: { "responseRequired": false } -Info 24 [16:00:57.000] request: +Info 24 [00:00:57.000] request: { "command": "open", "arguments": { @@ -143,26 +143,26 @@ FsWatchesRecursive:: /user/username/projects/myproject/src: {} -Info 25 [16:00:58.000] Search path: /user/username/projects/myproject/src/sub -Info 26 [16:00:59.000] For info: /user/username/projects/myproject/src/sub/fooBar.ts :: Config file name: /user/username/projects/myproject/tsconfig.json -Info 27 [16:01:00.000] event: +Info 25 [00:00:58.000] Search path: /user/username/projects/myproject/src/sub +Info 26 [00:00:59.000] For info: /user/username/projects/myproject/src/sub/fooBar.ts :: Config file name: /user/username/projects/myproject/tsconfig.json +Info 27 [00:01:00.000] event: {"seq":0,"type":"event","event":"configFileDiag","body":{"triggerFile":"/user/username/projects/myproject/src/sub/fooBar.ts","configFile":"/user/username/projects/myproject/tsconfig.json","diagnostics":[]}} -Info 28 [16:01:01.000] Plugins were requested but not running in environment that supports 'require'. Nothing will be loaded -Info 29 [16:01:02.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/src/sub/tsconfig.json 2000 undefined WatchType: Config file for the inferred project root -Info 30 [16:01:03.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/src/sub/jsconfig.json 2000 undefined WatchType: Config file for the inferred project root -Info 31 [16:01:04.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/src/tsconfig.json 2000 undefined WatchType: Config file for the inferred project root -Info 32 [16:01:05.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/src/jsconfig.json 2000 undefined WatchType: Config file for the inferred project root -Info 33 [16:01:06.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/jsconfig.json 2000 undefined WatchType: Config file for the inferred project root -Info 34 [16:01:07.000] Starting updateGraphWorker: Project: /dev/null/inferredProject1* -Info 35 [16:01:08.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/src/sub/node_modules/@types 1 undefined Project: /dev/null/inferredProject1* WatchType: Type roots -Info 36 [16:01:09.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/src/sub/node_modules/@types 1 undefined Project: /dev/null/inferredProject1* WatchType: Type roots -Info 37 [16:01:10.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/src/node_modules/@types 1 undefined Project: /dev/null/inferredProject1* WatchType: Type roots -Info 38 [16:01:11.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/src/node_modules/@types 1 undefined Project: /dev/null/inferredProject1* WatchType: Type roots -Info 39 [16:01:12.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /dev/null/inferredProject1* WatchType: Type roots -Info 40 [16:01:13.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /dev/null/inferredProject1* WatchType: Type roots -Info 41 [16:01:14.000] Finishing updateGraphWorker: Project: /dev/null/inferredProject1* Version: 1 structureChanged: true structureIsReused:: Not Elapsed:: *ms -Info 42 [16:01:15.000] Project '/dev/null/inferredProject1*' (Inferred) -Info 43 [16:01:16.000] Files (2) +Info 28 [00:01:01.000] Plugins were requested but not running in environment that supports 'require'. Nothing will be loaded +Info 29 [00:01:02.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/src/sub/tsconfig.json 2000 undefined WatchType: Config file for the inferred project root +Info 30 [00:01:03.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/src/sub/jsconfig.json 2000 undefined WatchType: Config file for the inferred project root +Info 31 [00:01:04.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/src/tsconfig.json 2000 undefined WatchType: Config file for the inferred project root +Info 32 [00:01:05.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/src/jsconfig.json 2000 undefined WatchType: Config file for the inferred project root +Info 33 [00:01:06.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/jsconfig.json 2000 undefined WatchType: Config file for the inferred project root +Info 34 [00:01:07.000] Starting updateGraphWorker: Project: /dev/null/inferredProject1* +Info 35 [00:01:08.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/src/sub/node_modules/@types 1 undefined Project: /dev/null/inferredProject1* WatchType: Type roots +Info 36 [00:01:09.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/src/sub/node_modules/@types 1 undefined Project: /dev/null/inferredProject1* WatchType: Type roots +Info 37 [00:01:10.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/src/node_modules/@types 1 undefined Project: /dev/null/inferredProject1* WatchType: Type roots +Info 38 [00:01:11.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/src/node_modules/@types 1 undefined Project: /dev/null/inferredProject1* WatchType: Type roots +Info 39 [00:01:12.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /dev/null/inferredProject1* WatchType: Type roots +Info 40 [00:01:13.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /dev/null/inferredProject1* WatchType: Type roots +Info 41 [00:01:14.000] Finishing updateGraphWorker: Project: /dev/null/inferredProject1* Version: 1 structureChanged: true structureIsReused:: Not Elapsed:: *ms +Info 42 [00:01:15.000] Project '/dev/null/inferredProject1*' (Inferred) +Info 43 [00:01:16.000] Files (2) /a/lib/lib.d.ts /user/username/projects/myproject/src/sub/fooBar.ts @@ -172,20 +172,20 @@ Info 43 [16:01:16.000] Files (2) fooBar.ts Root file specified for compilation -Info 44 [16:01:17.000] ----------------------------------------------- -Info 45 [16:01:18.000] Project '/user/username/projects/myproject/tsconfig.json' (Configured) -Info 45 [16:01:19.000] Files (3) +Info 44 [00:01:17.000] ----------------------------------------------- +Info 45 [00:01:18.000] Project '/user/username/projects/myproject/tsconfig.json' (Configured) +Info 45 [00:01:19.000] Files (3) -Info 45 [16:01:20.000] ----------------------------------------------- -Info 45 [16:01:21.000] Project '/dev/null/inferredProject1*' (Inferred) -Info 45 [16:01:22.000] Files (2) +Info 45 [00:01:20.000] ----------------------------------------------- +Info 45 [00:01:21.000] Project '/dev/null/inferredProject1*' (Inferred) +Info 45 [00:01:22.000] Files (2) -Info 45 [16:01:23.000] ----------------------------------------------- -Info 45 [16:01:24.000] Open files: -Info 45 [16:01:25.000] FileName: /user/username/projects/myproject/src/foo.ts ProjectRootPath: /user/username/projects/myproject -Info 45 [16:01:26.000] Projects: /user/username/projects/myproject/tsconfig.json -Info 45 [16:01:27.000] FileName: /user/username/projects/myproject/src/sub/fooBar.ts ProjectRootPath: /user/username/projects/myproject -Info 45 [16:01:28.000] Projects: /dev/null/inferredProject1* +Info 45 [00:01:23.000] ----------------------------------------------- +Info 45 [00:01:24.000] Open files: +Info 45 [00:01:25.000] FileName: /user/username/projects/myproject/src/foo.ts ProjectRootPath: /user/username/projects/myproject +Info 45 [00:01:26.000] Projects: /user/username/projects/myproject/tsconfig.json +Info 45 [00:01:27.000] FileName: /user/username/projects/myproject/src/sub/fooBar.ts ProjectRootPath: /user/username/projects/myproject +Info 45 [00:01:28.000] Projects: /dev/null/inferredProject1* After request PolledWatches:: @@ -218,14 +218,14 @@ FsWatchesRecursive:: /user/username/projects/myproject/src: {} -Info 45 [16:01:29.000] response: +Info 45 [00:01:29.000] response: { "responseRequired": false } -Info 46 [16:01:32.000] DirectoryWatcher:: Triggered with /user/username/projects/myproject/src/sub/fooBar.ts :: WatchInfo: /user/username/projects/myproject/src 1 undefined Config: /user/username/projects/myproject/tsconfig.json WatchType: Wild card directory -Info 47 [16:01:33.000] Project: /user/username/projects/myproject/tsconfig.json Detected excluded file: /user/username/projects/myproject/src/sub/fooBar.ts -Info 48 [16:01:34.000] Elapsed:: *ms DirectoryWatcher:: Triggered with /user/username/projects/myproject/src/sub/fooBar.ts :: WatchInfo: /user/username/projects/myproject/src 1 undefined Config: /user/username/projects/myproject/tsconfig.json WatchType: Wild card directory -Info 49 [16:01:35.000] request: +Info 46 [00:01:32.000] DirectoryWatcher:: Triggered with /user/username/projects/myproject/src/sub/fooBar.ts :: WatchInfo: /user/username/projects/myproject/src 1 undefined Config: /user/username/projects/myproject/tsconfig.json WatchType: Wild card directory +Info 47 [00:01:33.000] Project: /user/username/projects/myproject/tsconfig.json Detected excluded file: /user/username/projects/myproject/src/sub/fooBar.ts +Info 48 [00:01:34.000] Elapsed:: *ms DirectoryWatcher:: Triggered with /user/username/projects/myproject/src/sub/fooBar.ts :: WatchInfo: /user/username/projects/myproject/src 1 undefined Config: /user/username/projects/myproject/tsconfig.json WatchType: Wild card directory +Info 49 [00:01:35.000] request: { "command": "geterr", "arguments": { @@ -305,7 +305,7 @@ FsWatchesRecursive:: /user/username/projects/myproject/src: {} -Info 50 [16:01:36.000] response: +Info 50 [00:01:36.000] response: { "responseRequired": false } @@ -373,7 +373,7 @@ FsWatchesRecursive:: /user/username/projects/myproject/src: {} -Info 51 [16:01:37.000] event: +Info 51 [00:01:37.000] event: {"seq":0,"type":"event","event":"syntaxDiag","body":{"file":"/user/username/projects/myproject/src/foo.ts","diagnostics":[]}} After running timeout callback1 @@ -439,7 +439,7 @@ FsWatchesRecursive:: /user/username/projects/myproject/src: {} -Info 52 [16:01:38.000] event: +Info 52 [00:01:38.000] event: {"seq":0,"type":"event","event":"semanticDiag","body":{"file":"/user/username/projects/myproject/src/foo.ts","diagnostics":[]}} Before running immediate callbacks and checking length (1) @@ -505,7 +505,7 @@ FsWatchesRecursive:: /user/username/projects/myproject/src: {} -Info 53 [16:01:39.000] event: +Info 53 [00:01:39.000] event: {"seq":0,"type":"event","event":"suggestionDiag","body":{"file":"/user/username/projects/myproject/src/foo.ts","diagnostics":[]}} Before running immediate callbacks and checking length (1) @@ -603,7 +603,7 @@ FsWatchesRecursive:: /user/username/projects/myproject/src: {} -Info 54 [16:01:40.000] event: +Info 54 [00:01:40.000] event: {"seq":0,"type":"event","event":"syntaxDiag","body":{"file":"/user/username/projects/myproject/src/sub/fooBar.ts","diagnostics":[]}} After running timeout callback2 @@ -669,7 +669,7 @@ FsWatchesRecursive:: /user/username/projects/myproject/src: {} -Info 55 [16:01:41.000] event: +Info 55 [00:01:41.000] event: {"seq":0,"type":"event","event":"semanticDiag","body":{"file":"/user/username/projects/myproject/src/sub/fooBar.ts","diagnostics":[]}} Before running immediate callbacks and checking length (1) @@ -735,9 +735,9 @@ FsWatchesRecursive:: /user/username/projects/myproject/src: {} -Info 56 [16:01:42.000] event: +Info 56 [00:01:42.000] event: {"seq":0,"type":"event","event":"suggestionDiag","body":{"file":"/user/username/projects/myproject/src/sub/fooBar.ts","diagnostics":[]}} -Info 57 [16:01:43.000] event: +Info 57 [00:01:43.000] event: {"seq":0,"type":"event","event":"requestCompleted","body":{"request_seq":3}} Before running immediate callbacks and checking length (1) 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 c7f67d903614b..545b1f654bbdc 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 @@ -1,5 +1,5 @@ -Info 0 [16:00:27.000] Provided types map file "/a/lib/typesMap.json" doesn't exist -Info 1 [16:00:28.000] request: +Info 0 [00:00:27.000] Provided types map file "/a/lib/typesMap.json" doesn't exist +Info 1 [00:00:28.000] request: { "command": "open", "arguments": { @@ -40,13 +40,13 @@ FsWatches:: FsWatchesRecursive:: -Info 2 [16:00:29.000] Search path: /user/username/projects/myproject/src -Info 3 [16:00:30.000] For info: /user/username/projects/myproject/src/foo.ts :: Config file name: /user/username/projects/myproject/tsconfig.json -Info 4 [16:00:31.000] Creating configuration project /user/username/projects/myproject/tsconfig.json -Info 5 [16:00:32.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/tsconfig.json 2000 undefined Project: /user/username/projects/myproject/tsconfig.json WatchType: Config file -Info 6 [16:00:33.000] event: +Info 2 [00:00:29.000] Search path: /user/username/projects/myproject/src +Info 3 [00:00:30.000] For info: /user/username/projects/myproject/src/foo.ts :: Config file name: /user/username/projects/myproject/tsconfig.json +Info 4 [00:00:31.000] Creating configuration project /user/username/projects/myproject/tsconfig.json +Info 5 [00:00:32.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/tsconfig.json 2000 undefined Project: /user/username/projects/myproject/tsconfig.json WatchType: Config file +Info 6 [00:00:33.000] event: {"seq":0,"type":"event","event":"projectLoadingStart","body":{"projectName":"/user/username/projects/myproject/tsconfig.json","reason":"Creating possible configured project for /user/username/projects/myproject/src/foo.ts to open"}} -Info 7 [16:00:34.000] Config: /user/username/projects/myproject/tsconfig.json : { +Info 7 [00:00:34.000] Config: /user/username/projects/myproject/tsconfig.json : { "rootNames": [ "/user/username/projects/myproject/src/bar.ts", "/user/username/projects/myproject/src/foo.ts" @@ -55,17 +55,17 @@ Info 7 [16:00:34.000] Config: /user/username/projects/myproject/tsconfig.json "configFilePath": "/user/username/projects/myproject/tsconfig.json" } } -Info 8 [16:00:35.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/src 1 undefined Config: /user/username/projects/myproject/tsconfig.json WatchType: Wild card directory -Info 9 [16:00:36.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/src 1 undefined Config: /user/username/projects/myproject/tsconfig.json WatchType: Wild card directory -Info 10 [16:00:37.000] Plugins were requested but not running in environment that supports 'require'. Nothing will be loaded -Info 11 [16:00:38.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/src/bar.ts 500 undefined WatchType: Closed Script info -Info 12 [16:00:39.000] Starting updateGraphWorker: Project: /user/username/projects/myproject/tsconfig.json -Info 13 [16:00:40.000] FileWatcher:: Added:: WatchInfo: /a/lib/lib.d.ts 500 undefined WatchType: Closed Script info -Info 14 [16:00:41.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/tsconfig.json WatchType: Type roots -Info 15 [16:00:42.000] 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 16 [16:00:43.000] Finishing updateGraphWorker: Project: /user/username/projects/myproject/tsconfig.json Version: 1 structureChanged: true structureIsReused:: Not Elapsed:: *ms -Info 17 [16:00:44.000] Project '/user/username/projects/myproject/tsconfig.json' (Configured) -Info 18 [16:00:45.000] Files (3) +Info 8 [00:00:35.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/src 1 undefined Config: /user/username/projects/myproject/tsconfig.json WatchType: Wild card directory +Info 9 [00:00:36.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/src 1 undefined Config: /user/username/projects/myproject/tsconfig.json WatchType: Wild card directory +Info 10 [00:00:37.000] Plugins were requested but not running in environment that supports 'require'. Nothing will be loaded +Info 11 [00:00:38.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/src/bar.ts 500 undefined WatchType: Closed Script info +Info 12 [00:00:39.000] Starting updateGraphWorker: Project: /user/username/projects/myproject/tsconfig.json +Info 13 [00:00:40.000] FileWatcher:: Added:: WatchInfo: /a/lib/lib.d.ts 500 undefined WatchType: Closed Script info +Info 14 [00:00:41.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/tsconfig.json WatchType: Type roots +Info 15 [00:00:42.000] 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 16 [00:00:43.000] Finishing updateGraphWorker: Project: /user/username/projects/myproject/tsconfig.json Version: 1 structureChanged: true structureIsReused:: Not Elapsed:: *ms +Info 17 [00:00:44.000] Project '/user/username/projects/myproject/tsconfig.json' (Configured) +Info 18 [00:00:45.000] Files (3) /a/lib/lib.d.ts /user/username/projects/myproject/src/bar.ts /user/username/projects/myproject/src/foo.ts @@ -78,20 +78,20 @@ Info 18 [16:00:45.000] Files (3) src/foo.ts Matched by include pattern './src' in 'tsconfig.json' -Info 19 [16:00:46.000] ----------------------------------------------- -Info 20 [16:00:47.000] event: +Info 19 [00:00:46.000] ----------------------------------------------- +Info 20 [00:00:47.000] event: {"seq":0,"type":"event","event":"projectLoadingFinish","body":{"projectName":"/user/username/projects/myproject/tsconfig.json"}} -Info 21 [16:00:48.000] event: +Info 21 [00:00:48.000] event: {"seq":0,"type":"event","event":"telemetry","body":{"telemetryEventName":"projectInfo","payload":{"projectId":"4a33d78ee40d836c4f4e64c59aed976628aea0013be9585c5ff171dfc41baf98","fileStats":{"js":0,"jsSize":0,"jsx":0,"jsxSize":0,"ts":2,"tsSize":50,"tsx":0,"tsxSize":0,"dts":1,"dtsSize":334,"deferred":0,"deferredSize":0},"compilerOptions":{},"typeAcquisition":{"enable":false,"include":false,"exclude":false},"extends":false,"files":false,"include":true,"exclude":false,"compileOnSave":false,"configFileName":"tsconfig.json","projectType":"configured","languageServiceEnabled":true,"version":"FakeVersion"}}} -Info 22 [16:00:49.000] event: +Info 22 [00:00:49.000] event: {"seq":0,"type":"event","event":"configFileDiag","body":{"triggerFile":"/user/username/projects/myproject/src/foo.ts","configFile":"/user/username/projects/myproject/tsconfig.json","diagnostics":[]}} -Info 23 [16:00:50.000] Project '/user/username/projects/myproject/tsconfig.json' (Configured) -Info 23 [16:00:51.000] Files (3) +Info 23 [00:00:50.000] Project '/user/username/projects/myproject/tsconfig.json' (Configured) +Info 23 [00:00:51.000] Files (3) -Info 23 [16:00:52.000] ----------------------------------------------- -Info 23 [16:00:53.000] Open files: -Info 23 [16:00:54.000] FileName: /user/username/projects/myproject/src/foo.ts ProjectRootPath: /user/username/projects/myproject -Info 23 [16:00:55.000] Projects: /user/username/projects/myproject/tsconfig.json +Info 23 [00:00:52.000] ----------------------------------------------- +Info 23 [00:00:53.000] Open files: +Info 23 [00:00:54.000] FileName: /user/username/projects/myproject/src/foo.ts ProjectRootPath: /user/username/projects/myproject +Info 23 [00:00:55.000] Projects: /user/username/projects/myproject/tsconfig.json After request PolledWatches:: @@ -110,11 +110,11 @@ FsWatchesRecursive:: /user/username/projects/myproject/src: {} -Info 23 [16:00:56.000] response: +Info 23 [00:00:56.000] response: { "responseRequired": false } -Info 24 [16:00:57.000] request: +Info 24 [00:00:57.000] request: { "command": "open", "arguments": { @@ -143,26 +143,26 @@ FsWatchesRecursive:: /user/username/projects/myproject/src: {} -Info 25 [16:00:58.000] Search path: /user/username/projects/myproject/src/sub -Info 26 [16:00:59.000] For info: /user/username/projects/myproject/src/sub/fooBar.ts :: Config file name: /user/username/projects/myproject/tsconfig.json -Info 27 [16:01:00.000] event: +Info 25 [00:00:58.000] Search path: /user/username/projects/myproject/src/sub +Info 26 [00:00:59.000] For info: /user/username/projects/myproject/src/sub/fooBar.ts :: Config file name: /user/username/projects/myproject/tsconfig.json +Info 27 [00:01:00.000] event: {"seq":0,"type":"event","event":"configFileDiag","body":{"triggerFile":"/user/username/projects/myproject/src/sub/fooBar.ts","configFile":"/user/username/projects/myproject/tsconfig.json","diagnostics":[]}} -Info 28 [16:01:01.000] Plugins were requested but not running in environment that supports 'require'. Nothing will be loaded -Info 29 [16:01:02.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/src/sub/tsconfig.json 2000 undefined WatchType: Config file for the inferred project root -Info 30 [16:01:03.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/src/sub/jsconfig.json 2000 undefined WatchType: Config file for the inferred project root -Info 31 [16:01:04.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/src/tsconfig.json 2000 undefined WatchType: Config file for the inferred project root -Info 32 [16:01:05.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/src/jsconfig.json 2000 undefined WatchType: Config file for the inferred project root -Info 33 [16:01:06.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/jsconfig.json 2000 undefined WatchType: Config file for the inferred project root -Info 34 [16:01:07.000] Starting updateGraphWorker: Project: /dev/null/inferredProject1* -Info 35 [16:01:08.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/src/sub/node_modules/@types 1 undefined Project: /dev/null/inferredProject1* WatchType: Type roots -Info 36 [16:01:09.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/src/sub/node_modules/@types 1 undefined Project: /dev/null/inferredProject1* WatchType: Type roots -Info 37 [16:01:10.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/src/node_modules/@types 1 undefined Project: /dev/null/inferredProject1* WatchType: Type roots -Info 38 [16:01:11.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/src/node_modules/@types 1 undefined Project: /dev/null/inferredProject1* WatchType: Type roots -Info 39 [16:01:12.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /dev/null/inferredProject1* WatchType: Type roots -Info 40 [16:01:13.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /dev/null/inferredProject1* WatchType: Type roots -Info 41 [16:01:14.000] Finishing updateGraphWorker: Project: /dev/null/inferredProject1* Version: 1 structureChanged: true structureIsReused:: Not Elapsed:: *ms -Info 42 [16:01:15.000] Project '/dev/null/inferredProject1*' (Inferred) -Info 43 [16:01:16.000] Files (2) +Info 28 [00:01:01.000] Plugins were requested but not running in environment that supports 'require'. Nothing will be loaded +Info 29 [00:01:02.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/src/sub/tsconfig.json 2000 undefined WatchType: Config file for the inferred project root +Info 30 [00:01:03.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/src/sub/jsconfig.json 2000 undefined WatchType: Config file for the inferred project root +Info 31 [00:01:04.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/src/tsconfig.json 2000 undefined WatchType: Config file for the inferred project root +Info 32 [00:01:05.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/src/jsconfig.json 2000 undefined WatchType: Config file for the inferred project root +Info 33 [00:01:06.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/jsconfig.json 2000 undefined WatchType: Config file for the inferred project root +Info 34 [00:01:07.000] Starting updateGraphWorker: Project: /dev/null/inferredProject1* +Info 35 [00:01:08.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/src/sub/node_modules/@types 1 undefined Project: /dev/null/inferredProject1* WatchType: Type roots +Info 36 [00:01:09.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/src/sub/node_modules/@types 1 undefined Project: /dev/null/inferredProject1* WatchType: Type roots +Info 37 [00:01:10.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/src/node_modules/@types 1 undefined Project: /dev/null/inferredProject1* WatchType: Type roots +Info 38 [00:01:11.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/src/node_modules/@types 1 undefined Project: /dev/null/inferredProject1* WatchType: Type roots +Info 39 [00:01:12.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /dev/null/inferredProject1* WatchType: Type roots +Info 40 [00:01:13.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /dev/null/inferredProject1* WatchType: Type roots +Info 41 [00:01:14.000] Finishing updateGraphWorker: Project: /dev/null/inferredProject1* Version: 1 structureChanged: true structureIsReused:: Not Elapsed:: *ms +Info 42 [00:01:15.000] Project '/dev/null/inferredProject1*' (Inferred) +Info 43 [00:01:16.000] Files (2) /a/lib/lib.d.ts /user/username/projects/myproject/src/sub/fooBar.ts @@ -172,20 +172,20 @@ Info 43 [16:01:16.000] Files (2) fooBar.ts Root file specified for compilation -Info 44 [16:01:17.000] ----------------------------------------------- -Info 45 [16:01:18.000] Project '/user/username/projects/myproject/tsconfig.json' (Configured) -Info 45 [16:01:19.000] Files (3) +Info 44 [00:01:17.000] ----------------------------------------------- +Info 45 [00:01:18.000] Project '/user/username/projects/myproject/tsconfig.json' (Configured) +Info 45 [00:01:19.000] Files (3) -Info 45 [16:01:20.000] ----------------------------------------------- -Info 45 [16:01:21.000] Project '/dev/null/inferredProject1*' (Inferred) -Info 45 [16:01:22.000] Files (2) +Info 45 [00:01:20.000] ----------------------------------------------- +Info 45 [00:01:21.000] Project '/dev/null/inferredProject1*' (Inferred) +Info 45 [00:01:22.000] Files (2) -Info 45 [16:01:23.000] ----------------------------------------------- -Info 45 [16:01:24.000] Open files: -Info 45 [16:01:25.000] FileName: /user/username/projects/myproject/src/foo.ts ProjectRootPath: /user/username/projects/myproject -Info 45 [16:01:26.000] Projects: /user/username/projects/myproject/tsconfig.json -Info 45 [16:01:27.000] FileName: /user/username/projects/myproject/src/sub/fooBar.ts ProjectRootPath: /user/username/projects/myproject -Info 45 [16:01:28.000] Projects: /dev/null/inferredProject1* +Info 45 [00:01:23.000] ----------------------------------------------- +Info 45 [00:01:24.000] Open files: +Info 45 [00:01:25.000] FileName: /user/username/projects/myproject/src/foo.ts ProjectRootPath: /user/username/projects/myproject +Info 45 [00:01:26.000] Projects: /user/username/projects/myproject/tsconfig.json +Info 45 [00:01:27.000] FileName: /user/username/projects/myproject/src/sub/fooBar.ts ProjectRootPath: /user/username/projects/myproject +Info 45 [00:01:28.000] Projects: /dev/null/inferredProject1* After request PolledWatches:: @@ -218,15 +218,15 @@ FsWatchesRecursive:: /user/username/projects/myproject/src: {} -Info 45 [16:01:29.000] response: +Info 45 [00:01:29.000] response: { "responseRequired": false } -Info 46 [16:01:32.000] DirectoryWatcher:: Triggered with /user/username/projects/myproject/src/sub/fooBar.ts :: WatchInfo: /user/username/projects/myproject/src 1 undefined Config: /user/username/projects/myproject/tsconfig.json WatchType: Wild card directory -Info 47 [16:01:33.000] Scheduled: /user/username/projects/myproject/tsconfig.json -Info 48 [16:01:34.000] Scheduled: *ensureProjectForOpenFiles* -Info 49 [16:01:35.000] Elapsed:: *ms DirectoryWatcher:: Triggered with /user/username/projects/myproject/src/sub/fooBar.ts :: WatchInfo: /user/username/projects/myproject/src 1 undefined Config: /user/username/projects/myproject/tsconfig.json WatchType: Wild card directory -Info 50 [16:01:36.000] request: +Info 46 [00:01:32.000] DirectoryWatcher:: Triggered with /user/username/projects/myproject/src/sub/fooBar.ts :: WatchInfo: /user/username/projects/myproject/src 1 undefined Config: /user/username/projects/myproject/tsconfig.json WatchType: Wild card directory +Info 47 [00:01:33.000] Scheduled: /user/username/projects/myproject/tsconfig.json +Info 48 [00:01:34.000] Scheduled: *ensureProjectForOpenFiles* +Info 49 [00:01:35.000] Elapsed:: *ms DirectoryWatcher:: Triggered with /user/username/projects/myproject/src/sub/fooBar.ts :: WatchInfo: /user/username/projects/myproject/src 1 undefined Config: /user/username/projects/myproject/tsconfig.json WatchType: Wild card directory +Info 50 [00:01:36.000] request: { "command": "geterr", "arguments": { @@ -306,7 +306,7 @@ FsWatchesRecursive:: /user/username/projects/myproject/src: {} -Info 51 [16:01:37.000] response: +Info 51 [00:01:37.000] response: { "responseRequired": false } @@ -374,15 +374,15 @@ FsWatchesRecursive:: /user/username/projects/myproject/src: {} -Info 52 [16:01:38.000] FileWatcher:: Close:: WatchInfo: /user/username/projects/myproject/src/sub/tsconfig.json 2000 undefined WatchType: Config file for the inferred project root -Info 53 [16:01:39.000] FileWatcher:: Close:: WatchInfo: /user/username/projects/myproject/src/sub/jsconfig.json 2000 undefined WatchType: Config file for the inferred project root -Info 54 [16:01:40.000] FileWatcher:: Close:: WatchInfo: /user/username/projects/myproject/src/tsconfig.json 2000 undefined WatchType: Config file for the inferred project root -Info 55 [16:01:41.000] FileWatcher:: Close:: WatchInfo: /user/username/projects/myproject/src/jsconfig.json 2000 undefined WatchType: Config file for the inferred project root -Info 56 [16:01:42.000] FileWatcher:: Close:: WatchInfo: /user/username/projects/myproject/jsconfig.json 2000 undefined WatchType: Config file for the inferred project root -Info 57 [16:01:43.000] Starting updateGraphWorker: Project: /user/username/projects/myproject/tsconfig.json -Info 58 [16:01:44.000] Finishing updateGraphWorker: Project: /user/username/projects/myproject/tsconfig.json Version: 2 structureChanged: true structureIsReused:: Not Elapsed:: *ms -Info 59 [16:01:45.000] Project '/user/username/projects/myproject/tsconfig.json' (Configured) -Info 60 [16:01:46.000] Files (4) +Info 52 [00:01:38.000] FileWatcher:: Close:: WatchInfo: /user/username/projects/myproject/src/sub/tsconfig.json 2000 undefined WatchType: Config file for the inferred project root +Info 53 [00:01:39.000] FileWatcher:: Close:: WatchInfo: /user/username/projects/myproject/src/sub/jsconfig.json 2000 undefined WatchType: Config file for the inferred project root +Info 54 [00:01:40.000] FileWatcher:: Close:: WatchInfo: /user/username/projects/myproject/src/tsconfig.json 2000 undefined WatchType: Config file for the inferred project root +Info 55 [00:01:41.000] FileWatcher:: Close:: WatchInfo: /user/username/projects/myproject/src/jsconfig.json 2000 undefined WatchType: Config file for the inferred project root +Info 56 [00:01:42.000] FileWatcher:: Close:: WatchInfo: /user/username/projects/myproject/jsconfig.json 2000 undefined WatchType: Config file for the inferred project root +Info 57 [00:01:43.000] Starting updateGraphWorker: Project: /user/username/projects/myproject/tsconfig.json +Info 58 [00:01:44.000] Finishing updateGraphWorker: Project: /user/username/projects/myproject/tsconfig.json Version: 2 structureChanged: true structureIsReused:: Not Elapsed:: *ms +Info 59 [00:01:45.000] Project '/user/username/projects/myproject/tsconfig.json' (Configured) +Info 60 [00:01:46.000] Files (4) /a/lib/lib.d.ts /user/username/projects/myproject/src/bar.ts /user/username/projects/myproject/src/foo.ts @@ -398,8 +398,8 @@ Info 60 [16:01:46.000] Files (4) src/sub/fooBar.ts Matched by include pattern './src' in 'tsconfig.json' -Info 61 [16:01:47.000] ----------------------------------------------- -Info 62 [16:01:48.000] event: +Info 61 [00:01:47.000] ----------------------------------------------- +Info 62 [00:01:48.000] event: {"seq":0,"type":"event","event":"syntaxDiag","body":{"file":"/user/username/projects/myproject/src/foo.ts","diagnostics":[]}} After running timeout callback3 @@ -445,7 +445,7 @@ FsWatchesRecursive:: /user/username/projects/myproject/src: {} -Info 63 [16:01:49.000] event: +Info 63 [00:01:49.000] event: {"seq":0,"type":"event","event":"semanticDiag","body":{"file":"/user/username/projects/myproject/src/foo.ts","diagnostics":[]}} Before running immediate callbacks and checking length (1) @@ -491,7 +491,7 @@ FsWatchesRecursive:: /user/username/projects/myproject/src: {} -Info 64 [16:01:50.000] event: +Info 64 [00:01:50.000] event: {"seq":0,"type":"event","event":"suggestionDiag","body":{"file":"/user/username/projects/myproject/src/foo.ts","diagnostics":[]}} Before running immediate callbacks and checking length (1) @@ -559,7 +559,7 @@ FsWatchesRecursive:: /user/username/projects/myproject/src: {} -Info 65 [16:01:51.000] event: +Info 65 [00:01:51.000] event: {"seq":0,"type":"event","event":"syntaxDiag","body":{"file":"/user/username/projects/myproject/src/sub/fooBar.ts","diagnostics":[]}} After running timeout callback4 @@ -605,7 +605,7 @@ FsWatchesRecursive:: /user/username/projects/myproject/src: {} -Info 66 [16:01:52.000] event: +Info 66 [00:01:52.000] event: {"seq":0,"type":"event","event":"semanticDiag","body":{"file":"/user/username/projects/myproject/src/sub/fooBar.ts","diagnostics":[]}} Before running immediate callbacks and checking length (1) @@ -651,9 +651,9 @@ FsWatchesRecursive:: /user/username/projects/myproject/src: {} -Info 67 [16:01:53.000] event: +Info 67 [00:01:53.000] event: {"seq":0,"type":"event","event":"suggestionDiag","body":{"file":"/user/username/projects/myproject/src/sub/fooBar.ts","diagnostics":[]}} -Info 68 [16:01:54.000] event: +Info 68 [00:01:54.000] event: {"seq":0,"type":"event","event":"requestCompleted","body":{"request_seq":3}} Before running immediate callbacks and checking length (1) 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 f7877d43ea0ba..ccd1584ff5155 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 @@ -1,5 +1,5 @@ -Info 0 [16:00:27.000] Provided types map file "/a/lib/typesMap.json" doesn't exist -Info 1 [16:00:28.000] request: +Info 0 [00:00:27.000] Provided types map file "/a/lib/typesMap.json" doesn't exist +Info 1 [00:00:28.000] request: { "command": "open", "arguments": { @@ -40,13 +40,13 @@ FsWatches:: FsWatchesRecursive:: -Info 2 [16:00:29.000] Search path: /user/username/projects/myproject/src -Info 3 [16:00:30.000] For info: /user/username/projects/myproject/src/foo.ts :: Config file name: /user/username/projects/myproject/tsconfig.json -Info 4 [16:00:31.000] Creating configuration project /user/username/projects/myproject/tsconfig.json -Info 5 [16:00:32.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/tsconfig.json 2000 undefined Project: /user/username/projects/myproject/tsconfig.json WatchType: Config file -Info 6 [16:00:33.000] event: +Info 2 [00:00:29.000] Search path: /user/username/projects/myproject/src +Info 3 [00:00:30.000] For info: /user/username/projects/myproject/src/foo.ts :: Config file name: /user/username/projects/myproject/tsconfig.json +Info 4 [00:00:31.000] Creating configuration project /user/username/projects/myproject/tsconfig.json +Info 5 [00:00:32.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/tsconfig.json 2000 undefined Project: /user/username/projects/myproject/tsconfig.json WatchType: Config file +Info 6 [00:00:33.000] event: {"seq":0,"type":"event","event":"projectLoadingStart","body":{"projectName":"/user/username/projects/myproject/tsconfig.json","reason":"Creating possible configured project for /user/username/projects/myproject/src/foo.ts to open"}} -Info 7 [16:00:34.000] Config: /user/username/projects/myproject/tsconfig.json : { +Info 7 [00:00:34.000] Config: /user/username/projects/myproject/tsconfig.json : { "rootNames": [ "/user/username/projects/myproject/src/bar.ts", "/user/username/projects/myproject/src/foo.ts" @@ -55,17 +55,17 @@ Info 7 [16:00:34.000] Config: /user/username/projects/myproject/tsconfig.json "configFilePath": "/user/username/projects/myproject/tsconfig.json" } } -Info 8 [16:00:35.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/src 1 undefined Config: /user/username/projects/myproject/tsconfig.json WatchType: Wild card directory -Info 9 [16:00:36.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/src 1 undefined Config: /user/username/projects/myproject/tsconfig.json WatchType: Wild card directory -Info 10 [16:00:37.000] Plugins were requested but not running in environment that supports 'require'. Nothing will be loaded -Info 11 [16:00:38.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/src/bar.ts 500 undefined WatchType: Closed Script info -Info 12 [16:00:39.000] Starting updateGraphWorker: Project: /user/username/projects/myproject/tsconfig.json -Info 13 [16:00:40.000] FileWatcher:: Added:: WatchInfo: /a/lib/lib.d.ts 500 undefined WatchType: Closed Script info -Info 14 [16:00:41.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/tsconfig.json WatchType: Type roots -Info 15 [16:00:42.000] 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 16 [16:00:43.000] Finishing updateGraphWorker: Project: /user/username/projects/myproject/tsconfig.json Version: 1 structureChanged: true structureIsReused:: Not Elapsed:: *ms -Info 17 [16:00:44.000] Project '/user/username/projects/myproject/tsconfig.json' (Configured) -Info 18 [16:00:45.000] Files (3) +Info 8 [00:00:35.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/src 1 undefined Config: /user/username/projects/myproject/tsconfig.json WatchType: Wild card directory +Info 9 [00:00:36.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/src 1 undefined Config: /user/username/projects/myproject/tsconfig.json WatchType: Wild card directory +Info 10 [00:00:37.000] Plugins were requested but not running in environment that supports 'require'. Nothing will be loaded +Info 11 [00:00:38.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/src/bar.ts 500 undefined WatchType: Closed Script info +Info 12 [00:00:39.000] Starting updateGraphWorker: Project: /user/username/projects/myproject/tsconfig.json +Info 13 [00:00:40.000] FileWatcher:: Added:: WatchInfo: /a/lib/lib.d.ts 500 undefined WatchType: Closed Script info +Info 14 [00:00:41.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/tsconfig.json WatchType: Type roots +Info 15 [00:00:42.000] 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 16 [00:00:43.000] Finishing updateGraphWorker: Project: /user/username/projects/myproject/tsconfig.json Version: 1 structureChanged: true structureIsReused:: Not Elapsed:: *ms +Info 17 [00:00:44.000] Project '/user/username/projects/myproject/tsconfig.json' (Configured) +Info 18 [00:00:45.000] Files (3) /a/lib/lib.d.ts /user/username/projects/myproject/src/bar.ts /user/username/projects/myproject/src/foo.ts @@ -78,20 +78,20 @@ Info 18 [16:00:45.000] Files (3) src/foo.ts Matched by include pattern './src' in 'tsconfig.json' -Info 19 [16:00:46.000] ----------------------------------------------- -Info 20 [16:00:47.000] event: +Info 19 [00:00:46.000] ----------------------------------------------- +Info 20 [00:00:47.000] event: {"seq":0,"type":"event","event":"projectLoadingFinish","body":{"projectName":"/user/username/projects/myproject/tsconfig.json"}} -Info 21 [16:00:48.000] event: +Info 21 [00:00:48.000] event: {"seq":0,"type":"event","event":"telemetry","body":{"telemetryEventName":"projectInfo","payload":{"projectId":"4a33d78ee40d836c4f4e64c59aed976628aea0013be9585c5ff171dfc41baf98","fileStats":{"js":0,"jsSize":0,"jsx":0,"jsxSize":0,"ts":2,"tsSize":50,"tsx":0,"tsxSize":0,"dts":1,"dtsSize":334,"deferred":0,"deferredSize":0},"compilerOptions":{},"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 22 [16:00:49.000] event: +Info 22 [00:00:49.000] event: {"seq":0,"type":"event","event":"configFileDiag","body":{"triggerFile":"/user/username/projects/myproject/src/foo.ts","configFile":"/user/username/projects/myproject/tsconfig.json","diagnostics":[]}} -Info 23 [16:00:50.000] Project '/user/username/projects/myproject/tsconfig.json' (Configured) -Info 23 [16:00:51.000] Files (3) +Info 23 [00:00:50.000] Project '/user/username/projects/myproject/tsconfig.json' (Configured) +Info 23 [00:00:51.000] Files (3) -Info 23 [16:00:52.000] ----------------------------------------------- -Info 23 [16:00:53.000] Open files: -Info 23 [16:00:54.000] FileName: /user/username/projects/myproject/src/foo.ts ProjectRootPath: /user/username/projects/myproject -Info 23 [16:00:55.000] Projects: /user/username/projects/myproject/tsconfig.json +Info 23 [00:00:52.000] ----------------------------------------------- +Info 23 [00:00:53.000] Open files: +Info 23 [00:00:54.000] FileName: /user/username/projects/myproject/src/foo.ts ProjectRootPath: /user/username/projects/myproject +Info 23 [00:00:55.000] Projects: /user/username/projects/myproject/tsconfig.json After request PolledWatches:: @@ -110,11 +110,11 @@ FsWatchesRecursive:: /user/username/projects/myproject/src: {} -Info 23 [16:00:56.000] response: +Info 23 [00:00:56.000] response: { "responseRequired": false } -Info 24 [16:00:57.000] request: +Info 24 [00:00:57.000] request: { "command": "open", "arguments": { @@ -143,26 +143,26 @@ FsWatchesRecursive:: /user/username/projects/myproject/src: {} -Info 25 [16:00:58.000] Search path: /user/username/projects/myproject/src/sub -Info 26 [16:00:59.000] For info: /user/username/projects/myproject/src/sub/fooBar.ts :: Config file name: /user/username/projects/myproject/tsconfig.json -Info 27 [16:01:00.000] event: +Info 25 [00:00:58.000] Search path: /user/username/projects/myproject/src/sub +Info 26 [00:00:59.000] For info: /user/username/projects/myproject/src/sub/fooBar.ts :: Config file name: /user/username/projects/myproject/tsconfig.json +Info 27 [00:01:00.000] event: {"seq":0,"type":"event","event":"configFileDiag","body":{"triggerFile":"/user/username/projects/myproject/src/sub/fooBar.ts","configFile":"/user/username/projects/myproject/tsconfig.json","diagnostics":[]}} -Info 28 [16:01:01.000] Plugins were requested but not running in environment that supports 'require'. Nothing will be loaded -Info 29 [16:01:02.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/src/sub/tsconfig.json 2000 undefined WatchType: Config file for the inferred project root -Info 30 [16:01:03.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/src/sub/jsconfig.json 2000 undefined WatchType: Config file for the inferred project root -Info 31 [16:01:04.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/src/tsconfig.json 2000 undefined WatchType: Config file for the inferred project root -Info 32 [16:01:05.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/src/jsconfig.json 2000 undefined WatchType: Config file for the inferred project root -Info 33 [16:01:06.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/jsconfig.json 2000 undefined WatchType: Config file for the inferred project root -Info 34 [16:01:07.000] Starting updateGraphWorker: Project: /dev/null/inferredProject1* -Info 35 [16:01:08.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/src/sub/node_modules/@types 1 undefined Project: /dev/null/inferredProject1* WatchType: Type roots -Info 36 [16:01:09.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/src/sub/node_modules/@types 1 undefined Project: /dev/null/inferredProject1* WatchType: Type roots -Info 37 [16:01:10.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/src/node_modules/@types 1 undefined Project: /dev/null/inferredProject1* WatchType: Type roots -Info 38 [16:01:11.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/src/node_modules/@types 1 undefined Project: /dev/null/inferredProject1* WatchType: Type roots -Info 39 [16:01:12.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /dev/null/inferredProject1* WatchType: Type roots -Info 40 [16:01:13.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /dev/null/inferredProject1* WatchType: Type roots -Info 41 [16:01:14.000] Finishing updateGraphWorker: Project: /dev/null/inferredProject1* Version: 1 structureChanged: true structureIsReused:: Not Elapsed:: *ms -Info 42 [16:01:15.000] Project '/dev/null/inferredProject1*' (Inferred) -Info 43 [16:01:16.000] Files (2) +Info 28 [00:01:01.000] Plugins were requested but not running in environment that supports 'require'. Nothing will be loaded +Info 29 [00:01:02.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/src/sub/tsconfig.json 2000 undefined WatchType: Config file for the inferred project root +Info 30 [00:01:03.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/src/sub/jsconfig.json 2000 undefined WatchType: Config file for the inferred project root +Info 31 [00:01:04.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/src/tsconfig.json 2000 undefined WatchType: Config file for the inferred project root +Info 32 [00:01:05.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/src/jsconfig.json 2000 undefined WatchType: Config file for the inferred project root +Info 33 [00:01:06.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/jsconfig.json 2000 undefined WatchType: Config file for the inferred project root +Info 34 [00:01:07.000] Starting updateGraphWorker: Project: /dev/null/inferredProject1* +Info 35 [00:01:08.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/src/sub/node_modules/@types 1 undefined Project: /dev/null/inferredProject1* WatchType: Type roots +Info 36 [00:01:09.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/src/sub/node_modules/@types 1 undefined Project: /dev/null/inferredProject1* WatchType: Type roots +Info 37 [00:01:10.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/src/node_modules/@types 1 undefined Project: /dev/null/inferredProject1* WatchType: Type roots +Info 38 [00:01:11.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/src/node_modules/@types 1 undefined Project: /dev/null/inferredProject1* WatchType: Type roots +Info 39 [00:01:12.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /dev/null/inferredProject1* WatchType: Type roots +Info 40 [00:01:13.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /dev/null/inferredProject1* WatchType: Type roots +Info 41 [00:01:14.000] Finishing updateGraphWorker: Project: /dev/null/inferredProject1* Version: 1 structureChanged: true structureIsReused:: Not Elapsed:: *ms +Info 42 [00:01:15.000] Project '/dev/null/inferredProject1*' (Inferred) +Info 43 [00:01:16.000] Files (2) /a/lib/lib.d.ts /user/username/projects/myproject/src/sub/fooBar.ts @@ -172,20 +172,20 @@ Info 43 [16:01:16.000] Files (2) fooBar.ts Root file specified for compilation -Info 44 [16:01:17.000] ----------------------------------------------- -Info 45 [16:01:18.000] Project '/user/username/projects/myproject/tsconfig.json' (Configured) -Info 45 [16:01:19.000] Files (3) +Info 44 [00:01:17.000] ----------------------------------------------- +Info 45 [00:01:18.000] Project '/user/username/projects/myproject/tsconfig.json' (Configured) +Info 45 [00:01:19.000] Files (3) -Info 45 [16:01:20.000] ----------------------------------------------- -Info 45 [16:01:21.000] Project '/dev/null/inferredProject1*' (Inferred) -Info 45 [16:01:22.000] Files (2) +Info 45 [00:01:20.000] ----------------------------------------------- +Info 45 [00:01:21.000] Project '/dev/null/inferredProject1*' (Inferred) +Info 45 [00:01:22.000] Files (2) -Info 45 [16:01:23.000] ----------------------------------------------- -Info 45 [16:01:24.000] Open files: -Info 45 [16:01:25.000] FileName: /user/username/projects/myproject/src/foo.ts ProjectRootPath: /user/username/projects/myproject -Info 45 [16:01:26.000] Projects: /user/username/projects/myproject/tsconfig.json -Info 45 [16:01:27.000] FileName: /user/username/projects/myproject/src/sub/fooBar.ts ProjectRootPath: /user/username/projects/myproject -Info 45 [16:01:28.000] Projects: /dev/null/inferredProject1* +Info 45 [00:01:23.000] ----------------------------------------------- +Info 45 [00:01:24.000] Open files: +Info 45 [00:01:25.000] FileName: /user/username/projects/myproject/src/foo.ts ProjectRootPath: /user/username/projects/myproject +Info 45 [00:01:26.000] Projects: /user/username/projects/myproject/tsconfig.json +Info 45 [00:01:27.000] FileName: /user/username/projects/myproject/src/sub/fooBar.ts ProjectRootPath: /user/username/projects/myproject +Info 45 [00:01:28.000] Projects: /dev/null/inferredProject1* After request PolledWatches:: @@ -218,14 +218,14 @@ FsWatchesRecursive:: /user/username/projects/myproject/src: {} -Info 45 [16:01:29.000] response: +Info 45 [00:01:29.000] response: { "responseRequired": false } -Info 46 [16:01:32.000] DirectoryWatcher:: Triggered with /user/username/projects/myproject/src/sub/fooBar.ts :: WatchInfo: /user/username/projects/myproject/src 1 undefined Config: /user/username/projects/myproject/tsconfig.json WatchType: Wild card directory -Info 47 [16:01:33.000] Project: /user/username/projects/myproject/tsconfig.json Detected excluded file: /user/username/projects/myproject/src/sub/fooBar.ts -Info 48 [16:01:34.000] Elapsed:: *ms DirectoryWatcher:: Triggered with /user/username/projects/myproject/src/sub/fooBar.ts :: WatchInfo: /user/username/projects/myproject/src 1 undefined Config: /user/username/projects/myproject/tsconfig.json WatchType: Wild card directory -Info 49 [16:01:35.000] request: +Info 46 [00:01:32.000] DirectoryWatcher:: Triggered with /user/username/projects/myproject/src/sub/fooBar.ts :: WatchInfo: /user/username/projects/myproject/src 1 undefined Config: /user/username/projects/myproject/tsconfig.json WatchType: Wild card directory +Info 47 [00:01:33.000] Project: /user/username/projects/myproject/tsconfig.json Detected excluded file: /user/username/projects/myproject/src/sub/fooBar.ts +Info 48 [00:01:34.000] Elapsed:: *ms DirectoryWatcher:: Triggered with /user/username/projects/myproject/src/sub/fooBar.ts :: WatchInfo: /user/username/projects/myproject/src 1 undefined Config: /user/username/projects/myproject/tsconfig.json WatchType: Wild card directory +Info 49 [00:01:35.000] request: { "command": "geterr", "arguments": { @@ -305,7 +305,7 @@ FsWatchesRecursive:: /user/username/projects/myproject/src: {} -Info 50 [16:01:36.000] response: +Info 50 [00:01:36.000] response: { "responseRequired": false } @@ -373,7 +373,7 @@ FsWatchesRecursive:: /user/username/projects/myproject/src: {} -Info 51 [16:01:37.000] event: +Info 51 [00:01:37.000] event: {"seq":0,"type":"event","event":"syntaxDiag","body":{"file":"/user/username/projects/myproject/src/sub/fooBar.ts","diagnostics":[]}} After running timeout callback1 @@ -439,7 +439,7 @@ FsWatchesRecursive:: /user/username/projects/myproject/src: {} -Info 52 [16:01:38.000] event: +Info 52 [00:01:38.000] event: {"seq":0,"type":"event","event":"semanticDiag","body":{"file":"/user/username/projects/myproject/src/sub/fooBar.ts","diagnostics":[]}} Before running immediate callbacks and checking length (1) @@ -505,7 +505,7 @@ FsWatchesRecursive:: /user/username/projects/myproject/src: {} -Info 53 [16:01:39.000] event: +Info 53 [00:01:39.000] event: {"seq":0,"type":"event","event":"suggestionDiag","body":{"file":"/user/username/projects/myproject/src/sub/fooBar.ts","diagnostics":[]}} Before running immediate callbacks and checking length (1) @@ -603,7 +603,7 @@ FsWatchesRecursive:: /user/username/projects/myproject/src: {} -Info 54 [16:01:40.000] event: +Info 54 [00:01:40.000] event: {"seq":0,"type":"event","event":"syntaxDiag","body":{"file":"/user/username/projects/myproject/src/foo.ts","diagnostics":[]}} After running timeout callback2 @@ -669,7 +669,7 @@ FsWatchesRecursive:: /user/username/projects/myproject/src: {} -Info 55 [16:01:41.000] event: +Info 55 [00:01:41.000] event: {"seq":0,"type":"event","event":"semanticDiag","body":{"file":"/user/username/projects/myproject/src/foo.ts","diagnostics":[]}} Before running immediate callbacks and checking length (1) @@ -735,9 +735,9 @@ FsWatchesRecursive:: /user/username/projects/myproject/src: {} -Info 56 [16:01:42.000] event: +Info 56 [00:01:42.000] event: {"seq":0,"type":"event","event":"suggestionDiag","body":{"file":"/user/username/projects/myproject/src/foo.ts","diagnostics":[]}} -Info 57 [16:01:43.000] event: +Info 57 [00:01:43.000] event: {"seq":0,"type":"event","event":"requestCompleted","body":{"request_seq":3}} Before running immediate callbacks and checking length (1) 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 d9add45901469..03c27d7e7d802 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 @@ -1,5 +1,5 @@ -Info 0 [16:00:27.000] Provided types map file "/a/lib/typesMap.json" doesn't exist -Info 1 [16:00:28.000] request: +Info 0 [00:00:27.000] Provided types map file "/a/lib/typesMap.json" doesn't exist +Info 1 [00:00:28.000] request: { "command": "open", "arguments": { @@ -40,13 +40,13 @@ FsWatches:: FsWatchesRecursive:: -Info 2 [16:00:29.000] Search path: /user/username/projects/myproject/src -Info 3 [16:00:30.000] For info: /user/username/projects/myproject/src/foo.ts :: Config file name: /user/username/projects/myproject/tsconfig.json -Info 4 [16:00:31.000] Creating configuration project /user/username/projects/myproject/tsconfig.json -Info 5 [16:00:32.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/tsconfig.json 2000 undefined Project: /user/username/projects/myproject/tsconfig.json WatchType: Config file -Info 6 [16:00:33.000] event: +Info 2 [00:00:29.000] Search path: /user/username/projects/myproject/src +Info 3 [00:00:30.000] For info: /user/username/projects/myproject/src/foo.ts :: Config file name: /user/username/projects/myproject/tsconfig.json +Info 4 [00:00:31.000] Creating configuration project /user/username/projects/myproject/tsconfig.json +Info 5 [00:00:32.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/tsconfig.json 2000 undefined Project: /user/username/projects/myproject/tsconfig.json WatchType: Config file +Info 6 [00:00:33.000] event: {"seq":0,"type":"event","event":"projectLoadingStart","body":{"projectName":"/user/username/projects/myproject/tsconfig.json","reason":"Creating possible configured project for /user/username/projects/myproject/src/foo.ts to open"}} -Info 7 [16:00:34.000] Config: /user/username/projects/myproject/tsconfig.json : { +Info 7 [00:00:34.000] Config: /user/username/projects/myproject/tsconfig.json : { "rootNames": [ "/user/username/projects/myproject/src/bar.ts", "/user/username/projects/myproject/src/foo.ts" @@ -55,17 +55,17 @@ Info 7 [16:00:34.000] Config: /user/username/projects/myproject/tsconfig.json "configFilePath": "/user/username/projects/myproject/tsconfig.json" } } -Info 8 [16:00:35.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/src 1 undefined Config: /user/username/projects/myproject/tsconfig.json WatchType: Wild card directory -Info 9 [16:00:36.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/src 1 undefined Config: /user/username/projects/myproject/tsconfig.json WatchType: Wild card directory -Info 10 [16:00:37.000] Plugins were requested but not running in environment that supports 'require'. Nothing will be loaded -Info 11 [16:00:38.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/src/bar.ts 500 undefined WatchType: Closed Script info -Info 12 [16:00:39.000] Starting updateGraphWorker: Project: /user/username/projects/myproject/tsconfig.json -Info 13 [16:00:40.000] FileWatcher:: Added:: WatchInfo: /a/lib/lib.d.ts 500 undefined WatchType: Closed Script info -Info 14 [16:00:41.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/tsconfig.json WatchType: Type roots -Info 15 [16:00:42.000] 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 16 [16:00:43.000] Finishing updateGraphWorker: Project: /user/username/projects/myproject/tsconfig.json Version: 1 structureChanged: true structureIsReused:: Not Elapsed:: *ms -Info 17 [16:00:44.000] Project '/user/username/projects/myproject/tsconfig.json' (Configured) -Info 18 [16:00:45.000] Files (3) +Info 8 [00:00:35.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/src 1 undefined Config: /user/username/projects/myproject/tsconfig.json WatchType: Wild card directory +Info 9 [00:00:36.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/src 1 undefined Config: /user/username/projects/myproject/tsconfig.json WatchType: Wild card directory +Info 10 [00:00:37.000] Plugins were requested but not running in environment that supports 'require'. Nothing will be loaded +Info 11 [00:00:38.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/src/bar.ts 500 undefined WatchType: Closed Script info +Info 12 [00:00:39.000] Starting updateGraphWorker: Project: /user/username/projects/myproject/tsconfig.json +Info 13 [00:00:40.000] FileWatcher:: Added:: WatchInfo: /a/lib/lib.d.ts 500 undefined WatchType: Closed Script info +Info 14 [00:00:41.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/tsconfig.json WatchType: Type roots +Info 15 [00:00:42.000] 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 16 [00:00:43.000] Finishing updateGraphWorker: Project: /user/username/projects/myproject/tsconfig.json Version: 1 structureChanged: true structureIsReused:: Not Elapsed:: *ms +Info 17 [00:00:44.000] Project '/user/username/projects/myproject/tsconfig.json' (Configured) +Info 18 [00:00:45.000] Files (3) /a/lib/lib.d.ts /user/username/projects/myproject/src/bar.ts /user/username/projects/myproject/src/foo.ts @@ -78,20 +78,20 @@ Info 18 [16:00:45.000] Files (3) src/foo.ts Matched by include pattern './src' in 'tsconfig.json' -Info 19 [16:00:46.000] ----------------------------------------------- -Info 20 [16:00:47.000] event: +Info 19 [00:00:46.000] ----------------------------------------------- +Info 20 [00:00:47.000] event: {"seq":0,"type":"event","event":"projectLoadingFinish","body":{"projectName":"/user/username/projects/myproject/tsconfig.json"}} -Info 21 [16:00:48.000] event: +Info 21 [00:00:48.000] event: {"seq":0,"type":"event","event":"telemetry","body":{"telemetryEventName":"projectInfo","payload":{"projectId":"4a33d78ee40d836c4f4e64c59aed976628aea0013be9585c5ff171dfc41baf98","fileStats":{"js":0,"jsSize":0,"jsx":0,"jsxSize":0,"ts":2,"tsSize":50,"tsx":0,"tsxSize":0,"dts":1,"dtsSize":334,"deferred":0,"deferredSize":0},"compilerOptions":{},"typeAcquisition":{"enable":false,"include":false,"exclude":false},"extends":false,"files":false,"include":true,"exclude":false,"compileOnSave":false,"configFileName":"tsconfig.json","projectType":"configured","languageServiceEnabled":true,"version":"FakeVersion"}}} -Info 22 [16:00:49.000] event: +Info 22 [00:00:49.000] event: {"seq":0,"type":"event","event":"configFileDiag","body":{"triggerFile":"/user/username/projects/myproject/src/foo.ts","configFile":"/user/username/projects/myproject/tsconfig.json","diagnostics":[]}} -Info 23 [16:00:50.000] Project '/user/username/projects/myproject/tsconfig.json' (Configured) -Info 23 [16:00:51.000] Files (3) +Info 23 [00:00:50.000] Project '/user/username/projects/myproject/tsconfig.json' (Configured) +Info 23 [00:00:51.000] Files (3) -Info 23 [16:00:52.000] ----------------------------------------------- -Info 23 [16:00:53.000] Open files: -Info 23 [16:00:54.000] FileName: /user/username/projects/myproject/src/foo.ts ProjectRootPath: /user/username/projects/myproject -Info 23 [16:00:55.000] Projects: /user/username/projects/myproject/tsconfig.json +Info 23 [00:00:52.000] ----------------------------------------------- +Info 23 [00:00:53.000] Open files: +Info 23 [00:00:54.000] FileName: /user/username/projects/myproject/src/foo.ts ProjectRootPath: /user/username/projects/myproject +Info 23 [00:00:55.000] Projects: /user/username/projects/myproject/tsconfig.json After request PolledWatches:: @@ -110,11 +110,11 @@ FsWatchesRecursive:: /user/username/projects/myproject/src: {} -Info 23 [16:00:56.000] response: +Info 23 [00:00:56.000] response: { "responseRequired": false } -Info 24 [16:00:57.000] request: +Info 24 [00:00:57.000] request: { "command": "open", "arguments": { @@ -143,26 +143,26 @@ FsWatchesRecursive:: /user/username/projects/myproject/src: {} -Info 25 [16:00:58.000] Search path: /user/username/projects/myproject/src/sub -Info 26 [16:00:59.000] For info: /user/username/projects/myproject/src/sub/fooBar.ts :: Config file name: /user/username/projects/myproject/tsconfig.json -Info 27 [16:01:00.000] event: +Info 25 [00:00:58.000] Search path: /user/username/projects/myproject/src/sub +Info 26 [00:00:59.000] For info: /user/username/projects/myproject/src/sub/fooBar.ts :: Config file name: /user/username/projects/myproject/tsconfig.json +Info 27 [00:01:00.000] event: {"seq":0,"type":"event","event":"configFileDiag","body":{"triggerFile":"/user/username/projects/myproject/src/sub/fooBar.ts","configFile":"/user/username/projects/myproject/tsconfig.json","diagnostics":[]}} -Info 28 [16:01:01.000] Plugins were requested but not running in environment that supports 'require'. Nothing will be loaded -Info 29 [16:01:02.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/src/sub/tsconfig.json 2000 undefined WatchType: Config file for the inferred project root -Info 30 [16:01:03.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/src/sub/jsconfig.json 2000 undefined WatchType: Config file for the inferred project root -Info 31 [16:01:04.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/src/tsconfig.json 2000 undefined WatchType: Config file for the inferred project root -Info 32 [16:01:05.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/src/jsconfig.json 2000 undefined WatchType: Config file for the inferred project root -Info 33 [16:01:06.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/jsconfig.json 2000 undefined WatchType: Config file for the inferred project root -Info 34 [16:01:07.000] Starting updateGraphWorker: Project: /dev/null/inferredProject1* -Info 35 [16:01:08.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/src/sub/node_modules/@types 1 undefined Project: /dev/null/inferredProject1* WatchType: Type roots -Info 36 [16:01:09.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/src/sub/node_modules/@types 1 undefined Project: /dev/null/inferredProject1* WatchType: Type roots -Info 37 [16:01:10.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/src/node_modules/@types 1 undefined Project: /dev/null/inferredProject1* WatchType: Type roots -Info 38 [16:01:11.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/src/node_modules/@types 1 undefined Project: /dev/null/inferredProject1* WatchType: Type roots -Info 39 [16:01:12.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /dev/null/inferredProject1* WatchType: Type roots -Info 40 [16:01:13.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /dev/null/inferredProject1* WatchType: Type roots -Info 41 [16:01:14.000] Finishing updateGraphWorker: Project: /dev/null/inferredProject1* Version: 1 structureChanged: true structureIsReused:: Not Elapsed:: *ms -Info 42 [16:01:15.000] Project '/dev/null/inferredProject1*' (Inferred) -Info 43 [16:01:16.000] Files (2) +Info 28 [00:01:01.000] Plugins were requested but not running in environment that supports 'require'. Nothing will be loaded +Info 29 [00:01:02.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/src/sub/tsconfig.json 2000 undefined WatchType: Config file for the inferred project root +Info 30 [00:01:03.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/src/sub/jsconfig.json 2000 undefined WatchType: Config file for the inferred project root +Info 31 [00:01:04.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/src/tsconfig.json 2000 undefined WatchType: Config file for the inferred project root +Info 32 [00:01:05.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/src/jsconfig.json 2000 undefined WatchType: Config file for the inferred project root +Info 33 [00:01:06.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/jsconfig.json 2000 undefined WatchType: Config file for the inferred project root +Info 34 [00:01:07.000] Starting updateGraphWorker: Project: /dev/null/inferredProject1* +Info 35 [00:01:08.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/src/sub/node_modules/@types 1 undefined Project: /dev/null/inferredProject1* WatchType: Type roots +Info 36 [00:01:09.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/src/sub/node_modules/@types 1 undefined Project: /dev/null/inferredProject1* WatchType: Type roots +Info 37 [00:01:10.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/src/node_modules/@types 1 undefined Project: /dev/null/inferredProject1* WatchType: Type roots +Info 38 [00:01:11.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/src/node_modules/@types 1 undefined Project: /dev/null/inferredProject1* WatchType: Type roots +Info 39 [00:01:12.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /dev/null/inferredProject1* WatchType: Type roots +Info 40 [00:01:13.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /dev/null/inferredProject1* WatchType: Type roots +Info 41 [00:01:14.000] Finishing updateGraphWorker: Project: /dev/null/inferredProject1* Version: 1 structureChanged: true structureIsReused:: Not Elapsed:: *ms +Info 42 [00:01:15.000] Project '/dev/null/inferredProject1*' (Inferred) +Info 43 [00:01:16.000] Files (2) /a/lib/lib.d.ts /user/username/projects/myproject/src/sub/fooBar.ts @@ -172,20 +172,20 @@ Info 43 [16:01:16.000] Files (2) fooBar.ts Root file specified for compilation -Info 44 [16:01:17.000] ----------------------------------------------- -Info 45 [16:01:18.000] Project '/user/username/projects/myproject/tsconfig.json' (Configured) -Info 45 [16:01:19.000] Files (3) +Info 44 [00:01:17.000] ----------------------------------------------- +Info 45 [00:01:18.000] Project '/user/username/projects/myproject/tsconfig.json' (Configured) +Info 45 [00:01:19.000] Files (3) -Info 45 [16:01:20.000] ----------------------------------------------- -Info 45 [16:01:21.000] Project '/dev/null/inferredProject1*' (Inferred) -Info 45 [16:01:22.000] Files (2) +Info 45 [00:01:20.000] ----------------------------------------------- +Info 45 [00:01:21.000] Project '/dev/null/inferredProject1*' (Inferred) +Info 45 [00:01:22.000] Files (2) -Info 45 [16:01:23.000] ----------------------------------------------- -Info 45 [16:01:24.000] Open files: -Info 45 [16:01:25.000] FileName: /user/username/projects/myproject/src/foo.ts ProjectRootPath: /user/username/projects/myproject -Info 45 [16:01:26.000] Projects: /user/username/projects/myproject/tsconfig.json -Info 45 [16:01:27.000] FileName: /user/username/projects/myproject/src/sub/fooBar.ts ProjectRootPath: /user/username/projects/myproject -Info 45 [16:01:28.000] Projects: /dev/null/inferredProject1* +Info 45 [00:01:23.000] ----------------------------------------------- +Info 45 [00:01:24.000] Open files: +Info 45 [00:01:25.000] FileName: /user/username/projects/myproject/src/foo.ts ProjectRootPath: /user/username/projects/myproject +Info 45 [00:01:26.000] Projects: /user/username/projects/myproject/tsconfig.json +Info 45 [00:01:27.000] FileName: /user/username/projects/myproject/src/sub/fooBar.ts ProjectRootPath: /user/username/projects/myproject +Info 45 [00:01:28.000] Projects: /dev/null/inferredProject1* After request PolledWatches:: @@ -218,15 +218,15 @@ FsWatchesRecursive:: /user/username/projects/myproject/src: {} -Info 45 [16:01:29.000] response: +Info 45 [00:01:29.000] response: { "responseRequired": false } -Info 46 [16:01:32.000] DirectoryWatcher:: Triggered with /user/username/projects/myproject/src/sub/fooBar.ts :: WatchInfo: /user/username/projects/myproject/src 1 undefined Config: /user/username/projects/myproject/tsconfig.json WatchType: Wild card directory -Info 47 [16:01:33.000] Scheduled: /user/username/projects/myproject/tsconfig.json -Info 48 [16:01:34.000] Scheduled: *ensureProjectForOpenFiles* -Info 49 [16:01:35.000] Elapsed:: *ms DirectoryWatcher:: Triggered with /user/username/projects/myproject/src/sub/fooBar.ts :: WatchInfo: /user/username/projects/myproject/src 1 undefined Config: /user/username/projects/myproject/tsconfig.json WatchType: Wild card directory -Info 50 [16:01:36.000] request: +Info 46 [00:01:32.000] DirectoryWatcher:: Triggered with /user/username/projects/myproject/src/sub/fooBar.ts :: WatchInfo: /user/username/projects/myproject/src 1 undefined Config: /user/username/projects/myproject/tsconfig.json WatchType: Wild card directory +Info 47 [00:01:33.000] Scheduled: /user/username/projects/myproject/tsconfig.json +Info 48 [00:01:34.000] Scheduled: *ensureProjectForOpenFiles* +Info 49 [00:01:35.000] Elapsed:: *ms DirectoryWatcher:: Triggered with /user/username/projects/myproject/src/sub/fooBar.ts :: WatchInfo: /user/username/projects/myproject/src 1 undefined Config: /user/username/projects/myproject/tsconfig.json WatchType: Wild card directory +Info 50 [00:01:36.000] request: { "command": "geterr", "arguments": { @@ -306,7 +306,7 @@ FsWatchesRecursive:: /user/username/projects/myproject/src: {} -Info 51 [16:01:37.000] response: +Info 51 [00:01:37.000] response: { "responseRequired": false } @@ -374,7 +374,7 @@ FsWatchesRecursive:: /user/username/projects/myproject/src: {} -Info 52 [16:01:38.000] event: +Info 52 [00:01:38.000] event: {"seq":0,"type":"event","event":"syntaxDiag","body":{"file":"/user/username/projects/myproject/src/sub/fooBar.ts","diagnostics":[]}} After running timeout callback3 @@ -440,7 +440,7 @@ FsWatchesRecursive:: /user/username/projects/myproject/src: {} -Info 53 [16:01:39.000] event: +Info 53 [00:01:39.000] event: {"seq":0,"type":"event","event":"semanticDiag","body":{"file":"/user/username/projects/myproject/src/sub/fooBar.ts","diagnostics":[]}} Before running immediate callbacks and checking length (1) @@ -506,7 +506,7 @@ FsWatchesRecursive:: /user/username/projects/myproject/src: {} -Info 54 [16:01:40.000] event: +Info 54 [00:01:40.000] event: {"seq":0,"type":"event","event":"suggestionDiag","body":{"file":"/user/username/projects/myproject/src/sub/fooBar.ts","diagnostics":[]}} Before running immediate callbacks and checking length (1) @@ -604,15 +604,15 @@ FsWatchesRecursive:: /user/username/projects/myproject/src: {} -Info 55 [16:01:41.000] FileWatcher:: Close:: WatchInfo: /user/username/projects/myproject/src/sub/tsconfig.json 2000 undefined WatchType: Config file for the inferred project root -Info 56 [16:01:42.000] FileWatcher:: Close:: WatchInfo: /user/username/projects/myproject/src/sub/jsconfig.json 2000 undefined WatchType: Config file for the inferred project root -Info 57 [16:01:43.000] FileWatcher:: Close:: WatchInfo: /user/username/projects/myproject/src/tsconfig.json 2000 undefined WatchType: Config file for the inferred project root -Info 58 [16:01:44.000] FileWatcher:: Close:: WatchInfo: /user/username/projects/myproject/src/jsconfig.json 2000 undefined WatchType: Config file for the inferred project root -Info 59 [16:01:45.000] FileWatcher:: Close:: WatchInfo: /user/username/projects/myproject/jsconfig.json 2000 undefined WatchType: Config file for the inferred project root -Info 60 [16:01:46.000] Starting updateGraphWorker: Project: /user/username/projects/myproject/tsconfig.json -Info 61 [16:01:47.000] Finishing updateGraphWorker: Project: /user/username/projects/myproject/tsconfig.json Version: 2 structureChanged: true structureIsReused:: Not Elapsed:: *ms -Info 62 [16:01:48.000] Project '/user/username/projects/myproject/tsconfig.json' (Configured) -Info 63 [16:01:49.000] Files (4) +Info 55 [00:01:41.000] FileWatcher:: Close:: WatchInfo: /user/username/projects/myproject/src/sub/tsconfig.json 2000 undefined WatchType: Config file for the inferred project root +Info 56 [00:01:42.000] FileWatcher:: Close:: WatchInfo: /user/username/projects/myproject/src/sub/jsconfig.json 2000 undefined WatchType: Config file for the inferred project root +Info 57 [00:01:43.000] FileWatcher:: Close:: WatchInfo: /user/username/projects/myproject/src/tsconfig.json 2000 undefined WatchType: Config file for the inferred project root +Info 58 [00:01:44.000] FileWatcher:: Close:: WatchInfo: /user/username/projects/myproject/src/jsconfig.json 2000 undefined WatchType: Config file for the inferred project root +Info 59 [00:01:45.000] FileWatcher:: Close:: WatchInfo: /user/username/projects/myproject/jsconfig.json 2000 undefined WatchType: Config file for the inferred project root +Info 60 [00:01:46.000] Starting updateGraphWorker: Project: /user/username/projects/myproject/tsconfig.json +Info 61 [00:01:47.000] Finishing updateGraphWorker: Project: /user/username/projects/myproject/tsconfig.json Version: 2 structureChanged: true structureIsReused:: Not Elapsed:: *ms +Info 62 [00:01:48.000] Project '/user/username/projects/myproject/tsconfig.json' (Configured) +Info 63 [00:01:49.000] Files (4) /a/lib/lib.d.ts /user/username/projects/myproject/src/bar.ts /user/username/projects/myproject/src/foo.ts @@ -628,8 +628,8 @@ Info 63 [16:01:49.000] Files (4) src/sub/fooBar.ts Matched by include pattern './src' in 'tsconfig.json' -Info 64 [16:01:50.000] ----------------------------------------------- -Info 65 [16:01:51.000] event: +Info 64 [00:01:50.000] ----------------------------------------------- +Info 65 [00:01:51.000] event: {"seq":0,"type":"event","event":"syntaxDiag","body":{"file":"/user/username/projects/myproject/src/foo.ts","diagnostics":[]}} After running timeout callback4 @@ -675,7 +675,7 @@ FsWatchesRecursive:: /user/username/projects/myproject/src: {} -Info 66 [16:01:52.000] event: +Info 66 [00:01:52.000] event: {"seq":0,"type":"event","event":"semanticDiag","body":{"file":"/user/username/projects/myproject/src/foo.ts","diagnostics":[]}} Before running immediate callbacks and checking length (1) @@ -721,9 +721,9 @@ FsWatchesRecursive:: /user/username/projects/myproject/src: {} -Info 67 [16:01:53.000] event: +Info 67 [00:01:53.000] event: {"seq":0,"type":"event","event":"suggestionDiag","body":{"file":"/user/username/projects/myproject/src/foo.ts","diagnostics":[]}} -Info 68 [16:01:54.000] event: +Info 68 [00:01:54.000] event: {"seq":0,"type":"event","event":"requestCompleted","body":{"request_seq":3}} Before running immediate callbacks and checking length (1) 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 e212ded60e833..47c75f18eb7cf 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 @@ -1,4 +1,4 @@ -Info 0 [16:00:43.000] Provided types map file "/typesMap.json" doesn't exist +Info 0 [00:00:43.000] Provided types map file "/typesMap.json" doesn't exist Creating project service //// [/user/username/rootfolder/a/b/src/file1.ts] import { classc } from "module1" @@ -36,11 +36,11 @@ FsWatches:: FsWatchesRecursive:: -Info 1 [16:00:44.000] Search path: /user/username/rootfolder/a/b/src -Info 2 [16:00:45.000] For info: /user/username/rootfolder/a/b/src/file1.ts :: Config file name: /user/username/rootfolder/a/b/src/tsconfig.json -Info 3 [16:00:46.000] Creating configuration project /user/username/rootfolder/a/b/src/tsconfig.json -Info 4 [16:00:47.000] FileWatcher:: Added:: WatchInfo: /user/username/rootfolder/a/b/src/tsconfig.json 2000 undefined Project: /user/username/rootfolder/a/b/src/tsconfig.json WatchType: Config file -Info 5 [16:00:48.000] Config: /user/username/rootfolder/a/b/src/tsconfig.json : { +Info 1 [00:00:44.000] Search path: /user/username/rootfolder/a/b/src +Info 2 [00:00:45.000] For info: /user/username/rootfolder/a/b/src/file1.ts :: Config file name: /user/username/rootfolder/a/b/src/tsconfig.json +Info 3 [00:00:46.000] Creating configuration project /user/username/rootfolder/a/b/src/tsconfig.json +Info 4 [00:00:47.000] FileWatcher:: Added:: WatchInfo: /user/username/rootfolder/a/b/src/tsconfig.json 2000 undefined Project: /user/username/rootfolder/a/b/src/tsconfig.json WatchType: Config file +Info 5 [00:00:48.000] Config: /user/username/rootfolder/a/b/src/tsconfig.json : { "rootNames": [ "/user/username/rootfolder/a/b/src/file1.ts" ], @@ -48,24 +48,24 @@ Info 5 [16:00:48.000] Config: /user/username/rootfolder/a/b/src/tsconfig.json "configFilePath": "/user/username/rootfolder/a/b/src/tsconfig.json" } } -Info 6 [16:00:49.000] Plugins were requested but not running in environment that supports 'require'. Nothing will be loaded -Info 7 [16:00:50.000] Starting updateGraphWorker: Project: /user/username/rootfolder/a/b/src/tsconfig.json -Info 8 [16:00:51.000] 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 9 [16:00:52.000] 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 10 [16:00:53.000] FileWatcher:: Added:: WatchInfo: /a/lib/lib.d.ts 500 undefined WatchType: Closed Script info -Info 11 [16:00:54.000] 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 12 [16:00:55.000] 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 13 [16:00:56.000] 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 14 [16:00:57.000] 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 15 [16:00:58.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/rootfolder/a/b/src/node_modules/@types 1 undefined Project: /user/username/rootfolder/a/b/src/tsconfig.json WatchType: Type roots -Info 16 [16:00:59.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/rootfolder/a/b/src/node_modules/@types 1 undefined Project: /user/username/rootfolder/a/b/src/tsconfig.json WatchType: Type roots -Info 17 [16:01:00.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/rootfolder/a/b/node_modules/@types 1 undefined Project: /user/username/rootfolder/a/b/src/tsconfig.json WatchType: Type roots -Info 18 [16:01:01.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/rootfolder/a/b/node_modules/@types 1 undefined Project: /user/username/rootfolder/a/b/src/tsconfig.json WatchType: Type roots -Info 19 [16:01:02.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/rootfolder/a/node_modules/@types 1 undefined Project: /user/username/rootfolder/a/b/src/tsconfig.json WatchType: Type roots -Info 20 [16:01:03.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/rootfolder/a/node_modules/@types 1 undefined Project: /user/username/rootfolder/a/b/src/tsconfig.json WatchType: Type roots -Info 21 [16:01:04.000] Finishing updateGraphWorker: Project: /user/username/rootfolder/a/b/src/tsconfig.json Version: 1 structureChanged: true structureIsReused:: Not Elapsed:: *ms -Info 22 [16:01:05.000] Project '/user/username/rootfolder/a/b/src/tsconfig.json' (Configured) -Info 23 [16:01:06.000] Files (4) +Info 6 [00:00:49.000] Plugins were requested but not running in environment that supports 'require'. Nothing will be loaded +Info 7 [00:00:50.000] Starting updateGraphWorker: Project: /user/username/rootfolder/a/b/src/tsconfig.json +Info 8 [00:00:51.000] 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 9 [00:00:52.000] 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 10 [00:00:53.000] FileWatcher:: Added:: WatchInfo: /a/lib/lib.d.ts 500 undefined WatchType: Closed Script info +Info 11 [00:00:54.000] 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 12 [00:00:55.000] 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 13 [00:00:56.000] 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 14 [00:00:57.000] 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 15 [00:00:58.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/rootfolder/a/b/src/node_modules/@types 1 undefined Project: /user/username/rootfolder/a/b/src/tsconfig.json WatchType: Type roots +Info 16 [00:00:59.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/rootfolder/a/b/src/node_modules/@types 1 undefined Project: /user/username/rootfolder/a/b/src/tsconfig.json WatchType: Type roots +Info 17 [00:01:00.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/rootfolder/a/b/node_modules/@types 1 undefined Project: /user/username/rootfolder/a/b/src/tsconfig.json WatchType: Type roots +Info 18 [00:01:01.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/rootfolder/a/b/node_modules/@types 1 undefined Project: /user/username/rootfolder/a/b/src/tsconfig.json WatchType: Type roots +Info 19 [00:01:02.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/rootfolder/a/node_modules/@types 1 undefined Project: /user/username/rootfolder/a/b/src/tsconfig.json WatchType: Type roots +Info 20 [00:01:03.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/rootfolder/a/node_modules/@types 1 undefined Project: /user/username/rootfolder/a/b/src/tsconfig.json WatchType: Type roots +Info 21 [00:01:04.000] Finishing updateGraphWorker: Project: /user/username/rootfolder/a/b/src/tsconfig.json Version: 1 structureChanged: true structureIsReused:: Not Elapsed:: *ms +Info 22 [00:01:05.000] Project '/user/username/rootfolder/a/b/src/tsconfig.json' (Configured) +Info 23 [00:01:06.000] Files (4) /a/lib/lib.d.ts /user/username/rootfolder/a/b/node_modules/module2/index.d.ts /user/username/rootfolder/a/b/node_modules/module1/index.d.ts @@ -81,11 +81,11 @@ Info 23 [16:01:06.000] Files (4) file1.ts Part of 'files' list in tsconfig.json -Info 24 [16:01:07.000] ----------------------------------------------- -Info 25 [16:01:08.000] Project '/user/username/rootfolder/a/b/src/tsconfig.json' (Configured) -Info 25 [16:01:09.000] Files (4) +Info 24 [00:01:07.000] ----------------------------------------------- +Info 25 [00:01:08.000] Project '/user/username/rootfolder/a/b/src/tsconfig.json' (Configured) +Info 25 [00:01:09.000] Files (4) -Info 25 [16:01:10.000] ----------------------------------------------- -Info 25 [16:01:11.000] Open files: -Info 25 [16:01:12.000] FileName: /user/username/rootfolder/a/b/src/file1.ts ProjectRootPath: undefined -Info 25 [16:01:13.000] Projects: /user/username/rootfolder/a/b/src/tsconfig.json \ No newline at end of file +Info 25 [00:01:10.000] ----------------------------------------------- +Info 25 [00:01:11.000] Open files: +Info 25 [00:01:12.000] FileName: /user/username/rootfolder/a/b/src/file1.ts ProjectRootPath: undefined +Info 25 [00:01:13.000] Projects: /user/username/rootfolder/a/b/src/tsconfig.json \ No newline at end of file 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 6004acc446e5b..9ddd4942572ca 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 @@ -1,4 +1,4 @@ -Info 0 [16:00:35.000] Provided types map file "/typesMap.json" doesn't exist +Info 0 [00:00:35.000] Provided types map file "/typesMap.json" doesn't exist Creating project service //// [/user/username/projects/myproject/extended/alpha.tsconfig.json] {} @@ -31,11 +31,11 @@ FsWatches:: FsWatchesRecursive:: -Info 1 [16:00:36.000] Search path: /user/username/projects/myproject/a -Info 2 [16:00:37.000] For info: /user/username/projects/myproject/a/a.ts :: Config file name: /user/username/projects/myproject/a/tsconfig.json -Info 3 [16:00:38.000] Creating configuration project /user/username/projects/myproject/a/tsconfig.json -Info 4 [16:00:39.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/a/tsconfig.json 2000 undefined Project: /user/username/projects/myproject/a/tsconfig.json WatchType: Config file -Info 5 [16:00:40.000] Config: /user/username/projects/myproject/a/tsconfig.json : { +Info 1 [00:00:36.000] Search path: /user/username/projects/myproject/a +Info 2 [00:00:37.000] For info: /user/username/projects/myproject/a/a.ts :: Config file name: /user/username/projects/myproject/a/tsconfig.json +Info 3 [00:00:38.000] Creating configuration project /user/username/projects/myproject/a/tsconfig.json +Info 4 [00:00:39.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/a/tsconfig.json 2000 undefined Project: /user/username/projects/myproject/a/tsconfig.json WatchType: Config file +Info 5 [00:00:40.000] Config: /user/username/projects/myproject/a/tsconfig.json : { "rootNames": [ "/user/username/projects/myproject/a/a.ts" ], @@ -43,36 +43,36 @@ Info 5 [16:00:40.000] Config: /user/username/projects/myproject/a/tsconfig.js "configFilePath": "/user/username/projects/myproject/a/tsconfig.json" } } -Info 6 [16:00:41.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/extended/alpha.tsconfig.json 2000 undefined Config: /user/username/projects/myproject/a/tsconfig.json WatchType: Extended config file -Info 7 [16:00:42.000] Plugins were requested but not running in environment that supports 'require'. Nothing will be loaded -Info 8 [16:00:43.000] Starting updateGraphWorker: Project: /user/username/projects/myproject/a/tsconfig.json -Info 9 [16:00:44.000] FileWatcher:: Added:: WatchInfo: /a/lib/lib.d.ts 500 undefined Project: /user/username/projects/myproject/a/tsconfig.json WatchType: Missing file -Info 10 [16:00:45.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/a/node_modules/@types 1 undefined Project: /user/username/projects/myproject/a/tsconfig.json WatchType: Type roots -Info 11 [16:00:46.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/a/node_modules/@types 1 undefined Project: /user/username/projects/myproject/a/tsconfig.json WatchType: Type roots -Info 12 [16:00:47.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/a/tsconfig.json WatchType: Type roots -Info 13 [16:00:48.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/a/tsconfig.json WatchType: Type roots -Info 14 [16:00:49.000] Finishing updateGraphWorker: Project: /user/username/projects/myproject/a/tsconfig.json Version: 1 structureChanged: true structureIsReused:: Not Elapsed:: *ms -Info 15 [16:00:50.000] Project '/user/username/projects/myproject/a/tsconfig.json' (Configured) -Info 16 [16:00:51.000] Files (1) +Info 6 [00:00:41.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/extended/alpha.tsconfig.json 2000 undefined Config: /user/username/projects/myproject/a/tsconfig.json WatchType: Extended config file +Info 7 [00:00:42.000] Plugins were requested but not running in environment that supports 'require'. Nothing will be loaded +Info 8 [00:00:43.000] Starting updateGraphWorker: Project: /user/username/projects/myproject/a/tsconfig.json +Info 9 [00:00:44.000] FileWatcher:: Added:: WatchInfo: /a/lib/lib.d.ts 500 undefined Project: /user/username/projects/myproject/a/tsconfig.json WatchType: Missing file +Info 10 [00:00:45.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/a/node_modules/@types 1 undefined Project: /user/username/projects/myproject/a/tsconfig.json WatchType: Type roots +Info 11 [00:00:46.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/a/node_modules/@types 1 undefined Project: /user/username/projects/myproject/a/tsconfig.json WatchType: Type roots +Info 12 [00:00:47.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/a/tsconfig.json WatchType: Type roots +Info 13 [00:00:48.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/a/tsconfig.json WatchType: Type roots +Info 14 [00:00:49.000] Finishing updateGraphWorker: Project: /user/username/projects/myproject/a/tsconfig.json Version: 1 structureChanged: true structureIsReused:: Not Elapsed:: *ms +Info 15 [00:00:50.000] Project '/user/username/projects/myproject/a/tsconfig.json' (Configured) +Info 16 [00:00:51.000] Files (1) /user/username/projects/myproject/a/a.ts a.ts Part of 'files' list in tsconfig.json -Info 17 [16:00:52.000] ----------------------------------------------- -Info 18 [16:00:53.000] Project '/user/username/projects/myproject/a/tsconfig.json' (Configured) -Info 18 [16:00:54.000] Files (1) - -Info 18 [16:00:55.000] ----------------------------------------------- -Info 18 [16:00:56.000] Open files: -Info 18 [16:00:57.000] FileName: /user/username/projects/myproject/a/a.ts ProjectRootPath: undefined -Info 18 [16:00:58.000] Projects: /user/username/projects/myproject/a/tsconfig.json -Info 18 [16:00:59.000] Search path: /user/username/projects/myproject/b -Info 19 [16:01:00.000] For info: /user/username/projects/myproject/b/b.ts :: Config file name: /user/username/projects/myproject/b/tsconfig.json -Info 20 [16:01:01.000] Creating configuration project /user/username/projects/myproject/b/tsconfig.json -Info 21 [16:01:02.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/b/tsconfig.json 2000 undefined Project: /user/username/projects/myproject/b/tsconfig.json WatchType: Config file -Info 22 [16:01:03.000] Config: /user/username/projects/myproject/b/tsconfig.json : { +Info 17 [00:00:52.000] ----------------------------------------------- +Info 18 [00:00:53.000] Project '/user/username/projects/myproject/a/tsconfig.json' (Configured) +Info 18 [00:00:54.000] Files (1) + +Info 18 [00:00:55.000] ----------------------------------------------- +Info 18 [00:00:56.000] Open files: +Info 18 [00:00:57.000] FileName: /user/username/projects/myproject/a/a.ts ProjectRootPath: undefined +Info 18 [00:00:58.000] Projects: /user/username/projects/myproject/a/tsconfig.json +Info 18 [00:00:59.000] Search path: /user/username/projects/myproject/b +Info 19 [00:01:00.000] For info: /user/username/projects/myproject/b/b.ts :: Config file name: /user/username/projects/myproject/b/tsconfig.json +Info 20 [00:01:01.000] Creating configuration project /user/username/projects/myproject/b/tsconfig.json +Info 21 [00:01:02.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/b/tsconfig.json 2000 undefined Project: /user/username/projects/myproject/b/tsconfig.json WatchType: Config file +Info 22 [00:01:03.000] Config: /user/username/projects/myproject/b/tsconfig.json : { "rootNames": [ "/user/username/projects/myproject/b/b.ts" ], @@ -80,42 +80,42 @@ Info 22 [16:01:03.000] Config: /user/username/projects/myproject/b/tsconfig.js "configFilePath": "/user/username/projects/myproject/b/tsconfig.json" } } -Info 23 [16:01:04.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/extended/bravo.tsconfig.json 2000 undefined Config: /user/username/projects/myproject/b/tsconfig.json WatchType: Extended config file -Info 24 [16:01:05.000] Plugins were requested but not running in environment that supports 'require'. Nothing will be loaded -Info 25 [16:01:06.000] Starting updateGraphWorker: Project: /user/username/projects/myproject/b/tsconfig.json -Info 26 [16:01:07.000] FileWatcher:: Added:: WatchInfo: /a/lib/lib.d.ts 500 undefined Project: /user/username/projects/myproject/b/tsconfig.json WatchType: Missing file -Info 27 [16:01:08.000] 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 28 [16:01:09.000] 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 29 [16:01:10.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/b/tsconfig.json WatchType: Type roots -Info 30 [16:01:11.000] 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 31 [16:01:12.000] Finishing updateGraphWorker: Project: /user/username/projects/myproject/b/tsconfig.json Version: 1 structureChanged: true structureIsReused:: Not Elapsed:: *ms -Info 32 [16:01:13.000] Project '/user/username/projects/myproject/b/tsconfig.json' (Configured) -Info 33 [16:01:14.000] Files (1) +Info 23 [00:01:04.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/extended/bravo.tsconfig.json 2000 undefined Config: /user/username/projects/myproject/b/tsconfig.json WatchType: Extended config file +Info 24 [00:01:05.000] Plugins were requested but not running in environment that supports 'require'. Nothing will be loaded +Info 25 [00:01:06.000] Starting updateGraphWorker: Project: /user/username/projects/myproject/b/tsconfig.json +Info 26 [00:01:07.000] FileWatcher:: Added:: WatchInfo: /a/lib/lib.d.ts 500 undefined Project: /user/username/projects/myproject/b/tsconfig.json WatchType: Missing file +Info 27 [00:01:08.000] 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 28 [00:01:09.000] 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 29 [00:01:10.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/b/tsconfig.json WatchType: Type roots +Info 30 [00:01:11.000] 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 31 [00:01:12.000] Finishing updateGraphWorker: Project: /user/username/projects/myproject/b/tsconfig.json Version: 1 structureChanged: true structureIsReused:: Not Elapsed:: *ms +Info 32 [00:01:13.000] Project '/user/username/projects/myproject/b/tsconfig.json' (Configured) +Info 33 [00:01:14.000] Files (1) /user/username/projects/myproject/b/b.ts b.ts Part of 'files' list in tsconfig.json -Info 34 [16:01:15.000] ----------------------------------------------- -Info 35 [16:01:16.000] Project '/user/username/projects/myproject/a/tsconfig.json' (Configured) -Info 35 [16:01:17.000] Files (1) - -Info 35 [16:01:18.000] ----------------------------------------------- -Info 35 [16:01:19.000] Project '/user/username/projects/myproject/b/tsconfig.json' (Configured) -Info 35 [16:01:20.000] Files (1) - -Info 35 [16:01:21.000] ----------------------------------------------- -Info 35 [16:01:22.000] Open files: -Info 35 [16:01:23.000] FileName: /user/username/projects/myproject/a/a.ts ProjectRootPath: undefined -Info 35 [16:01:24.000] Projects: /user/username/projects/myproject/a/tsconfig.json -Info 35 [16:01:25.000] FileName: /user/username/projects/myproject/b/b.ts ProjectRootPath: undefined -Info 35 [16:01:26.000] Projects: /user/username/projects/myproject/b/tsconfig.json -Info 35 [16:01:27.000] Search path: /user/username/projects/myproject/dummy -Info 36 [16:01:28.000] For info: /user/username/projects/myproject/dummy/dummy.ts :: Config file name: /user/username/projects/myproject/dummy/tsconfig.json -Info 37 [16:01:29.000] Creating configuration project /user/username/projects/myproject/dummy/tsconfig.json -Info 38 [16:01:30.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/dummy/tsconfig.json 2000 undefined Project: /user/username/projects/myproject/dummy/tsconfig.json WatchType: Config file -Info 39 [16:01:31.000] Config: /user/username/projects/myproject/dummy/tsconfig.json : { +Info 34 [00:01:15.000] ----------------------------------------------- +Info 35 [00:01:16.000] Project '/user/username/projects/myproject/a/tsconfig.json' (Configured) +Info 35 [00:01:17.000] Files (1) + +Info 35 [00:01:18.000] ----------------------------------------------- +Info 35 [00:01:19.000] Project '/user/username/projects/myproject/b/tsconfig.json' (Configured) +Info 35 [00:01:20.000] Files (1) + +Info 35 [00:01:21.000] ----------------------------------------------- +Info 35 [00:01:22.000] Open files: +Info 35 [00:01:23.000] FileName: /user/username/projects/myproject/a/a.ts ProjectRootPath: undefined +Info 35 [00:01:24.000] Projects: /user/username/projects/myproject/a/tsconfig.json +Info 35 [00:01:25.000] FileName: /user/username/projects/myproject/b/b.ts ProjectRootPath: undefined +Info 35 [00:01:26.000] Projects: /user/username/projects/myproject/b/tsconfig.json +Info 35 [00:01:27.000] Search path: /user/username/projects/myproject/dummy +Info 36 [00:01:28.000] For info: /user/username/projects/myproject/dummy/dummy.ts :: Config file name: /user/username/projects/myproject/dummy/tsconfig.json +Info 37 [00:01:29.000] Creating configuration project /user/username/projects/myproject/dummy/tsconfig.json +Info 38 [00:01:30.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/dummy/tsconfig.json 2000 undefined Project: /user/username/projects/myproject/dummy/tsconfig.json WatchType: Config file +Info 39 [00:01:31.000] Config: /user/username/projects/myproject/dummy/tsconfig.json : { "rootNames": [ "/user/username/projects/myproject/dummy/dummy.ts" ], @@ -123,159 +123,159 @@ Info 39 [16:01:31.000] Config: /user/username/projects/myproject/dummy/tsconfi "configFilePath": "/user/username/projects/myproject/dummy/tsconfig.json" } } -Info 40 [16:01:32.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/dummy 1 undefined Config: /user/username/projects/myproject/dummy/tsconfig.json WatchType: Wild card directory -Info 41 [16:01:33.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/dummy 1 undefined Config: /user/username/projects/myproject/dummy/tsconfig.json WatchType: Wild card directory -Info 42 [16:01:34.000] Plugins were requested but not running in environment that supports 'require'. Nothing will be loaded -Info 43 [16:01:35.000] Starting updateGraphWorker: Project: /user/username/projects/myproject/dummy/tsconfig.json -Info 44 [16:01:36.000] FileWatcher:: Added:: WatchInfo: /a/lib/lib.d.ts 500 undefined Project: /user/username/projects/myproject/dummy/tsconfig.json WatchType: Missing file -Info 45 [16:01:37.000] 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 46 [16:01:38.000] 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 47 [16:01:39.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/dummy/tsconfig.json WatchType: Type roots -Info 48 [16:01:40.000] 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 49 [16:01:41.000] Finishing updateGraphWorker: Project: /user/username/projects/myproject/dummy/tsconfig.json Version: 1 structureChanged: true structureIsReused:: Not Elapsed:: *ms -Info 50 [16:01:42.000] Project '/user/username/projects/myproject/dummy/tsconfig.json' (Configured) -Info 51 [16:01:43.000] Files (1) +Info 40 [00:01:32.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/dummy 1 undefined Config: /user/username/projects/myproject/dummy/tsconfig.json WatchType: Wild card directory +Info 41 [00:01:33.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/dummy 1 undefined Config: /user/username/projects/myproject/dummy/tsconfig.json WatchType: Wild card directory +Info 42 [00:01:34.000] Plugins were requested but not running in environment that supports 'require'. Nothing will be loaded +Info 43 [00:01:35.000] Starting updateGraphWorker: Project: /user/username/projects/myproject/dummy/tsconfig.json +Info 44 [00:01:36.000] FileWatcher:: Added:: WatchInfo: /a/lib/lib.d.ts 500 undefined Project: /user/username/projects/myproject/dummy/tsconfig.json WatchType: Missing file +Info 45 [00:01:37.000] 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 46 [00:01:38.000] 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 47 [00:01:39.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/dummy/tsconfig.json WatchType: Type roots +Info 48 [00:01:40.000] 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 49 [00:01:41.000] Finishing updateGraphWorker: Project: /user/username/projects/myproject/dummy/tsconfig.json Version: 1 structureChanged: true structureIsReused:: Not Elapsed:: *ms +Info 50 [00:01:42.000] Project '/user/username/projects/myproject/dummy/tsconfig.json' (Configured) +Info 51 [00:01:43.000] Files (1) /user/username/projects/myproject/dummy/dummy.ts dummy.ts Matched by default include pattern '**/*' -Info 52 [16:01:44.000] ----------------------------------------------- -Info 53 [16:01:45.000] Project '/user/username/projects/myproject/a/tsconfig.json' (Configured) -Info 53 [16:01:46.000] Files (1) - -Info 53 [16:01:47.000] ----------------------------------------------- -Info 53 [16:01:48.000] Project '/user/username/projects/myproject/b/tsconfig.json' (Configured) -Info 53 [16:01:49.000] Files (1) - -Info 53 [16:01:50.000] ----------------------------------------------- -Info 53 [16:01:51.000] Project '/user/username/projects/myproject/dummy/tsconfig.json' (Configured) -Info 53 [16:01:52.000] Files (1) - -Info 53 [16:01:53.000] ----------------------------------------------- -Info 53 [16:01:54.000] Open files: -Info 53 [16:01:55.000] FileName: /user/username/projects/myproject/a/a.ts ProjectRootPath: undefined -Info 53 [16:01:56.000] Projects: /user/username/projects/myproject/a/tsconfig.json -Info 53 [16:01:57.000] FileName: /user/username/projects/myproject/b/b.ts ProjectRootPath: undefined -Info 53 [16:01:58.000] Projects: /user/username/projects/myproject/b/tsconfig.json -Info 53 [16:01:59.000] FileName: /user/username/projects/myproject/dummy/dummy.ts ProjectRootPath: undefined -Info 53 [16:02:00.000] Projects: /user/username/projects/myproject/dummy/tsconfig.json -Info 53 [16:02:01.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/b/b.ts 500 undefined WatchType: Closed Script info -Info 54 [16:02:02.000] Project '/user/username/projects/myproject/a/tsconfig.json' (Configured) -Info 54 [16:02:03.000] Files (1) - -Info 54 [16:02:04.000] ----------------------------------------------- -Info 54 [16:02:05.000] Project '/user/username/projects/myproject/b/tsconfig.json' (Configured) -Info 54 [16:02:06.000] Files (1) - -Info 54 [16:02:07.000] ----------------------------------------------- -Info 54 [16:02:08.000] Project '/user/username/projects/myproject/dummy/tsconfig.json' (Configured) -Info 54 [16:02:09.000] Files (1) - -Info 54 [16:02:10.000] ----------------------------------------------- -Info 54 [16:02:11.000] Open files: -Info 54 [16:02:12.000] FileName: /user/username/projects/myproject/a/a.ts ProjectRootPath: undefined -Info 54 [16:02:13.000] Projects: /user/username/projects/myproject/a/tsconfig.json -Info 54 [16:02:14.000] FileName: /user/username/projects/myproject/dummy/dummy.ts ProjectRootPath: undefined -Info 54 [16:02:15.000] Projects: /user/username/projects/myproject/dummy/tsconfig.json -Info 54 [16:02:16.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/dummy/dummy.ts 500 undefined WatchType: Closed Script info -Info 55 [16:02:17.000] Project '/user/username/projects/myproject/a/tsconfig.json' (Configured) -Info 55 [16:02:18.000] Files (1) - -Info 55 [16:02:19.000] ----------------------------------------------- -Info 55 [16:02:20.000] Project '/user/username/projects/myproject/b/tsconfig.json' (Configured) -Info 55 [16:02:21.000] Files (1) - -Info 55 [16:02:22.000] ----------------------------------------------- -Info 55 [16:02:23.000] Project '/user/username/projects/myproject/dummy/tsconfig.json' (Configured) -Info 55 [16:02:24.000] Files (1) - -Info 55 [16:02:25.000] ----------------------------------------------- -Info 55 [16:02:26.000] Open files: -Info 55 [16:02:27.000] FileName: /user/username/projects/myproject/a/a.ts ProjectRootPath: undefined -Info 55 [16:02:28.000] Projects: /user/username/projects/myproject/a/tsconfig.json -Info 55 [16:02:29.000] FileWatcher:: Close:: WatchInfo: /user/username/projects/myproject/dummy/dummy.ts 500 undefined WatchType: Closed Script info -Info 56 [16:02:30.000] Search path: /user/username/projects/myproject/dummy -Info 57 [16:02:31.000] For info: /user/username/projects/myproject/dummy/dummy.ts :: Config file name: /user/username/projects/myproject/dummy/tsconfig.json -Info 58 [16:02:32.000] `remove Project:: -Info 59 [16:02:33.000] Project '/user/username/projects/myproject/b/tsconfig.json' (Configured) -Info 60 [16:02:34.000] Files (1) +Info 52 [00:01:44.000] ----------------------------------------------- +Info 53 [00:01:45.000] Project '/user/username/projects/myproject/a/tsconfig.json' (Configured) +Info 53 [00:01:46.000] Files (1) + +Info 53 [00:01:47.000] ----------------------------------------------- +Info 53 [00:01:48.000] Project '/user/username/projects/myproject/b/tsconfig.json' (Configured) +Info 53 [00:01:49.000] Files (1) + +Info 53 [00:01:50.000] ----------------------------------------------- +Info 53 [00:01:51.000] Project '/user/username/projects/myproject/dummy/tsconfig.json' (Configured) +Info 53 [00:01:52.000] Files (1) + +Info 53 [00:01:53.000] ----------------------------------------------- +Info 53 [00:01:54.000] Open files: +Info 53 [00:01:55.000] FileName: /user/username/projects/myproject/a/a.ts ProjectRootPath: undefined +Info 53 [00:01:56.000] Projects: /user/username/projects/myproject/a/tsconfig.json +Info 53 [00:01:57.000] FileName: /user/username/projects/myproject/b/b.ts ProjectRootPath: undefined +Info 53 [00:01:58.000] Projects: /user/username/projects/myproject/b/tsconfig.json +Info 53 [00:01:59.000] FileName: /user/username/projects/myproject/dummy/dummy.ts ProjectRootPath: undefined +Info 53 [00:02:00.000] Projects: /user/username/projects/myproject/dummy/tsconfig.json +Info 53 [00:02:01.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/b/b.ts 500 undefined WatchType: Closed Script info +Info 54 [00:02:02.000] Project '/user/username/projects/myproject/a/tsconfig.json' (Configured) +Info 54 [00:02:03.000] Files (1) + +Info 54 [00:02:04.000] ----------------------------------------------- +Info 54 [00:02:05.000] Project '/user/username/projects/myproject/b/tsconfig.json' (Configured) +Info 54 [00:02:06.000] Files (1) + +Info 54 [00:02:07.000] ----------------------------------------------- +Info 54 [00:02:08.000] Project '/user/username/projects/myproject/dummy/tsconfig.json' (Configured) +Info 54 [00:02:09.000] Files (1) + +Info 54 [00:02:10.000] ----------------------------------------------- +Info 54 [00:02:11.000] Open files: +Info 54 [00:02:12.000] FileName: /user/username/projects/myproject/a/a.ts ProjectRootPath: undefined +Info 54 [00:02:13.000] Projects: /user/username/projects/myproject/a/tsconfig.json +Info 54 [00:02:14.000] FileName: /user/username/projects/myproject/dummy/dummy.ts ProjectRootPath: undefined +Info 54 [00:02:15.000] Projects: /user/username/projects/myproject/dummy/tsconfig.json +Info 54 [00:02:16.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/dummy/dummy.ts 500 undefined WatchType: Closed Script info +Info 55 [00:02:17.000] Project '/user/username/projects/myproject/a/tsconfig.json' (Configured) +Info 55 [00:02:18.000] Files (1) + +Info 55 [00:02:19.000] ----------------------------------------------- +Info 55 [00:02:20.000] Project '/user/username/projects/myproject/b/tsconfig.json' (Configured) +Info 55 [00:02:21.000] Files (1) + +Info 55 [00:02:22.000] ----------------------------------------------- +Info 55 [00:02:23.000] Project '/user/username/projects/myproject/dummy/tsconfig.json' (Configured) +Info 55 [00:02:24.000] Files (1) + +Info 55 [00:02:25.000] ----------------------------------------------- +Info 55 [00:02:26.000] Open files: +Info 55 [00:02:27.000] FileName: /user/username/projects/myproject/a/a.ts ProjectRootPath: undefined +Info 55 [00:02:28.000] Projects: /user/username/projects/myproject/a/tsconfig.json +Info 55 [00:02:29.000] FileWatcher:: Close:: WatchInfo: /user/username/projects/myproject/dummy/dummy.ts 500 undefined WatchType: Closed Script info +Info 56 [00:02:30.000] Search path: /user/username/projects/myproject/dummy +Info 57 [00:02:31.000] For info: /user/username/projects/myproject/dummy/dummy.ts :: Config file name: /user/username/projects/myproject/dummy/tsconfig.json +Info 58 [00:02:32.000] `remove Project:: +Info 59 [00:02:33.000] Project '/user/username/projects/myproject/b/tsconfig.json' (Configured) +Info 60 [00:02:34.000] Files (1) /user/username/projects/myproject/b/b.ts b.ts Part of 'files' list in tsconfig.json -Info 61 [16:02:35.000] ----------------------------------------------- -Info 62 [16:02:36.000] FileWatcher:: Close:: WatchInfo: /user/username/projects/myproject/extended/bravo.tsconfig.json 2000 undefined Config: /user/username/projects/myproject/b/tsconfig.json WatchType: Extended config file -Info 63 [16:02:37.000] FileWatcher:: Close:: WatchInfo: /user/username/projects/myproject/b/tsconfig.json 2000 undefined Project: /user/username/projects/myproject/b/tsconfig.json WatchType: Config file -Info 64 [16:02:38.000] 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 65 [16:02:39.000] 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 66 [16:02:40.000] DirectoryWatcher:: Close:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/b/tsconfig.json WatchType: Type roots -Info 67 [16:02:41.000] 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 68 [16:02:42.000] FileWatcher:: Close:: WatchInfo: /a/lib/lib.d.ts 500 undefined Project: /user/username/projects/myproject/b/tsconfig.json WatchType: Missing file -Info 69 [16:02:43.000] FileWatcher:: Close:: WatchInfo: /user/username/projects/myproject/b/b.ts 500 undefined WatchType: Closed Script info -Info 70 [16:02:44.000] Project '/user/username/projects/myproject/a/tsconfig.json' (Configured) -Info 70 [16:02:45.000] Files (1) - -Info 70 [16:02:46.000] ----------------------------------------------- -Info 70 [16:02:47.000] Project '/user/username/projects/myproject/dummy/tsconfig.json' (Configured) -Info 70 [16:02:48.000] Files (1) - -Info 70 [16:02:49.000] ----------------------------------------------- -Info 70 [16:02:50.000] Open files: -Info 70 [16:02:51.000] FileName: /user/username/projects/myproject/a/a.ts ProjectRootPath: undefined -Info 70 [16:02:52.000] Projects: /user/username/projects/myproject/a/tsconfig.json -Info 70 [16:02:53.000] FileName: /user/username/projects/myproject/dummy/dummy.ts ProjectRootPath: undefined -Info 70 [16:02:54.000] Projects: /user/username/projects/myproject/dummy/tsconfig.json -Info 70 [16:02:55.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/a/a.ts 500 undefined WatchType: Closed Script info -Info 71 [16:02:56.000] Project '/user/username/projects/myproject/a/tsconfig.json' (Configured) -Info 71 [16:02:57.000] Files (1) - -Info 71 [16:02:58.000] ----------------------------------------------- -Info 71 [16:02:59.000] Project '/user/username/projects/myproject/dummy/tsconfig.json' (Configured) -Info 71 [16:03:00.000] Files (1) - -Info 71 [16:03:01.000] ----------------------------------------------- -Info 71 [16:03:02.000] Open files: -Info 71 [16:03:03.000] FileName: /user/username/projects/myproject/dummy/dummy.ts ProjectRootPath: undefined -Info 71 [16:03:04.000] Projects: /user/username/projects/myproject/dummy/tsconfig.json -Info 71 [16:03:05.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/dummy/dummy.ts 500 undefined WatchType: Closed Script info -Info 72 [16:03:06.000] Project '/user/username/projects/myproject/a/tsconfig.json' (Configured) -Info 72 [16:03:07.000] Files (1) - -Info 72 [16:03:08.000] ----------------------------------------------- -Info 72 [16:03:09.000] Project '/user/username/projects/myproject/dummy/tsconfig.json' (Configured) -Info 72 [16:03:10.000] Files (1) - -Info 72 [16:03:11.000] ----------------------------------------------- -Info 72 [16:03:12.000] Open files: -Info 72 [16:03:13.000] FileWatcher:: Close:: WatchInfo: /user/username/projects/myproject/dummy/dummy.ts 500 undefined WatchType: Closed Script info -Info 73 [16:03:14.000] Search path: /user/username/projects/myproject/dummy -Info 74 [16:03:15.000] For info: /user/username/projects/myproject/dummy/dummy.ts :: Config file name: /user/username/projects/myproject/dummy/tsconfig.json -Info 75 [16:03:16.000] `remove Project:: -Info 76 [16:03:17.000] Project '/user/username/projects/myproject/a/tsconfig.json' (Configured) -Info 77 [16:03:18.000] Files (1) +Info 61 [00:02:35.000] ----------------------------------------------- +Info 62 [00:02:36.000] FileWatcher:: Close:: WatchInfo: /user/username/projects/myproject/extended/bravo.tsconfig.json 2000 undefined Config: /user/username/projects/myproject/b/tsconfig.json WatchType: Extended config file +Info 63 [00:02:37.000] FileWatcher:: Close:: WatchInfo: /user/username/projects/myproject/b/tsconfig.json 2000 undefined Project: /user/username/projects/myproject/b/tsconfig.json WatchType: Config file +Info 64 [00:02:38.000] 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 65 [00:02:39.000] 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 66 [00:02:40.000] DirectoryWatcher:: Close:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/b/tsconfig.json WatchType: Type roots +Info 67 [00:02:41.000] 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 68 [00:02:42.000] FileWatcher:: Close:: WatchInfo: /a/lib/lib.d.ts 500 undefined Project: /user/username/projects/myproject/b/tsconfig.json WatchType: Missing file +Info 69 [00:02:43.000] FileWatcher:: Close:: WatchInfo: /user/username/projects/myproject/b/b.ts 500 undefined WatchType: Closed Script info +Info 70 [00:02:44.000] Project '/user/username/projects/myproject/a/tsconfig.json' (Configured) +Info 70 [00:02:45.000] Files (1) + +Info 70 [00:02:46.000] ----------------------------------------------- +Info 70 [00:02:47.000] Project '/user/username/projects/myproject/dummy/tsconfig.json' (Configured) +Info 70 [00:02:48.000] Files (1) + +Info 70 [00:02:49.000] ----------------------------------------------- +Info 70 [00:02:50.000] Open files: +Info 70 [00:02:51.000] FileName: /user/username/projects/myproject/a/a.ts ProjectRootPath: undefined +Info 70 [00:02:52.000] Projects: /user/username/projects/myproject/a/tsconfig.json +Info 70 [00:02:53.000] FileName: /user/username/projects/myproject/dummy/dummy.ts ProjectRootPath: undefined +Info 70 [00:02:54.000] Projects: /user/username/projects/myproject/dummy/tsconfig.json +Info 70 [00:02:55.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/a/a.ts 500 undefined WatchType: Closed Script info +Info 71 [00:02:56.000] Project '/user/username/projects/myproject/a/tsconfig.json' (Configured) +Info 71 [00:02:57.000] Files (1) + +Info 71 [00:02:58.000] ----------------------------------------------- +Info 71 [00:02:59.000] Project '/user/username/projects/myproject/dummy/tsconfig.json' (Configured) +Info 71 [00:03:00.000] Files (1) + +Info 71 [00:03:01.000] ----------------------------------------------- +Info 71 [00:03:02.000] Open files: +Info 71 [00:03:03.000] FileName: /user/username/projects/myproject/dummy/dummy.ts ProjectRootPath: undefined +Info 71 [00:03:04.000] Projects: /user/username/projects/myproject/dummy/tsconfig.json +Info 71 [00:03:05.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/dummy/dummy.ts 500 undefined WatchType: Closed Script info +Info 72 [00:03:06.000] Project '/user/username/projects/myproject/a/tsconfig.json' (Configured) +Info 72 [00:03:07.000] Files (1) + +Info 72 [00:03:08.000] ----------------------------------------------- +Info 72 [00:03:09.000] Project '/user/username/projects/myproject/dummy/tsconfig.json' (Configured) +Info 72 [00:03:10.000] Files (1) + +Info 72 [00:03:11.000] ----------------------------------------------- +Info 72 [00:03:12.000] Open files: +Info 72 [00:03:13.000] FileWatcher:: Close:: WatchInfo: /user/username/projects/myproject/dummy/dummy.ts 500 undefined WatchType: Closed Script info +Info 73 [00:03:14.000] Search path: /user/username/projects/myproject/dummy +Info 74 [00:03:15.000] For info: /user/username/projects/myproject/dummy/dummy.ts :: Config file name: /user/username/projects/myproject/dummy/tsconfig.json +Info 75 [00:03:16.000] `remove Project:: +Info 76 [00:03:17.000] Project '/user/username/projects/myproject/a/tsconfig.json' (Configured) +Info 77 [00:03:18.000] Files (1) /user/username/projects/myproject/a/a.ts a.ts Part of 'files' list in tsconfig.json -Info 78 [16:03:19.000] ----------------------------------------------- -Info 79 [16:03:20.000] FileWatcher:: Close:: WatchInfo: /user/username/projects/myproject/extended/alpha.tsconfig.json 2000 undefined Config: /user/username/projects/myproject/a/tsconfig.json WatchType: Extended config file -Info 80 [16:03:21.000] FileWatcher:: Close:: WatchInfo: /user/username/projects/myproject/a/tsconfig.json 2000 undefined Project: /user/username/projects/myproject/a/tsconfig.json WatchType: Config file -Info 81 [16:03:22.000] 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 82 [16:03:23.000] 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 83 [16:03:24.000] DirectoryWatcher:: Close:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/a/tsconfig.json WatchType: Type roots -Info 84 [16:03:25.000] 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 85 [16:03:26.000] FileWatcher:: Close:: WatchInfo: /a/lib/lib.d.ts 500 undefined Project: /user/username/projects/myproject/a/tsconfig.json WatchType: Missing file -Info 86 [16:03:27.000] FileWatcher:: Close:: WatchInfo: /user/username/projects/myproject/a/a.ts 500 undefined WatchType: Closed Script info -Info 87 [16:03:28.000] Project '/user/username/projects/myproject/dummy/tsconfig.json' (Configured) -Info 87 [16:03:29.000] Files (1) - -Info 87 [16:03:30.000] ----------------------------------------------- -Info 87 [16:03:31.000] Open files: -Info 87 [16:03:32.000] FileName: /user/username/projects/myproject/dummy/dummy.ts ProjectRootPath: undefined -Info 87 [16:03:33.000] Projects: /user/username/projects/myproject/dummy/tsconfig.json \ No newline at end of file +Info 78 [00:03:19.000] ----------------------------------------------- +Info 79 [00:03:20.000] FileWatcher:: Close:: WatchInfo: /user/username/projects/myproject/extended/alpha.tsconfig.json 2000 undefined Config: /user/username/projects/myproject/a/tsconfig.json WatchType: Extended config file +Info 80 [00:03:21.000] FileWatcher:: Close:: WatchInfo: /user/username/projects/myproject/a/tsconfig.json 2000 undefined Project: /user/username/projects/myproject/a/tsconfig.json WatchType: Config file +Info 81 [00:03:22.000] 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 82 [00:03:23.000] 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 83 [00:03:24.000] DirectoryWatcher:: Close:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/a/tsconfig.json WatchType: Type roots +Info 84 [00:03:25.000] 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 85 [00:03:26.000] FileWatcher:: Close:: WatchInfo: /a/lib/lib.d.ts 500 undefined Project: /user/username/projects/myproject/a/tsconfig.json WatchType: Missing file +Info 86 [00:03:27.000] FileWatcher:: Close:: WatchInfo: /user/username/projects/myproject/a/a.ts 500 undefined WatchType: Closed Script info +Info 87 [00:03:28.000] Project '/user/username/projects/myproject/dummy/tsconfig.json' (Configured) +Info 87 [00:03:29.000] Files (1) + +Info 87 [00:03:30.000] ----------------------------------------------- +Info 87 [00:03:31.000] Open files: +Info 87 [00:03:32.000] FileName: /user/username/projects/myproject/dummy/dummy.ts ProjectRootPath: undefined +Info 87 [00:03:33.000] Projects: /user/username/projects/myproject/dummy/tsconfig.json \ No newline at end of file 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 969703f7e01a9..0f9d98f88c7e8 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 @@ -1,4 +1,4 @@ -Info 0 [16:00:29.000] Provided types map file "/typesMap.json" doesn't exist +Info 0 [00:00:29.000] Provided types map file "/typesMap.json" doesn't exist Creating project service //// [/user/username/projects/myproject/extended/alpha.tsconfig.json] {} @@ -25,11 +25,11 @@ FsWatches:: FsWatchesRecursive:: -Info 1 [16:00:30.000] Search path: /user/username/projects/myproject/a -Info 2 [16:00:31.000] For info: /user/username/projects/myproject/a/a.ts :: Config file name: /user/username/projects/myproject/a/tsconfig.json -Info 3 [16:00:32.000] Creating configuration project /user/username/projects/myproject/a/tsconfig.json -Info 4 [16:00:33.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/a/tsconfig.json 2000 undefined Project: /user/username/projects/myproject/a/tsconfig.json WatchType: Config file -Info 5 [16:00:34.000] Config: /user/username/projects/myproject/a/tsconfig.json : { +Info 1 [00:00:30.000] Search path: /user/username/projects/myproject/a +Info 2 [00:00:31.000] For info: /user/username/projects/myproject/a/a.ts :: Config file name: /user/username/projects/myproject/a/tsconfig.json +Info 3 [00:00:32.000] Creating configuration project /user/username/projects/myproject/a/tsconfig.json +Info 4 [00:00:33.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/a/tsconfig.json 2000 undefined Project: /user/username/projects/myproject/a/tsconfig.json WatchType: Config file +Info 5 [00:00:34.000] Config: /user/username/projects/myproject/a/tsconfig.json : { "rootNames": [ "/user/username/projects/myproject/a/a.ts" ], @@ -37,36 +37,36 @@ Info 5 [16:00:34.000] Config: /user/username/projects/myproject/a/tsconfig.js "configFilePath": "/user/username/projects/myproject/a/tsconfig.json" } } -Info 6 [16:00:35.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/extended/alpha.tsconfig.json 2000 undefined Config: /user/username/projects/myproject/a/tsconfig.json WatchType: Extended config file -Info 7 [16:00:36.000] Plugins were requested but not running in environment that supports 'require'. Nothing will be loaded -Info 8 [16:00:37.000] Starting updateGraphWorker: Project: /user/username/projects/myproject/a/tsconfig.json -Info 9 [16:00:38.000] FileWatcher:: Added:: WatchInfo: /a/lib/lib.d.ts 500 undefined Project: /user/username/projects/myproject/a/tsconfig.json WatchType: Missing file -Info 10 [16:00:39.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/a/node_modules/@types 1 undefined Project: /user/username/projects/myproject/a/tsconfig.json WatchType: Type roots -Info 11 [16:00:40.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/a/node_modules/@types 1 undefined Project: /user/username/projects/myproject/a/tsconfig.json WatchType: Type roots -Info 12 [16:00:41.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/a/tsconfig.json WatchType: Type roots -Info 13 [16:00:42.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/a/tsconfig.json WatchType: Type roots -Info 14 [16:00:43.000] Finishing updateGraphWorker: Project: /user/username/projects/myproject/a/tsconfig.json Version: 1 structureChanged: true structureIsReused:: Not Elapsed:: *ms -Info 15 [16:00:44.000] Project '/user/username/projects/myproject/a/tsconfig.json' (Configured) -Info 16 [16:00:45.000] Files (1) +Info 6 [00:00:35.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/extended/alpha.tsconfig.json 2000 undefined Config: /user/username/projects/myproject/a/tsconfig.json WatchType: Extended config file +Info 7 [00:00:36.000] Plugins were requested but not running in environment that supports 'require'. Nothing will be loaded +Info 8 [00:00:37.000] Starting updateGraphWorker: Project: /user/username/projects/myproject/a/tsconfig.json +Info 9 [00:00:38.000] FileWatcher:: Added:: WatchInfo: /a/lib/lib.d.ts 500 undefined Project: /user/username/projects/myproject/a/tsconfig.json WatchType: Missing file +Info 10 [00:00:39.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/a/node_modules/@types 1 undefined Project: /user/username/projects/myproject/a/tsconfig.json WatchType: Type roots +Info 11 [00:00:40.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/a/node_modules/@types 1 undefined Project: /user/username/projects/myproject/a/tsconfig.json WatchType: Type roots +Info 12 [00:00:41.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/a/tsconfig.json WatchType: Type roots +Info 13 [00:00:42.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/a/tsconfig.json WatchType: Type roots +Info 14 [00:00:43.000] Finishing updateGraphWorker: Project: /user/username/projects/myproject/a/tsconfig.json Version: 1 structureChanged: true structureIsReused:: Not Elapsed:: *ms +Info 15 [00:00:44.000] Project '/user/username/projects/myproject/a/tsconfig.json' (Configured) +Info 16 [00:00:45.000] Files (1) /user/username/projects/myproject/a/a.ts a.ts Part of 'files' list in tsconfig.json -Info 17 [16:00:46.000] ----------------------------------------------- -Info 18 [16:00:47.000] Project '/user/username/projects/myproject/a/tsconfig.json' (Configured) -Info 18 [16:00:48.000] Files (1) - -Info 18 [16:00:49.000] ----------------------------------------------- -Info 18 [16:00:50.000] Open files: -Info 18 [16:00:51.000] FileName: /user/username/projects/myproject/a/a.ts ProjectRootPath: undefined -Info 18 [16:00:52.000] Projects: /user/username/projects/myproject/a/tsconfig.json -Info 18 [16:00:53.000] Search path: /user/username/projects/myproject/b -Info 19 [16:00:54.000] For info: /user/username/projects/myproject/b/b.ts :: Config file name: /user/username/projects/myproject/b/tsconfig.json -Info 20 [16:00:55.000] Creating configuration project /user/username/projects/myproject/b/tsconfig.json -Info 21 [16:00:56.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/b/tsconfig.json 2000 undefined Project: /user/username/projects/myproject/b/tsconfig.json WatchType: Config file -Info 22 [16:00:57.000] Config: /user/username/projects/myproject/b/tsconfig.json : { +Info 17 [00:00:46.000] ----------------------------------------------- +Info 18 [00:00:47.000] Project '/user/username/projects/myproject/a/tsconfig.json' (Configured) +Info 18 [00:00:48.000] Files (1) + +Info 18 [00:00:49.000] ----------------------------------------------- +Info 18 [00:00:50.000] Open files: +Info 18 [00:00:51.000] FileName: /user/username/projects/myproject/a/a.ts ProjectRootPath: undefined +Info 18 [00:00:52.000] Projects: /user/username/projects/myproject/a/tsconfig.json +Info 18 [00:00:53.000] Search path: /user/username/projects/myproject/b +Info 19 [00:00:54.000] For info: /user/username/projects/myproject/b/b.ts :: Config file name: /user/username/projects/myproject/b/tsconfig.json +Info 20 [00:00:55.000] Creating configuration project /user/username/projects/myproject/b/tsconfig.json +Info 21 [00:00:56.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/b/tsconfig.json 2000 undefined Project: /user/username/projects/myproject/b/tsconfig.json WatchType: Config file +Info 22 [00:00:57.000] Config: /user/username/projects/myproject/b/tsconfig.json : { "rootNames": [ "/user/username/projects/myproject/b/b.ts" ], @@ -74,42 +74,42 @@ Info 22 [16:00:57.000] Config: /user/username/projects/myproject/b/tsconfig.js "configFilePath": "/user/username/projects/myproject/b/tsconfig.json" } } -Info 23 [16:00:58.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/extended/bravo.tsconfig.json 2000 undefined Config: /user/username/projects/myproject/b/tsconfig.json WatchType: Extended config file -Info 24 [16:00:59.000] Plugins were requested but not running in environment that supports 'require'. Nothing will be loaded -Info 25 [16:01:00.000] Starting updateGraphWorker: Project: /user/username/projects/myproject/b/tsconfig.json -Info 26 [16:01:01.000] FileWatcher:: Added:: WatchInfo: /a/lib/lib.d.ts 500 undefined Project: /user/username/projects/myproject/b/tsconfig.json WatchType: Missing file -Info 27 [16:01:02.000] 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 28 [16:01:03.000] 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 29 [16:01:04.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/b/tsconfig.json WatchType: Type roots -Info 30 [16:01:05.000] 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 31 [16:01:06.000] Finishing updateGraphWorker: Project: /user/username/projects/myproject/b/tsconfig.json Version: 1 structureChanged: true structureIsReused:: Not Elapsed:: *ms -Info 32 [16:01:07.000] Project '/user/username/projects/myproject/b/tsconfig.json' (Configured) -Info 33 [16:01:08.000] Files (1) +Info 23 [00:00:58.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/extended/bravo.tsconfig.json 2000 undefined Config: /user/username/projects/myproject/b/tsconfig.json WatchType: Extended config file +Info 24 [00:00:59.000] Plugins were requested but not running in environment that supports 'require'. Nothing will be loaded +Info 25 [00:01:00.000] Starting updateGraphWorker: Project: /user/username/projects/myproject/b/tsconfig.json +Info 26 [00:01:01.000] FileWatcher:: Added:: WatchInfo: /a/lib/lib.d.ts 500 undefined Project: /user/username/projects/myproject/b/tsconfig.json WatchType: Missing file +Info 27 [00:01:02.000] 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 28 [00:01:03.000] 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 29 [00:01:04.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/b/tsconfig.json WatchType: Type roots +Info 30 [00:01:05.000] 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 31 [00:01:06.000] Finishing updateGraphWorker: Project: /user/username/projects/myproject/b/tsconfig.json Version: 1 structureChanged: true structureIsReused:: Not Elapsed:: *ms +Info 32 [00:01:07.000] Project '/user/username/projects/myproject/b/tsconfig.json' (Configured) +Info 33 [00:01:08.000] Files (1) /user/username/projects/myproject/b/b.ts b.ts Part of 'files' list in tsconfig.json -Info 34 [16:01:09.000] ----------------------------------------------- -Info 35 [16:01:10.000] Project '/user/username/projects/myproject/a/tsconfig.json' (Configured) -Info 35 [16:01:11.000] Files (1) - -Info 35 [16:01:12.000] ----------------------------------------------- -Info 35 [16:01:13.000] Project '/user/username/projects/myproject/b/tsconfig.json' (Configured) -Info 35 [16:01:14.000] Files (1) - -Info 35 [16:01:15.000] ----------------------------------------------- -Info 35 [16:01:16.000] Open files: -Info 35 [16:01:17.000] FileName: /user/username/projects/myproject/a/a.ts ProjectRootPath: undefined -Info 35 [16:01:18.000] Projects: /user/username/projects/myproject/a/tsconfig.json -Info 35 [16:01:19.000] FileName: /user/username/projects/myproject/b/b.ts ProjectRootPath: undefined -Info 35 [16:01:20.000] Projects: /user/username/projects/myproject/b/tsconfig.json -Info 35 [16:01:24.000] FileWatcher:: Triggered with /user/username/projects/myproject/extended/alpha.tsconfig.json 1:: WatchInfo: /user/username/projects/myproject/extended/alpha.tsconfig.json 2000 undefined Config: /user/username/projects/myproject/a/tsconfig.json WatchType: Extended config file -Info 36 [16:01:25.000] Scheduled: /user/username/projects/myproject/a/tsconfig.json -Info 37 [16:01:26.000] Scheduled: /user/username/projects/myproject/b/tsconfig.json -Info 38 [16:01:27.000] Scheduled: *ensureProjectForOpenFiles* -Info 39 [16:01:28.000] Elapsed:: *ms FileWatcher:: Triggered with /user/username/projects/myproject/extended/alpha.tsconfig.json 1:: WatchInfo: /user/username/projects/myproject/extended/alpha.tsconfig.json 2000 undefined Config: /user/username/projects/myproject/a/tsconfig.json WatchType: Extended config file +Info 34 [00:01:09.000] ----------------------------------------------- +Info 35 [00:01:10.000] Project '/user/username/projects/myproject/a/tsconfig.json' (Configured) +Info 35 [00:01:11.000] Files (1) + +Info 35 [00:01:12.000] ----------------------------------------------- +Info 35 [00:01:13.000] Project '/user/username/projects/myproject/b/tsconfig.json' (Configured) +Info 35 [00:01:14.000] Files (1) + +Info 35 [00:01:15.000] ----------------------------------------------- +Info 35 [00:01:16.000] Open files: +Info 35 [00:01:17.000] FileName: /user/username/projects/myproject/a/a.ts ProjectRootPath: undefined +Info 35 [00:01:18.000] Projects: /user/username/projects/myproject/a/tsconfig.json +Info 35 [00:01:19.000] FileName: /user/username/projects/myproject/b/b.ts ProjectRootPath: undefined +Info 35 [00:01:20.000] Projects: /user/username/projects/myproject/b/tsconfig.json +Info 35 [00:01:24.000] FileWatcher:: Triggered with /user/username/projects/myproject/extended/alpha.tsconfig.json 1:: WatchInfo: /user/username/projects/myproject/extended/alpha.tsconfig.json 2000 undefined Config: /user/username/projects/myproject/a/tsconfig.json WatchType: Extended config file +Info 36 [00:01:25.000] Scheduled: /user/username/projects/myproject/a/tsconfig.json +Info 37 [00:01:26.000] Scheduled: /user/username/projects/myproject/b/tsconfig.json +Info 38 [00:01:27.000] Scheduled: *ensureProjectForOpenFiles* +Info 39 [00:01:28.000] Elapsed:: *ms FileWatcher:: Triggered with /user/username/projects/myproject/extended/alpha.tsconfig.json 1:: WatchInfo: /user/username/projects/myproject/extended/alpha.tsconfig.json 2000 undefined Config: /user/username/projects/myproject/a/tsconfig.json WatchType: Extended config file Before checking timeout queue length (3) and running //// [/user/username/projects/myproject/extended/alpha.tsconfig.json] {"compilerOptions":{"strict":true}} @@ -137,9 +137,9 @@ FsWatches:: FsWatchesRecursive:: -Info 40 [16:01:29.000] Running: /user/username/projects/myproject/a/tsconfig.json -Info 41 [16:01:30.000] Reloading configured project /user/username/projects/myproject/a/tsconfig.json -Info 42 [16:01:31.000] Config: /user/username/projects/myproject/a/tsconfig.json : { +Info 40 [00:01:29.000] Running: /user/username/projects/myproject/a/tsconfig.json +Info 41 [00:01:30.000] Reloading configured project /user/username/projects/myproject/a/tsconfig.json +Info 42 [00:01:31.000] Config: /user/username/projects/myproject/a/tsconfig.json : { "rootNames": [ "/user/username/projects/myproject/a/a.ts" ], @@ -148,13 +148,13 @@ Info 42 [16:01:31.000] Config: /user/username/projects/myproject/a/tsconfig.js "configFilePath": "/user/username/projects/myproject/a/tsconfig.json" } } -Info 43 [16:01:32.000] Plugins were requested but not running in environment that supports 'require'. Nothing will be loaded -Info 44 [16:01:33.000] Starting updateGraphWorker: Project: /user/username/projects/myproject/a/tsconfig.json -Info 45 [16:01:34.000] Finishing updateGraphWorker: Project: /user/username/projects/myproject/a/tsconfig.json Version: 2 structureChanged: false structureIsReused:: Completely Elapsed:: *ms -Info 46 [16:01:35.000] Different program with same set of files -Info 47 [16:01:36.000] Running: /user/username/projects/myproject/b/tsconfig.json -Info 48 [16:01:37.000] Reloading configured project /user/username/projects/myproject/b/tsconfig.json -Info 49 [16:01:38.000] Config: /user/username/projects/myproject/b/tsconfig.json : { +Info 43 [00:01:32.000] Plugins were requested but not running in environment that supports 'require'. Nothing will be loaded +Info 44 [00:01:33.000] Starting updateGraphWorker: Project: /user/username/projects/myproject/a/tsconfig.json +Info 45 [00:01:34.000] Finishing updateGraphWorker: Project: /user/username/projects/myproject/a/tsconfig.json Version: 2 structureChanged: false structureIsReused:: Completely Elapsed:: *ms +Info 46 [00:01:35.000] Different program with same set of files +Info 47 [00:01:36.000] Running: /user/username/projects/myproject/b/tsconfig.json +Info 48 [00:01:37.000] Reloading configured project /user/username/projects/myproject/b/tsconfig.json +Info 49 [00:01:38.000] Config: /user/username/projects/myproject/b/tsconfig.json : { "rootNames": [ "/user/username/projects/myproject/b/b.ts" ], @@ -163,39 +163,39 @@ Info 49 [16:01:38.000] Config: /user/username/projects/myproject/b/tsconfig.js "configFilePath": "/user/username/projects/myproject/b/tsconfig.json" } } -Info 50 [16:01:39.000] Plugins were requested but not running in environment that supports 'require'. Nothing will be loaded -Info 51 [16:01:40.000] Starting updateGraphWorker: Project: /user/username/projects/myproject/b/tsconfig.json -Info 52 [16:01:41.000] Finishing updateGraphWorker: Project: /user/username/projects/myproject/b/tsconfig.json Version: 2 structureChanged: false structureIsReused:: Completely Elapsed:: *ms -Info 53 [16:01:42.000] Different program with same set of files -Info 54 [16:01:43.000] Running: *ensureProjectForOpenFiles* -Info 55 [16:01:44.000] Before ensureProjectForOpenFiles: -Info 56 [16:01:45.000] Project '/user/username/projects/myproject/a/tsconfig.json' (Configured) -Info 56 [16:01:46.000] Files (1) - -Info 56 [16:01:47.000] ----------------------------------------------- -Info 56 [16:01:48.000] Project '/user/username/projects/myproject/b/tsconfig.json' (Configured) -Info 56 [16:01:49.000] Files (1) - -Info 56 [16:01:50.000] ----------------------------------------------- -Info 56 [16:01:51.000] Open files: -Info 56 [16:01:52.000] FileName: /user/username/projects/myproject/a/a.ts ProjectRootPath: undefined -Info 56 [16:01:53.000] Projects: /user/username/projects/myproject/a/tsconfig.json -Info 56 [16:01:54.000] FileName: /user/username/projects/myproject/b/b.ts ProjectRootPath: undefined -Info 56 [16:01:55.000] Projects: /user/username/projects/myproject/b/tsconfig.json -Info 56 [16:01:56.000] After ensureProjectForOpenFiles: -Info 57 [16:01:57.000] Project '/user/username/projects/myproject/a/tsconfig.json' (Configured) -Info 57 [16:01:58.000] Files (1) - -Info 57 [16:01:59.000] ----------------------------------------------- -Info 57 [16:02:00.000] Project '/user/username/projects/myproject/b/tsconfig.json' (Configured) -Info 57 [16:02:01.000] Files (1) - -Info 57 [16:02:02.000] ----------------------------------------------- -Info 57 [16:02:03.000] Open files: -Info 57 [16:02:04.000] FileName: /user/username/projects/myproject/a/a.ts ProjectRootPath: undefined -Info 57 [16:02:05.000] Projects: /user/username/projects/myproject/a/tsconfig.json -Info 57 [16:02:06.000] FileName: /user/username/projects/myproject/b/b.ts ProjectRootPath: undefined -Info 57 [16:02:07.000] Projects: /user/username/projects/myproject/b/tsconfig.json +Info 50 [00:01:39.000] Plugins were requested but not running in environment that supports 'require'. Nothing will be loaded +Info 51 [00:01:40.000] Starting updateGraphWorker: Project: /user/username/projects/myproject/b/tsconfig.json +Info 52 [00:01:41.000] Finishing updateGraphWorker: Project: /user/username/projects/myproject/b/tsconfig.json Version: 2 structureChanged: false structureIsReused:: Completely Elapsed:: *ms +Info 53 [00:01:42.000] Different program with same set of files +Info 54 [00:01:43.000] Running: *ensureProjectForOpenFiles* +Info 55 [00:01:44.000] Before ensureProjectForOpenFiles: +Info 56 [00:01:45.000] Project '/user/username/projects/myproject/a/tsconfig.json' (Configured) +Info 56 [00:01:46.000] Files (1) + +Info 56 [00:01:47.000] ----------------------------------------------- +Info 56 [00:01:48.000] Project '/user/username/projects/myproject/b/tsconfig.json' (Configured) +Info 56 [00:01:49.000] Files (1) + +Info 56 [00:01:50.000] ----------------------------------------------- +Info 56 [00:01:51.000] Open files: +Info 56 [00:01:52.000] FileName: /user/username/projects/myproject/a/a.ts ProjectRootPath: undefined +Info 56 [00:01:53.000] Projects: /user/username/projects/myproject/a/tsconfig.json +Info 56 [00:01:54.000] FileName: /user/username/projects/myproject/b/b.ts ProjectRootPath: undefined +Info 56 [00:01:55.000] Projects: /user/username/projects/myproject/b/tsconfig.json +Info 56 [00:01:56.000] After ensureProjectForOpenFiles: +Info 57 [00:01:57.000] Project '/user/username/projects/myproject/a/tsconfig.json' (Configured) +Info 57 [00:01:58.000] Files (1) + +Info 57 [00:01:59.000] ----------------------------------------------- +Info 57 [00:02:00.000] Project '/user/username/projects/myproject/b/tsconfig.json' (Configured) +Info 57 [00:02:01.000] Files (1) + +Info 57 [00:02:02.000] ----------------------------------------------- +Info 57 [00:02:03.000] Open files: +Info 57 [00:02:04.000] FileName: /user/username/projects/myproject/a/a.ts ProjectRootPath: undefined +Info 57 [00:02:05.000] Projects: /user/username/projects/myproject/a/tsconfig.json +Info 57 [00:02:06.000] FileName: /user/username/projects/myproject/b/b.ts ProjectRootPath: undefined +Info 57 [00:02:07.000] Projects: /user/username/projects/myproject/b/tsconfig.json After checking timeout queue length (3) and running PolledWatches:: @@ -220,10 +220,10 @@ FsWatches:: FsWatchesRecursive:: -Info 57 [16:02:11.000] FileWatcher:: Triggered with /user/username/projects/myproject/extended/bravo.tsconfig.json 1:: WatchInfo: /user/username/projects/myproject/extended/bravo.tsconfig.json 2000 undefined Config: /user/username/projects/myproject/b/tsconfig.json WatchType: Extended config file -Info 58 [16:02:12.000] Scheduled: /user/username/projects/myproject/b/tsconfig.json -Info 59 [16:02:13.000] Scheduled: *ensureProjectForOpenFiles* -Info 60 [16:02:14.000] Elapsed:: *ms FileWatcher:: Triggered with /user/username/projects/myproject/extended/bravo.tsconfig.json 1:: WatchInfo: /user/username/projects/myproject/extended/bravo.tsconfig.json 2000 undefined Config: /user/username/projects/myproject/b/tsconfig.json WatchType: Extended config file +Info 57 [00:02:11.000] FileWatcher:: Triggered with /user/username/projects/myproject/extended/bravo.tsconfig.json 1:: WatchInfo: /user/username/projects/myproject/extended/bravo.tsconfig.json 2000 undefined Config: /user/username/projects/myproject/b/tsconfig.json WatchType: Extended config file +Info 58 [00:02:12.000] Scheduled: /user/username/projects/myproject/b/tsconfig.json +Info 59 [00:02:13.000] Scheduled: *ensureProjectForOpenFiles* +Info 60 [00:02:14.000] Elapsed:: *ms FileWatcher:: Triggered with /user/username/projects/myproject/extended/bravo.tsconfig.json 1:: WatchInfo: /user/username/projects/myproject/extended/bravo.tsconfig.json 2000 undefined Config: /user/username/projects/myproject/b/tsconfig.json WatchType: Extended config file Before checking timeout queue length (2) and running //// [/user/username/projects/myproject/extended/bravo.tsconfig.json] {"extends":"./alpha.tsconfig.json","compilerOptions":{"strict":false}} @@ -251,9 +251,9 @@ FsWatches:: FsWatchesRecursive:: -Info 61 [16:02:15.000] Running: /user/username/projects/myproject/b/tsconfig.json -Info 62 [16:02:16.000] Reloading configured project /user/username/projects/myproject/b/tsconfig.json -Info 63 [16:02:17.000] Config: /user/username/projects/myproject/b/tsconfig.json : { +Info 61 [00:02:15.000] Running: /user/username/projects/myproject/b/tsconfig.json +Info 62 [00:02:16.000] Reloading configured project /user/username/projects/myproject/b/tsconfig.json +Info 63 [00:02:17.000] Config: /user/username/projects/myproject/b/tsconfig.json : { "rootNames": [ "/user/username/projects/myproject/b/b.ts" ], @@ -262,39 +262,39 @@ Info 63 [16:02:17.000] Config: /user/username/projects/myproject/b/tsconfig.js "configFilePath": "/user/username/projects/myproject/b/tsconfig.json" } } -Info 64 [16:02:18.000] Plugins were requested but not running in environment that supports 'require'. Nothing will be loaded -Info 65 [16:02:19.000] Starting updateGraphWorker: Project: /user/username/projects/myproject/b/tsconfig.json -Info 66 [16:02:20.000] Finishing updateGraphWorker: Project: /user/username/projects/myproject/b/tsconfig.json Version: 3 structureChanged: false structureIsReused:: Completely Elapsed:: *ms -Info 67 [16:02:21.000] Different program with same set of files -Info 68 [16:02:22.000] Running: *ensureProjectForOpenFiles* -Info 69 [16:02:23.000] Before ensureProjectForOpenFiles: -Info 70 [16:02:24.000] Project '/user/username/projects/myproject/a/tsconfig.json' (Configured) -Info 70 [16:02:25.000] Files (1) - -Info 70 [16:02:26.000] ----------------------------------------------- -Info 70 [16:02:27.000] Project '/user/username/projects/myproject/b/tsconfig.json' (Configured) -Info 70 [16:02:28.000] Files (1) - -Info 70 [16:02:29.000] ----------------------------------------------- -Info 70 [16:02:30.000] Open files: -Info 70 [16:02:31.000] FileName: /user/username/projects/myproject/a/a.ts ProjectRootPath: undefined -Info 70 [16:02:32.000] Projects: /user/username/projects/myproject/a/tsconfig.json -Info 70 [16:02:33.000] FileName: /user/username/projects/myproject/b/b.ts ProjectRootPath: undefined -Info 70 [16:02:34.000] Projects: /user/username/projects/myproject/b/tsconfig.json -Info 70 [16:02:35.000] After ensureProjectForOpenFiles: -Info 71 [16:02:36.000] Project '/user/username/projects/myproject/a/tsconfig.json' (Configured) -Info 71 [16:02:37.000] Files (1) - -Info 71 [16:02:38.000] ----------------------------------------------- -Info 71 [16:02:39.000] Project '/user/username/projects/myproject/b/tsconfig.json' (Configured) -Info 71 [16:02:40.000] Files (1) - -Info 71 [16:02:41.000] ----------------------------------------------- -Info 71 [16:02:42.000] Open files: -Info 71 [16:02:43.000] FileName: /user/username/projects/myproject/a/a.ts ProjectRootPath: undefined -Info 71 [16:02:44.000] Projects: /user/username/projects/myproject/a/tsconfig.json -Info 71 [16:02:45.000] FileName: /user/username/projects/myproject/b/b.ts ProjectRootPath: undefined -Info 71 [16:02:46.000] Projects: /user/username/projects/myproject/b/tsconfig.json +Info 64 [00:02:18.000] Plugins were requested but not running in environment that supports 'require'. Nothing will be loaded +Info 65 [00:02:19.000] Starting updateGraphWorker: Project: /user/username/projects/myproject/b/tsconfig.json +Info 66 [00:02:20.000] Finishing updateGraphWorker: Project: /user/username/projects/myproject/b/tsconfig.json Version: 3 structureChanged: false structureIsReused:: Completely Elapsed:: *ms +Info 67 [00:02:21.000] Different program with same set of files +Info 68 [00:02:22.000] Running: *ensureProjectForOpenFiles* +Info 69 [00:02:23.000] Before ensureProjectForOpenFiles: +Info 70 [00:02:24.000] Project '/user/username/projects/myproject/a/tsconfig.json' (Configured) +Info 70 [00:02:25.000] Files (1) + +Info 70 [00:02:26.000] ----------------------------------------------- +Info 70 [00:02:27.000] Project '/user/username/projects/myproject/b/tsconfig.json' (Configured) +Info 70 [00:02:28.000] Files (1) + +Info 70 [00:02:29.000] ----------------------------------------------- +Info 70 [00:02:30.000] Open files: +Info 70 [00:02:31.000] FileName: /user/username/projects/myproject/a/a.ts ProjectRootPath: undefined +Info 70 [00:02:32.000] Projects: /user/username/projects/myproject/a/tsconfig.json +Info 70 [00:02:33.000] FileName: /user/username/projects/myproject/b/b.ts ProjectRootPath: undefined +Info 70 [00:02:34.000] Projects: /user/username/projects/myproject/b/tsconfig.json +Info 70 [00:02:35.000] After ensureProjectForOpenFiles: +Info 71 [00:02:36.000] Project '/user/username/projects/myproject/a/tsconfig.json' (Configured) +Info 71 [00:02:37.000] Files (1) + +Info 71 [00:02:38.000] ----------------------------------------------- +Info 71 [00:02:39.000] Project '/user/username/projects/myproject/b/tsconfig.json' (Configured) +Info 71 [00:02:40.000] Files (1) + +Info 71 [00:02:41.000] ----------------------------------------------- +Info 71 [00:02:42.000] Open files: +Info 71 [00:02:43.000] FileName: /user/username/projects/myproject/a/a.ts ProjectRootPath: undefined +Info 71 [00:02:44.000] Projects: /user/username/projects/myproject/a/tsconfig.json +Info 71 [00:02:45.000] FileName: /user/username/projects/myproject/b/b.ts ProjectRootPath: undefined +Info 71 [00:02:46.000] Projects: /user/username/projects/myproject/b/tsconfig.json After checking timeout queue length (2) and running PolledWatches:: @@ -319,10 +319,10 @@ FsWatches:: FsWatchesRecursive:: -Info 71 [16:02:50.000] FileWatcher:: Triggered with /user/username/projects/myproject/b/tsconfig.json 1:: WatchInfo: /user/username/projects/myproject/b/tsconfig.json 2000 undefined Project: /user/username/projects/myproject/b/tsconfig.json WatchType: Config file -Info 72 [16:02:51.000] Scheduled: /user/username/projects/myproject/b/tsconfig.json -Info 73 [16:02:52.000] Scheduled: *ensureProjectForOpenFiles* -Info 74 [16:02:53.000] Elapsed:: *ms FileWatcher:: Triggered with /user/username/projects/myproject/b/tsconfig.json 1:: WatchInfo: /user/username/projects/myproject/b/tsconfig.json 2000 undefined Project: /user/username/projects/myproject/b/tsconfig.json WatchType: Config file +Info 71 [00:02:50.000] FileWatcher:: Triggered with /user/username/projects/myproject/b/tsconfig.json 1:: WatchInfo: /user/username/projects/myproject/b/tsconfig.json 2000 undefined Project: /user/username/projects/myproject/b/tsconfig.json WatchType: Config file +Info 72 [00:02:51.000] Scheduled: /user/username/projects/myproject/b/tsconfig.json +Info 73 [00:02:52.000] Scheduled: *ensureProjectForOpenFiles* +Info 74 [00:02:53.000] Elapsed:: *ms FileWatcher:: Triggered with /user/username/projects/myproject/b/tsconfig.json 1:: WatchInfo: /user/username/projects/myproject/b/tsconfig.json 2000 undefined Project: /user/username/projects/myproject/b/tsconfig.json WatchType: Config file Before checking timeout queue length (2) and running //// [/user/username/projects/myproject/b/tsconfig.json] {"extends":"../extended/alpha.tsconfig.json"} @@ -350,9 +350,9 @@ FsWatches:: FsWatchesRecursive:: -Info 75 [16:02:54.000] Running: /user/username/projects/myproject/b/tsconfig.json -Info 76 [16:02:55.000] Reloading configured project /user/username/projects/myproject/b/tsconfig.json -Info 77 [16:02:56.000] Config: /user/username/projects/myproject/b/tsconfig.json : { +Info 75 [00:02:54.000] Running: /user/username/projects/myproject/b/tsconfig.json +Info 76 [00:02:55.000] Reloading configured project /user/username/projects/myproject/b/tsconfig.json +Info 77 [00:02:56.000] Config: /user/username/projects/myproject/b/tsconfig.json : { "rootNames": [ "/user/username/projects/myproject/b/b.ts" ], @@ -361,42 +361,42 @@ Info 77 [16:02:56.000] Config: /user/username/projects/myproject/b/tsconfig.js "configFilePath": "/user/username/projects/myproject/b/tsconfig.json" } } -Info 78 [16:02:57.000] FileWatcher:: Close:: WatchInfo: /user/username/projects/myproject/extended/bravo.tsconfig.json 2000 undefined Config: /user/username/projects/myproject/b/tsconfig.json WatchType: Extended config file -Info 79 [16:02:58.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/b 1 undefined Config: /user/username/projects/myproject/b/tsconfig.json WatchType: Wild card directory -Info 80 [16:02:59.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/b 1 undefined Config: /user/username/projects/myproject/b/tsconfig.json WatchType: Wild card directory -Info 81 [16:03:00.000] Plugins were requested but not running in environment that supports 'require'. Nothing will be loaded -Info 82 [16:03:01.000] Starting updateGraphWorker: Project: /user/username/projects/myproject/b/tsconfig.json -Info 83 [16:03:02.000] Finishing updateGraphWorker: Project: /user/username/projects/myproject/b/tsconfig.json Version: 4 structureChanged: false structureIsReused:: Completely Elapsed:: *ms -Info 84 [16:03:03.000] Different program with same set of files -Info 85 [16:03:04.000] Running: *ensureProjectForOpenFiles* -Info 86 [16:03:05.000] Before ensureProjectForOpenFiles: -Info 87 [16:03:06.000] Project '/user/username/projects/myproject/a/tsconfig.json' (Configured) -Info 87 [16:03:07.000] Files (1) - -Info 87 [16:03:08.000] ----------------------------------------------- -Info 87 [16:03:09.000] Project '/user/username/projects/myproject/b/tsconfig.json' (Configured) -Info 87 [16:03:10.000] Files (1) - -Info 87 [16:03:11.000] ----------------------------------------------- -Info 87 [16:03:12.000] Open files: -Info 87 [16:03:13.000] FileName: /user/username/projects/myproject/a/a.ts ProjectRootPath: undefined -Info 87 [16:03:14.000] Projects: /user/username/projects/myproject/a/tsconfig.json -Info 87 [16:03:15.000] FileName: /user/username/projects/myproject/b/b.ts ProjectRootPath: undefined -Info 87 [16:03:16.000] Projects: /user/username/projects/myproject/b/tsconfig.json -Info 87 [16:03:17.000] After ensureProjectForOpenFiles: -Info 88 [16:03:18.000] Project '/user/username/projects/myproject/a/tsconfig.json' (Configured) -Info 88 [16:03:19.000] Files (1) - -Info 88 [16:03:20.000] ----------------------------------------------- -Info 88 [16:03:21.000] Project '/user/username/projects/myproject/b/tsconfig.json' (Configured) -Info 88 [16:03:22.000] Files (1) - -Info 88 [16:03:23.000] ----------------------------------------------- -Info 88 [16:03:24.000] Open files: -Info 88 [16:03:25.000] FileName: /user/username/projects/myproject/a/a.ts ProjectRootPath: undefined -Info 88 [16:03:26.000] Projects: /user/username/projects/myproject/a/tsconfig.json -Info 88 [16:03:27.000] FileName: /user/username/projects/myproject/b/b.ts ProjectRootPath: undefined -Info 88 [16:03:28.000] Projects: /user/username/projects/myproject/b/tsconfig.json +Info 78 [00:02:57.000] FileWatcher:: Close:: WatchInfo: /user/username/projects/myproject/extended/bravo.tsconfig.json 2000 undefined Config: /user/username/projects/myproject/b/tsconfig.json WatchType: Extended config file +Info 79 [00:02:58.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/b 1 undefined Config: /user/username/projects/myproject/b/tsconfig.json WatchType: Wild card directory +Info 80 [00:02:59.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/b 1 undefined Config: /user/username/projects/myproject/b/tsconfig.json WatchType: Wild card directory +Info 81 [00:03:00.000] Plugins were requested but not running in environment that supports 'require'. Nothing will be loaded +Info 82 [00:03:01.000] Starting updateGraphWorker: Project: /user/username/projects/myproject/b/tsconfig.json +Info 83 [00:03:02.000] Finishing updateGraphWorker: Project: /user/username/projects/myproject/b/tsconfig.json Version: 4 structureChanged: false structureIsReused:: Completely Elapsed:: *ms +Info 84 [00:03:03.000] Different program with same set of files +Info 85 [00:03:04.000] Running: *ensureProjectForOpenFiles* +Info 86 [00:03:05.000] Before ensureProjectForOpenFiles: +Info 87 [00:03:06.000] Project '/user/username/projects/myproject/a/tsconfig.json' (Configured) +Info 87 [00:03:07.000] Files (1) + +Info 87 [00:03:08.000] ----------------------------------------------- +Info 87 [00:03:09.000] Project '/user/username/projects/myproject/b/tsconfig.json' (Configured) +Info 87 [00:03:10.000] Files (1) + +Info 87 [00:03:11.000] ----------------------------------------------- +Info 87 [00:03:12.000] Open files: +Info 87 [00:03:13.000] FileName: /user/username/projects/myproject/a/a.ts ProjectRootPath: undefined +Info 87 [00:03:14.000] Projects: /user/username/projects/myproject/a/tsconfig.json +Info 87 [00:03:15.000] FileName: /user/username/projects/myproject/b/b.ts ProjectRootPath: undefined +Info 87 [00:03:16.000] Projects: /user/username/projects/myproject/b/tsconfig.json +Info 87 [00:03:17.000] After ensureProjectForOpenFiles: +Info 88 [00:03:18.000] Project '/user/username/projects/myproject/a/tsconfig.json' (Configured) +Info 88 [00:03:19.000] Files (1) + +Info 88 [00:03:20.000] ----------------------------------------------- +Info 88 [00:03:21.000] Project '/user/username/projects/myproject/b/tsconfig.json' (Configured) +Info 88 [00:03:22.000] Files (1) + +Info 88 [00:03:23.000] ----------------------------------------------- +Info 88 [00:03:24.000] Open files: +Info 88 [00:03:25.000] FileName: /user/username/projects/myproject/a/a.ts ProjectRootPath: undefined +Info 88 [00:03:26.000] Projects: /user/username/projects/myproject/a/tsconfig.json +Info 88 [00:03:27.000] FileName: /user/username/projects/myproject/b/b.ts ProjectRootPath: undefined +Info 88 [00:03:28.000] Projects: /user/username/projects/myproject/b/tsconfig.json After checking timeout queue length (2) and running PolledWatches:: @@ -421,11 +421,11 @@ FsWatchesRecursive:: /user/username/projects/myproject/b: {} -Info 88 [16:03:32.000] FileWatcher:: Triggered with /user/username/projects/myproject/extended/alpha.tsconfig.json 1:: WatchInfo: /user/username/projects/myproject/extended/alpha.tsconfig.json 2000 undefined Config: /user/username/projects/myproject/a/tsconfig.json WatchType: Extended config file -Info 89 [16:03:33.000] Scheduled: /user/username/projects/myproject/a/tsconfig.json -Info 90 [16:03:34.000] Scheduled: /user/username/projects/myproject/b/tsconfig.json -Info 91 [16:03:35.000] Scheduled: *ensureProjectForOpenFiles* -Info 92 [16:03:36.000] Elapsed:: *ms FileWatcher:: Triggered with /user/username/projects/myproject/extended/alpha.tsconfig.json 1:: WatchInfo: /user/username/projects/myproject/extended/alpha.tsconfig.json 2000 undefined Config: /user/username/projects/myproject/a/tsconfig.json WatchType: Extended config file +Info 88 [00:03:32.000] FileWatcher:: Triggered with /user/username/projects/myproject/extended/alpha.tsconfig.json 1:: WatchInfo: /user/username/projects/myproject/extended/alpha.tsconfig.json 2000 undefined Config: /user/username/projects/myproject/a/tsconfig.json WatchType: Extended config file +Info 89 [00:03:33.000] Scheduled: /user/username/projects/myproject/a/tsconfig.json +Info 90 [00:03:34.000] Scheduled: /user/username/projects/myproject/b/tsconfig.json +Info 91 [00:03:35.000] Scheduled: *ensureProjectForOpenFiles* +Info 92 [00:03:36.000] Elapsed:: *ms FileWatcher:: Triggered with /user/username/projects/myproject/extended/alpha.tsconfig.json 1:: WatchInfo: /user/username/projects/myproject/extended/alpha.tsconfig.json 2000 undefined Config: /user/username/projects/myproject/a/tsconfig.json WatchType: Extended config file Before checking timeout queue length (3) and running //// [/user/username/projects/myproject/extended/alpha.tsconfig.json] {} @@ -453,9 +453,9 @@ FsWatchesRecursive:: /user/username/projects/myproject/b: {} -Info 93 [16:03:37.000] Running: /user/username/projects/myproject/a/tsconfig.json -Info 94 [16:03:38.000] Reloading configured project /user/username/projects/myproject/a/tsconfig.json -Info 95 [16:03:39.000] Config: /user/username/projects/myproject/a/tsconfig.json : { +Info 93 [00:03:37.000] Running: /user/username/projects/myproject/a/tsconfig.json +Info 94 [00:03:38.000] Reloading configured project /user/username/projects/myproject/a/tsconfig.json +Info 95 [00:03:39.000] Config: /user/username/projects/myproject/a/tsconfig.json : { "rootNames": [ "/user/username/projects/myproject/a/a.ts" ], @@ -463,13 +463,13 @@ Info 95 [16:03:39.000] Config: /user/username/projects/myproject/a/tsconfig.js "configFilePath": "/user/username/projects/myproject/a/tsconfig.json" } } -Info 96 [16:03:40.000] Plugins were requested but not running in environment that supports 'require'. Nothing will be loaded -Info 97 [16:03:41.000] Starting updateGraphWorker: Project: /user/username/projects/myproject/a/tsconfig.json -Info 98 [16:03:42.000] Finishing updateGraphWorker: Project: /user/username/projects/myproject/a/tsconfig.json Version: 3 structureChanged: false structureIsReused:: Completely Elapsed:: *ms -Info 99 [16:03:43.000] Different program with same set of files -Info 100 [16:03:44.000] Running: /user/username/projects/myproject/b/tsconfig.json -Info 101 [16:03:45.000] Reloading configured project /user/username/projects/myproject/b/tsconfig.json -Info 102 [16:03:46.000] Config: /user/username/projects/myproject/b/tsconfig.json : { +Info 96 [00:03:40.000] Plugins were requested but not running in environment that supports 'require'. Nothing will be loaded +Info 97 [00:03:41.000] Starting updateGraphWorker: Project: /user/username/projects/myproject/a/tsconfig.json +Info 98 [00:03:42.000] Finishing updateGraphWorker: Project: /user/username/projects/myproject/a/tsconfig.json Version: 3 structureChanged: false structureIsReused:: Completely Elapsed:: *ms +Info 99 [00:03:43.000] Different program with same set of files +Info 100 [00:03:44.000] Running: /user/username/projects/myproject/b/tsconfig.json +Info 101 [00:03:45.000] Reloading configured project /user/username/projects/myproject/b/tsconfig.json +Info 102 [00:03:46.000] Config: /user/username/projects/myproject/b/tsconfig.json : { "rootNames": [ "/user/username/projects/myproject/b/b.ts" ], @@ -477,39 +477,39 @@ Info 102 [16:03:46.000] Config: /user/username/projects/myproject/b/tsconfig.js "configFilePath": "/user/username/projects/myproject/b/tsconfig.json" } } -Info 103 [16:03:47.000] Plugins were requested but not running in environment that supports 'require'. Nothing will be loaded -Info 104 [16:03:48.000] Starting updateGraphWorker: Project: /user/username/projects/myproject/b/tsconfig.json -Info 105 [16:03:49.000] Finishing updateGraphWorker: Project: /user/username/projects/myproject/b/tsconfig.json Version: 5 structureChanged: false structureIsReused:: Completely Elapsed:: *ms -Info 106 [16:03:50.000] Different program with same set of files -Info 107 [16:03:51.000] Running: *ensureProjectForOpenFiles* -Info 108 [16:03:52.000] Before ensureProjectForOpenFiles: -Info 109 [16:03:53.000] Project '/user/username/projects/myproject/a/tsconfig.json' (Configured) -Info 109 [16:03:54.000] Files (1) - -Info 109 [16:03:55.000] ----------------------------------------------- -Info 109 [16:03:56.000] Project '/user/username/projects/myproject/b/tsconfig.json' (Configured) -Info 109 [16:03:57.000] Files (1) - -Info 109 [16:03:58.000] ----------------------------------------------- -Info 109 [16:03:59.000] Open files: -Info 109 [16:04:00.000] FileName: /user/username/projects/myproject/a/a.ts ProjectRootPath: undefined -Info 109 [16:04:01.000] Projects: /user/username/projects/myproject/a/tsconfig.json -Info 109 [16:04:02.000] FileName: /user/username/projects/myproject/b/b.ts ProjectRootPath: undefined -Info 109 [16:04:03.000] Projects: /user/username/projects/myproject/b/tsconfig.json -Info 109 [16:04:04.000] After ensureProjectForOpenFiles: -Info 110 [16:04:05.000] Project '/user/username/projects/myproject/a/tsconfig.json' (Configured) -Info 110 [16:04:06.000] Files (1) - -Info 110 [16:04:07.000] ----------------------------------------------- -Info 110 [16:04:08.000] Project '/user/username/projects/myproject/b/tsconfig.json' (Configured) -Info 110 [16:04:09.000] Files (1) - -Info 110 [16:04:10.000] ----------------------------------------------- -Info 110 [16:04:11.000] Open files: -Info 110 [16:04:12.000] FileName: /user/username/projects/myproject/a/a.ts ProjectRootPath: undefined -Info 110 [16:04:13.000] Projects: /user/username/projects/myproject/a/tsconfig.json -Info 110 [16:04:14.000] FileName: /user/username/projects/myproject/b/b.ts ProjectRootPath: undefined -Info 110 [16:04:15.000] Projects: /user/username/projects/myproject/b/tsconfig.json +Info 103 [00:03:47.000] Plugins were requested but not running in environment that supports 'require'. Nothing will be loaded +Info 104 [00:03:48.000] Starting updateGraphWorker: Project: /user/username/projects/myproject/b/tsconfig.json +Info 105 [00:03:49.000] Finishing updateGraphWorker: Project: /user/username/projects/myproject/b/tsconfig.json Version: 5 structureChanged: false structureIsReused:: Completely Elapsed:: *ms +Info 106 [00:03:50.000] Different program with same set of files +Info 107 [00:03:51.000] Running: *ensureProjectForOpenFiles* +Info 108 [00:03:52.000] Before ensureProjectForOpenFiles: +Info 109 [00:03:53.000] Project '/user/username/projects/myproject/a/tsconfig.json' (Configured) +Info 109 [00:03:54.000] Files (1) + +Info 109 [00:03:55.000] ----------------------------------------------- +Info 109 [00:03:56.000] Project '/user/username/projects/myproject/b/tsconfig.json' (Configured) +Info 109 [00:03:57.000] Files (1) + +Info 109 [00:03:58.000] ----------------------------------------------- +Info 109 [00:03:59.000] Open files: +Info 109 [00:04:00.000] FileName: /user/username/projects/myproject/a/a.ts ProjectRootPath: undefined +Info 109 [00:04:01.000] Projects: /user/username/projects/myproject/a/tsconfig.json +Info 109 [00:04:02.000] FileName: /user/username/projects/myproject/b/b.ts ProjectRootPath: undefined +Info 109 [00:04:03.000] Projects: /user/username/projects/myproject/b/tsconfig.json +Info 109 [00:04:04.000] After ensureProjectForOpenFiles: +Info 110 [00:04:05.000] Project '/user/username/projects/myproject/a/tsconfig.json' (Configured) +Info 110 [00:04:06.000] Files (1) + +Info 110 [00:04:07.000] ----------------------------------------------- +Info 110 [00:04:08.000] Project '/user/username/projects/myproject/b/tsconfig.json' (Configured) +Info 110 [00:04:09.000] Files (1) + +Info 110 [00:04:10.000] ----------------------------------------------- +Info 110 [00:04:11.000] Open files: +Info 110 [00:04:12.000] FileName: /user/username/projects/myproject/a/a.ts ProjectRootPath: undefined +Info 110 [00:04:13.000] Projects: /user/username/projects/myproject/a/tsconfig.json +Info 110 [00:04:14.000] FileName: /user/username/projects/myproject/b/b.ts ProjectRootPath: undefined +Info 110 [00:04:15.000] Projects: /user/username/projects/myproject/b/tsconfig.json After checking timeout queue length (3) and running PolledWatches:: 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 0c968346ff6e9..e2f7cf847adc3 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 @@ -1,5 +1,5 @@ -Info 0 [16:00:35.000] Provided types map file "/a/lib/typesMap.json" doesn't exist -Info 1 [16:00:36.000] request: +Info 0 [00:00:35.000] Provided types map file "/a/lib/typesMap.json" doesn't exist +Info 1 [00:00:36.000] request: { "seq": 0, "type": "request", @@ -53,13 +53,13 @@ FsWatches:: FsWatchesRecursive:: -Info 2 [16:00:37.000] Search path: /user/username/projects/myproject/foo -Info 3 [16:00:38.000] For info: /user/username/projects/myproject/foo/index.ts :: Config file name: /user/username/projects/myproject/foo/tsconfig.json -Info 4 [16:00:39.000] Creating configuration project /user/username/projects/myproject/foo/tsconfig.json -Info 5 [16:00:40.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/foo/tsconfig.json 2000 undefined Project: /user/username/projects/myproject/foo/tsconfig.json WatchType: Config file -Info 6 [16:00:41.000] event: +Info 2 [00:00:37.000] Search path: /user/username/projects/myproject/foo +Info 3 [00:00:38.000] For info: /user/username/projects/myproject/foo/index.ts :: Config file name: /user/username/projects/myproject/foo/tsconfig.json +Info 4 [00:00:39.000] Creating configuration project /user/username/projects/myproject/foo/tsconfig.json +Info 5 [00:00:40.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/foo/tsconfig.json 2000 undefined Project: /user/username/projects/myproject/foo/tsconfig.json WatchType: Config file +Info 6 [00:00:41.000] event: {"seq":0,"type":"event","event":"projectLoadingStart","body":{"projectName":"/user/username/projects/myproject/foo/tsconfig.json","reason":"Creating possible configured project for /user/username/projects/myproject/foo/index.ts to open"}} -Info 7 [16:00:42.000] Config: /user/username/projects/myproject/foo/tsconfig.json : { +Info 7 [00:00:42.000] Config: /user/username/projects/myproject/foo/tsconfig.json : { "rootNames": [ "/user/username/projects/myproject/foo/index.ts" ], @@ -70,19 +70,19 @@ Info 7 [16:00:42.000] Config: /user/username/projects/myproject/foo/tsconfig. "configFilePath": "/user/username/projects/myproject/foo/tsconfig.json" } } -Info 8 [16:00:43.000] Plugins were requested but not running in environment that supports 'require'. Nothing will be loaded -Info 9 [16:00:44.000] Starting updateGraphWorker: Project: /user/username/projects/myproject/foo/tsconfig.json -Info 10 [16:00:45.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/bar/index.ts 500 undefined WatchType: Closed Script info -Info 11 [16:00:46.000] FileWatcher:: Added:: WatchInfo: /a/lib/lib.es2017.d.ts 500 undefined WatchType: Closed Script info -Info 12 [16:00:47.000] 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 13 [16:00:48.000] 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 14 [16:00:49.000] 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 15 [16:00:50.000] 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 16 [16:00:51.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/foo/tsconfig.json WatchType: Type roots -Info 17 [16:00:52.000] 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 18 [16:00:53.000] Finishing updateGraphWorker: Project: /user/username/projects/myproject/foo/tsconfig.json Version: 1 structureChanged: true structureIsReused:: Not Elapsed:: *ms -Info 19 [16:00:54.000] Project '/user/username/projects/myproject/foo/tsconfig.json' (Configured) -Info 20 [16:00:55.000] Files (3) +Info 8 [00:00:43.000] Plugins were requested but not running in environment that supports 'require'. Nothing will be loaded +Info 9 [00:00:44.000] Starting updateGraphWorker: Project: /user/username/projects/myproject/foo/tsconfig.json +Info 10 [00:00:45.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/bar/index.ts 500 undefined WatchType: Closed Script info +Info 11 [00:00:46.000] FileWatcher:: Added:: WatchInfo: /a/lib/lib.es2017.d.ts 500 undefined WatchType: Closed Script info +Info 12 [00:00:47.000] 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 13 [00:00:48.000] 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 14 [00:00:49.000] 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 15 [00:00:50.000] 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 16 [00:00:51.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/foo/tsconfig.json WatchType: Type roots +Info 17 [00:00:52.000] 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 18 [00:00:53.000] Finishing updateGraphWorker: Project: /user/username/projects/myproject/foo/tsconfig.json Version: 1 structureChanged: true structureIsReused:: Not Elapsed:: *ms +Info 19 [00:00:54.000] Project '/user/username/projects/myproject/foo/tsconfig.json' (Configured) +Info 20 [00:00:55.000] Files (3) /a/lib/lib.es2017.d.ts /user/username/projects/myproject/bar/index.ts /user/username/projects/myproject/foo/index.ts @@ -95,20 +95,20 @@ Info 20 [16:00:55.000] Files (3) index.ts Matched by include pattern 'index.ts' in 'tsconfig.json' -Info 21 [16:00:56.000] ----------------------------------------------- -Info 22 [16:00:57.000] event: +Info 21 [00:00:56.000] ----------------------------------------------- +Info 22 [00:00:57.000] event: {"seq":0,"type":"event","event":"projectLoadingFinish","body":{"projectName":"/user/username/projects/myproject/foo/tsconfig.json"}} -Info 23 [16:00:58.000] event: +Info 23 [00:00:58.000] event: {"seq":0,"type":"event","event":"telemetry","body":{"telemetryEventName":"projectInfo","payload":{"projectId":"36730603d9c37d63f14b455060fadde05a7a93dcbc44aecd507b60e066616be6","fileStats":{"js":0,"jsSize":0,"jsx":0,"jsxSize":0,"ts":2,"tsSize":90,"tsx":0,"tsxSize":0,"dts":1,"dtsSize":334,"deferred":0,"deferredSize":0},"compilerOptions":{"lib":["es2017"]},"typeAcquisition":{"enable":false,"include":false,"exclude":false},"extends":false,"files":false,"include":true,"exclude":false,"compileOnSave":false,"configFileName":"tsconfig.json","projectType":"configured","languageServiceEnabled":true,"version":"FakeVersion"}}} -Info 24 [16:00:59.000] event: +Info 24 [00:00:59.000] event: {"seq":0,"type":"event","event":"configFileDiag","body":{"triggerFile":"/user/username/projects/myproject/foo/index.ts","configFile":"/user/username/projects/myproject/foo/tsconfig.json","diagnostics":[]}} -Info 25 [16:01:00.000] Project '/user/username/projects/myproject/foo/tsconfig.json' (Configured) -Info 25 [16:01:01.000] Files (3) +Info 25 [00:01:00.000] Project '/user/username/projects/myproject/foo/tsconfig.json' (Configured) +Info 25 [00:01:01.000] Files (3) -Info 25 [16:01:02.000] ----------------------------------------------- -Info 25 [16:01:03.000] Open files: -Info 25 [16:01:04.000] FileName: /user/username/projects/myproject/foo/index.ts ProjectRootPath: undefined -Info 25 [16:01:05.000] Projects: /user/username/projects/myproject/foo/tsconfig.json +Info 25 [00:01:02.000] ----------------------------------------------- +Info 25 [00:01:03.000] Open files: +Info 25 [00:01:04.000] FileName: /user/username/projects/myproject/foo/index.ts ProjectRootPath: undefined +Info 25 [00:01:05.000] Projects: /user/username/projects/myproject/foo/tsconfig.json After request PolledWatches:: @@ -129,11 +129,11 @@ FsWatchesRecursive:: /user/username/projects/myproject/foo/node_modules: {} -Info 25 [16:01:06.000] response: +Info 25 [00:01:06.000] response: { "responseRequired": false } -Info 26 [16:01:07.000] request: +Info 26 [00:01:07.000] request: { "seq": 0, "type": "request", @@ -162,14 +162,14 @@ FsWatchesRecursive:: /user/username/projects/myproject/foo/node_modules: {} -Info 27 [16:01:08.000] FileWatcher:: Close:: WatchInfo: /user/username/projects/myproject/bar/index.ts 500 undefined WatchType: Closed Script info -Info 28 [16:01:09.000] Search path: /user/username/projects/myproject/bar -Info 29 [16:01:10.000] For info: /user/username/projects/myproject/bar/index.ts :: Config file name: /user/username/projects/myproject/bar/tsconfig.json -Info 30 [16:01:11.000] Creating configuration project /user/username/projects/myproject/bar/tsconfig.json -Info 31 [16:01:12.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/bar/tsconfig.json 2000 undefined Project: /user/username/projects/myproject/bar/tsconfig.json WatchType: Config file -Info 32 [16:01:13.000] event: +Info 27 [00:01:08.000] FileWatcher:: Close:: WatchInfo: /user/username/projects/myproject/bar/index.ts 500 undefined WatchType: Closed Script info +Info 28 [00:01:09.000] Search path: /user/username/projects/myproject/bar +Info 29 [00:01:10.000] For info: /user/username/projects/myproject/bar/index.ts :: Config file name: /user/username/projects/myproject/bar/tsconfig.json +Info 30 [00:01:11.000] Creating configuration project /user/username/projects/myproject/bar/tsconfig.json +Info 31 [00:01:12.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/bar/tsconfig.json 2000 undefined Project: /user/username/projects/myproject/bar/tsconfig.json WatchType: Config file +Info 32 [00:01:13.000] event: {"seq":0,"type":"event","event":"projectLoadingStart","body":{"projectName":"/user/username/projects/myproject/bar/tsconfig.json","reason":"Creating possible configured project for /user/username/projects/myproject/bar/index.ts to open"}} -Info 33 [16:01:14.000] Config: /user/username/projects/myproject/bar/tsconfig.json : { +Info 33 [00:01:14.000] Config: /user/username/projects/myproject/bar/tsconfig.json : { "rootNames": [ "/user/username/projects/myproject/bar/index.ts" ], @@ -181,16 +181,16 @@ Info 33 [16:01:14.000] Config: /user/username/projects/myproject/bar/tsconfig. "configFilePath": "/user/username/projects/myproject/bar/tsconfig.json" } } -Info 34 [16:01:15.000] Plugins were requested but not running in environment that supports 'require'. Nothing will be loaded -Info 35 [16:01:16.000] Starting updateGraphWorker: Project: /user/username/projects/myproject/bar/tsconfig.json -Info 36 [16:01:17.000] FileWatcher:: Added:: WatchInfo: /a/lib/lib.dom.d.ts 500 undefined WatchType: Closed Script info -Info 37 [16:01:18.000] 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 38 [16:01:19.000] 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 39 [16:01:20.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/bar/tsconfig.json WatchType: Type roots -Info 40 [16:01:21.000] 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 41 [16:01:22.000] Finishing updateGraphWorker: Project: /user/username/projects/myproject/bar/tsconfig.json Version: 1 structureChanged: true structureIsReused:: Not Elapsed:: *ms -Info 42 [16:01:23.000] Project '/user/username/projects/myproject/bar/tsconfig.json' (Configured) -Info 43 [16:01:24.000] Files (3) +Info 34 [00:01:15.000] Plugins were requested but not running in environment that supports 'require'. Nothing will be loaded +Info 35 [00:01:16.000] Starting updateGraphWorker: Project: /user/username/projects/myproject/bar/tsconfig.json +Info 36 [00:01:17.000] FileWatcher:: Added:: WatchInfo: /a/lib/lib.dom.d.ts 500 undefined WatchType: Closed Script info +Info 37 [00:01:18.000] 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 38 [00:01:19.000] 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 39 [00:01:20.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/bar/tsconfig.json WatchType: Type roots +Info 40 [00:01:21.000] 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 41 [00:01:22.000] Finishing updateGraphWorker: Project: /user/username/projects/myproject/bar/tsconfig.json Version: 1 structureChanged: true structureIsReused:: Not Elapsed:: *ms +Info 42 [00:01:23.000] Project '/user/username/projects/myproject/bar/tsconfig.json' (Configured) +Info 43 [00:01:24.000] Files (3) /a/lib/lib.es2017.d.ts /a/lib/lib.dom.d.ts /user/username/projects/myproject/bar/index.ts @@ -203,26 +203,26 @@ Info 43 [16:01:24.000] Files (3) index.ts Matched by include pattern 'index.ts' in 'tsconfig.json' -Info 44 [16:01:25.000] ----------------------------------------------- -Info 45 [16:01:26.000] event: +Info 44 [00:01:25.000] ----------------------------------------------- +Info 45 [00:01:26.000] event: {"seq":0,"type":"event","event":"projectLoadingFinish","body":{"projectName":"/user/username/projects/myproject/bar/tsconfig.json"}} -Info 46 [16:01:27.000] event: +Info 46 [00:01:27.000] event: {"seq":0,"type":"event","event":"telemetry","body":{"telemetryEventName":"projectInfo","payload":{"projectId":"5370ca7ca3faf398ecd694700ec7a0793b5e111125c5b8f56f69d3de23ff19ae","fileStats":{"js":0,"jsSize":0,"jsx":0,"jsxSize":0,"ts":1,"tsSize":56,"tsx":0,"tsxSize":0,"dts":2,"dtsSize":391,"deferred":0,"deferredSize":0},"compilerOptions":{"lib":["dom","es2017"]},"typeAcquisition":{"enable":false,"include":false,"exclude":false},"extends":false,"files":false,"include":true,"exclude":false,"compileOnSave":false,"configFileName":"tsconfig.json","projectType":"configured","languageServiceEnabled":true,"version":"FakeVersion"}}} -Info 47 [16:01:28.000] event: +Info 47 [00:01:28.000] event: {"seq":0,"type":"event","event":"configFileDiag","body":{"triggerFile":"/user/username/projects/myproject/bar/index.ts","configFile":"/user/username/projects/myproject/bar/tsconfig.json","diagnostics":[]}} -Info 48 [16:01:29.000] Project '/user/username/projects/myproject/foo/tsconfig.json' (Configured) -Info 48 [16:01:30.000] Files (3) - -Info 48 [16:01:31.000] ----------------------------------------------- -Info 48 [16:01:32.000] Project '/user/username/projects/myproject/bar/tsconfig.json' (Configured) -Info 48 [16:01:33.000] Files (3) - -Info 48 [16:01:34.000] ----------------------------------------------- -Info 48 [16:01:35.000] Open files: -Info 48 [16:01:36.000] FileName: /user/username/projects/myproject/foo/index.ts ProjectRootPath: undefined -Info 48 [16:01:37.000] Projects: /user/username/projects/myproject/foo/tsconfig.json -Info 48 [16:01:38.000] FileName: /user/username/projects/myproject/bar/index.ts ProjectRootPath: undefined -Info 48 [16:01:39.000] Projects: /user/username/projects/myproject/foo/tsconfig.json,/user/username/projects/myproject/bar/tsconfig.json +Info 48 [00:01:29.000] Project '/user/username/projects/myproject/foo/tsconfig.json' (Configured) +Info 48 [00:01:30.000] Files (3) + +Info 48 [00:01:31.000] ----------------------------------------------- +Info 48 [00:01:32.000] Project '/user/username/projects/myproject/bar/tsconfig.json' (Configured) +Info 48 [00:01:33.000] Files (3) + +Info 48 [00:01:34.000] ----------------------------------------------- +Info 48 [00:01:35.000] Open files: +Info 48 [00:01:36.000] FileName: /user/username/projects/myproject/foo/index.ts ProjectRootPath: undefined +Info 48 [00:01:37.000] Projects: /user/username/projects/myproject/foo/tsconfig.json +Info 48 [00:01:38.000] FileName: /user/username/projects/myproject/bar/index.ts ProjectRootPath: undefined +Info 48 [00:01:39.000] Projects: /user/username/projects/myproject/foo/tsconfig.json,/user/username/projects/myproject/bar/tsconfig.json After request PolledWatches:: @@ -247,11 +247,11 @@ FsWatchesRecursive:: /user/username/projects/myproject/foo/node_modules: {} -Info 48 [16:01:40.000] response: +Info 48 [00:01:40.000] response: { "responseRequired": false } -Info 49 [16:01:41.000] request: +Info 49 [00:01:41.000] request: { "command": "geterr", "arguments": { @@ -312,7 +312,7 @@ FsWatchesRecursive:: /user/username/projects/myproject/foo/node_modules: {} -Info 50 [16:01:42.000] response: +Info 50 [00:01:42.000] response: { "responseRequired": false } @@ -340,7 +340,7 @@ FsWatchesRecursive:: /user/username/projects/myproject/foo/node_modules: {} -Info 51 [16:01:43.000] event: +Info 51 [00:01:43.000] event: {"seq":0,"type":"event","event":"syntaxDiag","body":{"file":"/user/username/projects/myproject/bar/index.ts","diagnostics":[]}} After checking timeout queue length (1) and running @@ -390,7 +390,7 @@ FsWatchesRecursive:: /user/username/projects/myproject/foo/node_modules: {} -Info 52 [16:01:44.000] event: +Info 52 [00:01:44.000] event: {"seq":0,"type":"event","event":"semanticDiag","body":{"file":"/user/username/projects/myproject/bar/index.ts","diagnostics":[]}} Before running immediate callbacks and checking length (1) @@ -440,7 +440,7 @@ FsWatchesRecursive:: /user/username/projects/myproject/foo/node_modules: {} -Info 53 [16:01:45.000] event: +Info 53 [00:01:45.000] event: {"seq":0,"type":"event","event":"suggestionDiag","body":{"file":"/user/username/projects/myproject/bar/index.ts","diagnostics":[]}} Before running immediate callbacks and checking length (1) @@ -490,7 +490,7 @@ FsWatchesRecursive:: /user/username/projects/myproject/foo/node_modules: {} -Info 54 [16:01:46.000] event: +Info 54 [00:01:46.000] event: {"seq":0,"type":"event","event":"syntaxDiag","body":{"file":"/user/username/projects/myproject/foo/index.ts","diagnostics":[]}} After checking timeout queue length (1) and running @@ -540,7 +540,7 @@ FsWatchesRecursive:: /user/username/projects/myproject/foo/node_modules: {} -Info 55 [16:01:47.000] event: +Info 55 [00:01:47.000] event: {"seq":0,"type":"event","event":"semanticDiag","body":{"file":"/user/username/projects/myproject/foo/index.ts","diagnostics":[]}} Before running immediate callbacks and checking length (1) @@ -590,9 +590,9 @@ FsWatchesRecursive:: /user/username/projects/myproject/foo/node_modules: {} -Info 56 [16:01:48.000] event: +Info 56 [00:01:48.000] event: {"seq":0,"type":"event","event":"suggestionDiag","body":{"file":"/user/username/projects/myproject/foo/index.ts","diagnostics":[]}} -Info 57 [16:01:49.000] event: +Info 57 [00:01:49.000] event: {"seq":0,"type":"event","event":"requestCompleted","body":{"request_seq":1}} Before running immediate callbacks and checking length (1) diff --git a/tests/baselines/reference/tsserver/forceConsistentCasingInFileNames/when-changing-module-name-with-different-casing.js b/tests/baselines/reference/tsserver/forceConsistentCasingInFileNames/when-changing-module-name-with-different-casing.js index 43eee4e03b018..dd8a58caf101c 100644 --- a/tests/baselines/reference/tsserver/forceConsistentCasingInFileNames/when-changing-module-name-with-different-casing.js +++ b/tests/baselines/reference/tsserver/forceConsistentCasingInFileNames/when-changing-module-name-with-different-casing.js @@ -1,5 +1,5 @@ -Info 0 [16:00:24.000] Provided types map file "/a/lib/typesMap.json" doesn't exist -Info 1 [16:00:25.000] request: +Info 0 [00:00:24.000] Provided types map file "/a/lib/typesMap.json" doesn't exist +Info 1 [00:00:25.000] request: { "seq": 0, "type": "request", @@ -39,13 +39,13 @@ FsWatches:: FsWatchesRecursive:: -Info 2 [16:00:26.000] Search path: /user/username/projects/myproject -Info 3 [16:00:27.000] For info: /user/username/projects/myproject/another.ts :: Config file name: /user/username/projects/myproject/tsconfig.json -Info 4 [16:00:28.000] Creating configuration project /user/username/projects/myproject/tsconfig.json -Info 5 [16:00:29.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/tsconfig.json 2000 undefined Project: /user/username/projects/myproject/tsconfig.json WatchType: Config file -Info 6 [16:00:30.000] event: +Info 2 [00:00:26.000] Search path: /user/username/projects/myproject +Info 3 [00:00:27.000] For info: /user/username/projects/myproject/another.ts :: Config file name: /user/username/projects/myproject/tsconfig.json +Info 4 [00:00:28.000] Creating configuration project /user/username/projects/myproject/tsconfig.json +Info 5 [00:00:29.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/tsconfig.json 2000 undefined Project: /user/username/projects/myproject/tsconfig.json WatchType: Config file +Info 6 [00:00:30.000] event: {"seq":0,"type":"event","event":"projectLoadingStart","body":{"projectName":"/user/username/projects/myproject/tsconfig.json","reason":"Creating possible configured project for /user/username/projects/myproject/another.ts to open"}} -Info 7 [16:00:31.000] Config: /user/username/projects/myproject/tsconfig.json : { +Info 7 [00:00:31.000] Config: /user/username/projects/myproject/tsconfig.json : { "rootNames": [ "/user/username/projects/myproject/Logger.ts", "/user/username/projects/myproject/another.ts" @@ -55,17 +55,17 @@ Info 7 [16:00:31.000] Config: /user/username/projects/myproject/tsconfig.json "configFilePath": "/user/username/projects/myproject/tsconfig.json" } } -Info 8 [16:00:32.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject 1 undefined Config: /user/username/projects/myproject/tsconfig.json WatchType: Wild card directory -Info 9 [16:00:33.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject 1 undefined Config: /user/username/projects/myproject/tsconfig.json WatchType: Wild card directory -Info 10 [16:00:34.000] Plugins were requested but not running in environment that supports 'require'. Nothing will be loaded -Info 11 [16:00:35.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/Logger.ts 500 undefined WatchType: Closed Script info -Info 12 [16:00:36.000] Starting updateGraphWorker: Project: /user/username/projects/myproject/tsconfig.json -Info 13 [16:00:37.000] FileWatcher:: Added:: WatchInfo: /a/lib/lib.d.ts 500 undefined WatchType: Closed Script info -Info 14 [16:00:38.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/tsconfig.json WatchType: Type roots -Info 15 [16:00:39.000] 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 16 [16:00:40.000] Finishing updateGraphWorker: Project: /user/username/projects/myproject/tsconfig.json Version: 1 structureChanged: true structureIsReused:: Not Elapsed:: *ms -Info 17 [16:00:41.000] Project '/user/username/projects/myproject/tsconfig.json' (Configured) -Info 18 [16:00:42.000] Files (3) +Info 8 [00:00:32.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject 1 undefined Config: /user/username/projects/myproject/tsconfig.json WatchType: Wild card directory +Info 9 [00:00:33.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject 1 undefined Config: /user/username/projects/myproject/tsconfig.json WatchType: Wild card directory +Info 10 [00:00:34.000] Plugins were requested but not running in environment that supports 'require'. Nothing will be loaded +Info 11 [00:00:35.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/Logger.ts 500 undefined WatchType: Closed Script info +Info 12 [00:00:36.000] Starting updateGraphWorker: Project: /user/username/projects/myproject/tsconfig.json +Info 13 [00:00:37.000] FileWatcher:: Added:: WatchInfo: /a/lib/lib.d.ts 500 undefined WatchType: Closed Script info +Info 14 [00:00:38.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/tsconfig.json WatchType: Type roots +Info 15 [00:00:39.000] 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 16 [00:00:40.000] Finishing updateGraphWorker: Project: /user/username/projects/myproject/tsconfig.json Version: 1 structureChanged: true structureIsReused:: Not Elapsed:: *ms +Info 17 [00:00:41.000] Project '/user/username/projects/myproject/tsconfig.json' (Configured) +Info 18 [00:00:42.000] Files (3) /a/lib/lib.d.ts /user/username/projects/myproject/Logger.ts /user/username/projects/myproject/another.ts @@ -79,20 +79,20 @@ Info 18 [16:00:42.000] Files (3) another.ts Matched by default include pattern '**/*' -Info 19 [16:00:43.000] ----------------------------------------------- -Info 20 [16:00:44.000] event: +Info 19 [00:00:43.000] ----------------------------------------------- +Info 20 [00:00:44.000] event: {"seq":0,"type":"event","event":"projectLoadingFinish","body":{"projectName":"/user/username/projects/myproject/tsconfig.json"}} -Info 21 [16:00:45.000] event: +Info 21 [00:00:45.000] event: {"seq":0,"type":"event","event":"telemetry","body":{"telemetryEventName":"projectInfo","payload":{"projectId":"4a33d78ee40d836c4f4e64c59aed976628aea0013be9585c5ff171dfc41baf98","fileStats":{"js":0,"jsSize":0,"jsx":0,"jsxSize":0,"ts":2,"tsSize":71,"tsx":0,"tsxSize":0,"dts":1,"dtsSize":334,"deferred":0,"deferredSize":0},"compilerOptions":{"forceConsistentCasingInFileNames":true},"typeAcquisition":{"enable":false,"include":false,"exclude":false},"extends":false,"files":false,"include":false,"exclude":false,"compileOnSave":false,"configFileName":"tsconfig.json","projectType":"configured","languageServiceEnabled":true,"version":"FakeVersion"}}} -Info 22 [16:00:46.000] event: +Info 22 [00:00:46.000] event: {"seq":0,"type":"event","event":"configFileDiag","body":{"triggerFile":"/user/username/projects/myproject/another.ts","configFile":"/user/username/projects/myproject/tsconfig.json","diagnostics":[]}} -Info 23 [16:00:47.000] Project '/user/username/projects/myproject/tsconfig.json' (Configured) -Info 23 [16:00:48.000] Files (3) +Info 23 [00:00:47.000] Project '/user/username/projects/myproject/tsconfig.json' (Configured) +Info 23 [00:00:48.000] Files (3) -Info 23 [16:00:49.000] ----------------------------------------------- -Info 23 [16:00:50.000] Open files: -Info 23 [16:00:51.000] FileName: /user/username/projects/myproject/another.ts ProjectRootPath: /user/username/projects/myproject -Info 23 [16:00:52.000] Projects: /user/username/projects/myproject/tsconfig.json +Info 23 [00:00:49.000] ----------------------------------------------- +Info 23 [00:00:50.000] Open files: +Info 23 [00:00:51.000] FileName: /user/username/projects/myproject/another.ts ProjectRootPath: /user/username/projects/myproject +Info 23 [00:00:52.000] Projects: /user/username/projects/myproject/tsconfig.json After request PolledWatches:: @@ -111,11 +111,11 @@ FsWatchesRecursive:: /user/username/projects/myproject: {} -Info 23 [16:00:53.000] response: +Info 23 [00:00:53.000] response: { "responseRequired": false } -Info 24 [16:00:54.000] request: +Info 24 [00:00:54.000] request: { "command": "geterr", "arguments": { @@ -163,7 +163,7 @@ FsWatchesRecursive:: /user/username/projects/myproject: {} -Info 25 [16:00:55.000] response: +Info 25 [00:00:55.000] response: { "responseRequired": false } @@ -185,7 +185,7 @@ FsWatchesRecursive:: /user/username/projects/myproject: {} -Info 26 [16:00:56.000] event: +Info 26 [00:00:56.000] event: {"seq":0,"type":"event","event":"syntaxDiag","body":{"file":"/user/username/projects/myproject/another.ts","diagnostics":[]}} After checking timeout queue length (1) and running @@ -223,7 +223,7 @@ FsWatchesRecursive:: /user/username/projects/myproject: {} -Info 27 [16:00:57.000] event: +Info 27 [00:00:57.000] event: {"seq":0,"type":"event","event":"semanticDiag","body":{"file":"/user/username/projects/myproject/another.ts","diagnostics":[]}} Before running immediate callbacks and checking length (1) @@ -261,9 +261,9 @@ FsWatchesRecursive:: /user/username/projects/myproject: {} -Info 28 [16:00:58.000] event: +Info 28 [00:00:58.000] event: {"seq":0,"type":"event","event":"suggestionDiag","body":{"file":"/user/username/projects/myproject/another.ts","diagnostics":[]}} -Info 29 [16:00:59.000] event: +Info 29 [00:00:59.000] event: {"seq":0,"type":"event","event":"requestCompleted","body":{"request_seq":1}} Before running immediate callbacks and checking length (1) @@ -283,7 +283,7 @@ FsWatchesRecursive:: /user/username/projects/myproject: {} -Info 30 [16:01:00.000] request: +Info 30 [00:01:00.000] request: { "command": "updateOpen", "arguments": { @@ -345,12 +345,12 @@ FsWatchesRecursive:: /user/username/projects/myproject: {} -Info 31 [16:01:01.000] response: +Info 31 [00:01:01.000] response: { "response": true, "responseRequired": true } -Info 32 [16:01:02.000] request: +Info 32 [00:01:02.000] request: { "command": "geterr", "arguments": { @@ -398,7 +398,7 @@ FsWatchesRecursive:: /user/username/projects/myproject: {} -Info 33 [16:01:03.000] response: +Info 33 [00:01:03.000] response: { "responseRequired": false } @@ -420,10 +420,10 @@ FsWatchesRecursive:: /user/username/projects/myproject: {} -Info 34 [16:01:04.000] Starting updateGraphWorker: Project: /user/username/projects/myproject/tsconfig.json -Info 35 [16:01:05.000] Finishing updateGraphWorker: Project: /user/username/projects/myproject/tsconfig.json Version: 2 structureChanged: true structureIsReused:: SafeModules Elapsed:: *ms -Info 36 [16:01:06.000] Different program with same set of files -Info 37 [16:01:07.000] event: +Info 34 [00:01:04.000] Starting updateGraphWorker: Project: /user/username/projects/myproject/tsconfig.json +Info 35 [00:01:05.000] Finishing updateGraphWorker: Project: /user/username/projects/myproject/tsconfig.json Version: 2 structureChanged: true structureIsReused:: SafeModules Elapsed:: *ms +Info 36 [00:01:06.000] Different program with same set of files +Info 37 [00:01:07.000] event: {"seq":0,"type":"event","event":"syntaxDiag","body":{"file":"/user/username/projects/myproject/another.ts","diagnostics":[]}} After checking timeout queue length (1) and running @@ -461,7 +461,7 @@ FsWatchesRecursive:: /user/username/projects/myproject: {} -Info 38 [16:01:08.000] event: +Info 38 [00:01:08.000] event: {"seq":0,"type":"event","event":"semanticDiag","body":{"file":"/user/username/projects/myproject/another.ts","diagnostics":[{"start":{"line":1,"offset":24},"end":{"line":1,"offset":34},"text":"File name '/user/username/projects/myproject/logger.ts' differs from already included file name '/user/username/projects/myproject/Logger.ts' only in casing.\n The file is in the program because:\n Matched by default include pattern '**/*'\n Imported via \"./logger\" from file '/user/username/projects/myproject/another.ts'","code":1149,"category":"error"}]}} Before running immediate callbacks and checking length (1) @@ -499,9 +499,9 @@ FsWatchesRecursive:: /user/username/projects/myproject: {} -Info 39 [16:01:09.000] event: +Info 39 [00:01:09.000] event: {"seq":0,"type":"event","event":"suggestionDiag","body":{"file":"/user/username/projects/myproject/another.ts","diagnostics":[]}} -Info 40 [16:01:10.000] event: +Info 40 [00:01:10.000] event: {"seq":0,"type":"event","event":"requestCompleted","body":{"request_seq":3}} Before running immediate callbacks and checking length (1) diff --git a/tests/baselines/reference/tsserver/forceConsistentCasingInFileNames/works-when-renaming-file-with-different-casing.js b/tests/baselines/reference/tsserver/forceConsistentCasingInFileNames/works-when-renaming-file-with-different-casing.js index 68f0512cb9de2..afe81cfa7972a 100644 --- a/tests/baselines/reference/tsserver/forceConsistentCasingInFileNames/works-when-renaming-file-with-different-casing.js +++ b/tests/baselines/reference/tsserver/forceConsistentCasingInFileNames/works-when-renaming-file-with-different-casing.js @@ -1,5 +1,5 @@ -Info 0 [16:00:24.000] Provided types map file "/a/lib/typesMap.json" doesn't exist -Info 1 [16:00:25.000] request: +Info 0 [00:00:24.000] Provided types map file "/a/lib/typesMap.json" doesn't exist +Info 1 [00:00:25.000] request: { "seq": 0, "type": "request", @@ -39,13 +39,13 @@ FsWatches:: FsWatchesRecursive:: -Info 2 [16:00:26.000] Search path: /user/username/projects/myproject -Info 3 [16:00:27.000] For info: /user/username/projects/myproject/Logger.ts :: Config file name: /user/username/projects/myproject/tsconfig.json -Info 4 [16:00:28.000] Creating configuration project /user/username/projects/myproject/tsconfig.json -Info 5 [16:00:29.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/tsconfig.json 2000 undefined Project: /user/username/projects/myproject/tsconfig.json WatchType: Config file -Info 6 [16:00:30.000] event: +Info 2 [00:00:26.000] Search path: /user/username/projects/myproject +Info 3 [00:00:27.000] For info: /user/username/projects/myproject/Logger.ts :: Config file name: /user/username/projects/myproject/tsconfig.json +Info 4 [00:00:28.000] Creating configuration project /user/username/projects/myproject/tsconfig.json +Info 5 [00:00:29.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/tsconfig.json 2000 undefined Project: /user/username/projects/myproject/tsconfig.json WatchType: Config file +Info 6 [00:00:30.000] event: {"seq":0,"type":"event","event":"projectLoadingStart","body":{"projectName":"/user/username/projects/myproject/tsconfig.json","reason":"Creating possible configured project for /user/username/projects/myproject/Logger.ts to open"}} -Info 7 [16:00:31.000] Config: /user/username/projects/myproject/tsconfig.json : { +Info 7 [00:00:31.000] Config: /user/username/projects/myproject/tsconfig.json : { "rootNames": [ "/user/username/projects/myproject/Logger.ts", "/user/username/projects/myproject/another.ts" @@ -55,17 +55,17 @@ Info 7 [16:00:31.000] Config: /user/username/projects/myproject/tsconfig.json "configFilePath": "/user/username/projects/myproject/tsconfig.json" } } -Info 8 [16:00:32.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject 1 undefined Config: /user/username/projects/myproject/tsconfig.json WatchType: Wild card directory -Info 9 [16:00:33.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject 1 undefined Config: /user/username/projects/myproject/tsconfig.json WatchType: Wild card directory -Info 10 [16:00:34.000] Plugins were requested but not running in environment that supports 'require'. Nothing will be loaded -Info 11 [16:00:35.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/another.ts 500 undefined WatchType: Closed Script info -Info 12 [16:00:36.000] Starting updateGraphWorker: Project: /user/username/projects/myproject/tsconfig.json -Info 13 [16:00:37.000] FileWatcher:: Added:: WatchInfo: /a/lib/lib.d.ts 500 undefined WatchType: Closed Script info -Info 14 [16:00:38.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/tsconfig.json WatchType: Type roots -Info 15 [16:00:39.000] 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 16 [16:00:40.000] Finishing updateGraphWorker: Project: /user/username/projects/myproject/tsconfig.json Version: 1 structureChanged: true structureIsReused:: Not Elapsed:: *ms -Info 17 [16:00:41.000] Project '/user/username/projects/myproject/tsconfig.json' (Configured) -Info 18 [16:00:42.000] Files (3) +Info 8 [00:00:32.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject 1 undefined Config: /user/username/projects/myproject/tsconfig.json WatchType: Wild card directory +Info 9 [00:00:33.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject 1 undefined Config: /user/username/projects/myproject/tsconfig.json WatchType: Wild card directory +Info 10 [00:00:34.000] Plugins were requested but not running in environment that supports 'require'. Nothing will be loaded +Info 11 [00:00:35.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/another.ts 500 undefined WatchType: Closed Script info +Info 12 [00:00:36.000] Starting updateGraphWorker: Project: /user/username/projects/myproject/tsconfig.json +Info 13 [00:00:37.000] FileWatcher:: Added:: WatchInfo: /a/lib/lib.d.ts 500 undefined WatchType: Closed Script info +Info 14 [00:00:38.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/tsconfig.json WatchType: Type roots +Info 15 [00:00:39.000] 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 16 [00:00:40.000] Finishing updateGraphWorker: Project: /user/username/projects/myproject/tsconfig.json Version: 1 structureChanged: true structureIsReused:: Not Elapsed:: *ms +Info 17 [00:00:41.000] Project '/user/username/projects/myproject/tsconfig.json' (Configured) +Info 18 [00:00:42.000] Files (3) /a/lib/lib.d.ts /user/username/projects/myproject/Logger.ts /user/username/projects/myproject/another.ts @@ -79,20 +79,20 @@ Info 18 [16:00:42.000] Files (3) another.ts Matched by default include pattern '**/*' -Info 19 [16:00:43.000] ----------------------------------------------- -Info 20 [16:00:44.000] event: +Info 19 [00:00:43.000] ----------------------------------------------- +Info 20 [00:00:44.000] event: {"seq":0,"type":"event","event":"projectLoadingFinish","body":{"projectName":"/user/username/projects/myproject/tsconfig.json"}} -Info 21 [16:00:45.000] event: +Info 21 [00:00:45.000] event: {"seq":0,"type":"event","event":"telemetry","body":{"telemetryEventName":"projectInfo","payload":{"projectId":"4a33d78ee40d836c4f4e64c59aed976628aea0013be9585c5ff171dfc41baf98","fileStats":{"js":0,"jsSize":0,"jsx":0,"jsxSize":0,"ts":2,"tsSize":71,"tsx":0,"tsxSize":0,"dts":1,"dtsSize":334,"deferred":0,"deferredSize":0},"compilerOptions":{"forceConsistentCasingInFileNames":true},"typeAcquisition":{"enable":false,"include":false,"exclude":false},"extends":false,"files":false,"include":false,"exclude":false,"compileOnSave":false,"configFileName":"tsconfig.json","projectType":"configured","languageServiceEnabled":true,"version":"FakeVersion"}}} -Info 22 [16:00:46.000] event: +Info 22 [00:00:46.000] event: {"seq":0,"type":"event","event":"configFileDiag","body":{"triggerFile":"/user/username/projects/myproject/Logger.ts","configFile":"/user/username/projects/myproject/tsconfig.json","diagnostics":[]}} -Info 23 [16:00:47.000] Project '/user/username/projects/myproject/tsconfig.json' (Configured) -Info 23 [16:00:48.000] Files (3) +Info 23 [00:00:47.000] Project '/user/username/projects/myproject/tsconfig.json' (Configured) +Info 23 [00:00:48.000] Files (3) -Info 23 [16:00:49.000] ----------------------------------------------- -Info 23 [16:00:50.000] Open files: -Info 23 [16:00:51.000] FileName: /user/username/projects/myproject/Logger.ts ProjectRootPath: /user/username/projects/myproject -Info 23 [16:00:52.000] Projects: /user/username/projects/myproject/tsconfig.json +Info 23 [00:00:49.000] ----------------------------------------------- +Info 23 [00:00:50.000] Open files: +Info 23 [00:00:51.000] FileName: /user/username/projects/myproject/Logger.ts ProjectRootPath: /user/username/projects/myproject +Info 23 [00:00:52.000] Projects: /user/username/projects/myproject/tsconfig.json After request PolledWatches:: @@ -111,11 +111,11 @@ FsWatchesRecursive:: /user/username/projects/myproject: {} -Info 23 [16:00:53.000] response: +Info 23 [00:00:53.000] response: { "responseRequired": false } -Info 24 [16:00:54.000] request: +Info 24 [00:00:54.000] request: { "command": "geterr", "arguments": { @@ -163,7 +163,7 @@ FsWatchesRecursive:: /user/username/projects/myproject: {} -Info 25 [16:00:55.000] response: +Info 25 [00:00:55.000] response: { "responseRequired": false } @@ -185,7 +185,7 @@ FsWatchesRecursive:: /user/username/projects/myproject: {} -Info 26 [16:00:56.000] event: +Info 26 [00:00:56.000] event: {"seq":0,"type":"event","event":"syntaxDiag","body":{"file":"/user/username/projects/myproject/Logger.ts","diagnostics":[]}} After checking timeout queue length (1) and running @@ -223,7 +223,7 @@ FsWatchesRecursive:: /user/username/projects/myproject: {} -Info 27 [16:00:57.000] event: +Info 27 [00:00:57.000] event: {"seq":0,"type":"event","event":"semanticDiag","body":{"file":"/user/username/projects/myproject/Logger.ts","diagnostics":[]}} Before running immediate callbacks and checking length (1) @@ -261,9 +261,9 @@ FsWatchesRecursive:: /user/username/projects/myproject: {} -Info 28 [16:00:58.000] event: +Info 28 [00:00:58.000] event: {"seq":0,"type":"event","event":"suggestionDiag","body":{"file":"/user/username/projects/myproject/Logger.ts","diagnostics":[]}} -Info 29 [16:00:59.000] event: +Info 29 [00:00:59.000] event: {"seq":0,"type":"event","event":"requestCompleted","body":{"request_seq":1}} Before running immediate callbacks and checking length (1) @@ -283,11 +283,11 @@ FsWatchesRecursive:: /user/username/projects/myproject: {} -Info 30 [16:01:01.000] DirectoryWatcher:: Triggered with /user/username/projects/myproject/Logger.ts :: WatchInfo: /user/username/projects/myproject 1 undefined Config: /user/username/projects/myproject/tsconfig.json WatchType: Wild card directory -Info 31 [16:01:02.000] Elapsed:: *ms DirectoryWatcher:: Triggered with /user/username/projects/myproject/Logger.ts :: WatchInfo: /user/username/projects/myproject 1 undefined Config: /user/username/projects/myproject/tsconfig.json WatchType: Wild card directory -Info 32 [16:01:05.000] DirectoryWatcher:: Triggered with /user/username/projects/myproject/logger.ts :: WatchInfo: /user/username/projects/myproject 1 undefined Config: /user/username/projects/myproject/tsconfig.json WatchType: Wild card directory -Info 33 [16:01:06.000] Elapsed:: *ms DirectoryWatcher:: Triggered with /user/username/projects/myproject/logger.ts :: WatchInfo: /user/username/projects/myproject 1 undefined Config: /user/username/projects/myproject/tsconfig.json WatchType: Wild card directory -Info 34 [16:01:07.000] request: +Info 30 [00:01:01.000] DirectoryWatcher:: Triggered with /user/username/projects/myproject/Logger.ts :: WatchInfo: /user/username/projects/myproject 1 undefined Config: /user/username/projects/myproject/tsconfig.json WatchType: Wild card directory +Info 31 [00:01:02.000] Elapsed:: *ms DirectoryWatcher:: Triggered with /user/username/projects/myproject/Logger.ts :: WatchInfo: /user/username/projects/myproject 1 undefined Config: /user/username/projects/myproject/tsconfig.json WatchType: Wild card directory +Info 32 [00:01:05.000] DirectoryWatcher:: Triggered with /user/username/projects/myproject/logger.ts :: WatchInfo: /user/username/projects/myproject 1 undefined Config: /user/username/projects/myproject/tsconfig.json WatchType: Wild card directory +Info 33 [00:01:06.000] Elapsed:: *ms DirectoryWatcher:: Triggered with /user/username/projects/myproject/logger.ts :: WatchInfo: /user/username/projects/myproject 1 undefined Config: /user/username/projects/myproject/tsconfig.json WatchType: Wild card directory +Info 34 [00:01:07.000] request: { "seq": 0, "type": "request", @@ -315,12 +315,12 @@ FsWatchesRecursive:: /user/username/projects/myproject: {} -Info 35 [16:01:08.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/Logger.ts 500 undefined WatchType: Closed Script info -Info 36 [16:01:09.000] Project '/user/username/projects/myproject/tsconfig.json' (Configured) -Info 36 [16:01:10.000] Files (3) +Info 35 [00:01:08.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/Logger.ts 500 undefined WatchType: Closed Script info +Info 36 [00:01:09.000] Project '/user/username/projects/myproject/tsconfig.json' (Configured) +Info 36 [00:01:10.000] Files (3) -Info 36 [16:01:11.000] ----------------------------------------------- -Info 36 [16:01:12.000] Open files: +Info 36 [00:01:11.000] ----------------------------------------------- +Info 36 [00:01:12.000] Open files: After request PolledWatches:: @@ -341,11 +341,11 @@ FsWatchesRecursive:: /user/username/projects/myproject: {} -Info 36 [16:01:13.000] response: +Info 36 [00:01:13.000] response: { "responseRequired": false } -Info 37 [16:01:14.000] request: +Info 37 [00:01:14.000] request: { "seq": 0, "type": "request", @@ -375,19 +375,19 @@ FsWatchesRecursive:: /user/username/projects/myproject: {} -Info 38 [16:01:15.000] FileWatcher:: Close:: WatchInfo: /user/username/projects/myproject/Logger.ts 500 undefined WatchType: Closed Script info -Info 39 [16:01:16.000] Search path: /user/username/projects/myproject -Info 40 [16:01:17.000] For info: /user/username/projects/myproject/Logger.ts :: Config file name: /user/username/projects/myproject/tsconfig.json -Info 41 [16:01:18.000] Starting updateGraphWorker: Project: /user/username/projects/myproject/tsconfig.json -Info 42 [16:01:19.000] Finishing updateGraphWorker: Project: /user/username/projects/myproject/tsconfig.json Version: 2 structureChanged: true structureIsReused:: Not Elapsed:: *ms -Info 43 [16:01:20.000] Different program with same set of files -Info 44 [16:01:21.000] Project '/user/username/projects/myproject/tsconfig.json' (Configured) -Info 44 [16:01:22.000] Files (3) +Info 38 [00:01:15.000] FileWatcher:: Close:: WatchInfo: /user/username/projects/myproject/Logger.ts 500 undefined WatchType: Closed Script info +Info 39 [00:01:16.000] Search path: /user/username/projects/myproject +Info 40 [00:01:17.000] For info: /user/username/projects/myproject/Logger.ts :: Config file name: /user/username/projects/myproject/tsconfig.json +Info 41 [00:01:18.000] Starting updateGraphWorker: Project: /user/username/projects/myproject/tsconfig.json +Info 42 [00:01:19.000] Finishing updateGraphWorker: Project: /user/username/projects/myproject/tsconfig.json Version: 2 structureChanged: true structureIsReused:: Not Elapsed:: *ms +Info 43 [00:01:20.000] Different program with same set of files +Info 44 [00:01:21.000] Project '/user/username/projects/myproject/tsconfig.json' (Configured) +Info 44 [00:01:22.000] Files (3) -Info 44 [16:01:23.000] ----------------------------------------------- -Info 44 [16:01:24.000] Open files: -Info 44 [16:01:25.000] FileName: /user/username/projects/myproject/Logger.ts ProjectRootPath: /user/username/projects/myproject -Info 44 [16:01:26.000] Projects: /user/username/projects/myproject/tsconfig.json +Info 44 [00:01:23.000] ----------------------------------------------- +Info 44 [00:01:24.000] Open files: +Info 44 [00:01:25.000] FileName: /user/username/projects/myproject/Logger.ts ProjectRootPath: /user/username/projects/myproject +Info 44 [00:01:26.000] Projects: /user/username/projects/myproject/tsconfig.json After request PolledWatches:: @@ -406,11 +406,11 @@ FsWatchesRecursive:: /user/username/projects/myproject: {} -Info 44 [16:01:27.000] response: +Info 44 [00:01:27.000] response: { "responseRequired": false } -Info 45 [16:01:28.000] request: +Info 45 [00:01:28.000] request: { "seq": 0, "type": "request", @@ -438,18 +438,18 @@ FsWatchesRecursive:: /user/username/projects/myproject: {} -Info 46 [16:01:29.000] FileWatcher:: Close:: WatchInfo: /user/username/projects/myproject/another.ts 500 undefined WatchType: Closed Script info -Info 47 [16:01:30.000] Search path: /user/username/projects/myproject -Info 48 [16:01:31.000] For info: /user/username/projects/myproject/another.ts :: Config file name: /user/username/projects/myproject/tsconfig.json -Info 49 [16:01:32.000] Project '/user/username/projects/myproject/tsconfig.json' (Configured) -Info 49 [16:01:33.000] Files (3) +Info 46 [00:01:29.000] FileWatcher:: Close:: WatchInfo: /user/username/projects/myproject/another.ts 500 undefined WatchType: Closed Script info +Info 47 [00:01:30.000] Search path: /user/username/projects/myproject +Info 48 [00:01:31.000] For info: /user/username/projects/myproject/another.ts :: Config file name: /user/username/projects/myproject/tsconfig.json +Info 49 [00:01:32.000] Project '/user/username/projects/myproject/tsconfig.json' (Configured) +Info 49 [00:01:33.000] Files (3) -Info 49 [16:01:34.000] ----------------------------------------------- -Info 49 [16:01:35.000] Open files: -Info 49 [16:01:36.000] FileName: /user/username/projects/myproject/Logger.ts ProjectRootPath: /user/username/projects/myproject -Info 49 [16:01:37.000] Projects: /user/username/projects/myproject/tsconfig.json -Info 49 [16:01:38.000] FileName: /user/username/projects/myproject/another.ts ProjectRootPath: /user/username/projects/myproject -Info 49 [16:01:39.000] Projects: /user/username/projects/myproject/tsconfig.json +Info 49 [00:01:34.000] ----------------------------------------------- +Info 49 [00:01:35.000] Open files: +Info 49 [00:01:36.000] FileName: /user/username/projects/myproject/Logger.ts ProjectRootPath: /user/username/projects/myproject +Info 49 [00:01:37.000] Projects: /user/username/projects/myproject/tsconfig.json +Info 49 [00:01:38.000] FileName: /user/username/projects/myproject/another.ts ProjectRootPath: /user/username/projects/myproject +Info 49 [00:01:39.000] Projects: /user/username/projects/myproject/tsconfig.json After request PolledWatches:: @@ -466,11 +466,11 @@ FsWatchesRecursive:: /user/username/projects/myproject: {} -Info 49 [16:01:40.000] response: +Info 49 [00:01:40.000] response: { "responseRequired": false } -Info 50 [16:01:41.000] request: +Info 50 [00:01:41.000] request: { "command": "updateOpen", "arguments": { @@ -528,12 +528,12 @@ FsWatchesRecursive:: /user/username/projects/myproject: {} -Info 51 [16:01:42.000] response: +Info 51 [00:01:42.000] response: { "response": true, "responseRequired": true } -Info 52 [16:01:43.000] request: +Info 52 [00:01:43.000] request: { "command": "geterr", "arguments": { @@ -578,7 +578,7 @@ FsWatchesRecursive:: /user/username/projects/myproject: {} -Info 53 [16:01:44.000] response: +Info 53 [00:01:44.000] response: { "responseRequired": false } @@ -598,10 +598,10 @@ FsWatchesRecursive:: /user/username/projects/myproject: {} -Info 54 [16:01:45.000] Starting updateGraphWorker: Project: /user/username/projects/myproject/tsconfig.json -Info 55 [16:01:46.000] Finishing updateGraphWorker: Project: /user/username/projects/myproject/tsconfig.json Version: 3 structureChanged: true structureIsReused:: SafeModules Elapsed:: *ms -Info 56 [16:01:47.000] Different program with same set of files -Info 57 [16:01:48.000] event: +Info 54 [00:01:45.000] Starting updateGraphWorker: Project: /user/username/projects/myproject/tsconfig.json +Info 55 [00:01:46.000] Finishing updateGraphWorker: Project: /user/username/projects/myproject/tsconfig.json Version: 3 structureChanged: true structureIsReused:: SafeModules Elapsed:: *ms +Info 56 [00:01:47.000] Different program with same set of files +Info 57 [00:01:48.000] event: {"seq":0,"type":"event","event":"syntaxDiag","body":{"file":"/user/username/projects/myproject/logger.ts","diagnostics":[]}} After checking timeout queue length (1) and running @@ -635,7 +635,7 @@ FsWatchesRecursive:: /user/username/projects/myproject: {} -Info 58 [16:01:49.000] event: +Info 58 [00:01:49.000] event: {"seq":0,"type":"event","event":"semanticDiag","body":{"file":"/user/username/projects/myproject/logger.ts","diagnostics":[]}} Before running immediate callbacks and checking length (1) @@ -669,7 +669,7 @@ FsWatchesRecursive:: /user/username/projects/myproject: {} -Info 59 [16:01:50.000] event: +Info 59 [00:01:50.000] event: {"seq":0,"type":"event","event":"suggestionDiag","body":{"file":"/user/username/projects/myproject/logger.ts","diagnostics":[]}} Before running immediate callbacks and checking length (1) @@ -703,7 +703,7 @@ FsWatchesRecursive:: /user/username/projects/myproject: {} -Info 60 [16:01:51.000] event: +Info 60 [00:01:51.000] event: {"seq":0,"type":"event","event":"syntaxDiag","body":{"file":"/user/username/projects/myproject/another.ts","diagnostics":[]}} After checking timeout queue length (1) and running @@ -737,7 +737,7 @@ FsWatchesRecursive:: /user/username/projects/myproject: {} -Info 61 [16:01:52.000] event: +Info 61 [00:01:52.000] event: {"seq":0,"type":"event","event":"semanticDiag","body":{"file":"/user/username/projects/myproject/another.ts","diagnostics":[]}} Before running immediate callbacks and checking length (1) @@ -771,9 +771,9 @@ FsWatchesRecursive:: /user/username/projects/myproject: {} -Info 62 [16:01:53.000] event: +Info 62 [00:01:53.000] event: {"seq":0,"type":"event","event":"suggestionDiag","body":{"file":"/user/username/projects/myproject/another.ts","diagnostics":[]}} -Info 63 [16:01:54.000] event: +Info 63 [00:01:54.000] event: {"seq":0,"type":"event","event":"requestCompleted","body":{"request_seq":3}} Before running immediate callbacks and checking length (1) diff --git a/tests/baselines/reference/tsserver/inferredProjects/create-inferred-project.js b/tests/baselines/reference/tsserver/inferredProjects/create-inferred-project.js index 93be7cc8379ea..83eded5048dce 100644 --- a/tests/baselines/reference/tsserver/inferredProjects/create-inferred-project.js +++ b/tests/baselines/reference/tsserver/inferredProjects/create-inferred-project.js @@ -1,4 +1,4 @@ -Info 0 [16:00:21.000] Provided types map file "/typesMap.json" doesn't exist +Info 0 [00:00:21.000] Provided types map file "/typesMap.json" doesn't exist Creating project service //// [/user/username/projects/myproject/app.ts] @@ -29,21 +29,21 @@ FsWatches:: FsWatchesRecursive:: -Info 1 [16:00:22.000] Search path: /user/username/projects/myproject -Info 2 [16:00:23.000] For info: /user/username/projects/myproject/app.ts :: No config files found. -Info 3 [16:00:24.000] Plugins were requested but not running in environment that supports 'require'. Nothing will be loaded -Info 4 [16:00:25.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/tsconfig.json 2000 undefined WatchType: Config file for the inferred project root -Info 5 [16:00:26.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/jsconfig.json 2000 undefined WatchType: Config file for the inferred project root -Info 6 [16:00:27.000] Starting updateGraphWorker: Project: /dev/null/inferredProject1* -Info 7 [16:00:28.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject 0 undefined Project: /dev/null/inferredProject1* WatchType: Failed Lookup Locations -Info 8 [16:00:29.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject 0 undefined Project: /dev/null/inferredProject1* WatchType: Failed Lookup Locations -Info 9 [16:00:30.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/module.d.ts 500 undefined WatchType: Closed Script info -Info 10 [16:00:31.000] FileWatcher:: Added:: WatchInfo: /a/lib/lib.d.ts 500 undefined WatchType: Closed Script info -Info 11 [16:00:32.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /dev/null/inferredProject1* WatchType: Type roots -Info 12 [16:00:33.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /dev/null/inferredProject1* WatchType: Type roots -Info 13 [16:00:34.000] Finishing updateGraphWorker: Project: /dev/null/inferredProject1* Version: 1 structureChanged: true structureIsReused:: Not Elapsed:: *ms -Info 14 [16:00:35.000] Project '/dev/null/inferredProject1*' (Inferred) -Info 15 [16:00:36.000] Files (3) +Info 1 [00:00:22.000] Search path: /user/username/projects/myproject +Info 2 [00:00:23.000] For info: /user/username/projects/myproject/app.ts :: No config files found. +Info 3 [00:00:24.000] Plugins were requested but not running in environment that supports 'require'. Nothing will be loaded +Info 4 [00:00:25.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/tsconfig.json 2000 undefined WatchType: Config file for the inferred project root +Info 5 [00:00:26.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/jsconfig.json 2000 undefined WatchType: Config file for the inferred project root +Info 6 [00:00:27.000] Starting updateGraphWorker: Project: /dev/null/inferredProject1* +Info 7 [00:00:28.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject 0 undefined Project: /dev/null/inferredProject1* WatchType: Failed Lookup Locations +Info 8 [00:00:29.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject 0 undefined Project: /dev/null/inferredProject1* WatchType: Failed Lookup Locations +Info 9 [00:00:30.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/module.d.ts 500 undefined WatchType: Closed Script info +Info 10 [00:00:31.000] FileWatcher:: Added:: WatchInfo: /a/lib/lib.d.ts 500 undefined WatchType: Closed Script info +Info 11 [00:00:32.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /dev/null/inferredProject1* WatchType: Type roots +Info 12 [00:00:33.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /dev/null/inferredProject1* WatchType: Type roots +Info 13 [00:00:34.000] Finishing updateGraphWorker: Project: /dev/null/inferredProject1* Version: 1 structureChanged: true structureIsReused:: Not Elapsed:: *ms +Info 14 [00:00:35.000] Project '/dev/null/inferredProject1*' (Inferred) +Info 15 [00:00:36.000] Files (3) /a/lib/lib.d.ts /user/username/projects/myproject/module.d.ts /user/username/projects/myproject/app.ts @@ -56,11 +56,11 @@ Info 15 [16:00:36.000] Files (3) app.ts Root file specified for compilation -Info 16 [16:00:37.000] ----------------------------------------------- -Info 17 [16:00:38.000] Project '/dev/null/inferredProject1*' (Inferred) -Info 17 [16:00:39.000] Files (3) +Info 16 [00:00:37.000] ----------------------------------------------- +Info 17 [00:00:38.000] Project '/dev/null/inferredProject1*' (Inferred) +Info 17 [00:00:39.000] Files (3) -Info 17 [16:00:40.000] ----------------------------------------------- -Info 17 [16:00:41.000] Open files: -Info 17 [16:00:42.000] FileName: /user/username/projects/myproject/app.ts ProjectRootPath: undefined -Info 17 [16:00:43.000] Projects: /dev/null/inferredProject1* \ No newline at end of file +Info 17 [00:00:40.000] ----------------------------------------------- +Info 17 [00:00:41.000] Open files: +Info 17 [00:00:42.000] FileName: /user/username/projects/myproject/app.ts ProjectRootPath: undefined +Info 17 [00:00:43.000] Projects: /dev/null/inferredProject1* \ No newline at end of file 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 f0f4680897efd..9df87c4ece409 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 @@ -1,5 +1,5 @@ -Info 0 [16:00:27.000] Provided types map file "/a/lib/typesMap.json" doesn't exist -Info 1 [16:00:28.000] request: +Info 0 [00:00:27.000] Provided types map file "/a/lib/typesMap.json" doesn't exist +Info 1 [00:00:28.000] request: { "seq": 0, "type": "request", @@ -45,13 +45,13 @@ FsWatches:: FsWatchesRecursive:: -Info 2 [16:00:29.000] Search path: /user/username/projects/myproject/src -Info 3 [16:00:30.000] For info: /user/username/projects/myproject/src/fileA.ts :: Config file name: /user/username/projects/myproject/src/tsconfig.json -Info 4 [16:00:31.000] Creating configuration project /user/username/projects/myproject/src/tsconfig.json -Info 5 [16:00:32.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/src/tsconfig.json 2000 undefined Project: /user/username/projects/myproject/src/tsconfig.json WatchType: Config file -Info 6 [16:00:33.000] event: +Info 2 [00:00:29.000] Search path: /user/username/projects/myproject/src +Info 3 [00:00:30.000] For info: /user/username/projects/myproject/src/fileA.ts :: Config file name: /user/username/projects/myproject/src/tsconfig.json +Info 4 [00:00:31.000] Creating configuration project /user/username/projects/myproject/src/tsconfig.json +Info 5 [00:00:32.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/src/tsconfig.json 2000 undefined Project: /user/username/projects/myproject/src/tsconfig.json WatchType: Config file +Info 6 [00:00:33.000] event: {"seq":0,"type":"event","event":"projectLoadingStart","body":{"projectName":"/user/username/projects/myproject/src/tsconfig.json","reason":"Creating possible configured project for /user/username/projects/myproject/src/fileA.ts to open"}} -Info 7 [16:00:34.000] Config: /user/username/projects/myproject/src/tsconfig.json : { +Info 7 [00:00:34.000] Config: /user/username/projects/myproject/src/tsconfig.json : { "rootNames": [ "/user/username/projects/myproject/src/fileA.ts", "/user/username/projects/myproject/src/fileB.mts" @@ -64,33 +64,33 @@ Info 7 [16:00:34.000] Config: /user/username/projects/myproject/src/tsconfig. "configFilePath": "/user/username/projects/myproject/src/tsconfig.json" } } -Info 8 [16:00:35.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/src 1 undefined Config: /user/username/projects/myproject/src/tsconfig.json WatchType: Wild card directory -Info 9 [16:00:36.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/src 1 undefined Config: /user/username/projects/myproject/src/tsconfig.json WatchType: Wild card directory -Info 10 [16:00:37.000] Plugins were requested but not running in environment that supports 'require'. Nothing will be loaded -Info 11 [16:00:38.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/src/fileB.mts 500 undefined WatchType: Closed Script info -Info 12 [16:00:39.000] Starting updateGraphWorker: Project: /user/username/projects/myproject/src/tsconfig.json -Info 13 [16:00:40.000] File '/user/username/projects/myproject/src/package.json' does not exist. -Info 14 [16:00:41.000] Found 'package.json' at '/user/username/projects/myproject/package.json'. -Info 15 [16:00:42.000] 'package.json' does not have a 'typesVersions' field. -Info 16 [16:00:43.000] ======== Resolving module './fileB.mjs' from '/user/username/projects/myproject/src/fileA.ts'. ======== -Info 17 [16:00:44.000] Module resolution kind is not specified, using 'Node16'. -Info 18 [16:00:45.000] Loading module as file / folder, candidate module location '/user/username/projects/myproject/src/fileB.mjs', target file type 'TypeScript'. -Info 19 [16:00:46.000] File name '/user/username/projects/myproject/src/fileB.mjs' has a '.mjs' extension - stripping it. -Info 20 [16:00:47.000] File '/user/username/projects/myproject/src/fileB.mts' exist - use it as a name resolution result. -Info 21 [16:00:48.000] ======== Module name './fileB.mjs' was successfully resolved to '/user/username/projects/myproject/src/fileB.mts'. ======== -Info 22 [16:00:49.000] File '/a/lib/package.json' does not exist. -Info 23 [16:00:50.000] File '/a/package.json' does not exist. -Info 24 [16:00:51.000] File '/package.json' does not exist. -Info 25 [16:00:52.000] FileWatcher:: Added:: WatchInfo: /a/lib/lib.es2016.full.d.ts 500 undefined WatchType: Closed Script info -Info 26 [16:00:53.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/src/package.json 2000 undefined Project: /user/username/projects/myproject/src/tsconfig.json WatchType: File location affecting resolution -Info 27 [16:00:54.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/package.json 2000 undefined Project: /user/username/projects/myproject/src/tsconfig.json WatchType: File location affecting resolution -Info 28 [16:00:55.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/src/node_modules/@types 1 undefined Project: /user/username/projects/myproject/src/tsconfig.json WatchType: Type roots -Info 29 [16:00:56.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/src/node_modules/@types 1 undefined Project: /user/username/projects/myproject/src/tsconfig.json WatchType: Type roots -Info 30 [16:00:57.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/src/tsconfig.json WatchType: Type roots -Info 31 [16:00:58.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/src/tsconfig.json WatchType: Type roots -Info 32 [16:00:59.000] Finishing updateGraphWorker: Project: /user/username/projects/myproject/src/tsconfig.json Version: 1 structureChanged: true structureIsReused:: Not Elapsed:: *ms -Info 33 [16:01:00.000] Project '/user/username/projects/myproject/src/tsconfig.json' (Configured) -Info 34 [16:01:01.000] Files (3) +Info 8 [00:00:35.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/src 1 undefined Config: /user/username/projects/myproject/src/tsconfig.json WatchType: Wild card directory +Info 9 [00:00:36.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/src 1 undefined Config: /user/username/projects/myproject/src/tsconfig.json WatchType: Wild card directory +Info 10 [00:00:37.000] Plugins were requested but not running in environment that supports 'require'. Nothing will be loaded +Info 11 [00:00:38.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/src/fileB.mts 500 undefined WatchType: Closed Script info +Info 12 [00:00:39.000] Starting updateGraphWorker: Project: /user/username/projects/myproject/src/tsconfig.json +Info 13 [00:00:40.000] File '/user/username/projects/myproject/src/package.json' does not exist. +Info 14 [00:00:41.000] Found 'package.json' at '/user/username/projects/myproject/package.json'. +Info 15 [00:00:42.000] 'package.json' does not have a 'typesVersions' field. +Info 16 [00:00:43.000] ======== Resolving module './fileB.mjs' from '/user/username/projects/myproject/src/fileA.ts'. ======== +Info 17 [00:00:44.000] Module resolution kind is not specified, using 'Node16'. +Info 18 [00:00:45.000] Loading module as file / folder, candidate module location '/user/username/projects/myproject/src/fileB.mjs', target file type 'TypeScript'. +Info 19 [00:00:46.000] File name '/user/username/projects/myproject/src/fileB.mjs' has a '.mjs' extension - stripping it. +Info 20 [00:00:47.000] File '/user/username/projects/myproject/src/fileB.mts' exist - use it as a name resolution result. +Info 21 [00:00:48.000] ======== Module name './fileB.mjs' was successfully resolved to '/user/username/projects/myproject/src/fileB.mts'. ======== +Info 22 [00:00:49.000] File '/a/lib/package.json' does not exist. +Info 23 [00:00:50.000] File '/a/package.json' does not exist. +Info 24 [00:00:51.000] File '/package.json' does not exist. +Info 25 [00:00:52.000] FileWatcher:: Added:: WatchInfo: /a/lib/lib.es2016.full.d.ts 500 undefined WatchType: Closed Script info +Info 26 [00:00:53.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/src/package.json 2000 undefined Project: /user/username/projects/myproject/src/tsconfig.json WatchType: File location affecting resolution +Info 27 [00:00:54.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/package.json 2000 undefined Project: /user/username/projects/myproject/src/tsconfig.json WatchType: File location affecting resolution +Info 28 [00:00:55.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/src/node_modules/@types 1 undefined Project: /user/username/projects/myproject/src/tsconfig.json WatchType: Type roots +Info 29 [00:00:56.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/src/node_modules/@types 1 undefined Project: /user/username/projects/myproject/src/tsconfig.json WatchType: Type roots +Info 30 [00:00:57.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/src/tsconfig.json WatchType: Type roots +Info 31 [00:00:58.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/src/tsconfig.json WatchType: Type roots +Info 32 [00:00:59.000] Finishing updateGraphWorker: Project: /user/username/projects/myproject/src/tsconfig.json Version: 1 structureChanged: true structureIsReused:: Not Elapsed:: *ms +Info 33 [00:01:00.000] Project '/user/username/projects/myproject/src/tsconfig.json' (Configured) +Info 34 [00:01:01.000] Files (3) /a/lib/lib.es2016.full.d.ts /user/username/projects/myproject/src/fileB.mts /user/username/projects/myproject/src/fileA.ts @@ -105,21 +105,21 @@ Info 34 [16:01:01.000] Files (3) Matched by default include pattern '**/*' File is ECMAScript module because '../package.json' has field "type" with value "module" -Info 35 [16:01:02.000] ----------------------------------------------- -Info 36 [16:01:03.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/package.json 250 undefined WatchType: package.json file -Info 37 [16:01:04.000] event: +Info 35 [00:01:02.000] ----------------------------------------------- +Info 36 [00:01:03.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/package.json 250 undefined WatchType: package.json file +Info 37 [00:01:04.000] event: {"seq":0,"type":"event","event":"projectLoadingFinish","body":{"projectName":"/user/username/projects/myproject/src/tsconfig.json"}} -Info 38 [16:01:05.000] event: +Info 38 [00:01:05.000] event: {"seq":0,"type":"event","event":"telemetry","body":{"telemetryEventName":"projectInfo","payload":{"projectId":"f026568af42c61ce0537de8ee0fa07c9359a76dcfb046248ed49dc76c91e4a37","fileStats":{"js":0,"jsSize":0,"jsx":0,"jsxSize":0,"ts":2,"tsSize":68,"tsx":0,"tsxSize":0,"dts":1,"dtsSize":334,"deferred":0,"deferredSize":0},"compilerOptions":{"target":"es2016","module":"node16","outDir":"","traceResolution":true},"typeAcquisition":{"enable":false,"include":false,"exclude":false},"extends":false,"files":false,"include":false,"exclude":false,"compileOnSave":false,"configFileName":"tsconfig.json","projectType":"configured","languageServiceEnabled":true,"version":"FakeVersion"}}} -Info 39 [16:01:06.000] event: +Info 39 [00:01:06.000] event: {"seq":0,"type":"event","event":"configFileDiag","body":{"triggerFile":"/user/username/projects/myproject/src/fileA.ts","configFile":"/user/username/projects/myproject/src/tsconfig.json","diagnostics":[]}} -Info 40 [16:01:07.000] Project '/user/username/projects/myproject/src/tsconfig.json' (Configured) -Info 40 [16:01:08.000] Files (3) +Info 40 [00:01:07.000] Project '/user/username/projects/myproject/src/tsconfig.json' (Configured) +Info 40 [00:01:08.000] Files (3) -Info 40 [16:01:09.000] ----------------------------------------------- -Info 40 [16:01:10.000] Open files: -Info 40 [16:01:11.000] FileName: /user/username/projects/myproject/src/fileA.ts ProjectRootPath: undefined -Info 40 [16:01:12.000] Projects: /user/username/projects/myproject/src/tsconfig.json +Info 40 [00:01:09.000] ----------------------------------------------- +Info 40 [00:01:10.000] Open files: +Info 40 [00:01:11.000] FileName: /user/username/projects/myproject/src/fileA.ts ProjectRootPath: undefined +Info 40 [00:01:12.000] Projects: /user/username/projects/myproject/src/tsconfig.json After request PolledWatches:: @@ -144,16 +144,16 @@ FsWatchesRecursive:: /user/username/projects/myproject/src: {} -Info 40 [16:01:13.000] response: +Info 40 [00:01:13.000] response: { "responseRequired": false } -Info 41 [16:01:14.000] Modify package json file to remove type module -Info 42 [16:01:18.000] FileWatcher:: Triggered with /user/username/projects/myproject/package.json 1:: WatchInfo: /user/username/projects/myproject/package.json 2000 undefined Project: /user/username/projects/myproject/src/tsconfig.json WatchType: File location affecting resolution -Info 43 [16:01:19.000] Scheduled: /user/username/projects/myproject/src/tsconfig.jsonFailedLookupInvalidation -Info 44 [16:01:20.000] Elapsed:: *ms FileWatcher:: Triggered with /user/username/projects/myproject/package.json 1:: WatchInfo: /user/username/projects/myproject/package.json 2000 undefined Project: /user/username/projects/myproject/src/tsconfig.json WatchType: File location affecting resolution -Info 45 [16:01:21.000] FileWatcher:: Triggered with /user/username/projects/myproject/package.json 1:: WatchInfo: /user/username/projects/myproject/package.json 250 undefined WatchType: package.json file -Info 46 [16:01:22.000] Elapsed:: *ms FileWatcher:: Triggered with /user/username/projects/myproject/package.json 1:: WatchInfo: /user/username/projects/myproject/package.json 250 undefined WatchType: package.json file +Info 41 [00:01:14.000] Modify package json file to remove type module +Info 42 [00:01:18.000] FileWatcher:: Triggered with /user/username/projects/myproject/package.json 1:: WatchInfo: /user/username/projects/myproject/package.json 2000 undefined Project: /user/username/projects/myproject/src/tsconfig.json WatchType: File location affecting resolution +Info 43 [00:01:19.000] Scheduled: /user/username/projects/myproject/src/tsconfig.jsonFailedLookupInvalidation +Info 44 [00:01:20.000] Elapsed:: *ms FileWatcher:: Triggered with /user/username/projects/myproject/package.json 1:: WatchInfo: /user/username/projects/myproject/package.json 2000 undefined Project: /user/username/projects/myproject/src/tsconfig.json WatchType: File location affecting resolution +Info 45 [00:01:21.000] FileWatcher:: Triggered with /user/username/projects/myproject/package.json 1:: WatchInfo: /user/username/projects/myproject/package.json 250 undefined WatchType: package.json file +Info 46 [00:01:22.000] Elapsed:: *ms FileWatcher:: Triggered with /user/username/projects/myproject/package.json 1:: WatchInfo: /user/username/projects/myproject/package.json 250 undefined WatchType: package.json file Before running timeout callbacks //// [/user/username/projects/myproject/package.json] {"name":"app","version":"1.0.0"} @@ -181,9 +181,9 @@ FsWatchesRecursive:: /user/username/projects/myproject/src: {} -Info 47 [16:01:23.000] Running: /user/username/projects/myproject/src/tsconfig.jsonFailedLookupInvalidation -Info 48 [16:01:24.000] Scheduled: /user/username/projects/myproject/src/tsconfig.json -Info 49 [16:01:25.000] Scheduled: *ensureProjectForOpenFiles* +Info 47 [00:01:23.000] Running: /user/username/projects/myproject/src/tsconfig.jsonFailedLookupInvalidation +Info 48 [00:01:24.000] Scheduled: /user/username/projects/myproject/src/tsconfig.json +Info 49 [00:01:25.000] Scheduled: *ensureProjectForOpenFiles* After running timeout callbacks PolledWatches:: @@ -232,51 +232,51 @@ FsWatchesRecursive:: /user/username/projects/myproject/src: {} -Info 50 [16:01:26.000] Running: /user/username/projects/myproject/src/tsconfig.json -Info 51 [16:01:27.000] Starting updateGraphWorker: Project: /user/username/projects/myproject/src/tsconfig.json -Info 52 [16:01:28.000] File '/a/lib/package.json' does not exist according to earlier cached lookups. -Info 53 [16:01:29.000] File '/a/package.json' does not exist according to earlier cached lookups. -Info 54 [16:01:30.000] File '/package.json' does not exist according to earlier cached lookups. -Info 55 [16:01:31.000] File '/user/username/projects/myproject/src/package.json' does not exist according to earlier cached lookups. -Info 56 [16:01:32.000] Found 'package.json' at '/user/username/projects/myproject/package.json'. -Info 57 [16:01:33.000] 'package.json' does not have a 'typesVersions' field. -Info 58 [16:01:34.000] File '/user/username/projects/myproject/src/package.json' does not exist according to earlier cached lookups. -Info 59 [16:01:35.000] File '/user/username/projects/myproject/package.json' exists according to earlier cached lookups. -Info 60 [16:01:36.000] ======== Resolving module './fileB.mjs' from '/user/username/projects/myproject/src/fileA.ts'. ======== -Info 61 [16:01:37.000] Module resolution kind is not specified, using 'Node16'. -Info 62 [16:01:38.000] Loading module as file / folder, candidate module location '/user/username/projects/myproject/src/fileB.mjs', target file type 'TypeScript'. -Info 63 [16:01:39.000] File '/user/username/projects/myproject/src/fileB.mjs.ts' does not exist. -Info 64 [16:01:40.000] File '/user/username/projects/myproject/src/fileB.mjs.tsx' does not exist. -Info 65 [16:01:41.000] File '/user/username/projects/myproject/src/fileB.mjs.d.ts' does not exist. -Info 66 [16:01:42.000] File name '/user/username/projects/myproject/src/fileB.mjs' has a '.mjs' extension - stripping it. -Info 67 [16:01:43.000] File '/user/username/projects/myproject/src/fileB.mts' exist - use it as a name resolution result. -Info 68 [16:01:44.000] ======== Module name './fileB.mjs' was successfully resolved to '/user/username/projects/myproject/src/fileB.mts'. ======== -Info 69 [16:01:45.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/src 0 undefined Project: /user/username/projects/myproject/src/tsconfig.json WatchType: Failed Lookup Locations -Info 70 [16:01:46.000] 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 71 [16:01:47.000] File '/a/lib/package.json' does not exist according to earlier cached lookups. -Info 72 [16:01:48.000] File '/a/package.json' does not exist according to earlier cached lookups. -Info 73 [16:01:49.000] File '/package.json' does not exist according to earlier cached lookups. -Info 74 [16:01:50.000] Finishing updateGraphWorker: Project: /user/username/projects/myproject/src/tsconfig.json Version: 2 structureChanged: true structureIsReused:: SafeModules Elapsed:: *ms -Info 75 [16:01:51.000] Different program with same set of files -Info 76 [16:01:52.000] Running: *ensureProjectForOpenFiles* -Info 77 [16:01:53.000] Before ensureProjectForOpenFiles: -Info 78 [16:01:54.000] Project '/user/username/projects/myproject/src/tsconfig.json' (Configured) -Info 78 [16:01:55.000] Files (3) - -Info 78 [16:01:56.000] ----------------------------------------------- -Info 78 [16:01:57.000] Open files: -Info 78 [16:01:58.000] FileName: /user/username/projects/myproject/src/fileA.ts ProjectRootPath: undefined -Info 78 [16:01:59.000] Projects: /user/username/projects/myproject/src/tsconfig.json -Info 78 [16:02:00.000] After ensureProjectForOpenFiles: -Info 79 [16:02:01.000] Project '/user/username/projects/myproject/src/tsconfig.json' (Configured) -Info 79 [16:02:02.000] Files (3) - -Info 79 [16:02:03.000] ----------------------------------------------- -Info 79 [16:02:04.000] Open files: -Info 79 [16:02:05.000] FileName: /user/username/projects/myproject/src/fileA.ts ProjectRootPath: undefined -Info 79 [16:02:06.000] Projects: /user/username/projects/myproject/src/tsconfig.json -Info 79 [16:02:07.000] got projects updated in background, updating diagnostics for /user/username/projects/myproject/src/fileA.ts -Info 80 [16:02:08.000] event: +Info 50 [00:01:26.000] Running: /user/username/projects/myproject/src/tsconfig.json +Info 51 [00:01:27.000] Starting updateGraphWorker: Project: /user/username/projects/myproject/src/tsconfig.json +Info 52 [00:01:28.000] File '/a/lib/package.json' does not exist according to earlier cached lookups. +Info 53 [00:01:29.000] File '/a/package.json' does not exist according to earlier cached lookups. +Info 54 [00:01:30.000] File '/package.json' does not exist according to earlier cached lookups. +Info 55 [00:01:31.000] File '/user/username/projects/myproject/src/package.json' does not exist according to earlier cached lookups. +Info 56 [00:01:32.000] Found 'package.json' at '/user/username/projects/myproject/package.json'. +Info 57 [00:01:33.000] 'package.json' does not have a 'typesVersions' field. +Info 58 [00:01:34.000] File '/user/username/projects/myproject/src/package.json' does not exist according to earlier cached lookups. +Info 59 [00:01:35.000] File '/user/username/projects/myproject/package.json' exists according to earlier cached lookups. +Info 60 [00:01:36.000] ======== Resolving module './fileB.mjs' from '/user/username/projects/myproject/src/fileA.ts'. ======== +Info 61 [00:01:37.000] Module resolution kind is not specified, using 'Node16'. +Info 62 [00:01:38.000] Loading module as file / folder, candidate module location '/user/username/projects/myproject/src/fileB.mjs', target file type 'TypeScript'. +Info 63 [00:01:39.000] File '/user/username/projects/myproject/src/fileB.mjs.ts' does not exist. +Info 64 [00:01:40.000] File '/user/username/projects/myproject/src/fileB.mjs.tsx' does not exist. +Info 65 [00:01:41.000] File '/user/username/projects/myproject/src/fileB.mjs.d.ts' does not exist. +Info 66 [00:01:42.000] File name '/user/username/projects/myproject/src/fileB.mjs' has a '.mjs' extension - stripping it. +Info 67 [00:01:43.000] File '/user/username/projects/myproject/src/fileB.mts' exist - use it as a name resolution result. +Info 68 [00:01:44.000] ======== Module name './fileB.mjs' was successfully resolved to '/user/username/projects/myproject/src/fileB.mts'. ======== +Info 69 [00:01:45.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/src 0 undefined Project: /user/username/projects/myproject/src/tsconfig.json WatchType: Failed Lookup Locations +Info 70 [00:01:46.000] 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 71 [00:01:47.000] File '/a/lib/package.json' does not exist according to earlier cached lookups. +Info 72 [00:01:48.000] File '/a/package.json' does not exist according to earlier cached lookups. +Info 73 [00:01:49.000] File '/package.json' does not exist according to earlier cached lookups. +Info 74 [00:01:50.000] Finishing updateGraphWorker: Project: /user/username/projects/myproject/src/tsconfig.json Version: 2 structureChanged: true structureIsReused:: SafeModules Elapsed:: *ms +Info 75 [00:01:51.000] Different program with same set of files +Info 76 [00:01:52.000] Running: *ensureProjectForOpenFiles* +Info 77 [00:01:53.000] Before ensureProjectForOpenFiles: +Info 78 [00:01:54.000] Project '/user/username/projects/myproject/src/tsconfig.json' (Configured) +Info 78 [00:01:55.000] Files (3) + +Info 78 [00:01:56.000] ----------------------------------------------- +Info 78 [00:01:57.000] Open files: +Info 78 [00:01:58.000] FileName: /user/username/projects/myproject/src/fileA.ts ProjectRootPath: undefined +Info 78 [00:01:59.000] Projects: /user/username/projects/myproject/src/tsconfig.json +Info 78 [00:02:00.000] After ensureProjectForOpenFiles: +Info 79 [00:02:01.000] Project '/user/username/projects/myproject/src/tsconfig.json' (Configured) +Info 79 [00:02:02.000] Files (3) + +Info 79 [00:02:03.000] ----------------------------------------------- +Info 79 [00:02:04.000] Open files: +Info 79 [00:02:05.000] FileName: /user/username/projects/myproject/src/fileA.ts ProjectRootPath: undefined +Info 79 [00:02:06.000] Projects: /user/username/projects/myproject/src/tsconfig.json +Info 79 [00:02:07.000] got projects updated in background, updating diagnostics for /user/username/projects/myproject/src/fileA.ts +Info 80 [00:02:08.000] event: {"seq":0,"type":"event","event":"projectsUpdatedInBackground","body":{"openFiles":["/user/username/projects/myproject/src/fileA.ts"]}} After running timeout callbacks @@ -304,7 +304,7 @@ FsWatchesRecursive:: /user/username/projects/myproject/src: {} -Info 81 [16:02:09.000] request: +Info 81 [00:02:09.000] request: { "command": "geterr", "arguments": { @@ -368,7 +368,7 @@ FsWatchesRecursive:: /user/username/projects/myproject/src: {} -Info 82 [16:02:10.000] response: +Info 82 [00:02:10.000] response: { "responseRequired": false } @@ -398,7 +398,7 @@ FsWatchesRecursive:: /user/username/projects/myproject/src: {} -Info 83 [16:02:11.000] event: +Info 83 [00:02:11.000] event: {"seq":0,"type":"event","event":"syntaxDiag","body":{"file":"/user/username/projects/myproject/src/fileA.ts","diagnostics":[]}} After checking timeout queue length (1) and running @@ -452,7 +452,7 @@ FsWatchesRecursive:: /user/username/projects/myproject/src: {} -Info 84 [16:02:12.000] event: +Info 84 [00:02:12.000] event: {"seq":0,"type":"event","event":"semanticDiag","body":{"file":"/user/username/projects/myproject/src/fileA.ts","diagnostics":[{"start":{"line":1,"offset":21},"end":{"line":1,"offset":34},"text":"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.\n To convert this file to an ECMAScript module, change its file extension to '.mts', or add the field `\"type\": \"module\"` to '/user/username/projects/myproject/package.json'.","code":1479,"category":"error"}]}} Before running immediate callbacks and checking length (1) @@ -506,9 +506,9 @@ FsWatchesRecursive:: /user/username/projects/myproject/src: {} -Info 85 [16:02:13.000] event: +Info 85 [00:02:13.000] event: {"seq":0,"type":"event","event":"suggestionDiag","body":{"file":"/user/username/projects/myproject/src/fileA.ts","diagnostics":[]}} -Info 86 [16:02:14.000] event: +Info 86 [00:02:14.000] event: {"seq":0,"type":"event","event":"requestCompleted","body":{"request_seq":1}} Before running immediate callbacks and checking length (1) @@ -536,12 +536,12 @@ FsWatchesRecursive:: /user/username/projects/myproject/src: {} -Info 87 [16:02:15.000] Modify package json file to add type module -Info 88 [16:02:19.000] FileWatcher:: Triggered with /user/username/projects/myproject/package.json 1:: WatchInfo: /user/username/projects/myproject/package.json 2000 undefined Project: /user/username/projects/myproject/src/tsconfig.json WatchType: File location affecting resolution -Info 89 [16:02:20.000] Scheduled: /user/username/projects/myproject/src/tsconfig.jsonFailedLookupInvalidation -Info 90 [16:02:21.000] Elapsed:: *ms FileWatcher:: Triggered with /user/username/projects/myproject/package.json 1:: WatchInfo: /user/username/projects/myproject/package.json 2000 undefined Project: /user/username/projects/myproject/src/tsconfig.json WatchType: File location affecting resolution -Info 91 [16:02:22.000] FileWatcher:: Triggered with /user/username/projects/myproject/package.json 1:: WatchInfo: /user/username/projects/myproject/package.json 250 undefined WatchType: package.json file -Info 92 [16:02:23.000] Elapsed:: *ms FileWatcher:: Triggered with /user/username/projects/myproject/package.json 1:: WatchInfo: /user/username/projects/myproject/package.json 250 undefined WatchType: package.json file +Info 87 [00:02:15.000] Modify package json file to add type module +Info 88 [00:02:19.000] FileWatcher:: Triggered with /user/username/projects/myproject/package.json 1:: WatchInfo: /user/username/projects/myproject/package.json 2000 undefined Project: /user/username/projects/myproject/src/tsconfig.json WatchType: File location affecting resolution +Info 89 [00:02:20.000] Scheduled: /user/username/projects/myproject/src/tsconfig.jsonFailedLookupInvalidation +Info 90 [00:02:21.000] Elapsed:: *ms FileWatcher:: Triggered with /user/username/projects/myproject/package.json 1:: WatchInfo: /user/username/projects/myproject/package.json 2000 undefined Project: /user/username/projects/myproject/src/tsconfig.json WatchType: File location affecting resolution +Info 91 [00:02:22.000] FileWatcher:: Triggered with /user/username/projects/myproject/package.json 1:: WatchInfo: /user/username/projects/myproject/package.json 250 undefined WatchType: package.json file +Info 92 [00:02:23.000] Elapsed:: *ms FileWatcher:: Triggered with /user/username/projects/myproject/package.json 1:: WatchInfo: /user/username/projects/myproject/package.json 250 undefined WatchType: package.json file Before running timeout callbacks //// [/user/username/projects/myproject/package.json] {"name":"app","version":"1.0.0","type":"module"} @@ -571,9 +571,9 @@ FsWatchesRecursive:: /user/username/projects/myproject/src: {} -Info 93 [16:02:24.000] Running: /user/username/projects/myproject/src/tsconfig.jsonFailedLookupInvalidation -Info 94 [16:02:25.000] Scheduled: /user/username/projects/myproject/src/tsconfig.json -Info 95 [16:02:26.000] Scheduled: *ensureProjectForOpenFiles* +Info 93 [00:02:24.000] Running: /user/username/projects/myproject/src/tsconfig.jsonFailedLookupInvalidation +Info 94 [00:02:25.000] Scheduled: /user/username/projects/myproject/src/tsconfig.json +Info 95 [00:02:26.000] Scheduled: *ensureProjectForOpenFiles* After running timeout callbacks PolledWatches:: @@ -626,48 +626,48 @@ FsWatchesRecursive:: /user/username/projects/myproject/src: {} -Info 96 [16:02:27.000] Running: /user/username/projects/myproject/src/tsconfig.json -Info 97 [16:02:28.000] Starting updateGraphWorker: Project: /user/username/projects/myproject/src/tsconfig.json -Info 98 [16:02:29.000] File '/a/lib/package.json' does not exist according to earlier cached lookups. -Info 99 [16:02:30.000] File '/a/package.json' does not exist according to earlier cached lookups. -Info 100 [16:02:31.000] File '/package.json' does not exist according to earlier cached lookups. -Info 101 [16:02:32.000] File '/user/username/projects/myproject/src/package.json' does not exist according to earlier cached lookups. -Info 102 [16:02:33.000] Found 'package.json' at '/user/username/projects/myproject/package.json'. -Info 103 [16:02:34.000] 'package.json' does not have a 'typesVersions' field. -Info 104 [16:02:35.000] File '/user/username/projects/myproject/src/package.json' does not exist according to earlier cached lookups. -Info 105 [16:02:36.000] File '/user/username/projects/myproject/package.json' exists according to earlier cached lookups. -Info 106 [16:02:37.000] ======== Resolving module './fileB.mjs' from '/user/username/projects/myproject/src/fileA.ts'. ======== -Info 107 [16:02:38.000] Module resolution kind is not specified, using 'Node16'. -Info 108 [16:02:39.000] Loading module as file / folder, candidate module location '/user/username/projects/myproject/src/fileB.mjs', target file type 'TypeScript'. -Info 109 [16:02:40.000] File name '/user/username/projects/myproject/src/fileB.mjs' has a '.mjs' extension - stripping it. -Info 110 [16:02:41.000] File '/user/username/projects/myproject/src/fileB.mts' exist - use it as a name resolution result. -Info 111 [16:02:42.000] ======== Module name './fileB.mjs' was successfully resolved to '/user/username/projects/myproject/src/fileB.mts'. ======== -Info 112 [16:02:43.000] File '/a/lib/package.json' does not exist according to earlier cached lookups. -Info 113 [16:02:44.000] File '/a/package.json' does not exist according to earlier cached lookups. -Info 114 [16:02:45.000] File '/package.json' does not exist according to earlier cached lookups. -Info 115 [16:02:46.000] DirectoryWatcher:: Close:: WatchInfo: /user/username/projects/myproject/src 0 undefined Project: /user/username/projects/myproject/src/tsconfig.json WatchType: Failed Lookup Locations -Info 116 [16:02:47.000] Elapsed:: *ms DirectoryWatcher:: Close:: WatchInfo: /user/username/projects/myproject/src 0 undefined Project: /user/username/projects/myproject/src/tsconfig.json WatchType: Failed Lookup Locations -Info 117 [16:02:48.000] Finishing updateGraphWorker: Project: /user/username/projects/myproject/src/tsconfig.json Version: 3 structureChanged: true structureIsReused:: SafeModules Elapsed:: *ms -Info 118 [16:02:49.000] Different program with same set of files -Info 119 [16:02:50.000] Running: *ensureProjectForOpenFiles* -Info 120 [16:02:51.000] Before ensureProjectForOpenFiles: -Info 121 [16:02:52.000] Project '/user/username/projects/myproject/src/tsconfig.json' (Configured) -Info 121 [16:02:53.000] Files (3) - -Info 121 [16:02:54.000] ----------------------------------------------- -Info 121 [16:02:55.000] Open files: -Info 121 [16:02:56.000] FileName: /user/username/projects/myproject/src/fileA.ts ProjectRootPath: undefined -Info 121 [16:02:57.000] Projects: /user/username/projects/myproject/src/tsconfig.json -Info 121 [16:02:58.000] After ensureProjectForOpenFiles: -Info 122 [16:02:59.000] Project '/user/username/projects/myproject/src/tsconfig.json' (Configured) -Info 122 [16:03:00.000] Files (3) - -Info 122 [16:03:01.000] ----------------------------------------------- -Info 122 [16:03:02.000] Open files: -Info 122 [16:03:03.000] FileName: /user/username/projects/myproject/src/fileA.ts ProjectRootPath: undefined -Info 122 [16:03:04.000] Projects: /user/username/projects/myproject/src/tsconfig.json -Info 122 [16:03:05.000] got projects updated in background, updating diagnostics for /user/username/projects/myproject/src/fileA.ts -Info 123 [16:03:06.000] event: +Info 96 [00:02:27.000] Running: /user/username/projects/myproject/src/tsconfig.json +Info 97 [00:02:28.000] Starting updateGraphWorker: Project: /user/username/projects/myproject/src/tsconfig.json +Info 98 [00:02:29.000] File '/a/lib/package.json' does not exist according to earlier cached lookups. +Info 99 [00:02:30.000] File '/a/package.json' does not exist according to earlier cached lookups. +Info 100 [00:02:31.000] File '/package.json' does not exist according to earlier cached lookups. +Info 101 [00:02:32.000] File '/user/username/projects/myproject/src/package.json' does not exist according to earlier cached lookups. +Info 102 [00:02:33.000] Found 'package.json' at '/user/username/projects/myproject/package.json'. +Info 103 [00:02:34.000] 'package.json' does not have a 'typesVersions' field. +Info 104 [00:02:35.000] File '/user/username/projects/myproject/src/package.json' does not exist according to earlier cached lookups. +Info 105 [00:02:36.000] File '/user/username/projects/myproject/package.json' exists according to earlier cached lookups. +Info 106 [00:02:37.000] ======== Resolving module './fileB.mjs' from '/user/username/projects/myproject/src/fileA.ts'. ======== +Info 107 [00:02:38.000] Module resolution kind is not specified, using 'Node16'. +Info 108 [00:02:39.000] Loading module as file / folder, candidate module location '/user/username/projects/myproject/src/fileB.mjs', target file type 'TypeScript'. +Info 109 [00:02:40.000] File name '/user/username/projects/myproject/src/fileB.mjs' has a '.mjs' extension - stripping it. +Info 110 [00:02:41.000] File '/user/username/projects/myproject/src/fileB.mts' exist - use it as a name resolution result. +Info 111 [00:02:42.000] ======== Module name './fileB.mjs' was successfully resolved to '/user/username/projects/myproject/src/fileB.mts'. ======== +Info 112 [00:02:43.000] File '/a/lib/package.json' does not exist according to earlier cached lookups. +Info 113 [00:02:44.000] File '/a/package.json' does not exist according to earlier cached lookups. +Info 114 [00:02:45.000] File '/package.json' does not exist according to earlier cached lookups. +Info 115 [00:02:46.000] DirectoryWatcher:: Close:: WatchInfo: /user/username/projects/myproject/src 0 undefined Project: /user/username/projects/myproject/src/tsconfig.json WatchType: Failed Lookup Locations +Info 116 [00:02:47.000] Elapsed:: *ms DirectoryWatcher:: Close:: WatchInfo: /user/username/projects/myproject/src 0 undefined Project: /user/username/projects/myproject/src/tsconfig.json WatchType: Failed Lookup Locations +Info 117 [00:02:48.000] Finishing updateGraphWorker: Project: /user/username/projects/myproject/src/tsconfig.json Version: 3 structureChanged: true structureIsReused:: SafeModules Elapsed:: *ms +Info 118 [00:02:49.000] Different program with same set of files +Info 119 [00:02:50.000] Running: *ensureProjectForOpenFiles* +Info 120 [00:02:51.000] Before ensureProjectForOpenFiles: +Info 121 [00:02:52.000] Project '/user/username/projects/myproject/src/tsconfig.json' (Configured) +Info 121 [00:02:53.000] Files (3) + +Info 121 [00:02:54.000] ----------------------------------------------- +Info 121 [00:02:55.000] Open files: +Info 121 [00:02:56.000] FileName: /user/username/projects/myproject/src/fileA.ts ProjectRootPath: undefined +Info 121 [00:02:57.000] Projects: /user/username/projects/myproject/src/tsconfig.json +Info 121 [00:02:58.000] After ensureProjectForOpenFiles: +Info 122 [00:02:59.000] Project '/user/username/projects/myproject/src/tsconfig.json' (Configured) +Info 122 [00:03:00.000] Files (3) + +Info 122 [00:03:01.000] ----------------------------------------------- +Info 122 [00:03:02.000] Open files: +Info 122 [00:03:03.000] FileName: /user/username/projects/myproject/src/fileA.ts ProjectRootPath: undefined +Info 122 [00:03:04.000] Projects: /user/username/projects/myproject/src/tsconfig.json +Info 122 [00:03:05.000] got projects updated in background, updating diagnostics for /user/username/projects/myproject/src/fileA.ts +Info 123 [00:03:06.000] event: {"seq":0,"type":"event","event":"projectsUpdatedInBackground","body":{"openFiles":["/user/username/projects/myproject/src/fileA.ts"]}} After running timeout callbacks @@ -693,7 +693,7 @@ FsWatchesRecursive:: /user/username/projects/myproject/src: {} -Info 124 [16:03:07.000] request: +Info 124 [00:03:07.000] request: { "command": "geterr", "arguments": { @@ -753,7 +753,7 @@ FsWatchesRecursive:: /user/username/projects/myproject/src: {} -Info 125 [16:03:08.000] response: +Info 125 [00:03:08.000] response: { "responseRequired": false } @@ -781,7 +781,7 @@ FsWatchesRecursive:: /user/username/projects/myproject/src: {} -Info 126 [16:03:09.000] event: +Info 126 [00:03:09.000] event: {"seq":0,"type":"event","event":"syntaxDiag","body":{"file":"/user/username/projects/myproject/src/fileA.ts","diagnostics":[]}} After checking timeout queue length (1) and running @@ -831,7 +831,7 @@ FsWatchesRecursive:: /user/username/projects/myproject/src: {} -Info 127 [16:03:10.000] event: +Info 127 [00:03:10.000] event: {"seq":0,"type":"event","event":"semanticDiag","body":{"file":"/user/username/projects/myproject/src/fileA.ts","diagnostics":[]}} Before running immediate callbacks and checking length (1) @@ -881,9 +881,9 @@ FsWatchesRecursive:: /user/username/projects/myproject/src: {} -Info 128 [16:03:11.000] event: +Info 128 [00:03:11.000] event: {"seq":0,"type":"event","event":"suggestionDiag","body":{"file":"/user/username/projects/myproject/src/fileA.ts","diagnostics":[]}} -Info 129 [16:03:12.000] event: +Info 129 [00:03:12.000] event: {"seq":0,"type":"event","event":"requestCompleted","body":{"request_seq":2}} Before running immediate callbacks and checking length (1) @@ -909,13 +909,13 @@ FsWatchesRecursive:: /user/username/projects/myproject/src: {} -Info 130 [16:03:13.000] Delete package.json -Info 131 [16:03:15.000] FileWatcher:: Triggered with /user/username/projects/myproject/package.json 2:: WatchInfo: /user/username/projects/myproject/package.json 2000 undefined Project: /user/username/projects/myproject/src/tsconfig.json WatchType: File location affecting resolution -Info 132 [16:03:16.000] Scheduled: /user/username/projects/myproject/src/tsconfig.jsonFailedLookupInvalidation -Info 133 [16:03:17.000] Elapsed:: *ms FileWatcher:: Triggered with /user/username/projects/myproject/package.json 2:: WatchInfo: /user/username/projects/myproject/package.json 2000 undefined Project: /user/username/projects/myproject/src/tsconfig.json WatchType: File location affecting resolution -Info 134 [16:03:18.000] FileWatcher:: Triggered with /user/username/projects/myproject/package.json 2:: WatchInfo: /user/username/projects/myproject/package.json 250 undefined WatchType: package.json file -Info 135 [16:03:19.000] FileWatcher:: Close:: WatchInfo: /user/username/projects/myproject/package.json 250 undefined WatchType: package.json file -Info 136 [16:03:20.000] Elapsed:: *ms FileWatcher:: Triggered with /user/username/projects/myproject/package.json 2:: WatchInfo: /user/username/projects/myproject/package.json 250 undefined WatchType: package.json file +Info 130 [00:03:13.000] Delete package.json +Info 131 [00:03:15.000] FileWatcher:: Triggered with /user/username/projects/myproject/package.json 2:: WatchInfo: /user/username/projects/myproject/package.json 2000 undefined Project: /user/username/projects/myproject/src/tsconfig.json WatchType: File location affecting resolution +Info 132 [00:03:16.000] Scheduled: /user/username/projects/myproject/src/tsconfig.jsonFailedLookupInvalidation +Info 133 [00:03:17.000] Elapsed:: *ms FileWatcher:: Triggered with /user/username/projects/myproject/package.json 2:: WatchInfo: /user/username/projects/myproject/package.json 2000 undefined Project: /user/username/projects/myproject/src/tsconfig.json WatchType: File location affecting resolution +Info 134 [00:03:18.000] FileWatcher:: Triggered with /user/username/projects/myproject/package.json 2:: WatchInfo: /user/username/projects/myproject/package.json 250 undefined WatchType: package.json file +Info 135 [00:03:19.000] FileWatcher:: Close:: WatchInfo: /user/username/projects/myproject/package.json 250 undefined WatchType: package.json file +Info 136 [00:03:20.000] Elapsed:: *ms FileWatcher:: Triggered with /user/username/projects/myproject/package.json 2:: WatchInfo: /user/username/projects/myproject/package.json 250 undefined WatchType: package.json file Before running timeout callbacks //// [/user/username/projects/myproject/package.json] deleted @@ -941,9 +941,9 @@ FsWatchesRecursive:: /user/username/projects/myproject/src: {} -Info 137 [16:03:21.000] Running: /user/username/projects/myproject/src/tsconfig.jsonFailedLookupInvalidation -Info 138 [16:03:22.000] Scheduled: /user/username/projects/myproject/src/tsconfig.json -Info 139 [16:03:23.000] Scheduled: *ensureProjectForOpenFiles* +Info 137 [00:03:21.000] Running: /user/username/projects/myproject/src/tsconfig.jsonFailedLookupInvalidation +Info 138 [00:03:22.000] Scheduled: /user/username/projects/myproject/src/tsconfig.json +Info 139 [00:03:23.000] Scheduled: *ensureProjectForOpenFiles* After running timeout callbacks PolledWatches:: @@ -992,48 +992,48 @@ FsWatchesRecursive:: /user/username/projects/myproject/src: {} -Info 140 [16:03:24.000] Running: /user/username/projects/myproject/src/tsconfig.json -Info 141 [16:03:25.000] Starting updateGraphWorker: Project: /user/username/projects/myproject/src/tsconfig.json -Info 142 [16:03:26.000] File '/a/lib/package.json' does not exist according to earlier cached lookups. -Info 143 [16:03:27.000] File '/a/package.json' does not exist according to earlier cached lookups. -Info 144 [16:03:28.000] File '/package.json' does not exist according to earlier cached lookups. -Info 145 [16:03:29.000] File '/user/username/projects/myproject/src/package.json' does not exist according to earlier cached lookups. -Info 146 [16:03:30.000] File '/user/username/projects/myproject/package.json' does not exist. -Info 147 [16:03:31.000] File '/user/username/projects/package.json' does not exist. -Info 148 [16:03:32.000] File '/user/username/package.json' does not exist. -Info 149 [16:03:33.000] File '/user/package.json' does not exist. -Info 150 [16:03:34.000] File '/package.json' does not exist according to earlier cached lookups. -Info 151 [16:03:35.000] File '/user/username/projects/myproject/src/package.json' does not exist according to earlier cached lookups. -Info 152 [16:03:36.000] File '/user/username/projects/myproject/package.json' does not exist according to earlier cached lookups. -Info 153 [16:03:37.000] File '/user/username/projects/package.json' does not exist according to earlier cached lookups. -Info 154 [16:03:38.000] File '/user/username/package.json' does not exist according to earlier cached lookups. -Info 155 [16:03:39.000] File '/user/package.json' does not exist according to earlier cached lookups. -Info 156 [16:03:40.000] File '/package.json' does not exist according to earlier cached lookups. -Info 157 [16:03:41.000] File '/a/lib/package.json' does not exist according to earlier cached lookups. -Info 158 [16:03:42.000] File '/a/package.json' does not exist according to earlier cached lookups. -Info 159 [16:03:43.000] File '/package.json' does not exist according to earlier cached lookups. -Info 160 [16:03:44.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/package.json 2000 undefined Project: /user/username/projects/myproject/src/tsconfig.json WatchType: File location affecting resolution -Info 161 [16:03:45.000] Finishing updateGraphWorker: Project: /user/username/projects/myproject/src/tsconfig.json Version: 4 structureChanged: true structureIsReused:: SafeModules Elapsed:: *ms -Info 162 [16:03:46.000] Different program with same set of files -Info 163 [16:03:47.000] Running: *ensureProjectForOpenFiles* -Info 164 [16:03:48.000] Before ensureProjectForOpenFiles: -Info 165 [16:03:49.000] Project '/user/username/projects/myproject/src/tsconfig.json' (Configured) -Info 165 [16:03:50.000] Files (3) - -Info 165 [16:03:51.000] ----------------------------------------------- -Info 165 [16:03:52.000] Open files: -Info 165 [16:03:53.000] FileName: /user/username/projects/myproject/src/fileA.ts ProjectRootPath: undefined -Info 165 [16:03:54.000] Projects: /user/username/projects/myproject/src/tsconfig.json -Info 165 [16:03:55.000] After ensureProjectForOpenFiles: -Info 166 [16:03:56.000] Project '/user/username/projects/myproject/src/tsconfig.json' (Configured) -Info 166 [16:03:57.000] Files (3) - -Info 166 [16:03:58.000] ----------------------------------------------- -Info 166 [16:03:59.000] Open files: -Info 166 [16:04:00.000] FileName: /user/username/projects/myproject/src/fileA.ts ProjectRootPath: undefined -Info 166 [16:04:01.000] Projects: /user/username/projects/myproject/src/tsconfig.json -Info 166 [16:04:02.000] got projects updated in background, updating diagnostics for /user/username/projects/myproject/src/fileA.ts -Info 167 [16:04:03.000] event: +Info 140 [00:03:24.000] Running: /user/username/projects/myproject/src/tsconfig.json +Info 141 [00:03:25.000] Starting updateGraphWorker: Project: /user/username/projects/myproject/src/tsconfig.json +Info 142 [00:03:26.000] File '/a/lib/package.json' does not exist according to earlier cached lookups. +Info 143 [00:03:27.000] File '/a/package.json' does not exist according to earlier cached lookups. +Info 144 [00:03:28.000] File '/package.json' does not exist according to earlier cached lookups. +Info 145 [00:03:29.000] File '/user/username/projects/myproject/src/package.json' does not exist according to earlier cached lookups. +Info 146 [00:03:30.000] File '/user/username/projects/myproject/package.json' does not exist. +Info 147 [00:03:31.000] File '/user/username/projects/package.json' does not exist. +Info 148 [00:03:32.000] File '/user/username/package.json' does not exist. +Info 149 [00:03:33.000] File '/user/package.json' does not exist. +Info 150 [00:03:34.000] File '/package.json' does not exist according to earlier cached lookups. +Info 151 [00:03:35.000] File '/user/username/projects/myproject/src/package.json' does not exist according to earlier cached lookups. +Info 152 [00:03:36.000] File '/user/username/projects/myproject/package.json' does not exist according to earlier cached lookups. +Info 153 [00:03:37.000] File '/user/username/projects/package.json' does not exist according to earlier cached lookups. +Info 154 [00:03:38.000] File '/user/username/package.json' does not exist according to earlier cached lookups. +Info 155 [00:03:39.000] File '/user/package.json' does not exist according to earlier cached lookups. +Info 156 [00:03:40.000] File '/package.json' does not exist according to earlier cached lookups. +Info 157 [00:03:41.000] File '/a/lib/package.json' does not exist according to earlier cached lookups. +Info 158 [00:03:42.000] File '/a/package.json' does not exist according to earlier cached lookups. +Info 159 [00:03:43.000] File '/package.json' does not exist according to earlier cached lookups. +Info 160 [00:03:44.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/package.json 2000 undefined Project: /user/username/projects/myproject/src/tsconfig.json WatchType: File location affecting resolution +Info 161 [00:03:45.000] Finishing updateGraphWorker: Project: /user/username/projects/myproject/src/tsconfig.json Version: 4 structureChanged: true structureIsReused:: SafeModules Elapsed:: *ms +Info 162 [00:03:46.000] Different program with same set of files +Info 163 [00:03:47.000] Running: *ensureProjectForOpenFiles* +Info 164 [00:03:48.000] Before ensureProjectForOpenFiles: +Info 165 [00:03:49.000] Project '/user/username/projects/myproject/src/tsconfig.json' (Configured) +Info 165 [00:03:50.000] Files (3) + +Info 165 [00:03:51.000] ----------------------------------------------- +Info 165 [00:03:52.000] Open files: +Info 165 [00:03:53.000] FileName: /user/username/projects/myproject/src/fileA.ts ProjectRootPath: undefined +Info 165 [00:03:54.000] Projects: /user/username/projects/myproject/src/tsconfig.json +Info 165 [00:03:55.000] After ensureProjectForOpenFiles: +Info 166 [00:03:56.000] Project '/user/username/projects/myproject/src/tsconfig.json' (Configured) +Info 166 [00:03:57.000] Files (3) + +Info 166 [00:03:58.000] ----------------------------------------------- +Info 166 [00:03:59.000] Open files: +Info 166 [00:04:00.000] FileName: /user/username/projects/myproject/src/fileA.ts ProjectRootPath: undefined +Info 166 [00:04:01.000] Projects: /user/username/projects/myproject/src/tsconfig.json +Info 166 [00:04:02.000] got projects updated in background, updating diagnostics for /user/username/projects/myproject/src/fileA.ts +Info 167 [00:04:03.000] event: {"seq":0,"type":"event","event":"projectsUpdatedInBackground","body":{"openFiles":["/user/username/projects/myproject/src/fileA.ts"]}} After running timeout callbacks @@ -1061,7 +1061,7 @@ FsWatchesRecursive:: /user/username/projects/myproject/src: {} -Info 168 [16:04:04.000] request: +Info 168 [00:04:04.000] request: { "command": "geterr", "arguments": { @@ -1125,7 +1125,7 @@ FsWatchesRecursive:: /user/username/projects/myproject/src: {} -Info 169 [16:04:05.000] response: +Info 169 [00:04:05.000] response: { "responseRequired": false } @@ -1155,7 +1155,7 @@ FsWatchesRecursive:: /user/username/projects/myproject/src: {} -Info 170 [16:04:06.000] event: +Info 170 [00:04:06.000] event: {"seq":0,"type":"event","event":"syntaxDiag","body":{"file":"/user/username/projects/myproject/src/fileA.ts","diagnostics":[]}} After checking timeout queue length (1) and running @@ -1209,7 +1209,7 @@ FsWatchesRecursive:: /user/username/projects/myproject/src: {} -Info 171 [16:04:07.000] event: +Info 171 [00:04:07.000] event: {"seq":0,"type":"event","event":"semanticDiag","body":{"file":"/user/username/projects/myproject/src/fileA.ts","diagnostics":[{"start":{"line":1,"offset":21},"end":{"line":1,"offset":34},"text":"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.\n To convert this file to an ECMAScript module, change its file extension to '.mts' or create a local package.json file with `{ \"type\": \"module\" }`.","code":1479,"category":"error"}]}} Before running immediate callbacks and checking length (1) @@ -1263,9 +1263,9 @@ FsWatchesRecursive:: /user/username/projects/myproject/src: {} -Info 172 [16:04:08.000] event: +Info 172 [00:04:08.000] event: {"seq":0,"type":"event","event":"suggestionDiag","body":{"file":"/user/username/projects/myproject/src/fileA.ts","diagnostics":[]}} -Info 173 [16:04:09.000] event: +Info 173 [00:04:09.000] event: {"seq":0,"type":"event","event":"requestCompleted","body":{"request_seq":3}} Before running immediate callbacks and checking length (1) @@ -1293,10 +1293,10 @@ FsWatchesRecursive:: /user/username/projects/myproject/src: {} -Info 174 [16:04:10.000] Modify package json file to without type module -Info 175 [16:04:13.000] FileWatcher:: Triggered with /user/username/projects/myproject/package.json 0:: WatchInfo: /user/username/projects/myproject/package.json 2000 undefined Project: /user/username/projects/myproject/src/tsconfig.json WatchType: File location affecting resolution -Info 176 [16:04:14.000] Scheduled: /user/username/projects/myproject/src/tsconfig.jsonFailedLookupInvalidation -Info 177 [16:04:15.000] Elapsed:: *ms FileWatcher:: Triggered with /user/username/projects/myproject/package.json 0:: WatchInfo: /user/username/projects/myproject/package.json 2000 undefined Project: /user/username/projects/myproject/src/tsconfig.json WatchType: File location affecting resolution +Info 174 [00:04:10.000] Modify package json file to without type module +Info 175 [00:04:13.000] FileWatcher:: Triggered with /user/username/projects/myproject/package.json 0:: WatchInfo: /user/username/projects/myproject/package.json 2000 undefined Project: /user/username/projects/myproject/src/tsconfig.json WatchType: File location affecting resolution +Info 176 [00:04:14.000] Scheduled: /user/username/projects/myproject/src/tsconfig.jsonFailedLookupInvalidation +Info 177 [00:04:15.000] Elapsed:: *ms FileWatcher:: Triggered with /user/username/projects/myproject/package.json 0:: WatchInfo: /user/username/projects/myproject/package.json 2000 undefined Project: /user/username/projects/myproject/src/tsconfig.json WatchType: File location affecting resolution Before running timeout callbacks //// [/user/username/projects/myproject/package.json] {"name":"app","version":"1.0.0"} @@ -1326,9 +1326,9 @@ FsWatchesRecursive:: /user/username/projects/myproject/src: {} -Info 178 [16:04:16.000] Running: /user/username/projects/myproject/src/tsconfig.jsonFailedLookupInvalidation -Info 179 [16:04:17.000] Scheduled: /user/username/projects/myproject/src/tsconfig.json -Info 180 [16:04:18.000] Scheduled: *ensureProjectForOpenFiles* +Info 178 [00:04:16.000] Running: /user/username/projects/myproject/src/tsconfig.jsonFailedLookupInvalidation +Info 179 [00:04:17.000] Scheduled: /user/username/projects/myproject/src/tsconfig.json +Info 180 [00:04:18.000] Scheduled: *ensureProjectForOpenFiles* After running timeout callbacks PolledWatches:: @@ -1381,52 +1381,52 @@ FsWatchesRecursive:: /user/username/projects/myproject/src: {} -Info 181 [16:04:19.000] Running: /user/username/projects/myproject/src/tsconfig.json -Info 182 [16:04:20.000] Starting updateGraphWorker: Project: /user/username/projects/myproject/src/tsconfig.json -Info 183 [16:04:21.000] File '/a/lib/package.json' does not exist according to earlier cached lookups. -Info 184 [16:04:22.000] File '/a/package.json' does not exist according to earlier cached lookups. -Info 185 [16:04:23.000] File '/package.json' does not exist according to earlier cached lookups. -Info 186 [16:04:24.000] File '/user/username/projects/myproject/src/package.json' does not exist according to earlier cached lookups. -Info 187 [16:04:25.000] Found 'package.json' at '/user/username/projects/myproject/package.json'. -Info 188 [16:04:26.000] 'package.json' does not have a 'typesVersions' field. -Info 189 [16:04:27.000] File '/user/username/projects/myproject/src/package.json' does not exist according to earlier cached lookups. -Info 190 [16:04:28.000] File '/user/username/projects/myproject/package.json' exists according to earlier cached lookups. -Info 191 [16:04:29.000] ======== Resolving module './fileB.mjs' from '/user/username/projects/myproject/src/fileA.ts'. ======== -Info 192 [16:04:30.000] Module resolution kind is not specified, using 'Node16'. -Info 193 [16:04:31.000] Loading module as file / folder, candidate module location '/user/username/projects/myproject/src/fileB.mjs', target file type 'TypeScript'. -Info 194 [16:04:32.000] File '/user/username/projects/myproject/src/fileB.mjs.ts' does not exist. -Info 195 [16:04:33.000] File '/user/username/projects/myproject/src/fileB.mjs.tsx' does not exist. -Info 196 [16:04:34.000] File '/user/username/projects/myproject/src/fileB.mjs.d.ts' does not exist. -Info 197 [16:04:35.000] File name '/user/username/projects/myproject/src/fileB.mjs' has a '.mjs' extension - stripping it. -Info 198 [16:04:36.000] File '/user/username/projects/myproject/src/fileB.mts' exist - use it as a name resolution result. -Info 199 [16:04:37.000] ======== Module name './fileB.mjs' was successfully resolved to '/user/username/projects/myproject/src/fileB.mts'. ======== -Info 200 [16:04:38.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/src 0 undefined Project: /user/username/projects/myproject/src/tsconfig.json WatchType: Failed Lookup Locations -Info 201 [16:04:39.000] 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 202 [16:04:40.000] File '/a/lib/package.json' does not exist according to earlier cached lookups. -Info 203 [16:04:41.000] File '/a/package.json' does not exist according to earlier cached lookups. -Info 204 [16:04:42.000] File '/package.json' does not exist according to earlier cached lookups. -Info 205 [16:04:43.000] FileWatcher:: Close:: WatchInfo: /user/username/projects/package.json 2000 undefined Project: /user/username/projects/myproject/src/tsconfig.json WatchType: File location affecting resolution -Info 206 [16:04:44.000] Finishing updateGraphWorker: Project: /user/username/projects/myproject/src/tsconfig.json Version: 5 structureChanged: true structureIsReused:: SafeModules Elapsed:: *ms -Info 207 [16:04:45.000] Different program with same set of files -Info 208 [16:04:46.000] Running: *ensureProjectForOpenFiles* -Info 209 [16:04:47.000] Before ensureProjectForOpenFiles: -Info 210 [16:04:48.000] Project '/user/username/projects/myproject/src/tsconfig.json' (Configured) -Info 210 [16:04:49.000] Files (3) - -Info 210 [16:04:50.000] ----------------------------------------------- -Info 210 [16:04:51.000] Open files: -Info 210 [16:04:52.000] FileName: /user/username/projects/myproject/src/fileA.ts ProjectRootPath: undefined -Info 210 [16:04:53.000] Projects: /user/username/projects/myproject/src/tsconfig.json -Info 210 [16:04:54.000] After ensureProjectForOpenFiles: -Info 211 [16:04:55.000] Project '/user/username/projects/myproject/src/tsconfig.json' (Configured) -Info 211 [16:04:56.000] Files (3) - -Info 211 [16:04:57.000] ----------------------------------------------- -Info 211 [16:04:58.000] Open files: -Info 211 [16:04:59.000] FileName: /user/username/projects/myproject/src/fileA.ts ProjectRootPath: undefined -Info 211 [16:05:00.000] Projects: /user/username/projects/myproject/src/tsconfig.json -Info 211 [16:05:01.000] got projects updated in background, updating diagnostics for /user/username/projects/myproject/src/fileA.ts -Info 212 [16:05:02.000] event: +Info 181 [00:04:19.000] Running: /user/username/projects/myproject/src/tsconfig.json +Info 182 [00:04:20.000] Starting updateGraphWorker: Project: /user/username/projects/myproject/src/tsconfig.json +Info 183 [00:04:21.000] File '/a/lib/package.json' does not exist according to earlier cached lookups. +Info 184 [00:04:22.000] File '/a/package.json' does not exist according to earlier cached lookups. +Info 185 [00:04:23.000] File '/package.json' does not exist according to earlier cached lookups. +Info 186 [00:04:24.000] File '/user/username/projects/myproject/src/package.json' does not exist according to earlier cached lookups. +Info 187 [00:04:25.000] Found 'package.json' at '/user/username/projects/myproject/package.json'. +Info 188 [00:04:26.000] 'package.json' does not have a 'typesVersions' field. +Info 189 [00:04:27.000] File '/user/username/projects/myproject/src/package.json' does not exist according to earlier cached lookups. +Info 190 [00:04:28.000] File '/user/username/projects/myproject/package.json' exists according to earlier cached lookups. +Info 191 [00:04:29.000] ======== Resolving module './fileB.mjs' from '/user/username/projects/myproject/src/fileA.ts'. ======== +Info 192 [00:04:30.000] Module resolution kind is not specified, using 'Node16'. +Info 193 [00:04:31.000] Loading module as file / folder, candidate module location '/user/username/projects/myproject/src/fileB.mjs', target file type 'TypeScript'. +Info 194 [00:04:32.000] File '/user/username/projects/myproject/src/fileB.mjs.ts' does not exist. +Info 195 [00:04:33.000] File '/user/username/projects/myproject/src/fileB.mjs.tsx' does not exist. +Info 196 [00:04:34.000] File '/user/username/projects/myproject/src/fileB.mjs.d.ts' does not exist. +Info 197 [00:04:35.000] File name '/user/username/projects/myproject/src/fileB.mjs' has a '.mjs' extension - stripping it. +Info 198 [00:04:36.000] File '/user/username/projects/myproject/src/fileB.mts' exist - use it as a name resolution result. +Info 199 [00:04:37.000] ======== Module name './fileB.mjs' was successfully resolved to '/user/username/projects/myproject/src/fileB.mts'. ======== +Info 200 [00:04:38.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/src 0 undefined Project: /user/username/projects/myproject/src/tsconfig.json WatchType: Failed Lookup Locations +Info 201 [00:04:39.000] 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 202 [00:04:40.000] File '/a/lib/package.json' does not exist according to earlier cached lookups. +Info 203 [00:04:41.000] File '/a/package.json' does not exist according to earlier cached lookups. +Info 204 [00:04:42.000] File '/package.json' does not exist according to earlier cached lookups. +Info 205 [00:04:43.000] FileWatcher:: Close:: WatchInfo: /user/username/projects/package.json 2000 undefined Project: /user/username/projects/myproject/src/tsconfig.json WatchType: File location affecting resolution +Info 206 [00:04:44.000] Finishing updateGraphWorker: Project: /user/username/projects/myproject/src/tsconfig.json Version: 5 structureChanged: true structureIsReused:: SafeModules Elapsed:: *ms +Info 207 [00:04:45.000] Different program with same set of files +Info 208 [00:04:46.000] Running: *ensureProjectForOpenFiles* +Info 209 [00:04:47.000] Before ensureProjectForOpenFiles: +Info 210 [00:04:48.000] Project '/user/username/projects/myproject/src/tsconfig.json' (Configured) +Info 210 [00:04:49.000] Files (3) + +Info 210 [00:04:50.000] ----------------------------------------------- +Info 210 [00:04:51.000] Open files: +Info 210 [00:04:52.000] FileName: /user/username/projects/myproject/src/fileA.ts ProjectRootPath: undefined +Info 210 [00:04:53.000] Projects: /user/username/projects/myproject/src/tsconfig.json +Info 210 [00:04:54.000] After ensureProjectForOpenFiles: +Info 211 [00:04:55.000] Project '/user/username/projects/myproject/src/tsconfig.json' (Configured) +Info 211 [00:04:56.000] Files (3) + +Info 211 [00:04:57.000] ----------------------------------------------- +Info 211 [00:04:58.000] Open files: +Info 211 [00:04:59.000] FileName: /user/username/projects/myproject/src/fileA.ts ProjectRootPath: undefined +Info 211 [00:05:00.000] Projects: /user/username/projects/myproject/src/tsconfig.json +Info 211 [00:05:01.000] got projects updated in background, updating diagnostics for /user/username/projects/myproject/src/fileA.ts +Info 212 [00:05:02.000] event: {"seq":0,"type":"event","event":"projectsUpdatedInBackground","body":{"openFiles":["/user/username/projects/myproject/src/fileA.ts"]}} After running timeout callbacks @@ -1454,7 +1454,7 @@ FsWatchesRecursive:: /user/username/projects/myproject/src: {} -Info 213 [16:05:03.000] request: +Info 213 [00:05:03.000] request: { "command": "geterr", "arguments": { @@ -1518,7 +1518,7 @@ FsWatchesRecursive:: /user/username/projects/myproject/src: {} -Info 214 [16:05:04.000] response: +Info 214 [00:05:04.000] response: { "responseRequired": false } @@ -1548,7 +1548,7 @@ FsWatchesRecursive:: /user/username/projects/myproject/src: {} -Info 215 [16:05:05.000] event: +Info 215 [00:05:05.000] event: {"seq":0,"type":"event","event":"syntaxDiag","body":{"file":"/user/username/projects/myproject/src/fileA.ts","diagnostics":[]}} After checking timeout queue length (1) and running @@ -1602,7 +1602,7 @@ FsWatchesRecursive:: /user/username/projects/myproject/src: {} -Info 216 [16:05:06.000] event: +Info 216 [00:05:06.000] event: {"seq":0,"type":"event","event":"semanticDiag","body":{"file":"/user/username/projects/myproject/src/fileA.ts","diagnostics":[{"start":{"line":1,"offset":21},"end":{"line":1,"offset":34},"text":"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.\n To convert this file to an ECMAScript module, change its file extension to '.mts', or add the field `\"type\": \"module\"` to '/user/username/projects/myproject/package.json'.","code":1479,"category":"error"}]}} Before running immediate callbacks and checking length (1) @@ -1656,9 +1656,9 @@ FsWatchesRecursive:: /user/username/projects/myproject/src: {} -Info 217 [16:05:07.000] event: +Info 217 [00:05:07.000] event: {"seq":0,"type":"event","event":"suggestionDiag","body":{"file":"/user/username/projects/myproject/src/fileA.ts","diagnostics":[]}} -Info 218 [16:05:08.000] event: +Info 218 [00:05:08.000] event: {"seq":0,"type":"event","event":"requestCompleted","body":{"request_seq":4}} Before running immediate callbacks and checking length (1) @@ -1686,10 +1686,10 @@ FsWatchesRecursive:: /user/username/projects/myproject/src: {} -Info 219 [16:05:09.000] Delete package.json -Info 220 [16:05:11.000] FileWatcher:: Triggered with /user/username/projects/myproject/package.json 2:: WatchInfo: /user/username/projects/myproject/package.json 2000 undefined Project: /user/username/projects/myproject/src/tsconfig.json WatchType: File location affecting resolution -Info 221 [16:05:12.000] Scheduled: /user/username/projects/myproject/src/tsconfig.jsonFailedLookupInvalidation -Info 222 [16:05:13.000] Elapsed:: *ms FileWatcher:: Triggered with /user/username/projects/myproject/package.json 2:: WatchInfo: /user/username/projects/myproject/package.json 2000 undefined Project: /user/username/projects/myproject/src/tsconfig.json WatchType: File location affecting resolution +Info 219 [00:05:09.000] Delete package.json +Info 220 [00:05:11.000] FileWatcher:: Triggered with /user/username/projects/myproject/package.json 2:: WatchInfo: /user/username/projects/myproject/package.json 2000 undefined Project: /user/username/projects/myproject/src/tsconfig.json WatchType: File location affecting resolution +Info 221 [00:05:12.000] Scheduled: /user/username/projects/myproject/src/tsconfig.jsonFailedLookupInvalidation +Info 222 [00:05:13.000] Elapsed:: *ms FileWatcher:: Triggered with /user/username/projects/myproject/package.json 2:: WatchInfo: /user/username/projects/myproject/package.json 2000 undefined Project: /user/username/projects/myproject/src/tsconfig.json WatchType: File location affecting resolution Before running timeout callbacks //// [/user/username/projects/myproject/package.json] deleted @@ -1717,9 +1717,9 @@ FsWatchesRecursive:: /user/username/projects/myproject/src: {} -Info 223 [16:05:14.000] Running: /user/username/projects/myproject/src/tsconfig.jsonFailedLookupInvalidation -Info 224 [16:05:15.000] Scheduled: /user/username/projects/myproject/src/tsconfig.json -Info 225 [16:05:16.000] Scheduled: *ensureProjectForOpenFiles* +Info 223 [00:05:14.000] Running: /user/username/projects/myproject/src/tsconfig.jsonFailedLookupInvalidation +Info 224 [00:05:15.000] Scheduled: /user/username/projects/myproject/src/tsconfig.json +Info 225 [00:05:16.000] Scheduled: *ensureProjectForOpenFiles* After running timeout callbacks PolledWatches:: @@ -1772,49 +1772,49 @@ FsWatchesRecursive:: /user/username/projects/myproject/src: {} -Info 226 [16:05:17.000] Running: /user/username/projects/myproject/src/tsconfig.json -Info 227 [16:05:18.000] Starting updateGraphWorker: Project: /user/username/projects/myproject/src/tsconfig.json -Info 228 [16:05:19.000] File '/a/lib/package.json' does not exist according to earlier cached lookups. -Info 229 [16:05:20.000] File '/a/package.json' does not exist according to earlier cached lookups. -Info 230 [16:05:21.000] File '/package.json' does not exist according to earlier cached lookups. -Info 231 [16:05:22.000] File '/user/username/projects/myproject/src/package.json' does not exist according to earlier cached lookups. -Info 232 [16:05:23.000] File '/user/username/projects/myproject/package.json' does not exist. -Info 233 [16:05:24.000] File '/user/username/projects/package.json' does not exist according to earlier cached lookups. -Info 234 [16:05:25.000] File '/user/username/package.json' does not exist according to earlier cached lookups. -Info 235 [16:05:26.000] File '/user/package.json' does not exist according to earlier cached lookups. -Info 236 [16:05:27.000] File '/package.json' does not exist according to earlier cached lookups. -Info 237 [16:05:28.000] File '/user/username/projects/myproject/src/package.json' does not exist according to earlier cached lookups. -Info 238 [16:05:29.000] File '/user/username/projects/myproject/package.json' does not exist according to earlier cached lookups. -Info 239 [16:05:30.000] File '/user/username/projects/package.json' does not exist according to earlier cached lookups. -Info 240 [16:05:31.000] File '/user/username/package.json' does not exist according to earlier cached lookups. -Info 241 [16:05:32.000] File '/user/package.json' does not exist according to earlier cached lookups. -Info 242 [16:05:33.000] File '/package.json' does not exist according to earlier cached lookups. -Info 243 [16:05:34.000] Reusing resolution of module './fileB.mjs' from '/user/username/projects/myproject/src/fileA.ts' of old program, it was successfully resolved to '/user/username/projects/myproject/src/fileB.mts'. -Info 244 [16:05:35.000] File '/a/lib/package.json' does not exist according to earlier cached lookups. -Info 245 [16:05:36.000] File '/a/package.json' does not exist according to earlier cached lookups. -Info 246 [16:05:37.000] File '/package.json' does not exist according to earlier cached lookups. -Info 247 [16:05:38.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/package.json 2000 undefined Project: /user/username/projects/myproject/src/tsconfig.json WatchType: File location affecting resolution -Info 248 [16:05:39.000] Finishing updateGraphWorker: Project: /user/username/projects/myproject/src/tsconfig.json Version: 6 structureChanged: true structureIsReused:: SafeModules Elapsed:: *ms -Info 249 [16:05:40.000] Different program with same set of files -Info 250 [16:05:41.000] Running: *ensureProjectForOpenFiles* -Info 251 [16:05:42.000] Before ensureProjectForOpenFiles: -Info 252 [16:05:43.000] Project '/user/username/projects/myproject/src/tsconfig.json' (Configured) -Info 252 [16:05:44.000] Files (3) - -Info 252 [16:05:45.000] ----------------------------------------------- -Info 252 [16:05:46.000] Open files: -Info 252 [16:05:47.000] FileName: /user/username/projects/myproject/src/fileA.ts ProjectRootPath: undefined -Info 252 [16:05:48.000] Projects: /user/username/projects/myproject/src/tsconfig.json -Info 252 [16:05:49.000] After ensureProjectForOpenFiles: -Info 253 [16:05:50.000] Project '/user/username/projects/myproject/src/tsconfig.json' (Configured) -Info 253 [16:05:51.000] Files (3) - -Info 253 [16:05:52.000] ----------------------------------------------- -Info 253 [16:05:53.000] Open files: -Info 253 [16:05:54.000] FileName: /user/username/projects/myproject/src/fileA.ts ProjectRootPath: undefined -Info 253 [16:05:55.000] Projects: /user/username/projects/myproject/src/tsconfig.json -Info 253 [16:05:56.000] got projects updated in background, updating diagnostics for /user/username/projects/myproject/src/fileA.ts -Info 254 [16:05:57.000] event: +Info 226 [00:05:17.000] Running: /user/username/projects/myproject/src/tsconfig.json +Info 227 [00:05:18.000] Starting updateGraphWorker: Project: /user/username/projects/myproject/src/tsconfig.json +Info 228 [00:05:19.000] File '/a/lib/package.json' does not exist according to earlier cached lookups. +Info 229 [00:05:20.000] File '/a/package.json' does not exist according to earlier cached lookups. +Info 230 [00:05:21.000] File '/package.json' does not exist according to earlier cached lookups. +Info 231 [00:05:22.000] File '/user/username/projects/myproject/src/package.json' does not exist according to earlier cached lookups. +Info 232 [00:05:23.000] File '/user/username/projects/myproject/package.json' does not exist. +Info 233 [00:05:24.000] File '/user/username/projects/package.json' does not exist according to earlier cached lookups. +Info 234 [00:05:25.000] File '/user/username/package.json' does not exist according to earlier cached lookups. +Info 235 [00:05:26.000] File '/user/package.json' does not exist according to earlier cached lookups. +Info 236 [00:05:27.000] File '/package.json' does not exist according to earlier cached lookups. +Info 237 [00:05:28.000] File '/user/username/projects/myproject/src/package.json' does not exist according to earlier cached lookups. +Info 238 [00:05:29.000] File '/user/username/projects/myproject/package.json' does not exist according to earlier cached lookups. +Info 239 [00:05:30.000] File '/user/username/projects/package.json' does not exist according to earlier cached lookups. +Info 240 [00:05:31.000] File '/user/username/package.json' does not exist according to earlier cached lookups. +Info 241 [00:05:32.000] File '/user/package.json' does not exist according to earlier cached lookups. +Info 242 [00:05:33.000] File '/package.json' does not exist according to earlier cached lookups. +Info 243 [00:05:34.000] Reusing resolution of module './fileB.mjs' from '/user/username/projects/myproject/src/fileA.ts' of old program, it was successfully resolved to '/user/username/projects/myproject/src/fileB.mts'. +Info 244 [00:05:35.000] File '/a/lib/package.json' does not exist according to earlier cached lookups. +Info 245 [00:05:36.000] File '/a/package.json' does not exist according to earlier cached lookups. +Info 246 [00:05:37.000] File '/package.json' does not exist according to earlier cached lookups. +Info 247 [00:05:38.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/package.json 2000 undefined Project: /user/username/projects/myproject/src/tsconfig.json WatchType: File location affecting resolution +Info 248 [00:05:39.000] Finishing updateGraphWorker: Project: /user/username/projects/myproject/src/tsconfig.json Version: 6 structureChanged: true structureIsReused:: SafeModules Elapsed:: *ms +Info 249 [00:05:40.000] Different program with same set of files +Info 250 [00:05:41.000] Running: *ensureProjectForOpenFiles* +Info 251 [00:05:42.000] Before ensureProjectForOpenFiles: +Info 252 [00:05:43.000] Project '/user/username/projects/myproject/src/tsconfig.json' (Configured) +Info 252 [00:05:44.000] Files (3) + +Info 252 [00:05:45.000] ----------------------------------------------- +Info 252 [00:05:46.000] Open files: +Info 252 [00:05:47.000] FileName: /user/username/projects/myproject/src/fileA.ts ProjectRootPath: undefined +Info 252 [00:05:48.000] Projects: /user/username/projects/myproject/src/tsconfig.json +Info 252 [00:05:49.000] After ensureProjectForOpenFiles: +Info 253 [00:05:50.000] Project '/user/username/projects/myproject/src/tsconfig.json' (Configured) +Info 253 [00:05:51.000] Files (3) + +Info 253 [00:05:52.000] ----------------------------------------------- +Info 253 [00:05:53.000] Open files: +Info 253 [00:05:54.000] FileName: /user/username/projects/myproject/src/fileA.ts ProjectRootPath: undefined +Info 253 [00:05:55.000] Projects: /user/username/projects/myproject/src/tsconfig.json +Info 253 [00:05:56.000] got projects updated in background, updating diagnostics for /user/username/projects/myproject/src/fileA.ts +Info 254 [00:05:57.000] event: {"seq":0,"type":"event","event":"projectsUpdatedInBackground","body":{"openFiles":["/user/username/projects/myproject/src/fileA.ts"]}} After running timeout callbacks @@ -1844,7 +1844,7 @@ FsWatchesRecursive:: /user/username/projects/myproject/src: {} -Info 255 [16:05:58.000] request: +Info 255 [00:05:58.000] request: { "command": "geterr", "arguments": { @@ -1912,7 +1912,7 @@ FsWatchesRecursive:: /user/username/projects/myproject/src: {} -Info 256 [16:05:59.000] response: +Info 256 [00:05:59.000] response: { "responseRequired": false } @@ -1944,7 +1944,7 @@ FsWatchesRecursive:: /user/username/projects/myproject/src: {} -Info 257 [16:06:00.000] event: +Info 257 [00:06:00.000] event: {"seq":0,"type":"event","event":"syntaxDiag","body":{"file":"/user/username/projects/myproject/src/fileA.ts","diagnostics":[]}} After checking timeout queue length (1) and running @@ -2002,7 +2002,7 @@ FsWatchesRecursive:: /user/username/projects/myproject/src: {} -Info 258 [16:06:01.000] event: +Info 258 [00:06:01.000] event: {"seq":0,"type":"event","event":"semanticDiag","body":{"file":"/user/username/projects/myproject/src/fileA.ts","diagnostics":[{"start":{"line":1,"offset":21},"end":{"line":1,"offset":34},"text":"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.\n To convert this file to an ECMAScript module, change its file extension to '.mts' or create a local package.json file with `{ \"type\": \"module\" }`.","code":1479,"category":"error"}]}} Before running immediate callbacks and checking length (1) @@ -2060,9 +2060,9 @@ FsWatchesRecursive:: /user/username/projects/myproject/src: {} -Info 259 [16:06:02.000] event: +Info 259 [00:06:02.000] event: {"seq":0,"type":"event","event":"suggestionDiag","body":{"file":"/user/username/projects/myproject/src/fileA.ts","diagnostics":[]}} -Info 260 [16:06:03.000] event: +Info 260 [00:06:03.000] event: {"seq":0,"type":"event","event":"requestCompleted","body":{"request_seq":5}} Before running immediate callbacks and checking length (1) 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 4cb5210b017ed..bec6bc47b71a9 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 @@ -1,5 +1,5 @@ -Info 0 [16:00:27.000] Provided types map file "/a/lib/typesMap.json" doesn't exist -Info 1 [16:00:28.000] request: +Info 0 [00:00:27.000] Provided types map file "/a/lib/typesMap.json" doesn't exist +Info 1 [00:00:28.000] request: { "seq": 0, "type": "request", @@ -45,13 +45,13 @@ FsWatches:: FsWatchesRecursive:: -Info 2 [16:00:29.000] Search path: /user/username/projects/myproject/src -Info 3 [16:00:30.000] For info: /user/username/projects/myproject/src/fileA.ts :: Config file name: /user/username/projects/myproject/src/tsconfig.json -Info 4 [16:00:31.000] Creating configuration project /user/username/projects/myproject/src/tsconfig.json -Info 5 [16:00:32.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/src/tsconfig.json 2000 undefined Project: /user/username/projects/myproject/src/tsconfig.json WatchType: Config file -Info 6 [16:00:33.000] event: +Info 2 [00:00:29.000] Search path: /user/username/projects/myproject/src +Info 3 [00:00:30.000] For info: /user/username/projects/myproject/src/fileA.ts :: Config file name: /user/username/projects/myproject/src/tsconfig.json +Info 4 [00:00:31.000] Creating configuration project /user/username/projects/myproject/src/tsconfig.json +Info 5 [00:00:32.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/src/tsconfig.json 2000 undefined Project: /user/username/projects/myproject/src/tsconfig.json WatchType: Config file +Info 6 [00:00:33.000] event: {"seq":0,"type":"event","event":"projectLoadingStart","body":{"projectName":"/user/username/projects/myproject/src/tsconfig.json","reason":"Creating possible configured project for /user/username/projects/myproject/src/fileA.ts to open"}} -Info 7 [16:00:34.000] Config: /user/username/projects/myproject/src/tsconfig.json : { +Info 7 [00:00:34.000] Config: /user/username/projects/myproject/src/tsconfig.json : { "rootNames": [ "/user/username/projects/myproject/src/fileA.ts", "/user/username/projects/myproject/src/fileB.mts" @@ -64,38 +64,38 @@ Info 7 [16:00:34.000] Config: /user/username/projects/myproject/src/tsconfig. "configFilePath": "/user/username/projects/myproject/src/tsconfig.json" } } -Info 8 [16:00:35.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/src 1 undefined Config: /user/username/projects/myproject/src/tsconfig.json WatchType: Wild card directory -Info 9 [16:00:36.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/src 1 undefined Config: /user/username/projects/myproject/src/tsconfig.json WatchType: Wild card directory -Info 10 [16:00:37.000] Plugins were requested but not running in environment that supports 'require'. Nothing will be loaded -Info 11 [16:00:38.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/src/fileB.mts 500 undefined WatchType: Closed Script info -Info 12 [16:00:39.000] Starting updateGraphWorker: Project: /user/username/projects/myproject/src/tsconfig.json -Info 13 [16:00:40.000] File '/user/username/projects/myproject/src/package.json' does not exist. -Info 14 [16:00:41.000] Found 'package.json' at '/user/username/projects/myproject/package.json'. -Info 15 [16:00:42.000] 'package.json' does not have a 'typesVersions' field. -Info 16 [16:00:43.000] ======== Resolving module './fileB.mjs' from '/user/username/projects/myproject/src/fileA.ts'. ======== -Info 17 [16:00:44.000] Module resolution kind is not specified, using 'Node16'. -Info 18 [16:00:45.000] Loading module as file / folder, candidate module location '/user/username/projects/myproject/src/fileB.mjs', target file type 'TypeScript'. -Info 19 [16:00:46.000] File '/user/username/projects/myproject/src/fileB.mjs.ts' does not exist. -Info 20 [16:00:47.000] File '/user/username/projects/myproject/src/fileB.mjs.tsx' does not exist. -Info 21 [16:00:48.000] File '/user/username/projects/myproject/src/fileB.mjs.d.ts' does not exist. -Info 22 [16:00:49.000] File name '/user/username/projects/myproject/src/fileB.mjs' has a '.mjs' extension - stripping it. -Info 23 [16:00:50.000] File '/user/username/projects/myproject/src/fileB.mts' exist - use it as a name resolution result. -Info 24 [16:00:51.000] ======== Module name './fileB.mjs' was successfully resolved to '/user/username/projects/myproject/src/fileB.mts'. ======== -Info 25 [16:00:52.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/src 0 undefined Project: /user/username/projects/myproject/src/tsconfig.json WatchType: Failed Lookup Locations -Info 26 [16:00:53.000] 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 27 [16:00:54.000] File '/a/lib/package.json' does not exist. -Info 28 [16:00:55.000] File '/a/package.json' does not exist. -Info 29 [16:00:56.000] File '/package.json' does not exist. -Info 30 [16:00:57.000] FileWatcher:: Added:: WatchInfo: /a/lib/lib.es2016.full.d.ts 500 undefined WatchType: Closed Script info -Info 31 [16:00:58.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/src/package.json 2000 undefined Project: /user/username/projects/myproject/src/tsconfig.json WatchType: File location affecting resolution -Info 32 [16:00:59.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/package.json 2000 undefined Project: /user/username/projects/myproject/src/tsconfig.json WatchType: File location affecting resolution -Info 33 [16:01:00.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/src/node_modules/@types 1 undefined Project: /user/username/projects/myproject/src/tsconfig.json WatchType: Type roots -Info 34 [16:01:01.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/src/node_modules/@types 1 undefined Project: /user/username/projects/myproject/src/tsconfig.json WatchType: Type roots -Info 35 [16:01:02.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/src/tsconfig.json WatchType: Type roots -Info 36 [16:01:03.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/src/tsconfig.json WatchType: Type roots -Info 37 [16:01:04.000] Finishing updateGraphWorker: Project: /user/username/projects/myproject/src/tsconfig.json Version: 1 structureChanged: true structureIsReused:: Not Elapsed:: *ms -Info 38 [16:01:05.000] Project '/user/username/projects/myproject/src/tsconfig.json' (Configured) -Info 39 [16:01:06.000] Files (3) +Info 8 [00:00:35.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/src 1 undefined Config: /user/username/projects/myproject/src/tsconfig.json WatchType: Wild card directory +Info 9 [00:00:36.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/src 1 undefined Config: /user/username/projects/myproject/src/tsconfig.json WatchType: Wild card directory +Info 10 [00:00:37.000] Plugins were requested but not running in environment that supports 'require'. Nothing will be loaded +Info 11 [00:00:38.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/src/fileB.mts 500 undefined WatchType: Closed Script info +Info 12 [00:00:39.000] Starting updateGraphWorker: Project: /user/username/projects/myproject/src/tsconfig.json +Info 13 [00:00:40.000] File '/user/username/projects/myproject/src/package.json' does not exist. +Info 14 [00:00:41.000] Found 'package.json' at '/user/username/projects/myproject/package.json'. +Info 15 [00:00:42.000] 'package.json' does not have a 'typesVersions' field. +Info 16 [00:00:43.000] ======== Resolving module './fileB.mjs' from '/user/username/projects/myproject/src/fileA.ts'. ======== +Info 17 [00:00:44.000] Module resolution kind is not specified, using 'Node16'. +Info 18 [00:00:45.000] Loading module as file / folder, candidate module location '/user/username/projects/myproject/src/fileB.mjs', target file type 'TypeScript'. +Info 19 [00:00:46.000] File '/user/username/projects/myproject/src/fileB.mjs.ts' does not exist. +Info 20 [00:00:47.000] File '/user/username/projects/myproject/src/fileB.mjs.tsx' does not exist. +Info 21 [00:00:48.000] File '/user/username/projects/myproject/src/fileB.mjs.d.ts' does not exist. +Info 22 [00:00:49.000] File name '/user/username/projects/myproject/src/fileB.mjs' has a '.mjs' extension - stripping it. +Info 23 [00:00:50.000] File '/user/username/projects/myproject/src/fileB.mts' exist - use it as a name resolution result. +Info 24 [00:00:51.000] ======== Module name './fileB.mjs' was successfully resolved to '/user/username/projects/myproject/src/fileB.mts'. ======== +Info 25 [00:00:52.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/src 0 undefined Project: /user/username/projects/myproject/src/tsconfig.json WatchType: Failed Lookup Locations +Info 26 [00:00:53.000] 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 27 [00:00:54.000] File '/a/lib/package.json' does not exist. +Info 28 [00:00:55.000] File '/a/package.json' does not exist. +Info 29 [00:00:56.000] File '/package.json' does not exist. +Info 30 [00:00:57.000] FileWatcher:: Added:: WatchInfo: /a/lib/lib.es2016.full.d.ts 500 undefined WatchType: Closed Script info +Info 31 [00:00:58.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/src/package.json 2000 undefined Project: /user/username/projects/myproject/src/tsconfig.json WatchType: File location affecting resolution +Info 32 [00:00:59.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/package.json 2000 undefined Project: /user/username/projects/myproject/src/tsconfig.json WatchType: File location affecting resolution +Info 33 [00:01:00.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/src/node_modules/@types 1 undefined Project: /user/username/projects/myproject/src/tsconfig.json WatchType: Type roots +Info 34 [00:01:01.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/src/node_modules/@types 1 undefined Project: /user/username/projects/myproject/src/tsconfig.json WatchType: Type roots +Info 35 [00:01:02.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/src/tsconfig.json WatchType: Type roots +Info 36 [00:01:03.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/src/tsconfig.json WatchType: Type roots +Info 37 [00:01:04.000] Finishing updateGraphWorker: Project: /user/username/projects/myproject/src/tsconfig.json Version: 1 structureChanged: true structureIsReused:: Not Elapsed:: *ms +Info 38 [00:01:05.000] Project '/user/username/projects/myproject/src/tsconfig.json' (Configured) +Info 39 [00:01:06.000] Files (3) /a/lib/lib.es2016.full.d.ts /user/username/projects/myproject/src/fileB.mts /user/username/projects/myproject/src/fileA.ts @@ -110,21 +110,21 @@ Info 39 [16:01:06.000] Files (3) Matched by default include pattern '**/*' File is CommonJS module because '../package.json' does not have field "type" -Info 40 [16:01:07.000] ----------------------------------------------- -Info 41 [16:01:08.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/package.json 250 undefined WatchType: package.json file -Info 42 [16:01:09.000] event: +Info 40 [00:01:07.000] ----------------------------------------------- +Info 41 [00:01:08.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/package.json 250 undefined WatchType: package.json file +Info 42 [00:01:09.000] event: {"seq":0,"type":"event","event":"projectLoadingFinish","body":{"projectName":"/user/username/projects/myproject/src/tsconfig.json"}} -Info 43 [16:01:10.000] event: +Info 43 [00:01:10.000] event: {"seq":0,"type":"event","event":"telemetry","body":{"telemetryEventName":"projectInfo","payload":{"projectId":"f026568af42c61ce0537de8ee0fa07c9359a76dcfb046248ed49dc76c91e4a37","fileStats":{"js":0,"jsSize":0,"jsx":0,"jsxSize":0,"ts":2,"tsSize":68,"tsx":0,"tsxSize":0,"dts":1,"dtsSize":334,"deferred":0,"deferredSize":0},"compilerOptions":{"target":"es2016","module":"node16","outDir":"","traceResolution":true},"typeAcquisition":{"enable":false,"include":false,"exclude":false},"extends":false,"files":false,"include":false,"exclude":false,"compileOnSave":false,"configFileName":"tsconfig.json","projectType":"configured","languageServiceEnabled":true,"version":"FakeVersion"}}} -Info 44 [16:01:11.000] event: +Info 44 [00:01:11.000] event: {"seq":0,"type":"event","event":"configFileDiag","body":{"triggerFile":"/user/username/projects/myproject/src/fileA.ts","configFile":"/user/username/projects/myproject/src/tsconfig.json","diagnostics":[]}} -Info 45 [16:01:12.000] Project '/user/username/projects/myproject/src/tsconfig.json' (Configured) -Info 45 [16:01:13.000] Files (3) +Info 45 [00:01:12.000] Project '/user/username/projects/myproject/src/tsconfig.json' (Configured) +Info 45 [00:01:13.000] Files (3) -Info 45 [16:01:14.000] ----------------------------------------------- -Info 45 [16:01:15.000] Open files: -Info 45 [16:01:16.000] FileName: /user/username/projects/myproject/src/fileA.ts ProjectRootPath: undefined -Info 45 [16:01:17.000] Projects: /user/username/projects/myproject/src/tsconfig.json +Info 45 [00:01:14.000] ----------------------------------------------- +Info 45 [00:01:15.000] Open files: +Info 45 [00:01:16.000] FileName: /user/username/projects/myproject/src/fileA.ts ProjectRootPath: undefined +Info 45 [00:01:17.000] Projects: /user/username/projects/myproject/src/tsconfig.json After request PolledWatches:: @@ -151,16 +151,16 @@ FsWatchesRecursive:: /user/username/projects/myproject/src: {} -Info 45 [16:01:18.000] response: +Info 45 [00:01:18.000] response: { "responseRequired": false } -Info 46 [16:01:19.000] Modify package json file to add type module -Info 47 [16:01:23.000] FileWatcher:: Triggered with /user/username/projects/myproject/package.json 1:: WatchInfo: /user/username/projects/myproject/package.json 2000 undefined Project: /user/username/projects/myproject/src/tsconfig.json WatchType: File location affecting resolution -Info 48 [16:01:24.000] Scheduled: /user/username/projects/myproject/src/tsconfig.jsonFailedLookupInvalidation -Info 49 [16:01:25.000] Elapsed:: *ms FileWatcher:: Triggered with /user/username/projects/myproject/package.json 1:: WatchInfo: /user/username/projects/myproject/package.json 2000 undefined Project: /user/username/projects/myproject/src/tsconfig.json WatchType: File location affecting resolution -Info 50 [16:01:26.000] FileWatcher:: Triggered with /user/username/projects/myproject/package.json 1:: WatchInfo: /user/username/projects/myproject/package.json 250 undefined WatchType: package.json file -Info 51 [16:01:27.000] Elapsed:: *ms FileWatcher:: Triggered with /user/username/projects/myproject/package.json 1:: WatchInfo: /user/username/projects/myproject/package.json 250 undefined WatchType: package.json file +Info 46 [00:01:19.000] Modify package json file to add type module +Info 47 [00:01:23.000] FileWatcher:: Triggered with /user/username/projects/myproject/package.json 1:: WatchInfo: /user/username/projects/myproject/package.json 2000 undefined Project: /user/username/projects/myproject/src/tsconfig.json WatchType: File location affecting resolution +Info 48 [00:01:24.000] Scheduled: /user/username/projects/myproject/src/tsconfig.jsonFailedLookupInvalidation +Info 49 [00:01:25.000] Elapsed:: *ms FileWatcher:: Triggered with /user/username/projects/myproject/package.json 1:: WatchInfo: /user/username/projects/myproject/package.json 2000 undefined Project: /user/username/projects/myproject/src/tsconfig.json WatchType: File location affecting resolution +Info 50 [00:01:26.000] FileWatcher:: Triggered with /user/username/projects/myproject/package.json 1:: WatchInfo: /user/username/projects/myproject/package.json 250 undefined WatchType: package.json file +Info 51 [00:01:27.000] Elapsed:: *ms FileWatcher:: Triggered with /user/username/projects/myproject/package.json 1:: WatchInfo: /user/username/projects/myproject/package.json 250 undefined WatchType: package.json file Before running timeout callbacks //// [/user/username/projects/myproject/package.json] {"name":"app","version":"1.0.0","type":"module"} @@ -190,9 +190,9 @@ FsWatchesRecursive:: /user/username/projects/myproject/src: {} -Info 52 [16:01:28.000] Running: /user/username/projects/myproject/src/tsconfig.jsonFailedLookupInvalidation -Info 53 [16:01:29.000] Scheduled: /user/username/projects/myproject/src/tsconfig.json -Info 54 [16:01:30.000] Scheduled: *ensureProjectForOpenFiles* +Info 52 [00:01:28.000] Running: /user/username/projects/myproject/src/tsconfig.jsonFailedLookupInvalidation +Info 53 [00:01:29.000] Scheduled: /user/username/projects/myproject/src/tsconfig.json +Info 54 [00:01:30.000] Scheduled: *ensureProjectForOpenFiles* After running timeout callbacks PolledWatches:: @@ -245,48 +245,48 @@ FsWatchesRecursive:: /user/username/projects/myproject/src: {} -Info 55 [16:01:31.000] Running: /user/username/projects/myproject/src/tsconfig.json -Info 56 [16:01:32.000] Starting updateGraphWorker: Project: /user/username/projects/myproject/src/tsconfig.json -Info 57 [16:01:33.000] File '/a/lib/package.json' does not exist according to earlier cached lookups. -Info 58 [16:01:34.000] File '/a/package.json' does not exist according to earlier cached lookups. -Info 59 [16:01:35.000] File '/package.json' does not exist according to earlier cached lookups. -Info 60 [16:01:36.000] File '/user/username/projects/myproject/src/package.json' does not exist according to earlier cached lookups. -Info 61 [16:01:37.000] Found 'package.json' at '/user/username/projects/myproject/package.json'. -Info 62 [16:01:38.000] 'package.json' does not have a 'typesVersions' field. -Info 63 [16:01:39.000] File '/user/username/projects/myproject/src/package.json' does not exist according to earlier cached lookups. -Info 64 [16:01:40.000] File '/user/username/projects/myproject/package.json' exists according to earlier cached lookups. -Info 65 [16:01:41.000] ======== Resolving module './fileB.mjs' from '/user/username/projects/myproject/src/fileA.ts'. ======== -Info 66 [16:01:42.000] Module resolution kind is not specified, using 'Node16'. -Info 67 [16:01:43.000] Loading module as file / folder, candidate module location '/user/username/projects/myproject/src/fileB.mjs', target file type 'TypeScript'. -Info 68 [16:01:44.000] File name '/user/username/projects/myproject/src/fileB.mjs' has a '.mjs' extension - stripping it. -Info 69 [16:01:45.000] File '/user/username/projects/myproject/src/fileB.mts' exist - use it as a name resolution result. -Info 70 [16:01:46.000] ======== Module name './fileB.mjs' was successfully resolved to '/user/username/projects/myproject/src/fileB.mts'. ======== -Info 71 [16:01:47.000] File '/a/lib/package.json' does not exist according to earlier cached lookups. -Info 72 [16:01:48.000] File '/a/package.json' does not exist according to earlier cached lookups. -Info 73 [16:01:49.000] File '/package.json' does not exist according to earlier cached lookups. -Info 74 [16:01:50.000] DirectoryWatcher:: Close:: WatchInfo: /user/username/projects/myproject/src 0 undefined Project: /user/username/projects/myproject/src/tsconfig.json WatchType: Failed Lookup Locations -Info 75 [16:01:51.000] Elapsed:: *ms DirectoryWatcher:: Close:: WatchInfo: /user/username/projects/myproject/src 0 undefined Project: /user/username/projects/myproject/src/tsconfig.json WatchType: Failed Lookup Locations -Info 76 [16:01:52.000] Finishing updateGraphWorker: Project: /user/username/projects/myproject/src/tsconfig.json Version: 2 structureChanged: true structureIsReused:: SafeModules Elapsed:: *ms -Info 77 [16:01:53.000] Different program with same set of files -Info 78 [16:01:54.000] Running: *ensureProjectForOpenFiles* -Info 79 [16:01:55.000] Before ensureProjectForOpenFiles: -Info 80 [16:01:56.000] Project '/user/username/projects/myproject/src/tsconfig.json' (Configured) -Info 80 [16:01:57.000] Files (3) - -Info 80 [16:01:58.000] ----------------------------------------------- -Info 80 [16:01:59.000] Open files: -Info 80 [16:02:00.000] FileName: /user/username/projects/myproject/src/fileA.ts ProjectRootPath: undefined -Info 80 [16:02:01.000] Projects: /user/username/projects/myproject/src/tsconfig.json -Info 80 [16:02:02.000] After ensureProjectForOpenFiles: -Info 81 [16:02:03.000] Project '/user/username/projects/myproject/src/tsconfig.json' (Configured) -Info 81 [16:02:04.000] Files (3) - -Info 81 [16:02:05.000] ----------------------------------------------- -Info 81 [16:02:06.000] Open files: -Info 81 [16:02:07.000] FileName: /user/username/projects/myproject/src/fileA.ts ProjectRootPath: undefined -Info 81 [16:02:08.000] Projects: /user/username/projects/myproject/src/tsconfig.json -Info 81 [16:02:09.000] got projects updated in background, updating diagnostics for /user/username/projects/myproject/src/fileA.ts -Info 82 [16:02:10.000] event: +Info 55 [00:01:31.000] Running: /user/username/projects/myproject/src/tsconfig.json +Info 56 [00:01:32.000] Starting updateGraphWorker: Project: /user/username/projects/myproject/src/tsconfig.json +Info 57 [00:01:33.000] File '/a/lib/package.json' does not exist according to earlier cached lookups. +Info 58 [00:01:34.000] File '/a/package.json' does not exist according to earlier cached lookups. +Info 59 [00:01:35.000] File '/package.json' does not exist according to earlier cached lookups. +Info 60 [00:01:36.000] File '/user/username/projects/myproject/src/package.json' does not exist according to earlier cached lookups. +Info 61 [00:01:37.000] Found 'package.json' at '/user/username/projects/myproject/package.json'. +Info 62 [00:01:38.000] 'package.json' does not have a 'typesVersions' field. +Info 63 [00:01:39.000] File '/user/username/projects/myproject/src/package.json' does not exist according to earlier cached lookups. +Info 64 [00:01:40.000] File '/user/username/projects/myproject/package.json' exists according to earlier cached lookups. +Info 65 [00:01:41.000] ======== Resolving module './fileB.mjs' from '/user/username/projects/myproject/src/fileA.ts'. ======== +Info 66 [00:01:42.000] Module resolution kind is not specified, using 'Node16'. +Info 67 [00:01:43.000] Loading module as file / folder, candidate module location '/user/username/projects/myproject/src/fileB.mjs', target file type 'TypeScript'. +Info 68 [00:01:44.000] File name '/user/username/projects/myproject/src/fileB.mjs' has a '.mjs' extension - stripping it. +Info 69 [00:01:45.000] File '/user/username/projects/myproject/src/fileB.mts' exist - use it as a name resolution result. +Info 70 [00:01:46.000] ======== Module name './fileB.mjs' was successfully resolved to '/user/username/projects/myproject/src/fileB.mts'. ======== +Info 71 [00:01:47.000] File '/a/lib/package.json' does not exist according to earlier cached lookups. +Info 72 [00:01:48.000] File '/a/package.json' does not exist according to earlier cached lookups. +Info 73 [00:01:49.000] File '/package.json' does not exist according to earlier cached lookups. +Info 74 [00:01:50.000] DirectoryWatcher:: Close:: WatchInfo: /user/username/projects/myproject/src 0 undefined Project: /user/username/projects/myproject/src/tsconfig.json WatchType: Failed Lookup Locations +Info 75 [00:01:51.000] Elapsed:: *ms DirectoryWatcher:: Close:: WatchInfo: /user/username/projects/myproject/src 0 undefined Project: /user/username/projects/myproject/src/tsconfig.json WatchType: Failed Lookup Locations +Info 76 [00:01:52.000] Finishing updateGraphWorker: Project: /user/username/projects/myproject/src/tsconfig.json Version: 2 structureChanged: true structureIsReused:: SafeModules Elapsed:: *ms +Info 77 [00:01:53.000] Different program with same set of files +Info 78 [00:01:54.000] Running: *ensureProjectForOpenFiles* +Info 79 [00:01:55.000] Before ensureProjectForOpenFiles: +Info 80 [00:01:56.000] Project '/user/username/projects/myproject/src/tsconfig.json' (Configured) +Info 80 [00:01:57.000] Files (3) + +Info 80 [00:01:58.000] ----------------------------------------------- +Info 80 [00:01:59.000] Open files: +Info 80 [00:02:00.000] FileName: /user/username/projects/myproject/src/fileA.ts ProjectRootPath: undefined +Info 80 [00:02:01.000] Projects: /user/username/projects/myproject/src/tsconfig.json +Info 80 [00:02:02.000] After ensureProjectForOpenFiles: +Info 81 [00:02:03.000] Project '/user/username/projects/myproject/src/tsconfig.json' (Configured) +Info 81 [00:02:04.000] Files (3) + +Info 81 [00:02:05.000] ----------------------------------------------- +Info 81 [00:02:06.000] Open files: +Info 81 [00:02:07.000] FileName: /user/username/projects/myproject/src/fileA.ts ProjectRootPath: undefined +Info 81 [00:02:08.000] Projects: /user/username/projects/myproject/src/tsconfig.json +Info 81 [00:02:09.000] got projects updated in background, updating diagnostics for /user/username/projects/myproject/src/fileA.ts +Info 82 [00:02:10.000] event: {"seq":0,"type":"event","event":"projectsUpdatedInBackground","body":{"openFiles":["/user/username/projects/myproject/src/fileA.ts"]}} After running timeout callbacks @@ -312,7 +312,7 @@ FsWatchesRecursive:: /user/username/projects/myproject/src: {} -Info 83 [16:02:11.000] request: +Info 83 [00:02:11.000] request: { "command": "geterr", "arguments": { @@ -372,7 +372,7 @@ FsWatchesRecursive:: /user/username/projects/myproject/src: {} -Info 84 [16:02:12.000] response: +Info 84 [00:02:12.000] response: { "responseRequired": false } @@ -400,7 +400,7 @@ FsWatchesRecursive:: /user/username/projects/myproject/src: {} -Info 85 [16:02:13.000] event: +Info 85 [00:02:13.000] event: {"seq":0,"type":"event","event":"syntaxDiag","body":{"file":"/user/username/projects/myproject/src/fileA.ts","diagnostics":[]}} After checking timeout queue length (1) and running @@ -450,7 +450,7 @@ FsWatchesRecursive:: /user/username/projects/myproject/src: {} -Info 86 [16:02:14.000] event: +Info 86 [00:02:14.000] event: {"seq":0,"type":"event","event":"semanticDiag","body":{"file":"/user/username/projects/myproject/src/fileA.ts","diagnostics":[]}} Before running immediate callbacks and checking length (1) @@ -500,9 +500,9 @@ FsWatchesRecursive:: /user/username/projects/myproject/src: {} -Info 87 [16:02:15.000] event: +Info 87 [00:02:15.000] event: {"seq":0,"type":"event","event":"suggestionDiag","body":{"file":"/user/username/projects/myproject/src/fileA.ts","diagnostics":[]}} -Info 88 [16:02:16.000] event: +Info 88 [00:02:16.000] event: {"seq":0,"type":"event","event":"requestCompleted","body":{"request_seq":1}} Before running immediate callbacks and checking length (1) @@ -528,12 +528,12 @@ FsWatchesRecursive:: /user/username/projects/myproject/src: {} -Info 89 [16:02:17.000] Modify package json file to remove type module -Info 90 [16:02:21.000] FileWatcher:: Triggered with /user/username/projects/myproject/package.json 1:: WatchInfo: /user/username/projects/myproject/package.json 2000 undefined Project: /user/username/projects/myproject/src/tsconfig.json WatchType: File location affecting resolution -Info 91 [16:02:22.000] Scheduled: /user/username/projects/myproject/src/tsconfig.jsonFailedLookupInvalidation -Info 92 [16:02:23.000] Elapsed:: *ms FileWatcher:: Triggered with /user/username/projects/myproject/package.json 1:: WatchInfo: /user/username/projects/myproject/package.json 2000 undefined Project: /user/username/projects/myproject/src/tsconfig.json WatchType: File location affecting resolution -Info 93 [16:02:24.000] FileWatcher:: Triggered with /user/username/projects/myproject/package.json 1:: WatchInfo: /user/username/projects/myproject/package.json 250 undefined WatchType: package.json file -Info 94 [16:02:25.000] Elapsed:: *ms FileWatcher:: Triggered with /user/username/projects/myproject/package.json 1:: WatchInfo: /user/username/projects/myproject/package.json 250 undefined WatchType: package.json file +Info 89 [00:02:17.000] Modify package json file to remove type module +Info 90 [00:02:21.000] FileWatcher:: Triggered with /user/username/projects/myproject/package.json 1:: WatchInfo: /user/username/projects/myproject/package.json 2000 undefined Project: /user/username/projects/myproject/src/tsconfig.json WatchType: File location affecting resolution +Info 91 [00:02:22.000] Scheduled: /user/username/projects/myproject/src/tsconfig.jsonFailedLookupInvalidation +Info 92 [00:02:23.000] Elapsed:: *ms FileWatcher:: Triggered with /user/username/projects/myproject/package.json 1:: WatchInfo: /user/username/projects/myproject/package.json 2000 undefined Project: /user/username/projects/myproject/src/tsconfig.json WatchType: File location affecting resolution +Info 93 [00:02:24.000] FileWatcher:: Triggered with /user/username/projects/myproject/package.json 1:: WatchInfo: /user/username/projects/myproject/package.json 250 undefined WatchType: package.json file +Info 94 [00:02:25.000] Elapsed:: *ms FileWatcher:: Triggered with /user/username/projects/myproject/package.json 1:: WatchInfo: /user/username/projects/myproject/package.json 250 undefined WatchType: package.json file Before running timeout callbacks //// [/user/username/projects/myproject/package.json] {"name":"app","version":"1.0.0"} @@ -561,9 +561,9 @@ FsWatchesRecursive:: /user/username/projects/myproject/src: {} -Info 95 [16:02:26.000] Running: /user/username/projects/myproject/src/tsconfig.jsonFailedLookupInvalidation -Info 96 [16:02:27.000] Scheduled: /user/username/projects/myproject/src/tsconfig.json -Info 97 [16:02:28.000] Scheduled: *ensureProjectForOpenFiles* +Info 95 [00:02:26.000] Running: /user/username/projects/myproject/src/tsconfig.jsonFailedLookupInvalidation +Info 96 [00:02:27.000] Scheduled: /user/username/projects/myproject/src/tsconfig.json +Info 97 [00:02:28.000] Scheduled: *ensureProjectForOpenFiles* After running timeout callbacks PolledWatches:: @@ -612,51 +612,51 @@ FsWatchesRecursive:: /user/username/projects/myproject/src: {} -Info 98 [16:02:29.000] Running: /user/username/projects/myproject/src/tsconfig.json -Info 99 [16:02:30.000] Starting updateGraphWorker: Project: /user/username/projects/myproject/src/tsconfig.json -Info 100 [16:02:31.000] File '/a/lib/package.json' does not exist according to earlier cached lookups. -Info 101 [16:02:32.000] File '/a/package.json' does not exist according to earlier cached lookups. -Info 102 [16:02:33.000] File '/package.json' does not exist according to earlier cached lookups. -Info 103 [16:02:34.000] File '/user/username/projects/myproject/src/package.json' does not exist according to earlier cached lookups. -Info 104 [16:02:35.000] Found 'package.json' at '/user/username/projects/myproject/package.json'. -Info 105 [16:02:36.000] 'package.json' does not have a 'typesVersions' field. -Info 106 [16:02:37.000] File '/user/username/projects/myproject/src/package.json' does not exist according to earlier cached lookups. -Info 107 [16:02:38.000] File '/user/username/projects/myproject/package.json' exists according to earlier cached lookups. -Info 108 [16:02:39.000] ======== Resolving module './fileB.mjs' from '/user/username/projects/myproject/src/fileA.ts'. ======== -Info 109 [16:02:40.000] Module resolution kind is not specified, using 'Node16'. -Info 110 [16:02:41.000] Loading module as file / folder, candidate module location '/user/username/projects/myproject/src/fileB.mjs', target file type 'TypeScript'. -Info 111 [16:02:42.000] File '/user/username/projects/myproject/src/fileB.mjs.ts' does not exist. -Info 112 [16:02:43.000] File '/user/username/projects/myproject/src/fileB.mjs.tsx' does not exist. -Info 113 [16:02:44.000] File '/user/username/projects/myproject/src/fileB.mjs.d.ts' does not exist. -Info 114 [16:02:45.000] File name '/user/username/projects/myproject/src/fileB.mjs' has a '.mjs' extension - stripping it. -Info 115 [16:02:46.000] File '/user/username/projects/myproject/src/fileB.mts' exist - use it as a name resolution result. -Info 116 [16:02:47.000] ======== Module name './fileB.mjs' was successfully resolved to '/user/username/projects/myproject/src/fileB.mts'. ======== -Info 117 [16:02:48.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/src 0 undefined Project: /user/username/projects/myproject/src/tsconfig.json WatchType: Failed Lookup Locations -Info 118 [16:02:49.000] 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 119 [16:02:50.000] File '/a/lib/package.json' does not exist according to earlier cached lookups. -Info 120 [16:02:51.000] File '/a/package.json' does not exist according to earlier cached lookups. -Info 121 [16:02:52.000] File '/package.json' does not exist according to earlier cached lookups. -Info 122 [16:02:53.000] Finishing updateGraphWorker: Project: /user/username/projects/myproject/src/tsconfig.json Version: 3 structureChanged: true structureIsReused:: SafeModules Elapsed:: *ms -Info 123 [16:02:54.000] Different program with same set of files -Info 124 [16:02:55.000] Running: *ensureProjectForOpenFiles* -Info 125 [16:02:56.000] Before ensureProjectForOpenFiles: -Info 126 [16:02:57.000] Project '/user/username/projects/myproject/src/tsconfig.json' (Configured) -Info 126 [16:02:58.000] Files (3) - -Info 126 [16:02:59.000] ----------------------------------------------- -Info 126 [16:03:00.000] Open files: -Info 126 [16:03:01.000] FileName: /user/username/projects/myproject/src/fileA.ts ProjectRootPath: undefined -Info 126 [16:03:02.000] Projects: /user/username/projects/myproject/src/tsconfig.json -Info 126 [16:03:03.000] After ensureProjectForOpenFiles: -Info 127 [16:03:04.000] Project '/user/username/projects/myproject/src/tsconfig.json' (Configured) -Info 127 [16:03:05.000] Files (3) - -Info 127 [16:03:06.000] ----------------------------------------------- -Info 127 [16:03:07.000] Open files: -Info 127 [16:03:08.000] FileName: /user/username/projects/myproject/src/fileA.ts ProjectRootPath: undefined -Info 127 [16:03:09.000] Projects: /user/username/projects/myproject/src/tsconfig.json -Info 127 [16:03:10.000] got projects updated in background, updating diagnostics for /user/username/projects/myproject/src/fileA.ts -Info 128 [16:03:11.000] event: +Info 98 [00:02:29.000] Running: /user/username/projects/myproject/src/tsconfig.json +Info 99 [00:02:30.000] Starting updateGraphWorker: Project: /user/username/projects/myproject/src/tsconfig.json +Info 100 [00:02:31.000] File '/a/lib/package.json' does not exist according to earlier cached lookups. +Info 101 [00:02:32.000] File '/a/package.json' does not exist according to earlier cached lookups. +Info 102 [00:02:33.000] File '/package.json' does not exist according to earlier cached lookups. +Info 103 [00:02:34.000] File '/user/username/projects/myproject/src/package.json' does not exist according to earlier cached lookups. +Info 104 [00:02:35.000] Found 'package.json' at '/user/username/projects/myproject/package.json'. +Info 105 [00:02:36.000] 'package.json' does not have a 'typesVersions' field. +Info 106 [00:02:37.000] File '/user/username/projects/myproject/src/package.json' does not exist according to earlier cached lookups. +Info 107 [00:02:38.000] File '/user/username/projects/myproject/package.json' exists according to earlier cached lookups. +Info 108 [00:02:39.000] ======== Resolving module './fileB.mjs' from '/user/username/projects/myproject/src/fileA.ts'. ======== +Info 109 [00:02:40.000] Module resolution kind is not specified, using 'Node16'. +Info 110 [00:02:41.000] Loading module as file / folder, candidate module location '/user/username/projects/myproject/src/fileB.mjs', target file type 'TypeScript'. +Info 111 [00:02:42.000] File '/user/username/projects/myproject/src/fileB.mjs.ts' does not exist. +Info 112 [00:02:43.000] File '/user/username/projects/myproject/src/fileB.mjs.tsx' does not exist. +Info 113 [00:02:44.000] File '/user/username/projects/myproject/src/fileB.mjs.d.ts' does not exist. +Info 114 [00:02:45.000] File name '/user/username/projects/myproject/src/fileB.mjs' has a '.mjs' extension - stripping it. +Info 115 [00:02:46.000] File '/user/username/projects/myproject/src/fileB.mts' exist - use it as a name resolution result. +Info 116 [00:02:47.000] ======== Module name './fileB.mjs' was successfully resolved to '/user/username/projects/myproject/src/fileB.mts'. ======== +Info 117 [00:02:48.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/src 0 undefined Project: /user/username/projects/myproject/src/tsconfig.json WatchType: Failed Lookup Locations +Info 118 [00:02:49.000] 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 119 [00:02:50.000] File '/a/lib/package.json' does not exist according to earlier cached lookups. +Info 120 [00:02:51.000] File '/a/package.json' does not exist according to earlier cached lookups. +Info 121 [00:02:52.000] File '/package.json' does not exist according to earlier cached lookups. +Info 122 [00:02:53.000] Finishing updateGraphWorker: Project: /user/username/projects/myproject/src/tsconfig.json Version: 3 structureChanged: true structureIsReused:: SafeModules Elapsed:: *ms +Info 123 [00:02:54.000] Different program with same set of files +Info 124 [00:02:55.000] Running: *ensureProjectForOpenFiles* +Info 125 [00:02:56.000] Before ensureProjectForOpenFiles: +Info 126 [00:02:57.000] Project '/user/username/projects/myproject/src/tsconfig.json' (Configured) +Info 126 [00:02:58.000] Files (3) + +Info 126 [00:02:59.000] ----------------------------------------------- +Info 126 [00:03:00.000] Open files: +Info 126 [00:03:01.000] FileName: /user/username/projects/myproject/src/fileA.ts ProjectRootPath: undefined +Info 126 [00:03:02.000] Projects: /user/username/projects/myproject/src/tsconfig.json +Info 126 [00:03:03.000] After ensureProjectForOpenFiles: +Info 127 [00:03:04.000] Project '/user/username/projects/myproject/src/tsconfig.json' (Configured) +Info 127 [00:03:05.000] Files (3) + +Info 127 [00:03:06.000] ----------------------------------------------- +Info 127 [00:03:07.000] Open files: +Info 127 [00:03:08.000] FileName: /user/username/projects/myproject/src/fileA.ts ProjectRootPath: undefined +Info 127 [00:03:09.000] Projects: /user/username/projects/myproject/src/tsconfig.json +Info 127 [00:03:10.000] got projects updated in background, updating diagnostics for /user/username/projects/myproject/src/fileA.ts +Info 128 [00:03:11.000] event: {"seq":0,"type":"event","event":"projectsUpdatedInBackground","body":{"openFiles":["/user/username/projects/myproject/src/fileA.ts"]}} After running timeout callbacks @@ -684,7 +684,7 @@ FsWatchesRecursive:: /user/username/projects/myproject/src: {} -Info 129 [16:03:12.000] request: +Info 129 [00:03:12.000] request: { "command": "geterr", "arguments": { @@ -748,7 +748,7 @@ FsWatchesRecursive:: /user/username/projects/myproject/src: {} -Info 130 [16:03:13.000] response: +Info 130 [00:03:13.000] response: { "responseRequired": false } @@ -778,7 +778,7 @@ FsWatchesRecursive:: /user/username/projects/myproject/src: {} -Info 131 [16:03:14.000] event: +Info 131 [00:03:14.000] event: {"seq":0,"type":"event","event":"syntaxDiag","body":{"file":"/user/username/projects/myproject/src/fileA.ts","diagnostics":[]}} After checking timeout queue length (1) and running @@ -832,7 +832,7 @@ FsWatchesRecursive:: /user/username/projects/myproject/src: {} -Info 132 [16:03:15.000] event: +Info 132 [00:03:15.000] event: {"seq":0,"type":"event","event":"semanticDiag","body":{"file":"/user/username/projects/myproject/src/fileA.ts","diagnostics":[{"start":{"line":1,"offset":21},"end":{"line":1,"offset":34},"text":"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.\n To convert this file to an ECMAScript module, change its file extension to '.mts', or add the field `\"type\": \"module\"` to '/user/username/projects/myproject/package.json'.","code":1479,"category":"error"}]}} Before running immediate callbacks and checking length (1) @@ -886,9 +886,9 @@ FsWatchesRecursive:: /user/username/projects/myproject/src: {} -Info 133 [16:03:16.000] event: +Info 133 [00:03:16.000] event: {"seq":0,"type":"event","event":"suggestionDiag","body":{"file":"/user/username/projects/myproject/src/fileA.ts","diagnostics":[]}} -Info 134 [16:03:17.000] event: +Info 134 [00:03:17.000] event: {"seq":0,"type":"event","event":"requestCompleted","body":{"request_seq":2}} Before running immediate callbacks and checking length (1) @@ -916,13 +916,13 @@ FsWatchesRecursive:: /user/username/projects/myproject/src: {} -Info 135 [16:03:18.000] Delete package.json -Info 136 [16:03:20.000] FileWatcher:: Triggered with /user/username/projects/myproject/package.json 2:: WatchInfo: /user/username/projects/myproject/package.json 2000 undefined Project: /user/username/projects/myproject/src/tsconfig.json WatchType: File location affecting resolution -Info 137 [16:03:21.000] Scheduled: /user/username/projects/myproject/src/tsconfig.jsonFailedLookupInvalidation -Info 138 [16:03:22.000] Elapsed:: *ms FileWatcher:: Triggered with /user/username/projects/myproject/package.json 2:: WatchInfo: /user/username/projects/myproject/package.json 2000 undefined Project: /user/username/projects/myproject/src/tsconfig.json WatchType: File location affecting resolution -Info 139 [16:03:23.000] FileWatcher:: Triggered with /user/username/projects/myproject/package.json 2:: WatchInfo: /user/username/projects/myproject/package.json 250 undefined WatchType: package.json file -Info 140 [16:03:24.000] FileWatcher:: Close:: WatchInfo: /user/username/projects/myproject/package.json 250 undefined WatchType: package.json file -Info 141 [16:03:25.000] Elapsed:: *ms FileWatcher:: Triggered with /user/username/projects/myproject/package.json 2:: WatchInfo: /user/username/projects/myproject/package.json 250 undefined WatchType: package.json file +Info 135 [00:03:18.000] Delete package.json +Info 136 [00:03:20.000] FileWatcher:: Triggered with /user/username/projects/myproject/package.json 2:: WatchInfo: /user/username/projects/myproject/package.json 2000 undefined Project: /user/username/projects/myproject/src/tsconfig.json WatchType: File location affecting resolution +Info 137 [00:03:21.000] Scheduled: /user/username/projects/myproject/src/tsconfig.jsonFailedLookupInvalidation +Info 138 [00:03:22.000] Elapsed:: *ms FileWatcher:: Triggered with /user/username/projects/myproject/package.json 2:: WatchInfo: /user/username/projects/myproject/package.json 2000 undefined Project: /user/username/projects/myproject/src/tsconfig.json WatchType: File location affecting resolution +Info 139 [00:03:23.000] FileWatcher:: Triggered with /user/username/projects/myproject/package.json 2:: WatchInfo: /user/username/projects/myproject/package.json 250 undefined WatchType: package.json file +Info 140 [00:03:24.000] FileWatcher:: Close:: WatchInfo: /user/username/projects/myproject/package.json 250 undefined WatchType: package.json file +Info 141 [00:03:25.000] Elapsed:: *ms FileWatcher:: Triggered with /user/username/projects/myproject/package.json 2:: WatchInfo: /user/username/projects/myproject/package.json 250 undefined WatchType: package.json file Before running timeout callbacks //// [/user/username/projects/myproject/package.json] deleted @@ -950,9 +950,9 @@ FsWatchesRecursive:: /user/username/projects/myproject/src: {} -Info 142 [16:03:26.000] Running: /user/username/projects/myproject/src/tsconfig.jsonFailedLookupInvalidation -Info 143 [16:03:27.000] Scheduled: /user/username/projects/myproject/src/tsconfig.json -Info 144 [16:03:28.000] Scheduled: *ensureProjectForOpenFiles* +Info 142 [00:03:26.000] Running: /user/username/projects/myproject/src/tsconfig.jsonFailedLookupInvalidation +Info 143 [00:03:27.000] Scheduled: /user/username/projects/myproject/src/tsconfig.json +Info 144 [00:03:28.000] Scheduled: *ensureProjectForOpenFiles* After running timeout callbacks PolledWatches:: @@ -1005,49 +1005,49 @@ FsWatchesRecursive:: /user/username/projects/myproject/src: {} -Info 145 [16:03:29.000] Running: /user/username/projects/myproject/src/tsconfig.json -Info 146 [16:03:30.000] Starting updateGraphWorker: Project: /user/username/projects/myproject/src/tsconfig.json -Info 147 [16:03:31.000] File '/a/lib/package.json' does not exist according to earlier cached lookups. -Info 148 [16:03:32.000] File '/a/package.json' does not exist according to earlier cached lookups. -Info 149 [16:03:33.000] File '/package.json' does not exist according to earlier cached lookups. -Info 150 [16:03:34.000] File '/user/username/projects/myproject/src/package.json' does not exist according to earlier cached lookups. -Info 151 [16:03:35.000] File '/user/username/projects/myproject/package.json' does not exist. -Info 152 [16:03:36.000] File '/user/username/projects/package.json' does not exist. -Info 153 [16:03:37.000] File '/user/username/package.json' does not exist. -Info 154 [16:03:38.000] File '/user/package.json' does not exist. -Info 155 [16:03:39.000] File '/package.json' does not exist according to earlier cached lookups. -Info 156 [16:03:40.000] File '/user/username/projects/myproject/src/package.json' does not exist according to earlier cached lookups. -Info 157 [16:03:41.000] File '/user/username/projects/myproject/package.json' does not exist according to earlier cached lookups. -Info 158 [16:03:42.000] File '/user/username/projects/package.json' does not exist according to earlier cached lookups. -Info 159 [16:03:43.000] File '/user/username/package.json' does not exist according to earlier cached lookups. -Info 160 [16:03:44.000] File '/user/package.json' does not exist according to earlier cached lookups. -Info 161 [16:03:45.000] File '/package.json' does not exist according to earlier cached lookups. -Info 162 [16:03:46.000] Reusing resolution of module './fileB.mjs' from '/user/username/projects/myproject/src/fileA.ts' of old program, it was successfully resolved to '/user/username/projects/myproject/src/fileB.mts'. -Info 163 [16:03:47.000] File '/a/lib/package.json' does not exist according to earlier cached lookups. -Info 164 [16:03:48.000] File '/a/package.json' does not exist according to earlier cached lookups. -Info 165 [16:03:49.000] File '/package.json' does not exist according to earlier cached lookups. -Info 166 [16:03:50.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/package.json 2000 undefined Project: /user/username/projects/myproject/src/tsconfig.json WatchType: File location affecting resolution -Info 167 [16:03:51.000] Finishing updateGraphWorker: Project: /user/username/projects/myproject/src/tsconfig.json Version: 4 structureChanged: true structureIsReused:: SafeModules Elapsed:: *ms -Info 168 [16:03:52.000] Different program with same set of files -Info 169 [16:03:53.000] Running: *ensureProjectForOpenFiles* -Info 170 [16:03:54.000] Before ensureProjectForOpenFiles: -Info 171 [16:03:55.000] Project '/user/username/projects/myproject/src/tsconfig.json' (Configured) -Info 171 [16:03:56.000] Files (3) - -Info 171 [16:03:57.000] ----------------------------------------------- -Info 171 [16:03:58.000] Open files: -Info 171 [16:03:59.000] FileName: /user/username/projects/myproject/src/fileA.ts ProjectRootPath: undefined -Info 171 [16:04:00.000] Projects: /user/username/projects/myproject/src/tsconfig.json -Info 171 [16:04:01.000] After ensureProjectForOpenFiles: -Info 172 [16:04:02.000] Project '/user/username/projects/myproject/src/tsconfig.json' (Configured) -Info 172 [16:04:03.000] Files (3) - -Info 172 [16:04:04.000] ----------------------------------------------- -Info 172 [16:04:05.000] Open files: -Info 172 [16:04:06.000] FileName: /user/username/projects/myproject/src/fileA.ts ProjectRootPath: undefined -Info 172 [16:04:07.000] Projects: /user/username/projects/myproject/src/tsconfig.json -Info 172 [16:04:08.000] got projects updated in background, updating diagnostics for /user/username/projects/myproject/src/fileA.ts -Info 173 [16:04:09.000] event: +Info 145 [00:03:29.000] Running: /user/username/projects/myproject/src/tsconfig.json +Info 146 [00:03:30.000] Starting updateGraphWorker: Project: /user/username/projects/myproject/src/tsconfig.json +Info 147 [00:03:31.000] File '/a/lib/package.json' does not exist according to earlier cached lookups. +Info 148 [00:03:32.000] File '/a/package.json' does not exist according to earlier cached lookups. +Info 149 [00:03:33.000] File '/package.json' does not exist according to earlier cached lookups. +Info 150 [00:03:34.000] File '/user/username/projects/myproject/src/package.json' does not exist according to earlier cached lookups. +Info 151 [00:03:35.000] File '/user/username/projects/myproject/package.json' does not exist. +Info 152 [00:03:36.000] File '/user/username/projects/package.json' does not exist. +Info 153 [00:03:37.000] File '/user/username/package.json' does not exist. +Info 154 [00:03:38.000] File '/user/package.json' does not exist. +Info 155 [00:03:39.000] File '/package.json' does not exist according to earlier cached lookups. +Info 156 [00:03:40.000] File '/user/username/projects/myproject/src/package.json' does not exist according to earlier cached lookups. +Info 157 [00:03:41.000] File '/user/username/projects/myproject/package.json' does not exist according to earlier cached lookups. +Info 158 [00:03:42.000] File '/user/username/projects/package.json' does not exist according to earlier cached lookups. +Info 159 [00:03:43.000] File '/user/username/package.json' does not exist according to earlier cached lookups. +Info 160 [00:03:44.000] File '/user/package.json' does not exist according to earlier cached lookups. +Info 161 [00:03:45.000] File '/package.json' does not exist according to earlier cached lookups. +Info 162 [00:03:46.000] Reusing resolution of module './fileB.mjs' from '/user/username/projects/myproject/src/fileA.ts' of old program, it was successfully resolved to '/user/username/projects/myproject/src/fileB.mts'. +Info 163 [00:03:47.000] File '/a/lib/package.json' does not exist according to earlier cached lookups. +Info 164 [00:03:48.000] File '/a/package.json' does not exist according to earlier cached lookups. +Info 165 [00:03:49.000] File '/package.json' does not exist according to earlier cached lookups. +Info 166 [00:03:50.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/package.json 2000 undefined Project: /user/username/projects/myproject/src/tsconfig.json WatchType: File location affecting resolution +Info 167 [00:03:51.000] Finishing updateGraphWorker: Project: /user/username/projects/myproject/src/tsconfig.json Version: 4 structureChanged: true structureIsReused:: SafeModules Elapsed:: *ms +Info 168 [00:03:52.000] Different program with same set of files +Info 169 [00:03:53.000] Running: *ensureProjectForOpenFiles* +Info 170 [00:03:54.000] Before ensureProjectForOpenFiles: +Info 171 [00:03:55.000] Project '/user/username/projects/myproject/src/tsconfig.json' (Configured) +Info 171 [00:03:56.000] Files (3) + +Info 171 [00:03:57.000] ----------------------------------------------- +Info 171 [00:03:58.000] Open files: +Info 171 [00:03:59.000] FileName: /user/username/projects/myproject/src/fileA.ts ProjectRootPath: undefined +Info 171 [00:04:00.000] Projects: /user/username/projects/myproject/src/tsconfig.json +Info 171 [00:04:01.000] After ensureProjectForOpenFiles: +Info 172 [00:04:02.000] Project '/user/username/projects/myproject/src/tsconfig.json' (Configured) +Info 172 [00:04:03.000] Files (3) + +Info 172 [00:04:04.000] ----------------------------------------------- +Info 172 [00:04:05.000] Open files: +Info 172 [00:04:06.000] FileName: /user/username/projects/myproject/src/fileA.ts ProjectRootPath: undefined +Info 172 [00:04:07.000] Projects: /user/username/projects/myproject/src/tsconfig.json +Info 172 [00:04:08.000] got projects updated in background, updating diagnostics for /user/username/projects/myproject/src/fileA.ts +Info 173 [00:04:09.000] event: {"seq":0,"type":"event","event":"projectsUpdatedInBackground","body":{"openFiles":["/user/username/projects/myproject/src/fileA.ts"]}} After running timeout callbacks @@ -1077,7 +1077,7 @@ FsWatchesRecursive:: /user/username/projects/myproject/src: {} -Info 174 [16:04:10.000] request: +Info 174 [00:04:10.000] request: { "command": "geterr", "arguments": { @@ -1145,7 +1145,7 @@ FsWatchesRecursive:: /user/username/projects/myproject/src: {} -Info 175 [16:04:11.000] response: +Info 175 [00:04:11.000] response: { "responseRequired": false } @@ -1177,7 +1177,7 @@ FsWatchesRecursive:: /user/username/projects/myproject/src: {} -Info 176 [16:04:12.000] event: +Info 176 [00:04:12.000] event: {"seq":0,"type":"event","event":"syntaxDiag","body":{"file":"/user/username/projects/myproject/src/fileA.ts","diagnostics":[]}} After checking timeout queue length (1) and running @@ -1235,7 +1235,7 @@ FsWatchesRecursive:: /user/username/projects/myproject/src: {} -Info 177 [16:04:13.000] event: +Info 177 [00:04:13.000] event: {"seq":0,"type":"event","event":"semanticDiag","body":{"file":"/user/username/projects/myproject/src/fileA.ts","diagnostics":[{"start":{"line":1,"offset":21},"end":{"line":1,"offset":34},"text":"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.\n To convert this file to an ECMAScript module, change its file extension to '.mts' or create a local package.json file with `{ \"type\": \"module\" }`.","code":1479,"category":"error"}]}} Before running immediate callbacks and checking length (1) @@ -1293,9 +1293,9 @@ FsWatchesRecursive:: /user/username/projects/myproject/src: {} -Info 178 [16:04:14.000] event: +Info 178 [00:04:14.000] event: {"seq":0,"type":"event","event":"suggestionDiag","body":{"file":"/user/username/projects/myproject/src/fileA.ts","diagnostics":[]}} -Info 179 [16:04:15.000] event: +Info 179 [00:04:15.000] event: {"seq":0,"type":"event","event":"requestCompleted","body":{"request_seq":3}} Before running immediate callbacks and checking length (1) @@ -1325,10 +1325,10 @@ FsWatchesRecursive:: /user/username/projects/myproject/src: {} -Info 180 [16:04:16.000] Modify package json file to add type module -Info 181 [16:04:19.000] FileWatcher:: Triggered with /user/username/projects/myproject/package.json 0:: WatchInfo: /user/username/projects/myproject/package.json 2000 undefined Project: /user/username/projects/myproject/src/tsconfig.json WatchType: File location affecting resolution -Info 182 [16:04:20.000] Scheduled: /user/username/projects/myproject/src/tsconfig.jsonFailedLookupInvalidation -Info 183 [16:04:21.000] Elapsed:: *ms FileWatcher:: Triggered with /user/username/projects/myproject/package.json 0:: WatchInfo: /user/username/projects/myproject/package.json 2000 undefined Project: /user/username/projects/myproject/src/tsconfig.json WatchType: File location affecting resolution +Info 180 [00:04:16.000] Modify package json file to add type module +Info 181 [00:04:19.000] FileWatcher:: Triggered with /user/username/projects/myproject/package.json 0:: WatchInfo: /user/username/projects/myproject/package.json 2000 undefined Project: /user/username/projects/myproject/src/tsconfig.json WatchType: File location affecting resolution +Info 182 [00:04:20.000] Scheduled: /user/username/projects/myproject/src/tsconfig.jsonFailedLookupInvalidation +Info 183 [00:04:21.000] Elapsed:: *ms FileWatcher:: Triggered with /user/username/projects/myproject/package.json 0:: WatchInfo: /user/username/projects/myproject/package.json 2000 undefined Project: /user/username/projects/myproject/src/tsconfig.json WatchType: File location affecting resolution Before running timeout callbacks //// [/user/username/projects/myproject/package.json] {"name":"app","version":"1.0.0","type":"module"} @@ -1360,9 +1360,9 @@ FsWatchesRecursive:: /user/username/projects/myproject/src: {} -Info 184 [16:04:22.000] Running: /user/username/projects/myproject/src/tsconfig.jsonFailedLookupInvalidation -Info 185 [16:04:23.000] Scheduled: /user/username/projects/myproject/src/tsconfig.json -Info 186 [16:04:24.000] Scheduled: *ensureProjectForOpenFiles* +Info 184 [00:04:22.000] Running: /user/username/projects/myproject/src/tsconfig.jsonFailedLookupInvalidation +Info 185 [00:04:23.000] Scheduled: /user/username/projects/myproject/src/tsconfig.json +Info 186 [00:04:24.000] Scheduled: *ensureProjectForOpenFiles* After running timeout callbacks PolledWatches:: @@ -1419,41 +1419,41 @@ FsWatchesRecursive:: /user/username/projects/myproject/src: {} -Info 187 [16:04:25.000] Running: /user/username/projects/myproject/src/tsconfig.json -Info 188 [16:04:26.000] Starting updateGraphWorker: Project: /user/username/projects/myproject/src/tsconfig.json -Info 189 [16:04:27.000] File '/a/lib/package.json' does not exist according to earlier cached lookups. -Info 190 [16:04:28.000] File '/a/package.json' does not exist according to earlier cached lookups. -Info 191 [16:04:29.000] File '/package.json' does not exist according to earlier cached lookups. -Info 192 [16:04:30.000] File '/user/username/projects/myproject/src/package.json' does not exist according to earlier cached lookups. -Info 193 [16:04:31.000] Found 'package.json' at '/user/username/projects/myproject/package.json'. -Info 194 [16:04:32.000] 'package.json' does not have a 'typesVersions' field. -Info 195 [16:04:33.000] File '/user/username/projects/myproject/src/package.json' does not exist according to earlier cached lookups. -Info 196 [16:04:34.000] File '/user/username/projects/myproject/package.json' exists according to earlier cached lookups. -Info 197 [16:04:35.000] File '/a/lib/package.json' does not exist according to earlier cached lookups. -Info 198 [16:04:36.000] File '/a/package.json' does not exist according to earlier cached lookups. -Info 199 [16:04:37.000] File '/package.json' does not exist according to earlier cached lookups. -Info 200 [16:04:38.000] FileWatcher:: Close:: WatchInfo: /user/username/projects/package.json 2000 undefined Project: /user/username/projects/myproject/src/tsconfig.json WatchType: File location affecting resolution -Info 201 [16:04:39.000] Finishing updateGraphWorker: Project: /user/username/projects/myproject/src/tsconfig.json Version: 5 structureChanged: true structureIsReused:: SafeModules Elapsed:: *ms -Info 202 [16:04:40.000] Different program with same set of files -Info 203 [16:04:41.000] Running: *ensureProjectForOpenFiles* -Info 204 [16:04:42.000] Before ensureProjectForOpenFiles: -Info 205 [16:04:43.000] Project '/user/username/projects/myproject/src/tsconfig.json' (Configured) -Info 205 [16:04:44.000] Files (3) - -Info 205 [16:04:45.000] ----------------------------------------------- -Info 205 [16:04:46.000] Open files: -Info 205 [16:04:47.000] FileName: /user/username/projects/myproject/src/fileA.ts ProjectRootPath: undefined -Info 205 [16:04:48.000] Projects: /user/username/projects/myproject/src/tsconfig.json -Info 205 [16:04:49.000] After ensureProjectForOpenFiles: -Info 206 [16:04:50.000] Project '/user/username/projects/myproject/src/tsconfig.json' (Configured) -Info 206 [16:04:51.000] Files (3) - -Info 206 [16:04:52.000] ----------------------------------------------- -Info 206 [16:04:53.000] Open files: -Info 206 [16:04:54.000] FileName: /user/username/projects/myproject/src/fileA.ts ProjectRootPath: undefined -Info 206 [16:04:55.000] Projects: /user/username/projects/myproject/src/tsconfig.json -Info 206 [16:04:56.000] got projects updated in background, updating diagnostics for /user/username/projects/myproject/src/fileA.ts -Info 207 [16:04:57.000] event: +Info 187 [00:04:25.000] Running: /user/username/projects/myproject/src/tsconfig.json +Info 188 [00:04:26.000] Starting updateGraphWorker: Project: /user/username/projects/myproject/src/tsconfig.json +Info 189 [00:04:27.000] File '/a/lib/package.json' does not exist according to earlier cached lookups. +Info 190 [00:04:28.000] File '/a/package.json' does not exist according to earlier cached lookups. +Info 191 [00:04:29.000] File '/package.json' does not exist according to earlier cached lookups. +Info 192 [00:04:30.000] File '/user/username/projects/myproject/src/package.json' does not exist according to earlier cached lookups. +Info 193 [00:04:31.000] Found 'package.json' at '/user/username/projects/myproject/package.json'. +Info 194 [00:04:32.000] 'package.json' does not have a 'typesVersions' field. +Info 195 [00:04:33.000] File '/user/username/projects/myproject/src/package.json' does not exist according to earlier cached lookups. +Info 196 [00:04:34.000] File '/user/username/projects/myproject/package.json' exists according to earlier cached lookups. +Info 197 [00:04:35.000] File '/a/lib/package.json' does not exist according to earlier cached lookups. +Info 198 [00:04:36.000] File '/a/package.json' does not exist according to earlier cached lookups. +Info 199 [00:04:37.000] File '/package.json' does not exist according to earlier cached lookups. +Info 200 [00:04:38.000] FileWatcher:: Close:: WatchInfo: /user/username/projects/package.json 2000 undefined Project: /user/username/projects/myproject/src/tsconfig.json WatchType: File location affecting resolution +Info 201 [00:04:39.000] Finishing updateGraphWorker: Project: /user/username/projects/myproject/src/tsconfig.json Version: 5 structureChanged: true structureIsReused:: SafeModules Elapsed:: *ms +Info 202 [00:04:40.000] Different program with same set of files +Info 203 [00:04:41.000] Running: *ensureProjectForOpenFiles* +Info 204 [00:04:42.000] Before ensureProjectForOpenFiles: +Info 205 [00:04:43.000] Project '/user/username/projects/myproject/src/tsconfig.json' (Configured) +Info 205 [00:04:44.000] Files (3) + +Info 205 [00:04:45.000] ----------------------------------------------- +Info 205 [00:04:46.000] Open files: +Info 205 [00:04:47.000] FileName: /user/username/projects/myproject/src/fileA.ts ProjectRootPath: undefined +Info 205 [00:04:48.000] Projects: /user/username/projects/myproject/src/tsconfig.json +Info 205 [00:04:49.000] After ensureProjectForOpenFiles: +Info 206 [00:04:50.000] Project '/user/username/projects/myproject/src/tsconfig.json' (Configured) +Info 206 [00:04:51.000] Files (3) + +Info 206 [00:04:52.000] ----------------------------------------------- +Info 206 [00:04:53.000] Open files: +Info 206 [00:04:54.000] FileName: /user/username/projects/myproject/src/fileA.ts ProjectRootPath: undefined +Info 206 [00:04:55.000] Projects: /user/username/projects/myproject/src/tsconfig.json +Info 206 [00:04:56.000] got projects updated in background, updating diagnostics for /user/username/projects/myproject/src/fileA.ts +Info 207 [00:04:57.000] event: {"seq":0,"type":"event","event":"projectsUpdatedInBackground","body":{"openFiles":["/user/username/projects/myproject/src/fileA.ts"]}} After running timeout callbacks @@ -1481,7 +1481,7 @@ FsWatchesRecursive:: /user/username/projects/myproject/src: {} -Info 208 [16:04:58.000] request: +Info 208 [00:04:58.000] request: { "command": "geterr", "arguments": { @@ -1545,7 +1545,7 @@ FsWatchesRecursive:: /user/username/projects/myproject/src: {} -Info 209 [16:04:59.000] response: +Info 209 [00:04:59.000] response: { "responseRequired": false } @@ -1575,7 +1575,7 @@ FsWatchesRecursive:: /user/username/projects/myproject/src: {} -Info 210 [16:05:00.000] event: +Info 210 [00:05:00.000] event: {"seq":0,"type":"event","event":"syntaxDiag","body":{"file":"/user/username/projects/myproject/src/fileA.ts","diagnostics":[]}} After checking timeout queue length (1) and running @@ -1629,7 +1629,7 @@ FsWatchesRecursive:: /user/username/projects/myproject/src: {} -Info 211 [16:05:01.000] event: +Info 211 [00:05:01.000] event: {"seq":0,"type":"event","event":"semanticDiag","body":{"file":"/user/username/projects/myproject/src/fileA.ts","diagnostics":[]}} Before running immediate callbacks and checking length (1) @@ -1683,9 +1683,9 @@ FsWatchesRecursive:: /user/username/projects/myproject/src: {} -Info 212 [16:05:02.000] event: +Info 212 [00:05:02.000] event: {"seq":0,"type":"event","event":"suggestionDiag","body":{"file":"/user/username/projects/myproject/src/fileA.ts","diagnostics":[]}} -Info 213 [16:05:03.000] event: +Info 213 [00:05:03.000] event: {"seq":0,"type":"event","event":"requestCompleted","body":{"request_seq":4}} Before running immediate callbacks and checking length (1) @@ -1713,10 +1713,10 @@ FsWatchesRecursive:: /user/username/projects/myproject/src: {} -Info 214 [16:05:04.000] Delete package.json -Info 215 [16:05:06.000] FileWatcher:: Triggered with /user/username/projects/myproject/package.json 2:: WatchInfo: /user/username/projects/myproject/package.json 2000 undefined Project: /user/username/projects/myproject/src/tsconfig.json WatchType: File location affecting resolution -Info 216 [16:05:07.000] Scheduled: /user/username/projects/myproject/src/tsconfig.jsonFailedLookupInvalidation -Info 217 [16:05:08.000] Elapsed:: *ms FileWatcher:: Triggered with /user/username/projects/myproject/package.json 2:: WatchInfo: /user/username/projects/myproject/package.json 2000 undefined Project: /user/username/projects/myproject/src/tsconfig.json WatchType: File location affecting resolution +Info 214 [00:05:04.000] Delete package.json +Info 215 [00:05:06.000] FileWatcher:: Triggered with /user/username/projects/myproject/package.json 2:: WatchInfo: /user/username/projects/myproject/package.json 2000 undefined Project: /user/username/projects/myproject/src/tsconfig.json WatchType: File location affecting resolution +Info 216 [00:05:07.000] Scheduled: /user/username/projects/myproject/src/tsconfig.jsonFailedLookupInvalidation +Info 217 [00:05:08.000] Elapsed:: *ms FileWatcher:: Triggered with /user/username/projects/myproject/package.json 2:: WatchInfo: /user/username/projects/myproject/package.json 2000 undefined Project: /user/username/projects/myproject/src/tsconfig.json WatchType: File location affecting resolution Before running timeout callbacks //// [/user/username/projects/myproject/package.json] deleted @@ -1744,9 +1744,9 @@ FsWatchesRecursive:: /user/username/projects/myproject/src: {} -Info 218 [16:05:09.000] Running: /user/username/projects/myproject/src/tsconfig.jsonFailedLookupInvalidation -Info 219 [16:05:10.000] Scheduled: /user/username/projects/myproject/src/tsconfig.json -Info 220 [16:05:11.000] Scheduled: *ensureProjectForOpenFiles* +Info 218 [00:05:09.000] Running: /user/username/projects/myproject/src/tsconfig.jsonFailedLookupInvalidation +Info 219 [00:05:10.000] Scheduled: /user/username/projects/myproject/src/tsconfig.json +Info 220 [00:05:11.000] Scheduled: *ensureProjectForOpenFiles* After running timeout callbacks PolledWatches:: @@ -1799,48 +1799,48 @@ FsWatchesRecursive:: /user/username/projects/myproject/src: {} -Info 221 [16:05:12.000] Running: /user/username/projects/myproject/src/tsconfig.json -Info 222 [16:05:13.000] Starting updateGraphWorker: Project: /user/username/projects/myproject/src/tsconfig.json -Info 223 [16:05:14.000] File '/a/lib/package.json' does not exist according to earlier cached lookups. -Info 224 [16:05:15.000] File '/a/package.json' does not exist according to earlier cached lookups. -Info 225 [16:05:16.000] File '/package.json' does not exist according to earlier cached lookups. -Info 226 [16:05:17.000] File '/user/username/projects/myproject/src/package.json' does not exist according to earlier cached lookups. -Info 227 [16:05:18.000] File '/user/username/projects/myproject/package.json' does not exist. -Info 228 [16:05:19.000] File '/user/username/projects/package.json' does not exist according to earlier cached lookups. -Info 229 [16:05:20.000] File '/user/username/package.json' does not exist according to earlier cached lookups. -Info 230 [16:05:21.000] File '/user/package.json' does not exist according to earlier cached lookups. -Info 231 [16:05:22.000] File '/package.json' does not exist according to earlier cached lookups. -Info 232 [16:05:23.000] File '/user/username/projects/myproject/src/package.json' does not exist according to earlier cached lookups. -Info 233 [16:05:24.000] File '/user/username/projects/myproject/package.json' does not exist according to earlier cached lookups. -Info 234 [16:05:25.000] File '/user/username/projects/package.json' does not exist according to earlier cached lookups. -Info 235 [16:05:26.000] File '/user/username/package.json' does not exist according to earlier cached lookups. -Info 236 [16:05:27.000] File '/user/package.json' does not exist according to earlier cached lookups. -Info 237 [16:05:28.000] File '/package.json' does not exist according to earlier cached lookups. -Info 238 [16:05:29.000] File '/a/lib/package.json' does not exist according to earlier cached lookups. -Info 239 [16:05:30.000] File '/a/package.json' does not exist according to earlier cached lookups. -Info 240 [16:05:31.000] File '/package.json' does not exist according to earlier cached lookups. -Info 241 [16:05:32.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/package.json 2000 undefined Project: /user/username/projects/myproject/src/tsconfig.json WatchType: File location affecting resolution -Info 242 [16:05:33.000] Finishing updateGraphWorker: Project: /user/username/projects/myproject/src/tsconfig.json Version: 6 structureChanged: true structureIsReused:: SafeModules Elapsed:: *ms -Info 243 [16:05:34.000] Different program with same set of files -Info 244 [16:05:35.000] Running: *ensureProjectForOpenFiles* -Info 245 [16:05:36.000] Before ensureProjectForOpenFiles: -Info 246 [16:05:37.000] Project '/user/username/projects/myproject/src/tsconfig.json' (Configured) -Info 246 [16:05:38.000] Files (3) - -Info 246 [16:05:39.000] ----------------------------------------------- -Info 246 [16:05:40.000] Open files: -Info 246 [16:05:41.000] FileName: /user/username/projects/myproject/src/fileA.ts ProjectRootPath: undefined -Info 246 [16:05:42.000] Projects: /user/username/projects/myproject/src/tsconfig.json -Info 246 [16:05:43.000] After ensureProjectForOpenFiles: -Info 247 [16:05:44.000] Project '/user/username/projects/myproject/src/tsconfig.json' (Configured) -Info 247 [16:05:45.000] Files (3) - -Info 247 [16:05:46.000] ----------------------------------------------- -Info 247 [16:05:47.000] Open files: -Info 247 [16:05:48.000] FileName: /user/username/projects/myproject/src/fileA.ts ProjectRootPath: undefined -Info 247 [16:05:49.000] Projects: /user/username/projects/myproject/src/tsconfig.json -Info 247 [16:05:50.000] got projects updated in background, updating diagnostics for /user/username/projects/myproject/src/fileA.ts -Info 248 [16:05:51.000] event: +Info 221 [00:05:12.000] Running: /user/username/projects/myproject/src/tsconfig.json +Info 222 [00:05:13.000] Starting updateGraphWorker: Project: /user/username/projects/myproject/src/tsconfig.json +Info 223 [00:05:14.000] File '/a/lib/package.json' does not exist according to earlier cached lookups. +Info 224 [00:05:15.000] File '/a/package.json' does not exist according to earlier cached lookups. +Info 225 [00:05:16.000] File '/package.json' does not exist according to earlier cached lookups. +Info 226 [00:05:17.000] File '/user/username/projects/myproject/src/package.json' does not exist according to earlier cached lookups. +Info 227 [00:05:18.000] File '/user/username/projects/myproject/package.json' does not exist. +Info 228 [00:05:19.000] File '/user/username/projects/package.json' does not exist according to earlier cached lookups. +Info 229 [00:05:20.000] File '/user/username/package.json' does not exist according to earlier cached lookups. +Info 230 [00:05:21.000] File '/user/package.json' does not exist according to earlier cached lookups. +Info 231 [00:05:22.000] File '/package.json' does not exist according to earlier cached lookups. +Info 232 [00:05:23.000] File '/user/username/projects/myproject/src/package.json' does not exist according to earlier cached lookups. +Info 233 [00:05:24.000] File '/user/username/projects/myproject/package.json' does not exist according to earlier cached lookups. +Info 234 [00:05:25.000] File '/user/username/projects/package.json' does not exist according to earlier cached lookups. +Info 235 [00:05:26.000] File '/user/username/package.json' does not exist according to earlier cached lookups. +Info 236 [00:05:27.000] File '/user/package.json' does not exist according to earlier cached lookups. +Info 237 [00:05:28.000] File '/package.json' does not exist according to earlier cached lookups. +Info 238 [00:05:29.000] File '/a/lib/package.json' does not exist according to earlier cached lookups. +Info 239 [00:05:30.000] File '/a/package.json' does not exist according to earlier cached lookups. +Info 240 [00:05:31.000] File '/package.json' does not exist according to earlier cached lookups. +Info 241 [00:05:32.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/package.json 2000 undefined Project: /user/username/projects/myproject/src/tsconfig.json WatchType: File location affecting resolution +Info 242 [00:05:33.000] Finishing updateGraphWorker: Project: /user/username/projects/myproject/src/tsconfig.json Version: 6 structureChanged: true structureIsReused:: SafeModules Elapsed:: *ms +Info 243 [00:05:34.000] Different program with same set of files +Info 244 [00:05:35.000] Running: *ensureProjectForOpenFiles* +Info 245 [00:05:36.000] Before ensureProjectForOpenFiles: +Info 246 [00:05:37.000] Project '/user/username/projects/myproject/src/tsconfig.json' (Configured) +Info 246 [00:05:38.000] Files (3) + +Info 246 [00:05:39.000] ----------------------------------------------- +Info 246 [00:05:40.000] Open files: +Info 246 [00:05:41.000] FileName: /user/username/projects/myproject/src/fileA.ts ProjectRootPath: undefined +Info 246 [00:05:42.000] Projects: /user/username/projects/myproject/src/tsconfig.json +Info 246 [00:05:43.000] After ensureProjectForOpenFiles: +Info 247 [00:05:44.000] Project '/user/username/projects/myproject/src/tsconfig.json' (Configured) +Info 247 [00:05:45.000] Files (3) + +Info 247 [00:05:46.000] ----------------------------------------------- +Info 247 [00:05:47.000] Open files: +Info 247 [00:05:48.000] FileName: /user/username/projects/myproject/src/fileA.ts ProjectRootPath: undefined +Info 247 [00:05:49.000] Projects: /user/username/projects/myproject/src/tsconfig.json +Info 247 [00:05:50.000] got projects updated in background, updating diagnostics for /user/username/projects/myproject/src/fileA.ts +Info 248 [00:05:51.000] event: {"seq":0,"type":"event","event":"projectsUpdatedInBackground","body":{"openFiles":["/user/username/projects/myproject/src/fileA.ts"]}} After running timeout callbacks @@ -1870,7 +1870,7 @@ FsWatchesRecursive:: /user/username/projects/myproject/src: {} -Info 249 [16:05:52.000] request: +Info 249 [00:05:52.000] request: { "command": "geterr", "arguments": { @@ -1938,7 +1938,7 @@ FsWatchesRecursive:: /user/username/projects/myproject/src: {} -Info 250 [16:05:53.000] response: +Info 250 [00:05:53.000] response: { "responseRequired": false } @@ -1970,7 +1970,7 @@ FsWatchesRecursive:: /user/username/projects/myproject/src: {} -Info 251 [16:05:54.000] event: +Info 251 [00:05:54.000] event: {"seq":0,"type":"event","event":"syntaxDiag","body":{"file":"/user/username/projects/myproject/src/fileA.ts","diagnostics":[]}} After checking timeout queue length (1) and running @@ -2028,7 +2028,7 @@ FsWatchesRecursive:: /user/username/projects/myproject/src: {} -Info 252 [16:05:55.000] event: +Info 252 [00:05:55.000] event: {"seq":0,"type":"event","event":"semanticDiag","body":{"file":"/user/username/projects/myproject/src/fileA.ts","diagnostics":[{"start":{"line":1,"offset":21},"end":{"line":1,"offset":34},"text":"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.\n To convert this file to an ECMAScript module, change its file extension to '.mts' or create a local package.json file with `{ \"type\": \"module\" }`.","code":1479,"category":"error"}]}} Before running immediate callbacks and checking length (1) @@ -2086,9 +2086,9 @@ FsWatchesRecursive:: /user/username/projects/myproject/src: {} -Info 253 [16:05:56.000] event: +Info 253 [00:05:56.000] event: {"seq":0,"type":"event","event":"suggestionDiag","body":{"file":"/user/username/projects/myproject/src/fileA.ts","diagnostics":[]}} -Info 254 [16:05:57.000] event: +Info 254 [00:05:57.000] event: {"seq":0,"type":"event","event":"requestCompleted","body":{"request_seq":5}} Before running immediate callbacks and checking length (1) diff --git a/tests/baselines/reference/tsserver/moduleSpecifierCache/invalidates-module-specifiers-when-changes-happen-in-contained-node_modules-directories.js b/tests/baselines/reference/tsserver/moduleSpecifierCache/invalidates-module-specifiers-when-changes-happen-in-contained-node_modules-directories.js index fb0606a739f92..2ccedb951a5de 100644 --- a/tests/baselines/reference/tsserver/moduleSpecifierCache/invalidates-module-specifiers-when-changes-happen-in-contained-node_modules-directories.js +++ b/tests/baselines/reference/tsserver/moduleSpecifierCache/invalidates-module-specifiers-when-changes-happen-in-contained-node_modules-directories.js @@ -1,5 +1,5 @@ -Info 0 [16:00:27.000] Provided types map file "/a/lib/typesMap.json" doesn't exist -Info 1 [16:00:28.000] request: +Info 0 [00:00:27.000] Provided types map file "/a/lib/typesMap.json" doesn't exist +Info 1 [00:00:28.000] request: { "seq": 0, "type": "request", @@ -41,11 +41,11 @@ FsWatches:: FsWatchesRecursive:: -Info 2 [16:00:29.000] Search path: /src -Info 3 [16:00:30.000] For info: /src/a.ts :: Config file name: /tsconfig.json -Info 4 [16:00:31.000] Creating configuration project /tsconfig.json -Info 5 [16:00:32.000] FileWatcher:: Added:: WatchInfo: /tsconfig.json 2000 undefined Project: /tsconfig.json WatchType: Config file -Info 6 [16:00:33.000] Config: /tsconfig.json : { +Info 2 [00:00:29.000] Search path: /src +Info 3 [00:00:30.000] For info: /src/a.ts :: Config file name: /tsconfig.json +Info 4 [00:00:31.000] Creating configuration project /tsconfig.json +Info 5 [00:00:32.000] FileWatcher:: Added:: WatchInfo: /tsconfig.json 2000 undefined Project: /tsconfig.json WatchType: Config file +Info 6 [00:00:33.000] Config: /tsconfig.json : { "rootNames": [ "/src/a.ts", "/src/ambient.d.ts", @@ -57,18 +57,18 @@ Info 6 [16:00:33.000] Config: /tsconfig.json : { "configFilePath": "/tsconfig.json" } } -Info 7 [16:00:34.000] DirectoryWatcher:: Added:: WatchInfo: /src 1 undefined Config: /tsconfig.json WatchType: Wild card directory -Info 8 [16:00:35.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /src 1 undefined Config: /tsconfig.json WatchType: Wild card directory -Info 9 [16:00:36.000] Plugins were requested but not running in environment that supports 'require'. Nothing will be loaded -Info 10 [16:00:37.000] FileWatcher:: Added:: WatchInfo: /src/ambient.d.ts 500 undefined WatchType: Closed Script info -Info 11 [16:00:38.000] FileWatcher:: Added:: WatchInfo: /src/b-link.ts 500 undefined WatchType: Closed Script info -Info 12 [16:00:39.000] FileWatcher:: Added:: WatchInfo: /src/b.ts 500 undefined WatchType: Closed Script info -Info 13 [16:00:40.000] FileWatcher:: Added:: WatchInfo: /src/c.ts 500 undefined WatchType: Closed Script info -Info 14 [16:00:41.000] Starting updateGraphWorker: Project: /tsconfig.json -Info 15 [16:00:42.000] FileWatcher:: Added:: WatchInfo: /a/lib/lib.d.ts 500 undefined Project: /tsconfig.json WatchType: Missing file -Info 16 [16:00:43.000] Finishing updateGraphWorker: Project: /tsconfig.json Version: 1 structureChanged: true structureIsReused:: Not Elapsed:: *ms -Info 17 [16:00:44.000] Project '/tsconfig.json' (Configured) -Info 18 [16:00:45.000] Files (5) +Info 7 [00:00:34.000] DirectoryWatcher:: Added:: WatchInfo: /src 1 undefined Config: /tsconfig.json WatchType: Wild card directory +Info 8 [00:00:35.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /src 1 undefined Config: /tsconfig.json WatchType: Wild card directory +Info 9 [00:00:36.000] Plugins were requested but not running in environment that supports 'require'. Nothing will be loaded +Info 10 [00:00:37.000] FileWatcher:: Added:: WatchInfo: /src/ambient.d.ts 500 undefined WatchType: Closed Script info +Info 11 [00:00:38.000] FileWatcher:: Added:: WatchInfo: /src/b-link.ts 500 undefined WatchType: Closed Script info +Info 12 [00:00:39.000] FileWatcher:: Added:: WatchInfo: /src/b.ts 500 undefined WatchType: Closed Script info +Info 13 [00:00:40.000] FileWatcher:: Added:: WatchInfo: /src/c.ts 500 undefined WatchType: Closed Script info +Info 14 [00:00:41.000] Starting updateGraphWorker: Project: /tsconfig.json +Info 15 [00:00:42.000] FileWatcher:: Added:: WatchInfo: /a/lib/lib.d.ts 500 undefined Project: /tsconfig.json WatchType: Missing file +Info 16 [00:00:43.000] Finishing updateGraphWorker: Project: /tsconfig.json Version: 1 structureChanged: true structureIsReused:: Not Elapsed:: *ms +Info 17 [00:00:44.000] Project '/tsconfig.json' (Configured) +Info 18 [00:00:45.000] Files (5) /src/a.ts /src/ambient.d.ts /src/b-link.ts @@ -87,33 +87,33 @@ Info 18 [16:00:45.000] Files (5) src/c.ts Matched by include pattern 'src' in 'tsconfig.json' -Info 19 [16:00:46.000] ----------------------------------------------- -Info 20 [16:00:47.000] FileWatcher:: Added:: WatchInfo: /package.json 250 undefined WatchType: package.json file -Info 21 [16:00:48.000] AutoImportProviderProject: found 1 root files in 1 dependencies in * ms -Info 22 [16:00:49.000] DirectoryWatcher:: Added:: WatchInfo: /node_modules 1 undefined WatchType: node_modules for closed script infos and package.jsons affecting module specifier cache -Info 23 [16:00:50.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /node_modules 1 undefined WatchType: node_modules for closed script infos and package.jsons affecting module specifier cache -Info 24 [16:00:51.000] Starting updateGraphWorker: Project: /dev/null/autoImportProviderProject1* -Info 25 [16:00:52.000] Finishing updateGraphWorker: Project: /dev/null/autoImportProviderProject1* Version: 1 structureChanged: true structureIsReused:: Not Elapsed:: *ms -Info 26 [16:00:53.000] Project '/dev/null/autoImportProviderProject1*' (AutoImportProvider) -Info 27 [16:00:54.000] Files (1) +Info 19 [00:00:46.000] ----------------------------------------------- +Info 20 [00:00:47.000] FileWatcher:: Added:: WatchInfo: /package.json 250 undefined WatchType: package.json file +Info 21 [00:00:48.000] AutoImportProviderProject: found 1 root files in 1 dependencies in * ms +Info 22 [00:00:49.000] DirectoryWatcher:: Added:: WatchInfo: /node_modules 1 undefined WatchType: node_modules for closed script infos and package.jsons affecting module specifier cache +Info 23 [00:00:50.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /node_modules 1 undefined WatchType: node_modules for closed script infos and package.jsons affecting module specifier cache +Info 24 [00:00:51.000] Starting updateGraphWorker: Project: /dev/null/autoImportProviderProject1* +Info 25 [00:00:52.000] Finishing updateGraphWorker: Project: /dev/null/autoImportProviderProject1* Version: 1 structureChanged: true structureIsReused:: Not Elapsed:: *ms +Info 26 [00:00:53.000] Project '/dev/null/autoImportProviderProject1*' (AutoImportProvider) +Info 27 [00:00:54.000] Files (1) /node_modules/mobx/index.d.ts node_modules/mobx/index.d.ts Root file specified for compilation -Info 28 [16:00:55.000] ----------------------------------------------- -Info 29 [16:00:56.000] Project '/tsconfig.json' (Configured) -Info 29 [16:00:57.000] Files (5) +Info 28 [00:00:55.000] ----------------------------------------------- +Info 29 [00:00:56.000] Project '/tsconfig.json' (Configured) +Info 29 [00:00:57.000] Files (5) -Info 29 [16:00:58.000] ----------------------------------------------- -Info 29 [16:00:59.000] Project '/dev/null/autoImportProviderProject1*' (AutoImportProvider) -Info 29 [16:01:00.000] Files (1) +Info 29 [00:00:58.000] ----------------------------------------------- +Info 29 [00:00:59.000] Project '/dev/null/autoImportProviderProject1*' (AutoImportProvider) +Info 29 [00:01:00.000] Files (1) -Info 29 [16:01:01.000] ----------------------------------------------- -Info 29 [16:01:02.000] Open files: -Info 29 [16:01:03.000] FileName: /src/a.ts ProjectRootPath: undefined -Info 29 [16:01:04.000] Projects: /tsconfig.json +Info 29 [00:01:01.000] ----------------------------------------------- +Info 29 [00:01:02.000] Open files: +Info 29 [00:01:03.000] FileName: /src/a.ts ProjectRootPath: undefined +Info 29 [00:01:04.000] Projects: /tsconfig.json After request PolledWatches:: @@ -140,11 +140,11 @@ FsWatchesRecursive:: /node_modules: {} -Info 29 [16:01:05.000] response: +Info 29 [00:01:05.000] response: { "responseRequired": false } -Info 30 [16:01:06.000] request: +Info 30 [00:01:06.000] request: { "seq": 0, "type": "request", @@ -179,22 +179,22 @@ FsWatchesRecursive:: /node_modules: {} -Info 31 [16:01:07.000] FileWatcher:: Close:: WatchInfo: /src/b.ts 500 undefined WatchType: Closed Script info -Info 32 [16:01:08.000] Search path: /src -Info 33 [16:01:09.000] For info: /src/b.ts :: Config file name: /tsconfig.json -Info 34 [16:01:10.000] Project '/tsconfig.json' (Configured) -Info 34 [16:01:11.000] Files (5) +Info 31 [00:01:07.000] FileWatcher:: Close:: WatchInfo: /src/b.ts 500 undefined WatchType: Closed Script info +Info 32 [00:01:08.000] Search path: /src +Info 33 [00:01:09.000] For info: /src/b.ts :: Config file name: /tsconfig.json +Info 34 [00:01:10.000] Project '/tsconfig.json' (Configured) +Info 34 [00:01:11.000] Files (5) -Info 34 [16:01:12.000] ----------------------------------------------- -Info 34 [16:01:13.000] Project '/dev/null/autoImportProviderProject1*' (AutoImportProvider) -Info 34 [16:01:14.000] Files (1) +Info 34 [00:01:12.000] ----------------------------------------------- +Info 34 [00:01:13.000] Project '/dev/null/autoImportProviderProject1*' (AutoImportProvider) +Info 34 [00:01:14.000] Files (1) -Info 34 [16:01:15.000] ----------------------------------------------- -Info 34 [16:01:16.000] Open files: -Info 34 [16:01:17.000] FileName: /src/a.ts ProjectRootPath: undefined -Info 34 [16:01:18.000] Projects: /tsconfig.json -Info 34 [16:01:19.000] FileName: /src/b.ts ProjectRootPath: undefined -Info 34 [16:01:20.000] Projects: /tsconfig.json +Info 34 [00:01:15.000] ----------------------------------------------- +Info 34 [00:01:16.000] Open files: +Info 34 [00:01:17.000] FileName: /src/a.ts ProjectRootPath: undefined +Info 34 [00:01:18.000] Projects: /tsconfig.json +Info 34 [00:01:19.000] FileName: /src/b.ts ProjectRootPath: undefined +Info 34 [00:01:20.000] Projects: /tsconfig.json After request PolledWatches:: @@ -219,11 +219,11 @@ FsWatchesRecursive:: /node_modules: {} -Info 34 [16:01:21.000] response: +Info 34 [00:01:21.000] response: { "responseRequired": false } -Info 35 [16:01:22.000] request: +Info 35 [00:01:22.000] request: { "seq": 0, "type": "request", @@ -256,24 +256,24 @@ FsWatchesRecursive:: /node_modules: {} -Info 36 [16:01:23.000] FileWatcher:: Close:: WatchInfo: /src/c.ts 500 undefined WatchType: Closed Script info -Info 37 [16:01:24.000] Search path: /src -Info 38 [16:01:25.000] For info: /src/c.ts :: Config file name: /tsconfig.json -Info 39 [16:01:26.000] Project '/tsconfig.json' (Configured) -Info 39 [16:01:27.000] Files (5) - -Info 39 [16:01:28.000] ----------------------------------------------- -Info 39 [16:01:29.000] Project '/dev/null/autoImportProviderProject1*' (AutoImportProvider) -Info 39 [16:01:30.000] Files (1) - -Info 39 [16:01:31.000] ----------------------------------------------- -Info 39 [16:01:32.000] Open files: -Info 39 [16:01:33.000] FileName: /src/a.ts ProjectRootPath: undefined -Info 39 [16:01:34.000] Projects: /tsconfig.json -Info 39 [16:01:35.000] FileName: /src/b.ts ProjectRootPath: undefined -Info 39 [16:01:36.000] Projects: /tsconfig.json -Info 39 [16:01:37.000] FileName: /src/c.ts ProjectRootPath: undefined -Info 39 [16:01:38.000] Projects: /tsconfig.json +Info 36 [00:01:23.000] FileWatcher:: Close:: WatchInfo: /src/c.ts 500 undefined WatchType: Closed Script info +Info 37 [00:01:24.000] Search path: /src +Info 38 [00:01:25.000] For info: /src/c.ts :: Config file name: /tsconfig.json +Info 39 [00:01:26.000] Project '/tsconfig.json' (Configured) +Info 39 [00:01:27.000] Files (5) + +Info 39 [00:01:28.000] ----------------------------------------------- +Info 39 [00:01:29.000] Project '/dev/null/autoImportProviderProject1*' (AutoImportProvider) +Info 39 [00:01:30.000] Files (1) + +Info 39 [00:01:31.000] ----------------------------------------------- +Info 39 [00:01:32.000] Open files: +Info 39 [00:01:33.000] FileName: /src/a.ts ProjectRootPath: undefined +Info 39 [00:01:34.000] Projects: /tsconfig.json +Info 39 [00:01:35.000] FileName: /src/b.ts ProjectRootPath: undefined +Info 39 [00:01:36.000] Projects: /tsconfig.json +Info 39 [00:01:37.000] FileName: /src/c.ts ProjectRootPath: undefined +Info 39 [00:01:38.000] Projects: /tsconfig.json After request PolledWatches:: @@ -296,11 +296,11 @@ FsWatchesRecursive:: /node_modules: {} -Info 39 [16:01:39.000] response: +Info 39 [00:01:39.000] response: { "responseRequired": false } -Info 40 [16:01:40.000] request: +Info 40 [00:01:40.000] request: { "seq": 0, "type": "request", @@ -336,7 +336,7 @@ FsWatchesRecursive:: /node_modules: {} -Info 41 [16:01:41.000] response: +Info 41 [00:01:41.000] response: {"seq":0,"type":"response","command":"configure","request_seq":0,"success":true,"performanceData":{"updateGraphDurationMs":*,"createAutoImportProviderProgramDurationMs":*}} After request @@ -360,11 +360,11 @@ FsWatchesRecursive:: /node_modules: {} -Info 42 [16:01:42.000] response: +Info 42 [00:01:42.000] response: { "responseRequired": false } -Info 43 [16:01:43.000] request: +Info 43 [00:01:43.000] request: { "seq": 0, "type": "request", @@ -397,17 +397,17 @@ FsWatchesRecursive:: /node_modules: {} -Info 44 [16:01:44.000] getCompletionData: Get current token: * -Info 45 [16:01:45.000] getCompletionData: Is inside comment: * -Info 46 [16:01:46.000] getCompletionData: Get previous token: * -Info 47 [16:01:47.000] getExportInfoMap: cache miss or empty; calculating new results -Info 48 [16:01:48.000] forEachExternalModuleToImportFrom autoImportProvider: * -Info 49 [16:01:49.000] getExportInfoMap: done in * ms -Info 50 [16:01:50.000] collectAutoImports: resolved 0 module specifiers, plus 0 ambient and 1 from cache -Info 51 [16:01:51.000] collectAutoImports: response is incomplete -Info 52 [16:01:52.000] collectAutoImports: * -Info 53 [16:01:53.000] getCompletionData: Semantic work: * -Info 54 [16:01:54.000] getCompletionsAtPosition: getCompletionEntriesFromSymbols: * +Info 44 [00:01:44.000] getCompletionData: Get current token: * +Info 45 [00:01:45.000] getCompletionData: Is inside comment: * +Info 46 [00:01:46.000] getCompletionData: Get previous token: * +Info 47 [00:01:47.000] getExportInfoMap: cache miss or empty; calculating new results +Info 48 [00:01:48.000] forEachExternalModuleToImportFrom autoImportProvider: * +Info 49 [00:01:49.000] getExportInfoMap: done in * ms +Info 50 [00:01:50.000] collectAutoImports: resolved 0 module specifiers, plus 0 ambient and 1 from cache +Info 51 [00:01:51.000] collectAutoImports: response is incomplete +Info 52 [00:01:52.000] collectAutoImports: * +Info 53 [00:01:53.000] getCompletionData: Semantic work: * +Info 54 [00:01:54.000] getCompletionsAtPosition: getCompletionEntriesFromSymbols: * After request PolledWatches:: @@ -430,7 +430,7 @@ FsWatchesRecursive:: /node_modules: {} -Info 55 [16:01:55.000] response: +Info 55 [00:01:55.000] response: { "response": { "flags": 1, @@ -861,7 +861,7 @@ Info 55 [16:01:55.000] response: }, "responseRequired": true } -Info 56 [16:01:56.000] request: +Info 56 [00:01:56.000] request: { "seq": 0, "type": "request", @@ -894,17 +894,17 @@ FsWatchesRecursive:: /node_modules: {} -Info 57 [16:01:57.000] getCompletionData: Get current token: * -Info 58 [16:01:58.000] getCompletionData: Is inside comment: * -Info 59 [16:01:59.000] getCompletionData: Get previous token: * -Info 60 [16:02:00.000] getExportInfoMap: cache miss or empty; calculating new results -Info 61 [16:02:01.000] forEachExternalModuleToImportFrom autoImportProvider: * -Info 62 [16:02:02.000] getExportInfoMap: done in * ms -Info 63 [16:02:03.000] collectAutoImports: resolved 2 module specifiers, plus 0 ambient and 0 from cache -Info 64 [16:02:04.000] collectAutoImports: response is complete -Info 65 [16:02:05.000] collectAutoImports: * -Info 66 [16:02:06.000] getCompletionData: Semantic work: * -Info 67 [16:02:07.000] getCompletionsAtPosition: getCompletionEntriesFromSymbols: * +Info 57 [00:01:57.000] getCompletionData: Get current token: * +Info 58 [00:01:58.000] getCompletionData: Is inside comment: * +Info 59 [00:01:59.000] getCompletionData: Get previous token: * +Info 60 [00:02:00.000] getExportInfoMap: cache miss or empty; calculating new results +Info 61 [00:02:01.000] forEachExternalModuleToImportFrom autoImportProvider: * +Info 62 [00:02:02.000] getExportInfoMap: done in * ms +Info 63 [00:02:03.000] collectAutoImports: resolved 2 module specifiers, plus 0 ambient and 0 from cache +Info 64 [00:02:04.000] collectAutoImports: response is complete +Info 65 [00:02:05.000] collectAutoImports: * +Info 66 [00:02:06.000] getCompletionData: Semantic work: * +Info 67 [00:02:07.000] getCompletionsAtPosition: getCompletionEntriesFromSymbols: * After request PolledWatches:: @@ -927,7 +927,7 @@ FsWatchesRecursive:: /node_modules: {} -Info 68 [16:02:08.000] response: +Info 68 [00:02:08.000] response: { "response": { "flags": 11, @@ -1009,12 +1009,12 @@ Info 68 [16:02:08.000] response: }, "responseRequired": true } -Info 69 [16:02:12.000] DirectoryWatcher:: Triggered with /node_modules/.staging :: WatchInfo: /node_modules 1 undefined WatchType: node_modules for closed script infos and package.jsons affecting module specifier cache -Info 70 [16:02:13.000] Elapsed:: *ms DirectoryWatcher:: Triggered with /node_modules/.staging :: WatchInfo: /node_modules 1 undefined WatchType: node_modules for closed script infos and package.jsons affecting module specifier cache -Info 71 [16:02:16.000] DirectoryWatcher:: Triggered with /node_modules/.staging/mobx-12345678 :: WatchInfo: /node_modules 1 undefined WatchType: node_modules for closed script infos and package.jsons affecting module specifier cache -Info 72 [16:02:17.000] Elapsed:: *ms DirectoryWatcher:: Triggered with /node_modules/.staging/mobx-12345678 :: WatchInfo: /node_modules 1 undefined WatchType: node_modules for closed script infos and package.jsons affecting module specifier cache -Info 73 [16:02:20.000] DirectoryWatcher:: Triggered with /node_modules/.staging/mobx-12345678/package.json :: WatchInfo: /node_modules 1 undefined WatchType: node_modules for closed script infos and package.jsons affecting module specifier cache -Info 74 [16:02:21.000] Elapsed:: *ms DirectoryWatcher:: Triggered with /node_modules/.staging/mobx-12345678/package.json :: WatchInfo: /node_modules 1 undefined WatchType: node_modules for closed script infos and package.jsons affecting module specifier cache +Info 69 [00:02:12.000] DirectoryWatcher:: Triggered with /node_modules/.staging :: WatchInfo: /node_modules 1 undefined WatchType: node_modules for closed script infos and package.jsons affecting module specifier cache +Info 70 [00:02:13.000] Elapsed:: *ms DirectoryWatcher:: Triggered with /node_modules/.staging :: WatchInfo: /node_modules 1 undefined WatchType: node_modules for closed script infos and package.jsons affecting module specifier cache +Info 71 [00:02:16.000] DirectoryWatcher:: Triggered with /node_modules/.staging/mobx-12345678 :: WatchInfo: /node_modules 1 undefined WatchType: node_modules for closed script infos and package.jsons affecting module specifier cache +Info 72 [00:02:17.000] Elapsed:: *ms DirectoryWatcher:: Triggered with /node_modules/.staging/mobx-12345678 :: WatchInfo: /node_modules 1 undefined WatchType: node_modules for closed script infos and package.jsons affecting module specifier cache +Info 73 [00:02:20.000] DirectoryWatcher:: Triggered with /node_modules/.staging/mobx-12345678/package.json :: WatchInfo: /node_modules 1 undefined WatchType: node_modules for closed script infos and package.jsons affecting module specifier cache +Info 74 [00:02:21.000] Elapsed:: *ms DirectoryWatcher:: Triggered with /node_modules/.staging/mobx-12345678/package.json :: WatchInfo: /node_modules 1 undefined WatchType: node_modules for closed script infos and package.jsons affecting module specifier cache Before running timeout callbacks //// [/node_modules/.staging/mobx-12345678/package.json] {} 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 42c69a1fbf31f..79473b9c13f96 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 @@ -1,5 +1,5 @@ -Info 0 [16:00:17.000] Provided types map file "/a/lib/typesMap.json" doesn't exist -Info 1 [16:00:18.000] request: +Info 0 [00:00:17.000] Provided types map file "/a/lib/typesMap.json" doesn't exist +Info 1 [00:00:18.000] request: { "seq": 0, "type": "request", @@ -43,11 +43,11 @@ FsWatches:: FsWatchesRecursive:: -Info 2 [16:00:19.000] Search path: /a -Info 3 [16:00:20.000] For info: /a/index.ts :: Config file name: /a/tsconfig.json -Info 4 [16:00:21.000] Creating configuration project /a/tsconfig.json -Info 5 [16:00:22.000] FileWatcher:: Added:: WatchInfo: /a/tsconfig.json 2000 undefined Project: /a/tsconfig.json WatchType: Config file -Info 6 [16:00:23.000] Config: /a/tsconfig.json : { +Info 2 [00:00:19.000] Search path: /a +Info 3 [00:00:20.000] For info: /a/index.ts :: Config file name: /a/tsconfig.json +Info 4 [00:00:21.000] Creating configuration project /a/tsconfig.json +Info 5 [00:00:22.000] FileWatcher:: Added:: WatchInfo: /a/tsconfig.json 2000 undefined Project: /a/tsconfig.json WatchType: Config file +Info 6 [00:00:23.000] Config: /a/tsconfig.json : { "rootNames": [ "/a/index.ts" ], @@ -56,40 +56,40 @@ Info 6 [16:00:23.000] Config: /a/tsconfig.json : { "configFilePath": "/a/tsconfig.json" } } -Info 7 [16:00:24.000] DirectoryWatcher:: Added:: WatchInfo: /a 1 undefined Config: /a/tsconfig.json WatchType: Wild card directory -Info 8 [16:00:25.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /a 1 undefined Config: /a/tsconfig.json WatchType: Wild card directory -Info 9 [16:00:26.000] Plugins were requested but not running in environment that supports 'require'. Nothing will be loaded -Info 10 [16:00:27.000] Starting updateGraphWorker: Project: /a/tsconfig.json -Info 11 [16:00:28.000] FileWatcher:: Added:: WatchInfo: /a/lib/lib.d.ts 500 undefined Project: /a/tsconfig.json WatchType: Missing file -Info 12 [16:00:29.000] DirectoryWatcher:: Added:: WatchInfo: /a/node_modules/@types 1 undefined Project: /a/tsconfig.json WatchType: Type roots -Info 13 [16:00:30.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /a/node_modules/@types 1 undefined Project: /a/tsconfig.json WatchType: Type roots -Info 14 [16:00:31.000] Finishing updateGraphWorker: Project: /a/tsconfig.json Version: 1 structureChanged: true structureIsReused:: Not Elapsed:: *ms -Info 15 [16:00:32.000] Project '/a/tsconfig.json' (Configured) -Info 16 [16:00:33.000] Files (1) +Info 7 [00:00:24.000] DirectoryWatcher:: Added:: WatchInfo: /a 1 undefined Config: /a/tsconfig.json WatchType: Wild card directory +Info 8 [00:00:25.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /a 1 undefined Config: /a/tsconfig.json WatchType: Wild card directory +Info 9 [00:00:26.000] Plugins were requested but not running in environment that supports 'require'. Nothing will be loaded +Info 10 [00:00:27.000] Starting updateGraphWorker: Project: /a/tsconfig.json +Info 11 [00:00:28.000] FileWatcher:: Added:: WatchInfo: /a/lib/lib.d.ts 500 undefined Project: /a/tsconfig.json WatchType: Missing file +Info 12 [00:00:29.000] DirectoryWatcher:: Added:: WatchInfo: /a/node_modules/@types 1 undefined Project: /a/tsconfig.json WatchType: Type roots +Info 13 [00:00:30.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /a/node_modules/@types 1 undefined Project: /a/tsconfig.json WatchType: Type roots +Info 14 [00:00:31.000] Finishing updateGraphWorker: Project: /a/tsconfig.json Version: 1 structureChanged: true structureIsReused:: Not Elapsed:: *ms +Info 15 [00:00:32.000] Project '/a/tsconfig.json' (Configured) +Info 16 [00:00:33.000] Files (1) /a/index.ts index.ts Matched by default include pattern '**/*' -Info 17 [16:00:34.000] ----------------------------------------------- -Info 18 [16:00:35.000] Search path: /a -Info 19 [16:00:36.000] For info: /a/tsconfig.json :: Config file name: /tsconfig.json -Info 20 [16:00:37.000] Creating configuration project /tsconfig.json -Info 21 [16:00:38.000] FileWatcher:: Added:: WatchInfo: /tsconfig.json 2000 undefined Project: /tsconfig.json WatchType: Config file -Info 22 [16:00:39.000] Search path: / -Info 23 [16:00:40.000] For info: /tsconfig.json :: No config files found. -Info 24 [16:00:41.000] Project '/a/tsconfig.json' (Configured) -Info 24 [16:00:42.000] Files (1) - -Info 24 [16:00:43.000] ----------------------------------------------- -Info 24 [16:00:44.000] Project '/tsconfig.json' (Configured) -Info 24 [16:00:45.000] Files (0) InitialLoadPending - -Info 24 [16:00:46.000] ----------------------------------------------- -Info 24 [16:00:47.000] Open files: -Info 24 [16:00:48.000] FileName: /a/index.ts ProjectRootPath: undefined -Info 24 [16:00:49.000] Projects: /a/tsconfig.json +Info 17 [00:00:34.000] ----------------------------------------------- +Info 18 [00:00:35.000] Search path: /a +Info 19 [00:00:36.000] For info: /a/tsconfig.json :: Config file name: /tsconfig.json +Info 20 [00:00:37.000] Creating configuration project /tsconfig.json +Info 21 [00:00:38.000] FileWatcher:: Added:: WatchInfo: /tsconfig.json 2000 undefined Project: /tsconfig.json WatchType: Config file +Info 22 [00:00:39.000] Search path: / +Info 23 [00:00:40.000] For info: /tsconfig.json :: No config files found. +Info 24 [00:00:41.000] Project '/a/tsconfig.json' (Configured) +Info 24 [00:00:42.000] Files (1) + +Info 24 [00:00:43.000] ----------------------------------------------- +Info 24 [00:00:44.000] Project '/tsconfig.json' (Configured) +Info 24 [00:00:45.000] Files (0) InitialLoadPending + +Info 24 [00:00:46.000] ----------------------------------------------- +Info 24 [00:00:47.000] Open files: +Info 24 [00:00:48.000] FileName: /a/index.ts ProjectRootPath: undefined +Info 24 [00:00:49.000] Projects: /a/tsconfig.json After request PolledWatches:: @@ -108,11 +108,11 @@ FsWatchesRecursive:: /a: {} -Info 24 [16:00:50.000] response: +Info 24 [00:00:50.000] response: { "responseRequired": false } -Info 25 [16:00:51.000] request: +Info 25 [00:00:51.000] request: { "seq": 0, "type": "request", @@ -139,8 +139,8 @@ FsWatchesRecursive:: /a: {} -Info 26 [16:00:52.000] Loading configured project /tsconfig.json -Info 27 [16:00:53.000] Config: /tsconfig.json : { +Info 26 [00:00:52.000] Loading configured project /tsconfig.json +Info 27 [00:00:53.000] Config: /tsconfig.json : { "rootNames": [], "options": { "configFilePath": "/tsconfig.json" @@ -156,9 +156,9 @@ Info 27 [16:00:53.000] Config: /tsconfig.json : { } ] } -Info 28 [16:00:54.000] Plugins were requested but not running in environment that supports 'require'. Nothing will be loaded -Info 29 [16:00:55.000] Starting updateGraphWorker: Project: /tsconfig.json -Info 30 [16:00:56.000] Config: /b/tsconfig.json : { +Info 28 [00:00:54.000] Plugins were requested but not running in environment that supports 'require'. Nothing will be loaded +Info 29 [00:00:55.000] Starting updateGraphWorker: Project: /tsconfig.json +Info 30 [00:00:56.000] Config: /b/tsconfig.json : { "rootNames": [ "/b/index.ts" ], @@ -173,21 +173,21 @@ Info 30 [16:00:56.000] Config: /b/tsconfig.json : { } ] } -Info 31 [16:00:57.000] FileWatcher:: Added:: WatchInfo: /b/tsconfig.json 2000 undefined Project: /tsconfig.json WatchType: Config file -Info 32 [16:00:58.000] DirectoryWatcher:: Added:: WatchInfo: /b 1 undefined Config: /b/tsconfig.json WatchType: Wild card directory -Info 33 [16:00:59.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /b 1 undefined Config: /b/tsconfig.json WatchType: Wild card directory -Info 34 [16:01:00.000] Finishing updateGraphWorker: Project: /tsconfig.json Version: 1 structureChanged: true structureIsReused:: Not Elapsed:: *ms -Info 35 [16:01:01.000] Different program with same set of files -Info 36 [16:01:02.000] Creating configuration project /b/tsconfig.json -Info 37 [16:01:03.000] Plugins were requested but not running in environment that supports 'require'. Nothing will be loaded -Info 38 [16:01:04.000] FileWatcher:: Added:: WatchInfo: /b/index.ts 500 undefined WatchType: Closed Script info -Info 39 [16:01:05.000] Starting updateGraphWorker: Project: /b/tsconfig.json -Info 40 [16:01:06.000] FileWatcher:: Added:: WatchInfo: /a/lib/lib.d.ts 500 undefined Project: /b/tsconfig.json WatchType: Missing file -Info 41 [16:01:07.000] DirectoryWatcher:: Added:: WatchInfo: /b/node_modules/@types 1 undefined Project: /b/tsconfig.json WatchType: Type roots -Info 42 [16:01:08.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /b/node_modules/@types 1 undefined Project: /b/tsconfig.json WatchType: Type roots -Info 43 [16:01:09.000] Finishing updateGraphWorker: Project: /b/tsconfig.json Version: 1 structureChanged: true structureIsReused:: Not Elapsed:: *ms -Info 44 [16:01:10.000] Project '/b/tsconfig.json' (Configured) -Info 45 [16:01:11.000] Files (2) +Info 31 [00:00:57.000] FileWatcher:: Added:: WatchInfo: /b/tsconfig.json 2000 undefined Project: /tsconfig.json WatchType: Config file +Info 32 [00:00:58.000] DirectoryWatcher:: Added:: WatchInfo: /b 1 undefined Config: /b/tsconfig.json WatchType: Wild card directory +Info 33 [00:00:59.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /b 1 undefined Config: /b/tsconfig.json WatchType: Wild card directory +Info 34 [00:01:00.000] Finishing updateGraphWorker: Project: /tsconfig.json Version: 1 structureChanged: true structureIsReused:: Not Elapsed:: *ms +Info 35 [00:01:01.000] Different program with same set of files +Info 36 [00:01:02.000] Creating configuration project /b/tsconfig.json +Info 37 [00:01:03.000] Plugins were requested but not running in environment that supports 'require'. Nothing will be loaded +Info 38 [00:01:04.000] FileWatcher:: Added:: WatchInfo: /b/index.ts 500 undefined WatchType: Closed Script info +Info 39 [00:01:05.000] Starting updateGraphWorker: Project: /b/tsconfig.json +Info 40 [00:01:06.000] FileWatcher:: Added:: WatchInfo: /a/lib/lib.d.ts 500 undefined Project: /b/tsconfig.json WatchType: Missing file +Info 41 [00:01:07.000] DirectoryWatcher:: Added:: WatchInfo: /b/node_modules/@types 1 undefined Project: /b/tsconfig.json WatchType: Type roots +Info 42 [00:01:08.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /b/node_modules/@types 1 undefined Project: /b/tsconfig.json WatchType: Type roots +Info 43 [00:01:09.000] Finishing updateGraphWorker: Project: /b/tsconfig.json Version: 1 structureChanged: true structureIsReused:: Not Elapsed:: *ms +Info 44 [00:01:10.000] Project '/b/tsconfig.json' (Configured) +Info 45 [00:01:11.000] Files (2) /a/index.ts /b/index.ts @@ -197,7 +197,7 @@ Info 45 [16:01:11.000] Files (2) index.ts Matched by default include pattern '**/*' -Info 46 [16:01:12.000] ----------------------------------------------- +Info 46 [00:01:12.000] ----------------------------------------------- After request PolledWatches:: @@ -224,7 +224,7 @@ FsWatchesRecursive:: /b: {} -Info 47 [16:01:13.000] response: +Info 47 [00:01:13.000] response: { "response": [ { 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 93024b7a64e1f..e7727ee2a8362 100644 --- a/tests/baselines/reference/tsserver/navTo/should-de-duplicate-symbols.js +++ b/tests/baselines/reference/tsserver/navTo/should-de-duplicate-symbols.js @@ -1,5 +1,5 @@ -Info 0 [16:00:15.000] Provided types map file "/a/lib/typesMap.json" doesn't exist -Info 1 [16:00:16.000] request: +Info 0 [00:00:15.000] Provided types map file "/a/lib/typesMap.json" doesn't exist +Info 1 [00:00:16.000] request: { "seq": 0, "type": "request", @@ -40,11 +40,11 @@ FsWatches:: FsWatchesRecursive:: -Info 2 [16:00:17.000] Search path: /a -Info 3 [16:00:18.000] For info: /a/index.ts :: Config file name: /a/tsconfig.json -Info 4 [16:00:19.000] Creating configuration project /a/tsconfig.json -Info 5 [16:00:20.000] FileWatcher:: Added:: WatchInfo: /a/tsconfig.json 2000 undefined Project: /a/tsconfig.json WatchType: Config file -Info 6 [16:00:21.000] Config: /a/tsconfig.json : { +Info 2 [00:00:17.000] Search path: /a +Info 3 [00:00:18.000] For info: /a/index.ts :: Config file name: /a/tsconfig.json +Info 4 [00:00:19.000] Creating configuration project /a/tsconfig.json +Info 5 [00:00:20.000] FileWatcher:: Added:: WatchInfo: /a/tsconfig.json 2000 undefined Project: /a/tsconfig.json WatchType: Config file +Info 6 [00:00:21.000] Config: /a/tsconfig.json : { "rootNames": [ "/a/index.ts" ], @@ -53,32 +53,32 @@ Info 6 [16:00:21.000] Config: /a/tsconfig.json : { "configFilePath": "/a/tsconfig.json" } } -Info 7 [16:00:22.000] DirectoryWatcher:: Added:: WatchInfo: /a 1 undefined Config: /a/tsconfig.json WatchType: Wild card directory -Info 8 [16:00:23.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /a 1 undefined Config: /a/tsconfig.json WatchType: Wild card directory -Info 9 [16:00:24.000] Plugins were requested but not running in environment that supports 'require'. Nothing will be loaded -Info 10 [16:00:25.000] Starting updateGraphWorker: Project: /a/tsconfig.json -Info 11 [16:00:26.000] FileWatcher:: Added:: WatchInfo: /a/lib/lib.d.ts 500 undefined Project: /a/tsconfig.json WatchType: Missing file -Info 12 [16:00:27.000] DirectoryWatcher:: Added:: WatchInfo: /a/node_modules/@types 1 undefined Project: /a/tsconfig.json WatchType: Type roots -Info 13 [16:00:28.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /a/node_modules/@types 1 undefined Project: /a/tsconfig.json WatchType: Type roots -Info 14 [16:00:29.000] Finishing updateGraphWorker: Project: /a/tsconfig.json Version: 1 structureChanged: true structureIsReused:: Not Elapsed:: *ms -Info 15 [16:00:30.000] Project '/a/tsconfig.json' (Configured) -Info 16 [16:00:31.000] Files (1) +Info 7 [00:00:22.000] DirectoryWatcher:: Added:: WatchInfo: /a 1 undefined Config: /a/tsconfig.json WatchType: Wild card directory +Info 8 [00:00:23.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /a 1 undefined Config: /a/tsconfig.json WatchType: Wild card directory +Info 9 [00:00:24.000] Plugins were requested but not running in environment that supports 'require'. Nothing will be loaded +Info 10 [00:00:25.000] Starting updateGraphWorker: Project: /a/tsconfig.json +Info 11 [00:00:26.000] FileWatcher:: Added:: WatchInfo: /a/lib/lib.d.ts 500 undefined Project: /a/tsconfig.json WatchType: Missing file +Info 12 [00:00:27.000] DirectoryWatcher:: Added:: WatchInfo: /a/node_modules/@types 1 undefined Project: /a/tsconfig.json WatchType: Type roots +Info 13 [00:00:28.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /a/node_modules/@types 1 undefined Project: /a/tsconfig.json WatchType: Type roots +Info 14 [00:00:29.000] Finishing updateGraphWorker: Project: /a/tsconfig.json Version: 1 structureChanged: true structureIsReused:: Not Elapsed:: *ms +Info 15 [00:00:30.000] Project '/a/tsconfig.json' (Configured) +Info 16 [00:00:31.000] Files (1) /a/index.ts index.ts Matched by default include pattern '**/*' -Info 17 [16:00:32.000] ----------------------------------------------- -Info 18 [16:00:33.000] Search path: /a -Info 19 [16:00:34.000] For info: /a/tsconfig.json :: No config files found. -Info 20 [16:00:35.000] Project '/a/tsconfig.json' (Configured) -Info 20 [16:00:36.000] Files (1) +Info 17 [00:00:32.000] ----------------------------------------------- +Info 18 [00:00:33.000] Search path: /a +Info 19 [00:00:34.000] For info: /a/tsconfig.json :: No config files found. +Info 20 [00:00:35.000] Project '/a/tsconfig.json' (Configured) +Info 20 [00:00:36.000] Files (1) -Info 20 [16:00:37.000] ----------------------------------------------- -Info 20 [16:00:38.000] Open files: -Info 20 [16:00:39.000] FileName: /a/index.ts ProjectRootPath: undefined -Info 20 [16:00:40.000] Projects: /a/tsconfig.json +Info 20 [00:00:37.000] ----------------------------------------------- +Info 20 [00:00:38.000] Open files: +Info 20 [00:00:39.000] FileName: /a/index.ts ProjectRootPath: undefined +Info 20 [00:00:40.000] Projects: /a/tsconfig.json After request PolledWatches:: @@ -95,11 +95,11 @@ FsWatchesRecursive:: /a: {} -Info 20 [16:00:41.000] response: +Info 20 [00:00:41.000] response: { "responseRequired": false } -Info 21 [16:00:42.000] request: +Info 21 [00:00:42.000] request: { "seq": 0, "type": "request", @@ -124,11 +124,11 @@ FsWatchesRecursive:: /a: {} -Info 22 [16:00:43.000] Search path: /b -Info 23 [16:00:44.000] For info: /b/index.ts :: Config file name: /b/tsconfig.json -Info 24 [16:00:45.000] Creating configuration project /b/tsconfig.json -Info 25 [16:00:46.000] FileWatcher:: Added:: WatchInfo: /b/tsconfig.json 2000 undefined Project: /b/tsconfig.json WatchType: Config file -Info 26 [16:00:47.000] Config: /b/tsconfig.json : { +Info 22 [00:00:43.000] Search path: /b +Info 23 [00:00:44.000] For info: /b/index.ts :: Config file name: /b/tsconfig.json +Info 24 [00:00:45.000] Creating configuration project /b/tsconfig.json +Info 25 [00:00:46.000] FileWatcher:: Added:: WatchInfo: /b/tsconfig.json 2000 undefined Project: /b/tsconfig.json WatchType: Config file +Info 26 [00:00:47.000] Config: /b/tsconfig.json : { "rootNames": [ "/b/index.ts" ], @@ -143,16 +143,16 @@ Info 26 [16:00:47.000] Config: /b/tsconfig.json : { } ] } -Info 27 [16:00:48.000] DirectoryWatcher:: Added:: WatchInfo: /b 1 undefined Config: /b/tsconfig.json WatchType: Wild card directory -Info 28 [16:00:49.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /b 1 undefined Config: /b/tsconfig.json WatchType: Wild card directory -Info 29 [16:00:50.000] Plugins were requested but not running in environment that supports 'require'. Nothing will be loaded -Info 30 [16:00:51.000] Starting updateGraphWorker: Project: /b/tsconfig.json -Info 31 [16:00:52.000] FileWatcher:: Added:: WatchInfo: /a/lib/lib.d.ts 500 undefined Project: /b/tsconfig.json WatchType: Missing file -Info 32 [16:00:53.000] DirectoryWatcher:: Added:: WatchInfo: /b/node_modules/@types 1 undefined Project: /b/tsconfig.json WatchType: Type roots -Info 33 [16:00:54.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /b/node_modules/@types 1 undefined Project: /b/tsconfig.json WatchType: Type roots -Info 34 [16:00:55.000] Finishing updateGraphWorker: Project: /b/tsconfig.json Version: 1 structureChanged: true structureIsReused:: Not Elapsed:: *ms -Info 35 [16:00:56.000] Project '/b/tsconfig.json' (Configured) -Info 36 [16:00:57.000] Files (2) +Info 27 [00:00:48.000] DirectoryWatcher:: Added:: WatchInfo: /b 1 undefined Config: /b/tsconfig.json WatchType: Wild card directory +Info 28 [00:00:49.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /b 1 undefined Config: /b/tsconfig.json WatchType: Wild card directory +Info 29 [00:00:50.000] Plugins were requested but not running in environment that supports 'require'. Nothing will be loaded +Info 30 [00:00:51.000] Starting updateGraphWorker: Project: /b/tsconfig.json +Info 31 [00:00:52.000] FileWatcher:: Added:: WatchInfo: /a/lib/lib.d.ts 500 undefined Project: /b/tsconfig.json WatchType: Missing file +Info 32 [00:00:53.000] DirectoryWatcher:: Added:: WatchInfo: /b/node_modules/@types 1 undefined Project: /b/tsconfig.json WatchType: Type roots +Info 33 [00:00:54.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /b/node_modules/@types 1 undefined Project: /b/tsconfig.json WatchType: Type roots +Info 34 [00:00:55.000] Finishing updateGraphWorker: Project: /b/tsconfig.json Version: 1 structureChanged: true structureIsReused:: Not Elapsed:: *ms +Info 35 [00:00:56.000] Project '/b/tsconfig.json' (Configured) +Info 36 [00:00:57.000] Files (2) /a/index.ts /b/index.ts @@ -162,22 +162,22 @@ Info 36 [16:00:57.000] Files (2) index.ts Matched by default include pattern '**/*' -Info 37 [16:00:58.000] ----------------------------------------------- -Info 38 [16:00:59.000] Search path: /b -Info 39 [16:01:00.000] For info: /b/tsconfig.json :: No config files found. -Info 40 [16:01:01.000] Project '/a/tsconfig.json' (Configured) -Info 40 [16:01:02.000] Files (1) - -Info 40 [16:01:03.000] ----------------------------------------------- -Info 40 [16:01:04.000] Project '/b/tsconfig.json' (Configured) -Info 40 [16:01:05.000] Files (2) - -Info 40 [16:01:06.000] ----------------------------------------------- -Info 40 [16:01:07.000] Open files: -Info 40 [16:01:08.000] FileName: /a/index.ts ProjectRootPath: undefined -Info 40 [16:01:09.000] Projects: /a/tsconfig.json,/b/tsconfig.json -Info 40 [16:01:10.000] FileName: /b/index.ts ProjectRootPath: undefined -Info 40 [16:01:11.000] Projects: /b/tsconfig.json +Info 37 [00:00:58.000] ----------------------------------------------- +Info 38 [00:00:59.000] Search path: /b +Info 39 [00:01:00.000] For info: /b/tsconfig.json :: No config files found. +Info 40 [00:01:01.000] Project '/a/tsconfig.json' (Configured) +Info 40 [00:01:02.000] Files (1) + +Info 40 [00:01:03.000] ----------------------------------------------- +Info 40 [00:01:04.000] Project '/b/tsconfig.json' (Configured) +Info 40 [00:01:05.000] Files (2) + +Info 40 [00:01:06.000] ----------------------------------------------- +Info 40 [00:01:07.000] Open files: +Info 40 [00:01:08.000] FileName: /a/index.ts ProjectRootPath: undefined +Info 40 [00:01:09.000] Projects: /a/tsconfig.json,/b/tsconfig.json +Info 40 [00:01:10.000] FileName: /b/index.ts ProjectRootPath: undefined +Info 40 [00:01:11.000] Projects: /b/tsconfig.json After request PolledWatches:: @@ -200,11 +200,11 @@ FsWatchesRecursive:: /b: {} -Info 40 [16:01:12.000] response: +Info 40 [00:01:12.000] response: { "responseRequired": false } -Info 41 [16:01:13.000] request: +Info 41 [00:01:13.000] request: { "seq": 0, "type": "request", @@ -258,7 +258,7 @@ FsWatchesRecursive:: /b: {} -Info 42 [16:01:14.000] response: +Info 42 [00:01:14.000] response: { "response": [ { diff --git a/tests/baselines/reference/tsserver/openfile/when-file-makes-edits-to-add/remove-comment-directives,-they-are-handled-correcrly.js b/tests/baselines/reference/tsserver/openfile/when-file-makes-edits-to-add/remove-comment-directives,-they-are-handled-correcrly.js index 93ed55beb011a..b7291ccd32db0 100644 --- a/tests/baselines/reference/tsserver/openfile/when-file-makes-edits-to-add/remove-comment-directives,-they-are-handled-correcrly.js +++ b/tests/baselines/reference/tsserver/openfile/when-file-makes-edits-to-add/remove-comment-directives,-they-are-handled-correcrly.js @@ -1,5 +1,5 @@ -Info 0 [16:00:19.000] Provided types map file "/a/lib/typesMap.json" doesn't exist -Info 1 [16:00:20.000] request: +Info 0 [00:00:19.000] Provided types map file "/a/lib/typesMap.json" doesn't exist +Info 1 [00:00:20.000] request: { "seq": 0, "type": "request", @@ -44,18 +44,18 @@ FsWatches:: FsWatchesRecursive:: -Info 2 [16:00:21.000] Search path: /user/username/projects/myproject -Info 3 [16:00:22.000] For info: /user/username/projects/myproject/file.ts :: No config files found. -Info 4 [16:00:23.000] Plugins were requested but not running in environment that supports 'require'. Nothing will be loaded -Info 5 [16:00:24.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/tsconfig.json 2000 undefined WatchType: Config file for the inferred project root -Info 6 [16:00:25.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/jsconfig.json 2000 undefined WatchType: Config file for the inferred project root -Info 7 [16:00:26.000] Starting updateGraphWorker: Project: /dev/null/inferredProject1* -Info 8 [16:00:27.000] FileWatcher:: Added:: WatchInfo: /a/lib/lib.d.ts 500 undefined WatchType: Closed Script info -Info 9 [16:00:28.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /dev/null/inferredProject1* WatchType: Type roots -Info 10 [16:00:29.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /dev/null/inferredProject1* WatchType: Type roots -Info 11 [16:00:30.000] Finishing updateGraphWorker: Project: /dev/null/inferredProject1* Version: 1 structureChanged: true structureIsReused:: Not Elapsed:: *ms -Info 12 [16:00:31.000] Project '/dev/null/inferredProject1*' (Inferred) -Info 13 [16:00:32.000] Files (2) +Info 2 [00:00:21.000] Search path: /user/username/projects/myproject +Info 3 [00:00:22.000] For info: /user/username/projects/myproject/file.ts :: No config files found. +Info 4 [00:00:23.000] Plugins were requested but not running in environment that supports 'require'. Nothing will be loaded +Info 5 [00:00:24.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/tsconfig.json 2000 undefined WatchType: Config file for the inferred project root +Info 6 [00:00:25.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/jsconfig.json 2000 undefined WatchType: Config file for the inferred project root +Info 7 [00:00:26.000] Starting updateGraphWorker: Project: /dev/null/inferredProject1* +Info 8 [00:00:27.000] FileWatcher:: Added:: WatchInfo: /a/lib/lib.d.ts 500 undefined WatchType: Closed Script info +Info 9 [00:00:28.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /dev/null/inferredProject1* WatchType: Type roots +Info 10 [00:00:29.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /dev/null/inferredProject1* WatchType: Type roots +Info 11 [00:00:30.000] Finishing updateGraphWorker: Project: /dev/null/inferredProject1* Version: 1 structureChanged: true structureIsReused:: Not Elapsed:: *ms +Info 12 [00:00:31.000] Project '/dev/null/inferredProject1*' (Inferred) +Info 13 [00:00:32.000] Files (2) /a/lib/lib.d.ts /user/username/projects/myproject/file.ts @@ -65,14 +65,14 @@ Info 13 [16:00:32.000] Files (2) file.ts Root file specified for compilation -Info 14 [16:00:33.000] ----------------------------------------------- -Info 15 [16:00:34.000] Project '/dev/null/inferredProject1*' (Inferred) -Info 15 [16:00:35.000] Files (2) +Info 14 [00:00:33.000] ----------------------------------------------- +Info 15 [00:00:34.000] Project '/dev/null/inferredProject1*' (Inferred) +Info 15 [00:00:35.000] Files (2) -Info 15 [16:00:36.000] ----------------------------------------------- -Info 15 [16:00:37.000] Open files: -Info 15 [16:00:38.000] FileName: /user/username/projects/myproject/file.ts ProjectRootPath: undefined -Info 15 [16:00:39.000] Projects: /dev/null/inferredProject1* +Info 15 [00:00:36.000] ----------------------------------------------- +Info 15 [00:00:37.000] Open files: +Info 15 [00:00:38.000] FileName: /user/username/projects/myproject/file.ts ProjectRootPath: undefined +Info 15 [00:00:39.000] Projects: /dev/null/inferredProject1* After request PolledWatches:: @@ -89,11 +89,11 @@ FsWatches:: FsWatchesRecursive:: -Info 15 [16:00:40.000] response: +Info 15 [00:00:40.000] response: { "responseRequired": false } -Info 16 [16:00:41.000] request: +Info 16 [00:00:41.000] request: { "command": "geterr", "arguments": { @@ -137,7 +137,7 @@ FsWatches:: FsWatchesRecursive:: -Info 17 [16:00:42.000] response: +Info 17 [00:00:42.000] response: { "responseRequired": false } @@ -157,7 +157,7 @@ FsWatches:: FsWatchesRecursive:: -Info 18 [16:00:43.000] event: +Info 18 [00:00:43.000] event: {"seq":0,"type":"event","event":"syntaxDiag","body":{"file":"/user/username/projects/myproject/file.ts","diagnostics":[]}} After checking timeout queue length (1) and running @@ -191,7 +191,7 @@ FsWatches:: FsWatchesRecursive:: -Info 19 [16:00:44.000] event: +Info 19 [00:00:44.000] event: {"seq":0,"type":"event","event":"semanticDiag","body":{"file":"/user/username/projects/myproject/file.ts","diagnostics":[]}} Before running immediate callbacks and checking length (1) @@ -225,9 +225,9 @@ FsWatches:: FsWatchesRecursive:: -Info 20 [16:00:45.000] event: +Info 20 [00:00:45.000] event: {"seq":0,"type":"event","event":"suggestionDiag","body":{"file":"/user/username/projects/myproject/file.ts","diagnostics":[]}} -Info 21 [16:00:46.000] event: +Info 21 [00:00:46.000] event: {"seq":0,"type":"event","event":"requestCompleted","body":{"request_seq":1}} Before running immediate callbacks and checking length (1) @@ -245,7 +245,7 @@ FsWatches:: FsWatchesRecursive:: -Info 22 [16:00:47.000] request: +Info 22 [00:00:47.000] request: { "command": "updateOpen", "arguments": { @@ -303,12 +303,12 @@ FsWatches:: FsWatchesRecursive:: -Info 23 [16:00:48.000] response: +Info 23 [00:00:48.000] response: { "response": true, "responseRequired": true } -Info 24 [16:00:49.000] request: +Info 24 [00:00:49.000] request: { "command": "geterr", "arguments": { @@ -352,7 +352,7 @@ FsWatches:: FsWatchesRecursive:: -Info 25 [16:00:50.000] response: +Info 25 [00:00:50.000] response: { "responseRequired": false } @@ -372,10 +372,10 @@ FsWatches:: FsWatchesRecursive:: -Info 26 [16:00:51.000] Starting updateGraphWorker: Project: /dev/null/inferredProject1* -Info 27 [16:00:52.000] Finishing updateGraphWorker: Project: /dev/null/inferredProject1* Version: 2 structureChanged: false structureIsReused:: Completely Elapsed:: *ms -Info 28 [16:00:53.000] Different program with same set of files -Info 29 [16:00:54.000] event: +Info 26 [00:00:51.000] Starting updateGraphWorker: Project: /dev/null/inferredProject1* +Info 27 [00:00:52.000] Finishing updateGraphWorker: Project: /dev/null/inferredProject1* Version: 2 structureChanged: false structureIsReused:: Completely Elapsed:: *ms +Info 28 [00:00:53.000] Different program with same set of files +Info 29 [00:00:54.000] event: {"seq":0,"type":"event","event":"syntaxDiag","body":{"file":"/user/username/projects/myproject/file.ts","diagnostics":[]}} After checking timeout queue length (1) and running @@ -409,7 +409,7 @@ FsWatches:: FsWatchesRecursive:: -Info 30 [16:00:55.000] event: +Info 30 [00:00:55.000] event: {"seq":0,"type":"event","event":"semanticDiag","body":{"file":"/user/username/projects/myproject/file.ts","diagnostics":[{"start":{"line":4,"offset":9},"end":{"line":4,"offset":10},"text":"Type 'number' is not assignable to type 'string'.","code":2322,"category":"error"}]}} Before running immediate callbacks and checking length (1) @@ -443,9 +443,9 @@ FsWatches:: FsWatchesRecursive:: -Info 31 [16:00:56.000] event: +Info 31 [00:00:56.000] event: {"seq":0,"type":"event","event":"suggestionDiag","body":{"file":"/user/username/projects/myproject/file.ts","diagnostics":[]}} -Info 32 [16:00:57.000] event: +Info 32 [00:00:57.000] event: {"seq":0,"type":"event","event":"requestCompleted","body":{"request_seq":3}} Before running immediate callbacks and checking length (1) @@ -463,7 +463,7 @@ FsWatches:: FsWatchesRecursive:: -Info 33 [16:00:58.000] request: +Info 33 [00:00:58.000] request: { "command": "updateOpen", "arguments": { @@ -521,12 +521,12 @@ FsWatches:: FsWatchesRecursive:: -Info 34 [16:00:59.000] response: +Info 34 [00:00:59.000] response: { "response": true, "responseRequired": true } -Info 35 [16:01:00.000] request: +Info 35 [00:01:00.000] request: { "command": "geterr", "arguments": { @@ -570,7 +570,7 @@ FsWatches:: FsWatchesRecursive:: -Info 36 [16:01:01.000] response: +Info 36 [00:01:01.000] response: { "responseRequired": false } @@ -590,10 +590,10 @@ FsWatches:: FsWatchesRecursive:: -Info 37 [16:01:02.000] Starting updateGraphWorker: Project: /dev/null/inferredProject1* -Info 38 [16:01:03.000] Finishing updateGraphWorker: Project: /dev/null/inferredProject1* Version: 3 structureChanged: false structureIsReused:: Completely Elapsed:: *ms -Info 39 [16:01:04.000] Different program with same set of files -Info 40 [16:01:05.000] event: +Info 37 [00:01:02.000] Starting updateGraphWorker: Project: /dev/null/inferredProject1* +Info 38 [00:01:03.000] Finishing updateGraphWorker: Project: /dev/null/inferredProject1* Version: 3 structureChanged: false structureIsReused:: Completely Elapsed:: *ms +Info 39 [00:01:04.000] Different program with same set of files +Info 40 [00:01:05.000] event: {"seq":0,"type":"event","event":"syntaxDiag","body":{"file":"/user/username/projects/myproject/file.ts","diagnostics":[]}} After checking timeout queue length (1) and running @@ -627,7 +627,7 @@ FsWatches:: FsWatchesRecursive:: -Info 41 [16:01:06.000] event: +Info 41 [00:01:06.000] event: {"seq":0,"type":"event","event":"semanticDiag","body":{"file":"/user/username/projects/myproject/file.ts","diagnostics":[]}} Before running immediate callbacks and checking length (1) @@ -661,9 +661,9 @@ FsWatches:: FsWatchesRecursive:: -Info 42 [16:01:07.000] event: +Info 42 [00:01:07.000] event: {"seq":0,"type":"event","event":"suggestionDiag","body":{"file":"/user/username/projects/myproject/file.ts","diagnostics":[]}} -Info 43 [16:01:08.000] event: +Info 43 [00:01:08.000] event: {"seq":0,"type":"event","event":"requestCompleted","body":{"request_seq":5}} Before running immediate callbacks and checking length (1) diff --git a/tests/baselines/reference/tsserver/partialSemanticServer/files-are-added-to-inferred-project.js b/tests/baselines/reference/tsserver/partialSemanticServer/files-are-added-to-inferred-project.js index f080631d5ec58..95aa3c4badb8e 100644 --- a/tests/baselines/reference/tsserver/partialSemanticServer/files-are-added-to-inferred-project.js +++ b/tests/baselines/reference/tsserver/partialSemanticServer/files-are-added-to-inferred-project.js @@ -1,5 +1,5 @@ -Info 0 [16:00:31.000] Provided types map file "/a/lib/typesMap.json" doesn't exist -Info 1 [16:00:32.000] request: +Info 0 [00:00:31.000] Provided types map file "/a/lib/typesMap.json" doesn't exist +Info 1 [00:00:32.000] request: { "seq": 0, "type": "request", @@ -48,11 +48,11 @@ FsWatches:: FsWatchesRecursive:: -Info 2 [16:00:33.000] Plugins were requested but not running in environment that supports 'require'. Nothing will be loaded -Info 3 [16:00:34.000] Starting updateGraphWorker: Project: /dev/null/inferredProject1* -Info 4 [16:00:35.000] Finishing updateGraphWorker: Project: /dev/null/inferredProject1* Version: 1 structureChanged: true structureIsReused:: Not Elapsed:: *ms -Info 5 [16:00:36.000] Project '/dev/null/inferredProject1*' (Inferred) -Info 6 [16:00:37.000] Files (2) +Info 2 [00:00:33.000] Plugins were requested but not running in environment that supports 'require'. Nothing will be loaded +Info 3 [00:00:34.000] Starting updateGraphWorker: Project: /dev/null/inferredProject1* +Info 4 [00:00:35.000] Finishing updateGraphWorker: Project: /dev/null/inferredProject1* Version: 1 structureChanged: true structureIsReused:: Not Elapsed:: *ms +Info 5 [00:00:36.000] Project '/dev/null/inferredProject1*' (Inferred) +Info 6 [00:00:37.000] Files (2) /a/lib/lib.d.ts /user/username/projects/myproject/a.ts @@ -62,14 +62,14 @@ Info 6 [16:00:37.000] Files (2) user/username/projects/myproject/a.ts Root file specified for compilation -Info 7 [16:00:38.000] ----------------------------------------------- -Info 8 [16:00:39.000] Project '/dev/null/inferredProject1*' (Inferred) -Info 8 [16:00:40.000] Files (2) +Info 7 [00:00:38.000] ----------------------------------------------- +Info 8 [00:00:39.000] Project '/dev/null/inferredProject1*' (Inferred) +Info 8 [00:00:40.000] Files (2) -Info 8 [16:00:41.000] ----------------------------------------------- -Info 8 [16:00:42.000] Open files: -Info 8 [16:00:43.000] FileName: /user/username/projects/myproject/a.ts ProjectRootPath: undefined -Info 8 [16:00:44.000] Projects: /dev/null/inferredProject1* +Info 8 [00:00:41.000] ----------------------------------------------- +Info 8 [00:00:42.000] Open files: +Info 8 [00:00:43.000] FileName: /user/username/projects/myproject/a.ts ProjectRootPath: undefined +Info 8 [00:00:44.000] Projects: /dev/null/inferredProject1* After request PolledWatches:: @@ -78,11 +78,11 @@ FsWatches:: FsWatchesRecursive:: -Info 8 [16:00:45.000] response: +Info 8 [00:00:45.000] response: { "responseRequired": false } -Info 9 [16:00:46.000] request: +Info 9 [00:00:46.000] request: { "command": "completions", "arguments": { @@ -101,12 +101,12 @@ FsWatches:: FsWatchesRecursive:: -Info 10 [16:00:47.000] getCompletionData: Get current token: * -Info 11 [16:00:48.000] getCompletionData: Is inside comment: * -Info 12 [16:00:49.000] getCompletionData: Get previous token: * -Info 13 [16:00:50.000] getCompletionsAtPosition: isCompletionListBlocker: * -Info 14 [16:00:51.000] getCompletionData: Semantic work: * -Info 15 [16:00:52.000] getCompletionsAtPosition: getCompletionEntriesFromSymbols: * +Info 10 [00:00:47.000] getCompletionData: Get current token: * +Info 11 [00:00:48.000] getCompletionData: Is inside comment: * +Info 12 [00:00:49.000] getCompletionData: Get previous token: * +Info 13 [00:00:50.000] getCompletionsAtPosition: isCompletionListBlocker: * +Info 14 [00:00:51.000] getCompletionData: Semantic work: * +Info 15 [00:00:52.000] getCompletionsAtPosition: getCompletionEntriesFromSymbols: * After request PolledWatches:: @@ -115,7 +115,7 @@ FsWatches:: FsWatchesRecursive:: -Info 16 [16:00:53.000] response: +Info 16 [00:00:53.000] response: { "response": [ { @@ -133,7 +133,7 @@ Info 16 [16:00:53.000] response: ], "responseRequired": true } -Info 17 [16:00:54.000] request: +Info 17 [00:00:54.000] request: { "seq": 0, "type": "request", @@ -150,10 +150,10 @@ FsWatches:: FsWatchesRecursive:: -Info 18 [16:00:55.000] Starting updateGraphWorker: Project: /dev/null/inferredProject1* -Info 19 [16:00:56.000] Finishing updateGraphWorker: Project: /dev/null/inferredProject1* Version: 2 structureChanged: true structureIsReused:: Not Elapsed:: *ms -Info 20 [16:00:57.000] Project '/dev/null/inferredProject1*' (Inferred) -Info 21 [16:00:58.000] Files (3) +Info 18 [00:00:55.000] Starting updateGraphWorker: Project: /dev/null/inferredProject1* +Info 19 [00:00:56.000] Finishing updateGraphWorker: Project: /dev/null/inferredProject1* Version: 2 structureChanged: true structureIsReused:: Not Elapsed:: *ms +Info 20 [00:00:57.000] Project '/dev/null/inferredProject1*' (Inferred) +Info 21 [00:00:58.000] Files (3) /a/lib/lib.d.ts /user/username/projects/myproject/a.ts /user/username/projects/myproject/b.ts @@ -166,16 +166,16 @@ Info 21 [16:00:58.000] Files (3) user/username/projects/myproject/b.ts Root file specified for compilation -Info 22 [16:00:59.000] ----------------------------------------------- -Info 23 [16:01:00.000] Project '/dev/null/inferredProject1*' (Inferred) -Info 23 [16:01:01.000] Files (3) +Info 22 [00:00:59.000] ----------------------------------------------- +Info 23 [00:01:00.000] Project '/dev/null/inferredProject1*' (Inferred) +Info 23 [00:01:01.000] Files (3) -Info 23 [16:01:02.000] ----------------------------------------------- -Info 23 [16:01:03.000] Open files: -Info 23 [16:01:04.000] FileName: /user/username/projects/myproject/a.ts ProjectRootPath: undefined -Info 23 [16:01:05.000] Projects: /dev/null/inferredProject1* -Info 23 [16:01:06.000] FileName: /user/username/projects/myproject/b.ts ProjectRootPath: undefined -Info 23 [16:01:07.000] Projects: /dev/null/inferredProject1* +Info 23 [00:01:02.000] ----------------------------------------------- +Info 23 [00:01:03.000] Open files: +Info 23 [00:01:04.000] FileName: /user/username/projects/myproject/a.ts ProjectRootPath: undefined +Info 23 [00:01:05.000] Projects: /dev/null/inferredProject1* +Info 23 [00:01:06.000] FileName: /user/username/projects/myproject/b.ts ProjectRootPath: undefined +Info 23 [00:01:07.000] Projects: /dev/null/inferredProject1* After request PolledWatches:: @@ -184,11 +184,11 @@ FsWatches:: FsWatchesRecursive:: -Info 23 [16:01:08.000] response: +Info 23 [00:01:08.000] response: { "responseRequired": false } -Info 24 [16:01:09.000] request: +Info 24 [00:01:09.000] request: { "command": "completions", "arguments": { @@ -207,12 +207,12 @@ FsWatches:: FsWatchesRecursive:: -Info 25 [16:01:10.000] getCompletionData: Get current token: * -Info 26 [16:01:11.000] getCompletionData: Is inside comment: * -Info 27 [16:01:12.000] getCompletionData: Get previous token: * -Info 28 [16:01:13.000] getCompletionsAtPosition: isCompletionListBlocker: * -Info 29 [16:01:14.000] getCompletionData: Semantic work: * -Info 30 [16:01:15.000] getCompletionsAtPosition: getCompletionEntriesFromSymbols: * +Info 25 [00:01:10.000] getCompletionData: Get current token: * +Info 26 [00:01:11.000] getCompletionData: Is inside comment: * +Info 27 [00:01:12.000] getCompletionData: Get previous token: * +Info 28 [00:01:13.000] getCompletionsAtPosition: isCompletionListBlocker: * +Info 29 [00:01:14.000] getCompletionData: Semantic work: * +Info 30 [00:01:15.000] getCompletionsAtPosition: getCompletionEntriesFromSymbols: * After request PolledWatches:: @@ -221,7 +221,7 @@ FsWatches:: FsWatchesRecursive:: -Info 31 [16:01:16.000] response: +Info 31 [00:01:16.000] response: { "response": [ { diff --git a/tests/baselines/reference/tsserver/partialSemanticServer/should-not-crash-when-external-module-name-resolution-is-reused.js b/tests/baselines/reference/tsserver/partialSemanticServer/should-not-crash-when-external-module-name-resolution-is-reused.js index 887a3b90623e4..7f68d6fb64f53 100644 --- a/tests/baselines/reference/tsserver/partialSemanticServer/should-not-crash-when-external-module-name-resolution-is-reused.js +++ b/tests/baselines/reference/tsserver/partialSemanticServer/should-not-crash-when-external-module-name-resolution-is-reused.js @@ -1,5 +1,5 @@ -Info 0 [16:00:31.000] Provided types map file "/a/lib/typesMap.json" doesn't exist -Info 1 [16:00:32.000] request: +Info 0 [00:00:31.000] Provided types map file "/a/lib/typesMap.json" doesn't exist +Info 1 [00:00:32.000] request: { "seq": 0, "type": "request", @@ -48,11 +48,11 @@ FsWatches:: FsWatchesRecursive:: -Info 2 [16:00:33.000] Plugins were requested but not running in environment that supports 'require'. Nothing will be loaded -Info 3 [16:00:34.000] Starting updateGraphWorker: Project: /dev/null/inferredProject1* -Info 4 [16:00:35.000] Finishing updateGraphWorker: Project: /dev/null/inferredProject1* Version: 1 structureChanged: true structureIsReused:: Not Elapsed:: *ms -Info 5 [16:00:36.000] Project '/dev/null/inferredProject1*' (Inferred) -Info 6 [16:00:37.000] Files (2) +Info 2 [00:00:33.000] Plugins were requested but not running in environment that supports 'require'. Nothing will be loaded +Info 3 [00:00:34.000] Starting updateGraphWorker: Project: /dev/null/inferredProject1* +Info 4 [00:00:35.000] Finishing updateGraphWorker: Project: /dev/null/inferredProject1* Version: 1 structureChanged: true structureIsReused:: Not Elapsed:: *ms +Info 5 [00:00:36.000] Project '/dev/null/inferredProject1*' (Inferred) +Info 6 [00:00:37.000] Files (2) /a/lib/lib.d.ts /user/username/projects/myproject/a.ts @@ -62,14 +62,14 @@ Info 6 [16:00:37.000] Files (2) user/username/projects/myproject/a.ts Root file specified for compilation -Info 7 [16:00:38.000] ----------------------------------------------- -Info 8 [16:00:39.000] Project '/dev/null/inferredProject1*' (Inferred) -Info 8 [16:00:40.000] Files (2) +Info 7 [00:00:38.000] ----------------------------------------------- +Info 8 [00:00:39.000] Project '/dev/null/inferredProject1*' (Inferred) +Info 8 [00:00:40.000] Files (2) -Info 8 [16:00:41.000] ----------------------------------------------- -Info 8 [16:00:42.000] Open files: -Info 8 [16:00:43.000] FileName: /user/username/projects/myproject/a.ts ProjectRootPath: undefined -Info 8 [16:00:44.000] Projects: /dev/null/inferredProject1* +Info 8 [00:00:41.000] ----------------------------------------------- +Info 8 [00:00:42.000] Open files: +Info 8 [00:00:43.000] FileName: /user/username/projects/myproject/a.ts ProjectRootPath: undefined +Info 8 [00:00:44.000] Projects: /dev/null/inferredProject1* After request PolledWatches:: @@ -78,11 +78,11 @@ FsWatches:: FsWatchesRecursive:: -Info 8 [16:00:45.000] response: +Info 8 [00:00:45.000] response: { "responseRequired": false } -Info 9 [16:00:46.000] request: +Info 9 [00:00:46.000] request: { "seq": 0, "type": "request", @@ -99,11 +99,11 @@ FsWatches:: FsWatchesRecursive:: -Info 10 [16:00:47.000] Project '/dev/null/inferredProject1*' (Inferred) -Info 10 [16:00:48.000] Files (2) +Info 10 [00:00:47.000] Project '/dev/null/inferredProject1*' (Inferred) +Info 10 [00:00:48.000] Files (2) -Info 10 [16:00:49.000] ----------------------------------------------- -Info 10 [16:00:50.000] Open files: +Info 10 [00:00:49.000] ----------------------------------------------- +Info 10 [00:00:50.000] Open files: After request PolledWatches:: @@ -112,11 +112,11 @@ FsWatches:: FsWatchesRecursive:: -Info 10 [16:00:51.000] response: +Info 10 [00:00:51.000] response: { "responseRequired": false } -Info 11 [16:00:52.000] request: +Info 11 [00:00:52.000] request: { "seq": 0, "type": "request", @@ -133,10 +133,10 @@ FsWatches:: FsWatchesRecursive:: -Info 12 [16:00:53.000] Starting updateGraphWorker: Project: /dev/null/inferredProject1* -Info 13 [16:00:54.000] Finishing updateGraphWorker: Project: /dev/null/inferredProject1* Version: 2 structureChanged: true structureIsReused:: Not Elapsed:: *ms -Info 14 [16:00:55.000] Project '/dev/null/inferredProject1*' (Inferred) -Info 15 [16:00:56.000] Files (2) +Info 12 [00:00:53.000] Starting updateGraphWorker: Project: /dev/null/inferredProject1* +Info 13 [00:00:54.000] Finishing updateGraphWorker: Project: /dev/null/inferredProject1* Version: 2 structureChanged: true structureIsReused:: Not Elapsed:: *ms +Info 14 [00:00:55.000] Project '/dev/null/inferredProject1*' (Inferred) +Info 15 [00:00:56.000] Files (2) /a/lib/lib.d.ts /user/username/projects/myproject/c.ts @@ -146,14 +146,14 @@ Info 15 [16:00:56.000] Files (2) user/username/projects/myproject/c.ts Root file specified for compilation -Info 16 [16:00:57.000] ----------------------------------------------- -Info 17 [16:00:58.000] Project '/dev/null/inferredProject1*' (Inferred) -Info 17 [16:00:59.000] Files (2) +Info 16 [00:00:57.000] ----------------------------------------------- +Info 17 [00:00:58.000] Project '/dev/null/inferredProject1*' (Inferred) +Info 17 [00:00:59.000] Files (2) -Info 17 [16:01:00.000] ----------------------------------------------- -Info 17 [16:01:01.000] Open files: -Info 17 [16:01:02.000] FileName: /user/username/projects/myproject/c.ts ProjectRootPath: undefined -Info 17 [16:01:03.000] Projects: /dev/null/inferredProject1* +Info 17 [00:01:00.000] ----------------------------------------------- +Info 17 [00:01:01.000] Open files: +Info 17 [00:01:02.000] FileName: /user/username/projects/myproject/c.ts ProjectRootPath: undefined +Info 17 [00:01:03.000] Projects: /dev/null/inferredProject1* After request PolledWatches:: @@ -162,11 +162,11 @@ FsWatches:: FsWatchesRecursive:: -Info 17 [16:01:04.000] response: +Info 17 [00:01:04.000] response: { "responseRequired": false } -Info 18 [16:01:05.000] request: +Info 18 [00:01:05.000] request: { "seq": 0, "type": "request", @@ -183,10 +183,10 @@ FsWatches:: FsWatchesRecursive:: -Info 19 [16:01:06.000] Starting updateGraphWorker: Project: /dev/null/inferredProject1* -Info 20 [16:01:07.000] Finishing updateGraphWorker: Project: /dev/null/inferredProject1* Version: 3 structureChanged: true structureIsReused:: Not Elapsed:: *ms -Info 21 [16:01:08.000] Project '/dev/null/inferredProject1*' (Inferred) -Info 22 [16:01:09.000] Files (3) +Info 19 [00:01:06.000] Starting updateGraphWorker: Project: /dev/null/inferredProject1* +Info 20 [00:01:07.000] Finishing updateGraphWorker: Project: /dev/null/inferredProject1* Version: 3 structureChanged: true structureIsReused:: Not Elapsed:: *ms +Info 21 [00:01:08.000] Project '/dev/null/inferredProject1*' (Inferred) +Info 22 [00:01:09.000] Files (3) /a/lib/lib.d.ts /user/username/projects/myproject/c.ts /user/username/projects/myproject/b.ts @@ -199,16 +199,16 @@ Info 22 [16:01:09.000] Files (3) user/username/projects/myproject/b.ts Root file specified for compilation -Info 23 [16:01:10.000] ----------------------------------------------- -Info 24 [16:01:11.000] Project '/dev/null/inferredProject1*' (Inferred) -Info 24 [16:01:12.000] Files (3) +Info 23 [00:01:10.000] ----------------------------------------------- +Info 24 [00:01:11.000] Project '/dev/null/inferredProject1*' (Inferred) +Info 24 [00:01:12.000] Files (3) -Info 24 [16:01:13.000] ----------------------------------------------- -Info 24 [16:01:14.000] Open files: -Info 24 [16:01:15.000] FileName: /user/username/projects/myproject/c.ts ProjectRootPath: undefined -Info 24 [16:01:16.000] Projects: /dev/null/inferredProject1* -Info 24 [16:01:17.000] FileName: /user/username/projects/myproject/b.ts ProjectRootPath: undefined -Info 24 [16:01:18.000] Projects: /dev/null/inferredProject1* +Info 24 [00:01:13.000] ----------------------------------------------- +Info 24 [00:01:14.000] Open files: +Info 24 [00:01:15.000] FileName: /user/username/projects/myproject/c.ts ProjectRootPath: undefined +Info 24 [00:01:16.000] Projects: /dev/null/inferredProject1* +Info 24 [00:01:17.000] FileName: /user/username/projects/myproject/b.ts ProjectRootPath: undefined +Info 24 [00:01:18.000] Projects: /dev/null/inferredProject1* After request PolledWatches:: @@ -217,7 +217,7 @@ FsWatches:: FsWatchesRecursive:: -Info 24 [16:01:19.000] response: +Info 24 [00:01:19.000] response: { "responseRequired": false } \ No newline at end of file diff --git a/tests/baselines/reference/tsserver/partialSemanticServer/should-not-include-auto-type-reference-directives.js b/tests/baselines/reference/tsserver/partialSemanticServer/should-not-include-auto-type-reference-directives.js index 95c0d4b0a57d2..5c29b1311d624 100644 --- a/tests/baselines/reference/tsserver/partialSemanticServer/should-not-include-auto-type-reference-directives.js +++ b/tests/baselines/reference/tsserver/partialSemanticServer/should-not-include-auto-type-reference-directives.js @@ -1,5 +1,5 @@ -Info 0 [16:00:31.000] Provided types map file "/a/lib/typesMap.json" doesn't exist -Info 1 [16:00:40.000] request: +Info 0 [00:00:31.000] Provided types map file "/a/lib/typesMap.json" doesn't exist +Info 1 [00:00:40.000] request: { "seq": 0, "type": "request", @@ -51,11 +51,11 @@ FsWatches:: FsWatchesRecursive:: -Info 2 [16:00:41.000] Plugins were requested but not running in environment that supports 'require'. Nothing will be loaded -Info 3 [16:00:42.000] Starting updateGraphWorker: Project: /dev/null/inferredProject1* -Info 4 [16:00:43.000] Finishing updateGraphWorker: Project: /dev/null/inferredProject1* Version: 1 structureChanged: true structureIsReused:: Not Elapsed:: *ms -Info 5 [16:00:44.000] Project '/dev/null/inferredProject1*' (Inferred) -Info 6 [16:00:45.000] Files (2) +Info 2 [00:00:41.000] Plugins were requested but not running in environment that supports 'require'. Nothing will be loaded +Info 3 [00:00:42.000] Starting updateGraphWorker: Project: /dev/null/inferredProject1* +Info 4 [00:00:43.000] Finishing updateGraphWorker: Project: /dev/null/inferredProject1* Version: 1 structureChanged: true structureIsReused:: Not Elapsed:: *ms +Info 5 [00:00:44.000] Project '/dev/null/inferredProject1*' (Inferred) +Info 6 [00:00:45.000] Files (2) /a/lib/lib.d.ts /user/username/projects/myproject/a.ts @@ -65,14 +65,14 @@ Info 6 [16:00:45.000] Files (2) user/username/projects/myproject/a.ts Root file specified for compilation -Info 7 [16:00:46.000] ----------------------------------------------- -Info 8 [16:00:47.000] Project '/dev/null/inferredProject1*' (Inferred) -Info 8 [16:00:48.000] Files (2) +Info 7 [00:00:46.000] ----------------------------------------------- +Info 8 [00:00:47.000] Project '/dev/null/inferredProject1*' (Inferred) +Info 8 [00:00:48.000] Files (2) -Info 8 [16:00:49.000] ----------------------------------------------- -Info 8 [16:00:50.000] Open files: -Info 8 [16:00:51.000] FileName: /user/username/projects/myproject/a.ts ProjectRootPath: undefined -Info 8 [16:00:52.000] Projects: /dev/null/inferredProject1* +Info 8 [00:00:49.000] ----------------------------------------------- +Info 8 [00:00:50.000] Open files: +Info 8 [00:00:51.000] FileName: /user/username/projects/myproject/a.ts ProjectRootPath: undefined +Info 8 [00:00:52.000] Projects: /dev/null/inferredProject1* After request PolledWatches:: @@ -81,7 +81,7 @@ FsWatches:: FsWatchesRecursive:: -Info 8 [16:00:53.000] response: +Info 8 [00:00:53.000] response: { "responseRequired": false } \ No newline at end of file diff --git a/tests/baselines/reference/tsserver/partialSemanticServer/should-not-include-referenced-files-from-unopened-files.js b/tests/baselines/reference/tsserver/partialSemanticServer/should-not-include-referenced-files-from-unopened-files.js index 1c8c37b32a36b..33a18ae86e7ff 100644 --- a/tests/baselines/reference/tsserver/partialSemanticServer/should-not-include-referenced-files-from-unopened-files.js +++ b/tests/baselines/reference/tsserver/partialSemanticServer/should-not-include-referenced-files-from-unopened-files.js @@ -1,5 +1,5 @@ -Info 0 [16:00:31.000] Provided types map file "/a/lib/typesMap.json" doesn't exist -Info 1 [16:00:32.000] request: +Info 0 [00:00:31.000] Provided types map file "/a/lib/typesMap.json" doesn't exist +Info 1 [00:00:32.000] request: { "seq": 0, "type": "request", @@ -48,11 +48,11 @@ FsWatches:: FsWatchesRecursive:: -Info 2 [16:00:33.000] Plugins were requested but not running in environment that supports 'require'. Nothing will be loaded -Info 3 [16:00:34.000] Starting updateGraphWorker: Project: /dev/null/inferredProject1* -Info 4 [16:00:35.000] Finishing updateGraphWorker: Project: /dev/null/inferredProject1* Version: 1 structureChanged: true structureIsReused:: Not Elapsed:: *ms -Info 5 [16:00:36.000] Project '/dev/null/inferredProject1*' (Inferred) -Info 6 [16:00:37.000] Files (2) +Info 2 [00:00:33.000] Plugins were requested but not running in environment that supports 'require'. Nothing will be loaded +Info 3 [00:00:34.000] Starting updateGraphWorker: Project: /dev/null/inferredProject1* +Info 4 [00:00:35.000] Finishing updateGraphWorker: Project: /dev/null/inferredProject1* Version: 1 structureChanged: true structureIsReused:: Not Elapsed:: *ms +Info 5 [00:00:36.000] Project '/dev/null/inferredProject1*' (Inferred) +Info 6 [00:00:37.000] Files (2) /a/lib/lib.d.ts /user/username/projects/myproject/a.ts @@ -62,14 +62,14 @@ Info 6 [16:00:37.000] Files (2) user/username/projects/myproject/a.ts Root file specified for compilation -Info 7 [16:00:38.000] ----------------------------------------------- -Info 8 [16:00:39.000] Project '/dev/null/inferredProject1*' (Inferred) -Info 8 [16:00:40.000] Files (2) +Info 7 [00:00:38.000] ----------------------------------------------- +Info 8 [00:00:39.000] Project '/dev/null/inferredProject1*' (Inferred) +Info 8 [00:00:40.000] Files (2) -Info 8 [16:00:41.000] ----------------------------------------------- -Info 8 [16:00:42.000] Open files: -Info 8 [16:00:43.000] FileName: /user/username/projects/myproject/a.ts ProjectRootPath: undefined -Info 8 [16:00:44.000] Projects: /dev/null/inferredProject1* +Info 8 [00:00:41.000] ----------------------------------------------- +Info 8 [00:00:42.000] Open files: +Info 8 [00:00:43.000] FileName: /user/username/projects/myproject/a.ts ProjectRootPath: undefined +Info 8 [00:00:44.000] Projects: /dev/null/inferredProject1* After request PolledWatches:: @@ -78,7 +78,7 @@ FsWatches:: FsWatchesRecursive:: -Info 8 [16:00:45.000] response: +Info 8 [00:00:45.000] response: { "responseRequired": false } \ No newline at end of file diff --git a/tests/baselines/reference/tsserver/partialSemanticServer/should-support-go-to-definition-on-module-specifiers.js b/tests/baselines/reference/tsserver/partialSemanticServer/should-support-go-to-definition-on-module-specifiers.js index f552f23b1b907..47528982a8187 100644 --- a/tests/baselines/reference/tsserver/partialSemanticServer/should-support-go-to-definition-on-module-specifiers.js +++ b/tests/baselines/reference/tsserver/partialSemanticServer/should-support-go-to-definition-on-module-specifiers.js @@ -1,5 +1,5 @@ -Info 0 [16:00:31.000] Provided types map file "/a/lib/typesMap.json" doesn't exist -Info 1 [16:00:32.000] request: +Info 0 [00:00:31.000] Provided types map file "/a/lib/typesMap.json" doesn't exist +Info 1 [00:00:32.000] request: { "seq": 0, "type": "request", @@ -48,11 +48,11 @@ FsWatches:: FsWatchesRecursive:: -Info 2 [16:00:33.000] Plugins were requested but not running in environment that supports 'require'. Nothing will be loaded -Info 3 [16:00:34.000] Starting updateGraphWorker: Project: /dev/null/inferredProject1* -Info 4 [16:00:35.000] Finishing updateGraphWorker: Project: /dev/null/inferredProject1* Version: 1 structureChanged: true structureIsReused:: Not Elapsed:: *ms -Info 5 [16:00:36.000] Project '/dev/null/inferredProject1*' (Inferred) -Info 6 [16:00:37.000] Files (2) +Info 2 [00:00:33.000] Plugins were requested but not running in environment that supports 'require'. Nothing will be loaded +Info 3 [00:00:34.000] Starting updateGraphWorker: Project: /dev/null/inferredProject1* +Info 4 [00:00:35.000] Finishing updateGraphWorker: Project: /dev/null/inferredProject1* Version: 1 structureChanged: true structureIsReused:: Not Elapsed:: *ms +Info 5 [00:00:36.000] Project '/dev/null/inferredProject1*' (Inferred) +Info 6 [00:00:37.000] Files (2) /a/lib/lib.d.ts /user/username/projects/myproject/a.ts @@ -62,14 +62,14 @@ Info 6 [16:00:37.000] Files (2) user/username/projects/myproject/a.ts Root file specified for compilation -Info 7 [16:00:38.000] ----------------------------------------------- -Info 8 [16:00:39.000] Project '/dev/null/inferredProject1*' (Inferred) -Info 8 [16:00:40.000] Files (2) +Info 7 [00:00:38.000] ----------------------------------------------- +Info 8 [00:00:39.000] Project '/dev/null/inferredProject1*' (Inferred) +Info 8 [00:00:40.000] Files (2) -Info 8 [16:00:41.000] ----------------------------------------------- -Info 8 [16:00:42.000] Open files: -Info 8 [16:00:43.000] FileName: /user/username/projects/myproject/a.ts ProjectRootPath: undefined -Info 8 [16:00:44.000] Projects: /dev/null/inferredProject1* +Info 8 [00:00:41.000] ----------------------------------------------- +Info 8 [00:00:42.000] Open files: +Info 8 [00:00:43.000] FileName: /user/username/projects/myproject/a.ts ProjectRootPath: undefined +Info 8 [00:00:44.000] Projects: /dev/null/inferredProject1* After request PolledWatches:: @@ -78,11 +78,11 @@ FsWatches:: FsWatchesRecursive:: -Info 8 [16:00:45.000] response: +Info 8 [00:00:45.000] response: { "responseRequired": false } -Info 9 [16:00:46.000] request: +Info 9 [00:00:46.000] request: { "command": "definitionAndBoundSpan", "arguments": { @@ -109,7 +109,7 @@ FsWatches:: FsWatchesRecursive:: -Info 10 [16:00:47.000] response: +Info 10 [00:00:47.000] response: { "response": { "definitions": [ diff --git a/tests/baselines/reference/tsserver/partialSemanticServer/syntactic-diagnostics-are-returned-with-no-error.js b/tests/baselines/reference/tsserver/partialSemanticServer/syntactic-diagnostics-are-returned-with-no-error.js index 823a827614945..e086947bfa479 100644 --- a/tests/baselines/reference/tsserver/partialSemanticServer/syntactic-diagnostics-are-returned-with-no-error.js +++ b/tests/baselines/reference/tsserver/partialSemanticServer/syntactic-diagnostics-are-returned-with-no-error.js @@ -1,5 +1,5 @@ -Info 0 [16:00:21.000] Provided types map file "/a/lib/typesMap.json" doesn't exist -Info 1 [16:00:22.000] request: +Info 0 [00:00:21.000] Provided types map file "/a/lib/typesMap.json" doesn't exist +Info 1 [00:00:22.000] request: { "seq": 0, "type": "request", @@ -35,11 +35,11 @@ FsWatches:: FsWatchesRecursive:: -Info 2 [16:00:23.000] Plugins were requested but not running in environment that supports 'require'. Nothing will be loaded -Info 3 [16:00:24.000] Starting updateGraphWorker: Project: /dev/null/inferredProject1* -Info 4 [16:00:25.000] Finishing updateGraphWorker: Project: /dev/null/inferredProject1* Version: 1 structureChanged: true structureIsReused:: Not Elapsed:: *ms -Info 5 [16:00:26.000] Project '/dev/null/inferredProject1*' (Inferred) -Info 6 [16:00:27.000] Files (2) +Info 2 [00:00:23.000] Plugins were requested but not running in environment that supports 'require'. Nothing will be loaded +Info 3 [00:00:24.000] Starting updateGraphWorker: Project: /dev/null/inferredProject1* +Info 4 [00:00:25.000] Finishing updateGraphWorker: Project: /dev/null/inferredProject1* Version: 1 structureChanged: true structureIsReused:: Not Elapsed:: *ms +Info 5 [00:00:26.000] Project '/dev/null/inferredProject1*' (Inferred) +Info 6 [00:00:27.000] Files (2) /a/lib/lib.d.ts /user/username/projects/myproject/a.ts @@ -49,14 +49,14 @@ Info 6 [16:00:27.000] Files (2) user/username/projects/myproject/a.ts Root file specified for compilation -Info 7 [16:00:28.000] ----------------------------------------------- -Info 8 [16:00:29.000] Project '/dev/null/inferredProject1*' (Inferred) -Info 8 [16:00:30.000] Files (2) +Info 7 [00:00:28.000] ----------------------------------------------- +Info 8 [00:00:29.000] Project '/dev/null/inferredProject1*' (Inferred) +Info 8 [00:00:30.000] Files (2) -Info 8 [16:00:31.000] ----------------------------------------------- -Info 8 [16:00:32.000] Open files: -Info 8 [16:00:33.000] FileName: /user/username/projects/myproject/a.ts ProjectRootPath: undefined -Info 8 [16:00:34.000] Projects: /dev/null/inferredProject1* +Info 8 [00:00:31.000] ----------------------------------------------- +Info 8 [00:00:32.000] Open files: +Info 8 [00:00:33.000] FileName: /user/username/projects/myproject/a.ts ProjectRootPath: undefined +Info 8 [00:00:34.000] Projects: /dev/null/inferredProject1* After request PolledWatches:: @@ -65,11 +65,11 @@ FsWatches:: FsWatchesRecursive:: -Info 8 [16:00:35.000] response: +Info 8 [00:00:35.000] response: { "responseRequired": false } -Info 9 [16:00:36.000] request: +Info 9 [00:00:36.000] request: { "type": "request", "seq": 1, @@ -94,7 +94,7 @@ FsWatches:: FsWatchesRecursive:: -Info 10 [16:00:37.000] response: +Info 10 [00:00:37.000] response: { "response": [ { @@ -131,7 +131,7 @@ Info 10 [16:00:37.000] response: ], "responseRequired": true } -Info 11 [16:00:38.000] request: +Info 11 [00:00:38.000] request: { "command": "geterr", "arguments": { @@ -159,7 +159,7 @@ FsWatches:: FsWatchesRecursive:: -Info 12 [16:00:39.000] response: +Info 12 [00:00:39.000] response: { "responseRequired": false } @@ -171,8 +171,8 @@ FsWatches:: FsWatchesRecursive:: -Info 13 [16:00:40.000] Session does not support events: ignored event: {"seq":0,"type":"event","event":"syntaxDiag","body":{"file":"/user/username/projects/myproject/a.ts","diagnostics":[{"start":{"line":1,"offset":17},"end":{"line":1,"offset":18},"text":"')' expected.","code":1005,"category":"error","relatedInformation":[{"span":{"start":{"line":1,"offset":4},"end":{"line":1,"offset":5},"file":"/user/username/projects/myproject/a.ts"},"message":"The parser expected to find a ')' to match the '(' token here.","category":"error","code":1007}]}]}} -Info 14 [16:00:41.000] Session does not support events: ignored event: {"seq":0,"type":"event","event":"requestCompleted","body":{"request_seq":2}} +Info 13 [00:00:40.000] Session does not support events: ignored event: {"seq":0,"type":"event","event":"syntaxDiag","body":{"file":"/user/username/projects/myproject/a.ts","diagnostics":[{"start":{"line":1,"offset":17},"end":{"line":1,"offset":18},"text":"')' expected.","code":1005,"category":"error","relatedInformation":[{"span":{"start":{"line":1,"offset":4},"end":{"line":1,"offset":5},"file":"/user/username/projects/myproject/a.ts"},"message":"The parser expected to find a ')' to match the '(' token here.","category":"error","code":1007}]}]}} +Info 14 [00:00:41.000] Session does not support events: ignored event: {"seq":0,"type":"event","event":"requestCompleted","body":{"request_seq":2}} After checking timeout queue length (1) and running PolledWatches:: diff --git a/tests/baselines/reference/tsserver/partialSemanticServer/throws-unsupported-commands.js b/tests/baselines/reference/tsserver/partialSemanticServer/throws-unsupported-commands.js index 537d69e40d2de..ade92475dd878 100644 --- a/tests/baselines/reference/tsserver/partialSemanticServer/throws-unsupported-commands.js +++ b/tests/baselines/reference/tsserver/partialSemanticServer/throws-unsupported-commands.js @@ -1,5 +1,5 @@ -Info 0 [16:00:31.000] Provided types map file "/a/lib/typesMap.json" doesn't exist -Info 1 [16:00:32.000] request: +Info 0 [00:00:31.000] Provided types map file "/a/lib/typesMap.json" doesn't exist +Info 1 [00:00:32.000] request: { "seq": 0, "type": "request", @@ -48,11 +48,11 @@ FsWatches:: FsWatchesRecursive:: -Info 2 [16:00:33.000] Plugins were requested but not running in environment that supports 'require'. Nothing will be loaded -Info 3 [16:00:34.000] Starting updateGraphWorker: Project: /dev/null/inferredProject1* -Info 4 [16:00:35.000] Finishing updateGraphWorker: Project: /dev/null/inferredProject1* Version: 1 structureChanged: true structureIsReused:: Not Elapsed:: *ms -Info 5 [16:00:36.000] Project '/dev/null/inferredProject1*' (Inferred) -Info 6 [16:00:37.000] Files (2) +Info 2 [00:00:33.000] Plugins were requested but not running in environment that supports 'require'. Nothing will be loaded +Info 3 [00:00:34.000] Starting updateGraphWorker: Project: /dev/null/inferredProject1* +Info 4 [00:00:35.000] Finishing updateGraphWorker: Project: /dev/null/inferredProject1* Version: 1 structureChanged: true structureIsReused:: Not Elapsed:: *ms +Info 5 [00:00:36.000] Project '/dev/null/inferredProject1*' (Inferred) +Info 6 [00:00:37.000] Files (2) /a/lib/lib.d.ts /user/username/projects/myproject/a.ts @@ -62,14 +62,14 @@ Info 6 [16:00:37.000] Files (2) user/username/projects/myproject/a.ts Root file specified for compilation -Info 7 [16:00:38.000] ----------------------------------------------- -Info 8 [16:00:39.000] Project '/dev/null/inferredProject1*' (Inferred) -Info 8 [16:00:40.000] Files (2) +Info 7 [00:00:38.000] ----------------------------------------------- +Info 8 [00:00:39.000] Project '/dev/null/inferredProject1*' (Inferred) +Info 8 [00:00:40.000] Files (2) -Info 8 [16:00:41.000] ----------------------------------------------- -Info 8 [16:00:42.000] Open files: -Info 8 [16:00:43.000] FileName: /user/username/projects/myproject/a.ts ProjectRootPath: undefined -Info 8 [16:00:44.000] Projects: /dev/null/inferredProject1* +Info 8 [00:00:41.000] ----------------------------------------------- +Info 8 [00:00:42.000] Open files: +Info 8 [00:00:43.000] FileName: /user/username/projects/myproject/a.ts ProjectRootPath: undefined +Info 8 [00:00:44.000] Projects: /dev/null/inferredProject1* After request PolledWatches:: @@ -78,11 +78,11 @@ FsWatches:: FsWatchesRecursive:: -Info 8 [16:00:45.000] response: +Info 8 [00:00:45.000] response: { "responseRequired": false } -Info 9 [16:00:46.000] request: +Info 9 [00:00:46.000] request: { "type": "request", "seq": 1, @@ -99,5 +99,5 @@ FsWatches:: FsWatchesRecursive:: -Info 10 [16:00:47.000] Request: semanticDiagnosticsSync not allowed in LanguageServiceMode.PartialSemantic -Info 11 [16:00:48.000] LanguageService Operation: getSemanticDiagnostics not allowed in LanguageServiceMode.PartialSemantic \ No newline at end of file +Info 10 [00:00:47.000] Request: semanticDiagnosticsSync not allowed in LanguageServiceMode.PartialSemantic +Info 11 [00:00:48.000] LanguageService Operation: getSemanticDiagnostics not allowed in LanguageServiceMode.PartialSemantic \ No newline at end of file diff --git a/tests/baselines/reference/tsserver/projectErrors/configFileDiagnostic-events-are-generated-when-the-config-file-changes.js b/tests/baselines/reference/tsserver/projectErrors/configFileDiagnostic-events-are-generated-when-the-config-file-changes.js index 9891469245c44..60b16c4c82972 100644 --- a/tests/baselines/reference/tsserver/projectErrors/configFileDiagnostic-events-are-generated-when-the-config-file-changes.js +++ b/tests/baselines/reference/tsserver/projectErrors/configFileDiagnostic-events-are-generated-when-the-config-file-changes.js @@ -1,5 +1,5 @@ -Info 0 [16:00:15.000] Provided types map file "/a/lib/typesMap.json" doesn't exist -Info 1 [16:00:16.000] request: +Info 0 [00:00:15.000] Provided types map file "/a/lib/typesMap.json" doesn't exist +Info 1 [00:00:16.000] request: { "seq": 0, "type": "request", @@ -37,13 +37,13 @@ FsWatches:: FsWatchesRecursive:: -Info 2 [16:00:17.000] Search path: /a/b -Info 3 [16:00:18.000] For info: /a/b/app.ts :: Config file name: /a/b/tsconfig.json -Info 4 [16:00:19.000] Creating configuration project /a/b/tsconfig.json -Info 5 [16:00:20.000] FileWatcher:: Added:: WatchInfo: /a/b/tsconfig.json 2000 undefined Project: /a/b/tsconfig.json WatchType: Config file -Info 6 [16:00:21.000] event: +Info 2 [00:00:17.000] Search path: /a/b +Info 3 [00:00:18.000] For info: /a/b/app.ts :: Config file name: /a/b/tsconfig.json +Info 4 [00:00:19.000] Creating configuration project /a/b/tsconfig.json +Info 5 [00:00:20.000] FileWatcher:: Added:: WatchInfo: /a/b/tsconfig.json 2000 undefined Project: /a/b/tsconfig.json WatchType: Config file +Info 6 [00:00:21.000] event: {"seq":0,"type":"event","event":"projectLoadingStart","body":{"projectName":"/a/b/tsconfig.json","reason":"Creating possible configured project for /a/b/app.ts to open"}} -Info 7 [16:00:22.000] Config: /a/b/tsconfig.json : { +Info 7 [00:00:22.000] Config: /a/b/tsconfig.json : { "rootNames": [ "/a/b/app.ts" ], @@ -51,16 +51,16 @@ Info 7 [16:00:22.000] Config: /a/b/tsconfig.json : { "configFilePath": "/a/b/tsconfig.json" } } -Info 8 [16:00:23.000] DirectoryWatcher:: Added:: WatchInfo: /a/b 1 undefined Config: /a/b/tsconfig.json WatchType: Wild card directory -Info 9 [16:00:24.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /a/b 1 undefined Config: /a/b/tsconfig.json WatchType: Wild card directory -Info 10 [16:00:25.000] Plugins were requested but not running in environment that supports 'require'. Nothing will be loaded -Info 11 [16:00:26.000] Starting updateGraphWorker: Project: /a/b/tsconfig.json -Info 12 [16:00:27.000] FileWatcher:: Added:: WatchInfo: /a/lib/lib.d.ts 500 undefined WatchType: Closed Script info -Info 13 [16:00:28.000] DirectoryWatcher:: Added:: WatchInfo: /a/b/node_modules/@types 1 undefined Project: /a/b/tsconfig.json WatchType: Type roots -Info 14 [16:00:29.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /a/b/node_modules/@types 1 undefined Project: /a/b/tsconfig.json WatchType: Type roots -Info 15 [16:00:30.000] Finishing updateGraphWorker: Project: /a/b/tsconfig.json Version: 1 structureChanged: true structureIsReused:: Not Elapsed:: *ms -Info 16 [16:00:31.000] Project '/a/b/tsconfig.json' (Configured) -Info 17 [16:00:32.000] Files (2) +Info 8 [00:00:23.000] DirectoryWatcher:: Added:: WatchInfo: /a/b 1 undefined Config: /a/b/tsconfig.json WatchType: Wild card directory +Info 9 [00:00:24.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /a/b 1 undefined Config: /a/b/tsconfig.json WatchType: Wild card directory +Info 10 [00:00:25.000] Plugins were requested but not running in environment that supports 'require'. Nothing will be loaded +Info 11 [00:00:26.000] Starting updateGraphWorker: Project: /a/b/tsconfig.json +Info 12 [00:00:27.000] FileWatcher:: Added:: WatchInfo: /a/lib/lib.d.ts 500 undefined WatchType: Closed Script info +Info 13 [00:00:28.000] DirectoryWatcher:: Added:: WatchInfo: /a/b/node_modules/@types 1 undefined Project: /a/b/tsconfig.json WatchType: Type roots +Info 14 [00:00:29.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /a/b/node_modules/@types 1 undefined Project: /a/b/tsconfig.json WatchType: Type roots +Info 15 [00:00:30.000] Finishing updateGraphWorker: Project: /a/b/tsconfig.json Version: 1 structureChanged: true structureIsReused:: Not Elapsed:: *ms +Info 16 [00:00:31.000] Project '/a/b/tsconfig.json' (Configured) +Info 17 [00:00:32.000] Files (2) /a/lib/lib.d.ts /a/b/app.ts @@ -70,20 +70,20 @@ Info 17 [16:00:32.000] Files (2) app.ts Matched by default include pattern '**/*' -Info 18 [16:00:33.000] ----------------------------------------------- -Info 19 [16:00:34.000] event: +Info 18 [00:00:33.000] ----------------------------------------------- +Info 19 [00:00:34.000] event: {"seq":0,"type":"event","event":"projectLoadingFinish","body":{"projectName":"/a/b/tsconfig.json"}} -Info 20 [16:00:35.000] event: +Info 20 [00:00:35.000] event: {"seq":0,"type":"event","event":"telemetry","body":{"telemetryEventName":"projectInfo","payload":{"projectId":"e10a1dc99ee63f16cb9b69bcee75540cdf41a1137371d3afbd4e7de507be5207","fileStats":{"js":0,"jsSize":0,"jsx":0,"jsxSize":0,"ts":1,"tsSize":10,"tsx":0,"tsxSize":0,"dts":1,"dtsSize":334,"deferred":0,"deferredSize":0},"compilerOptions":{},"typeAcquisition":{"enable":false,"include":false,"exclude":false},"extends":false,"files":false,"include":false,"exclude":false,"compileOnSave":false,"configFileName":"tsconfig.json","projectType":"configured","languageServiceEnabled":true,"version":"FakeVersion"}}} -Info 21 [16:00:36.000] event: +Info 21 [00:00:36.000] event: {"seq":0,"type":"event","event":"configFileDiag","body":{"triggerFile":"/a/b/app.ts","configFile":"/a/b/tsconfig.json","diagnostics":[]}} -Info 22 [16:00:37.000] Project '/a/b/tsconfig.json' (Configured) -Info 22 [16:00:38.000] Files (2) +Info 22 [00:00:37.000] Project '/a/b/tsconfig.json' (Configured) +Info 22 [00:00:38.000] Files (2) -Info 22 [16:00:39.000] ----------------------------------------------- -Info 22 [16:00:40.000] Open files: -Info 22 [16:00:41.000] FileName: /a/b/app.ts ProjectRootPath: undefined -Info 22 [16:00:42.000] Projects: /a/b/tsconfig.json +Info 22 [00:00:39.000] ----------------------------------------------- +Info 22 [00:00:40.000] Open files: +Info 22 [00:00:41.000] FileName: /a/b/app.ts ProjectRootPath: undefined +Info 22 [00:00:42.000] Projects: /a/b/tsconfig.json After request PolledWatches:: @@ -100,14 +100,14 @@ FsWatchesRecursive:: /a/b: {} -Info 22 [16:00:43.000] response: +Info 22 [00:00:43.000] response: { "responseRequired": false } -Info 23 [16:00:47.000] FileWatcher:: Triggered with /a/b/tsconfig.json 1:: WatchInfo: /a/b/tsconfig.json 2000 undefined Project: /a/b/tsconfig.json WatchType: Config file -Info 24 [16:00:48.000] Scheduled: /a/b/tsconfig.json -Info 25 [16:00:49.000] Scheduled: *ensureProjectForOpenFiles* -Info 26 [16:00:50.000] Elapsed:: *ms FileWatcher:: Triggered with /a/b/tsconfig.json 1:: WatchInfo: /a/b/tsconfig.json 2000 undefined Project: /a/b/tsconfig.json WatchType: Config file +Info 23 [00:00:47.000] FileWatcher:: Triggered with /a/b/tsconfig.json 1:: WatchInfo: /a/b/tsconfig.json 2000 undefined Project: /a/b/tsconfig.json WatchType: Config file +Info 24 [00:00:48.000] Scheduled: /a/b/tsconfig.json +Info 25 [00:00:49.000] Scheduled: *ensureProjectForOpenFiles* +Info 26 [00:00:50.000] Elapsed:: *ms FileWatcher:: Triggered with /a/b/tsconfig.json 1:: WatchInfo: /a/b/tsconfig.json 2000 undefined Project: /a/b/tsconfig.json WatchType: Config file Before running timeout callbacks //// [/a/b/tsconfig.json] { @@ -131,11 +131,11 @@ FsWatchesRecursive:: /a/b: {} -Info 27 [16:00:51.000] Running: /a/b/tsconfig.json -Info 28 [16:00:52.000] Reloading configured project /a/b/tsconfig.json -Info 29 [16:00:53.000] event: +Info 27 [00:00:51.000] Running: /a/b/tsconfig.json +Info 28 [00:00:52.000] Reloading configured project /a/b/tsconfig.json +Info 29 [00:00:53.000] event: {"seq":0,"type":"event","event":"projectLoadingStart","body":{"projectName":"/a/b/tsconfig.json","reason":"Change in config file detected"}} -Info 30 [16:00:54.000] Config: /a/b/tsconfig.json : { +Info 30 [00:00:54.000] Config: /a/b/tsconfig.json : { "rootNames": [ "/a/b/app.ts" ], @@ -143,33 +143,33 @@ Info 30 [16:00:54.000] Config: /a/b/tsconfig.json : { "configFilePath": "/a/b/tsconfig.json" } } -Info 31 [16:00:55.000] Plugins were requested but not running in environment that supports 'require'. Nothing will be loaded -Info 32 [16:00:56.000] Starting updateGraphWorker: Project: /a/b/tsconfig.json -Info 33 [16:00:57.000] Finishing updateGraphWorker: Project: /a/b/tsconfig.json Version: 2 structureChanged: false structureIsReused:: Completely Elapsed:: *ms -Info 34 [16:00:58.000] Different program with same set of files -Info 35 [16:00:59.000] event: +Info 31 [00:00:55.000] Plugins were requested but not running in environment that supports 'require'. Nothing will be loaded +Info 32 [00:00:56.000] Starting updateGraphWorker: Project: /a/b/tsconfig.json +Info 33 [00:00:57.000] Finishing updateGraphWorker: Project: /a/b/tsconfig.json Version: 2 structureChanged: false structureIsReused:: Completely Elapsed:: *ms +Info 34 [00:00:58.000] Different program with same set of files +Info 35 [00:00:59.000] event: {"seq":0,"type":"event","event":"projectLoadingFinish","body":{"projectName":"/a/b/tsconfig.json"}} -Info 36 [16:01:00.000] event: +Info 36 [00:01:00.000] event: {"seq":0,"type":"event","event":"configFileDiag","body":{"triggerFile":"/a/b/tsconfig.json","configFile":"/a/b/tsconfig.json","diagnostics":[{"start":{"line":3,"offset":21},"end":{"line":3,"offset":27},"text":"Unknown compiler option 'haha'.","code":5023,"category":"error","fileName":"/a/b/tsconfig.json"}]}} -Info 37 [16:01:01.000] Running: *ensureProjectForOpenFiles* -Info 38 [16:01:02.000] Before ensureProjectForOpenFiles: -Info 39 [16:01:03.000] Project '/a/b/tsconfig.json' (Configured) -Info 39 [16:01:04.000] Files (2) - -Info 39 [16:01:05.000] ----------------------------------------------- -Info 39 [16:01:06.000] Open files: -Info 39 [16:01:07.000] FileName: /a/b/app.ts ProjectRootPath: undefined -Info 39 [16:01:08.000] Projects: /a/b/tsconfig.json -Info 39 [16:01:09.000] After ensureProjectForOpenFiles: -Info 40 [16:01:10.000] Project '/a/b/tsconfig.json' (Configured) -Info 40 [16:01:11.000] Files (2) - -Info 40 [16:01:12.000] ----------------------------------------------- -Info 40 [16:01:13.000] Open files: -Info 40 [16:01:14.000] FileName: /a/b/app.ts ProjectRootPath: undefined -Info 40 [16:01:15.000] Projects: /a/b/tsconfig.json -Info 40 [16:01:16.000] got projects updated in background, updating diagnostics for /a/b/app.ts -Info 41 [16:01:17.000] event: +Info 37 [00:01:01.000] Running: *ensureProjectForOpenFiles* +Info 38 [00:01:02.000] Before ensureProjectForOpenFiles: +Info 39 [00:01:03.000] Project '/a/b/tsconfig.json' (Configured) +Info 39 [00:01:04.000] Files (2) + +Info 39 [00:01:05.000] ----------------------------------------------- +Info 39 [00:01:06.000] Open files: +Info 39 [00:01:07.000] FileName: /a/b/app.ts ProjectRootPath: undefined +Info 39 [00:01:08.000] Projects: /a/b/tsconfig.json +Info 39 [00:01:09.000] After ensureProjectForOpenFiles: +Info 40 [00:01:10.000] Project '/a/b/tsconfig.json' (Configured) +Info 40 [00:01:11.000] Files (2) + +Info 40 [00:01:12.000] ----------------------------------------------- +Info 40 [00:01:13.000] Open files: +Info 40 [00:01:14.000] FileName: /a/b/app.ts ProjectRootPath: undefined +Info 40 [00:01:15.000] Projects: /a/b/tsconfig.json +Info 40 [00:01:16.000] got projects updated in background, updating diagnostics for /a/b/app.ts +Info 41 [00:01:17.000] event: {"seq":0,"type":"event","event":"projectsUpdatedInBackground","body":{"openFiles":["/a/b/app.ts"]}} After running timeout callbacks @@ -187,10 +187,10 @@ FsWatchesRecursive:: /a/b: {} -Info 42 [16:01:21.000] FileWatcher:: Triggered with /a/b/tsconfig.json 1:: WatchInfo: /a/b/tsconfig.json 2000 undefined Project: /a/b/tsconfig.json WatchType: Config file -Info 43 [16:01:22.000] Scheduled: /a/b/tsconfig.json -Info 44 [16:01:23.000] Scheduled: *ensureProjectForOpenFiles* -Info 45 [16:01:24.000] Elapsed:: *ms FileWatcher:: Triggered with /a/b/tsconfig.json 1:: WatchInfo: /a/b/tsconfig.json 2000 undefined Project: /a/b/tsconfig.json WatchType: Config file +Info 42 [00:01:21.000] FileWatcher:: Triggered with /a/b/tsconfig.json 1:: WatchInfo: /a/b/tsconfig.json 2000 undefined Project: /a/b/tsconfig.json WatchType: Config file +Info 43 [00:01:22.000] Scheduled: /a/b/tsconfig.json +Info 44 [00:01:23.000] Scheduled: *ensureProjectForOpenFiles* +Info 45 [00:01:24.000] Elapsed:: *ms FileWatcher:: Triggered with /a/b/tsconfig.json 1:: WatchInfo: /a/b/tsconfig.json 2000 undefined Project: /a/b/tsconfig.json WatchType: Config file Before running timeout callbacks //// [/a/b/tsconfig.json] { @@ -212,10 +212,10 @@ FsWatchesRecursive:: /a/b: {} -Info 46 [16:01:25.000] Reloading configured project /a/b/tsconfig.json -Info 47 [16:01:26.000] event: +Info 46 [00:01:25.000] Reloading configured project /a/b/tsconfig.json +Info 47 [00:01:26.000] event: {"seq":0,"type":"event","event":"projectLoadingStart","body":{"projectName":"/a/b/tsconfig.json","reason":"Change in config file detected"}} -Info 48 [16:01:27.000] Config: /a/b/tsconfig.json : { +Info 48 [00:01:27.000] Config: /a/b/tsconfig.json : { "rootNames": [ "/a/b/app.ts" ], @@ -223,36 +223,36 @@ Info 48 [16:01:27.000] Config: /a/b/tsconfig.json : { "configFilePath": "/a/b/tsconfig.json" } } -Info 49 [16:01:28.000] Plugins were requested but not running in environment that supports 'require'. Nothing will be loaded -Info 50 [16:01:29.000] Starting updateGraphWorker: Project: /a/b/tsconfig.json -Info 51 [16:01:30.000] Finishing updateGraphWorker: Project: /a/b/tsconfig.json Version: 3 structureChanged: false structureIsReused:: Completely Elapsed:: *ms -Info 52 [16:01:31.000] Different program with same set of files -Info 53 [16:01:32.000] event: +Info 49 [00:01:28.000] Plugins were requested but not running in environment that supports 'require'. Nothing will be loaded +Info 50 [00:01:29.000] Starting updateGraphWorker: Project: /a/b/tsconfig.json +Info 51 [00:01:30.000] Finishing updateGraphWorker: Project: /a/b/tsconfig.json Version: 3 structureChanged: false structureIsReused:: Completely Elapsed:: *ms +Info 52 [00:01:31.000] Different program with same set of files +Info 53 [00:01:32.000] event: {"seq":0,"type":"event","event":"projectLoadingFinish","body":{"projectName":"/a/b/tsconfig.json"}} -Info 54 [16:01:33.000] event: +Info 54 [00:01:33.000] event: {"seq":0,"type":"event","event":"configFileDiag","body":{"triggerFile":"/a/b/tsconfig.json","configFile":"/a/b/tsconfig.json","diagnostics":[]}} -Info 55 [16:01:34.000] event: +Info 55 [00:01:34.000] event: {"seq":0,"type":"event","event":"syntaxDiag","body":{"file":"/a/b/app.ts","diagnostics":[]}} -Info 56 [16:01:35.000] Running: /a/b/tsconfig.json -Info 57 [16:01:36.000] Running: *ensureProjectForOpenFiles* -Info 58 [16:01:37.000] Before ensureProjectForOpenFiles: -Info 59 [16:01:38.000] Project '/a/b/tsconfig.json' (Configured) -Info 59 [16:01:39.000] Files (2) - -Info 59 [16:01:40.000] ----------------------------------------------- -Info 59 [16:01:41.000] Open files: -Info 59 [16:01:42.000] FileName: /a/b/app.ts ProjectRootPath: undefined -Info 59 [16:01:43.000] Projects: /a/b/tsconfig.json -Info 59 [16:01:44.000] After ensureProjectForOpenFiles: -Info 60 [16:01:45.000] Project '/a/b/tsconfig.json' (Configured) -Info 60 [16:01:46.000] Files (2) - -Info 60 [16:01:47.000] ----------------------------------------------- -Info 60 [16:01:48.000] Open files: -Info 60 [16:01:49.000] FileName: /a/b/app.ts ProjectRootPath: undefined -Info 60 [16:01:50.000] Projects: /a/b/tsconfig.json -Info 60 [16:01:51.000] got projects updated in background, updating diagnostics for /a/b/app.ts -Info 61 [16:01:52.000] event: +Info 56 [00:01:35.000] Running: /a/b/tsconfig.json +Info 57 [00:01:36.000] Running: *ensureProjectForOpenFiles* +Info 58 [00:01:37.000] Before ensureProjectForOpenFiles: +Info 59 [00:01:38.000] Project '/a/b/tsconfig.json' (Configured) +Info 59 [00:01:39.000] Files (2) + +Info 59 [00:01:40.000] ----------------------------------------------- +Info 59 [00:01:41.000] Open files: +Info 59 [00:01:42.000] FileName: /a/b/app.ts ProjectRootPath: undefined +Info 59 [00:01:43.000] Projects: /a/b/tsconfig.json +Info 59 [00:01:44.000] After ensureProjectForOpenFiles: +Info 60 [00:01:45.000] Project '/a/b/tsconfig.json' (Configured) +Info 60 [00:01:46.000] Files (2) + +Info 60 [00:01:47.000] ----------------------------------------------- +Info 60 [00:01:48.000] Open files: +Info 60 [00:01:49.000] FileName: /a/b/app.ts ProjectRootPath: undefined +Info 60 [00:01:50.000] Projects: /a/b/tsconfig.json +Info 60 [00:01:51.000] got projects updated in background, updating diagnostics for /a/b/app.ts +Info 61 [00:01:52.000] event: {"seq":0,"type":"event","event":"projectsUpdatedInBackground","body":{"openFiles":["/a/b/app.ts"]}} After running timeout callbacks diff --git a/tests/baselines/reference/tsserver/projectErrors/configFileDiagnostic-events-are-generated-when-the-config-file-doesnt-have-errors.js b/tests/baselines/reference/tsserver/projectErrors/configFileDiagnostic-events-are-generated-when-the-config-file-doesnt-have-errors.js index 49f083282f6e8..d0e416cfc5a3b 100644 --- a/tests/baselines/reference/tsserver/projectErrors/configFileDiagnostic-events-are-generated-when-the-config-file-doesnt-have-errors.js +++ b/tests/baselines/reference/tsserver/projectErrors/configFileDiagnostic-events-are-generated-when-the-config-file-doesnt-have-errors.js @@ -1,5 +1,5 @@ -Info 0 [16:00:15.000] Provided types map file "/a/lib/typesMap.json" doesn't exist -Info 1 [16:00:16.000] request: +Info 0 [00:00:15.000] Provided types map file "/a/lib/typesMap.json" doesn't exist +Info 1 [00:00:16.000] request: { "seq": 0, "type": "request", @@ -37,13 +37,13 @@ FsWatches:: FsWatchesRecursive:: -Info 2 [16:00:17.000] Search path: /a/b -Info 3 [16:00:18.000] For info: /a/b/app.ts :: Config file name: /a/b/tsconfig.json -Info 4 [16:00:19.000] Creating configuration project /a/b/tsconfig.json -Info 5 [16:00:20.000] FileWatcher:: Added:: WatchInfo: /a/b/tsconfig.json 2000 undefined Project: /a/b/tsconfig.json WatchType: Config file -Info 6 [16:00:21.000] event: +Info 2 [00:00:17.000] Search path: /a/b +Info 3 [00:00:18.000] For info: /a/b/app.ts :: Config file name: /a/b/tsconfig.json +Info 4 [00:00:19.000] Creating configuration project /a/b/tsconfig.json +Info 5 [00:00:20.000] FileWatcher:: Added:: WatchInfo: /a/b/tsconfig.json 2000 undefined Project: /a/b/tsconfig.json WatchType: Config file +Info 6 [00:00:21.000] event: {"seq":0,"type":"event","event":"projectLoadingStart","body":{"projectName":"/a/b/tsconfig.json","reason":"Creating possible configured project for /a/b/app.ts to open"}} -Info 7 [16:00:22.000] Config: /a/b/tsconfig.json : { +Info 7 [00:00:22.000] Config: /a/b/tsconfig.json : { "rootNames": [ "/a/b/app.ts" ], @@ -51,16 +51,16 @@ Info 7 [16:00:22.000] Config: /a/b/tsconfig.json : { "configFilePath": "/a/b/tsconfig.json" } } -Info 8 [16:00:23.000] DirectoryWatcher:: Added:: WatchInfo: /a/b 1 undefined Config: /a/b/tsconfig.json WatchType: Wild card directory -Info 9 [16:00:24.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /a/b 1 undefined Config: /a/b/tsconfig.json WatchType: Wild card directory -Info 10 [16:00:25.000] Plugins were requested but not running in environment that supports 'require'. Nothing will be loaded -Info 11 [16:00:26.000] Starting updateGraphWorker: Project: /a/b/tsconfig.json -Info 12 [16:00:27.000] FileWatcher:: Added:: WatchInfo: /a/lib/lib.d.ts 500 undefined WatchType: Closed Script info -Info 13 [16:00:28.000] DirectoryWatcher:: Added:: WatchInfo: /a/b/node_modules/@types 1 undefined Project: /a/b/tsconfig.json WatchType: Type roots -Info 14 [16:00:29.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /a/b/node_modules/@types 1 undefined Project: /a/b/tsconfig.json WatchType: Type roots -Info 15 [16:00:30.000] Finishing updateGraphWorker: Project: /a/b/tsconfig.json Version: 1 structureChanged: true structureIsReused:: Not Elapsed:: *ms -Info 16 [16:00:31.000] Project '/a/b/tsconfig.json' (Configured) -Info 17 [16:00:32.000] Files (2) +Info 8 [00:00:23.000] DirectoryWatcher:: Added:: WatchInfo: /a/b 1 undefined Config: /a/b/tsconfig.json WatchType: Wild card directory +Info 9 [00:00:24.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /a/b 1 undefined Config: /a/b/tsconfig.json WatchType: Wild card directory +Info 10 [00:00:25.000] Plugins were requested but not running in environment that supports 'require'. Nothing will be loaded +Info 11 [00:00:26.000] Starting updateGraphWorker: Project: /a/b/tsconfig.json +Info 12 [00:00:27.000] FileWatcher:: Added:: WatchInfo: /a/lib/lib.d.ts 500 undefined WatchType: Closed Script info +Info 13 [00:00:28.000] DirectoryWatcher:: Added:: WatchInfo: /a/b/node_modules/@types 1 undefined Project: /a/b/tsconfig.json WatchType: Type roots +Info 14 [00:00:29.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /a/b/node_modules/@types 1 undefined Project: /a/b/tsconfig.json WatchType: Type roots +Info 15 [00:00:30.000] Finishing updateGraphWorker: Project: /a/b/tsconfig.json Version: 1 structureChanged: true structureIsReused:: Not Elapsed:: *ms +Info 16 [00:00:31.000] Project '/a/b/tsconfig.json' (Configured) +Info 17 [00:00:32.000] Files (2) /a/lib/lib.d.ts /a/b/app.ts @@ -70,20 +70,20 @@ Info 17 [16:00:32.000] Files (2) app.ts Matched by default include pattern '**/*' -Info 18 [16:00:33.000] ----------------------------------------------- -Info 19 [16:00:34.000] event: +Info 18 [00:00:33.000] ----------------------------------------------- +Info 19 [00:00:34.000] event: {"seq":0,"type":"event","event":"projectLoadingFinish","body":{"projectName":"/a/b/tsconfig.json"}} -Info 20 [16:00:35.000] event: +Info 20 [00:00:35.000] event: {"seq":0,"type":"event","event":"telemetry","body":{"telemetryEventName":"projectInfo","payload":{"projectId":"e10a1dc99ee63f16cb9b69bcee75540cdf41a1137371d3afbd4e7de507be5207","fileStats":{"js":0,"jsSize":0,"jsx":0,"jsxSize":0,"ts":1,"tsSize":10,"tsx":0,"tsxSize":0,"dts":1,"dtsSize":334,"deferred":0,"deferredSize":0},"compilerOptions":{},"typeAcquisition":{"enable":false,"include":false,"exclude":false},"extends":false,"files":false,"include":false,"exclude":false,"compileOnSave":false,"configFileName":"tsconfig.json","projectType":"configured","languageServiceEnabled":true,"version":"FakeVersion"}}} -Info 21 [16:00:36.000] event: +Info 21 [00:00:36.000] event: {"seq":0,"type":"event","event":"configFileDiag","body":{"triggerFile":"/a/b/app.ts","configFile":"/a/b/tsconfig.json","diagnostics":[]}} -Info 22 [16:00:37.000] Project '/a/b/tsconfig.json' (Configured) -Info 22 [16:00:38.000] Files (2) +Info 22 [00:00:37.000] Project '/a/b/tsconfig.json' (Configured) +Info 22 [00:00:38.000] Files (2) -Info 22 [16:00:39.000] ----------------------------------------------- -Info 22 [16:00:40.000] Open files: -Info 22 [16:00:41.000] FileName: /a/b/app.ts ProjectRootPath: undefined -Info 22 [16:00:42.000] Projects: /a/b/tsconfig.json +Info 22 [00:00:39.000] ----------------------------------------------- +Info 22 [00:00:40.000] Open files: +Info 22 [00:00:41.000] FileName: /a/b/app.ts ProjectRootPath: undefined +Info 22 [00:00:42.000] Projects: /a/b/tsconfig.json After request PolledWatches:: @@ -100,7 +100,7 @@ FsWatchesRecursive:: /a/b: {} -Info 22 [16:00:43.000] response: +Info 22 [00:00:43.000] response: { "responseRequired": false } \ No newline at end of file diff --git a/tests/baselines/reference/tsserver/projectErrors/configFileDiagnostic-events-are-generated-when-the-config-file-has-errors.js b/tests/baselines/reference/tsserver/projectErrors/configFileDiagnostic-events-are-generated-when-the-config-file-has-errors.js index 01cd2f900d1be..90406475a75d0 100644 --- a/tests/baselines/reference/tsserver/projectErrors/configFileDiagnostic-events-are-generated-when-the-config-file-has-errors.js +++ b/tests/baselines/reference/tsserver/projectErrors/configFileDiagnostic-events-are-generated-when-the-config-file-has-errors.js @@ -1,5 +1,5 @@ -Info 0 [16:00:15.000] Provided types map file "/a/lib/typesMap.json" doesn't exist -Info 1 [16:00:16.000] request: +Info 0 [00:00:15.000] Provided types map file "/a/lib/typesMap.json" doesn't exist +Info 1 [00:00:16.000] request: { "seq": 0, "type": "request", @@ -40,13 +40,13 @@ FsWatches:: FsWatchesRecursive:: -Info 2 [16:00:17.000] Search path: /a/b -Info 3 [16:00:18.000] For info: /a/b/app.ts :: Config file name: /a/b/tsconfig.json -Info 4 [16:00:19.000] Creating configuration project /a/b/tsconfig.json -Info 5 [16:00:20.000] FileWatcher:: Added:: WatchInfo: /a/b/tsconfig.json 2000 undefined Project: /a/b/tsconfig.json WatchType: Config file -Info 6 [16:00:21.000] event: +Info 2 [00:00:17.000] Search path: /a/b +Info 3 [00:00:18.000] For info: /a/b/app.ts :: Config file name: /a/b/tsconfig.json +Info 4 [00:00:19.000] Creating configuration project /a/b/tsconfig.json +Info 5 [00:00:20.000] FileWatcher:: Added:: WatchInfo: /a/b/tsconfig.json 2000 undefined Project: /a/b/tsconfig.json WatchType: Config file +Info 6 [00:00:21.000] event: {"seq":0,"type":"event","event":"projectLoadingStart","body":{"projectName":"/a/b/tsconfig.json","reason":"Creating possible configured project for /a/b/app.ts to open"}} -Info 7 [16:00:22.000] Config: /a/b/tsconfig.json : { +Info 7 [00:00:22.000] Config: /a/b/tsconfig.json : { "rootNames": [ "/a/b/app.ts" ], @@ -54,16 +54,16 @@ Info 7 [16:00:22.000] Config: /a/b/tsconfig.json : { "configFilePath": "/a/b/tsconfig.json" } } -Info 8 [16:00:23.000] DirectoryWatcher:: Added:: WatchInfo: /a/b 1 undefined Config: /a/b/tsconfig.json WatchType: Wild card directory -Info 9 [16:00:24.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /a/b 1 undefined Config: /a/b/tsconfig.json WatchType: Wild card directory -Info 10 [16:00:25.000] Plugins were requested but not running in environment that supports 'require'. Nothing will be loaded -Info 11 [16:00:26.000] Starting updateGraphWorker: Project: /a/b/tsconfig.json -Info 12 [16:00:27.000] FileWatcher:: Added:: WatchInfo: /a/lib/lib.d.ts 500 undefined WatchType: Closed Script info -Info 13 [16:00:28.000] DirectoryWatcher:: Added:: WatchInfo: /a/b/node_modules/@types 1 undefined Project: /a/b/tsconfig.json WatchType: Type roots -Info 14 [16:00:29.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /a/b/node_modules/@types 1 undefined Project: /a/b/tsconfig.json WatchType: Type roots -Info 15 [16:00:30.000] Finishing updateGraphWorker: Project: /a/b/tsconfig.json Version: 1 structureChanged: true structureIsReused:: Not Elapsed:: *ms -Info 16 [16:00:31.000] Project '/a/b/tsconfig.json' (Configured) -Info 17 [16:00:32.000] Files (2) +Info 8 [00:00:23.000] DirectoryWatcher:: Added:: WatchInfo: /a/b 1 undefined Config: /a/b/tsconfig.json WatchType: Wild card directory +Info 9 [00:00:24.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /a/b 1 undefined Config: /a/b/tsconfig.json WatchType: Wild card directory +Info 10 [00:00:25.000] Plugins were requested but not running in environment that supports 'require'. Nothing will be loaded +Info 11 [00:00:26.000] Starting updateGraphWorker: Project: /a/b/tsconfig.json +Info 12 [00:00:27.000] FileWatcher:: Added:: WatchInfo: /a/lib/lib.d.ts 500 undefined WatchType: Closed Script info +Info 13 [00:00:28.000] DirectoryWatcher:: Added:: WatchInfo: /a/b/node_modules/@types 1 undefined Project: /a/b/tsconfig.json WatchType: Type roots +Info 14 [00:00:29.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /a/b/node_modules/@types 1 undefined Project: /a/b/tsconfig.json WatchType: Type roots +Info 15 [00:00:30.000] Finishing updateGraphWorker: Project: /a/b/tsconfig.json Version: 1 structureChanged: true structureIsReused:: Not Elapsed:: *ms +Info 16 [00:00:31.000] Project '/a/b/tsconfig.json' (Configured) +Info 17 [00:00:32.000] Files (2) /a/lib/lib.d.ts /a/b/app.ts @@ -73,20 +73,20 @@ Info 17 [16:00:32.000] Files (2) app.ts Matched by default include pattern '**/*' -Info 18 [16:00:33.000] ----------------------------------------------- -Info 19 [16:00:34.000] event: +Info 18 [00:00:33.000] ----------------------------------------------- +Info 19 [00:00:34.000] event: {"seq":0,"type":"event","event":"projectLoadingFinish","body":{"projectName":"/a/b/tsconfig.json"}} -Info 20 [16:00:35.000] event: +Info 20 [00:00:35.000] event: {"seq":0,"type":"event","event":"telemetry","body":{"telemetryEventName":"projectInfo","payload":{"projectId":"e10a1dc99ee63f16cb9b69bcee75540cdf41a1137371d3afbd4e7de507be5207","fileStats":{"js":0,"jsSize":0,"jsx":0,"jsxSize":0,"ts":1,"tsSize":10,"tsx":0,"tsxSize":0,"dts":1,"dtsSize":334,"deferred":0,"deferredSize":0},"compilerOptions":{},"typeAcquisition":{"enable":false,"include":false,"exclude":false},"extends":false,"files":false,"include":false,"exclude":false,"compileOnSave":false,"configFileName":"tsconfig.json","projectType":"configured","languageServiceEnabled":true,"version":"FakeVersion"}}} -Info 21 [16:00:36.000] event: +Info 21 [00:00:36.000] event: {"seq":0,"type":"event","event":"configFileDiag","body":{"triggerFile":"/a/b/app.ts","configFile":"/a/b/tsconfig.json","diagnostics":[{"start":{"line":3,"offset":25},"end":{"line":3,"offset":30},"text":"Unknown compiler option 'foo'.","code":5023,"category":"error","fileName":"/a/b/tsconfig.json"},{"start":{"line":4,"offset":25},"end":{"line":4,"offset":34},"text":"Unknown compiler option 'allowJS'. Did you mean 'allowJs'?","code":5025,"category":"error","fileName":"/a/b/tsconfig.json"}]}} -Info 22 [16:00:37.000] Project '/a/b/tsconfig.json' (Configured) -Info 22 [16:00:38.000] Files (2) +Info 22 [00:00:37.000] Project '/a/b/tsconfig.json' (Configured) +Info 22 [00:00:38.000] Files (2) -Info 22 [16:00:39.000] ----------------------------------------------- -Info 22 [16:00:40.000] Open files: -Info 22 [16:00:41.000] FileName: /a/b/app.ts ProjectRootPath: undefined -Info 22 [16:00:42.000] Projects: /a/b/tsconfig.json +Info 22 [00:00:39.000] ----------------------------------------------- +Info 22 [00:00:40.000] Open files: +Info 22 [00:00:41.000] FileName: /a/b/app.ts ProjectRootPath: undefined +Info 22 [00:00:42.000] Projects: /a/b/tsconfig.json After request PolledWatches:: @@ -103,7 +103,7 @@ FsWatchesRecursive:: /a/b: {} -Info 22 [16:00:43.000] response: +Info 22 [00:00:43.000] response: { "responseRequired": false } \ No newline at end of file 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 2f9753a9b68c9..c2f8b2b299812 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 @@ -1,5 +1,5 @@ -Info 0 [16:00:15.000] Provided types map file "/a/lib/typesMap.json" doesn't exist -Info 1 [16:00:16.000] request: +Info 0 [00:00:15.000] Provided types map file "/a/lib/typesMap.json" doesn't exist +Info 1 [00:00:16.000] request: { "seq": 0, "type": "request", @@ -41,13 +41,13 @@ FsWatches:: FsWatchesRecursive:: -Info 2 [16:00:17.000] Search path: /a/b -Info 3 [16:00:18.000] For info: /a/b/test.ts :: Config file name: /a/b/tsconfig.json -Info 4 [16:00:19.000] Creating configuration project /a/b/tsconfig.json -Info 5 [16:00:20.000] FileWatcher:: Added:: WatchInfo: /a/b/tsconfig.json 2000 undefined Project: /a/b/tsconfig.json WatchType: Config file -Info 6 [16:00:21.000] event: +Info 2 [00:00:17.000] Search path: /a/b +Info 3 [00:00:18.000] For info: /a/b/test.ts :: Config file name: /a/b/tsconfig.json +Info 4 [00:00:19.000] Creating configuration project /a/b/tsconfig.json +Info 5 [00:00:20.000] FileWatcher:: Added:: WatchInfo: /a/b/tsconfig.json 2000 undefined Project: /a/b/tsconfig.json WatchType: Config file +Info 6 [00:00:21.000] event: {"seq":0,"type":"event","event":"projectLoadingStart","body":{"projectName":"/a/b/tsconfig.json","reason":"Creating possible configured project for /a/b/test.ts to open"}} -Info 7 [16:00:22.000] Config: /a/b/tsconfig.json : { +Info 7 [00:00:22.000] Config: /a/b/tsconfig.json : { "rootNames": [ "/a/b/app.ts" ], @@ -55,15 +55,15 @@ Info 7 [16:00:22.000] Config: /a/b/tsconfig.json : { "configFilePath": "/a/b/tsconfig.json" } } -Info 8 [16:00:23.000] Plugins were requested but not running in environment that supports 'require'. Nothing will be loaded -Info 9 [16:00:24.000] FileWatcher:: Added:: WatchInfo: /a/b/app.ts 500 undefined WatchType: Closed Script info -Info 10 [16:00:25.000] Starting updateGraphWorker: Project: /a/b/tsconfig.json -Info 11 [16:00:26.000] FileWatcher:: Added:: WatchInfo: /a/lib/lib.d.ts 500 undefined WatchType: Closed Script info -Info 12 [16:00:27.000] DirectoryWatcher:: Added:: WatchInfo: /a/b/node_modules/@types 1 undefined Project: /a/b/tsconfig.json WatchType: Type roots -Info 13 [16:00:28.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /a/b/node_modules/@types 1 undefined Project: /a/b/tsconfig.json WatchType: Type roots -Info 14 [16:00:29.000] Finishing updateGraphWorker: Project: /a/b/tsconfig.json Version: 1 structureChanged: true structureIsReused:: Not Elapsed:: *ms -Info 15 [16:00:30.000] Project '/a/b/tsconfig.json' (Configured) -Info 16 [16:00:31.000] Files (2) +Info 8 [00:00:23.000] Plugins were requested but not running in environment that supports 'require'. Nothing will be loaded +Info 9 [00:00:24.000] FileWatcher:: Added:: WatchInfo: /a/b/app.ts 500 undefined WatchType: Closed Script info +Info 10 [00:00:25.000] Starting updateGraphWorker: Project: /a/b/tsconfig.json +Info 11 [00:00:26.000] FileWatcher:: Added:: WatchInfo: /a/lib/lib.d.ts 500 undefined WatchType: Closed Script info +Info 12 [00:00:27.000] DirectoryWatcher:: Added:: WatchInfo: /a/b/node_modules/@types 1 undefined Project: /a/b/tsconfig.json WatchType: Type roots +Info 13 [00:00:28.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /a/b/node_modules/@types 1 undefined Project: /a/b/tsconfig.json WatchType: Type roots +Info 14 [00:00:29.000] Finishing updateGraphWorker: Project: /a/b/tsconfig.json Version: 1 structureChanged: true structureIsReused:: Not Elapsed:: *ms +Info 15 [00:00:30.000] Project '/a/b/tsconfig.json' (Configured) +Info 16 [00:00:31.000] Files (2) /a/lib/lib.d.ts /a/b/app.ts @@ -73,20 +73,20 @@ Info 16 [16:00:31.000] Files (2) app.ts Part of 'files' list in tsconfig.json -Info 17 [16:00:32.000] ----------------------------------------------- -Info 18 [16:00:33.000] event: +Info 17 [00:00:32.000] ----------------------------------------------- +Info 18 [00:00:33.000] event: {"seq":0,"type":"event","event":"projectLoadingFinish","body":{"projectName":"/a/b/tsconfig.json"}} -Info 19 [16:00:34.000] event: +Info 19 [00:00:34.000] event: {"seq":0,"type":"event","event":"telemetry","body":{"telemetryEventName":"projectInfo","payload":{"projectId":"e10a1dc99ee63f16cb9b69bcee75540cdf41a1137371d3afbd4e7de507be5207","fileStats":{"js":0,"jsSize":0,"jsx":0,"jsxSize":0,"ts":1,"tsSize":10,"tsx":0,"tsxSize":0,"dts":1,"dtsSize":334,"deferred":0,"deferredSize":0},"compilerOptions":{},"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 20 [16:00:35.000] event: +Info 20 [00:00:35.000] event: {"seq":0,"type":"event","event":"configFileDiag","body":{"triggerFile":"/a/b/test.ts","configFile":"/a/b/tsconfig.json","diagnostics":[{"start":{"line":3,"offset":25},"end":{"line":3,"offset":30},"text":"Unknown compiler option 'foo'.","code":5023,"category":"error","fileName":"/a/b/tsconfig.json"},{"start":{"line":4,"offset":25},"end":{"line":4,"offset":34},"text":"Unknown compiler option 'allowJS'. Did you mean 'allowJs'?","code":5025,"category":"error","fileName":"/a/b/tsconfig.json"}]}} -Info 21 [16:00:36.000] Plugins were requested but not running in environment that supports 'require'. Nothing will be loaded -Info 22 [16:00:37.000] Starting updateGraphWorker: Project: /dev/null/inferredProject1* -Info 23 [16:00:38.000] DirectoryWatcher:: Added:: WatchInfo: /a/b/node_modules/@types 1 undefined Project: /dev/null/inferredProject1* WatchType: Type roots -Info 24 [16:00:39.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /a/b/node_modules/@types 1 undefined Project: /dev/null/inferredProject1* WatchType: Type roots -Info 25 [16:00:40.000] Finishing updateGraphWorker: Project: /dev/null/inferredProject1* Version: 1 structureChanged: true structureIsReused:: Not Elapsed:: *ms -Info 26 [16:00:41.000] Project '/dev/null/inferredProject1*' (Inferred) -Info 27 [16:00:42.000] Files (2) +Info 21 [00:00:36.000] Plugins were requested but not running in environment that supports 'require'. Nothing will be loaded +Info 22 [00:00:37.000] Starting updateGraphWorker: Project: /dev/null/inferredProject1* +Info 23 [00:00:38.000] DirectoryWatcher:: Added:: WatchInfo: /a/b/node_modules/@types 1 undefined Project: /dev/null/inferredProject1* WatchType: Type roots +Info 24 [00:00:39.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /a/b/node_modules/@types 1 undefined Project: /dev/null/inferredProject1* WatchType: Type roots +Info 25 [00:00:40.000] Finishing updateGraphWorker: Project: /dev/null/inferredProject1* Version: 1 structureChanged: true structureIsReused:: Not Elapsed:: *ms +Info 26 [00:00:41.000] Project '/dev/null/inferredProject1*' (Inferred) +Info 27 [00:00:42.000] Files (2) /a/lib/lib.d.ts /a/b/test.ts @@ -96,18 +96,18 @@ Info 27 [16:00:42.000] Files (2) test.ts Root file specified for compilation -Info 28 [16:00:43.000] ----------------------------------------------- -Info 29 [16:00:44.000] Project '/a/b/tsconfig.json' (Configured) -Info 29 [16:00:45.000] Files (2) +Info 28 [00:00:43.000] ----------------------------------------------- +Info 29 [00:00:44.000] Project '/a/b/tsconfig.json' (Configured) +Info 29 [00:00:45.000] Files (2) -Info 29 [16:00:46.000] ----------------------------------------------- -Info 29 [16:00:47.000] Project '/dev/null/inferredProject1*' (Inferred) -Info 29 [16:00:48.000] Files (2) +Info 29 [00:00:46.000] ----------------------------------------------- +Info 29 [00:00:47.000] Project '/dev/null/inferredProject1*' (Inferred) +Info 29 [00:00:48.000] Files (2) -Info 29 [16:00:49.000] ----------------------------------------------- -Info 29 [16:00:50.000] Open files: -Info 29 [16:00:51.000] FileName: /a/b/test.ts ProjectRootPath: undefined -Info 29 [16:00:52.000] Projects: /dev/null/inferredProject1* +Info 29 [00:00:49.000] ----------------------------------------------- +Info 29 [00:00:50.000] Open files: +Info 29 [00:00:51.000] FileName: /a/b/test.ts ProjectRootPath: undefined +Info 29 [00:00:52.000] Projects: /dev/null/inferredProject1* After request PolledWatches:: @@ -124,11 +124,11 @@ FsWatches:: FsWatchesRecursive:: -Info 29 [16:00:53.000] response: +Info 29 [00:00:53.000] response: { "responseRequired": false } -Info 30 [16:00:54.000] request: +Info 30 [00:00:54.000] request: { "seq": 0, "type": "request", @@ -153,22 +153,22 @@ FsWatches:: FsWatchesRecursive:: -Info 31 [16:00:55.000] FileWatcher:: Close:: WatchInfo: /a/b/app.ts 500 undefined WatchType: Closed Script info -Info 32 [16:00:56.000] Search path: /a/b -Info 33 [16:00:57.000] For info: /a/b/app.ts :: Config file name: /a/b/tsconfig.json -Info 34 [16:00:58.000] Project '/a/b/tsconfig.json' (Configured) -Info 34 [16:00:59.000] Files (2) - -Info 34 [16:01:00.000] ----------------------------------------------- -Info 34 [16:01:01.000] Project '/dev/null/inferredProject1*' (Inferred) -Info 34 [16:01:02.000] Files (2) - -Info 34 [16:01:03.000] ----------------------------------------------- -Info 34 [16:01:04.000] Open files: -Info 34 [16:01:05.000] FileName: /a/b/test.ts ProjectRootPath: undefined -Info 34 [16:01:06.000] Projects: /dev/null/inferredProject1* -Info 34 [16:01:07.000] FileName: /a/b/app.ts ProjectRootPath: undefined -Info 34 [16:01:08.000] Projects: /a/b/tsconfig.json +Info 31 [00:00:55.000] FileWatcher:: Close:: WatchInfo: /a/b/app.ts 500 undefined WatchType: Closed Script info +Info 32 [00:00:56.000] Search path: /a/b +Info 33 [00:00:57.000] For info: /a/b/app.ts :: Config file name: /a/b/tsconfig.json +Info 34 [00:00:58.000] Project '/a/b/tsconfig.json' (Configured) +Info 34 [00:00:59.000] Files (2) + +Info 34 [00:01:00.000] ----------------------------------------------- +Info 34 [00:01:01.000] Project '/dev/null/inferredProject1*' (Inferred) +Info 34 [00:01:02.000] Files (2) + +Info 34 [00:01:03.000] ----------------------------------------------- +Info 34 [00:01:04.000] Open files: +Info 34 [00:01:05.000] FileName: /a/b/test.ts ProjectRootPath: undefined +Info 34 [00:01:06.000] Projects: /dev/null/inferredProject1* +Info 34 [00:01:07.000] FileName: /a/b/app.ts ProjectRootPath: undefined +Info 34 [00:01:08.000] Projects: /a/b/tsconfig.json After request PolledWatches:: @@ -183,11 +183,11 @@ FsWatches:: FsWatchesRecursive:: -Info 34 [16:01:09.000] response: +Info 34 [00:01:09.000] response: { "responseRequired": false } -Info 35 [16:01:10.000] request: +Info 35 [00:01:10.000] request: { "seq": 0, "type": "request", @@ -210,17 +210,17 @@ FsWatches:: FsWatchesRecursive:: -Info 36 [16:01:11.000] Search path: /a/b -Info 37 [16:01:12.000] For info: /a/b/test2.ts :: Config file name: /a/b/tsconfig.json -Info 38 [16:01:13.000] event: +Info 36 [00:01:11.000] Search path: /a/b +Info 37 [00:01:12.000] For info: /a/b/test2.ts :: Config file name: /a/b/tsconfig.json +Info 38 [00:01:13.000] event: {"seq":0,"type":"event","event":"configFileDiag","body":{"triggerFile":"/a/b/test2.ts","configFile":"/a/b/tsconfig.json","diagnostics":[{"start":{"line":3,"offset":25},"end":{"line":3,"offset":30},"text":"Unknown compiler option 'foo'.","code":5023,"category":"error","fileName":"/a/b/tsconfig.json"},{"start":{"line":4,"offset":25},"end":{"line":4,"offset":34},"text":"Unknown compiler option 'allowJS'. Did you mean 'allowJs'?","code":5025,"category":"error","fileName":"/a/b/tsconfig.json"}]}} -Info 39 [16:01:14.000] Plugins were requested but not running in environment that supports 'require'. Nothing will be loaded -Info 40 [16:01:15.000] Starting updateGraphWorker: Project: /dev/null/inferredProject2* -Info 41 [16:01:16.000] DirectoryWatcher:: Added:: WatchInfo: /a/b/node_modules/@types 1 undefined Project: /dev/null/inferredProject2* WatchType: Type roots -Info 42 [16:01:17.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /a/b/node_modules/@types 1 undefined Project: /dev/null/inferredProject2* WatchType: Type roots -Info 43 [16:01:18.000] Finishing updateGraphWorker: Project: /dev/null/inferredProject2* Version: 1 structureChanged: true structureIsReused:: Not Elapsed:: *ms -Info 44 [16:01:19.000] Project '/dev/null/inferredProject2*' (Inferred) -Info 45 [16:01:20.000] Files (2) +Info 39 [00:01:14.000] Plugins were requested but not running in environment that supports 'require'. Nothing will be loaded +Info 40 [00:01:15.000] Starting updateGraphWorker: Project: /dev/null/inferredProject2* +Info 41 [00:01:16.000] DirectoryWatcher:: Added:: WatchInfo: /a/b/node_modules/@types 1 undefined Project: /dev/null/inferredProject2* WatchType: Type roots +Info 42 [00:01:17.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /a/b/node_modules/@types 1 undefined Project: /dev/null/inferredProject2* WatchType: Type roots +Info 43 [00:01:18.000] Finishing updateGraphWorker: Project: /dev/null/inferredProject2* Version: 1 structureChanged: true structureIsReused:: Not Elapsed:: *ms +Info 44 [00:01:19.000] Project '/dev/null/inferredProject2*' (Inferred) +Info 45 [00:01:20.000] Files (2) /a/lib/lib.d.ts /a/b/test2.ts @@ -230,26 +230,26 @@ Info 45 [16:01:20.000] Files (2) test2.ts Root file specified for compilation -Info 46 [16:01:21.000] ----------------------------------------------- -Info 47 [16:01:22.000] Project '/a/b/tsconfig.json' (Configured) -Info 47 [16:01:23.000] Files (2) - -Info 47 [16:01:24.000] ----------------------------------------------- -Info 47 [16:01:25.000] Project '/dev/null/inferredProject1*' (Inferred) -Info 47 [16:01:26.000] Files (2) - -Info 47 [16:01:27.000] ----------------------------------------------- -Info 47 [16:01:28.000] Project '/dev/null/inferredProject2*' (Inferred) -Info 47 [16:01:29.000] Files (2) - -Info 47 [16:01:30.000] ----------------------------------------------- -Info 47 [16:01:31.000] Open files: -Info 47 [16:01:32.000] FileName: /a/b/test.ts ProjectRootPath: undefined -Info 47 [16:01:33.000] Projects: /dev/null/inferredProject1* -Info 47 [16:01:34.000] FileName: /a/b/app.ts ProjectRootPath: undefined -Info 47 [16:01:35.000] Projects: /a/b/tsconfig.json -Info 47 [16:01:36.000] FileName: /a/b/test2.ts ProjectRootPath: undefined -Info 47 [16:01:37.000] Projects: /dev/null/inferredProject2* +Info 46 [00:01:21.000] ----------------------------------------------- +Info 47 [00:01:22.000] Project '/a/b/tsconfig.json' (Configured) +Info 47 [00:01:23.000] Files (2) + +Info 47 [00:01:24.000] ----------------------------------------------- +Info 47 [00:01:25.000] Project '/dev/null/inferredProject1*' (Inferred) +Info 47 [00:01:26.000] Files (2) + +Info 47 [00:01:27.000] ----------------------------------------------- +Info 47 [00:01:28.000] Project '/dev/null/inferredProject2*' (Inferred) +Info 47 [00:01:29.000] Files (2) + +Info 47 [00:01:30.000] ----------------------------------------------- +Info 47 [00:01:31.000] Open files: +Info 47 [00:01:32.000] FileName: /a/b/test.ts ProjectRootPath: undefined +Info 47 [00:01:33.000] Projects: /dev/null/inferredProject1* +Info 47 [00:01:34.000] FileName: /a/b/app.ts ProjectRootPath: undefined +Info 47 [00:01:35.000] Projects: /a/b/tsconfig.json +Info 47 [00:01:36.000] FileName: /a/b/test2.ts ProjectRootPath: undefined +Info 47 [00:01:37.000] Projects: /dev/null/inferredProject2* After request PolledWatches:: @@ -264,7 +264,7 @@ FsWatches:: FsWatchesRecursive:: -Info 47 [16:01:38.000] response: +Info 47 [00:01:38.000] response: { "responseRequired": false } \ No newline at end of file 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 699583aecd253..1d0355c5f2e4b 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 @@ -1,5 +1,5 @@ -Info 0 [16:00:19.000] Provided types map file "/a/lib/typesMap.json" doesn't exist -Info 1 [16:00:20.000] request: +Info 0 [00:00:19.000] Provided types map file "/a/lib/typesMap.json" doesn't exist +Info 1 [00:00:20.000] request: { "seq": 0, "type": "request", @@ -43,13 +43,13 @@ FsWatches:: FsWatchesRecursive:: -Info 2 [16:00:21.000] Search path: /a/b -Info 3 [16:00:22.000] For info: /a/b/test.ts :: Config file name: /a/b/tsconfig.json -Info 4 [16:00:23.000] Creating configuration project /a/b/tsconfig.json -Info 5 [16:00:24.000] FileWatcher:: Added:: WatchInfo: /a/b/tsconfig.json 2000 undefined Project: /a/b/tsconfig.json WatchType: Config file -Info 6 [16:00:25.000] event: +Info 2 [00:00:21.000] Search path: /a/b +Info 3 [00:00:22.000] For info: /a/b/test.ts :: Config file name: /a/b/tsconfig.json +Info 4 [00:00:23.000] Creating configuration project /a/b/tsconfig.json +Info 5 [00:00:24.000] FileWatcher:: Added:: WatchInfo: /a/b/tsconfig.json 2000 undefined Project: /a/b/tsconfig.json WatchType: Config file +Info 6 [00:00:25.000] event: {"seq":0,"type":"event","event":"projectLoadingStart","body":{"projectName":"/a/b/tsconfig.json","reason":"Creating possible configured project for /a/b/test.ts to open"}} -Info 7 [16:00:26.000] Config: /a/b/tsconfig.json : { +Info 7 [00:00:26.000] Config: /a/b/tsconfig.json : { "rootNames": [ "/a/b/app.ts" ], @@ -57,15 +57,15 @@ Info 7 [16:00:26.000] Config: /a/b/tsconfig.json : { "configFilePath": "/a/b/tsconfig.json" } } -Info 8 [16:00:27.000] Plugins were requested but not running in environment that supports 'require'. Nothing will be loaded -Info 9 [16:00:28.000] FileWatcher:: Added:: WatchInfo: /a/b/app.ts 500 undefined WatchType: Closed Script info -Info 10 [16:00:29.000] Starting updateGraphWorker: Project: /a/b/tsconfig.json -Info 11 [16:00:30.000] FileWatcher:: Added:: WatchInfo: /a/lib/lib.d.ts 500 undefined WatchType: Closed Script info -Info 12 [16:00:31.000] DirectoryWatcher:: Added:: WatchInfo: /a/b/node_modules/@types 1 undefined Project: /a/b/tsconfig.json WatchType: Type roots -Info 13 [16:00:32.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /a/b/node_modules/@types 1 undefined Project: /a/b/tsconfig.json WatchType: Type roots -Info 14 [16:00:33.000] Finishing updateGraphWorker: Project: /a/b/tsconfig.json Version: 1 structureChanged: true structureIsReused:: Not Elapsed:: *ms -Info 15 [16:00:34.000] Project '/a/b/tsconfig.json' (Configured) -Info 16 [16:00:35.000] Files (2) +Info 8 [00:00:27.000] Plugins were requested but not running in environment that supports 'require'. Nothing will be loaded +Info 9 [00:00:28.000] FileWatcher:: Added:: WatchInfo: /a/b/app.ts 500 undefined WatchType: Closed Script info +Info 10 [00:00:29.000] Starting updateGraphWorker: Project: /a/b/tsconfig.json +Info 11 [00:00:30.000] FileWatcher:: Added:: WatchInfo: /a/lib/lib.d.ts 500 undefined WatchType: Closed Script info +Info 12 [00:00:31.000] DirectoryWatcher:: Added:: WatchInfo: /a/b/node_modules/@types 1 undefined Project: /a/b/tsconfig.json WatchType: Type roots +Info 13 [00:00:32.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /a/b/node_modules/@types 1 undefined Project: /a/b/tsconfig.json WatchType: Type roots +Info 14 [00:00:33.000] Finishing updateGraphWorker: Project: /a/b/tsconfig.json Version: 1 structureChanged: true structureIsReused:: Not Elapsed:: *ms +Info 15 [00:00:34.000] Project '/a/b/tsconfig.json' (Configured) +Info 16 [00:00:35.000] Files (2) /a/lib/lib.d.ts /a/b/app.ts @@ -75,20 +75,20 @@ Info 16 [16:00:35.000] Files (2) app.ts Part of 'files' list in tsconfig.json -Info 17 [16:00:36.000] ----------------------------------------------- -Info 18 [16:00:37.000] event: +Info 17 [00:00:36.000] ----------------------------------------------- +Info 18 [00:00:37.000] event: {"seq":0,"type":"event","event":"projectLoadingFinish","body":{"projectName":"/a/b/tsconfig.json"}} -Info 19 [16:00:38.000] event: +Info 19 [00:00:38.000] event: {"seq":0,"type":"event","event":"telemetry","body":{"telemetryEventName":"projectInfo","payload":{"projectId":"e10a1dc99ee63f16cb9b69bcee75540cdf41a1137371d3afbd4e7de507be5207","fileStats":{"js":0,"jsSize":0,"jsx":0,"jsxSize":0,"ts":1,"tsSize":10,"tsx":0,"tsxSize":0,"dts":1,"dtsSize":334,"deferred":0,"deferredSize":0},"compilerOptions":{},"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 20 [16:00:39.000] event: +Info 20 [00:00:39.000] event: {"seq":0,"type":"event","event":"configFileDiag","body":{"triggerFile":"/a/b/test.ts","configFile":"/a/b/tsconfig.json","diagnostics":[]}} -Info 21 [16:00:40.000] Plugins were requested but not running in environment that supports 'require'. Nothing will be loaded -Info 22 [16:00:41.000] Starting updateGraphWorker: Project: /dev/null/inferredProject1* -Info 23 [16:00:42.000] DirectoryWatcher:: Added:: WatchInfo: /a/b/node_modules/@types 1 undefined Project: /dev/null/inferredProject1* WatchType: Type roots -Info 24 [16:00:43.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /a/b/node_modules/@types 1 undefined Project: /dev/null/inferredProject1* WatchType: Type roots -Info 25 [16:00:44.000] Finishing updateGraphWorker: Project: /dev/null/inferredProject1* Version: 1 structureChanged: true structureIsReused:: Not Elapsed:: *ms -Info 26 [16:00:45.000] Project '/dev/null/inferredProject1*' (Inferred) -Info 27 [16:00:46.000] Files (2) +Info 21 [00:00:40.000] Plugins were requested but not running in environment that supports 'require'. Nothing will be loaded +Info 22 [00:00:41.000] Starting updateGraphWorker: Project: /dev/null/inferredProject1* +Info 23 [00:00:42.000] DirectoryWatcher:: Added:: WatchInfo: /a/b/node_modules/@types 1 undefined Project: /dev/null/inferredProject1* WatchType: Type roots +Info 24 [00:00:43.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /a/b/node_modules/@types 1 undefined Project: /dev/null/inferredProject1* WatchType: Type roots +Info 25 [00:00:44.000] Finishing updateGraphWorker: Project: /dev/null/inferredProject1* Version: 1 structureChanged: true structureIsReused:: Not Elapsed:: *ms +Info 26 [00:00:45.000] Project '/dev/null/inferredProject1*' (Inferred) +Info 27 [00:00:46.000] Files (2) /a/lib/lib.d.ts /a/b/test.ts @@ -98,18 +98,18 @@ Info 27 [16:00:46.000] Files (2) test.ts Root file specified for compilation -Info 28 [16:00:47.000] ----------------------------------------------- -Info 29 [16:00:48.000] Project '/a/b/tsconfig.json' (Configured) -Info 29 [16:00:49.000] Files (2) +Info 28 [00:00:47.000] ----------------------------------------------- +Info 29 [00:00:48.000] Project '/a/b/tsconfig.json' (Configured) +Info 29 [00:00:49.000] Files (2) -Info 29 [16:00:50.000] ----------------------------------------------- -Info 29 [16:00:51.000] Project '/dev/null/inferredProject1*' (Inferred) -Info 29 [16:00:52.000] Files (2) +Info 29 [00:00:50.000] ----------------------------------------------- +Info 29 [00:00:51.000] Project '/dev/null/inferredProject1*' (Inferred) +Info 29 [00:00:52.000] Files (2) -Info 29 [16:00:53.000] ----------------------------------------------- -Info 29 [16:00:54.000] Open files: -Info 29 [16:00:55.000] FileName: /a/b/test.ts ProjectRootPath: undefined -Info 29 [16:00:56.000] Projects: /dev/null/inferredProject1* +Info 29 [00:00:53.000] ----------------------------------------------- +Info 29 [00:00:54.000] Open files: +Info 29 [00:00:55.000] FileName: /a/b/test.ts ProjectRootPath: undefined +Info 29 [00:00:56.000] Projects: /dev/null/inferredProject1* After request PolledWatches:: @@ -126,11 +126,11 @@ FsWatches:: FsWatchesRecursive:: -Info 29 [16:00:57.000] response: +Info 29 [00:00:57.000] response: { "responseRequired": false } -Info 30 [16:00:58.000] request: +Info 30 [00:00:58.000] request: { "seq": 0, "type": "request", @@ -155,22 +155,22 @@ FsWatches:: FsWatchesRecursive:: -Info 31 [16:00:59.000] FileWatcher:: Close:: WatchInfo: /a/b/app.ts 500 undefined WatchType: Closed Script info -Info 32 [16:01:00.000] Search path: /a/b -Info 33 [16:01:01.000] For info: /a/b/app.ts :: Config file name: /a/b/tsconfig.json -Info 34 [16:01:02.000] Project '/a/b/tsconfig.json' (Configured) -Info 34 [16:01:03.000] Files (2) - -Info 34 [16:01:04.000] ----------------------------------------------- -Info 34 [16:01:05.000] Project '/dev/null/inferredProject1*' (Inferred) -Info 34 [16:01:06.000] Files (2) - -Info 34 [16:01:07.000] ----------------------------------------------- -Info 34 [16:01:08.000] Open files: -Info 34 [16:01:09.000] FileName: /a/b/test.ts ProjectRootPath: undefined -Info 34 [16:01:10.000] Projects: /dev/null/inferredProject1* -Info 34 [16:01:11.000] FileName: /a/b/app.ts ProjectRootPath: undefined -Info 34 [16:01:12.000] Projects: /a/b/tsconfig.json +Info 31 [00:00:59.000] FileWatcher:: Close:: WatchInfo: /a/b/app.ts 500 undefined WatchType: Closed Script info +Info 32 [00:01:00.000] Search path: /a/b +Info 33 [00:01:01.000] For info: /a/b/app.ts :: Config file name: /a/b/tsconfig.json +Info 34 [00:01:02.000] Project '/a/b/tsconfig.json' (Configured) +Info 34 [00:01:03.000] Files (2) + +Info 34 [00:01:04.000] ----------------------------------------------- +Info 34 [00:01:05.000] Project '/dev/null/inferredProject1*' (Inferred) +Info 34 [00:01:06.000] Files (2) + +Info 34 [00:01:07.000] ----------------------------------------------- +Info 34 [00:01:08.000] Open files: +Info 34 [00:01:09.000] FileName: /a/b/test.ts ProjectRootPath: undefined +Info 34 [00:01:10.000] Projects: /dev/null/inferredProject1* +Info 34 [00:01:11.000] FileName: /a/b/app.ts ProjectRootPath: undefined +Info 34 [00:01:12.000] Projects: /a/b/tsconfig.json After request PolledWatches:: @@ -185,11 +185,11 @@ FsWatches:: FsWatchesRecursive:: -Info 34 [16:01:13.000] response: +Info 34 [00:01:13.000] response: { "responseRequired": false } -Info 35 [16:01:14.000] request: +Info 35 [00:01:14.000] request: { "seq": 0, "type": "request", @@ -212,17 +212,17 @@ FsWatches:: FsWatchesRecursive:: -Info 36 [16:01:15.000] Search path: /a/b -Info 37 [16:01:16.000] For info: /a/b/test2.ts :: Config file name: /a/b/tsconfig.json -Info 38 [16:01:17.000] event: +Info 36 [00:01:15.000] Search path: /a/b +Info 37 [00:01:16.000] For info: /a/b/test2.ts :: Config file name: /a/b/tsconfig.json +Info 38 [00:01:17.000] event: {"seq":0,"type":"event","event":"configFileDiag","body":{"triggerFile":"/a/b/test2.ts","configFile":"/a/b/tsconfig.json","diagnostics":[]}} -Info 39 [16:01:18.000] Plugins were requested but not running in environment that supports 'require'. Nothing will be loaded -Info 40 [16:01:19.000] Starting updateGraphWorker: Project: /dev/null/inferredProject2* -Info 41 [16:01:20.000] DirectoryWatcher:: Added:: WatchInfo: /a/b/node_modules/@types 1 undefined Project: /dev/null/inferredProject2* WatchType: Type roots -Info 42 [16:01:21.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /a/b/node_modules/@types 1 undefined Project: /dev/null/inferredProject2* WatchType: Type roots -Info 43 [16:01:22.000] Finishing updateGraphWorker: Project: /dev/null/inferredProject2* Version: 1 structureChanged: true structureIsReused:: Not Elapsed:: *ms -Info 44 [16:01:23.000] Project '/dev/null/inferredProject2*' (Inferred) -Info 45 [16:01:24.000] Files (2) +Info 39 [00:01:18.000] Plugins were requested but not running in environment that supports 'require'. Nothing will be loaded +Info 40 [00:01:19.000] Starting updateGraphWorker: Project: /dev/null/inferredProject2* +Info 41 [00:01:20.000] DirectoryWatcher:: Added:: WatchInfo: /a/b/node_modules/@types 1 undefined Project: /dev/null/inferredProject2* WatchType: Type roots +Info 42 [00:01:21.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /a/b/node_modules/@types 1 undefined Project: /dev/null/inferredProject2* WatchType: Type roots +Info 43 [00:01:22.000] Finishing updateGraphWorker: Project: /dev/null/inferredProject2* Version: 1 structureChanged: true structureIsReused:: Not Elapsed:: *ms +Info 44 [00:01:23.000] Project '/dev/null/inferredProject2*' (Inferred) +Info 45 [00:01:24.000] Files (2) /a/lib/lib.d.ts /a/b/test2.ts @@ -232,26 +232,26 @@ Info 45 [16:01:24.000] Files (2) test2.ts Root file specified for compilation -Info 46 [16:01:25.000] ----------------------------------------------- -Info 47 [16:01:26.000] Project '/a/b/tsconfig.json' (Configured) -Info 47 [16:01:27.000] Files (2) - -Info 47 [16:01:28.000] ----------------------------------------------- -Info 47 [16:01:29.000] Project '/dev/null/inferredProject1*' (Inferred) -Info 47 [16:01:30.000] Files (2) - -Info 47 [16:01:31.000] ----------------------------------------------- -Info 47 [16:01:32.000] Project '/dev/null/inferredProject2*' (Inferred) -Info 47 [16:01:33.000] Files (2) - -Info 47 [16:01:34.000] ----------------------------------------------- -Info 47 [16:01:35.000] Open files: -Info 47 [16:01:36.000] FileName: /a/b/test.ts ProjectRootPath: undefined -Info 47 [16:01:37.000] Projects: /dev/null/inferredProject1* -Info 47 [16:01:38.000] FileName: /a/b/app.ts ProjectRootPath: undefined -Info 47 [16:01:39.000] Projects: /a/b/tsconfig.json -Info 47 [16:01:40.000] FileName: /a/b/test2.ts ProjectRootPath: undefined -Info 47 [16:01:41.000] Projects: /dev/null/inferredProject2* +Info 46 [00:01:25.000] ----------------------------------------------- +Info 47 [00:01:26.000] Project '/a/b/tsconfig.json' (Configured) +Info 47 [00:01:27.000] Files (2) + +Info 47 [00:01:28.000] ----------------------------------------------- +Info 47 [00:01:29.000] Project '/dev/null/inferredProject1*' (Inferred) +Info 47 [00:01:30.000] Files (2) + +Info 47 [00:01:31.000] ----------------------------------------------- +Info 47 [00:01:32.000] Project '/dev/null/inferredProject2*' (Inferred) +Info 47 [00:01:33.000] Files (2) + +Info 47 [00:01:34.000] ----------------------------------------------- +Info 47 [00:01:35.000] Open files: +Info 47 [00:01:36.000] FileName: /a/b/test.ts ProjectRootPath: undefined +Info 47 [00:01:37.000] Projects: /dev/null/inferredProject1* +Info 47 [00:01:38.000] FileName: /a/b/app.ts ProjectRootPath: undefined +Info 47 [00:01:39.000] Projects: /a/b/tsconfig.json +Info 47 [00:01:40.000] FileName: /a/b/test2.ts ProjectRootPath: undefined +Info 47 [00:01:41.000] Projects: /dev/null/inferredProject2* After request PolledWatches:: @@ -266,7 +266,7 @@ FsWatches:: FsWatchesRecursive:: -Info 47 [16:01:42.000] response: +Info 47 [00:01:42.000] response: { "responseRequired": false } \ No newline at end of file diff --git a/tests/baselines/reference/tsserver/projectErrors/configFileDiagnostic-events-are-not-generated-when-the-config-file-has-errors-but-suppressDiagnosticEvents-is-true.js b/tests/baselines/reference/tsserver/projectErrors/configFileDiagnostic-events-are-not-generated-when-the-config-file-has-errors-but-suppressDiagnosticEvents-is-true.js index 16cdaa64796a8..52a6ceef40a55 100644 --- a/tests/baselines/reference/tsserver/projectErrors/configFileDiagnostic-events-are-not-generated-when-the-config-file-has-errors-but-suppressDiagnosticEvents-is-true.js +++ b/tests/baselines/reference/tsserver/projectErrors/configFileDiagnostic-events-are-not-generated-when-the-config-file-has-errors-but-suppressDiagnosticEvents-is-true.js @@ -1,5 +1,5 @@ -Info 0 [16:00:15.000] Provided types map file "/a/lib/typesMap.json" doesn't exist -Info 1 [16:00:16.000] request: +Info 0 [00:00:15.000] Provided types map file "/a/lib/typesMap.json" doesn't exist +Info 1 [00:00:16.000] request: { "seq": 0, "type": "request", @@ -40,13 +40,13 @@ FsWatches:: FsWatchesRecursive:: -Info 2 [16:00:17.000] Search path: /a/b -Info 3 [16:00:18.000] For info: /a/b/app.ts :: Config file name: /a/b/tsconfig.json -Info 4 [16:00:19.000] Creating configuration project /a/b/tsconfig.json -Info 5 [16:00:20.000] FileWatcher:: Added:: WatchInfo: /a/b/tsconfig.json 2000 undefined Project: /a/b/tsconfig.json WatchType: Config file -Info 6 [16:00:21.000] event: +Info 2 [00:00:17.000] Search path: /a/b +Info 3 [00:00:18.000] For info: /a/b/app.ts :: Config file name: /a/b/tsconfig.json +Info 4 [00:00:19.000] Creating configuration project /a/b/tsconfig.json +Info 5 [00:00:20.000] FileWatcher:: Added:: WatchInfo: /a/b/tsconfig.json 2000 undefined Project: /a/b/tsconfig.json WatchType: Config file +Info 6 [00:00:21.000] event: {"seq":0,"type":"event","event":"projectLoadingStart","body":{"projectName":"/a/b/tsconfig.json","reason":"Creating possible configured project for /a/b/app.ts to open"}} -Info 7 [16:00:22.000] Config: /a/b/tsconfig.json : { +Info 7 [00:00:22.000] Config: /a/b/tsconfig.json : { "rootNames": [ "/a/b/app.ts" ], @@ -54,16 +54,16 @@ Info 7 [16:00:22.000] Config: /a/b/tsconfig.json : { "configFilePath": "/a/b/tsconfig.json" } } -Info 8 [16:00:23.000] DirectoryWatcher:: Added:: WatchInfo: /a/b 1 undefined Config: /a/b/tsconfig.json WatchType: Wild card directory -Info 9 [16:00:24.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /a/b 1 undefined Config: /a/b/tsconfig.json WatchType: Wild card directory -Info 10 [16:00:25.000] Plugins were requested but not running in environment that supports 'require'. Nothing will be loaded -Info 11 [16:00:26.000] Starting updateGraphWorker: Project: /a/b/tsconfig.json -Info 12 [16:00:27.000] FileWatcher:: Added:: WatchInfo: /a/lib/lib.d.ts 500 undefined WatchType: Closed Script info -Info 13 [16:00:28.000] DirectoryWatcher:: Added:: WatchInfo: /a/b/node_modules/@types 1 undefined Project: /a/b/tsconfig.json WatchType: Type roots -Info 14 [16:00:29.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /a/b/node_modules/@types 1 undefined Project: /a/b/tsconfig.json WatchType: Type roots -Info 15 [16:00:30.000] Finishing updateGraphWorker: Project: /a/b/tsconfig.json Version: 1 structureChanged: true structureIsReused:: Not Elapsed:: *ms -Info 16 [16:00:31.000] Project '/a/b/tsconfig.json' (Configured) -Info 17 [16:00:32.000] Files (2) +Info 8 [00:00:23.000] DirectoryWatcher:: Added:: WatchInfo: /a/b 1 undefined Config: /a/b/tsconfig.json WatchType: Wild card directory +Info 9 [00:00:24.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /a/b 1 undefined Config: /a/b/tsconfig.json WatchType: Wild card directory +Info 10 [00:00:25.000] Plugins were requested but not running in environment that supports 'require'. Nothing will be loaded +Info 11 [00:00:26.000] Starting updateGraphWorker: Project: /a/b/tsconfig.json +Info 12 [00:00:27.000] FileWatcher:: Added:: WatchInfo: /a/lib/lib.d.ts 500 undefined WatchType: Closed Script info +Info 13 [00:00:28.000] DirectoryWatcher:: Added:: WatchInfo: /a/b/node_modules/@types 1 undefined Project: /a/b/tsconfig.json WatchType: Type roots +Info 14 [00:00:29.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /a/b/node_modules/@types 1 undefined Project: /a/b/tsconfig.json WatchType: Type roots +Info 15 [00:00:30.000] Finishing updateGraphWorker: Project: /a/b/tsconfig.json Version: 1 structureChanged: true structureIsReused:: Not Elapsed:: *ms +Info 16 [00:00:31.000] Project '/a/b/tsconfig.json' (Configured) +Info 17 [00:00:32.000] Files (2) /a/lib/lib.d.ts /a/b/app.ts @@ -73,18 +73,18 @@ Info 17 [16:00:32.000] Files (2) app.ts Matched by default include pattern '**/*' -Info 18 [16:00:33.000] ----------------------------------------------- -Info 19 [16:00:34.000] event: +Info 18 [00:00:33.000] ----------------------------------------------- +Info 19 [00:00:34.000] event: {"seq":0,"type":"event","event":"projectLoadingFinish","body":{"projectName":"/a/b/tsconfig.json"}} -Info 20 [16:00:35.000] event: +Info 20 [00:00:35.000] event: {"seq":0,"type":"event","event":"telemetry","body":{"telemetryEventName":"projectInfo","payload":{"projectId":"e10a1dc99ee63f16cb9b69bcee75540cdf41a1137371d3afbd4e7de507be5207","fileStats":{"js":0,"jsSize":0,"jsx":0,"jsxSize":0,"ts":1,"tsSize":10,"tsx":0,"tsxSize":0,"dts":1,"dtsSize":334,"deferred":0,"deferredSize":0},"compilerOptions":{},"typeAcquisition":{"enable":false,"include":false,"exclude":false},"extends":false,"files":false,"include":false,"exclude":false,"compileOnSave":false,"configFileName":"tsconfig.json","projectType":"configured","languageServiceEnabled":true,"version":"FakeVersion"}}} -Info 21 [16:00:36.000] Project '/a/b/tsconfig.json' (Configured) -Info 21 [16:00:37.000] Files (2) +Info 21 [00:00:36.000] Project '/a/b/tsconfig.json' (Configured) +Info 21 [00:00:37.000] Files (2) -Info 21 [16:00:38.000] ----------------------------------------------- -Info 21 [16:00:39.000] Open files: -Info 21 [16:00:40.000] FileName: /a/b/app.ts ProjectRootPath: undefined -Info 21 [16:00:41.000] Projects: /a/b/tsconfig.json +Info 21 [00:00:38.000] ----------------------------------------------- +Info 21 [00:00:39.000] Open files: +Info 21 [00:00:40.000] FileName: /a/b/app.ts ProjectRootPath: undefined +Info 21 [00:00:41.000] Projects: /a/b/tsconfig.json After request PolledWatches:: @@ -101,7 +101,7 @@ FsWatchesRecursive:: /a/b: {} -Info 21 [16:00:42.000] response: +Info 21 [00:00:42.000] response: { "responseRequired": false } \ No newline at end of file diff --git a/tests/baselines/reference/tsserver/projectErrors/configFileDiagnostic-events-contains-the-project-reference-errors.js b/tests/baselines/reference/tsserver/projectErrors/configFileDiagnostic-events-contains-the-project-reference-errors.js index 8910fafaf532c..61dd0dc68326e 100644 --- a/tests/baselines/reference/tsserver/projectErrors/configFileDiagnostic-events-contains-the-project-reference-errors.js +++ b/tests/baselines/reference/tsserver/projectErrors/configFileDiagnostic-events-contains-the-project-reference-errors.js @@ -1,5 +1,5 @@ -Info 0 [16:00:15.000] Provided types map file "/a/lib/typesMap.json" doesn't exist -Info 1 [16:00:16.000] request: +Info 0 [00:00:15.000] Provided types map file "/a/lib/typesMap.json" doesn't exist +Info 1 [00:00:16.000] request: { "seq": 0, "type": "request", @@ -38,13 +38,13 @@ FsWatches:: FsWatchesRecursive:: -Info 2 [16:00:17.000] Search path: /a/b -Info 3 [16:00:18.000] For info: /a/b/app.ts :: Config file name: /a/b/tsconfig.json -Info 4 [16:00:19.000] Creating configuration project /a/b/tsconfig.json -Info 5 [16:00:20.000] FileWatcher:: Added:: WatchInfo: /a/b/tsconfig.json 2000 undefined Project: /a/b/tsconfig.json WatchType: Config file -Info 6 [16:00:21.000] event: +Info 2 [00:00:17.000] Search path: /a/b +Info 3 [00:00:18.000] For info: /a/b/app.ts :: Config file name: /a/b/tsconfig.json +Info 4 [00:00:19.000] Creating configuration project /a/b/tsconfig.json +Info 5 [00:00:20.000] FileWatcher:: Added:: WatchInfo: /a/b/tsconfig.json 2000 undefined Project: /a/b/tsconfig.json WatchType: Config file +Info 6 [00:00:21.000] event: {"seq":0,"type":"event","event":"projectLoadingStart","body":{"projectName":"/a/b/tsconfig.json","reason":"Creating possible configured project for /a/b/app.ts to open"}} -Info 7 [16:00:22.000] Config: /a/b/tsconfig.json : { +Info 7 [00:00:22.000] Config: /a/b/tsconfig.json : { "rootNames": [ "/a/b/app.ts" ], @@ -58,9 +58,9 @@ Info 7 [16:00:22.000] Config: /a/b/tsconfig.json : { } ] } -Info 8 [16:00:23.000] Plugins were requested but not running in environment that supports 'require'. Nothing will be loaded -Info 9 [16:00:24.000] Starting updateGraphWorker: Project: /a/b/tsconfig.json -Info 10 [16:00:25.000] Config: /a/b/no-such-tsconfig.json : { +Info 8 [00:00:23.000] Plugins were requested but not running in environment that supports 'require'. Nothing will be loaded +Info 9 [00:00:24.000] Starting updateGraphWorker: Project: /a/b/tsconfig.json +Info 10 [00:00:25.000] Config: /a/b/no-such-tsconfig.json : { "rootNames": [ "/a/b/app.ts" ], @@ -68,13 +68,13 @@ Info 10 [16:00:25.000] Config: /a/b/no-such-tsconfig.json : { "configFilePath": "/a/b/no-such-tsconfig.json" } } -Info 11 [16:00:26.000] FileWatcher:: Added:: WatchInfo: /a/b/no-such-tsconfig.json 2000 undefined Project: /a/b/tsconfig.json WatchType: Config file -Info 12 [16:00:27.000] FileWatcher:: Added:: WatchInfo: /a/lib/lib.d.ts 500 undefined WatchType: Closed Script info -Info 13 [16:00:28.000] DirectoryWatcher:: Added:: WatchInfo: /a/b/node_modules/@types 1 undefined Project: /a/b/tsconfig.json WatchType: Type roots -Info 14 [16:00:29.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /a/b/node_modules/@types 1 undefined Project: /a/b/tsconfig.json WatchType: Type roots -Info 15 [16:00:30.000] Finishing updateGraphWorker: Project: /a/b/tsconfig.json Version: 1 structureChanged: true structureIsReused:: Not Elapsed:: *ms -Info 16 [16:00:31.000] Project '/a/b/tsconfig.json' (Configured) -Info 17 [16:00:32.000] Files (2) +Info 11 [00:00:26.000] FileWatcher:: Added:: WatchInfo: /a/b/no-such-tsconfig.json 2000 undefined Project: /a/b/tsconfig.json WatchType: Config file +Info 12 [00:00:27.000] FileWatcher:: Added:: WatchInfo: /a/lib/lib.d.ts 500 undefined WatchType: Closed Script info +Info 13 [00:00:28.000] DirectoryWatcher:: Added:: WatchInfo: /a/b/node_modules/@types 1 undefined Project: /a/b/tsconfig.json WatchType: Type roots +Info 14 [00:00:29.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /a/b/node_modules/@types 1 undefined Project: /a/b/tsconfig.json WatchType: Type roots +Info 15 [00:00:30.000] Finishing updateGraphWorker: Project: /a/b/tsconfig.json Version: 1 structureChanged: true structureIsReused:: Not Elapsed:: *ms +Info 16 [00:00:31.000] Project '/a/b/tsconfig.json' (Configured) +Info 17 [00:00:32.000] Files (2) /a/lib/lib.d.ts /a/b/app.ts @@ -84,20 +84,20 @@ Info 17 [16:00:32.000] Files (2) app.ts Part of 'files' list in tsconfig.json -Info 18 [16:00:33.000] ----------------------------------------------- -Info 19 [16:00:34.000] event: +Info 18 [00:00:33.000] ----------------------------------------------- +Info 19 [00:00:34.000] event: {"seq":0,"type":"event","event":"projectLoadingFinish","body":{"projectName":"/a/b/tsconfig.json"}} -Info 20 [16:00:35.000] event: +Info 20 [00:00:35.000] event: {"seq":0,"type":"event","event":"telemetry","body":{"telemetryEventName":"projectInfo","payload":{"projectId":"e10a1dc99ee63f16cb9b69bcee75540cdf41a1137371d3afbd4e7de507be5207","fileStats":{"js":0,"jsSize":0,"jsx":0,"jsxSize":0,"ts":1,"tsSize":10,"tsx":0,"tsxSize":0,"dts":1,"dtsSize":334,"deferred":0,"deferredSize":0},"compilerOptions":{},"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 21 [16:00:36.000] event: +Info 21 [00:00:36.000] event: {"seq":0,"type":"event","event":"configFileDiag","body":{"triggerFile":"/a/b/app.ts","configFile":"/a/b/tsconfig.json","diagnostics":[{"start":{"line":3,"offset":36},"end":{"line":3,"offset":70},"text":"File '/a/b/no-such-tsconfig.json' not found.","code":6053,"category":"error","fileName":"/a/b/tsconfig.json"}]}} -Info 22 [16:00:37.000] Project '/a/b/tsconfig.json' (Configured) -Info 22 [16:00:38.000] Files (2) +Info 22 [00:00:37.000] Project '/a/b/tsconfig.json' (Configured) +Info 22 [00:00:38.000] Files (2) -Info 22 [16:00:39.000] ----------------------------------------------- -Info 22 [16:00:40.000] Open files: -Info 22 [16:00:41.000] FileName: /a/b/app.ts ProjectRootPath: undefined -Info 22 [16:00:42.000] Projects: /a/b/tsconfig.json +Info 22 [00:00:39.000] ----------------------------------------------- +Info 22 [00:00:40.000] Open files: +Info 22 [00:00:41.000] FileName: /a/b/app.ts ProjectRootPath: undefined +Info 22 [00:00:42.000] Projects: /a/b/tsconfig.json After request PolledWatches:: @@ -114,7 +114,7 @@ FsWatches:: FsWatchesRecursive:: -Info 22 [16:00:43.000] response: +Info 22 [00:00:43.000] response: { "responseRequired": false } \ No newline at end of file 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 1d652753a22a0..61bedf4a6940a 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 @@ -1,5 +1,5 @@ -Info 0 [16:00:33.000] Provided types map file "/a/lib/typesMap.json" doesn't exist -Info 1 [16:00:34.000] request: +Info 0 [00:00:33.000] Provided types map file "/a/lib/typesMap.json" doesn't exist +Info 1 [00:00:34.000] request: { "seq": 0, "type": "request", @@ -49,13 +49,13 @@ FsWatches:: FsWatchesRecursive:: -Info 2 [16:00:35.000] Search path: /users/username/projects/myproject/src -Info 3 [16:00:36.000] For info: /users/username/projects/myproject/src/a.ts :: Config file name: /users/username/projects/myproject/tsconfig.json -Info 4 [16:00:37.000] Creating configuration project /users/username/projects/myproject/tsconfig.json -Info 5 [16:00:38.000] FileWatcher:: Added:: WatchInfo: /users/username/projects/myproject/tsconfig.json 2000 undefined Project: /users/username/projects/myproject/tsconfig.json WatchType: Config file -Info 6 [16:00:39.000] event: +Info 2 [00:00:35.000] Search path: /users/username/projects/myproject/src +Info 3 [00:00:36.000] For info: /users/username/projects/myproject/src/a.ts :: Config file name: /users/username/projects/myproject/tsconfig.json +Info 4 [00:00:37.000] Creating configuration project /users/username/projects/myproject/tsconfig.json +Info 5 [00:00:38.000] FileWatcher:: Added:: WatchInfo: /users/username/projects/myproject/tsconfig.json 2000 undefined Project: /users/username/projects/myproject/tsconfig.json WatchType: Config file +Info 6 [00:00:39.000] event: {"seq":0,"type":"event","event":"projectLoadingStart","body":{"projectName":"/users/username/projects/myproject/tsconfig.json","reason":"Creating possible configured project for /users/username/projects/myproject/src/a.ts to open"}} -Info 7 [16:00:40.000] Config: /users/username/projects/myproject/tsconfig.json : { +Info 7 [00:00:40.000] Config: /users/username/projects/myproject/tsconfig.json : { "rootNames": [ "/users/username/projects/myproject/src/a.ts" ], @@ -63,20 +63,20 @@ Info 7 [16:00:40.000] Config: /users/username/projects/myproject/tsconfig.jso "configFilePath": "/users/username/projects/myproject/tsconfig.json" } } -Info 8 [16:00:41.000] DirectoryWatcher:: Added:: WatchInfo: /users/username/projects/myproject/src 1 undefined Config: /users/username/projects/myproject/tsconfig.json WatchType: Wild card directory -Info 9 [16:00:42.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /users/username/projects/myproject/src 1 undefined Config: /users/username/projects/myproject/tsconfig.json WatchType: Wild card directory -Info 10 [16:00:43.000] Plugins were requested but not running in environment that supports 'require'. Nothing will be loaded -Info 11 [16:00:44.000] Starting updateGraphWorker: Project: /users/username/projects/myproject/tsconfig.json -Info 12 [16:00:45.000] 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 13 [16:00:46.000] 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 14 [16:00:47.000] DirectoryWatcher:: Added:: WatchInfo: /users/username/projects/myproject/node_modules 1 undefined Project: /users/username/projects/myproject/tsconfig.json WatchType: Failed Lookup Locations -Info 15 [16:00:48.000] 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 16 [16:00:49.000] FileWatcher:: Added:: WatchInfo: /a/lib/lib.d.ts 500 undefined WatchType: Closed Script info -Info 17 [16:00:50.000] DirectoryWatcher:: Added:: WatchInfo: /users/username/projects/myproject/node_modules/@types 1 undefined Project: /users/username/projects/myproject/tsconfig.json WatchType: Type roots -Info 18 [16:00:51.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /users/username/projects/myproject/node_modules/@types 1 undefined Project: /users/username/projects/myproject/tsconfig.json WatchType: Type roots -Info 19 [16:00:52.000] Finishing updateGraphWorker: Project: /users/username/projects/myproject/tsconfig.json Version: 1 structureChanged: true structureIsReused:: Not Elapsed:: *ms -Info 20 [16:00:53.000] Project '/users/username/projects/myproject/tsconfig.json' (Configured) -Info 21 [16:00:54.000] Files (4) +Info 8 [00:00:41.000] DirectoryWatcher:: Added:: WatchInfo: /users/username/projects/myproject/src 1 undefined Config: /users/username/projects/myproject/tsconfig.json WatchType: Wild card directory +Info 9 [00:00:42.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /users/username/projects/myproject/src 1 undefined Config: /users/username/projects/myproject/tsconfig.json WatchType: Wild card directory +Info 10 [00:00:43.000] Plugins were requested but not running in environment that supports 'require'. Nothing will be loaded +Info 11 [00:00:44.000] Starting updateGraphWorker: Project: /users/username/projects/myproject/tsconfig.json +Info 12 [00:00:45.000] 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 13 [00:00:46.000] 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 14 [00:00:47.000] DirectoryWatcher:: Added:: WatchInfo: /users/username/projects/myproject/node_modules 1 undefined Project: /users/username/projects/myproject/tsconfig.json WatchType: Failed Lookup Locations +Info 15 [00:00:48.000] 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 16 [00:00:49.000] FileWatcher:: Added:: WatchInfo: /a/lib/lib.d.ts 500 undefined WatchType: Closed Script info +Info 17 [00:00:50.000] DirectoryWatcher:: Added:: WatchInfo: /users/username/projects/myproject/node_modules/@types 1 undefined Project: /users/username/projects/myproject/tsconfig.json WatchType: Type roots +Info 18 [00:00:51.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /users/username/projects/myproject/node_modules/@types 1 undefined Project: /users/username/projects/myproject/tsconfig.json WatchType: Type roots +Info 19 [00:00:52.000] Finishing updateGraphWorker: Project: /users/username/projects/myproject/tsconfig.json Version: 1 structureChanged: true structureIsReused:: Not Elapsed:: *ms +Info 20 [00:00:53.000] Project '/users/username/projects/myproject/tsconfig.json' (Configured) +Info 21 [00:00:54.000] Files (4) /a/lib/lib.d.ts /users/username/projects/myproject/node_modules/@custom/plugin/proposed.d.ts /users/username/projects/myproject/node_modules/@custom/plugin/index.d.ts @@ -92,20 +92,20 @@ Info 21 [16:00:54.000] Files (4) src/a.ts Matched by include pattern 'src' in 'tsconfig.json' -Info 22 [16:00:55.000] ----------------------------------------------- -Info 23 [16:00:56.000] event: +Info 22 [00:00:55.000] ----------------------------------------------- +Info 23 [00:00:56.000] event: {"seq":0,"type":"event","event":"projectLoadingFinish","body":{"projectName":"/users/username/projects/myproject/tsconfig.json"}} -Info 24 [16:00:57.000] event: +Info 24 [00:00:57.000] event: {"seq":0,"type":"event","event":"telemetry","body":{"telemetryEventName":"projectInfo","payload":{"projectId":"49814c247d0e4666719ac54e31c3f19091be4020c5ac046c86474826dc7e4ede","fileStats":{"js":0,"jsSize":0,"jsx":0,"jsxSize":0,"ts":1,"tsSize":73,"tsx":0,"tsxSize":0,"dts":3,"dtsSize":486,"deferred":0,"deferredSize":0},"compilerOptions":{},"typeAcquisition":{"enable":false,"include":false,"exclude":false},"extends":false,"files":false,"include":true,"exclude":false,"compileOnSave":false,"configFileName":"tsconfig.json","projectType":"configured","languageServiceEnabled":true,"version":"FakeVersion"}}} -Info 25 [16:00:58.000] event: +Info 25 [00:00:58.000] event: {"seq":0,"type":"event","event":"configFileDiag","body":{"triggerFile":"/users/username/projects/myproject/src/a.ts","configFile":"/users/username/projects/myproject/tsconfig.json","diagnostics":[]}} -Info 26 [16:00:59.000] Project '/users/username/projects/myproject/tsconfig.json' (Configured) -Info 26 [16:01:00.000] Files (4) +Info 26 [00:00:59.000] Project '/users/username/projects/myproject/tsconfig.json' (Configured) +Info 26 [00:01:00.000] Files (4) -Info 26 [16:01:01.000] ----------------------------------------------- -Info 26 [16:01:02.000] Open files: -Info 26 [16:01:03.000] FileName: /users/username/projects/myproject/src/a.ts ProjectRootPath: undefined -Info 26 [16:01:04.000] Projects: /users/username/projects/myproject/tsconfig.json +Info 26 [00:01:01.000] ----------------------------------------------- +Info 26 [00:01:02.000] Open files: +Info 26 [00:01:03.000] FileName: /users/username/projects/myproject/src/a.ts ProjectRootPath: undefined +Info 26 [00:01:04.000] Projects: /users/username/projects/myproject/tsconfig.json After request PolledWatches:: @@ -124,11 +124,11 @@ FsWatchesRecursive:: /users/username/projects/myproject/node_modules: {} -Info 26 [16:01:05.000] response: +Info 26 [00:01:05.000] response: { "responseRequired": false } -Info 27 [16:01:06.000] request: +Info 27 [00:01:06.000] request: { "command": "geterr", "arguments": { @@ -176,7 +176,7 @@ FsWatchesRecursive:: /users/username/projects/myproject/node_modules: {} -Info 28 [16:01:07.000] response: +Info 28 [00:01:07.000] response: { "responseRequired": false } @@ -198,7 +198,7 @@ FsWatchesRecursive:: /users/username/projects/myproject/node_modules: {} -Info 29 [16:01:08.000] event: +Info 29 [00:01:08.000] event: {"seq":0,"type":"event","event":"syntaxDiag","body":{"file":"/users/username/projects/myproject/src/a.ts","diagnostics":[]}} After checking timeout queue length (1) and running @@ -236,7 +236,7 @@ FsWatchesRecursive:: /users/username/projects/myproject/node_modules: {} -Info 30 [16:01:09.000] event: +Info 30 [00:01:09.000] event: {"seq":0,"type":"event","event":"semanticDiag","body":{"file":"/users/username/projects/myproject/src/a.ts","diagnostics":[]}} Before running immediate callbacks and checking length (1) @@ -274,9 +274,9 @@ FsWatchesRecursive:: /users/username/projects/myproject/node_modules: {} -Info 31 [16:01:10.000] event: +Info 31 [00:01:10.000] event: {"seq":0,"type":"event","event":"suggestionDiag","body":{"file":"/users/username/projects/myproject/src/a.ts","diagnostics":[{"start":{"line":1,"offset":1},"end":{"line":1,"offset":44},"text":"'myModule' is declared but its value is never read.","code":6133,"category":"suggestion","reportsUnnecessary":true},{"start":{"line":2,"offset":10},"end":{"line":2,"offset":13},"text":"'foo' is declared but its value is never read.","code":6133,"category":"suggestion","reportsUnnecessary":true}]}} -Info 32 [16:01:11.000] event: +Info 32 [00:01:11.000] event: {"seq":0,"type":"event","event":"requestCompleted","body":{"request_seq":1}} Before running immediate callbacks and checking length (1) @@ -296,7 +296,7 @@ FsWatchesRecursive:: /users/username/projects/myproject/node_modules: {} -Info 33 [16:01:12.000] request: +Info 33 [00:01:12.000] request: { "command": "change", "arguments": { @@ -346,11 +346,11 @@ FsWatchesRecursive:: /users/username/projects/myproject/node_modules: {} -Info 34 [16:01:13.000] response: +Info 34 [00:01:13.000] response: { "responseRequired": false } -Info 35 [16:01:14.000] request: +Info 35 [00:01:14.000] request: { "command": "geterr", "arguments": { @@ -398,7 +398,7 @@ FsWatchesRecursive:: /users/username/projects/myproject/node_modules: {} -Info 36 [16:01:15.000] response: +Info 36 [00:01:15.000] response: { "responseRequired": false } @@ -420,10 +420,10 @@ FsWatchesRecursive:: /users/username/projects/myproject/node_modules: {} -Info 37 [16:01:16.000] Starting updateGraphWorker: Project: /users/username/projects/myproject/tsconfig.json -Info 38 [16:01:17.000] Finishing updateGraphWorker: Project: /users/username/projects/myproject/tsconfig.json Version: 2 structureChanged: false structureIsReused:: Completely Elapsed:: *ms -Info 39 [16:01:18.000] Different program with same set of files -Info 40 [16:01:19.000] event: +Info 37 [00:01:16.000] Starting updateGraphWorker: Project: /users/username/projects/myproject/tsconfig.json +Info 38 [00:01:17.000] Finishing updateGraphWorker: Project: /users/username/projects/myproject/tsconfig.json Version: 2 structureChanged: false structureIsReused:: Completely Elapsed:: *ms +Info 39 [00:01:18.000] Different program with same set of files +Info 40 [00:01:19.000] event: {"seq":0,"type":"event","event":"syntaxDiag","body":{"file":"/users/username/projects/myproject/src/a.ts","diagnostics":[]}} After checking timeout queue length (1) and running @@ -461,7 +461,7 @@ FsWatchesRecursive:: /users/username/projects/myproject/node_modules: {} -Info 41 [16:01:20.000] event: +Info 41 [00:01:20.000] event: {"seq":0,"type":"event","event":"semanticDiag","body":{"file":"/users/username/projects/myproject/src/a.ts","diagnostics":[]}} Before running immediate callbacks and checking length (1) @@ -499,9 +499,9 @@ FsWatchesRecursive:: /users/username/projects/myproject/node_modules: {} -Info 42 [16:01:21.000] event: +Info 42 [00:01:21.000] event: {"seq":0,"type":"event","event":"suggestionDiag","body":{"file":"/users/username/projects/myproject/src/a.ts","diagnostics":[{"start":{"line":1,"offset":1},"end":{"line":1,"offset":44},"text":"'myModule' is declared but its value is never read.","code":6133,"category":"suggestion","reportsUnnecessary":true},{"start":{"line":2,"offset":10},"end":{"line":2,"offset":13},"text":"'foo' is declared but its value is never read.","code":6133,"category":"suggestion","reportsUnnecessary":true}]}} -Info 43 [16:01:22.000] event: +Info 43 [00:01:22.000] event: {"seq":0,"type":"event","event":"requestCompleted","body":{"request_seq":3}} Before running immediate callbacks and checking length (1) diff --git a/tests/baselines/reference/tsserver/projectErrors/folder-rename-updates-project-structure-and-reports-no-errors.js b/tests/baselines/reference/tsserver/projectErrors/folder-rename-updates-project-structure-and-reports-no-errors.js index dd9978c354dbc..a49a86cc7db52 100644 --- a/tests/baselines/reference/tsserver/projectErrors/folder-rename-updates-project-structure-and-reports-no-errors.js +++ b/tests/baselines/reference/tsserver/projectErrors/folder-rename-updates-project-structure-and-reports-no-errors.js @@ -1,5 +1,5 @@ -Info 0 [16:00:21.000] Provided types map file "/a/lib/typesMap.json" doesn't exist -Info 1 [16:00:22.000] request: +Info 0 [00:00:21.000] Provided types map file "/a/lib/typesMap.json" doesn't exist +Info 1 [00:00:22.000] request: { "command": "open", "arguments": { @@ -25,13 +25,13 @@ FsWatches:: FsWatchesRecursive:: -Info 2 [16:00:23.000] Search path: /a/b/projects/myproject/bar -Info 3 [16:00:24.000] For info: /a/b/projects/myproject/bar/app.ts :: Config file name: /a/b/projects/myproject/tsconfig.json -Info 4 [16:00:25.000] Creating configuration project /a/b/projects/myproject/tsconfig.json -Info 5 [16:00:26.000] FileWatcher:: Added:: WatchInfo: /a/b/projects/myproject/tsconfig.json 2000 undefined Project: /a/b/projects/myproject/tsconfig.json WatchType: Config file -Info 6 [16:00:27.000] event: +Info 2 [00:00:23.000] Search path: /a/b/projects/myproject/bar +Info 3 [00:00:24.000] For info: /a/b/projects/myproject/bar/app.ts :: Config file name: /a/b/projects/myproject/tsconfig.json +Info 4 [00:00:25.000] Creating configuration project /a/b/projects/myproject/tsconfig.json +Info 5 [00:00:26.000] FileWatcher:: Added:: WatchInfo: /a/b/projects/myproject/tsconfig.json 2000 undefined Project: /a/b/projects/myproject/tsconfig.json WatchType: Config file +Info 6 [00:00:27.000] event: {"seq":0,"type":"event","event":"projectLoadingStart","body":{"projectName":"/a/b/projects/myproject/tsconfig.json","reason":"Creating possible configured project for /a/b/projects/myproject/bar/app.ts to open"}} -Info 7 [16:00:28.000] Config: /a/b/projects/myproject/tsconfig.json : { +Info 7 [00:00:28.000] Config: /a/b/projects/myproject/tsconfig.json : { "rootNames": [ "/a/b/projects/myproject/bar/app.ts", "/a/b/projects/myproject/foo/foo.ts" @@ -41,17 +41,17 @@ Info 7 [16:00:28.000] Config: /a/b/projects/myproject/tsconfig.json : { "configFilePath": "/a/b/projects/myproject/tsconfig.json" } } -Info 8 [16:00:29.000] DirectoryWatcher:: Added:: WatchInfo: /a/b/projects/myproject 1 undefined Config: /a/b/projects/myproject/tsconfig.json WatchType: Wild card directory -Info 9 [16:00:30.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /a/b/projects/myproject 1 undefined Config: /a/b/projects/myproject/tsconfig.json WatchType: Wild card directory -Info 10 [16:00:31.000] Plugins were requested but not running in environment that supports 'require'. Nothing will be loaded -Info 11 [16:00:32.000] FileWatcher:: Added:: WatchInfo: /a/b/projects/myproject/foo/foo.ts 500 undefined WatchType: Closed Script info -Info 12 [16:00:33.000] Starting updateGraphWorker: Project: /a/b/projects/myproject/tsconfig.json -Info 13 [16:00:34.000] FileWatcher:: Added:: WatchInfo: /a/lib/lib.d.ts 500 undefined Project: /a/b/projects/myproject/tsconfig.json WatchType: Missing file -Info 14 [16:00:35.000] DirectoryWatcher:: Added:: WatchInfo: /a/b/projects/myproject/node_modules/@types 1 undefined Project: /a/b/projects/myproject/tsconfig.json WatchType: Type roots -Info 15 [16:00:36.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /a/b/projects/myproject/node_modules/@types 1 undefined Project: /a/b/projects/myproject/tsconfig.json WatchType: Type roots -Info 16 [16:00:37.000] Finishing updateGraphWorker: Project: /a/b/projects/myproject/tsconfig.json Version: 1 structureChanged: true structureIsReused:: Not Elapsed:: *ms -Info 17 [16:00:38.000] Project '/a/b/projects/myproject/tsconfig.json' (Configured) -Info 18 [16:00:39.000] Files (2) +Info 8 [00:00:29.000] DirectoryWatcher:: Added:: WatchInfo: /a/b/projects/myproject 1 undefined Config: /a/b/projects/myproject/tsconfig.json WatchType: Wild card directory +Info 9 [00:00:30.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /a/b/projects/myproject 1 undefined Config: /a/b/projects/myproject/tsconfig.json WatchType: Wild card directory +Info 10 [00:00:31.000] Plugins were requested but not running in environment that supports 'require'. Nothing will be loaded +Info 11 [00:00:32.000] FileWatcher:: Added:: WatchInfo: /a/b/projects/myproject/foo/foo.ts 500 undefined WatchType: Closed Script info +Info 12 [00:00:33.000] Starting updateGraphWorker: Project: /a/b/projects/myproject/tsconfig.json +Info 13 [00:00:34.000] FileWatcher:: Added:: WatchInfo: /a/lib/lib.d.ts 500 undefined Project: /a/b/projects/myproject/tsconfig.json WatchType: Missing file +Info 14 [00:00:35.000] DirectoryWatcher:: Added:: WatchInfo: /a/b/projects/myproject/node_modules/@types 1 undefined Project: /a/b/projects/myproject/tsconfig.json WatchType: Type roots +Info 15 [00:00:36.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /a/b/projects/myproject/node_modules/@types 1 undefined Project: /a/b/projects/myproject/tsconfig.json WatchType: Type roots +Info 16 [00:00:37.000] Finishing updateGraphWorker: Project: /a/b/projects/myproject/tsconfig.json Version: 1 structureChanged: true structureIsReused:: Not Elapsed:: *ms +Info 17 [00:00:38.000] Project '/a/b/projects/myproject/tsconfig.json' (Configured) +Info 18 [00:00:39.000] Files (2) /a/b/projects/myproject/bar/app.ts /a/b/projects/myproject/foo/foo.ts @@ -61,20 +61,20 @@ Info 18 [16:00:39.000] Files (2) foo/foo.ts Matched by default include pattern '**/*' -Info 19 [16:00:40.000] ----------------------------------------------- -Info 20 [16:00:41.000] event: +Info 19 [00:00:40.000] ----------------------------------------------- +Info 20 [00:00:41.000] event: {"seq":0,"type":"event","event":"projectLoadingFinish","body":{"projectName":"/a/b/projects/myproject/tsconfig.json"}} -Info 21 [16:00:42.000] event: +Info 21 [00:00:42.000] event: {"seq":0,"type":"event","event":"telemetry","body":{"telemetryEventName":"projectInfo","payload":{"projectId":"c56abb8c7c51bef5953613f05226da8e72cd9eafe09ab58ca2ccd81b65ba193a","fileStats":{"js":0,"jsSize":0,"jsx":0,"jsxSize":0,"ts":2,"tsSize":154,"tsx":0,"tsxSize":0,"dts":0,"dtsSize":0,"deferred":0,"deferredSize":0},"compilerOptions":{"module":"none"},"typeAcquisition":{"enable":false,"include":false,"exclude":false},"extends":false,"files":false,"include":false,"exclude":true,"compileOnSave":false,"configFileName":"tsconfig.json","projectType":"configured","languageServiceEnabled":true,"version":"FakeVersion"}}} -Info 22 [16:00:43.000] event: +Info 22 [00:00:43.000] event: {"seq":0,"type":"event","event":"configFileDiag","body":{"triggerFile":"/a/b/projects/myproject/bar/app.ts","configFile":"/a/b/projects/myproject/tsconfig.json","diagnostics":[{"text":"File '/a/lib/lib.d.ts' not found.\n The file is in the program because:\n Default library for target 'es3'","code":6053,"category":"error"},{"text":"Cannot find global type 'Array'.","code":2318,"category":"error"},{"text":"Cannot find global type 'Boolean'.","code":2318,"category":"error"},{"text":"Cannot find global type 'Function'.","code":2318,"category":"error"},{"text":"Cannot find global type 'IArguments'.","code":2318,"category":"error"},{"text":"Cannot find global type 'Number'.","code":2318,"category":"error"},{"text":"Cannot find global type 'Object'.","code":2318,"category":"error"},{"text":"Cannot find global type 'RegExp'.","code":2318,"category":"error"},{"text":"Cannot find global type 'String'.","code":2318,"category":"error"},{"start":{"line":1,"offset":37},"end":{"line":1,"offset":45},"text":"Unknown compiler option 'targer'. Did you mean 'target'?","code":5025,"category":"error","fileName":"/a/b/projects/myproject/tsconfig.json"}]}} -Info 23 [16:00:44.000] Project '/a/b/projects/myproject/tsconfig.json' (Configured) -Info 23 [16:00:45.000] Files (2) +Info 23 [00:00:44.000] Project '/a/b/projects/myproject/tsconfig.json' (Configured) +Info 23 [00:00:45.000] Files (2) -Info 23 [16:00:46.000] ----------------------------------------------- -Info 23 [16:00:47.000] Open files: -Info 23 [16:00:48.000] FileName: /a/b/projects/myproject/bar/app.ts ProjectRootPath: undefined -Info 23 [16:00:49.000] Projects: /a/b/projects/myproject/tsconfig.json +Info 23 [00:00:46.000] ----------------------------------------------- +Info 23 [00:00:47.000] Open files: +Info 23 [00:00:48.000] FileName: /a/b/projects/myproject/bar/app.ts ProjectRootPath: undefined +Info 23 [00:00:49.000] Projects: /a/b/projects/myproject/tsconfig.json After request PolledWatches:: @@ -93,11 +93,11 @@ FsWatchesRecursive:: /a/b/projects/myproject: {} -Info 23 [16:00:50.000] response: +Info 23 [00:00:50.000] response: { "responseRequired": false } -Info 24 [16:00:51.000] request: +Info 24 [00:00:51.000] request: { "command": "geterr", "arguments": { @@ -145,7 +145,7 @@ FsWatchesRecursive:: /a/b/projects/myproject: {} -Info 25 [16:00:52.000] response: +Info 25 [00:00:52.000] response: { "responseRequired": false } @@ -167,7 +167,7 @@ FsWatchesRecursive:: /a/b/projects/myproject: {} -Info 26 [16:00:53.000] event: +Info 26 [00:00:53.000] event: {"seq":0,"type":"event","event":"syntaxDiag","body":{"file":"/a/b/projects/myproject/bar/app.ts","diagnostics":[]}} After checking timeout queue length (1) and running @@ -205,7 +205,7 @@ FsWatchesRecursive:: /a/b/projects/myproject: {} -Info 27 [16:00:54.000] event: +Info 27 [00:00:54.000] event: {"seq":0,"type":"event","event":"semanticDiag","body":{"file":"/a/b/projects/myproject/bar/app.ts","diagnostics":[]}} Before running immediate callbacks and checking length (1) @@ -243,9 +243,9 @@ FsWatchesRecursive:: /a/b/projects/myproject: {} -Info 28 [16:00:55.000] event: +Info 28 [00:00:55.000] event: {"seq":0,"type":"event","event":"suggestionDiag","body":{"file":"/a/b/projects/myproject/bar/app.ts","diagnostics":[]}} -Info 29 [16:00:56.000] event: +Info 29 [00:00:56.000] event: {"seq":0,"type":"event","event":"requestCompleted","body":{"request_seq":2}} Before running immediate callbacks and checking length (1) @@ -265,27 +265,27 @@ FsWatchesRecursive:: /a/b/projects/myproject: {} -Info 30 [16:00:58.000] DirectoryWatcher:: Triggered with /a/b/projects/myproject/foo :: WatchInfo: /a/b/projects/myproject 1 undefined Config: /a/b/projects/myproject/tsconfig.json WatchType: Wild card directory -Info 31 [16:00:59.000] Scheduled: /a/b/projects/myproject/tsconfig.json -Info 32 [16:01:00.000] Scheduled: *ensureProjectForOpenFiles* -Info 33 [16:01:01.000] Elapsed:: *ms DirectoryWatcher:: Triggered with /a/b/projects/myproject/foo :: WatchInfo: /a/b/projects/myproject 1 undefined Config: /a/b/projects/myproject/tsconfig.json WatchType: Wild card directory -Info 34 [16:01:04.000] DirectoryWatcher:: Triggered with /a/b/projects/myproject/foo2 :: WatchInfo: /a/b/projects/myproject 1 undefined Config: /a/b/projects/myproject/tsconfig.json WatchType: Wild card directory -Info 35 [16:01:05.000] Scheduled: /a/b/projects/myproject/tsconfig.json, Cancelled earlier one -Info 36 [16:01:06.000] Scheduled: *ensureProjectForOpenFiles*, Cancelled earlier one -Info 37 [16:01:07.000] Elapsed:: *ms DirectoryWatcher:: Triggered with /a/b/projects/myproject/foo2 :: WatchInfo: /a/b/projects/myproject 1 undefined Config: /a/b/projects/myproject/tsconfig.json WatchType: Wild card directory -Info 38 [16:01:08.000] FileWatcher:: Triggered with /a/b/projects/myproject/foo/foo.ts 2:: WatchInfo: /a/b/projects/myproject/foo/foo.ts 500 undefined WatchType: Closed Script info -Info 39 [16:01:09.000] FileWatcher:: Close:: WatchInfo: /a/b/projects/myproject/foo/foo.ts 500 undefined WatchType: Closed Script info -Info 40 [16:01:10.000] Scheduled: /a/b/projects/myproject/tsconfig.json, Cancelled earlier one -Info 41 [16:01:11.000] Scheduled: *ensureProjectForOpenFiles*, Cancelled earlier one -Info 42 [16:01:12.000] Elapsed:: *ms FileWatcher:: Triggered with /a/b/projects/myproject/foo/foo.ts 2:: WatchInfo: /a/b/projects/myproject/foo/foo.ts 500 undefined WatchType: Closed Script info -Info 43 [16:01:13.000] DirectoryWatcher:: Triggered with /a/b/projects/myproject/foo/foo.ts :: WatchInfo: /a/b/projects/myproject 1 undefined Config: /a/b/projects/myproject/tsconfig.json WatchType: Wild card directory -Info 44 [16:01:14.000] Scheduled: /a/b/projects/myproject/tsconfig.json, Cancelled earlier one -Info 45 [16:01:15.000] Scheduled: *ensureProjectForOpenFiles*, Cancelled earlier one -Info 46 [16:01:16.000] Elapsed:: *ms DirectoryWatcher:: Triggered with /a/b/projects/myproject/foo/foo.ts :: WatchInfo: /a/b/projects/myproject 1 undefined Config: /a/b/projects/myproject/tsconfig.json WatchType: Wild card directory -Info 47 [16:01:17.000] DirectoryWatcher:: Triggered with /a/b/projects/myproject/foo2/foo.ts :: WatchInfo: /a/b/projects/myproject 1 undefined Config: /a/b/projects/myproject/tsconfig.json WatchType: Wild card directory -Info 48 [16:01:18.000] Scheduled: /a/b/projects/myproject/tsconfig.json, Cancelled earlier one -Info 49 [16:01:19.000] Scheduled: *ensureProjectForOpenFiles*, Cancelled earlier one -Info 50 [16:01:20.000] Elapsed:: *ms DirectoryWatcher:: Triggered with /a/b/projects/myproject/foo2/foo.ts :: WatchInfo: /a/b/projects/myproject 1 undefined Config: /a/b/projects/myproject/tsconfig.json WatchType: Wild card directory +Info 30 [00:00:58.000] DirectoryWatcher:: Triggered with /a/b/projects/myproject/foo :: WatchInfo: /a/b/projects/myproject 1 undefined Config: /a/b/projects/myproject/tsconfig.json WatchType: Wild card directory +Info 31 [00:00:59.000] Scheduled: /a/b/projects/myproject/tsconfig.json +Info 32 [00:01:00.000] Scheduled: *ensureProjectForOpenFiles* +Info 33 [00:01:01.000] Elapsed:: *ms DirectoryWatcher:: Triggered with /a/b/projects/myproject/foo :: WatchInfo: /a/b/projects/myproject 1 undefined Config: /a/b/projects/myproject/tsconfig.json WatchType: Wild card directory +Info 34 [00:01:04.000] DirectoryWatcher:: Triggered with /a/b/projects/myproject/foo2 :: WatchInfo: /a/b/projects/myproject 1 undefined Config: /a/b/projects/myproject/tsconfig.json WatchType: Wild card directory +Info 35 [00:01:05.000] Scheduled: /a/b/projects/myproject/tsconfig.json, Cancelled earlier one +Info 36 [00:01:06.000] Scheduled: *ensureProjectForOpenFiles*, Cancelled earlier one +Info 37 [00:01:07.000] Elapsed:: *ms DirectoryWatcher:: Triggered with /a/b/projects/myproject/foo2 :: WatchInfo: /a/b/projects/myproject 1 undefined Config: /a/b/projects/myproject/tsconfig.json WatchType: Wild card directory +Info 38 [00:01:08.000] FileWatcher:: Triggered with /a/b/projects/myproject/foo/foo.ts 2:: WatchInfo: /a/b/projects/myproject/foo/foo.ts 500 undefined WatchType: Closed Script info +Info 39 [00:01:09.000] FileWatcher:: Close:: WatchInfo: /a/b/projects/myproject/foo/foo.ts 500 undefined WatchType: Closed Script info +Info 40 [00:01:10.000] Scheduled: /a/b/projects/myproject/tsconfig.json, Cancelled earlier one +Info 41 [00:01:11.000] Scheduled: *ensureProjectForOpenFiles*, Cancelled earlier one +Info 42 [00:01:12.000] Elapsed:: *ms FileWatcher:: Triggered with /a/b/projects/myproject/foo/foo.ts 2:: WatchInfo: /a/b/projects/myproject/foo/foo.ts 500 undefined WatchType: Closed Script info +Info 43 [00:01:13.000] DirectoryWatcher:: Triggered with /a/b/projects/myproject/foo/foo.ts :: WatchInfo: /a/b/projects/myproject 1 undefined Config: /a/b/projects/myproject/tsconfig.json WatchType: Wild card directory +Info 44 [00:01:14.000] Scheduled: /a/b/projects/myproject/tsconfig.json, Cancelled earlier one +Info 45 [00:01:15.000] Scheduled: *ensureProjectForOpenFiles*, Cancelled earlier one +Info 46 [00:01:16.000] Elapsed:: *ms DirectoryWatcher:: Triggered with /a/b/projects/myproject/foo/foo.ts :: WatchInfo: /a/b/projects/myproject 1 undefined Config: /a/b/projects/myproject/tsconfig.json WatchType: Wild card directory +Info 47 [00:01:17.000] DirectoryWatcher:: Triggered with /a/b/projects/myproject/foo2/foo.ts :: WatchInfo: /a/b/projects/myproject 1 undefined Config: /a/b/projects/myproject/tsconfig.json WatchType: Wild card directory +Info 48 [00:01:18.000] Scheduled: /a/b/projects/myproject/tsconfig.json, Cancelled earlier one +Info 49 [00:01:19.000] Scheduled: *ensureProjectForOpenFiles*, Cancelled earlier one +Info 50 [00:01:20.000] Elapsed:: *ms DirectoryWatcher:: Triggered with /a/b/projects/myproject/foo2/foo.ts :: WatchInfo: /a/b/projects/myproject 1 undefined Config: /a/b/projects/myproject/tsconfig.json WatchType: Wild card directory Before running timeout callbacks //// [/a/b/projects/myproject/foo2/foo.ts] declare namespace foo { interface Foo { get2(): number; getFoo(): string; } } @@ -306,12 +306,12 @@ FsWatchesRecursive:: /a/b/projects/myproject: {} -Info 51 [16:01:21.000] Running: /a/b/projects/myproject/tsconfig.json -Info 52 [16:01:22.000] FileWatcher:: Added:: WatchInfo: /a/b/projects/myproject/foo2/foo.ts 500 undefined WatchType: Closed Script info -Info 53 [16:01:23.000] Starting updateGraphWorker: Project: /a/b/projects/myproject/tsconfig.json -Info 54 [16:01:24.000] Finishing updateGraphWorker: Project: /a/b/projects/myproject/tsconfig.json Version: 2 structureChanged: true structureIsReused:: Not Elapsed:: *ms -Info 55 [16:01:25.000] Project '/a/b/projects/myproject/tsconfig.json' (Configured) -Info 56 [16:01:26.000] Files (2) +Info 51 [00:01:21.000] Running: /a/b/projects/myproject/tsconfig.json +Info 52 [00:01:22.000] FileWatcher:: Added:: WatchInfo: /a/b/projects/myproject/foo2/foo.ts 500 undefined WatchType: Closed Script info +Info 53 [00:01:23.000] Starting updateGraphWorker: Project: /a/b/projects/myproject/tsconfig.json +Info 54 [00:01:24.000] Finishing updateGraphWorker: Project: /a/b/projects/myproject/tsconfig.json Version: 2 structureChanged: true structureIsReused:: Not Elapsed:: *ms +Info 55 [00:01:25.000] Project '/a/b/projects/myproject/tsconfig.json' (Configured) +Info 56 [00:01:26.000] Files (2) /a/b/projects/myproject/bar/app.ts /a/b/projects/myproject/foo2/foo.ts @@ -321,26 +321,26 @@ Info 56 [16:01:26.000] Files (2) foo2/foo.ts Matched by default include pattern '**/*' -Info 57 [16:01:27.000] ----------------------------------------------- -Info 58 [16:01:28.000] Running: *ensureProjectForOpenFiles* -Info 59 [16:01:29.000] Before ensureProjectForOpenFiles: -Info 60 [16:01:30.000] Project '/a/b/projects/myproject/tsconfig.json' (Configured) -Info 60 [16:01:31.000] Files (2) - -Info 60 [16:01:32.000] ----------------------------------------------- -Info 60 [16:01:33.000] Open files: -Info 60 [16:01:34.000] FileName: /a/b/projects/myproject/bar/app.ts ProjectRootPath: undefined -Info 60 [16:01:35.000] Projects: /a/b/projects/myproject/tsconfig.json -Info 60 [16:01:36.000] After ensureProjectForOpenFiles: -Info 61 [16:01:37.000] Project '/a/b/projects/myproject/tsconfig.json' (Configured) -Info 61 [16:01:38.000] Files (2) - -Info 61 [16:01:39.000] ----------------------------------------------- -Info 61 [16:01:40.000] Open files: -Info 61 [16:01:41.000] FileName: /a/b/projects/myproject/bar/app.ts ProjectRootPath: undefined -Info 61 [16:01:42.000] Projects: /a/b/projects/myproject/tsconfig.json -Info 61 [16:01:43.000] got projects updated in background, updating diagnostics for /a/b/projects/myproject/bar/app.ts -Info 62 [16:01:44.000] event: +Info 57 [00:01:27.000] ----------------------------------------------- +Info 58 [00:01:28.000] Running: *ensureProjectForOpenFiles* +Info 59 [00:01:29.000] Before ensureProjectForOpenFiles: +Info 60 [00:01:30.000] Project '/a/b/projects/myproject/tsconfig.json' (Configured) +Info 60 [00:01:31.000] Files (2) + +Info 60 [00:01:32.000] ----------------------------------------------- +Info 60 [00:01:33.000] Open files: +Info 60 [00:01:34.000] FileName: /a/b/projects/myproject/bar/app.ts ProjectRootPath: undefined +Info 60 [00:01:35.000] Projects: /a/b/projects/myproject/tsconfig.json +Info 60 [00:01:36.000] After ensureProjectForOpenFiles: +Info 61 [00:01:37.000] Project '/a/b/projects/myproject/tsconfig.json' (Configured) +Info 61 [00:01:38.000] Files (2) + +Info 61 [00:01:39.000] ----------------------------------------------- +Info 61 [00:01:40.000] Open files: +Info 61 [00:01:41.000] FileName: /a/b/projects/myproject/bar/app.ts ProjectRootPath: undefined +Info 61 [00:01:42.000] Projects: /a/b/projects/myproject/tsconfig.json +Info 61 [00:01:43.000] got projects updated in background, updating diagnostics for /a/b/projects/myproject/bar/app.ts +Info 62 [00:01:44.000] event: {"seq":0,"type":"event","event":"projectsUpdatedInBackground","body":{"openFiles":["/a/b/projects/myproject/bar/app.ts"]}} After running timeout callbacks @@ -378,7 +378,7 @@ FsWatchesRecursive:: /a/b/projects/myproject: {} -Info 63 [16:01:45.000] event: +Info 63 [00:01:45.000] event: {"seq":0,"type":"event","event":"syntaxDiag","body":{"file":"/a/b/projects/myproject/bar/app.ts","diagnostics":[]}} After running timeout callbacks @@ -398,7 +398,7 @@ FsWatchesRecursive:: /a/b/projects/myproject: {} -Info 64 [16:01:46.000] request: +Info 64 [00:01:46.000] request: { "command": "geterr", "arguments": { @@ -446,7 +446,7 @@ FsWatchesRecursive:: /a/b/projects/myproject: {} -Info 65 [16:01:47.000] response: +Info 65 [00:01:47.000] response: { "responseRequired": false } @@ -468,7 +468,7 @@ FsWatchesRecursive:: /a/b/projects/myproject: {} -Info 66 [16:01:48.000] event: +Info 66 [00:01:48.000] event: {"seq":0,"type":"event","event":"syntaxDiag","body":{"file":"/a/b/projects/myproject/bar/app.ts","diagnostics":[]}} After checking timeout queue length (1) and running @@ -506,7 +506,7 @@ FsWatchesRecursive:: /a/b/projects/myproject: {} -Info 67 [16:01:49.000] event: +Info 67 [00:01:49.000] event: {"seq":0,"type":"event","event":"semanticDiag","body":{"file":"/a/b/projects/myproject/bar/app.ts","diagnostics":[]}} Before running immediate callbacks and checking length (1) @@ -544,9 +544,9 @@ FsWatchesRecursive:: /a/b/projects/myproject: {} -Info 68 [16:01:50.000] event: +Info 68 [00:01:50.000] event: {"seq":0,"type":"event","event":"suggestionDiag","body":{"file":"/a/b/projects/myproject/bar/app.ts","diagnostics":[]}} -Info 69 [16:01:51.000] event: +Info 69 [00:01:51.000] event: {"seq":0,"type":"event","event":"requestCompleted","body":{"request_seq":3}} Before running immediate callbacks and checking length (1) diff --git a/tests/baselines/reference/tsserver/projectErrors/getting-errors-before-opening-file.js b/tests/baselines/reference/tsserver/projectErrors/getting-errors-before-opening-file.js index c4c4a949c93d2..88003bce60fe2 100644 --- a/tests/baselines/reference/tsserver/projectErrors/getting-errors-before-opening-file.js +++ b/tests/baselines/reference/tsserver/projectErrors/getting-errors-before-opening-file.js @@ -1,5 +1,5 @@ -Info 0 [16:00:15.000] Provided types map file "/a/lib/typesMap.json" doesn't exist -Info 1 [16:00:16.000] request: +Info 0 [00:00:15.000] Provided types map file "/a/lib/typesMap.json" doesn't exist +Info 1 [00:00:16.000] request: { "command": "geterr", "arguments": { @@ -43,7 +43,7 @@ FsWatches:: FsWatchesRecursive:: -Info 2 [16:00:17.000] response: +Info 2 [00:00:17.000] response: { "responseRequired": false } @@ -55,7 +55,7 @@ FsWatches:: FsWatchesRecursive:: -Info 3 [16:00:18.000] event: +Info 3 [00:00:18.000] event: {"seq":0,"type":"event","event":"requestCompleted","body":{"request_seq":1}} After checking timeout queue length (1) and running 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 0d28486bee748..5e32163dc1e41 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 @@ -1,5 +1,5 @@ -Info 0 [16:00:23.000] Provided types map file "/a/lib/typesMap.json" doesn't exist -Info 1 [16:00:24.000] request: +Info 0 [00:00:23.000] Provided types map file "/a/lib/typesMap.json" doesn't exist +Info 1 [00:00:24.000] request: { "seq": 0, "type": "request", @@ -36,13 +36,13 @@ FsWatches:: FsWatchesRecursive:: -Info 2 [16:00:25.000] Search path: /user/username/projects/myproject/src -Info 3 [16:00:26.000] For info: /user/username/projects/myproject/src/main.ts :: Config file name: /user/username/projects/myproject/tsconfig.json -Info 4 [16:00:27.000] Creating configuration project /user/username/projects/myproject/tsconfig.json -Info 5 [16:00:28.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/tsconfig.json 2000 undefined Project: /user/username/projects/myproject/tsconfig.json WatchType: Config file -Info 6 [16:00:29.000] event: +Info 2 [00:00:25.000] Search path: /user/username/projects/myproject/src +Info 3 [00:00:26.000] For info: /user/username/projects/myproject/src/main.ts :: Config file name: /user/username/projects/myproject/tsconfig.json +Info 4 [00:00:27.000] Creating configuration project /user/username/projects/myproject/tsconfig.json +Info 5 [00:00:28.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/tsconfig.json 2000 undefined Project: /user/username/projects/myproject/tsconfig.json WatchType: Config file +Info 6 [00:00:29.000] event: {"seq":0,"type":"event","event":"projectLoadingStart","body":{"projectName":"/user/username/projects/myproject/tsconfig.json","reason":"Creating possible configured project for /user/username/projects/myproject/src/main.ts to open"}} -Info 7 [16:00:30.000] Config: /user/username/projects/myproject/tsconfig.json : { +Info 7 [00:00:30.000] Config: /user/username/projects/myproject/tsconfig.json : { "rootNames": [ "/user/username/projects/myproject/src/main.ts" ], @@ -50,20 +50,20 @@ Info 7 [16:00:30.000] Config: /user/username/projects/myproject/tsconfig.json "configFilePath": "/user/username/projects/myproject/tsconfig.json" } } -Info 8 [16:00:31.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject 1 undefined Config: /user/username/projects/myproject/tsconfig.json WatchType: Wild card directory -Info 9 [16:00:32.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject 1 undefined Config: /user/username/projects/myproject/tsconfig.json WatchType: Wild card directory -Info 10 [16:00:33.000] Plugins were requested but not running in environment that supports 'require'. Nothing will be loaded -Info 11 [16:00:34.000] Starting updateGraphWorker: Project: /user/username/projects/myproject/tsconfig.json -Info 12 [16:00:35.000] FileWatcher:: Added:: WatchInfo: /a/lib/lib.d.ts 500 undefined WatchType: Closed Script info -Info 13 [16:00:36.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/src 1 undefined Project: /user/username/projects/myproject/tsconfig.json WatchType: Failed Lookup Locations -Info 14 [16:00:37.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/src 1 undefined Project: /user/username/projects/myproject/tsconfig.json WatchType: Failed Lookup Locations -Info 15 [16:00:38.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules 1 undefined Project: /user/username/projects/myproject/tsconfig.json WatchType: Failed Lookup Locations -Info 16 [16:00:39.000] 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 17 [16:00:40.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/tsconfig.json WatchType: Type roots -Info 18 [16:00:41.000] 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 19 [16:00:42.000] Finishing updateGraphWorker: Project: /user/username/projects/myproject/tsconfig.json Version: 1 structureChanged: true structureIsReused:: Not Elapsed:: *ms -Info 20 [16:00:43.000] Project '/user/username/projects/myproject/tsconfig.json' (Configured) -Info 21 [16:00:44.000] Files (2) +Info 8 [00:00:31.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject 1 undefined Config: /user/username/projects/myproject/tsconfig.json WatchType: Wild card directory +Info 9 [00:00:32.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject 1 undefined Config: /user/username/projects/myproject/tsconfig.json WatchType: Wild card directory +Info 10 [00:00:33.000] Plugins were requested but not running in environment that supports 'require'. Nothing will be loaded +Info 11 [00:00:34.000] Starting updateGraphWorker: Project: /user/username/projects/myproject/tsconfig.json +Info 12 [00:00:35.000] FileWatcher:: Added:: WatchInfo: /a/lib/lib.d.ts 500 undefined WatchType: Closed Script info +Info 13 [00:00:36.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/src 1 undefined Project: /user/username/projects/myproject/tsconfig.json WatchType: Failed Lookup Locations +Info 14 [00:00:37.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/src 1 undefined Project: /user/username/projects/myproject/tsconfig.json WatchType: Failed Lookup Locations +Info 15 [00:00:38.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules 1 undefined Project: /user/username/projects/myproject/tsconfig.json WatchType: Failed Lookup Locations +Info 16 [00:00:39.000] 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 17 [00:00:40.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/tsconfig.json WatchType: Type roots +Info 18 [00:00:41.000] 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 19 [00:00:42.000] Finishing updateGraphWorker: Project: /user/username/projects/myproject/tsconfig.json Version: 1 structureChanged: true structureIsReused:: Not Elapsed:: *ms +Info 20 [00:00:43.000] Project '/user/username/projects/myproject/tsconfig.json' (Configured) +Info 21 [00:00:44.000] Files (2) /a/lib/lib.d.ts /user/username/projects/myproject/src/main.ts @@ -73,20 +73,20 @@ Info 21 [16:00:44.000] Files (2) src/main.ts Matched by default include pattern '**/*' -Info 22 [16:00:45.000] ----------------------------------------------- -Info 23 [16:00:46.000] event: +Info 22 [00:00:45.000] ----------------------------------------------- +Info 23 [00:00:46.000] event: {"seq":0,"type":"event","event":"projectLoadingFinish","body":{"projectName":"/user/username/projects/myproject/tsconfig.json"}} -Info 24 [16:00:47.000] event: +Info 24 [00:00:47.000] event: {"seq":0,"type":"event","event":"telemetry","body":{"telemetryEventName":"projectInfo","payload":{"projectId":"4a33d78ee40d836c4f4e64c59aed976628aea0013be9585c5ff171dfc41baf98","fileStats":{"js":0,"jsSize":0,"jsx":0,"jsxSize":0,"ts":1,"tsSize":36,"tsx":0,"tsxSize":0,"dts":1,"dtsSize":334,"deferred":0,"deferredSize":0},"compilerOptions":{},"typeAcquisition":{"enable":false,"include":false,"exclude":false},"extends":false,"files":false,"include":false,"exclude":false,"compileOnSave":false,"configFileName":"tsconfig.json","projectType":"configured","languageServiceEnabled":true,"version":"FakeVersion"}}} -Info 25 [16:00:48.000] event: +Info 25 [00:00:48.000] event: {"seq":0,"type":"event","event":"configFileDiag","body":{"triggerFile":"/user/username/projects/myproject/src/main.ts","configFile":"/user/username/projects/myproject/tsconfig.json","diagnostics":[]}} -Info 26 [16:00:49.000] Project '/user/username/projects/myproject/tsconfig.json' (Configured) -Info 26 [16:00:50.000] Files (2) +Info 26 [00:00:49.000] Project '/user/username/projects/myproject/tsconfig.json' (Configured) +Info 26 [00:00:50.000] Files (2) -Info 26 [16:00:51.000] ----------------------------------------------- -Info 26 [16:00:52.000] Open files: -Info 26 [16:00:53.000] FileName: /user/username/projects/myproject/src/main.ts ProjectRootPath: /user/username/projects/myproject -Info 26 [16:00:54.000] Projects: /user/username/projects/myproject/tsconfig.json +Info 26 [00:00:51.000] ----------------------------------------------- +Info 26 [00:00:52.000] Open files: +Info 26 [00:00:53.000] FileName: /user/username/projects/myproject/src/main.ts ProjectRootPath: /user/username/projects/myproject +Info 26 [00:00:54.000] Projects: /user/username/projects/myproject/tsconfig.json After request PolledWatches:: @@ -107,11 +107,11 @@ FsWatchesRecursive:: /user/username/projects/myproject/src: {} -Info 26 [16:00:55.000] response: +Info 26 [00:00:55.000] response: { "responseRequired": false } -Info 27 [16:00:56.000] request: +Info 27 [00:00:56.000] request: { "command": "geterr", "arguments": { @@ -163,7 +163,7 @@ FsWatchesRecursive:: /user/username/projects/myproject/src: {} -Info 28 [16:00:57.000] response: +Info 28 [00:00:57.000] response: { "responseRequired": false } @@ -187,7 +187,7 @@ FsWatchesRecursive:: /user/username/projects/myproject/src: {} -Info 29 [16:00:58.000] event: +Info 29 [00:00:58.000] event: {"seq":0,"type":"event","event":"syntaxDiag","body":{"file":"/user/username/projects/myproject/src/main.ts","diagnostics":[]}} After checking timeout queue length (1) and running @@ -229,7 +229,7 @@ FsWatchesRecursive:: /user/username/projects/myproject/src: {} -Info 30 [16:00:59.000] event: +Info 30 [00:00:59.000] event: {"seq":0,"type":"event","event":"semanticDiag","body":{"file":"/user/username/projects/myproject/src/main.ts","diagnostics":[{"start":{"line":1,"offset":21},"end":{"line":1,"offset":36},"text":"Cannot find module '@angular/core' or its corresponding type declarations.","code":2307,"category":"error"}]}} Before running immediate callbacks and checking length (1) @@ -271,9 +271,9 @@ FsWatchesRecursive:: /user/username/projects/myproject/src: {} -Info 31 [16:01:00.000] event: +Info 31 [00:01:00.000] event: {"seq":0,"type":"event","event":"suggestionDiag","body":{"file":"/user/username/projects/myproject/src/main.ts","diagnostics":[]}} -Info 32 [16:01:01.000] event: +Info 32 [00:01:01.000] event: {"seq":0,"type":"event","event":"requestCompleted","body":{"request_seq":1}} Before running immediate callbacks and checking length (1) @@ -295,38 +295,38 @@ FsWatchesRecursive:: /user/username/projects/myproject/src: {} -Info 33 [16:01:04.000] DirectoryWatcher:: Triggered with /user/username/projects/myproject/node_modules :: WatchInfo: /user/username/projects/myproject/node_modules 1 undefined Project: /user/username/projects/myproject/tsconfig.json WatchType: Failed Lookup Locations -Info 34 [16:01:05.000] Scheduled: /user/username/projects/myproject/tsconfig.jsonFailedLookupInvalidation -Info 35 [16:01:06.000] Elapsed:: *ms DirectoryWatcher:: Triggered with /user/username/projects/myproject/node_modules :: WatchInfo: /user/username/projects/myproject/node_modules 1 undefined Project: /user/username/projects/myproject/tsconfig.json WatchType: Failed Lookup Locations -Info 36 [16:01:07.000] DirectoryWatcher:: Triggered with /user/username/projects/myproject/node_modules :: WatchInfo: /user/username/projects/myproject/node_modules 1 undefined Project: /user/username/projects/myproject/tsconfig.json WatchType: Failed Lookup Locations -Info 37 [16:01:08.000] Scheduled: /user/username/projects/myproject/tsconfig.jsonFailedLookupInvalidation, Cancelled earlier one -Info 38 [16:01:09.000] Elapsed:: *ms DirectoryWatcher:: Triggered with /user/username/projects/myproject/node_modules :: WatchInfo: /user/username/projects/myproject/node_modules 1 undefined Project: /user/username/projects/myproject/tsconfig.json WatchType: Failed Lookup Locations -Info 39 [16:01:10.000] DirectoryWatcher:: Triggered with /user/username/projects/myproject/node_modules :: WatchInfo: /user/username/projects/myproject 1 undefined Config: /user/username/projects/myproject/tsconfig.json WatchType: Wild card directory -Info 40 [16:01:11.000] Scheduled: /user/username/projects/myproject/tsconfig.json -Info 41 [16:01:12.000] Scheduled: *ensureProjectForOpenFiles* -Info 42 [16:01:13.000] Elapsed:: *ms DirectoryWatcher:: Triggered with /user/username/projects/myproject/node_modules :: WatchInfo: /user/username/projects/myproject 1 undefined Config: /user/username/projects/myproject/tsconfig.json WatchType: Wild card directory -Info 43 [16:01:16.000] DirectoryWatcher:: Triggered with /user/username/projects/myproject/node_modules/.staging :: WatchInfo: /user/username/projects/myproject/node_modules 1 undefined Project: /user/username/projects/myproject/tsconfig.json WatchType: Failed Lookup Locations -Info 44 [16:01:17.000] Scheduled: /user/username/projects/myproject/tsconfig.jsonFailedLookupInvalidation, Cancelled earlier one -Info 45 [16:01:18.000] Elapsed:: *ms DirectoryWatcher:: Triggered with /user/username/projects/myproject/node_modules/.staging :: WatchInfo: /user/username/projects/myproject/node_modules 1 undefined Project: /user/username/projects/myproject/tsconfig.json WatchType: Failed Lookup Locations -Info 46 [16:01:19.000] DirectoryWatcher:: Triggered with /user/username/projects/myproject/node_modules/.staging :: WatchInfo: /user/username/projects/myproject 1 undefined Config: /user/username/projects/myproject/tsconfig.json WatchType: Wild card directory -Info 47 [16:01:20.000] Scheduled: /user/username/projects/myproject/tsconfig.json, Cancelled earlier one -Info 48 [16:01:21.000] Scheduled: *ensureProjectForOpenFiles*, Cancelled earlier one -Info 49 [16:01:22.000] Elapsed:: *ms DirectoryWatcher:: Triggered with /user/username/projects/myproject/node_modules/.staging :: WatchInfo: /user/username/projects/myproject 1 undefined Config: /user/username/projects/myproject/tsconfig.json WatchType: Wild card directory -Info 50 [16:01:25.000] DirectoryWatcher:: Triggered with /user/username/projects/myproject/node_modules/.staging/@babel :: WatchInfo: /user/username/projects/myproject/node_modules 1 undefined Project: /user/username/projects/myproject/tsconfig.json WatchType: Failed Lookup Locations -Info 51 [16:01:26.000] Elapsed:: *ms DirectoryWatcher:: Triggered with /user/username/projects/myproject/node_modules/.staging/@babel :: WatchInfo: /user/username/projects/myproject/node_modules 1 undefined Project: /user/username/projects/myproject/tsconfig.json WatchType: Failed Lookup Locations -Info 52 [16:01:27.000] DirectoryWatcher:: Triggered with /user/username/projects/myproject/node_modules/.staging/@babel :: WatchInfo: /user/username/projects/myproject 1 undefined Config: /user/username/projects/myproject/tsconfig.json WatchType: Wild card directory -Info 53 [16:01:28.000] Project: /user/username/projects/myproject/tsconfig.json Detected ignored path: /user/username/projects/myproject/node_modules/.staging/@babel -Info 54 [16:01:29.000] Elapsed:: *ms DirectoryWatcher:: Triggered with /user/username/projects/myproject/node_modules/.staging/@babel :: WatchInfo: /user/username/projects/myproject 1 undefined Config: /user/username/projects/myproject/tsconfig.json WatchType: Wild card directory -Info 55 [16:01:32.000] DirectoryWatcher:: Triggered with /user/username/projects/myproject/node_modules/.staging/@babel/helper-plugin-utils-a06c629f :: WatchInfo: /user/username/projects/myproject/node_modules 1 undefined Project: /user/username/projects/myproject/tsconfig.json WatchType: Failed Lookup Locations -Info 56 [16:01:33.000] Elapsed:: *ms DirectoryWatcher:: Triggered with /user/username/projects/myproject/node_modules/.staging/@babel/helper-plugin-utils-a06c629f :: WatchInfo: /user/username/projects/myproject/node_modules 1 undefined Project: /user/username/projects/myproject/tsconfig.json WatchType: Failed Lookup Locations -Info 57 [16:01:34.000] DirectoryWatcher:: Triggered with /user/username/projects/myproject/node_modules/.staging/@babel/helper-plugin-utils-a06c629f :: WatchInfo: /user/username/projects/myproject 1 undefined Config: /user/username/projects/myproject/tsconfig.json WatchType: Wild card directory -Info 58 [16:01:35.000] Project: /user/username/projects/myproject/tsconfig.json Detected ignored path: /user/username/projects/myproject/node_modules/.staging/@babel/helper-plugin-utils-a06c629f -Info 59 [16:01:36.000] Elapsed:: *ms DirectoryWatcher:: Triggered with /user/username/projects/myproject/node_modules/.staging/@babel/helper-plugin-utils-a06c629f :: WatchInfo: /user/username/projects/myproject 1 undefined Config: /user/username/projects/myproject/tsconfig.json WatchType: Wild card directory -Info 60 [16:01:39.000] DirectoryWatcher:: Triggered with /user/username/projects/myproject/node_modules/.staging/core-js-db53158d :: WatchInfo: /user/username/projects/myproject/node_modules 1 undefined Project: /user/username/projects/myproject/tsconfig.json WatchType: Failed Lookup Locations -Info 61 [16:01:40.000] Elapsed:: *ms DirectoryWatcher:: Triggered with /user/username/projects/myproject/node_modules/.staging/core-js-db53158d :: WatchInfo: /user/username/projects/myproject/node_modules 1 undefined Project: /user/username/projects/myproject/tsconfig.json WatchType: Failed Lookup Locations -Info 62 [16:01:41.000] DirectoryWatcher:: Triggered with /user/username/projects/myproject/node_modules/.staging/core-js-db53158d :: WatchInfo: /user/username/projects/myproject 1 undefined Config: /user/username/projects/myproject/tsconfig.json WatchType: Wild card directory -Info 63 [16:01:42.000] Project: /user/username/projects/myproject/tsconfig.json Detected ignored path: /user/username/projects/myproject/node_modules/.staging/core-js-db53158d -Info 64 [16:01:43.000] Elapsed:: *ms DirectoryWatcher:: Triggered with /user/username/projects/myproject/node_modules/.staging/core-js-db53158d :: WatchInfo: /user/username/projects/myproject 1 undefined Config: /user/username/projects/myproject/tsconfig.json WatchType: Wild card directory +Info 33 [00:01:04.000] DirectoryWatcher:: Triggered with /user/username/projects/myproject/node_modules :: WatchInfo: /user/username/projects/myproject/node_modules 1 undefined Project: /user/username/projects/myproject/tsconfig.json WatchType: Failed Lookup Locations +Info 34 [00:01:05.000] Scheduled: /user/username/projects/myproject/tsconfig.jsonFailedLookupInvalidation +Info 35 [00:01:06.000] Elapsed:: *ms DirectoryWatcher:: Triggered with /user/username/projects/myproject/node_modules :: WatchInfo: /user/username/projects/myproject/node_modules 1 undefined Project: /user/username/projects/myproject/tsconfig.json WatchType: Failed Lookup Locations +Info 36 [00:01:07.000] DirectoryWatcher:: Triggered with /user/username/projects/myproject/node_modules :: WatchInfo: /user/username/projects/myproject/node_modules 1 undefined Project: /user/username/projects/myproject/tsconfig.json WatchType: Failed Lookup Locations +Info 37 [00:01:08.000] Scheduled: /user/username/projects/myproject/tsconfig.jsonFailedLookupInvalidation, Cancelled earlier one +Info 38 [00:01:09.000] Elapsed:: *ms DirectoryWatcher:: Triggered with /user/username/projects/myproject/node_modules :: WatchInfo: /user/username/projects/myproject/node_modules 1 undefined Project: /user/username/projects/myproject/tsconfig.json WatchType: Failed Lookup Locations +Info 39 [00:01:10.000] DirectoryWatcher:: Triggered with /user/username/projects/myproject/node_modules :: WatchInfo: /user/username/projects/myproject 1 undefined Config: /user/username/projects/myproject/tsconfig.json WatchType: Wild card directory +Info 40 [00:01:11.000] Scheduled: /user/username/projects/myproject/tsconfig.json +Info 41 [00:01:12.000] Scheduled: *ensureProjectForOpenFiles* +Info 42 [00:01:13.000] Elapsed:: *ms DirectoryWatcher:: Triggered with /user/username/projects/myproject/node_modules :: WatchInfo: /user/username/projects/myproject 1 undefined Config: /user/username/projects/myproject/tsconfig.json WatchType: Wild card directory +Info 43 [00:01:16.000] DirectoryWatcher:: Triggered with /user/username/projects/myproject/node_modules/.staging :: WatchInfo: /user/username/projects/myproject/node_modules 1 undefined Project: /user/username/projects/myproject/tsconfig.json WatchType: Failed Lookup Locations +Info 44 [00:01:17.000] Scheduled: /user/username/projects/myproject/tsconfig.jsonFailedLookupInvalidation, Cancelled earlier one +Info 45 [00:01:18.000] Elapsed:: *ms DirectoryWatcher:: Triggered with /user/username/projects/myproject/node_modules/.staging :: WatchInfo: /user/username/projects/myproject/node_modules 1 undefined Project: /user/username/projects/myproject/tsconfig.json WatchType: Failed Lookup Locations +Info 46 [00:01:19.000] DirectoryWatcher:: Triggered with /user/username/projects/myproject/node_modules/.staging :: WatchInfo: /user/username/projects/myproject 1 undefined Config: /user/username/projects/myproject/tsconfig.json WatchType: Wild card directory +Info 47 [00:01:20.000] Scheduled: /user/username/projects/myproject/tsconfig.json, Cancelled earlier one +Info 48 [00:01:21.000] Scheduled: *ensureProjectForOpenFiles*, Cancelled earlier one +Info 49 [00:01:22.000] Elapsed:: *ms DirectoryWatcher:: Triggered with /user/username/projects/myproject/node_modules/.staging :: WatchInfo: /user/username/projects/myproject 1 undefined Config: /user/username/projects/myproject/tsconfig.json WatchType: Wild card directory +Info 50 [00:01:25.000] DirectoryWatcher:: Triggered with /user/username/projects/myproject/node_modules/.staging/@babel :: WatchInfo: /user/username/projects/myproject/node_modules 1 undefined Project: /user/username/projects/myproject/tsconfig.json WatchType: Failed Lookup Locations +Info 51 [00:01:26.000] Elapsed:: *ms DirectoryWatcher:: Triggered with /user/username/projects/myproject/node_modules/.staging/@babel :: WatchInfo: /user/username/projects/myproject/node_modules 1 undefined Project: /user/username/projects/myproject/tsconfig.json WatchType: Failed Lookup Locations +Info 52 [00:01:27.000] DirectoryWatcher:: Triggered with /user/username/projects/myproject/node_modules/.staging/@babel :: WatchInfo: /user/username/projects/myproject 1 undefined Config: /user/username/projects/myproject/tsconfig.json WatchType: Wild card directory +Info 53 [00:01:28.000] Project: /user/username/projects/myproject/tsconfig.json Detected ignored path: /user/username/projects/myproject/node_modules/.staging/@babel +Info 54 [00:01:29.000] Elapsed:: *ms DirectoryWatcher:: Triggered with /user/username/projects/myproject/node_modules/.staging/@babel :: WatchInfo: /user/username/projects/myproject 1 undefined Config: /user/username/projects/myproject/tsconfig.json WatchType: Wild card directory +Info 55 [00:01:32.000] DirectoryWatcher:: Triggered with /user/username/projects/myproject/node_modules/.staging/@babel/helper-plugin-utils-a06c629f :: WatchInfo: /user/username/projects/myproject/node_modules 1 undefined Project: /user/username/projects/myproject/tsconfig.json WatchType: Failed Lookup Locations +Info 56 [00:01:33.000] Elapsed:: *ms DirectoryWatcher:: Triggered with /user/username/projects/myproject/node_modules/.staging/@babel/helper-plugin-utils-a06c629f :: WatchInfo: /user/username/projects/myproject/node_modules 1 undefined Project: /user/username/projects/myproject/tsconfig.json WatchType: Failed Lookup Locations +Info 57 [00:01:34.000] DirectoryWatcher:: Triggered with /user/username/projects/myproject/node_modules/.staging/@babel/helper-plugin-utils-a06c629f :: WatchInfo: /user/username/projects/myproject 1 undefined Config: /user/username/projects/myproject/tsconfig.json WatchType: Wild card directory +Info 58 [00:01:35.000] Project: /user/username/projects/myproject/tsconfig.json Detected ignored path: /user/username/projects/myproject/node_modules/.staging/@babel/helper-plugin-utils-a06c629f +Info 59 [00:01:36.000] Elapsed:: *ms DirectoryWatcher:: Triggered with /user/username/projects/myproject/node_modules/.staging/@babel/helper-plugin-utils-a06c629f :: WatchInfo: /user/username/projects/myproject 1 undefined Config: /user/username/projects/myproject/tsconfig.json WatchType: Wild card directory +Info 60 [00:01:39.000] DirectoryWatcher:: Triggered with /user/username/projects/myproject/node_modules/.staging/core-js-db53158d :: WatchInfo: /user/username/projects/myproject/node_modules 1 undefined Project: /user/username/projects/myproject/tsconfig.json WatchType: Failed Lookup Locations +Info 61 [00:01:40.000] Elapsed:: *ms DirectoryWatcher:: Triggered with /user/username/projects/myproject/node_modules/.staging/core-js-db53158d :: WatchInfo: /user/username/projects/myproject/node_modules 1 undefined Project: /user/username/projects/myproject/tsconfig.json WatchType: Failed Lookup Locations +Info 62 [00:01:41.000] DirectoryWatcher:: Triggered with /user/username/projects/myproject/node_modules/.staging/core-js-db53158d :: WatchInfo: /user/username/projects/myproject 1 undefined Config: /user/username/projects/myproject/tsconfig.json WatchType: Wild card directory +Info 63 [00:01:42.000] Project: /user/username/projects/myproject/tsconfig.json Detected ignored path: /user/username/projects/myproject/node_modules/.staging/core-js-db53158d +Info 64 [00:01:43.000] Elapsed:: *ms DirectoryWatcher:: Triggered with /user/username/projects/myproject/node_modules/.staging/core-js-db53158d :: WatchInfo: /user/username/projects/myproject 1 undefined Config: /user/username/projects/myproject/tsconfig.json WatchType: Wild card directory Checking timeout queue length: 3 PolledWatches:: @@ -347,7 +347,7 @@ FsWatchesRecursive:: /user/username/projects/myproject/node_modules: {} -Info 65 [16:01:44.000] request: +Info 65 [00:01:44.000] request: { "command": "geterr", "arguments": { @@ -399,7 +399,7 @@ FsWatchesRecursive:: /user/username/projects/myproject/node_modules: {} -Info 66 [16:01:45.000] response: +Info 66 [00:01:45.000] response: { "responseRequired": false } @@ -443,11 +443,11 @@ FsWatchesRecursive:: /user/username/projects/myproject/node_modules: {} -Info 67 [16:01:46.000] Scheduled: *ensureProjectForOpenFiles*, Cancelled earlier one -Info 68 [16:01:47.000] Starting updateGraphWorker: Project: /user/username/projects/myproject/tsconfig.json -Info 69 [16:01:48.000] Finishing updateGraphWorker: Project: /user/username/projects/myproject/tsconfig.json Version: 2 structureChanged: true structureIsReused:: SafeModules Elapsed:: *ms -Info 70 [16:01:49.000] Different program with same set of files -Info 71 [16:01:50.000] event: +Info 67 [00:01:46.000] Scheduled: *ensureProjectForOpenFiles*, Cancelled earlier one +Info 68 [00:01:47.000] Starting updateGraphWorker: Project: /user/username/projects/myproject/tsconfig.json +Info 69 [00:01:48.000] Finishing updateGraphWorker: Project: /user/username/projects/myproject/tsconfig.json Version: 2 structureChanged: true structureIsReused:: SafeModules Elapsed:: *ms +Info 70 [00:01:49.000] Different program with same set of files +Info 71 [00:01:50.000] event: {"seq":0,"type":"event","event":"syntaxDiag","body":{"file":"/user/username/projects/myproject/src/main.ts","diagnostics":[]}} After running timeout callback9 @@ -489,7 +489,7 @@ FsWatchesRecursive:: /user/username/projects/myproject/node_modules: {} -Info 72 [16:01:51.000] event: +Info 72 [00:01:51.000] event: {"seq":0,"type":"event","event":"semanticDiag","body":{"file":"/user/username/projects/myproject/src/main.ts","diagnostics":[{"start":{"line":1,"offset":21},"end":{"line":1,"offset":36},"text":"Cannot find module '@angular/core' or its corresponding type declarations.","code":2307,"category":"error"}]}} Before running immediate callbacks and checking length (1) @@ -531,9 +531,9 @@ FsWatchesRecursive:: /user/username/projects/myproject/node_modules: {} -Info 73 [16:01:52.000] event: +Info 73 [00:01:52.000] event: {"seq":0,"type":"event","event":"suggestionDiag","body":{"file":"/user/username/projects/myproject/src/main.ts","diagnostics":[]}} -Info 74 [16:01:53.000] event: +Info 74 [00:01:53.000] event: {"seq":0,"type":"event","event":"requestCompleted","body":{"request_seq":2}} Before running immediate callbacks and checking length (1) @@ -555,41 +555,41 @@ FsWatchesRecursive:: /user/username/projects/myproject/node_modules: {} -Info 75 [16:01:56.000] DirectoryWatcher:: Triggered with /user/username/projects/myproject/node_modules/.staging/@angular :: WatchInfo: /user/username/projects/myproject/node_modules 1 undefined Project: /user/username/projects/myproject/tsconfig.json WatchType: Failed Lookup Locations -Info 76 [16:01:57.000] Elapsed:: *ms DirectoryWatcher:: Triggered with /user/username/projects/myproject/node_modules/.staging/@angular :: WatchInfo: /user/username/projects/myproject/node_modules 1 undefined Project: /user/username/projects/myproject/tsconfig.json WatchType: Failed Lookup Locations -Info 77 [16:01:58.000] DirectoryWatcher:: Triggered with /user/username/projects/myproject/node_modules/.staging/@angular :: WatchInfo: /user/username/projects/myproject 1 undefined Config: /user/username/projects/myproject/tsconfig.json WatchType: Wild card directory -Info 78 [16:01:59.000] Project: /user/username/projects/myproject/tsconfig.json Detected ignored path: /user/username/projects/myproject/node_modules/.staging/@angular -Info 79 [16:02:00.000] Elapsed:: *ms DirectoryWatcher:: Triggered with /user/username/projects/myproject/node_modules/.staging/@angular :: WatchInfo: /user/username/projects/myproject 1 undefined Config: /user/username/projects/myproject/tsconfig.json WatchType: Wild card directory -Info 80 [16:02:03.000] DirectoryWatcher:: Triggered with /user/username/projects/myproject/node_modules/.staging/@angular/platform-browser-dynamic-5efaaa1a :: WatchInfo: /user/username/projects/myproject/node_modules 1 undefined Project: /user/username/projects/myproject/tsconfig.json WatchType: Failed Lookup Locations -Info 81 [16:02:04.000] Elapsed:: *ms DirectoryWatcher:: Triggered with /user/username/projects/myproject/node_modules/.staging/@angular/platform-browser-dynamic-5efaaa1a :: WatchInfo: /user/username/projects/myproject/node_modules 1 undefined Project: /user/username/projects/myproject/tsconfig.json WatchType: Failed Lookup Locations -Info 82 [16:02:05.000] DirectoryWatcher:: Triggered with /user/username/projects/myproject/node_modules/.staging/@angular/platform-browser-dynamic-5efaaa1a :: WatchInfo: /user/username/projects/myproject 1 undefined Config: /user/username/projects/myproject/tsconfig.json WatchType: Wild card directory -Info 83 [16:02:06.000] Project: /user/username/projects/myproject/tsconfig.json Detected ignored path: /user/username/projects/myproject/node_modules/.staging/@angular/platform-browser-dynamic-5efaaa1a -Info 84 [16:02:07.000] Elapsed:: *ms DirectoryWatcher:: Triggered with /user/username/projects/myproject/node_modules/.staging/@angular/platform-browser-dynamic-5efaaa1a :: WatchInfo: /user/username/projects/myproject 1 undefined Config: /user/username/projects/myproject/tsconfig.json WatchType: Wild card directory -Info 85 [16:02:12.000] DirectoryWatcher:: Triggered with /user/username/projects/myproject/node_modules/.staging/@angular/cli-c1e44b05 :: WatchInfo: /user/username/projects/myproject/node_modules 1 undefined Project: /user/username/projects/myproject/tsconfig.json WatchType: Failed Lookup Locations -Info 86 [16:02:13.000] Elapsed:: *ms DirectoryWatcher:: Triggered with /user/username/projects/myproject/node_modules/.staging/@angular/cli-c1e44b05 :: WatchInfo: /user/username/projects/myproject/node_modules 1 undefined Project: /user/username/projects/myproject/tsconfig.json WatchType: Failed Lookup Locations -Info 87 [16:02:14.000] DirectoryWatcher:: Triggered with /user/username/projects/myproject/node_modules/.staging/@angular/cli-c1e44b05 :: WatchInfo: /user/username/projects/myproject 1 undefined Config: /user/username/projects/myproject/tsconfig.json WatchType: Wild card directory -Info 88 [16:02:15.000] Project: /user/username/projects/myproject/tsconfig.json Detected ignored path: /user/username/projects/myproject/node_modules/.staging/@angular/cli-c1e44b05 -Info 89 [16:02:16.000] Elapsed:: *ms DirectoryWatcher:: Triggered with /user/username/projects/myproject/node_modules/.staging/@angular/cli-c1e44b05 :: WatchInfo: /user/username/projects/myproject 1 undefined Config: /user/username/projects/myproject/tsconfig.json WatchType: Wild card directory -Info 90 [16:02:18.000] DirectoryWatcher:: Triggered with /user/username/projects/myproject/node_modules/.staging/@angular/cli-c1e44b05/models :: WatchInfo: /user/username/projects/myproject/node_modules 1 undefined Project: /user/username/projects/myproject/tsconfig.json WatchType: Failed Lookup Locations -Info 91 [16:02:19.000] Elapsed:: *ms DirectoryWatcher:: Triggered with /user/username/projects/myproject/node_modules/.staging/@angular/cli-c1e44b05/models :: WatchInfo: /user/username/projects/myproject/node_modules 1 undefined Project: /user/username/projects/myproject/tsconfig.json WatchType: Failed Lookup Locations -Info 92 [16:02:20.000] DirectoryWatcher:: Triggered with /user/username/projects/myproject/node_modules/.staging/@angular/cli-c1e44b05/models :: WatchInfo: /user/username/projects/myproject 1 undefined Config: /user/username/projects/myproject/tsconfig.json WatchType: Wild card directory -Info 93 [16:02:21.000] Project: /user/username/projects/myproject/tsconfig.json Detected ignored path: /user/username/projects/myproject/node_modules/.staging/@angular/cli-c1e44b05/models -Info 94 [16:02:22.000] Elapsed:: *ms DirectoryWatcher:: Triggered with /user/username/projects/myproject/node_modules/.staging/@angular/cli-c1e44b05/models :: WatchInfo: /user/username/projects/myproject 1 undefined Config: /user/username/projects/myproject/tsconfig.json WatchType: Wild card directory -Info 95 [16:02:24.000] DirectoryWatcher:: Triggered with /user/username/projects/myproject/node_modules/.staging/@angular/cli-c1e44b05/models/analytics.d.ts :: WatchInfo: /user/username/projects/myproject/node_modules 1 undefined Project: /user/username/projects/myproject/tsconfig.json WatchType: Failed Lookup Locations -Info 96 [16:02:25.000] Elapsed:: *ms DirectoryWatcher:: Triggered with /user/username/projects/myproject/node_modules/.staging/@angular/cli-c1e44b05/models/analytics.d.ts :: WatchInfo: /user/username/projects/myproject/node_modules 1 undefined Project: /user/username/projects/myproject/tsconfig.json WatchType: Failed Lookup Locations -Info 97 [16:02:26.000] DirectoryWatcher:: Triggered with /user/username/projects/myproject/node_modules/.staging/@angular/cli-c1e44b05/models/analytics.d.ts :: WatchInfo: /user/username/projects/myproject 1 undefined Config: /user/username/projects/myproject/tsconfig.json WatchType: Wild card directory -Info 98 [16:02:27.000] Project: /user/username/projects/myproject/tsconfig.json Detected ignored path: /user/username/projects/myproject/node_modules/.staging/@angular/cli-c1e44b05/models/analytics.d.ts -Info 99 [16:02:28.000] Elapsed:: *ms DirectoryWatcher:: Triggered with /user/username/projects/myproject/node_modules/.staging/@angular/cli-c1e44b05/models/analytics.d.ts :: WatchInfo: /user/username/projects/myproject 1 undefined Config: /user/username/projects/myproject/tsconfig.json WatchType: Wild card directory -Info 100 [16:02:32.000] DirectoryWatcher:: Triggered with /user/username/projects/myproject/node_modules/.staging/@angular/core-0963aebf :: WatchInfo: /user/username/projects/myproject/node_modules 1 undefined Project: /user/username/projects/myproject/tsconfig.json WatchType: Failed Lookup Locations -Info 101 [16:02:33.000] Elapsed:: *ms DirectoryWatcher:: Triggered with /user/username/projects/myproject/node_modules/.staging/@angular/core-0963aebf :: WatchInfo: /user/username/projects/myproject/node_modules 1 undefined Project: /user/username/projects/myproject/tsconfig.json WatchType: Failed Lookup Locations -Info 102 [16:02:34.000] DirectoryWatcher:: Triggered with /user/username/projects/myproject/node_modules/.staging/@angular/core-0963aebf :: WatchInfo: /user/username/projects/myproject 1 undefined Config: /user/username/projects/myproject/tsconfig.json WatchType: Wild card directory -Info 103 [16:02:35.000] Project: /user/username/projects/myproject/tsconfig.json Detected ignored path: /user/username/projects/myproject/node_modules/.staging/@angular/core-0963aebf -Info 104 [16:02:36.000] Elapsed:: *ms DirectoryWatcher:: Triggered with /user/username/projects/myproject/node_modules/.staging/@angular/core-0963aebf :: WatchInfo: /user/username/projects/myproject 1 undefined Config: /user/username/projects/myproject/tsconfig.json WatchType: Wild card directory -Info 105 [16:02:38.000] DirectoryWatcher:: Triggered with /user/username/projects/myproject/node_modules/.staging/@angular/core-0963aebf/index.d.ts :: WatchInfo: /user/username/projects/myproject/node_modules 1 undefined Project: /user/username/projects/myproject/tsconfig.json WatchType: Failed Lookup Locations -Info 106 [16:02:39.000] Elapsed:: *ms DirectoryWatcher:: Triggered with /user/username/projects/myproject/node_modules/.staging/@angular/core-0963aebf/index.d.ts :: WatchInfo: /user/username/projects/myproject/node_modules 1 undefined Project: /user/username/projects/myproject/tsconfig.json WatchType: Failed Lookup Locations -Info 107 [16:02:40.000] DirectoryWatcher:: Triggered with /user/username/projects/myproject/node_modules/.staging/@angular/core-0963aebf/index.d.ts :: WatchInfo: /user/username/projects/myproject 1 undefined Config: /user/username/projects/myproject/tsconfig.json WatchType: Wild card directory -Info 108 [16:02:41.000] Project: /user/username/projects/myproject/tsconfig.json Detected ignored path: /user/username/projects/myproject/node_modules/.staging/@angular/core-0963aebf/index.d.ts -Info 109 [16:02:42.000] Elapsed:: *ms DirectoryWatcher:: Triggered with /user/username/projects/myproject/node_modules/.staging/@angular/core-0963aebf/index.d.ts :: WatchInfo: /user/username/projects/myproject 1 undefined Config: /user/username/projects/myproject/tsconfig.json WatchType: Wild card directory +Info 75 [00:01:56.000] DirectoryWatcher:: Triggered with /user/username/projects/myproject/node_modules/.staging/@angular :: WatchInfo: /user/username/projects/myproject/node_modules 1 undefined Project: /user/username/projects/myproject/tsconfig.json WatchType: Failed Lookup Locations +Info 76 [00:01:57.000] Elapsed:: *ms DirectoryWatcher:: Triggered with /user/username/projects/myproject/node_modules/.staging/@angular :: WatchInfo: /user/username/projects/myproject/node_modules 1 undefined Project: /user/username/projects/myproject/tsconfig.json WatchType: Failed Lookup Locations +Info 77 [00:01:58.000] DirectoryWatcher:: Triggered with /user/username/projects/myproject/node_modules/.staging/@angular :: WatchInfo: /user/username/projects/myproject 1 undefined Config: /user/username/projects/myproject/tsconfig.json WatchType: Wild card directory +Info 78 [00:01:59.000] Project: /user/username/projects/myproject/tsconfig.json Detected ignored path: /user/username/projects/myproject/node_modules/.staging/@angular +Info 79 [00:02:00.000] Elapsed:: *ms DirectoryWatcher:: Triggered with /user/username/projects/myproject/node_modules/.staging/@angular :: WatchInfo: /user/username/projects/myproject 1 undefined Config: /user/username/projects/myproject/tsconfig.json WatchType: Wild card directory +Info 80 [00:02:03.000] DirectoryWatcher:: Triggered with /user/username/projects/myproject/node_modules/.staging/@angular/platform-browser-dynamic-5efaaa1a :: WatchInfo: /user/username/projects/myproject/node_modules 1 undefined Project: /user/username/projects/myproject/tsconfig.json WatchType: Failed Lookup Locations +Info 81 [00:02:04.000] Elapsed:: *ms DirectoryWatcher:: Triggered with /user/username/projects/myproject/node_modules/.staging/@angular/platform-browser-dynamic-5efaaa1a :: WatchInfo: /user/username/projects/myproject/node_modules 1 undefined Project: /user/username/projects/myproject/tsconfig.json WatchType: Failed Lookup Locations +Info 82 [00:02:05.000] DirectoryWatcher:: Triggered with /user/username/projects/myproject/node_modules/.staging/@angular/platform-browser-dynamic-5efaaa1a :: WatchInfo: /user/username/projects/myproject 1 undefined Config: /user/username/projects/myproject/tsconfig.json WatchType: Wild card directory +Info 83 [00:02:06.000] Project: /user/username/projects/myproject/tsconfig.json Detected ignored path: /user/username/projects/myproject/node_modules/.staging/@angular/platform-browser-dynamic-5efaaa1a +Info 84 [00:02:07.000] Elapsed:: *ms DirectoryWatcher:: Triggered with /user/username/projects/myproject/node_modules/.staging/@angular/platform-browser-dynamic-5efaaa1a :: WatchInfo: /user/username/projects/myproject 1 undefined Config: /user/username/projects/myproject/tsconfig.json WatchType: Wild card directory +Info 85 [00:02:12.000] DirectoryWatcher:: Triggered with /user/username/projects/myproject/node_modules/.staging/@angular/cli-c1e44b05 :: WatchInfo: /user/username/projects/myproject/node_modules 1 undefined Project: /user/username/projects/myproject/tsconfig.json WatchType: Failed Lookup Locations +Info 86 [00:02:13.000] Elapsed:: *ms DirectoryWatcher:: Triggered with /user/username/projects/myproject/node_modules/.staging/@angular/cli-c1e44b05 :: WatchInfo: /user/username/projects/myproject/node_modules 1 undefined Project: /user/username/projects/myproject/tsconfig.json WatchType: Failed Lookup Locations +Info 87 [00:02:14.000] DirectoryWatcher:: Triggered with /user/username/projects/myproject/node_modules/.staging/@angular/cli-c1e44b05 :: WatchInfo: /user/username/projects/myproject 1 undefined Config: /user/username/projects/myproject/tsconfig.json WatchType: Wild card directory +Info 88 [00:02:15.000] Project: /user/username/projects/myproject/tsconfig.json Detected ignored path: /user/username/projects/myproject/node_modules/.staging/@angular/cli-c1e44b05 +Info 89 [00:02:16.000] Elapsed:: *ms DirectoryWatcher:: Triggered with /user/username/projects/myproject/node_modules/.staging/@angular/cli-c1e44b05 :: WatchInfo: /user/username/projects/myproject 1 undefined Config: /user/username/projects/myproject/tsconfig.json WatchType: Wild card directory +Info 90 [00:02:18.000] DirectoryWatcher:: Triggered with /user/username/projects/myproject/node_modules/.staging/@angular/cli-c1e44b05/models :: WatchInfo: /user/username/projects/myproject/node_modules 1 undefined Project: /user/username/projects/myproject/tsconfig.json WatchType: Failed Lookup Locations +Info 91 [00:02:19.000] Elapsed:: *ms DirectoryWatcher:: Triggered with /user/username/projects/myproject/node_modules/.staging/@angular/cli-c1e44b05/models :: WatchInfo: /user/username/projects/myproject/node_modules 1 undefined Project: /user/username/projects/myproject/tsconfig.json WatchType: Failed Lookup Locations +Info 92 [00:02:20.000] DirectoryWatcher:: Triggered with /user/username/projects/myproject/node_modules/.staging/@angular/cli-c1e44b05/models :: WatchInfo: /user/username/projects/myproject 1 undefined Config: /user/username/projects/myproject/tsconfig.json WatchType: Wild card directory +Info 93 [00:02:21.000] Project: /user/username/projects/myproject/tsconfig.json Detected ignored path: /user/username/projects/myproject/node_modules/.staging/@angular/cli-c1e44b05/models +Info 94 [00:02:22.000] Elapsed:: *ms DirectoryWatcher:: Triggered with /user/username/projects/myproject/node_modules/.staging/@angular/cli-c1e44b05/models :: WatchInfo: /user/username/projects/myproject 1 undefined Config: /user/username/projects/myproject/tsconfig.json WatchType: Wild card directory +Info 95 [00:02:24.000] DirectoryWatcher:: Triggered with /user/username/projects/myproject/node_modules/.staging/@angular/cli-c1e44b05/models/analytics.d.ts :: WatchInfo: /user/username/projects/myproject/node_modules 1 undefined Project: /user/username/projects/myproject/tsconfig.json WatchType: Failed Lookup Locations +Info 96 [00:02:25.000] Elapsed:: *ms DirectoryWatcher:: Triggered with /user/username/projects/myproject/node_modules/.staging/@angular/cli-c1e44b05/models/analytics.d.ts :: WatchInfo: /user/username/projects/myproject/node_modules 1 undefined Project: /user/username/projects/myproject/tsconfig.json WatchType: Failed Lookup Locations +Info 97 [00:02:26.000] DirectoryWatcher:: Triggered with /user/username/projects/myproject/node_modules/.staging/@angular/cli-c1e44b05/models/analytics.d.ts :: WatchInfo: /user/username/projects/myproject 1 undefined Config: /user/username/projects/myproject/tsconfig.json WatchType: Wild card directory +Info 98 [00:02:27.000] Project: /user/username/projects/myproject/tsconfig.json Detected ignored path: /user/username/projects/myproject/node_modules/.staging/@angular/cli-c1e44b05/models/analytics.d.ts +Info 99 [00:02:28.000] Elapsed:: *ms DirectoryWatcher:: Triggered with /user/username/projects/myproject/node_modules/.staging/@angular/cli-c1e44b05/models/analytics.d.ts :: WatchInfo: /user/username/projects/myproject 1 undefined Config: /user/username/projects/myproject/tsconfig.json WatchType: Wild card directory +Info 100 [00:02:32.000] DirectoryWatcher:: Triggered with /user/username/projects/myproject/node_modules/.staging/@angular/core-0963aebf :: WatchInfo: /user/username/projects/myproject/node_modules 1 undefined Project: /user/username/projects/myproject/tsconfig.json WatchType: Failed Lookup Locations +Info 101 [00:02:33.000] Elapsed:: *ms DirectoryWatcher:: Triggered with /user/username/projects/myproject/node_modules/.staging/@angular/core-0963aebf :: WatchInfo: /user/username/projects/myproject/node_modules 1 undefined Project: /user/username/projects/myproject/tsconfig.json WatchType: Failed Lookup Locations +Info 102 [00:02:34.000] DirectoryWatcher:: Triggered with /user/username/projects/myproject/node_modules/.staging/@angular/core-0963aebf :: WatchInfo: /user/username/projects/myproject 1 undefined Config: /user/username/projects/myproject/tsconfig.json WatchType: Wild card directory +Info 103 [00:02:35.000] Project: /user/username/projects/myproject/tsconfig.json Detected ignored path: /user/username/projects/myproject/node_modules/.staging/@angular/core-0963aebf +Info 104 [00:02:36.000] Elapsed:: *ms DirectoryWatcher:: Triggered with /user/username/projects/myproject/node_modules/.staging/@angular/core-0963aebf :: WatchInfo: /user/username/projects/myproject 1 undefined Config: /user/username/projects/myproject/tsconfig.json WatchType: Wild card directory +Info 105 [00:02:38.000] DirectoryWatcher:: Triggered with /user/username/projects/myproject/node_modules/.staging/@angular/core-0963aebf/index.d.ts :: WatchInfo: /user/username/projects/myproject/node_modules 1 undefined Project: /user/username/projects/myproject/tsconfig.json WatchType: Failed Lookup Locations +Info 106 [00:02:39.000] Elapsed:: *ms DirectoryWatcher:: Triggered with /user/username/projects/myproject/node_modules/.staging/@angular/core-0963aebf/index.d.ts :: WatchInfo: /user/username/projects/myproject/node_modules 1 undefined Project: /user/username/projects/myproject/tsconfig.json WatchType: Failed Lookup Locations +Info 107 [00:02:40.000] DirectoryWatcher:: Triggered with /user/username/projects/myproject/node_modules/.staging/@angular/core-0963aebf/index.d.ts :: WatchInfo: /user/username/projects/myproject 1 undefined Config: /user/username/projects/myproject/tsconfig.json WatchType: Wild card directory +Info 108 [00:02:41.000] Project: /user/username/projects/myproject/tsconfig.json Detected ignored path: /user/username/projects/myproject/node_modules/.staging/@angular/core-0963aebf/index.d.ts +Info 109 [00:02:42.000] Elapsed:: *ms DirectoryWatcher:: Triggered with /user/username/projects/myproject/node_modules/.staging/@angular/core-0963aebf/index.d.ts :: WatchInfo: /user/username/projects/myproject 1 undefined Config: /user/username/projects/myproject/tsconfig.json WatchType: Wild card directory Checking timeout queue length: 2 //// [/user/username/projects/myproject/node_modules/.staging/@angular/cli-c1e44b05/models/analytics.d.ts] export const x = 10; @@ -616,7 +616,7 @@ FsWatchesRecursive:: /user/username/projects/myproject/node_modules: {} -Info 110 [16:02:43.000] request: +Info 110 [00:02:43.000] request: { "command": "geterr", "arguments": { @@ -668,7 +668,7 @@ FsWatchesRecursive:: /user/username/projects/myproject/node_modules: {} -Info 111 [16:02:44.000] response: +Info 111 [00:02:44.000] response: { "responseRequired": false } @@ -712,7 +712,7 @@ FsWatchesRecursive:: /user/username/projects/myproject/node_modules: {} -Info 112 [16:02:45.000] event: +Info 112 [00:02:45.000] event: {"seq":0,"type":"event","event":"syntaxDiag","body":{"file":"/user/username/projects/myproject/src/main.ts","diagnostics":[]}} After running timeout callback11 @@ -754,7 +754,7 @@ FsWatchesRecursive:: /user/username/projects/myproject/node_modules: {} -Info 113 [16:02:46.000] event: +Info 113 [00:02:46.000] event: {"seq":0,"type":"event","event":"semanticDiag","body":{"file":"/user/username/projects/myproject/src/main.ts","diagnostics":[{"start":{"line":1,"offset":21},"end":{"line":1,"offset":36},"text":"Cannot find module '@angular/core' or its corresponding type declarations.","code":2307,"category":"error"}]}} Before running immediate callbacks and checking length (1) @@ -796,9 +796,9 @@ FsWatchesRecursive:: /user/username/projects/myproject/node_modules: {} -Info 114 [16:02:47.000] event: +Info 114 [00:02:47.000] event: {"seq":0,"type":"event","event":"suggestionDiag","body":{"file":"/user/username/projects/myproject/src/main.ts","diagnostics":[]}} -Info 115 [16:02:48.000] event: +Info 115 [00:02:48.000] event: {"seq":0,"type":"event","event":"requestCompleted","body":{"request_seq":3}} Before running immediate callbacks and checking length (1) @@ -843,7 +843,7 @@ FsWatchesRecursive:: /user/username/projects/myproject/node_modules: {} -Info 116 [16:02:55.000] request: +Info 116 [00:02:55.000] request: { "command": "geterr", "arguments": { @@ -895,7 +895,7 @@ FsWatchesRecursive:: /user/username/projects/myproject/node_modules: {} -Info 117 [16:02:56.000] response: +Info 117 [00:02:56.000] response: { "responseRequired": false } @@ -939,7 +939,7 @@ FsWatchesRecursive:: /user/username/projects/myproject/node_modules: {} -Info 118 [16:02:57.000] event: +Info 118 [00:02:57.000] event: {"seq":0,"type":"event","event":"syntaxDiag","body":{"file":"/user/username/projects/myproject/src/main.ts","diagnostics":[]}} After running timeout callback12 @@ -981,7 +981,7 @@ FsWatchesRecursive:: /user/username/projects/myproject/node_modules: {} -Info 119 [16:02:58.000] event: +Info 119 [00:02:58.000] event: {"seq":0,"type":"event","event":"semanticDiag","body":{"file":"/user/username/projects/myproject/src/main.ts","diagnostics":[{"start":{"line":1,"offset":21},"end":{"line":1,"offset":36},"text":"Cannot find module '@angular/core' or its corresponding type declarations.","code":2307,"category":"error"}]}} Before running immediate callbacks and checking length (1) @@ -1023,9 +1023,9 @@ FsWatchesRecursive:: /user/username/projects/myproject/node_modules: {} -Info 120 [16:02:59.000] event: +Info 120 [00:02:59.000] event: {"seq":0,"type":"event","event":"suggestionDiag","body":{"file":"/user/username/projects/myproject/src/main.ts","diagnostics":[]}} -Info 121 [16:03:00.000] event: +Info 121 [00:03:00.000] event: {"seq":0,"type":"event","event":"requestCompleted","body":{"request_seq":4}} Before running immediate callbacks and checking length (1) @@ -1047,63 +1047,63 @@ FsWatchesRecursive:: /user/username/projects/myproject/node_modules: {} -Info 122 [16:03:02.000] DirectoryWatcher:: Triggered with /user/username/projects/myproject/node_modules/.staging/@angular/cli-c1e44b05/models/analytics.d.ts :: WatchInfo: /user/username/projects/myproject/node_modules 1 undefined Project: /user/username/projects/myproject/tsconfig.json WatchType: Failed Lookup Locations -Info 123 [16:03:03.000] Elapsed:: *ms DirectoryWatcher:: Triggered with /user/username/projects/myproject/node_modules/.staging/@angular/cli-c1e44b05/models/analytics.d.ts :: WatchInfo: /user/username/projects/myproject/node_modules 1 undefined Project: /user/username/projects/myproject/tsconfig.json WatchType: Failed Lookup Locations -Info 124 [16:03:04.000] DirectoryWatcher:: Triggered with /user/username/projects/myproject/node_modules/.staging/@angular/cli-c1e44b05/models/analytics.d.ts :: WatchInfo: /user/username/projects/myproject 1 undefined Config: /user/username/projects/myproject/tsconfig.json WatchType: Wild card directory -Info 125 [16:03:05.000] Project: /user/username/projects/myproject/tsconfig.json Detected ignored path: /user/username/projects/myproject/node_modules/.staging/@angular/cli-c1e44b05/models/analytics.d.ts -Info 126 [16:03:06.000] Elapsed:: *ms DirectoryWatcher:: Triggered with /user/username/projects/myproject/node_modules/.staging/@angular/cli-c1e44b05/models/analytics.d.ts :: WatchInfo: /user/username/projects/myproject 1 undefined Config: /user/username/projects/myproject/tsconfig.json WatchType: Wild card directory -Info 127 [16:03:08.000] DirectoryWatcher:: Triggered with /user/username/projects/myproject/node_modules/.staging/@angular/cli-c1e44b05/models :: WatchInfo: /user/username/projects/myproject/node_modules 1 undefined Project: /user/username/projects/myproject/tsconfig.json WatchType: Failed Lookup Locations -Info 128 [16:03:09.000] Elapsed:: *ms DirectoryWatcher:: Triggered with /user/username/projects/myproject/node_modules/.staging/@angular/cli-c1e44b05/models :: WatchInfo: /user/username/projects/myproject/node_modules 1 undefined Project: /user/username/projects/myproject/tsconfig.json WatchType: Failed Lookup Locations -Info 129 [16:03:10.000] DirectoryWatcher:: Triggered with /user/username/projects/myproject/node_modules/.staging/@angular/cli-c1e44b05/models :: WatchInfo: /user/username/projects/myproject 1 undefined Config: /user/username/projects/myproject/tsconfig.json WatchType: Wild card directory -Info 130 [16:03:11.000] Project: /user/username/projects/myproject/tsconfig.json Detected ignored path: /user/username/projects/myproject/node_modules/.staging/@angular/cli-c1e44b05/models -Info 131 [16:03:12.000] Elapsed:: *ms DirectoryWatcher:: Triggered with /user/username/projects/myproject/node_modules/.staging/@angular/cli-c1e44b05/models :: WatchInfo: /user/username/projects/myproject 1 undefined Config: /user/username/projects/myproject/tsconfig.json WatchType: Wild card directory -Info 132 [16:03:14.000] DirectoryWatcher:: Triggered with /user/username/projects/myproject/node_modules/.staging/@angular/cli-c1e44b05 :: WatchInfo: /user/username/projects/myproject/node_modules 1 undefined Project: /user/username/projects/myproject/tsconfig.json WatchType: Failed Lookup Locations -Info 133 [16:03:15.000] Elapsed:: *ms DirectoryWatcher:: Triggered with /user/username/projects/myproject/node_modules/.staging/@angular/cli-c1e44b05 :: WatchInfo: /user/username/projects/myproject/node_modules 1 undefined Project: /user/username/projects/myproject/tsconfig.json WatchType: Failed Lookup Locations -Info 134 [16:03:16.000] DirectoryWatcher:: Triggered with /user/username/projects/myproject/node_modules/.staging/@angular/cli-c1e44b05 :: WatchInfo: /user/username/projects/myproject 1 undefined Config: /user/username/projects/myproject/tsconfig.json WatchType: Wild card directory -Info 135 [16:03:17.000] Project: /user/username/projects/myproject/tsconfig.json Detected ignored path: /user/username/projects/myproject/node_modules/.staging/@angular/cli-c1e44b05 -Info 136 [16:03:18.000] Elapsed:: *ms DirectoryWatcher:: Triggered with /user/username/projects/myproject/node_modules/.staging/@angular/cli-c1e44b05 :: WatchInfo: /user/username/projects/myproject 1 undefined Config: /user/username/projects/myproject/tsconfig.json WatchType: Wild card directory -Info 137 [16:03:20.000] DirectoryWatcher:: Triggered with /user/username/projects/myproject/node_modules/.staging/@angular/core-0963aebf/index.d.ts :: WatchInfo: /user/username/projects/myproject/node_modules 1 undefined Project: /user/username/projects/myproject/tsconfig.json WatchType: Failed Lookup Locations -Info 138 [16:03:21.000] Elapsed:: *ms DirectoryWatcher:: Triggered with /user/username/projects/myproject/node_modules/.staging/@angular/core-0963aebf/index.d.ts :: WatchInfo: /user/username/projects/myproject/node_modules 1 undefined Project: /user/username/projects/myproject/tsconfig.json WatchType: Failed Lookup Locations -Info 139 [16:03:22.000] DirectoryWatcher:: Triggered with /user/username/projects/myproject/node_modules/.staging/@angular/core-0963aebf/index.d.ts :: WatchInfo: /user/username/projects/myproject 1 undefined Config: /user/username/projects/myproject/tsconfig.json WatchType: Wild card directory -Info 140 [16:03:23.000] Project: /user/username/projects/myproject/tsconfig.json Detected ignored path: /user/username/projects/myproject/node_modules/.staging/@angular/core-0963aebf/index.d.ts -Info 141 [16:03:24.000] Elapsed:: *ms DirectoryWatcher:: Triggered with /user/username/projects/myproject/node_modules/.staging/@angular/core-0963aebf/index.d.ts :: WatchInfo: /user/username/projects/myproject 1 undefined Config: /user/username/projects/myproject/tsconfig.json WatchType: Wild card directory -Info 142 [16:03:26.000] DirectoryWatcher:: Triggered with /user/username/projects/myproject/node_modules/.staging/@angular/core-0963aebf :: WatchInfo: /user/username/projects/myproject/node_modules 1 undefined Project: /user/username/projects/myproject/tsconfig.json WatchType: Failed Lookup Locations -Info 143 [16:03:27.000] Elapsed:: *ms DirectoryWatcher:: Triggered with /user/username/projects/myproject/node_modules/.staging/@angular/core-0963aebf :: WatchInfo: /user/username/projects/myproject/node_modules 1 undefined Project: /user/username/projects/myproject/tsconfig.json WatchType: Failed Lookup Locations -Info 144 [16:03:28.000] DirectoryWatcher:: Triggered with /user/username/projects/myproject/node_modules/.staging/@angular/core-0963aebf :: WatchInfo: /user/username/projects/myproject 1 undefined Config: /user/username/projects/myproject/tsconfig.json WatchType: Wild card directory -Info 145 [16:03:29.000] Project: /user/username/projects/myproject/tsconfig.json Detected ignored path: /user/username/projects/myproject/node_modules/.staging/@angular/core-0963aebf -Info 146 [16:03:30.000] Elapsed:: *ms DirectoryWatcher:: Triggered with /user/username/projects/myproject/node_modules/.staging/@angular/core-0963aebf :: WatchInfo: /user/username/projects/myproject 1 undefined Config: /user/username/projects/myproject/tsconfig.json WatchType: Wild card directory -Info 147 [16:03:32.000] DirectoryWatcher:: Triggered with /user/username/projects/myproject/node_modules/.staging/@angular/platform-browser-dynamic-5efaaa1a :: WatchInfo: /user/username/projects/myproject/node_modules 1 undefined Project: /user/username/projects/myproject/tsconfig.json WatchType: Failed Lookup Locations -Info 148 [16:03:33.000] Elapsed:: *ms DirectoryWatcher:: Triggered with /user/username/projects/myproject/node_modules/.staging/@angular/platform-browser-dynamic-5efaaa1a :: WatchInfo: /user/username/projects/myproject/node_modules 1 undefined Project: /user/username/projects/myproject/tsconfig.json WatchType: Failed Lookup Locations -Info 149 [16:03:34.000] DirectoryWatcher:: Triggered with /user/username/projects/myproject/node_modules/.staging/@angular/platform-browser-dynamic-5efaaa1a :: WatchInfo: /user/username/projects/myproject 1 undefined Config: /user/username/projects/myproject/tsconfig.json WatchType: Wild card directory -Info 150 [16:03:35.000] Project: /user/username/projects/myproject/tsconfig.json Detected ignored path: /user/username/projects/myproject/node_modules/.staging/@angular/platform-browser-dynamic-5efaaa1a -Info 151 [16:03:36.000] Elapsed:: *ms DirectoryWatcher:: Triggered with /user/username/projects/myproject/node_modules/.staging/@angular/platform-browser-dynamic-5efaaa1a :: WatchInfo: /user/username/projects/myproject 1 undefined Config: /user/username/projects/myproject/tsconfig.json WatchType: Wild card directory -Info 152 [16:03:38.000] DirectoryWatcher:: Triggered with /user/username/projects/myproject/node_modules/.staging/@angular :: WatchInfo: /user/username/projects/myproject/node_modules 1 undefined Project: /user/username/projects/myproject/tsconfig.json WatchType: Failed Lookup Locations -Info 153 [16:03:39.000] Elapsed:: *ms DirectoryWatcher:: Triggered with /user/username/projects/myproject/node_modules/.staging/@angular :: WatchInfo: /user/username/projects/myproject/node_modules 1 undefined Project: /user/username/projects/myproject/tsconfig.json WatchType: Failed Lookup Locations -Info 154 [16:03:40.000] DirectoryWatcher:: Triggered with /user/username/projects/myproject/node_modules/.staging/@angular :: WatchInfo: /user/username/projects/myproject 1 undefined Config: /user/username/projects/myproject/tsconfig.json WatchType: Wild card directory -Info 155 [16:03:41.000] Project: /user/username/projects/myproject/tsconfig.json Detected ignored path: /user/username/projects/myproject/node_modules/.staging/@angular -Info 156 [16:03:42.000] Elapsed:: *ms DirectoryWatcher:: Triggered with /user/username/projects/myproject/node_modules/.staging/@angular :: WatchInfo: /user/username/projects/myproject 1 undefined Config: /user/username/projects/myproject/tsconfig.json WatchType: Wild card directory -Info 157 [16:03:44.000] DirectoryWatcher:: Triggered with /user/username/projects/myproject/node_modules/.staging/@babel/helper-plugin-utils-a06c629f :: WatchInfo: /user/username/projects/myproject/node_modules 1 undefined Project: /user/username/projects/myproject/tsconfig.json WatchType: Failed Lookup Locations -Info 158 [16:03:45.000] Elapsed:: *ms DirectoryWatcher:: Triggered with /user/username/projects/myproject/node_modules/.staging/@babel/helper-plugin-utils-a06c629f :: WatchInfo: /user/username/projects/myproject/node_modules 1 undefined Project: /user/username/projects/myproject/tsconfig.json WatchType: Failed Lookup Locations -Info 159 [16:03:46.000] DirectoryWatcher:: Triggered with /user/username/projects/myproject/node_modules/.staging/@babel/helper-plugin-utils-a06c629f :: WatchInfo: /user/username/projects/myproject 1 undefined Config: /user/username/projects/myproject/tsconfig.json WatchType: Wild card directory -Info 160 [16:03:47.000] Project: /user/username/projects/myproject/tsconfig.json Detected ignored path: /user/username/projects/myproject/node_modules/.staging/@babel/helper-plugin-utils-a06c629f -Info 161 [16:03:48.000] Elapsed:: *ms DirectoryWatcher:: Triggered with /user/username/projects/myproject/node_modules/.staging/@babel/helper-plugin-utils-a06c629f :: WatchInfo: /user/username/projects/myproject 1 undefined Config: /user/username/projects/myproject/tsconfig.json WatchType: Wild card directory -Info 162 [16:03:50.000] DirectoryWatcher:: Triggered with /user/username/projects/myproject/node_modules/.staging/@babel :: WatchInfo: /user/username/projects/myproject/node_modules 1 undefined Project: /user/username/projects/myproject/tsconfig.json WatchType: Failed Lookup Locations -Info 163 [16:03:51.000] Elapsed:: *ms DirectoryWatcher:: Triggered with /user/username/projects/myproject/node_modules/.staging/@babel :: WatchInfo: /user/username/projects/myproject/node_modules 1 undefined Project: /user/username/projects/myproject/tsconfig.json WatchType: Failed Lookup Locations -Info 164 [16:03:52.000] DirectoryWatcher:: Triggered with /user/username/projects/myproject/node_modules/.staging/@babel :: WatchInfo: /user/username/projects/myproject 1 undefined Config: /user/username/projects/myproject/tsconfig.json WatchType: Wild card directory -Info 165 [16:03:53.000] Project: /user/username/projects/myproject/tsconfig.json Detected ignored path: /user/username/projects/myproject/node_modules/.staging/@babel -Info 166 [16:03:54.000] Elapsed:: *ms DirectoryWatcher:: Triggered with /user/username/projects/myproject/node_modules/.staging/@babel :: WatchInfo: /user/username/projects/myproject 1 undefined Config: /user/username/projects/myproject/tsconfig.json WatchType: Wild card directory -Info 167 [16:03:56.000] DirectoryWatcher:: Triggered with /user/username/projects/myproject/node_modules/.staging/core-js-db53158d :: WatchInfo: /user/username/projects/myproject/node_modules 1 undefined Project: /user/username/projects/myproject/tsconfig.json WatchType: Failed Lookup Locations -Info 168 [16:03:57.000] Elapsed:: *ms DirectoryWatcher:: Triggered with /user/username/projects/myproject/node_modules/.staging/core-js-db53158d :: WatchInfo: /user/username/projects/myproject/node_modules 1 undefined Project: /user/username/projects/myproject/tsconfig.json WatchType: Failed Lookup Locations -Info 169 [16:03:58.000] DirectoryWatcher:: Triggered with /user/username/projects/myproject/node_modules/.staging/core-js-db53158d :: WatchInfo: /user/username/projects/myproject 1 undefined Config: /user/username/projects/myproject/tsconfig.json WatchType: Wild card directory -Info 170 [16:03:59.000] Project: /user/username/projects/myproject/tsconfig.json Detected ignored path: /user/username/projects/myproject/node_modules/.staging/core-js-db53158d -Info 171 [16:04:00.000] Elapsed:: *ms DirectoryWatcher:: Triggered with /user/username/projects/myproject/node_modules/.staging/core-js-db53158d :: WatchInfo: /user/username/projects/myproject 1 undefined Config: /user/username/projects/myproject/tsconfig.json WatchType: Wild card directory -Info 172 [16:04:02.000] DirectoryWatcher:: Triggered with /user/username/projects/myproject/node_modules/.staging :: WatchInfo: /user/username/projects/myproject/node_modules 1 undefined Project: /user/username/projects/myproject/tsconfig.json WatchType: Failed Lookup Locations -Info 173 [16:04:03.000] Scheduled: /user/username/projects/myproject/tsconfig.jsonFailedLookupInvalidation -Info 174 [16:04:04.000] Elapsed:: *ms DirectoryWatcher:: Triggered with /user/username/projects/myproject/node_modules/.staging :: WatchInfo: /user/username/projects/myproject/node_modules 1 undefined Project: /user/username/projects/myproject/tsconfig.json WatchType: Failed Lookup Locations -Info 175 [16:04:05.000] DirectoryWatcher:: Triggered with /user/username/projects/myproject/node_modules/.staging :: WatchInfo: /user/username/projects/myproject 1 undefined Config: /user/username/projects/myproject/tsconfig.json WatchType: Wild card directory -Info 176 [16:04:06.000] Scheduled: /user/username/projects/myproject/tsconfig.json, Cancelled earlier one -Info 177 [16:04:07.000] Scheduled: *ensureProjectForOpenFiles*, Cancelled earlier one -Info 178 [16:04:08.000] Elapsed:: *ms DirectoryWatcher:: Triggered with /user/username/projects/myproject/node_modules/.staging :: WatchInfo: /user/username/projects/myproject 1 undefined Config: /user/username/projects/myproject/tsconfig.json WatchType: Wild card directory +Info 122 [00:03:02.000] DirectoryWatcher:: Triggered with /user/username/projects/myproject/node_modules/.staging/@angular/cli-c1e44b05/models/analytics.d.ts :: WatchInfo: /user/username/projects/myproject/node_modules 1 undefined Project: /user/username/projects/myproject/tsconfig.json WatchType: Failed Lookup Locations +Info 123 [00:03:03.000] Elapsed:: *ms DirectoryWatcher:: Triggered with /user/username/projects/myproject/node_modules/.staging/@angular/cli-c1e44b05/models/analytics.d.ts :: WatchInfo: /user/username/projects/myproject/node_modules 1 undefined Project: /user/username/projects/myproject/tsconfig.json WatchType: Failed Lookup Locations +Info 124 [00:03:04.000] DirectoryWatcher:: Triggered with /user/username/projects/myproject/node_modules/.staging/@angular/cli-c1e44b05/models/analytics.d.ts :: WatchInfo: /user/username/projects/myproject 1 undefined Config: /user/username/projects/myproject/tsconfig.json WatchType: Wild card directory +Info 125 [00:03:05.000] Project: /user/username/projects/myproject/tsconfig.json Detected ignored path: /user/username/projects/myproject/node_modules/.staging/@angular/cli-c1e44b05/models/analytics.d.ts +Info 126 [00:03:06.000] Elapsed:: *ms DirectoryWatcher:: Triggered with /user/username/projects/myproject/node_modules/.staging/@angular/cli-c1e44b05/models/analytics.d.ts :: WatchInfo: /user/username/projects/myproject 1 undefined Config: /user/username/projects/myproject/tsconfig.json WatchType: Wild card directory +Info 127 [00:03:08.000] DirectoryWatcher:: Triggered with /user/username/projects/myproject/node_modules/.staging/@angular/cli-c1e44b05/models :: WatchInfo: /user/username/projects/myproject/node_modules 1 undefined Project: /user/username/projects/myproject/tsconfig.json WatchType: Failed Lookup Locations +Info 128 [00:03:09.000] Elapsed:: *ms DirectoryWatcher:: Triggered with /user/username/projects/myproject/node_modules/.staging/@angular/cli-c1e44b05/models :: WatchInfo: /user/username/projects/myproject/node_modules 1 undefined Project: /user/username/projects/myproject/tsconfig.json WatchType: Failed Lookup Locations +Info 129 [00:03:10.000] DirectoryWatcher:: Triggered with /user/username/projects/myproject/node_modules/.staging/@angular/cli-c1e44b05/models :: WatchInfo: /user/username/projects/myproject 1 undefined Config: /user/username/projects/myproject/tsconfig.json WatchType: Wild card directory +Info 130 [00:03:11.000] Project: /user/username/projects/myproject/tsconfig.json Detected ignored path: /user/username/projects/myproject/node_modules/.staging/@angular/cli-c1e44b05/models +Info 131 [00:03:12.000] Elapsed:: *ms DirectoryWatcher:: Triggered with /user/username/projects/myproject/node_modules/.staging/@angular/cli-c1e44b05/models :: WatchInfo: /user/username/projects/myproject 1 undefined Config: /user/username/projects/myproject/tsconfig.json WatchType: Wild card directory +Info 132 [00:03:14.000] DirectoryWatcher:: Triggered with /user/username/projects/myproject/node_modules/.staging/@angular/cli-c1e44b05 :: WatchInfo: /user/username/projects/myproject/node_modules 1 undefined Project: /user/username/projects/myproject/tsconfig.json WatchType: Failed Lookup Locations +Info 133 [00:03:15.000] Elapsed:: *ms DirectoryWatcher:: Triggered with /user/username/projects/myproject/node_modules/.staging/@angular/cli-c1e44b05 :: WatchInfo: /user/username/projects/myproject/node_modules 1 undefined Project: /user/username/projects/myproject/tsconfig.json WatchType: Failed Lookup Locations +Info 134 [00:03:16.000] DirectoryWatcher:: Triggered with /user/username/projects/myproject/node_modules/.staging/@angular/cli-c1e44b05 :: WatchInfo: /user/username/projects/myproject 1 undefined Config: /user/username/projects/myproject/tsconfig.json WatchType: Wild card directory +Info 135 [00:03:17.000] Project: /user/username/projects/myproject/tsconfig.json Detected ignored path: /user/username/projects/myproject/node_modules/.staging/@angular/cli-c1e44b05 +Info 136 [00:03:18.000] Elapsed:: *ms DirectoryWatcher:: Triggered with /user/username/projects/myproject/node_modules/.staging/@angular/cli-c1e44b05 :: WatchInfo: /user/username/projects/myproject 1 undefined Config: /user/username/projects/myproject/tsconfig.json WatchType: Wild card directory +Info 137 [00:03:20.000] DirectoryWatcher:: Triggered with /user/username/projects/myproject/node_modules/.staging/@angular/core-0963aebf/index.d.ts :: WatchInfo: /user/username/projects/myproject/node_modules 1 undefined Project: /user/username/projects/myproject/tsconfig.json WatchType: Failed Lookup Locations +Info 138 [00:03:21.000] Elapsed:: *ms DirectoryWatcher:: Triggered with /user/username/projects/myproject/node_modules/.staging/@angular/core-0963aebf/index.d.ts :: WatchInfo: /user/username/projects/myproject/node_modules 1 undefined Project: /user/username/projects/myproject/tsconfig.json WatchType: Failed Lookup Locations +Info 139 [00:03:22.000] DirectoryWatcher:: Triggered with /user/username/projects/myproject/node_modules/.staging/@angular/core-0963aebf/index.d.ts :: WatchInfo: /user/username/projects/myproject 1 undefined Config: /user/username/projects/myproject/tsconfig.json WatchType: Wild card directory +Info 140 [00:03:23.000] Project: /user/username/projects/myproject/tsconfig.json Detected ignored path: /user/username/projects/myproject/node_modules/.staging/@angular/core-0963aebf/index.d.ts +Info 141 [00:03:24.000] Elapsed:: *ms DirectoryWatcher:: Triggered with /user/username/projects/myproject/node_modules/.staging/@angular/core-0963aebf/index.d.ts :: WatchInfo: /user/username/projects/myproject 1 undefined Config: /user/username/projects/myproject/tsconfig.json WatchType: Wild card directory +Info 142 [00:03:26.000] DirectoryWatcher:: Triggered with /user/username/projects/myproject/node_modules/.staging/@angular/core-0963aebf :: WatchInfo: /user/username/projects/myproject/node_modules 1 undefined Project: /user/username/projects/myproject/tsconfig.json WatchType: Failed Lookup Locations +Info 143 [00:03:27.000] Elapsed:: *ms DirectoryWatcher:: Triggered with /user/username/projects/myproject/node_modules/.staging/@angular/core-0963aebf :: WatchInfo: /user/username/projects/myproject/node_modules 1 undefined Project: /user/username/projects/myproject/tsconfig.json WatchType: Failed Lookup Locations +Info 144 [00:03:28.000] DirectoryWatcher:: Triggered with /user/username/projects/myproject/node_modules/.staging/@angular/core-0963aebf :: WatchInfo: /user/username/projects/myproject 1 undefined Config: /user/username/projects/myproject/tsconfig.json WatchType: Wild card directory +Info 145 [00:03:29.000] Project: /user/username/projects/myproject/tsconfig.json Detected ignored path: /user/username/projects/myproject/node_modules/.staging/@angular/core-0963aebf +Info 146 [00:03:30.000] Elapsed:: *ms DirectoryWatcher:: Triggered with /user/username/projects/myproject/node_modules/.staging/@angular/core-0963aebf :: WatchInfo: /user/username/projects/myproject 1 undefined Config: /user/username/projects/myproject/tsconfig.json WatchType: Wild card directory +Info 147 [00:03:32.000] DirectoryWatcher:: Triggered with /user/username/projects/myproject/node_modules/.staging/@angular/platform-browser-dynamic-5efaaa1a :: WatchInfo: /user/username/projects/myproject/node_modules 1 undefined Project: /user/username/projects/myproject/tsconfig.json WatchType: Failed Lookup Locations +Info 148 [00:03:33.000] Elapsed:: *ms DirectoryWatcher:: Triggered with /user/username/projects/myproject/node_modules/.staging/@angular/platform-browser-dynamic-5efaaa1a :: WatchInfo: /user/username/projects/myproject/node_modules 1 undefined Project: /user/username/projects/myproject/tsconfig.json WatchType: Failed Lookup Locations +Info 149 [00:03:34.000] DirectoryWatcher:: Triggered with /user/username/projects/myproject/node_modules/.staging/@angular/platform-browser-dynamic-5efaaa1a :: WatchInfo: /user/username/projects/myproject 1 undefined Config: /user/username/projects/myproject/tsconfig.json WatchType: Wild card directory +Info 150 [00:03:35.000] Project: /user/username/projects/myproject/tsconfig.json Detected ignored path: /user/username/projects/myproject/node_modules/.staging/@angular/platform-browser-dynamic-5efaaa1a +Info 151 [00:03:36.000] Elapsed:: *ms DirectoryWatcher:: Triggered with /user/username/projects/myproject/node_modules/.staging/@angular/platform-browser-dynamic-5efaaa1a :: WatchInfo: /user/username/projects/myproject 1 undefined Config: /user/username/projects/myproject/tsconfig.json WatchType: Wild card directory +Info 152 [00:03:38.000] DirectoryWatcher:: Triggered with /user/username/projects/myproject/node_modules/.staging/@angular :: WatchInfo: /user/username/projects/myproject/node_modules 1 undefined Project: /user/username/projects/myproject/tsconfig.json WatchType: Failed Lookup Locations +Info 153 [00:03:39.000] Elapsed:: *ms DirectoryWatcher:: Triggered with /user/username/projects/myproject/node_modules/.staging/@angular :: WatchInfo: /user/username/projects/myproject/node_modules 1 undefined Project: /user/username/projects/myproject/tsconfig.json WatchType: Failed Lookup Locations +Info 154 [00:03:40.000] DirectoryWatcher:: Triggered with /user/username/projects/myproject/node_modules/.staging/@angular :: WatchInfo: /user/username/projects/myproject 1 undefined Config: /user/username/projects/myproject/tsconfig.json WatchType: Wild card directory +Info 155 [00:03:41.000] Project: /user/username/projects/myproject/tsconfig.json Detected ignored path: /user/username/projects/myproject/node_modules/.staging/@angular +Info 156 [00:03:42.000] Elapsed:: *ms DirectoryWatcher:: Triggered with /user/username/projects/myproject/node_modules/.staging/@angular :: WatchInfo: /user/username/projects/myproject 1 undefined Config: /user/username/projects/myproject/tsconfig.json WatchType: Wild card directory +Info 157 [00:03:44.000] DirectoryWatcher:: Triggered with /user/username/projects/myproject/node_modules/.staging/@babel/helper-plugin-utils-a06c629f :: WatchInfo: /user/username/projects/myproject/node_modules 1 undefined Project: /user/username/projects/myproject/tsconfig.json WatchType: Failed Lookup Locations +Info 158 [00:03:45.000] Elapsed:: *ms DirectoryWatcher:: Triggered with /user/username/projects/myproject/node_modules/.staging/@babel/helper-plugin-utils-a06c629f :: WatchInfo: /user/username/projects/myproject/node_modules 1 undefined Project: /user/username/projects/myproject/tsconfig.json WatchType: Failed Lookup Locations +Info 159 [00:03:46.000] DirectoryWatcher:: Triggered with /user/username/projects/myproject/node_modules/.staging/@babel/helper-plugin-utils-a06c629f :: WatchInfo: /user/username/projects/myproject 1 undefined Config: /user/username/projects/myproject/tsconfig.json WatchType: Wild card directory +Info 160 [00:03:47.000] Project: /user/username/projects/myproject/tsconfig.json Detected ignored path: /user/username/projects/myproject/node_modules/.staging/@babel/helper-plugin-utils-a06c629f +Info 161 [00:03:48.000] Elapsed:: *ms DirectoryWatcher:: Triggered with /user/username/projects/myproject/node_modules/.staging/@babel/helper-plugin-utils-a06c629f :: WatchInfo: /user/username/projects/myproject 1 undefined Config: /user/username/projects/myproject/tsconfig.json WatchType: Wild card directory +Info 162 [00:03:50.000] DirectoryWatcher:: Triggered with /user/username/projects/myproject/node_modules/.staging/@babel :: WatchInfo: /user/username/projects/myproject/node_modules 1 undefined Project: /user/username/projects/myproject/tsconfig.json WatchType: Failed Lookup Locations +Info 163 [00:03:51.000] Elapsed:: *ms DirectoryWatcher:: Triggered with /user/username/projects/myproject/node_modules/.staging/@babel :: WatchInfo: /user/username/projects/myproject/node_modules 1 undefined Project: /user/username/projects/myproject/tsconfig.json WatchType: Failed Lookup Locations +Info 164 [00:03:52.000] DirectoryWatcher:: Triggered with /user/username/projects/myproject/node_modules/.staging/@babel :: WatchInfo: /user/username/projects/myproject 1 undefined Config: /user/username/projects/myproject/tsconfig.json WatchType: Wild card directory +Info 165 [00:03:53.000] Project: /user/username/projects/myproject/tsconfig.json Detected ignored path: /user/username/projects/myproject/node_modules/.staging/@babel +Info 166 [00:03:54.000] Elapsed:: *ms DirectoryWatcher:: Triggered with /user/username/projects/myproject/node_modules/.staging/@babel :: WatchInfo: /user/username/projects/myproject 1 undefined Config: /user/username/projects/myproject/tsconfig.json WatchType: Wild card directory +Info 167 [00:03:56.000] DirectoryWatcher:: Triggered with /user/username/projects/myproject/node_modules/.staging/core-js-db53158d :: WatchInfo: /user/username/projects/myproject/node_modules 1 undefined Project: /user/username/projects/myproject/tsconfig.json WatchType: Failed Lookup Locations +Info 168 [00:03:57.000] Elapsed:: *ms DirectoryWatcher:: Triggered with /user/username/projects/myproject/node_modules/.staging/core-js-db53158d :: WatchInfo: /user/username/projects/myproject/node_modules 1 undefined Project: /user/username/projects/myproject/tsconfig.json WatchType: Failed Lookup Locations +Info 169 [00:03:58.000] DirectoryWatcher:: Triggered with /user/username/projects/myproject/node_modules/.staging/core-js-db53158d :: WatchInfo: /user/username/projects/myproject 1 undefined Config: /user/username/projects/myproject/tsconfig.json WatchType: Wild card directory +Info 170 [00:03:59.000] Project: /user/username/projects/myproject/tsconfig.json Detected ignored path: /user/username/projects/myproject/node_modules/.staging/core-js-db53158d +Info 171 [00:04:00.000] Elapsed:: *ms DirectoryWatcher:: Triggered with /user/username/projects/myproject/node_modules/.staging/core-js-db53158d :: WatchInfo: /user/username/projects/myproject 1 undefined Config: /user/username/projects/myproject/tsconfig.json WatchType: Wild card directory +Info 172 [00:04:02.000] DirectoryWatcher:: Triggered with /user/username/projects/myproject/node_modules/.staging :: WatchInfo: /user/username/projects/myproject/node_modules 1 undefined Project: /user/username/projects/myproject/tsconfig.json WatchType: Failed Lookup Locations +Info 173 [00:04:03.000] Scheduled: /user/username/projects/myproject/tsconfig.jsonFailedLookupInvalidation +Info 174 [00:04:04.000] Elapsed:: *ms DirectoryWatcher:: Triggered with /user/username/projects/myproject/node_modules/.staging :: WatchInfo: /user/username/projects/myproject/node_modules 1 undefined Project: /user/username/projects/myproject/tsconfig.json WatchType: Failed Lookup Locations +Info 175 [00:04:05.000] DirectoryWatcher:: Triggered with /user/username/projects/myproject/node_modules/.staging :: WatchInfo: /user/username/projects/myproject 1 undefined Config: /user/username/projects/myproject/tsconfig.json WatchType: Wild card directory +Info 176 [00:04:06.000] Scheduled: /user/username/projects/myproject/tsconfig.json, Cancelled earlier one +Info 177 [00:04:07.000] Scheduled: *ensureProjectForOpenFiles*, Cancelled earlier one +Info 178 [00:04:08.000] Elapsed:: *ms DirectoryWatcher:: Triggered with /user/username/projects/myproject/node_modules/.staging :: WatchInfo: /user/username/projects/myproject 1 undefined Config: /user/username/projects/myproject/tsconfig.json WatchType: Wild card directory Before checking timeout queue length (3) and running //// [/user/username/projects/myproject/node_modules/.staging/@angular/cli-c1e44b05/models/analytics.d.ts] deleted //// [/user/username/projects/myproject/node_modules/.staging/@angular/core-0963aebf/index.d.ts] deleted @@ -1126,9 +1126,9 @@ FsWatchesRecursive:: /user/username/projects/myproject/node_modules: {} -Info 179 [16:04:09.000] Running: /user/username/projects/myproject/tsconfig.jsonFailedLookupInvalidation -Info 180 [16:04:10.000] Scheduled: /user/username/projects/myproject/tsconfig.json, Cancelled earlier one -Info 181 [16:04:11.000] Scheduled: *ensureProjectForOpenFiles*, Cancelled earlier one +Info 179 [00:04:09.000] Running: /user/username/projects/myproject/tsconfig.jsonFailedLookupInvalidation +Info 180 [00:04:10.000] Scheduled: /user/username/projects/myproject/tsconfig.json, Cancelled earlier one +Info 181 [00:04:11.000] Scheduled: *ensureProjectForOpenFiles*, Cancelled earlier one After checking timeout queue length (3) and running PolledWatches:: @@ -1169,13 +1169,13 @@ FsWatchesRecursive:: /user/username/projects/myproject/node_modules: {} -Info 182 [16:04:12.000] Running: /user/username/projects/myproject/tsconfig.json -Info 183 [16:04:13.000] Starting updateGraphWorker: Project: /user/username/projects/myproject/tsconfig.json -Info 184 [16:04:14.000] 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 185 [16:04:15.000] 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 186 [16:04:16.000] Finishing updateGraphWorker: Project: /user/username/projects/myproject/tsconfig.json Version: 3 structureChanged: true structureIsReused:: SafeModules Elapsed:: *ms -Info 187 [16:04:17.000] Project '/user/username/projects/myproject/tsconfig.json' (Configured) -Info 188 [16:04:18.000] Files (3) +Info 182 [00:04:12.000] Running: /user/username/projects/myproject/tsconfig.json +Info 183 [00:04:13.000] Starting updateGraphWorker: Project: /user/username/projects/myproject/tsconfig.json +Info 184 [00:04:14.000] 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 185 [00:04:15.000] 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 186 [00:04:16.000] Finishing updateGraphWorker: Project: /user/username/projects/myproject/tsconfig.json Version: 3 structureChanged: true structureIsReused:: SafeModules Elapsed:: *ms +Info 187 [00:04:17.000] Project '/user/username/projects/myproject/tsconfig.json' (Configured) +Info 188 [00:04:18.000] Files (3) /a/lib/lib.d.ts /user/username/projects/myproject/node_modules/@angular/core/index.d.ts /user/username/projects/myproject/src/main.ts @@ -1188,26 +1188,26 @@ Info 188 [16:04:18.000] Files (3) src/main.ts Matched by default include pattern '**/*' -Info 189 [16:04:19.000] ----------------------------------------------- -Info 190 [16:04:20.000] Running: *ensureProjectForOpenFiles* -Info 191 [16:04:21.000] Before ensureProjectForOpenFiles: -Info 192 [16:04:22.000] Project '/user/username/projects/myproject/tsconfig.json' (Configured) -Info 192 [16:04:23.000] Files (3) - -Info 192 [16:04:24.000] ----------------------------------------------- -Info 192 [16:04:25.000] Open files: -Info 192 [16:04:26.000] FileName: /user/username/projects/myproject/src/main.ts ProjectRootPath: /user/username/projects/myproject -Info 192 [16:04:27.000] Projects: /user/username/projects/myproject/tsconfig.json -Info 192 [16:04:28.000] After ensureProjectForOpenFiles: -Info 193 [16:04:29.000] Project '/user/username/projects/myproject/tsconfig.json' (Configured) -Info 193 [16:04:30.000] Files (3) - -Info 193 [16:04:31.000] ----------------------------------------------- -Info 193 [16:04:32.000] Open files: -Info 193 [16:04:33.000] FileName: /user/username/projects/myproject/src/main.ts ProjectRootPath: /user/username/projects/myproject -Info 193 [16:04:34.000] Projects: /user/username/projects/myproject/tsconfig.json -Info 193 [16:04:35.000] got projects updated in background, updating diagnostics for /user/username/projects/myproject/src/main.ts -Info 194 [16:04:36.000] event: +Info 189 [00:04:19.000] ----------------------------------------------- +Info 190 [00:04:20.000] Running: *ensureProjectForOpenFiles* +Info 191 [00:04:21.000] Before ensureProjectForOpenFiles: +Info 192 [00:04:22.000] Project '/user/username/projects/myproject/tsconfig.json' (Configured) +Info 192 [00:04:23.000] Files (3) + +Info 192 [00:04:24.000] ----------------------------------------------- +Info 192 [00:04:25.000] Open files: +Info 192 [00:04:26.000] FileName: /user/username/projects/myproject/src/main.ts ProjectRootPath: /user/username/projects/myproject +Info 192 [00:04:27.000] Projects: /user/username/projects/myproject/tsconfig.json +Info 192 [00:04:28.000] After ensureProjectForOpenFiles: +Info 193 [00:04:29.000] Project '/user/username/projects/myproject/tsconfig.json' (Configured) +Info 193 [00:04:30.000] Files (3) + +Info 193 [00:04:31.000] ----------------------------------------------- +Info 193 [00:04:32.000] Open files: +Info 193 [00:04:33.000] FileName: /user/username/projects/myproject/src/main.ts ProjectRootPath: /user/username/projects/myproject +Info 193 [00:04:34.000] Projects: /user/username/projects/myproject/tsconfig.json +Info 193 [00:04:35.000] got projects updated in background, updating diagnostics for /user/username/projects/myproject/src/main.ts +Info 194 [00:04:36.000] event: {"seq":0,"type":"event","event":"projectsUpdatedInBackground","body":{"openFiles":["/user/username/projects/myproject/src/main.ts"]}} After checking timeout queue length (2) and running @@ -1229,7 +1229,7 @@ FsWatchesRecursive:: /user/username/projects/myproject/node_modules: {} -Info 195 [16:04:37.000] request: +Info 195 [00:04:37.000] request: { "command": "geterr", "arguments": { @@ -1281,7 +1281,7 @@ FsWatchesRecursive:: /user/username/projects/myproject/node_modules: {} -Info 196 [16:04:38.000] response: +Info 196 [00:04:38.000] response: { "responseRequired": false } @@ -1305,7 +1305,7 @@ FsWatchesRecursive:: /user/username/projects/myproject/node_modules: {} -Info 197 [16:04:39.000] event: +Info 197 [00:04:39.000] event: {"seq":0,"type":"event","event":"syntaxDiag","body":{"file":"/user/username/projects/myproject/src/main.ts","diagnostics":[]}} After checking timeout queue length (1) and running @@ -1347,7 +1347,7 @@ FsWatchesRecursive:: /user/username/projects/myproject/node_modules: {} -Info 198 [16:04:40.000] event: +Info 198 [00:04:40.000] event: {"seq":0,"type":"event","event":"semanticDiag","body":{"file":"/user/username/projects/myproject/src/main.ts","diagnostics":[]}} Before running immediate callbacks and checking length (1) @@ -1389,9 +1389,9 @@ FsWatchesRecursive:: /user/username/projects/myproject/node_modules: {} -Info 199 [16:04:41.000] event: +Info 199 [00:04:41.000] event: {"seq":0,"type":"event","event":"suggestionDiag","body":{"file":"/user/username/projects/myproject/src/main.ts","diagnostics":[]}} -Info 200 [16:04:42.000] event: +Info 200 [00:04:42.000] event: {"seq":0,"type":"event","event":"requestCompleted","body":{"request_seq":5}} Before running immediate callbacks and checking length (1) 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 2e25945bd1477..2c70e1203c105 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 @@ -1,5 +1,5 @@ -Info 0 [16:00:23.000] Provided types map file "/a/lib/typesMap.json" doesn't exist -Info 1 [16:00:24.000] request: +Info 0 [00:00:23.000] Provided types map file "/a/lib/typesMap.json" doesn't exist +Info 1 [00:00:24.000] request: { "seq": 0, "type": "request", @@ -36,13 +36,13 @@ FsWatches:: FsWatchesRecursive:: -Info 2 [16:00:25.000] Search path: /user/username/projects/myproject/src -Info 3 [16:00:26.000] For info: /user/username/projects/myproject/src/main.ts :: Config file name: /user/username/projects/myproject/tsconfig.json -Info 4 [16:00:27.000] Creating configuration project /user/username/projects/myproject/tsconfig.json -Info 5 [16:00:28.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/tsconfig.json 2000 undefined Project: /user/username/projects/myproject/tsconfig.json WatchType: Config file -Info 6 [16:00:29.000] event: +Info 2 [00:00:25.000] Search path: /user/username/projects/myproject/src +Info 3 [00:00:26.000] For info: /user/username/projects/myproject/src/main.ts :: Config file name: /user/username/projects/myproject/tsconfig.json +Info 4 [00:00:27.000] Creating configuration project /user/username/projects/myproject/tsconfig.json +Info 5 [00:00:28.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/tsconfig.json 2000 undefined Project: /user/username/projects/myproject/tsconfig.json WatchType: Config file +Info 6 [00:00:29.000] event: {"seq":0,"type":"event","event":"projectLoadingStart","body":{"projectName":"/user/username/projects/myproject/tsconfig.json","reason":"Creating possible configured project for /user/username/projects/myproject/src/main.ts to open"}} -Info 7 [16:00:30.000] Config: /user/username/projects/myproject/tsconfig.json : { +Info 7 [00:00:30.000] Config: /user/username/projects/myproject/tsconfig.json : { "rootNames": [ "/user/username/projects/myproject/src/main.ts" ], @@ -50,20 +50,20 @@ Info 7 [16:00:30.000] Config: /user/username/projects/myproject/tsconfig.json "configFilePath": "/user/username/projects/myproject/tsconfig.json" } } -Info 8 [16:00:31.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject 1 undefined Config: /user/username/projects/myproject/tsconfig.json WatchType: Wild card directory -Info 9 [16:00:32.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject 1 undefined Config: /user/username/projects/myproject/tsconfig.json WatchType: Wild card directory -Info 10 [16:00:33.000] Plugins were requested but not running in environment that supports 'require'. Nothing will be loaded -Info 11 [16:00:34.000] Starting updateGraphWorker: Project: /user/username/projects/myproject/tsconfig.json -Info 12 [16:00:35.000] FileWatcher:: Added:: WatchInfo: /a/lib/lib.d.ts 500 undefined WatchType: Closed Script info -Info 13 [16:00:36.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/src 1 undefined Project: /user/username/projects/myproject/tsconfig.json WatchType: Failed Lookup Locations -Info 14 [16:00:37.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/src 1 undefined Project: /user/username/projects/myproject/tsconfig.json WatchType: Failed Lookup Locations -Info 15 [16:00:38.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules 1 undefined Project: /user/username/projects/myproject/tsconfig.json WatchType: Failed Lookup Locations -Info 16 [16:00:39.000] 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 17 [16:00:40.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/tsconfig.json WatchType: Type roots -Info 18 [16:00:41.000] 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 19 [16:00:42.000] Finishing updateGraphWorker: Project: /user/username/projects/myproject/tsconfig.json Version: 1 structureChanged: true structureIsReused:: Not Elapsed:: *ms -Info 20 [16:00:43.000] Project '/user/username/projects/myproject/tsconfig.json' (Configured) -Info 21 [16:00:44.000] Files (2) +Info 8 [00:00:31.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject 1 undefined Config: /user/username/projects/myproject/tsconfig.json WatchType: Wild card directory +Info 9 [00:00:32.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject 1 undefined Config: /user/username/projects/myproject/tsconfig.json WatchType: Wild card directory +Info 10 [00:00:33.000] Plugins were requested but not running in environment that supports 'require'. Nothing will be loaded +Info 11 [00:00:34.000] Starting updateGraphWorker: Project: /user/username/projects/myproject/tsconfig.json +Info 12 [00:00:35.000] FileWatcher:: Added:: WatchInfo: /a/lib/lib.d.ts 500 undefined WatchType: Closed Script info +Info 13 [00:00:36.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/src 1 undefined Project: /user/username/projects/myproject/tsconfig.json WatchType: Failed Lookup Locations +Info 14 [00:00:37.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/src 1 undefined Project: /user/username/projects/myproject/tsconfig.json WatchType: Failed Lookup Locations +Info 15 [00:00:38.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules 1 undefined Project: /user/username/projects/myproject/tsconfig.json WatchType: Failed Lookup Locations +Info 16 [00:00:39.000] 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 17 [00:00:40.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/tsconfig.json WatchType: Type roots +Info 18 [00:00:41.000] 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 19 [00:00:42.000] Finishing updateGraphWorker: Project: /user/username/projects/myproject/tsconfig.json Version: 1 structureChanged: true structureIsReused:: Not Elapsed:: *ms +Info 20 [00:00:43.000] Project '/user/username/projects/myproject/tsconfig.json' (Configured) +Info 21 [00:00:44.000] Files (2) /a/lib/lib.d.ts /user/username/projects/myproject/src/main.ts @@ -73,20 +73,20 @@ Info 21 [16:00:44.000] Files (2) src/main.ts Matched by default include pattern '**/*' -Info 22 [16:00:45.000] ----------------------------------------------- -Info 23 [16:00:46.000] event: +Info 22 [00:00:45.000] ----------------------------------------------- +Info 23 [00:00:46.000] event: {"seq":0,"type":"event","event":"projectLoadingFinish","body":{"projectName":"/user/username/projects/myproject/tsconfig.json"}} -Info 24 [16:00:47.000] event: +Info 24 [00:00:47.000] event: {"seq":0,"type":"event","event":"telemetry","body":{"telemetryEventName":"projectInfo","payload":{"projectId":"4a33d78ee40d836c4f4e64c59aed976628aea0013be9585c5ff171dfc41baf98","fileStats":{"js":0,"jsSize":0,"jsx":0,"jsxSize":0,"ts":1,"tsSize":36,"tsx":0,"tsxSize":0,"dts":1,"dtsSize":334,"deferred":0,"deferredSize":0},"compilerOptions":{},"typeAcquisition":{"enable":false,"include":false,"exclude":false},"extends":false,"files":false,"include":false,"exclude":false,"compileOnSave":false,"configFileName":"tsconfig.json","projectType":"configured","languageServiceEnabled":true,"version":"FakeVersion"}}} -Info 25 [16:00:48.000] event: +Info 25 [00:00:48.000] event: {"seq":0,"type":"event","event":"configFileDiag","body":{"triggerFile":"/user/username/projects/myproject/src/main.ts","configFile":"/user/username/projects/myproject/tsconfig.json","diagnostics":[]}} -Info 26 [16:00:49.000] Project '/user/username/projects/myproject/tsconfig.json' (Configured) -Info 26 [16:00:50.000] Files (2) +Info 26 [00:00:49.000] Project '/user/username/projects/myproject/tsconfig.json' (Configured) +Info 26 [00:00:50.000] Files (2) -Info 26 [16:00:51.000] ----------------------------------------------- -Info 26 [16:00:52.000] Open files: -Info 26 [16:00:53.000] FileName: /user/username/projects/myproject/src/main.ts ProjectRootPath: /user/username/projects/myproject -Info 26 [16:00:54.000] Projects: /user/username/projects/myproject/tsconfig.json +Info 26 [00:00:51.000] ----------------------------------------------- +Info 26 [00:00:52.000] Open files: +Info 26 [00:00:53.000] FileName: /user/username/projects/myproject/src/main.ts ProjectRootPath: /user/username/projects/myproject +Info 26 [00:00:54.000] Projects: /user/username/projects/myproject/tsconfig.json After request PolledWatches:: @@ -107,11 +107,11 @@ FsWatchesRecursive:: /user/username/projects/myproject/src: {} -Info 26 [16:00:55.000] response: +Info 26 [00:00:55.000] response: { "responseRequired": false } -Info 27 [16:00:56.000] request: +Info 27 [00:00:56.000] request: { "command": "geterr", "arguments": { @@ -163,7 +163,7 @@ FsWatchesRecursive:: /user/username/projects/myproject/src: {} -Info 28 [16:00:57.000] response: +Info 28 [00:00:57.000] response: { "responseRequired": false } @@ -187,7 +187,7 @@ FsWatchesRecursive:: /user/username/projects/myproject/src: {} -Info 29 [16:00:58.000] event: +Info 29 [00:00:58.000] event: {"seq":0,"type":"event","event":"syntaxDiag","body":{"file":"/user/username/projects/myproject/src/main.ts","diagnostics":[]}} After checking timeout queue length (1) and running @@ -229,7 +229,7 @@ FsWatchesRecursive:: /user/username/projects/myproject/src: {} -Info 30 [16:00:59.000] event: +Info 30 [00:00:59.000] event: {"seq":0,"type":"event","event":"semanticDiag","body":{"file":"/user/username/projects/myproject/src/main.ts","diagnostics":[{"start":{"line":1,"offset":21},"end":{"line":1,"offset":36},"text":"Cannot find module '@angular/core' or its corresponding type declarations.","code":2307,"category":"error"}]}} Before running immediate callbacks and checking length (1) @@ -271,9 +271,9 @@ FsWatchesRecursive:: /user/username/projects/myproject/src: {} -Info 31 [16:01:00.000] event: +Info 31 [00:01:00.000] event: {"seq":0,"type":"event","event":"suggestionDiag","body":{"file":"/user/username/projects/myproject/src/main.ts","diagnostics":[]}} -Info 32 [16:01:01.000] event: +Info 32 [00:01:01.000] event: {"seq":0,"type":"event","event":"requestCompleted","body":{"request_seq":1}} Before running immediate callbacks and checking length (1) @@ -295,38 +295,38 @@ FsWatchesRecursive:: /user/username/projects/myproject/src: {} -Info 33 [16:01:04.000] DirectoryWatcher:: Triggered with /user/username/projects/myproject/node_modules :: WatchInfo: /user/username/projects/myproject/node_modules 1 undefined Project: /user/username/projects/myproject/tsconfig.json WatchType: Failed Lookup Locations -Info 34 [16:01:05.000] Scheduled: /user/username/projects/myproject/tsconfig.jsonFailedLookupInvalidation -Info 35 [16:01:06.000] Elapsed:: *ms DirectoryWatcher:: Triggered with /user/username/projects/myproject/node_modules :: WatchInfo: /user/username/projects/myproject/node_modules 1 undefined Project: /user/username/projects/myproject/tsconfig.json WatchType: Failed Lookup Locations -Info 36 [16:01:07.000] DirectoryWatcher:: Triggered with /user/username/projects/myproject/node_modules :: WatchInfo: /user/username/projects/myproject/node_modules 1 undefined Project: /user/username/projects/myproject/tsconfig.json WatchType: Failed Lookup Locations -Info 37 [16:01:08.000] Scheduled: /user/username/projects/myproject/tsconfig.jsonFailedLookupInvalidation, Cancelled earlier one -Info 38 [16:01:09.000] Elapsed:: *ms DirectoryWatcher:: Triggered with /user/username/projects/myproject/node_modules :: WatchInfo: /user/username/projects/myproject/node_modules 1 undefined Project: /user/username/projects/myproject/tsconfig.json WatchType: Failed Lookup Locations -Info 39 [16:01:10.000] DirectoryWatcher:: Triggered with /user/username/projects/myproject/node_modules :: WatchInfo: /user/username/projects/myproject 1 undefined Config: /user/username/projects/myproject/tsconfig.json WatchType: Wild card directory -Info 40 [16:01:11.000] Scheduled: /user/username/projects/myproject/tsconfig.json -Info 41 [16:01:12.000] Scheduled: *ensureProjectForOpenFiles* -Info 42 [16:01:13.000] Elapsed:: *ms DirectoryWatcher:: Triggered with /user/username/projects/myproject/node_modules :: WatchInfo: /user/username/projects/myproject 1 undefined Config: /user/username/projects/myproject/tsconfig.json WatchType: Wild card directory -Info 43 [16:01:16.000] DirectoryWatcher:: Triggered with /user/username/projects/myproject/node_modules/.staging :: WatchInfo: /user/username/projects/myproject/node_modules 1 undefined Project: /user/username/projects/myproject/tsconfig.json WatchType: Failed Lookup Locations -Info 44 [16:01:17.000] Scheduled: /user/username/projects/myproject/tsconfig.jsonFailedLookupInvalidation, Cancelled earlier one -Info 45 [16:01:18.000] Elapsed:: *ms DirectoryWatcher:: Triggered with /user/username/projects/myproject/node_modules/.staging :: WatchInfo: /user/username/projects/myproject/node_modules 1 undefined Project: /user/username/projects/myproject/tsconfig.json WatchType: Failed Lookup Locations -Info 46 [16:01:19.000] DirectoryWatcher:: Triggered with /user/username/projects/myproject/node_modules/.staging :: WatchInfo: /user/username/projects/myproject 1 undefined Config: /user/username/projects/myproject/tsconfig.json WatchType: Wild card directory -Info 47 [16:01:20.000] Scheduled: /user/username/projects/myproject/tsconfig.json, Cancelled earlier one -Info 48 [16:01:21.000] Scheduled: *ensureProjectForOpenFiles*, Cancelled earlier one -Info 49 [16:01:22.000] Elapsed:: *ms DirectoryWatcher:: Triggered with /user/username/projects/myproject/node_modules/.staging :: WatchInfo: /user/username/projects/myproject 1 undefined Config: /user/username/projects/myproject/tsconfig.json WatchType: Wild card directory -Info 50 [16:01:25.000] DirectoryWatcher:: Triggered with /user/username/projects/myproject/node_modules/.staging/@babel :: WatchInfo: /user/username/projects/myproject/node_modules 1 undefined Project: /user/username/projects/myproject/tsconfig.json WatchType: Failed Lookup Locations -Info 51 [16:01:26.000] Elapsed:: *ms DirectoryWatcher:: Triggered with /user/username/projects/myproject/node_modules/.staging/@babel :: WatchInfo: /user/username/projects/myproject/node_modules 1 undefined Project: /user/username/projects/myproject/tsconfig.json WatchType: Failed Lookup Locations -Info 52 [16:01:27.000] DirectoryWatcher:: Triggered with /user/username/projects/myproject/node_modules/.staging/@babel :: WatchInfo: /user/username/projects/myproject 1 undefined Config: /user/username/projects/myproject/tsconfig.json WatchType: Wild card directory -Info 53 [16:01:28.000] Project: /user/username/projects/myproject/tsconfig.json Detected ignored path: /user/username/projects/myproject/node_modules/.staging/@babel -Info 54 [16:01:29.000] Elapsed:: *ms DirectoryWatcher:: Triggered with /user/username/projects/myproject/node_modules/.staging/@babel :: WatchInfo: /user/username/projects/myproject 1 undefined Config: /user/username/projects/myproject/tsconfig.json WatchType: Wild card directory -Info 55 [16:01:32.000] DirectoryWatcher:: Triggered with /user/username/projects/myproject/node_modules/.staging/@babel/helper-plugin-utils-a06c629f :: WatchInfo: /user/username/projects/myproject/node_modules 1 undefined Project: /user/username/projects/myproject/tsconfig.json WatchType: Failed Lookup Locations -Info 56 [16:01:33.000] Elapsed:: *ms DirectoryWatcher:: Triggered with /user/username/projects/myproject/node_modules/.staging/@babel/helper-plugin-utils-a06c629f :: WatchInfo: /user/username/projects/myproject/node_modules 1 undefined Project: /user/username/projects/myproject/tsconfig.json WatchType: Failed Lookup Locations -Info 57 [16:01:34.000] DirectoryWatcher:: Triggered with /user/username/projects/myproject/node_modules/.staging/@babel/helper-plugin-utils-a06c629f :: WatchInfo: /user/username/projects/myproject 1 undefined Config: /user/username/projects/myproject/tsconfig.json WatchType: Wild card directory -Info 58 [16:01:35.000] Project: /user/username/projects/myproject/tsconfig.json Detected ignored path: /user/username/projects/myproject/node_modules/.staging/@babel/helper-plugin-utils-a06c629f -Info 59 [16:01:36.000] Elapsed:: *ms DirectoryWatcher:: Triggered with /user/username/projects/myproject/node_modules/.staging/@babel/helper-plugin-utils-a06c629f :: WatchInfo: /user/username/projects/myproject 1 undefined Config: /user/username/projects/myproject/tsconfig.json WatchType: Wild card directory -Info 60 [16:01:39.000] DirectoryWatcher:: Triggered with /user/username/projects/myproject/node_modules/.staging/core-js-db53158d :: WatchInfo: /user/username/projects/myproject/node_modules 1 undefined Project: /user/username/projects/myproject/tsconfig.json WatchType: Failed Lookup Locations -Info 61 [16:01:40.000] Elapsed:: *ms DirectoryWatcher:: Triggered with /user/username/projects/myproject/node_modules/.staging/core-js-db53158d :: WatchInfo: /user/username/projects/myproject/node_modules 1 undefined Project: /user/username/projects/myproject/tsconfig.json WatchType: Failed Lookup Locations -Info 62 [16:01:41.000] DirectoryWatcher:: Triggered with /user/username/projects/myproject/node_modules/.staging/core-js-db53158d :: WatchInfo: /user/username/projects/myproject 1 undefined Config: /user/username/projects/myproject/tsconfig.json WatchType: Wild card directory -Info 63 [16:01:42.000] Project: /user/username/projects/myproject/tsconfig.json Detected ignored path: /user/username/projects/myproject/node_modules/.staging/core-js-db53158d -Info 64 [16:01:43.000] Elapsed:: *ms DirectoryWatcher:: Triggered with /user/username/projects/myproject/node_modules/.staging/core-js-db53158d :: WatchInfo: /user/username/projects/myproject 1 undefined Config: /user/username/projects/myproject/tsconfig.json WatchType: Wild card directory +Info 33 [00:01:04.000] DirectoryWatcher:: Triggered with /user/username/projects/myproject/node_modules :: WatchInfo: /user/username/projects/myproject/node_modules 1 undefined Project: /user/username/projects/myproject/tsconfig.json WatchType: Failed Lookup Locations +Info 34 [00:01:05.000] Scheduled: /user/username/projects/myproject/tsconfig.jsonFailedLookupInvalidation +Info 35 [00:01:06.000] Elapsed:: *ms DirectoryWatcher:: Triggered with /user/username/projects/myproject/node_modules :: WatchInfo: /user/username/projects/myproject/node_modules 1 undefined Project: /user/username/projects/myproject/tsconfig.json WatchType: Failed Lookup Locations +Info 36 [00:01:07.000] DirectoryWatcher:: Triggered with /user/username/projects/myproject/node_modules :: WatchInfo: /user/username/projects/myproject/node_modules 1 undefined Project: /user/username/projects/myproject/tsconfig.json WatchType: Failed Lookup Locations +Info 37 [00:01:08.000] Scheduled: /user/username/projects/myproject/tsconfig.jsonFailedLookupInvalidation, Cancelled earlier one +Info 38 [00:01:09.000] Elapsed:: *ms DirectoryWatcher:: Triggered with /user/username/projects/myproject/node_modules :: WatchInfo: /user/username/projects/myproject/node_modules 1 undefined Project: /user/username/projects/myproject/tsconfig.json WatchType: Failed Lookup Locations +Info 39 [00:01:10.000] DirectoryWatcher:: Triggered with /user/username/projects/myproject/node_modules :: WatchInfo: /user/username/projects/myproject 1 undefined Config: /user/username/projects/myproject/tsconfig.json WatchType: Wild card directory +Info 40 [00:01:11.000] Scheduled: /user/username/projects/myproject/tsconfig.json +Info 41 [00:01:12.000] Scheduled: *ensureProjectForOpenFiles* +Info 42 [00:01:13.000] Elapsed:: *ms DirectoryWatcher:: Triggered with /user/username/projects/myproject/node_modules :: WatchInfo: /user/username/projects/myproject 1 undefined Config: /user/username/projects/myproject/tsconfig.json WatchType: Wild card directory +Info 43 [00:01:16.000] DirectoryWatcher:: Triggered with /user/username/projects/myproject/node_modules/.staging :: WatchInfo: /user/username/projects/myproject/node_modules 1 undefined Project: /user/username/projects/myproject/tsconfig.json WatchType: Failed Lookup Locations +Info 44 [00:01:17.000] Scheduled: /user/username/projects/myproject/tsconfig.jsonFailedLookupInvalidation, Cancelled earlier one +Info 45 [00:01:18.000] Elapsed:: *ms DirectoryWatcher:: Triggered with /user/username/projects/myproject/node_modules/.staging :: WatchInfo: /user/username/projects/myproject/node_modules 1 undefined Project: /user/username/projects/myproject/tsconfig.json WatchType: Failed Lookup Locations +Info 46 [00:01:19.000] DirectoryWatcher:: Triggered with /user/username/projects/myproject/node_modules/.staging :: WatchInfo: /user/username/projects/myproject 1 undefined Config: /user/username/projects/myproject/tsconfig.json WatchType: Wild card directory +Info 47 [00:01:20.000] Scheduled: /user/username/projects/myproject/tsconfig.json, Cancelled earlier one +Info 48 [00:01:21.000] Scheduled: *ensureProjectForOpenFiles*, Cancelled earlier one +Info 49 [00:01:22.000] Elapsed:: *ms DirectoryWatcher:: Triggered with /user/username/projects/myproject/node_modules/.staging :: WatchInfo: /user/username/projects/myproject 1 undefined Config: /user/username/projects/myproject/tsconfig.json WatchType: Wild card directory +Info 50 [00:01:25.000] DirectoryWatcher:: Triggered with /user/username/projects/myproject/node_modules/.staging/@babel :: WatchInfo: /user/username/projects/myproject/node_modules 1 undefined Project: /user/username/projects/myproject/tsconfig.json WatchType: Failed Lookup Locations +Info 51 [00:01:26.000] Elapsed:: *ms DirectoryWatcher:: Triggered with /user/username/projects/myproject/node_modules/.staging/@babel :: WatchInfo: /user/username/projects/myproject/node_modules 1 undefined Project: /user/username/projects/myproject/tsconfig.json WatchType: Failed Lookup Locations +Info 52 [00:01:27.000] DirectoryWatcher:: Triggered with /user/username/projects/myproject/node_modules/.staging/@babel :: WatchInfo: /user/username/projects/myproject 1 undefined Config: /user/username/projects/myproject/tsconfig.json WatchType: Wild card directory +Info 53 [00:01:28.000] Project: /user/username/projects/myproject/tsconfig.json Detected ignored path: /user/username/projects/myproject/node_modules/.staging/@babel +Info 54 [00:01:29.000] Elapsed:: *ms DirectoryWatcher:: Triggered with /user/username/projects/myproject/node_modules/.staging/@babel :: WatchInfo: /user/username/projects/myproject 1 undefined Config: /user/username/projects/myproject/tsconfig.json WatchType: Wild card directory +Info 55 [00:01:32.000] DirectoryWatcher:: Triggered with /user/username/projects/myproject/node_modules/.staging/@babel/helper-plugin-utils-a06c629f :: WatchInfo: /user/username/projects/myproject/node_modules 1 undefined Project: /user/username/projects/myproject/tsconfig.json WatchType: Failed Lookup Locations +Info 56 [00:01:33.000] Elapsed:: *ms DirectoryWatcher:: Triggered with /user/username/projects/myproject/node_modules/.staging/@babel/helper-plugin-utils-a06c629f :: WatchInfo: /user/username/projects/myproject/node_modules 1 undefined Project: /user/username/projects/myproject/tsconfig.json WatchType: Failed Lookup Locations +Info 57 [00:01:34.000] DirectoryWatcher:: Triggered with /user/username/projects/myproject/node_modules/.staging/@babel/helper-plugin-utils-a06c629f :: WatchInfo: /user/username/projects/myproject 1 undefined Config: /user/username/projects/myproject/tsconfig.json WatchType: Wild card directory +Info 58 [00:01:35.000] Project: /user/username/projects/myproject/tsconfig.json Detected ignored path: /user/username/projects/myproject/node_modules/.staging/@babel/helper-plugin-utils-a06c629f +Info 59 [00:01:36.000] Elapsed:: *ms DirectoryWatcher:: Triggered with /user/username/projects/myproject/node_modules/.staging/@babel/helper-plugin-utils-a06c629f :: WatchInfo: /user/username/projects/myproject 1 undefined Config: /user/username/projects/myproject/tsconfig.json WatchType: Wild card directory +Info 60 [00:01:39.000] DirectoryWatcher:: Triggered with /user/username/projects/myproject/node_modules/.staging/core-js-db53158d :: WatchInfo: /user/username/projects/myproject/node_modules 1 undefined Project: /user/username/projects/myproject/tsconfig.json WatchType: Failed Lookup Locations +Info 61 [00:01:40.000] Elapsed:: *ms DirectoryWatcher:: Triggered with /user/username/projects/myproject/node_modules/.staging/core-js-db53158d :: WatchInfo: /user/username/projects/myproject/node_modules 1 undefined Project: /user/username/projects/myproject/tsconfig.json WatchType: Failed Lookup Locations +Info 62 [00:01:41.000] DirectoryWatcher:: Triggered with /user/username/projects/myproject/node_modules/.staging/core-js-db53158d :: WatchInfo: /user/username/projects/myproject 1 undefined Config: /user/username/projects/myproject/tsconfig.json WatchType: Wild card directory +Info 63 [00:01:42.000] Project: /user/username/projects/myproject/tsconfig.json Detected ignored path: /user/username/projects/myproject/node_modules/.staging/core-js-db53158d +Info 64 [00:01:43.000] Elapsed:: *ms DirectoryWatcher:: Triggered with /user/username/projects/myproject/node_modules/.staging/core-js-db53158d :: WatchInfo: /user/username/projects/myproject 1 undefined Config: /user/username/projects/myproject/tsconfig.json WatchType: Wild card directory Before checking timeout queue length (3) and running PolledWatches:: @@ -347,9 +347,9 @@ FsWatchesRecursive:: /user/username/projects/myproject/node_modules: {} -Info 65 [16:01:44.000] Running: /user/username/projects/myproject/tsconfig.jsonFailedLookupInvalidation -Info 66 [16:01:45.000] Scheduled: /user/username/projects/myproject/tsconfig.json, Cancelled earlier one -Info 67 [16:01:46.000] Scheduled: *ensureProjectForOpenFiles*, Cancelled earlier one +Info 65 [00:01:44.000] Running: /user/username/projects/myproject/tsconfig.jsonFailedLookupInvalidation +Info 66 [00:01:45.000] Scheduled: /user/username/projects/myproject/tsconfig.json, Cancelled earlier one +Info 67 [00:01:46.000] Scheduled: *ensureProjectForOpenFiles*, Cancelled earlier one After checking timeout queue length (3) and running PolledWatches:: @@ -390,29 +390,29 @@ FsWatchesRecursive:: /user/username/projects/myproject/node_modules: {} -Info 68 [16:01:47.000] Running: /user/username/projects/myproject/tsconfig.json -Info 69 [16:01:48.000] Starting updateGraphWorker: Project: /user/username/projects/myproject/tsconfig.json -Info 70 [16:01:49.000] Finishing updateGraphWorker: Project: /user/username/projects/myproject/tsconfig.json Version: 2 structureChanged: true structureIsReused:: SafeModules Elapsed:: *ms -Info 71 [16:01:50.000] Different program with same set of files -Info 72 [16:01:51.000] Running: *ensureProjectForOpenFiles* -Info 73 [16:01:52.000] Before ensureProjectForOpenFiles: -Info 74 [16:01:53.000] Project '/user/username/projects/myproject/tsconfig.json' (Configured) -Info 74 [16:01:54.000] Files (2) - -Info 74 [16:01:55.000] ----------------------------------------------- -Info 74 [16:01:56.000] Open files: -Info 74 [16:01:57.000] FileName: /user/username/projects/myproject/src/main.ts ProjectRootPath: /user/username/projects/myproject -Info 74 [16:01:58.000] Projects: /user/username/projects/myproject/tsconfig.json -Info 74 [16:01:59.000] After ensureProjectForOpenFiles: -Info 75 [16:02:00.000] Project '/user/username/projects/myproject/tsconfig.json' (Configured) -Info 75 [16:02:01.000] Files (2) - -Info 75 [16:02:02.000] ----------------------------------------------- -Info 75 [16:02:03.000] Open files: -Info 75 [16:02:04.000] FileName: /user/username/projects/myproject/src/main.ts ProjectRootPath: /user/username/projects/myproject -Info 75 [16:02:05.000] Projects: /user/username/projects/myproject/tsconfig.json -Info 75 [16:02:06.000] got projects updated in background, updating diagnostics for /user/username/projects/myproject/src/main.ts -Info 76 [16:02:07.000] event: +Info 68 [00:01:47.000] Running: /user/username/projects/myproject/tsconfig.json +Info 69 [00:01:48.000] Starting updateGraphWorker: Project: /user/username/projects/myproject/tsconfig.json +Info 70 [00:01:49.000] Finishing updateGraphWorker: Project: /user/username/projects/myproject/tsconfig.json Version: 2 structureChanged: true structureIsReused:: SafeModules Elapsed:: *ms +Info 71 [00:01:50.000] Different program with same set of files +Info 72 [00:01:51.000] Running: *ensureProjectForOpenFiles* +Info 73 [00:01:52.000] Before ensureProjectForOpenFiles: +Info 74 [00:01:53.000] Project '/user/username/projects/myproject/tsconfig.json' (Configured) +Info 74 [00:01:54.000] Files (2) + +Info 74 [00:01:55.000] ----------------------------------------------- +Info 74 [00:01:56.000] Open files: +Info 74 [00:01:57.000] FileName: /user/username/projects/myproject/src/main.ts ProjectRootPath: /user/username/projects/myproject +Info 74 [00:01:58.000] Projects: /user/username/projects/myproject/tsconfig.json +Info 74 [00:01:59.000] After ensureProjectForOpenFiles: +Info 75 [00:02:00.000] Project '/user/username/projects/myproject/tsconfig.json' (Configured) +Info 75 [00:02:01.000] Files (2) + +Info 75 [00:02:02.000] ----------------------------------------------- +Info 75 [00:02:03.000] Open files: +Info 75 [00:02:04.000] FileName: /user/username/projects/myproject/src/main.ts ProjectRootPath: /user/username/projects/myproject +Info 75 [00:02:05.000] Projects: /user/username/projects/myproject/tsconfig.json +Info 75 [00:02:06.000] got projects updated in background, updating diagnostics for /user/username/projects/myproject/src/main.ts +Info 76 [00:02:07.000] event: {"seq":0,"type":"event","event":"projectsUpdatedInBackground","body":{"openFiles":["/user/username/projects/myproject/src/main.ts"]}} After checking timeout queue length (2) and running @@ -434,7 +434,7 @@ FsWatchesRecursive:: /user/username/projects/myproject/node_modules: {} -Info 77 [16:02:08.000] request: +Info 77 [00:02:08.000] request: { "command": "geterr", "arguments": { @@ -486,7 +486,7 @@ FsWatchesRecursive:: /user/username/projects/myproject/node_modules: {} -Info 78 [16:02:09.000] response: +Info 78 [00:02:09.000] response: { "responseRequired": false } @@ -510,7 +510,7 @@ FsWatchesRecursive:: /user/username/projects/myproject/node_modules: {} -Info 79 [16:02:10.000] event: +Info 79 [00:02:10.000] event: {"seq":0,"type":"event","event":"syntaxDiag","body":{"file":"/user/username/projects/myproject/src/main.ts","diagnostics":[]}} After checking timeout queue length (1) and running @@ -552,7 +552,7 @@ FsWatchesRecursive:: /user/username/projects/myproject/node_modules: {} -Info 80 [16:02:11.000] event: +Info 80 [00:02:11.000] event: {"seq":0,"type":"event","event":"semanticDiag","body":{"file":"/user/username/projects/myproject/src/main.ts","diagnostics":[{"start":{"line":1,"offset":21},"end":{"line":1,"offset":36},"text":"Cannot find module '@angular/core' or its corresponding type declarations.","code":2307,"category":"error"}]}} Before running immediate callbacks and checking length (1) @@ -594,9 +594,9 @@ FsWatchesRecursive:: /user/username/projects/myproject/node_modules: {} -Info 81 [16:02:12.000] event: +Info 81 [00:02:12.000] event: {"seq":0,"type":"event","event":"suggestionDiag","body":{"file":"/user/username/projects/myproject/src/main.ts","diagnostics":[]}} -Info 82 [16:02:13.000] event: +Info 82 [00:02:13.000] event: {"seq":0,"type":"event","event":"requestCompleted","body":{"request_seq":2}} Before running immediate callbacks and checking length (1) @@ -618,41 +618,41 @@ FsWatchesRecursive:: /user/username/projects/myproject/node_modules: {} -Info 83 [16:02:16.000] DirectoryWatcher:: Triggered with /user/username/projects/myproject/node_modules/.staging/@angular :: WatchInfo: /user/username/projects/myproject/node_modules 1 undefined Project: /user/username/projects/myproject/tsconfig.json WatchType: Failed Lookup Locations -Info 84 [16:02:17.000] Elapsed:: *ms DirectoryWatcher:: Triggered with /user/username/projects/myproject/node_modules/.staging/@angular :: WatchInfo: /user/username/projects/myproject/node_modules 1 undefined Project: /user/username/projects/myproject/tsconfig.json WatchType: Failed Lookup Locations -Info 85 [16:02:18.000] DirectoryWatcher:: Triggered with /user/username/projects/myproject/node_modules/.staging/@angular :: WatchInfo: /user/username/projects/myproject 1 undefined Config: /user/username/projects/myproject/tsconfig.json WatchType: Wild card directory -Info 86 [16:02:19.000] Project: /user/username/projects/myproject/tsconfig.json Detected ignored path: /user/username/projects/myproject/node_modules/.staging/@angular -Info 87 [16:02:20.000] Elapsed:: *ms DirectoryWatcher:: Triggered with /user/username/projects/myproject/node_modules/.staging/@angular :: WatchInfo: /user/username/projects/myproject 1 undefined Config: /user/username/projects/myproject/tsconfig.json WatchType: Wild card directory -Info 88 [16:02:23.000] DirectoryWatcher:: Triggered with /user/username/projects/myproject/node_modules/.staging/@angular/platform-browser-dynamic-5efaaa1a :: WatchInfo: /user/username/projects/myproject/node_modules 1 undefined Project: /user/username/projects/myproject/tsconfig.json WatchType: Failed Lookup Locations -Info 89 [16:02:24.000] Elapsed:: *ms DirectoryWatcher:: Triggered with /user/username/projects/myproject/node_modules/.staging/@angular/platform-browser-dynamic-5efaaa1a :: WatchInfo: /user/username/projects/myproject/node_modules 1 undefined Project: /user/username/projects/myproject/tsconfig.json WatchType: Failed Lookup Locations -Info 90 [16:02:25.000] DirectoryWatcher:: Triggered with /user/username/projects/myproject/node_modules/.staging/@angular/platform-browser-dynamic-5efaaa1a :: WatchInfo: /user/username/projects/myproject 1 undefined Config: /user/username/projects/myproject/tsconfig.json WatchType: Wild card directory -Info 91 [16:02:26.000] Project: /user/username/projects/myproject/tsconfig.json Detected ignored path: /user/username/projects/myproject/node_modules/.staging/@angular/platform-browser-dynamic-5efaaa1a -Info 92 [16:02:27.000] Elapsed:: *ms DirectoryWatcher:: Triggered with /user/username/projects/myproject/node_modules/.staging/@angular/platform-browser-dynamic-5efaaa1a :: WatchInfo: /user/username/projects/myproject 1 undefined Config: /user/username/projects/myproject/tsconfig.json WatchType: Wild card directory -Info 93 [16:02:32.000] DirectoryWatcher:: Triggered with /user/username/projects/myproject/node_modules/.staging/@angular/cli-c1e44b05 :: WatchInfo: /user/username/projects/myproject/node_modules 1 undefined Project: /user/username/projects/myproject/tsconfig.json WatchType: Failed Lookup Locations -Info 94 [16:02:33.000] Elapsed:: *ms DirectoryWatcher:: Triggered with /user/username/projects/myproject/node_modules/.staging/@angular/cli-c1e44b05 :: WatchInfo: /user/username/projects/myproject/node_modules 1 undefined Project: /user/username/projects/myproject/tsconfig.json WatchType: Failed Lookup Locations -Info 95 [16:02:34.000] DirectoryWatcher:: Triggered with /user/username/projects/myproject/node_modules/.staging/@angular/cli-c1e44b05 :: WatchInfo: /user/username/projects/myproject 1 undefined Config: /user/username/projects/myproject/tsconfig.json WatchType: Wild card directory -Info 96 [16:02:35.000] Project: /user/username/projects/myproject/tsconfig.json Detected ignored path: /user/username/projects/myproject/node_modules/.staging/@angular/cli-c1e44b05 -Info 97 [16:02:36.000] Elapsed:: *ms DirectoryWatcher:: Triggered with /user/username/projects/myproject/node_modules/.staging/@angular/cli-c1e44b05 :: WatchInfo: /user/username/projects/myproject 1 undefined Config: /user/username/projects/myproject/tsconfig.json WatchType: Wild card directory -Info 98 [16:02:38.000] DirectoryWatcher:: Triggered with /user/username/projects/myproject/node_modules/.staging/@angular/cli-c1e44b05/models :: WatchInfo: /user/username/projects/myproject/node_modules 1 undefined Project: /user/username/projects/myproject/tsconfig.json WatchType: Failed Lookup Locations -Info 99 [16:02:39.000] Elapsed:: *ms DirectoryWatcher:: Triggered with /user/username/projects/myproject/node_modules/.staging/@angular/cli-c1e44b05/models :: WatchInfo: /user/username/projects/myproject/node_modules 1 undefined Project: /user/username/projects/myproject/tsconfig.json WatchType: Failed Lookup Locations -Info 100 [16:02:40.000] DirectoryWatcher:: Triggered with /user/username/projects/myproject/node_modules/.staging/@angular/cli-c1e44b05/models :: WatchInfo: /user/username/projects/myproject 1 undefined Config: /user/username/projects/myproject/tsconfig.json WatchType: Wild card directory -Info 101 [16:02:41.000] Project: /user/username/projects/myproject/tsconfig.json Detected ignored path: /user/username/projects/myproject/node_modules/.staging/@angular/cli-c1e44b05/models -Info 102 [16:02:42.000] Elapsed:: *ms DirectoryWatcher:: Triggered with /user/username/projects/myproject/node_modules/.staging/@angular/cli-c1e44b05/models :: WatchInfo: /user/username/projects/myproject 1 undefined Config: /user/username/projects/myproject/tsconfig.json WatchType: Wild card directory -Info 103 [16:02:44.000] DirectoryWatcher:: Triggered with /user/username/projects/myproject/node_modules/.staging/@angular/cli-c1e44b05/models/analytics.d.ts :: WatchInfo: /user/username/projects/myproject/node_modules 1 undefined Project: /user/username/projects/myproject/tsconfig.json WatchType: Failed Lookup Locations -Info 104 [16:02:45.000] Elapsed:: *ms DirectoryWatcher:: Triggered with /user/username/projects/myproject/node_modules/.staging/@angular/cli-c1e44b05/models/analytics.d.ts :: WatchInfo: /user/username/projects/myproject/node_modules 1 undefined Project: /user/username/projects/myproject/tsconfig.json WatchType: Failed Lookup Locations -Info 105 [16:02:46.000] DirectoryWatcher:: Triggered with /user/username/projects/myproject/node_modules/.staging/@angular/cli-c1e44b05/models/analytics.d.ts :: WatchInfo: /user/username/projects/myproject 1 undefined Config: /user/username/projects/myproject/tsconfig.json WatchType: Wild card directory -Info 106 [16:02:47.000] Project: /user/username/projects/myproject/tsconfig.json Detected ignored path: /user/username/projects/myproject/node_modules/.staging/@angular/cli-c1e44b05/models/analytics.d.ts -Info 107 [16:02:48.000] Elapsed:: *ms DirectoryWatcher:: Triggered with /user/username/projects/myproject/node_modules/.staging/@angular/cli-c1e44b05/models/analytics.d.ts :: WatchInfo: /user/username/projects/myproject 1 undefined Config: /user/username/projects/myproject/tsconfig.json WatchType: Wild card directory -Info 108 [16:02:52.000] DirectoryWatcher:: Triggered with /user/username/projects/myproject/node_modules/.staging/@angular/core-0963aebf :: WatchInfo: /user/username/projects/myproject/node_modules 1 undefined Project: /user/username/projects/myproject/tsconfig.json WatchType: Failed Lookup Locations -Info 109 [16:02:53.000] Elapsed:: *ms DirectoryWatcher:: Triggered with /user/username/projects/myproject/node_modules/.staging/@angular/core-0963aebf :: WatchInfo: /user/username/projects/myproject/node_modules 1 undefined Project: /user/username/projects/myproject/tsconfig.json WatchType: Failed Lookup Locations -Info 110 [16:02:54.000] DirectoryWatcher:: Triggered with /user/username/projects/myproject/node_modules/.staging/@angular/core-0963aebf :: WatchInfo: /user/username/projects/myproject 1 undefined Config: /user/username/projects/myproject/tsconfig.json WatchType: Wild card directory -Info 111 [16:02:55.000] Project: /user/username/projects/myproject/tsconfig.json Detected ignored path: /user/username/projects/myproject/node_modules/.staging/@angular/core-0963aebf -Info 112 [16:02:56.000] Elapsed:: *ms DirectoryWatcher:: Triggered with /user/username/projects/myproject/node_modules/.staging/@angular/core-0963aebf :: WatchInfo: /user/username/projects/myproject 1 undefined Config: /user/username/projects/myproject/tsconfig.json WatchType: Wild card directory -Info 113 [16:02:58.000] DirectoryWatcher:: Triggered with /user/username/projects/myproject/node_modules/.staging/@angular/core-0963aebf/index.d.ts :: WatchInfo: /user/username/projects/myproject/node_modules 1 undefined Project: /user/username/projects/myproject/tsconfig.json WatchType: Failed Lookup Locations -Info 114 [16:02:59.000] Elapsed:: *ms DirectoryWatcher:: Triggered with /user/username/projects/myproject/node_modules/.staging/@angular/core-0963aebf/index.d.ts :: WatchInfo: /user/username/projects/myproject/node_modules 1 undefined Project: /user/username/projects/myproject/tsconfig.json WatchType: Failed Lookup Locations -Info 115 [16:03:00.000] DirectoryWatcher:: Triggered with /user/username/projects/myproject/node_modules/.staging/@angular/core-0963aebf/index.d.ts :: WatchInfo: /user/username/projects/myproject 1 undefined Config: /user/username/projects/myproject/tsconfig.json WatchType: Wild card directory -Info 116 [16:03:01.000] Project: /user/username/projects/myproject/tsconfig.json Detected ignored path: /user/username/projects/myproject/node_modules/.staging/@angular/core-0963aebf/index.d.ts -Info 117 [16:03:02.000] Elapsed:: *ms DirectoryWatcher:: Triggered with /user/username/projects/myproject/node_modules/.staging/@angular/core-0963aebf/index.d.ts :: WatchInfo: /user/username/projects/myproject 1 undefined Config: /user/username/projects/myproject/tsconfig.json WatchType: Wild card directory +Info 83 [00:02:16.000] DirectoryWatcher:: Triggered with /user/username/projects/myproject/node_modules/.staging/@angular :: WatchInfo: /user/username/projects/myproject/node_modules 1 undefined Project: /user/username/projects/myproject/tsconfig.json WatchType: Failed Lookup Locations +Info 84 [00:02:17.000] Elapsed:: *ms DirectoryWatcher:: Triggered with /user/username/projects/myproject/node_modules/.staging/@angular :: WatchInfo: /user/username/projects/myproject/node_modules 1 undefined Project: /user/username/projects/myproject/tsconfig.json WatchType: Failed Lookup Locations +Info 85 [00:02:18.000] DirectoryWatcher:: Triggered with /user/username/projects/myproject/node_modules/.staging/@angular :: WatchInfo: /user/username/projects/myproject 1 undefined Config: /user/username/projects/myproject/tsconfig.json WatchType: Wild card directory +Info 86 [00:02:19.000] Project: /user/username/projects/myproject/tsconfig.json Detected ignored path: /user/username/projects/myproject/node_modules/.staging/@angular +Info 87 [00:02:20.000] Elapsed:: *ms DirectoryWatcher:: Triggered with /user/username/projects/myproject/node_modules/.staging/@angular :: WatchInfo: /user/username/projects/myproject 1 undefined Config: /user/username/projects/myproject/tsconfig.json WatchType: Wild card directory +Info 88 [00:02:23.000] DirectoryWatcher:: Triggered with /user/username/projects/myproject/node_modules/.staging/@angular/platform-browser-dynamic-5efaaa1a :: WatchInfo: /user/username/projects/myproject/node_modules 1 undefined Project: /user/username/projects/myproject/tsconfig.json WatchType: Failed Lookup Locations +Info 89 [00:02:24.000] Elapsed:: *ms DirectoryWatcher:: Triggered with /user/username/projects/myproject/node_modules/.staging/@angular/platform-browser-dynamic-5efaaa1a :: WatchInfo: /user/username/projects/myproject/node_modules 1 undefined Project: /user/username/projects/myproject/tsconfig.json WatchType: Failed Lookup Locations +Info 90 [00:02:25.000] DirectoryWatcher:: Triggered with /user/username/projects/myproject/node_modules/.staging/@angular/platform-browser-dynamic-5efaaa1a :: WatchInfo: /user/username/projects/myproject 1 undefined Config: /user/username/projects/myproject/tsconfig.json WatchType: Wild card directory +Info 91 [00:02:26.000] Project: /user/username/projects/myproject/tsconfig.json Detected ignored path: /user/username/projects/myproject/node_modules/.staging/@angular/platform-browser-dynamic-5efaaa1a +Info 92 [00:02:27.000] Elapsed:: *ms DirectoryWatcher:: Triggered with /user/username/projects/myproject/node_modules/.staging/@angular/platform-browser-dynamic-5efaaa1a :: WatchInfo: /user/username/projects/myproject 1 undefined Config: /user/username/projects/myproject/tsconfig.json WatchType: Wild card directory +Info 93 [00:02:32.000] DirectoryWatcher:: Triggered with /user/username/projects/myproject/node_modules/.staging/@angular/cli-c1e44b05 :: WatchInfo: /user/username/projects/myproject/node_modules 1 undefined Project: /user/username/projects/myproject/tsconfig.json WatchType: Failed Lookup Locations +Info 94 [00:02:33.000] Elapsed:: *ms DirectoryWatcher:: Triggered with /user/username/projects/myproject/node_modules/.staging/@angular/cli-c1e44b05 :: WatchInfo: /user/username/projects/myproject/node_modules 1 undefined Project: /user/username/projects/myproject/tsconfig.json WatchType: Failed Lookup Locations +Info 95 [00:02:34.000] DirectoryWatcher:: Triggered with /user/username/projects/myproject/node_modules/.staging/@angular/cli-c1e44b05 :: WatchInfo: /user/username/projects/myproject 1 undefined Config: /user/username/projects/myproject/tsconfig.json WatchType: Wild card directory +Info 96 [00:02:35.000] Project: /user/username/projects/myproject/tsconfig.json Detected ignored path: /user/username/projects/myproject/node_modules/.staging/@angular/cli-c1e44b05 +Info 97 [00:02:36.000] Elapsed:: *ms DirectoryWatcher:: Triggered with /user/username/projects/myproject/node_modules/.staging/@angular/cli-c1e44b05 :: WatchInfo: /user/username/projects/myproject 1 undefined Config: /user/username/projects/myproject/tsconfig.json WatchType: Wild card directory +Info 98 [00:02:38.000] DirectoryWatcher:: Triggered with /user/username/projects/myproject/node_modules/.staging/@angular/cli-c1e44b05/models :: WatchInfo: /user/username/projects/myproject/node_modules 1 undefined Project: /user/username/projects/myproject/tsconfig.json WatchType: Failed Lookup Locations +Info 99 [00:02:39.000] Elapsed:: *ms DirectoryWatcher:: Triggered with /user/username/projects/myproject/node_modules/.staging/@angular/cli-c1e44b05/models :: WatchInfo: /user/username/projects/myproject/node_modules 1 undefined Project: /user/username/projects/myproject/tsconfig.json WatchType: Failed Lookup Locations +Info 100 [00:02:40.000] DirectoryWatcher:: Triggered with /user/username/projects/myproject/node_modules/.staging/@angular/cli-c1e44b05/models :: WatchInfo: /user/username/projects/myproject 1 undefined Config: /user/username/projects/myproject/tsconfig.json WatchType: Wild card directory +Info 101 [00:02:41.000] Project: /user/username/projects/myproject/tsconfig.json Detected ignored path: /user/username/projects/myproject/node_modules/.staging/@angular/cli-c1e44b05/models +Info 102 [00:02:42.000] Elapsed:: *ms DirectoryWatcher:: Triggered with /user/username/projects/myproject/node_modules/.staging/@angular/cli-c1e44b05/models :: WatchInfo: /user/username/projects/myproject 1 undefined Config: /user/username/projects/myproject/tsconfig.json WatchType: Wild card directory +Info 103 [00:02:44.000] DirectoryWatcher:: Triggered with /user/username/projects/myproject/node_modules/.staging/@angular/cli-c1e44b05/models/analytics.d.ts :: WatchInfo: /user/username/projects/myproject/node_modules 1 undefined Project: /user/username/projects/myproject/tsconfig.json WatchType: Failed Lookup Locations +Info 104 [00:02:45.000] Elapsed:: *ms DirectoryWatcher:: Triggered with /user/username/projects/myproject/node_modules/.staging/@angular/cli-c1e44b05/models/analytics.d.ts :: WatchInfo: /user/username/projects/myproject/node_modules 1 undefined Project: /user/username/projects/myproject/tsconfig.json WatchType: Failed Lookup Locations +Info 105 [00:02:46.000] DirectoryWatcher:: Triggered with /user/username/projects/myproject/node_modules/.staging/@angular/cli-c1e44b05/models/analytics.d.ts :: WatchInfo: /user/username/projects/myproject 1 undefined Config: /user/username/projects/myproject/tsconfig.json WatchType: Wild card directory +Info 106 [00:02:47.000] Project: /user/username/projects/myproject/tsconfig.json Detected ignored path: /user/username/projects/myproject/node_modules/.staging/@angular/cli-c1e44b05/models/analytics.d.ts +Info 107 [00:02:48.000] Elapsed:: *ms DirectoryWatcher:: Triggered with /user/username/projects/myproject/node_modules/.staging/@angular/cli-c1e44b05/models/analytics.d.ts :: WatchInfo: /user/username/projects/myproject 1 undefined Config: /user/username/projects/myproject/tsconfig.json WatchType: Wild card directory +Info 108 [00:02:52.000] DirectoryWatcher:: Triggered with /user/username/projects/myproject/node_modules/.staging/@angular/core-0963aebf :: WatchInfo: /user/username/projects/myproject/node_modules 1 undefined Project: /user/username/projects/myproject/tsconfig.json WatchType: Failed Lookup Locations +Info 109 [00:02:53.000] Elapsed:: *ms DirectoryWatcher:: Triggered with /user/username/projects/myproject/node_modules/.staging/@angular/core-0963aebf :: WatchInfo: /user/username/projects/myproject/node_modules 1 undefined Project: /user/username/projects/myproject/tsconfig.json WatchType: Failed Lookup Locations +Info 110 [00:02:54.000] DirectoryWatcher:: Triggered with /user/username/projects/myproject/node_modules/.staging/@angular/core-0963aebf :: WatchInfo: /user/username/projects/myproject 1 undefined Config: /user/username/projects/myproject/tsconfig.json WatchType: Wild card directory +Info 111 [00:02:55.000] Project: /user/username/projects/myproject/tsconfig.json Detected ignored path: /user/username/projects/myproject/node_modules/.staging/@angular/core-0963aebf +Info 112 [00:02:56.000] Elapsed:: *ms DirectoryWatcher:: Triggered with /user/username/projects/myproject/node_modules/.staging/@angular/core-0963aebf :: WatchInfo: /user/username/projects/myproject 1 undefined Config: /user/username/projects/myproject/tsconfig.json WatchType: Wild card directory +Info 113 [00:02:58.000] DirectoryWatcher:: Triggered with /user/username/projects/myproject/node_modules/.staging/@angular/core-0963aebf/index.d.ts :: WatchInfo: /user/username/projects/myproject/node_modules 1 undefined Project: /user/username/projects/myproject/tsconfig.json WatchType: Failed Lookup Locations +Info 114 [00:02:59.000] Elapsed:: *ms DirectoryWatcher:: Triggered with /user/username/projects/myproject/node_modules/.staging/@angular/core-0963aebf/index.d.ts :: WatchInfo: /user/username/projects/myproject/node_modules 1 undefined Project: /user/username/projects/myproject/tsconfig.json WatchType: Failed Lookup Locations +Info 115 [00:03:00.000] DirectoryWatcher:: Triggered with /user/username/projects/myproject/node_modules/.staging/@angular/core-0963aebf/index.d.ts :: WatchInfo: /user/username/projects/myproject 1 undefined Config: /user/username/projects/myproject/tsconfig.json WatchType: Wild card directory +Info 116 [00:03:01.000] Project: /user/username/projects/myproject/tsconfig.json Detected ignored path: /user/username/projects/myproject/node_modules/.staging/@angular/core-0963aebf/index.d.ts +Info 117 [00:03:02.000] Elapsed:: *ms DirectoryWatcher:: Triggered with /user/username/projects/myproject/node_modules/.staging/@angular/core-0963aebf/index.d.ts :: WatchInfo: /user/username/projects/myproject 1 undefined Config: /user/username/projects/myproject/tsconfig.json WatchType: Wild card directory Before checking timeout queue length (0) and running //// [/user/username/projects/myproject/node_modules/.staging/@angular/cli-c1e44b05/models/analytics.d.ts] export const x = 10; @@ -699,7 +699,7 @@ FsWatchesRecursive:: /user/username/projects/myproject/node_modules: {} -Info 118 [16:03:03.000] request: +Info 118 [00:03:03.000] request: { "command": "geterr", "arguments": { @@ -751,7 +751,7 @@ FsWatchesRecursive:: /user/username/projects/myproject/node_modules: {} -Info 119 [16:03:04.000] response: +Info 119 [00:03:04.000] response: { "responseRequired": false } @@ -775,7 +775,7 @@ FsWatchesRecursive:: /user/username/projects/myproject/node_modules: {} -Info 120 [16:03:05.000] event: +Info 120 [00:03:05.000] event: {"seq":0,"type":"event","event":"syntaxDiag","body":{"file":"/user/username/projects/myproject/src/main.ts","diagnostics":[]}} After checking timeout queue length (1) and running @@ -817,7 +817,7 @@ FsWatchesRecursive:: /user/username/projects/myproject/node_modules: {} -Info 121 [16:03:06.000] event: +Info 121 [00:03:06.000] event: {"seq":0,"type":"event","event":"semanticDiag","body":{"file":"/user/username/projects/myproject/src/main.ts","diagnostics":[{"start":{"line":1,"offset":21},"end":{"line":1,"offset":36},"text":"Cannot find module '@angular/core' or its corresponding type declarations.","code":2307,"category":"error"}]}} Before running immediate callbacks and checking length (1) @@ -859,9 +859,9 @@ FsWatchesRecursive:: /user/username/projects/myproject/node_modules: {} -Info 122 [16:03:07.000] event: +Info 122 [00:03:07.000] event: {"seq":0,"type":"event","event":"suggestionDiag","body":{"file":"/user/username/projects/myproject/src/main.ts","diagnostics":[]}} -Info 123 [16:03:08.000] event: +Info 123 [00:03:08.000] event: {"seq":0,"type":"event","event":"requestCompleted","body":{"request_seq":3}} Before running immediate callbacks and checking length (1) @@ -926,7 +926,7 @@ FsWatchesRecursive:: /user/username/projects/myproject/node_modules: {} -Info 124 [16:03:15.000] request: +Info 124 [00:03:15.000] request: { "command": "geterr", "arguments": { @@ -978,7 +978,7 @@ FsWatchesRecursive:: /user/username/projects/myproject/node_modules: {} -Info 125 [16:03:16.000] response: +Info 125 [00:03:16.000] response: { "responseRequired": false } @@ -1002,7 +1002,7 @@ FsWatchesRecursive:: /user/username/projects/myproject/node_modules: {} -Info 126 [16:03:17.000] event: +Info 126 [00:03:17.000] event: {"seq":0,"type":"event","event":"syntaxDiag","body":{"file":"/user/username/projects/myproject/src/main.ts","diagnostics":[]}} After checking timeout queue length (1) and running @@ -1044,7 +1044,7 @@ FsWatchesRecursive:: /user/username/projects/myproject/node_modules: {} -Info 127 [16:03:18.000] event: +Info 127 [00:03:18.000] event: {"seq":0,"type":"event","event":"semanticDiag","body":{"file":"/user/username/projects/myproject/src/main.ts","diagnostics":[{"start":{"line":1,"offset":21},"end":{"line":1,"offset":36},"text":"Cannot find module '@angular/core' or its corresponding type declarations.","code":2307,"category":"error"}]}} Before running immediate callbacks and checking length (1) @@ -1086,9 +1086,9 @@ FsWatchesRecursive:: /user/username/projects/myproject/node_modules: {} -Info 128 [16:03:19.000] event: +Info 128 [00:03:19.000] event: {"seq":0,"type":"event","event":"suggestionDiag","body":{"file":"/user/username/projects/myproject/src/main.ts","diagnostics":[]}} -Info 129 [16:03:20.000] event: +Info 129 [00:03:20.000] event: {"seq":0,"type":"event","event":"requestCompleted","body":{"request_seq":4}} Before running immediate callbacks and checking length (1) @@ -1110,63 +1110,63 @@ FsWatchesRecursive:: /user/username/projects/myproject/node_modules: {} -Info 130 [16:03:22.000] DirectoryWatcher:: Triggered with /user/username/projects/myproject/node_modules/.staging/@angular/cli-c1e44b05/models/analytics.d.ts :: WatchInfo: /user/username/projects/myproject/node_modules 1 undefined Project: /user/username/projects/myproject/tsconfig.json WatchType: Failed Lookup Locations -Info 131 [16:03:23.000] Elapsed:: *ms DirectoryWatcher:: Triggered with /user/username/projects/myproject/node_modules/.staging/@angular/cli-c1e44b05/models/analytics.d.ts :: WatchInfo: /user/username/projects/myproject/node_modules 1 undefined Project: /user/username/projects/myproject/tsconfig.json WatchType: Failed Lookup Locations -Info 132 [16:03:24.000] DirectoryWatcher:: Triggered with /user/username/projects/myproject/node_modules/.staging/@angular/cli-c1e44b05/models/analytics.d.ts :: WatchInfo: /user/username/projects/myproject 1 undefined Config: /user/username/projects/myproject/tsconfig.json WatchType: Wild card directory -Info 133 [16:03:25.000] Project: /user/username/projects/myproject/tsconfig.json Detected ignored path: /user/username/projects/myproject/node_modules/.staging/@angular/cli-c1e44b05/models/analytics.d.ts -Info 134 [16:03:26.000] Elapsed:: *ms DirectoryWatcher:: Triggered with /user/username/projects/myproject/node_modules/.staging/@angular/cli-c1e44b05/models/analytics.d.ts :: WatchInfo: /user/username/projects/myproject 1 undefined Config: /user/username/projects/myproject/tsconfig.json WatchType: Wild card directory -Info 135 [16:03:28.000] DirectoryWatcher:: Triggered with /user/username/projects/myproject/node_modules/.staging/@angular/cli-c1e44b05/models :: WatchInfo: /user/username/projects/myproject/node_modules 1 undefined Project: /user/username/projects/myproject/tsconfig.json WatchType: Failed Lookup Locations -Info 136 [16:03:29.000] Elapsed:: *ms DirectoryWatcher:: Triggered with /user/username/projects/myproject/node_modules/.staging/@angular/cli-c1e44b05/models :: WatchInfo: /user/username/projects/myproject/node_modules 1 undefined Project: /user/username/projects/myproject/tsconfig.json WatchType: Failed Lookup Locations -Info 137 [16:03:30.000] DirectoryWatcher:: Triggered with /user/username/projects/myproject/node_modules/.staging/@angular/cli-c1e44b05/models :: WatchInfo: /user/username/projects/myproject 1 undefined Config: /user/username/projects/myproject/tsconfig.json WatchType: Wild card directory -Info 138 [16:03:31.000] Project: /user/username/projects/myproject/tsconfig.json Detected ignored path: /user/username/projects/myproject/node_modules/.staging/@angular/cli-c1e44b05/models -Info 139 [16:03:32.000] Elapsed:: *ms DirectoryWatcher:: Triggered with /user/username/projects/myproject/node_modules/.staging/@angular/cli-c1e44b05/models :: WatchInfo: /user/username/projects/myproject 1 undefined Config: /user/username/projects/myproject/tsconfig.json WatchType: Wild card directory -Info 140 [16:03:34.000] DirectoryWatcher:: Triggered with /user/username/projects/myproject/node_modules/.staging/@angular/cli-c1e44b05 :: WatchInfo: /user/username/projects/myproject/node_modules 1 undefined Project: /user/username/projects/myproject/tsconfig.json WatchType: Failed Lookup Locations -Info 141 [16:03:35.000] Elapsed:: *ms DirectoryWatcher:: Triggered with /user/username/projects/myproject/node_modules/.staging/@angular/cli-c1e44b05 :: WatchInfo: /user/username/projects/myproject/node_modules 1 undefined Project: /user/username/projects/myproject/tsconfig.json WatchType: Failed Lookup Locations -Info 142 [16:03:36.000] DirectoryWatcher:: Triggered with /user/username/projects/myproject/node_modules/.staging/@angular/cli-c1e44b05 :: WatchInfo: /user/username/projects/myproject 1 undefined Config: /user/username/projects/myproject/tsconfig.json WatchType: Wild card directory -Info 143 [16:03:37.000] Project: /user/username/projects/myproject/tsconfig.json Detected ignored path: /user/username/projects/myproject/node_modules/.staging/@angular/cli-c1e44b05 -Info 144 [16:03:38.000] Elapsed:: *ms DirectoryWatcher:: Triggered with /user/username/projects/myproject/node_modules/.staging/@angular/cli-c1e44b05 :: WatchInfo: /user/username/projects/myproject 1 undefined Config: /user/username/projects/myproject/tsconfig.json WatchType: Wild card directory -Info 145 [16:03:40.000] DirectoryWatcher:: Triggered with /user/username/projects/myproject/node_modules/.staging/@angular/core-0963aebf/index.d.ts :: WatchInfo: /user/username/projects/myproject/node_modules 1 undefined Project: /user/username/projects/myproject/tsconfig.json WatchType: Failed Lookup Locations -Info 146 [16:03:41.000] Elapsed:: *ms DirectoryWatcher:: Triggered with /user/username/projects/myproject/node_modules/.staging/@angular/core-0963aebf/index.d.ts :: WatchInfo: /user/username/projects/myproject/node_modules 1 undefined Project: /user/username/projects/myproject/tsconfig.json WatchType: Failed Lookup Locations -Info 147 [16:03:42.000] DirectoryWatcher:: Triggered with /user/username/projects/myproject/node_modules/.staging/@angular/core-0963aebf/index.d.ts :: WatchInfo: /user/username/projects/myproject 1 undefined Config: /user/username/projects/myproject/tsconfig.json WatchType: Wild card directory -Info 148 [16:03:43.000] Project: /user/username/projects/myproject/tsconfig.json Detected ignored path: /user/username/projects/myproject/node_modules/.staging/@angular/core-0963aebf/index.d.ts -Info 149 [16:03:44.000] Elapsed:: *ms DirectoryWatcher:: Triggered with /user/username/projects/myproject/node_modules/.staging/@angular/core-0963aebf/index.d.ts :: WatchInfo: /user/username/projects/myproject 1 undefined Config: /user/username/projects/myproject/tsconfig.json WatchType: Wild card directory -Info 150 [16:03:46.000] DirectoryWatcher:: Triggered with /user/username/projects/myproject/node_modules/.staging/@angular/core-0963aebf :: WatchInfo: /user/username/projects/myproject/node_modules 1 undefined Project: /user/username/projects/myproject/tsconfig.json WatchType: Failed Lookup Locations -Info 151 [16:03:47.000] Elapsed:: *ms DirectoryWatcher:: Triggered with /user/username/projects/myproject/node_modules/.staging/@angular/core-0963aebf :: WatchInfo: /user/username/projects/myproject/node_modules 1 undefined Project: /user/username/projects/myproject/tsconfig.json WatchType: Failed Lookup Locations -Info 152 [16:03:48.000] DirectoryWatcher:: Triggered with /user/username/projects/myproject/node_modules/.staging/@angular/core-0963aebf :: WatchInfo: /user/username/projects/myproject 1 undefined Config: /user/username/projects/myproject/tsconfig.json WatchType: Wild card directory -Info 153 [16:03:49.000] Project: /user/username/projects/myproject/tsconfig.json Detected ignored path: /user/username/projects/myproject/node_modules/.staging/@angular/core-0963aebf -Info 154 [16:03:50.000] Elapsed:: *ms DirectoryWatcher:: Triggered with /user/username/projects/myproject/node_modules/.staging/@angular/core-0963aebf :: WatchInfo: /user/username/projects/myproject 1 undefined Config: /user/username/projects/myproject/tsconfig.json WatchType: Wild card directory -Info 155 [16:03:52.000] DirectoryWatcher:: Triggered with /user/username/projects/myproject/node_modules/.staging/@angular/platform-browser-dynamic-5efaaa1a :: WatchInfo: /user/username/projects/myproject/node_modules 1 undefined Project: /user/username/projects/myproject/tsconfig.json WatchType: Failed Lookup Locations -Info 156 [16:03:53.000] Elapsed:: *ms DirectoryWatcher:: Triggered with /user/username/projects/myproject/node_modules/.staging/@angular/platform-browser-dynamic-5efaaa1a :: WatchInfo: /user/username/projects/myproject/node_modules 1 undefined Project: /user/username/projects/myproject/tsconfig.json WatchType: Failed Lookup Locations -Info 157 [16:03:54.000] DirectoryWatcher:: Triggered with /user/username/projects/myproject/node_modules/.staging/@angular/platform-browser-dynamic-5efaaa1a :: WatchInfo: /user/username/projects/myproject 1 undefined Config: /user/username/projects/myproject/tsconfig.json WatchType: Wild card directory -Info 158 [16:03:55.000] Project: /user/username/projects/myproject/tsconfig.json Detected ignored path: /user/username/projects/myproject/node_modules/.staging/@angular/platform-browser-dynamic-5efaaa1a -Info 159 [16:03:56.000] Elapsed:: *ms DirectoryWatcher:: Triggered with /user/username/projects/myproject/node_modules/.staging/@angular/platform-browser-dynamic-5efaaa1a :: WatchInfo: /user/username/projects/myproject 1 undefined Config: /user/username/projects/myproject/tsconfig.json WatchType: Wild card directory -Info 160 [16:03:58.000] DirectoryWatcher:: Triggered with /user/username/projects/myproject/node_modules/.staging/@angular :: WatchInfo: /user/username/projects/myproject/node_modules 1 undefined Project: /user/username/projects/myproject/tsconfig.json WatchType: Failed Lookup Locations -Info 161 [16:03:59.000] Elapsed:: *ms DirectoryWatcher:: Triggered with /user/username/projects/myproject/node_modules/.staging/@angular :: WatchInfo: /user/username/projects/myproject/node_modules 1 undefined Project: /user/username/projects/myproject/tsconfig.json WatchType: Failed Lookup Locations -Info 162 [16:04:00.000] DirectoryWatcher:: Triggered with /user/username/projects/myproject/node_modules/.staging/@angular :: WatchInfo: /user/username/projects/myproject 1 undefined Config: /user/username/projects/myproject/tsconfig.json WatchType: Wild card directory -Info 163 [16:04:01.000] Project: /user/username/projects/myproject/tsconfig.json Detected ignored path: /user/username/projects/myproject/node_modules/.staging/@angular -Info 164 [16:04:02.000] Elapsed:: *ms DirectoryWatcher:: Triggered with /user/username/projects/myproject/node_modules/.staging/@angular :: WatchInfo: /user/username/projects/myproject 1 undefined Config: /user/username/projects/myproject/tsconfig.json WatchType: Wild card directory -Info 165 [16:04:04.000] DirectoryWatcher:: Triggered with /user/username/projects/myproject/node_modules/.staging/@babel/helper-plugin-utils-a06c629f :: WatchInfo: /user/username/projects/myproject/node_modules 1 undefined Project: /user/username/projects/myproject/tsconfig.json WatchType: Failed Lookup Locations -Info 166 [16:04:05.000] Elapsed:: *ms DirectoryWatcher:: Triggered with /user/username/projects/myproject/node_modules/.staging/@babel/helper-plugin-utils-a06c629f :: WatchInfo: /user/username/projects/myproject/node_modules 1 undefined Project: /user/username/projects/myproject/tsconfig.json WatchType: Failed Lookup Locations -Info 167 [16:04:06.000] DirectoryWatcher:: Triggered with /user/username/projects/myproject/node_modules/.staging/@babel/helper-plugin-utils-a06c629f :: WatchInfo: /user/username/projects/myproject 1 undefined Config: /user/username/projects/myproject/tsconfig.json WatchType: Wild card directory -Info 168 [16:04:07.000] Project: /user/username/projects/myproject/tsconfig.json Detected ignored path: /user/username/projects/myproject/node_modules/.staging/@babel/helper-plugin-utils-a06c629f -Info 169 [16:04:08.000] Elapsed:: *ms DirectoryWatcher:: Triggered with /user/username/projects/myproject/node_modules/.staging/@babel/helper-plugin-utils-a06c629f :: WatchInfo: /user/username/projects/myproject 1 undefined Config: /user/username/projects/myproject/tsconfig.json WatchType: Wild card directory -Info 170 [16:04:10.000] DirectoryWatcher:: Triggered with /user/username/projects/myproject/node_modules/.staging/@babel :: WatchInfo: /user/username/projects/myproject/node_modules 1 undefined Project: /user/username/projects/myproject/tsconfig.json WatchType: Failed Lookup Locations -Info 171 [16:04:11.000] Elapsed:: *ms DirectoryWatcher:: Triggered with /user/username/projects/myproject/node_modules/.staging/@babel :: WatchInfo: /user/username/projects/myproject/node_modules 1 undefined Project: /user/username/projects/myproject/tsconfig.json WatchType: Failed Lookup Locations -Info 172 [16:04:12.000] DirectoryWatcher:: Triggered with /user/username/projects/myproject/node_modules/.staging/@babel :: WatchInfo: /user/username/projects/myproject 1 undefined Config: /user/username/projects/myproject/tsconfig.json WatchType: Wild card directory -Info 173 [16:04:13.000] Project: /user/username/projects/myproject/tsconfig.json Detected ignored path: /user/username/projects/myproject/node_modules/.staging/@babel -Info 174 [16:04:14.000] Elapsed:: *ms DirectoryWatcher:: Triggered with /user/username/projects/myproject/node_modules/.staging/@babel :: WatchInfo: /user/username/projects/myproject 1 undefined Config: /user/username/projects/myproject/tsconfig.json WatchType: Wild card directory -Info 175 [16:04:16.000] DirectoryWatcher:: Triggered with /user/username/projects/myproject/node_modules/.staging/core-js-db53158d :: WatchInfo: /user/username/projects/myproject/node_modules 1 undefined Project: /user/username/projects/myproject/tsconfig.json WatchType: Failed Lookup Locations -Info 176 [16:04:17.000] Elapsed:: *ms DirectoryWatcher:: Triggered with /user/username/projects/myproject/node_modules/.staging/core-js-db53158d :: WatchInfo: /user/username/projects/myproject/node_modules 1 undefined Project: /user/username/projects/myproject/tsconfig.json WatchType: Failed Lookup Locations -Info 177 [16:04:18.000] DirectoryWatcher:: Triggered with /user/username/projects/myproject/node_modules/.staging/core-js-db53158d :: WatchInfo: /user/username/projects/myproject 1 undefined Config: /user/username/projects/myproject/tsconfig.json WatchType: Wild card directory -Info 178 [16:04:19.000] Project: /user/username/projects/myproject/tsconfig.json Detected ignored path: /user/username/projects/myproject/node_modules/.staging/core-js-db53158d -Info 179 [16:04:20.000] Elapsed:: *ms DirectoryWatcher:: Triggered with /user/username/projects/myproject/node_modules/.staging/core-js-db53158d :: WatchInfo: /user/username/projects/myproject 1 undefined Config: /user/username/projects/myproject/tsconfig.json WatchType: Wild card directory -Info 180 [16:04:22.000] DirectoryWatcher:: Triggered with /user/username/projects/myproject/node_modules/.staging :: WatchInfo: /user/username/projects/myproject/node_modules 1 undefined Project: /user/username/projects/myproject/tsconfig.json WatchType: Failed Lookup Locations -Info 181 [16:04:23.000] Scheduled: /user/username/projects/myproject/tsconfig.jsonFailedLookupInvalidation -Info 182 [16:04:24.000] Elapsed:: *ms DirectoryWatcher:: Triggered with /user/username/projects/myproject/node_modules/.staging :: WatchInfo: /user/username/projects/myproject/node_modules 1 undefined Project: /user/username/projects/myproject/tsconfig.json WatchType: Failed Lookup Locations -Info 183 [16:04:25.000] DirectoryWatcher:: Triggered with /user/username/projects/myproject/node_modules/.staging :: WatchInfo: /user/username/projects/myproject 1 undefined Config: /user/username/projects/myproject/tsconfig.json WatchType: Wild card directory -Info 184 [16:04:26.000] Scheduled: /user/username/projects/myproject/tsconfig.json -Info 185 [16:04:27.000] Scheduled: *ensureProjectForOpenFiles* -Info 186 [16:04:28.000] Elapsed:: *ms DirectoryWatcher:: Triggered with /user/username/projects/myproject/node_modules/.staging :: WatchInfo: /user/username/projects/myproject 1 undefined Config: /user/username/projects/myproject/tsconfig.json WatchType: Wild card directory +Info 130 [00:03:22.000] DirectoryWatcher:: Triggered with /user/username/projects/myproject/node_modules/.staging/@angular/cli-c1e44b05/models/analytics.d.ts :: WatchInfo: /user/username/projects/myproject/node_modules 1 undefined Project: /user/username/projects/myproject/tsconfig.json WatchType: Failed Lookup Locations +Info 131 [00:03:23.000] Elapsed:: *ms DirectoryWatcher:: Triggered with /user/username/projects/myproject/node_modules/.staging/@angular/cli-c1e44b05/models/analytics.d.ts :: WatchInfo: /user/username/projects/myproject/node_modules 1 undefined Project: /user/username/projects/myproject/tsconfig.json WatchType: Failed Lookup Locations +Info 132 [00:03:24.000] DirectoryWatcher:: Triggered with /user/username/projects/myproject/node_modules/.staging/@angular/cli-c1e44b05/models/analytics.d.ts :: WatchInfo: /user/username/projects/myproject 1 undefined Config: /user/username/projects/myproject/tsconfig.json WatchType: Wild card directory +Info 133 [00:03:25.000] Project: /user/username/projects/myproject/tsconfig.json Detected ignored path: /user/username/projects/myproject/node_modules/.staging/@angular/cli-c1e44b05/models/analytics.d.ts +Info 134 [00:03:26.000] Elapsed:: *ms DirectoryWatcher:: Triggered with /user/username/projects/myproject/node_modules/.staging/@angular/cli-c1e44b05/models/analytics.d.ts :: WatchInfo: /user/username/projects/myproject 1 undefined Config: /user/username/projects/myproject/tsconfig.json WatchType: Wild card directory +Info 135 [00:03:28.000] DirectoryWatcher:: Triggered with /user/username/projects/myproject/node_modules/.staging/@angular/cli-c1e44b05/models :: WatchInfo: /user/username/projects/myproject/node_modules 1 undefined Project: /user/username/projects/myproject/tsconfig.json WatchType: Failed Lookup Locations +Info 136 [00:03:29.000] Elapsed:: *ms DirectoryWatcher:: Triggered with /user/username/projects/myproject/node_modules/.staging/@angular/cli-c1e44b05/models :: WatchInfo: /user/username/projects/myproject/node_modules 1 undefined Project: /user/username/projects/myproject/tsconfig.json WatchType: Failed Lookup Locations +Info 137 [00:03:30.000] DirectoryWatcher:: Triggered with /user/username/projects/myproject/node_modules/.staging/@angular/cli-c1e44b05/models :: WatchInfo: /user/username/projects/myproject 1 undefined Config: /user/username/projects/myproject/tsconfig.json WatchType: Wild card directory +Info 138 [00:03:31.000] Project: /user/username/projects/myproject/tsconfig.json Detected ignored path: /user/username/projects/myproject/node_modules/.staging/@angular/cli-c1e44b05/models +Info 139 [00:03:32.000] Elapsed:: *ms DirectoryWatcher:: Triggered with /user/username/projects/myproject/node_modules/.staging/@angular/cli-c1e44b05/models :: WatchInfo: /user/username/projects/myproject 1 undefined Config: /user/username/projects/myproject/tsconfig.json WatchType: Wild card directory +Info 140 [00:03:34.000] DirectoryWatcher:: Triggered with /user/username/projects/myproject/node_modules/.staging/@angular/cli-c1e44b05 :: WatchInfo: /user/username/projects/myproject/node_modules 1 undefined Project: /user/username/projects/myproject/tsconfig.json WatchType: Failed Lookup Locations +Info 141 [00:03:35.000] Elapsed:: *ms DirectoryWatcher:: Triggered with /user/username/projects/myproject/node_modules/.staging/@angular/cli-c1e44b05 :: WatchInfo: /user/username/projects/myproject/node_modules 1 undefined Project: /user/username/projects/myproject/tsconfig.json WatchType: Failed Lookup Locations +Info 142 [00:03:36.000] DirectoryWatcher:: Triggered with /user/username/projects/myproject/node_modules/.staging/@angular/cli-c1e44b05 :: WatchInfo: /user/username/projects/myproject 1 undefined Config: /user/username/projects/myproject/tsconfig.json WatchType: Wild card directory +Info 143 [00:03:37.000] Project: /user/username/projects/myproject/tsconfig.json Detected ignored path: /user/username/projects/myproject/node_modules/.staging/@angular/cli-c1e44b05 +Info 144 [00:03:38.000] Elapsed:: *ms DirectoryWatcher:: Triggered with /user/username/projects/myproject/node_modules/.staging/@angular/cli-c1e44b05 :: WatchInfo: /user/username/projects/myproject 1 undefined Config: /user/username/projects/myproject/tsconfig.json WatchType: Wild card directory +Info 145 [00:03:40.000] DirectoryWatcher:: Triggered with /user/username/projects/myproject/node_modules/.staging/@angular/core-0963aebf/index.d.ts :: WatchInfo: /user/username/projects/myproject/node_modules 1 undefined Project: /user/username/projects/myproject/tsconfig.json WatchType: Failed Lookup Locations +Info 146 [00:03:41.000] Elapsed:: *ms DirectoryWatcher:: Triggered with /user/username/projects/myproject/node_modules/.staging/@angular/core-0963aebf/index.d.ts :: WatchInfo: /user/username/projects/myproject/node_modules 1 undefined Project: /user/username/projects/myproject/tsconfig.json WatchType: Failed Lookup Locations +Info 147 [00:03:42.000] DirectoryWatcher:: Triggered with /user/username/projects/myproject/node_modules/.staging/@angular/core-0963aebf/index.d.ts :: WatchInfo: /user/username/projects/myproject 1 undefined Config: /user/username/projects/myproject/tsconfig.json WatchType: Wild card directory +Info 148 [00:03:43.000] Project: /user/username/projects/myproject/tsconfig.json Detected ignored path: /user/username/projects/myproject/node_modules/.staging/@angular/core-0963aebf/index.d.ts +Info 149 [00:03:44.000] Elapsed:: *ms DirectoryWatcher:: Triggered with /user/username/projects/myproject/node_modules/.staging/@angular/core-0963aebf/index.d.ts :: WatchInfo: /user/username/projects/myproject 1 undefined Config: /user/username/projects/myproject/tsconfig.json WatchType: Wild card directory +Info 150 [00:03:46.000] DirectoryWatcher:: Triggered with /user/username/projects/myproject/node_modules/.staging/@angular/core-0963aebf :: WatchInfo: /user/username/projects/myproject/node_modules 1 undefined Project: /user/username/projects/myproject/tsconfig.json WatchType: Failed Lookup Locations +Info 151 [00:03:47.000] Elapsed:: *ms DirectoryWatcher:: Triggered with /user/username/projects/myproject/node_modules/.staging/@angular/core-0963aebf :: WatchInfo: /user/username/projects/myproject/node_modules 1 undefined Project: /user/username/projects/myproject/tsconfig.json WatchType: Failed Lookup Locations +Info 152 [00:03:48.000] DirectoryWatcher:: Triggered with /user/username/projects/myproject/node_modules/.staging/@angular/core-0963aebf :: WatchInfo: /user/username/projects/myproject 1 undefined Config: /user/username/projects/myproject/tsconfig.json WatchType: Wild card directory +Info 153 [00:03:49.000] Project: /user/username/projects/myproject/tsconfig.json Detected ignored path: /user/username/projects/myproject/node_modules/.staging/@angular/core-0963aebf +Info 154 [00:03:50.000] Elapsed:: *ms DirectoryWatcher:: Triggered with /user/username/projects/myproject/node_modules/.staging/@angular/core-0963aebf :: WatchInfo: /user/username/projects/myproject 1 undefined Config: /user/username/projects/myproject/tsconfig.json WatchType: Wild card directory +Info 155 [00:03:52.000] DirectoryWatcher:: Triggered with /user/username/projects/myproject/node_modules/.staging/@angular/platform-browser-dynamic-5efaaa1a :: WatchInfo: /user/username/projects/myproject/node_modules 1 undefined Project: /user/username/projects/myproject/tsconfig.json WatchType: Failed Lookup Locations +Info 156 [00:03:53.000] Elapsed:: *ms DirectoryWatcher:: Triggered with /user/username/projects/myproject/node_modules/.staging/@angular/platform-browser-dynamic-5efaaa1a :: WatchInfo: /user/username/projects/myproject/node_modules 1 undefined Project: /user/username/projects/myproject/tsconfig.json WatchType: Failed Lookup Locations +Info 157 [00:03:54.000] DirectoryWatcher:: Triggered with /user/username/projects/myproject/node_modules/.staging/@angular/platform-browser-dynamic-5efaaa1a :: WatchInfo: /user/username/projects/myproject 1 undefined Config: /user/username/projects/myproject/tsconfig.json WatchType: Wild card directory +Info 158 [00:03:55.000] Project: /user/username/projects/myproject/tsconfig.json Detected ignored path: /user/username/projects/myproject/node_modules/.staging/@angular/platform-browser-dynamic-5efaaa1a +Info 159 [00:03:56.000] Elapsed:: *ms DirectoryWatcher:: Triggered with /user/username/projects/myproject/node_modules/.staging/@angular/platform-browser-dynamic-5efaaa1a :: WatchInfo: /user/username/projects/myproject 1 undefined Config: /user/username/projects/myproject/tsconfig.json WatchType: Wild card directory +Info 160 [00:03:58.000] DirectoryWatcher:: Triggered with /user/username/projects/myproject/node_modules/.staging/@angular :: WatchInfo: /user/username/projects/myproject/node_modules 1 undefined Project: /user/username/projects/myproject/tsconfig.json WatchType: Failed Lookup Locations +Info 161 [00:03:59.000] Elapsed:: *ms DirectoryWatcher:: Triggered with /user/username/projects/myproject/node_modules/.staging/@angular :: WatchInfo: /user/username/projects/myproject/node_modules 1 undefined Project: /user/username/projects/myproject/tsconfig.json WatchType: Failed Lookup Locations +Info 162 [00:04:00.000] DirectoryWatcher:: Triggered with /user/username/projects/myproject/node_modules/.staging/@angular :: WatchInfo: /user/username/projects/myproject 1 undefined Config: /user/username/projects/myproject/tsconfig.json WatchType: Wild card directory +Info 163 [00:04:01.000] Project: /user/username/projects/myproject/tsconfig.json Detected ignored path: /user/username/projects/myproject/node_modules/.staging/@angular +Info 164 [00:04:02.000] Elapsed:: *ms DirectoryWatcher:: Triggered with /user/username/projects/myproject/node_modules/.staging/@angular :: WatchInfo: /user/username/projects/myproject 1 undefined Config: /user/username/projects/myproject/tsconfig.json WatchType: Wild card directory +Info 165 [00:04:04.000] DirectoryWatcher:: Triggered with /user/username/projects/myproject/node_modules/.staging/@babel/helper-plugin-utils-a06c629f :: WatchInfo: /user/username/projects/myproject/node_modules 1 undefined Project: /user/username/projects/myproject/tsconfig.json WatchType: Failed Lookup Locations +Info 166 [00:04:05.000] Elapsed:: *ms DirectoryWatcher:: Triggered with /user/username/projects/myproject/node_modules/.staging/@babel/helper-plugin-utils-a06c629f :: WatchInfo: /user/username/projects/myproject/node_modules 1 undefined Project: /user/username/projects/myproject/tsconfig.json WatchType: Failed Lookup Locations +Info 167 [00:04:06.000] DirectoryWatcher:: Triggered with /user/username/projects/myproject/node_modules/.staging/@babel/helper-plugin-utils-a06c629f :: WatchInfo: /user/username/projects/myproject 1 undefined Config: /user/username/projects/myproject/tsconfig.json WatchType: Wild card directory +Info 168 [00:04:07.000] Project: /user/username/projects/myproject/tsconfig.json Detected ignored path: /user/username/projects/myproject/node_modules/.staging/@babel/helper-plugin-utils-a06c629f +Info 169 [00:04:08.000] Elapsed:: *ms DirectoryWatcher:: Triggered with /user/username/projects/myproject/node_modules/.staging/@babel/helper-plugin-utils-a06c629f :: WatchInfo: /user/username/projects/myproject 1 undefined Config: /user/username/projects/myproject/tsconfig.json WatchType: Wild card directory +Info 170 [00:04:10.000] DirectoryWatcher:: Triggered with /user/username/projects/myproject/node_modules/.staging/@babel :: WatchInfo: /user/username/projects/myproject/node_modules 1 undefined Project: /user/username/projects/myproject/tsconfig.json WatchType: Failed Lookup Locations +Info 171 [00:04:11.000] Elapsed:: *ms DirectoryWatcher:: Triggered with /user/username/projects/myproject/node_modules/.staging/@babel :: WatchInfo: /user/username/projects/myproject/node_modules 1 undefined Project: /user/username/projects/myproject/tsconfig.json WatchType: Failed Lookup Locations +Info 172 [00:04:12.000] DirectoryWatcher:: Triggered with /user/username/projects/myproject/node_modules/.staging/@babel :: WatchInfo: /user/username/projects/myproject 1 undefined Config: /user/username/projects/myproject/tsconfig.json WatchType: Wild card directory +Info 173 [00:04:13.000] Project: /user/username/projects/myproject/tsconfig.json Detected ignored path: /user/username/projects/myproject/node_modules/.staging/@babel +Info 174 [00:04:14.000] Elapsed:: *ms DirectoryWatcher:: Triggered with /user/username/projects/myproject/node_modules/.staging/@babel :: WatchInfo: /user/username/projects/myproject 1 undefined Config: /user/username/projects/myproject/tsconfig.json WatchType: Wild card directory +Info 175 [00:04:16.000] DirectoryWatcher:: Triggered with /user/username/projects/myproject/node_modules/.staging/core-js-db53158d :: WatchInfo: /user/username/projects/myproject/node_modules 1 undefined Project: /user/username/projects/myproject/tsconfig.json WatchType: Failed Lookup Locations +Info 176 [00:04:17.000] Elapsed:: *ms DirectoryWatcher:: Triggered with /user/username/projects/myproject/node_modules/.staging/core-js-db53158d :: WatchInfo: /user/username/projects/myproject/node_modules 1 undefined Project: /user/username/projects/myproject/tsconfig.json WatchType: Failed Lookup Locations +Info 177 [00:04:18.000] DirectoryWatcher:: Triggered with /user/username/projects/myproject/node_modules/.staging/core-js-db53158d :: WatchInfo: /user/username/projects/myproject 1 undefined Config: /user/username/projects/myproject/tsconfig.json WatchType: Wild card directory +Info 178 [00:04:19.000] Project: /user/username/projects/myproject/tsconfig.json Detected ignored path: /user/username/projects/myproject/node_modules/.staging/core-js-db53158d +Info 179 [00:04:20.000] Elapsed:: *ms DirectoryWatcher:: Triggered with /user/username/projects/myproject/node_modules/.staging/core-js-db53158d :: WatchInfo: /user/username/projects/myproject 1 undefined Config: /user/username/projects/myproject/tsconfig.json WatchType: Wild card directory +Info 180 [00:04:22.000] DirectoryWatcher:: Triggered with /user/username/projects/myproject/node_modules/.staging :: WatchInfo: /user/username/projects/myproject/node_modules 1 undefined Project: /user/username/projects/myproject/tsconfig.json WatchType: Failed Lookup Locations +Info 181 [00:04:23.000] Scheduled: /user/username/projects/myproject/tsconfig.jsonFailedLookupInvalidation +Info 182 [00:04:24.000] Elapsed:: *ms DirectoryWatcher:: Triggered with /user/username/projects/myproject/node_modules/.staging :: WatchInfo: /user/username/projects/myproject/node_modules 1 undefined Project: /user/username/projects/myproject/tsconfig.json WatchType: Failed Lookup Locations +Info 183 [00:04:25.000] DirectoryWatcher:: Triggered with /user/username/projects/myproject/node_modules/.staging :: WatchInfo: /user/username/projects/myproject 1 undefined Config: /user/username/projects/myproject/tsconfig.json WatchType: Wild card directory +Info 184 [00:04:26.000] Scheduled: /user/username/projects/myproject/tsconfig.json +Info 185 [00:04:27.000] Scheduled: *ensureProjectForOpenFiles* +Info 186 [00:04:28.000] Elapsed:: *ms DirectoryWatcher:: Triggered with /user/username/projects/myproject/node_modules/.staging :: WatchInfo: /user/username/projects/myproject 1 undefined Config: /user/username/projects/myproject/tsconfig.json WatchType: Wild card directory Before checking timeout queue length (3) and running //// [/user/username/projects/myproject/node_modules/.staging/@angular/cli-c1e44b05/models/analytics.d.ts] deleted //// [/user/username/projects/myproject/node_modules/.staging/@angular/core-0963aebf/index.d.ts] deleted @@ -1189,9 +1189,9 @@ FsWatchesRecursive:: /user/username/projects/myproject/node_modules: {} -Info 187 [16:04:29.000] Running: /user/username/projects/myproject/tsconfig.jsonFailedLookupInvalidation -Info 188 [16:04:30.000] Scheduled: /user/username/projects/myproject/tsconfig.json, Cancelled earlier one -Info 189 [16:04:31.000] Scheduled: *ensureProjectForOpenFiles*, Cancelled earlier one +Info 187 [00:04:29.000] Running: /user/username/projects/myproject/tsconfig.jsonFailedLookupInvalidation +Info 188 [00:04:30.000] Scheduled: /user/username/projects/myproject/tsconfig.json, Cancelled earlier one +Info 189 [00:04:31.000] Scheduled: *ensureProjectForOpenFiles*, Cancelled earlier one After checking timeout queue length (3) and running PolledWatches:: @@ -1232,13 +1232,13 @@ FsWatchesRecursive:: /user/username/projects/myproject/node_modules: {} -Info 190 [16:04:32.000] Running: /user/username/projects/myproject/tsconfig.json -Info 191 [16:04:33.000] Starting updateGraphWorker: Project: /user/username/projects/myproject/tsconfig.json -Info 192 [16:04:34.000] 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 193 [16:04:35.000] 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 194 [16:04:36.000] Finishing updateGraphWorker: Project: /user/username/projects/myproject/tsconfig.json Version: 3 structureChanged: true structureIsReused:: SafeModules Elapsed:: *ms -Info 195 [16:04:37.000] Project '/user/username/projects/myproject/tsconfig.json' (Configured) -Info 196 [16:04:38.000] Files (3) +Info 190 [00:04:32.000] Running: /user/username/projects/myproject/tsconfig.json +Info 191 [00:04:33.000] Starting updateGraphWorker: Project: /user/username/projects/myproject/tsconfig.json +Info 192 [00:04:34.000] 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 193 [00:04:35.000] 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 194 [00:04:36.000] Finishing updateGraphWorker: Project: /user/username/projects/myproject/tsconfig.json Version: 3 structureChanged: true structureIsReused:: SafeModules Elapsed:: *ms +Info 195 [00:04:37.000] Project '/user/username/projects/myproject/tsconfig.json' (Configured) +Info 196 [00:04:38.000] Files (3) /a/lib/lib.d.ts /user/username/projects/myproject/node_modules/@angular/core/index.d.ts /user/username/projects/myproject/src/main.ts @@ -1251,26 +1251,26 @@ Info 196 [16:04:38.000] Files (3) src/main.ts Matched by default include pattern '**/*' -Info 197 [16:04:39.000] ----------------------------------------------- -Info 198 [16:04:40.000] Running: *ensureProjectForOpenFiles* -Info 199 [16:04:41.000] Before ensureProjectForOpenFiles: -Info 200 [16:04:42.000] Project '/user/username/projects/myproject/tsconfig.json' (Configured) -Info 200 [16:04:43.000] Files (3) - -Info 200 [16:04:44.000] ----------------------------------------------- -Info 200 [16:04:45.000] Open files: -Info 200 [16:04:46.000] FileName: /user/username/projects/myproject/src/main.ts ProjectRootPath: /user/username/projects/myproject -Info 200 [16:04:47.000] Projects: /user/username/projects/myproject/tsconfig.json -Info 200 [16:04:48.000] After ensureProjectForOpenFiles: -Info 201 [16:04:49.000] Project '/user/username/projects/myproject/tsconfig.json' (Configured) -Info 201 [16:04:50.000] Files (3) - -Info 201 [16:04:51.000] ----------------------------------------------- -Info 201 [16:04:52.000] Open files: -Info 201 [16:04:53.000] FileName: /user/username/projects/myproject/src/main.ts ProjectRootPath: /user/username/projects/myproject -Info 201 [16:04:54.000] Projects: /user/username/projects/myproject/tsconfig.json -Info 201 [16:04:55.000] got projects updated in background, updating diagnostics for /user/username/projects/myproject/src/main.ts -Info 202 [16:04:56.000] event: +Info 197 [00:04:39.000] ----------------------------------------------- +Info 198 [00:04:40.000] Running: *ensureProjectForOpenFiles* +Info 199 [00:04:41.000] Before ensureProjectForOpenFiles: +Info 200 [00:04:42.000] Project '/user/username/projects/myproject/tsconfig.json' (Configured) +Info 200 [00:04:43.000] Files (3) + +Info 200 [00:04:44.000] ----------------------------------------------- +Info 200 [00:04:45.000] Open files: +Info 200 [00:04:46.000] FileName: /user/username/projects/myproject/src/main.ts ProjectRootPath: /user/username/projects/myproject +Info 200 [00:04:47.000] Projects: /user/username/projects/myproject/tsconfig.json +Info 200 [00:04:48.000] After ensureProjectForOpenFiles: +Info 201 [00:04:49.000] Project '/user/username/projects/myproject/tsconfig.json' (Configured) +Info 201 [00:04:50.000] Files (3) + +Info 201 [00:04:51.000] ----------------------------------------------- +Info 201 [00:04:52.000] Open files: +Info 201 [00:04:53.000] FileName: /user/username/projects/myproject/src/main.ts ProjectRootPath: /user/username/projects/myproject +Info 201 [00:04:54.000] Projects: /user/username/projects/myproject/tsconfig.json +Info 201 [00:04:55.000] got projects updated in background, updating diagnostics for /user/username/projects/myproject/src/main.ts +Info 202 [00:04:56.000] event: {"seq":0,"type":"event","event":"projectsUpdatedInBackground","body":{"openFiles":["/user/username/projects/myproject/src/main.ts"]}} After checking timeout queue length (2) and running @@ -1292,7 +1292,7 @@ FsWatchesRecursive:: /user/username/projects/myproject/node_modules: {} -Info 203 [16:04:57.000] request: +Info 203 [00:04:57.000] request: { "command": "geterr", "arguments": { @@ -1344,7 +1344,7 @@ FsWatchesRecursive:: /user/username/projects/myproject/node_modules: {} -Info 204 [16:04:58.000] response: +Info 204 [00:04:58.000] response: { "responseRequired": false } @@ -1368,7 +1368,7 @@ FsWatchesRecursive:: /user/username/projects/myproject/node_modules: {} -Info 205 [16:04:59.000] event: +Info 205 [00:04:59.000] event: {"seq":0,"type":"event","event":"syntaxDiag","body":{"file":"/user/username/projects/myproject/src/main.ts","diagnostics":[]}} After checking timeout queue length (1) and running @@ -1410,7 +1410,7 @@ FsWatchesRecursive:: /user/username/projects/myproject/node_modules: {} -Info 206 [16:05:00.000] event: +Info 206 [00:05:00.000] event: {"seq":0,"type":"event","event":"semanticDiag","body":{"file":"/user/username/projects/myproject/src/main.ts","diagnostics":[]}} Before running immediate callbacks and checking length (1) @@ -1452,9 +1452,9 @@ FsWatchesRecursive:: /user/username/projects/myproject/node_modules: {} -Info 207 [16:05:01.000] event: +Info 207 [00:05:01.000] event: {"seq":0,"type":"event","event":"suggestionDiag","body":{"file":"/user/username/projects/myproject/src/main.ts","diagnostics":[]}} -Info 208 [16:05:02.000] event: +Info 208 [00:05:02.000] event: {"seq":0,"type":"event","event":"requestCompleted","body":{"request_seq":5}} Before running immediate callbacks and checking length (1) 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 88dd99fda1832..cb6ba3b0cf85d 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 @@ -1,5 +1,5 @@ -Info 0 [16:00:33.000] Provided types map file "/a/lib/typesMap.json" doesn't exist -Info 1 [16:00:34.000] request: +Info 0 [00:00:33.000] Provided types map file "/a/lib/typesMap.json" doesn't exist +Info 1 [00:00:34.000] request: { "seq": 0, "type": "request", @@ -39,22 +39,22 @@ FsWatches:: FsWatchesRecursive:: -Info 2 [16:00:35.000] Search path: /user/username/projects/myproject/src/client -Info 3 [16:00:36.000] For info: /user/username/projects/myproject/src/client/app.js :: No config files found. -Info 4 [16:00:37.000] Plugins were requested but not running in environment that supports 'require'. Nothing will be loaded -Info 5 [16:00:38.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/src/client/tsconfig.json 2000 undefined WatchType: Config file for the inferred project root -Info 6 [16:00:39.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/src/client/jsconfig.json 2000 undefined WatchType: Config file for the inferred project root -Info 7 [16:00:40.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/src/tsconfig.json 2000 undefined WatchType: Config file for the inferred project root -Info 8 [16:00:41.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/src/jsconfig.json 2000 undefined WatchType: Config file for the inferred project root -Info 9 [16:00:42.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/tsconfig.json 2000 undefined WatchType: Config file for the inferred project root -Info 10 [16:00:43.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/jsconfig.json 2000 undefined WatchType: Config file for the inferred project root -Info 11 [16:00:44.000] Starting updateGraphWorker: Project: /dev/null/inferredProject1* -Info 12 [16:00:45.000] FileWatcher:: Added:: WatchInfo: /a/lib/lib.d.ts 500 undefined WatchType: Closed Script info -Info 13 [16:00:46.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /dev/null/inferredProject1* WatchType: Type roots -Info 14 [16:00:47.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /dev/null/inferredProject1* WatchType: Type roots -Info 15 [16:00:48.000] Finishing updateGraphWorker: Project: /dev/null/inferredProject1* Version: 1 structureChanged: true structureIsReused:: Not Elapsed:: *ms -Info 16 [16:00:49.000] Project '/dev/null/inferredProject1*' (Inferred) -Info 17 [16:00:50.000] Files (2) +Info 2 [00:00:35.000] Search path: /user/username/projects/myproject/src/client +Info 3 [00:00:36.000] For info: /user/username/projects/myproject/src/client/app.js :: No config files found. +Info 4 [00:00:37.000] Plugins were requested but not running in environment that supports 'require'. Nothing will be loaded +Info 5 [00:00:38.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/src/client/tsconfig.json 2000 undefined WatchType: Config file for the inferred project root +Info 6 [00:00:39.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/src/client/jsconfig.json 2000 undefined WatchType: Config file for the inferred project root +Info 7 [00:00:40.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/src/tsconfig.json 2000 undefined WatchType: Config file for the inferred project root +Info 8 [00:00:41.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/src/jsconfig.json 2000 undefined WatchType: Config file for the inferred project root +Info 9 [00:00:42.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/tsconfig.json 2000 undefined WatchType: Config file for the inferred project root +Info 10 [00:00:43.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/jsconfig.json 2000 undefined WatchType: Config file for the inferred project root +Info 11 [00:00:44.000] Starting updateGraphWorker: Project: /dev/null/inferredProject1* +Info 12 [00:00:45.000] FileWatcher:: Added:: WatchInfo: /a/lib/lib.d.ts 500 undefined WatchType: Closed Script info +Info 13 [00:00:46.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /dev/null/inferredProject1* WatchType: Type roots +Info 14 [00:00:47.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /dev/null/inferredProject1* WatchType: Type roots +Info 15 [00:00:48.000] Finishing updateGraphWorker: Project: /dev/null/inferredProject1* Version: 1 structureChanged: true structureIsReused:: Not Elapsed:: *ms +Info 16 [00:00:49.000] Project '/dev/null/inferredProject1*' (Inferred) +Info 17 [00:00:50.000] Files (2) /a/lib/lib.d.ts /user/username/projects/myproject/src/client/app.js @@ -64,14 +64,14 @@ Info 17 [16:00:50.000] Files (2) src/client/app.js Root file specified for compilation -Info 18 [16:00:51.000] ----------------------------------------------- -Info 19 [16:00:52.000] Project '/dev/null/inferredProject1*' (Inferred) -Info 19 [16:00:53.000] Files (2) +Info 18 [00:00:51.000] ----------------------------------------------- +Info 19 [00:00:52.000] Project '/dev/null/inferredProject1*' (Inferred) +Info 19 [00:00:53.000] Files (2) -Info 19 [16:00:54.000] ----------------------------------------------- -Info 19 [16:00:55.000] Open files: -Info 19 [16:00:56.000] FileName: /user/username/projects/myproject/src/client/app.js ProjectRootPath: /user/username/projects/myproject -Info 19 [16:00:57.000] Projects: /dev/null/inferredProject1* +Info 19 [00:00:54.000] ----------------------------------------------- +Info 19 [00:00:55.000] Open files: +Info 19 [00:00:56.000] FileName: /user/username/projects/myproject/src/client/app.js ProjectRootPath: /user/username/projects/myproject +Info 19 [00:00:57.000] Projects: /dev/null/inferredProject1* After request PolledWatches:: @@ -102,11 +102,11 @@ FsWatchesRecursive:: /user/username/projects/myproject/src: {} -Info 19 [16:00:58.000] response: +Info 19 [00:00:58.000] response: { "responseRequired": false } -Info 20 [16:00:59.000] request: +Info 20 [00:00:59.000] request: { "seq": 0, "type": "request", @@ -146,19 +146,19 @@ FsWatchesRecursive:: /user/username/projects/myproject/src: {} -Info 21 [16:01:00.000] Search path: /user/username/projects/myproject/test/backend -Info 22 [16:01:01.000] For info: /user/username/projects/myproject/test/backend/index.js :: No config files found. -Info 23 [16:01:02.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/test/backend/tsconfig.json 2000 undefined WatchType: Config file for the inferred project root -Info 24 [16:01:03.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/test/backend/jsconfig.json 2000 undefined WatchType: Config file for the inferred project root -Info 25 [16:01:04.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/test/tsconfig.json 2000 undefined WatchType: Config file for the inferred project root -Info 26 [16:01:05.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/test/jsconfig.json 2000 undefined WatchType: Config file for the inferred project root -Info 27 [16:01:06.000] Starting updateGraphWorker: Project: /dev/null/inferredProject1* -Info 28 [16:01:07.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/src 1 undefined Project: /dev/null/inferredProject1* WatchType: Failed Lookup Locations -Info 29 [16:01:08.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/src 1 undefined Project: /dev/null/inferredProject1* WatchType: Failed Lookup Locations -Info 30 [16:01:09.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/src/server/utilities.js 500 undefined WatchType: Closed Script info -Info 31 [16:01:10.000] Finishing updateGraphWorker: Project: /dev/null/inferredProject1* Version: 2 structureChanged: true structureIsReused:: Not Elapsed:: *ms -Info 32 [16:01:11.000] Project '/dev/null/inferredProject1*' (Inferred) -Info 33 [16:01:12.000] Files (4) +Info 21 [00:01:00.000] Search path: /user/username/projects/myproject/test/backend +Info 22 [00:01:01.000] For info: /user/username/projects/myproject/test/backend/index.js :: No config files found. +Info 23 [00:01:02.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/test/backend/tsconfig.json 2000 undefined WatchType: Config file for the inferred project root +Info 24 [00:01:03.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/test/backend/jsconfig.json 2000 undefined WatchType: Config file for the inferred project root +Info 25 [00:01:04.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/test/tsconfig.json 2000 undefined WatchType: Config file for the inferred project root +Info 26 [00:01:05.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/test/jsconfig.json 2000 undefined WatchType: Config file for the inferred project root +Info 27 [00:01:06.000] Starting updateGraphWorker: Project: /dev/null/inferredProject1* +Info 28 [00:01:07.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/src 1 undefined Project: /dev/null/inferredProject1* WatchType: Failed Lookup Locations +Info 29 [00:01:08.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/src 1 undefined Project: /dev/null/inferredProject1* WatchType: Failed Lookup Locations +Info 30 [00:01:09.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/src/server/utilities.js 500 undefined WatchType: Closed Script info +Info 31 [00:01:10.000] Finishing updateGraphWorker: Project: /dev/null/inferredProject1* Version: 2 structureChanged: true structureIsReused:: Not Elapsed:: *ms +Info 32 [00:01:11.000] Project '/dev/null/inferredProject1*' (Inferred) +Info 33 [00:01:12.000] Files (4) /a/lib/lib.d.ts /user/username/projects/myproject/src/client/app.js /user/username/projects/myproject/src/server/utilities.js @@ -174,16 +174,16 @@ Info 33 [16:01:12.000] Files (4) test/backend/index.js Root file specified for compilation -Info 34 [16:01:13.000] ----------------------------------------------- -Info 35 [16:01:14.000] Project '/dev/null/inferredProject1*' (Inferred) -Info 35 [16:01:15.000] Files (4) +Info 34 [00:01:13.000] ----------------------------------------------- +Info 35 [00:01:14.000] Project '/dev/null/inferredProject1*' (Inferred) +Info 35 [00:01:15.000] Files (4) -Info 35 [16:01:16.000] ----------------------------------------------- -Info 35 [16:01:17.000] Open files: -Info 35 [16:01:18.000] FileName: /user/username/projects/myproject/src/client/app.js ProjectRootPath: /user/username/projects/myproject -Info 35 [16:01:19.000] Projects: /dev/null/inferredProject1* -Info 35 [16:01:20.000] FileName: /user/username/projects/myproject/test/backend/index.js ProjectRootPath: /user/username/projects/myproject -Info 35 [16:01:21.000] Projects: /dev/null/inferredProject1* +Info 35 [00:01:16.000] ----------------------------------------------- +Info 35 [00:01:17.000] Open files: +Info 35 [00:01:18.000] FileName: /user/username/projects/myproject/src/client/app.js ProjectRootPath: /user/username/projects/myproject +Info 35 [00:01:19.000] Projects: /dev/null/inferredProject1* +Info 35 [00:01:20.000] FileName: /user/username/projects/myproject/test/backend/index.js ProjectRootPath: /user/username/projects/myproject +Info 35 [00:01:21.000] Projects: /dev/null/inferredProject1* After request PolledWatches:: @@ -226,11 +226,11 @@ FsWatchesRecursive:: /user/username/projects/myproject/test: {} -Info 35 [16:01:22.000] response: +Info 35 [00:01:22.000] response: { "responseRequired": false } -Info 36 [16:01:23.000] request: +Info 36 [00:01:23.000] request: { "command": "geterr", "arguments": { @@ -327,7 +327,7 @@ FsWatchesRecursive:: /user/username/projects/myproject/test: {} -Info 37 [16:01:24.000] response: +Info 37 [00:01:24.000] response: { "responseRequired": false } @@ -373,7 +373,7 @@ FsWatchesRecursive:: /user/username/projects/myproject/test: {} -Info 38 [16:01:25.000] event: +Info 38 [00:01:25.000] event: {"seq":0,"type":"event","event":"syntaxDiag","body":{"file":"/user/username/projects/myproject/test/backend/index.js","diagnostics":[]}} After checking timeout queue length (1) and running @@ -459,7 +459,7 @@ FsWatchesRecursive:: /user/username/projects/myproject/test: {} -Info 39 [16:01:26.000] event: +Info 39 [00:01:26.000] event: {"seq":0,"type":"event","event":"semanticDiag","body":{"file":"/user/username/projects/myproject/test/backend/index.js","diagnostics":[]}} Before running immediate callbacks and checking length (1) @@ -545,7 +545,7 @@ FsWatchesRecursive:: /user/username/projects/myproject/test: {} -Info 40 [16:01:27.000] event: +Info 40 [00:01:27.000] event: {"seq":0,"type":"event","event":"suggestionDiag","body":{"file":"/user/username/projects/myproject/test/backend/index.js","diagnostics":[]}} Before running immediate callbacks and checking length (1) @@ -631,7 +631,7 @@ FsWatchesRecursive:: /user/username/projects/myproject/test: {} -Info 41 [16:01:28.000] event: +Info 41 [00:01:28.000] event: {"seq":0,"type":"event","event":"syntaxDiag","body":{"file":"/user/username/projects/myproject/src/client/app.js","diagnostics":[]}} After checking timeout queue length (1) and running @@ -717,7 +717,7 @@ FsWatchesRecursive:: /user/username/projects/myproject/test: {} -Info 42 [16:01:29.000] event: +Info 42 [00:01:29.000] event: {"seq":0,"type":"event","event":"semanticDiag","body":{"file":"/user/username/projects/myproject/src/client/app.js","diagnostics":[]}} Before running immediate callbacks and checking length (1) @@ -803,9 +803,9 @@ FsWatchesRecursive:: /user/username/projects/myproject/test: {} -Info 43 [16:01:30.000] event: +Info 43 [00:01:30.000] event: {"seq":0,"type":"event","event":"suggestionDiag","body":{"file":"/user/username/projects/myproject/src/client/app.js","diagnostics":[]}} -Info 44 [16:01:31.000] event: +Info 44 [00:01:31.000] event: {"seq":0,"type":"event","event":"requestCompleted","body":{"request_seq":1}} Before running immediate callbacks and checking length (1) @@ -849,7 +849,7 @@ FsWatchesRecursive:: /user/username/projects/myproject/test: {} -Info 45 [16:01:32.000] request: +Info 45 [00:01:32.000] request: { "seq": 0, "type": "request", @@ -900,18 +900,18 @@ FsWatchesRecursive:: /user/username/projects/myproject/test: {} -Info 46 [16:01:33.000] FileWatcher:: Close:: WatchInfo: /user/username/projects/myproject/test/backend/tsconfig.json 2000 undefined WatchType: Config file for the inferred project root -Info 47 [16:01:34.000] FileWatcher:: Close:: WatchInfo: /user/username/projects/myproject/test/backend/jsconfig.json 2000 undefined WatchType: Config file for the inferred project root -Info 48 [16:01:35.000] FileWatcher:: Close:: WatchInfo: /user/username/projects/myproject/test/tsconfig.json 2000 undefined WatchType: Config file for the inferred project root -Info 49 [16:01:36.000] FileWatcher:: Close:: WatchInfo: /user/username/projects/myproject/test/jsconfig.json 2000 undefined WatchType: Config file for the inferred project root -Info 50 [16:01:37.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/test/backend/index.js 500 undefined WatchType: Closed Script info -Info 51 [16:01:38.000] Project '/dev/null/inferredProject1*' (Inferred) -Info 51 [16:01:39.000] Files (4) +Info 46 [00:01:33.000] FileWatcher:: Close:: WatchInfo: /user/username/projects/myproject/test/backend/tsconfig.json 2000 undefined WatchType: Config file for the inferred project root +Info 47 [00:01:34.000] FileWatcher:: Close:: WatchInfo: /user/username/projects/myproject/test/backend/jsconfig.json 2000 undefined WatchType: Config file for the inferred project root +Info 48 [00:01:35.000] FileWatcher:: Close:: WatchInfo: /user/username/projects/myproject/test/tsconfig.json 2000 undefined WatchType: Config file for the inferred project root +Info 49 [00:01:36.000] FileWatcher:: Close:: WatchInfo: /user/username/projects/myproject/test/jsconfig.json 2000 undefined WatchType: Config file for the inferred project root +Info 50 [00:01:37.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/test/backend/index.js 500 undefined WatchType: Closed Script info +Info 51 [00:01:38.000] Project '/dev/null/inferredProject1*' (Inferred) +Info 51 [00:01:39.000] Files (4) -Info 51 [16:01:40.000] ----------------------------------------------- -Info 51 [16:01:41.000] Open files: -Info 51 [16:01:42.000] FileName: /user/username/projects/myproject/src/client/app.js ProjectRootPath: /user/username/projects/myproject -Info 51 [16:01:43.000] Projects: /dev/null/inferredProject1* +Info 51 [00:01:40.000] ----------------------------------------------- +Info 51 [00:01:41.000] Open files: +Info 51 [00:01:42.000] FileName: /user/username/projects/myproject/src/client/app.js ProjectRootPath: /user/username/projects/myproject +Info 51 [00:01:43.000] Projects: /dev/null/inferredProject1* After request PolledWatches:: @@ -948,11 +948,11 @@ FsWatchesRecursive:: /user/username/projects/myproject/test: {} -Info 51 [16:01:44.000] response: +Info 51 [00:01:44.000] response: { "responseRequired": false } -Info 52 [16:01:45.000] request: +Info 52 [00:01:45.000] request: { "seq": 0, "type": "request", @@ -998,15 +998,15 @@ FsWatchesRecursive:: /user/username/projects/myproject/test: {} -Info 53 [16:01:46.000] FileWatcher:: Close:: WatchInfo: /user/username/projects/myproject/src/server/utilities.js 500 undefined WatchType: Closed Script info -Info 54 [16:01:47.000] Search path: /user/username/projects/myproject/src/server -Info 55 [16:01:48.000] For info: /user/username/projects/myproject/src/server/utilities.js :: No config files found. -Info 56 [16:01:49.000] Starting updateGraphWorker: Project: /dev/null/inferredProject1* -Info 57 [16:01:50.000] DirectoryWatcher:: Close:: WatchInfo: /user/username/projects/myproject/src 1 undefined Project: /dev/null/inferredProject1* WatchType: Failed Lookup Locations -Info 58 [16:01:51.000] Elapsed:: *ms DirectoryWatcher:: Close:: WatchInfo: /user/username/projects/myproject/src 1 undefined Project: /dev/null/inferredProject1* WatchType: Failed Lookup Locations -Info 59 [16:01:52.000] Finishing updateGraphWorker: Project: /dev/null/inferredProject1* Version: 3 structureChanged: true structureIsReused:: Not Elapsed:: *ms -Info 60 [16:01:53.000] Project '/dev/null/inferredProject1*' (Inferred) -Info 61 [16:01:54.000] Files (2) +Info 53 [00:01:46.000] FileWatcher:: Close:: WatchInfo: /user/username/projects/myproject/src/server/utilities.js 500 undefined WatchType: Closed Script info +Info 54 [00:01:47.000] Search path: /user/username/projects/myproject/src/server +Info 55 [00:01:48.000] For info: /user/username/projects/myproject/src/server/utilities.js :: No config files found. +Info 56 [00:01:49.000] Starting updateGraphWorker: Project: /dev/null/inferredProject1* +Info 57 [00:01:50.000] DirectoryWatcher:: Close:: WatchInfo: /user/username/projects/myproject/src 1 undefined Project: /dev/null/inferredProject1* WatchType: Failed Lookup Locations +Info 58 [00:01:51.000] Elapsed:: *ms DirectoryWatcher:: Close:: WatchInfo: /user/username/projects/myproject/src 1 undefined Project: /dev/null/inferredProject1* WatchType: Failed Lookup Locations +Info 59 [00:01:52.000] Finishing updateGraphWorker: Project: /dev/null/inferredProject1* Version: 3 structureChanged: true structureIsReused:: Not Elapsed:: *ms +Info 60 [00:01:53.000] Project '/dev/null/inferredProject1*' (Inferred) +Info 61 [00:01:54.000] Files (2) /a/lib/lib.d.ts /user/username/projects/myproject/src/client/app.js @@ -1016,13 +1016,13 @@ Info 61 [16:01:54.000] Files (2) src/client/app.js Root file specified for compilation -Info 62 [16:01:55.000] ----------------------------------------------- -Info 63 [16:01:56.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/src/server/tsconfig.json 2000 undefined WatchType: Config file for the inferred project root -Info 64 [16:01:57.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/src/server/jsconfig.json 2000 undefined WatchType: Config file for the inferred project root -Info 65 [16:01:58.000] Starting updateGraphWorker: Project: /dev/null/inferredProject1* -Info 66 [16:01:59.000] Finishing updateGraphWorker: Project: /dev/null/inferredProject1* Version: 4 structureChanged: true structureIsReused:: Not Elapsed:: *ms -Info 67 [16:02:00.000] Project '/dev/null/inferredProject1*' (Inferred) -Info 68 [16:02:01.000] Files (3) +Info 62 [00:01:55.000] ----------------------------------------------- +Info 63 [00:01:56.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/src/server/tsconfig.json 2000 undefined WatchType: Config file for the inferred project root +Info 64 [00:01:57.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/src/server/jsconfig.json 2000 undefined WatchType: Config file for the inferred project root +Info 65 [00:01:58.000] Starting updateGraphWorker: Project: /dev/null/inferredProject1* +Info 66 [00:01:59.000] Finishing updateGraphWorker: Project: /dev/null/inferredProject1* Version: 4 structureChanged: true structureIsReused:: Not Elapsed:: *ms +Info 67 [00:02:00.000] Project '/dev/null/inferredProject1*' (Inferred) +Info 68 [00:02:01.000] Files (3) /a/lib/lib.d.ts /user/username/projects/myproject/src/client/app.js /user/username/projects/myproject/src/server/utilities.js @@ -1035,17 +1035,17 @@ Info 68 [16:02:01.000] Files (3) src/server/utilities.js Root file specified for compilation -Info 69 [16:02:02.000] ----------------------------------------------- -Info 70 [16:02:03.000] FileWatcher:: Close:: WatchInfo: /user/username/projects/myproject/test/backend/index.js 500 undefined WatchType: Closed Script info -Info 71 [16:02:04.000] Project '/dev/null/inferredProject1*' (Inferred) -Info 71 [16:02:05.000] Files (3) - -Info 71 [16:02:06.000] ----------------------------------------------- -Info 71 [16:02:07.000] Open files: -Info 71 [16:02:08.000] FileName: /user/username/projects/myproject/src/client/app.js ProjectRootPath: /user/username/projects/myproject -Info 71 [16:02:09.000] Projects: /dev/null/inferredProject1* -Info 71 [16:02:10.000] FileName: /user/username/projects/myproject/src/server/utilities.js ProjectRootPath: /user/username/projects/myproject -Info 71 [16:02:11.000] Projects: /dev/null/inferredProject1* +Info 69 [00:02:02.000] ----------------------------------------------- +Info 70 [00:02:03.000] FileWatcher:: Close:: WatchInfo: /user/username/projects/myproject/test/backend/index.js 500 undefined WatchType: Closed Script info +Info 71 [00:02:04.000] Project '/dev/null/inferredProject1*' (Inferred) +Info 71 [00:02:05.000] Files (3) + +Info 71 [00:02:06.000] ----------------------------------------------- +Info 71 [00:02:07.000] Open files: +Info 71 [00:02:08.000] FileName: /user/username/projects/myproject/src/client/app.js ProjectRootPath: /user/username/projects/myproject +Info 71 [00:02:09.000] Projects: /dev/null/inferredProject1* +Info 71 [00:02:10.000] FileName: /user/username/projects/myproject/src/server/utilities.js ProjectRootPath: /user/username/projects/myproject +Info 71 [00:02:11.000] Projects: /dev/null/inferredProject1* After request PolledWatches:: @@ -1080,11 +1080,11 @@ FsWatchesRecursive:: /user/username/projects/myproject/src: {} -Info 71 [16:02:12.000] response: +Info 71 [00:02:12.000] response: { "responseRequired": false } -Info 72 [16:02:13.000] request: +Info 72 [00:02:13.000] request: { "command": "geterr", "arguments": { @@ -1165,7 +1165,7 @@ FsWatchesRecursive:: /user/username/projects/myproject/src: {} -Info 73 [16:02:14.000] response: +Info 73 [00:02:14.000] response: { "responseRequired": false } @@ -1203,7 +1203,7 @@ FsWatchesRecursive:: /user/username/projects/myproject/src: {} -Info 74 [16:02:15.000] event: +Info 74 [00:02:15.000] event: {"seq":0,"type":"event","event":"syntaxDiag","body":{"file":"/user/username/projects/myproject/src/server/utilities.js","diagnostics":[]}} After checking timeout queue length (1) and running @@ -1273,7 +1273,7 @@ FsWatchesRecursive:: /user/username/projects/myproject/src: {} -Info 75 [16:02:16.000] event: +Info 75 [00:02:16.000] event: {"seq":0,"type":"event","event":"semanticDiag","body":{"file":"/user/username/projects/myproject/src/server/utilities.js","diagnostics":[]}} Before running immediate callbacks and checking length (1) @@ -1343,7 +1343,7 @@ FsWatchesRecursive:: /user/username/projects/myproject/src: {} -Info 76 [16:02:17.000] event: +Info 76 [00:02:17.000] event: {"seq":0,"type":"event","event":"suggestionDiag","body":{"file":"/user/username/projects/myproject/src/server/utilities.js","diagnostics":[]}} Before running immediate callbacks and checking length (1) @@ -1413,7 +1413,7 @@ FsWatchesRecursive:: /user/username/projects/myproject/src: {} -Info 77 [16:02:18.000] event: +Info 77 [00:02:18.000] event: {"seq":0,"type":"event","event":"syntaxDiag","body":{"file":"/user/username/projects/myproject/src/client/app.js","diagnostics":[]}} After checking timeout queue length (1) and running @@ -1483,7 +1483,7 @@ FsWatchesRecursive:: /user/username/projects/myproject/src: {} -Info 78 [16:02:19.000] event: +Info 78 [00:02:19.000] event: {"seq":0,"type":"event","event":"semanticDiag","body":{"file":"/user/username/projects/myproject/src/client/app.js","diagnostics":[]}} Before running immediate callbacks and checking length (1) @@ -1553,9 +1553,9 @@ FsWatchesRecursive:: /user/username/projects/myproject/src: {} -Info 79 [16:02:20.000] event: +Info 79 [00:02:20.000] event: {"seq":0,"type":"event","event":"suggestionDiag","body":{"file":"/user/username/projects/myproject/src/client/app.js","diagnostics":[]}} -Info 80 [16:02:21.000] event: +Info 80 [00:02:21.000] event: {"seq":0,"type":"event","event":"requestCompleted","body":{"request_seq":2}} Before running immediate callbacks and checking length (1) diff --git a/tests/baselines/reference/tsserver/projectErrors/should-not-report-incorrect-error-when-json-is-root-file-found-by-tsconfig.js b/tests/baselines/reference/tsserver/projectErrors/should-not-report-incorrect-error-when-json-is-root-file-found-by-tsconfig.js index 5ca0907e56d7f..670049445b932 100644 --- a/tests/baselines/reference/tsserver/projectErrors/should-not-report-incorrect-error-when-json-is-root-file-found-by-tsconfig.js +++ b/tests/baselines/reference/tsserver/projectErrors/should-not-report-incorrect-error-when-json-is-root-file-found-by-tsconfig.js @@ -1,5 +1,5 @@ -Info 0 [16:00:25.000] Provided types map file "/a/lib/typesMap.json" doesn't exist -Info 1 [16:00:26.000] request: +Info 0 [00:00:25.000] Provided types map file "/a/lib/typesMap.json" doesn't exist +Info 1 [00:00:26.000] request: { "seq": 0, "type": "request", @@ -40,13 +40,13 @@ FsWatches:: FsWatchesRecursive:: -Info 2 [16:00:27.000] Search path: /user/username/projects/myproject/src -Info 3 [16:00:28.000] For info: /user/username/projects/myproject/src/test.ts :: Config file name: /user/username/projects/myproject/tsconfig.json -Info 4 [16:00:29.000] Creating configuration project /user/username/projects/myproject/tsconfig.json -Info 5 [16:00:30.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/tsconfig.json 2000 undefined Project: /user/username/projects/myproject/tsconfig.json WatchType: Config file -Info 6 [16:00:31.000] event: +Info 2 [00:00:27.000] Search path: /user/username/projects/myproject/src +Info 3 [00:00:28.000] For info: /user/username/projects/myproject/src/test.ts :: Config file name: /user/username/projects/myproject/tsconfig.json +Info 4 [00:00:29.000] Creating configuration project /user/username/projects/myproject/tsconfig.json +Info 5 [00:00:30.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/tsconfig.json 2000 undefined Project: /user/username/projects/myproject/tsconfig.json WatchType: Config file +Info 6 [00:00:31.000] event: {"seq":0,"type":"event","event":"projectLoadingStart","body":{"projectName":"/user/username/projects/myproject/tsconfig.json","reason":"Creating possible configured project for /user/username/projects/myproject/src/test.ts to open"}} -Info 7 [16:00:32.000] Config: /user/username/projects/myproject/tsconfig.json : { +Info 7 [00:00:32.000] Config: /user/username/projects/myproject/tsconfig.json : { "rootNames": [ "/user/username/projects/myproject/src/test.ts", "/user/username/projects/myproject/src/blabla.json" @@ -57,19 +57,19 @@ Info 7 [16:00:32.000] Config: /user/username/projects/myproject/tsconfig.json "configFilePath": "/user/username/projects/myproject/tsconfig.json" } } -Info 8 [16:00:33.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/src 0 undefined Config: /user/username/projects/myproject/tsconfig.json WatchType: Wild card directory -Info 9 [16:00:34.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/src 0 undefined Config: /user/username/projects/myproject/tsconfig.json WatchType: Wild card directory -Info 10 [16:00:35.000] Plugins were requested but not running in environment that supports 'require'. Nothing will be loaded -Info 11 [16:00:36.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/src/blabla.json 500 undefined WatchType: Closed Script info -Info 12 [16:00:37.000] Starting updateGraphWorker: Project: /user/username/projects/myproject/tsconfig.json -Info 13 [16:00:38.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/src 1 undefined Project: /user/username/projects/myproject/tsconfig.json WatchType: Failed Lookup Locations -Info 14 [16:00:39.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/src 1 undefined Project: /user/username/projects/myproject/tsconfig.json WatchType: Failed Lookup Locations -Info 15 [16:00:40.000] FileWatcher:: Added:: WatchInfo: /a/lib/lib.d.ts 500 undefined WatchType: Closed Script info -Info 16 [16:00:41.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/tsconfig.json WatchType: Type roots -Info 17 [16:00:42.000] 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 18 [16:00:43.000] Finishing updateGraphWorker: Project: /user/username/projects/myproject/tsconfig.json Version: 1 structureChanged: true structureIsReused:: Not Elapsed:: *ms -Info 19 [16:00:44.000] Project '/user/username/projects/myproject/tsconfig.json' (Configured) -Info 20 [16:00:45.000] Files (3) +Info 8 [00:00:33.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/src 0 undefined Config: /user/username/projects/myproject/tsconfig.json WatchType: Wild card directory +Info 9 [00:00:34.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/src 0 undefined Config: /user/username/projects/myproject/tsconfig.json WatchType: Wild card directory +Info 10 [00:00:35.000] Plugins were requested but not running in environment that supports 'require'. Nothing will be loaded +Info 11 [00:00:36.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/src/blabla.json 500 undefined WatchType: Closed Script info +Info 12 [00:00:37.000] Starting updateGraphWorker: Project: /user/username/projects/myproject/tsconfig.json +Info 13 [00:00:38.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/src 1 undefined Project: /user/username/projects/myproject/tsconfig.json WatchType: Failed Lookup Locations +Info 14 [00:00:39.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/src 1 undefined Project: /user/username/projects/myproject/tsconfig.json WatchType: Failed Lookup Locations +Info 15 [00:00:40.000] FileWatcher:: Added:: WatchInfo: /a/lib/lib.d.ts 500 undefined WatchType: Closed Script info +Info 16 [00:00:41.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/tsconfig.json WatchType: Type roots +Info 17 [00:00:42.000] 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 18 [00:00:43.000] Finishing updateGraphWorker: Project: /user/username/projects/myproject/tsconfig.json Version: 1 structureChanged: true structureIsReused:: Not Elapsed:: *ms +Info 19 [00:00:44.000] Project '/user/username/projects/myproject/tsconfig.json' (Configured) +Info 20 [00:00:45.000] Files (3) /a/lib/lib.d.ts /user/username/projects/myproject/src/blabla.json /user/username/projects/myproject/src/test.ts @@ -83,22 +83,22 @@ Info 20 [16:00:45.000] Files (3) src/test.ts Matched by include pattern './src/*.ts' in 'tsconfig.json' -Info 21 [16:00:46.000] ----------------------------------------------- -Info 22 [16:00:47.000] event: +Info 21 [00:00:46.000] ----------------------------------------------- +Info 22 [00:00:47.000] event: {"seq":0,"type":"event","event":"projectLoadingFinish","body":{"projectName":"/user/username/projects/myproject/tsconfig.json"}} -Info 23 [16:00:48.000] event: +Info 23 [00:00:48.000] event: {"seq":0,"type":"event","event":"telemetry","body":{"telemetryEventName":"projectInfo","payload":{"projectId":"4a33d78ee40d836c4f4e64c59aed976628aea0013be9585c5ff171dfc41baf98","fileStats":{"js":0,"jsSize":0,"jsx":0,"jsxSize":0,"ts":1,"tsSize":87,"tsx":0,"tsxSize":0,"dts":1,"dtsSize":334,"deferred":0,"deferredSize":0},"compilerOptions":{"resolveJsonModule":true,"composite":true},"typeAcquisition":{"enable":false,"include":false,"exclude":false},"extends":false,"files":false,"include":true,"exclude":false,"compileOnSave":false,"configFileName":"tsconfig.json","projectType":"configured","languageServiceEnabled":true,"version":"FakeVersion"}}} -Info 24 [16:00:49.000] event: +Info 24 [00:00:49.000] event: {"seq":0,"type":"event","event":"configFileDiag","body":{"triggerFile":"/user/username/projects/myproject/src/test.ts","configFile":"/user/username/projects/myproject/tsconfig.json","diagnostics":[]}} -Info 25 [16:00:50.000] Search path: /user/username/projects/myproject -Info 26 [16:00:51.000] For info: /user/username/projects/myproject/tsconfig.json :: No config files found. -Info 27 [16:00:52.000] Project '/user/username/projects/myproject/tsconfig.json' (Configured) -Info 27 [16:00:53.000] Files (3) - -Info 27 [16:00:54.000] ----------------------------------------------- -Info 27 [16:00:55.000] Open files: -Info 27 [16:00:56.000] FileName: /user/username/projects/myproject/src/test.ts ProjectRootPath: undefined -Info 27 [16:00:57.000] Projects: /user/username/projects/myproject/tsconfig.json +Info 25 [00:00:50.000] Search path: /user/username/projects/myproject +Info 26 [00:00:51.000] For info: /user/username/projects/myproject/tsconfig.json :: No config files found. +Info 27 [00:00:52.000] Project '/user/username/projects/myproject/tsconfig.json' (Configured) +Info 27 [00:00:53.000] Files (3) + +Info 27 [00:00:54.000] ----------------------------------------------- +Info 27 [00:00:55.000] Open files: +Info 27 [00:00:56.000] FileName: /user/username/projects/myproject/src/test.ts ProjectRootPath: undefined +Info 27 [00:00:57.000] Projects: /user/username/projects/myproject/tsconfig.json After request PolledWatches:: @@ -119,11 +119,11 @@ FsWatchesRecursive:: /user/username/projects/myproject/src: {} -Info 27 [16:00:58.000] response: +Info 27 [00:00:58.000] response: { "responseRequired": false } -Info 28 [16:00:59.000] request: +Info 28 [00:00:59.000] request: { "command": "geterr", "arguments": { @@ -175,7 +175,7 @@ FsWatchesRecursive:: /user/username/projects/myproject/src: {} -Info 29 [16:01:00.000] response: +Info 29 [00:01:00.000] response: { "responseRequired": false } @@ -199,7 +199,7 @@ FsWatchesRecursive:: /user/username/projects/myproject/src: {} -Info 30 [16:01:01.000] event: +Info 30 [00:01:01.000] event: {"seq":0,"type":"event","event":"syntaxDiag","body":{"file":"/user/username/projects/myproject/src/test.ts","diagnostics":[]}} After checking timeout queue length (1) and running @@ -241,7 +241,7 @@ FsWatchesRecursive:: /user/username/projects/myproject/src: {} -Info 31 [16:01:02.000] event: +Info 31 [00:01:02.000] event: {"seq":0,"type":"event","event":"semanticDiag","body":{"file":"/user/username/projects/myproject/src/test.ts","diagnostics":[]}} Before running immediate callbacks and checking length (1) @@ -283,9 +283,9 @@ FsWatchesRecursive:: /user/username/projects/myproject/src: {} -Info 32 [16:01:03.000] event: +Info 32 [00:01:03.000] event: {"seq":0,"type":"event","event":"suggestionDiag","body":{"file":"/user/username/projects/myproject/src/test.ts","diagnostics":[]}} -Info 33 [16:01:04.000] event: +Info 33 [00:01:04.000] event: {"seq":0,"type":"event","event":"requestCompleted","body":{"request_seq":1}} Before running immediate callbacks and checking length (1) diff --git a/tests/baselines/reference/tsserver/projectErrors/should-report-error-when-json-is-not-root-file-found-by-tsconfig.js b/tests/baselines/reference/tsserver/projectErrors/should-report-error-when-json-is-not-root-file-found-by-tsconfig.js index 5c6e053919784..40ae2b9c0d6de 100644 --- a/tests/baselines/reference/tsserver/projectErrors/should-report-error-when-json-is-not-root-file-found-by-tsconfig.js +++ b/tests/baselines/reference/tsserver/projectErrors/should-report-error-when-json-is-not-root-file-found-by-tsconfig.js @@ -1,5 +1,5 @@ -Info 0 [16:00:25.000] Provided types map file "/a/lib/typesMap.json" doesn't exist -Info 1 [16:00:26.000] request: +Info 0 [00:00:25.000] Provided types map file "/a/lib/typesMap.json" doesn't exist +Info 1 [00:00:26.000] request: { "seq": 0, "type": "request", @@ -40,13 +40,13 @@ FsWatches:: FsWatchesRecursive:: -Info 2 [16:00:27.000] Search path: /user/username/projects/myproject/src -Info 3 [16:00:28.000] For info: /user/username/projects/myproject/src/test.ts :: Config file name: /user/username/projects/myproject/tsconfig.json -Info 4 [16:00:29.000] Creating configuration project /user/username/projects/myproject/tsconfig.json -Info 5 [16:00:30.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/tsconfig.json 2000 undefined Project: /user/username/projects/myproject/tsconfig.json WatchType: Config file -Info 6 [16:00:31.000] event: +Info 2 [00:00:27.000] Search path: /user/username/projects/myproject/src +Info 3 [00:00:28.000] For info: /user/username/projects/myproject/src/test.ts :: Config file name: /user/username/projects/myproject/tsconfig.json +Info 4 [00:00:29.000] Creating configuration project /user/username/projects/myproject/tsconfig.json +Info 5 [00:00:30.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/tsconfig.json 2000 undefined Project: /user/username/projects/myproject/tsconfig.json WatchType: Config file +Info 6 [00:00:31.000] event: {"seq":0,"type":"event","event":"projectLoadingStart","body":{"projectName":"/user/username/projects/myproject/tsconfig.json","reason":"Creating possible configured project for /user/username/projects/myproject/src/test.ts to open"}} -Info 7 [16:00:32.000] Config: /user/username/projects/myproject/tsconfig.json : { +Info 7 [00:00:32.000] Config: /user/username/projects/myproject/tsconfig.json : { "rootNames": [ "/user/username/projects/myproject/src/test.ts" ], @@ -56,19 +56,19 @@ Info 7 [16:00:32.000] Config: /user/username/projects/myproject/tsconfig.json "configFilePath": "/user/username/projects/myproject/tsconfig.json" } } -Info 8 [16:00:33.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/src 0 undefined Config: /user/username/projects/myproject/tsconfig.json WatchType: Wild card directory -Info 9 [16:00:34.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/src 0 undefined Config: /user/username/projects/myproject/tsconfig.json WatchType: Wild card directory -Info 10 [16:00:35.000] Plugins were requested but not running in environment that supports 'require'. Nothing will be loaded -Info 11 [16:00:36.000] Starting updateGraphWorker: Project: /user/username/projects/myproject/tsconfig.json -Info 12 [16:00:37.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/src 1 undefined Project: /user/username/projects/myproject/tsconfig.json WatchType: Failed Lookup Locations -Info 13 [16:00:38.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/src 1 undefined Project: /user/username/projects/myproject/tsconfig.json WatchType: Failed Lookup Locations -Info 14 [16:00:39.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/src/blabla.json 500 undefined WatchType: Closed Script info -Info 15 [16:00:40.000] FileWatcher:: Added:: WatchInfo: /a/lib/lib.d.ts 500 undefined WatchType: Closed Script info -Info 16 [16:00:41.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/tsconfig.json WatchType: Type roots -Info 17 [16:00:42.000] 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 18 [16:00:43.000] Finishing updateGraphWorker: Project: /user/username/projects/myproject/tsconfig.json Version: 1 structureChanged: true structureIsReused:: Not Elapsed:: *ms -Info 19 [16:00:44.000] Project '/user/username/projects/myproject/tsconfig.json' (Configured) -Info 20 [16:00:45.000] Files (3) +Info 8 [00:00:33.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/src 0 undefined Config: /user/username/projects/myproject/tsconfig.json WatchType: Wild card directory +Info 9 [00:00:34.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/src 0 undefined Config: /user/username/projects/myproject/tsconfig.json WatchType: Wild card directory +Info 10 [00:00:35.000] Plugins were requested but not running in environment that supports 'require'. Nothing will be loaded +Info 11 [00:00:36.000] Starting updateGraphWorker: Project: /user/username/projects/myproject/tsconfig.json +Info 12 [00:00:37.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/src 1 undefined Project: /user/username/projects/myproject/tsconfig.json WatchType: Failed Lookup Locations +Info 13 [00:00:38.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/src 1 undefined Project: /user/username/projects/myproject/tsconfig.json WatchType: Failed Lookup Locations +Info 14 [00:00:39.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/src/blabla.json 500 undefined WatchType: Closed Script info +Info 15 [00:00:40.000] FileWatcher:: Added:: WatchInfo: /a/lib/lib.d.ts 500 undefined WatchType: Closed Script info +Info 16 [00:00:41.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/tsconfig.json WatchType: Type roots +Info 17 [00:00:42.000] 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 18 [00:00:43.000] Finishing updateGraphWorker: Project: /user/username/projects/myproject/tsconfig.json Version: 1 structureChanged: true structureIsReused:: Not Elapsed:: *ms +Info 19 [00:00:44.000] Project '/user/username/projects/myproject/tsconfig.json' (Configured) +Info 20 [00:00:45.000] Files (3) /a/lib/lib.d.ts /user/username/projects/myproject/src/blabla.json /user/username/projects/myproject/src/test.ts @@ -81,22 +81,22 @@ Info 20 [16:00:45.000] Files (3) src/test.ts Matched by include pattern './src/*.ts' in 'tsconfig.json' -Info 21 [16:00:46.000] ----------------------------------------------- -Info 22 [16:00:47.000] event: +Info 21 [00:00:46.000] ----------------------------------------------- +Info 22 [00:00:47.000] event: {"seq":0,"type":"event","event":"projectLoadingFinish","body":{"projectName":"/user/username/projects/myproject/tsconfig.json"}} -Info 23 [16:00:48.000] event: +Info 23 [00:00:48.000] event: {"seq":0,"type":"event","event":"telemetry","body":{"telemetryEventName":"projectInfo","payload":{"projectId":"4a33d78ee40d836c4f4e64c59aed976628aea0013be9585c5ff171dfc41baf98","fileStats":{"js":0,"jsSize":0,"jsx":0,"jsxSize":0,"ts":1,"tsSize":87,"tsx":0,"tsxSize":0,"dts":1,"dtsSize":334,"deferred":0,"deferredSize":0},"compilerOptions":{"resolveJsonModule":true,"composite":true},"typeAcquisition":{"enable":false,"include":false,"exclude":false},"extends":false,"files":false,"include":true,"exclude":false,"compileOnSave":false,"configFileName":"tsconfig.json","projectType":"configured","languageServiceEnabled":true,"version":"FakeVersion"}}} -Info 24 [16:00:49.000] event: +Info 24 [00:00:49.000] event: {"seq":0,"type":"event","event":"configFileDiag","body":{"triggerFile":"/user/username/projects/myproject/src/test.ts","configFile":"/user/username/projects/myproject/tsconfig.json","diagnostics":[]}} -Info 25 [16:00:50.000] Search path: /user/username/projects/myproject -Info 26 [16:00:51.000] For info: /user/username/projects/myproject/tsconfig.json :: No config files found. -Info 27 [16:00:52.000] Project '/user/username/projects/myproject/tsconfig.json' (Configured) -Info 27 [16:00:53.000] Files (3) - -Info 27 [16:00:54.000] ----------------------------------------------- -Info 27 [16:00:55.000] Open files: -Info 27 [16:00:56.000] FileName: /user/username/projects/myproject/src/test.ts ProjectRootPath: undefined -Info 27 [16:00:57.000] Projects: /user/username/projects/myproject/tsconfig.json +Info 25 [00:00:50.000] Search path: /user/username/projects/myproject +Info 26 [00:00:51.000] For info: /user/username/projects/myproject/tsconfig.json :: No config files found. +Info 27 [00:00:52.000] Project '/user/username/projects/myproject/tsconfig.json' (Configured) +Info 27 [00:00:53.000] Files (3) + +Info 27 [00:00:54.000] ----------------------------------------------- +Info 27 [00:00:55.000] Open files: +Info 27 [00:00:56.000] FileName: /user/username/projects/myproject/src/test.ts ProjectRootPath: undefined +Info 27 [00:00:57.000] Projects: /user/username/projects/myproject/tsconfig.json After request PolledWatches:: @@ -117,11 +117,11 @@ FsWatchesRecursive:: /user/username/projects/myproject/src: {} -Info 27 [16:00:58.000] response: +Info 27 [00:00:58.000] response: { "responseRequired": false } -Info 28 [16:00:59.000] request: +Info 28 [00:00:59.000] request: { "command": "geterr", "arguments": { @@ -173,7 +173,7 @@ FsWatchesRecursive:: /user/username/projects/myproject/src: {} -Info 29 [16:01:00.000] response: +Info 29 [00:01:00.000] response: { "responseRequired": false } @@ -197,7 +197,7 @@ FsWatchesRecursive:: /user/username/projects/myproject/src: {} -Info 30 [16:01:01.000] event: +Info 30 [00:01:01.000] event: {"seq":0,"type":"event","event":"syntaxDiag","body":{"file":"/user/username/projects/myproject/src/test.ts","diagnostics":[]}} After checking timeout queue length (1) and running @@ -239,7 +239,7 @@ FsWatchesRecursive:: /user/username/projects/myproject/src: {} -Info 31 [16:01:02.000] event: +Info 31 [00:01:02.000] event: {"seq":0,"type":"event","event":"semanticDiag","body":{"file":"/user/username/projects/myproject/src/test.ts","diagnostics":[{"start":{"line":1,"offset":25},"end":{"line":1,"offset":40},"text":"File '/user/username/projects/myproject/src/blabla.json' is not listed within the file list of project '/user/username/projects/myproject/tsconfig.json'. Projects must list all files or use an 'include' pattern.","code":6307,"category":"error"}]}} Before running immediate callbacks and checking length (1) @@ -281,9 +281,9 @@ FsWatchesRecursive:: /user/username/projects/myproject/src: {} -Info 32 [16:01:03.000] event: +Info 32 [00:01:03.000] event: {"seq":0,"type":"event","event":"suggestionDiag","body":{"file":"/user/username/projects/myproject/src/test.ts","diagnostics":[]}} -Info 33 [16:01:04.000] event: +Info 33 [00:01:04.000] event: {"seq":0,"type":"event","event":"requestCompleted","body":{"request_seq":1}} Before running immediate callbacks and checking length (1) diff --git a/tests/baselines/reference/tsserver/projectErrors/when-opening-new-file-that-doesnt-exist-on-disk-yet-with-projectRoot.js b/tests/baselines/reference/tsserver/projectErrors/when-opening-new-file-that-doesnt-exist-on-disk-yet-with-projectRoot.js index 42dfef28928dd..964a6f26a2983 100644 --- a/tests/baselines/reference/tsserver/projectErrors/when-opening-new-file-that-doesnt-exist-on-disk-yet-with-projectRoot.js +++ b/tests/baselines/reference/tsserver/projectErrors/when-opening-new-file-that-doesnt-exist-on-disk-yet-with-projectRoot.js @@ -1,5 +1,5 @@ -Info 0 [16:00:25.000] Provided types map file "/a/lib/typesMap.json" doesn't exist -Info 1 [16:00:26.000] request: +Info 0 [00:00:25.000] Provided types map file "/a/lib/typesMap.json" doesn't exist +Info 1 [00:00:26.000] request: { "command": "open", "arguments": { @@ -38,18 +38,18 @@ FsWatches:: FsWatchesRecursive:: -Info 2 [16:00:27.000] Search path: -Info 3 [16:00:28.000] For info: untitled:Untitled-1 :: No config files found. -Info 4 [16:00:29.000] Plugins were requested but not running in environment that supports 'require'. Nothing will be loaded -Info 5 [16:00:30.000] Starting updateGraphWorker: Project: /dev/null/inferredProject1* -Info 6 [16:00:31.000] FileWatcher:: Added:: WatchInfo: /a/lib/lib.d.ts 500 undefined WatchType: Closed Script info -Info 7 [16:00:32.000] FileWatcher:: Added:: WatchInfo: /typings/@epic/core.d.ts 500 undefined Project: /dev/null/inferredProject1* WatchType: Missing file -Info 8 [16:00:33.000] FileWatcher:: Added:: WatchInfo: /user/someuser/projects/somefolder/src/somefile.d.ts 500 undefined Project: /dev/null/inferredProject1* WatchType: Missing file -Info 9 [16:00:34.000] DirectoryWatcher:: Added:: WatchInfo: /user/someuser/projects/someFolder/node_modules/@types 1 undefined Project: /dev/null/inferredProject1* WatchType: Type roots -Info 10 [16:00:35.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/someuser/projects/someFolder/node_modules/@types 1 undefined Project: /dev/null/inferredProject1* WatchType: Type roots -Info 11 [16:00:36.000] Finishing updateGraphWorker: Project: /dev/null/inferredProject1* Version: 1 structureChanged: true structureIsReused:: Not Elapsed:: *ms -Info 12 [16:00:37.000] Project '/dev/null/inferredProject1*' (Inferred) -Info 13 [16:00:38.000] Files (2) +Info 2 [00:00:27.000] Search path: +Info 3 [00:00:28.000] For info: untitled:Untitled-1 :: No config files found. +Info 4 [00:00:29.000] Plugins were requested but not running in environment that supports 'require'. Nothing will be loaded +Info 5 [00:00:30.000] Starting updateGraphWorker: Project: /dev/null/inferredProject1* +Info 6 [00:00:31.000] FileWatcher:: Added:: WatchInfo: /a/lib/lib.d.ts 500 undefined WatchType: Closed Script info +Info 7 [00:00:32.000] FileWatcher:: Added:: WatchInfo: /typings/@epic/core.d.ts 500 undefined Project: /dev/null/inferredProject1* WatchType: Missing file +Info 8 [00:00:33.000] FileWatcher:: Added:: WatchInfo: /user/someuser/projects/somefolder/src/somefile.d.ts 500 undefined Project: /dev/null/inferredProject1* WatchType: Missing file +Info 9 [00:00:34.000] DirectoryWatcher:: Added:: WatchInfo: /user/someuser/projects/someFolder/node_modules/@types 1 undefined Project: /dev/null/inferredProject1* WatchType: Type roots +Info 10 [00:00:35.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/someuser/projects/someFolder/node_modules/@types 1 undefined Project: /dev/null/inferredProject1* WatchType: Type roots +Info 11 [00:00:36.000] Finishing updateGraphWorker: Project: /dev/null/inferredProject1* Version: 1 structureChanged: true structureIsReused:: Not Elapsed:: *ms +Info 12 [00:00:37.000] Project '/dev/null/inferredProject1*' (Inferred) +Info 13 [00:00:38.000] Files (2) /a/lib/lib.d.ts untitled:Untitled-1 @@ -59,14 +59,14 @@ Info 13 [16:00:38.000] Files (2) untitled:Untitled-1 Root file specified for compilation -Info 14 [16:00:39.000] ----------------------------------------------- -Info 15 [16:00:40.000] Project '/dev/null/inferredProject1*' (Inferred) -Info 15 [16:00:41.000] Files (2) +Info 14 [00:00:39.000] ----------------------------------------------- +Info 15 [00:00:40.000] Project '/dev/null/inferredProject1*' (Inferred) +Info 15 [00:00:41.000] Files (2) -Info 15 [16:00:42.000] ----------------------------------------------- -Info 15 [16:00:43.000] Open files: -Info 15 [16:00:44.000] FileName: untitled:Untitled-1 ProjectRootPath: /user/someuser/projects/someFolder -Info 15 [16:00:45.000] Projects: /dev/null/inferredProject1* +Info 15 [00:00:42.000] ----------------------------------------------- +Info 15 [00:00:43.000] Open files: +Info 15 [00:00:44.000] FileName: untitled:Untitled-1 ProjectRootPath: /user/someuser/projects/someFolder +Info 15 [00:00:45.000] Projects: /dev/null/inferredProject1* After request PolledWatches:: @@ -83,7 +83,7 @@ FsWatches:: FsWatchesRecursive:: -Info 15 [16:00:46.000] response: +Info 15 [00:00:46.000] response: { "responseRequired": false } @@ -92,7 +92,7 @@ ScriptInfos: path: /user/someuser/projects/somefolder/untitled:untitled-1 fileName: untitled:Untitled-1 path: /a/lib/lib.d.ts fileName: /a/lib/lib.d.ts -Info 16 [16:00:47.000] request: +Info 16 [00:00:47.000] request: { "command": "geterr", "arguments": { @@ -136,7 +136,7 @@ FsWatches:: FsWatchesRecursive:: -Info 17 [16:00:48.000] response: +Info 17 [00:00:48.000] response: { "responseRequired": false } @@ -156,7 +156,7 @@ FsWatches:: FsWatchesRecursive:: -Info 18 [16:00:49.000] event: +Info 18 [00:00:49.000] event: {"seq":0,"type":"event","event":"syntaxDiag","body":{"file":"untitled:Untitled-1","diagnostics":[]}} After checking timeout queue length (1) and running @@ -190,7 +190,7 @@ FsWatches:: FsWatchesRecursive:: -Info 19 [16:00:50.000] event: +Info 19 [00:00:50.000] event: {"seq":0,"type":"event","event":"semanticDiag","body":{"file":"untitled:Untitled-1","diagnostics":[{"start":{"line":1,"offset":22},"end":{"line":1,"offset":63},"text":"File '../../../../../../typings/@epic/Core.d.ts' not found.","code":6053,"category":"error"},{"start":{"line":2,"offset":22},"end":{"line":2,"offset":41},"text":"File 'src/somefile.d.ts' not found.","code":6053,"category":"error"}]}} Before running immediate callbacks and checking length (1) @@ -224,9 +224,9 @@ FsWatches:: FsWatchesRecursive:: -Info 20 [16:00:51.000] event: +Info 20 [00:00:51.000] event: {"seq":0,"type":"event","event":"suggestionDiag","body":{"file":"untitled:Untitled-1","diagnostics":[]}} -Info 21 [16:00:52.000] event: +Info 21 [00:00:52.000] event: {"seq":0,"type":"event","event":"requestCompleted","body":{"request_seq":2}} Before running immediate callbacks and checking length (1) diff --git a/tests/baselines/reference/tsserver/projectErrors/when-opening-new-file-that-doesnt-exist-on-disk-yet-without-projectRoot.js b/tests/baselines/reference/tsserver/projectErrors/when-opening-new-file-that-doesnt-exist-on-disk-yet-without-projectRoot.js index 8228aa4eac86d..4d6a73c7f65c9 100644 --- a/tests/baselines/reference/tsserver/projectErrors/when-opening-new-file-that-doesnt-exist-on-disk-yet-without-projectRoot.js +++ b/tests/baselines/reference/tsserver/projectErrors/when-opening-new-file-that-doesnt-exist-on-disk-yet-without-projectRoot.js @@ -1,5 +1,5 @@ -Info 0 [16:00:25.000] Provided types map file "/a/lib/typesMap.json" doesn't exist -Info 1 [16:00:26.000] request: +Info 0 [00:00:25.000] Provided types map file "/a/lib/typesMap.json" doesn't exist +Info 1 [00:00:26.000] request: { "command": "open", "arguments": { @@ -37,16 +37,16 @@ FsWatches:: FsWatchesRecursive:: -Info 2 [16:00:27.000] Search path: -Info 3 [16:00:28.000] For info: untitled:Untitled-1 :: No config files found. -Info 4 [16:00:29.000] Plugins were requested but not running in environment that supports 'require'. Nothing will be loaded -Info 5 [16:00:30.000] Starting updateGraphWorker: Project: /dev/null/inferredProject1* -Info 6 [16:00:31.000] FileWatcher:: Added:: WatchInfo: /a/lib/lib.d.ts 500 undefined WatchType: Closed Script info -Info 7 [16:00:32.000] FileWatcher:: Added:: WatchInfo: /typings/@epic/core.d.ts 500 undefined Project: /dev/null/inferredProject1* WatchType: Missing file -Info 8 [16:00:33.000] FileWatcher:: Added:: WatchInfo: /src/somefile.d.ts 500 undefined Project: /dev/null/inferredProject1* WatchType: Missing file -Info 9 [16:00:34.000] Finishing updateGraphWorker: Project: /dev/null/inferredProject1* Version: 1 structureChanged: true structureIsReused:: Not Elapsed:: *ms -Info 10 [16:00:35.000] Project '/dev/null/inferredProject1*' (Inferred) -Info 11 [16:00:36.000] Files (2) +Info 2 [00:00:27.000] Search path: +Info 3 [00:00:28.000] For info: untitled:Untitled-1 :: No config files found. +Info 4 [00:00:29.000] Plugins were requested but not running in environment that supports 'require'. Nothing will be loaded +Info 5 [00:00:30.000] Starting updateGraphWorker: Project: /dev/null/inferredProject1* +Info 6 [00:00:31.000] FileWatcher:: Added:: WatchInfo: /a/lib/lib.d.ts 500 undefined WatchType: Closed Script info +Info 7 [00:00:32.000] FileWatcher:: Added:: WatchInfo: /typings/@epic/core.d.ts 500 undefined Project: /dev/null/inferredProject1* WatchType: Missing file +Info 8 [00:00:33.000] FileWatcher:: Added:: WatchInfo: /src/somefile.d.ts 500 undefined Project: /dev/null/inferredProject1* WatchType: Missing file +Info 9 [00:00:34.000] Finishing updateGraphWorker: Project: /dev/null/inferredProject1* Version: 1 structureChanged: true structureIsReused:: Not Elapsed:: *ms +Info 10 [00:00:35.000] Project '/dev/null/inferredProject1*' (Inferred) +Info 11 [00:00:36.000] Files (2) /a/lib/lib.d.ts untitled:Untitled-1 @@ -56,14 +56,14 @@ Info 11 [16:00:36.000] Files (2) untitled:Untitled-1 Root file specified for compilation -Info 12 [16:00:37.000] ----------------------------------------------- -Info 13 [16:00:38.000] Project '/dev/null/inferredProject1*' (Inferred) -Info 13 [16:00:39.000] Files (2) +Info 12 [00:00:37.000] ----------------------------------------------- +Info 13 [00:00:38.000] Project '/dev/null/inferredProject1*' (Inferred) +Info 13 [00:00:39.000] Files (2) -Info 13 [16:00:40.000] ----------------------------------------------- -Info 13 [16:00:41.000] Open files: -Info 13 [16:00:42.000] FileName: untitled:Untitled-1 ProjectRootPath: undefined -Info 13 [16:00:43.000] Projects: /dev/null/inferredProject1* +Info 13 [00:00:40.000] ----------------------------------------------- +Info 13 [00:00:41.000] Open files: +Info 13 [00:00:42.000] FileName: untitled:Untitled-1 ProjectRootPath: undefined +Info 13 [00:00:43.000] Projects: /dev/null/inferredProject1* After request PolledWatches:: @@ -78,7 +78,7 @@ FsWatches:: FsWatchesRecursive:: -Info 13 [16:00:44.000] response: +Info 13 [00:00:44.000] response: { "responseRequired": false } @@ -87,7 +87,7 @@ ScriptInfos: path: /untitled:untitled-1 fileName: untitled:Untitled-1 path: /a/lib/lib.d.ts fileName: /a/lib/lib.d.ts -Info 14 [16:00:45.000] request: +Info 14 [00:00:45.000] request: { "command": "geterr", "arguments": { @@ -127,7 +127,7 @@ FsWatches:: FsWatchesRecursive:: -Info 15 [16:00:46.000] response: +Info 15 [00:00:46.000] response: { "responseRequired": false } @@ -145,7 +145,7 @@ FsWatches:: FsWatchesRecursive:: -Info 16 [16:00:47.000] event: +Info 16 [00:00:47.000] event: {"seq":0,"type":"event","event":"syntaxDiag","body":{"file":"untitled:Untitled-1","diagnostics":[]}} After checking timeout queue length (1) and running @@ -175,7 +175,7 @@ FsWatches:: FsWatchesRecursive:: -Info 17 [16:00:48.000] event: +Info 17 [00:00:48.000] event: {"seq":0,"type":"event","event":"semanticDiag","body":{"file":"untitled:Untitled-1","diagnostics":[{"start":{"line":1,"offset":22},"end":{"line":1,"offset":63},"text":"File '../../../../../../typings/@epic/Core.d.ts' not found.","code":6053,"category":"error"},{"start":{"line":2,"offset":22},"end":{"line":2,"offset":41},"text":"File 'src/somefile.d.ts' not found.","code":6053,"category":"error"}]}} Before running immediate callbacks and checking length (1) @@ -205,9 +205,9 @@ FsWatches:: FsWatchesRecursive:: -Info 18 [16:00:49.000] event: +Info 18 [00:00:49.000] event: {"seq":0,"type":"event","event":"suggestionDiag","body":{"file":"untitled:Untitled-1","diagnostics":[]}} -Info 19 [16:00:50.000] event: +Info 19 [00:00:50.000] event: {"seq":0,"type":"event","event":"requestCompleted","body":{"request_seq":2}} Before running immediate callbacks and checking length (1) diff --git a/tests/baselines/reference/tsserver/projectErrors/when-semantic-error-returns-includes-global-error-gerErr-with-sync-commands.js b/tests/baselines/reference/tsserver/projectErrors/when-semantic-error-returns-includes-global-error-gerErr-with-sync-commands.js index 2f5dc4ded90c6..73e80f8ce34f2 100644 --- a/tests/baselines/reference/tsserver/projectErrors/when-semantic-error-returns-includes-global-error-gerErr-with-sync-commands.js +++ b/tests/baselines/reference/tsserver/projectErrors/when-semantic-error-returns-includes-global-error-gerErr-with-sync-commands.js @@ -1,5 +1,5 @@ -Info 0 [16:00:22.000] Provided types map file "/a/lib/typesMap.json" doesn't exist -Info 1 [16:00:23.000] request: +Info 0 [00:00:22.000] Provided types map file "/a/lib/typesMap.json" doesn't exist +Info 1 [00:00:23.000] request: { "seq": 0, "type": "request", @@ -36,11 +36,11 @@ FsWatches:: FsWatchesRecursive:: -Info 2 [16:00:24.000] Search path: /user/username/projects/myproject -Info 3 [16:00:25.000] For info: /user/username/projects/myproject/ui.ts :: Config file name: /user/username/projects/myproject/tsconfig.json -Info 4 [16:00:26.000] Creating configuration project /user/username/projects/myproject/tsconfig.json -Info 5 [16:00:27.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/tsconfig.json 2000 undefined Project: /user/username/projects/myproject/tsconfig.json WatchType: Config file -Info 6 [16:00:28.000] Config: /user/username/projects/myproject/tsconfig.json : { +Info 2 [00:00:24.000] Search path: /user/username/projects/myproject +Info 3 [00:00:25.000] For info: /user/username/projects/myproject/ui.ts :: Config file name: /user/username/projects/myproject/tsconfig.json +Info 4 [00:00:26.000] Creating configuration project /user/username/projects/myproject/tsconfig.json +Info 5 [00:00:27.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/tsconfig.json 2000 undefined Project: /user/username/projects/myproject/tsconfig.json WatchType: Config file +Info 6 [00:00:28.000] Config: /user/username/projects/myproject/tsconfig.json : { "rootNames": [ "/user/username/projects/myproject/ui.ts" ], @@ -48,16 +48,16 @@ Info 6 [16:00:28.000] Config: /user/username/projects/myproject/tsconfig.json "configFilePath": "/user/username/projects/myproject/tsconfig.json" } } -Info 7 [16:00:29.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject 1 undefined Config: /user/username/projects/myproject/tsconfig.json WatchType: Wild card directory -Info 8 [16:00:30.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject 1 undefined Config: /user/username/projects/myproject/tsconfig.json WatchType: Wild card directory -Info 9 [16:00:31.000] Plugins were requested but not running in environment that supports 'require'. Nothing will be loaded -Info 10 [16:00:32.000] Starting updateGraphWorker: Project: /user/username/projects/myproject/tsconfig.json -Info 11 [16:00:33.000] FileWatcher:: Added:: WatchInfo: /a/lib/lib.d.ts 500 undefined WatchType: Closed Script info -Info 12 [16:00:34.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/tsconfig.json WatchType: Type roots -Info 13 [16:00:35.000] 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 14 [16:00:36.000] Finishing updateGraphWorker: Project: /user/username/projects/myproject/tsconfig.json Version: 1 structureChanged: true structureIsReused:: Not Elapsed:: *ms -Info 15 [16:00:37.000] Project '/user/username/projects/myproject/tsconfig.json' (Configured) -Info 16 [16:00:38.000] Files (2) +Info 7 [00:00:29.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject 1 undefined Config: /user/username/projects/myproject/tsconfig.json WatchType: Wild card directory +Info 8 [00:00:30.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject 1 undefined Config: /user/username/projects/myproject/tsconfig.json WatchType: Wild card directory +Info 9 [00:00:31.000] Plugins were requested but not running in environment that supports 'require'. Nothing will be loaded +Info 10 [00:00:32.000] Starting updateGraphWorker: Project: /user/username/projects/myproject/tsconfig.json +Info 11 [00:00:33.000] FileWatcher:: Added:: WatchInfo: /a/lib/lib.d.ts 500 undefined WatchType: Closed Script info +Info 12 [00:00:34.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/tsconfig.json WatchType: Type roots +Info 13 [00:00:35.000] 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 14 [00:00:36.000] Finishing updateGraphWorker: Project: /user/username/projects/myproject/tsconfig.json Version: 1 structureChanged: true structureIsReused:: Not Elapsed:: *ms +Info 15 [00:00:37.000] Project '/user/username/projects/myproject/tsconfig.json' (Configured) +Info 16 [00:00:38.000] Files (2) /a/lib/lib.d.ts /user/username/projects/myproject/ui.ts @@ -67,14 +67,14 @@ Info 16 [16:00:38.000] Files (2) ui.ts Matched by default include pattern '**/*' -Info 17 [16:00:39.000] ----------------------------------------------- -Info 18 [16:00:40.000] Project '/user/username/projects/myproject/tsconfig.json' (Configured) -Info 18 [16:00:41.000] Files (2) +Info 17 [00:00:39.000] ----------------------------------------------- +Info 18 [00:00:40.000] Project '/user/username/projects/myproject/tsconfig.json' (Configured) +Info 18 [00:00:41.000] Files (2) -Info 18 [16:00:42.000] ----------------------------------------------- -Info 18 [16:00:43.000] Open files: -Info 18 [16:00:44.000] FileName: /user/username/projects/myproject/ui.ts ProjectRootPath: undefined -Info 18 [16:00:45.000] Projects: /user/username/projects/myproject/tsconfig.json +Info 18 [00:00:42.000] ----------------------------------------------- +Info 18 [00:00:43.000] Open files: +Info 18 [00:00:44.000] FileName: /user/username/projects/myproject/ui.ts ProjectRootPath: undefined +Info 18 [00:00:45.000] Projects: /user/username/projects/myproject/tsconfig.json After request PolledWatches:: @@ -91,11 +91,11 @@ FsWatchesRecursive:: /user/username/projects/myproject: {} -Info 18 [16:00:46.000] response: +Info 18 [00:00:46.000] response: { "responseRequired": false } -Info 19 [16:00:47.000] request: +Info 19 [00:00:47.000] request: { "command": "syntacticDiagnosticsSync", "arguments": { @@ -137,12 +137,12 @@ FsWatchesRecursive:: /user/username/projects/myproject: {} -Info 20 [16:00:48.000] response: +Info 20 [00:00:48.000] response: { "response": [], "responseRequired": true } -Info 21 [16:00:49.000] request: +Info 21 [00:00:49.000] request: { "command": "semanticDiagnosticsSync", "arguments": { @@ -184,7 +184,7 @@ FsWatchesRecursive:: /user/username/projects/myproject: {} -Info 22 [16:00:50.000] response: +Info 22 [00:00:50.000] response: { "response": [ { @@ -203,7 +203,7 @@ Info 22 [16:00:50.000] response: ], "responseRequired": true } -Info 23 [16:00:51.000] request: +Info 23 [00:00:51.000] request: { "command": "suggestionDiagnosticsSync", "arguments": { @@ -245,7 +245,7 @@ FsWatchesRecursive:: /user/username/projects/myproject: {} -Info 24 [16:00:52.000] response: +Info 24 [00:00:52.000] response: { "response": [], "responseRequired": true diff --git a/tests/baselines/reference/tsserver/projectErrors/when-semantic-error-returns-includes-global-error-getErr.js b/tests/baselines/reference/tsserver/projectErrors/when-semantic-error-returns-includes-global-error-getErr.js index 15c493e301d30..453d48e9de84c 100644 --- a/tests/baselines/reference/tsserver/projectErrors/when-semantic-error-returns-includes-global-error-getErr.js +++ b/tests/baselines/reference/tsserver/projectErrors/when-semantic-error-returns-includes-global-error-getErr.js @@ -1,5 +1,5 @@ -Info 0 [16:00:22.000] Provided types map file "/a/lib/typesMap.json" doesn't exist -Info 1 [16:00:23.000] request: +Info 0 [00:00:22.000] Provided types map file "/a/lib/typesMap.json" doesn't exist +Info 1 [00:00:23.000] request: { "seq": 0, "type": "request", @@ -36,13 +36,13 @@ FsWatches:: FsWatchesRecursive:: -Info 2 [16:00:24.000] Search path: /user/username/projects/myproject -Info 3 [16:00:25.000] For info: /user/username/projects/myproject/ui.ts :: Config file name: /user/username/projects/myproject/tsconfig.json -Info 4 [16:00:26.000] Creating configuration project /user/username/projects/myproject/tsconfig.json -Info 5 [16:00:27.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/tsconfig.json 2000 undefined Project: /user/username/projects/myproject/tsconfig.json WatchType: Config file -Info 6 [16:00:28.000] event: +Info 2 [00:00:24.000] Search path: /user/username/projects/myproject +Info 3 [00:00:25.000] For info: /user/username/projects/myproject/ui.ts :: Config file name: /user/username/projects/myproject/tsconfig.json +Info 4 [00:00:26.000] Creating configuration project /user/username/projects/myproject/tsconfig.json +Info 5 [00:00:27.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/tsconfig.json 2000 undefined Project: /user/username/projects/myproject/tsconfig.json WatchType: Config file +Info 6 [00:00:28.000] event: {"seq":0,"type":"event","event":"projectLoadingStart","body":{"projectName":"/user/username/projects/myproject/tsconfig.json","reason":"Creating possible configured project for /user/username/projects/myproject/ui.ts to open"}} -Info 7 [16:00:29.000] Config: /user/username/projects/myproject/tsconfig.json : { +Info 7 [00:00:29.000] Config: /user/username/projects/myproject/tsconfig.json : { "rootNames": [ "/user/username/projects/myproject/ui.ts" ], @@ -50,16 +50,16 @@ Info 7 [16:00:29.000] Config: /user/username/projects/myproject/tsconfig.json "configFilePath": "/user/username/projects/myproject/tsconfig.json" } } -Info 8 [16:00:30.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject 1 undefined Config: /user/username/projects/myproject/tsconfig.json WatchType: Wild card directory -Info 9 [16:00:31.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject 1 undefined Config: /user/username/projects/myproject/tsconfig.json WatchType: Wild card directory -Info 10 [16:00:32.000] Plugins were requested but not running in environment that supports 'require'. Nothing will be loaded -Info 11 [16:00:33.000] Starting updateGraphWorker: Project: /user/username/projects/myproject/tsconfig.json -Info 12 [16:00:34.000] FileWatcher:: Added:: WatchInfo: /a/lib/lib.d.ts 500 undefined WatchType: Closed Script info -Info 13 [16:00:35.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/tsconfig.json WatchType: Type roots -Info 14 [16:00:36.000] 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 15 [16:00:37.000] Finishing updateGraphWorker: Project: /user/username/projects/myproject/tsconfig.json Version: 1 structureChanged: true structureIsReused:: Not Elapsed:: *ms -Info 16 [16:00:38.000] Project '/user/username/projects/myproject/tsconfig.json' (Configured) -Info 17 [16:00:39.000] Files (2) +Info 8 [00:00:30.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject 1 undefined Config: /user/username/projects/myproject/tsconfig.json WatchType: Wild card directory +Info 9 [00:00:31.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject 1 undefined Config: /user/username/projects/myproject/tsconfig.json WatchType: Wild card directory +Info 10 [00:00:32.000] Plugins were requested but not running in environment that supports 'require'. Nothing will be loaded +Info 11 [00:00:33.000] Starting updateGraphWorker: Project: /user/username/projects/myproject/tsconfig.json +Info 12 [00:00:34.000] FileWatcher:: Added:: WatchInfo: /a/lib/lib.d.ts 500 undefined WatchType: Closed Script info +Info 13 [00:00:35.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/tsconfig.json WatchType: Type roots +Info 14 [00:00:36.000] 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 15 [00:00:37.000] Finishing updateGraphWorker: Project: /user/username/projects/myproject/tsconfig.json Version: 1 structureChanged: true structureIsReused:: Not Elapsed:: *ms +Info 16 [00:00:38.000] Project '/user/username/projects/myproject/tsconfig.json' (Configured) +Info 17 [00:00:39.000] Files (2) /a/lib/lib.d.ts /user/username/projects/myproject/ui.ts @@ -69,20 +69,20 @@ Info 17 [16:00:39.000] Files (2) ui.ts Matched by default include pattern '**/*' -Info 18 [16:00:40.000] ----------------------------------------------- -Info 19 [16:00:41.000] event: +Info 18 [00:00:40.000] ----------------------------------------------- +Info 19 [00:00:41.000] event: {"seq":0,"type":"event","event":"projectLoadingFinish","body":{"projectName":"/user/username/projects/myproject/tsconfig.json"}} -Info 20 [16:00:42.000] event: +Info 20 [00:00:42.000] event: {"seq":0,"type":"event","event":"telemetry","body":{"telemetryEventName":"projectInfo","payload":{"projectId":"4a33d78ee40d836c4f4e64c59aed976628aea0013be9585c5ff171dfc41baf98","fileStats":{"js":0,"jsSize":0,"jsx":0,"jsxSize":0,"ts":1,"tsSize":41,"tsx":0,"tsxSize":0,"dts":1,"dtsSize":334,"deferred":0,"deferredSize":0},"compilerOptions":{},"typeAcquisition":{"enable":false,"include":false,"exclude":false},"extends":false,"files":false,"include":false,"exclude":false,"compileOnSave":false,"configFileName":"tsconfig.json","projectType":"configured","languageServiceEnabled":true,"version":"FakeVersion"}}} -Info 21 [16:00:43.000] event: +Info 21 [00:00:43.000] event: {"seq":0,"type":"event","event":"configFileDiag","body":{"triggerFile":"/user/username/projects/myproject/ui.ts","configFile":"/user/username/projects/myproject/tsconfig.json","diagnostics":[]}} -Info 22 [16:00:44.000] Project '/user/username/projects/myproject/tsconfig.json' (Configured) -Info 22 [16:00:45.000] Files (2) +Info 22 [00:00:44.000] Project '/user/username/projects/myproject/tsconfig.json' (Configured) +Info 22 [00:00:45.000] Files (2) -Info 22 [16:00:46.000] ----------------------------------------------- -Info 22 [16:00:47.000] Open files: -Info 22 [16:00:48.000] FileName: /user/username/projects/myproject/ui.ts ProjectRootPath: undefined -Info 22 [16:00:49.000] Projects: /user/username/projects/myproject/tsconfig.json +Info 22 [00:00:46.000] ----------------------------------------------- +Info 22 [00:00:47.000] Open files: +Info 22 [00:00:48.000] FileName: /user/username/projects/myproject/ui.ts ProjectRootPath: undefined +Info 22 [00:00:49.000] Projects: /user/username/projects/myproject/tsconfig.json After request PolledWatches:: @@ -99,11 +99,11 @@ FsWatchesRecursive:: /user/username/projects/myproject: {} -Info 22 [16:00:50.000] response: +Info 22 [00:00:50.000] response: { "responseRequired": false } -Info 23 [16:00:51.000] request: +Info 23 [00:00:51.000] request: { "command": "geterr", "arguments": { @@ -147,7 +147,7 @@ FsWatchesRecursive:: /user/username/projects/myproject: {} -Info 24 [16:00:52.000] response: +Info 24 [00:00:52.000] response: { "responseRequired": false } @@ -167,7 +167,7 @@ FsWatchesRecursive:: /user/username/projects/myproject: {} -Info 25 [16:00:53.000] event: +Info 25 [00:00:53.000] event: {"seq":0,"type":"event","event":"syntaxDiag","body":{"file":"/user/username/projects/myproject/ui.ts","diagnostics":[]}} After checking timeout queue length (1) and running @@ -201,7 +201,7 @@ FsWatchesRecursive:: /user/username/projects/myproject: {} -Info 26 [16:00:54.000] event: +Info 26 [00:00:54.000] event: {"seq":0,"type":"event","event":"semanticDiag","body":{"file":"/user/username/projects/myproject/ui.ts","diagnostics":[{"start":{"line":1,"offset":11},"end":{"line":1,"offset":39},"text":"An async function or method must return a 'Promise'. Make sure you have a declaration for 'Promise' or include 'ES2015' in your '--lib' option.","code":2697,"category":"error"}]}} Before running immediate callbacks and checking length (1) @@ -235,9 +235,9 @@ FsWatchesRecursive:: /user/username/projects/myproject: {} -Info 27 [16:00:55.000] event: +Info 27 [00:00:55.000] event: {"seq":0,"type":"event","event":"suggestionDiag","body":{"file":"/user/username/projects/myproject/ui.ts","diagnostics":[]}} -Info 28 [16:00:56.000] event: +Info 28 [00:00:56.000] event: {"seq":0,"type":"event","event":"requestCompleted","body":{"request_seq":1}} Before running immediate callbacks and checking length (1) diff --git a/tests/baselines/reference/tsserver/projectErrors/when-semantic-error-returns-includes-global-error-geterrForProject.js b/tests/baselines/reference/tsserver/projectErrors/when-semantic-error-returns-includes-global-error-geterrForProject.js index 0f3fcd4d12f3c..6e1247fcfe2c5 100644 --- a/tests/baselines/reference/tsserver/projectErrors/when-semantic-error-returns-includes-global-error-geterrForProject.js +++ b/tests/baselines/reference/tsserver/projectErrors/when-semantic-error-returns-includes-global-error-geterrForProject.js @@ -1,5 +1,5 @@ -Info 0 [16:00:22.000] Provided types map file "/a/lib/typesMap.json" doesn't exist -Info 1 [16:00:23.000] request: +Info 0 [00:00:22.000] Provided types map file "/a/lib/typesMap.json" doesn't exist +Info 1 [00:00:23.000] request: { "seq": 0, "type": "request", @@ -36,13 +36,13 @@ FsWatches:: FsWatchesRecursive:: -Info 2 [16:00:24.000] Search path: /user/username/projects/myproject -Info 3 [16:00:25.000] For info: /user/username/projects/myproject/ui.ts :: Config file name: /user/username/projects/myproject/tsconfig.json -Info 4 [16:00:26.000] Creating configuration project /user/username/projects/myproject/tsconfig.json -Info 5 [16:00:27.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/tsconfig.json 2000 undefined Project: /user/username/projects/myproject/tsconfig.json WatchType: Config file -Info 6 [16:00:28.000] event: +Info 2 [00:00:24.000] Search path: /user/username/projects/myproject +Info 3 [00:00:25.000] For info: /user/username/projects/myproject/ui.ts :: Config file name: /user/username/projects/myproject/tsconfig.json +Info 4 [00:00:26.000] Creating configuration project /user/username/projects/myproject/tsconfig.json +Info 5 [00:00:27.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/tsconfig.json 2000 undefined Project: /user/username/projects/myproject/tsconfig.json WatchType: Config file +Info 6 [00:00:28.000] event: {"seq":0,"type":"event","event":"projectLoadingStart","body":{"projectName":"/user/username/projects/myproject/tsconfig.json","reason":"Creating possible configured project for /user/username/projects/myproject/ui.ts to open"}} -Info 7 [16:00:29.000] Config: /user/username/projects/myproject/tsconfig.json : { +Info 7 [00:00:29.000] Config: /user/username/projects/myproject/tsconfig.json : { "rootNames": [ "/user/username/projects/myproject/ui.ts" ], @@ -50,16 +50,16 @@ Info 7 [16:00:29.000] Config: /user/username/projects/myproject/tsconfig.json "configFilePath": "/user/username/projects/myproject/tsconfig.json" } } -Info 8 [16:00:30.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject 1 undefined Config: /user/username/projects/myproject/tsconfig.json WatchType: Wild card directory -Info 9 [16:00:31.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject 1 undefined Config: /user/username/projects/myproject/tsconfig.json WatchType: Wild card directory -Info 10 [16:00:32.000] Plugins were requested but not running in environment that supports 'require'. Nothing will be loaded -Info 11 [16:00:33.000] Starting updateGraphWorker: Project: /user/username/projects/myproject/tsconfig.json -Info 12 [16:00:34.000] FileWatcher:: Added:: WatchInfo: /a/lib/lib.d.ts 500 undefined WatchType: Closed Script info -Info 13 [16:00:35.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/tsconfig.json WatchType: Type roots -Info 14 [16:00:36.000] 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 15 [16:00:37.000] Finishing updateGraphWorker: Project: /user/username/projects/myproject/tsconfig.json Version: 1 structureChanged: true structureIsReused:: Not Elapsed:: *ms -Info 16 [16:00:38.000] Project '/user/username/projects/myproject/tsconfig.json' (Configured) -Info 17 [16:00:39.000] Files (2) +Info 8 [00:00:30.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject 1 undefined Config: /user/username/projects/myproject/tsconfig.json WatchType: Wild card directory +Info 9 [00:00:31.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject 1 undefined Config: /user/username/projects/myproject/tsconfig.json WatchType: Wild card directory +Info 10 [00:00:32.000] Plugins were requested but not running in environment that supports 'require'. Nothing will be loaded +Info 11 [00:00:33.000] Starting updateGraphWorker: Project: /user/username/projects/myproject/tsconfig.json +Info 12 [00:00:34.000] FileWatcher:: Added:: WatchInfo: /a/lib/lib.d.ts 500 undefined WatchType: Closed Script info +Info 13 [00:00:35.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/tsconfig.json WatchType: Type roots +Info 14 [00:00:36.000] 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 15 [00:00:37.000] Finishing updateGraphWorker: Project: /user/username/projects/myproject/tsconfig.json Version: 1 structureChanged: true structureIsReused:: Not Elapsed:: *ms +Info 16 [00:00:38.000] Project '/user/username/projects/myproject/tsconfig.json' (Configured) +Info 17 [00:00:39.000] Files (2) /a/lib/lib.d.ts /user/username/projects/myproject/ui.ts @@ -69,20 +69,20 @@ Info 17 [16:00:39.000] Files (2) ui.ts Matched by default include pattern '**/*' -Info 18 [16:00:40.000] ----------------------------------------------- -Info 19 [16:00:41.000] event: +Info 18 [00:00:40.000] ----------------------------------------------- +Info 19 [00:00:41.000] event: {"seq":0,"type":"event","event":"projectLoadingFinish","body":{"projectName":"/user/username/projects/myproject/tsconfig.json"}} -Info 20 [16:00:42.000] event: +Info 20 [00:00:42.000] event: {"seq":0,"type":"event","event":"telemetry","body":{"telemetryEventName":"projectInfo","payload":{"projectId":"4a33d78ee40d836c4f4e64c59aed976628aea0013be9585c5ff171dfc41baf98","fileStats":{"js":0,"jsSize":0,"jsx":0,"jsxSize":0,"ts":1,"tsSize":41,"tsx":0,"tsxSize":0,"dts":1,"dtsSize":334,"deferred":0,"deferredSize":0},"compilerOptions":{},"typeAcquisition":{"enable":false,"include":false,"exclude":false},"extends":false,"files":false,"include":false,"exclude":false,"compileOnSave":false,"configFileName":"tsconfig.json","projectType":"configured","languageServiceEnabled":true,"version":"FakeVersion"}}} -Info 21 [16:00:43.000] event: +Info 21 [00:00:43.000] event: {"seq":0,"type":"event","event":"configFileDiag","body":{"triggerFile":"/user/username/projects/myproject/ui.ts","configFile":"/user/username/projects/myproject/tsconfig.json","diagnostics":[]}} -Info 22 [16:00:44.000] Project '/user/username/projects/myproject/tsconfig.json' (Configured) -Info 22 [16:00:45.000] Files (2) +Info 22 [00:00:44.000] Project '/user/username/projects/myproject/tsconfig.json' (Configured) +Info 22 [00:00:45.000] Files (2) -Info 22 [16:00:46.000] ----------------------------------------------- -Info 22 [16:00:47.000] Open files: -Info 22 [16:00:48.000] FileName: /user/username/projects/myproject/ui.ts ProjectRootPath: undefined -Info 22 [16:00:49.000] Projects: /user/username/projects/myproject/tsconfig.json +Info 22 [00:00:46.000] ----------------------------------------------- +Info 22 [00:00:47.000] Open files: +Info 22 [00:00:48.000] FileName: /user/username/projects/myproject/ui.ts ProjectRootPath: undefined +Info 22 [00:00:49.000] Projects: /user/username/projects/myproject/tsconfig.json After request PolledWatches:: @@ -99,11 +99,11 @@ FsWatchesRecursive:: /user/username/projects/myproject: {} -Info 22 [16:00:50.000] response: +Info 22 [00:00:50.000] response: { "responseRequired": false } -Info 23 [16:00:51.000] request: +Info 23 [00:00:51.000] request: { "command": "geterrForProject", "arguments": { @@ -145,7 +145,7 @@ FsWatchesRecursive:: /user/username/projects/myproject: {} -Info 24 [16:00:52.000] response: +Info 24 [00:00:52.000] response: { "responseRequired": false } @@ -165,7 +165,7 @@ FsWatchesRecursive:: /user/username/projects/myproject: {} -Info 25 [16:00:53.000] event: +Info 25 [00:00:53.000] event: {"seq":0,"type":"event","event":"syntaxDiag","body":{"file":"/user/username/projects/myproject/ui.ts","diagnostics":[]}} After checking timeout queue length (1) and running @@ -199,7 +199,7 @@ FsWatchesRecursive:: /user/username/projects/myproject: {} -Info 26 [16:00:54.000] event: +Info 26 [00:00:54.000] event: {"seq":0,"type":"event","event":"semanticDiag","body":{"file":"/user/username/projects/myproject/ui.ts","diagnostics":[{"start":{"line":1,"offset":11},"end":{"line":1,"offset":39},"text":"An async function or method must return a 'Promise'. Make sure you have a declaration for 'Promise' or include 'ES2015' in your '--lib' option.","code":2697,"category":"error"}]}} Before running immediate callbacks and checking length (1) @@ -233,9 +233,9 @@ FsWatchesRecursive:: /user/username/projects/myproject: {} -Info 27 [16:00:55.000] event: +Info 27 [00:00:55.000] event: {"seq":0,"type":"event","event":"suggestionDiag","body":{"file":"/user/username/projects/myproject/ui.ts","diagnostics":[]}} -Info 28 [16:00:56.000] event: +Info 28 [00:00:56.000] event: {"seq":0,"type":"event","event":"requestCompleted","body":{"request_seq":1}} Before running immediate callbacks and checking length (1) diff --git a/tests/baselines/reference/tsserver/projectLanguageServiceStateEvent/large-file-size-is-determined-correctly.js b/tests/baselines/reference/tsserver/projectLanguageServiceStateEvent/large-file-size-is-determined-correctly.js index 2ff4e2e48307e..2d27083dc5007 100644 --- a/tests/baselines/reference/tsserver/projectLanguageServiceStateEvent/large-file-size-is-determined-correctly.js +++ b/tests/baselines/reference/tsserver/projectLanguageServiceStateEvent/large-file-size-is-determined-correctly.js @@ -1,4 +1,4 @@ -Info 0 [16:00:17.000] Provided types map file "/typesMap.json" doesn't exist +Info 0 [00:00:17.000] Provided types map file "/typesMap.json" doesn't exist Creating project service //// [/a/app.js] let x = 1; @@ -32,11 +32,11 @@ FsWatches:: FsWatchesRecursive:: -Info 1 [16:00:18.000] Search path: /a -Info 2 [16:00:19.000] For info: /a/app.js :: Config file name: /a/jsconfig.json -Info 3 [16:00:20.000] Creating configuration project /a/jsconfig.json -Info 4 [16:00:21.000] FileWatcher:: Added:: WatchInfo: /a/jsconfig.json 2000 undefined Project: /a/jsconfig.json WatchType: Config file -Info 5 [16:00:22.000] Config: /a/jsconfig.json : { +Info 1 [00:00:18.000] Search path: /a +Info 2 [00:00:19.000] For info: /a/app.js :: Config file name: /a/jsconfig.json +Info 3 [00:00:20.000] Creating configuration project /a/jsconfig.json +Info 4 [00:00:21.000] FileWatcher:: Added:: WatchInfo: /a/jsconfig.json 2000 undefined Project: /a/jsconfig.json WatchType: Config file +Info 5 [00:00:22.000] Config: /a/jsconfig.json : { "rootNames": [ "/a/app.js", "/a/extremlylarge.d.ts", @@ -52,15 +52,15 @@ Info 5 [16:00:22.000] Config: /a/jsconfig.json : { "configFilePath": "/a/jsconfig.json" } } -Info 6 [16:00:23.000] Non TS file size exceeded limit (20971531). Largest files: /a/largefile.js:20971521, /a/app.js:10 -Info 7 [16:00:24.000] Plugins were requested but not running in environment that supports 'require'. Nothing will be loaded -Info 8 [16:00:25.000] FileWatcher:: Added:: WatchInfo: /a/extremlylarge.d.ts 500 undefined WatchType: Closed Script info -Info 9 [16:00:26.000] FileWatcher:: Added:: WatchInfo: /a/largefile.js 500 undefined WatchType: Closed Script info -Info 10 [16:00:27.000] FileWatcher:: Added:: WatchInfo: /a/lib/lib.d.ts 500 undefined WatchType: Closed Script info -Info 11 [16:00:28.000] Starting updateGraphWorker: Project: /a/jsconfig.json -Info 12 [16:00:29.000] Finishing updateGraphWorker: Project: /a/jsconfig.json Version: 1 structureChanged: true structureIsReused:: Not Elapsed:: *ms -Info 13 [16:00:30.000] Project '/a/jsconfig.json' (Configured) -Info 14 [16:00:31.000] Files (2) +Info 6 [00:00:23.000] Non TS file size exceeded limit (20971531). Largest files: /a/largefile.js:20971521, /a/app.js:10 +Info 7 [00:00:24.000] Plugins were requested but not running in environment that supports 'require'. Nothing will be loaded +Info 8 [00:00:25.000] FileWatcher:: Added:: WatchInfo: /a/extremlylarge.d.ts 500 undefined WatchType: Closed Script info +Info 9 [00:00:26.000] FileWatcher:: Added:: WatchInfo: /a/largefile.js 500 undefined WatchType: Closed Script info +Info 10 [00:00:27.000] FileWatcher:: Added:: WatchInfo: /a/lib/lib.d.ts 500 undefined WatchType: Closed Script info +Info 11 [00:00:28.000] Starting updateGraphWorker: Project: /a/jsconfig.json +Info 12 [00:00:29.000] Finishing updateGraphWorker: Project: /a/jsconfig.json Version: 1 structureChanged: true structureIsReused:: Not Elapsed:: *ms +Info 13 [00:00:30.000] Project '/a/jsconfig.json' (Configured) +Info 14 [00:00:31.000] Files (2) /a/lib/lib.d.ts /a/app.js @@ -70,13 +70,13 @@ Info 14 [16:00:31.000] Files (2) app.js Matched by default include pattern '**/*' -Info 15 [16:00:32.000] ----------------------------------------------- -Info 16 [16:00:33.000] Project '/a/jsconfig.json' (Configured) -Info 16 [16:00:34.000] Files (2) +Info 15 [00:00:32.000] ----------------------------------------------- +Info 16 [00:00:33.000] Project '/a/jsconfig.json' (Configured) +Info 16 [00:00:34.000] Files (2) -Info 16 [16:00:35.000] ----------------------------------------------- -Info 16 [16:00:36.000] Open files: -Info 16 [16:00:37.000] FileName: /a/app.js ProjectRootPath: undefined -Info 16 [16:00:38.000] Projects: /a/jsconfig.json -Info 16 [16:00:39.000] languageServiceEnabled: false -Info 17 [16:00:40.000] lastFileExceededProgramSize: /a/largefile.js \ No newline at end of file +Info 16 [00:00:35.000] ----------------------------------------------- +Info 16 [00:00:36.000] Open files: +Info 16 [00:00:37.000] FileName: /a/app.js ProjectRootPath: undefined +Info 16 [00:00:38.000] Projects: /a/jsconfig.json +Info 16 [00:00:39.000] languageServiceEnabled: false +Info 17 [00:00:40.000] lastFileExceededProgramSize: /a/largefile.js \ No newline at end of file diff --git a/tests/baselines/reference/tsserver/projectReferenceCompileOnSave/compile-on-save-emits-same-output-as-project-build-with-external-project.js b/tests/baselines/reference/tsserver/projectReferenceCompileOnSave/compile-on-save-emits-same-output-as-project-build-with-external-project.js index 5973216b71dff..5f623dba3c07c 100644 --- a/tests/baselines/reference/tsserver/projectReferenceCompileOnSave/compile-on-save-emits-same-output-as-project-build-with-external-project.js +++ b/tests/baselines/reference/tsserver/projectReferenceCompileOnSave/compile-on-save-emits-same-output-as-project-build-with-external-project.js @@ -1,5 +1,5 @@ -Info 0 [16:00:53.000] Provided types map file "/a/lib/typesMap.json" doesn't exist -Info 1 [16:00:54.000] request: +Info 0 [00:00:53.000] Provided types map file "/a/lib/typesMap.json" doesn't exist +Info 1 [00:00:54.000] request: { "seq": 0, "type": "request", @@ -256,11 +256,11 @@ FsWatches:: FsWatchesRecursive:: -Info 2 [16:00:55.000] Search path: /user/username/projects/myproject/SiblingClass -Info 3 [16:00:56.000] For info: /user/username/projects/myproject/SiblingClass/Source.ts :: Config file name: /user/username/projects/myproject/SiblingClass/tsconfig.json -Info 4 [16:00:57.000] Creating configuration project /user/username/projects/myproject/SiblingClass/tsconfig.json -Info 5 [16:00:58.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/SiblingClass/tsconfig.json 2000 undefined Project: /user/username/projects/myproject/SiblingClass/tsconfig.json WatchType: Config file -Info 6 [16:00:59.000] Config: /user/username/projects/myproject/SiblingClass/tsconfig.json : { +Info 2 [00:00:55.000] Search path: /user/username/projects/myproject/SiblingClass +Info 3 [00:00:56.000] For info: /user/username/projects/myproject/SiblingClass/Source.ts :: Config file name: /user/username/projects/myproject/SiblingClass/tsconfig.json +Info 4 [00:00:57.000] Creating configuration project /user/username/projects/myproject/SiblingClass/tsconfig.json +Info 5 [00:00:58.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/SiblingClass/tsconfig.json 2000 undefined Project: /user/username/projects/myproject/SiblingClass/tsconfig.json WatchType: Config file +Info 6 [00:00:59.000] Config: /user/username/projects/myproject/SiblingClass/tsconfig.json : { "rootNames": [ "/user/username/projects/myproject/SiblingClass/Source.ts" ], @@ -277,10 +277,10 @@ Info 6 [16:00:59.000] Config: /user/username/projects/myproject/SiblingClass/ } ] } -Info 7 [16:01:00.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/tsbase.json 2000 undefined Config: /user/username/projects/myproject/SiblingClass/tsconfig.json WatchType: Extended config file -Info 8 [16:01:01.000] Plugins were requested but not running in environment that supports 'require'. Nothing will be loaded -Info 9 [16:01:02.000] Starting updateGraphWorker: Project: /user/username/projects/myproject/SiblingClass/tsconfig.json -Info 10 [16:01:03.000] Config: /user/username/projects/myproject/buttonClass/tsconfig.json : { +Info 7 [00:01:00.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/tsbase.json 2000 undefined Config: /user/username/projects/myproject/SiblingClass/tsconfig.json WatchType: Extended config file +Info 8 [00:01:01.000] Plugins were requested but not running in environment that supports 'require'. Nothing will be loaded +Info 9 [00:01:02.000] Starting updateGraphWorker: Project: /user/username/projects/myproject/SiblingClass/tsconfig.json +Info 10 [00:01:03.000] Config: /user/username/projects/myproject/buttonClass/tsconfig.json : { "rootNames": [ "/user/username/projects/myproject/buttonClass/Source.ts" ], @@ -291,16 +291,16 @@ Info 10 [16:01:03.000] Config: /user/username/projects/myproject/buttonClass/t "configFilePath": "/user/username/projects/myproject/buttonClass/tsconfig.json" } } -Info 11 [16:01:04.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/buttonClass/tsconfig.json 2000 undefined Project: /user/username/projects/myproject/SiblingClass/tsconfig.json WatchType: Config file -Info 12 [16:01:05.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/buttonClass/Source.ts 500 undefined WatchType: Closed Script info -Info 13 [16:01:06.000] FileWatcher:: Added:: WatchInfo: /a/lib/lib.d.ts 500 undefined WatchType: Closed Script info -Info 14 [16:01:07.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/SiblingClass/node_modules/@types 1 undefined Project: /user/username/projects/myproject/SiblingClass/tsconfig.json WatchType: Type roots -Info 15 [16:01:08.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/SiblingClass/node_modules/@types 1 undefined Project: /user/username/projects/myproject/SiblingClass/tsconfig.json WatchType: Type roots -Info 16 [16:01:09.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/SiblingClass/tsconfig.json WatchType: Type roots -Info 17 [16:01:10.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/SiblingClass/tsconfig.json WatchType: Type roots -Info 18 [16:01:11.000] Finishing updateGraphWorker: Project: /user/username/projects/myproject/SiblingClass/tsconfig.json Version: 1 structureChanged: true structureIsReused:: Not Elapsed:: *ms -Info 19 [16:01:12.000] Project '/user/username/projects/myproject/SiblingClass/tsconfig.json' (Configured) -Info 20 [16:01:13.000] Files (3) +Info 11 [00:01:04.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/buttonClass/tsconfig.json 2000 undefined Project: /user/username/projects/myproject/SiblingClass/tsconfig.json WatchType: Config file +Info 12 [00:01:05.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/buttonClass/Source.ts 500 undefined WatchType: Closed Script info +Info 13 [00:01:06.000] FileWatcher:: Added:: WatchInfo: /a/lib/lib.d.ts 500 undefined WatchType: Closed Script info +Info 14 [00:01:07.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/SiblingClass/node_modules/@types 1 undefined Project: /user/username/projects/myproject/SiblingClass/tsconfig.json WatchType: Type roots +Info 15 [00:01:08.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/SiblingClass/node_modules/@types 1 undefined Project: /user/username/projects/myproject/SiblingClass/tsconfig.json WatchType: Type roots +Info 16 [00:01:09.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/SiblingClass/tsconfig.json WatchType: Type roots +Info 17 [00:01:10.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/SiblingClass/tsconfig.json WatchType: Type roots +Info 18 [00:01:11.000] Finishing updateGraphWorker: Project: /user/username/projects/myproject/SiblingClass/tsconfig.json Version: 1 structureChanged: true structureIsReused:: Not Elapsed:: *ms +Info 19 [00:01:12.000] Project '/user/username/projects/myproject/SiblingClass/tsconfig.json' (Configured) +Info 20 [00:01:13.000] Files (3) /a/lib/lib.d.ts /user/username/projects/myproject/buttonClass/Source.ts /user/username/projects/myproject/SiblingClass/Source.ts @@ -313,16 +313,16 @@ Info 20 [16:01:13.000] Files (3) Source.ts Part of 'files' list in tsconfig.json -Info 21 [16:01:14.000] ----------------------------------------------- -Info 22 [16:01:15.000] Search path: /user/username/projects/myproject/SiblingClass -Info 23 [16:01:16.000] For info: /user/username/projects/myproject/SiblingClass/tsconfig.json :: No config files found. -Info 24 [16:01:17.000] Project '/user/username/projects/myproject/SiblingClass/tsconfig.json' (Configured) -Info 24 [16:01:18.000] Files (3) +Info 21 [00:01:14.000] ----------------------------------------------- +Info 22 [00:01:15.000] Search path: /user/username/projects/myproject/SiblingClass +Info 23 [00:01:16.000] For info: /user/username/projects/myproject/SiblingClass/tsconfig.json :: No config files found. +Info 24 [00:01:17.000] Project '/user/username/projects/myproject/SiblingClass/tsconfig.json' (Configured) +Info 24 [00:01:18.000] Files (3) -Info 24 [16:01:19.000] ----------------------------------------------- -Info 24 [16:01:20.000] Open files: -Info 24 [16:01:21.000] FileName: /user/username/projects/myproject/SiblingClass/Source.ts ProjectRootPath: undefined -Info 24 [16:01:22.000] Projects: /user/username/projects/myproject/SiblingClass/tsconfig.json +Info 24 [00:01:19.000] ----------------------------------------------- +Info 24 [00:01:20.000] Open files: +Info 24 [00:01:21.000] FileName: /user/username/projects/myproject/SiblingClass/Source.ts ProjectRootPath: undefined +Info 24 [00:01:22.000] Projects: /user/username/projects/myproject/SiblingClass/tsconfig.json After request PolledWatches:: @@ -345,11 +345,11 @@ FsWatches:: FsWatchesRecursive:: -Info 24 [16:01:23.000] response: +Info 24 [00:01:23.000] response: { "responseRequired": false } -Info 25 [16:01:24.000] request: +Info 25 [00:01:24.000] request: { "command": "compileOnSaveEmitFile", "arguments": { @@ -405,7 +405,7 @@ FsWatches:: FsWatchesRecursive:: -Info 26 [16:01:31.000] response: +Info 26 [00:01:31.000] response: { "response": true, "responseRequired": true 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 7caa9d1e235d8..37f86397ac3ef 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 @@ -1,5 +1,5 @@ -Info 0 [16:00:29.000] Provided types map file "/a/lib/typesMap.json" doesn't exist -Info 1 [16:00:30.000] request: +Info 0 [00:00:29.000] Provided types map file "/a/lib/typesMap.json" doesn't exist +Info 1 [00:00:30.000] request: { "seq": 0, "type": "request", @@ -49,11 +49,11 @@ FsWatches:: FsWatchesRecursive:: -Info 2 [16:00:31.000] Search path: /user/username/projects/myproject/usage -Info 3 [16:00:32.000] For info: /user/username/projects/myproject/usage/usage.ts :: Config file name: /user/username/projects/myproject/usage/tsconfig.json -Info 4 [16:00:33.000] Creating configuration project /user/username/projects/myproject/usage/tsconfig.json -Info 5 [16:00:34.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/usage/tsconfig.json 2000 undefined Project: /user/username/projects/myproject/usage/tsconfig.json WatchType: Config file -Info 6 [16:00:35.000] Config: /user/username/projects/myproject/usage/tsconfig.json : { +Info 2 [00:00:31.000] Search path: /user/username/projects/myproject/usage +Info 3 [00:00:32.000] For info: /user/username/projects/myproject/usage/usage.ts :: Config file name: /user/username/projects/myproject/usage/tsconfig.json +Info 4 [00:00:33.000] Creating configuration project /user/username/projects/myproject/usage/tsconfig.json +Info 5 [00:00:34.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/usage/tsconfig.json 2000 undefined Project: /user/username/projects/myproject/usage/tsconfig.json WatchType: Config file +Info 6 [00:00:35.000] Config: /user/username/projects/myproject/usage/tsconfig.json : { "rootNames": [ "/user/username/projects/myproject/usage/usage.ts" ], @@ -67,11 +67,11 @@ Info 6 [16:00:35.000] Config: /user/username/projects/myproject/usage/tsconfi } ] } -Info 7 [16:00:36.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/usage 1 undefined Config: /user/username/projects/myproject/usage/tsconfig.json WatchType: Wild card directory -Info 8 [16:00:37.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/usage 1 undefined Config: /user/username/projects/myproject/usage/tsconfig.json WatchType: Wild card directory -Info 9 [16:00:38.000] Plugins were requested but not running in environment that supports 'require'. Nothing will be loaded -Info 10 [16:00:39.000] Starting updateGraphWorker: Project: /user/username/projects/myproject/usage/tsconfig.json -Info 11 [16:00:40.000] Config: /user/username/projects/myproject/dependency/tsconfig.json : { +Info 7 [00:00:36.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/usage 1 undefined Config: /user/username/projects/myproject/usage/tsconfig.json WatchType: Wild card directory +Info 8 [00:00:37.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/usage 1 undefined Config: /user/username/projects/myproject/usage/tsconfig.json WatchType: Wild card directory +Info 9 [00:00:38.000] Plugins were requested but not running in environment that supports 'require'. Nothing will be loaded +Info 10 [00:00:39.000] Starting updateGraphWorker: Project: /user/username/projects/myproject/usage/tsconfig.json +Info 11 [00:00:40.000] Config: /user/username/projects/myproject/dependency/tsconfig.json : { "rootNames": [ "/user/username/projects/myproject/dependency/fns.ts" ], @@ -81,20 +81,20 @@ Info 11 [16:00:40.000] Config: /user/username/projects/myproject/dependency/ts "configFilePath": "/user/username/projects/myproject/dependency/tsconfig.json" } } -Info 12 [16:00:41.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/dependency/tsconfig.json 2000 undefined Project: /user/username/projects/myproject/usage/tsconfig.json WatchType: Config file -Info 13 [16:00:42.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/dependency 1 undefined Config: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Wild card directory -Info 14 [16:00:43.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/dependency 1 undefined Config: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Wild card directory -Info 15 [16:00:44.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/decls 1 undefined Project: /user/username/projects/myproject/usage/tsconfig.json WatchType: Failed Lookup Locations -Info 16 [16:00:45.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/decls 1 undefined Project: /user/username/projects/myproject/usage/tsconfig.json WatchType: Failed Lookup Locations -Info 17 [16:00:46.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/dependency/fns.ts 500 undefined WatchType: Closed Script info -Info 18 [16:00:47.000] FileWatcher:: Added:: WatchInfo: /a/lib/lib.d.ts 500 undefined WatchType: Closed Script info -Info 19 [16:00:48.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/usage/node_modules/@types 1 undefined Project: /user/username/projects/myproject/usage/tsconfig.json WatchType: Type roots -Info 20 [16:00:49.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/usage/node_modules/@types 1 undefined Project: /user/username/projects/myproject/usage/tsconfig.json WatchType: Type roots -Info 21 [16:00:50.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/usage/tsconfig.json WatchType: Type roots -Info 22 [16:00:51.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/usage/tsconfig.json WatchType: Type roots -Info 23 [16:00:52.000] Finishing updateGraphWorker: Project: /user/username/projects/myproject/usage/tsconfig.json Version: 1 structureChanged: true structureIsReused:: Not Elapsed:: *ms -Info 24 [16:00:53.000] Project '/user/username/projects/myproject/usage/tsconfig.json' (Configured) -Info 25 [16:00:54.000] Files (3) +Info 12 [00:00:41.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/dependency/tsconfig.json 2000 undefined Project: /user/username/projects/myproject/usage/tsconfig.json WatchType: Config file +Info 13 [00:00:42.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/dependency 1 undefined Config: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Wild card directory +Info 14 [00:00:43.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/dependency 1 undefined Config: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Wild card directory +Info 15 [00:00:44.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/decls 1 undefined Project: /user/username/projects/myproject/usage/tsconfig.json WatchType: Failed Lookup Locations +Info 16 [00:00:45.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/decls 1 undefined Project: /user/username/projects/myproject/usage/tsconfig.json WatchType: Failed Lookup Locations +Info 17 [00:00:46.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/dependency/fns.ts 500 undefined WatchType: Closed Script info +Info 18 [00:00:47.000] FileWatcher:: Added:: WatchInfo: /a/lib/lib.d.ts 500 undefined WatchType: Closed Script info +Info 19 [00:00:48.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/usage/node_modules/@types 1 undefined Project: /user/username/projects/myproject/usage/tsconfig.json WatchType: Type roots +Info 20 [00:00:49.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/usage/node_modules/@types 1 undefined Project: /user/username/projects/myproject/usage/tsconfig.json WatchType: Type roots +Info 21 [00:00:50.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/usage/tsconfig.json WatchType: Type roots +Info 22 [00:00:51.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/usage/tsconfig.json WatchType: Type roots +Info 23 [00:00:52.000] Finishing updateGraphWorker: Project: /user/username/projects/myproject/usage/tsconfig.json Version: 1 structureChanged: true structureIsReused:: Not Elapsed:: *ms +Info 24 [00:00:53.000] Project '/user/username/projects/myproject/usage/tsconfig.json' (Configured) +Info 25 [00:00:54.000] Files (3) /a/lib/lib.d.ts /user/username/projects/myproject/dependency/fns.ts /user/username/projects/myproject/usage/usage.ts @@ -107,14 +107,14 @@ Info 25 [16:00:54.000] Files (3) usage.ts Matched by default include pattern '**/*' -Info 26 [16:00:55.000] ----------------------------------------------- -Info 27 [16:00:56.000] Project '/user/username/projects/myproject/usage/tsconfig.json' (Configured) -Info 27 [16:00:57.000] Files (3) +Info 26 [00:00:55.000] ----------------------------------------------- +Info 27 [00:00:56.000] Project '/user/username/projects/myproject/usage/tsconfig.json' (Configured) +Info 27 [00:00:57.000] Files (3) -Info 27 [16:00:58.000] ----------------------------------------------- -Info 27 [16:00:59.000] Open files: -Info 27 [16:01:00.000] FileName: /user/username/projects/myproject/usage/usage.ts ProjectRootPath: undefined -Info 27 [16:01:01.000] Projects: /user/username/projects/myproject/usage/tsconfig.json +Info 27 [00:00:58.000] ----------------------------------------------- +Info 27 [00:00:59.000] Open files: +Info 27 [00:01:00.000] FileName: /user/username/projects/myproject/usage/usage.ts ProjectRootPath: undefined +Info 27 [00:01:01.000] Projects: /user/username/projects/myproject/usage/tsconfig.json After request PolledWatches:: @@ -141,11 +141,11 @@ FsWatchesRecursive:: /user/username/projects/myproject/dependency: {} -Info 27 [16:01:02.000] response: +Info 27 [00:01:02.000] response: { "responseRequired": false } -Info 28 [16:01:03.000] request: +Info 28 [00:01:03.000] request: { "seq": 0, "type": "request", @@ -180,19 +180,19 @@ FsWatchesRecursive:: /user/username/projects/myproject/dependency: {} -Info 29 [16:01:04.000] FileWatcher:: Close:: WatchInfo: /user/username/projects/myproject/dependency/fns.ts 500 undefined WatchType: Closed Script info -Info 30 [16:01:05.000] Search path: /user/username/projects/myproject/dependency -Info 31 [16:01:06.000] For info: /user/username/projects/myproject/dependency/fns.ts :: Config file name: /user/username/projects/myproject/dependency/tsconfig.json -Info 32 [16:01:07.000] Creating configuration project /user/username/projects/myproject/dependency/tsconfig.json -Info 33 [16:01:08.000] Plugins were requested but not running in environment that supports 'require'. Nothing will be loaded -Info 34 [16:01:09.000] Starting updateGraphWorker: Project: /user/username/projects/myproject/dependency/tsconfig.json -Info 35 [16:01:10.000] 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 36 [16:01:11.000] 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 37 [16:01:12.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Type roots -Info 38 [16:01:13.000] 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 39 [16:01:14.000] Finishing updateGraphWorker: Project: /user/username/projects/myproject/dependency/tsconfig.json Version: 1 structureChanged: true structureIsReused:: Not Elapsed:: *ms -Info 40 [16:01:15.000] Project '/user/username/projects/myproject/dependency/tsconfig.json' (Configured) -Info 41 [16:01:16.000] Files (2) +Info 29 [00:01:04.000] FileWatcher:: Close:: WatchInfo: /user/username/projects/myproject/dependency/fns.ts 500 undefined WatchType: Closed Script info +Info 30 [00:01:05.000] Search path: /user/username/projects/myproject/dependency +Info 31 [00:01:06.000] For info: /user/username/projects/myproject/dependency/fns.ts :: Config file name: /user/username/projects/myproject/dependency/tsconfig.json +Info 32 [00:01:07.000] Creating configuration project /user/username/projects/myproject/dependency/tsconfig.json +Info 33 [00:01:08.000] Plugins were requested but not running in environment that supports 'require'. Nothing will be loaded +Info 34 [00:01:09.000] Starting updateGraphWorker: Project: /user/username/projects/myproject/dependency/tsconfig.json +Info 35 [00:01:10.000] 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 36 [00:01:11.000] 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 37 [00:01:12.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Type roots +Info 38 [00:01:13.000] 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 39 [00:01:14.000] Finishing updateGraphWorker: Project: /user/username/projects/myproject/dependency/tsconfig.json Version: 1 structureChanged: true structureIsReused:: Not Elapsed:: *ms +Info 40 [00:01:15.000] Project '/user/username/projects/myproject/dependency/tsconfig.json' (Configured) +Info 41 [00:01:16.000] Files (2) /a/lib/lib.d.ts /user/username/projects/myproject/dependency/fns.ts @@ -202,22 +202,22 @@ Info 41 [16:01:16.000] Files (2) fns.ts Matched by default include pattern '**/*' -Info 42 [16:01:17.000] ----------------------------------------------- -Info 43 [16:01:18.000] Search path: /user/username/projects/myproject/dependency -Info 44 [16:01:19.000] For info: /user/username/projects/myproject/dependency/tsconfig.json :: No config files found. -Info 45 [16:01:20.000] Project '/user/username/projects/myproject/usage/tsconfig.json' (Configured) -Info 45 [16:01:21.000] Files (3) - -Info 45 [16:01:22.000] ----------------------------------------------- -Info 45 [16:01:23.000] Project '/user/username/projects/myproject/dependency/tsconfig.json' (Configured) -Info 45 [16:01:24.000] Files (2) - -Info 45 [16:01:25.000] ----------------------------------------------- -Info 45 [16:01:26.000] Open files: -Info 45 [16:01:27.000] FileName: /user/username/projects/myproject/usage/usage.ts ProjectRootPath: undefined -Info 45 [16:01:28.000] Projects: /user/username/projects/myproject/usage/tsconfig.json -Info 45 [16:01:29.000] FileName: /user/username/projects/myproject/dependency/fns.ts ProjectRootPath: undefined -Info 45 [16:01:30.000] Projects: /user/username/projects/myproject/usage/tsconfig.json,/user/username/projects/myproject/dependency/tsconfig.json +Info 42 [00:01:17.000] ----------------------------------------------- +Info 43 [00:01:18.000] Search path: /user/username/projects/myproject/dependency +Info 44 [00:01:19.000] For info: /user/username/projects/myproject/dependency/tsconfig.json :: No config files found. +Info 45 [00:01:20.000] Project '/user/username/projects/myproject/usage/tsconfig.json' (Configured) +Info 45 [00:01:21.000] Files (3) + +Info 45 [00:01:22.000] ----------------------------------------------- +Info 45 [00:01:23.000] Project '/user/username/projects/myproject/dependency/tsconfig.json' (Configured) +Info 45 [00:01:24.000] Files (2) + +Info 45 [00:01:25.000] ----------------------------------------------- +Info 45 [00:01:26.000] Open files: +Info 45 [00:01:27.000] FileName: /user/username/projects/myproject/usage/usage.ts ProjectRootPath: undefined +Info 45 [00:01:28.000] Projects: /user/username/projects/myproject/usage/tsconfig.json +Info 45 [00:01:29.000] FileName: /user/username/projects/myproject/dependency/fns.ts ProjectRootPath: undefined +Info 45 [00:01:30.000] Projects: /user/username/projects/myproject/usage/tsconfig.json,/user/username/projects/myproject/dependency/tsconfig.json After request PolledWatches:: @@ -244,11 +244,11 @@ FsWatchesRecursive:: /user/username/projects/myproject/dependency: {} -Info 45 [16:01:31.000] response: +Info 45 [00:01:31.000] response: { "responseRequired": false } -Info 46 [16:01:32.000] request: +Info 46 [00:01:32.000] request: { "command": "compileOnSaveAffectedFileList", "arguments": { @@ -283,34 +283,34 @@ FsWatchesRecursive:: /user/username/projects/myproject/dependency: {} -Info 47 [16:01:33.000] Before ensureProjectForOpenFiles: -Info 48 [16:01:34.000] Project '/user/username/projects/myproject/usage/tsconfig.json' (Configured) -Info 48 [16:01:35.000] Files (3) - -Info 48 [16:01:36.000] ----------------------------------------------- -Info 48 [16:01:37.000] Project '/user/username/projects/myproject/dependency/tsconfig.json' (Configured) -Info 48 [16:01:38.000] Files (2) - -Info 48 [16:01:39.000] ----------------------------------------------- -Info 48 [16:01:40.000] Open files: -Info 48 [16:01:41.000] FileName: /user/username/projects/myproject/usage/usage.ts ProjectRootPath: undefined -Info 48 [16:01:42.000] Projects: /user/username/projects/myproject/usage/tsconfig.json -Info 48 [16:01:43.000] FileName: /user/username/projects/myproject/dependency/fns.ts ProjectRootPath: undefined -Info 48 [16:01:44.000] Projects: /user/username/projects/myproject/usage/tsconfig.json,/user/username/projects/myproject/dependency/tsconfig.json -Info 48 [16:01:45.000] After ensureProjectForOpenFiles: -Info 49 [16:01:46.000] Project '/user/username/projects/myproject/usage/tsconfig.json' (Configured) -Info 49 [16:01:47.000] Files (3) - -Info 49 [16:01:48.000] ----------------------------------------------- -Info 49 [16:01:49.000] Project '/user/username/projects/myproject/dependency/tsconfig.json' (Configured) -Info 49 [16:01:50.000] Files (2) - -Info 49 [16:01:51.000] ----------------------------------------------- -Info 49 [16:01:52.000] Open files: -Info 49 [16:01:53.000] FileName: /user/username/projects/myproject/usage/usage.ts ProjectRootPath: undefined -Info 49 [16:01:54.000] Projects: /user/username/projects/myproject/usage/tsconfig.json -Info 49 [16:01:55.000] FileName: /user/username/projects/myproject/dependency/fns.ts ProjectRootPath: undefined -Info 49 [16:01:56.000] Projects: /user/username/projects/myproject/usage/tsconfig.json,/user/username/projects/myproject/dependency/tsconfig.json +Info 47 [00:01:33.000] Before ensureProjectForOpenFiles: +Info 48 [00:01:34.000] Project '/user/username/projects/myproject/usage/tsconfig.json' (Configured) +Info 48 [00:01:35.000] Files (3) + +Info 48 [00:01:36.000] ----------------------------------------------- +Info 48 [00:01:37.000] Project '/user/username/projects/myproject/dependency/tsconfig.json' (Configured) +Info 48 [00:01:38.000] Files (2) + +Info 48 [00:01:39.000] ----------------------------------------------- +Info 48 [00:01:40.000] Open files: +Info 48 [00:01:41.000] FileName: /user/username/projects/myproject/usage/usage.ts ProjectRootPath: undefined +Info 48 [00:01:42.000] Projects: /user/username/projects/myproject/usage/tsconfig.json +Info 48 [00:01:43.000] FileName: /user/username/projects/myproject/dependency/fns.ts ProjectRootPath: undefined +Info 48 [00:01:44.000] Projects: /user/username/projects/myproject/usage/tsconfig.json,/user/username/projects/myproject/dependency/tsconfig.json +Info 48 [00:01:45.000] After ensureProjectForOpenFiles: +Info 49 [00:01:46.000] Project '/user/username/projects/myproject/usage/tsconfig.json' (Configured) +Info 49 [00:01:47.000] Files (3) + +Info 49 [00:01:48.000] ----------------------------------------------- +Info 49 [00:01:49.000] Project '/user/username/projects/myproject/dependency/tsconfig.json' (Configured) +Info 49 [00:01:50.000] Files (2) + +Info 49 [00:01:51.000] ----------------------------------------------- +Info 49 [00:01:52.000] Open files: +Info 49 [00:01:53.000] FileName: /user/username/projects/myproject/usage/usage.ts ProjectRootPath: undefined +Info 49 [00:01:54.000] Projects: /user/username/projects/myproject/usage/tsconfig.json +Info 49 [00:01:55.000] FileName: /user/username/projects/myproject/dependency/fns.ts ProjectRootPath: undefined +Info 49 [00:01:56.000] Projects: /user/username/projects/myproject/usage/tsconfig.json,/user/username/projects/myproject/dependency/tsconfig.json After request PolledWatches:: @@ -337,7 +337,7 @@ FsWatchesRecursive:: /user/username/projects/myproject/dependency: {} -Info 49 [16:01:57.000] response: +Info 49 [00:01:57.000] response: { "response": [ { @@ -357,7 +357,7 @@ Info 49 [16:01:57.000] response: ], "responseRequired": true } -Info 50 [16:01:58.000] request: +Info 50 [00:01:58.000] request: { "command": "change", "arguments": { @@ -423,11 +423,11 @@ FsWatchesRecursive:: /user/username/projects/myproject/dependency: {} -Info 51 [16:01:59.000] response: +Info 51 [00:01:59.000] response: { "responseRequired": false } -Info 52 [16:02:00.000] request: +Info 52 [00:02:00.000] request: { "command": "compileOnSaveAffectedFileList", "arguments": { @@ -462,40 +462,40 @@ FsWatchesRecursive:: /user/username/projects/myproject/dependency: {} -Info 53 [16:02:01.000] Starting updateGraphWorker: Project: /user/username/projects/myproject/usage/tsconfig.json -Info 54 [16:02:02.000] Finishing updateGraphWorker: Project: /user/username/projects/myproject/usage/tsconfig.json Version: 2 structureChanged: false structureIsReused:: Completely Elapsed:: *ms -Info 55 [16:02:03.000] Different program with same set of files -Info 56 [16:02:04.000] Starting updateGraphWorker: Project: /user/username/projects/myproject/dependency/tsconfig.json -Info 57 [16:02:05.000] Finishing updateGraphWorker: Project: /user/username/projects/myproject/dependency/tsconfig.json Version: 2 structureChanged: false structureIsReused:: Completely Elapsed:: *ms -Info 58 [16:02:06.000] Different program with same set of files -Info 59 [16:02:07.000] Before ensureProjectForOpenFiles: -Info 60 [16:02:08.000] Project '/user/username/projects/myproject/usage/tsconfig.json' (Configured) -Info 60 [16:02:09.000] Files (3) - -Info 60 [16:02:10.000] ----------------------------------------------- -Info 60 [16:02:11.000] Project '/user/username/projects/myproject/dependency/tsconfig.json' (Configured) -Info 60 [16:02:12.000] Files (2) - -Info 60 [16:02:13.000] ----------------------------------------------- -Info 60 [16:02:14.000] Open files: -Info 60 [16:02:15.000] FileName: /user/username/projects/myproject/usage/usage.ts ProjectRootPath: undefined -Info 60 [16:02:16.000] Projects: /user/username/projects/myproject/usage/tsconfig.json -Info 60 [16:02:17.000] FileName: /user/username/projects/myproject/dependency/fns.ts ProjectRootPath: undefined -Info 60 [16:02:18.000] Projects: /user/username/projects/myproject/usage/tsconfig.json,/user/username/projects/myproject/dependency/tsconfig.json -Info 60 [16:02:19.000] After ensureProjectForOpenFiles: -Info 61 [16:02:20.000] Project '/user/username/projects/myproject/usage/tsconfig.json' (Configured) -Info 61 [16:02:21.000] Files (3) - -Info 61 [16:02:22.000] ----------------------------------------------- -Info 61 [16:02:23.000] Project '/user/username/projects/myproject/dependency/tsconfig.json' (Configured) -Info 61 [16:02:24.000] Files (2) - -Info 61 [16:02:25.000] ----------------------------------------------- -Info 61 [16:02:26.000] Open files: -Info 61 [16:02:27.000] FileName: /user/username/projects/myproject/usage/usage.ts ProjectRootPath: undefined -Info 61 [16:02:28.000] Projects: /user/username/projects/myproject/usage/tsconfig.json -Info 61 [16:02:29.000] FileName: /user/username/projects/myproject/dependency/fns.ts ProjectRootPath: undefined -Info 61 [16:02:30.000] Projects: /user/username/projects/myproject/usage/tsconfig.json,/user/username/projects/myproject/dependency/tsconfig.json +Info 53 [00:02:01.000] Starting updateGraphWorker: Project: /user/username/projects/myproject/usage/tsconfig.json +Info 54 [00:02:02.000] Finishing updateGraphWorker: Project: /user/username/projects/myproject/usage/tsconfig.json Version: 2 structureChanged: false structureIsReused:: Completely Elapsed:: *ms +Info 55 [00:02:03.000] Different program with same set of files +Info 56 [00:02:04.000] Starting updateGraphWorker: Project: /user/username/projects/myproject/dependency/tsconfig.json +Info 57 [00:02:05.000] Finishing updateGraphWorker: Project: /user/username/projects/myproject/dependency/tsconfig.json Version: 2 structureChanged: false structureIsReused:: Completely Elapsed:: *ms +Info 58 [00:02:06.000] Different program with same set of files +Info 59 [00:02:07.000] Before ensureProjectForOpenFiles: +Info 60 [00:02:08.000] Project '/user/username/projects/myproject/usage/tsconfig.json' (Configured) +Info 60 [00:02:09.000] Files (3) + +Info 60 [00:02:10.000] ----------------------------------------------- +Info 60 [00:02:11.000] Project '/user/username/projects/myproject/dependency/tsconfig.json' (Configured) +Info 60 [00:02:12.000] Files (2) + +Info 60 [00:02:13.000] ----------------------------------------------- +Info 60 [00:02:14.000] Open files: +Info 60 [00:02:15.000] FileName: /user/username/projects/myproject/usage/usage.ts ProjectRootPath: undefined +Info 60 [00:02:16.000] Projects: /user/username/projects/myproject/usage/tsconfig.json +Info 60 [00:02:17.000] FileName: /user/username/projects/myproject/dependency/fns.ts ProjectRootPath: undefined +Info 60 [00:02:18.000] Projects: /user/username/projects/myproject/usage/tsconfig.json,/user/username/projects/myproject/dependency/tsconfig.json +Info 60 [00:02:19.000] After ensureProjectForOpenFiles: +Info 61 [00:02:20.000] Project '/user/username/projects/myproject/usage/tsconfig.json' (Configured) +Info 61 [00:02:21.000] Files (3) + +Info 61 [00:02:22.000] ----------------------------------------------- +Info 61 [00:02:23.000] Project '/user/username/projects/myproject/dependency/tsconfig.json' (Configured) +Info 61 [00:02:24.000] Files (2) + +Info 61 [00:02:25.000] ----------------------------------------------- +Info 61 [00:02:26.000] Open files: +Info 61 [00:02:27.000] FileName: /user/username/projects/myproject/usage/usage.ts ProjectRootPath: undefined +Info 61 [00:02:28.000] Projects: /user/username/projects/myproject/usage/tsconfig.json +Info 61 [00:02:29.000] FileName: /user/username/projects/myproject/dependency/fns.ts ProjectRootPath: undefined +Info 61 [00:02:30.000] Projects: /user/username/projects/myproject/usage/tsconfig.json,/user/username/projects/myproject/dependency/tsconfig.json After request PolledWatches:: @@ -522,7 +522,7 @@ FsWatchesRecursive:: /user/username/projects/myproject/dependency: {} -Info 61 [16:02:31.000] response: +Info 61 [00:02:31.000] response: { "response": [ { @@ -542,7 +542,7 @@ Info 61 [16:02:31.000] response: ], "responseRequired": true } -Info 62 [16:02:32.000] request: +Info 62 [00:02:32.000] request: { "command": "compileOnSaveEmitFile", "arguments": { @@ -577,18 +577,18 @@ FsWatchesRecursive:: /user/username/projects/myproject/dependency: {} -Info 63 [16:02:35.000] DirectoryWatcher:: Triggered with /user/username/projects/myproject/dependency/fns.js :: WatchInfo: /user/username/projects/myproject/dependency 1 undefined Config: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Wild card directory -Info 64 [16:02:36.000] Project: /user/username/projects/myproject/dependency/tsconfig.json Detected file add/remove of non supported extension: /user/username/projects/myproject/dependency/fns.js -Info 65 [16:02:37.000] Elapsed:: *ms DirectoryWatcher:: Triggered with /user/username/projects/myproject/dependency/fns.js :: WatchInfo: /user/username/projects/myproject/dependency 1 undefined Config: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Wild card directory -Info 66 [16:02:41.000] DirectoryWatcher:: Triggered with /user/username/projects/myproject/decls :: WatchInfo: /user/username/projects/myproject/decls 1 undefined Project: /user/username/projects/myproject/usage/tsconfig.json WatchType: Failed Lookup Locations -Info 67 [16:02:42.000] Scheduled: /user/username/projects/myproject/usage/tsconfig.jsonFailedLookupInvalidation -Info 68 [16:02:43.000] Elapsed:: *ms DirectoryWatcher:: Triggered with /user/username/projects/myproject/decls :: WatchInfo: /user/username/projects/myproject/decls 1 undefined Project: /user/username/projects/myproject/usage/tsconfig.json WatchType: Failed Lookup Locations -Info 69 [16:02:44.000] DirectoryWatcher:: Triggered with /user/username/projects/myproject/decls :: WatchInfo: /user/username/projects/myproject/decls 1 undefined Project: /user/username/projects/myproject/usage/tsconfig.json WatchType: Failed Lookup Locations -Info 70 [16:02:45.000] Scheduled: /user/username/projects/myproject/usage/tsconfig.jsonFailedLookupInvalidation, Cancelled earlier one -Info 71 [16:02:46.000] Elapsed:: *ms DirectoryWatcher:: Triggered with /user/username/projects/myproject/decls :: WatchInfo: /user/username/projects/myproject/decls 1 undefined Project: /user/username/projects/myproject/usage/tsconfig.json WatchType: Failed Lookup Locations -Info 72 [16:02:49.000] DirectoryWatcher:: Triggered with /user/username/projects/myproject/decls/fns.d.ts :: WatchInfo: /user/username/projects/myproject/decls 1 undefined Project: /user/username/projects/myproject/usage/tsconfig.json WatchType: Failed Lookup Locations -Info 73 [16:02:50.000] Scheduled: /user/username/projects/myproject/usage/tsconfig.jsonFailedLookupInvalidation, Cancelled earlier one -Info 74 [16:02:51.000] Elapsed:: *ms DirectoryWatcher:: Triggered with /user/username/projects/myproject/decls/fns.d.ts :: WatchInfo: /user/username/projects/myproject/decls 1 undefined Project: /user/username/projects/myproject/usage/tsconfig.json WatchType: Failed Lookup Locations +Info 63 [00:02:35.000] DirectoryWatcher:: Triggered with /user/username/projects/myproject/dependency/fns.js :: WatchInfo: /user/username/projects/myproject/dependency 1 undefined Config: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Wild card directory +Info 64 [00:02:36.000] Project: /user/username/projects/myproject/dependency/tsconfig.json Detected file add/remove of non supported extension: /user/username/projects/myproject/dependency/fns.js +Info 65 [00:02:37.000] Elapsed:: *ms DirectoryWatcher:: Triggered with /user/username/projects/myproject/dependency/fns.js :: WatchInfo: /user/username/projects/myproject/dependency 1 undefined Config: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Wild card directory +Info 66 [00:02:41.000] DirectoryWatcher:: Triggered with /user/username/projects/myproject/decls :: WatchInfo: /user/username/projects/myproject/decls 1 undefined Project: /user/username/projects/myproject/usage/tsconfig.json WatchType: Failed Lookup Locations +Info 67 [00:02:42.000] Scheduled: /user/username/projects/myproject/usage/tsconfig.jsonFailedLookupInvalidation +Info 68 [00:02:43.000] Elapsed:: *ms DirectoryWatcher:: Triggered with /user/username/projects/myproject/decls :: WatchInfo: /user/username/projects/myproject/decls 1 undefined Project: /user/username/projects/myproject/usage/tsconfig.json WatchType: Failed Lookup Locations +Info 69 [00:02:44.000] DirectoryWatcher:: Triggered with /user/username/projects/myproject/decls :: WatchInfo: /user/username/projects/myproject/decls 1 undefined Project: /user/username/projects/myproject/usage/tsconfig.json WatchType: Failed Lookup Locations +Info 70 [00:02:45.000] Scheduled: /user/username/projects/myproject/usage/tsconfig.jsonFailedLookupInvalidation, Cancelled earlier one +Info 71 [00:02:46.000] Elapsed:: *ms DirectoryWatcher:: Triggered with /user/username/projects/myproject/decls :: WatchInfo: /user/username/projects/myproject/decls 1 undefined Project: /user/username/projects/myproject/usage/tsconfig.json WatchType: Failed Lookup Locations +Info 72 [00:02:49.000] DirectoryWatcher:: Triggered with /user/username/projects/myproject/decls/fns.d.ts :: WatchInfo: /user/username/projects/myproject/decls 1 undefined Project: /user/username/projects/myproject/usage/tsconfig.json WatchType: Failed Lookup Locations +Info 73 [00:02:50.000] Scheduled: /user/username/projects/myproject/usage/tsconfig.jsonFailedLookupInvalidation, Cancelled earlier one +Info 74 [00:02:51.000] Elapsed:: *ms DirectoryWatcher:: Triggered with /user/username/projects/myproject/decls/fns.d.ts :: WatchInfo: /user/username/projects/myproject/decls 1 undefined Project: /user/username/projects/myproject/usage/tsconfig.json WatchType: Failed Lookup Locations After request //// [/user/username/projects/myproject/dependency/fns.js] "use strict"; @@ -633,12 +633,12 @@ FsWatchesRecursive:: /user/username/projects/myproject/decls: {} -Info 75 [16:02:52.000] response: +Info 75 [00:02:52.000] response: { "response": true, "responseRequired": true } -Info 76 [16:02:53.000] request: +Info 76 [00:02:53.000] request: { "command": "emit-output", "arguments": { @@ -699,7 +699,7 @@ FsWatchesRecursive:: /user/username/projects/myproject/decls: {} -Info 77 [16:02:54.000] response: +Info 77 [00:02:54.000] response: { "response": { "outputFiles": [ 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 9275d6ab90f67..e34dedc41b3e3 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 @@ -1,5 +1,5 @@ -Info 0 [16:00:29.000] Provided types map file "/a/lib/typesMap.json" doesn't exist -Info 1 [16:00:30.000] request: +Info 0 [00:00:29.000] Provided types map file "/a/lib/typesMap.json" doesn't exist +Info 1 [00:00:30.000] request: { "seq": 0, "type": "request", @@ -49,11 +49,11 @@ FsWatches:: FsWatchesRecursive:: -Info 2 [16:00:31.000] Search path: /user/username/projects/myproject/usage -Info 3 [16:00:32.000] For info: /user/username/projects/myproject/usage/usage.ts :: Config file name: /user/username/projects/myproject/usage/tsconfig.json -Info 4 [16:00:33.000] Creating configuration project /user/username/projects/myproject/usage/tsconfig.json -Info 5 [16:00:34.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/usage/tsconfig.json 2000 undefined Project: /user/username/projects/myproject/usage/tsconfig.json WatchType: Config file -Info 6 [16:00:35.000] Config: /user/username/projects/myproject/usage/tsconfig.json : { +Info 2 [00:00:31.000] Search path: /user/username/projects/myproject/usage +Info 3 [00:00:32.000] For info: /user/username/projects/myproject/usage/usage.ts :: Config file name: /user/username/projects/myproject/usage/tsconfig.json +Info 4 [00:00:33.000] Creating configuration project /user/username/projects/myproject/usage/tsconfig.json +Info 5 [00:00:34.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/usage/tsconfig.json 2000 undefined Project: /user/username/projects/myproject/usage/tsconfig.json WatchType: Config file +Info 6 [00:00:35.000] Config: /user/username/projects/myproject/usage/tsconfig.json : { "rootNames": [ "/user/username/projects/myproject/usage/usage.ts" ], @@ -67,11 +67,11 @@ Info 6 [16:00:35.000] Config: /user/username/projects/myproject/usage/tsconfi } ] } -Info 7 [16:00:36.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/usage 1 undefined Config: /user/username/projects/myproject/usage/tsconfig.json WatchType: Wild card directory -Info 8 [16:00:37.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/usage 1 undefined Config: /user/username/projects/myproject/usage/tsconfig.json WatchType: Wild card directory -Info 9 [16:00:38.000] Plugins were requested but not running in environment that supports 'require'. Nothing will be loaded -Info 10 [16:00:39.000] Starting updateGraphWorker: Project: /user/username/projects/myproject/usage/tsconfig.json -Info 11 [16:00:40.000] Config: /user/username/projects/myproject/dependency/tsconfig.json : { +Info 7 [00:00:36.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/usage 1 undefined Config: /user/username/projects/myproject/usage/tsconfig.json WatchType: Wild card directory +Info 8 [00:00:37.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/usage 1 undefined Config: /user/username/projects/myproject/usage/tsconfig.json WatchType: Wild card directory +Info 9 [00:00:38.000] Plugins were requested but not running in environment that supports 'require'. Nothing will be loaded +Info 10 [00:00:39.000] Starting updateGraphWorker: Project: /user/username/projects/myproject/usage/tsconfig.json +Info 11 [00:00:40.000] Config: /user/username/projects/myproject/dependency/tsconfig.json : { "rootNames": [ "/user/username/projects/myproject/dependency/fns.ts" ], @@ -81,20 +81,20 @@ Info 11 [16:00:40.000] Config: /user/username/projects/myproject/dependency/ts "configFilePath": "/user/username/projects/myproject/dependency/tsconfig.json" } } -Info 12 [16:00:41.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/dependency/tsconfig.json 2000 undefined Project: /user/username/projects/myproject/usage/tsconfig.json WatchType: Config file -Info 13 [16:00:42.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/dependency 1 undefined Config: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Wild card directory -Info 14 [16:00:43.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/dependency 1 undefined Config: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Wild card directory -Info 15 [16:00:44.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/decls 1 undefined Project: /user/username/projects/myproject/usage/tsconfig.json WatchType: Failed Lookup Locations -Info 16 [16:00:45.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/decls 1 undefined Project: /user/username/projects/myproject/usage/tsconfig.json WatchType: Failed Lookup Locations -Info 17 [16:00:46.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/dependency/fns.ts 500 undefined WatchType: Closed Script info -Info 18 [16:00:47.000] FileWatcher:: Added:: WatchInfo: /a/lib/lib.d.ts 500 undefined WatchType: Closed Script info -Info 19 [16:00:48.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/usage/node_modules/@types 1 undefined Project: /user/username/projects/myproject/usage/tsconfig.json WatchType: Type roots -Info 20 [16:00:49.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/usage/node_modules/@types 1 undefined Project: /user/username/projects/myproject/usage/tsconfig.json WatchType: Type roots -Info 21 [16:00:50.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/usage/tsconfig.json WatchType: Type roots -Info 22 [16:00:51.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/usage/tsconfig.json WatchType: Type roots -Info 23 [16:00:52.000] Finishing updateGraphWorker: Project: /user/username/projects/myproject/usage/tsconfig.json Version: 1 structureChanged: true structureIsReused:: Not Elapsed:: *ms -Info 24 [16:00:53.000] Project '/user/username/projects/myproject/usage/tsconfig.json' (Configured) -Info 25 [16:00:54.000] Files (3) +Info 12 [00:00:41.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/dependency/tsconfig.json 2000 undefined Project: /user/username/projects/myproject/usage/tsconfig.json WatchType: Config file +Info 13 [00:00:42.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/dependency 1 undefined Config: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Wild card directory +Info 14 [00:00:43.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/dependency 1 undefined Config: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Wild card directory +Info 15 [00:00:44.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/decls 1 undefined Project: /user/username/projects/myproject/usage/tsconfig.json WatchType: Failed Lookup Locations +Info 16 [00:00:45.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/decls 1 undefined Project: /user/username/projects/myproject/usage/tsconfig.json WatchType: Failed Lookup Locations +Info 17 [00:00:46.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/dependency/fns.ts 500 undefined WatchType: Closed Script info +Info 18 [00:00:47.000] FileWatcher:: Added:: WatchInfo: /a/lib/lib.d.ts 500 undefined WatchType: Closed Script info +Info 19 [00:00:48.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/usage/node_modules/@types 1 undefined Project: /user/username/projects/myproject/usage/tsconfig.json WatchType: Type roots +Info 20 [00:00:49.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/usage/node_modules/@types 1 undefined Project: /user/username/projects/myproject/usage/tsconfig.json WatchType: Type roots +Info 21 [00:00:50.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/usage/tsconfig.json WatchType: Type roots +Info 22 [00:00:51.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/usage/tsconfig.json WatchType: Type roots +Info 23 [00:00:52.000] Finishing updateGraphWorker: Project: /user/username/projects/myproject/usage/tsconfig.json Version: 1 structureChanged: true structureIsReused:: Not Elapsed:: *ms +Info 24 [00:00:53.000] Project '/user/username/projects/myproject/usage/tsconfig.json' (Configured) +Info 25 [00:00:54.000] Files (3) /a/lib/lib.d.ts /user/username/projects/myproject/dependency/fns.ts /user/username/projects/myproject/usage/usage.ts @@ -107,14 +107,14 @@ Info 25 [16:00:54.000] Files (3) usage.ts Matched by default include pattern '**/*' -Info 26 [16:00:55.000] ----------------------------------------------- -Info 27 [16:00:56.000] Project '/user/username/projects/myproject/usage/tsconfig.json' (Configured) -Info 27 [16:00:57.000] Files (3) +Info 26 [00:00:55.000] ----------------------------------------------- +Info 27 [00:00:56.000] Project '/user/username/projects/myproject/usage/tsconfig.json' (Configured) +Info 27 [00:00:57.000] Files (3) -Info 27 [16:00:58.000] ----------------------------------------------- -Info 27 [16:00:59.000] Open files: -Info 27 [16:01:00.000] FileName: /user/username/projects/myproject/usage/usage.ts ProjectRootPath: undefined -Info 27 [16:01:01.000] Projects: /user/username/projects/myproject/usage/tsconfig.json +Info 27 [00:00:58.000] ----------------------------------------------- +Info 27 [00:00:59.000] Open files: +Info 27 [00:01:00.000] FileName: /user/username/projects/myproject/usage/usage.ts ProjectRootPath: undefined +Info 27 [00:01:01.000] Projects: /user/username/projects/myproject/usage/tsconfig.json After request PolledWatches:: @@ -141,11 +141,11 @@ FsWatchesRecursive:: /user/username/projects/myproject/dependency: {} -Info 27 [16:01:02.000] response: +Info 27 [00:01:02.000] response: { "responseRequired": false } -Info 28 [16:01:03.000] request: +Info 28 [00:01:03.000] request: { "seq": 0, "type": "request", @@ -180,19 +180,19 @@ FsWatchesRecursive:: /user/username/projects/myproject/dependency: {} -Info 29 [16:01:04.000] FileWatcher:: Close:: WatchInfo: /user/username/projects/myproject/dependency/fns.ts 500 undefined WatchType: Closed Script info -Info 30 [16:01:05.000] Search path: /user/username/projects/myproject/dependency -Info 31 [16:01:06.000] For info: /user/username/projects/myproject/dependency/fns.ts :: Config file name: /user/username/projects/myproject/dependency/tsconfig.json -Info 32 [16:01:07.000] Creating configuration project /user/username/projects/myproject/dependency/tsconfig.json -Info 33 [16:01:08.000] Plugins were requested but not running in environment that supports 'require'. Nothing will be loaded -Info 34 [16:01:09.000] Starting updateGraphWorker: Project: /user/username/projects/myproject/dependency/tsconfig.json -Info 35 [16:01:10.000] 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 36 [16:01:11.000] 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 37 [16:01:12.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Type roots -Info 38 [16:01:13.000] 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 39 [16:01:14.000] Finishing updateGraphWorker: Project: /user/username/projects/myproject/dependency/tsconfig.json Version: 1 structureChanged: true structureIsReused:: Not Elapsed:: *ms -Info 40 [16:01:15.000] Project '/user/username/projects/myproject/dependency/tsconfig.json' (Configured) -Info 41 [16:01:16.000] Files (2) +Info 29 [00:01:04.000] FileWatcher:: Close:: WatchInfo: /user/username/projects/myproject/dependency/fns.ts 500 undefined WatchType: Closed Script info +Info 30 [00:01:05.000] Search path: /user/username/projects/myproject/dependency +Info 31 [00:01:06.000] For info: /user/username/projects/myproject/dependency/fns.ts :: Config file name: /user/username/projects/myproject/dependency/tsconfig.json +Info 32 [00:01:07.000] Creating configuration project /user/username/projects/myproject/dependency/tsconfig.json +Info 33 [00:01:08.000] Plugins were requested but not running in environment that supports 'require'. Nothing will be loaded +Info 34 [00:01:09.000] Starting updateGraphWorker: Project: /user/username/projects/myproject/dependency/tsconfig.json +Info 35 [00:01:10.000] 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 36 [00:01:11.000] 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 37 [00:01:12.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Type roots +Info 38 [00:01:13.000] 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 39 [00:01:14.000] Finishing updateGraphWorker: Project: /user/username/projects/myproject/dependency/tsconfig.json Version: 1 structureChanged: true structureIsReused:: Not Elapsed:: *ms +Info 40 [00:01:15.000] Project '/user/username/projects/myproject/dependency/tsconfig.json' (Configured) +Info 41 [00:01:16.000] Files (2) /a/lib/lib.d.ts /user/username/projects/myproject/dependency/fns.ts @@ -202,22 +202,22 @@ Info 41 [16:01:16.000] Files (2) fns.ts Matched by default include pattern '**/*' -Info 42 [16:01:17.000] ----------------------------------------------- -Info 43 [16:01:18.000] Search path: /user/username/projects/myproject/dependency -Info 44 [16:01:19.000] For info: /user/username/projects/myproject/dependency/tsconfig.json :: No config files found. -Info 45 [16:01:20.000] Project '/user/username/projects/myproject/usage/tsconfig.json' (Configured) -Info 45 [16:01:21.000] Files (3) - -Info 45 [16:01:22.000] ----------------------------------------------- -Info 45 [16:01:23.000] Project '/user/username/projects/myproject/dependency/tsconfig.json' (Configured) -Info 45 [16:01:24.000] Files (2) - -Info 45 [16:01:25.000] ----------------------------------------------- -Info 45 [16:01:26.000] Open files: -Info 45 [16:01:27.000] FileName: /user/username/projects/myproject/usage/usage.ts ProjectRootPath: undefined -Info 45 [16:01:28.000] Projects: /user/username/projects/myproject/usage/tsconfig.json -Info 45 [16:01:29.000] FileName: /user/username/projects/myproject/dependency/fns.ts ProjectRootPath: undefined -Info 45 [16:01:30.000] Projects: /user/username/projects/myproject/usage/tsconfig.json,/user/username/projects/myproject/dependency/tsconfig.json +Info 42 [00:01:17.000] ----------------------------------------------- +Info 43 [00:01:18.000] Search path: /user/username/projects/myproject/dependency +Info 44 [00:01:19.000] For info: /user/username/projects/myproject/dependency/tsconfig.json :: No config files found. +Info 45 [00:01:20.000] Project '/user/username/projects/myproject/usage/tsconfig.json' (Configured) +Info 45 [00:01:21.000] Files (3) + +Info 45 [00:01:22.000] ----------------------------------------------- +Info 45 [00:01:23.000] Project '/user/username/projects/myproject/dependency/tsconfig.json' (Configured) +Info 45 [00:01:24.000] Files (2) + +Info 45 [00:01:25.000] ----------------------------------------------- +Info 45 [00:01:26.000] Open files: +Info 45 [00:01:27.000] FileName: /user/username/projects/myproject/usage/usage.ts ProjectRootPath: undefined +Info 45 [00:01:28.000] Projects: /user/username/projects/myproject/usage/tsconfig.json +Info 45 [00:01:29.000] FileName: /user/username/projects/myproject/dependency/fns.ts ProjectRootPath: undefined +Info 45 [00:01:30.000] Projects: /user/username/projects/myproject/usage/tsconfig.json,/user/username/projects/myproject/dependency/tsconfig.json After request PolledWatches:: @@ -244,11 +244,11 @@ FsWatchesRecursive:: /user/username/projects/myproject/dependency: {} -Info 45 [16:01:31.000] response: +Info 45 [00:01:31.000] response: { "responseRequired": false } -Info 46 [16:01:32.000] request: +Info 46 [00:01:32.000] request: { "command": "compileOnSaveAffectedFileList", "arguments": { @@ -283,34 +283,34 @@ FsWatchesRecursive:: /user/username/projects/myproject/dependency: {} -Info 47 [16:01:33.000] Before ensureProjectForOpenFiles: -Info 48 [16:01:34.000] Project '/user/username/projects/myproject/usage/tsconfig.json' (Configured) -Info 48 [16:01:35.000] Files (3) - -Info 48 [16:01:36.000] ----------------------------------------------- -Info 48 [16:01:37.000] Project '/user/username/projects/myproject/dependency/tsconfig.json' (Configured) -Info 48 [16:01:38.000] Files (2) - -Info 48 [16:01:39.000] ----------------------------------------------- -Info 48 [16:01:40.000] Open files: -Info 48 [16:01:41.000] FileName: /user/username/projects/myproject/usage/usage.ts ProjectRootPath: undefined -Info 48 [16:01:42.000] Projects: /user/username/projects/myproject/usage/tsconfig.json -Info 48 [16:01:43.000] FileName: /user/username/projects/myproject/dependency/fns.ts ProjectRootPath: undefined -Info 48 [16:01:44.000] Projects: /user/username/projects/myproject/usage/tsconfig.json,/user/username/projects/myproject/dependency/tsconfig.json -Info 48 [16:01:45.000] After ensureProjectForOpenFiles: -Info 49 [16:01:46.000] Project '/user/username/projects/myproject/usage/tsconfig.json' (Configured) -Info 49 [16:01:47.000] Files (3) - -Info 49 [16:01:48.000] ----------------------------------------------- -Info 49 [16:01:49.000] Project '/user/username/projects/myproject/dependency/tsconfig.json' (Configured) -Info 49 [16:01:50.000] Files (2) - -Info 49 [16:01:51.000] ----------------------------------------------- -Info 49 [16:01:52.000] Open files: -Info 49 [16:01:53.000] FileName: /user/username/projects/myproject/usage/usage.ts ProjectRootPath: undefined -Info 49 [16:01:54.000] Projects: /user/username/projects/myproject/usage/tsconfig.json -Info 49 [16:01:55.000] FileName: /user/username/projects/myproject/dependency/fns.ts ProjectRootPath: undefined -Info 49 [16:01:56.000] Projects: /user/username/projects/myproject/usage/tsconfig.json,/user/username/projects/myproject/dependency/tsconfig.json +Info 47 [00:01:33.000] Before ensureProjectForOpenFiles: +Info 48 [00:01:34.000] Project '/user/username/projects/myproject/usage/tsconfig.json' (Configured) +Info 48 [00:01:35.000] Files (3) + +Info 48 [00:01:36.000] ----------------------------------------------- +Info 48 [00:01:37.000] Project '/user/username/projects/myproject/dependency/tsconfig.json' (Configured) +Info 48 [00:01:38.000] Files (2) + +Info 48 [00:01:39.000] ----------------------------------------------- +Info 48 [00:01:40.000] Open files: +Info 48 [00:01:41.000] FileName: /user/username/projects/myproject/usage/usage.ts ProjectRootPath: undefined +Info 48 [00:01:42.000] Projects: /user/username/projects/myproject/usage/tsconfig.json +Info 48 [00:01:43.000] FileName: /user/username/projects/myproject/dependency/fns.ts ProjectRootPath: undefined +Info 48 [00:01:44.000] Projects: /user/username/projects/myproject/usage/tsconfig.json,/user/username/projects/myproject/dependency/tsconfig.json +Info 48 [00:01:45.000] After ensureProjectForOpenFiles: +Info 49 [00:01:46.000] Project '/user/username/projects/myproject/usage/tsconfig.json' (Configured) +Info 49 [00:01:47.000] Files (3) + +Info 49 [00:01:48.000] ----------------------------------------------- +Info 49 [00:01:49.000] Project '/user/username/projects/myproject/dependency/tsconfig.json' (Configured) +Info 49 [00:01:50.000] Files (2) + +Info 49 [00:01:51.000] ----------------------------------------------- +Info 49 [00:01:52.000] Open files: +Info 49 [00:01:53.000] FileName: /user/username/projects/myproject/usage/usage.ts ProjectRootPath: undefined +Info 49 [00:01:54.000] Projects: /user/username/projects/myproject/usage/tsconfig.json +Info 49 [00:01:55.000] FileName: /user/username/projects/myproject/dependency/fns.ts ProjectRootPath: undefined +Info 49 [00:01:56.000] Projects: /user/username/projects/myproject/usage/tsconfig.json,/user/username/projects/myproject/dependency/tsconfig.json After request PolledWatches:: @@ -337,7 +337,7 @@ FsWatchesRecursive:: /user/username/projects/myproject/dependency: {} -Info 49 [16:01:57.000] response: +Info 49 [00:01:57.000] response: { "response": [ { @@ -357,7 +357,7 @@ Info 49 [16:01:57.000] response: ], "responseRequired": true } -Info 50 [16:01:58.000] request: +Info 50 [00:01:58.000] request: { "command": "change", "arguments": { @@ -423,11 +423,11 @@ FsWatchesRecursive:: /user/username/projects/myproject/dependency: {} -Info 51 [16:01:59.000] response: +Info 51 [00:01:59.000] response: { "responseRequired": false } -Info 52 [16:02:00.000] request: +Info 52 [00:02:00.000] request: { "command": "compileOnSaveAffectedFileList", "arguments": { @@ -462,37 +462,37 @@ FsWatchesRecursive:: /user/username/projects/myproject/dependency: {} -Info 53 [16:02:01.000] Starting updateGraphWorker: Project: /user/username/projects/myproject/usage/tsconfig.json -Info 54 [16:02:02.000] Finishing updateGraphWorker: Project: /user/username/projects/myproject/usage/tsconfig.json Version: 2 structureChanged: false structureIsReused:: Completely Elapsed:: *ms -Info 55 [16:02:03.000] Different program with same set of files -Info 56 [16:02:04.000] Before ensureProjectForOpenFiles: -Info 57 [16:02:05.000] Project '/user/username/projects/myproject/usage/tsconfig.json' (Configured) -Info 57 [16:02:06.000] Files (3) - -Info 57 [16:02:07.000] ----------------------------------------------- -Info 57 [16:02:08.000] Project '/user/username/projects/myproject/dependency/tsconfig.json' (Configured) -Info 57 [16:02:09.000] Files (2) - -Info 57 [16:02:10.000] ----------------------------------------------- -Info 57 [16:02:11.000] Open files: -Info 57 [16:02:12.000] FileName: /user/username/projects/myproject/usage/usage.ts ProjectRootPath: undefined -Info 57 [16:02:13.000] Projects: /user/username/projects/myproject/usage/tsconfig.json -Info 57 [16:02:14.000] FileName: /user/username/projects/myproject/dependency/fns.ts ProjectRootPath: undefined -Info 57 [16:02:15.000] Projects: /user/username/projects/myproject/usage/tsconfig.json,/user/username/projects/myproject/dependency/tsconfig.json -Info 57 [16:02:16.000] After ensureProjectForOpenFiles: -Info 58 [16:02:17.000] Project '/user/username/projects/myproject/usage/tsconfig.json' (Configured) -Info 58 [16:02:18.000] Files (3) - -Info 58 [16:02:19.000] ----------------------------------------------- -Info 58 [16:02:20.000] Project '/user/username/projects/myproject/dependency/tsconfig.json' (Configured) -Info 58 [16:02:21.000] Files (2) - -Info 58 [16:02:22.000] ----------------------------------------------- -Info 58 [16:02:23.000] Open files: -Info 58 [16:02:24.000] FileName: /user/username/projects/myproject/usage/usage.ts ProjectRootPath: undefined -Info 58 [16:02:25.000] Projects: /user/username/projects/myproject/usage/tsconfig.json -Info 58 [16:02:26.000] FileName: /user/username/projects/myproject/dependency/fns.ts ProjectRootPath: undefined -Info 58 [16:02:27.000] Projects: /user/username/projects/myproject/usage/tsconfig.json,/user/username/projects/myproject/dependency/tsconfig.json +Info 53 [00:02:01.000] Starting updateGraphWorker: Project: /user/username/projects/myproject/usage/tsconfig.json +Info 54 [00:02:02.000] Finishing updateGraphWorker: Project: /user/username/projects/myproject/usage/tsconfig.json Version: 2 structureChanged: false structureIsReused:: Completely Elapsed:: *ms +Info 55 [00:02:03.000] Different program with same set of files +Info 56 [00:02:04.000] Before ensureProjectForOpenFiles: +Info 57 [00:02:05.000] Project '/user/username/projects/myproject/usage/tsconfig.json' (Configured) +Info 57 [00:02:06.000] Files (3) + +Info 57 [00:02:07.000] ----------------------------------------------- +Info 57 [00:02:08.000] Project '/user/username/projects/myproject/dependency/tsconfig.json' (Configured) +Info 57 [00:02:09.000] Files (2) + +Info 57 [00:02:10.000] ----------------------------------------------- +Info 57 [00:02:11.000] Open files: +Info 57 [00:02:12.000] FileName: /user/username/projects/myproject/usage/usage.ts ProjectRootPath: undefined +Info 57 [00:02:13.000] Projects: /user/username/projects/myproject/usage/tsconfig.json +Info 57 [00:02:14.000] FileName: /user/username/projects/myproject/dependency/fns.ts ProjectRootPath: undefined +Info 57 [00:02:15.000] Projects: /user/username/projects/myproject/usage/tsconfig.json,/user/username/projects/myproject/dependency/tsconfig.json +Info 57 [00:02:16.000] After ensureProjectForOpenFiles: +Info 58 [00:02:17.000] Project '/user/username/projects/myproject/usage/tsconfig.json' (Configured) +Info 58 [00:02:18.000] Files (3) + +Info 58 [00:02:19.000] ----------------------------------------------- +Info 58 [00:02:20.000] Project '/user/username/projects/myproject/dependency/tsconfig.json' (Configured) +Info 58 [00:02:21.000] Files (2) + +Info 58 [00:02:22.000] ----------------------------------------------- +Info 58 [00:02:23.000] Open files: +Info 58 [00:02:24.000] FileName: /user/username/projects/myproject/usage/usage.ts ProjectRootPath: undefined +Info 58 [00:02:25.000] Projects: /user/username/projects/myproject/usage/tsconfig.json +Info 58 [00:02:26.000] FileName: /user/username/projects/myproject/dependency/fns.ts ProjectRootPath: undefined +Info 58 [00:02:27.000] Projects: /user/username/projects/myproject/usage/tsconfig.json,/user/username/projects/myproject/dependency/tsconfig.json After request PolledWatches:: @@ -519,7 +519,7 @@ FsWatchesRecursive:: /user/username/projects/myproject/dependency: {} -Info 58 [16:02:28.000] response: +Info 58 [00:02:28.000] response: { "response": [ { @@ -537,7 +537,7 @@ Info 58 [16:02:28.000] response: ], "responseRequired": true } -Info 59 [16:02:29.000] request: +Info 59 [00:02:29.000] request: { "command": "compileOnSaveEmitFile", "arguments": { @@ -572,18 +572,18 @@ FsWatchesRecursive:: /user/username/projects/myproject/dependency: {} -Info 60 [16:02:32.000] DirectoryWatcher:: Triggered with /user/username/projects/myproject/dependency/fns.js :: WatchInfo: /user/username/projects/myproject/dependency 1 undefined Config: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Wild card directory -Info 61 [16:02:33.000] Project: /user/username/projects/myproject/dependency/tsconfig.json Detected file add/remove of non supported extension: /user/username/projects/myproject/dependency/fns.js -Info 62 [16:02:34.000] Elapsed:: *ms DirectoryWatcher:: Triggered with /user/username/projects/myproject/dependency/fns.js :: WatchInfo: /user/username/projects/myproject/dependency 1 undefined Config: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Wild card directory -Info 63 [16:02:38.000] DirectoryWatcher:: Triggered with /user/username/projects/myproject/decls :: WatchInfo: /user/username/projects/myproject/decls 1 undefined Project: /user/username/projects/myproject/usage/tsconfig.json WatchType: Failed Lookup Locations -Info 64 [16:02:39.000] Scheduled: /user/username/projects/myproject/usage/tsconfig.jsonFailedLookupInvalidation -Info 65 [16:02:40.000] Elapsed:: *ms DirectoryWatcher:: Triggered with /user/username/projects/myproject/decls :: WatchInfo: /user/username/projects/myproject/decls 1 undefined Project: /user/username/projects/myproject/usage/tsconfig.json WatchType: Failed Lookup Locations -Info 66 [16:02:41.000] DirectoryWatcher:: Triggered with /user/username/projects/myproject/decls :: WatchInfo: /user/username/projects/myproject/decls 1 undefined Project: /user/username/projects/myproject/usage/tsconfig.json WatchType: Failed Lookup Locations -Info 67 [16:02:42.000] Scheduled: /user/username/projects/myproject/usage/tsconfig.jsonFailedLookupInvalidation, Cancelled earlier one -Info 68 [16:02:43.000] Elapsed:: *ms DirectoryWatcher:: Triggered with /user/username/projects/myproject/decls :: WatchInfo: /user/username/projects/myproject/decls 1 undefined Project: /user/username/projects/myproject/usage/tsconfig.json WatchType: Failed Lookup Locations -Info 69 [16:02:46.000] DirectoryWatcher:: Triggered with /user/username/projects/myproject/decls/fns.d.ts :: WatchInfo: /user/username/projects/myproject/decls 1 undefined Project: /user/username/projects/myproject/usage/tsconfig.json WatchType: Failed Lookup Locations -Info 70 [16:02:47.000] Scheduled: /user/username/projects/myproject/usage/tsconfig.jsonFailedLookupInvalidation, Cancelled earlier one -Info 71 [16:02:48.000] Elapsed:: *ms DirectoryWatcher:: Triggered with /user/username/projects/myproject/decls/fns.d.ts :: WatchInfo: /user/username/projects/myproject/decls 1 undefined Project: /user/username/projects/myproject/usage/tsconfig.json WatchType: Failed Lookup Locations +Info 60 [00:02:32.000] DirectoryWatcher:: Triggered with /user/username/projects/myproject/dependency/fns.js :: WatchInfo: /user/username/projects/myproject/dependency 1 undefined Config: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Wild card directory +Info 61 [00:02:33.000] Project: /user/username/projects/myproject/dependency/tsconfig.json Detected file add/remove of non supported extension: /user/username/projects/myproject/dependency/fns.js +Info 62 [00:02:34.000] Elapsed:: *ms DirectoryWatcher:: Triggered with /user/username/projects/myproject/dependency/fns.js :: WatchInfo: /user/username/projects/myproject/dependency 1 undefined Config: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Wild card directory +Info 63 [00:02:38.000] DirectoryWatcher:: Triggered with /user/username/projects/myproject/decls :: WatchInfo: /user/username/projects/myproject/decls 1 undefined Project: /user/username/projects/myproject/usage/tsconfig.json WatchType: Failed Lookup Locations +Info 64 [00:02:39.000] Scheduled: /user/username/projects/myproject/usage/tsconfig.jsonFailedLookupInvalidation +Info 65 [00:02:40.000] Elapsed:: *ms DirectoryWatcher:: Triggered with /user/username/projects/myproject/decls :: WatchInfo: /user/username/projects/myproject/decls 1 undefined Project: /user/username/projects/myproject/usage/tsconfig.json WatchType: Failed Lookup Locations +Info 66 [00:02:41.000] DirectoryWatcher:: Triggered with /user/username/projects/myproject/decls :: WatchInfo: /user/username/projects/myproject/decls 1 undefined Project: /user/username/projects/myproject/usage/tsconfig.json WatchType: Failed Lookup Locations +Info 67 [00:02:42.000] Scheduled: /user/username/projects/myproject/usage/tsconfig.jsonFailedLookupInvalidation, Cancelled earlier one +Info 68 [00:02:43.000] Elapsed:: *ms DirectoryWatcher:: Triggered with /user/username/projects/myproject/decls :: WatchInfo: /user/username/projects/myproject/decls 1 undefined Project: /user/username/projects/myproject/usage/tsconfig.json WatchType: Failed Lookup Locations +Info 69 [00:02:46.000] DirectoryWatcher:: Triggered with /user/username/projects/myproject/decls/fns.d.ts :: WatchInfo: /user/username/projects/myproject/decls 1 undefined Project: /user/username/projects/myproject/usage/tsconfig.json WatchType: Failed Lookup Locations +Info 70 [00:02:47.000] Scheduled: /user/username/projects/myproject/usage/tsconfig.jsonFailedLookupInvalidation, Cancelled earlier one +Info 71 [00:02:48.000] Elapsed:: *ms DirectoryWatcher:: Triggered with /user/username/projects/myproject/decls/fns.d.ts :: WatchInfo: /user/username/projects/myproject/decls 1 undefined Project: /user/username/projects/myproject/usage/tsconfig.json WatchType: Failed Lookup Locations After request //// [/user/username/projects/myproject/dependency/fns.js] "use strict"; @@ -625,12 +625,12 @@ FsWatchesRecursive:: /user/username/projects/myproject/decls: {} -Info 72 [16:02:49.000] response: +Info 72 [00:02:49.000] response: { "response": true, "responseRequired": true } -Info 73 [16:02:50.000] request: +Info 73 [00:02:50.000] request: { "command": "emit-output", "arguments": { @@ -691,7 +691,7 @@ FsWatchesRecursive:: /user/username/projects/myproject/decls: {} -Info 74 [16:02:51.000] response: +Info 74 [00:02:51.000] response: { "response": { "outputFiles": [ 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 7caf42c5e43d9..cfd0dd4b95726 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 @@ -1,5 +1,5 @@ -Info 0 [16:00:29.000] Provided types map file "/a/lib/typesMap.json" doesn't exist -Info 1 [16:00:30.000] request: +Info 0 [00:00:29.000] Provided types map file "/a/lib/typesMap.json" doesn't exist +Info 1 [00:00:30.000] request: { "seq": 0, "type": "request", @@ -49,11 +49,11 @@ FsWatches:: FsWatchesRecursive:: -Info 2 [16:00:31.000] Search path: /user/username/projects/myproject/usage -Info 3 [16:00:32.000] For info: /user/username/projects/myproject/usage/usage.ts :: Config file name: /user/username/projects/myproject/usage/tsconfig.json -Info 4 [16:00:33.000] Creating configuration project /user/username/projects/myproject/usage/tsconfig.json -Info 5 [16:00:34.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/usage/tsconfig.json 2000 undefined Project: /user/username/projects/myproject/usage/tsconfig.json WatchType: Config file -Info 6 [16:00:35.000] Config: /user/username/projects/myproject/usage/tsconfig.json : { +Info 2 [00:00:31.000] Search path: /user/username/projects/myproject/usage +Info 3 [00:00:32.000] For info: /user/username/projects/myproject/usage/usage.ts :: Config file name: /user/username/projects/myproject/usage/tsconfig.json +Info 4 [00:00:33.000] Creating configuration project /user/username/projects/myproject/usage/tsconfig.json +Info 5 [00:00:34.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/usage/tsconfig.json 2000 undefined Project: /user/username/projects/myproject/usage/tsconfig.json WatchType: Config file +Info 6 [00:00:35.000] Config: /user/username/projects/myproject/usage/tsconfig.json : { "rootNames": [ "/user/username/projects/myproject/usage/usage.ts" ], @@ -67,11 +67,11 @@ Info 6 [16:00:35.000] Config: /user/username/projects/myproject/usage/tsconfi } ] } -Info 7 [16:00:36.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/usage 1 undefined Config: /user/username/projects/myproject/usage/tsconfig.json WatchType: Wild card directory -Info 8 [16:00:37.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/usage 1 undefined Config: /user/username/projects/myproject/usage/tsconfig.json WatchType: Wild card directory -Info 9 [16:00:38.000] Plugins were requested but not running in environment that supports 'require'. Nothing will be loaded -Info 10 [16:00:39.000] Starting updateGraphWorker: Project: /user/username/projects/myproject/usage/tsconfig.json -Info 11 [16:00:40.000] Config: /user/username/projects/myproject/dependency/tsconfig.json : { +Info 7 [00:00:36.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/usage 1 undefined Config: /user/username/projects/myproject/usage/tsconfig.json WatchType: Wild card directory +Info 8 [00:00:37.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/usage 1 undefined Config: /user/username/projects/myproject/usage/tsconfig.json WatchType: Wild card directory +Info 9 [00:00:38.000] Plugins were requested but not running in environment that supports 'require'. Nothing will be loaded +Info 10 [00:00:39.000] Starting updateGraphWorker: Project: /user/username/projects/myproject/usage/tsconfig.json +Info 11 [00:00:40.000] Config: /user/username/projects/myproject/dependency/tsconfig.json : { "rootNames": [ "/user/username/projects/myproject/dependency/fns.ts" ], @@ -81,20 +81,20 @@ Info 11 [16:00:40.000] Config: /user/username/projects/myproject/dependency/ts "configFilePath": "/user/username/projects/myproject/dependency/tsconfig.json" } } -Info 12 [16:00:41.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/dependency/tsconfig.json 2000 undefined Project: /user/username/projects/myproject/usage/tsconfig.json WatchType: Config file -Info 13 [16:00:42.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/dependency 1 undefined Config: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Wild card directory -Info 14 [16:00:43.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/dependency 1 undefined Config: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Wild card directory -Info 15 [16:00:44.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/decls 1 undefined Project: /user/username/projects/myproject/usage/tsconfig.json WatchType: Failed Lookup Locations -Info 16 [16:00:45.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/decls 1 undefined Project: /user/username/projects/myproject/usage/tsconfig.json WatchType: Failed Lookup Locations -Info 17 [16:00:46.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/dependency/fns.ts 500 undefined WatchType: Closed Script info -Info 18 [16:00:47.000] FileWatcher:: Added:: WatchInfo: /a/lib/lib.d.ts 500 undefined WatchType: Closed Script info -Info 19 [16:00:48.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/usage/node_modules/@types 1 undefined Project: /user/username/projects/myproject/usage/tsconfig.json WatchType: Type roots -Info 20 [16:00:49.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/usage/node_modules/@types 1 undefined Project: /user/username/projects/myproject/usage/tsconfig.json WatchType: Type roots -Info 21 [16:00:50.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/usage/tsconfig.json WatchType: Type roots -Info 22 [16:00:51.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/usage/tsconfig.json WatchType: Type roots -Info 23 [16:00:52.000] Finishing updateGraphWorker: Project: /user/username/projects/myproject/usage/tsconfig.json Version: 1 structureChanged: true structureIsReused:: Not Elapsed:: *ms -Info 24 [16:00:53.000] Project '/user/username/projects/myproject/usage/tsconfig.json' (Configured) -Info 25 [16:00:54.000] Files (3) +Info 12 [00:00:41.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/dependency/tsconfig.json 2000 undefined Project: /user/username/projects/myproject/usage/tsconfig.json WatchType: Config file +Info 13 [00:00:42.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/dependency 1 undefined Config: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Wild card directory +Info 14 [00:00:43.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/dependency 1 undefined Config: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Wild card directory +Info 15 [00:00:44.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/decls 1 undefined Project: /user/username/projects/myproject/usage/tsconfig.json WatchType: Failed Lookup Locations +Info 16 [00:00:45.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/decls 1 undefined Project: /user/username/projects/myproject/usage/tsconfig.json WatchType: Failed Lookup Locations +Info 17 [00:00:46.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/dependency/fns.ts 500 undefined WatchType: Closed Script info +Info 18 [00:00:47.000] FileWatcher:: Added:: WatchInfo: /a/lib/lib.d.ts 500 undefined WatchType: Closed Script info +Info 19 [00:00:48.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/usage/node_modules/@types 1 undefined Project: /user/username/projects/myproject/usage/tsconfig.json WatchType: Type roots +Info 20 [00:00:49.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/usage/node_modules/@types 1 undefined Project: /user/username/projects/myproject/usage/tsconfig.json WatchType: Type roots +Info 21 [00:00:50.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/usage/tsconfig.json WatchType: Type roots +Info 22 [00:00:51.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/usage/tsconfig.json WatchType: Type roots +Info 23 [00:00:52.000] Finishing updateGraphWorker: Project: /user/username/projects/myproject/usage/tsconfig.json Version: 1 structureChanged: true structureIsReused:: Not Elapsed:: *ms +Info 24 [00:00:53.000] Project '/user/username/projects/myproject/usage/tsconfig.json' (Configured) +Info 25 [00:00:54.000] Files (3) /a/lib/lib.d.ts /user/username/projects/myproject/dependency/fns.ts /user/username/projects/myproject/usage/usage.ts @@ -107,14 +107,14 @@ Info 25 [16:00:54.000] Files (3) usage.ts Matched by default include pattern '**/*' -Info 26 [16:00:55.000] ----------------------------------------------- -Info 27 [16:00:56.000] Project '/user/username/projects/myproject/usage/tsconfig.json' (Configured) -Info 27 [16:00:57.000] Files (3) +Info 26 [00:00:55.000] ----------------------------------------------- +Info 27 [00:00:56.000] Project '/user/username/projects/myproject/usage/tsconfig.json' (Configured) +Info 27 [00:00:57.000] Files (3) -Info 27 [16:00:58.000] ----------------------------------------------- -Info 27 [16:00:59.000] Open files: -Info 27 [16:01:00.000] FileName: /user/username/projects/myproject/usage/usage.ts ProjectRootPath: undefined -Info 27 [16:01:01.000] Projects: /user/username/projects/myproject/usage/tsconfig.json +Info 27 [00:00:58.000] ----------------------------------------------- +Info 27 [00:00:59.000] Open files: +Info 27 [00:01:00.000] FileName: /user/username/projects/myproject/usage/usage.ts ProjectRootPath: undefined +Info 27 [00:01:01.000] Projects: /user/username/projects/myproject/usage/tsconfig.json After request PolledWatches:: @@ -141,11 +141,11 @@ FsWatchesRecursive:: /user/username/projects/myproject/dependency: {} -Info 27 [16:01:02.000] response: +Info 27 [00:01:02.000] response: { "responseRequired": false } -Info 28 [16:01:03.000] request: +Info 28 [00:01:03.000] request: { "seq": 0, "type": "request", @@ -180,19 +180,19 @@ FsWatchesRecursive:: /user/username/projects/myproject/dependency: {} -Info 29 [16:01:04.000] FileWatcher:: Close:: WatchInfo: /user/username/projects/myproject/dependency/fns.ts 500 undefined WatchType: Closed Script info -Info 30 [16:01:05.000] Search path: /user/username/projects/myproject/dependency -Info 31 [16:01:06.000] For info: /user/username/projects/myproject/dependency/fns.ts :: Config file name: /user/username/projects/myproject/dependency/tsconfig.json -Info 32 [16:01:07.000] Creating configuration project /user/username/projects/myproject/dependency/tsconfig.json -Info 33 [16:01:08.000] Plugins were requested but not running in environment that supports 'require'. Nothing will be loaded -Info 34 [16:01:09.000] Starting updateGraphWorker: Project: /user/username/projects/myproject/dependency/tsconfig.json -Info 35 [16:01:10.000] 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 36 [16:01:11.000] 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 37 [16:01:12.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Type roots -Info 38 [16:01:13.000] 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 39 [16:01:14.000] Finishing updateGraphWorker: Project: /user/username/projects/myproject/dependency/tsconfig.json Version: 1 structureChanged: true structureIsReused:: Not Elapsed:: *ms -Info 40 [16:01:15.000] Project '/user/username/projects/myproject/dependency/tsconfig.json' (Configured) -Info 41 [16:01:16.000] Files (2) +Info 29 [00:01:04.000] FileWatcher:: Close:: WatchInfo: /user/username/projects/myproject/dependency/fns.ts 500 undefined WatchType: Closed Script info +Info 30 [00:01:05.000] Search path: /user/username/projects/myproject/dependency +Info 31 [00:01:06.000] For info: /user/username/projects/myproject/dependency/fns.ts :: Config file name: /user/username/projects/myproject/dependency/tsconfig.json +Info 32 [00:01:07.000] Creating configuration project /user/username/projects/myproject/dependency/tsconfig.json +Info 33 [00:01:08.000] Plugins were requested but not running in environment that supports 'require'. Nothing will be loaded +Info 34 [00:01:09.000] Starting updateGraphWorker: Project: /user/username/projects/myproject/dependency/tsconfig.json +Info 35 [00:01:10.000] 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 36 [00:01:11.000] 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 37 [00:01:12.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Type roots +Info 38 [00:01:13.000] 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 39 [00:01:14.000] Finishing updateGraphWorker: Project: /user/username/projects/myproject/dependency/tsconfig.json Version: 1 structureChanged: true structureIsReused:: Not Elapsed:: *ms +Info 40 [00:01:15.000] Project '/user/username/projects/myproject/dependency/tsconfig.json' (Configured) +Info 41 [00:01:16.000] Files (2) /a/lib/lib.d.ts /user/username/projects/myproject/dependency/fns.ts @@ -202,22 +202,22 @@ Info 41 [16:01:16.000] Files (2) fns.ts Matched by default include pattern '**/*' -Info 42 [16:01:17.000] ----------------------------------------------- -Info 43 [16:01:18.000] Search path: /user/username/projects/myproject/dependency -Info 44 [16:01:19.000] For info: /user/username/projects/myproject/dependency/tsconfig.json :: No config files found. -Info 45 [16:01:20.000] Project '/user/username/projects/myproject/usage/tsconfig.json' (Configured) -Info 45 [16:01:21.000] Files (3) - -Info 45 [16:01:22.000] ----------------------------------------------- -Info 45 [16:01:23.000] Project '/user/username/projects/myproject/dependency/tsconfig.json' (Configured) -Info 45 [16:01:24.000] Files (2) - -Info 45 [16:01:25.000] ----------------------------------------------- -Info 45 [16:01:26.000] Open files: -Info 45 [16:01:27.000] FileName: /user/username/projects/myproject/usage/usage.ts ProjectRootPath: undefined -Info 45 [16:01:28.000] Projects: /user/username/projects/myproject/usage/tsconfig.json -Info 45 [16:01:29.000] FileName: /user/username/projects/myproject/dependency/fns.ts ProjectRootPath: undefined -Info 45 [16:01:30.000] Projects: /user/username/projects/myproject/usage/tsconfig.json,/user/username/projects/myproject/dependency/tsconfig.json +Info 42 [00:01:17.000] ----------------------------------------------- +Info 43 [00:01:18.000] Search path: /user/username/projects/myproject/dependency +Info 44 [00:01:19.000] For info: /user/username/projects/myproject/dependency/tsconfig.json :: No config files found. +Info 45 [00:01:20.000] Project '/user/username/projects/myproject/usage/tsconfig.json' (Configured) +Info 45 [00:01:21.000] Files (3) + +Info 45 [00:01:22.000] ----------------------------------------------- +Info 45 [00:01:23.000] Project '/user/username/projects/myproject/dependency/tsconfig.json' (Configured) +Info 45 [00:01:24.000] Files (2) + +Info 45 [00:01:25.000] ----------------------------------------------- +Info 45 [00:01:26.000] Open files: +Info 45 [00:01:27.000] FileName: /user/username/projects/myproject/usage/usage.ts ProjectRootPath: undefined +Info 45 [00:01:28.000] Projects: /user/username/projects/myproject/usage/tsconfig.json +Info 45 [00:01:29.000] FileName: /user/username/projects/myproject/dependency/fns.ts ProjectRootPath: undefined +Info 45 [00:01:30.000] Projects: /user/username/projects/myproject/usage/tsconfig.json,/user/username/projects/myproject/dependency/tsconfig.json After request PolledWatches:: @@ -244,11 +244,11 @@ FsWatchesRecursive:: /user/username/projects/myproject/dependency: {} -Info 45 [16:01:31.000] response: +Info 45 [00:01:31.000] response: { "responseRequired": false } -Info 46 [16:01:32.000] request: +Info 46 [00:01:32.000] request: { "command": "compileOnSaveAffectedFileList", "arguments": { @@ -283,34 +283,34 @@ FsWatchesRecursive:: /user/username/projects/myproject/dependency: {} -Info 47 [16:01:33.000] Before ensureProjectForOpenFiles: -Info 48 [16:01:34.000] Project '/user/username/projects/myproject/usage/tsconfig.json' (Configured) -Info 48 [16:01:35.000] Files (3) - -Info 48 [16:01:36.000] ----------------------------------------------- -Info 48 [16:01:37.000] Project '/user/username/projects/myproject/dependency/tsconfig.json' (Configured) -Info 48 [16:01:38.000] Files (2) - -Info 48 [16:01:39.000] ----------------------------------------------- -Info 48 [16:01:40.000] Open files: -Info 48 [16:01:41.000] FileName: /user/username/projects/myproject/usage/usage.ts ProjectRootPath: undefined -Info 48 [16:01:42.000] Projects: /user/username/projects/myproject/usage/tsconfig.json -Info 48 [16:01:43.000] FileName: /user/username/projects/myproject/dependency/fns.ts ProjectRootPath: undefined -Info 48 [16:01:44.000] Projects: /user/username/projects/myproject/usage/tsconfig.json,/user/username/projects/myproject/dependency/tsconfig.json -Info 48 [16:01:45.000] After ensureProjectForOpenFiles: -Info 49 [16:01:46.000] Project '/user/username/projects/myproject/usage/tsconfig.json' (Configured) -Info 49 [16:01:47.000] Files (3) - -Info 49 [16:01:48.000] ----------------------------------------------- -Info 49 [16:01:49.000] Project '/user/username/projects/myproject/dependency/tsconfig.json' (Configured) -Info 49 [16:01:50.000] Files (2) - -Info 49 [16:01:51.000] ----------------------------------------------- -Info 49 [16:01:52.000] Open files: -Info 49 [16:01:53.000] FileName: /user/username/projects/myproject/usage/usage.ts ProjectRootPath: undefined -Info 49 [16:01:54.000] Projects: /user/username/projects/myproject/usage/tsconfig.json -Info 49 [16:01:55.000] FileName: /user/username/projects/myproject/dependency/fns.ts ProjectRootPath: undefined -Info 49 [16:01:56.000] Projects: /user/username/projects/myproject/usage/tsconfig.json,/user/username/projects/myproject/dependency/tsconfig.json +Info 47 [00:01:33.000] Before ensureProjectForOpenFiles: +Info 48 [00:01:34.000] Project '/user/username/projects/myproject/usage/tsconfig.json' (Configured) +Info 48 [00:01:35.000] Files (3) + +Info 48 [00:01:36.000] ----------------------------------------------- +Info 48 [00:01:37.000] Project '/user/username/projects/myproject/dependency/tsconfig.json' (Configured) +Info 48 [00:01:38.000] Files (2) + +Info 48 [00:01:39.000] ----------------------------------------------- +Info 48 [00:01:40.000] Open files: +Info 48 [00:01:41.000] FileName: /user/username/projects/myproject/usage/usage.ts ProjectRootPath: undefined +Info 48 [00:01:42.000] Projects: /user/username/projects/myproject/usage/tsconfig.json +Info 48 [00:01:43.000] FileName: /user/username/projects/myproject/dependency/fns.ts ProjectRootPath: undefined +Info 48 [00:01:44.000] Projects: /user/username/projects/myproject/usage/tsconfig.json,/user/username/projects/myproject/dependency/tsconfig.json +Info 48 [00:01:45.000] After ensureProjectForOpenFiles: +Info 49 [00:01:46.000] Project '/user/username/projects/myproject/usage/tsconfig.json' (Configured) +Info 49 [00:01:47.000] Files (3) + +Info 49 [00:01:48.000] ----------------------------------------------- +Info 49 [00:01:49.000] Project '/user/username/projects/myproject/dependency/tsconfig.json' (Configured) +Info 49 [00:01:50.000] Files (2) + +Info 49 [00:01:51.000] ----------------------------------------------- +Info 49 [00:01:52.000] Open files: +Info 49 [00:01:53.000] FileName: /user/username/projects/myproject/usage/usage.ts ProjectRootPath: undefined +Info 49 [00:01:54.000] Projects: /user/username/projects/myproject/usage/tsconfig.json +Info 49 [00:01:55.000] FileName: /user/username/projects/myproject/dependency/fns.ts ProjectRootPath: undefined +Info 49 [00:01:56.000] Projects: /user/username/projects/myproject/usage/tsconfig.json,/user/username/projects/myproject/dependency/tsconfig.json After request PolledWatches:: @@ -337,7 +337,7 @@ FsWatchesRecursive:: /user/username/projects/myproject/dependency: {} -Info 49 [16:01:57.000] response: +Info 49 [00:01:57.000] response: { "response": [ { @@ -357,7 +357,7 @@ Info 49 [16:01:57.000] response: ], "responseRequired": true } -Info 50 [16:01:58.000] request: +Info 50 [00:01:58.000] request: { "command": "change", "arguments": { @@ -423,11 +423,11 @@ FsWatchesRecursive:: /user/username/projects/myproject/dependency: {} -Info 51 [16:01:59.000] response: +Info 51 [00:01:59.000] response: { "responseRequired": false } -Info 52 [16:02:00.000] request: +Info 52 [00:02:00.000] request: { "command": "compileOnSaveAffectedFileList", "arguments": { @@ -462,40 +462,40 @@ FsWatchesRecursive:: /user/username/projects/myproject/dependency: {} -Info 53 [16:02:01.000] Starting updateGraphWorker: Project: /user/username/projects/myproject/usage/tsconfig.json -Info 54 [16:02:02.000] Finishing updateGraphWorker: Project: /user/username/projects/myproject/usage/tsconfig.json Version: 2 structureChanged: false structureIsReused:: Completely Elapsed:: *ms -Info 55 [16:02:03.000] Different program with same set of files -Info 56 [16:02:04.000] Starting updateGraphWorker: Project: /user/username/projects/myproject/dependency/tsconfig.json -Info 57 [16:02:05.000] Finishing updateGraphWorker: Project: /user/username/projects/myproject/dependency/tsconfig.json Version: 2 structureChanged: false structureIsReused:: Completely Elapsed:: *ms -Info 58 [16:02:06.000] Different program with same set of files -Info 59 [16:02:07.000] Before ensureProjectForOpenFiles: -Info 60 [16:02:08.000] Project '/user/username/projects/myproject/usage/tsconfig.json' (Configured) -Info 60 [16:02:09.000] Files (3) - -Info 60 [16:02:10.000] ----------------------------------------------- -Info 60 [16:02:11.000] Project '/user/username/projects/myproject/dependency/tsconfig.json' (Configured) -Info 60 [16:02:12.000] Files (2) - -Info 60 [16:02:13.000] ----------------------------------------------- -Info 60 [16:02:14.000] Open files: -Info 60 [16:02:15.000] FileName: /user/username/projects/myproject/usage/usage.ts ProjectRootPath: undefined -Info 60 [16:02:16.000] Projects: /user/username/projects/myproject/usage/tsconfig.json -Info 60 [16:02:17.000] FileName: /user/username/projects/myproject/dependency/fns.ts ProjectRootPath: undefined -Info 60 [16:02:18.000] Projects: /user/username/projects/myproject/usage/tsconfig.json,/user/username/projects/myproject/dependency/tsconfig.json -Info 60 [16:02:19.000] After ensureProjectForOpenFiles: -Info 61 [16:02:20.000] Project '/user/username/projects/myproject/usage/tsconfig.json' (Configured) -Info 61 [16:02:21.000] Files (3) - -Info 61 [16:02:22.000] ----------------------------------------------- -Info 61 [16:02:23.000] Project '/user/username/projects/myproject/dependency/tsconfig.json' (Configured) -Info 61 [16:02:24.000] Files (2) - -Info 61 [16:02:25.000] ----------------------------------------------- -Info 61 [16:02:26.000] Open files: -Info 61 [16:02:27.000] FileName: /user/username/projects/myproject/usage/usage.ts ProjectRootPath: undefined -Info 61 [16:02:28.000] Projects: /user/username/projects/myproject/usage/tsconfig.json -Info 61 [16:02:29.000] FileName: /user/username/projects/myproject/dependency/fns.ts ProjectRootPath: undefined -Info 61 [16:02:30.000] Projects: /user/username/projects/myproject/usage/tsconfig.json,/user/username/projects/myproject/dependency/tsconfig.json +Info 53 [00:02:01.000] Starting updateGraphWorker: Project: /user/username/projects/myproject/usage/tsconfig.json +Info 54 [00:02:02.000] Finishing updateGraphWorker: Project: /user/username/projects/myproject/usage/tsconfig.json Version: 2 structureChanged: false structureIsReused:: Completely Elapsed:: *ms +Info 55 [00:02:03.000] Different program with same set of files +Info 56 [00:02:04.000] Starting updateGraphWorker: Project: /user/username/projects/myproject/dependency/tsconfig.json +Info 57 [00:02:05.000] Finishing updateGraphWorker: Project: /user/username/projects/myproject/dependency/tsconfig.json Version: 2 structureChanged: false structureIsReused:: Completely Elapsed:: *ms +Info 58 [00:02:06.000] Different program with same set of files +Info 59 [00:02:07.000] Before ensureProjectForOpenFiles: +Info 60 [00:02:08.000] Project '/user/username/projects/myproject/usage/tsconfig.json' (Configured) +Info 60 [00:02:09.000] Files (3) + +Info 60 [00:02:10.000] ----------------------------------------------- +Info 60 [00:02:11.000] Project '/user/username/projects/myproject/dependency/tsconfig.json' (Configured) +Info 60 [00:02:12.000] Files (2) + +Info 60 [00:02:13.000] ----------------------------------------------- +Info 60 [00:02:14.000] Open files: +Info 60 [00:02:15.000] FileName: /user/username/projects/myproject/usage/usage.ts ProjectRootPath: undefined +Info 60 [00:02:16.000] Projects: /user/username/projects/myproject/usage/tsconfig.json +Info 60 [00:02:17.000] FileName: /user/username/projects/myproject/dependency/fns.ts ProjectRootPath: undefined +Info 60 [00:02:18.000] Projects: /user/username/projects/myproject/usage/tsconfig.json,/user/username/projects/myproject/dependency/tsconfig.json +Info 60 [00:02:19.000] After ensureProjectForOpenFiles: +Info 61 [00:02:20.000] Project '/user/username/projects/myproject/usage/tsconfig.json' (Configured) +Info 61 [00:02:21.000] Files (3) + +Info 61 [00:02:22.000] ----------------------------------------------- +Info 61 [00:02:23.000] Project '/user/username/projects/myproject/dependency/tsconfig.json' (Configured) +Info 61 [00:02:24.000] Files (2) + +Info 61 [00:02:25.000] ----------------------------------------------- +Info 61 [00:02:26.000] Open files: +Info 61 [00:02:27.000] FileName: /user/username/projects/myproject/usage/usage.ts ProjectRootPath: undefined +Info 61 [00:02:28.000] Projects: /user/username/projects/myproject/usage/tsconfig.json +Info 61 [00:02:29.000] FileName: /user/username/projects/myproject/dependency/fns.ts ProjectRootPath: undefined +Info 61 [00:02:30.000] Projects: /user/username/projects/myproject/usage/tsconfig.json,/user/username/projects/myproject/dependency/tsconfig.json After request PolledWatches:: @@ -522,7 +522,7 @@ FsWatchesRecursive:: /user/username/projects/myproject/dependency: {} -Info 61 [16:02:31.000] response: +Info 61 [00:02:31.000] response: { "response": [ { @@ -540,7 +540,7 @@ Info 61 [16:02:31.000] response: ], "responseRequired": true } -Info 62 [16:02:32.000] request: +Info 62 [00:02:32.000] request: { "command": "compileOnSaveEmitFile", "arguments": { @@ -575,18 +575,18 @@ FsWatchesRecursive:: /user/username/projects/myproject/dependency: {} -Info 63 [16:02:35.000] DirectoryWatcher:: Triggered with /user/username/projects/myproject/dependency/fns.js :: WatchInfo: /user/username/projects/myproject/dependency 1 undefined Config: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Wild card directory -Info 64 [16:02:36.000] Project: /user/username/projects/myproject/dependency/tsconfig.json Detected file add/remove of non supported extension: /user/username/projects/myproject/dependency/fns.js -Info 65 [16:02:37.000] Elapsed:: *ms DirectoryWatcher:: Triggered with /user/username/projects/myproject/dependency/fns.js :: WatchInfo: /user/username/projects/myproject/dependency 1 undefined Config: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Wild card directory -Info 66 [16:02:41.000] DirectoryWatcher:: Triggered with /user/username/projects/myproject/decls :: WatchInfo: /user/username/projects/myproject/decls 1 undefined Project: /user/username/projects/myproject/usage/tsconfig.json WatchType: Failed Lookup Locations -Info 67 [16:02:42.000] Scheduled: /user/username/projects/myproject/usage/tsconfig.jsonFailedLookupInvalidation -Info 68 [16:02:43.000] Elapsed:: *ms DirectoryWatcher:: Triggered with /user/username/projects/myproject/decls :: WatchInfo: /user/username/projects/myproject/decls 1 undefined Project: /user/username/projects/myproject/usage/tsconfig.json WatchType: Failed Lookup Locations -Info 69 [16:02:44.000] DirectoryWatcher:: Triggered with /user/username/projects/myproject/decls :: WatchInfo: /user/username/projects/myproject/decls 1 undefined Project: /user/username/projects/myproject/usage/tsconfig.json WatchType: Failed Lookup Locations -Info 70 [16:02:45.000] Scheduled: /user/username/projects/myproject/usage/tsconfig.jsonFailedLookupInvalidation, Cancelled earlier one -Info 71 [16:02:46.000] Elapsed:: *ms DirectoryWatcher:: Triggered with /user/username/projects/myproject/decls :: WatchInfo: /user/username/projects/myproject/decls 1 undefined Project: /user/username/projects/myproject/usage/tsconfig.json WatchType: Failed Lookup Locations -Info 72 [16:02:49.000] DirectoryWatcher:: Triggered with /user/username/projects/myproject/decls/fns.d.ts :: WatchInfo: /user/username/projects/myproject/decls 1 undefined Project: /user/username/projects/myproject/usage/tsconfig.json WatchType: Failed Lookup Locations -Info 73 [16:02:50.000] Scheduled: /user/username/projects/myproject/usage/tsconfig.jsonFailedLookupInvalidation, Cancelled earlier one -Info 74 [16:02:51.000] Elapsed:: *ms DirectoryWatcher:: Triggered with /user/username/projects/myproject/decls/fns.d.ts :: WatchInfo: /user/username/projects/myproject/decls 1 undefined Project: /user/username/projects/myproject/usage/tsconfig.json WatchType: Failed Lookup Locations +Info 63 [00:02:35.000] DirectoryWatcher:: Triggered with /user/username/projects/myproject/dependency/fns.js :: WatchInfo: /user/username/projects/myproject/dependency 1 undefined Config: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Wild card directory +Info 64 [00:02:36.000] Project: /user/username/projects/myproject/dependency/tsconfig.json Detected file add/remove of non supported extension: /user/username/projects/myproject/dependency/fns.js +Info 65 [00:02:37.000] Elapsed:: *ms DirectoryWatcher:: Triggered with /user/username/projects/myproject/dependency/fns.js :: WatchInfo: /user/username/projects/myproject/dependency 1 undefined Config: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Wild card directory +Info 66 [00:02:41.000] DirectoryWatcher:: Triggered with /user/username/projects/myproject/decls :: WatchInfo: /user/username/projects/myproject/decls 1 undefined Project: /user/username/projects/myproject/usage/tsconfig.json WatchType: Failed Lookup Locations +Info 67 [00:02:42.000] Scheduled: /user/username/projects/myproject/usage/tsconfig.jsonFailedLookupInvalidation +Info 68 [00:02:43.000] Elapsed:: *ms DirectoryWatcher:: Triggered with /user/username/projects/myproject/decls :: WatchInfo: /user/username/projects/myproject/decls 1 undefined Project: /user/username/projects/myproject/usage/tsconfig.json WatchType: Failed Lookup Locations +Info 69 [00:02:44.000] DirectoryWatcher:: Triggered with /user/username/projects/myproject/decls :: WatchInfo: /user/username/projects/myproject/decls 1 undefined Project: /user/username/projects/myproject/usage/tsconfig.json WatchType: Failed Lookup Locations +Info 70 [00:02:45.000] Scheduled: /user/username/projects/myproject/usage/tsconfig.jsonFailedLookupInvalidation, Cancelled earlier one +Info 71 [00:02:46.000] Elapsed:: *ms DirectoryWatcher:: Triggered with /user/username/projects/myproject/decls :: WatchInfo: /user/username/projects/myproject/decls 1 undefined Project: /user/username/projects/myproject/usage/tsconfig.json WatchType: Failed Lookup Locations +Info 72 [00:02:49.000] DirectoryWatcher:: Triggered with /user/username/projects/myproject/decls/fns.d.ts :: WatchInfo: /user/username/projects/myproject/decls 1 undefined Project: /user/username/projects/myproject/usage/tsconfig.json WatchType: Failed Lookup Locations +Info 73 [00:02:50.000] Scheduled: /user/username/projects/myproject/usage/tsconfig.jsonFailedLookupInvalidation, Cancelled earlier one +Info 74 [00:02:51.000] Elapsed:: *ms DirectoryWatcher:: Triggered with /user/username/projects/myproject/decls/fns.d.ts :: WatchInfo: /user/username/projects/myproject/decls 1 undefined Project: /user/username/projects/myproject/usage/tsconfig.json WatchType: Failed Lookup Locations After request //// [/user/username/projects/myproject/dependency/fns.js] "use strict"; @@ -629,12 +629,12 @@ FsWatchesRecursive:: /user/username/projects/myproject/decls: {} -Info 75 [16:02:52.000] response: +Info 75 [00:02:52.000] response: { "response": true, "responseRequired": true } -Info 76 [16:02:53.000] request: +Info 76 [00:02:53.000] request: { "command": "emit-output", "arguments": { @@ -695,7 +695,7 @@ FsWatchesRecursive:: /user/username/projects/myproject/decls: {} -Info 77 [16:02:54.000] response: +Info 77 [00:02:54.000] response: { "response": { "outputFiles": [ 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 dcd707baaeba7..2fe1d5c16dc1e 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 @@ -1,5 +1,5 @@ -Info 0 [16:00:29.000] Provided types map file "/a/lib/typesMap.json" doesn't exist -Info 1 [16:00:30.000] request: +Info 0 [00:00:29.000] Provided types map file "/a/lib/typesMap.json" doesn't exist +Info 1 [00:00:30.000] request: { "seq": 0, "type": "request", @@ -49,11 +49,11 @@ FsWatches:: FsWatchesRecursive:: -Info 2 [16:00:31.000] Search path: /user/username/projects/myproject/usage -Info 3 [16:00:32.000] For info: /user/username/projects/myproject/usage/usage.ts :: Config file name: /user/username/projects/myproject/usage/tsconfig.json -Info 4 [16:00:33.000] Creating configuration project /user/username/projects/myproject/usage/tsconfig.json -Info 5 [16:00:34.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/usage/tsconfig.json 2000 undefined Project: /user/username/projects/myproject/usage/tsconfig.json WatchType: Config file -Info 6 [16:00:35.000] Config: /user/username/projects/myproject/usage/tsconfig.json : { +Info 2 [00:00:31.000] Search path: /user/username/projects/myproject/usage +Info 3 [00:00:32.000] For info: /user/username/projects/myproject/usage/usage.ts :: Config file name: /user/username/projects/myproject/usage/tsconfig.json +Info 4 [00:00:33.000] Creating configuration project /user/username/projects/myproject/usage/tsconfig.json +Info 5 [00:00:34.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/usage/tsconfig.json 2000 undefined Project: /user/username/projects/myproject/usage/tsconfig.json WatchType: Config file +Info 6 [00:00:35.000] Config: /user/username/projects/myproject/usage/tsconfig.json : { "rootNames": [ "/user/username/projects/myproject/usage/usage.ts" ], @@ -67,11 +67,11 @@ Info 6 [16:00:35.000] Config: /user/username/projects/myproject/usage/tsconfi } ] } -Info 7 [16:00:36.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/usage 1 undefined Config: /user/username/projects/myproject/usage/tsconfig.json WatchType: Wild card directory -Info 8 [16:00:37.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/usage 1 undefined Config: /user/username/projects/myproject/usage/tsconfig.json WatchType: Wild card directory -Info 9 [16:00:38.000] Plugins were requested but not running in environment that supports 'require'. Nothing will be loaded -Info 10 [16:00:39.000] Starting updateGraphWorker: Project: /user/username/projects/myproject/usage/tsconfig.json -Info 11 [16:00:40.000] Config: /user/username/projects/myproject/dependency/tsconfig.json : { +Info 7 [00:00:36.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/usage 1 undefined Config: /user/username/projects/myproject/usage/tsconfig.json WatchType: Wild card directory +Info 8 [00:00:37.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/usage 1 undefined Config: /user/username/projects/myproject/usage/tsconfig.json WatchType: Wild card directory +Info 9 [00:00:38.000] Plugins were requested but not running in environment that supports 'require'. Nothing will be loaded +Info 10 [00:00:39.000] Starting updateGraphWorker: Project: /user/username/projects/myproject/usage/tsconfig.json +Info 11 [00:00:40.000] Config: /user/username/projects/myproject/dependency/tsconfig.json : { "rootNames": [ "/user/username/projects/myproject/dependency/fns.ts" ], @@ -81,20 +81,20 @@ Info 11 [16:00:40.000] Config: /user/username/projects/myproject/dependency/ts "configFilePath": "/user/username/projects/myproject/dependency/tsconfig.json" } } -Info 12 [16:00:41.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/dependency/tsconfig.json 2000 undefined Project: /user/username/projects/myproject/usage/tsconfig.json WatchType: Config file -Info 13 [16:00:42.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/dependency 1 undefined Config: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Wild card directory -Info 14 [16:00:43.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/dependency 1 undefined Config: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Wild card directory -Info 15 [16:00:44.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/decls 1 undefined Project: /user/username/projects/myproject/usage/tsconfig.json WatchType: Failed Lookup Locations -Info 16 [16:00:45.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/decls 1 undefined Project: /user/username/projects/myproject/usage/tsconfig.json WatchType: Failed Lookup Locations -Info 17 [16:00:46.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/dependency/fns.ts 500 undefined WatchType: Closed Script info -Info 18 [16:00:47.000] FileWatcher:: Added:: WatchInfo: /a/lib/lib.d.ts 500 undefined WatchType: Closed Script info -Info 19 [16:00:48.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/usage/node_modules/@types 1 undefined Project: /user/username/projects/myproject/usage/tsconfig.json WatchType: Type roots -Info 20 [16:00:49.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/usage/node_modules/@types 1 undefined Project: /user/username/projects/myproject/usage/tsconfig.json WatchType: Type roots -Info 21 [16:00:50.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/usage/tsconfig.json WatchType: Type roots -Info 22 [16:00:51.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/usage/tsconfig.json WatchType: Type roots -Info 23 [16:00:52.000] Finishing updateGraphWorker: Project: /user/username/projects/myproject/usage/tsconfig.json Version: 1 structureChanged: true structureIsReused:: Not Elapsed:: *ms -Info 24 [16:00:53.000] Project '/user/username/projects/myproject/usage/tsconfig.json' (Configured) -Info 25 [16:00:54.000] Files (3) +Info 12 [00:00:41.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/dependency/tsconfig.json 2000 undefined Project: /user/username/projects/myproject/usage/tsconfig.json WatchType: Config file +Info 13 [00:00:42.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/dependency 1 undefined Config: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Wild card directory +Info 14 [00:00:43.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/dependency 1 undefined Config: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Wild card directory +Info 15 [00:00:44.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/decls 1 undefined Project: /user/username/projects/myproject/usage/tsconfig.json WatchType: Failed Lookup Locations +Info 16 [00:00:45.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/decls 1 undefined Project: /user/username/projects/myproject/usage/tsconfig.json WatchType: Failed Lookup Locations +Info 17 [00:00:46.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/dependency/fns.ts 500 undefined WatchType: Closed Script info +Info 18 [00:00:47.000] FileWatcher:: Added:: WatchInfo: /a/lib/lib.d.ts 500 undefined WatchType: Closed Script info +Info 19 [00:00:48.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/usage/node_modules/@types 1 undefined Project: /user/username/projects/myproject/usage/tsconfig.json WatchType: Type roots +Info 20 [00:00:49.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/usage/node_modules/@types 1 undefined Project: /user/username/projects/myproject/usage/tsconfig.json WatchType: Type roots +Info 21 [00:00:50.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/usage/tsconfig.json WatchType: Type roots +Info 22 [00:00:51.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/usage/tsconfig.json WatchType: Type roots +Info 23 [00:00:52.000] Finishing updateGraphWorker: Project: /user/username/projects/myproject/usage/tsconfig.json Version: 1 structureChanged: true structureIsReused:: Not Elapsed:: *ms +Info 24 [00:00:53.000] Project '/user/username/projects/myproject/usage/tsconfig.json' (Configured) +Info 25 [00:00:54.000] Files (3) /a/lib/lib.d.ts /user/username/projects/myproject/dependency/fns.ts /user/username/projects/myproject/usage/usage.ts @@ -107,14 +107,14 @@ Info 25 [16:00:54.000] Files (3) usage.ts Matched by default include pattern '**/*' -Info 26 [16:00:55.000] ----------------------------------------------- -Info 27 [16:00:56.000] Project '/user/username/projects/myproject/usage/tsconfig.json' (Configured) -Info 27 [16:00:57.000] Files (3) +Info 26 [00:00:55.000] ----------------------------------------------- +Info 27 [00:00:56.000] Project '/user/username/projects/myproject/usage/tsconfig.json' (Configured) +Info 27 [00:00:57.000] Files (3) -Info 27 [16:00:58.000] ----------------------------------------------- -Info 27 [16:00:59.000] Open files: -Info 27 [16:01:00.000] FileName: /user/username/projects/myproject/usage/usage.ts ProjectRootPath: undefined -Info 27 [16:01:01.000] Projects: /user/username/projects/myproject/usage/tsconfig.json +Info 27 [00:00:58.000] ----------------------------------------------- +Info 27 [00:00:59.000] Open files: +Info 27 [00:01:00.000] FileName: /user/username/projects/myproject/usage/usage.ts ProjectRootPath: undefined +Info 27 [00:01:01.000] Projects: /user/username/projects/myproject/usage/tsconfig.json After request PolledWatches:: @@ -141,11 +141,11 @@ FsWatchesRecursive:: /user/username/projects/myproject/dependency: {} -Info 27 [16:01:02.000] response: +Info 27 [00:01:02.000] response: { "responseRequired": false } -Info 28 [16:01:03.000] request: +Info 28 [00:01:03.000] request: { "seq": 0, "type": "request", @@ -180,19 +180,19 @@ FsWatchesRecursive:: /user/username/projects/myproject/dependency: {} -Info 29 [16:01:04.000] FileWatcher:: Close:: WatchInfo: /user/username/projects/myproject/dependency/fns.ts 500 undefined WatchType: Closed Script info -Info 30 [16:01:05.000] Search path: /user/username/projects/myproject/dependency -Info 31 [16:01:06.000] For info: /user/username/projects/myproject/dependency/fns.ts :: Config file name: /user/username/projects/myproject/dependency/tsconfig.json -Info 32 [16:01:07.000] Creating configuration project /user/username/projects/myproject/dependency/tsconfig.json -Info 33 [16:01:08.000] Plugins were requested but not running in environment that supports 'require'. Nothing will be loaded -Info 34 [16:01:09.000] Starting updateGraphWorker: Project: /user/username/projects/myproject/dependency/tsconfig.json -Info 35 [16:01:10.000] 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 36 [16:01:11.000] 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 37 [16:01:12.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Type roots -Info 38 [16:01:13.000] 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 39 [16:01:14.000] Finishing updateGraphWorker: Project: /user/username/projects/myproject/dependency/tsconfig.json Version: 1 structureChanged: true structureIsReused:: Not Elapsed:: *ms -Info 40 [16:01:15.000] Project '/user/username/projects/myproject/dependency/tsconfig.json' (Configured) -Info 41 [16:01:16.000] Files (2) +Info 29 [00:01:04.000] FileWatcher:: Close:: WatchInfo: /user/username/projects/myproject/dependency/fns.ts 500 undefined WatchType: Closed Script info +Info 30 [00:01:05.000] Search path: /user/username/projects/myproject/dependency +Info 31 [00:01:06.000] For info: /user/username/projects/myproject/dependency/fns.ts :: Config file name: /user/username/projects/myproject/dependency/tsconfig.json +Info 32 [00:01:07.000] Creating configuration project /user/username/projects/myproject/dependency/tsconfig.json +Info 33 [00:01:08.000] Plugins were requested but not running in environment that supports 'require'. Nothing will be loaded +Info 34 [00:01:09.000] Starting updateGraphWorker: Project: /user/username/projects/myproject/dependency/tsconfig.json +Info 35 [00:01:10.000] 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 36 [00:01:11.000] 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 37 [00:01:12.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Type roots +Info 38 [00:01:13.000] 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 39 [00:01:14.000] Finishing updateGraphWorker: Project: /user/username/projects/myproject/dependency/tsconfig.json Version: 1 structureChanged: true structureIsReused:: Not Elapsed:: *ms +Info 40 [00:01:15.000] Project '/user/username/projects/myproject/dependency/tsconfig.json' (Configured) +Info 41 [00:01:16.000] Files (2) /a/lib/lib.d.ts /user/username/projects/myproject/dependency/fns.ts @@ -202,22 +202,22 @@ Info 41 [16:01:16.000] Files (2) fns.ts Matched by default include pattern '**/*' -Info 42 [16:01:17.000] ----------------------------------------------- -Info 43 [16:01:18.000] Search path: /user/username/projects/myproject/dependency -Info 44 [16:01:19.000] For info: /user/username/projects/myproject/dependency/tsconfig.json :: No config files found. -Info 45 [16:01:20.000] Project '/user/username/projects/myproject/usage/tsconfig.json' (Configured) -Info 45 [16:01:21.000] Files (3) - -Info 45 [16:01:22.000] ----------------------------------------------- -Info 45 [16:01:23.000] Project '/user/username/projects/myproject/dependency/tsconfig.json' (Configured) -Info 45 [16:01:24.000] Files (2) - -Info 45 [16:01:25.000] ----------------------------------------------- -Info 45 [16:01:26.000] Open files: -Info 45 [16:01:27.000] FileName: /user/username/projects/myproject/usage/usage.ts ProjectRootPath: undefined -Info 45 [16:01:28.000] Projects: /user/username/projects/myproject/usage/tsconfig.json -Info 45 [16:01:29.000] FileName: /user/username/projects/myproject/dependency/fns.ts ProjectRootPath: undefined -Info 45 [16:01:30.000] Projects: /user/username/projects/myproject/usage/tsconfig.json,/user/username/projects/myproject/dependency/tsconfig.json +Info 42 [00:01:17.000] ----------------------------------------------- +Info 43 [00:01:18.000] Search path: /user/username/projects/myproject/dependency +Info 44 [00:01:19.000] For info: /user/username/projects/myproject/dependency/tsconfig.json :: No config files found. +Info 45 [00:01:20.000] Project '/user/username/projects/myproject/usage/tsconfig.json' (Configured) +Info 45 [00:01:21.000] Files (3) + +Info 45 [00:01:22.000] ----------------------------------------------- +Info 45 [00:01:23.000] Project '/user/username/projects/myproject/dependency/tsconfig.json' (Configured) +Info 45 [00:01:24.000] Files (2) + +Info 45 [00:01:25.000] ----------------------------------------------- +Info 45 [00:01:26.000] Open files: +Info 45 [00:01:27.000] FileName: /user/username/projects/myproject/usage/usage.ts ProjectRootPath: undefined +Info 45 [00:01:28.000] Projects: /user/username/projects/myproject/usage/tsconfig.json +Info 45 [00:01:29.000] FileName: /user/username/projects/myproject/dependency/fns.ts ProjectRootPath: undefined +Info 45 [00:01:30.000] Projects: /user/username/projects/myproject/usage/tsconfig.json,/user/username/projects/myproject/dependency/tsconfig.json After request PolledWatches:: @@ -244,11 +244,11 @@ FsWatchesRecursive:: /user/username/projects/myproject/dependency: {} -Info 45 [16:01:31.000] response: +Info 45 [00:01:31.000] response: { "responseRequired": false } -Info 46 [16:01:32.000] request: +Info 46 [00:01:32.000] request: { "command": "compileOnSaveAffectedFileList", "arguments": { @@ -283,34 +283,34 @@ FsWatchesRecursive:: /user/username/projects/myproject/dependency: {} -Info 47 [16:01:33.000] Before ensureProjectForOpenFiles: -Info 48 [16:01:34.000] Project '/user/username/projects/myproject/usage/tsconfig.json' (Configured) -Info 48 [16:01:35.000] Files (3) - -Info 48 [16:01:36.000] ----------------------------------------------- -Info 48 [16:01:37.000] Project '/user/username/projects/myproject/dependency/tsconfig.json' (Configured) -Info 48 [16:01:38.000] Files (2) - -Info 48 [16:01:39.000] ----------------------------------------------- -Info 48 [16:01:40.000] Open files: -Info 48 [16:01:41.000] FileName: /user/username/projects/myproject/usage/usage.ts ProjectRootPath: undefined -Info 48 [16:01:42.000] Projects: /user/username/projects/myproject/usage/tsconfig.json -Info 48 [16:01:43.000] FileName: /user/username/projects/myproject/dependency/fns.ts ProjectRootPath: undefined -Info 48 [16:01:44.000] Projects: /user/username/projects/myproject/usage/tsconfig.json,/user/username/projects/myproject/dependency/tsconfig.json -Info 48 [16:01:45.000] After ensureProjectForOpenFiles: -Info 49 [16:01:46.000] Project '/user/username/projects/myproject/usage/tsconfig.json' (Configured) -Info 49 [16:01:47.000] Files (3) - -Info 49 [16:01:48.000] ----------------------------------------------- -Info 49 [16:01:49.000] Project '/user/username/projects/myproject/dependency/tsconfig.json' (Configured) -Info 49 [16:01:50.000] Files (2) - -Info 49 [16:01:51.000] ----------------------------------------------- -Info 49 [16:01:52.000] Open files: -Info 49 [16:01:53.000] FileName: /user/username/projects/myproject/usage/usage.ts ProjectRootPath: undefined -Info 49 [16:01:54.000] Projects: /user/username/projects/myproject/usage/tsconfig.json -Info 49 [16:01:55.000] FileName: /user/username/projects/myproject/dependency/fns.ts ProjectRootPath: undefined -Info 49 [16:01:56.000] Projects: /user/username/projects/myproject/usage/tsconfig.json,/user/username/projects/myproject/dependency/tsconfig.json +Info 47 [00:01:33.000] Before ensureProjectForOpenFiles: +Info 48 [00:01:34.000] Project '/user/username/projects/myproject/usage/tsconfig.json' (Configured) +Info 48 [00:01:35.000] Files (3) + +Info 48 [00:01:36.000] ----------------------------------------------- +Info 48 [00:01:37.000] Project '/user/username/projects/myproject/dependency/tsconfig.json' (Configured) +Info 48 [00:01:38.000] Files (2) + +Info 48 [00:01:39.000] ----------------------------------------------- +Info 48 [00:01:40.000] Open files: +Info 48 [00:01:41.000] FileName: /user/username/projects/myproject/usage/usage.ts ProjectRootPath: undefined +Info 48 [00:01:42.000] Projects: /user/username/projects/myproject/usage/tsconfig.json +Info 48 [00:01:43.000] FileName: /user/username/projects/myproject/dependency/fns.ts ProjectRootPath: undefined +Info 48 [00:01:44.000] Projects: /user/username/projects/myproject/usage/tsconfig.json,/user/username/projects/myproject/dependency/tsconfig.json +Info 48 [00:01:45.000] After ensureProjectForOpenFiles: +Info 49 [00:01:46.000] Project '/user/username/projects/myproject/usage/tsconfig.json' (Configured) +Info 49 [00:01:47.000] Files (3) + +Info 49 [00:01:48.000] ----------------------------------------------- +Info 49 [00:01:49.000] Project '/user/username/projects/myproject/dependency/tsconfig.json' (Configured) +Info 49 [00:01:50.000] Files (2) + +Info 49 [00:01:51.000] ----------------------------------------------- +Info 49 [00:01:52.000] Open files: +Info 49 [00:01:53.000] FileName: /user/username/projects/myproject/usage/usage.ts ProjectRootPath: undefined +Info 49 [00:01:54.000] Projects: /user/username/projects/myproject/usage/tsconfig.json +Info 49 [00:01:55.000] FileName: /user/username/projects/myproject/dependency/fns.ts ProjectRootPath: undefined +Info 49 [00:01:56.000] Projects: /user/username/projects/myproject/usage/tsconfig.json,/user/username/projects/myproject/dependency/tsconfig.json After request PolledWatches:: @@ -337,7 +337,7 @@ FsWatchesRecursive:: /user/username/projects/myproject/dependency: {} -Info 49 [16:01:57.000] response: +Info 49 [00:01:57.000] response: { "response": [ { @@ -357,7 +357,7 @@ Info 49 [16:01:57.000] response: ], "responseRequired": true } -Info 50 [16:01:58.000] request: +Info 50 [00:01:58.000] request: { "command": "change", "arguments": { @@ -423,11 +423,11 @@ FsWatchesRecursive:: /user/username/projects/myproject/dependency: {} -Info 51 [16:01:59.000] response: +Info 51 [00:01:59.000] response: { "responseRequired": false } -Info 52 [16:02:00.000] request: +Info 52 [00:02:00.000] request: { "command": "compileOnSaveAffectedFileList", "arguments": { @@ -462,37 +462,37 @@ FsWatchesRecursive:: /user/username/projects/myproject/dependency: {} -Info 53 [16:02:01.000] Starting updateGraphWorker: Project: /user/username/projects/myproject/usage/tsconfig.json -Info 54 [16:02:02.000] Finishing updateGraphWorker: Project: /user/username/projects/myproject/usage/tsconfig.json Version: 2 structureChanged: false structureIsReused:: Completely Elapsed:: *ms -Info 55 [16:02:03.000] Different program with same set of files -Info 56 [16:02:04.000] Before ensureProjectForOpenFiles: -Info 57 [16:02:05.000] Project '/user/username/projects/myproject/usage/tsconfig.json' (Configured) -Info 57 [16:02:06.000] Files (3) - -Info 57 [16:02:07.000] ----------------------------------------------- -Info 57 [16:02:08.000] Project '/user/username/projects/myproject/dependency/tsconfig.json' (Configured) -Info 57 [16:02:09.000] Files (2) - -Info 57 [16:02:10.000] ----------------------------------------------- -Info 57 [16:02:11.000] Open files: -Info 57 [16:02:12.000] FileName: /user/username/projects/myproject/usage/usage.ts ProjectRootPath: undefined -Info 57 [16:02:13.000] Projects: /user/username/projects/myproject/usage/tsconfig.json -Info 57 [16:02:14.000] FileName: /user/username/projects/myproject/dependency/fns.ts ProjectRootPath: undefined -Info 57 [16:02:15.000] Projects: /user/username/projects/myproject/usage/tsconfig.json,/user/username/projects/myproject/dependency/tsconfig.json -Info 57 [16:02:16.000] After ensureProjectForOpenFiles: -Info 58 [16:02:17.000] Project '/user/username/projects/myproject/usage/tsconfig.json' (Configured) -Info 58 [16:02:18.000] Files (3) - -Info 58 [16:02:19.000] ----------------------------------------------- -Info 58 [16:02:20.000] Project '/user/username/projects/myproject/dependency/tsconfig.json' (Configured) -Info 58 [16:02:21.000] Files (2) - -Info 58 [16:02:22.000] ----------------------------------------------- -Info 58 [16:02:23.000] Open files: -Info 58 [16:02:24.000] FileName: /user/username/projects/myproject/usage/usage.ts ProjectRootPath: undefined -Info 58 [16:02:25.000] Projects: /user/username/projects/myproject/usage/tsconfig.json -Info 58 [16:02:26.000] FileName: /user/username/projects/myproject/dependency/fns.ts ProjectRootPath: undefined -Info 58 [16:02:27.000] Projects: /user/username/projects/myproject/usage/tsconfig.json,/user/username/projects/myproject/dependency/tsconfig.json +Info 53 [00:02:01.000] Starting updateGraphWorker: Project: /user/username/projects/myproject/usage/tsconfig.json +Info 54 [00:02:02.000] Finishing updateGraphWorker: Project: /user/username/projects/myproject/usage/tsconfig.json Version: 2 structureChanged: false structureIsReused:: Completely Elapsed:: *ms +Info 55 [00:02:03.000] Different program with same set of files +Info 56 [00:02:04.000] Before ensureProjectForOpenFiles: +Info 57 [00:02:05.000] Project '/user/username/projects/myproject/usage/tsconfig.json' (Configured) +Info 57 [00:02:06.000] Files (3) + +Info 57 [00:02:07.000] ----------------------------------------------- +Info 57 [00:02:08.000] Project '/user/username/projects/myproject/dependency/tsconfig.json' (Configured) +Info 57 [00:02:09.000] Files (2) + +Info 57 [00:02:10.000] ----------------------------------------------- +Info 57 [00:02:11.000] Open files: +Info 57 [00:02:12.000] FileName: /user/username/projects/myproject/usage/usage.ts ProjectRootPath: undefined +Info 57 [00:02:13.000] Projects: /user/username/projects/myproject/usage/tsconfig.json +Info 57 [00:02:14.000] FileName: /user/username/projects/myproject/dependency/fns.ts ProjectRootPath: undefined +Info 57 [00:02:15.000] Projects: /user/username/projects/myproject/usage/tsconfig.json,/user/username/projects/myproject/dependency/tsconfig.json +Info 57 [00:02:16.000] After ensureProjectForOpenFiles: +Info 58 [00:02:17.000] Project '/user/username/projects/myproject/usage/tsconfig.json' (Configured) +Info 58 [00:02:18.000] Files (3) + +Info 58 [00:02:19.000] ----------------------------------------------- +Info 58 [00:02:20.000] Project '/user/username/projects/myproject/dependency/tsconfig.json' (Configured) +Info 58 [00:02:21.000] Files (2) + +Info 58 [00:02:22.000] ----------------------------------------------- +Info 58 [00:02:23.000] Open files: +Info 58 [00:02:24.000] FileName: /user/username/projects/myproject/usage/usage.ts ProjectRootPath: undefined +Info 58 [00:02:25.000] Projects: /user/username/projects/myproject/usage/tsconfig.json +Info 58 [00:02:26.000] FileName: /user/username/projects/myproject/dependency/fns.ts ProjectRootPath: undefined +Info 58 [00:02:27.000] Projects: /user/username/projects/myproject/usage/tsconfig.json,/user/username/projects/myproject/dependency/tsconfig.json After request PolledWatches:: @@ -519,7 +519,7 @@ FsWatchesRecursive:: /user/username/projects/myproject/dependency: {} -Info 58 [16:02:28.000] response: +Info 58 [00:02:28.000] response: { "response": [ { @@ -537,7 +537,7 @@ Info 58 [16:02:28.000] response: ], "responseRequired": true } -Info 59 [16:02:29.000] request: +Info 59 [00:02:29.000] request: { "command": "compileOnSaveEmitFile", "arguments": { @@ -572,18 +572,18 @@ FsWatchesRecursive:: /user/username/projects/myproject/dependency: {} -Info 60 [16:02:32.000] DirectoryWatcher:: Triggered with /user/username/projects/myproject/dependency/fns.js :: WatchInfo: /user/username/projects/myproject/dependency 1 undefined Config: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Wild card directory -Info 61 [16:02:33.000] Project: /user/username/projects/myproject/dependency/tsconfig.json Detected file add/remove of non supported extension: /user/username/projects/myproject/dependency/fns.js -Info 62 [16:02:34.000] Elapsed:: *ms DirectoryWatcher:: Triggered with /user/username/projects/myproject/dependency/fns.js :: WatchInfo: /user/username/projects/myproject/dependency 1 undefined Config: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Wild card directory -Info 63 [16:02:38.000] DirectoryWatcher:: Triggered with /user/username/projects/myproject/decls :: WatchInfo: /user/username/projects/myproject/decls 1 undefined Project: /user/username/projects/myproject/usage/tsconfig.json WatchType: Failed Lookup Locations -Info 64 [16:02:39.000] Scheduled: /user/username/projects/myproject/usage/tsconfig.jsonFailedLookupInvalidation -Info 65 [16:02:40.000] Elapsed:: *ms DirectoryWatcher:: Triggered with /user/username/projects/myproject/decls :: WatchInfo: /user/username/projects/myproject/decls 1 undefined Project: /user/username/projects/myproject/usage/tsconfig.json WatchType: Failed Lookup Locations -Info 66 [16:02:41.000] DirectoryWatcher:: Triggered with /user/username/projects/myproject/decls :: WatchInfo: /user/username/projects/myproject/decls 1 undefined Project: /user/username/projects/myproject/usage/tsconfig.json WatchType: Failed Lookup Locations -Info 67 [16:02:42.000] Scheduled: /user/username/projects/myproject/usage/tsconfig.jsonFailedLookupInvalidation, Cancelled earlier one -Info 68 [16:02:43.000] Elapsed:: *ms DirectoryWatcher:: Triggered with /user/username/projects/myproject/decls :: WatchInfo: /user/username/projects/myproject/decls 1 undefined Project: /user/username/projects/myproject/usage/tsconfig.json WatchType: Failed Lookup Locations -Info 69 [16:02:46.000] DirectoryWatcher:: Triggered with /user/username/projects/myproject/decls/fns.d.ts :: WatchInfo: /user/username/projects/myproject/decls 1 undefined Project: /user/username/projects/myproject/usage/tsconfig.json WatchType: Failed Lookup Locations -Info 70 [16:02:47.000] Scheduled: /user/username/projects/myproject/usage/tsconfig.jsonFailedLookupInvalidation, Cancelled earlier one -Info 71 [16:02:48.000] Elapsed:: *ms DirectoryWatcher:: Triggered with /user/username/projects/myproject/decls/fns.d.ts :: WatchInfo: /user/username/projects/myproject/decls 1 undefined Project: /user/username/projects/myproject/usage/tsconfig.json WatchType: Failed Lookup Locations +Info 60 [00:02:32.000] DirectoryWatcher:: Triggered with /user/username/projects/myproject/dependency/fns.js :: WatchInfo: /user/username/projects/myproject/dependency 1 undefined Config: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Wild card directory +Info 61 [00:02:33.000] Project: /user/username/projects/myproject/dependency/tsconfig.json Detected file add/remove of non supported extension: /user/username/projects/myproject/dependency/fns.js +Info 62 [00:02:34.000] Elapsed:: *ms DirectoryWatcher:: Triggered with /user/username/projects/myproject/dependency/fns.js :: WatchInfo: /user/username/projects/myproject/dependency 1 undefined Config: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Wild card directory +Info 63 [00:02:38.000] DirectoryWatcher:: Triggered with /user/username/projects/myproject/decls :: WatchInfo: /user/username/projects/myproject/decls 1 undefined Project: /user/username/projects/myproject/usage/tsconfig.json WatchType: Failed Lookup Locations +Info 64 [00:02:39.000] Scheduled: /user/username/projects/myproject/usage/tsconfig.jsonFailedLookupInvalidation +Info 65 [00:02:40.000] Elapsed:: *ms DirectoryWatcher:: Triggered with /user/username/projects/myproject/decls :: WatchInfo: /user/username/projects/myproject/decls 1 undefined Project: /user/username/projects/myproject/usage/tsconfig.json WatchType: Failed Lookup Locations +Info 66 [00:02:41.000] DirectoryWatcher:: Triggered with /user/username/projects/myproject/decls :: WatchInfo: /user/username/projects/myproject/decls 1 undefined Project: /user/username/projects/myproject/usage/tsconfig.json WatchType: Failed Lookup Locations +Info 67 [00:02:42.000] Scheduled: /user/username/projects/myproject/usage/tsconfig.jsonFailedLookupInvalidation, Cancelled earlier one +Info 68 [00:02:43.000] Elapsed:: *ms DirectoryWatcher:: Triggered with /user/username/projects/myproject/decls :: WatchInfo: /user/username/projects/myproject/decls 1 undefined Project: /user/username/projects/myproject/usage/tsconfig.json WatchType: Failed Lookup Locations +Info 69 [00:02:46.000] DirectoryWatcher:: Triggered with /user/username/projects/myproject/decls/fns.d.ts :: WatchInfo: /user/username/projects/myproject/decls 1 undefined Project: /user/username/projects/myproject/usage/tsconfig.json WatchType: Failed Lookup Locations +Info 70 [00:02:47.000] Scheduled: /user/username/projects/myproject/usage/tsconfig.jsonFailedLookupInvalidation, Cancelled earlier one +Info 71 [00:02:48.000] Elapsed:: *ms DirectoryWatcher:: Triggered with /user/username/projects/myproject/decls/fns.d.ts :: WatchInfo: /user/username/projects/myproject/decls 1 undefined Project: /user/username/projects/myproject/usage/tsconfig.json WatchType: Failed Lookup Locations After request //// [/user/username/projects/myproject/dependency/fns.js] "use strict"; @@ -625,12 +625,12 @@ FsWatchesRecursive:: /user/username/projects/myproject/decls: {} -Info 72 [16:02:49.000] response: +Info 72 [00:02:49.000] response: { "response": true, "responseRequired": true } -Info 73 [16:02:50.000] request: +Info 73 [00:02:50.000] request: { "command": "emit-output", "arguments": { @@ -691,7 +691,7 @@ FsWatchesRecursive:: /user/username/projects/myproject/decls: {} -Info 74 [16:02:51.000] response: +Info 74 [00:02:51.000] response: { "response": { "outputFiles": [ 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 ba8cb40859818..285a68ef1b727 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 @@ -1,5 +1,5 @@ -Info 0 [16:00:29.000] Provided types map file "/a/lib/typesMap.json" doesn't exist -Info 1 [16:00:30.000] request: +Info 0 [00:00:29.000] Provided types map file "/a/lib/typesMap.json" doesn't exist +Info 1 [00:00:30.000] request: { "seq": 0, "type": "request", @@ -49,11 +49,11 @@ FsWatches:: FsWatchesRecursive:: -Info 2 [16:00:31.000] Search path: /user/username/projects/myproject/usage -Info 3 [16:00:32.000] For info: /user/username/projects/myproject/usage/usage.ts :: Config file name: /user/username/projects/myproject/usage/tsconfig.json -Info 4 [16:00:33.000] Creating configuration project /user/username/projects/myproject/usage/tsconfig.json -Info 5 [16:00:34.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/usage/tsconfig.json 2000 undefined Project: /user/username/projects/myproject/usage/tsconfig.json WatchType: Config file -Info 6 [16:00:35.000] Config: /user/username/projects/myproject/usage/tsconfig.json : { +Info 2 [00:00:31.000] Search path: /user/username/projects/myproject/usage +Info 3 [00:00:32.000] For info: /user/username/projects/myproject/usage/usage.ts :: Config file name: /user/username/projects/myproject/usage/tsconfig.json +Info 4 [00:00:33.000] Creating configuration project /user/username/projects/myproject/usage/tsconfig.json +Info 5 [00:00:34.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/usage/tsconfig.json 2000 undefined Project: /user/username/projects/myproject/usage/tsconfig.json WatchType: Config file +Info 6 [00:00:35.000] Config: /user/username/projects/myproject/usage/tsconfig.json : { "rootNames": [ "/user/username/projects/myproject/usage/usage.ts" ], @@ -67,11 +67,11 @@ Info 6 [16:00:35.000] Config: /user/username/projects/myproject/usage/tsconfi } ] } -Info 7 [16:00:36.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/usage 1 undefined Config: /user/username/projects/myproject/usage/tsconfig.json WatchType: Wild card directory -Info 8 [16:00:37.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/usage 1 undefined Config: /user/username/projects/myproject/usage/tsconfig.json WatchType: Wild card directory -Info 9 [16:00:38.000] Plugins were requested but not running in environment that supports 'require'. Nothing will be loaded -Info 10 [16:00:39.000] Starting updateGraphWorker: Project: /user/username/projects/myproject/usage/tsconfig.json -Info 11 [16:00:40.000] Config: /user/username/projects/myproject/dependency/tsconfig.json : { +Info 7 [00:00:36.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/usage 1 undefined Config: /user/username/projects/myproject/usage/tsconfig.json WatchType: Wild card directory +Info 8 [00:00:37.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/usage 1 undefined Config: /user/username/projects/myproject/usage/tsconfig.json WatchType: Wild card directory +Info 9 [00:00:38.000] Plugins were requested but not running in environment that supports 'require'. Nothing will be loaded +Info 10 [00:00:39.000] Starting updateGraphWorker: Project: /user/username/projects/myproject/usage/tsconfig.json +Info 11 [00:00:40.000] Config: /user/username/projects/myproject/dependency/tsconfig.json : { "rootNames": [ "/user/username/projects/myproject/dependency/fns.ts" ], @@ -81,20 +81,20 @@ Info 11 [16:00:40.000] Config: /user/username/projects/myproject/dependency/ts "configFilePath": "/user/username/projects/myproject/dependency/tsconfig.json" } } -Info 12 [16:00:41.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/dependency/tsconfig.json 2000 undefined Project: /user/username/projects/myproject/usage/tsconfig.json WatchType: Config file -Info 13 [16:00:42.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/dependency 1 undefined Config: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Wild card directory -Info 14 [16:00:43.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/dependency 1 undefined Config: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Wild card directory -Info 15 [16:00:44.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/decls 1 undefined Project: /user/username/projects/myproject/usage/tsconfig.json WatchType: Failed Lookup Locations -Info 16 [16:00:45.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/decls 1 undefined Project: /user/username/projects/myproject/usage/tsconfig.json WatchType: Failed Lookup Locations -Info 17 [16:00:46.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/dependency/fns.ts 500 undefined WatchType: Closed Script info -Info 18 [16:00:47.000] FileWatcher:: Added:: WatchInfo: /a/lib/lib.d.ts 500 undefined WatchType: Closed Script info -Info 19 [16:00:48.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/usage/node_modules/@types 1 undefined Project: /user/username/projects/myproject/usage/tsconfig.json WatchType: Type roots -Info 20 [16:00:49.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/usage/node_modules/@types 1 undefined Project: /user/username/projects/myproject/usage/tsconfig.json WatchType: Type roots -Info 21 [16:00:50.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/usage/tsconfig.json WatchType: Type roots -Info 22 [16:00:51.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/usage/tsconfig.json WatchType: Type roots -Info 23 [16:00:52.000] Finishing updateGraphWorker: Project: /user/username/projects/myproject/usage/tsconfig.json Version: 1 structureChanged: true structureIsReused:: Not Elapsed:: *ms -Info 24 [16:00:53.000] Project '/user/username/projects/myproject/usage/tsconfig.json' (Configured) -Info 25 [16:00:54.000] Files (3) +Info 12 [00:00:41.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/dependency/tsconfig.json 2000 undefined Project: /user/username/projects/myproject/usage/tsconfig.json WatchType: Config file +Info 13 [00:00:42.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/dependency 1 undefined Config: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Wild card directory +Info 14 [00:00:43.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/dependency 1 undefined Config: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Wild card directory +Info 15 [00:00:44.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/decls 1 undefined Project: /user/username/projects/myproject/usage/tsconfig.json WatchType: Failed Lookup Locations +Info 16 [00:00:45.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/decls 1 undefined Project: /user/username/projects/myproject/usage/tsconfig.json WatchType: Failed Lookup Locations +Info 17 [00:00:46.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/dependency/fns.ts 500 undefined WatchType: Closed Script info +Info 18 [00:00:47.000] FileWatcher:: Added:: WatchInfo: /a/lib/lib.d.ts 500 undefined WatchType: Closed Script info +Info 19 [00:00:48.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/usage/node_modules/@types 1 undefined Project: /user/username/projects/myproject/usage/tsconfig.json WatchType: Type roots +Info 20 [00:00:49.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/usage/node_modules/@types 1 undefined Project: /user/username/projects/myproject/usage/tsconfig.json WatchType: Type roots +Info 21 [00:00:50.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/usage/tsconfig.json WatchType: Type roots +Info 22 [00:00:51.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/usage/tsconfig.json WatchType: Type roots +Info 23 [00:00:52.000] Finishing updateGraphWorker: Project: /user/username/projects/myproject/usage/tsconfig.json Version: 1 structureChanged: true structureIsReused:: Not Elapsed:: *ms +Info 24 [00:00:53.000] Project '/user/username/projects/myproject/usage/tsconfig.json' (Configured) +Info 25 [00:00:54.000] Files (3) /a/lib/lib.d.ts /user/username/projects/myproject/dependency/fns.ts /user/username/projects/myproject/usage/usage.ts @@ -107,14 +107,14 @@ Info 25 [16:00:54.000] Files (3) usage.ts Matched by default include pattern '**/*' -Info 26 [16:00:55.000] ----------------------------------------------- -Info 27 [16:00:56.000] Project '/user/username/projects/myproject/usage/tsconfig.json' (Configured) -Info 27 [16:00:57.000] Files (3) +Info 26 [00:00:55.000] ----------------------------------------------- +Info 27 [00:00:56.000] Project '/user/username/projects/myproject/usage/tsconfig.json' (Configured) +Info 27 [00:00:57.000] Files (3) -Info 27 [16:00:58.000] ----------------------------------------------- -Info 27 [16:00:59.000] Open files: -Info 27 [16:01:00.000] FileName: /user/username/projects/myproject/usage/usage.ts ProjectRootPath: undefined -Info 27 [16:01:01.000] Projects: /user/username/projects/myproject/usage/tsconfig.json +Info 27 [00:00:58.000] ----------------------------------------------- +Info 27 [00:00:59.000] Open files: +Info 27 [00:01:00.000] FileName: /user/username/projects/myproject/usage/usage.ts ProjectRootPath: undefined +Info 27 [00:01:01.000] Projects: /user/username/projects/myproject/usage/tsconfig.json After request PolledWatches:: @@ -141,11 +141,11 @@ FsWatchesRecursive:: /user/username/projects/myproject/dependency: {} -Info 27 [16:01:02.000] response: +Info 27 [00:01:02.000] response: { "responseRequired": false } -Info 28 [16:01:03.000] request: +Info 28 [00:01:03.000] request: { "seq": 0, "type": "request", @@ -180,19 +180,19 @@ FsWatchesRecursive:: /user/username/projects/myproject/dependency: {} -Info 29 [16:01:04.000] FileWatcher:: Close:: WatchInfo: /user/username/projects/myproject/dependency/fns.ts 500 undefined WatchType: Closed Script info -Info 30 [16:01:05.000] Search path: /user/username/projects/myproject/dependency -Info 31 [16:01:06.000] For info: /user/username/projects/myproject/dependency/fns.ts :: Config file name: /user/username/projects/myproject/dependency/tsconfig.json -Info 32 [16:01:07.000] Creating configuration project /user/username/projects/myproject/dependency/tsconfig.json -Info 33 [16:01:08.000] Plugins were requested but not running in environment that supports 'require'. Nothing will be loaded -Info 34 [16:01:09.000] Starting updateGraphWorker: Project: /user/username/projects/myproject/dependency/tsconfig.json -Info 35 [16:01:10.000] 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 36 [16:01:11.000] 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 37 [16:01:12.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Type roots -Info 38 [16:01:13.000] 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 39 [16:01:14.000] Finishing updateGraphWorker: Project: /user/username/projects/myproject/dependency/tsconfig.json Version: 1 structureChanged: true structureIsReused:: Not Elapsed:: *ms -Info 40 [16:01:15.000] Project '/user/username/projects/myproject/dependency/tsconfig.json' (Configured) -Info 41 [16:01:16.000] Files (2) +Info 29 [00:01:04.000] FileWatcher:: Close:: WatchInfo: /user/username/projects/myproject/dependency/fns.ts 500 undefined WatchType: Closed Script info +Info 30 [00:01:05.000] Search path: /user/username/projects/myproject/dependency +Info 31 [00:01:06.000] For info: /user/username/projects/myproject/dependency/fns.ts :: Config file name: /user/username/projects/myproject/dependency/tsconfig.json +Info 32 [00:01:07.000] Creating configuration project /user/username/projects/myproject/dependency/tsconfig.json +Info 33 [00:01:08.000] Plugins were requested but not running in environment that supports 'require'. Nothing will be loaded +Info 34 [00:01:09.000] Starting updateGraphWorker: Project: /user/username/projects/myproject/dependency/tsconfig.json +Info 35 [00:01:10.000] 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 36 [00:01:11.000] 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 37 [00:01:12.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Type roots +Info 38 [00:01:13.000] 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 39 [00:01:14.000] Finishing updateGraphWorker: Project: /user/username/projects/myproject/dependency/tsconfig.json Version: 1 structureChanged: true structureIsReused:: Not Elapsed:: *ms +Info 40 [00:01:15.000] Project '/user/username/projects/myproject/dependency/tsconfig.json' (Configured) +Info 41 [00:01:16.000] Files (2) /a/lib/lib.d.ts /user/username/projects/myproject/dependency/fns.ts @@ -202,22 +202,22 @@ Info 41 [16:01:16.000] Files (2) fns.ts Matched by default include pattern '**/*' -Info 42 [16:01:17.000] ----------------------------------------------- -Info 43 [16:01:18.000] Search path: /user/username/projects/myproject/dependency -Info 44 [16:01:19.000] For info: /user/username/projects/myproject/dependency/tsconfig.json :: No config files found. -Info 45 [16:01:20.000] Project '/user/username/projects/myproject/usage/tsconfig.json' (Configured) -Info 45 [16:01:21.000] Files (3) - -Info 45 [16:01:22.000] ----------------------------------------------- -Info 45 [16:01:23.000] Project '/user/username/projects/myproject/dependency/tsconfig.json' (Configured) -Info 45 [16:01:24.000] Files (2) - -Info 45 [16:01:25.000] ----------------------------------------------- -Info 45 [16:01:26.000] Open files: -Info 45 [16:01:27.000] FileName: /user/username/projects/myproject/usage/usage.ts ProjectRootPath: undefined -Info 45 [16:01:28.000] Projects: /user/username/projects/myproject/usage/tsconfig.json -Info 45 [16:01:29.000] FileName: /user/username/projects/myproject/dependency/fns.ts ProjectRootPath: undefined -Info 45 [16:01:30.000] Projects: /user/username/projects/myproject/usage/tsconfig.json,/user/username/projects/myproject/dependency/tsconfig.json +Info 42 [00:01:17.000] ----------------------------------------------- +Info 43 [00:01:18.000] Search path: /user/username/projects/myproject/dependency +Info 44 [00:01:19.000] For info: /user/username/projects/myproject/dependency/tsconfig.json :: No config files found. +Info 45 [00:01:20.000] Project '/user/username/projects/myproject/usage/tsconfig.json' (Configured) +Info 45 [00:01:21.000] Files (3) + +Info 45 [00:01:22.000] ----------------------------------------------- +Info 45 [00:01:23.000] Project '/user/username/projects/myproject/dependency/tsconfig.json' (Configured) +Info 45 [00:01:24.000] Files (2) + +Info 45 [00:01:25.000] ----------------------------------------------- +Info 45 [00:01:26.000] Open files: +Info 45 [00:01:27.000] FileName: /user/username/projects/myproject/usage/usage.ts ProjectRootPath: undefined +Info 45 [00:01:28.000] Projects: /user/username/projects/myproject/usage/tsconfig.json +Info 45 [00:01:29.000] FileName: /user/username/projects/myproject/dependency/fns.ts ProjectRootPath: undefined +Info 45 [00:01:30.000] Projects: /user/username/projects/myproject/usage/tsconfig.json,/user/username/projects/myproject/dependency/tsconfig.json After request PolledWatches:: @@ -244,11 +244,11 @@ FsWatchesRecursive:: /user/username/projects/myproject/dependency: {} -Info 45 [16:01:31.000] response: +Info 45 [00:01:31.000] response: { "responseRequired": false } -Info 46 [16:01:32.000] request: +Info 46 [00:01:32.000] request: { "command": "compileOnSaveAffectedFileList", "arguments": { @@ -283,34 +283,34 @@ FsWatchesRecursive:: /user/username/projects/myproject/dependency: {} -Info 47 [16:01:33.000] Before ensureProjectForOpenFiles: -Info 48 [16:01:34.000] Project '/user/username/projects/myproject/usage/tsconfig.json' (Configured) -Info 48 [16:01:35.000] Files (3) - -Info 48 [16:01:36.000] ----------------------------------------------- -Info 48 [16:01:37.000] Project '/user/username/projects/myproject/dependency/tsconfig.json' (Configured) -Info 48 [16:01:38.000] Files (2) - -Info 48 [16:01:39.000] ----------------------------------------------- -Info 48 [16:01:40.000] Open files: -Info 48 [16:01:41.000] FileName: /user/username/projects/myproject/usage/usage.ts ProjectRootPath: undefined -Info 48 [16:01:42.000] Projects: /user/username/projects/myproject/usage/tsconfig.json -Info 48 [16:01:43.000] FileName: /user/username/projects/myproject/dependency/fns.ts ProjectRootPath: undefined -Info 48 [16:01:44.000] Projects: /user/username/projects/myproject/usage/tsconfig.json,/user/username/projects/myproject/dependency/tsconfig.json -Info 48 [16:01:45.000] After ensureProjectForOpenFiles: -Info 49 [16:01:46.000] Project '/user/username/projects/myproject/usage/tsconfig.json' (Configured) -Info 49 [16:01:47.000] Files (3) - -Info 49 [16:01:48.000] ----------------------------------------------- -Info 49 [16:01:49.000] Project '/user/username/projects/myproject/dependency/tsconfig.json' (Configured) -Info 49 [16:01:50.000] Files (2) - -Info 49 [16:01:51.000] ----------------------------------------------- -Info 49 [16:01:52.000] Open files: -Info 49 [16:01:53.000] FileName: /user/username/projects/myproject/usage/usage.ts ProjectRootPath: undefined -Info 49 [16:01:54.000] Projects: /user/username/projects/myproject/usage/tsconfig.json -Info 49 [16:01:55.000] FileName: /user/username/projects/myproject/dependency/fns.ts ProjectRootPath: undefined -Info 49 [16:01:56.000] Projects: /user/username/projects/myproject/usage/tsconfig.json,/user/username/projects/myproject/dependency/tsconfig.json +Info 47 [00:01:33.000] Before ensureProjectForOpenFiles: +Info 48 [00:01:34.000] Project '/user/username/projects/myproject/usage/tsconfig.json' (Configured) +Info 48 [00:01:35.000] Files (3) + +Info 48 [00:01:36.000] ----------------------------------------------- +Info 48 [00:01:37.000] Project '/user/username/projects/myproject/dependency/tsconfig.json' (Configured) +Info 48 [00:01:38.000] Files (2) + +Info 48 [00:01:39.000] ----------------------------------------------- +Info 48 [00:01:40.000] Open files: +Info 48 [00:01:41.000] FileName: /user/username/projects/myproject/usage/usage.ts ProjectRootPath: undefined +Info 48 [00:01:42.000] Projects: /user/username/projects/myproject/usage/tsconfig.json +Info 48 [00:01:43.000] FileName: /user/username/projects/myproject/dependency/fns.ts ProjectRootPath: undefined +Info 48 [00:01:44.000] Projects: /user/username/projects/myproject/usage/tsconfig.json,/user/username/projects/myproject/dependency/tsconfig.json +Info 48 [00:01:45.000] After ensureProjectForOpenFiles: +Info 49 [00:01:46.000] Project '/user/username/projects/myproject/usage/tsconfig.json' (Configured) +Info 49 [00:01:47.000] Files (3) + +Info 49 [00:01:48.000] ----------------------------------------------- +Info 49 [00:01:49.000] Project '/user/username/projects/myproject/dependency/tsconfig.json' (Configured) +Info 49 [00:01:50.000] Files (2) + +Info 49 [00:01:51.000] ----------------------------------------------- +Info 49 [00:01:52.000] Open files: +Info 49 [00:01:53.000] FileName: /user/username/projects/myproject/usage/usage.ts ProjectRootPath: undefined +Info 49 [00:01:54.000] Projects: /user/username/projects/myproject/usage/tsconfig.json +Info 49 [00:01:55.000] FileName: /user/username/projects/myproject/dependency/fns.ts ProjectRootPath: undefined +Info 49 [00:01:56.000] Projects: /user/username/projects/myproject/usage/tsconfig.json,/user/username/projects/myproject/dependency/tsconfig.json After request PolledWatches:: @@ -337,7 +337,7 @@ FsWatchesRecursive:: /user/username/projects/myproject/dependency: {} -Info 49 [16:01:57.000] response: +Info 49 [00:01:57.000] response: { "response": [ { @@ -357,7 +357,7 @@ Info 49 [16:01:57.000] response: ], "responseRequired": true } -Info 50 [16:01:58.000] request: +Info 50 [00:01:58.000] request: { "command": "change", "arguments": { @@ -423,11 +423,11 @@ FsWatchesRecursive:: /user/username/projects/myproject/dependency: {} -Info 51 [16:01:59.000] response: +Info 51 [00:01:59.000] response: { "responseRequired": false } -Info 52 [16:02:00.000] request: +Info 52 [00:02:00.000] request: { "command": "compileOnSaveAffectedFileList", "arguments": { @@ -463,9 +463,9 @@ FsWatchesRecursive:: /user/username/projects/myproject/dependency: {} -Info 53 [16:02:01.000] Starting updateGraphWorker: Project: /user/username/projects/myproject/dependency/tsconfig.json -Info 54 [16:02:02.000] Finishing updateGraphWorker: Project: /user/username/projects/myproject/dependency/tsconfig.json Version: 2 structureChanged: false structureIsReused:: Completely Elapsed:: *ms -Info 55 [16:02:03.000] Different program with same set of files +Info 53 [00:02:01.000] Starting updateGraphWorker: Project: /user/username/projects/myproject/dependency/tsconfig.json +Info 54 [00:02:02.000] Finishing updateGraphWorker: Project: /user/username/projects/myproject/dependency/tsconfig.json Version: 2 structureChanged: false structureIsReused:: Completely Elapsed:: *ms +Info 55 [00:02:03.000] Different program with same set of files After request PolledWatches:: @@ -492,7 +492,7 @@ FsWatchesRecursive:: /user/username/projects/myproject/dependency: {} -Info 56 [16:02:04.000] response: +Info 56 [00:02:04.000] response: { "response": [ { @@ -505,7 +505,7 @@ Info 56 [16:02:04.000] response: ], "responseRequired": true } -Info 57 [16:02:05.000] request: +Info 57 [00:02:05.000] request: { "command": "compileOnSaveEmitFile", "arguments": { @@ -541,18 +541,18 @@ FsWatchesRecursive:: /user/username/projects/myproject/dependency: {} -Info 58 [16:02:08.000] DirectoryWatcher:: Triggered with /user/username/projects/myproject/dependency/fns.js :: WatchInfo: /user/username/projects/myproject/dependency 1 undefined Config: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Wild card directory -Info 59 [16:02:09.000] Project: /user/username/projects/myproject/dependency/tsconfig.json Detected file add/remove of non supported extension: /user/username/projects/myproject/dependency/fns.js -Info 60 [16:02:10.000] Elapsed:: *ms DirectoryWatcher:: Triggered with /user/username/projects/myproject/dependency/fns.js :: WatchInfo: /user/username/projects/myproject/dependency 1 undefined Config: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Wild card directory -Info 61 [16:02:14.000] DirectoryWatcher:: Triggered with /user/username/projects/myproject/decls :: WatchInfo: /user/username/projects/myproject/decls 1 undefined Project: /user/username/projects/myproject/usage/tsconfig.json WatchType: Failed Lookup Locations -Info 62 [16:02:15.000] Scheduled: /user/username/projects/myproject/usage/tsconfig.jsonFailedLookupInvalidation -Info 63 [16:02:16.000] Elapsed:: *ms DirectoryWatcher:: Triggered with /user/username/projects/myproject/decls :: WatchInfo: /user/username/projects/myproject/decls 1 undefined Project: /user/username/projects/myproject/usage/tsconfig.json WatchType: Failed Lookup Locations -Info 64 [16:02:17.000] DirectoryWatcher:: Triggered with /user/username/projects/myproject/decls :: WatchInfo: /user/username/projects/myproject/decls 1 undefined Project: /user/username/projects/myproject/usage/tsconfig.json WatchType: Failed Lookup Locations -Info 65 [16:02:18.000] Scheduled: /user/username/projects/myproject/usage/tsconfig.jsonFailedLookupInvalidation, Cancelled earlier one -Info 66 [16:02:19.000] Elapsed:: *ms DirectoryWatcher:: Triggered with /user/username/projects/myproject/decls :: WatchInfo: /user/username/projects/myproject/decls 1 undefined Project: /user/username/projects/myproject/usage/tsconfig.json WatchType: Failed Lookup Locations -Info 67 [16:02:22.000] DirectoryWatcher:: Triggered with /user/username/projects/myproject/decls/fns.d.ts :: WatchInfo: /user/username/projects/myproject/decls 1 undefined Project: /user/username/projects/myproject/usage/tsconfig.json WatchType: Failed Lookup Locations -Info 68 [16:02:23.000] Scheduled: /user/username/projects/myproject/usage/tsconfig.jsonFailedLookupInvalidation, Cancelled earlier one -Info 69 [16:02:24.000] Elapsed:: *ms DirectoryWatcher:: Triggered with /user/username/projects/myproject/decls/fns.d.ts :: WatchInfo: /user/username/projects/myproject/decls 1 undefined Project: /user/username/projects/myproject/usage/tsconfig.json WatchType: Failed Lookup Locations +Info 58 [00:02:08.000] DirectoryWatcher:: Triggered with /user/username/projects/myproject/dependency/fns.js :: WatchInfo: /user/username/projects/myproject/dependency 1 undefined Config: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Wild card directory +Info 59 [00:02:09.000] Project: /user/username/projects/myproject/dependency/tsconfig.json Detected file add/remove of non supported extension: /user/username/projects/myproject/dependency/fns.js +Info 60 [00:02:10.000] Elapsed:: *ms DirectoryWatcher:: Triggered with /user/username/projects/myproject/dependency/fns.js :: WatchInfo: /user/username/projects/myproject/dependency 1 undefined Config: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Wild card directory +Info 61 [00:02:14.000] DirectoryWatcher:: Triggered with /user/username/projects/myproject/decls :: WatchInfo: /user/username/projects/myproject/decls 1 undefined Project: /user/username/projects/myproject/usage/tsconfig.json WatchType: Failed Lookup Locations +Info 62 [00:02:15.000] Scheduled: /user/username/projects/myproject/usage/tsconfig.jsonFailedLookupInvalidation +Info 63 [00:02:16.000] Elapsed:: *ms DirectoryWatcher:: Triggered with /user/username/projects/myproject/decls :: WatchInfo: /user/username/projects/myproject/decls 1 undefined Project: /user/username/projects/myproject/usage/tsconfig.json WatchType: Failed Lookup Locations +Info 64 [00:02:17.000] DirectoryWatcher:: Triggered with /user/username/projects/myproject/decls :: WatchInfo: /user/username/projects/myproject/decls 1 undefined Project: /user/username/projects/myproject/usage/tsconfig.json WatchType: Failed Lookup Locations +Info 65 [00:02:18.000] Scheduled: /user/username/projects/myproject/usage/tsconfig.jsonFailedLookupInvalidation, Cancelled earlier one +Info 66 [00:02:19.000] Elapsed:: *ms DirectoryWatcher:: Triggered with /user/username/projects/myproject/decls :: WatchInfo: /user/username/projects/myproject/decls 1 undefined Project: /user/username/projects/myproject/usage/tsconfig.json WatchType: Failed Lookup Locations +Info 67 [00:02:22.000] DirectoryWatcher:: Triggered with /user/username/projects/myproject/decls/fns.d.ts :: WatchInfo: /user/username/projects/myproject/decls 1 undefined Project: /user/username/projects/myproject/usage/tsconfig.json WatchType: Failed Lookup Locations +Info 68 [00:02:23.000] Scheduled: /user/username/projects/myproject/usage/tsconfig.jsonFailedLookupInvalidation, Cancelled earlier one +Info 69 [00:02:24.000] Elapsed:: *ms DirectoryWatcher:: Triggered with /user/username/projects/myproject/decls/fns.d.ts :: WatchInfo: /user/username/projects/myproject/decls 1 undefined Project: /user/username/projects/myproject/usage/tsconfig.json WatchType: Failed Lookup Locations After request //// [/user/username/projects/myproject/dependency/fns.js] "use strict"; @@ -597,12 +597,12 @@ FsWatchesRecursive:: /user/username/projects/myproject/decls: {} -Info 70 [16:02:25.000] response: +Info 70 [00:02:25.000] response: { "response": true, "responseRequired": true } -Info 71 [16:02:26.000] request: +Info 71 [00:02:26.000] request: { "command": "emit-output", "arguments": { @@ -664,7 +664,7 @@ FsWatchesRecursive:: /user/username/projects/myproject/decls: {} -Info 72 [16:02:27.000] response: +Info 72 [00:02:27.000] response: { "response": { "outputFiles": [ 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 a141b3f906adf..5621e672b877d 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 @@ -1,5 +1,5 @@ -Info 0 [16:00:29.000] Provided types map file "/a/lib/typesMap.json" doesn't exist -Info 1 [16:00:30.000] request: +Info 0 [00:00:29.000] Provided types map file "/a/lib/typesMap.json" doesn't exist +Info 1 [00:00:30.000] request: { "seq": 0, "type": "request", @@ -49,11 +49,11 @@ FsWatches:: FsWatchesRecursive:: -Info 2 [16:00:31.000] Search path: /user/username/projects/myproject/usage -Info 3 [16:00:32.000] For info: /user/username/projects/myproject/usage/usage.ts :: Config file name: /user/username/projects/myproject/usage/tsconfig.json -Info 4 [16:00:33.000] Creating configuration project /user/username/projects/myproject/usage/tsconfig.json -Info 5 [16:00:34.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/usage/tsconfig.json 2000 undefined Project: /user/username/projects/myproject/usage/tsconfig.json WatchType: Config file -Info 6 [16:00:35.000] Config: /user/username/projects/myproject/usage/tsconfig.json : { +Info 2 [00:00:31.000] Search path: /user/username/projects/myproject/usage +Info 3 [00:00:32.000] For info: /user/username/projects/myproject/usage/usage.ts :: Config file name: /user/username/projects/myproject/usage/tsconfig.json +Info 4 [00:00:33.000] Creating configuration project /user/username/projects/myproject/usage/tsconfig.json +Info 5 [00:00:34.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/usage/tsconfig.json 2000 undefined Project: /user/username/projects/myproject/usage/tsconfig.json WatchType: Config file +Info 6 [00:00:35.000] Config: /user/username/projects/myproject/usage/tsconfig.json : { "rootNames": [ "/user/username/projects/myproject/usage/usage.ts" ], @@ -67,11 +67,11 @@ Info 6 [16:00:35.000] Config: /user/username/projects/myproject/usage/tsconfi } ] } -Info 7 [16:00:36.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/usage 1 undefined Config: /user/username/projects/myproject/usage/tsconfig.json WatchType: Wild card directory -Info 8 [16:00:37.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/usage 1 undefined Config: /user/username/projects/myproject/usage/tsconfig.json WatchType: Wild card directory -Info 9 [16:00:38.000] Plugins were requested but not running in environment that supports 'require'. Nothing will be loaded -Info 10 [16:00:39.000] Starting updateGraphWorker: Project: /user/username/projects/myproject/usage/tsconfig.json -Info 11 [16:00:40.000] Config: /user/username/projects/myproject/dependency/tsconfig.json : { +Info 7 [00:00:36.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/usage 1 undefined Config: /user/username/projects/myproject/usage/tsconfig.json WatchType: Wild card directory +Info 8 [00:00:37.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/usage 1 undefined Config: /user/username/projects/myproject/usage/tsconfig.json WatchType: Wild card directory +Info 9 [00:00:38.000] Plugins were requested but not running in environment that supports 'require'. Nothing will be loaded +Info 10 [00:00:39.000] Starting updateGraphWorker: Project: /user/username/projects/myproject/usage/tsconfig.json +Info 11 [00:00:40.000] Config: /user/username/projects/myproject/dependency/tsconfig.json : { "rootNames": [ "/user/username/projects/myproject/dependency/fns.ts" ], @@ -81,20 +81,20 @@ Info 11 [16:00:40.000] Config: /user/username/projects/myproject/dependency/ts "configFilePath": "/user/username/projects/myproject/dependency/tsconfig.json" } } -Info 12 [16:00:41.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/dependency/tsconfig.json 2000 undefined Project: /user/username/projects/myproject/usage/tsconfig.json WatchType: Config file -Info 13 [16:00:42.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/dependency 1 undefined Config: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Wild card directory -Info 14 [16:00:43.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/dependency 1 undefined Config: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Wild card directory -Info 15 [16:00:44.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/decls 1 undefined Project: /user/username/projects/myproject/usage/tsconfig.json WatchType: Failed Lookup Locations -Info 16 [16:00:45.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/decls 1 undefined Project: /user/username/projects/myproject/usage/tsconfig.json WatchType: Failed Lookup Locations -Info 17 [16:00:46.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/dependency/fns.ts 500 undefined WatchType: Closed Script info -Info 18 [16:00:47.000] FileWatcher:: Added:: WatchInfo: /a/lib/lib.d.ts 500 undefined WatchType: Closed Script info -Info 19 [16:00:48.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/usage/node_modules/@types 1 undefined Project: /user/username/projects/myproject/usage/tsconfig.json WatchType: Type roots -Info 20 [16:00:49.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/usage/node_modules/@types 1 undefined Project: /user/username/projects/myproject/usage/tsconfig.json WatchType: Type roots -Info 21 [16:00:50.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/usage/tsconfig.json WatchType: Type roots -Info 22 [16:00:51.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/usage/tsconfig.json WatchType: Type roots -Info 23 [16:00:52.000] Finishing updateGraphWorker: Project: /user/username/projects/myproject/usage/tsconfig.json Version: 1 structureChanged: true structureIsReused:: Not Elapsed:: *ms -Info 24 [16:00:53.000] Project '/user/username/projects/myproject/usage/tsconfig.json' (Configured) -Info 25 [16:00:54.000] Files (3) +Info 12 [00:00:41.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/dependency/tsconfig.json 2000 undefined Project: /user/username/projects/myproject/usage/tsconfig.json WatchType: Config file +Info 13 [00:00:42.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/dependency 1 undefined Config: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Wild card directory +Info 14 [00:00:43.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/dependency 1 undefined Config: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Wild card directory +Info 15 [00:00:44.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/decls 1 undefined Project: /user/username/projects/myproject/usage/tsconfig.json WatchType: Failed Lookup Locations +Info 16 [00:00:45.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/decls 1 undefined Project: /user/username/projects/myproject/usage/tsconfig.json WatchType: Failed Lookup Locations +Info 17 [00:00:46.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/dependency/fns.ts 500 undefined WatchType: Closed Script info +Info 18 [00:00:47.000] FileWatcher:: Added:: WatchInfo: /a/lib/lib.d.ts 500 undefined WatchType: Closed Script info +Info 19 [00:00:48.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/usage/node_modules/@types 1 undefined Project: /user/username/projects/myproject/usage/tsconfig.json WatchType: Type roots +Info 20 [00:00:49.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/usage/node_modules/@types 1 undefined Project: /user/username/projects/myproject/usage/tsconfig.json WatchType: Type roots +Info 21 [00:00:50.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/usage/tsconfig.json WatchType: Type roots +Info 22 [00:00:51.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/usage/tsconfig.json WatchType: Type roots +Info 23 [00:00:52.000] Finishing updateGraphWorker: Project: /user/username/projects/myproject/usage/tsconfig.json Version: 1 structureChanged: true structureIsReused:: Not Elapsed:: *ms +Info 24 [00:00:53.000] Project '/user/username/projects/myproject/usage/tsconfig.json' (Configured) +Info 25 [00:00:54.000] Files (3) /a/lib/lib.d.ts /user/username/projects/myproject/dependency/fns.ts /user/username/projects/myproject/usage/usage.ts @@ -107,14 +107,14 @@ Info 25 [16:00:54.000] Files (3) usage.ts Matched by default include pattern '**/*' -Info 26 [16:00:55.000] ----------------------------------------------- -Info 27 [16:00:56.000] Project '/user/username/projects/myproject/usage/tsconfig.json' (Configured) -Info 27 [16:00:57.000] Files (3) +Info 26 [00:00:55.000] ----------------------------------------------- +Info 27 [00:00:56.000] Project '/user/username/projects/myproject/usage/tsconfig.json' (Configured) +Info 27 [00:00:57.000] Files (3) -Info 27 [16:00:58.000] ----------------------------------------------- -Info 27 [16:00:59.000] Open files: -Info 27 [16:01:00.000] FileName: /user/username/projects/myproject/usage/usage.ts ProjectRootPath: undefined -Info 27 [16:01:01.000] Projects: /user/username/projects/myproject/usage/tsconfig.json +Info 27 [00:00:58.000] ----------------------------------------------- +Info 27 [00:00:59.000] Open files: +Info 27 [00:01:00.000] FileName: /user/username/projects/myproject/usage/usage.ts ProjectRootPath: undefined +Info 27 [00:01:01.000] Projects: /user/username/projects/myproject/usage/tsconfig.json After request PolledWatches:: @@ -141,11 +141,11 @@ FsWatchesRecursive:: /user/username/projects/myproject/dependency: {} -Info 27 [16:01:02.000] response: +Info 27 [00:01:02.000] response: { "responseRequired": false } -Info 28 [16:01:03.000] request: +Info 28 [00:01:03.000] request: { "seq": 0, "type": "request", @@ -180,19 +180,19 @@ FsWatchesRecursive:: /user/username/projects/myproject/dependency: {} -Info 29 [16:01:04.000] FileWatcher:: Close:: WatchInfo: /user/username/projects/myproject/dependency/fns.ts 500 undefined WatchType: Closed Script info -Info 30 [16:01:05.000] Search path: /user/username/projects/myproject/dependency -Info 31 [16:01:06.000] For info: /user/username/projects/myproject/dependency/fns.ts :: Config file name: /user/username/projects/myproject/dependency/tsconfig.json -Info 32 [16:01:07.000] Creating configuration project /user/username/projects/myproject/dependency/tsconfig.json -Info 33 [16:01:08.000] Plugins were requested but not running in environment that supports 'require'. Nothing will be loaded -Info 34 [16:01:09.000] Starting updateGraphWorker: Project: /user/username/projects/myproject/dependency/tsconfig.json -Info 35 [16:01:10.000] 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 36 [16:01:11.000] 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 37 [16:01:12.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Type roots -Info 38 [16:01:13.000] 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 39 [16:01:14.000] Finishing updateGraphWorker: Project: /user/username/projects/myproject/dependency/tsconfig.json Version: 1 structureChanged: true structureIsReused:: Not Elapsed:: *ms -Info 40 [16:01:15.000] Project '/user/username/projects/myproject/dependency/tsconfig.json' (Configured) -Info 41 [16:01:16.000] Files (2) +Info 29 [00:01:04.000] FileWatcher:: Close:: WatchInfo: /user/username/projects/myproject/dependency/fns.ts 500 undefined WatchType: Closed Script info +Info 30 [00:01:05.000] Search path: /user/username/projects/myproject/dependency +Info 31 [00:01:06.000] For info: /user/username/projects/myproject/dependency/fns.ts :: Config file name: /user/username/projects/myproject/dependency/tsconfig.json +Info 32 [00:01:07.000] Creating configuration project /user/username/projects/myproject/dependency/tsconfig.json +Info 33 [00:01:08.000] Plugins were requested but not running in environment that supports 'require'. Nothing will be loaded +Info 34 [00:01:09.000] Starting updateGraphWorker: Project: /user/username/projects/myproject/dependency/tsconfig.json +Info 35 [00:01:10.000] 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 36 [00:01:11.000] 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 37 [00:01:12.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Type roots +Info 38 [00:01:13.000] 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 39 [00:01:14.000] Finishing updateGraphWorker: Project: /user/username/projects/myproject/dependency/tsconfig.json Version: 1 structureChanged: true structureIsReused:: Not Elapsed:: *ms +Info 40 [00:01:15.000] Project '/user/username/projects/myproject/dependency/tsconfig.json' (Configured) +Info 41 [00:01:16.000] Files (2) /a/lib/lib.d.ts /user/username/projects/myproject/dependency/fns.ts @@ -202,22 +202,22 @@ Info 41 [16:01:16.000] Files (2) fns.ts Matched by default include pattern '**/*' -Info 42 [16:01:17.000] ----------------------------------------------- -Info 43 [16:01:18.000] Search path: /user/username/projects/myproject/dependency -Info 44 [16:01:19.000] For info: /user/username/projects/myproject/dependency/tsconfig.json :: No config files found. -Info 45 [16:01:20.000] Project '/user/username/projects/myproject/usage/tsconfig.json' (Configured) -Info 45 [16:01:21.000] Files (3) - -Info 45 [16:01:22.000] ----------------------------------------------- -Info 45 [16:01:23.000] Project '/user/username/projects/myproject/dependency/tsconfig.json' (Configured) -Info 45 [16:01:24.000] Files (2) - -Info 45 [16:01:25.000] ----------------------------------------------- -Info 45 [16:01:26.000] Open files: -Info 45 [16:01:27.000] FileName: /user/username/projects/myproject/usage/usage.ts ProjectRootPath: undefined -Info 45 [16:01:28.000] Projects: /user/username/projects/myproject/usage/tsconfig.json -Info 45 [16:01:29.000] FileName: /user/username/projects/myproject/dependency/fns.ts ProjectRootPath: undefined -Info 45 [16:01:30.000] Projects: /user/username/projects/myproject/usage/tsconfig.json,/user/username/projects/myproject/dependency/tsconfig.json +Info 42 [00:01:17.000] ----------------------------------------------- +Info 43 [00:01:18.000] Search path: /user/username/projects/myproject/dependency +Info 44 [00:01:19.000] For info: /user/username/projects/myproject/dependency/tsconfig.json :: No config files found. +Info 45 [00:01:20.000] Project '/user/username/projects/myproject/usage/tsconfig.json' (Configured) +Info 45 [00:01:21.000] Files (3) + +Info 45 [00:01:22.000] ----------------------------------------------- +Info 45 [00:01:23.000] Project '/user/username/projects/myproject/dependency/tsconfig.json' (Configured) +Info 45 [00:01:24.000] Files (2) + +Info 45 [00:01:25.000] ----------------------------------------------- +Info 45 [00:01:26.000] Open files: +Info 45 [00:01:27.000] FileName: /user/username/projects/myproject/usage/usage.ts ProjectRootPath: undefined +Info 45 [00:01:28.000] Projects: /user/username/projects/myproject/usage/tsconfig.json +Info 45 [00:01:29.000] FileName: /user/username/projects/myproject/dependency/fns.ts ProjectRootPath: undefined +Info 45 [00:01:30.000] Projects: /user/username/projects/myproject/usage/tsconfig.json,/user/username/projects/myproject/dependency/tsconfig.json After request PolledWatches:: @@ -244,11 +244,11 @@ FsWatchesRecursive:: /user/username/projects/myproject/dependency: {} -Info 45 [16:01:31.000] response: +Info 45 [00:01:31.000] response: { "responseRequired": false } -Info 46 [16:01:32.000] request: +Info 46 [00:01:32.000] request: { "command": "compileOnSaveAffectedFileList", "arguments": { @@ -283,34 +283,34 @@ FsWatchesRecursive:: /user/username/projects/myproject/dependency: {} -Info 47 [16:01:33.000] Before ensureProjectForOpenFiles: -Info 48 [16:01:34.000] Project '/user/username/projects/myproject/usage/tsconfig.json' (Configured) -Info 48 [16:01:35.000] Files (3) - -Info 48 [16:01:36.000] ----------------------------------------------- -Info 48 [16:01:37.000] Project '/user/username/projects/myproject/dependency/tsconfig.json' (Configured) -Info 48 [16:01:38.000] Files (2) - -Info 48 [16:01:39.000] ----------------------------------------------- -Info 48 [16:01:40.000] Open files: -Info 48 [16:01:41.000] FileName: /user/username/projects/myproject/usage/usage.ts ProjectRootPath: undefined -Info 48 [16:01:42.000] Projects: /user/username/projects/myproject/usage/tsconfig.json -Info 48 [16:01:43.000] FileName: /user/username/projects/myproject/dependency/fns.ts ProjectRootPath: undefined -Info 48 [16:01:44.000] Projects: /user/username/projects/myproject/usage/tsconfig.json,/user/username/projects/myproject/dependency/tsconfig.json -Info 48 [16:01:45.000] After ensureProjectForOpenFiles: -Info 49 [16:01:46.000] Project '/user/username/projects/myproject/usage/tsconfig.json' (Configured) -Info 49 [16:01:47.000] Files (3) - -Info 49 [16:01:48.000] ----------------------------------------------- -Info 49 [16:01:49.000] Project '/user/username/projects/myproject/dependency/tsconfig.json' (Configured) -Info 49 [16:01:50.000] Files (2) - -Info 49 [16:01:51.000] ----------------------------------------------- -Info 49 [16:01:52.000] Open files: -Info 49 [16:01:53.000] FileName: /user/username/projects/myproject/usage/usage.ts ProjectRootPath: undefined -Info 49 [16:01:54.000] Projects: /user/username/projects/myproject/usage/tsconfig.json -Info 49 [16:01:55.000] FileName: /user/username/projects/myproject/dependency/fns.ts ProjectRootPath: undefined -Info 49 [16:01:56.000] Projects: /user/username/projects/myproject/usage/tsconfig.json,/user/username/projects/myproject/dependency/tsconfig.json +Info 47 [00:01:33.000] Before ensureProjectForOpenFiles: +Info 48 [00:01:34.000] Project '/user/username/projects/myproject/usage/tsconfig.json' (Configured) +Info 48 [00:01:35.000] Files (3) + +Info 48 [00:01:36.000] ----------------------------------------------- +Info 48 [00:01:37.000] Project '/user/username/projects/myproject/dependency/tsconfig.json' (Configured) +Info 48 [00:01:38.000] Files (2) + +Info 48 [00:01:39.000] ----------------------------------------------- +Info 48 [00:01:40.000] Open files: +Info 48 [00:01:41.000] FileName: /user/username/projects/myproject/usage/usage.ts ProjectRootPath: undefined +Info 48 [00:01:42.000] Projects: /user/username/projects/myproject/usage/tsconfig.json +Info 48 [00:01:43.000] FileName: /user/username/projects/myproject/dependency/fns.ts ProjectRootPath: undefined +Info 48 [00:01:44.000] Projects: /user/username/projects/myproject/usage/tsconfig.json,/user/username/projects/myproject/dependency/tsconfig.json +Info 48 [00:01:45.000] After ensureProjectForOpenFiles: +Info 49 [00:01:46.000] Project '/user/username/projects/myproject/usage/tsconfig.json' (Configured) +Info 49 [00:01:47.000] Files (3) + +Info 49 [00:01:48.000] ----------------------------------------------- +Info 49 [00:01:49.000] Project '/user/username/projects/myproject/dependency/tsconfig.json' (Configured) +Info 49 [00:01:50.000] Files (2) + +Info 49 [00:01:51.000] ----------------------------------------------- +Info 49 [00:01:52.000] Open files: +Info 49 [00:01:53.000] FileName: /user/username/projects/myproject/usage/usage.ts ProjectRootPath: undefined +Info 49 [00:01:54.000] Projects: /user/username/projects/myproject/usage/tsconfig.json +Info 49 [00:01:55.000] FileName: /user/username/projects/myproject/dependency/fns.ts ProjectRootPath: undefined +Info 49 [00:01:56.000] Projects: /user/username/projects/myproject/usage/tsconfig.json,/user/username/projects/myproject/dependency/tsconfig.json After request PolledWatches:: @@ -337,7 +337,7 @@ FsWatchesRecursive:: /user/username/projects/myproject/dependency: {} -Info 49 [16:01:57.000] response: +Info 49 [00:01:57.000] response: { "response": [ { @@ -357,7 +357,7 @@ Info 49 [16:01:57.000] response: ], "responseRequired": true } -Info 50 [16:01:58.000] request: +Info 50 [00:01:58.000] request: { "command": "change", "arguments": { @@ -423,11 +423,11 @@ FsWatchesRecursive:: /user/username/projects/myproject/dependency: {} -Info 51 [16:01:59.000] response: +Info 51 [00:01:59.000] response: { "responseRequired": false } -Info 52 [16:02:00.000] request: +Info 52 [00:02:00.000] request: { "command": "compileOnSaveAffectedFileList", "arguments": { @@ -489,7 +489,7 @@ FsWatchesRecursive:: /user/username/projects/myproject/dependency: {} -Info 53 [16:02:01.000] response: +Info 53 [00:02:01.000] response: { "response": [ { @@ -502,7 +502,7 @@ Info 53 [16:02:01.000] response: ], "responseRequired": true } -Info 54 [16:02:02.000] request: +Info 54 [00:02:02.000] request: { "command": "compileOnSaveEmitFile", "arguments": { @@ -538,18 +538,18 @@ FsWatchesRecursive:: /user/username/projects/myproject/dependency: {} -Info 55 [16:02:05.000] DirectoryWatcher:: Triggered with /user/username/projects/myproject/dependency/fns.js :: WatchInfo: /user/username/projects/myproject/dependency 1 undefined Config: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Wild card directory -Info 56 [16:02:06.000] Project: /user/username/projects/myproject/dependency/tsconfig.json Detected file add/remove of non supported extension: /user/username/projects/myproject/dependency/fns.js -Info 57 [16:02:07.000] Elapsed:: *ms DirectoryWatcher:: Triggered with /user/username/projects/myproject/dependency/fns.js :: WatchInfo: /user/username/projects/myproject/dependency 1 undefined Config: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Wild card directory -Info 58 [16:02:11.000] DirectoryWatcher:: Triggered with /user/username/projects/myproject/decls :: WatchInfo: /user/username/projects/myproject/decls 1 undefined Project: /user/username/projects/myproject/usage/tsconfig.json WatchType: Failed Lookup Locations -Info 59 [16:02:12.000] Scheduled: /user/username/projects/myproject/usage/tsconfig.jsonFailedLookupInvalidation -Info 60 [16:02:13.000] Elapsed:: *ms DirectoryWatcher:: Triggered with /user/username/projects/myproject/decls :: WatchInfo: /user/username/projects/myproject/decls 1 undefined Project: /user/username/projects/myproject/usage/tsconfig.json WatchType: Failed Lookup Locations -Info 61 [16:02:14.000] DirectoryWatcher:: Triggered with /user/username/projects/myproject/decls :: WatchInfo: /user/username/projects/myproject/decls 1 undefined Project: /user/username/projects/myproject/usage/tsconfig.json WatchType: Failed Lookup Locations -Info 62 [16:02:15.000] Scheduled: /user/username/projects/myproject/usage/tsconfig.jsonFailedLookupInvalidation, Cancelled earlier one -Info 63 [16:02:16.000] Elapsed:: *ms DirectoryWatcher:: Triggered with /user/username/projects/myproject/decls :: WatchInfo: /user/username/projects/myproject/decls 1 undefined Project: /user/username/projects/myproject/usage/tsconfig.json WatchType: Failed Lookup Locations -Info 64 [16:02:19.000] DirectoryWatcher:: Triggered with /user/username/projects/myproject/decls/fns.d.ts :: WatchInfo: /user/username/projects/myproject/decls 1 undefined Project: /user/username/projects/myproject/usage/tsconfig.json WatchType: Failed Lookup Locations -Info 65 [16:02:20.000] Scheduled: /user/username/projects/myproject/usage/tsconfig.jsonFailedLookupInvalidation, Cancelled earlier one -Info 66 [16:02:21.000] Elapsed:: *ms DirectoryWatcher:: Triggered with /user/username/projects/myproject/decls/fns.d.ts :: WatchInfo: /user/username/projects/myproject/decls 1 undefined Project: /user/username/projects/myproject/usage/tsconfig.json WatchType: Failed Lookup Locations +Info 55 [00:02:05.000] DirectoryWatcher:: Triggered with /user/username/projects/myproject/dependency/fns.js :: WatchInfo: /user/username/projects/myproject/dependency 1 undefined Config: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Wild card directory +Info 56 [00:02:06.000] Project: /user/username/projects/myproject/dependency/tsconfig.json Detected file add/remove of non supported extension: /user/username/projects/myproject/dependency/fns.js +Info 57 [00:02:07.000] Elapsed:: *ms DirectoryWatcher:: Triggered with /user/username/projects/myproject/dependency/fns.js :: WatchInfo: /user/username/projects/myproject/dependency 1 undefined Config: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Wild card directory +Info 58 [00:02:11.000] DirectoryWatcher:: Triggered with /user/username/projects/myproject/decls :: WatchInfo: /user/username/projects/myproject/decls 1 undefined Project: /user/username/projects/myproject/usage/tsconfig.json WatchType: Failed Lookup Locations +Info 59 [00:02:12.000] Scheduled: /user/username/projects/myproject/usage/tsconfig.jsonFailedLookupInvalidation +Info 60 [00:02:13.000] Elapsed:: *ms DirectoryWatcher:: Triggered with /user/username/projects/myproject/decls :: WatchInfo: /user/username/projects/myproject/decls 1 undefined Project: /user/username/projects/myproject/usage/tsconfig.json WatchType: Failed Lookup Locations +Info 61 [00:02:14.000] DirectoryWatcher:: Triggered with /user/username/projects/myproject/decls :: WatchInfo: /user/username/projects/myproject/decls 1 undefined Project: /user/username/projects/myproject/usage/tsconfig.json WatchType: Failed Lookup Locations +Info 62 [00:02:15.000] Scheduled: /user/username/projects/myproject/usage/tsconfig.jsonFailedLookupInvalidation, Cancelled earlier one +Info 63 [00:02:16.000] Elapsed:: *ms DirectoryWatcher:: Triggered with /user/username/projects/myproject/decls :: WatchInfo: /user/username/projects/myproject/decls 1 undefined Project: /user/username/projects/myproject/usage/tsconfig.json WatchType: Failed Lookup Locations +Info 64 [00:02:19.000] DirectoryWatcher:: Triggered with /user/username/projects/myproject/decls/fns.d.ts :: WatchInfo: /user/username/projects/myproject/decls 1 undefined Project: /user/username/projects/myproject/usage/tsconfig.json WatchType: Failed Lookup Locations +Info 65 [00:02:20.000] Scheduled: /user/username/projects/myproject/usage/tsconfig.jsonFailedLookupInvalidation, Cancelled earlier one +Info 66 [00:02:21.000] Elapsed:: *ms DirectoryWatcher:: Triggered with /user/username/projects/myproject/decls/fns.d.ts :: WatchInfo: /user/username/projects/myproject/decls 1 undefined Project: /user/username/projects/myproject/usage/tsconfig.json WatchType: Failed Lookup Locations After request //// [/user/username/projects/myproject/dependency/fns.js] "use strict"; @@ -591,12 +591,12 @@ FsWatchesRecursive:: /user/username/projects/myproject/decls: {} -Info 67 [16:02:22.000] response: +Info 67 [00:02:22.000] response: { "response": true, "responseRequired": true } -Info 68 [16:02:23.000] request: +Info 68 [00:02:23.000] request: { "command": "emit-output", "arguments": { @@ -658,7 +658,7 @@ FsWatchesRecursive:: /user/username/projects/myproject/decls: {} -Info 69 [16:02:24.000] response: +Info 69 [00:02:24.000] response: { "response": { "outputFiles": [ 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 25c4609a574a0..43abb46d7b052 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 @@ -1,5 +1,5 @@ -Info 0 [16:00:29.000] Provided types map file "/a/lib/typesMap.json" doesn't exist -Info 1 [16:00:30.000] request: +Info 0 [00:00:29.000] Provided types map file "/a/lib/typesMap.json" doesn't exist +Info 1 [00:00:30.000] request: { "seq": 0, "type": "request", @@ -49,11 +49,11 @@ FsWatches:: FsWatchesRecursive:: -Info 2 [16:00:31.000] Search path: /user/username/projects/myproject/usage -Info 3 [16:00:32.000] For info: /user/username/projects/myproject/usage/usage.ts :: Config file name: /user/username/projects/myproject/usage/tsconfig.json -Info 4 [16:00:33.000] Creating configuration project /user/username/projects/myproject/usage/tsconfig.json -Info 5 [16:00:34.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/usage/tsconfig.json 2000 undefined Project: /user/username/projects/myproject/usage/tsconfig.json WatchType: Config file -Info 6 [16:00:35.000] Config: /user/username/projects/myproject/usage/tsconfig.json : { +Info 2 [00:00:31.000] Search path: /user/username/projects/myproject/usage +Info 3 [00:00:32.000] For info: /user/username/projects/myproject/usage/usage.ts :: Config file name: /user/username/projects/myproject/usage/tsconfig.json +Info 4 [00:00:33.000] Creating configuration project /user/username/projects/myproject/usage/tsconfig.json +Info 5 [00:00:34.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/usage/tsconfig.json 2000 undefined Project: /user/username/projects/myproject/usage/tsconfig.json WatchType: Config file +Info 6 [00:00:35.000] Config: /user/username/projects/myproject/usage/tsconfig.json : { "rootNames": [ "/user/username/projects/myproject/usage/usage.ts" ], @@ -67,11 +67,11 @@ Info 6 [16:00:35.000] Config: /user/username/projects/myproject/usage/tsconfi } ] } -Info 7 [16:00:36.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/usage 1 undefined Config: /user/username/projects/myproject/usage/tsconfig.json WatchType: Wild card directory -Info 8 [16:00:37.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/usage 1 undefined Config: /user/username/projects/myproject/usage/tsconfig.json WatchType: Wild card directory -Info 9 [16:00:38.000] Plugins were requested but not running in environment that supports 'require'. Nothing will be loaded -Info 10 [16:00:39.000] Starting updateGraphWorker: Project: /user/username/projects/myproject/usage/tsconfig.json -Info 11 [16:00:40.000] Config: /user/username/projects/myproject/dependency/tsconfig.json : { +Info 7 [00:00:36.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/usage 1 undefined Config: /user/username/projects/myproject/usage/tsconfig.json WatchType: Wild card directory +Info 8 [00:00:37.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/usage 1 undefined Config: /user/username/projects/myproject/usage/tsconfig.json WatchType: Wild card directory +Info 9 [00:00:38.000] Plugins were requested but not running in environment that supports 'require'. Nothing will be loaded +Info 10 [00:00:39.000] Starting updateGraphWorker: Project: /user/username/projects/myproject/usage/tsconfig.json +Info 11 [00:00:40.000] Config: /user/username/projects/myproject/dependency/tsconfig.json : { "rootNames": [ "/user/username/projects/myproject/dependency/fns.ts" ], @@ -81,20 +81,20 @@ Info 11 [16:00:40.000] Config: /user/username/projects/myproject/dependency/ts "configFilePath": "/user/username/projects/myproject/dependency/tsconfig.json" } } -Info 12 [16:00:41.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/dependency/tsconfig.json 2000 undefined Project: /user/username/projects/myproject/usage/tsconfig.json WatchType: Config file -Info 13 [16:00:42.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/dependency 1 undefined Config: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Wild card directory -Info 14 [16:00:43.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/dependency 1 undefined Config: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Wild card directory -Info 15 [16:00:44.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/decls 1 undefined Project: /user/username/projects/myproject/usage/tsconfig.json WatchType: Failed Lookup Locations -Info 16 [16:00:45.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/decls 1 undefined Project: /user/username/projects/myproject/usage/tsconfig.json WatchType: Failed Lookup Locations -Info 17 [16:00:46.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/dependency/fns.ts 500 undefined WatchType: Closed Script info -Info 18 [16:00:47.000] FileWatcher:: Added:: WatchInfo: /a/lib/lib.d.ts 500 undefined WatchType: Closed Script info -Info 19 [16:00:48.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/usage/node_modules/@types 1 undefined Project: /user/username/projects/myproject/usage/tsconfig.json WatchType: Type roots -Info 20 [16:00:49.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/usage/node_modules/@types 1 undefined Project: /user/username/projects/myproject/usage/tsconfig.json WatchType: Type roots -Info 21 [16:00:50.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/usage/tsconfig.json WatchType: Type roots -Info 22 [16:00:51.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/usage/tsconfig.json WatchType: Type roots -Info 23 [16:00:52.000] Finishing updateGraphWorker: Project: /user/username/projects/myproject/usage/tsconfig.json Version: 1 structureChanged: true structureIsReused:: Not Elapsed:: *ms -Info 24 [16:00:53.000] Project '/user/username/projects/myproject/usage/tsconfig.json' (Configured) -Info 25 [16:00:54.000] Files (3) +Info 12 [00:00:41.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/dependency/tsconfig.json 2000 undefined Project: /user/username/projects/myproject/usage/tsconfig.json WatchType: Config file +Info 13 [00:00:42.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/dependency 1 undefined Config: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Wild card directory +Info 14 [00:00:43.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/dependency 1 undefined Config: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Wild card directory +Info 15 [00:00:44.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/decls 1 undefined Project: /user/username/projects/myproject/usage/tsconfig.json WatchType: Failed Lookup Locations +Info 16 [00:00:45.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/decls 1 undefined Project: /user/username/projects/myproject/usage/tsconfig.json WatchType: Failed Lookup Locations +Info 17 [00:00:46.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/dependency/fns.ts 500 undefined WatchType: Closed Script info +Info 18 [00:00:47.000] FileWatcher:: Added:: WatchInfo: /a/lib/lib.d.ts 500 undefined WatchType: Closed Script info +Info 19 [00:00:48.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/usage/node_modules/@types 1 undefined Project: /user/username/projects/myproject/usage/tsconfig.json WatchType: Type roots +Info 20 [00:00:49.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/usage/node_modules/@types 1 undefined Project: /user/username/projects/myproject/usage/tsconfig.json WatchType: Type roots +Info 21 [00:00:50.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/usage/tsconfig.json WatchType: Type roots +Info 22 [00:00:51.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/usage/tsconfig.json WatchType: Type roots +Info 23 [00:00:52.000] Finishing updateGraphWorker: Project: /user/username/projects/myproject/usage/tsconfig.json Version: 1 structureChanged: true structureIsReused:: Not Elapsed:: *ms +Info 24 [00:00:53.000] Project '/user/username/projects/myproject/usage/tsconfig.json' (Configured) +Info 25 [00:00:54.000] Files (3) /a/lib/lib.d.ts /user/username/projects/myproject/dependency/fns.ts /user/username/projects/myproject/usage/usage.ts @@ -107,14 +107,14 @@ Info 25 [16:00:54.000] Files (3) usage.ts Matched by default include pattern '**/*' -Info 26 [16:00:55.000] ----------------------------------------------- -Info 27 [16:00:56.000] Project '/user/username/projects/myproject/usage/tsconfig.json' (Configured) -Info 27 [16:00:57.000] Files (3) +Info 26 [00:00:55.000] ----------------------------------------------- +Info 27 [00:00:56.000] Project '/user/username/projects/myproject/usage/tsconfig.json' (Configured) +Info 27 [00:00:57.000] Files (3) -Info 27 [16:00:58.000] ----------------------------------------------- -Info 27 [16:00:59.000] Open files: -Info 27 [16:01:00.000] FileName: /user/username/projects/myproject/usage/usage.ts ProjectRootPath: undefined -Info 27 [16:01:01.000] Projects: /user/username/projects/myproject/usage/tsconfig.json +Info 27 [00:00:58.000] ----------------------------------------------- +Info 27 [00:00:59.000] Open files: +Info 27 [00:01:00.000] FileName: /user/username/projects/myproject/usage/usage.ts ProjectRootPath: undefined +Info 27 [00:01:01.000] Projects: /user/username/projects/myproject/usage/tsconfig.json After request PolledWatches:: @@ -141,11 +141,11 @@ FsWatchesRecursive:: /user/username/projects/myproject/dependency: {} -Info 27 [16:01:02.000] response: +Info 27 [00:01:02.000] response: { "responseRequired": false } -Info 28 [16:01:03.000] request: +Info 28 [00:01:03.000] request: { "seq": 0, "type": "request", @@ -180,19 +180,19 @@ FsWatchesRecursive:: /user/username/projects/myproject/dependency: {} -Info 29 [16:01:04.000] FileWatcher:: Close:: WatchInfo: /user/username/projects/myproject/dependency/fns.ts 500 undefined WatchType: Closed Script info -Info 30 [16:01:05.000] Search path: /user/username/projects/myproject/dependency -Info 31 [16:01:06.000] For info: /user/username/projects/myproject/dependency/fns.ts :: Config file name: /user/username/projects/myproject/dependency/tsconfig.json -Info 32 [16:01:07.000] Creating configuration project /user/username/projects/myproject/dependency/tsconfig.json -Info 33 [16:01:08.000] Plugins were requested but not running in environment that supports 'require'. Nothing will be loaded -Info 34 [16:01:09.000] Starting updateGraphWorker: Project: /user/username/projects/myproject/dependency/tsconfig.json -Info 35 [16:01:10.000] 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 36 [16:01:11.000] 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 37 [16:01:12.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Type roots -Info 38 [16:01:13.000] 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 39 [16:01:14.000] Finishing updateGraphWorker: Project: /user/username/projects/myproject/dependency/tsconfig.json Version: 1 structureChanged: true structureIsReused:: Not Elapsed:: *ms -Info 40 [16:01:15.000] Project '/user/username/projects/myproject/dependency/tsconfig.json' (Configured) -Info 41 [16:01:16.000] Files (2) +Info 29 [00:01:04.000] FileWatcher:: Close:: WatchInfo: /user/username/projects/myproject/dependency/fns.ts 500 undefined WatchType: Closed Script info +Info 30 [00:01:05.000] Search path: /user/username/projects/myproject/dependency +Info 31 [00:01:06.000] For info: /user/username/projects/myproject/dependency/fns.ts :: Config file name: /user/username/projects/myproject/dependency/tsconfig.json +Info 32 [00:01:07.000] Creating configuration project /user/username/projects/myproject/dependency/tsconfig.json +Info 33 [00:01:08.000] Plugins were requested but not running in environment that supports 'require'. Nothing will be loaded +Info 34 [00:01:09.000] Starting updateGraphWorker: Project: /user/username/projects/myproject/dependency/tsconfig.json +Info 35 [00:01:10.000] 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 36 [00:01:11.000] 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 37 [00:01:12.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Type roots +Info 38 [00:01:13.000] 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 39 [00:01:14.000] Finishing updateGraphWorker: Project: /user/username/projects/myproject/dependency/tsconfig.json Version: 1 structureChanged: true structureIsReused:: Not Elapsed:: *ms +Info 40 [00:01:15.000] Project '/user/username/projects/myproject/dependency/tsconfig.json' (Configured) +Info 41 [00:01:16.000] Files (2) /a/lib/lib.d.ts /user/username/projects/myproject/dependency/fns.ts @@ -202,22 +202,22 @@ Info 41 [16:01:16.000] Files (2) fns.ts Matched by default include pattern '**/*' -Info 42 [16:01:17.000] ----------------------------------------------- -Info 43 [16:01:18.000] Search path: /user/username/projects/myproject/dependency -Info 44 [16:01:19.000] For info: /user/username/projects/myproject/dependency/tsconfig.json :: No config files found. -Info 45 [16:01:20.000] Project '/user/username/projects/myproject/usage/tsconfig.json' (Configured) -Info 45 [16:01:21.000] Files (3) - -Info 45 [16:01:22.000] ----------------------------------------------- -Info 45 [16:01:23.000] Project '/user/username/projects/myproject/dependency/tsconfig.json' (Configured) -Info 45 [16:01:24.000] Files (2) - -Info 45 [16:01:25.000] ----------------------------------------------- -Info 45 [16:01:26.000] Open files: -Info 45 [16:01:27.000] FileName: /user/username/projects/myproject/usage/usage.ts ProjectRootPath: undefined -Info 45 [16:01:28.000] Projects: /user/username/projects/myproject/usage/tsconfig.json -Info 45 [16:01:29.000] FileName: /user/username/projects/myproject/dependency/fns.ts ProjectRootPath: undefined -Info 45 [16:01:30.000] Projects: /user/username/projects/myproject/usage/tsconfig.json,/user/username/projects/myproject/dependency/tsconfig.json +Info 42 [00:01:17.000] ----------------------------------------------- +Info 43 [00:01:18.000] Search path: /user/username/projects/myproject/dependency +Info 44 [00:01:19.000] For info: /user/username/projects/myproject/dependency/tsconfig.json :: No config files found. +Info 45 [00:01:20.000] Project '/user/username/projects/myproject/usage/tsconfig.json' (Configured) +Info 45 [00:01:21.000] Files (3) + +Info 45 [00:01:22.000] ----------------------------------------------- +Info 45 [00:01:23.000] Project '/user/username/projects/myproject/dependency/tsconfig.json' (Configured) +Info 45 [00:01:24.000] Files (2) + +Info 45 [00:01:25.000] ----------------------------------------------- +Info 45 [00:01:26.000] Open files: +Info 45 [00:01:27.000] FileName: /user/username/projects/myproject/usage/usage.ts ProjectRootPath: undefined +Info 45 [00:01:28.000] Projects: /user/username/projects/myproject/usage/tsconfig.json +Info 45 [00:01:29.000] FileName: /user/username/projects/myproject/dependency/fns.ts ProjectRootPath: undefined +Info 45 [00:01:30.000] Projects: /user/username/projects/myproject/usage/tsconfig.json,/user/username/projects/myproject/dependency/tsconfig.json After request PolledWatches:: @@ -244,11 +244,11 @@ FsWatchesRecursive:: /user/username/projects/myproject/dependency: {} -Info 45 [16:01:31.000] response: +Info 45 [00:01:31.000] response: { "responseRequired": false } -Info 46 [16:01:32.000] request: +Info 46 [00:01:32.000] request: { "command": "compileOnSaveAffectedFileList", "arguments": { @@ -283,34 +283,34 @@ FsWatchesRecursive:: /user/username/projects/myproject/dependency: {} -Info 47 [16:01:33.000] Before ensureProjectForOpenFiles: -Info 48 [16:01:34.000] Project '/user/username/projects/myproject/usage/tsconfig.json' (Configured) -Info 48 [16:01:35.000] Files (3) - -Info 48 [16:01:36.000] ----------------------------------------------- -Info 48 [16:01:37.000] Project '/user/username/projects/myproject/dependency/tsconfig.json' (Configured) -Info 48 [16:01:38.000] Files (2) - -Info 48 [16:01:39.000] ----------------------------------------------- -Info 48 [16:01:40.000] Open files: -Info 48 [16:01:41.000] FileName: /user/username/projects/myproject/usage/usage.ts ProjectRootPath: undefined -Info 48 [16:01:42.000] Projects: /user/username/projects/myproject/usage/tsconfig.json -Info 48 [16:01:43.000] FileName: /user/username/projects/myproject/dependency/fns.ts ProjectRootPath: undefined -Info 48 [16:01:44.000] Projects: /user/username/projects/myproject/usage/tsconfig.json,/user/username/projects/myproject/dependency/tsconfig.json -Info 48 [16:01:45.000] After ensureProjectForOpenFiles: -Info 49 [16:01:46.000] Project '/user/username/projects/myproject/usage/tsconfig.json' (Configured) -Info 49 [16:01:47.000] Files (3) - -Info 49 [16:01:48.000] ----------------------------------------------- -Info 49 [16:01:49.000] Project '/user/username/projects/myproject/dependency/tsconfig.json' (Configured) -Info 49 [16:01:50.000] Files (2) - -Info 49 [16:01:51.000] ----------------------------------------------- -Info 49 [16:01:52.000] Open files: -Info 49 [16:01:53.000] FileName: /user/username/projects/myproject/usage/usage.ts ProjectRootPath: undefined -Info 49 [16:01:54.000] Projects: /user/username/projects/myproject/usage/tsconfig.json -Info 49 [16:01:55.000] FileName: /user/username/projects/myproject/dependency/fns.ts ProjectRootPath: undefined -Info 49 [16:01:56.000] Projects: /user/username/projects/myproject/usage/tsconfig.json,/user/username/projects/myproject/dependency/tsconfig.json +Info 47 [00:01:33.000] Before ensureProjectForOpenFiles: +Info 48 [00:01:34.000] Project '/user/username/projects/myproject/usage/tsconfig.json' (Configured) +Info 48 [00:01:35.000] Files (3) + +Info 48 [00:01:36.000] ----------------------------------------------- +Info 48 [00:01:37.000] Project '/user/username/projects/myproject/dependency/tsconfig.json' (Configured) +Info 48 [00:01:38.000] Files (2) + +Info 48 [00:01:39.000] ----------------------------------------------- +Info 48 [00:01:40.000] Open files: +Info 48 [00:01:41.000] FileName: /user/username/projects/myproject/usage/usage.ts ProjectRootPath: undefined +Info 48 [00:01:42.000] Projects: /user/username/projects/myproject/usage/tsconfig.json +Info 48 [00:01:43.000] FileName: /user/username/projects/myproject/dependency/fns.ts ProjectRootPath: undefined +Info 48 [00:01:44.000] Projects: /user/username/projects/myproject/usage/tsconfig.json,/user/username/projects/myproject/dependency/tsconfig.json +Info 48 [00:01:45.000] After ensureProjectForOpenFiles: +Info 49 [00:01:46.000] Project '/user/username/projects/myproject/usage/tsconfig.json' (Configured) +Info 49 [00:01:47.000] Files (3) + +Info 49 [00:01:48.000] ----------------------------------------------- +Info 49 [00:01:49.000] Project '/user/username/projects/myproject/dependency/tsconfig.json' (Configured) +Info 49 [00:01:50.000] Files (2) + +Info 49 [00:01:51.000] ----------------------------------------------- +Info 49 [00:01:52.000] Open files: +Info 49 [00:01:53.000] FileName: /user/username/projects/myproject/usage/usage.ts ProjectRootPath: undefined +Info 49 [00:01:54.000] Projects: /user/username/projects/myproject/usage/tsconfig.json +Info 49 [00:01:55.000] FileName: /user/username/projects/myproject/dependency/fns.ts ProjectRootPath: undefined +Info 49 [00:01:56.000] Projects: /user/username/projects/myproject/usage/tsconfig.json,/user/username/projects/myproject/dependency/tsconfig.json After request PolledWatches:: @@ -337,7 +337,7 @@ FsWatchesRecursive:: /user/username/projects/myproject/dependency: {} -Info 49 [16:01:57.000] response: +Info 49 [00:01:57.000] response: { "response": [ { @@ -357,7 +357,7 @@ Info 49 [16:01:57.000] response: ], "responseRequired": true } -Info 50 [16:01:58.000] request: +Info 50 [00:01:58.000] request: { "command": "change", "arguments": { @@ -423,11 +423,11 @@ FsWatchesRecursive:: /user/username/projects/myproject/dependency: {} -Info 51 [16:01:59.000] response: +Info 51 [00:01:59.000] response: { "responseRequired": false } -Info 52 [16:02:00.000] request: +Info 52 [00:02:00.000] request: { "command": "compileOnSaveAffectedFileList", "arguments": { @@ -463,9 +463,9 @@ FsWatchesRecursive:: /user/username/projects/myproject/dependency: {} -Info 53 [16:02:01.000] Starting updateGraphWorker: Project: /user/username/projects/myproject/dependency/tsconfig.json -Info 54 [16:02:02.000] Finishing updateGraphWorker: Project: /user/username/projects/myproject/dependency/tsconfig.json Version: 2 structureChanged: false structureIsReused:: Completely Elapsed:: *ms -Info 55 [16:02:03.000] Different program with same set of files +Info 53 [00:02:01.000] Starting updateGraphWorker: Project: /user/username/projects/myproject/dependency/tsconfig.json +Info 54 [00:02:02.000] Finishing updateGraphWorker: Project: /user/username/projects/myproject/dependency/tsconfig.json Version: 2 structureChanged: false structureIsReused:: Completely Elapsed:: *ms +Info 55 [00:02:03.000] Different program with same set of files After request PolledWatches:: @@ -492,7 +492,7 @@ FsWatchesRecursive:: /user/username/projects/myproject/dependency: {} -Info 56 [16:02:04.000] response: +Info 56 [00:02:04.000] response: { "response": [ { @@ -505,7 +505,7 @@ Info 56 [16:02:04.000] response: ], "responseRequired": true } -Info 57 [16:02:05.000] request: +Info 57 [00:02:05.000] request: { "command": "compileOnSaveEmitFile", "arguments": { @@ -541,18 +541,18 @@ FsWatchesRecursive:: /user/username/projects/myproject/dependency: {} -Info 58 [16:02:08.000] DirectoryWatcher:: Triggered with /user/username/projects/myproject/dependency/fns.js :: WatchInfo: /user/username/projects/myproject/dependency 1 undefined Config: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Wild card directory -Info 59 [16:02:09.000] Project: /user/username/projects/myproject/dependency/tsconfig.json Detected file add/remove of non supported extension: /user/username/projects/myproject/dependency/fns.js -Info 60 [16:02:10.000] Elapsed:: *ms DirectoryWatcher:: Triggered with /user/username/projects/myproject/dependency/fns.js :: WatchInfo: /user/username/projects/myproject/dependency 1 undefined Config: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Wild card directory -Info 61 [16:02:14.000] DirectoryWatcher:: Triggered with /user/username/projects/myproject/decls :: WatchInfo: /user/username/projects/myproject/decls 1 undefined Project: /user/username/projects/myproject/usage/tsconfig.json WatchType: Failed Lookup Locations -Info 62 [16:02:15.000] Scheduled: /user/username/projects/myproject/usage/tsconfig.jsonFailedLookupInvalidation -Info 63 [16:02:16.000] Elapsed:: *ms DirectoryWatcher:: Triggered with /user/username/projects/myproject/decls :: WatchInfo: /user/username/projects/myproject/decls 1 undefined Project: /user/username/projects/myproject/usage/tsconfig.json WatchType: Failed Lookup Locations -Info 64 [16:02:17.000] DirectoryWatcher:: Triggered with /user/username/projects/myproject/decls :: WatchInfo: /user/username/projects/myproject/decls 1 undefined Project: /user/username/projects/myproject/usage/tsconfig.json WatchType: Failed Lookup Locations -Info 65 [16:02:18.000] Scheduled: /user/username/projects/myproject/usage/tsconfig.jsonFailedLookupInvalidation, Cancelled earlier one -Info 66 [16:02:19.000] Elapsed:: *ms DirectoryWatcher:: Triggered with /user/username/projects/myproject/decls :: WatchInfo: /user/username/projects/myproject/decls 1 undefined Project: /user/username/projects/myproject/usage/tsconfig.json WatchType: Failed Lookup Locations -Info 67 [16:02:22.000] DirectoryWatcher:: Triggered with /user/username/projects/myproject/decls/fns.d.ts :: WatchInfo: /user/username/projects/myproject/decls 1 undefined Project: /user/username/projects/myproject/usage/tsconfig.json WatchType: Failed Lookup Locations -Info 68 [16:02:23.000] Scheduled: /user/username/projects/myproject/usage/tsconfig.jsonFailedLookupInvalidation, Cancelled earlier one -Info 69 [16:02:24.000] Elapsed:: *ms DirectoryWatcher:: Triggered with /user/username/projects/myproject/decls/fns.d.ts :: WatchInfo: /user/username/projects/myproject/decls 1 undefined Project: /user/username/projects/myproject/usage/tsconfig.json WatchType: Failed Lookup Locations +Info 58 [00:02:08.000] DirectoryWatcher:: Triggered with /user/username/projects/myproject/dependency/fns.js :: WatchInfo: /user/username/projects/myproject/dependency 1 undefined Config: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Wild card directory +Info 59 [00:02:09.000] Project: /user/username/projects/myproject/dependency/tsconfig.json Detected file add/remove of non supported extension: /user/username/projects/myproject/dependency/fns.js +Info 60 [00:02:10.000] Elapsed:: *ms DirectoryWatcher:: Triggered with /user/username/projects/myproject/dependency/fns.js :: WatchInfo: /user/username/projects/myproject/dependency 1 undefined Config: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Wild card directory +Info 61 [00:02:14.000] DirectoryWatcher:: Triggered with /user/username/projects/myproject/decls :: WatchInfo: /user/username/projects/myproject/decls 1 undefined Project: /user/username/projects/myproject/usage/tsconfig.json WatchType: Failed Lookup Locations +Info 62 [00:02:15.000] Scheduled: /user/username/projects/myproject/usage/tsconfig.jsonFailedLookupInvalidation +Info 63 [00:02:16.000] Elapsed:: *ms DirectoryWatcher:: Triggered with /user/username/projects/myproject/decls :: WatchInfo: /user/username/projects/myproject/decls 1 undefined Project: /user/username/projects/myproject/usage/tsconfig.json WatchType: Failed Lookup Locations +Info 64 [00:02:17.000] DirectoryWatcher:: Triggered with /user/username/projects/myproject/decls :: WatchInfo: /user/username/projects/myproject/decls 1 undefined Project: /user/username/projects/myproject/usage/tsconfig.json WatchType: Failed Lookup Locations +Info 65 [00:02:18.000] Scheduled: /user/username/projects/myproject/usage/tsconfig.jsonFailedLookupInvalidation, Cancelled earlier one +Info 66 [00:02:19.000] Elapsed:: *ms DirectoryWatcher:: Triggered with /user/username/projects/myproject/decls :: WatchInfo: /user/username/projects/myproject/decls 1 undefined Project: /user/username/projects/myproject/usage/tsconfig.json WatchType: Failed Lookup Locations +Info 67 [00:02:22.000] DirectoryWatcher:: Triggered with /user/username/projects/myproject/decls/fns.d.ts :: WatchInfo: /user/username/projects/myproject/decls 1 undefined Project: /user/username/projects/myproject/usage/tsconfig.json WatchType: Failed Lookup Locations +Info 68 [00:02:23.000] Scheduled: /user/username/projects/myproject/usage/tsconfig.jsonFailedLookupInvalidation, Cancelled earlier one +Info 69 [00:02:24.000] Elapsed:: *ms DirectoryWatcher:: Triggered with /user/username/projects/myproject/decls/fns.d.ts :: WatchInfo: /user/username/projects/myproject/decls 1 undefined Project: /user/username/projects/myproject/usage/tsconfig.json WatchType: Failed Lookup Locations After request //// [/user/username/projects/myproject/dependency/fns.js] "use strict"; @@ -595,12 +595,12 @@ FsWatchesRecursive:: /user/username/projects/myproject/decls: {} -Info 70 [16:02:25.000] response: +Info 70 [00:02:25.000] response: { "response": true, "responseRequired": true } -Info 71 [16:02:26.000] request: +Info 71 [00:02:26.000] request: { "command": "emit-output", "arguments": { @@ -662,7 +662,7 @@ FsWatchesRecursive:: /user/username/projects/myproject/decls: {} -Info 72 [16:02:27.000] response: +Info 72 [00:02:27.000] response: { "response": { "outputFiles": [ 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 f59ceb749357f..d5680e4f01718 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 @@ -1,5 +1,5 @@ -Info 0 [16:00:29.000] Provided types map file "/a/lib/typesMap.json" doesn't exist -Info 1 [16:00:30.000] request: +Info 0 [00:00:29.000] Provided types map file "/a/lib/typesMap.json" doesn't exist +Info 1 [00:00:30.000] request: { "seq": 0, "type": "request", @@ -49,11 +49,11 @@ FsWatches:: FsWatchesRecursive:: -Info 2 [16:00:31.000] Search path: /user/username/projects/myproject/usage -Info 3 [16:00:32.000] For info: /user/username/projects/myproject/usage/usage.ts :: Config file name: /user/username/projects/myproject/usage/tsconfig.json -Info 4 [16:00:33.000] Creating configuration project /user/username/projects/myproject/usage/tsconfig.json -Info 5 [16:00:34.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/usage/tsconfig.json 2000 undefined Project: /user/username/projects/myproject/usage/tsconfig.json WatchType: Config file -Info 6 [16:00:35.000] Config: /user/username/projects/myproject/usage/tsconfig.json : { +Info 2 [00:00:31.000] Search path: /user/username/projects/myproject/usage +Info 3 [00:00:32.000] For info: /user/username/projects/myproject/usage/usage.ts :: Config file name: /user/username/projects/myproject/usage/tsconfig.json +Info 4 [00:00:33.000] Creating configuration project /user/username/projects/myproject/usage/tsconfig.json +Info 5 [00:00:34.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/usage/tsconfig.json 2000 undefined Project: /user/username/projects/myproject/usage/tsconfig.json WatchType: Config file +Info 6 [00:00:35.000] Config: /user/username/projects/myproject/usage/tsconfig.json : { "rootNames": [ "/user/username/projects/myproject/usage/usage.ts" ], @@ -67,11 +67,11 @@ Info 6 [16:00:35.000] Config: /user/username/projects/myproject/usage/tsconfi } ] } -Info 7 [16:00:36.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/usage 1 undefined Config: /user/username/projects/myproject/usage/tsconfig.json WatchType: Wild card directory -Info 8 [16:00:37.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/usage 1 undefined Config: /user/username/projects/myproject/usage/tsconfig.json WatchType: Wild card directory -Info 9 [16:00:38.000] Plugins were requested but not running in environment that supports 'require'. Nothing will be loaded -Info 10 [16:00:39.000] Starting updateGraphWorker: Project: /user/username/projects/myproject/usage/tsconfig.json -Info 11 [16:00:40.000] Config: /user/username/projects/myproject/dependency/tsconfig.json : { +Info 7 [00:00:36.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/usage 1 undefined Config: /user/username/projects/myproject/usage/tsconfig.json WatchType: Wild card directory +Info 8 [00:00:37.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/usage 1 undefined Config: /user/username/projects/myproject/usage/tsconfig.json WatchType: Wild card directory +Info 9 [00:00:38.000] Plugins were requested but not running in environment that supports 'require'. Nothing will be loaded +Info 10 [00:00:39.000] Starting updateGraphWorker: Project: /user/username/projects/myproject/usage/tsconfig.json +Info 11 [00:00:40.000] Config: /user/username/projects/myproject/dependency/tsconfig.json : { "rootNames": [ "/user/username/projects/myproject/dependency/fns.ts" ], @@ -81,20 +81,20 @@ Info 11 [16:00:40.000] Config: /user/username/projects/myproject/dependency/ts "configFilePath": "/user/username/projects/myproject/dependency/tsconfig.json" } } -Info 12 [16:00:41.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/dependency/tsconfig.json 2000 undefined Project: /user/username/projects/myproject/usage/tsconfig.json WatchType: Config file -Info 13 [16:00:42.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/dependency 1 undefined Config: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Wild card directory -Info 14 [16:00:43.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/dependency 1 undefined Config: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Wild card directory -Info 15 [16:00:44.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/decls 1 undefined Project: /user/username/projects/myproject/usage/tsconfig.json WatchType: Failed Lookup Locations -Info 16 [16:00:45.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/decls 1 undefined Project: /user/username/projects/myproject/usage/tsconfig.json WatchType: Failed Lookup Locations -Info 17 [16:00:46.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/dependency/fns.ts 500 undefined WatchType: Closed Script info -Info 18 [16:00:47.000] FileWatcher:: Added:: WatchInfo: /a/lib/lib.d.ts 500 undefined WatchType: Closed Script info -Info 19 [16:00:48.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/usage/node_modules/@types 1 undefined Project: /user/username/projects/myproject/usage/tsconfig.json WatchType: Type roots -Info 20 [16:00:49.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/usage/node_modules/@types 1 undefined Project: /user/username/projects/myproject/usage/tsconfig.json WatchType: Type roots -Info 21 [16:00:50.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/usage/tsconfig.json WatchType: Type roots -Info 22 [16:00:51.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/usage/tsconfig.json WatchType: Type roots -Info 23 [16:00:52.000] Finishing updateGraphWorker: Project: /user/username/projects/myproject/usage/tsconfig.json Version: 1 structureChanged: true structureIsReused:: Not Elapsed:: *ms -Info 24 [16:00:53.000] Project '/user/username/projects/myproject/usage/tsconfig.json' (Configured) -Info 25 [16:00:54.000] Files (3) +Info 12 [00:00:41.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/dependency/tsconfig.json 2000 undefined Project: /user/username/projects/myproject/usage/tsconfig.json WatchType: Config file +Info 13 [00:00:42.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/dependency 1 undefined Config: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Wild card directory +Info 14 [00:00:43.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/dependency 1 undefined Config: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Wild card directory +Info 15 [00:00:44.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/decls 1 undefined Project: /user/username/projects/myproject/usage/tsconfig.json WatchType: Failed Lookup Locations +Info 16 [00:00:45.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/decls 1 undefined Project: /user/username/projects/myproject/usage/tsconfig.json WatchType: Failed Lookup Locations +Info 17 [00:00:46.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/dependency/fns.ts 500 undefined WatchType: Closed Script info +Info 18 [00:00:47.000] FileWatcher:: Added:: WatchInfo: /a/lib/lib.d.ts 500 undefined WatchType: Closed Script info +Info 19 [00:00:48.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/usage/node_modules/@types 1 undefined Project: /user/username/projects/myproject/usage/tsconfig.json WatchType: Type roots +Info 20 [00:00:49.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/usage/node_modules/@types 1 undefined Project: /user/username/projects/myproject/usage/tsconfig.json WatchType: Type roots +Info 21 [00:00:50.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/usage/tsconfig.json WatchType: Type roots +Info 22 [00:00:51.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/usage/tsconfig.json WatchType: Type roots +Info 23 [00:00:52.000] Finishing updateGraphWorker: Project: /user/username/projects/myproject/usage/tsconfig.json Version: 1 structureChanged: true structureIsReused:: Not Elapsed:: *ms +Info 24 [00:00:53.000] Project '/user/username/projects/myproject/usage/tsconfig.json' (Configured) +Info 25 [00:00:54.000] Files (3) /a/lib/lib.d.ts /user/username/projects/myproject/dependency/fns.ts /user/username/projects/myproject/usage/usage.ts @@ -107,14 +107,14 @@ Info 25 [16:00:54.000] Files (3) usage.ts Matched by default include pattern '**/*' -Info 26 [16:00:55.000] ----------------------------------------------- -Info 27 [16:00:56.000] Project '/user/username/projects/myproject/usage/tsconfig.json' (Configured) -Info 27 [16:00:57.000] Files (3) +Info 26 [00:00:55.000] ----------------------------------------------- +Info 27 [00:00:56.000] Project '/user/username/projects/myproject/usage/tsconfig.json' (Configured) +Info 27 [00:00:57.000] Files (3) -Info 27 [16:00:58.000] ----------------------------------------------- -Info 27 [16:00:59.000] Open files: -Info 27 [16:01:00.000] FileName: /user/username/projects/myproject/usage/usage.ts ProjectRootPath: undefined -Info 27 [16:01:01.000] Projects: /user/username/projects/myproject/usage/tsconfig.json +Info 27 [00:00:58.000] ----------------------------------------------- +Info 27 [00:00:59.000] Open files: +Info 27 [00:01:00.000] FileName: /user/username/projects/myproject/usage/usage.ts ProjectRootPath: undefined +Info 27 [00:01:01.000] Projects: /user/username/projects/myproject/usage/tsconfig.json After request PolledWatches:: @@ -141,11 +141,11 @@ FsWatchesRecursive:: /user/username/projects/myproject/dependency: {} -Info 27 [16:01:02.000] response: +Info 27 [00:01:02.000] response: { "responseRequired": false } -Info 28 [16:01:03.000] request: +Info 28 [00:01:03.000] request: { "seq": 0, "type": "request", @@ -180,19 +180,19 @@ FsWatchesRecursive:: /user/username/projects/myproject/dependency: {} -Info 29 [16:01:04.000] FileWatcher:: Close:: WatchInfo: /user/username/projects/myproject/dependency/fns.ts 500 undefined WatchType: Closed Script info -Info 30 [16:01:05.000] Search path: /user/username/projects/myproject/dependency -Info 31 [16:01:06.000] For info: /user/username/projects/myproject/dependency/fns.ts :: Config file name: /user/username/projects/myproject/dependency/tsconfig.json -Info 32 [16:01:07.000] Creating configuration project /user/username/projects/myproject/dependency/tsconfig.json -Info 33 [16:01:08.000] Plugins were requested but not running in environment that supports 'require'. Nothing will be loaded -Info 34 [16:01:09.000] Starting updateGraphWorker: Project: /user/username/projects/myproject/dependency/tsconfig.json -Info 35 [16:01:10.000] 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 36 [16:01:11.000] 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 37 [16:01:12.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Type roots -Info 38 [16:01:13.000] 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 39 [16:01:14.000] Finishing updateGraphWorker: Project: /user/username/projects/myproject/dependency/tsconfig.json Version: 1 structureChanged: true structureIsReused:: Not Elapsed:: *ms -Info 40 [16:01:15.000] Project '/user/username/projects/myproject/dependency/tsconfig.json' (Configured) -Info 41 [16:01:16.000] Files (2) +Info 29 [00:01:04.000] FileWatcher:: Close:: WatchInfo: /user/username/projects/myproject/dependency/fns.ts 500 undefined WatchType: Closed Script info +Info 30 [00:01:05.000] Search path: /user/username/projects/myproject/dependency +Info 31 [00:01:06.000] For info: /user/username/projects/myproject/dependency/fns.ts :: Config file name: /user/username/projects/myproject/dependency/tsconfig.json +Info 32 [00:01:07.000] Creating configuration project /user/username/projects/myproject/dependency/tsconfig.json +Info 33 [00:01:08.000] Plugins were requested but not running in environment that supports 'require'. Nothing will be loaded +Info 34 [00:01:09.000] Starting updateGraphWorker: Project: /user/username/projects/myproject/dependency/tsconfig.json +Info 35 [00:01:10.000] 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 36 [00:01:11.000] 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 37 [00:01:12.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Type roots +Info 38 [00:01:13.000] 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 39 [00:01:14.000] Finishing updateGraphWorker: Project: /user/username/projects/myproject/dependency/tsconfig.json Version: 1 structureChanged: true structureIsReused:: Not Elapsed:: *ms +Info 40 [00:01:15.000] Project '/user/username/projects/myproject/dependency/tsconfig.json' (Configured) +Info 41 [00:01:16.000] Files (2) /a/lib/lib.d.ts /user/username/projects/myproject/dependency/fns.ts @@ -202,22 +202,22 @@ Info 41 [16:01:16.000] Files (2) fns.ts Matched by default include pattern '**/*' -Info 42 [16:01:17.000] ----------------------------------------------- -Info 43 [16:01:18.000] Search path: /user/username/projects/myproject/dependency -Info 44 [16:01:19.000] For info: /user/username/projects/myproject/dependency/tsconfig.json :: No config files found. -Info 45 [16:01:20.000] Project '/user/username/projects/myproject/usage/tsconfig.json' (Configured) -Info 45 [16:01:21.000] Files (3) - -Info 45 [16:01:22.000] ----------------------------------------------- -Info 45 [16:01:23.000] Project '/user/username/projects/myproject/dependency/tsconfig.json' (Configured) -Info 45 [16:01:24.000] Files (2) - -Info 45 [16:01:25.000] ----------------------------------------------- -Info 45 [16:01:26.000] Open files: -Info 45 [16:01:27.000] FileName: /user/username/projects/myproject/usage/usage.ts ProjectRootPath: undefined -Info 45 [16:01:28.000] Projects: /user/username/projects/myproject/usage/tsconfig.json -Info 45 [16:01:29.000] FileName: /user/username/projects/myproject/dependency/fns.ts ProjectRootPath: undefined -Info 45 [16:01:30.000] Projects: /user/username/projects/myproject/usage/tsconfig.json,/user/username/projects/myproject/dependency/tsconfig.json +Info 42 [00:01:17.000] ----------------------------------------------- +Info 43 [00:01:18.000] Search path: /user/username/projects/myproject/dependency +Info 44 [00:01:19.000] For info: /user/username/projects/myproject/dependency/tsconfig.json :: No config files found. +Info 45 [00:01:20.000] Project '/user/username/projects/myproject/usage/tsconfig.json' (Configured) +Info 45 [00:01:21.000] Files (3) + +Info 45 [00:01:22.000] ----------------------------------------------- +Info 45 [00:01:23.000] Project '/user/username/projects/myproject/dependency/tsconfig.json' (Configured) +Info 45 [00:01:24.000] Files (2) + +Info 45 [00:01:25.000] ----------------------------------------------- +Info 45 [00:01:26.000] Open files: +Info 45 [00:01:27.000] FileName: /user/username/projects/myproject/usage/usage.ts ProjectRootPath: undefined +Info 45 [00:01:28.000] Projects: /user/username/projects/myproject/usage/tsconfig.json +Info 45 [00:01:29.000] FileName: /user/username/projects/myproject/dependency/fns.ts ProjectRootPath: undefined +Info 45 [00:01:30.000] Projects: /user/username/projects/myproject/usage/tsconfig.json,/user/username/projects/myproject/dependency/tsconfig.json After request PolledWatches:: @@ -244,11 +244,11 @@ FsWatchesRecursive:: /user/username/projects/myproject/dependency: {} -Info 45 [16:01:31.000] response: +Info 45 [00:01:31.000] response: { "responseRequired": false } -Info 46 [16:01:32.000] request: +Info 46 [00:01:32.000] request: { "command": "compileOnSaveAffectedFileList", "arguments": { @@ -283,34 +283,34 @@ FsWatchesRecursive:: /user/username/projects/myproject/dependency: {} -Info 47 [16:01:33.000] Before ensureProjectForOpenFiles: -Info 48 [16:01:34.000] Project '/user/username/projects/myproject/usage/tsconfig.json' (Configured) -Info 48 [16:01:35.000] Files (3) - -Info 48 [16:01:36.000] ----------------------------------------------- -Info 48 [16:01:37.000] Project '/user/username/projects/myproject/dependency/tsconfig.json' (Configured) -Info 48 [16:01:38.000] Files (2) - -Info 48 [16:01:39.000] ----------------------------------------------- -Info 48 [16:01:40.000] Open files: -Info 48 [16:01:41.000] FileName: /user/username/projects/myproject/usage/usage.ts ProjectRootPath: undefined -Info 48 [16:01:42.000] Projects: /user/username/projects/myproject/usage/tsconfig.json -Info 48 [16:01:43.000] FileName: /user/username/projects/myproject/dependency/fns.ts ProjectRootPath: undefined -Info 48 [16:01:44.000] Projects: /user/username/projects/myproject/usage/tsconfig.json,/user/username/projects/myproject/dependency/tsconfig.json -Info 48 [16:01:45.000] After ensureProjectForOpenFiles: -Info 49 [16:01:46.000] Project '/user/username/projects/myproject/usage/tsconfig.json' (Configured) -Info 49 [16:01:47.000] Files (3) - -Info 49 [16:01:48.000] ----------------------------------------------- -Info 49 [16:01:49.000] Project '/user/username/projects/myproject/dependency/tsconfig.json' (Configured) -Info 49 [16:01:50.000] Files (2) - -Info 49 [16:01:51.000] ----------------------------------------------- -Info 49 [16:01:52.000] Open files: -Info 49 [16:01:53.000] FileName: /user/username/projects/myproject/usage/usage.ts ProjectRootPath: undefined -Info 49 [16:01:54.000] Projects: /user/username/projects/myproject/usage/tsconfig.json -Info 49 [16:01:55.000] FileName: /user/username/projects/myproject/dependency/fns.ts ProjectRootPath: undefined -Info 49 [16:01:56.000] Projects: /user/username/projects/myproject/usage/tsconfig.json,/user/username/projects/myproject/dependency/tsconfig.json +Info 47 [00:01:33.000] Before ensureProjectForOpenFiles: +Info 48 [00:01:34.000] Project '/user/username/projects/myproject/usage/tsconfig.json' (Configured) +Info 48 [00:01:35.000] Files (3) + +Info 48 [00:01:36.000] ----------------------------------------------- +Info 48 [00:01:37.000] Project '/user/username/projects/myproject/dependency/tsconfig.json' (Configured) +Info 48 [00:01:38.000] Files (2) + +Info 48 [00:01:39.000] ----------------------------------------------- +Info 48 [00:01:40.000] Open files: +Info 48 [00:01:41.000] FileName: /user/username/projects/myproject/usage/usage.ts ProjectRootPath: undefined +Info 48 [00:01:42.000] Projects: /user/username/projects/myproject/usage/tsconfig.json +Info 48 [00:01:43.000] FileName: /user/username/projects/myproject/dependency/fns.ts ProjectRootPath: undefined +Info 48 [00:01:44.000] Projects: /user/username/projects/myproject/usage/tsconfig.json,/user/username/projects/myproject/dependency/tsconfig.json +Info 48 [00:01:45.000] After ensureProjectForOpenFiles: +Info 49 [00:01:46.000] Project '/user/username/projects/myproject/usage/tsconfig.json' (Configured) +Info 49 [00:01:47.000] Files (3) + +Info 49 [00:01:48.000] ----------------------------------------------- +Info 49 [00:01:49.000] Project '/user/username/projects/myproject/dependency/tsconfig.json' (Configured) +Info 49 [00:01:50.000] Files (2) + +Info 49 [00:01:51.000] ----------------------------------------------- +Info 49 [00:01:52.000] Open files: +Info 49 [00:01:53.000] FileName: /user/username/projects/myproject/usage/usage.ts ProjectRootPath: undefined +Info 49 [00:01:54.000] Projects: /user/username/projects/myproject/usage/tsconfig.json +Info 49 [00:01:55.000] FileName: /user/username/projects/myproject/dependency/fns.ts ProjectRootPath: undefined +Info 49 [00:01:56.000] Projects: /user/username/projects/myproject/usage/tsconfig.json,/user/username/projects/myproject/dependency/tsconfig.json After request PolledWatches:: @@ -337,7 +337,7 @@ FsWatchesRecursive:: /user/username/projects/myproject/dependency: {} -Info 49 [16:01:57.000] response: +Info 49 [00:01:57.000] response: { "response": [ { @@ -357,7 +357,7 @@ Info 49 [16:01:57.000] response: ], "responseRequired": true } -Info 50 [16:01:58.000] request: +Info 50 [00:01:58.000] request: { "command": "change", "arguments": { @@ -423,11 +423,11 @@ FsWatchesRecursive:: /user/username/projects/myproject/dependency: {} -Info 51 [16:01:59.000] response: +Info 51 [00:01:59.000] response: { "responseRequired": false } -Info 52 [16:02:00.000] request: +Info 52 [00:02:00.000] request: { "command": "compileOnSaveAffectedFileList", "arguments": { @@ -489,7 +489,7 @@ FsWatchesRecursive:: /user/username/projects/myproject/dependency: {} -Info 53 [16:02:01.000] response: +Info 53 [00:02:01.000] response: { "response": [ { @@ -502,7 +502,7 @@ Info 53 [16:02:01.000] response: ], "responseRequired": true } -Info 54 [16:02:02.000] request: +Info 54 [00:02:02.000] request: { "command": "compileOnSaveEmitFile", "arguments": { @@ -538,18 +538,18 @@ FsWatchesRecursive:: /user/username/projects/myproject/dependency: {} -Info 55 [16:02:05.000] DirectoryWatcher:: Triggered with /user/username/projects/myproject/dependency/fns.js :: WatchInfo: /user/username/projects/myproject/dependency 1 undefined Config: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Wild card directory -Info 56 [16:02:06.000] Project: /user/username/projects/myproject/dependency/tsconfig.json Detected file add/remove of non supported extension: /user/username/projects/myproject/dependency/fns.js -Info 57 [16:02:07.000] Elapsed:: *ms DirectoryWatcher:: Triggered with /user/username/projects/myproject/dependency/fns.js :: WatchInfo: /user/username/projects/myproject/dependency 1 undefined Config: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Wild card directory -Info 58 [16:02:11.000] DirectoryWatcher:: Triggered with /user/username/projects/myproject/decls :: WatchInfo: /user/username/projects/myproject/decls 1 undefined Project: /user/username/projects/myproject/usage/tsconfig.json WatchType: Failed Lookup Locations -Info 59 [16:02:12.000] Scheduled: /user/username/projects/myproject/usage/tsconfig.jsonFailedLookupInvalidation -Info 60 [16:02:13.000] Elapsed:: *ms DirectoryWatcher:: Triggered with /user/username/projects/myproject/decls :: WatchInfo: /user/username/projects/myproject/decls 1 undefined Project: /user/username/projects/myproject/usage/tsconfig.json WatchType: Failed Lookup Locations -Info 61 [16:02:14.000] DirectoryWatcher:: Triggered with /user/username/projects/myproject/decls :: WatchInfo: /user/username/projects/myproject/decls 1 undefined Project: /user/username/projects/myproject/usage/tsconfig.json WatchType: Failed Lookup Locations -Info 62 [16:02:15.000] Scheduled: /user/username/projects/myproject/usage/tsconfig.jsonFailedLookupInvalidation, Cancelled earlier one -Info 63 [16:02:16.000] Elapsed:: *ms DirectoryWatcher:: Triggered with /user/username/projects/myproject/decls :: WatchInfo: /user/username/projects/myproject/decls 1 undefined Project: /user/username/projects/myproject/usage/tsconfig.json WatchType: Failed Lookup Locations -Info 64 [16:02:19.000] DirectoryWatcher:: Triggered with /user/username/projects/myproject/decls/fns.d.ts :: WatchInfo: /user/username/projects/myproject/decls 1 undefined Project: /user/username/projects/myproject/usage/tsconfig.json WatchType: Failed Lookup Locations -Info 65 [16:02:20.000] Scheduled: /user/username/projects/myproject/usage/tsconfig.jsonFailedLookupInvalidation, Cancelled earlier one -Info 66 [16:02:21.000] Elapsed:: *ms DirectoryWatcher:: Triggered with /user/username/projects/myproject/decls/fns.d.ts :: WatchInfo: /user/username/projects/myproject/decls 1 undefined Project: /user/username/projects/myproject/usage/tsconfig.json WatchType: Failed Lookup Locations +Info 55 [00:02:05.000] DirectoryWatcher:: Triggered with /user/username/projects/myproject/dependency/fns.js :: WatchInfo: /user/username/projects/myproject/dependency 1 undefined Config: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Wild card directory +Info 56 [00:02:06.000] Project: /user/username/projects/myproject/dependency/tsconfig.json Detected file add/remove of non supported extension: /user/username/projects/myproject/dependency/fns.js +Info 57 [00:02:07.000] Elapsed:: *ms DirectoryWatcher:: Triggered with /user/username/projects/myproject/dependency/fns.js :: WatchInfo: /user/username/projects/myproject/dependency 1 undefined Config: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Wild card directory +Info 58 [00:02:11.000] DirectoryWatcher:: Triggered with /user/username/projects/myproject/decls :: WatchInfo: /user/username/projects/myproject/decls 1 undefined Project: /user/username/projects/myproject/usage/tsconfig.json WatchType: Failed Lookup Locations +Info 59 [00:02:12.000] Scheduled: /user/username/projects/myproject/usage/tsconfig.jsonFailedLookupInvalidation +Info 60 [00:02:13.000] Elapsed:: *ms DirectoryWatcher:: Triggered with /user/username/projects/myproject/decls :: WatchInfo: /user/username/projects/myproject/decls 1 undefined Project: /user/username/projects/myproject/usage/tsconfig.json WatchType: Failed Lookup Locations +Info 61 [00:02:14.000] DirectoryWatcher:: Triggered with /user/username/projects/myproject/decls :: WatchInfo: /user/username/projects/myproject/decls 1 undefined Project: /user/username/projects/myproject/usage/tsconfig.json WatchType: Failed Lookup Locations +Info 62 [00:02:15.000] Scheduled: /user/username/projects/myproject/usage/tsconfig.jsonFailedLookupInvalidation, Cancelled earlier one +Info 63 [00:02:16.000] Elapsed:: *ms DirectoryWatcher:: Triggered with /user/username/projects/myproject/decls :: WatchInfo: /user/username/projects/myproject/decls 1 undefined Project: /user/username/projects/myproject/usage/tsconfig.json WatchType: Failed Lookup Locations +Info 64 [00:02:19.000] DirectoryWatcher:: Triggered with /user/username/projects/myproject/decls/fns.d.ts :: WatchInfo: /user/username/projects/myproject/decls 1 undefined Project: /user/username/projects/myproject/usage/tsconfig.json WatchType: Failed Lookup Locations +Info 65 [00:02:20.000] Scheduled: /user/username/projects/myproject/usage/tsconfig.jsonFailedLookupInvalidation, Cancelled earlier one +Info 66 [00:02:21.000] Elapsed:: *ms DirectoryWatcher:: Triggered with /user/username/projects/myproject/decls/fns.d.ts :: WatchInfo: /user/username/projects/myproject/decls 1 undefined Project: /user/username/projects/myproject/usage/tsconfig.json WatchType: Failed Lookup Locations After request //// [/user/username/projects/myproject/dependency/fns.js] "use strict"; @@ -591,12 +591,12 @@ FsWatchesRecursive:: /user/username/projects/myproject/decls: {} -Info 67 [16:02:22.000] response: +Info 67 [00:02:22.000] response: { "response": true, "responseRequired": true } -Info 68 [16:02:23.000] request: +Info 68 [00:02:23.000] request: { "command": "emit-output", "arguments": { @@ -658,7 +658,7 @@ FsWatchesRecursive:: /user/username/projects/myproject/decls: {} -Info 69 [16:02:24.000] response: +Info 69 [00:02:24.000] response: { "response": { "outputFiles": [ 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 418b230d72161..c71bf920f9cc7 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 @@ -1,5 +1,5 @@ -Info 0 [16:00:29.000] Provided types map file "/a/lib/typesMap.json" doesn't exist -Info 1 [16:00:30.000] request: +Info 0 [00:00:29.000] Provided types map file "/a/lib/typesMap.json" doesn't exist +Info 1 [00:00:30.000] request: { "seq": 0, "type": "request", @@ -49,11 +49,11 @@ FsWatches:: FsWatchesRecursive:: -Info 2 [16:00:31.000] Search path: /user/username/projects/myproject/usage -Info 3 [16:00:32.000] For info: /user/username/projects/myproject/usage/usage.ts :: Config file name: /user/username/projects/myproject/usage/tsconfig.json -Info 4 [16:00:33.000] Creating configuration project /user/username/projects/myproject/usage/tsconfig.json -Info 5 [16:00:34.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/usage/tsconfig.json 2000 undefined Project: /user/username/projects/myproject/usage/tsconfig.json WatchType: Config file -Info 6 [16:00:35.000] Config: /user/username/projects/myproject/usage/tsconfig.json : { +Info 2 [00:00:31.000] Search path: /user/username/projects/myproject/usage +Info 3 [00:00:32.000] For info: /user/username/projects/myproject/usage/usage.ts :: Config file name: /user/username/projects/myproject/usage/tsconfig.json +Info 4 [00:00:33.000] Creating configuration project /user/username/projects/myproject/usage/tsconfig.json +Info 5 [00:00:34.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/usage/tsconfig.json 2000 undefined Project: /user/username/projects/myproject/usage/tsconfig.json WatchType: Config file +Info 6 [00:00:35.000] Config: /user/username/projects/myproject/usage/tsconfig.json : { "rootNames": [ "/user/username/projects/myproject/usage/usage.ts" ], @@ -67,11 +67,11 @@ Info 6 [16:00:35.000] Config: /user/username/projects/myproject/usage/tsconfi } ] } -Info 7 [16:00:36.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/usage 1 undefined Config: /user/username/projects/myproject/usage/tsconfig.json WatchType: Wild card directory -Info 8 [16:00:37.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/usage 1 undefined Config: /user/username/projects/myproject/usage/tsconfig.json WatchType: Wild card directory -Info 9 [16:00:38.000] Plugins were requested but not running in environment that supports 'require'. Nothing will be loaded -Info 10 [16:00:39.000] Starting updateGraphWorker: Project: /user/username/projects/myproject/usage/tsconfig.json -Info 11 [16:00:40.000] Config: /user/username/projects/myproject/dependency/tsconfig.json : { +Info 7 [00:00:36.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/usage 1 undefined Config: /user/username/projects/myproject/usage/tsconfig.json WatchType: Wild card directory +Info 8 [00:00:37.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/usage 1 undefined Config: /user/username/projects/myproject/usage/tsconfig.json WatchType: Wild card directory +Info 9 [00:00:38.000] Plugins were requested but not running in environment that supports 'require'. Nothing will be loaded +Info 10 [00:00:39.000] Starting updateGraphWorker: Project: /user/username/projects/myproject/usage/tsconfig.json +Info 11 [00:00:40.000] Config: /user/username/projects/myproject/dependency/tsconfig.json : { "rootNames": [ "/user/username/projects/myproject/dependency/fns.ts" ], @@ -81,20 +81,20 @@ Info 11 [16:00:40.000] Config: /user/username/projects/myproject/dependency/ts "configFilePath": "/user/username/projects/myproject/dependency/tsconfig.json" } } -Info 12 [16:00:41.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/dependency/tsconfig.json 2000 undefined Project: /user/username/projects/myproject/usage/tsconfig.json WatchType: Config file -Info 13 [16:00:42.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/dependency 1 undefined Config: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Wild card directory -Info 14 [16:00:43.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/dependency 1 undefined Config: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Wild card directory -Info 15 [16:00:44.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/decls 1 undefined Project: /user/username/projects/myproject/usage/tsconfig.json WatchType: Failed Lookup Locations -Info 16 [16:00:45.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/decls 1 undefined Project: /user/username/projects/myproject/usage/tsconfig.json WatchType: Failed Lookup Locations -Info 17 [16:00:46.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/dependency/fns.ts 500 undefined WatchType: Closed Script info -Info 18 [16:00:47.000] FileWatcher:: Added:: WatchInfo: /a/lib/lib.d.ts 500 undefined WatchType: Closed Script info -Info 19 [16:00:48.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/usage/node_modules/@types 1 undefined Project: /user/username/projects/myproject/usage/tsconfig.json WatchType: Type roots -Info 20 [16:00:49.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/usage/node_modules/@types 1 undefined Project: /user/username/projects/myproject/usage/tsconfig.json WatchType: Type roots -Info 21 [16:00:50.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/usage/tsconfig.json WatchType: Type roots -Info 22 [16:00:51.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/usage/tsconfig.json WatchType: Type roots -Info 23 [16:00:52.000] Finishing updateGraphWorker: Project: /user/username/projects/myproject/usage/tsconfig.json Version: 1 structureChanged: true structureIsReused:: Not Elapsed:: *ms -Info 24 [16:00:53.000] Project '/user/username/projects/myproject/usage/tsconfig.json' (Configured) -Info 25 [16:00:54.000] Files (3) +Info 12 [00:00:41.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/dependency/tsconfig.json 2000 undefined Project: /user/username/projects/myproject/usage/tsconfig.json WatchType: Config file +Info 13 [00:00:42.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/dependency 1 undefined Config: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Wild card directory +Info 14 [00:00:43.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/dependency 1 undefined Config: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Wild card directory +Info 15 [00:00:44.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/decls 1 undefined Project: /user/username/projects/myproject/usage/tsconfig.json WatchType: Failed Lookup Locations +Info 16 [00:00:45.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/decls 1 undefined Project: /user/username/projects/myproject/usage/tsconfig.json WatchType: Failed Lookup Locations +Info 17 [00:00:46.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/dependency/fns.ts 500 undefined WatchType: Closed Script info +Info 18 [00:00:47.000] FileWatcher:: Added:: WatchInfo: /a/lib/lib.d.ts 500 undefined WatchType: Closed Script info +Info 19 [00:00:48.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/usage/node_modules/@types 1 undefined Project: /user/username/projects/myproject/usage/tsconfig.json WatchType: Type roots +Info 20 [00:00:49.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/usage/node_modules/@types 1 undefined Project: /user/username/projects/myproject/usage/tsconfig.json WatchType: Type roots +Info 21 [00:00:50.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/usage/tsconfig.json WatchType: Type roots +Info 22 [00:00:51.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/usage/tsconfig.json WatchType: Type roots +Info 23 [00:00:52.000] Finishing updateGraphWorker: Project: /user/username/projects/myproject/usage/tsconfig.json Version: 1 structureChanged: true structureIsReused:: Not Elapsed:: *ms +Info 24 [00:00:53.000] Project '/user/username/projects/myproject/usage/tsconfig.json' (Configured) +Info 25 [00:00:54.000] Files (3) /a/lib/lib.d.ts /user/username/projects/myproject/dependency/fns.ts /user/username/projects/myproject/usage/usage.ts @@ -107,14 +107,14 @@ Info 25 [16:00:54.000] Files (3) usage.ts Matched by default include pattern '**/*' -Info 26 [16:00:55.000] ----------------------------------------------- -Info 27 [16:00:56.000] Project '/user/username/projects/myproject/usage/tsconfig.json' (Configured) -Info 27 [16:00:57.000] Files (3) +Info 26 [00:00:55.000] ----------------------------------------------- +Info 27 [00:00:56.000] Project '/user/username/projects/myproject/usage/tsconfig.json' (Configured) +Info 27 [00:00:57.000] Files (3) -Info 27 [16:00:58.000] ----------------------------------------------- -Info 27 [16:00:59.000] Open files: -Info 27 [16:01:00.000] FileName: /user/username/projects/myproject/usage/usage.ts ProjectRootPath: undefined -Info 27 [16:01:01.000] Projects: /user/username/projects/myproject/usage/tsconfig.json +Info 27 [00:00:58.000] ----------------------------------------------- +Info 27 [00:00:59.000] Open files: +Info 27 [00:01:00.000] FileName: /user/username/projects/myproject/usage/usage.ts ProjectRootPath: undefined +Info 27 [00:01:01.000] Projects: /user/username/projects/myproject/usage/tsconfig.json After request PolledWatches:: @@ -141,11 +141,11 @@ FsWatchesRecursive:: /user/username/projects/myproject/dependency: {} -Info 27 [16:01:02.000] response: +Info 27 [00:01:02.000] response: { "responseRequired": false } -Info 28 [16:01:03.000] request: +Info 28 [00:01:03.000] request: { "seq": 0, "type": "request", @@ -180,19 +180,19 @@ FsWatchesRecursive:: /user/username/projects/myproject/dependency: {} -Info 29 [16:01:04.000] FileWatcher:: Close:: WatchInfo: /user/username/projects/myproject/dependency/fns.ts 500 undefined WatchType: Closed Script info -Info 30 [16:01:05.000] Search path: /user/username/projects/myproject/dependency -Info 31 [16:01:06.000] For info: /user/username/projects/myproject/dependency/fns.ts :: Config file name: /user/username/projects/myproject/dependency/tsconfig.json -Info 32 [16:01:07.000] Creating configuration project /user/username/projects/myproject/dependency/tsconfig.json -Info 33 [16:01:08.000] Plugins were requested but not running in environment that supports 'require'. Nothing will be loaded -Info 34 [16:01:09.000] Starting updateGraphWorker: Project: /user/username/projects/myproject/dependency/tsconfig.json -Info 35 [16:01:10.000] 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 36 [16:01:11.000] 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 37 [16:01:12.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Type roots -Info 38 [16:01:13.000] 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 39 [16:01:14.000] Finishing updateGraphWorker: Project: /user/username/projects/myproject/dependency/tsconfig.json Version: 1 structureChanged: true structureIsReused:: Not Elapsed:: *ms -Info 40 [16:01:15.000] Project '/user/username/projects/myproject/dependency/tsconfig.json' (Configured) -Info 41 [16:01:16.000] Files (2) +Info 29 [00:01:04.000] FileWatcher:: Close:: WatchInfo: /user/username/projects/myproject/dependency/fns.ts 500 undefined WatchType: Closed Script info +Info 30 [00:01:05.000] Search path: /user/username/projects/myproject/dependency +Info 31 [00:01:06.000] For info: /user/username/projects/myproject/dependency/fns.ts :: Config file name: /user/username/projects/myproject/dependency/tsconfig.json +Info 32 [00:01:07.000] Creating configuration project /user/username/projects/myproject/dependency/tsconfig.json +Info 33 [00:01:08.000] Plugins were requested but not running in environment that supports 'require'. Nothing will be loaded +Info 34 [00:01:09.000] Starting updateGraphWorker: Project: /user/username/projects/myproject/dependency/tsconfig.json +Info 35 [00:01:10.000] 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 36 [00:01:11.000] 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 37 [00:01:12.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Type roots +Info 38 [00:01:13.000] 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 39 [00:01:14.000] Finishing updateGraphWorker: Project: /user/username/projects/myproject/dependency/tsconfig.json Version: 1 structureChanged: true structureIsReused:: Not Elapsed:: *ms +Info 40 [00:01:15.000] Project '/user/username/projects/myproject/dependency/tsconfig.json' (Configured) +Info 41 [00:01:16.000] Files (2) /a/lib/lib.d.ts /user/username/projects/myproject/dependency/fns.ts @@ -202,22 +202,22 @@ Info 41 [16:01:16.000] Files (2) fns.ts Matched by default include pattern '**/*' -Info 42 [16:01:17.000] ----------------------------------------------- -Info 43 [16:01:18.000] Search path: /user/username/projects/myproject/dependency -Info 44 [16:01:19.000] For info: /user/username/projects/myproject/dependency/tsconfig.json :: No config files found. -Info 45 [16:01:20.000] Project '/user/username/projects/myproject/usage/tsconfig.json' (Configured) -Info 45 [16:01:21.000] Files (3) - -Info 45 [16:01:22.000] ----------------------------------------------- -Info 45 [16:01:23.000] Project '/user/username/projects/myproject/dependency/tsconfig.json' (Configured) -Info 45 [16:01:24.000] Files (2) - -Info 45 [16:01:25.000] ----------------------------------------------- -Info 45 [16:01:26.000] Open files: -Info 45 [16:01:27.000] FileName: /user/username/projects/myproject/usage/usage.ts ProjectRootPath: undefined -Info 45 [16:01:28.000] Projects: /user/username/projects/myproject/usage/tsconfig.json -Info 45 [16:01:29.000] FileName: /user/username/projects/myproject/dependency/fns.ts ProjectRootPath: undefined -Info 45 [16:01:30.000] Projects: /user/username/projects/myproject/usage/tsconfig.json,/user/username/projects/myproject/dependency/tsconfig.json +Info 42 [00:01:17.000] ----------------------------------------------- +Info 43 [00:01:18.000] Search path: /user/username/projects/myproject/dependency +Info 44 [00:01:19.000] For info: /user/username/projects/myproject/dependency/tsconfig.json :: No config files found. +Info 45 [00:01:20.000] Project '/user/username/projects/myproject/usage/tsconfig.json' (Configured) +Info 45 [00:01:21.000] Files (3) + +Info 45 [00:01:22.000] ----------------------------------------------- +Info 45 [00:01:23.000] Project '/user/username/projects/myproject/dependency/tsconfig.json' (Configured) +Info 45 [00:01:24.000] Files (2) + +Info 45 [00:01:25.000] ----------------------------------------------- +Info 45 [00:01:26.000] Open files: +Info 45 [00:01:27.000] FileName: /user/username/projects/myproject/usage/usage.ts ProjectRootPath: undefined +Info 45 [00:01:28.000] Projects: /user/username/projects/myproject/usage/tsconfig.json +Info 45 [00:01:29.000] FileName: /user/username/projects/myproject/dependency/fns.ts ProjectRootPath: undefined +Info 45 [00:01:30.000] Projects: /user/username/projects/myproject/usage/tsconfig.json,/user/username/projects/myproject/dependency/tsconfig.json After request PolledWatches:: @@ -244,11 +244,11 @@ FsWatchesRecursive:: /user/username/projects/myproject/dependency: {} -Info 45 [16:01:31.000] response: +Info 45 [00:01:31.000] response: { "responseRequired": false } -Info 46 [16:01:32.000] request: +Info 46 [00:01:32.000] request: { "command": "compileOnSaveAffectedFileList", "arguments": { @@ -310,7 +310,7 @@ FsWatchesRecursive:: /user/username/projects/myproject/dependency: {} -Info 47 [16:01:33.000] response: +Info 47 [00:01:33.000] response: { "response": [ { @@ -323,7 +323,7 @@ Info 47 [16:01:33.000] response: ], "responseRequired": true } -Info 48 [16:01:34.000] request: +Info 48 [00:01:34.000] request: { "command": "compileOnSaveEmitFile", "arguments": { @@ -359,18 +359,18 @@ FsWatchesRecursive:: /user/username/projects/myproject/dependency: {} -Info 49 [16:01:37.000] DirectoryWatcher:: Triggered with /user/username/projects/myproject/dependency/fns.js :: WatchInfo: /user/username/projects/myproject/dependency 1 undefined Config: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Wild card directory -Info 50 [16:01:38.000] Project: /user/username/projects/myproject/dependency/tsconfig.json Detected file add/remove of non supported extension: /user/username/projects/myproject/dependency/fns.js -Info 51 [16:01:39.000] Elapsed:: *ms DirectoryWatcher:: Triggered with /user/username/projects/myproject/dependency/fns.js :: WatchInfo: /user/username/projects/myproject/dependency 1 undefined Config: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Wild card directory -Info 52 [16:01:43.000] DirectoryWatcher:: Triggered with /user/username/projects/myproject/decls :: WatchInfo: /user/username/projects/myproject/decls 1 undefined Project: /user/username/projects/myproject/usage/tsconfig.json WatchType: Failed Lookup Locations -Info 53 [16:01:44.000] Scheduled: /user/username/projects/myproject/usage/tsconfig.jsonFailedLookupInvalidation -Info 54 [16:01:45.000] Elapsed:: *ms DirectoryWatcher:: Triggered with /user/username/projects/myproject/decls :: WatchInfo: /user/username/projects/myproject/decls 1 undefined Project: /user/username/projects/myproject/usage/tsconfig.json WatchType: Failed Lookup Locations -Info 55 [16:01:46.000] DirectoryWatcher:: Triggered with /user/username/projects/myproject/decls :: WatchInfo: /user/username/projects/myproject/decls 1 undefined Project: /user/username/projects/myproject/usage/tsconfig.json WatchType: Failed Lookup Locations -Info 56 [16:01:47.000] Scheduled: /user/username/projects/myproject/usage/tsconfig.jsonFailedLookupInvalidation, Cancelled earlier one -Info 57 [16:01:48.000] Elapsed:: *ms DirectoryWatcher:: Triggered with /user/username/projects/myproject/decls :: WatchInfo: /user/username/projects/myproject/decls 1 undefined Project: /user/username/projects/myproject/usage/tsconfig.json WatchType: Failed Lookup Locations -Info 58 [16:01:51.000] DirectoryWatcher:: Triggered with /user/username/projects/myproject/decls/fns.d.ts :: WatchInfo: /user/username/projects/myproject/decls 1 undefined Project: /user/username/projects/myproject/usage/tsconfig.json WatchType: Failed Lookup Locations -Info 59 [16:01:52.000] Scheduled: /user/username/projects/myproject/usage/tsconfig.jsonFailedLookupInvalidation, Cancelled earlier one -Info 60 [16:01:53.000] Elapsed:: *ms DirectoryWatcher:: Triggered with /user/username/projects/myproject/decls/fns.d.ts :: WatchInfo: /user/username/projects/myproject/decls 1 undefined Project: /user/username/projects/myproject/usage/tsconfig.json WatchType: Failed Lookup Locations +Info 49 [00:01:37.000] DirectoryWatcher:: Triggered with /user/username/projects/myproject/dependency/fns.js :: WatchInfo: /user/username/projects/myproject/dependency 1 undefined Config: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Wild card directory +Info 50 [00:01:38.000] Project: /user/username/projects/myproject/dependency/tsconfig.json Detected file add/remove of non supported extension: /user/username/projects/myproject/dependency/fns.js +Info 51 [00:01:39.000] Elapsed:: *ms DirectoryWatcher:: Triggered with /user/username/projects/myproject/dependency/fns.js :: WatchInfo: /user/username/projects/myproject/dependency 1 undefined Config: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Wild card directory +Info 52 [00:01:43.000] DirectoryWatcher:: Triggered with /user/username/projects/myproject/decls :: WatchInfo: /user/username/projects/myproject/decls 1 undefined Project: /user/username/projects/myproject/usage/tsconfig.json WatchType: Failed Lookup Locations +Info 53 [00:01:44.000] Scheduled: /user/username/projects/myproject/usage/tsconfig.jsonFailedLookupInvalidation +Info 54 [00:01:45.000] Elapsed:: *ms DirectoryWatcher:: Triggered with /user/username/projects/myproject/decls :: WatchInfo: /user/username/projects/myproject/decls 1 undefined Project: /user/username/projects/myproject/usage/tsconfig.json WatchType: Failed Lookup Locations +Info 55 [00:01:46.000] DirectoryWatcher:: Triggered with /user/username/projects/myproject/decls :: WatchInfo: /user/username/projects/myproject/decls 1 undefined Project: /user/username/projects/myproject/usage/tsconfig.json WatchType: Failed Lookup Locations +Info 56 [00:01:47.000] Scheduled: /user/username/projects/myproject/usage/tsconfig.jsonFailedLookupInvalidation, Cancelled earlier one +Info 57 [00:01:48.000] Elapsed:: *ms DirectoryWatcher:: Triggered with /user/username/projects/myproject/decls :: WatchInfo: /user/username/projects/myproject/decls 1 undefined Project: /user/username/projects/myproject/usage/tsconfig.json WatchType: Failed Lookup Locations +Info 58 [00:01:51.000] DirectoryWatcher:: Triggered with /user/username/projects/myproject/decls/fns.d.ts :: WatchInfo: /user/username/projects/myproject/decls 1 undefined Project: /user/username/projects/myproject/usage/tsconfig.json WatchType: Failed Lookup Locations +Info 59 [00:01:52.000] Scheduled: /user/username/projects/myproject/usage/tsconfig.jsonFailedLookupInvalidation, Cancelled earlier one +Info 60 [00:01:53.000] Elapsed:: *ms DirectoryWatcher:: Triggered with /user/username/projects/myproject/decls/fns.d.ts :: WatchInfo: /user/username/projects/myproject/decls 1 undefined Project: /user/username/projects/myproject/usage/tsconfig.json WatchType: Failed Lookup Locations After request //// [/user/username/projects/myproject/dependency/fns.js] "use strict"; @@ -412,12 +412,12 @@ FsWatchesRecursive:: /user/username/projects/myproject/decls: {} -Info 61 [16:01:54.000] response: +Info 61 [00:01:54.000] response: { "response": true, "responseRequired": true } -Info 62 [16:01:55.000] request: +Info 62 [00:01:55.000] request: { "command": "emit-output", "arguments": { @@ -479,7 +479,7 @@ FsWatchesRecursive:: /user/username/projects/myproject/decls: {} -Info 63 [16:01:56.000] response: +Info 63 [00:01:56.000] response: { "response": { "outputFiles": [ 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 14d73dec929a0..0d73712f3f8ea 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 @@ -1,5 +1,5 @@ -Info 0 [16:00:29.000] Provided types map file "/a/lib/typesMap.json" doesn't exist -Info 1 [16:00:30.000] request: +Info 0 [00:00:29.000] Provided types map file "/a/lib/typesMap.json" doesn't exist +Info 1 [00:00:30.000] request: { "seq": 0, "type": "request", @@ -49,11 +49,11 @@ FsWatches:: FsWatchesRecursive:: -Info 2 [16:00:31.000] Search path: /user/username/projects/myproject/usage -Info 3 [16:00:32.000] For info: /user/username/projects/myproject/usage/usage.ts :: Config file name: /user/username/projects/myproject/usage/tsconfig.json -Info 4 [16:00:33.000] Creating configuration project /user/username/projects/myproject/usage/tsconfig.json -Info 5 [16:00:34.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/usage/tsconfig.json 2000 undefined Project: /user/username/projects/myproject/usage/tsconfig.json WatchType: Config file -Info 6 [16:00:35.000] Config: /user/username/projects/myproject/usage/tsconfig.json : { +Info 2 [00:00:31.000] Search path: /user/username/projects/myproject/usage +Info 3 [00:00:32.000] For info: /user/username/projects/myproject/usage/usage.ts :: Config file name: /user/username/projects/myproject/usage/tsconfig.json +Info 4 [00:00:33.000] Creating configuration project /user/username/projects/myproject/usage/tsconfig.json +Info 5 [00:00:34.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/usage/tsconfig.json 2000 undefined Project: /user/username/projects/myproject/usage/tsconfig.json WatchType: Config file +Info 6 [00:00:35.000] Config: /user/username/projects/myproject/usage/tsconfig.json : { "rootNames": [ "/user/username/projects/myproject/usage/usage.ts" ], @@ -67,11 +67,11 @@ Info 6 [16:00:35.000] Config: /user/username/projects/myproject/usage/tsconfi } ] } -Info 7 [16:00:36.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/usage 1 undefined Config: /user/username/projects/myproject/usage/tsconfig.json WatchType: Wild card directory -Info 8 [16:00:37.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/usage 1 undefined Config: /user/username/projects/myproject/usage/tsconfig.json WatchType: Wild card directory -Info 9 [16:00:38.000] Plugins were requested but not running in environment that supports 'require'. Nothing will be loaded -Info 10 [16:00:39.000] Starting updateGraphWorker: Project: /user/username/projects/myproject/usage/tsconfig.json -Info 11 [16:00:40.000] Config: /user/username/projects/myproject/dependency/tsconfig.json : { +Info 7 [00:00:36.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/usage 1 undefined Config: /user/username/projects/myproject/usage/tsconfig.json WatchType: Wild card directory +Info 8 [00:00:37.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/usage 1 undefined Config: /user/username/projects/myproject/usage/tsconfig.json WatchType: Wild card directory +Info 9 [00:00:38.000] Plugins were requested but not running in environment that supports 'require'. Nothing will be loaded +Info 10 [00:00:39.000] Starting updateGraphWorker: Project: /user/username/projects/myproject/usage/tsconfig.json +Info 11 [00:00:40.000] Config: /user/username/projects/myproject/dependency/tsconfig.json : { "rootNames": [ "/user/username/projects/myproject/dependency/fns.ts" ], @@ -81,20 +81,20 @@ Info 11 [16:00:40.000] Config: /user/username/projects/myproject/dependency/ts "configFilePath": "/user/username/projects/myproject/dependency/tsconfig.json" } } -Info 12 [16:00:41.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/dependency/tsconfig.json 2000 undefined Project: /user/username/projects/myproject/usage/tsconfig.json WatchType: Config file -Info 13 [16:00:42.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/dependency 1 undefined Config: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Wild card directory -Info 14 [16:00:43.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/dependency 1 undefined Config: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Wild card directory -Info 15 [16:00:44.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/decls 1 undefined Project: /user/username/projects/myproject/usage/tsconfig.json WatchType: Failed Lookup Locations -Info 16 [16:00:45.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/decls 1 undefined Project: /user/username/projects/myproject/usage/tsconfig.json WatchType: Failed Lookup Locations -Info 17 [16:00:46.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/dependency/fns.ts 500 undefined WatchType: Closed Script info -Info 18 [16:00:47.000] FileWatcher:: Added:: WatchInfo: /a/lib/lib.d.ts 500 undefined WatchType: Closed Script info -Info 19 [16:00:48.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/usage/node_modules/@types 1 undefined Project: /user/username/projects/myproject/usage/tsconfig.json WatchType: Type roots -Info 20 [16:00:49.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/usage/node_modules/@types 1 undefined Project: /user/username/projects/myproject/usage/tsconfig.json WatchType: Type roots -Info 21 [16:00:50.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/usage/tsconfig.json WatchType: Type roots -Info 22 [16:00:51.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/usage/tsconfig.json WatchType: Type roots -Info 23 [16:00:52.000] Finishing updateGraphWorker: Project: /user/username/projects/myproject/usage/tsconfig.json Version: 1 structureChanged: true structureIsReused:: Not Elapsed:: *ms -Info 24 [16:00:53.000] Project '/user/username/projects/myproject/usage/tsconfig.json' (Configured) -Info 25 [16:00:54.000] Files (3) +Info 12 [00:00:41.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/dependency/tsconfig.json 2000 undefined Project: /user/username/projects/myproject/usage/tsconfig.json WatchType: Config file +Info 13 [00:00:42.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/dependency 1 undefined Config: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Wild card directory +Info 14 [00:00:43.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/dependency 1 undefined Config: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Wild card directory +Info 15 [00:00:44.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/decls 1 undefined Project: /user/username/projects/myproject/usage/tsconfig.json WatchType: Failed Lookup Locations +Info 16 [00:00:45.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/decls 1 undefined Project: /user/username/projects/myproject/usage/tsconfig.json WatchType: Failed Lookup Locations +Info 17 [00:00:46.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/dependency/fns.ts 500 undefined WatchType: Closed Script info +Info 18 [00:00:47.000] FileWatcher:: Added:: WatchInfo: /a/lib/lib.d.ts 500 undefined WatchType: Closed Script info +Info 19 [00:00:48.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/usage/node_modules/@types 1 undefined Project: /user/username/projects/myproject/usage/tsconfig.json WatchType: Type roots +Info 20 [00:00:49.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/usage/node_modules/@types 1 undefined Project: /user/username/projects/myproject/usage/tsconfig.json WatchType: Type roots +Info 21 [00:00:50.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/usage/tsconfig.json WatchType: Type roots +Info 22 [00:00:51.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/usage/tsconfig.json WatchType: Type roots +Info 23 [00:00:52.000] Finishing updateGraphWorker: Project: /user/username/projects/myproject/usage/tsconfig.json Version: 1 structureChanged: true structureIsReused:: Not Elapsed:: *ms +Info 24 [00:00:53.000] Project '/user/username/projects/myproject/usage/tsconfig.json' (Configured) +Info 25 [00:00:54.000] Files (3) /a/lib/lib.d.ts /user/username/projects/myproject/dependency/fns.ts /user/username/projects/myproject/usage/usage.ts @@ -107,14 +107,14 @@ Info 25 [16:00:54.000] Files (3) usage.ts Matched by default include pattern '**/*' -Info 26 [16:00:55.000] ----------------------------------------------- -Info 27 [16:00:56.000] Project '/user/username/projects/myproject/usage/tsconfig.json' (Configured) -Info 27 [16:00:57.000] Files (3) +Info 26 [00:00:55.000] ----------------------------------------------- +Info 27 [00:00:56.000] Project '/user/username/projects/myproject/usage/tsconfig.json' (Configured) +Info 27 [00:00:57.000] Files (3) -Info 27 [16:00:58.000] ----------------------------------------------- -Info 27 [16:00:59.000] Open files: -Info 27 [16:01:00.000] FileName: /user/username/projects/myproject/usage/usage.ts ProjectRootPath: undefined -Info 27 [16:01:01.000] Projects: /user/username/projects/myproject/usage/tsconfig.json +Info 27 [00:00:58.000] ----------------------------------------------- +Info 27 [00:00:59.000] Open files: +Info 27 [00:01:00.000] FileName: /user/username/projects/myproject/usage/usage.ts ProjectRootPath: undefined +Info 27 [00:01:01.000] Projects: /user/username/projects/myproject/usage/tsconfig.json After request PolledWatches:: @@ -141,11 +141,11 @@ FsWatchesRecursive:: /user/username/projects/myproject/dependency: {} -Info 27 [16:01:02.000] response: +Info 27 [00:01:02.000] response: { "responseRequired": false } -Info 28 [16:01:03.000] request: +Info 28 [00:01:03.000] request: { "seq": 0, "type": "request", @@ -180,19 +180,19 @@ FsWatchesRecursive:: /user/username/projects/myproject/dependency: {} -Info 29 [16:01:04.000] FileWatcher:: Close:: WatchInfo: /user/username/projects/myproject/dependency/fns.ts 500 undefined WatchType: Closed Script info -Info 30 [16:01:05.000] Search path: /user/username/projects/myproject/dependency -Info 31 [16:01:06.000] For info: /user/username/projects/myproject/dependency/fns.ts :: Config file name: /user/username/projects/myproject/dependency/tsconfig.json -Info 32 [16:01:07.000] Creating configuration project /user/username/projects/myproject/dependency/tsconfig.json -Info 33 [16:01:08.000] Plugins were requested but not running in environment that supports 'require'. Nothing will be loaded -Info 34 [16:01:09.000] Starting updateGraphWorker: Project: /user/username/projects/myproject/dependency/tsconfig.json -Info 35 [16:01:10.000] 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 36 [16:01:11.000] 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 37 [16:01:12.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Type roots -Info 38 [16:01:13.000] 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 39 [16:01:14.000] Finishing updateGraphWorker: Project: /user/username/projects/myproject/dependency/tsconfig.json Version: 1 structureChanged: true structureIsReused:: Not Elapsed:: *ms -Info 40 [16:01:15.000] Project '/user/username/projects/myproject/dependency/tsconfig.json' (Configured) -Info 41 [16:01:16.000] Files (2) +Info 29 [00:01:04.000] FileWatcher:: Close:: WatchInfo: /user/username/projects/myproject/dependency/fns.ts 500 undefined WatchType: Closed Script info +Info 30 [00:01:05.000] Search path: /user/username/projects/myproject/dependency +Info 31 [00:01:06.000] For info: /user/username/projects/myproject/dependency/fns.ts :: Config file name: /user/username/projects/myproject/dependency/tsconfig.json +Info 32 [00:01:07.000] Creating configuration project /user/username/projects/myproject/dependency/tsconfig.json +Info 33 [00:01:08.000] Plugins were requested but not running in environment that supports 'require'. Nothing will be loaded +Info 34 [00:01:09.000] Starting updateGraphWorker: Project: /user/username/projects/myproject/dependency/tsconfig.json +Info 35 [00:01:10.000] 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 36 [00:01:11.000] 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 37 [00:01:12.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Type roots +Info 38 [00:01:13.000] 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 39 [00:01:14.000] Finishing updateGraphWorker: Project: /user/username/projects/myproject/dependency/tsconfig.json Version: 1 structureChanged: true structureIsReused:: Not Elapsed:: *ms +Info 40 [00:01:15.000] Project '/user/username/projects/myproject/dependency/tsconfig.json' (Configured) +Info 41 [00:01:16.000] Files (2) /a/lib/lib.d.ts /user/username/projects/myproject/dependency/fns.ts @@ -202,22 +202,22 @@ Info 41 [16:01:16.000] Files (2) fns.ts Matched by default include pattern '**/*' -Info 42 [16:01:17.000] ----------------------------------------------- -Info 43 [16:01:18.000] Search path: /user/username/projects/myproject/dependency -Info 44 [16:01:19.000] For info: /user/username/projects/myproject/dependency/tsconfig.json :: No config files found. -Info 45 [16:01:20.000] Project '/user/username/projects/myproject/usage/tsconfig.json' (Configured) -Info 45 [16:01:21.000] Files (3) - -Info 45 [16:01:22.000] ----------------------------------------------- -Info 45 [16:01:23.000] Project '/user/username/projects/myproject/dependency/tsconfig.json' (Configured) -Info 45 [16:01:24.000] Files (2) - -Info 45 [16:01:25.000] ----------------------------------------------- -Info 45 [16:01:26.000] Open files: -Info 45 [16:01:27.000] FileName: /user/username/projects/myproject/usage/usage.ts ProjectRootPath: undefined -Info 45 [16:01:28.000] Projects: /user/username/projects/myproject/usage/tsconfig.json -Info 45 [16:01:29.000] FileName: /user/username/projects/myproject/dependency/fns.ts ProjectRootPath: undefined -Info 45 [16:01:30.000] Projects: /user/username/projects/myproject/usage/tsconfig.json,/user/username/projects/myproject/dependency/tsconfig.json +Info 42 [00:01:17.000] ----------------------------------------------- +Info 43 [00:01:18.000] Search path: /user/username/projects/myproject/dependency +Info 44 [00:01:19.000] For info: /user/username/projects/myproject/dependency/tsconfig.json :: No config files found. +Info 45 [00:01:20.000] Project '/user/username/projects/myproject/usage/tsconfig.json' (Configured) +Info 45 [00:01:21.000] Files (3) + +Info 45 [00:01:22.000] ----------------------------------------------- +Info 45 [00:01:23.000] Project '/user/username/projects/myproject/dependency/tsconfig.json' (Configured) +Info 45 [00:01:24.000] Files (2) + +Info 45 [00:01:25.000] ----------------------------------------------- +Info 45 [00:01:26.000] Open files: +Info 45 [00:01:27.000] FileName: /user/username/projects/myproject/usage/usage.ts ProjectRootPath: undefined +Info 45 [00:01:28.000] Projects: /user/username/projects/myproject/usage/tsconfig.json +Info 45 [00:01:29.000] FileName: /user/username/projects/myproject/dependency/fns.ts ProjectRootPath: undefined +Info 45 [00:01:30.000] Projects: /user/username/projects/myproject/usage/tsconfig.json,/user/username/projects/myproject/dependency/tsconfig.json After request PolledWatches:: @@ -244,11 +244,11 @@ FsWatchesRecursive:: /user/username/projects/myproject/dependency: {} -Info 45 [16:01:31.000] response: +Info 45 [00:01:31.000] response: { "responseRequired": false } -Info 46 [16:01:32.000] request: +Info 46 [00:01:32.000] request: { "command": "compileOnSaveAffectedFileList", "arguments": { @@ -283,34 +283,34 @@ FsWatchesRecursive:: /user/username/projects/myproject/dependency: {} -Info 47 [16:01:33.000] Before ensureProjectForOpenFiles: -Info 48 [16:01:34.000] Project '/user/username/projects/myproject/usage/tsconfig.json' (Configured) -Info 48 [16:01:35.000] Files (3) - -Info 48 [16:01:36.000] ----------------------------------------------- -Info 48 [16:01:37.000] Project '/user/username/projects/myproject/dependency/tsconfig.json' (Configured) -Info 48 [16:01:38.000] Files (2) - -Info 48 [16:01:39.000] ----------------------------------------------- -Info 48 [16:01:40.000] Open files: -Info 48 [16:01:41.000] FileName: /user/username/projects/myproject/usage/usage.ts ProjectRootPath: undefined -Info 48 [16:01:42.000] Projects: /user/username/projects/myproject/usage/tsconfig.json -Info 48 [16:01:43.000] FileName: /user/username/projects/myproject/dependency/fns.ts ProjectRootPath: undefined -Info 48 [16:01:44.000] Projects: /user/username/projects/myproject/usage/tsconfig.json,/user/username/projects/myproject/dependency/tsconfig.json -Info 48 [16:01:45.000] After ensureProjectForOpenFiles: -Info 49 [16:01:46.000] Project '/user/username/projects/myproject/usage/tsconfig.json' (Configured) -Info 49 [16:01:47.000] Files (3) - -Info 49 [16:01:48.000] ----------------------------------------------- -Info 49 [16:01:49.000] Project '/user/username/projects/myproject/dependency/tsconfig.json' (Configured) -Info 49 [16:01:50.000] Files (2) - -Info 49 [16:01:51.000] ----------------------------------------------- -Info 49 [16:01:52.000] Open files: -Info 49 [16:01:53.000] FileName: /user/username/projects/myproject/usage/usage.ts ProjectRootPath: undefined -Info 49 [16:01:54.000] Projects: /user/username/projects/myproject/usage/tsconfig.json -Info 49 [16:01:55.000] FileName: /user/username/projects/myproject/dependency/fns.ts ProjectRootPath: undefined -Info 49 [16:01:56.000] Projects: /user/username/projects/myproject/usage/tsconfig.json,/user/username/projects/myproject/dependency/tsconfig.json +Info 47 [00:01:33.000] Before ensureProjectForOpenFiles: +Info 48 [00:01:34.000] Project '/user/username/projects/myproject/usage/tsconfig.json' (Configured) +Info 48 [00:01:35.000] Files (3) + +Info 48 [00:01:36.000] ----------------------------------------------- +Info 48 [00:01:37.000] Project '/user/username/projects/myproject/dependency/tsconfig.json' (Configured) +Info 48 [00:01:38.000] Files (2) + +Info 48 [00:01:39.000] ----------------------------------------------- +Info 48 [00:01:40.000] Open files: +Info 48 [00:01:41.000] FileName: /user/username/projects/myproject/usage/usage.ts ProjectRootPath: undefined +Info 48 [00:01:42.000] Projects: /user/username/projects/myproject/usage/tsconfig.json +Info 48 [00:01:43.000] FileName: /user/username/projects/myproject/dependency/fns.ts ProjectRootPath: undefined +Info 48 [00:01:44.000] Projects: /user/username/projects/myproject/usage/tsconfig.json,/user/username/projects/myproject/dependency/tsconfig.json +Info 48 [00:01:45.000] After ensureProjectForOpenFiles: +Info 49 [00:01:46.000] Project '/user/username/projects/myproject/usage/tsconfig.json' (Configured) +Info 49 [00:01:47.000] Files (3) + +Info 49 [00:01:48.000] ----------------------------------------------- +Info 49 [00:01:49.000] Project '/user/username/projects/myproject/dependency/tsconfig.json' (Configured) +Info 49 [00:01:50.000] Files (2) + +Info 49 [00:01:51.000] ----------------------------------------------- +Info 49 [00:01:52.000] Open files: +Info 49 [00:01:53.000] FileName: /user/username/projects/myproject/usage/usage.ts ProjectRootPath: undefined +Info 49 [00:01:54.000] Projects: /user/username/projects/myproject/usage/tsconfig.json +Info 49 [00:01:55.000] FileName: /user/username/projects/myproject/dependency/fns.ts ProjectRootPath: undefined +Info 49 [00:01:56.000] Projects: /user/username/projects/myproject/usage/tsconfig.json,/user/username/projects/myproject/dependency/tsconfig.json After request PolledWatches:: @@ -337,7 +337,7 @@ FsWatchesRecursive:: /user/username/projects/myproject/dependency: {} -Info 49 [16:01:57.000] response: +Info 49 [00:01:57.000] response: { "response": [ { @@ -357,7 +357,7 @@ Info 49 [16:01:57.000] response: ], "responseRequired": true } -Info 50 [16:01:58.000] request: +Info 50 [00:01:58.000] request: { "command": "change", "arguments": { @@ -423,11 +423,11 @@ FsWatchesRecursive:: /user/username/projects/myproject/dependency: {} -Info 51 [16:01:59.000] response: +Info 51 [00:01:59.000] response: { "responseRequired": false } -Info 52 [16:02:00.000] request: +Info 52 [00:02:00.000] request: { "command": "compileOnSaveAffectedFileList", "arguments": { @@ -463,9 +463,9 @@ FsWatchesRecursive:: /user/username/projects/myproject/dependency: {} -Info 53 [16:02:01.000] Starting updateGraphWorker: Project: /user/username/projects/myproject/usage/tsconfig.json -Info 54 [16:02:02.000] Finishing updateGraphWorker: Project: /user/username/projects/myproject/usage/tsconfig.json Version: 2 structureChanged: false structureIsReused:: Completely Elapsed:: *ms -Info 55 [16:02:03.000] Different program with same set of files +Info 53 [00:02:01.000] Starting updateGraphWorker: Project: /user/username/projects/myproject/usage/tsconfig.json +Info 54 [00:02:02.000] Finishing updateGraphWorker: Project: /user/username/projects/myproject/usage/tsconfig.json Version: 2 structureChanged: false structureIsReused:: Completely Elapsed:: *ms +Info 55 [00:02:03.000] Different program with same set of files After request PolledWatches:: @@ -492,7 +492,7 @@ FsWatchesRecursive:: /user/username/projects/myproject/dependency: {} -Info 56 [16:02:04.000] response: +Info 56 [00:02:04.000] response: { "response": [ { @@ -505,7 +505,7 @@ Info 56 [16:02:04.000] response: ], "responseRequired": true } -Info 57 [16:02:05.000] request: +Info 57 [00:02:05.000] request: { "command": "compileOnSaveEmitFile", "arguments": { @@ -567,12 +567,12 @@ FsWatchesRecursive:: /user/username/projects/myproject/dependency: {} -Info 58 [16:02:06.000] response: +Info 58 [00:02:06.000] response: { "response": false, "responseRequired": true } -Info 59 [16:02:07.000] request: +Info 59 [00:02:07.000] request: { "command": "emit-output", "arguments": { @@ -634,7 +634,7 @@ FsWatchesRecursive:: /user/username/projects/myproject/dependency: {} -Info 60 [16:02:08.000] response: +Info 60 [00:02:08.000] response: { "response": { "emitSkipped": true, 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 44c21dead51af..3e24ae045c911 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 @@ -1,5 +1,5 @@ -Info 0 [16:00:29.000] Provided types map file "/a/lib/typesMap.json" doesn't exist -Info 1 [16:00:30.000] request: +Info 0 [00:00:29.000] Provided types map file "/a/lib/typesMap.json" doesn't exist +Info 1 [00:00:30.000] request: { "seq": 0, "type": "request", @@ -49,11 +49,11 @@ FsWatches:: FsWatchesRecursive:: -Info 2 [16:00:31.000] Search path: /user/username/projects/myproject/usage -Info 3 [16:00:32.000] For info: /user/username/projects/myproject/usage/usage.ts :: Config file name: /user/username/projects/myproject/usage/tsconfig.json -Info 4 [16:00:33.000] Creating configuration project /user/username/projects/myproject/usage/tsconfig.json -Info 5 [16:00:34.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/usage/tsconfig.json 2000 undefined Project: /user/username/projects/myproject/usage/tsconfig.json WatchType: Config file -Info 6 [16:00:35.000] Config: /user/username/projects/myproject/usage/tsconfig.json : { +Info 2 [00:00:31.000] Search path: /user/username/projects/myproject/usage +Info 3 [00:00:32.000] For info: /user/username/projects/myproject/usage/usage.ts :: Config file name: /user/username/projects/myproject/usage/tsconfig.json +Info 4 [00:00:33.000] Creating configuration project /user/username/projects/myproject/usage/tsconfig.json +Info 5 [00:00:34.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/usage/tsconfig.json 2000 undefined Project: /user/username/projects/myproject/usage/tsconfig.json WatchType: Config file +Info 6 [00:00:35.000] Config: /user/username/projects/myproject/usage/tsconfig.json : { "rootNames": [ "/user/username/projects/myproject/usage/usage.ts" ], @@ -67,11 +67,11 @@ Info 6 [16:00:35.000] Config: /user/username/projects/myproject/usage/tsconfi } ] } -Info 7 [16:00:36.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/usage 1 undefined Config: /user/username/projects/myproject/usage/tsconfig.json WatchType: Wild card directory -Info 8 [16:00:37.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/usage 1 undefined Config: /user/username/projects/myproject/usage/tsconfig.json WatchType: Wild card directory -Info 9 [16:00:38.000] Plugins were requested but not running in environment that supports 'require'. Nothing will be loaded -Info 10 [16:00:39.000] Starting updateGraphWorker: Project: /user/username/projects/myproject/usage/tsconfig.json -Info 11 [16:00:40.000] Config: /user/username/projects/myproject/dependency/tsconfig.json : { +Info 7 [00:00:36.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/usage 1 undefined Config: /user/username/projects/myproject/usage/tsconfig.json WatchType: Wild card directory +Info 8 [00:00:37.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/usage 1 undefined Config: /user/username/projects/myproject/usage/tsconfig.json WatchType: Wild card directory +Info 9 [00:00:38.000] Plugins were requested but not running in environment that supports 'require'. Nothing will be loaded +Info 10 [00:00:39.000] Starting updateGraphWorker: Project: /user/username/projects/myproject/usage/tsconfig.json +Info 11 [00:00:40.000] Config: /user/username/projects/myproject/dependency/tsconfig.json : { "rootNames": [ "/user/username/projects/myproject/dependency/fns.ts" ], @@ -81,20 +81,20 @@ Info 11 [16:00:40.000] Config: /user/username/projects/myproject/dependency/ts "configFilePath": "/user/username/projects/myproject/dependency/tsconfig.json" } } -Info 12 [16:00:41.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/dependency/tsconfig.json 2000 undefined Project: /user/username/projects/myproject/usage/tsconfig.json WatchType: Config file -Info 13 [16:00:42.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/dependency 1 undefined Config: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Wild card directory -Info 14 [16:00:43.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/dependency 1 undefined Config: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Wild card directory -Info 15 [16:00:44.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/decls 1 undefined Project: /user/username/projects/myproject/usage/tsconfig.json WatchType: Failed Lookup Locations -Info 16 [16:00:45.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/decls 1 undefined Project: /user/username/projects/myproject/usage/tsconfig.json WatchType: Failed Lookup Locations -Info 17 [16:00:46.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/dependency/fns.ts 500 undefined WatchType: Closed Script info -Info 18 [16:00:47.000] FileWatcher:: Added:: WatchInfo: /a/lib/lib.d.ts 500 undefined WatchType: Closed Script info -Info 19 [16:00:48.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/usage/node_modules/@types 1 undefined Project: /user/username/projects/myproject/usage/tsconfig.json WatchType: Type roots -Info 20 [16:00:49.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/usage/node_modules/@types 1 undefined Project: /user/username/projects/myproject/usage/tsconfig.json WatchType: Type roots -Info 21 [16:00:50.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/usage/tsconfig.json WatchType: Type roots -Info 22 [16:00:51.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/usage/tsconfig.json WatchType: Type roots -Info 23 [16:00:52.000] Finishing updateGraphWorker: Project: /user/username/projects/myproject/usage/tsconfig.json Version: 1 structureChanged: true structureIsReused:: Not Elapsed:: *ms -Info 24 [16:00:53.000] Project '/user/username/projects/myproject/usage/tsconfig.json' (Configured) -Info 25 [16:00:54.000] Files (3) +Info 12 [00:00:41.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/dependency/tsconfig.json 2000 undefined Project: /user/username/projects/myproject/usage/tsconfig.json WatchType: Config file +Info 13 [00:00:42.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/dependency 1 undefined Config: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Wild card directory +Info 14 [00:00:43.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/dependency 1 undefined Config: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Wild card directory +Info 15 [00:00:44.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/decls 1 undefined Project: /user/username/projects/myproject/usage/tsconfig.json WatchType: Failed Lookup Locations +Info 16 [00:00:45.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/decls 1 undefined Project: /user/username/projects/myproject/usage/tsconfig.json WatchType: Failed Lookup Locations +Info 17 [00:00:46.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/dependency/fns.ts 500 undefined WatchType: Closed Script info +Info 18 [00:00:47.000] FileWatcher:: Added:: WatchInfo: /a/lib/lib.d.ts 500 undefined WatchType: Closed Script info +Info 19 [00:00:48.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/usage/node_modules/@types 1 undefined Project: /user/username/projects/myproject/usage/tsconfig.json WatchType: Type roots +Info 20 [00:00:49.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/usage/node_modules/@types 1 undefined Project: /user/username/projects/myproject/usage/tsconfig.json WatchType: Type roots +Info 21 [00:00:50.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/usage/tsconfig.json WatchType: Type roots +Info 22 [00:00:51.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/usage/tsconfig.json WatchType: Type roots +Info 23 [00:00:52.000] Finishing updateGraphWorker: Project: /user/username/projects/myproject/usage/tsconfig.json Version: 1 structureChanged: true structureIsReused:: Not Elapsed:: *ms +Info 24 [00:00:53.000] Project '/user/username/projects/myproject/usage/tsconfig.json' (Configured) +Info 25 [00:00:54.000] Files (3) /a/lib/lib.d.ts /user/username/projects/myproject/dependency/fns.ts /user/username/projects/myproject/usage/usage.ts @@ -107,14 +107,14 @@ Info 25 [16:00:54.000] Files (3) usage.ts Matched by default include pattern '**/*' -Info 26 [16:00:55.000] ----------------------------------------------- -Info 27 [16:00:56.000] Project '/user/username/projects/myproject/usage/tsconfig.json' (Configured) -Info 27 [16:00:57.000] Files (3) +Info 26 [00:00:55.000] ----------------------------------------------- +Info 27 [00:00:56.000] Project '/user/username/projects/myproject/usage/tsconfig.json' (Configured) +Info 27 [00:00:57.000] Files (3) -Info 27 [16:00:58.000] ----------------------------------------------- -Info 27 [16:00:59.000] Open files: -Info 27 [16:01:00.000] FileName: /user/username/projects/myproject/usage/usage.ts ProjectRootPath: undefined -Info 27 [16:01:01.000] Projects: /user/username/projects/myproject/usage/tsconfig.json +Info 27 [00:00:58.000] ----------------------------------------------- +Info 27 [00:00:59.000] Open files: +Info 27 [00:01:00.000] FileName: /user/username/projects/myproject/usage/usage.ts ProjectRootPath: undefined +Info 27 [00:01:01.000] Projects: /user/username/projects/myproject/usage/tsconfig.json After request PolledWatches:: @@ -141,11 +141,11 @@ FsWatchesRecursive:: /user/username/projects/myproject/dependency: {} -Info 27 [16:01:02.000] response: +Info 27 [00:01:02.000] response: { "responseRequired": false } -Info 28 [16:01:03.000] request: +Info 28 [00:01:03.000] request: { "seq": 0, "type": "request", @@ -180,19 +180,19 @@ FsWatchesRecursive:: /user/username/projects/myproject/dependency: {} -Info 29 [16:01:04.000] FileWatcher:: Close:: WatchInfo: /user/username/projects/myproject/dependency/fns.ts 500 undefined WatchType: Closed Script info -Info 30 [16:01:05.000] Search path: /user/username/projects/myproject/dependency -Info 31 [16:01:06.000] For info: /user/username/projects/myproject/dependency/fns.ts :: Config file name: /user/username/projects/myproject/dependency/tsconfig.json -Info 32 [16:01:07.000] Creating configuration project /user/username/projects/myproject/dependency/tsconfig.json -Info 33 [16:01:08.000] Plugins were requested but not running in environment that supports 'require'. Nothing will be loaded -Info 34 [16:01:09.000] Starting updateGraphWorker: Project: /user/username/projects/myproject/dependency/tsconfig.json -Info 35 [16:01:10.000] 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 36 [16:01:11.000] 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 37 [16:01:12.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Type roots -Info 38 [16:01:13.000] 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 39 [16:01:14.000] Finishing updateGraphWorker: Project: /user/username/projects/myproject/dependency/tsconfig.json Version: 1 structureChanged: true structureIsReused:: Not Elapsed:: *ms -Info 40 [16:01:15.000] Project '/user/username/projects/myproject/dependency/tsconfig.json' (Configured) -Info 41 [16:01:16.000] Files (2) +Info 29 [00:01:04.000] FileWatcher:: Close:: WatchInfo: /user/username/projects/myproject/dependency/fns.ts 500 undefined WatchType: Closed Script info +Info 30 [00:01:05.000] Search path: /user/username/projects/myproject/dependency +Info 31 [00:01:06.000] For info: /user/username/projects/myproject/dependency/fns.ts :: Config file name: /user/username/projects/myproject/dependency/tsconfig.json +Info 32 [00:01:07.000] Creating configuration project /user/username/projects/myproject/dependency/tsconfig.json +Info 33 [00:01:08.000] Plugins were requested but not running in environment that supports 'require'. Nothing will be loaded +Info 34 [00:01:09.000] Starting updateGraphWorker: Project: /user/username/projects/myproject/dependency/tsconfig.json +Info 35 [00:01:10.000] 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 36 [00:01:11.000] 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 37 [00:01:12.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Type roots +Info 38 [00:01:13.000] 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 39 [00:01:14.000] Finishing updateGraphWorker: Project: /user/username/projects/myproject/dependency/tsconfig.json Version: 1 structureChanged: true structureIsReused:: Not Elapsed:: *ms +Info 40 [00:01:15.000] Project '/user/username/projects/myproject/dependency/tsconfig.json' (Configured) +Info 41 [00:01:16.000] Files (2) /a/lib/lib.d.ts /user/username/projects/myproject/dependency/fns.ts @@ -202,22 +202,22 @@ Info 41 [16:01:16.000] Files (2) fns.ts Matched by default include pattern '**/*' -Info 42 [16:01:17.000] ----------------------------------------------- -Info 43 [16:01:18.000] Search path: /user/username/projects/myproject/dependency -Info 44 [16:01:19.000] For info: /user/username/projects/myproject/dependency/tsconfig.json :: No config files found. -Info 45 [16:01:20.000] Project '/user/username/projects/myproject/usage/tsconfig.json' (Configured) -Info 45 [16:01:21.000] Files (3) - -Info 45 [16:01:22.000] ----------------------------------------------- -Info 45 [16:01:23.000] Project '/user/username/projects/myproject/dependency/tsconfig.json' (Configured) -Info 45 [16:01:24.000] Files (2) - -Info 45 [16:01:25.000] ----------------------------------------------- -Info 45 [16:01:26.000] Open files: -Info 45 [16:01:27.000] FileName: /user/username/projects/myproject/usage/usage.ts ProjectRootPath: undefined -Info 45 [16:01:28.000] Projects: /user/username/projects/myproject/usage/tsconfig.json -Info 45 [16:01:29.000] FileName: /user/username/projects/myproject/dependency/fns.ts ProjectRootPath: undefined -Info 45 [16:01:30.000] Projects: /user/username/projects/myproject/usage/tsconfig.json,/user/username/projects/myproject/dependency/tsconfig.json +Info 42 [00:01:17.000] ----------------------------------------------- +Info 43 [00:01:18.000] Search path: /user/username/projects/myproject/dependency +Info 44 [00:01:19.000] For info: /user/username/projects/myproject/dependency/tsconfig.json :: No config files found. +Info 45 [00:01:20.000] Project '/user/username/projects/myproject/usage/tsconfig.json' (Configured) +Info 45 [00:01:21.000] Files (3) + +Info 45 [00:01:22.000] ----------------------------------------------- +Info 45 [00:01:23.000] Project '/user/username/projects/myproject/dependency/tsconfig.json' (Configured) +Info 45 [00:01:24.000] Files (2) + +Info 45 [00:01:25.000] ----------------------------------------------- +Info 45 [00:01:26.000] Open files: +Info 45 [00:01:27.000] FileName: /user/username/projects/myproject/usage/usage.ts ProjectRootPath: undefined +Info 45 [00:01:28.000] Projects: /user/username/projects/myproject/usage/tsconfig.json +Info 45 [00:01:29.000] FileName: /user/username/projects/myproject/dependency/fns.ts ProjectRootPath: undefined +Info 45 [00:01:30.000] Projects: /user/username/projects/myproject/usage/tsconfig.json,/user/username/projects/myproject/dependency/tsconfig.json After request PolledWatches:: @@ -244,11 +244,11 @@ FsWatchesRecursive:: /user/username/projects/myproject/dependency: {} -Info 45 [16:01:31.000] response: +Info 45 [00:01:31.000] response: { "responseRequired": false } -Info 46 [16:01:32.000] request: +Info 46 [00:01:32.000] request: { "command": "compileOnSaveAffectedFileList", "arguments": { @@ -283,34 +283,34 @@ FsWatchesRecursive:: /user/username/projects/myproject/dependency: {} -Info 47 [16:01:33.000] Before ensureProjectForOpenFiles: -Info 48 [16:01:34.000] Project '/user/username/projects/myproject/usage/tsconfig.json' (Configured) -Info 48 [16:01:35.000] Files (3) - -Info 48 [16:01:36.000] ----------------------------------------------- -Info 48 [16:01:37.000] Project '/user/username/projects/myproject/dependency/tsconfig.json' (Configured) -Info 48 [16:01:38.000] Files (2) - -Info 48 [16:01:39.000] ----------------------------------------------- -Info 48 [16:01:40.000] Open files: -Info 48 [16:01:41.000] FileName: /user/username/projects/myproject/usage/usage.ts ProjectRootPath: undefined -Info 48 [16:01:42.000] Projects: /user/username/projects/myproject/usage/tsconfig.json -Info 48 [16:01:43.000] FileName: /user/username/projects/myproject/dependency/fns.ts ProjectRootPath: undefined -Info 48 [16:01:44.000] Projects: /user/username/projects/myproject/usage/tsconfig.json,/user/username/projects/myproject/dependency/tsconfig.json -Info 48 [16:01:45.000] After ensureProjectForOpenFiles: -Info 49 [16:01:46.000] Project '/user/username/projects/myproject/usage/tsconfig.json' (Configured) -Info 49 [16:01:47.000] Files (3) - -Info 49 [16:01:48.000] ----------------------------------------------- -Info 49 [16:01:49.000] Project '/user/username/projects/myproject/dependency/tsconfig.json' (Configured) -Info 49 [16:01:50.000] Files (2) - -Info 49 [16:01:51.000] ----------------------------------------------- -Info 49 [16:01:52.000] Open files: -Info 49 [16:01:53.000] FileName: /user/username/projects/myproject/usage/usage.ts ProjectRootPath: undefined -Info 49 [16:01:54.000] Projects: /user/username/projects/myproject/usage/tsconfig.json -Info 49 [16:01:55.000] FileName: /user/username/projects/myproject/dependency/fns.ts ProjectRootPath: undefined -Info 49 [16:01:56.000] Projects: /user/username/projects/myproject/usage/tsconfig.json,/user/username/projects/myproject/dependency/tsconfig.json +Info 47 [00:01:33.000] Before ensureProjectForOpenFiles: +Info 48 [00:01:34.000] Project '/user/username/projects/myproject/usage/tsconfig.json' (Configured) +Info 48 [00:01:35.000] Files (3) + +Info 48 [00:01:36.000] ----------------------------------------------- +Info 48 [00:01:37.000] Project '/user/username/projects/myproject/dependency/tsconfig.json' (Configured) +Info 48 [00:01:38.000] Files (2) + +Info 48 [00:01:39.000] ----------------------------------------------- +Info 48 [00:01:40.000] Open files: +Info 48 [00:01:41.000] FileName: /user/username/projects/myproject/usage/usage.ts ProjectRootPath: undefined +Info 48 [00:01:42.000] Projects: /user/username/projects/myproject/usage/tsconfig.json +Info 48 [00:01:43.000] FileName: /user/username/projects/myproject/dependency/fns.ts ProjectRootPath: undefined +Info 48 [00:01:44.000] Projects: /user/username/projects/myproject/usage/tsconfig.json,/user/username/projects/myproject/dependency/tsconfig.json +Info 48 [00:01:45.000] After ensureProjectForOpenFiles: +Info 49 [00:01:46.000] Project '/user/username/projects/myproject/usage/tsconfig.json' (Configured) +Info 49 [00:01:47.000] Files (3) + +Info 49 [00:01:48.000] ----------------------------------------------- +Info 49 [00:01:49.000] Project '/user/username/projects/myproject/dependency/tsconfig.json' (Configured) +Info 49 [00:01:50.000] Files (2) + +Info 49 [00:01:51.000] ----------------------------------------------- +Info 49 [00:01:52.000] Open files: +Info 49 [00:01:53.000] FileName: /user/username/projects/myproject/usage/usage.ts ProjectRootPath: undefined +Info 49 [00:01:54.000] Projects: /user/username/projects/myproject/usage/tsconfig.json +Info 49 [00:01:55.000] FileName: /user/username/projects/myproject/dependency/fns.ts ProjectRootPath: undefined +Info 49 [00:01:56.000] Projects: /user/username/projects/myproject/usage/tsconfig.json,/user/username/projects/myproject/dependency/tsconfig.json After request PolledWatches:: @@ -337,7 +337,7 @@ FsWatchesRecursive:: /user/username/projects/myproject/dependency: {} -Info 49 [16:01:57.000] response: +Info 49 [00:01:57.000] response: { "response": [ { @@ -357,7 +357,7 @@ Info 49 [16:01:57.000] response: ], "responseRequired": true } -Info 50 [16:01:58.000] request: +Info 50 [00:01:58.000] request: { "command": "change", "arguments": { @@ -423,11 +423,11 @@ FsWatchesRecursive:: /user/username/projects/myproject/dependency: {} -Info 51 [16:01:59.000] response: +Info 51 [00:01:59.000] response: { "responseRequired": false } -Info 52 [16:02:00.000] request: +Info 52 [00:02:00.000] request: { "command": "compileOnSaveAffectedFileList", "arguments": { @@ -463,9 +463,9 @@ FsWatchesRecursive:: /user/username/projects/myproject/dependency: {} -Info 53 [16:02:01.000] Starting updateGraphWorker: Project: /user/username/projects/myproject/usage/tsconfig.json -Info 54 [16:02:02.000] Finishing updateGraphWorker: Project: /user/username/projects/myproject/usage/tsconfig.json Version: 2 structureChanged: false structureIsReused:: Completely Elapsed:: *ms -Info 55 [16:02:03.000] Different program with same set of files +Info 53 [00:02:01.000] Starting updateGraphWorker: Project: /user/username/projects/myproject/usage/tsconfig.json +Info 54 [00:02:02.000] Finishing updateGraphWorker: Project: /user/username/projects/myproject/usage/tsconfig.json Version: 2 structureChanged: false structureIsReused:: Completely Elapsed:: *ms +Info 55 [00:02:03.000] Different program with same set of files After request PolledWatches:: @@ -492,7 +492,7 @@ FsWatchesRecursive:: /user/username/projects/myproject/dependency: {} -Info 56 [16:02:04.000] response: +Info 56 [00:02:04.000] response: { "response": [ { @@ -503,7 +503,7 @@ Info 56 [16:02:04.000] response: ], "responseRequired": true } -Info 57 [16:02:05.000] request: +Info 57 [00:02:05.000] request: { "command": "compileOnSaveEmitFile", "arguments": { @@ -565,12 +565,12 @@ FsWatchesRecursive:: /user/username/projects/myproject/dependency: {} -Info 58 [16:02:06.000] response: +Info 58 [00:02:06.000] response: { "response": false, "responseRequired": true } -Info 59 [16:02:07.000] request: +Info 59 [00:02:07.000] request: { "command": "emit-output", "arguments": { @@ -632,7 +632,7 @@ FsWatchesRecursive:: /user/username/projects/myproject/dependency: {} -Info 60 [16:02:08.000] response: +Info 60 [00:02:08.000] response: { "response": { "emitSkipped": true, 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 1f9499dcc2636..e9292543a6134 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 @@ -1,5 +1,5 @@ -Info 0 [16:00:29.000] Provided types map file "/a/lib/typesMap.json" doesn't exist -Info 1 [16:00:30.000] request: +Info 0 [00:00:29.000] Provided types map file "/a/lib/typesMap.json" doesn't exist +Info 1 [00:00:30.000] request: { "seq": 0, "type": "request", @@ -49,11 +49,11 @@ FsWatches:: FsWatchesRecursive:: -Info 2 [16:00:31.000] Search path: /user/username/projects/myproject/usage -Info 3 [16:00:32.000] For info: /user/username/projects/myproject/usage/usage.ts :: Config file name: /user/username/projects/myproject/usage/tsconfig.json -Info 4 [16:00:33.000] Creating configuration project /user/username/projects/myproject/usage/tsconfig.json -Info 5 [16:00:34.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/usage/tsconfig.json 2000 undefined Project: /user/username/projects/myproject/usage/tsconfig.json WatchType: Config file -Info 6 [16:00:35.000] Config: /user/username/projects/myproject/usage/tsconfig.json : { +Info 2 [00:00:31.000] Search path: /user/username/projects/myproject/usage +Info 3 [00:00:32.000] For info: /user/username/projects/myproject/usage/usage.ts :: Config file name: /user/username/projects/myproject/usage/tsconfig.json +Info 4 [00:00:33.000] Creating configuration project /user/username/projects/myproject/usage/tsconfig.json +Info 5 [00:00:34.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/usage/tsconfig.json 2000 undefined Project: /user/username/projects/myproject/usage/tsconfig.json WatchType: Config file +Info 6 [00:00:35.000] Config: /user/username/projects/myproject/usage/tsconfig.json : { "rootNames": [ "/user/username/projects/myproject/usage/usage.ts" ], @@ -67,11 +67,11 @@ Info 6 [16:00:35.000] Config: /user/username/projects/myproject/usage/tsconfi } ] } -Info 7 [16:00:36.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/usage 1 undefined Config: /user/username/projects/myproject/usage/tsconfig.json WatchType: Wild card directory -Info 8 [16:00:37.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/usage 1 undefined Config: /user/username/projects/myproject/usage/tsconfig.json WatchType: Wild card directory -Info 9 [16:00:38.000] Plugins were requested but not running in environment that supports 'require'. Nothing will be loaded -Info 10 [16:00:39.000] Starting updateGraphWorker: Project: /user/username/projects/myproject/usage/tsconfig.json -Info 11 [16:00:40.000] Config: /user/username/projects/myproject/dependency/tsconfig.json : { +Info 7 [00:00:36.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/usage 1 undefined Config: /user/username/projects/myproject/usage/tsconfig.json WatchType: Wild card directory +Info 8 [00:00:37.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/usage 1 undefined Config: /user/username/projects/myproject/usage/tsconfig.json WatchType: Wild card directory +Info 9 [00:00:38.000] Plugins were requested but not running in environment that supports 'require'. Nothing will be loaded +Info 10 [00:00:39.000] Starting updateGraphWorker: Project: /user/username/projects/myproject/usage/tsconfig.json +Info 11 [00:00:40.000] Config: /user/username/projects/myproject/dependency/tsconfig.json : { "rootNames": [ "/user/username/projects/myproject/dependency/fns.ts" ], @@ -81,20 +81,20 @@ Info 11 [16:00:40.000] Config: /user/username/projects/myproject/dependency/ts "configFilePath": "/user/username/projects/myproject/dependency/tsconfig.json" } } -Info 12 [16:00:41.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/dependency/tsconfig.json 2000 undefined Project: /user/username/projects/myproject/usage/tsconfig.json WatchType: Config file -Info 13 [16:00:42.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/dependency 1 undefined Config: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Wild card directory -Info 14 [16:00:43.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/dependency 1 undefined Config: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Wild card directory -Info 15 [16:00:44.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/decls 1 undefined Project: /user/username/projects/myproject/usage/tsconfig.json WatchType: Failed Lookup Locations -Info 16 [16:00:45.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/decls 1 undefined Project: /user/username/projects/myproject/usage/tsconfig.json WatchType: Failed Lookup Locations -Info 17 [16:00:46.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/dependency/fns.ts 500 undefined WatchType: Closed Script info -Info 18 [16:00:47.000] FileWatcher:: Added:: WatchInfo: /a/lib/lib.d.ts 500 undefined WatchType: Closed Script info -Info 19 [16:00:48.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/usage/node_modules/@types 1 undefined Project: /user/username/projects/myproject/usage/tsconfig.json WatchType: Type roots -Info 20 [16:00:49.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/usage/node_modules/@types 1 undefined Project: /user/username/projects/myproject/usage/tsconfig.json WatchType: Type roots -Info 21 [16:00:50.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/usage/tsconfig.json WatchType: Type roots -Info 22 [16:00:51.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/usage/tsconfig.json WatchType: Type roots -Info 23 [16:00:52.000] Finishing updateGraphWorker: Project: /user/username/projects/myproject/usage/tsconfig.json Version: 1 structureChanged: true structureIsReused:: Not Elapsed:: *ms -Info 24 [16:00:53.000] Project '/user/username/projects/myproject/usage/tsconfig.json' (Configured) -Info 25 [16:00:54.000] Files (3) +Info 12 [00:00:41.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/dependency/tsconfig.json 2000 undefined Project: /user/username/projects/myproject/usage/tsconfig.json WatchType: Config file +Info 13 [00:00:42.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/dependency 1 undefined Config: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Wild card directory +Info 14 [00:00:43.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/dependency 1 undefined Config: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Wild card directory +Info 15 [00:00:44.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/decls 1 undefined Project: /user/username/projects/myproject/usage/tsconfig.json WatchType: Failed Lookup Locations +Info 16 [00:00:45.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/decls 1 undefined Project: /user/username/projects/myproject/usage/tsconfig.json WatchType: Failed Lookup Locations +Info 17 [00:00:46.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/dependency/fns.ts 500 undefined WatchType: Closed Script info +Info 18 [00:00:47.000] FileWatcher:: Added:: WatchInfo: /a/lib/lib.d.ts 500 undefined WatchType: Closed Script info +Info 19 [00:00:48.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/usage/node_modules/@types 1 undefined Project: /user/username/projects/myproject/usage/tsconfig.json WatchType: Type roots +Info 20 [00:00:49.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/usage/node_modules/@types 1 undefined Project: /user/username/projects/myproject/usage/tsconfig.json WatchType: Type roots +Info 21 [00:00:50.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/usage/tsconfig.json WatchType: Type roots +Info 22 [00:00:51.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/usage/tsconfig.json WatchType: Type roots +Info 23 [00:00:52.000] Finishing updateGraphWorker: Project: /user/username/projects/myproject/usage/tsconfig.json Version: 1 structureChanged: true structureIsReused:: Not Elapsed:: *ms +Info 24 [00:00:53.000] Project '/user/username/projects/myproject/usage/tsconfig.json' (Configured) +Info 25 [00:00:54.000] Files (3) /a/lib/lib.d.ts /user/username/projects/myproject/dependency/fns.ts /user/username/projects/myproject/usage/usage.ts @@ -107,14 +107,14 @@ Info 25 [16:00:54.000] Files (3) usage.ts Matched by default include pattern '**/*' -Info 26 [16:00:55.000] ----------------------------------------------- -Info 27 [16:00:56.000] Project '/user/username/projects/myproject/usage/tsconfig.json' (Configured) -Info 27 [16:00:57.000] Files (3) +Info 26 [00:00:55.000] ----------------------------------------------- +Info 27 [00:00:56.000] Project '/user/username/projects/myproject/usage/tsconfig.json' (Configured) +Info 27 [00:00:57.000] Files (3) -Info 27 [16:00:58.000] ----------------------------------------------- -Info 27 [16:00:59.000] Open files: -Info 27 [16:01:00.000] FileName: /user/username/projects/myproject/usage/usage.ts ProjectRootPath: undefined -Info 27 [16:01:01.000] Projects: /user/username/projects/myproject/usage/tsconfig.json +Info 27 [00:00:58.000] ----------------------------------------------- +Info 27 [00:00:59.000] Open files: +Info 27 [00:01:00.000] FileName: /user/username/projects/myproject/usage/usage.ts ProjectRootPath: undefined +Info 27 [00:01:01.000] Projects: /user/username/projects/myproject/usage/tsconfig.json After request PolledWatches:: @@ -141,11 +141,11 @@ FsWatchesRecursive:: /user/username/projects/myproject/dependency: {} -Info 27 [16:01:02.000] response: +Info 27 [00:01:02.000] response: { "responseRequired": false } -Info 28 [16:01:03.000] request: +Info 28 [00:01:03.000] request: { "seq": 0, "type": "request", @@ -180,19 +180,19 @@ FsWatchesRecursive:: /user/username/projects/myproject/dependency: {} -Info 29 [16:01:04.000] FileWatcher:: Close:: WatchInfo: /user/username/projects/myproject/dependency/fns.ts 500 undefined WatchType: Closed Script info -Info 30 [16:01:05.000] Search path: /user/username/projects/myproject/dependency -Info 31 [16:01:06.000] For info: /user/username/projects/myproject/dependency/fns.ts :: Config file name: /user/username/projects/myproject/dependency/tsconfig.json -Info 32 [16:01:07.000] Creating configuration project /user/username/projects/myproject/dependency/tsconfig.json -Info 33 [16:01:08.000] Plugins were requested but not running in environment that supports 'require'. Nothing will be loaded -Info 34 [16:01:09.000] Starting updateGraphWorker: Project: /user/username/projects/myproject/dependency/tsconfig.json -Info 35 [16:01:10.000] 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 36 [16:01:11.000] 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 37 [16:01:12.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Type roots -Info 38 [16:01:13.000] 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 39 [16:01:14.000] Finishing updateGraphWorker: Project: /user/username/projects/myproject/dependency/tsconfig.json Version: 1 structureChanged: true structureIsReused:: Not Elapsed:: *ms -Info 40 [16:01:15.000] Project '/user/username/projects/myproject/dependency/tsconfig.json' (Configured) -Info 41 [16:01:16.000] Files (2) +Info 29 [00:01:04.000] FileWatcher:: Close:: WatchInfo: /user/username/projects/myproject/dependency/fns.ts 500 undefined WatchType: Closed Script info +Info 30 [00:01:05.000] Search path: /user/username/projects/myproject/dependency +Info 31 [00:01:06.000] For info: /user/username/projects/myproject/dependency/fns.ts :: Config file name: /user/username/projects/myproject/dependency/tsconfig.json +Info 32 [00:01:07.000] Creating configuration project /user/username/projects/myproject/dependency/tsconfig.json +Info 33 [00:01:08.000] Plugins were requested but not running in environment that supports 'require'. Nothing will be loaded +Info 34 [00:01:09.000] Starting updateGraphWorker: Project: /user/username/projects/myproject/dependency/tsconfig.json +Info 35 [00:01:10.000] 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 36 [00:01:11.000] 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 37 [00:01:12.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Type roots +Info 38 [00:01:13.000] 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 39 [00:01:14.000] Finishing updateGraphWorker: Project: /user/username/projects/myproject/dependency/tsconfig.json Version: 1 structureChanged: true structureIsReused:: Not Elapsed:: *ms +Info 40 [00:01:15.000] Project '/user/username/projects/myproject/dependency/tsconfig.json' (Configured) +Info 41 [00:01:16.000] Files (2) /a/lib/lib.d.ts /user/username/projects/myproject/dependency/fns.ts @@ -202,22 +202,22 @@ Info 41 [16:01:16.000] Files (2) fns.ts Matched by default include pattern '**/*' -Info 42 [16:01:17.000] ----------------------------------------------- -Info 43 [16:01:18.000] Search path: /user/username/projects/myproject/dependency -Info 44 [16:01:19.000] For info: /user/username/projects/myproject/dependency/tsconfig.json :: No config files found. -Info 45 [16:01:20.000] Project '/user/username/projects/myproject/usage/tsconfig.json' (Configured) -Info 45 [16:01:21.000] Files (3) - -Info 45 [16:01:22.000] ----------------------------------------------- -Info 45 [16:01:23.000] Project '/user/username/projects/myproject/dependency/tsconfig.json' (Configured) -Info 45 [16:01:24.000] Files (2) - -Info 45 [16:01:25.000] ----------------------------------------------- -Info 45 [16:01:26.000] Open files: -Info 45 [16:01:27.000] FileName: /user/username/projects/myproject/usage/usage.ts ProjectRootPath: undefined -Info 45 [16:01:28.000] Projects: /user/username/projects/myproject/usage/tsconfig.json -Info 45 [16:01:29.000] FileName: /user/username/projects/myproject/dependency/fns.ts ProjectRootPath: undefined -Info 45 [16:01:30.000] Projects: /user/username/projects/myproject/usage/tsconfig.json,/user/username/projects/myproject/dependency/tsconfig.json +Info 42 [00:01:17.000] ----------------------------------------------- +Info 43 [00:01:18.000] Search path: /user/username/projects/myproject/dependency +Info 44 [00:01:19.000] For info: /user/username/projects/myproject/dependency/tsconfig.json :: No config files found. +Info 45 [00:01:20.000] Project '/user/username/projects/myproject/usage/tsconfig.json' (Configured) +Info 45 [00:01:21.000] Files (3) + +Info 45 [00:01:22.000] ----------------------------------------------- +Info 45 [00:01:23.000] Project '/user/username/projects/myproject/dependency/tsconfig.json' (Configured) +Info 45 [00:01:24.000] Files (2) + +Info 45 [00:01:25.000] ----------------------------------------------- +Info 45 [00:01:26.000] Open files: +Info 45 [00:01:27.000] FileName: /user/username/projects/myproject/usage/usage.ts ProjectRootPath: undefined +Info 45 [00:01:28.000] Projects: /user/username/projects/myproject/usage/tsconfig.json +Info 45 [00:01:29.000] FileName: /user/username/projects/myproject/dependency/fns.ts ProjectRootPath: undefined +Info 45 [00:01:30.000] Projects: /user/username/projects/myproject/usage/tsconfig.json,/user/username/projects/myproject/dependency/tsconfig.json After request PolledWatches:: @@ -244,11 +244,11 @@ FsWatchesRecursive:: /user/username/projects/myproject/dependency: {} -Info 45 [16:01:31.000] response: +Info 45 [00:01:31.000] response: { "responseRequired": false } -Info 46 [16:01:32.000] request: +Info 46 [00:01:32.000] request: { "command": "compileOnSaveAffectedFileList", "arguments": { @@ -283,34 +283,34 @@ FsWatchesRecursive:: /user/username/projects/myproject/dependency: {} -Info 47 [16:01:33.000] Before ensureProjectForOpenFiles: -Info 48 [16:01:34.000] Project '/user/username/projects/myproject/usage/tsconfig.json' (Configured) -Info 48 [16:01:35.000] Files (3) - -Info 48 [16:01:36.000] ----------------------------------------------- -Info 48 [16:01:37.000] Project '/user/username/projects/myproject/dependency/tsconfig.json' (Configured) -Info 48 [16:01:38.000] Files (2) - -Info 48 [16:01:39.000] ----------------------------------------------- -Info 48 [16:01:40.000] Open files: -Info 48 [16:01:41.000] FileName: /user/username/projects/myproject/usage/usage.ts ProjectRootPath: undefined -Info 48 [16:01:42.000] Projects: /user/username/projects/myproject/usage/tsconfig.json -Info 48 [16:01:43.000] FileName: /user/username/projects/myproject/dependency/fns.ts ProjectRootPath: undefined -Info 48 [16:01:44.000] Projects: /user/username/projects/myproject/usage/tsconfig.json,/user/username/projects/myproject/dependency/tsconfig.json -Info 48 [16:01:45.000] After ensureProjectForOpenFiles: -Info 49 [16:01:46.000] Project '/user/username/projects/myproject/usage/tsconfig.json' (Configured) -Info 49 [16:01:47.000] Files (3) - -Info 49 [16:01:48.000] ----------------------------------------------- -Info 49 [16:01:49.000] Project '/user/username/projects/myproject/dependency/tsconfig.json' (Configured) -Info 49 [16:01:50.000] Files (2) - -Info 49 [16:01:51.000] ----------------------------------------------- -Info 49 [16:01:52.000] Open files: -Info 49 [16:01:53.000] FileName: /user/username/projects/myproject/usage/usage.ts ProjectRootPath: undefined -Info 49 [16:01:54.000] Projects: /user/username/projects/myproject/usage/tsconfig.json -Info 49 [16:01:55.000] FileName: /user/username/projects/myproject/dependency/fns.ts ProjectRootPath: undefined -Info 49 [16:01:56.000] Projects: /user/username/projects/myproject/usage/tsconfig.json,/user/username/projects/myproject/dependency/tsconfig.json +Info 47 [00:01:33.000] Before ensureProjectForOpenFiles: +Info 48 [00:01:34.000] Project '/user/username/projects/myproject/usage/tsconfig.json' (Configured) +Info 48 [00:01:35.000] Files (3) + +Info 48 [00:01:36.000] ----------------------------------------------- +Info 48 [00:01:37.000] Project '/user/username/projects/myproject/dependency/tsconfig.json' (Configured) +Info 48 [00:01:38.000] Files (2) + +Info 48 [00:01:39.000] ----------------------------------------------- +Info 48 [00:01:40.000] Open files: +Info 48 [00:01:41.000] FileName: /user/username/projects/myproject/usage/usage.ts ProjectRootPath: undefined +Info 48 [00:01:42.000] Projects: /user/username/projects/myproject/usage/tsconfig.json +Info 48 [00:01:43.000] FileName: /user/username/projects/myproject/dependency/fns.ts ProjectRootPath: undefined +Info 48 [00:01:44.000] Projects: /user/username/projects/myproject/usage/tsconfig.json,/user/username/projects/myproject/dependency/tsconfig.json +Info 48 [00:01:45.000] After ensureProjectForOpenFiles: +Info 49 [00:01:46.000] Project '/user/username/projects/myproject/usage/tsconfig.json' (Configured) +Info 49 [00:01:47.000] Files (3) + +Info 49 [00:01:48.000] ----------------------------------------------- +Info 49 [00:01:49.000] Project '/user/username/projects/myproject/dependency/tsconfig.json' (Configured) +Info 49 [00:01:50.000] Files (2) + +Info 49 [00:01:51.000] ----------------------------------------------- +Info 49 [00:01:52.000] Open files: +Info 49 [00:01:53.000] FileName: /user/username/projects/myproject/usage/usage.ts ProjectRootPath: undefined +Info 49 [00:01:54.000] Projects: /user/username/projects/myproject/usage/tsconfig.json +Info 49 [00:01:55.000] FileName: /user/username/projects/myproject/dependency/fns.ts ProjectRootPath: undefined +Info 49 [00:01:56.000] Projects: /user/username/projects/myproject/usage/tsconfig.json,/user/username/projects/myproject/dependency/tsconfig.json After request PolledWatches:: @@ -337,7 +337,7 @@ FsWatchesRecursive:: /user/username/projects/myproject/dependency: {} -Info 49 [16:01:57.000] response: +Info 49 [00:01:57.000] response: { "response": [ { @@ -357,7 +357,7 @@ Info 49 [16:01:57.000] response: ], "responseRequired": true } -Info 50 [16:01:58.000] request: +Info 50 [00:01:58.000] request: { "command": "change", "arguments": { @@ -423,11 +423,11 @@ FsWatchesRecursive:: /user/username/projects/myproject/dependency: {} -Info 51 [16:01:59.000] response: +Info 51 [00:01:59.000] response: { "responseRequired": false } -Info 52 [16:02:00.000] request: +Info 52 [00:02:00.000] request: { "command": "compileOnSaveAffectedFileList", "arguments": { @@ -463,9 +463,9 @@ FsWatchesRecursive:: /user/username/projects/myproject/dependency: {} -Info 53 [16:02:01.000] Starting updateGraphWorker: Project: /user/username/projects/myproject/usage/tsconfig.json -Info 54 [16:02:02.000] Finishing updateGraphWorker: Project: /user/username/projects/myproject/usage/tsconfig.json Version: 2 structureChanged: false structureIsReused:: Completely Elapsed:: *ms -Info 55 [16:02:03.000] Different program with same set of files +Info 53 [00:02:01.000] Starting updateGraphWorker: Project: /user/username/projects/myproject/usage/tsconfig.json +Info 54 [00:02:02.000] Finishing updateGraphWorker: Project: /user/username/projects/myproject/usage/tsconfig.json Version: 2 structureChanged: false structureIsReused:: Completely Elapsed:: *ms +Info 55 [00:02:03.000] Different program with same set of files After request PolledWatches:: @@ -492,7 +492,7 @@ FsWatchesRecursive:: /user/username/projects/myproject/dependency: {} -Info 56 [16:02:04.000] response: +Info 56 [00:02:04.000] response: { "response": [ { @@ -503,7 +503,7 @@ Info 56 [16:02:04.000] response: ], "responseRequired": true } -Info 57 [16:02:05.000] request: +Info 57 [00:02:05.000] request: { "command": "compileOnSaveEmitFile", "arguments": { @@ -565,12 +565,12 @@ FsWatchesRecursive:: /user/username/projects/myproject/dependency: {} -Info 58 [16:02:06.000] response: +Info 58 [00:02:06.000] response: { "response": false, "responseRequired": true } -Info 59 [16:02:07.000] request: +Info 59 [00:02:07.000] request: { "command": "emit-output", "arguments": { @@ -632,7 +632,7 @@ FsWatchesRecursive:: /user/username/projects/myproject/dependency: {} -Info 60 [16:02:08.000] response: +Info 60 [00:02:08.000] response: { "response": { "emitSkipped": true, 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 d13c4c40f94dd..062e59f50b84c 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 @@ -1,5 +1,5 @@ -Info 0 [16:00:29.000] Provided types map file "/a/lib/typesMap.json" doesn't exist -Info 1 [16:00:30.000] request: +Info 0 [00:00:29.000] Provided types map file "/a/lib/typesMap.json" doesn't exist +Info 1 [00:00:30.000] request: { "seq": 0, "type": "request", @@ -49,11 +49,11 @@ FsWatches:: FsWatchesRecursive:: -Info 2 [16:00:31.000] Search path: /user/username/projects/myproject/usage -Info 3 [16:00:32.000] For info: /user/username/projects/myproject/usage/usage.ts :: Config file name: /user/username/projects/myproject/usage/tsconfig.json -Info 4 [16:00:33.000] Creating configuration project /user/username/projects/myproject/usage/tsconfig.json -Info 5 [16:00:34.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/usage/tsconfig.json 2000 undefined Project: /user/username/projects/myproject/usage/tsconfig.json WatchType: Config file -Info 6 [16:00:35.000] Config: /user/username/projects/myproject/usage/tsconfig.json : { +Info 2 [00:00:31.000] Search path: /user/username/projects/myproject/usage +Info 3 [00:00:32.000] For info: /user/username/projects/myproject/usage/usage.ts :: Config file name: /user/username/projects/myproject/usage/tsconfig.json +Info 4 [00:00:33.000] Creating configuration project /user/username/projects/myproject/usage/tsconfig.json +Info 5 [00:00:34.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/usage/tsconfig.json 2000 undefined Project: /user/username/projects/myproject/usage/tsconfig.json WatchType: Config file +Info 6 [00:00:35.000] Config: /user/username/projects/myproject/usage/tsconfig.json : { "rootNames": [ "/user/username/projects/myproject/usage/usage.ts" ], @@ -67,11 +67,11 @@ Info 6 [16:00:35.000] Config: /user/username/projects/myproject/usage/tsconfi } ] } -Info 7 [16:00:36.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/usage 1 undefined Config: /user/username/projects/myproject/usage/tsconfig.json WatchType: Wild card directory -Info 8 [16:00:37.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/usage 1 undefined Config: /user/username/projects/myproject/usage/tsconfig.json WatchType: Wild card directory -Info 9 [16:00:38.000] Plugins were requested but not running in environment that supports 'require'. Nothing will be loaded -Info 10 [16:00:39.000] Starting updateGraphWorker: Project: /user/username/projects/myproject/usage/tsconfig.json -Info 11 [16:00:40.000] Config: /user/username/projects/myproject/dependency/tsconfig.json : { +Info 7 [00:00:36.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/usage 1 undefined Config: /user/username/projects/myproject/usage/tsconfig.json WatchType: Wild card directory +Info 8 [00:00:37.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/usage 1 undefined Config: /user/username/projects/myproject/usage/tsconfig.json WatchType: Wild card directory +Info 9 [00:00:38.000] Plugins were requested but not running in environment that supports 'require'. Nothing will be loaded +Info 10 [00:00:39.000] Starting updateGraphWorker: Project: /user/username/projects/myproject/usage/tsconfig.json +Info 11 [00:00:40.000] Config: /user/username/projects/myproject/dependency/tsconfig.json : { "rootNames": [ "/user/username/projects/myproject/dependency/fns.ts" ], @@ -81,20 +81,20 @@ Info 11 [16:00:40.000] Config: /user/username/projects/myproject/dependency/ts "configFilePath": "/user/username/projects/myproject/dependency/tsconfig.json" } } -Info 12 [16:00:41.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/dependency/tsconfig.json 2000 undefined Project: /user/username/projects/myproject/usage/tsconfig.json WatchType: Config file -Info 13 [16:00:42.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/dependency 1 undefined Config: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Wild card directory -Info 14 [16:00:43.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/dependency 1 undefined Config: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Wild card directory -Info 15 [16:00:44.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/decls 1 undefined Project: /user/username/projects/myproject/usage/tsconfig.json WatchType: Failed Lookup Locations -Info 16 [16:00:45.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/decls 1 undefined Project: /user/username/projects/myproject/usage/tsconfig.json WatchType: Failed Lookup Locations -Info 17 [16:00:46.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/dependency/fns.ts 500 undefined WatchType: Closed Script info -Info 18 [16:00:47.000] FileWatcher:: Added:: WatchInfo: /a/lib/lib.d.ts 500 undefined WatchType: Closed Script info -Info 19 [16:00:48.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/usage/node_modules/@types 1 undefined Project: /user/username/projects/myproject/usage/tsconfig.json WatchType: Type roots -Info 20 [16:00:49.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/usage/node_modules/@types 1 undefined Project: /user/username/projects/myproject/usage/tsconfig.json WatchType: Type roots -Info 21 [16:00:50.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/usage/tsconfig.json WatchType: Type roots -Info 22 [16:00:51.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/usage/tsconfig.json WatchType: Type roots -Info 23 [16:00:52.000] Finishing updateGraphWorker: Project: /user/username/projects/myproject/usage/tsconfig.json Version: 1 structureChanged: true structureIsReused:: Not Elapsed:: *ms -Info 24 [16:00:53.000] Project '/user/username/projects/myproject/usage/tsconfig.json' (Configured) -Info 25 [16:00:54.000] Files (3) +Info 12 [00:00:41.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/dependency/tsconfig.json 2000 undefined Project: /user/username/projects/myproject/usage/tsconfig.json WatchType: Config file +Info 13 [00:00:42.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/dependency 1 undefined Config: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Wild card directory +Info 14 [00:00:43.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/dependency 1 undefined Config: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Wild card directory +Info 15 [00:00:44.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/decls 1 undefined Project: /user/username/projects/myproject/usage/tsconfig.json WatchType: Failed Lookup Locations +Info 16 [00:00:45.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/decls 1 undefined Project: /user/username/projects/myproject/usage/tsconfig.json WatchType: Failed Lookup Locations +Info 17 [00:00:46.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/dependency/fns.ts 500 undefined WatchType: Closed Script info +Info 18 [00:00:47.000] FileWatcher:: Added:: WatchInfo: /a/lib/lib.d.ts 500 undefined WatchType: Closed Script info +Info 19 [00:00:48.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/usage/node_modules/@types 1 undefined Project: /user/username/projects/myproject/usage/tsconfig.json WatchType: Type roots +Info 20 [00:00:49.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/usage/node_modules/@types 1 undefined Project: /user/username/projects/myproject/usage/tsconfig.json WatchType: Type roots +Info 21 [00:00:50.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/usage/tsconfig.json WatchType: Type roots +Info 22 [00:00:51.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/usage/tsconfig.json WatchType: Type roots +Info 23 [00:00:52.000] Finishing updateGraphWorker: Project: /user/username/projects/myproject/usage/tsconfig.json Version: 1 structureChanged: true structureIsReused:: Not Elapsed:: *ms +Info 24 [00:00:53.000] Project '/user/username/projects/myproject/usage/tsconfig.json' (Configured) +Info 25 [00:00:54.000] Files (3) /a/lib/lib.d.ts /user/username/projects/myproject/dependency/fns.ts /user/username/projects/myproject/usage/usage.ts @@ -107,14 +107,14 @@ Info 25 [16:00:54.000] Files (3) usage.ts Matched by default include pattern '**/*' -Info 26 [16:00:55.000] ----------------------------------------------- -Info 27 [16:00:56.000] Project '/user/username/projects/myproject/usage/tsconfig.json' (Configured) -Info 27 [16:00:57.000] Files (3) +Info 26 [00:00:55.000] ----------------------------------------------- +Info 27 [00:00:56.000] Project '/user/username/projects/myproject/usage/tsconfig.json' (Configured) +Info 27 [00:00:57.000] Files (3) -Info 27 [16:00:58.000] ----------------------------------------------- -Info 27 [16:00:59.000] Open files: -Info 27 [16:01:00.000] FileName: /user/username/projects/myproject/usage/usage.ts ProjectRootPath: undefined -Info 27 [16:01:01.000] Projects: /user/username/projects/myproject/usage/tsconfig.json +Info 27 [00:00:58.000] ----------------------------------------------- +Info 27 [00:00:59.000] Open files: +Info 27 [00:01:00.000] FileName: /user/username/projects/myproject/usage/usage.ts ProjectRootPath: undefined +Info 27 [00:01:01.000] Projects: /user/username/projects/myproject/usage/tsconfig.json After request PolledWatches:: @@ -141,11 +141,11 @@ FsWatchesRecursive:: /user/username/projects/myproject/dependency: {} -Info 27 [16:01:02.000] response: +Info 27 [00:01:02.000] response: { "responseRequired": false } -Info 28 [16:01:03.000] request: +Info 28 [00:01:03.000] request: { "seq": 0, "type": "request", @@ -180,19 +180,19 @@ FsWatchesRecursive:: /user/username/projects/myproject/dependency: {} -Info 29 [16:01:04.000] FileWatcher:: Close:: WatchInfo: /user/username/projects/myproject/dependency/fns.ts 500 undefined WatchType: Closed Script info -Info 30 [16:01:05.000] Search path: /user/username/projects/myproject/dependency -Info 31 [16:01:06.000] For info: /user/username/projects/myproject/dependency/fns.ts :: Config file name: /user/username/projects/myproject/dependency/tsconfig.json -Info 32 [16:01:07.000] Creating configuration project /user/username/projects/myproject/dependency/tsconfig.json -Info 33 [16:01:08.000] Plugins were requested but not running in environment that supports 'require'. Nothing will be loaded -Info 34 [16:01:09.000] Starting updateGraphWorker: Project: /user/username/projects/myproject/dependency/tsconfig.json -Info 35 [16:01:10.000] 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 36 [16:01:11.000] 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 37 [16:01:12.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Type roots -Info 38 [16:01:13.000] 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 39 [16:01:14.000] Finishing updateGraphWorker: Project: /user/username/projects/myproject/dependency/tsconfig.json Version: 1 structureChanged: true structureIsReused:: Not Elapsed:: *ms -Info 40 [16:01:15.000] Project '/user/username/projects/myproject/dependency/tsconfig.json' (Configured) -Info 41 [16:01:16.000] Files (2) +Info 29 [00:01:04.000] FileWatcher:: Close:: WatchInfo: /user/username/projects/myproject/dependency/fns.ts 500 undefined WatchType: Closed Script info +Info 30 [00:01:05.000] Search path: /user/username/projects/myproject/dependency +Info 31 [00:01:06.000] For info: /user/username/projects/myproject/dependency/fns.ts :: Config file name: /user/username/projects/myproject/dependency/tsconfig.json +Info 32 [00:01:07.000] Creating configuration project /user/username/projects/myproject/dependency/tsconfig.json +Info 33 [00:01:08.000] Plugins were requested but not running in environment that supports 'require'. Nothing will be loaded +Info 34 [00:01:09.000] Starting updateGraphWorker: Project: /user/username/projects/myproject/dependency/tsconfig.json +Info 35 [00:01:10.000] 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 36 [00:01:11.000] 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 37 [00:01:12.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Type roots +Info 38 [00:01:13.000] 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 39 [00:01:14.000] Finishing updateGraphWorker: Project: /user/username/projects/myproject/dependency/tsconfig.json Version: 1 structureChanged: true structureIsReused:: Not Elapsed:: *ms +Info 40 [00:01:15.000] Project '/user/username/projects/myproject/dependency/tsconfig.json' (Configured) +Info 41 [00:01:16.000] Files (2) /a/lib/lib.d.ts /user/username/projects/myproject/dependency/fns.ts @@ -202,22 +202,22 @@ Info 41 [16:01:16.000] Files (2) fns.ts Matched by default include pattern '**/*' -Info 42 [16:01:17.000] ----------------------------------------------- -Info 43 [16:01:18.000] Search path: /user/username/projects/myproject/dependency -Info 44 [16:01:19.000] For info: /user/username/projects/myproject/dependency/tsconfig.json :: No config files found. -Info 45 [16:01:20.000] Project '/user/username/projects/myproject/usage/tsconfig.json' (Configured) -Info 45 [16:01:21.000] Files (3) - -Info 45 [16:01:22.000] ----------------------------------------------- -Info 45 [16:01:23.000] Project '/user/username/projects/myproject/dependency/tsconfig.json' (Configured) -Info 45 [16:01:24.000] Files (2) - -Info 45 [16:01:25.000] ----------------------------------------------- -Info 45 [16:01:26.000] Open files: -Info 45 [16:01:27.000] FileName: /user/username/projects/myproject/usage/usage.ts ProjectRootPath: undefined -Info 45 [16:01:28.000] Projects: /user/username/projects/myproject/usage/tsconfig.json -Info 45 [16:01:29.000] FileName: /user/username/projects/myproject/dependency/fns.ts ProjectRootPath: undefined -Info 45 [16:01:30.000] Projects: /user/username/projects/myproject/usage/tsconfig.json,/user/username/projects/myproject/dependency/tsconfig.json +Info 42 [00:01:17.000] ----------------------------------------------- +Info 43 [00:01:18.000] Search path: /user/username/projects/myproject/dependency +Info 44 [00:01:19.000] For info: /user/username/projects/myproject/dependency/tsconfig.json :: No config files found. +Info 45 [00:01:20.000] Project '/user/username/projects/myproject/usage/tsconfig.json' (Configured) +Info 45 [00:01:21.000] Files (3) + +Info 45 [00:01:22.000] ----------------------------------------------- +Info 45 [00:01:23.000] Project '/user/username/projects/myproject/dependency/tsconfig.json' (Configured) +Info 45 [00:01:24.000] Files (2) + +Info 45 [00:01:25.000] ----------------------------------------------- +Info 45 [00:01:26.000] Open files: +Info 45 [00:01:27.000] FileName: /user/username/projects/myproject/usage/usage.ts ProjectRootPath: undefined +Info 45 [00:01:28.000] Projects: /user/username/projects/myproject/usage/tsconfig.json +Info 45 [00:01:29.000] FileName: /user/username/projects/myproject/dependency/fns.ts ProjectRootPath: undefined +Info 45 [00:01:30.000] Projects: /user/username/projects/myproject/usage/tsconfig.json,/user/username/projects/myproject/dependency/tsconfig.json After request PolledWatches:: @@ -244,11 +244,11 @@ FsWatchesRecursive:: /user/username/projects/myproject/dependency: {} -Info 45 [16:01:31.000] response: +Info 45 [00:01:31.000] response: { "responseRequired": false } -Info 46 [16:01:32.000] request: +Info 46 [00:01:32.000] request: { "command": "compileOnSaveAffectedFileList", "arguments": { @@ -283,34 +283,34 @@ FsWatchesRecursive:: /user/username/projects/myproject/dependency: {} -Info 47 [16:01:33.000] Before ensureProjectForOpenFiles: -Info 48 [16:01:34.000] Project '/user/username/projects/myproject/usage/tsconfig.json' (Configured) -Info 48 [16:01:35.000] Files (3) - -Info 48 [16:01:36.000] ----------------------------------------------- -Info 48 [16:01:37.000] Project '/user/username/projects/myproject/dependency/tsconfig.json' (Configured) -Info 48 [16:01:38.000] Files (2) - -Info 48 [16:01:39.000] ----------------------------------------------- -Info 48 [16:01:40.000] Open files: -Info 48 [16:01:41.000] FileName: /user/username/projects/myproject/usage/usage.ts ProjectRootPath: undefined -Info 48 [16:01:42.000] Projects: /user/username/projects/myproject/usage/tsconfig.json -Info 48 [16:01:43.000] FileName: /user/username/projects/myproject/dependency/fns.ts ProjectRootPath: undefined -Info 48 [16:01:44.000] Projects: /user/username/projects/myproject/usage/tsconfig.json,/user/username/projects/myproject/dependency/tsconfig.json -Info 48 [16:01:45.000] After ensureProjectForOpenFiles: -Info 49 [16:01:46.000] Project '/user/username/projects/myproject/usage/tsconfig.json' (Configured) -Info 49 [16:01:47.000] Files (3) - -Info 49 [16:01:48.000] ----------------------------------------------- -Info 49 [16:01:49.000] Project '/user/username/projects/myproject/dependency/tsconfig.json' (Configured) -Info 49 [16:01:50.000] Files (2) - -Info 49 [16:01:51.000] ----------------------------------------------- -Info 49 [16:01:52.000] Open files: -Info 49 [16:01:53.000] FileName: /user/username/projects/myproject/usage/usage.ts ProjectRootPath: undefined -Info 49 [16:01:54.000] Projects: /user/username/projects/myproject/usage/tsconfig.json -Info 49 [16:01:55.000] FileName: /user/username/projects/myproject/dependency/fns.ts ProjectRootPath: undefined -Info 49 [16:01:56.000] Projects: /user/username/projects/myproject/usage/tsconfig.json,/user/username/projects/myproject/dependency/tsconfig.json +Info 47 [00:01:33.000] Before ensureProjectForOpenFiles: +Info 48 [00:01:34.000] Project '/user/username/projects/myproject/usage/tsconfig.json' (Configured) +Info 48 [00:01:35.000] Files (3) + +Info 48 [00:01:36.000] ----------------------------------------------- +Info 48 [00:01:37.000] Project '/user/username/projects/myproject/dependency/tsconfig.json' (Configured) +Info 48 [00:01:38.000] Files (2) + +Info 48 [00:01:39.000] ----------------------------------------------- +Info 48 [00:01:40.000] Open files: +Info 48 [00:01:41.000] FileName: /user/username/projects/myproject/usage/usage.ts ProjectRootPath: undefined +Info 48 [00:01:42.000] Projects: /user/username/projects/myproject/usage/tsconfig.json +Info 48 [00:01:43.000] FileName: /user/username/projects/myproject/dependency/fns.ts ProjectRootPath: undefined +Info 48 [00:01:44.000] Projects: /user/username/projects/myproject/usage/tsconfig.json,/user/username/projects/myproject/dependency/tsconfig.json +Info 48 [00:01:45.000] After ensureProjectForOpenFiles: +Info 49 [00:01:46.000] Project '/user/username/projects/myproject/usage/tsconfig.json' (Configured) +Info 49 [00:01:47.000] Files (3) + +Info 49 [00:01:48.000] ----------------------------------------------- +Info 49 [00:01:49.000] Project '/user/username/projects/myproject/dependency/tsconfig.json' (Configured) +Info 49 [00:01:50.000] Files (2) + +Info 49 [00:01:51.000] ----------------------------------------------- +Info 49 [00:01:52.000] Open files: +Info 49 [00:01:53.000] FileName: /user/username/projects/myproject/usage/usage.ts ProjectRootPath: undefined +Info 49 [00:01:54.000] Projects: /user/username/projects/myproject/usage/tsconfig.json +Info 49 [00:01:55.000] FileName: /user/username/projects/myproject/dependency/fns.ts ProjectRootPath: undefined +Info 49 [00:01:56.000] Projects: /user/username/projects/myproject/usage/tsconfig.json,/user/username/projects/myproject/dependency/tsconfig.json After request PolledWatches:: @@ -337,7 +337,7 @@ FsWatchesRecursive:: /user/username/projects/myproject/dependency: {} -Info 49 [16:01:57.000] response: +Info 49 [00:01:57.000] response: { "response": [ { @@ -357,7 +357,7 @@ Info 49 [16:01:57.000] response: ], "responseRequired": true } -Info 50 [16:01:58.000] request: +Info 50 [00:01:58.000] request: { "command": "change", "arguments": { @@ -423,11 +423,11 @@ FsWatchesRecursive:: /user/username/projects/myproject/dependency: {} -Info 51 [16:01:59.000] response: +Info 51 [00:01:59.000] response: { "responseRequired": false } -Info 52 [16:02:00.000] request: +Info 52 [00:02:00.000] request: { "command": "compileOnSaveAffectedFileList", "arguments": { @@ -463,9 +463,9 @@ FsWatchesRecursive:: /user/username/projects/myproject/dependency: {} -Info 53 [16:02:01.000] Starting updateGraphWorker: Project: /user/username/projects/myproject/usage/tsconfig.json -Info 54 [16:02:02.000] Finishing updateGraphWorker: Project: /user/username/projects/myproject/usage/tsconfig.json Version: 2 structureChanged: false structureIsReused:: Completely Elapsed:: *ms -Info 55 [16:02:03.000] Different program with same set of files +Info 53 [00:02:01.000] Starting updateGraphWorker: Project: /user/username/projects/myproject/usage/tsconfig.json +Info 54 [00:02:02.000] Finishing updateGraphWorker: Project: /user/username/projects/myproject/usage/tsconfig.json Version: 2 structureChanged: false structureIsReused:: Completely Elapsed:: *ms +Info 55 [00:02:03.000] Different program with same set of files After request PolledWatches:: @@ -492,7 +492,7 @@ FsWatchesRecursive:: /user/username/projects/myproject/dependency: {} -Info 56 [16:02:04.000] response: +Info 56 [00:02:04.000] response: { "response": [ { @@ -503,7 +503,7 @@ Info 56 [16:02:04.000] response: ], "responseRequired": true } -Info 57 [16:02:05.000] request: +Info 57 [00:02:05.000] request: { "command": "compileOnSaveEmitFile", "arguments": { @@ -565,12 +565,12 @@ FsWatchesRecursive:: /user/username/projects/myproject/dependency: {} -Info 58 [16:02:06.000] response: +Info 58 [00:02:06.000] response: { "response": false, "responseRequired": true } -Info 59 [16:02:07.000] request: +Info 59 [00:02:07.000] request: { "command": "emit-output", "arguments": { @@ -632,7 +632,7 @@ FsWatchesRecursive:: /user/username/projects/myproject/dependency: {} -Info 60 [16:02:08.000] response: +Info 60 [00:02:08.000] response: { "response": { "emitSkipped": true, 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 d3850d5f3a057..c629af6fb88df 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 @@ -1,5 +1,5 @@ -Info 0 [16:00:29.000] Provided types map file "/a/lib/typesMap.json" doesn't exist -Info 1 [16:00:30.000] request: +Info 0 [00:00:29.000] Provided types map file "/a/lib/typesMap.json" doesn't exist +Info 1 [00:00:30.000] request: { "seq": 0, "type": "request", @@ -49,11 +49,11 @@ FsWatches:: FsWatchesRecursive:: -Info 2 [16:00:31.000] Search path: /user/username/projects/myproject/usage -Info 3 [16:00:32.000] For info: /user/username/projects/myproject/usage/usage.ts :: Config file name: /user/username/projects/myproject/usage/tsconfig.json -Info 4 [16:00:33.000] Creating configuration project /user/username/projects/myproject/usage/tsconfig.json -Info 5 [16:00:34.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/usage/tsconfig.json 2000 undefined Project: /user/username/projects/myproject/usage/tsconfig.json WatchType: Config file -Info 6 [16:00:35.000] Config: /user/username/projects/myproject/usage/tsconfig.json : { +Info 2 [00:00:31.000] Search path: /user/username/projects/myproject/usage +Info 3 [00:00:32.000] For info: /user/username/projects/myproject/usage/usage.ts :: Config file name: /user/username/projects/myproject/usage/tsconfig.json +Info 4 [00:00:33.000] Creating configuration project /user/username/projects/myproject/usage/tsconfig.json +Info 5 [00:00:34.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/usage/tsconfig.json 2000 undefined Project: /user/username/projects/myproject/usage/tsconfig.json WatchType: Config file +Info 6 [00:00:35.000] Config: /user/username/projects/myproject/usage/tsconfig.json : { "rootNames": [ "/user/username/projects/myproject/usage/usage.ts" ], @@ -67,11 +67,11 @@ Info 6 [16:00:35.000] Config: /user/username/projects/myproject/usage/tsconfi } ] } -Info 7 [16:00:36.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/usage 1 undefined Config: /user/username/projects/myproject/usage/tsconfig.json WatchType: Wild card directory -Info 8 [16:00:37.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/usage 1 undefined Config: /user/username/projects/myproject/usage/tsconfig.json WatchType: Wild card directory -Info 9 [16:00:38.000] Plugins were requested but not running in environment that supports 'require'. Nothing will be loaded -Info 10 [16:00:39.000] Starting updateGraphWorker: Project: /user/username/projects/myproject/usage/tsconfig.json -Info 11 [16:00:40.000] Config: /user/username/projects/myproject/dependency/tsconfig.json : { +Info 7 [00:00:36.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/usage 1 undefined Config: /user/username/projects/myproject/usage/tsconfig.json WatchType: Wild card directory +Info 8 [00:00:37.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/usage 1 undefined Config: /user/username/projects/myproject/usage/tsconfig.json WatchType: Wild card directory +Info 9 [00:00:38.000] Plugins were requested but not running in environment that supports 'require'. Nothing will be loaded +Info 10 [00:00:39.000] Starting updateGraphWorker: Project: /user/username/projects/myproject/usage/tsconfig.json +Info 11 [00:00:40.000] Config: /user/username/projects/myproject/dependency/tsconfig.json : { "rootNames": [ "/user/username/projects/myproject/dependency/fns.ts" ], @@ -81,20 +81,20 @@ Info 11 [16:00:40.000] Config: /user/username/projects/myproject/dependency/ts "configFilePath": "/user/username/projects/myproject/dependency/tsconfig.json" } } -Info 12 [16:00:41.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/dependency/tsconfig.json 2000 undefined Project: /user/username/projects/myproject/usage/tsconfig.json WatchType: Config file -Info 13 [16:00:42.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/dependency 1 undefined Config: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Wild card directory -Info 14 [16:00:43.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/dependency 1 undefined Config: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Wild card directory -Info 15 [16:00:44.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/decls 1 undefined Project: /user/username/projects/myproject/usage/tsconfig.json WatchType: Failed Lookup Locations -Info 16 [16:00:45.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/decls 1 undefined Project: /user/username/projects/myproject/usage/tsconfig.json WatchType: Failed Lookup Locations -Info 17 [16:00:46.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/dependency/fns.ts 500 undefined WatchType: Closed Script info -Info 18 [16:00:47.000] FileWatcher:: Added:: WatchInfo: /a/lib/lib.d.ts 500 undefined WatchType: Closed Script info -Info 19 [16:00:48.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/usage/node_modules/@types 1 undefined Project: /user/username/projects/myproject/usage/tsconfig.json WatchType: Type roots -Info 20 [16:00:49.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/usage/node_modules/@types 1 undefined Project: /user/username/projects/myproject/usage/tsconfig.json WatchType: Type roots -Info 21 [16:00:50.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/usage/tsconfig.json WatchType: Type roots -Info 22 [16:00:51.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/usage/tsconfig.json WatchType: Type roots -Info 23 [16:00:52.000] Finishing updateGraphWorker: Project: /user/username/projects/myproject/usage/tsconfig.json Version: 1 structureChanged: true structureIsReused:: Not Elapsed:: *ms -Info 24 [16:00:53.000] Project '/user/username/projects/myproject/usage/tsconfig.json' (Configured) -Info 25 [16:00:54.000] Files (3) +Info 12 [00:00:41.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/dependency/tsconfig.json 2000 undefined Project: /user/username/projects/myproject/usage/tsconfig.json WatchType: Config file +Info 13 [00:00:42.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/dependency 1 undefined Config: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Wild card directory +Info 14 [00:00:43.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/dependency 1 undefined Config: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Wild card directory +Info 15 [00:00:44.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/decls 1 undefined Project: /user/username/projects/myproject/usage/tsconfig.json WatchType: Failed Lookup Locations +Info 16 [00:00:45.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/decls 1 undefined Project: /user/username/projects/myproject/usage/tsconfig.json WatchType: Failed Lookup Locations +Info 17 [00:00:46.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/dependency/fns.ts 500 undefined WatchType: Closed Script info +Info 18 [00:00:47.000] FileWatcher:: Added:: WatchInfo: /a/lib/lib.d.ts 500 undefined WatchType: Closed Script info +Info 19 [00:00:48.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/usage/node_modules/@types 1 undefined Project: /user/username/projects/myproject/usage/tsconfig.json WatchType: Type roots +Info 20 [00:00:49.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/usage/node_modules/@types 1 undefined Project: /user/username/projects/myproject/usage/tsconfig.json WatchType: Type roots +Info 21 [00:00:50.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/usage/tsconfig.json WatchType: Type roots +Info 22 [00:00:51.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/usage/tsconfig.json WatchType: Type roots +Info 23 [00:00:52.000] Finishing updateGraphWorker: Project: /user/username/projects/myproject/usage/tsconfig.json Version: 1 structureChanged: true structureIsReused:: Not Elapsed:: *ms +Info 24 [00:00:53.000] Project '/user/username/projects/myproject/usage/tsconfig.json' (Configured) +Info 25 [00:00:54.000] Files (3) /a/lib/lib.d.ts /user/username/projects/myproject/dependency/fns.ts /user/username/projects/myproject/usage/usage.ts @@ -107,14 +107,14 @@ Info 25 [16:00:54.000] Files (3) usage.ts Matched by default include pattern '**/*' -Info 26 [16:00:55.000] ----------------------------------------------- -Info 27 [16:00:56.000] Project '/user/username/projects/myproject/usage/tsconfig.json' (Configured) -Info 27 [16:00:57.000] Files (3) +Info 26 [00:00:55.000] ----------------------------------------------- +Info 27 [00:00:56.000] Project '/user/username/projects/myproject/usage/tsconfig.json' (Configured) +Info 27 [00:00:57.000] Files (3) -Info 27 [16:00:58.000] ----------------------------------------------- -Info 27 [16:00:59.000] Open files: -Info 27 [16:01:00.000] FileName: /user/username/projects/myproject/usage/usage.ts ProjectRootPath: undefined -Info 27 [16:01:01.000] Projects: /user/username/projects/myproject/usage/tsconfig.json +Info 27 [00:00:58.000] ----------------------------------------------- +Info 27 [00:00:59.000] Open files: +Info 27 [00:01:00.000] FileName: /user/username/projects/myproject/usage/usage.ts ProjectRootPath: undefined +Info 27 [00:01:01.000] Projects: /user/username/projects/myproject/usage/tsconfig.json After request PolledWatches:: @@ -141,11 +141,11 @@ FsWatchesRecursive:: /user/username/projects/myproject/dependency: {} -Info 27 [16:01:02.000] response: +Info 27 [00:01:02.000] response: { "responseRequired": false } -Info 28 [16:01:03.000] request: +Info 28 [00:01:03.000] request: { "seq": 0, "type": "request", @@ -180,19 +180,19 @@ FsWatchesRecursive:: /user/username/projects/myproject/dependency: {} -Info 29 [16:01:04.000] FileWatcher:: Close:: WatchInfo: /user/username/projects/myproject/dependency/fns.ts 500 undefined WatchType: Closed Script info -Info 30 [16:01:05.000] Search path: /user/username/projects/myproject/dependency -Info 31 [16:01:06.000] For info: /user/username/projects/myproject/dependency/fns.ts :: Config file name: /user/username/projects/myproject/dependency/tsconfig.json -Info 32 [16:01:07.000] Creating configuration project /user/username/projects/myproject/dependency/tsconfig.json -Info 33 [16:01:08.000] Plugins were requested but not running in environment that supports 'require'. Nothing will be loaded -Info 34 [16:01:09.000] Starting updateGraphWorker: Project: /user/username/projects/myproject/dependency/tsconfig.json -Info 35 [16:01:10.000] 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 36 [16:01:11.000] 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 37 [16:01:12.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Type roots -Info 38 [16:01:13.000] 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 39 [16:01:14.000] Finishing updateGraphWorker: Project: /user/username/projects/myproject/dependency/tsconfig.json Version: 1 structureChanged: true structureIsReused:: Not Elapsed:: *ms -Info 40 [16:01:15.000] Project '/user/username/projects/myproject/dependency/tsconfig.json' (Configured) -Info 41 [16:01:16.000] Files (2) +Info 29 [00:01:04.000] FileWatcher:: Close:: WatchInfo: /user/username/projects/myproject/dependency/fns.ts 500 undefined WatchType: Closed Script info +Info 30 [00:01:05.000] Search path: /user/username/projects/myproject/dependency +Info 31 [00:01:06.000] For info: /user/username/projects/myproject/dependency/fns.ts :: Config file name: /user/username/projects/myproject/dependency/tsconfig.json +Info 32 [00:01:07.000] Creating configuration project /user/username/projects/myproject/dependency/tsconfig.json +Info 33 [00:01:08.000] Plugins were requested but not running in environment that supports 'require'. Nothing will be loaded +Info 34 [00:01:09.000] Starting updateGraphWorker: Project: /user/username/projects/myproject/dependency/tsconfig.json +Info 35 [00:01:10.000] 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 36 [00:01:11.000] 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 37 [00:01:12.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Type roots +Info 38 [00:01:13.000] 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 39 [00:01:14.000] Finishing updateGraphWorker: Project: /user/username/projects/myproject/dependency/tsconfig.json Version: 1 structureChanged: true structureIsReused:: Not Elapsed:: *ms +Info 40 [00:01:15.000] Project '/user/username/projects/myproject/dependency/tsconfig.json' (Configured) +Info 41 [00:01:16.000] Files (2) /a/lib/lib.d.ts /user/username/projects/myproject/dependency/fns.ts @@ -202,22 +202,22 @@ Info 41 [16:01:16.000] Files (2) fns.ts Matched by default include pattern '**/*' -Info 42 [16:01:17.000] ----------------------------------------------- -Info 43 [16:01:18.000] Search path: /user/username/projects/myproject/dependency -Info 44 [16:01:19.000] For info: /user/username/projects/myproject/dependency/tsconfig.json :: No config files found. -Info 45 [16:01:20.000] Project '/user/username/projects/myproject/usage/tsconfig.json' (Configured) -Info 45 [16:01:21.000] Files (3) - -Info 45 [16:01:22.000] ----------------------------------------------- -Info 45 [16:01:23.000] Project '/user/username/projects/myproject/dependency/tsconfig.json' (Configured) -Info 45 [16:01:24.000] Files (2) - -Info 45 [16:01:25.000] ----------------------------------------------- -Info 45 [16:01:26.000] Open files: -Info 45 [16:01:27.000] FileName: /user/username/projects/myproject/usage/usage.ts ProjectRootPath: undefined -Info 45 [16:01:28.000] Projects: /user/username/projects/myproject/usage/tsconfig.json -Info 45 [16:01:29.000] FileName: /user/username/projects/myproject/dependency/fns.ts ProjectRootPath: undefined -Info 45 [16:01:30.000] Projects: /user/username/projects/myproject/usage/tsconfig.json,/user/username/projects/myproject/dependency/tsconfig.json +Info 42 [00:01:17.000] ----------------------------------------------- +Info 43 [00:01:18.000] Search path: /user/username/projects/myproject/dependency +Info 44 [00:01:19.000] For info: /user/username/projects/myproject/dependency/tsconfig.json :: No config files found. +Info 45 [00:01:20.000] Project '/user/username/projects/myproject/usage/tsconfig.json' (Configured) +Info 45 [00:01:21.000] Files (3) + +Info 45 [00:01:22.000] ----------------------------------------------- +Info 45 [00:01:23.000] Project '/user/username/projects/myproject/dependency/tsconfig.json' (Configured) +Info 45 [00:01:24.000] Files (2) + +Info 45 [00:01:25.000] ----------------------------------------------- +Info 45 [00:01:26.000] Open files: +Info 45 [00:01:27.000] FileName: /user/username/projects/myproject/usage/usage.ts ProjectRootPath: undefined +Info 45 [00:01:28.000] Projects: /user/username/projects/myproject/usage/tsconfig.json +Info 45 [00:01:29.000] FileName: /user/username/projects/myproject/dependency/fns.ts ProjectRootPath: undefined +Info 45 [00:01:30.000] Projects: /user/username/projects/myproject/usage/tsconfig.json,/user/username/projects/myproject/dependency/tsconfig.json After request PolledWatches:: @@ -244,11 +244,11 @@ FsWatchesRecursive:: /user/username/projects/myproject/dependency: {} -Info 45 [16:01:31.000] response: +Info 45 [00:01:31.000] response: { "responseRequired": false } -Info 46 [16:01:32.000] request: +Info 46 [00:01:32.000] request: { "command": "compileOnSaveAffectedFileList", "arguments": { @@ -310,7 +310,7 @@ FsWatchesRecursive:: /user/username/projects/myproject/dependency: {} -Info 47 [16:01:33.000] response: +Info 47 [00:01:33.000] response: { "response": [ { @@ -323,7 +323,7 @@ Info 47 [16:01:33.000] response: ], "responseRequired": true } -Info 48 [16:01:34.000] request: +Info 48 [00:01:34.000] request: { "command": "compileOnSaveEmitFile", "arguments": { @@ -385,12 +385,12 @@ FsWatchesRecursive:: /user/username/projects/myproject/dependency: {} -Info 49 [16:01:35.000] response: +Info 49 [00:01:35.000] response: { "response": false, "responseRequired": true } -Info 50 [16:01:36.000] request: +Info 50 [00:01:36.000] request: { "command": "emit-output", "arguments": { @@ -452,7 +452,7 @@ FsWatchesRecursive:: /user/username/projects/myproject/dependency: {} -Info 51 [16:01:37.000] response: +Info 51 [00:01:37.000] response: { "response": { "emitSkipped": true, diff --git a/tests/baselines/reference/tsserver/projectReferenceCompileOnSave/save-on-dependency.js b/tests/baselines/reference/tsserver/projectReferenceCompileOnSave/save-on-dependency.js index 6d5789e2f9c43..1c0b8c325d73e 100644 --- a/tests/baselines/reference/tsserver/projectReferenceCompileOnSave/save-on-dependency.js +++ b/tests/baselines/reference/tsserver/projectReferenceCompileOnSave/save-on-dependency.js @@ -1,5 +1,5 @@ -Info 0 [16:00:29.000] Provided types map file "/a/lib/typesMap.json" doesn't exist -Info 1 [16:00:30.000] request: +Info 0 [00:00:29.000] Provided types map file "/a/lib/typesMap.json" doesn't exist +Info 1 [00:00:30.000] request: { "seq": 0, "type": "request", @@ -49,11 +49,11 @@ FsWatches:: FsWatchesRecursive:: -Info 2 [16:00:31.000] Search path: /user/username/projects/myproject/usage -Info 3 [16:00:32.000] For info: /user/username/projects/myproject/usage/usage.ts :: Config file name: /user/username/projects/myproject/usage/tsconfig.json -Info 4 [16:00:33.000] Creating configuration project /user/username/projects/myproject/usage/tsconfig.json -Info 5 [16:00:34.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/usage/tsconfig.json 2000 undefined Project: /user/username/projects/myproject/usage/tsconfig.json WatchType: Config file -Info 6 [16:00:35.000] Config: /user/username/projects/myproject/usage/tsconfig.json : { +Info 2 [00:00:31.000] Search path: /user/username/projects/myproject/usage +Info 3 [00:00:32.000] For info: /user/username/projects/myproject/usage/usage.ts :: Config file name: /user/username/projects/myproject/usage/tsconfig.json +Info 4 [00:00:33.000] Creating configuration project /user/username/projects/myproject/usage/tsconfig.json +Info 5 [00:00:34.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/usage/tsconfig.json 2000 undefined Project: /user/username/projects/myproject/usage/tsconfig.json WatchType: Config file +Info 6 [00:00:35.000] Config: /user/username/projects/myproject/usage/tsconfig.json : { "rootNames": [ "/user/username/projects/myproject/usage/usage.ts" ], @@ -67,11 +67,11 @@ Info 6 [16:00:35.000] Config: /user/username/projects/myproject/usage/tsconfi } ] } -Info 7 [16:00:36.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/usage 1 undefined Config: /user/username/projects/myproject/usage/tsconfig.json WatchType: Wild card directory -Info 8 [16:00:37.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/usage 1 undefined Config: /user/username/projects/myproject/usage/tsconfig.json WatchType: Wild card directory -Info 9 [16:00:38.000] Plugins were requested but not running in environment that supports 'require'. Nothing will be loaded -Info 10 [16:00:39.000] Starting updateGraphWorker: Project: /user/username/projects/myproject/usage/tsconfig.json -Info 11 [16:00:40.000] Config: /user/username/projects/myproject/dependency/tsconfig.json : { +Info 7 [00:00:36.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/usage 1 undefined Config: /user/username/projects/myproject/usage/tsconfig.json WatchType: Wild card directory +Info 8 [00:00:37.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/usage 1 undefined Config: /user/username/projects/myproject/usage/tsconfig.json WatchType: Wild card directory +Info 9 [00:00:38.000] Plugins were requested but not running in environment that supports 'require'. Nothing will be loaded +Info 10 [00:00:39.000] Starting updateGraphWorker: Project: /user/username/projects/myproject/usage/tsconfig.json +Info 11 [00:00:40.000] Config: /user/username/projects/myproject/dependency/tsconfig.json : { "rootNames": [ "/user/username/projects/myproject/dependency/fns.ts" ], @@ -81,20 +81,20 @@ Info 11 [16:00:40.000] Config: /user/username/projects/myproject/dependency/ts "configFilePath": "/user/username/projects/myproject/dependency/tsconfig.json" } } -Info 12 [16:00:41.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/dependency/tsconfig.json 2000 undefined Project: /user/username/projects/myproject/usage/tsconfig.json WatchType: Config file -Info 13 [16:00:42.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/dependency 1 undefined Config: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Wild card directory -Info 14 [16:00:43.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/dependency 1 undefined Config: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Wild card directory -Info 15 [16:00:44.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/decls 1 undefined Project: /user/username/projects/myproject/usage/tsconfig.json WatchType: Failed Lookup Locations -Info 16 [16:00:45.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/decls 1 undefined Project: /user/username/projects/myproject/usage/tsconfig.json WatchType: Failed Lookup Locations -Info 17 [16:00:46.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/dependency/fns.ts 500 undefined WatchType: Closed Script info -Info 18 [16:00:47.000] FileWatcher:: Added:: WatchInfo: /a/lib/lib.d.ts 500 undefined WatchType: Closed Script info -Info 19 [16:00:48.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/usage/node_modules/@types 1 undefined Project: /user/username/projects/myproject/usage/tsconfig.json WatchType: Type roots -Info 20 [16:00:49.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/usage/node_modules/@types 1 undefined Project: /user/username/projects/myproject/usage/tsconfig.json WatchType: Type roots -Info 21 [16:00:50.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/usage/tsconfig.json WatchType: Type roots -Info 22 [16:00:51.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/usage/tsconfig.json WatchType: Type roots -Info 23 [16:00:52.000] Finishing updateGraphWorker: Project: /user/username/projects/myproject/usage/tsconfig.json Version: 1 structureChanged: true structureIsReused:: Not Elapsed:: *ms -Info 24 [16:00:53.000] Project '/user/username/projects/myproject/usage/tsconfig.json' (Configured) -Info 25 [16:00:54.000] Files (3) +Info 12 [00:00:41.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/dependency/tsconfig.json 2000 undefined Project: /user/username/projects/myproject/usage/tsconfig.json WatchType: Config file +Info 13 [00:00:42.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/dependency 1 undefined Config: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Wild card directory +Info 14 [00:00:43.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/dependency 1 undefined Config: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Wild card directory +Info 15 [00:00:44.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/decls 1 undefined Project: /user/username/projects/myproject/usage/tsconfig.json WatchType: Failed Lookup Locations +Info 16 [00:00:45.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/decls 1 undefined Project: /user/username/projects/myproject/usage/tsconfig.json WatchType: Failed Lookup Locations +Info 17 [00:00:46.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/dependency/fns.ts 500 undefined WatchType: Closed Script info +Info 18 [00:00:47.000] FileWatcher:: Added:: WatchInfo: /a/lib/lib.d.ts 500 undefined WatchType: Closed Script info +Info 19 [00:00:48.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/usage/node_modules/@types 1 undefined Project: /user/username/projects/myproject/usage/tsconfig.json WatchType: Type roots +Info 20 [00:00:49.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/usage/node_modules/@types 1 undefined Project: /user/username/projects/myproject/usage/tsconfig.json WatchType: Type roots +Info 21 [00:00:50.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/usage/tsconfig.json WatchType: Type roots +Info 22 [00:00:51.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/usage/tsconfig.json WatchType: Type roots +Info 23 [00:00:52.000] Finishing updateGraphWorker: Project: /user/username/projects/myproject/usage/tsconfig.json Version: 1 structureChanged: true structureIsReused:: Not Elapsed:: *ms +Info 24 [00:00:53.000] Project '/user/username/projects/myproject/usage/tsconfig.json' (Configured) +Info 25 [00:00:54.000] Files (3) /a/lib/lib.d.ts /user/username/projects/myproject/dependency/fns.ts /user/username/projects/myproject/usage/usage.ts @@ -107,14 +107,14 @@ Info 25 [16:00:54.000] Files (3) usage.ts Matched by default include pattern '**/*' -Info 26 [16:00:55.000] ----------------------------------------------- -Info 27 [16:00:56.000] Project '/user/username/projects/myproject/usage/tsconfig.json' (Configured) -Info 27 [16:00:57.000] Files (3) +Info 26 [00:00:55.000] ----------------------------------------------- +Info 27 [00:00:56.000] Project '/user/username/projects/myproject/usage/tsconfig.json' (Configured) +Info 27 [00:00:57.000] Files (3) -Info 27 [16:00:58.000] ----------------------------------------------- -Info 27 [16:00:59.000] Open files: -Info 27 [16:01:00.000] FileName: /user/username/projects/myproject/usage/usage.ts ProjectRootPath: undefined -Info 27 [16:01:01.000] Projects: /user/username/projects/myproject/usage/tsconfig.json +Info 27 [00:00:58.000] ----------------------------------------------- +Info 27 [00:00:59.000] Open files: +Info 27 [00:01:00.000] FileName: /user/username/projects/myproject/usage/usage.ts ProjectRootPath: undefined +Info 27 [00:01:01.000] Projects: /user/username/projects/myproject/usage/tsconfig.json After request PolledWatches:: @@ -141,11 +141,11 @@ FsWatchesRecursive:: /user/username/projects/myproject/dependency: {} -Info 27 [16:01:02.000] response: +Info 27 [00:01:02.000] response: { "responseRequired": false } -Info 28 [16:01:03.000] request: +Info 28 [00:01:03.000] request: { "seq": 0, "type": "request", @@ -180,19 +180,19 @@ FsWatchesRecursive:: /user/username/projects/myproject/dependency: {} -Info 29 [16:01:04.000] FileWatcher:: Close:: WatchInfo: /user/username/projects/myproject/dependency/fns.ts 500 undefined WatchType: Closed Script info -Info 30 [16:01:05.000] Search path: /user/username/projects/myproject/dependency -Info 31 [16:01:06.000] For info: /user/username/projects/myproject/dependency/fns.ts :: Config file name: /user/username/projects/myproject/dependency/tsconfig.json -Info 32 [16:01:07.000] Creating configuration project /user/username/projects/myproject/dependency/tsconfig.json -Info 33 [16:01:08.000] Plugins were requested but not running in environment that supports 'require'. Nothing will be loaded -Info 34 [16:01:09.000] Starting updateGraphWorker: Project: /user/username/projects/myproject/dependency/tsconfig.json -Info 35 [16:01:10.000] 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 36 [16:01:11.000] 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 37 [16:01:12.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Type roots -Info 38 [16:01:13.000] 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 39 [16:01:14.000] Finishing updateGraphWorker: Project: /user/username/projects/myproject/dependency/tsconfig.json Version: 1 structureChanged: true structureIsReused:: Not Elapsed:: *ms -Info 40 [16:01:15.000] Project '/user/username/projects/myproject/dependency/tsconfig.json' (Configured) -Info 41 [16:01:16.000] Files (2) +Info 29 [00:01:04.000] FileWatcher:: Close:: WatchInfo: /user/username/projects/myproject/dependency/fns.ts 500 undefined WatchType: Closed Script info +Info 30 [00:01:05.000] Search path: /user/username/projects/myproject/dependency +Info 31 [00:01:06.000] For info: /user/username/projects/myproject/dependency/fns.ts :: Config file name: /user/username/projects/myproject/dependency/tsconfig.json +Info 32 [00:01:07.000] Creating configuration project /user/username/projects/myproject/dependency/tsconfig.json +Info 33 [00:01:08.000] Plugins were requested but not running in environment that supports 'require'. Nothing will be loaded +Info 34 [00:01:09.000] Starting updateGraphWorker: Project: /user/username/projects/myproject/dependency/tsconfig.json +Info 35 [00:01:10.000] 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 36 [00:01:11.000] 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 37 [00:01:12.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Type roots +Info 38 [00:01:13.000] 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 39 [00:01:14.000] Finishing updateGraphWorker: Project: /user/username/projects/myproject/dependency/tsconfig.json Version: 1 structureChanged: true structureIsReused:: Not Elapsed:: *ms +Info 40 [00:01:15.000] Project '/user/username/projects/myproject/dependency/tsconfig.json' (Configured) +Info 41 [00:01:16.000] Files (2) /a/lib/lib.d.ts /user/username/projects/myproject/dependency/fns.ts @@ -202,22 +202,22 @@ Info 41 [16:01:16.000] Files (2) fns.ts Matched by default include pattern '**/*' -Info 42 [16:01:17.000] ----------------------------------------------- -Info 43 [16:01:18.000] Search path: /user/username/projects/myproject/dependency -Info 44 [16:01:19.000] For info: /user/username/projects/myproject/dependency/tsconfig.json :: No config files found. -Info 45 [16:01:20.000] Project '/user/username/projects/myproject/usage/tsconfig.json' (Configured) -Info 45 [16:01:21.000] Files (3) - -Info 45 [16:01:22.000] ----------------------------------------------- -Info 45 [16:01:23.000] Project '/user/username/projects/myproject/dependency/tsconfig.json' (Configured) -Info 45 [16:01:24.000] Files (2) - -Info 45 [16:01:25.000] ----------------------------------------------- -Info 45 [16:01:26.000] Open files: -Info 45 [16:01:27.000] FileName: /user/username/projects/myproject/usage/usage.ts ProjectRootPath: undefined -Info 45 [16:01:28.000] Projects: /user/username/projects/myproject/usage/tsconfig.json -Info 45 [16:01:29.000] FileName: /user/username/projects/myproject/dependency/fns.ts ProjectRootPath: undefined -Info 45 [16:01:30.000] Projects: /user/username/projects/myproject/usage/tsconfig.json,/user/username/projects/myproject/dependency/tsconfig.json +Info 42 [00:01:17.000] ----------------------------------------------- +Info 43 [00:01:18.000] Search path: /user/username/projects/myproject/dependency +Info 44 [00:01:19.000] For info: /user/username/projects/myproject/dependency/tsconfig.json :: No config files found. +Info 45 [00:01:20.000] Project '/user/username/projects/myproject/usage/tsconfig.json' (Configured) +Info 45 [00:01:21.000] Files (3) + +Info 45 [00:01:22.000] ----------------------------------------------- +Info 45 [00:01:23.000] Project '/user/username/projects/myproject/dependency/tsconfig.json' (Configured) +Info 45 [00:01:24.000] Files (2) + +Info 45 [00:01:25.000] ----------------------------------------------- +Info 45 [00:01:26.000] Open files: +Info 45 [00:01:27.000] FileName: /user/username/projects/myproject/usage/usage.ts ProjectRootPath: undefined +Info 45 [00:01:28.000] Projects: /user/username/projects/myproject/usage/tsconfig.json +Info 45 [00:01:29.000] FileName: /user/username/projects/myproject/dependency/fns.ts ProjectRootPath: undefined +Info 45 [00:01:30.000] Projects: /user/username/projects/myproject/usage/tsconfig.json,/user/username/projects/myproject/dependency/tsconfig.json After request PolledWatches:: @@ -244,11 +244,11 @@ FsWatchesRecursive:: /user/username/projects/myproject/dependency: {} -Info 45 [16:01:31.000] response: +Info 45 [00:01:31.000] response: { "responseRequired": false } -Info 46 [16:01:32.000] request: +Info 46 [00:01:32.000] request: { "command": "compileOnSaveAffectedFileList", "arguments": { @@ -283,34 +283,34 @@ FsWatchesRecursive:: /user/username/projects/myproject/dependency: {} -Info 47 [16:01:33.000] Before ensureProjectForOpenFiles: -Info 48 [16:01:34.000] Project '/user/username/projects/myproject/usage/tsconfig.json' (Configured) -Info 48 [16:01:35.000] Files (3) - -Info 48 [16:01:36.000] ----------------------------------------------- -Info 48 [16:01:37.000] Project '/user/username/projects/myproject/dependency/tsconfig.json' (Configured) -Info 48 [16:01:38.000] Files (2) - -Info 48 [16:01:39.000] ----------------------------------------------- -Info 48 [16:01:40.000] Open files: -Info 48 [16:01:41.000] FileName: /user/username/projects/myproject/usage/usage.ts ProjectRootPath: undefined -Info 48 [16:01:42.000] Projects: /user/username/projects/myproject/usage/tsconfig.json -Info 48 [16:01:43.000] FileName: /user/username/projects/myproject/dependency/fns.ts ProjectRootPath: undefined -Info 48 [16:01:44.000] Projects: /user/username/projects/myproject/usage/tsconfig.json,/user/username/projects/myproject/dependency/tsconfig.json -Info 48 [16:01:45.000] After ensureProjectForOpenFiles: -Info 49 [16:01:46.000] Project '/user/username/projects/myproject/usage/tsconfig.json' (Configured) -Info 49 [16:01:47.000] Files (3) - -Info 49 [16:01:48.000] ----------------------------------------------- -Info 49 [16:01:49.000] Project '/user/username/projects/myproject/dependency/tsconfig.json' (Configured) -Info 49 [16:01:50.000] Files (2) - -Info 49 [16:01:51.000] ----------------------------------------------- -Info 49 [16:01:52.000] Open files: -Info 49 [16:01:53.000] FileName: /user/username/projects/myproject/usage/usage.ts ProjectRootPath: undefined -Info 49 [16:01:54.000] Projects: /user/username/projects/myproject/usage/tsconfig.json -Info 49 [16:01:55.000] FileName: /user/username/projects/myproject/dependency/fns.ts ProjectRootPath: undefined -Info 49 [16:01:56.000] Projects: /user/username/projects/myproject/usage/tsconfig.json,/user/username/projects/myproject/dependency/tsconfig.json +Info 47 [00:01:33.000] Before ensureProjectForOpenFiles: +Info 48 [00:01:34.000] Project '/user/username/projects/myproject/usage/tsconfig.json' (Configured) +Info 48 [00:01:35.000] Files (3) + +Info 48 [00:01:36.000] ----------------------------------------------- +Info 48 [00:01:37.000] Project '/user/username/projects/myproject/dependency/tsconfig.json' (Configured) +Info 48 [00:01:38.000] Files (2) + +Info 48 [00:01:39.000] ----------------------------------------------- +Info 48 [00:01:40.000] Open files: +Info 48 [00:01:41.000] FileName: /user/username/projects/myproject/usage/usage.ts ProjectRootPath: undefined +Info 48 [00:01:42.000] Projects: /user/username/projects/myproject/usage/tsconfig.json +Info 48 [00:01:43.000] FileName: /user/username/projects/myproject/dependency/fns.ts ProjectRootPath: undefined +Info 48 [00:01:44.000] Projects: /user/username/projects/myproject/usage/tsconfig.json,/user/username/projects/myproject/dependency/tsconfig.json +Info 48 [00:01:45.000] After ensureProjectForOpenFiles: +Info 49 [00:01:46.000] Project '/user/username/projects/myproject/usage/tsconfig.json' (Configured) +Info 49 [00:01:47.000] Files (3) + +Info 49 [00:01:48.000] ----------------------------------------------- +Info 49 [00:01:49.000] Project '/user/username/projects/myproject/dependency/tsconfig.json' (Configured) +Info 49 [00:01:50.000] Files (2) + +Info 49 [00:01:51.000] ----------------------------------------------- +Info 49 [00:01:52.000] Open files: +Info 49 [00:01:53.000] FileName: /user/username/projects/myproject/usage/usage.ts ProjectRootPath: undefined +Info 49 [00:01:54.000] Projects: /user/username/projects/myproject/usage/tsconfig.json +Info 49 [00:01:55.000] FileName: /user/username/projects/myproject/dependency/fns.ts ProjectRootPath: undefined +Info 49 [00:01:56.000] Projects: /user/username/projects/myproject/usage/tsconfig.json,/user/username/projects/myproject/dependency/tsconfig.json After request PolledWatches:: @@ -337,7 +337,7 @@ FsWatchesRecursive:: /user/username/projects/myproject/dependency: {} -Info 49 [16:01:57.000] response: +Info 49 [00:01:57.000] response: { "response": [ { @@ -357,7 +357,7 @@ Info 49 [16:01:57.000] response: ], "responseRequired": true } -Info 50 [16:01:58.000] request: +Info 50 [00:01:58.000] request: { "command": "compileOnSaveEmitFile", "arguments": { @@ -392,18 +392,18 @@ FsWatchesRecursive:: /user/username/projects/myproject/dependency: {} -Info 51 [16:02:01.000] DirectoryWatcher:: Triggered with /user/username/projects/myproject/dependency/fns.js :: WatchInfo: /user/username/projects/myproject/dependency 1 undefined Config: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Wild card directory -Info 52 [16:02:02.000] Project: /user/username/projects/myproject/dependency/tsconfig.json Detected file add/remove of non supported extension: /user/username/projects/myproject/dependency/fns.js -Info 53 [16:02:03.000] Elapsed:: *ms DirectoryWatcher:: Triggered with /user/username/projects/myproject/dependency/fns.js :: WatchInfo: /user/username/projects/myproject/dependency 1 undefined Config: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Wild card directory -Info 54 [16:02:07.000] DirectoryWatcher:: Triggered with /user/username/projects/myproject/decls :: WatchInfo: /user/username/projects/myproject/decls 1 undefined Project: /user/username/projects/myproject/usage/tsconfig.json WatchType: Failed Lookup Locations -Info 55 [16:02:08.000] Scheduled: /user/username/projects/myproject/usage/tsconfig.jsonFailedLookupInvalidation -Info 56 [16:02:09.000] Elapsed:: *ms DirectoryWatcher:: Triggered with /user/username/projects/myproject/decls :: WatchInfo: /user/username/projects/myproject/decls 1 undefined Project: /user/username/projects/myproject/usage/tsconfig.json WatchType: Failed Lookup Locations -Info 57 [16:02:10.000] DirectoryWatcher:: Triggered with /user/username/projects/myproject/decls :: WatchInfo: /user/username/projects/myproject/decls 1 undefined Project: /user/username/projects/myproject/usage/tsconfig.json WatchType: Failed Lookup Locations -Info 58 [16:02:11.000] Scheduled: /user/username/projects/myproject/usage/tsconfig.jsonFailedLookupInvalidation, Cancelled earlier one -Info 59 [16:02:12.000] Elapsed:: *ms DirectoryWatcher:: Triggered with /user/username/projects/myproject/decls :: WatchInfo: /user/username/projects/myproject/decls 1 undefined Project: /user/username/projects/myproject/usage/tsconfig.json WatchType: Failed Lookup Locations -Info 60 [16:02:15.000] DirectoryWatcher:: Triggered with /user/username/projects/myproject/decls/fns.d.ts :: WatchInfo: /user/username/projects/myproject/decls 1 undefined Project: /user/username/projects/myproject/usage/tsconfig.json WatchType: Failed Lookup Locations -Info 61 [16:02:16.000] Scheduled: /user/username/projects/myproject/usage/tsconfig.jsonFailedLookupInvalidation, Cancelled earlier one -Info 62 [16:02:17.000] Elapsed:: *ms DirectoryWatcher:: Triggered with /user/username/projects/myproject/decls/fns.d.ts :: WatchInfo: /user/username/projects/myproject/decls 1 undefined Project: /user/username/projects/myproject/usage/tsconfig.json WatchType: Failed Lookup Locations +Info 51 [00:02:01.000] DirectoryWatcher:: Triggered with /user/username/projects/myproject/dependency/fns.js :: WatchInfo: /user/username/projects/myproject/dependency 1 undefined Config: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Wild card directory +Info 52 [00:02:02.000] Project: /user/username/projects/myproject/dependency/tsconfig.json Detected file add/remove of non supported extension: /user/username/projects/myproject/dependency/fns.js +Info 53 [00:02:03.000] Elapsed:: *ms DirectoryWatcher:: Triggered with /user/username/projects/myproject/dependency/fns.js :: WatchInfo: /user/username/projects/myproject/dependency 1 undefined Config: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Wild card directory +Info 54 [00:02:07.000] DirectoryWatcher:: Triggered with /user/username/projects/myproject/decls :: WatchInfo: /user/username/projects/myproject/decls 1 undefined Project: /user/username/projects/myproject/usage/tsconfig.json WatchType: Failed Lookup Locations +Info 55 [00:02:08.000] Scheduled: /user/username/projects/myproject/usage/tsconfig.jsonFailedLookupInvalidation +Info 56 [00:02:09.000] Elapsed:: *ms DirectoryWatcher:: Triggered with /user/username/projects/myproject/decls :: WatchInfo: /user/username/projects/myproject/decls 1 undefined Project: /user/username/projects/myproject/usage/tsconfig.json WatchType: Failed Lookup Locations +Info 57 [00:02:10.000] DirectoryWatcher:: Triggered with /user/username/projects/myproject/decls :: WatchInfo: /user/username/projects/myproject/decls 1 undefined Project: /user/username/projects/myproject/usage/tsconfig.json WatchType: Failed Lookup Locations +Info 58 [00:02:11.000] Scheduled: /user/username/projects/myproject/usage/tsconfig.jsonFailedLookupInvalidation, Cancelled earlier one +Info 59 [00:02:12.000] Elapsed:: *ms DirectoryWatcher:: Triggered with /user/username/projects/myproject/decls :: WatchInfo: /user/username/projects/myproject/decls 1 undefined Project: /user/username/projects/myproject/usage/tsconfig.json WatchType: Failed Lookup Locations +Info 60 [00:02:15.000] DirectoryWatcher:: Triggered with /user/username/projects/myproject/decls/fns.d.ts :: WatchInfo: /user/username/projects/myproject/decls 1 undefined Project: /user/username/projects/myproject/usage/tsconfig.json WatchType: Failed Lookup Locations +Info 61 [00:02:16.000] Scheduled: /user/username/projects/myproject/usage/tsconfig.jsonFailedLookupInvalidation, Cancelled earlier one +Info 62 [00:02:17.000] Elapsed:: *ms DirectoryWatcher:: Triggered with /user/username/projects/myproject/decls/fns.d.ts :: WatchInfo: /user/username/projects/myproject/decls 1 undefined Project: /user/username/projects/myproject/usage/tsconfig.json WatchType: Failed Lookup Locations After request //// [/user/username/projects/myproject/dependency/fns.js] "use strict"; @@ -445,12 +445,12 @@ FsWatchesRecursive:: /user/username/projects/myproject/decls: {} -Info 63 [16:02:18.000] response: +Info 63 [00:02:18.000] response: { "response": true, "responseRequired": true } -Info 64 [16:02:19.000] request: +Info 64 [00:02:19.000] request: { "command": "emit-output", "arguments": { @@ -511,7 +511,7 @@ FsWatchesRecursive:: /user/username/projects/myproject/decls: {} -Info 65 [16:02:20.000] response: +Info 65 [00:02:20.000] response: { "response": { "outputFiles": [ 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 aa3f3e0114a1f..1c4d33fb3eb54 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 @@ -1,5 +1,5 @@ -Info 0 [16:00:29.000] Provided types map file "/a/lib/typesMap.json" doesn't exist -Info 1 [16:00:30.000] request: +Info 0 [00:00:29.000] Provided types map file "/a/lib/typesMap.json" doesn't exist +Info 1 [00:00:30.000] request: { "seq": 0, "type": "request", @@ -49,11 +49,11 @@ FsWatches:: FsWatchesRecursive:: -Info 2 [16:00:31.000] Search path: /user/username/projects/myproject/usage -Info 3 [16:00:32.000] For info: /user/username/projects/myproject/usage/usage.ts :: Config file name: /user/username/projects/myproject/usage/tsconfig.json -Info 4 [16:00:33.000] Creating configuration project /user/username/projects/myproject/usage/tsconfig.json -Info 5 [16:00:34.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/usage/tsconfig.json 2000 undefined Project: /user/username/projects/myproject/usage/tsconfig.json WatchType: Config file -Info 6 [16:00:35.000] Config: /user/username/projects/myproject/usage/tsconfig.json : { +Info 2 [00:00:31.000] Search path: /user/username/projects/myproject/usage +Info 3 [00:00:32.000] For info: /user/username/projects/myproject/usage/usage.ts :: Config file name: /user/username/projects/myproject/usage/tsconfig.json +Info 4 [00:00:33.000] Creating configuration project /user/username/projects/myproject/usage/tsconfig.json +Info 5 [00:00:34.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/usage/tsconfig.json 2000 undefined Project: /user/username/projects/myproject/usage/tsconfig.json WatchType: Config file +Info 6 [00:00:35.000] Config: /user/username/projects/myproject/usage/tsconfig.json : { "rootNames": [ "/user/username/projects/myproject/usage/usage.ts" ], @@ -67,11 +67,11 @@ Info 6 [16:00:35.000] Config: /user/username/projects/myproject/usage/tsconfi } ] } -Info 7 [16:00:36.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/usage 1 undefined Config: /user/username/projects/myproject/usage/tsconfig.json WatchType: Wild card directory -Info 8 [16:00:37.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/usage 1 undefined Config: /user/username/projects/myproject/usage/tsconfig.json WatchType: Wild card directory -Info 9 [16:00:38.000] Plugins were requested but not running in environment that supports 'require'. Nothing will be loaded -Info 10 [16:00:39.000] Starting updateGraphWorker: Project: /user/username/projects/myproject/usage/tsconfig.json -Info 11 [16:00:40.000] Config: /user/username/projects/myproject/dependency/tsconfig.json : { +Info 7 [00:00:36.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/usage 1 undefined Config: /user/username/projects/myproject/usage/tsconfig.json WatchType: Wild card directory +Info 8 [00:00:37.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/usage 1 undefined Config: /user/username/projects/myproject/usage/tsconfig.json WatchType: Wild card directory +Info 9 [00:00:38.000] Plugins were requested but not running in environment that supports 'require'. Nothing will be loaded +Info 10 [00:00:39.000] Starting updateGraphWorker: Project: /user/username/projects/myproject/usage/tsconfig.json +Info 11 [00:00:40.000] Config: /user/username/projects/myproject/dependency/tsconfig.json : { "rootNames": [ "/user/username/projects/myproject/dependency/fns.ts" ], @@ -81,20 +81,20 @@ Info 11 [16:00:40.000] Config: /user/username/projects/myproject/dependency/ts "configFilePath": "/user/username/projects/myproject/dependency/tsconfig.json" } } -Info 12 [16:00:41.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/dependency/tsconfig.json 2000 undefined Project: /user/username/projects/myproject/usage/tsconfig.json WatchType: Config file -Info 13 [16:00:42.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/dependency 1 undefined Config: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Wild card directory -Info 14 [16:00:43.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/dependency 1 undefined Config: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Wild card directory -Info 15 [16:00:44.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/decls 1 undefined Project: /user/username/projects/myproject/usage/tsconfig.json WatchType: Failed Lookup Locations -Info 16 [16:00:45.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/decls 1 undefined Project: /user/username/projects/myproject/usage/tsconfig.json WatchType: Failed Lookup Locations -Info 17 [16:00:46.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/dependency/fns.ts 500 undefined WatchType: Closed Script info -Info 18 [16:00:47.000] FileWatcher:: Added:: WatchInfo: /a/lib/lib.d.ts 500 undefined WatchType: Closed Script info -Info 19 [16:00:48.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/usage/node_modules/@types 1 undefined Project: /user/username/projects/myproject/usage/tsconfig.json WatchType: Type roots -Info 20 [16:00:49.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/usage/node_modules/@types 1 undefined Project: /user/username/projects/myproject/usage/tsconfig.json WatchType: Type roots -Info 21 [16:00:50.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/usage/tsconfig.json WatchType: Type roots -Info 22 [16:00:51.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/usage/tsconfig.json WatchType: Type roots -Info 23 [16:00:52.000] Finishing updateGraphWorker: Project: /user/username/projects/myproject/usage/tsconfig.json Version: 1 structureChanged: true structureIsReused:: Not Elapsed:: *ms -Info 24 [16:00:53.000] Project '/user/username/projects/myproject/usage/tsconfig.json' (Configured) -Info 25 [16:00:54.000] Files (3) +Info 12 [00:00:41.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/dependency/tsconfig.json 2000 undefined Project: /user/username/projects/myproject/usage/tsconfig.json WatchType: Config file +Info 13 [00:00:42.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/dependency 1 undefined Config: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Wild card directory +Info 14 [00:00:43.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/dependency 1 undefined Config: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Wild card directory +Info 15 [00:00:44.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/decls 1 undefined Project: /user/username/projects/myproject/usage/tsconfig.json WatchType: Failed Lookup Locations +Info 16 [00:00:45.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/decls 1 undefined Project: /user/username/projects/myproject/usage/tsconfig.json WatchType: Failed Lookup Locations +Info 17 [00:00:46.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/dependency/fns.ts 500 undefined WatchType: Closed Script info +Info 18 [00:00:47.000] FileWatcher:: Added:: WatchInfo: /a/lib/lib.d.ts 500 undefined WatchType: Closed Script info +Info 19 [00:00:48.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/usage/node_modules/@types 1 undefined Project: /user/username/projects/myproject/usage/tsconfig.json WatchType: Type roots +Info 20 [00:00:49.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/usage/node_modules/@types 1 undefined Project: /user/username/projects/myproject/usage/tsconfig.json WatchType: Type roots +Info 21 [00:00:50.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/usage/tsconfig.json WatchType: Type roots +Info 22 [00:00:51.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/usage/tsconfig.json WatchType: Type roots +Info 23 [00:00:52.000] Finishing updateGraphWorker: Project: /user/username/projects/myproject/usage/tsconfig.json Version: 1 structureChanged: true structureIsReused:: Not Elapsed:: *ms +Info 24 [00:00:53.000] Project '/user/username/projects/myproject/usage/tsconfig.json' (Configured) +Info 25 [00:00:54.000] Files (3) /a/lib/lib.d.ts /user/username/projects/myproject/dependency/fns.ts /user/username/projects/myproject/usage/usage.ts @@ -107,14 +107,14 @@ Info 25 [16:00:54.000] Files (3) usage.ts Matched by default include pattern '**/*' -Info 26 [16:00:55.000] ----------------------------------------------- -Info 27 [16:00:56.000] Project '/user/username/projects/myproject/usage/tsconfig.json' (Configured) -Info 27 [16:00:57.000] Files (3) +Info 26 [00:00:55.000] ----------------------------------------------- +Info 27 [00:00:56.000] Project '/user/username/projects/myproject/usage/tsconfig.json' (Configured) +Info 27 [00:00:57.000] Files (3) -Info 27 [16:00:58.000] ----------------------------------------------- -Info 27 [16:00:59.000] Open files: -Info 27 [16:01:00.000] FileName: /user/username/projects/myproject/usage/usage.ts ProjectRootPath: undefined -Info 27 [16:01:01.000] Projects: /user/username/projects/myproject/usage/tsconfig.json +Info 27 [00:00:58.000] ----------------------------------------------- +Info 27 [00:00:59.000] Open files: +Info 27 [00:01:00.000] FileName: /user/username/projects/myproject/usage/usage.ts ProjectRootPath: undefined +Info 27 [00:01:01.000] Projects: /user/username/projects/myproject/usage/tsconfig.json After request PolledWatches:: @@ -141,11 +141,11 @@ FsWatchesRecursive:: /user/username/projects/myproject/dependency: {} -Info 27 [16:01:02.000] response: +Info 27 [00:01:02.000] response: { "responseRequired": false } -Info 28 [16:01:03.000] request: +Info 28 [00:01:03.000] request: { "seq": 0, "type": "request", @@ -180,19 +180,19 @@ FsWatchesRecursive:: /user/username/projects/myproject/dependency: {} -Info 29 [16:01:04.000] FileWatcher:: Close:: WatchInfo: /user/username/projects/myproject/dependency/fns.ts 500 undefined WatchType: Closed Script info -Info 30 [16:01:05.000] Search path: /user/username/projects/myproject/dependency -Info 31 [16:01:06.000] For info: /user/username/projects/myproject/dependency/fns.ts :: Config file name: /user/username/projects/myproject/dependency/tsconfig.json -Info 32 [16:01:07.000] Creating configuration project /user/username/projects/myproject/dependency/tsconfig.json -Info 33 [16:01:08.000] Plugins were requested but not running in environment that supports 'require'. Nothing will be loaded -Info 34 [16:01:09.000] Starting updateGraphWorker: Project: /user/username/projects/myproject/dependency/tsconfig.json -Info 35 [16:01:10.000] 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 36 [16:01:11.000] 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 37 [16:01:12.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Type roots -Info 38 [16:01:13.000] 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 39 [16:01:14.000] Finishing updateGraphWorker: Project: /user/username/projects/myproject/dependency/tsconfig.json Version: 1 structureChanged: true structureIsReused:: Not Elapsed:: *ms -Info 40 [16:01:15.000] Project '/user/username/projects/myproject/dependency/tsconfig.json' (Configured) -Info 41 [16:01:16.000] Files (2) +Info 29 [00:01:04.000] FileWatcher:: Close:: WatchInfo: /user/username/projects/myproject/dependency/fns.ts 500 undefined WatchType: Closed Script info +Info 30 [00:01:05.000] Search path: /user/username/projects/myproject/dependency +Info 31 [00:01:06.000] For info: /user/username/projects/myproject/dependency/fns.ts :: Config file name: /user/username/projects/myproject/dependency/tsconfig.json +Info 32 [00:01:07.000] Creating configuration project /user/username/projects/myproject/dependency/tsconfig.json +Info 33 [00:01:08.000] Plugins were requested but not running in environment that supports 'require'. Nothing will be loaded +Info 34 [00:01:09.000] Starting updateGraphWorker: Project: /user/username/projects/myproject/dependency/tsconfig.json +Info 35 [00:01:10.000] 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 36 [00:01:11.000] 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 37 [00:01:12.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Type roots +Info 38 [00:01:13.000] 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 39 [00:01:14.000] Finishing updateGraphWorker: Project: /user/username/projects/myproject/dependency/tsconfig.json Version: 1 structureChanged: true structureIsReused:: Not Elapsed:: *ms +Info 40 [00:01:15.000] Project '/user/username/projects/myproject/dependency/tsconfig.json' (Configured) +Info 41 [00:01:16.000] Files (2) /a/lib/lib.d.ts /user/username/projects/myproject/dependency/fns.ts @@ -202,22 +202,22 @@ Info 41 [16:01:16.000] Files (2) fns.ts Matched by default include pattern '**/*' -Info 42 [16:01:17.000] ----------------------------------------------- -Info 43 [16:01:18.000] Search path: /user/username/projects/myproject/dependency -Info 44 [16:01:19.000] For info: /user/username/projects/myproject/dependency/tsconfig.json :: No config files found. -Info 45 [16:01:20.000] Project '/user/username/projects/myproject/usage/tsconfig.json' (Configured) -Info 45 [16:01:21.000] Files (3) - -Info 45 [16:01:22.000] ----------------------------------------------- -Info 45 [16:01:23.000] Project '/user/username/projects/myproject/dependency/tsconfig.json' (Configured) -Info 45 [16:01:24.000] Files (2) - -Info 45 [16:01:25.000] ----------------------------------------------- -Info 45 [16:01:26.000] Open files: -Info 45 [16:01:27.000] FileName: /user/username/projects/myproject/usage/usage.ts ProjectRootPath: undefined -Info 45 [16:01:28.000] Projects: /user/username/projects/myproject/usage/tsconfig.json -Info 45 [16:01:29.000] FileName: /user/username/projects/myproject/dependency/fns.ts ProjectRootPath: undefined -Info 45 [16:01:30.000] Projects: /user/username/projects/myproject/usage/tsconfig.json,/user/username/projects/myproject/dependency/tsconfig.json +Info 42 [00:01:17.000] ----------------------------------------------- +Info 43 [00:01:18.000] Search path: /user/username/projects/myproject/dependency +Info 44 [00:01:19.000] For info: /user/username/projects/myproject/dependency/tsconfig.json :: No config files found. +Info 45 [00:01:20.000] Project '/user/username/projects/myproject/usage/tsconfig.json' (Configured) +Info 45 [00:01:21.000] Files (3) + +Info 45 [00:01:22.000] ----------------------------------------------- +Info 45 [00:01:23.000] Project '/user/username/projects/myproject/dependency/tsconfig.json' (Configured) +Info 45 [00:01:24.000] Files (2) + +Info 45 [00:01:25.000] ----------------------------------------------- +Info 45 [00:01:26.000] Open files: +Info 45 [00:01:27.000] FileName: /user/username/projects/myproject/usage/usage.ts ProjectRootPath: undefined +Info 45 [00:01:28.000] Projects: /user/username/projects/myproject/usage/tsconfig.json +Info 45 [00:01:29.000] FileName: /user/username/projects/myproject/dependency/fns.ts ProjectRootPath: undefined +Info 45 [00:01:30.000] Projects: /user/username/projects/myproject/usage/tsconfig.json,/user/username/projects/myproject/dependency/tsconfig.json After request PolledWatches:: @@ -244,11 +244,11 @@ FsWatchesRecursive:: /user/username/projects/myproject/dependency: {} -Info 45 [16:01:31.000] response: +Info 45 [00:01:31.000] response: { "responseRequired": false } -Info 46 [16:01:32.000] request: +Info 46 [00:01:32.000] request: { "command": "compileOnSaveAffectedFileList", "arguments": { @@ -283,34 +283,34 @@ FsWatchesRecursive:: /user/username/projects/myproject/dependency: {} -Info 47 [16:01:33.000] Before ensureProjectForOpenFiles: -Info 48 [16:01:34.000] Project '/user/username/projects/myproject/usage/tsconfig.json' (Configured) -Info 48 [16:01:35.000] Files (3) - -Info 48 [16:01:36.000] ----------------------------------------------- -Info 48 [16:01:37.000] Project '/user/username/projects/myproject/dependency/tsconfig.json' (Configured) -Info 48 [16:01:38.000] Files (2) - -Info 48 [16:01:39.000] ----------------------------------------------- -Info 48 [16:01:40.000] Open files: -Info 48 [16:01:41.000] FileName: /user/username/projects/myproject/usage/usage.ts ProjectRootPath: undefined -Info 48 [16:01:42.000] Projects: /user/username/projects/myproject/usage/tsconfig.json -Info 48 [16:01:43.000] FileName: /user/username/projects/myproject/dependency/fns.ts ProjectRootPath: undefined -Info 48 [16:01:44.000] Projects: /user/username/projects/myproject/usage/tsconfig.json,/user/username/projects/myproject/dependency/tsconfig.json -Info 48 [16:01:45.000] After ensureProjectForOpenFiles: -Info 49 [16:01:46.000] Project '/user/username/projects/myproject/usage/tsconfig.json' (Configured) -Info 49 [16:01:47.000] Files (3) - -Info 49 [16:01:48.000] ----------------------------------------------- -Info 49 [16:01:49.000] Project '/user/username/projects/myproject/dependency/tsconfig.json' (Configured) -Info 49 [16:01:50.000] Files (2) - -Info 49 [16:01:51.000] ----------------------------------------------- -Info 49 [16:01:52.000] Open files: -Info 49 [16:01:53.000] FileName: /user/username/projects/myproject/usage/usage.ts ProjectRootPath: undefined -Info 49 [16:01:54.000] Projects: /user/username/projects/myproject/usage/tsconfig.json -Info 49 [16:01:55.000] FileName: /user/username/projects/myproject/dependency/fns.ts ProjectRootPath: undefined -Info 49 [16:01:56.000] Projects: /user/username/projects/myproject/usage/tsconfig.json,/user/username/projects/myproject/dependency/tsconfig.json +Info 47 [00:01:33.000] Before ensureProjectForOpenFiles: +Info 48 [00:01:34.000] Project '/user/username/projects/myproject/usage/tsconfig.json' (Configured) +Info 48 [00:01:35.000] Files (3) + +Info 48 [00:01:36.000] ----------------------------------------------- +Info 48 [00:01:37.000] Project '/user/username/projects/myproject/dependency/tsconfig.json' (Configured) +Info 48 [00:01:38.000] Files (2) + +Info 48 [00:01:39.000] ----------------------------------------------- +Info 48 [00:01:40.000] Open files: +Info 48 [00:01:41.000] FileName: /user/username/projects/myproject/usage/usage.ts ProjectRootPath: undefined +Info 48 [00:01:42.000] Projects: /user/username/projects/myproject/usage/tsconfig.json +Info 48 [00:01:43.000] FileName: /user/username/projects/myproject/dependency/fns.ts ProjectRootPath: undefined +Info 48 [00:01:44.000] Projects: /user/username/projects/myproject/usage/tsconfig.json,/user/username/projects/myproject/dependency/tsconfig.json +Info 48 [00:01:45.000] After ensureProjectForOpenFiles: +Info 49 [00:01:46.000] Project '/user/username/projects/myproject/usage/tsconfig.json' (Configured) +Info 49 [00:01:47.000] Files (3) + +Info 49 [00:01:48.000] ----------------------------------------------- +Info 49 [00:01:49.000] Project '/user/username/projects/myproject/dependency/tsconfig.json' (Configured) +Info 49 [00:01:50.000] Files (2) + +Info 49 [00:01:51.000] ----------------------------------------------- +Info 49 [00:01:52.000] Open files: +Info 49 [00:01:53.000] FileName: /user/username/projects/myproject/usage/usage.ts ProjectRootPath: undefined +Info 49 [00:01:54.000] Projects: /user/username/projects/myproject/usage/tsconfig.json +Info 49 [00:01:55.000] FileName: /user/username/projects/myproject/dependency/fns.ts ProjectRootPath: undefined +Info 49 [00:01:56.000] Projects: /user/username/projects/myproject/usage/tsconfig.json,/user/username/projects/myproject/dependency/tsconfig.json After request PolledWatches:: @@ -337,7 +337,7 @@ FsWatchesRecursive:: /user/username/projects/myproject/dependency: {} -Info 49 [16:01:57.000] response: +Info 49 [00:01:57.000] response: { "response": [ { @@ -357,7 +357,7 @@ Info 49 [16:01:57.000] response: ], "responseRequired": true } -Info 50 [16:01:58.000] request: +Info 50 [00:01:58.000] request: { "command": "change", "arguments": { @@ -423,11 +423,11 @@ FsWatchesRecursive:: /user/username/projects/myproject/dependency: {} -Info 51 [16:01:59.000] response: +Info 51 [00:01:59.000] response: { "responseRequired": false } -Info 52 [16:02:00.000] request: +Info 52 [00:02:00.000] request: { "command": "compileOnSaveAffectedFileList", "arguments": { @@ -462,40 +462,40 @@ FsWatchesRecursive:: /user/username/projects/myproject/dependency: {} -Info 53 [16:02:01.000] Starting updateGraphWorker: Project: /user/username/projects/myproject/usage/tsconfig.json -Info 54 [16:02:02.000] Finishing updateGraphWorker: Project: /user/username/projects/myproject/usage/tsconfig.json Version: 2 structureChanged: false structureIsReused:: Completely Elapsed:: *ms -Info 55 [16:02:03.000] Different program with same set of files -Info 56 [16:02:04.000] Starting updateGraphWorker: Project: /user/username/projects/myproject/dependency/tsconfig.json -Info 57 [16:02:05.000] Finishing updateGraphWorker: Project: /user/username/projects/myproject/dependency/tsconfig.json Version: 2 structureChanged: false structureIsReused:: Completely Elapsed:: *ms -Info 58 [16:02:06.000] Different program with same set of files -Info 59 [16:02:07.000] Before ensureProjectForOpenFiles: -Info 60 [16:02:08.000] Project '/user/username/projects/myproject/usage/tsconfig.json' (Configured) -Info 60 [16:02:09.000] Files (3) - -Info 60 [16:02:10.000] ----------------------------------------------- -Info 60 [16:02:11.000] Project '/user/username/projects/myproject/dependency/tsconfig.json' (Configured) -Info 60 [16:02:12.000] Files (2) - -Info 60 [16:02:13.000] ----------------------------------------------- -Info 60 [16:02:14.000] Open files: -Info 60 [16:02:15.000] FileName: /user/username/projects/myproject/usage/usage.ts ProjectRootPath: undefined -Info 60 [16:02:16.000] Projects: /user/username/projects/myproject/usage/tsconfig.json -Info 60 [16:02:17.000] FileName: /user/username/projects/myproject/dependency/fns.ts ProjectRootPath: undefined -Info 60 [16:02:18.000] Projects: /user/username/projects/myproject/usage/tsconfig.json,/user/username/projects/myproject/dependency/tsconfig.json -Info 60 [16:02:19.000] After ensureProjectForOpenFiles: -Info 61 [16:02:20.000] Project '/user/username/projects/myproject/usage/tsconfig.json' (Configured) -Info 61 [16:02:21.000] Files (3) - -Info 61 [16:02:22.000] ----------------------------------------------- -Info 61 [16:02:23.000] Project '/user/username/projects/myproject/dependency/tsconfig.json' (Configured) -Info 61 [16:02:24.000] Files (2) - -Info 61 [16:02:25.000] ----------------------------------------------- -Info 61 [16:02:26.000] Open files: -Info 61 [16:02:27.000] FileName: /user/username/projects/myproject/usage/usage.ts ProjectRootPath: undefined -Info 61 [16:02:28.000] Projects: /user/username/projects/myproject/usage/tsconfig.json -Info 61 [16:02:29.000] FileName: /user/username/projects/myproject/dependency/fns.ts ProjectRootPath: undefined -Info 61 [16:02:30.000] Projects: /user/username/projects/myproject/usage/tsconfig.json,/user/username/projects/myproject/dependency/tsconfig.json +Info 53 [00:02:01.000] Starting updateGraphWorker: Project: /user/username/projects/myproject/usage/tsconfig.json +Info 54 [00:02:02.000] Finishing updateGraphWorker: Project: /user/username/projects/myproject/usage/tsconfig.json Version: 2 structureChanged: false structureIsReused:: Completely Elapsed:: *ms +Info 55 [00:02:03.000] Different program with same set of files +Info 56 [00:02:04.000] Starting updateGraphWorker: Project: /user/username/projects/myproject/dependency/tsconfig.json +Info 57 [00:02:05.000] Finishing updateGraphWorker: Project: /user/username/projects/myproject/dependency/tsconfig.json Version: 2 structureChanged: false structureIsReused:: Completely Elapsed:: *ms +Info 58 [00:02:06.000] Different program with same set of files +Info 59 [00:02:07.000] Before ensureProjectForOpenFiles: +Info 60 [00:02:08.000] Project '/user/username/projects/myproject/usage/tsconfig.json' (Configured) +Info 60 [00:02:09.000] Files (3) + +Info 60 [00:02:10.000] ----------------------------------------------- +Info 60 [00:02:11.000] Project '/user/username/projects/myproject/dependency/tsconfig.json' (Configured) +Info 60 [00:02:12.000] Files (2) + +Info 60 [00:02:13.000] ----------------------------------------------- +Info 60 [00:02:14.000] Open files: +Info 60 [00:02:15.000] FileName: /user/username/projects/myproject/usage/usage.ts ProjectRootPath: undefined +Info 60 [00:02:16.000] Projects: /user/username/projects/myproject/usage/tsconfig.json +Info 60 [00:02:17.000] FileName: /user/username/projects/myproject/dependency/fns.ts ProjectRootPath: undefined +Info 60 [00:02:18.000] Projects: /user/username/projects/myproject/usage/tsconfig.json,/user/username/projects/myproject/dependency/tsconfig.json +Info 60 [00:02:19.000] After ensureProjectForOpenFiles: +Info 61 [00:02:20.000] Project '/user/username/projects/myproject/usage/tsconfig.json' (Configured) +Info 61 [00:02:21.000] Files (3) + +Info 61 [00:02:22.000] ----------------------------------------------- +Info 61 [00:02:23.000] Project '/user/username/projects/myproject/dependency/tsconfig.json' (Configured) +Info 61 [00:02:24.000] Files (2) + +Info 61 [00:02:25.000] ----------------------------------------------- +Info 61 [00:02:26.000] Open files: +Info 61 [00:02:27.000] FileName: /user/username/projects/myproject/usage/usage.ts ProjectRootPath: undefined +Info 61 [00:02:28.000] Projects: /user/username/projects/myproject/usage/tsconfig.json +Info 61 [00:02:29.000] FileName: /user/username/projects/myproject/dependency/fns.ts ProjectRootPath: undefined +Info 61 [00:02:30.000] Projects: /user/username/projects/myproject/usage/tsconfig.json,/user/username/projects/myproject/dependency/tsconfig.json After request PolledWatches:: @@ -522,7 +522,7 @@ FsWatchesRecursive:: /user/username/projects/myproject/dependency: {} -Info 61 [16:02:31.000] response: +Info 61 [00:02:31.000] response: { "response": [ { @@ -535,7 +535,7 @@ Info 61 [16:02:31.000] response: ], "responseRequired": true } -Info 62 [16:02:32.000] request: +Info 62 [00:02:32.000] request: { "command": "compileOnSaveEmitFile", "arguments": { @@ -570,9 +570,9 @@ FsWatchesRecursive:: /user/username/projects/myproject/dependency: {} -Info 63 [16:02:35.000] DirectoryWatcher:: Triggered with /user/username/projects/myproject/usage/usage.js :: WatchInfo: /user/username/projects/myproject/usage 1 undefined Config: /user/username/projects/myproject/usage/tsconfig.json WatchType: Wild card directory -Info 64 [16:02:36.000] Project: /user/username/projects/myproject/usage/tsconfig.json Detected file add/remove of non supported extension: /user/username/projects/myproject/usage/usage.js -Info 65 [16:02:37.000] Elapsed:: *ms DirectoryWatcher:: Triggered with /user/username/projects/myproject/usage/usage.js :: WatchInfo: /user/username/projects/myproject/usage 1 undefined Config: /user/username/projects/myproject/usage/tsconfig.json WatchType: Wild card directory +Info 63 [00:02:35.000] DirectoryWatcher:: Triggered with /user/username/projects/myproject/usage/usage.js :: WatchInfo: /user/username/projects/myproject/usage 1 undefined Config: /user/username/projects/myproject/usage/tsconfig.json WatchType: Wild card directory +Info 64 [00:02:36.000] Project: /user/username/projects/myproject/usage/tsconfig.json Detected file add/remove of non supported extension: /user/username/projects/myproject/usage/usage.js +Info 65 [00:02:37.000] Elapsed:: *ms DirectoryWatcher:: Triggered with /user/username/projects/myproject/usage/usage.js :: WatchInfo: /user/username/projects/myproject/usage 1 undefined Config: /user/username/projects/myproject/usage/tsconfig.json WatchType: Wild card directory After request //// [/user/username/projects/myproject/usage/usage.js] "use strict"; @@ -607,12 +607,12 @@ FsWatchesRecursive:: /user/username/projects/myproject/dependency: {} -Info 66 [16:02:38.000] response: +Info 66 [00:02:38.000] response: { "response": true, "responseRequired": true } -Info 67 [16:02:39.000] request: +Info 67 [00:02:39.000] request: { "command": "emit-output", "arguments": { @@ -673,7 +673,7 @@ FsWatchesRecursive:: /user/username/projects/myproject/dependency: {} -Info 68 [16:02:40.000] response: +Info 68 [00:02:40.000] response: { "response": { "outputFiles": [ 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 ed1b42f568dbc..aaa0baa8ee489 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 @@ -1,5 +1,5 @@ -Info 0 [16:00:29.000] Provided types map file "/a/lib/typesMap.json" doesn't exist -Info 1 [16:00:30.000] request: +Info 0 [00:00:29.000] Provided types map file "/a/lib/typesMap.json" doesn't exist +Info 1 [00:00:30.000] request: { "seq": 0, "type": "request", @@ -49,11 +49,11 @@ FsWatches:: FsWatchesRecursive:: -Info 2 [16:00:31.000] Search path: /user/username/projects/myproject/usage -Info 3 [16:00:32.000] For info: /user/username/projects/myproject/usage/usage.ts :: Config file name: /user/username/projects/myproject/usage/tsconfig.json -Info 4 [16:00:33.000] Creating configuration project /user/username/projects/myproject/usage/tsconfig.json -Info 5 [16:00:34.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/usage/tsconfig.json 2000 undefined Project: /user/username/projects/myproject/usage/tsconfig.json WatchType: Config file -Info 6 [16:00:35.000] Config: /user/username/projects/myproject/usage/tsconfig.json : { +Info 2 [00:00:31.000] Search path: /user/username/projects/myproject/usage +Info 3 [00:00:32.000] For info: /user/username/projects/myproject/usage/usage.ts :: Config file name: /user/username/projects/myproject/usage/tsconfig.json +Info 4 [00:00:33.000] Creating configuration project /user/username/projects/myproject/usage/tsconfig.json +Info 5 [00:00:34.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/usage/tsconfig.json 2000 undefined Project: /user/username/projects/myproject/usage/tsconfig.json WatchType: Config file +Info 6 [00:00:35.000] Config: /user/username/projects/myproject/usage/tsconfig.json : { "rootNames": [ "/user/username/projects/myproject/usage/usage.ts" ], @@ -67,11 +67,11 @@ Info 6 [16:00:35.000] Config: /user/username/projects/myproject/usage/tsconfi } ] } -Info 7 [16:00:36.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/usage 1 undefined Config: /user/username/projects/myproject/usage/tsconfig.json WatchType: Wild card directory -Info 8 [16:00:37.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/usage 1 undefined Config: /user/username/projects/myproject/usage/tsconfig.json WatchType: Wild card directory -Info 9 [16:00:38.000] Plugins were requested but not running in environment that supports 'require'. Nothing will be loaded -Info 10 [16:00:39.000] Starting updateGraphWorker: Project: /user/username/projects/myproject/usage/tsconfig.json -Info 11 [16:00:40.000] Config: /user/username/projects/myproject/dependency/tsconfig.json : { +Info 7 [00:00:36.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/usage 1 undefined Config: /user/username/projects/myproject/usage/tsconfig.json WatchType: Wild card directory +Info 8 [00:00:37.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/usage 1 undefined Config: /user/username/projects/myproject/usage/tsconfig.json WatchType: Wild card directory +Info 9 [00:00:38.000] Plugins were requested but not running in environment that supports 'require'. Nothing will be loaded +Info 10 [00:00:39.000] Starting updateGraphWorker: Project: /user/username/projects/myproject/usage/tsconfig.json +Info 11 [00:00:40.000] Config: /user/username/projects/myproject/dependency/tsconfig.json : { "rootNames": [ "/user/username/projects/myproject/dependency/fns.ts" ], @@ -81,20 +81,20 @@ Info 11 [16:00:40.000] Config: /user/username/projects/myproject/dependency/ts "configFilePath": "/user/username/projects/myproject/dependency/tsconfig.json" } } -Info 12 [16:00:41.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/dependency/tsconfig.json 2000 undefined Project: /user/username/projects/myproject/usage/tsconfig.json WatchType: Config file -Info 13 [16:00:42.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/dependency 1 undefined Config: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Wild card directory -Info 14 [16:00:43.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/dependency 1 undefined Config: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Wild card directory -Info 15 [16:00:44.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/decls 1 undefined Project: /user/username/projects/myproject/usage/tsconfig.json WatchType: Failed Lookup Locations -Info 16 [16:00:45.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/decls 1 undefined Project: /user/username/projects/myproject/usage/tsconfig.json WatchType: Failed Lookup Locations -Info 17 [16:00:46.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/dependency/fns.ts 500 undefined WatchType: Closed Script info -Info 18 [16:00:47.000] FileWatcher:: Added:: WatchInfo: /a/lib/lib.d.ts 500 undefined WatchType: Closed Script info -Info 19 [16:00:48.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/usage/node_modules/@types 1 undefined Project: /user/username/projects/myproject/usage/tsconfig.json WatchType: Type roots -Info 20 [16:00:49.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/usage/node_modules/@types 1 undefined Project: /user/username/projects/myproject/usage/tsconfig.json WatchType: Type roots -Info 21 [16:00:50.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/usage/tsconfig.json WatchType: Type roots -Info 22 [16:00:51.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/usage/tsconfig.json WatchType: Type roots -Info 23 [16:00:52.000] Finishing updateGraphWorker: Project: /user/username/projects/myproject/usage/tsconfig.json Version: 1 structureChanged: true structureIsReused:: Not Elapsed:: *ms -Info 24 [16:00:53.000] Project '/user/username/projects/myproject/usage/tsconfig.json' (Configured) -Info 25 [16:00:54.000] Files (3) +Info 12 [00:00:41.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/dependency/tsconfig.json 2000 undefined Project: /user/username/projects/myproject/usage/tsconfig.json WatchType: Config file +Info 13 [00:00:42.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/dependency 1 undefined Config: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Wild card directory +Info 14 [00:00:43.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/dependency 1 undefined Config: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Wild card directory +Info 15 [00:00:44.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/decls 1 undefined Project: /user/username/projects/myproject/usage/tsconfig.json WatchType: Failed Lookup Locations +Info 16 [00:00:45.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/decls 1 undefined Project: /user/username/projects/myproject/usage/tsconfig.json WatchType: Failed Lookup Locations +Info 17 [00:00:46.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/dependency/fns.ts 500 undefined WatchType: Closed Script info +Info 18 [00:00:47.000] FileWatcher:: Added:: WatchInfo: /a/lib/lib.d.ts 500 undefined WatchType: Closed Script info +Info 19 [00:00:48.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/usage/node_modules/@types 1 undefined Project: /user/username/projects/myproject/usage/tsconfig.json WatchType: Type roots +Info 20 [00:00:49.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/usage/node_modules/@types 1 undefined Project: /user/username/projects/myproject/usage/tsconfig.json WatchType: Type roots +Info 21 [00:00:50.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/usage/tsconfig.json WatchType: Type roots +Info 22 [00:00:51.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/usage/tsconfig.json WatchType: Type roots +Info 23 [00:00:52.000] Finishing updateGraphWorker: Project: /user/username/projects/myproject/usage/tsconfig.json Version: 1 structureChanged: true structureIsReused:: Not Elapsed:: *ms +Info 24 [00:00:53.000] Project '/user/username/projects/myproject/usage/tsconfig.json' (Configured) +Info 25 [00:00:54.000] Files (3) /a/lib/lib.d.ts /user/username/projects/myproject/dependency/fns.ts /user/username/projects/myproject/usage/usage.ts @@ -107,14 +107,14 @@ Info 25 [16:00:54.000] Files (3) usage.ts Matched by default include pattern '**/*' -Info 26 [16:00:55.000] ----------------------------------------------- -Info 27 [16:00:56.000] Project '/user/username/projects/myproject/usage/tsconfig.json' (Configured) -Info 27 [16:00:57.000] Files (3) +Info 26 [00:00:55.000] ----------------------------------------------- +Info 27 [00:00:56.000] Project '/user/username/projects/myproject/usage/tsconfig.json' (Configured) +Info 27 [00:00:57.000] Files (3) -Info 27 [16:00:58.000] ----------------------------------------------- -Info 27 [16:00:59.000] Open files: -Info 27 [16:01:00.000] FileName: /user/username/projects/myproject/usage/usage.ts ProjectRootPath: undefined -Info 27 [16:01:01.000] Projects: /user/username/projects/myproject/usage/tsconfig.json +Info 27 [00:00:58.000] ----------------------------------------------- +Info 27 [00:00:59.000] Open files: +Info 27 [00:01:00.000] FileName: /user/username/projects/myproject/usage/usage.ts ProjectRootPath: undefined +Info 27 [00:01:01.000] Projects: /user/username/projects/myproject/usage/tsconfig.json After request PolledWatches:: @@ -141,11 +141,11 @@ FsWatchesRecursive:: /user/username/projects/myproject/dependency: {} -Info 27 [16:01:02.000] response: +Info 27 [00:01:02.000] response: { "responseRequired": false } -Info 28 [16:01:03.000] request: +Info 28 [00:01:03.000] request: { "seq": 0, "type": "request", @@ -180,19 +180,19 @@ FsWatchesRecursive:: /user/username/projects/myproject/dependency: {} -Info 29 [16:01:04.000] FileWatcher:: Close:: WatchInfo: /user/username/projects/myproject/dependency/fns.ts 500 undefined WatchType: Closed Script info -Info 30 [16:01:05.000] Search path: /user/username/projects/myproject/dependency -Info 31 [16:01:06.000] For info: /user/username/projects/myproject/dependency/fns.ts :: Config file name: /user/username/projects/myproject/dependency/tsconfig.json -Info 32 [16:01:07.000] Creating configuration project /user/username/projects/myproject/dependency/tsconfig.json -Info 33 [16:01:08.000] Plugins were requested but not running in environment that supports 'require'. Nothing will be loaded -Info 34 [16:01:09.000] Starting updateGraphWorker: Project: /user/username/projects/myproject/dependency/tsconfig.json -Info 35 [16:01:10.000] 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 36 [16:01:11.000] 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 37 [16:01:12.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Type roots -Info 38 [16:01:13.000] 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 39 [16:01:14.000] Finishing updateGraphWorker: Project: /user/username/projects/myproject/dependency/tsconfig.json Version: 1 structureChanged: true structureIsReused:: Not Elapsed:: *ms -Info 40 [16:01:15.000] Project '/user/username/projects/myproject/dependency/tsconfig.json' (Configured) -Info 41 [16:01:16.000] Files (2) +Info 29 [00:01:04.000] FileWatcher:: Close:: WatchInfo: /user/username/projects/myproject/dependency/fns.ts 500 undefined WatchType: Closed Script info +Info 30 [00:01:05.000] Search path: /user/username/projects/myproject/dependency +Info 31 [00:01:06.000] For info: /user/username/projects/myproject/dependency/fns.ts :: Config file name: /user/username/projects/myproject/dependency/tsconfig.json +Info 32 [00:01:07.000] Creating configuration project /user/username/projects/myproject/dependency/tsconfig.json +Info 33 [00:01:08.000] Plugins were requested but not running in environment that supports 'require'. Nothing will be loaded +Info 34 [00:01:09.000] Starting updateGraphWorker: Project: /user/username/projects/myproject/dependency/tsconfig.json +Info 35 [00:01:10.000] 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 36 [00:01:11.000] 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 37 [00:01:12.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Type roots +Info 38 [00:01:13.000] 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 39 [00:01:14.000] Finishing updateGraphWorker: Project: /user/username/projects/myproject/dependency/tsconfig.json Version: 1 structureChanged: true structureIsReused:: Not Elapsed:: *ms +Info 40 [00:01:15.000] Project '/user/username/projects/myproject/dependency/tsconfig.json' (Configured) +Info 41 [00:01:16.000] Files (2) /a/lib/lib.d.ts /user/username/projects/myproject/dependency/fns.ts @@ -202,22 +202,22 @@ Info 41 [16:01:16.000] Files (2) fns.ts Matched by default include pattern '**/*' -Info 42 [16:01:17.000] ----------------------------------------------- -Info 43 [16:01:18.000] Search path: /user/username/projects/myproject/dependency -Info 44 [16:01:19.000] For info: /user/username/projects/myproject/dependency/tsconfig.json :: No config files found. -Info 45 [16:01:20.000] Project '/user/username/projects/myproject/usage/tsconfig.json' (Configured) -Info 45 [16:01:21.000] Files (3) - -Info 45 [16:01:22.000] ----------------------------------------------- -Info 45 [16:01:23.000] Project '/user/username/projects/myproject/dependency/tsconfig.json' (Configured) -Info 45 [16:01:24.000] Files (2) - -Info 45 [16:01:25.000] ----------------------------------------------- -Info 45 [16:01:26.000] Open files: -Info 45 [16:01:27.000] FileName: /user/username/projects/myproject/usage/usage.ts ProjectRootPath: undefined -Info 45 [16:01:28.000] Projects: /user/username/projects/myproject/usage/tsconfig.json -Info 45 [16:01:29.000] FileName: /user/username/projects/myproject/dependency/fns.ts ProjectRootPath: undefined -Info 45 [16:01:30.000] Projects: /user/username/projects/myproject/usage/tsconfig.json,/user/username/projects/myproject/dependency/tsconfig.json +Info 42 [00:01:17.000] ----------------------------------------------- +Info 43 [00:01:18.000] Search path: /user/username/projects/myproject/dependency +Info 44 [00:01:19.000] For info: /user/username/projects/myproject/dependency/tsconfig.json :: No config files found. +Info 45 [00:01:20.000] Project '/user/username/projects/myproject/usage/tsconfig.json' (Configured) +Info 45 [00:01:21.000] Files (3) + +Info 45 [00:01:22.000] ----------------------------------------------- +Info 45 [00:01:23.000] Project '/user/username/projects/myproject/dependency/tsconfig.json' (Configured) +Info 45 [00:01:24.000] Files (2) + +Info 45 [00:01:25.000] ----------------------------------------------- +Info 45 [00:01:26.000] Open files: +Info 45 [00:01:27.000] FileName: /user/username/projects/myproject/usage/usage.ts ProjectRootPath: undefined +Info 45 [00:01:28.000] Projects: /user/username/projects/myproject/usage/tsconfig.json +Info 45 [00:01:29.000] FileName: /user/username/projects/myproject/dependency/fns.ts ProjectRootPath: undefined +Info 45 [00:01:30.000] Projects: /user/username/projects/myproject/usage/tsconfig.json,/user/username/projects/myproject/dependency/tsconfig.json After request PolledWatches:: @@ -244,11 +244,11 @@ FsWatchesRecursive:: /user/username/projects/myproject/dependency: {} -Info 45 [16:01:31.000] response: +Info 45 [00:01:31.000] response: { "responseRequired": false } -Info 46 [16:01:32.000] request: +Info 46 [00:01:32.000] request: { "command": "compileOnSaveAffectedFileList", "arguments": { @@ -283,34 +283,34 @@ FsWatchesRecursive:: /user/username/projects/myproject/dependency: {} -Info 47 [16:01:33.000] Before ensureProjectForOpenFiles: -Info 48 [16:01:34.000] Project '/user/username/projects/myproject/usage/tsconfig.json' (Configured) -Info 48 [16:01:35.000] Files (3) - -Info 48 [16:01:36.000] ----------------------------------------------- -Info 48 [16:01:37.000] Project '/user/username/projects/myproject/dependency/tsconfig.json' (Configured) -Info 48 [16:01:38.000] Files (2) - -Info 48 [16:01:39.000] ----------------------------------------------- -Info 48 [16:01:40.000] Open files: -Info 48 [16:01:41.000] FileName: /user/username/projects/myproject/usage/usage.ts ProjectRootPath: undefined -Info 48 [16:01:42.000] Projects: /user/username/projects/myproject/usage/tsconfig.json -Info 48 [16:01:43.000] FileName: /user/username/projects/myproject/dependency/fns.ts ProjectRootPath: undefined -Info 48 [16:01:44.000] Projects: /user/username/projects/myproject/usage/tsconfig.json,/user/username/projects/myproject/dependency/tsconfig.json -Info 48 [16:01:45.000] After ensureProjectForOpenFiles: -Info 49 [16:01:46.000] Project '/user/username/projects/myproject/usage/tsconfig.json' (Configured) -Info 49 [16:01:47.000] Files (3) - -Info 49 [16:01:48.000] ----------------------------------------------- -Info 49 [16:01:49.000] Project '/user/username/projects/myproject/dependency/tsconfig.json' (Configured) -Info 49 [16:01:50.000] Files (2) - -Info 49 [16:01:51.000] ----------------------------------------------- -Info 49 [16:01:52.000] Open files: -Info 49 [16:01:53.000] FileName: /user/username/projects/myproject/usage/usage.ts ProjectRootPath: undefined -Info 49 [16:01:54.000] Projects: /user/username/projects/myproject/usage/tsconfig.json -Info 49 [16:01:55.000] FileName: /user/username/projects/myproject/dependency/fns.ts ProjectRootPath: undefined -Info 49 [16:01:56.000] Projects: /user/username/projects/myproject/usage/tsconfig.json,/user/username/projects/myproject/dependency/tsconfig.json +Info 47 [00:01:33.000] Before ensureProjectForOpenFiles: +Info 48 [00:01:34.000] Project '/user/username/projects/myproject/usage/tsconfig.json' (Configured) +Info 48 [00:01:35.000] Files (3) + +Info 48 [00:01:36.000] ----------------------------------------------- +Info 48 [00:01:37.000] Project '/user/username/projects/myproject/dependency/tsconfig.json' (Configured) +Info 48 [00:01:38.000] Files (2) + +Info 48 [00:01:39.000] ----------------------------------------------- +Info 48 [00:01:40.000] Open files: +Info 48 [00:01:41.000] FileName: /user/username/projects/myproject/usage/usage.ts ProjectRootPath: undefined +Info 48 [00:01:42.000] Projects: /user/username/projects/myproject/usage/tsconfig.json +Info 48 [00:01:43.000] FileName: /user/username/projects/myproject/dependency/fns.ts ProjectRootPath: undefined +Info 48 [00:01:44.000] Projects: /user/username/projects/myproject/usage/tsconfig.json,/user/username/projects/myproject/dependency/tsconfig.json +Info 48 [00:01:45.000] After ensureProjectForOpenFiles: +Info 49 [00:01:46.000] Project '/user/username/projects/myproject/usage/tsconfig.json' (Configured) +Info 49 [00:01:47.000] Files (3) + +Info 49 [00:01:48.000] ----------------------------------------------- +Info 49 [00:01:49.000] Project '/user/username/projects/myproject/dependency/tsconfig.json' (Configured) +Info 49 [00:01:50.000] Files (2) + +Info 49 [00:01:51.000] ----------------------------------------------- +Info 49 [00:01:52.000] Open files: +Info 49 [00:01:53.000] FileName: /user/username/projects/myproject/usage/usage.ts ProjectRootPath: undefined +Info 49 [00:01:54.000] Projects: /user/username/projects/myproject/usage/tsconfig.json +Info 49 [00:01:55.000] FileName: /user/username/projects/myproject/dependency/fns.ts ProjectRootPath: undefined +Info 49 [00:01:56.000] Projects: /user/username/projects/myproject/usage/tsconfig.json,/user/username/projects/myproject/dependency/tsconfig.json After request PolledWatches:: @@ -337,7 +337,7 @@ FsWatchesRecursive:: /user/username/projects/myproject/dependency: {} -Info 49 [16:01:57.000] response: +Info 49 [00:01:57.000] response: { "response": [ { @@ -357,7 +357,7 @@ Info 49 [16:01:57.000] response: ], "responseRequired": true } -Info 50 [16:01:58.000] request: +Info 50 [00:01:58.000] request: { "command": "change", "arguments": { @@ -423,11 +423,11 @@ FsWatchesRecursive:: /user/username/projects/myproject/dependency: {} -Info 51 [16:01:59.000] response: +Info 51 [00:01:59.000] response: { "responseRequired": false } -Info 52 [16:02:00.000] request: +Info 52 [00:02:00.000] request: { "command": "compileOnSaveAffectedFileList", "arguments": { @@ -462,37 +462,37 @@ FsWatchesRecursive:: /user/username/projects/myproject/dependency: {} -Info 53 [16:02:01.000] Starting updateGraphWorker: Project: /user/username/projects/myproject/usage/tsconfig.json -Info 54 [16:02:02.000] Finishing updateGraphWorker: Project: /user/username/projects/myproject/usage/tsconfig.json Version: 2 structureChanged: false structureIsReused:: Completely Elapsed:: *ms -Info 55 [16:02:03.000] Different program with same set of files -Info 56 [16:02:04.000] Before ensureProjectForOpenFiles: -Info 57 [16:02:05.000] Project '/user/username/projects/myproject/usage/tsconfig.json' (Configured) -Info 57 [16:02:06.000] Files (3) - -Info 57 [16:02:07.000] ----------------------------------------------- -Info 57 [16:02:08.000] Project '/user/username/projects/myproject/dependency/tsconfig.json' (Configured) -Info 57 [16:02:09.000] Files (2) - -Info 57 [16:02:10.000] ----------------------------------------------- -Info 57 [16:02:11.000] Open files: -Info 57 [16:02:12.000] FileName: /user/username/projects/myproject/usage/usage.ts ProjectRootPath: undefined -Info 57 [16:02:13.000] Projects: /user/username/projects/myproject/usage/tsconfig.json -Info 57 [16:02:14.000] FileName: /user/username/projects/myproject/dependency/fns.ts ProjectRootPath: undefined -Info 57 [16:02:15.000] Projects: /user/username/projects/myproject/usage/tsconfig.json,/user/username/projects/myproject/dependency/tsconfig.json -Info 57 [16:02:16.000] After ensureProjectForOpenFiles: -Info 58 [16:02:17.000] Project '/user/username/projects/myproject/usage/tsconfig.json' (Configured) -Info 58 [16:02:18.000] Files (3) - -Info 58 [16:02:19.000] ----------------------------------------------- -Info 58 [16:02:20.000] Project '/user/username/projects/myproject/dependency/tsconfig.json' (Configured) -Info 58 [16:02:21.000] Files (2) - -Info 58 [16:02:22.000] ----------------------------------------------- -Info 58 [16:02:23.000] Open files: -Info 58 [16:02:24.000] FileName: /user/username/projects/myproject/usage/usage.ts ProjectRootPath: undefined -Info 58 [16:02:25.000] Projects: /user/username/projects/myproject/usage/tsconfig.json -Info 58 [16:02:26.000] FileName: /user/username/projects/myproject/dependency/fns.ts ProjectRootPath: undefined -Info 58 [16:02:27.000] Projects: /user/username/projects/myproject/usage/tsconfig.json,/user/username/projects/myproject/dependency/tsconfig.json +Info 53 [00:02:01.000] Starting updateGraphWorker: Project: /user/username/projects/myproject/usage/tsconfig.json +Info 54 [00:02:02.000] Finishing updateGraphWorker: Project: /user/username/projects/myproject/usage/tsconfig.json Version: 2 structureChanged: false structureIsReused:: Completely Elapsed:: *ms +Info 55 [00:02:03.000] Different program with same set of files +Info 56 [00:02:04.000] Before ensureProjectForOpenFiles: +Info 57 [00:02:05.000] Project '/user/username/projects/myproject/usage/tsconfig.json' (Configured) +Info 57 [00:02:06.000] Files (3) + +Info 57 [00:02:07.000] ----------------------------------------------- +Info 57 [00:02:08.000] Project '/user/username/projects/myproject/dependency/tsconfig.json' (Configured) +Info 57 [00:02:09.000] Files (2) + +Info 57 [00:02:10.000] ----------------------------------------------- +Info 57 [00:02:11.000] Open files: +Info 57 [00:02:12.000] FileName: /user/username/projects/myproject/usage/usage.ts ProjectRootPath: undefined +Info 57 [00:02:13.000] Projects: /user/username/projects/myproject/usage/tsconfig.json +Info 57 [00:02:14.000] FileName: /user/username/projects/myproject/dependency/fns.ts ProjectRootPath: undefined +Info 57 [00:02:15.000] Projects: /user/username/projects/myproject/usage/tsconfig.json,/user/username/projects/myproject/dependency/tsconfig.json +Info 57 [00:02:16.000] After ensureProjectForOpenFiles: +Info 58 [00:02:17.000] Project '/user/username/projects/myproject/usage/tsconfig.json' (Configured) +Info 58 [00:02:18.000] Files (3) + +Info 58 [00:02:19.000] ----------------------------------------------- +Info 58 [00:02:20.000] Project '/user/username/projects/myproject/dependency/tsconfig.json' (Configured) +Info 58 [00:02:21.000] Files (2) + +Info 58 [00:02:22.000] ----------------------------------------------- +Info 58 [00:02:23.000] Open files: +Info 58 [00:02:24.000] FileName: /user/username/projects/myproject/usage/usage.ts ProjectRootPath: undefined +Info 58 [00:02:25.000] Projects: /user/username/projects/myproject/usage/tsconfig.json +Info 58 [00:02:26.000] FileName: /user/username/projects/myproject/dependency/fns.ts ProjectRootPath: undefined +Info 58 [00:02:27.000] Projects: /user/username/projects/myproject/usage/tsconfig.json,/user/username/projects/myproject/dependency/tsconfig.json After request PolledWatches:: @@ -519,7 +519,7 @@ FsWatchesRecursive:: /user/username/projects/myproject/dependency: {} -Info 58 [16:02:28.000] response: +Info 58 [00:02:28.000] response: { "response": [ { @@ -532,7 +532,7 @@ Info 58 [16:02:28.000] response: ], "responseRequired": true } -Info 59 [16:02:29.000] request: +Info 59 [00:02:29.000] request: { "command": "compileOnSaveEmitFile", "arguments": { @@ -567,9 +567,9 @@ FsWatchesRecursive:: /user/username/projects/myproject/dependency: {} -Info 60 [16:02:32.000] DirectoryWatcher:: Triggered with /user/username/projects/myproject/usage/usage.js :: WatchInfo: /user/username/projects/myproject/usage 1 undefined Config: /user/username/projects/myproject/usage/tsconfig.json WatchType: Wild card directory -Info 61 [16:02:33.000] Project: /user/username/projects/myproject/usage/tsconfig.json Detected file add/remove of non supported extension: /user/username/projects/myproject/usage/usage.js -Info 62 [16:02:34.000] Elapsed:: *ms DirectoryWatcher:: Triggered with /user/username/projects/myproject/usage/usage.js :: WatchInfo: /user/username/projects/myproject/usage 1 undefined Config: /user/username/projects/myproject/usage/tsconfig.json WatchType: Wild card directory +Info 60 [00:02:32.000] DirectoryWatcher:: Triggered with /user/username/projects/myproject/usage/usage.js :: WatchInfo: /user/username/projects/myproject/usage 1 undefined Config: /user/username/projects/myproject/usage/tsconfig.json WatchType: Wild card directory +Info 61 [00:02:33.000] Project: /user/username/projects/myproject/usage/tsconfig.json Detected file add/remove of non supported extension: /user/username/projects/myproject/usage/usage.js +Info 62 [00:02:34.000] Elapsed:: *ms DirectoryWatcher:: Triggered with /user/username/projects/myproject/usage/usage.js :: WatchInfo: /user/username/projects/myproject/usage 1 undefined Config: /user/username/projects/myproject/usage/tsconfig.json WatchType: Wild card directory After request //// [/user/username/projects/myproject/usage/usage.js] "use strict"; @@ -607,12 +607,12 @@ FsWatchesRecursive:: /user/username/projects/myproject/dependency: {} -Info 63 [16:02:35.000] response: +Info 63 [00:02:35.000] response: { "response": true, "responseRequired": true } -Info 64 [16:02:36.000] request: +Info 64 [00:02:36.000] request: { "command": "emit-output", "arguments": { @@ -673,7 +673,7 @@ FsWatchesRecursive:: /user/username/projects/myproject/dependency: {} -Info 65 [16:02:37.000] response: +Info 65 [00:02:37.000] response: { "response": { "outputFiles": [ 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 59282d8c651c4..36fa4d2ff4098 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 @@ -1,5 +1,5 @@ -Info 0 [16:00:29.000] Provided types map file "/a/lib/typesMap.json" doesn't exist -Info 1 [16:00:30.000] request: +Info 0 [00:00:29.000] Provided types map file "/a/lib/typesMap.json" doesn't exist +Info 1 [00:00:30.000] request: { "seq": 0, "type": "request", @@ -49,11 +49,11 @@ FsWatches:: FsWatchesRecursive:: -Info 2 [16:00:31.000] Search path: /user/username/projects/myproject/usage -Info 3 [16:00:32.000] For info: /user/username/projects/myproject/usage/usage.ts :: Config file name: /user/username/projects/myproject/usage/tsconfig.json -Info 4 [16:00:33.000] Creating configuration project /user/username/projects/myproject/usage/tsconfig.json -Info 5 [16:00:34.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/usage/tsconfig.json 2000 undefined Project: /user/username/projects/myproject/usage/tsconfig.json WatchType: Config file -Info 6 [16:00:35.000] Config: /user/username/projects/myproject/usage/tsconfig.json : { +Info 2 [00:00:31.000] Search path: /user/username/projects/myproject/usage +Info 3 [00:00:32.000] For info: /user/username/projects/myproject/usage/usage.ts :: Config file name: /user/username/projects/myproject/usage/tsconfig.json +Info 4 [00:00:33.000] Creating configuration project /user/username/projects/myproject/usage/tsconfig.json +Info 5 [00:00:34.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/usage/tsconfig.json 2000 undefined Project: /user/username/projects/myproject/usage/tsconfig.json WatchType: Config file +Info 6 [00:00:35.000] Config: /user/username/projects/myproject/usage/tsconfig.json : { "rootNames": [ "/user/username/projects/myproject/usage/usage.ts" ], @@ -67,11 +67,11 @@ Info 6 [16:00:35.000] Config: /user/username/projects/myproject/usage/tsconfi } ] } -Info 7 [16:00:36.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/usage 1 undefined Config: /user/username/projects/myproject/usage/tsconfig.json WatchType: Wild card directory -Info 8 [16:00:37.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/usage 1 undefined Config: /user/username/projects/myproject/usage/tsconfig.json WatchType: Wild card directory -Info 9 [16:00:38.000] Plugins were requested but not running in environment that supports 'require'. Nothing will be loaded -Info 10 [16:00:39.000] Starting updateGraphWorker: Project: /user/username/projects/myproject/usage/tsconfig.json -Info 11 [16:00:40.000] Config: /user/username/projects/myproject/dependency/tsconfig.json : { +Info 7 [00:00:36.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/usage 1 undefined Config: /user/username/projects/myproject/usage/tsconfig.json WatchType: Wild card directory +Info 8 [00:00:37.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/usage 1 undefined Config: /user/username/projects/myproject/usage/tsconfig.json WatchType: Wild card directory +Info 9 [00:00:38.000] Plugins were requested but not running in environment that supports 'require'. Nothing will be loaded +Info 10 [00:00:39.000] Starting updateGraphWorker: Project: /user/username/projects/myproject/usage/tsconfig.json +Info 11 [00:00:40.000] Config: /user/username/projects/myproject/dependency/tsconfig.json : { "rootNames": [ "/user/username/projects/myproject/dependency/fns.ts" ], @@ -81,20 +81,20 @@ Info 11 [16:00:40.000] Config: /user/username/projects/myproject/dependency/ts "configFilePath": "/user/username/projects/myproject/dependency/tsconfig.json" } } -Info 12 [16:00:41.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/dependency/tsconfig.json 2000 undefined Project: /user/username/projects/myproject/usage/tsconfig.json WatchType: Config file -Info 13 [16:00:42.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/dependency 1 undefined Config: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Wild card directory -Info 14 [16:00:43.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/dependency 1 undefined Config: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Wild card directory -Info 15 [16:00:44.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/decls 1 undefined Project: /user/username/projects/myproject/usage/tsconfig.json WatchType: Failed Lookup Locations -Info 16 [16:00:45.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/decls 1 undefined Project: /user/username/projects/myproject/usage/tsconfig.json WatchType: Failed Lookup Locations -Info 17 [16:00:46.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/dependency/fns.ts 500 undefined WatchType: Closed Script info -Info 18 [16:00:47.000] FileWatcher:: Added:: WatchInfo: /a/lib/lib.d.ts 500 undefined WatchType: Closed Script info -Info 19 [16:00:48.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/usage/node_modules/@types 1 undefined Project: /user/username/projects/myproject/usage/tsconfig.json WatchType: Type roots -Info 20 [16:00:49.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/usage/node_modules/@types 1 undefined Project: /user/username/projects/myproject/usage/tsconfig.json WatchType: Type roots -Info 21 [16:00:50.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/usage/tsconfig.json WatchType: Type roots -Info 22 [16:00:51.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/usage/tsconfig.json WatchType: Type roots -Info 23 [16:00:52.000] Finishing updateGraphWorker: Project: /user/username/projects/myproject/usage/tsconfig.json Version: 1 structureChanged: true structureIsReused:: Not Elapsed:: *ms -Info 24 [16:00:53.000] Project '/user/username/projects/myproject/usage/tsconfig.json' (Configured) -Info 25 [16:00:54.000] Files (3) +Info 12 [00:00:41.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/dependency/tsconfig.json 2000 undefined Project: /user/username/projects/myproject/usage/tsconfig.json WatchType: Config file +Info 13 [00:00:42.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/dependency 1 undefined Config: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Wild card directory +Info 14 [00:00:43.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/dependency 1 undefined Config: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Wild card directory +Info 15 [00:00:44.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/decls 1 undefined Project: /user/username/projects/myproject/usage/tsconfig.json WatchType: Failed Lookup Locations +Info 16 [00:00:45.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/decls 1 undefined Project: /user/username/projects/myproject/usage/tsconfig.json WatchType: Failed Lookup Locations +Info 17 [00:00:46.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/dependency/fns.ts 500 undefined WatchType: Closed Script info +Info 18 [00:00:47.000] FileWatcher:: Added:: WatchInfo: /a/lib/lib.d.ts 500 undefined WatchType: Closed Script info +Info 19 [00:00:48.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/usage/node_modules/@types 1 undefined Project: /user/username/projects/myproject/usage/tsconfig.json WatchType: Type roots +Info 20 [00:00:49.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/usage/node_modules/@types 1 undefined Project: /user/username/projects/myproject/usage/tsconfig.json WatchType: Type roots +Info 21 [00:00:50.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/usage/tsconfig.json WatchType: Type roots +Info 22 [00:00:51.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/usage/tsconfig.json WatchType: Type roots +Info 23 [00:00:52.000] Finishing updateGraphWorker: Project: /user/username/projects/myproject/usage/tsconfig.json Version: 1 structureChanged: true structureIsReused:: Not Elapsed:: *ms +Info 24 [00:00:53.000] Project '/user/username/projects/myproject/usage/tsconfig.json' (Configured) +Info 25 [00:00:54.000] Files (3) /a/lib/lib.d.ts /user/username/projects/myproject/dependency/fns.ts /user/username/projects/myproject/usage/usage.ts @@ -107,14 +107,14 @@ Info 25 [16:00:54.000] Files (3) usage.ts Matched by default include pattern '**/*' -Info 26 [16:00:55.000] ----------------------------------------------- -Info 27 [16:00:56.000] Project '/user/username/projects/myproject/usage/tsconfig.json' (Configured) -Info 27 [16:00:57.000] Files (3) +Info 26 [00:00:55.000] ----------------------------------------------- +Info 27 [00:00:56.000] Project '/user/username/projects/myproject/usage/tsconfig.json' (Configured) +Info 27 [00:00:57.000] Files (3) -Info 27 [16:00:58.000] ----------------------------------------------- -Info 27 [16:00:59.000] Open files: -Info 27 [16:01:00.000] FileName: /user/username/projects/myproject/usage/usage.ts ProjectRootPath: undefined -Info 27 [16:01:01.000] Projects: /user/username/projects/myproject/usage/tsconfig.json +Info 27 [00:00:58.000] ----------------------------------------------- +Info 27 [00:00:59.000] Open files: +Info 27 [00:01:00.000] FileName: /user/username/projects/myproject/usage/usage.ts ProjectRootPath: undefined +Info 27 [00:01:01.000] Projects: /user/username/projects/myproject/usage/tsconfig.json After request PolledWatches:: @@ -141,11 +141,11 @@ FsWatchesRecursive:: /user/username/projects/myproject/dependency: {} -Info 27 [16:01:02.000] response: +Info 27 [00:01:02.000] response: { "responseRequired": false } -Info 28 [16:01:03.000] request: +Info 28 [00:01:03.000] request: { "seq": 0, "type": "request", @@ -180,19 +180,19 @@ FsWatchesRecursive:: /user/username/projects/myproject/dependency: {} -Info 29 [16:01:04.000] FileWatcher:: Close:: WatchInfo: /user/username/projects/myproject/dependency/fns.ts 500 undefined WatchType: Closed Script info -Info 30 [16:01:05.000] Search path: /user/username/projects/myproject/dependency -Info 31 [16:01:06.000] For info: /user/username/projects/myproject/dependency/fns.ts :: Config file name: /user/username/projects/myproject/dependency/tsconfig.json -Info 32 [16:01:07.000] Creating configuration project /user/username/projects/myproject/dependency/tsconfig.json -Info 33 [16:01:08.000] Plugins were requested but not running in environment that supports 'require'. Nothing will be loaded -Info 34 [16:01:09.000] Starting updateGraphWorker: Project: /user/username/projects/myproject/dependency/tsconfig.json -Info 35 [16:01:10.000] 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 36 [16:01:11.000] 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 37 [16:01:12.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Type roots -Info 38 [16:01:13.000] 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 39 [16:01:14.000] Finishing updateGraphWorker: Project: /user/username/projects/myproject/dependency/tsconfig.json Version: 1 structureChanged: true structureIsReused:: Not Elapsed:: *ms -Info 40 [16:01:15.000] Project '/user/username/projects/myproject/dependency/tsconfig.json' (Configured) -Info 41 [16:01:16.000] Files (2) +Info 29 [00:01:04.000] FileWatcher:: Close:: WatchInfo: /user/username/projects/myproject/dependency/fns.ts 500 undefined WatchType: Closed Script info +Info 30 [00:01:05.000] Search path: /user/username/projects/myproject/dependency +Info 31 [00:01:06.000] For info: /user/username/projects/myproject/dependency/fns.ts :: Config file name: /user/username/projects/myproject/dependency/tsconfig.json +Info 32 [00:01:07.000] Creating configuration project /user/username/projects/myproject/dependency/tsconfig.json +Info 33 [00:01:08.000] Plugins were requested but not running in environment that supports 'require'. Nothing will be loaded +Info 34 [00:01:09.000] Starting updateGraphWorker: Project: /user/username/projects/myproject/dependency/tsconfig.json +Info 35 [00:01:10.000] 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 36 [00:01:11.000] 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 37 [00:01:12.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Type roots +Info 38 [00:01:13.000] 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 39 [00:01:14.000] Finishing updateGraphWorker: Project: /user/username/projects/myproject/dependency/tsconfig.json Version: 1 structureChanged: true structureIsReused:: Not Elapsed:: *ms +Info 40 [00:01:15.000] Project '/user/username/projects/myproject/dependency/tsconfig.json' (Configured) +Info 41 [00:01:16.000] Files (2) /a/lib/lib.d.ts /user/username/projects/myproject/dependency/fns.ts @@ -202,22 +202,22 @@ Info 41 [16:01:16.000] Files (2) fns.ts Matched by default include pattern '**/*' -Info 42 [16:01:17.000] ----------------------------------------------- -Info 43 [16:01:18.000] Search path: /user/username/projects/myproject/dependency -Info 44 [16:01:19.000] For info: /user/username/projects/myproject/dependency/tsconfig.json :: No config files found. -Info 45 [16:01:20.000] Project '/user/username/projects/myproject/usage/tsconfig.json' (Configured) -Info 45 [16:01:21.000] Files (3) - -Info 45 [16:01:22.000] ----------------------------------------------- -Info 45 [16:01:23.000] Project '/user/username/projects/myproject/dependency/tsconfig.json' (Configured) -Info 45 [16:01:24.000] Files (2) - -Info 45 [16:01:25.000] ----------------------------------------------- -Info 45 [16:01:26.000] Open files: -Info 45 [16:01:27.000] FileName: /user/username/projects/myproject/usage/usage.ts ProjectRootPath: undefined -Info 45 [16:01:28.000] Projects: /user/username/projects/myproject/usage/tsconfig.json -Info 45 [16:01:29.000] FileName: /user/username/projects/myproject/dependency/fns.ts ProjectRootPath: undefined -Info 45 [16:01:30.000] Projects: /user/username/projects/myproject/usage/tsconfig.json,/user/username/projects/myproject/dependency/tsconfig.json +Info 42 [00:01:17.000] ----------------------------------------------- +Info 43 [00:01:18.000] Search path: /user/username/projects/myproject/dependency +Info 44 [00:01:19.000] For info: /user/username/projects/myproject/dependency/tsconfig.json :: No config files found. +Info 45 [00:01:20.000] Project '/user/username/projects/myproject/usage/tsconfig.json' (Configured) +Info 45 [00:01:21.000] Files (3) + +Info 45 [00:01:22.000] ----------------------------------------------- +Info 45 [00:01:23.000] Project '/user/username/projects/myproject/dependency/tsconfig.json' (Configured) +Info 45 [00:01:24.000] Files (2) + +Info 45 [00:01:25.000] ----------------------------------------------- +Info 45 [00:01:26.000] Open files: +Info 45 [00:01:27.000] FileName: /user/username/projects/myproject/usage/usage.ts ProjectRootPath: undefined +Info 45 [00:01:28.000] Projects: /user/username/projects/myproject/usage/tsconfig.json +Info 45 [00:01:29.000] FileName: /user/username/projects/myproject/dependency/fns.ts ProjectRootPath: undefined +Info 45 [00:01:30.000] Projects: /user/username/projects/myproject/usage/tsconfig.json,/user/username/projects/myproject/dependency/tsconfig.json After request PolledWatches:: @@ -244,11 +244,11 @@ FsWatchesRecursive:: /user/username/projects/myproject/dependency: {} -Info 45 [16:01:31.000] response: +Info 45 [00:01:31.000] response: { "responseRequired": false } -Info 46 [16:01:32.000] request: +Info 46 [00:01:32.000] request: { "command": "compileOnSaveAffectedFileList", "arguments": { @@ -283,34 +283,34 @@ FsWatchesRecursive:: /user/username/projects/myproject/dependency: {} -Info 47 [16:01:33.000] Before ensureProjectForOpenFiles: -Info 48 [16:01:34.000] Project '/user/username/projects/myproject/usage/tsconfig.json' (Configured) -Info 48 [16:01:35.000] Files (3) - -Info 48 [16:01:36.000] ----------------------------------------------- -Info 48 [16:01:37.000] Project '/user/username/projects/myproject/dependency/tsconfig.json' (Configured) -Info 48 [16:01:38.000] Files (2) - -Info 48 [16:01:39.000] ----------------------------------------------- -Info 48 [16:01:40.000] Open files: -Info 48 [16:01:41.000] FileName: /user/username/projects/myproject/usage/usage.ts ProjectRootPath: undefined -Info 48 [16:01:42.000] Projects: /user/username/projects/myproject/usage/tsconfig.json -Info 48 [16:01:43.000] FileName: /user/username/projects/myproject/dependency/fns.ts ProjectRootPath: undefined -Info 48 [16:01:44.000] Projects: /user/username/projects/myproject/usage/tsconfig.json,/user/username/projects/myproject/dependency/tsconfig.json -Info 48 [16:01:45.000] After ensureProjectForOpenFiles: -Info 49 [16:01:46.000] Project '/user/username/projects/myproject/usage/tsconfig.json' (Configured) -Info 49 [16:01:47.000] Files (3) - -Info 49 [16:01:48.000] ----------------------------------------------- -Info 49 [16:01:49.000] Project '/user/username/projects/myproject/dependency/tsconfig.json' (Configured) -Info 49 [16:01:50.000] Files (2) - -Info 49 [16:01:51.000] ----------------------------------------------- -Info 49 [16:01:52.000] Open files: -Info 49 [16:01:53.000] FileName: /user/username/projects/myproject/usage/usage.ts ProjectRootPath: undefined -Info 49 [16:01:54.000] Projects: /user/username/projects/myproject/usage/tsconfig.json -Info 49 [16:01:55.000] FileName: /user/username/projects/myproject/dependency/fns.ts ProjectRootPath: undefined -Info 49 [16:01:56.000] Projects: /user/username/projects/myproject/usage/tsconfig.json,/user/username/projects/myproject/dependency/tsconfig.json +Info 47 [00:01:33.000] Before ensureProjectForOpenFiles: +Info 48 [00:01:34.000] Project '/user/username/projects/myproject/usage/tsconfig.json' (Configured) +Info 48 [00:01:35.000] Files (3) + +Info 48 [00:01:36.000] ----------------------------------------------- +Info 48 [00:01:37.000] Project '/user/username/projects/myproject/dependency/tsconfig.json' (Configured) +Info 48 [00:01:38.000] Files (2) + +Info 48 [00:01:39.000] ----------------------------------------------- +Info 48 [00:01:40.000] Open files: +Info 48 [00:01:41.000] FileName: /user/username/projects/myproject/usage/usage.ts ProjectRootPath: undefined +Info 48 [00:01:42.000] Projects: /user/username/projects/myproject/usage/tsconfig.json +Info 48 [00:01:43.000] FileName: /user/username/projects/myproject/dependency/fns.ts ProjectRootPath: undefined +Info 48 [00:01:44.000] Projects: /user/username/projects/myproject/usage/tsconfig.json,/user/username/projects/myproject/dependency/tsconfig.json +Info 48 [00:01:45.000] After ensureProjectForOpenFiles: +Info 49 [00:01:46.000] Project '/user/username/projects/myproject/usage/tsconfig.json' (Configured) +Info 49 [00:01:47.000] Files (3) + +Info 49 [00:01:48.000] ----------------------------------------------- +Info 49 [00:01:49.000] Project '/user/username/projects/myproject/dependency/tsconfig.json' (Configured) +Info 49 [00:01:50.000] Files (2) + +Info 49 [00:01:51.000] ----------------------------------------------- +Info 49 [00:01:52.000] Open files: +Info 49 [00:01:53.000] FileName: /user/username/projects/myproject/usage/usage.ts ProjectRootPath: undefined +Info 49 [00:01:54.000] Projects: /user/username/projects/myproject/usage/tsconfig.json +Info 49 [00:01:55.000] FileName: /user/username/projects/myproject/dependency/fns.ts ProjectRootPath: undefined +Info 49 [00:01:56.000] Projects: /user/username/projects/myproject/usage/tsconfig.json,/user/username/projects/myproject/dependency/tsconfig.json After request PolledWatches:: @@ -337,7 +337,7 @@ FsWatchesRecursive:: /user/username/projects/myproject/dependency: {} -Info 49 [16:01:57.000] response: +Info 49 [00:01:57.000] response: { "response": [ { @@ -357,7 +357,7 @@ Info 49 [16:01:57.000] response: ], "responseRequired": true } -Info 50 [16:01:58.000] request: +Info 50 [00:01:58.000] request: { "command": "change", "arguments": { @@ -423,11 +423,11 @@ FsWatchesRecursive:: /user/username/projects/myproject/dependency: {} -Info 51 [16:01:59.000] response: +Info 51 [00:01:59.000] response: { "responseRequired": false } -Info 52 [16:02:00.000] request: +Info 52 [00:02:00.000] request: { "command": "compileOnSaveAffectedFileList", "arguments": { @@ -463,9 +463,9 @@ FsWatchesRecursive:: /user/username/projects/myproject/dependency: {} -Info 53 [16:02:01.000] Starting updateGraphWorker: Project: /user/username/projects/myproject/usage/tsconfig.json -Info 54 [16:02:02.000] Finishing updateGraphWorker: Project: /user/username/projects/myproject/usage/tsconfig.json Version: 2 structureChanged: false structureIsReused:: Completely Elapsed:: *ms -Info 55 [16:02:03.000] Different program with same set of files +Info 53 [00:02:01.000] Starting updateGraphWorker: Project: /user/username/projects/myproject/usage/tsconfig.json +Info 54 [00:02:02.000] Finishing updateGraphWorker: Project: /user/username/projects/myproject/usage/tsconfig.json Version: 2 structureChanged: false structureIsReused:: Completely Elapsed:: *ms +Info 55 [00:02:03.000] Different program with same set of files After request PolledWatches:: @@ -492,7 +492,7 @@ FsWatchesRecursive:: /user/username/projects/myproject/dependency: {} -Info 56 [16:02:04.000] response: +Info 56 [00:02:04.000] response: { "response": [ { @@ -505,7 +505,7 @@ Info 56 [16:02:04.000] response: ], "responseRequired": true } -Info 57 [16:02:05.000] request: +Info 57 [00:02:05.000] request: { "command": "compileOnSaveEmitFile", "arguments": { @@ -541,9 +541,9 @@ FsWatchesRecursive:: /user/username/projects/myproject/dependency: {} -Info 58 [16:02:08.000] DirectoryWatcher:: Triggered with /user/username/projects/myproject/usage/usage.js :: WatchInfo: /user/username/projects/myproject/usage 1 undefined Config: /user/username/projects/myproject/usage/tsconfig.json WatchType: Wild card directory -Info 59 [16:02:09.000] Project: /user/username/projects/myproject/usage/tsconfig.json Detected file add/remove of non supported extension: /user/username/projects/myproject/usage/usage.js -Info 60 [16:02:10.000] Elapsed:: *ms DirectoryWatcher:: Triggered with /user/username/projects/myproject/usage/usage.js :: WatchInfo: /user/username/projects/myproject/usage 1 undefined Config: /user/username/projects/myproject/usage/tsconfig.json WatchType: Wild card directory +Info 58 [00:02:08.000] DirectoryWatcher:: Triggered with /user/username/projects/myproject/usage/usage.js :: WatchInfo: /user/username/projects/myproject/usage 1 undefined Config: /user/username/projects/myproject/usage/tsconfig.json WatchType: Wild card directory +Info 59 [00:02:09.000] Project: /user/username/projects/myproject/usage/tsconfig.json Detected file add/remove of non supported extension: /user/username/projects/myproject/usage/usage.js +Info 60 [00:02:10.000] Elapsed:: *ms DirectoryWatcher:: Triggered with /user/username/projects/myproject/usage/usage.js :: WatchInfo: /user/username/projects/myproject/usage 1 undefined Config: /user/username/projects/myproject/usage/tsconfig.json WatchType: Wild card directory After request //// [/user/username/projects/myproject/usage/usage.js] "use strict"; @@ -578,12 +578,12 @@ FsWatchesRecursive:: /user/username/projects/myproject/dependency: {} -Info 61 [16:02:11.000] response: +Info 61 [00:02:11.000] response: { "response": true, "responseRequired": true } -Info 62 [16:02:12.000] request: +Info 62 [00:02:12.000] request: { "command": "emit-output", "arguments": { @@ -645,7 +645,7 @@ FsWatchesRecursive:: /user/username/projects/myproject/dependency: {} -Info 63 [16:02:13.000] response: +Info 63 [00:02:13.000] response: { "response": { "outputFiles": [ 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 dd21e938a886e..862c7c8a7b7b9 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 @@ -1,5 +1,5 @@ -Info 0 [16:00:29.000] Provided types map file "/a/lib/typesMap.json" doesn't exist -Info 1 [16:00:30.000] request: +Info 0 [00:00:29.000] Provided types map file "/a/lib/typesMap.json" doesn't exist +Info 1 [00:00:30.000] request: { "seq": 0, "type": "request", @@ -49,11 +49,11 @@ FsWatches:: FsWatchesRecursive:: -Info 2 [16:00:31.000] Search path: /user/username/projects/myproject/usage -Info 3 [16:00:32.000] For info: /user/username/projects/myproject/usage/usage.ts :: Config file name: /user/username/projects/myproject/usage/tsconfig.json -Info 4 [16:00:33.000] Creating configuration project /user/username/projects/myproject/usage/tsconfig.json -Info 5 [16:00:34.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/usage/tsconfig.json 2000 undefined Project: /user/username/projects/myproject/usage/tsconfig.json WatchType: Config file -Info 6 [16:00:35.000] Config: /user/username/projects/myproject/usage/tsconfig.json : { +Info 2 [00:00:31.000] Search path: /user/username/projects/myproject/usage +Info 3 [00:00:32.000] For info: /user/username/projects/myproject/usage/usage.ts :: Config file name: /user/username/projects/myproject/usage/tsconfig.json +Info 4 [00:00:33.000] Creating configuration project /user/username/projects/myproject/usage/tsconfig.json +Info 5 [00:00:34.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/usage/tsconfig.json 2000 undefined Project: /user/username/projects/myproject/usage/tsconfig.json WatchType: Config file +Info 6 [00:00:35.000] Config: /user/username/projects/myproject/usage/tsconfig.json : { "rootNames": [ "/user/username/projects/myproject/usage/usage.ts" ], @@ -67,11 +67,11 @@ Info 6 [16:00:35.000] Config: /user/username/projects/myproject/usage/tsconfi } ] } -Info 7 [16:00:36.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/usage 1 undefined Config: /user/username/projects/myproject/usage/tsconfig.json WatchType: Wild card directory -Info 8 [16:00:37.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/usage 1 undefined Config: /user/username/projects/myproject/usage/tsconfig.json WatchType: Wild card directory -Info 9 [16:00:38.000] Plugins were requested but not running in environment that supports 'require'. Nothing will be loaded -Info 10 [16:00:39.000] Starting updateGraphWorker: Project: /user/username/projects/myproject/usage/tsconfig.json -Info 11 [16:00:40.000] Config: /user/username/projects/myproject/dependency/tsconfig.json : { +Info 7 [00:00:36.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/usage 1 undefined Config: /user/username/projects/myproject/usage/tsconfig.json WatchType: Wild card directory +Info 8 [00:00:37.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/usage 1 undefined Config: /user/username/projects/myproject/usage/tsconfig.json WatchType: Wild card directory +Info 9 [00:00:38.000] Plugins were requested but not running in environment that supports 'require'. Nothing will be loaded +Info 10 [00:00:39.000] Starting updateGraphWorker: Project: /user/username/projects/myproject/usage/tsconfig.json +Info 11 [00:00:40.000] Config: /user/username/projects/myproject/dependency/tsconfig.json : { "rootNames": [ "/user/username/projects/myproject/dependency/fns.ts" ], @@ -81,20 +81,20 @@ Info 11 [16:00:40.000] Config: /user/username/projects/myproject/dependency/ts "configFilePath": "/user/username/projects/myproject/dependency/tsconfig.json" } } -Info 12 [16:00:41.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/dependency/tsconfig.json 2000 undefined Project: /user/username/projects/myproject/usage/tsconfig.json WatchType: Config file -Info 13 [16:00:42.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/dependency 1 undefined Config: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Wild card directory -Info 14 [16:00:43.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/dependency 1 undefined Config: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Wild card directory -Info 15 [16:00:44.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/decls 1 undefined Project: /user/username/projects/myproject/usage/tsconfig.json WatchType: Failed Lookup Locations -Info 16 [16:00:45.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/decls 1 undefined Project: /user/username/projects/myproject/usage/tsconfig.json WatchType: Failed Lookup Locations -Info 17 [16:00:46.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/dependency/fns.ts 500 undefined WatchType: Closed Script info -Info 18 [16:00:47.000] FileWatcher:: Added:: WatchInfo: /a/lib/lib.d.ts 500 undefined WatchType: Closed Script info -Info 19 [16:00:48.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/usage/node_modules/@types 1 undefined Project: /user/username/projects/myproject/usage/tsconfig.json WatchType: Type roots -Info 20 [16:00:49.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/usage/node_modules/@types 1 undefined Project: /user/username/projects/myproject/usage/tsconfig.json WatchType: Type roots -Info 21 [16:00:50.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/usage/tsconfig.json WatchType: Type roots -Info 22 [16:00:51.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/usage/tsconfig.json WatchType: Type roots -Info 23 [16:00:52.000] Finishing updateGraphWorker: Project: /user/username/projects/myproject/usage/tsconfig.json Version: 1 structureChanged: true structureIsReused:: Not Elapsed:: *ms -Info 24 [16:00:53.000] Project '/user/username/projects/myproject/usage/tsconfig.json' (Configured) -Info 25 [16:00:54.000] Files (3) +Info 12 [00:00:41.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/dependency/tsconfig.json 2000 undefined Project: /user/username/projects/myproject/usage/tsconfig.json WatchType: Config file +Info 13 [00:00:42.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/dependency 1 undefined Config: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Wild card directory +Info 14 [00:00:43.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/dependency 1 undefined Config: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Wild card directory +Info 15 [00:00:44.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/decls 1 undefined Project: /user/username/projects/myproject/usage/tsconfig.json WatchType: Failed Lookup Locations +Info 16 [00:00:45.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/decls 1 undefined Project: /user/username/projects/myproject/usage/tsconfig.json WatchType: Failed Lookup Locations +Info 17 [00:00:46.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/dependency/fns.ts 500 undefined WatchType: Closed Script info +Info 18 [00:00:47.000] FileWatcher:: Added:: WatchInfo: /a/lib/lib.d.ts 500 undefined WatchType: Closed Script info +Info 19 [00:00:48.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/usage/node_modules/@types 1 undefined Project: /user/username/projects/myproject/usage/tsconfig.json WatchType: Type roots +Info 20 [00:00:49.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/usage/node_modules/@types 1 undefined Project: /user/username/projects/myproject/usage/tsconfig.json WatchType: Type roots +Info 21 [00:00:50.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/usage/tsconfig.json WatchType: Type roots +Info 22 [00:00:51.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/usage/tsconfig.json WatchType: Type roots +Info 23 [00:00:52.000] Finishing updateGraphWorker: Project: /user/username/projects/myproject/usage/tsconfig.json Version: 1 structureChanged: true structureIsReused:: Not Elapsed:: *ms +Info 24 [00:00:53.000] Project '/user/username/projects/myproject/usage/tsconfig.json' (Configured) +Info 25 [00:00:54.000] Files (3) /a/lib/lib.d.ts /user/username/projects/myproject/dependency/fns.ts /user/username/projects/myproject/usage/usage.ts @@ -107,14 +107,14 @@ Info 25 [16:00:54.000] Files (3) usage.ts Matched by default include pattern '**/*' -Info 26 [16:00:55.000] ----------------------------------------------- -Info 27 [16:00:56.000] Project '/user/username/projects/myproject/usage/tsconfig.json' (Configured) -Info 27 [16:00:57.000] Files (3) +Info 26 [00:00:55.000] ----------------------------------------------- +Info 27 [00:00:56.000] Project '/user/username/projects/myproject/usage/tsconfig.json' (Configured) +Info 27 [00:00:57.000] Files (3) -Info 27 [16:00:58.000] ----------------------------------------------- -Info 27 [16:00:59.000] Open files: -Info 27 [16:01:00.000] FileName: /user/username/projects/myproject/usage/usage.ts ProjectRootPath: undefined -Info 27 [16:01:01.000] Projects: /user/username/projects/myproject/usage/tsconfig.json +Info 27 [00:00:58.000] ----------------------------------------------- +Info 27 [00:00:59.000] Open files: +Info 27 [00:01:00.000] FileName: /user/username/projects/myproject/usage/usage.ts ProjectRootPath: undefined +Info 27 [00:01:01.000] Projects: /user/username/projects/myproject/usage/tsconfig.json After request PolledWatches:: @@ -141,11 +141,11 @@ FsWatchesRecursive:: /user/username/projects/myproject/dependency: {} -Info 27 [16:01:02.000] response: +Info 27 [00:01:02.000] response: { "responseRequired": false } -Info 28 [16:01:03.000] request: +Info 28 [00:01:03.000] request: { "seq": 0, "type": "request", @@ -180,19 +180,19 @@ FsWatchesRecursive:: /user/username/projects/myproject/dependency: {} -Info 29 [16:01:04.000] FileWatcher:: Close:: WatchInfo: /user/username/projects/myproject/dependency/fns.ts 500 undefined WatchType: Closed Script info -Info 30 [16:01:05.000] Search path: /user/username/projects/myproject/dependency -Info 31 [16:01:06.000] For info: /user/username/projects/myproject/dependency/fns.ts :: Config file name: /user/username/projects/myproject/dependency/tsconfig.json -Info 32 [16:01:07.000] Creating configuration project /user/username/projects/myproject/dependency/tsconfig.json -Info 33 [16:01:08.000] Plugins were requested but not running in environment that supports 'require'. Nothing will be loaded -Info 34 [16:01:09.000] Starting updateGraphWorker: Project: /user/username/projects/myproject/dependency/tsconfig.json -Info 35 [16:01:10.000] 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 36 [16:01:11.000] 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 37 [16:01:12.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Type roots -Info 38 [16:01:13.000] 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 39 [16:01:14.000] Finishing updateGraphWorker: Project: /user/username/projects/myproject/dependency/tsconfig.json Version: 1 structureChanged: true structureIsReused:: Not Elapsed:: *ms -Info 40 [16:01:15.000] Project '/user/username/projects/myproject/dependency/tsconfig.json' (Configured) -Info 41 [16:01:16.000] Files (2) +Info 29 [00:01:04.000] FileWatcher:: Close:: WatchInfo: /user/username/projects/myproject/dependency/fns.ts 500 undefined WatchType: Closed Script info +Info 30 [00:01:05.000] Search path: /user/username/projects/myproject/dependency +Info 31 [00:01:06.000] For info: /user/username/projects/myproject/dependency/fns.ts :: Config file name: /user/username/projects/myproject/dependency/tsconfig.json +Info 32 [00:01:07.000] Creating configuration project /user/username/projects/myproject/dependency/tsconfig.json +Info 33 [00:01:08.000] Plugins were requested but not running in environment that supports 'require'. Nothing will be loaded +Info 34 [00:01:09.000] Starting updateGraphWorker: Project: /user/username/projects/myproject/dependency/tsconfig.json +Info 35 [00:01:10.000] 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 36 [00:01:11.000] 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 37 [00:01:12.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Type roots +Info 38 [00:01:13.000] 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 39 [00:01:14.000] Finishing updateGraphWorker: Project: /user/username/projects/myproject/dependency/tsconfig.json Version: 1 structureChanged: true structureIsReused:: Not Elapsed:: *ms +Info 40 [00:01:15.000] Project '/user/username/projects/myproject/dependency/tsconfig.json' (Configured) +Info 41 [00:01:16.000] Files (2) /a/lib/lib.d.ts /user/username/projects/myproject/dependency/fns.ts @@ -202,22 +202,22 @@ Info 41 [16:01:16.000] Files (2) fns.ts Matched by default include pattern '**/*' -Info 42 [16:01:17.000] ----------------------------------------------- -Info 43 [16:01:18.000] Search path: /user/username/projects/myproject/dependency -Info 44 [16:01:19.000] For info: /user/username/projects/myproject/dependency/tsconfig.json :: No config files found. -Info 45 [16:01:20.000] Project '/user/username/projects/myproject/usage/tsconfig.json' (Configured) -Info 45 [16:01:21.000] Files (3) - -Info 45 [16:01:22.000] ----------------------------------------------- -Info 45 [16:01:23.000] Project '/user/username/projects/myproject/dependency/tsconfig.json' (Configured) -Info 45 [16:01:24.000] Files (2) - -Info 45 [16:01:25.000] ----------------------------------------------- -Info 45 [16:01:26.000] Open files: -Info 45 [16:01:27.000] FileName: /user/username/projects/myproject/usage/usage.ts ProjectRootPath: undefined -Info 45 [16:01:28.000] Projects: /user/username/projects/myproject/usage/tsconfig.json -Info 45 [16:01:29.000] FileName: /user/username/projects/myproject/dependency/fns.ts ProjectRootPath: undefined -Info 45 [16:01:30.000] Projects: /user/username/projects/myproject/usage/tsconfig.json,/user/username/projects/myproject/dependency/tsconfig.json +Info 42 [00:01:17.000] ----------------------------------------------- +Info 43 [00:01:18.000] Search path: /user/username/projects/myproject/dependency +Info 44 [00:01:19.000] For info: /user/username/projects/myproject/dependency/tsconfig.json :: No config files found. +Info 45 [00:01:20.000] Project '/user/username/projects/myproject/usage/tsconfig.json' (Configured) +Info 45 [00:01:21.000] Files (3) + +Info 45 [00:01:22.000] ----------------------------------------------- +Info 45 [00:01:23.000] Project '/user/username/projects/myproject/dependency/tsconfig.json' (Configured) +Info 45 [00:01:24.000] Files (2) + +Info 45 [00:01:25.000] ----------------------------------------------- +Info 45 [00:01:26.000] Open files: +Info 45 [00:01:27.000] FileName: /user/username/projects/myproject/usage/usage.ts ProjectRootPath: undefined +Info 45 [00:01:28.000] Projects: /user/username/projects/myproject/usage/tsconfig.json +Info 45 [00:01:29.000] FileName: /user/username/projects/myproject/dependency/fns.ts ProjectRootPath: undefined +Info 45 [00:01:30.000] Projects: /user/username/projects/myproject/usage/tsconfig.json,/user/username/projects/myproject/dependency/tsconfig.json After request PolledWatches:: @@ -244,11 +244,11 @@ FsWatchesRecursive:: /user/username/projects/myproject/dependency: {} -Info 45 [16:01:31.000] response: +Info 45 [00:01:31.000] response: { "responseRequired": false } -Info 46 [16:01:32.000] request: +Info 46 [00:01:32.000] request: { "command": "compileOnSaveAffectedFileList", "arguments": { @@ -283,34 +283,34 @@ FsWatchesRecursive:: /user/username/projects/myproject/dependency: {} -Info 47 [16:01:33.000] Before ensureProjectForOpenFiles: -Info 48 [16:01:34.000] Project '/user/username/projects/myproject/usage/tsconfig.json' (Configured) -Info 48 [16:01:35.000] Files (3) - -Info 48 [16:01:36.000] ----------------------------------------------- -Info 48 [16:01:37.000] Project '/user/username/projects/myproject/dependency/tsconfig.json' (Configured) -Info 48 [16:01:38.000] Files (2) - -Info 48 [16:01:39.000] ----------------------------------------------- -Info 48 [16:01:40.000] Open files: -Info 48 [16:01:41.000] FileName: /user/username/projects/myproject/usage/usage.ts ProjectRootPath: undefined -Info 48 [16:01:42.000] Projects: /user/username/projects/myproject/usage/tsconfig.json -Info 48 [16:01:43.000] FileName: /user/username/projects/myproject/dependency/fns.ts ProjectRootPath: undefined -Info 48 [16:01:44.000] Projects: /user/username/projects/myproject/usage/tsconfig.json,/user/username/projects/myproject/dependency/tsconfig.json -Info 48 [16:01:45.000] After ensureProjectForOpenFiles: -Info 49 [16:01:46.000] Project '/user/username/projects/myproject/usage/tsconfig.json' (Configured) -Info 49 [16:01:47.000] Files (3) - -Info 49 [16:01:48.000] ----------------------------------------------- -Info 49 [16:01:49.000] Project '/user/username/projects/myproject/dependency/tsconfig.json' (Configured) -Info 49 [16:01:50.000] Files (2) - -Info 49 [16:01:51.000] ----------------------------------------------- -Info 49 [16:01:52.000] Open files: -Info 49 [16:01:53.000] FileName: /user/username/projects/myproject/usage/usage.ts ProjectRootPath: undefined -Info 49 [16:01:54.000] Projects: /user/username/projects/myproject/usage/tsconfig.json -Info 49 [16:01:55.000] FileName: /user/username/projects/myproject/dependency/fns.ts ProjectRootPath: undefined -Info 49 [16:01:56.000] Projects: /user/username/projects/myproject/usage/tsconfig.json,/user/username/projects/myproject/dependency/tsconfig.json +Info 47 [00:01:33.000] Before ensureProjectForOpenFiles: +Info 48 [00:01:34.000] Project '/user/username/projects/myproject/usage/tsconfig.json' (Configured) +Info 48 [00:01:35.000] Files (3) + +Info 48 [00:01:36.000] ----------------------------------------------- +Info 48 [00:01:37.000] Project '/user/username/projects/myproject/dependency/tsconfig.json' (Configured) +Info 48 [00:01:38.000] Files (2) + +Info 48 [00:01:39.000] ----------------------------------------------- +Info 48 [00:01:40.000] Open files: +Info 48 [00:01:41.000] FileName: /user/username/projects/myproject/usage/usage.ts ProjectRootPath: undefined +Info 48 [00:01:42.000] Projects: /user/username/projects/myproject/usage/tsconfig.json +Info 48 [00:01:43.000] FileName: /user/username/projects/myproject/dependency/fns.ts ProjectRootPath: undefined +Info 48 [00:01:44.000] Projects: /user/username/projects/myproject/usage/tsconfig.json,/user/username/projects/myproject/dependency/tsconfig.json +Info 48 [00:01:45.000] After ensureProjectForOpenFiles: +Info 49 [00:01:46.000] Project '/user/username/projects/myproject/usage/tsconfig.json' (Configured) +Info 49 [00:01:47.000] Files (3) + +Info 49 [00:01:48.000] ----------------------------------------------- +Info 49 [00:01:49.000] Project '/user/username/projects/myproject/dependency/tsconfig.json' (Configured) +Info 49 [00:01:50.000] Files (2) + +Info 49 [00:01:51.000] ----------------------------------------------- +Info 49 [00:01:52.000] Open files: +Info 49 [00:01:53.000] FileName: /user/username/projects/myproject/usage/usage.ts ProjectRootPath: undefined +Info 49 [00:01:54.000] Projects: /user/username/projects/myproject/usage/tsconfig.json +Info 49 [00:01:55.000] FileName: /user/username/projects/myproject/dependency/fns.ts ProjectRootPath: undefined +Info 49 [00:01:56.000] Projects: /user/username/projects/myproject/usage/tsconfig.json,/user/username/projects/myproject/dependency/tsconfig.json After request PolledWatches:: @@ -337,7 +337,7 @@ FsWatchesRecursive:: /user/username/projects/myproject/dependency: {} -Info 49 [16:01:57.000] response: +Info 49 [00:01:57.000] response: { "response": [ { @@ -357,7 +357,7 @@ Info 49 [16:01:57.000] response: ], "responseRequired": true } -Info 50 [16:01:58.000] request: +Info 50 [00:01:58.000] request: { "command": "change", "arguments": { @@ -423,11 +423,11 @@ FsWatchesRecursive:: /user/username/projects/myproject/dependency: {} -Info 51 [16:01:59.000] response: +Info 51 [00:01:59.000] response: { "responseRequired": false } -Info 52 [16:02:00.000] request: +Info 52 [00:02:00.000] request: { "command": "compileOnSaveAffectedFileList", "arguments": { @@ -462,40 +462,40 @@ FsWatchesRecursive:: /user/username/projects/myproject/dependency: {} -Info 53 [16:02:01.000] Starting updateGraphWorker: Project: /user/username/projects/myproject/usage/tsconfig.json -Info 54 [16:02:02.000] Finishing updateGraphWorker: Project: /user/username/projects/myproject/usage/tsconfig.json Version: 2 structureChanged: false structureIsReused:: Completely Elapsed:: *ms -Info 55 [16:02:03.000] Different program with same set of files -Info 56 [16:02:04.000] Starting updateGraphWorker: Project: /user/username/projects/myproject/dependency/tsconfig.json -Info 57 [16:02:05.000] Finishing updateGraphWorker: Project: /user/username/projects/myproject/dependency/tsconfig.json Version: 2 structureChanged: false structureIsReused:: Completely Elapsed:: *ms -Info 58 [16:02:06.000] Different program with same set of files -Info 59 [16:02:07.000] Before ensureProjectForOpenFiles: -Info 60 [16:02:08.000] Project '/user/username/projects/myproject/usage/tsconfig.json' (Configured) -Info 60 [16:02:09.000] Files (3) - -Info 60 [16:02:10.000] ----------------------------------------------- -Info 60 [16:02:11.000] Project '/user/username/projects/myproject/dependency/tsconfig.json' (Configured) -Info 60 [16:02:12.000] Files (2) - -Info 60 [16:02:13.000] ----------------------------------------------- -Info 60 [16:02:14.000] Open files: -Info 60 [16:02:15.000] FileName: /user/username/projects/myproject/usage/usage.ts ProjectRootPath: undefined -Info 60 [16:02:16.000] Projects: /user/username/projects/myproject/usage/tsconfig.json -Info 60 [16:02:17.000] FileName: /user/username/projects/myproject/dependency/fns.ts ProjectRootPath: undefined -Info 60 [16:02:18.000] Projects: /user/username/projects/myproject/usage/tsconfig.json,/user/username/projects/myproject/dependency/tsconfig.json -Info 60 [16:02:19.000] After ensureProjectForOpenFiles: -Info 61 [16:02:20.000] Project '/user/username/projects/myproject/usage/tsconfig.json' (Configured) -Info 61 [16:02:21.000] Files (3) - -Info 61 [16:02:22.000] ----------------------------------------------- -Info 61 [16:02:23.000] Project '/user/username/projects/myproject/dependency/tsconfig.json' (Configured) -Info 61 [16:02:24.000] Files (2) - -Info 61 [16:02:25.000] ----------------------------------------------- -Info 61 [16:02:26.000] Open files: -Info 61 [16:02:27.000] FileName: /user/username/projects/myproject/usage/usage.ts ProjectRootPath: undefined -Info 61 [16:02:28.000] Projects: /user/username/projects/myproject/usage/tsconfig.json -Info 61 [16:02:29.000] FileName: /user/username/projects/myproject/dependency/fns.ts ProjectRootPath: undefined -Info 61 [16:02:30.000] Projects: /user/username/projects/myproject/usage/tsconfig.json,/user/username/projects/myproject/dependency/tsconfig.json +Info 53 [00:02:01.000] Starting updateGraphWorker: Project: /user/username/projects/myproject/usage/tsconfig.json +Info 54 [00:02:02.000] Finishing updateGraphWorker: Project: /user/username/projects/myproject/usage/tsconfig.json Version: 2 structureChanged: false structureIsReused:: Completely Elapsed:: *ms +Info 55 [00:02:03.000] Different program with same set of files +Info 56 [00:02:04.000] Starting updateGraphWorker: Project: /user/username/projects/myproject/dependency/tsconfig.json +Info 57 [00:02:05.000] Finishing updateGraphWorker: Project: /user/username/projects/myproject/dependency/tsconfig.json Version: 2 structureChanged: false structureIsReused:: Completely Elapsed:: *ms +Info 58 [00:02:06.000] Different program with same set of files +Info 59 [00:02:07.000] Before ensureProjectForOpenFiles: +Info 60 [00:02:08.000] Project '/user/username/projects/myproject/usage/tsconfig.json' (Configured) +Info 60 [00:02:09.000] Files (3) + +Info 60 [00:02:10.000] ----------------------------------------------- +Info 60 [00:02:11.000] Project '/user/username/projects/myproject/dependency/tsconfig.json' (Configured) +Info 60 [00:02:12.000] Files (2) + +Info 60 [00:02:13.000] ----------------------------------------------- +Info 60 [00:02:14.000] Open files: +Info 60 [00:02:15.000] FileName: /user/username/projects/myproject/usage/usage.ts ProjectRootPath: undefined +Info 60 [00:02:16.000] Projects: /user/username/projects/myproject/usage/tsconfig.json +Info 60 [00:02:17.000] FileName: /user/username/projects/myproject/dependency/fns.ts ProjectRootPath: undefined +Info 60 [00:02:18.000] Projects: /user/username/projects/myproject/usage/tsconfig.json,/user/username/projects/myproject/dependency/tsconfig.json +Info 60 [00:02:19.000] After ensureProjectForOpenFiles: +Info 61 [00:02:20.000] Project '/user/username/projects/myproject/usage/tsconfig.json' (Configured) +Info 61 [00:02:21.000] Files (3) + +Info 61 [00:02:22.000] ----------------------------------------------- +Info 61 [00:02:23.000] Project '/user/username/projects/myproject/dependency/tsconfig.json' (Configured) +Info 61 [00:02:24.000] Files (2) + +Info 61 [00:02:25.000] ----------------------------------------------- +Info 61 [00:02:26.000] Open files: +Info 61 [00:02:27.000] FileName: /user/username/projects/myproject/usage/usage.ts ProjectRootPath: undefined +Info 61 [00:02:28.000] Projects: /user/username/projects/myproject/usage/tsconfig.json +Info 61 [00:02:29.000] FileName: /user/username/projects/myproject/dependency/fns.ts ProjectRootPath: undefined +Info 61 [00:02:30.000] Projects: /user/username/projects/myproject/usage/tsconfig.json,/user/username/projects/myproject/dependency/tsconfig.json After request PolledWatches:: @@ -522,7 +522,7 @@ FsWatchesRecursive:: /user/username/projects/myproject/dependency: {} -Info 61 [16:02:31.000] response: +Info 61 [00:02:31.000] response: { "response": [ { @@ -535,7 +535,7 @@ Info 61 [16:02:31.000] response: ], "responseRequired": true } -Info 62 [16:02:32.000] request: +Info 62 [00:02:32.000] request: { "command": "compileOnSaveEmitFile", "arguments": { @@ -570,9 +570,9 @@ FsWatchesRecursive:: /user/username/projects/myproject/dependency: {} -Info 63 [16:02:35.000] DirectoryWatcher:: Triggered with /user/username/projects/myproject/usage/usage.js :: WatchInfo: /user/username/projects/myproject/usage 1 undefined Config: /user/username/projects/myproject/usage/tsconfig.json WatchType: Wild card directory -Info 64 [16:02:36.000] Project: /user/username/projects/myproject/usage/tsconfig.json Detected file add/remove of non supported extension: /user/username/projects/myproject/usage/usage.js -Info 65 [16:02:37.000] Elapsed:: *ms DirectoryWatcher:: Triggered with /user/username/projects/myproject/usage/usage.js :: WatchInfo: /user/username/projects/myproject/usage 1 undefined Config: /user/username/projects/myproject/usage/tsconfig.json WatchType: Wild card directory +Info 63 [00:02:35.000] DirectoryWatcher:: Triggered with /user/username/projects/myproject/usage/usage.js :: WatchInfo: /user/username/projects/myproject/usage 1 undefined Config: /user/username/projects/myproject/usage/tsconfig.json WatchType: Wild card directory +Info 64 [00:02:36.000] Project: /user/username/projects/myproject/usage/tsconfig.json Detected file add/remove of non supported extension: /user/username/projects/myproject/usage/usage.js +Info 65 [00:02:37.000] Elapsed:: *ms DirectoryWatcher:: Triggered with /user/username/projects/myproject/usage/usage.js :: WatchInfo: /user/username/projects/myproject/usage 1 undefined Config: /user/username/projects/myproject/usage/tsconfig.json WatchType: Wild card directory After request //// [/user/username/projects/myproject/usage/usage.js] "use strict"; @@ -607,12 +607,12 @@ FsWatchesRecursive:: /user/username/projects/myproject/dependency: {} -Info 66 [16:02:38.000] response: +Info 66 [00:02:38.000] response: { "response": true, "responseRequired": true } -Info 67 [16:02:39.000] request: +Info 67 [00:02:39.000] request: { "command": "emit-output", "arguments": { @@ -673,7 +673,7 @@ FsWatchesRecursive:: /user/username/projects/myproject/dependency: {} -Info 68 [16:02:40.000] response: +Info 68 [00:02:40.000] response: { "response": { "outputFiles": [ 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 1d85a744a330f..c7ff7875a4ca4 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 @@ -1,5 +1,5 @@ -Info 0 [16:00:29.000] Provided types map file "/a/lib/typesMap.json" doesn't exist -Info 1 [16:00:30.000] request: +Info 0 [00:00:29.000] Provided types map file "/a/lib/typesMap.json" doesn't exist +Info 1 [00:00:30.000] request: { "seq": 0, "type": "request", @@ -49,11 +49,11 @@ FsWatches:: FsWatchesRecursive:: -Info 2 [16:00:31.000] Search path: /user/username/projects/myproject/usage -Info 3 [16:00:32.000] For info: /user/username/projects/myproject/usage/usage.ts :: Config file name: /user/username/projects/myproject/usage/tsconfig.json -Info 4 [16:00:33.000] Creating configuration project /user/username/projects/myproject/usage/tsconfig.json -Info 5 [16:00:34.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/usage/tsconfig.json 2000 undefined Project: /user/username/projects/myproject/usage/tsconfig.json WatchType: Config file -Info 6 [16:00:35.000] Config: /user/username/projects/myproject/usage/tsconfig.json : { +Info 2 [00:00:31.000] Search path: /user/username/projects/myproject/usage +Info 3 [00:00:32.000] For info: /user/username/projects/myproject/usage/usage.ts :: Config file name: /user/username/projects/myproject/usage/tsconfig.json +Info 4 [00:00:33.000] Creating configuration project /user/username/projects/myproject/usage/tsconfig.json +Info 5 [00:00:34.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/usage/tsconfig.json 2000 undefined Project: /user/username/projects/myproject/usage/tsconfig.json WatchType: Config file +Info 6 [00:00:35.000] Config: /user/username/projects/myproject/usage/tsconfig.json : { "rootNames": [ "/user/username/projects/myproject/usage/usage.ts" ], @@ -67,11 +67,11 @@ Info 6 [16:00:35.000] Config: /user/username/projects/myproject/usage/tsconfi } ] } -Info 7 [16:00:36.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/usage 1 undefined Config: /user/username/projects/myproject/usage/tsconfig.json WatchType: Wild card directory -Info 8 [16:00:37.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/usage 1 undefined Config: /user/username/projects/myproject/usage/tsconfig.json WatchType: Wild card directory -Info 9 [16:00:38.000] Plugins were requested but not running in environment that supports 'require'. Nothing will be loaded -Info 10 [16:00:39.000] Starting updateGraphWorker: Project: /user/username/projects/myproject/usage/tsconfig.json -Info 11 [16:00:40.000] Config: /user/username/projects/myproject/dependency/tsconfig.json : { +Info 7 [00:00:36.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/usage 1 undefined Config: /user/username/projects/myproject/usage/tsconfig.json WatchType: Wild card directory +Info 8 [00:00:37.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/usage 1 undefined Config: /user/username/projects/myproject/usage/tsconfig.json WatchType: Wild card directory +Info 9 [00:00:38.000] Plugins were requested but not running in environment that supports 'require'. Nothing will be loaded +Info 10 [00:00:39.000] Starting updateGraphWorker: Project: /user/username/projects/myproject/usage/tsconfig.json +Info 11 [00:00:40.000] Config: /user/username/projects/myproject/dependency/tsconfig.json : { "rootNames": [ "/user/username/projects/myproject/dependency/fns.ts" ], @@ -81,20 +81,20 @@ Info 11 [16:00:40.000] Config: /user/username/projects/myproject/dependency/ts "configFilePath": "/user/username/projects/myproject/dependency/tsconfig.json" } } -Info 12 [16:00:41.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/dependency/tsconfig.json 2000 undefined Project: /user/username/projects/myproject/usage/tsconfig.json WatchType: Config file -Info 13 [16:00:42.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/dependency 1 undefined Config: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Wild card directory -Info 14 [16:00:43.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/dependency 1 undefined Config: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Wild card directory -Info 15 [16:00:44.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/decls 1 undefined Project: /user/username/projects/myproject/usage/tsconfig.json WatchType: Failed Lookup Locations -Info 16 [16:00:45.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/decls 1 undefined Project: /user/username/projects/myproject/usage/tsconfig.json WatchType: Failed Lookup Locations -Info 17 [16:00:46.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/dependency/fns.ts 500 undefined WatchType: Closed Script info -Info 18 [16:00:47.000] FileWatcher:: Added:: WatchInfo: /a/lib/lib.d.ts 500 undefined WatchType: Closed Script info -Info 19 [16:00:48.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/usage/node_modules/@types 1 undefined Project: /user/username/projects/myproject/usage/tsconfig.json WatchType: Type roots -Info 20 [16:00:49.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/usage/node_modules/@types 1 undefined Project: /user/username/projects/myproject/usage/tsconfig.json WatchType: Type roots -Info 21 [16:00:50.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/usage/tsconfig.json WatchType: Type roots -Info 22 [16:00:51.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/usage/tsconfig.json WatchType: Type roots -Info 23 [16:00:52.000] Finishing updateGraphWorker: Project: /user/username/projects/myproject/usage/tsconfig.json Version: 1 structureChanged: true structureIsReused:: Not Elapsed:: *ms -Info 24 [16:00:53.000] Project '/user/username/projects/myproject/usage/tsconfig.json' (Configured) -Info 25 [16:00:54.000] Files (3) +Info 12 [00:00:41.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/dependency/tsconfig.json 2000 undefined Project: /user/username/projects/myproject/usage/tsconfig.json WatchType: Config file +Info 13 [00:00:42.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/dependency 1 undefined Config: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Wild card directory +Info 14 [00:00:43.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/dependency 1 undefined Config: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Wild card directory +Info 15 [00:00:44.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/decls 1 undefined Project: /user/username/projects/myproject/usage/tsconfig.json WatchType: Failed Lookup Locations +Info 16 [00:00:45.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/decls 1 undefined Project: /user/username/projects/myproject/usage/tsconfig.json WatchType: Failed Lookup Locations +Info 17 [00:00:46.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/dependency/fns.ts 500 undefined WatchType: Closed Script info +Info 18 [00:00:47.000] FileWatcher:: Added:: WatchInfo: /a/lib/lib.d.ts 500 undefined WatchType: Closed Script info +Info 19 [00:00:48.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/usage/node_modules/@types 1 undefined Project: /user/username/projects/myproject/usage/tsconfig.json WatchType: Type roots +Info 20 [00:00:49.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/usage/node_modules/@types 1 undefined Project: /user/username/projects/myproject/usage/tsconfig.json WatchType: Type roots +Info 21 [00:00:50.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/usage/tsconfig.json WatchType: Type roots +Info 22 [00:00:51.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/usage/tsconfig.json WatchType: Type roots +Info 23 [00:00:52.000] Finishing updateGraphWorker: Project: /user/username/projects/myproject/usage/tsconfig.json Version: 1 structureChanged: true structureIsReused:: Not Elapsed:: *ms +Info 24 [00:00:53.000] Project '/user/username/projects/myproject/usage/tsconfig.json' (Configured) +Info 25 [00:00:54.000] Files (3) /a/lib/lib.d.ts /user/username/projects/myproject/dependency/fns.ts /user/username/projects/myproject/usage/usage.ts @@ -107,14 +107,14 @@ Info 25 [16:00:54.000] Files (3) usage.ts Matched by default include pattern '**/*' -Info 26 [16:00:55.000] ----------------------------------------------- -Info 27 [16:00:56.000] Project '/user/username/projects/myproject/usage/tsconfig.json' (Configured) -Info 27 [16:00:57.000] Files (3) +Info 26 [00:00:55.000] ----------------------------------------------- +Info 27 [00:00:56.000] Project '/user/username/projects/myproject/usage/tsconfig.json' (Configured) +Info 27 [00:00:57.000] Files (3) -Info 27 [16:00:58.000] ----------------------------------------------- -Info 27 [16:00:59.000] Open files: -Info 27 [16:01:00.000] FileName: /user/username/projects/myproject/usage/usage.ts ProjectRootPath: undefined -Info 27 [16:01:01.000] Projects: /user/username/projects/myproject/usage/tsconfig.json +Info 27 [00:00:58.000] ----------------------------------------------- +Info 27 [00:00:59.000] Open files: +Info 27 [00:01:00.000] FileName: /user/username/projects/myproject/usage/usage.ts ProjectRootPath: undefined +Info 27 [00:01:01.000] Projects: /user/username/projects/myproject/usage/tsconfig.json After request PolledWatches:: @@ -141,11 +141,11 @@ FsWatchesRecursive:: /user/username/projects/myproject/dependency: {} -Info 27 [16:01:02.000] response: +Info 27 [00:01:02.000] response: { "responseRequired": false } -Info 28 [16:01:03.000] request: +Info 28 [00:01:03.000] request: { "seq": 0, "type": "request", @@ -180,19 +180,19 @@ FsWatchesRecursive:: /user/username/projects/myproject/dependency: {} -Info 29 [16:01:04.000] FileWatcher:: Close:: WatchInfo: /user/username/projects/myproject/dependency/fns.ts 500 undefined WatchType: Closed Script info -Info 30 [16:01:05.000] Search path: /user/username/projects/myproject/dependency -Info 31 [16:01:06.000] For info: /user/username/projects/myproject/dependency/fns.ts :: Config file name: /user/username/projects/myproject/dependency/tsconfig.json -Info 32 [16:01:07.000] Creating configuration project /user/username/projects/myproject/dependency/tsconfig.json -Info 33 [16:01:08.000] Plugins were requested but not running in environment that supports 'require'. Nothing will be loaded -Info 34 [16:01:09.000] Starting updateGraphWorker: Project: /user/username/projects/myproject/dependency/tsconfig.json -Info 35 [16:01:10.000] 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 36 [16:01:11.000] 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 37 [16:01:12.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Type roots -Info 38 [16:01:13.000] 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 39 [16:01:14.000] Finishing updateGraphWorker: Project: /user/username/projects/myproject/dependency/tsconfig.json Version: 1 structureChanged: true structureIsReused:: Not Elapsed:: *ms -Info 40 [16:01:15.000] Project '/user/username/projects/myproject/dependency/tsconfig.json' (Configured) -Info 41 [16:01:16.000] Files (2) +Info 29 [00:01:04.000] FileWatcher:: Close:: WatchInfo: /user/username/projects/myproject/dependency/fns.ts 500 undefined WatchType: Closed Script info +Info 30 [00:01:05.000] Search path: /user/username/projects/myproject/dependency +Info 31 [00:01:06.000] For info: /user/username/projects/myproject/dependency/fns.ts :: Config file name: /user/username/projects/myproject/dependency/tsconfig.json +Info 32 [00:01:07.000] Creating configuration project /user/username/projects/myproject/dependency/tsconfig.json +Info 33 [00:01:08.000] Plugins were requested but not running in environment that supports 'require'. Nothing will be loaded +Info 34 [00:01:09.000] Starting updateGraphWorker: Project: /user/username/projects/myproject/dependency/tsconfig.json +Info 35 [00:01:10.000] 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 36 [00:01:11.000] 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 37 [00:01:12.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Type roots +Info 38 [00:01:13.000] 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 39 [00:01:14.000] Finishing updateGraphWorker: Project: /user/username/projects/myproject/dependency/tsconfig.json Version: 1 structureChanged: true structureIsReused:: Not Elapsed:: *ms +Info 40 [00:01:15.000] Project '/user/username/projects/myproject/dependency/tsconfig.json' (Configured) +Info 41 [00:01:16.000] Files (2) /a/lib/lib.d.ts /user/username/projects/myproject/dependency/fns.ts @@ -202,22 +202,22 @@ Info 41 [16:01:16.000] Files (2) fns.ts Matched by default include pattern '**/*' -Info 42 [16:01:17.000] ----------------------------------------------- -Info 43 [16:01:18.000] Search path: /user/username/projects/myproject/dependency -Info 44 [16:01:19.000] For info: /user/username/projects/myproject/dependency/tsconfig.json :: No config files found. -Info 45 [16:01:20.000] Project '/user/username/projects/myproject/usage/tsconfig.json' (Configured) -Info 45 [16:01:21.000] Files (3) - -Info 45 [16:01:22.000] ----------------------------------------------- -Info 45 [16:01:23.000] Project '/user/username/projects/myproject/dependency/tsconfig.json' (Configured) -Info 45 [16:01:24.000] Files (2) - -Info 45 [16:01:25.000] ----------------------------------------------- -Info 45 [16:01:26.000] Open files: -Info 45 [16:01:27.000] FileName: /user/username/projects/myproject/usage/usage.ts ProjectRootPath: undefined -Info 45 [16:01:28.000] Projects: /user/username/projects/myproject/usage/tsconfig.json -Info 45 [16:01:29.000] FileName: /user/username/projects/myproject/dependency/fns.ts ProjectRootPath: undefined -Info 45 [16:01:30.000] Projects: /user/username/projects/myproject/usage/tsconfig.json,/user/username/projects/myproject/dependency/tsconfig.json +Info 42 [00:01:17.000] ----------------------------------------------- +Info 43 [00:01:18.000] Search path: /user/username/projects/myproject/dependency +Info 44 [00:01:19.000] For info: /user/username/projects/myproject/dependency/tsconfig.json :: No config files found. +Info 45 [00:01:20.000] Project '/user/username/projects/myproject/usage/tsconfig.json' (Configured) +Info 45 [00:01:21.000] Files (3) + +Info 45 [00:01:22.000] ----------------------------------------------- +Info 45 [00:01:23.000] Project '/user/username/projects/myproject/dependency/tsconfig.json' (Configured) +Info 45 [00:01:24.000] Files (2) + +Info 45 [00:01:25.000] ----------------------------------------------- +Info 45 [00:01:26.000] Open files: +Info 45 [00:01:27.000] FileName: /user/username/projects/myproject/usage/usage.ts ProjectRootPath: undefined +Info 45 [00:01:28.000] Projects: /user/username/projects/myproject/usage/tsconfig.json +Info 45 [00:01:29.000] FileName: /user/username/projects/myproject/dependency/fns.ts ProjectRootPath: undefined +Info 45 [00:01:30.000] Projects: /user/username/projects/myproject/usage/tsconfig.json,/user/username/projects/myproject/dependency/tsconfig.json After request PolledWatches:: @@ -244,11 +244,11 @@ FsWatchesRecursive:: /user/username/projects/myproject/dependency: {} -Info 45 [16:01:31.000] response: +Info 45 [00:01:31.000] response: { "responseRequired": false } -Info 46 [16:01:32.000] request: +Info 46 [00:01:32.000] request: { "command": "compileOnSaveAffectedFileList", "arguments": { @@ -283,34 +283,34 @@ FsWatchesRecursive:: /user/username/projects/myproject/dependency: {} -Info 47 [16:01:33.000] Before ensureProjectForOpenFiles: -Info 48 [16:01:34.000] Project '/user/username/projects/myproject/usage/tsconfig.json' (Configured) -Info 48 [16:01:35.000] Files (3) - -Info 48 [16:01:36.000] ----------------------------------------------- -Info 48 [16:01:37.000] Project '/user/username/projects/myproject/dependency/tsconfig.json' (Configured) -Info 48 [16:01:38.000] Files (2) - -Info 48 [16:01:39.000] ----------------------------------------------- -Info 48 [16:01:40.000] Open files: -Info 48 [16:01:41.000] FileName: /user/username/projects/myproject/usage/usage.ts ProjectRootPath: undefined -Info 48 [16:01:42.000] Projects: /user/username/projects/myproject/usage/tsconfig.json -Info 48 [16:01:43.000] FileName: /user/username/projects/myproject/dependency/fns.ts ProjectRootPath: undefined -Info 48 [16:01:44.000] Projects: /user/username/projects/myproject/usage/tsconfig.json,/user/username/projects/myproject/dependency/tsconfig.json -Info 48 [16:01:45.000] After ensureProjectForOpenFiles: -Info 49 [16:01:46.000] Project '/user/username/projects/myproject/usage/tsconfig.json' (Configured) -Info 49 [16:01:47.000] Files (3) - -Info 49 [16:01:48.000] ----------------------------------------------- -Info 49 [16:01:49.000] Project '/user/username/projects/myproject/dependency/tsconfig.json' (Configured) -Info 49 [16:01:50.000] Files (2) - -Info 49 [16:01:51.000] ----------------------------------------------- -Info 49 [16:01:52.000] Open files: -Info 49 [16:01:53.000] FileName: /user/username/projects/myproject/usage/usage.ts ProjectRootPath: undefined -Info 49 [16:01:54.000] Projects: /user/username/projects/myproject/usage/tsconfig.json -Info 49 [16:01:55.000] FileName: /user/username/projects/myproject/dependency/fns.ts ProjectRootPath: undefined -Info 49 [16:01:56.000] Projects: /user/username/projects/myproject/usage/tsconfig.json,/user/username/projects/myproject/dependency/tsconfig.json +Info 47 [00:01:33.000] Before ensureProjectForOpenFiles: +Info 48 [00:01:34.000] Project '/user/username/projects/myproject/usage/tsconfig.json' (Configured) +Info 48 [00:01:35.000] Files (3) + +Info 48 [00:01:36.000] ----------------------------------------------- +Info 48 [00:01:37.000] Project '/user/username/projects/myproject/dependency/tsconfig.json' (Configured) +Info 48 [00:01:38.000] Files (2) + +Info 48 [00:01:39.000] ----------------------------------------------- +Info 48 [00:01:40.000] Open files: +Info 48 [00:01:41.000] FileName: /user/username/projects/myproject/usage/usage.ts ProjectRootPath: undefined +Info 48 [00:01:42.000] Projects: /user/username/projects/myproject/usage/tsconfig.json +Info 48 [00:01:43.000] FileName: /user/username/projects/myproject/dependency/fns.ts ProjectRootPath: undefined +Info 48 [00:01:44.000] Projects: /user/username/projects/myproject/usage/tsconfig.json,/user/username/projects/myproject/dependency/tsconfig.json +Info 48 [00:01:45.000] After ensureProjectForOpenFiles: +Info 49 [00:01:46.000] Project '/user/username/projects/myproject/usage/tsconfig.json' (Configured) +Info 49 [00:01:47.000] Files (3) + +Info 49 [00:01:48.000] ----------------------------------------------- +Info 49 [00:01:49.000] Project '/user/username/projects/myproject/dependency/tsconfig.json' (Configured) +Info 49 [00:01:50.000] Files (2) + +Info 49 [00:01:51.000] ----------------------------------------------- +Info 49 [00:01:52.000] Open files: +Info 49 [00:01:53.000] FileName: /user/username/projects/myproject/usage/usage.ts ProjectRootPath: undefined +Info 49 [00:01:54.000] Projects: /user/username/projects/myproject/usage/tsconfig.json +Info 49 [00:01:55.000] FileName: /user/username/projects/myproject/dependency/fns.ts ProjectRootPath: undefined +Info 49 [00:01:56.000] Projects: /user/username/projects/myproject/usage/tsconfig.json,/user/username/projects/myproject/dependency/tsconfig.json After request PolledWatches:: @@ -337,7 +337,7 @@ FsWatchesRecursive:: /user/username/projects/myproject/dependency: {} -Info 49 [16:01:57.000] response: +Info 49 [00:01:57.000] response: { "response": [ { @@ -357,7 +357,7 @@ Info 49 [16:01:57.000] response: ], "responseRequired": true } -Info 50 [16:01:58.000] request: +Info 50 [00:01:58.000] request: { "command": "change", "arguments": { @@ -423,11 +423,11 @@ FsWatchesRecursive:: /user/username/projects/myproject/dependency: {} -Info 51 [16:01:59.000] response: +Info 51 [00:01:59.000] response: { "responseRequired": false } -Info 52 [16:02:00.000] request: +Info 52 [00:02:00.000] request: { "command": "compileOnSaveAffectedFileList", "arguments": { @@ -463,9 +463,9 @@ FsWatchesRecursive:: /user/username/projects/myproject/dependency: {} -Info 53 [16:02:01.000] Starting updateGraphWorker: Project: /user/username/projects/myproject/usage/tsconfig.json -Info 54 [16:02:02.000] Finishing updateGraphWorker: Project: /user/username/projects/myproject/usage/tsconfig.json Version: 2 structureChanged: false structureIsReused:: Completely Elapsed:: *ms -Info 55 [16:02:03.000] Different program with same set of files +Info 53 [00:02:01.000] Starting updateGraphWorker: Project: /user/username/projects/myproject/usage/tsconfig.json +Info 54 [00:02:02.000] Finishing updateGraphWorker: Project: /user/username/projects/myproject/usage/tsconfig.json Version: 2 structureChanged: false structureIsReused:: Completely Elapsed:: *ms +Info 55 [00:02:03.000] Different program with same set of files After request PolledWatches:: @@ -492,7 +492,7 @@ FsWatchesRecursive:: /user/username/projects/myproject/dependency: {} -Info 56 [16:02:04.000] response: +Info 56 [00:02:04.000] response: { "response": [ { @@ -505,7 +505,7 @@ Info 56 [16:02:04.000] response: ], "responseRequired": true } -Info 57 [16:02:05.000] request: +Info 57 [00:02:05.000] request: { "command": "compileOnSaveEmitFile", "arguments": { @@ -541,9 +541,9 @@ FsWatchesRecursive:: /user/username/projects/myproject/dependency: {} -Info 58 [16:02:08.000] DirectoryWatcher:: Triggered with /user/username/projects/myproject/usage/usage.js :: WatchInfo: /user/username/projects/myproject/usage 1 undefined Config: /user/username/projects/myproject/usage/tsconfig.json WatchType: Wild card directory -Info 59 [16:02:09.000] Project: /user/username/projects/myproject/usage/tsconfig.json Detected file add/remove of non supported extension: /user/username/projects/myproject/usage/usage.js -Info 60 [16:02:10.000] Elapsed:: *ms DirectoryWatcher:: Triggered with /user/username/projects/myproject/usage/usage.js :: WatchInfo: /user/username/projects/myproject/usage 1 undefined Config: /user/username/projects/myproject/usage/tsconfig.json WatchType: Wild card directory +Info 58 [00:02:08.000] DirectoryWatcher:: Triggered with /user/username/projects/myproject/usage/usage.js :: WatchInfo: /user/username/projects/myproject/usage 1 undefined Config: /user/username/projects/myproject/usage/tsconfig.json WatchType: Wild card directory +Info 59 [00:02:09.000] Project: /user/username/projects/myproject/usage/tsconfig.json Detected file add/remove of non supported extension: /user/username/projects/myproject/usage/usage.js +Info 60 [00:02:10.000] Elapsed:: *ms DirectoryWatcher:: Triggered with /user/username/projects/myproject/usage/usage.js :: WatchInfo: /user/username/projects/myproject/usage 1 undefined Config: /user/username/projects/myproject/usage/tsconfig.json WatchType: Wild card directory After request //// [/user/username/projects/myproject/usage/usage.js] "use strict"; @@ -579,12 +579,12 @@ FsWatchesRecursive:: /user/username/projects/myproject/dependency: {} -Info 61 [16:02:11.000] response: +Info 61 [00:02:11.000] response: { "response": true, "responseRequired": true } -Info 62 [16:02:12.000] request: +Info 62 [00:02:12.000] request: { "command": "emit-output", "arguments": { @@ -646,7 +646,7 @@ FsWatchesRecursive:: /user/username/projects/myproject/dependency: {} -Info 63 [16:02:13.000] response: +Info 63 [00:02:13.000] response: { "response": { "outputFiles": [ 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 89b3cc444024f..68a5ba4c64157 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 @@ -1,5 +1,5 @@ -Info 0 [16:00:29.000] Provided types map file "/a/lib/typesMap.json" doesn't exist -Info 1 [16:00:30.000] request: +Info 0 [00:00:29.000] Provided types map file "/a/lib/typesMap.json" doesn't exist +Info 1 [00:00:30.000] request: { "seq": 0, "type": "request", @@ -49,11 +49,11 @@ FsWatches:: FsWatchesRecursive:: -Info 2 [16:00:31.000] Search path: /user/username/projects/myproject/usage -Info 3 [16:00:32.000] For info: /user/username/projects/myproject/usage/usage.ts :: Config file name: /user/username/projects/myproject/usage/tsconfig.json -Info 4 [16:00:33.000] Creating configuration project /user/username/projects/myproject/usage/tsconfig.json -Info 5 [16:00:34.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/usage/tsconfig.json 2000 undefined Project: /user/username/projects/myproject/usage/tsconfig.json WatchType: Config file -Info 6 [16:00:35.000] Config: /user/username/projects/myproject/usage/tsconfig.json : { +Info 2 [00:00:31.000] Search path: /user/username/projects/myproject/usage +Info 3 [00:00:32.000] For info: /user/username/projects/myproject/usage/usage.ts :: Config file name: /user/username/projects/myproject/usage/tsconfig.json +Info 4 [00:00:33.000] Creating configuration project /user/username/projects/myproject/usage/tsconfig.json +Info 5 [00:00:34.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/usage/tsconfig.json 2000 undefined Project: /user/username/projects/myproject/usage/tsconfig.json WatchType: Config file +Info 6 [00:00:35.000] Config: /user/username/projects/myproject/usage/tsconfig.json : { "rootNames": [ "/user/username/projects/myproject/usage/usage.ts" ], @@ -67,11 +67,11 @@ Info 6 [16:00:35.000] Config: /user/username/projects/myproject/usage/tsconfi } ] } -Info 7 [16:00:36.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/usage 1 undefined Config: /user/username/projects/myproject/usage/tsconfig.json WatchType: Wild card directory -Info 8 [16:00:37.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/usage 1 undefined Config: /user/username/projects/myproject/usage/tsconfig.json WatchType: Wild card directory -Info 9 [16:00:38.000] Plugins were requested but not running in environment that supports 'require'. Nothing will be loaded -Info 10 [16:00:39.000] Starting updateGraphWorker: Project: /user/username/projects/myproject/usage/tsconfig.json -Info 11 [16:00:40.000] Config: /user/username/projects/myproject/dependency/tsconfig.json : { +Info 7 [00:00:36.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/usage 1 undefined Config: /user/username/projects/myproject/usage/tsconfig.json WatchType: Wild card directory +Info 8 [00:00:37.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/usage 1 undefined Config: /user/username/projects/myproject/usage/tsconfig.json WatchType: Wild card directory +Info 9 [00:00:38.000] Plugins were requested but not running in environment that supports 'require'. Nothing will be loaded +Info 10 [00:00:39.000] Starting updateGraphWorker: Project: /user/username/projects/myproject/usage/tsconfig.json +Info 11 [00:00:40.000] Config: /user/username/projects/myproject/dependency/tsconfig.json : { "rootNames": [ "/user/username/projects/myproject/dependency/fns.ts" ], @@ -81,20 +81,20 @@ Info 11 [16:00:40.000] Config: /user/username/projects/myproject/dependency/ts "configFilePath": "/user/username/projects/myproject/dependency/tsconfig.json" } } -Info 12 [16:00:41.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/dependency/tsconfig.json 2000 undefined Project: /user/username/projects/myproject/usage/tsconfig.json WatchType: Config file -Info 13 [16:00:42.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/dependency 1 undefined Config: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Wild card directory -Info 14 [16:00:43.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/dependency 1 undefined Config: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Wild card directory -Info 15 [16:00:44.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/decls 1 undefined Project: /user/username/projects/myproject/usage/tsconfig.json WatchType: Failed Lookup Locations -Info 16 [16:00:45.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/decls 1 undefined Project: /user/username/projects/myproject/usage/tsconfig.json WatchType: Failed Lookup Locations -Info 17 [16:00:46.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/dependency/fns.ts 500 undefined WatchType: Closed Script info -Info 18 [16:00:47.000] FileWatcher:: Added:: WatchInfo: /a/lib/lib.d.ts 500 undefined WatchType: Closed Script info -Info 19 [16:00:48.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/usage/node_modules/@types 1 undefined Project: /user/username/projects/myproject/usage/tsconfig.json WatchType: Type roots -Info 20 [16:00:49.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/usage/node_modules/@types 1 undefined Project: /user/username/projects/myproject/usage/tsconfig.json WatchType: Type roots -Info 21 [16:00:50.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/usage/tsconfig.json WatchType: Type roots -Info 22 [16:00:51.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/usage/tsconfig.json WatchType: Type roots -Info 23 [16:00:52.000] Finishing updateGraphWorker: Project: /user/username/projects/myproject/usage/tsconfig.json Version: 1 structureChanged: true structureIsReused:: Not Elapsed:: *ms -Info 24 [16:00:53.000] Project '/user/username/projects/myproject/usage/tsconfig.json' (Configured) -Info 25 [16:00:54.000] Files (3) +Info 12 [00:00:41.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/dependency/tsconfig.json 2000 undefined Project: /user/username/projects/myproject/usage/tsconfig.json WatchType: Config file +Info 13 [00:00:42.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/dependency 1 undefined Config: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Wild card directory +Info 14 [00:00:43.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/dependency 1 undefined Config: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Wild card directory +Info 15 [00:00:44.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/decls 1 undefined Project: /user/username/projects/myproject/usage/tsconfig.json WatchType: Failed Lookup Locations +Info 16 [00:00:45.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/decls 1 undefined Project: /user/username/projects/myproject/usage/tsconfig.json WatchType: Failed Lookup Locations +Info 17 [00:00:46.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/dependency/fns.ts 500 undefined WatchType: Closed Script info +Info 18 [00:00:47.000] FileWatcher:: Added:: WatchInfo: /a/lib/lib.d.ts 500 undefined WatchType: Closed Script info +Info 19 [00:00:48.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/usage/node_modules/@types 1 undefined Project: /user/username/projects/myproject/usage/tsconfig.json WatchType: Type roots +Info 20 [00:00:49.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/usage/node_modules/@types 1 undefined Project: /user/username/projects/myproject/usage/tsconfig.json WatchType: Type roots +Info 21 [00:00:50.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/usage/tsconfig.json WatchType: Type roots +Info 22 [00:00:51.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/usage/tsconfig.json WatchType: Type roots +Info 23 [00:00:52.000] Finishing updateGraphWorker: Project: /user/username/projects/myproject/usage/tsconfig.json Version: 1 structureChanged: true structureIsReused:: Not Elapsed:: *ms +Info 24 [00:00:53.000] Project '/user/username/projects/myproject/usage/tsconfig.json' (Configured) +Info 25 [00:00:54.000] Files (3) /a/lib/lib.d.ts /user/username/projects/myproject/dependency/fns.ts /user/username/projects/myproject/usage/usage.ts @@ -107,14 +107,14 @@ Info 25 [16:00:54.000] Files (3) usage.ts Matched by default include pattern '**/*' -Info 26 [16:00:55.000] ----------------------------------------------- -Info 27 [16:00:56.000] Project '/user/username/projects/myproject/usage/tsconfig.json' (Configured) -Info 27 [16:00:57.000] Files (3) +Info 26 [00:00:55.000] ----------------------------------------------- +Info 27 [00:00:56.000] Project '/user/username/projects/myproject/usage/tsconfig.json' (Configured) +Info 27 [00:00:57.000] Files (3) -Info 27 [16:00:58.000] ----------------------------------------------- -Info 27 [16:00:59.000] Open files: -Info 27 [16:01:00.000] FileName: /user/username/projects/myproject/usage/usage.ts ProjectRootPath: undefined -Info 27 [16:01:01.000] Projects: /user/username/projects/myproject/usage/tsconfig.json +Info 27 [00:00:58.000] ----------------------------------------------- +Info 27 [00:00:59.000] Open files: +Info 27 [00:01:00.000] FileName: /user/username/projects/myproject/usage/usage.ts ProjectRootPath: undefined +Info 27 [00:01:01.000] Projects: /user/username/projects/myproject/usage/tsconfig.json After request PolledWatches:: @@ -141,11 +141,11 @@ FsWatchesRecursive:: /user/username/projects/myproject/dependency: {} -Info 27 [16:01:02.000] response: +Info 27 [00:01:02.000] response: { "responseRequired": false } -Info 28 [16:01:03.000] request: +Info 28 [00:01:03.000] request: { "seq": 0, "type": "request", @@ -180,19 +180,19 @@ FsWatchesRecursive:: /user/username/projects/myproject/dependency: {} -Info 29 [16:01:04.000] FileWatcher:: Close:: WatchInfo: /user/username/projects/myproject/dependency/fns.ts 500 undefined WatchType: Closed Script info -Info 30 [16:01:05.000] Search path: /user/username/projects/myproject/dependency -Info 31 [16:01:06.000] For info: /user/username/projects/myproject/dependency/fns.ts :: Config file name: /user/username/projects/myproject/dependency/tsconfig.json -Info 32 [16:01:07.000] Creating configuration project /user/username/projects/myproject/dependency/tsconfig.json -Info 33 [16:01:08.000] Plugins were requested but not running in environment that supports 'require'. Nothing will be loaded -Info 34 [16:01:09.000] Starting updateGraphWorker: Project: /user/username/projects/myproject/dependency/tsconfig.json -Info 35 [16:01:10.000] 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 36 [16:01:11.000] 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 37 [16:01:12.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Type roots -Info 38 [16:01:13.000] 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 39 [16:01:14.000] Finishing updateGraphWorker: Project: /user/username/projects/myproject/dependency/tsconfig.json Version: 1 structureChanged: true structureIsReused:: Not Elapsed:: *ms -Info 40 [16:01:15.000] Project '/user/username/projects/myproject/dependency/tsconfig.json' (Configured) -Info 41 [16:01:16.000] Files (2) +Info 29 [00:01:04.000] FileWatcher:: Close:: WatchInfo: /user/username/projects/myproject/dependency/fns.ts 500 undefined WatchType: Closed Script info +Info 30 [00:01:05.000] Search path: /user/username/projects/myproject/dependency +Info 31 [00:01:06.000] For info: /user/username/projects/myproject/dependency/fns.ts :: Config file name: /user/username/projects/myproject/dependency/tsconfig.json +Info 32 [00:01:07.000] Creating configuration project /user/username/projects/myproject/dependency/tsconfig.json +Info 33 [00:01:08.000] Plugins were requested but not running in environment that supports 'require'. Nothing will be loaded +Info 34 [00:01:09.000] Starting updateGraphWorker: Project: /user/username/projects/myproject/dependency/tsconfig.json +Info 35 [00:01:10.000] 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 36 [00:01:11.000] 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 37 [00:01:12.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Type roots +Info 38 [00:01:13.000] 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 39 [00:01:14.000] Finishing updateGraphWorker: Project: /user/username/projects/myproject/dependency/tsconfig.json Version: 1 structureChanged: true structureIsReused:: Not Elapsed:: *ms +Info 40 [00:01:15.000] Project '/user/username/projects/myproject/dependency/tsconfig.json' (Configured) +Info 41 [00:01:16.000] Files (2) /a/lib/lib.d.ts /user/username/projects/myproject/dependency/fns.ts @@ -202,22 +202,22 @@ Info 41 [16:01:16.000] Files (2) fns.ts Matched by default include pattern '**/*' -Info 42 [16:01:17.000] ----------------------------------------------- -Info 43 [16:01:18.000] Search path: /user/username/projects/myproject/dependency -Info 44 [16:01:19.000] For info: /user/username/projects/myproject/dependency/tsconfig.json :: No config files found. -Info 45 [16:01:20.000] Project '/user/username/projects/myproject/usage/tsconfig.json' (Configured) -Info 45 [16:01:21.000] Files (3) - -Info 45 [16:01:22.000] ----------------------------------------------- -Info 45 [16:01:23.000] Project '/user/username/projects/myproject/dependency/tsconfig.json' (Configured) -Info 45 [16:01:24.000] Files (2) - -Info 45 [16:01:25.000] ----------------------------------------------- -Info 45 [16:01:26.000] Open files: -Info 45 [16:01:27.000] FileName: /user/username/projects/myproject/usage/usage.ts ProjectRootPath: undefined -Info 45 [16:01:28.000] Projects: /user/username/projects/myproject/usage/tsconfig.json -Info 45 [16:01:29.000] FileName: /user/username/projects/myproject/dependency/fns.ts ProjectRootPath: undefined -Info 45 [16:01:30.000] Projects: /user/username/projects/myproject/usage/tsconfig.json,/user/username/projects/myproject/dependency/tsconfig.json +Info 42 [00:01:17.000] ----------------------------------------------- +Info 43 [00:01:18.000] Search path: /user/username/projects/myproject/dependency +Info 44 [00:01:19.000] For info: /user/username/projects/myproject/dependency/tsconfig.json :: No config files found. +Info 45 [00:01:20.000] Project '/user/username/projects/myproject/usage/tsconfig.json' (Configured) +Info 45 [00:01:21.000] Files (3) + +Info 45 [00:01:22.000] ----------------------------------------------- +Info 45 [00:01:23.000] Project '/user/username/projects/myproject/dependency/tsconfig.json' (Configured) +Info 45 [00:01:24.000] Files (2) + +Info 45 [00:01:25.000] ----------------------------------------------- +Info 45 [00:01:26.000] Open files: +Info 45 [00:01:27.000] FileName: /user/username/projects/myproject/usage/usage.ts ProjectRootPath: undefined +Info 45 [00:01:28.000] Projects: /user/username/projects/myproject/usage/tsconfig.json +Info 45 [00:01:29.000] FileName: /user/username/projects/myproject/dependency/fns.ts ProjectRootPath: undefined +Info 45 [00:01:30.000] Projects: /user/username/projects/myproject/usage/tsconfig.json,/user/username/projects/myproject/dependency/tsconfig.json After request PolledWatches:: @@ -244,11 +244,11 @@ FsWatchesRecursive:: /user/username/projects/myproject/dependency: {} -Info 45 [16:01:31.000] response: +Info 45 [00:01:31.000] response: { "responseRequired": false } -Info 46 [16:01:32.000] request: +Info 46 [00:01:32.000] request: { "command": "compileOnSaveAffectedFileList", "arguments": { @@ -283,34 +283,34 @@ FsWatchesRecursive:: /user/username/projects/myproject/dependency: {} -Info 47 [16:01:33.000] Before ensureProjectForOpenFiles: -Info 48 [16:01:34.000] Project '/user/username/projects/myproject/usage/tsconfig.json' (Configured) -Info 48 [16:01:35.000] Files (3) - -Info 48 [16:01:36.000] ----------------------------------------------- -Info 48 [16:01:37.000] Project '/user/username/projects/myproject/dependency/tsconfig.json' (Configured) -Info 48 [16:01:38.000] Files (2) - -Info 48 [16:01:39.000] ----------------------------------------------- -Info 48 [16:01:40.000] Open files: -Info 48 [16:01:41.000] FileName: /user/username/projects/myproject/usage/usage.ts ProjectRootPath: undefined -Info 48 [16:01:42.000] Projects: /user/username/projects/myproject/usage/tsconfig.json -Info 48 [16:01:43.000] FileName: /user/username/projects/myproject/dependency/fns.ts ProjectRootPath: undefined -Info 48 [16:01:44.000] Projects: /user/username/projects/myproject/usage/tsconfig.json,/user/username/projects/myproject/dependency/tsconfig.json -Info 48 [16:01:45.000] After ensureProjectForOpenFiles: -Info 49 [16:01:46.000] Project '/user/username/projects/myproject/usage/tsconfig.json' (Configured) -Info 49 [16:01:47.000] Files (3) - -Info 49 [16:01:48.000] ----------------------------------------------- -Info 49 [16:01:49.000] Project '/user/username/projects/myproject/dependency/tsconfig.json' (Configured) -Info 49 [16:01:50.000] Files (2) - -Info 49 [16:01:51.000] ----------------------------------------------- -Info 49 [16:01:52.000] Open files: -Info 49 [16:01:53.000] FileName: /user/username/projects/myproject/usage/usage.ts ProjectRootPath: undefined -Info 49 [16:01:54.000] Projects: /user/username/projects/myproject/usage/tsconfig.json -Info 49 [16:01:55.000] FileName: /user/username/projects/myproject/dependency/fns.ts ProjectRootPath: undefined -Info 49 [16:01:56.000] Projects: /user/username/projects/myproject/usage/tsconfig.json,/user/username/projects/myproject/dependency/tsconfig.json +Info 47 [00:01:33.000] Before ensureProjectForOpenFiles: +Info 48 [00:01:34.000] Project '/user/username/projects/myproject/usage/tsconfig.json' (Configured) +Info 48 [00:01:35.000] Files (3) + +Info 48 [00:01:36.000] ----------------------------------------------- +Info 48 [00:01:37.000] Project '/user/username/projects/myproject/dependency/tsconfig.json' (Configured) +Info 48 [00:01:38.000] Files (2) + +Info 48 [00:01:39.000] ----------------------------------------------- +Info 48 [00:01:40.000] Open files: +Info 48 [00:01:41.000] FileName: /user/username/projects/myproject/usage/usage.ts ProjectRootPath: undefined +Info 48 [00:01:42.000] Projects: /user/username/projects/myproject/usage/tsconfig.json +Info 48 [00:01:43.000] FileName: /user/username/projects/myproject/dependency/fns.ts ProjectRootPath: undefined +Info 48 [00:01:44.000] Projects: /user/username/projects/myproject/usage/tsconfig.json,/user/username/projects/myproject/dependency/tsconfig.json +Info 48 [00:01:45.000] After ensureProjectForOpenFiles: +Info 49 [00:01:46.000] Project '/user/username/projects/myproject/usage/tsconfig.json' (Configured) +Info 49 [00:01:47.000] Files (3) + +Info 49 [00:01:48.000] ----------------------------------------------- +Info 49 [00:01:49.000] Project '/user/username/projects/myproject/dependency/tsconfig.json' (Configured) +Info 49 [00:01:50.000] Files (2) + +Info 49 [00:01:51.000] ----------------------------------------------- +Info 49 [00:01:52.000] Open files: +Info 49 [00:01:53.000] FileName: /user/username/projects/myproject/usage/usage.ts ProjectRootPath: undefined +Info 49 [00:01:54.000] Projects: /user/username/projects/myproject/usage/tsconfig.json +Info 49 [00:01:55.000] FileName: /user/username/projects/myproject/dependency/fns.ts ProjectRootPath: undefined +Info 49 [00:01:56.000] Projects: /user/username/projects/myproject/usage/tsconfig.json,/user/username/projects/myproject/dependency/tsconfig.json After request PolledWatches:: @@ -337,7 +337,7 @@ FsWatchesRecursive:: /user/username/projects/myproject/dependency: {} -Info 49 [16:01:57.000] response: +Info 49 [00:01:57.000] response: { "response": [ { @@ -357,7 +357,7 @@ Info 49 [16:01:57.000] response: ], "responseRequired": true } -Info 50 [16:01:58.000] request: +Info 50 [00:01:58.000] request: { "command": "change", "arguments": { @@ -423,11 +423,11 @@ FsWatchesRecursive:: /user/username/projects/myproject/dependency: {} -Info 51 [16:01:59.000] response: +Info 51 [00:01:59.000] response: { "responseRequired": false } -Info 52 [16:02:00.000] request: +Info 52 [00:02:00.000] request: { "command": "compileOnSaveAffectedFileList", "arguments": { @@ -462,37 +462,37 @@ FsWatchesRecursive:: /user/username/projects/myproject/dependency: {} -Info 53 [16:02:01.000] Starting updateGraphWorker: Project: /user/username/projects/myproject/usage/tsconfig.json -Info 54 [16:02:02.000] Finishing updateGraphWorker: Project: /user/username/projects/myproject/usage/tsconfig.json Version: 2 structureChanged: false structureIsReused:: Completely Elapsed:: *ms -Info 55 [16:02:03.000] Different program with same set of files -Info 56 [16:02:04.000] Before ensureProjectForOpenFiles: -Info 57 [16:02:05.000] Project '/user/username/projects/myproject/usage/tsconfig.json' (Configured) -Info 57 [16:02:06.000] Files (3) - -Info 57 [16:02:07.000] ----------------------------------------------- -Info 57 [16:02:08.000] Project '/user/username/projects/myproject/dependency/tsconfig.json' (Configured) -Info 57 [16:02:09.000] Files (2) - -Info 57 [16:02:10.000] ----------------------------------------------- -Info 57 [16:02:11.000] Open files: -Info 57 [16:02:12.000] FileName: /user/username/projects/myproject/usage/usage.ts ProjectRootPath: undefined -Info 57 [16:02:13.000] Projects: /user/username/projects/myproject/usage/tsconfig.json -Info 57 [16:02:14.000] FileName: /user/username/projects/myproject/dependency/fns.ts ProjectRootPath: undefined -Info 57 [16:02:15.000] Projects: /user/username/projects/myproject/usage/tsconfig.json,/user/username/projects/myproject/dependency/tsconfig.json -Info 57 [16:02:16.000] After ensureProjectForOpenFiles: -Info 58 [16:02:17.000] Project '/user/username/projects/myproject/usage/tsconfig.json' (Configured) -Info 58 [16:02:18.000] Files (3) - -Info 58 [16:02:19.000] ----------------------------------------------- -Info 58 [16:02:20.000] Project '/user/username/projects/myproject/dependency/tsconfig.json' (Configured) -Info 58 [16:02:21.000] Files (2) - -Info 58 [16:02:22.000] ----------------------------------------------- -Info 58 [16:02:23.000] Open files: -Info 58 [16:02:24.000] FileName: /user/username/projects/myproject/usage/usage.ts ProjectRootPath: undefined -Info 58 [16:02:25.000] Projects: /user/username/projects/myproject/usage/tsconfig.json -Info 58 [16:02:26.000] FileName: /user/username/projects/myproject/dependency/fns.ts ProjectRootPath: undefined -Info 58 [16:02:27.000] Projects: /user/username/projects/myproject/usage/tsconfig.json,/user/username/projects/myproject/dependency/tsconfig.json +Info 53 [00:02:01.000] Starting updateGraphWorker: Project: /user/username/projects/myproject/usage/tsconfig.json +Info 54 [00:02:02.000] Finishing updateGraphWorker: Project: /user/username/projects/myproject/usage/tsconfig.json Version: 2 structureChanged: false structureIsReused:: Completely Elapsed:: *ms +Info 55 [00:02:03.000] Different program with same set of files +Info 56 [00:02:04.000] Before ensureProjectForOpenFiles: +Info 57 [00:02:05.000] Project '/user/username/projects/myproject/usage/tsconfig.json' (Configured) +Info 57 [00:02:06.000] Files (3) + +Info 57 [00:02:07.000] ----------------------------------------------- +Info 57 [00:02:08.000] Project '/user/username/projects/myproject/dependency/tsconfig.json' (Configured) +Info 57 [00:02:09.000] Files (2) + +Info 57 [00:02:10.000] ----------------------------------------------- +Info 57 [00:02:11.000] Open files: +Info 57 [00:02:12.000] FileName: /user/username/projects/myproject/usage/usage.ts ProjectRootPath: undefined +Info 57 [00:02:13.000] Projects: /user/username/projects/myproject/usage/tsconfig.json +Info 57 [00:02:14.000] FileName: /user/username/projects/myproject/dependency/fns.ts ProjectRootPath: undefined +Info 57 [00:02:15.000] Projects: /user/username/projects/myproject/usage/tsconfig.json,/user/username/projects/myproject/dependency/tsconfig.json +Info 57 [00:02:16.000] After ensureProjectForOpenFiles: +Info 58 [00:02:17.000] Project '/user/username/projects/myproject/usage/tsconfig.json' (Configured) +Info 58 [00:02:18.000] Files (3) + +Info 58 [00:02:19.000] ----------------------------------------------- +Info 58 [00:02:20.000] Project '/user/username/projects/myproject/dependency/tsconfig.json' (Configured) +Info 58 [00:02:21.000] Files (2) + +Info 58 [00:02:22.000] ----------------------------------------------- +Info 58 [00:02:23.000] Open files: +Info 58 [00:02:24.000] FileName: /user/username/projects/myproject/usage/usage.ts ProjectRootPath: undefined +Info 58 [00:02:25.000] Projects: /user/username/projects/myproject/usage/tsconfig.json +Info 58 [00:02:26.000] FileName: /user/username/projects/myproject/dependency/fns.ts ProjectRootPath: undefined +Info 58 [00:02:27.000] Projects: /user/username/projects/myproject/usage/tsconfig.json,/user/username/projects/myproject/dependency/tsconfig.json After request PolledWatches:: @@ -519,7 +519,7 @@ FsWatchesRecursive:: /user/username/projects/myproject/dependency: {} -Info 58 [16:02:28.000] response: +Info 58 [00:02:28.000] response: { "response": [ { @@ -532,7 +532,7 @@ Info 58 [16:02:28.000] response: ], "responseRequired": true } -Info 59 [16:02:29.000] request: +Info 59 [00:02:29.000] request: { "command": "compileOnSaveEmitFile", "arguments": { @@ -567,9 +567,9 @@ FsWatchesRecursive:: /user/username/projects/myproject/dependency: {} -Info 60 [16:02:32.000] DirectoryWatcher:: Triggered with /user/username/projects/myproject/usage/usage.js :: WatchInfo: /user/username/projects/myproject/usage 1 undefined Config: /user/username/projects/myproject/usage/tsconfig.json WatchType: Wild card directory -Info 61 [16:02:33.000] Project: /user/username/projects/myproject/usage/tsconfig.json Detected file add/remove of non supported extension: /user/username/projects/myproject/usage/usage.js -Info 62 [16:02:34.000] Elapsed:: *ms DirectoryWatcher:: Triggered with /user/username/projects/myproject/usage/usage.js :: WatchInfo: /user/username/projects/myproject/usage 1 undefined Config: /user/username/projects/myproject/usage/tsconfig.json WatchType: Wild card directory +Info 60 [00:02:32.000] DirectoryWatcher:: Triggered with /user/username/projects/myproject/usage/usage.js :: WatchInfo: /user/username/projects/myproject/usage 1 undefined Config: /user/username/projects/myproject/usage/tsconfig.json WatchType: Wild card directory +Info 61 [00:02:33.000] Project: /user/username/projects/myproject/usage/tsconfig.json Detected file add/remove of non supported extension: /user/username/projects/myproject/usage/usage.js +Info 62 [00:02:34.000] Elapsed:: *ms DirectoryWatcher:: Triggered with /user/username/projects/myproject/usage/usage.js :: WatchInfo: /user/username/projects/myproject/usage 1 undefined Config: /user/username/projects/myproject/usage/tsconfig.json WatchType: Wild card directory After request //// [/user/username/projects/myproject/usage/usage.js] "use strict"; @@ -605,12 +605,12 @@ FsWatchesRecursive:: /user/username/projects/myproject/dependency: {} -Info 63 [16:02:35.000] response: +Info 63 [00:02:35.000] response: { "response": true, "responseRequired": true } -Info 64 [16:02:36.000] request: +Info 64 [00:02:36.000] request: { "command": "emit-output", "arguments": { @@ -671,7 +671,7 @@ FsWatchesRecursive:: /user/username/projects/myproject/dependency: {} -Info 65 [16:02:37.000] response: +Info 65 [00:02:37.000] response: { "response": { "outputFiles": [ 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 06b1d0b3eb8c4..cc6597f1d8b8b 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 @@ -1,5 +1,5 @@ -Info 0 [16:00:29.000] Provided types map file "/a/lib/typesMap.json" doesn't exist -Info 1 [16:00:30.000] request: +Info 0 [00:00:29.000] Provided types map file "/a/lib/typesMap.json" doesn't exist +Info 1 [00:00:30.000] request: { "seq": 0, "type": "request", @@ -49,11 +49,11 @@ FsWatches:: FsWatchesRecursive:: -Info 2 [16:00:31.000] Search path: /user/username/projects/myproject/usage -Info 3 [16:00:32.000] For info: /user/username/projects/myproject/usage/usage.ts :: Config file name: /user/username/projects/myproject/usage/tsconfig.json -Info 4 [16:00:33.000] Creating configuration project /user/username/projects/myproject/usage/tsconfig.json -Info 5 [16:00:34.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/usage/tsconfig.json 2000 undefined Project: /user/username/projects/myproject/usage/tsconfig.json WatchType: Config file -Info 6 [16:00:35.000] Config: /user/username/projects/myproject/usage/tsconfig.json : { +Info 2 [00:00:31.000] Search path: /user/username/projects/myproject/usage +Info 3 [00:00:32.000] For info: /user/username/projects/myproject/usage/usage.ts :: Config file name: /user/username/projects/myproject/usage/tsconfig.json +Info 4 [00:00:33.000] Creating configuration project /user/username/projects/myproject/usage/tsconfig.json +Info 5 [00:00:34.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/usage/tsconfig.json 2000 undefined Project: /user/username/projects/myproject/usage/tsconfig.json WatchType: Config file +Info 6 [00:00:35.000] Config: /user/username/projects/myproject/usage/tsconfig.json : { "rootNames": [ "/user/username/projects/myproject/usage/usage.ts" ], @@ -67,11 +67,11 @@ Info 6 [16:00:35.000] Config: /user/username/projects/myproject/usage/tsconfi } ] } -Info 7 [16:00:36.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/usage 1 undefined Config: /user/username/projects/myproject/usage/tsconfig.json WatchType: Wild card directory -Info 8 [16:00:37.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/usage 1 undefined Config: /user/username/projects/myproject/usage/tsconfig.json WatchType: Wild card directory -Info 9 [16:00:38.000] Plugins were requested but not running in environment that supports 'require'. Nothing will be loaded -Info 10 [16:00:39.000] Starting updateGraphWorker: Project: /user/username/projects/myproject/usage/tsconfig.json -Info 11 [16:00:40.000] Config: /user/username/projects/myproject/dependency/tsconfig.json : { +Info 7 [00:00:36.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/usage 1 undefined Config: /user/username/projects/myproject/usage/tsconfig.json WatchType: Wild card directory +Info 8 [00:00:37.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/usage 1 undefined Config: /user/username/projects/myproject/usage/tsconfig.json WatchType: Wild card directory +Info 9 [00:00:38.000] Plugins were requested but not running in environment that supports 'require'. Nothing will be loaded +Info 10 [00:00:39.000] Starting updateGraphWorker: Project: /user/username/projects/myproject/usage/tsconfig.json +Info 11 [00:00:40.000] Config: /user/username/projects/myproject/dependency/tsconfig.json : { "rootNames": [ "/user/username/projects/myproject/dependency/fns.ts" ], @@ -81,20 +81,20 @@ Info 11 [16:00:40.000] Config: /user/username/projects/myproject/dependency/ts "configFilePath": "/user/username/projects/myproject/dependency/tsconfig.json" } } -Info 12 [16:00:41.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/dependency/tsconfig.json 2000 undefined Project: /user/username/projects/myproject/usage/tsconfig.json WatchType: Config file -Info 13 [16:00:42.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/dependency 1 undefined Config: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Wild card directory -Info 14 [16:00:43.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/dependency 1 undefined Config: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Wild card directory -Info 15 [16:00:44.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/decls 1 undefined Project: /user/username/projects/myproject/usage/tsconfig.json WatchType: Failed Lookup Locations -Info 16 [16:00:45.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/decls 1 undefined Project: /user/username/projects/myproject/usage/tsconfig.json WatchType: Failed Lookup Locations -Info 17 [16:00:46.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/dependency/fns.ts 500 undefined WatchType: Closed Script info -Info 18 [16:00:47.000] FileWatcher:: Added:: WatchInfo: /a/lib/lib.d.ts 500 undefined WatchType: Closed Script info -Info 19 [16:00:48.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/usage/node_modules/@types 1 undefined Project: /user/username/projects/myproject/usage/tsconfig.json WatchType: Type roots -Info 20 [16:00:49.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/usage/node_modules/@types 1 undefined Project: /user/username/projects/myproject/usage/tsconfig.json WatchType: Type roots -Info 21 [16:00:50.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/usage/tsconfig.json WatchType: Type roots -Info 22 [16:00:51.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/usage/tsconfig.json WatchType: Type roots -Info 23 [16:00:52.000] Finishing updateGraphWorker: Project: /user/username/projects/myproject/usage/tsconfig.json Version: 1 structureChanged: true structureIsReused:: Not Elapsed:: *ms -Info 24 [16:00:53.000] Project '/user/username/projects/myproject/usage/tsconfig.json' (Configured) -Info 25 [16:00:54.000] Files (3) +Info 12 [00:00:41.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/dependency/tsconfig.json 2000 undefined Project: /user/username/projects/myproject/usage/tsconfig.json WatchType: Config file +Info 13 [00:00:42.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/dependency 1 undefined Config: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Wild card directory +Info 14 [00:00:43.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/dependency 1 undefined Config: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Wild card directory +Info 15 [00:00:44.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/decls 1 undefined Project: /user/username/projects/myproject/usage/tsconfig.json WatchType: Failed Lookup Locations +Info 16 [00:00:45.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/decls 1 undefined Project: /user/username/projects/myproject/usage/tsconfig.json WatchType: Failed Lookup Locations +Info 17 [00:00:46.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/dependency/fns.ts 500 undefined WatchType: Closed Script info +Info 18 [00:00:47.000] FileWatcher:: Added:: WatchInfo: /a/lib/lib.d.ts 500 undefined WatchType: Closed Script info +Info 19 [00:00:48.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/usage/node_modules/@types 1 undefined Project: /user/username/projects/myproject/usage/tsconfig.json WatchType: Type roots +Info 20 [00:00:49.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/usage/node_modules/@types 1 undefined Project: /user/username/projects/myproject/usage/tsconfig.json WatchType: Type roots +Info 21 [00:00:50.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/usage/tsconfig.json WatchType: Type roots +Info 22 [00:00:51.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/usage/tsconfig.json WatchType: Type roots +Info 23 [00:00:52.000] Finishing updateGraphWorker: Project: /user/username/projects/myproject/usage/tsconfig.json Version: 1 structureChanged: true structureIsReused:: Not Elapsed:: *ms +Info 24 [00:00:53.000] Project '/user/username/projects/myproject/usage/tsconfig.json' (Configured) +Info 25 [00:00:54.000] Files (3) /a/lib/lib.d.ts /user/username/projects/myproject/dependency/fns.ts /user/username/projects/myproject/usage/usage.ts @@ -107,14 +107,14 @@ Info 25 [16:00:54.000] Files (3) usage.ts Matched by default include pattern '**/*' -Info 26 [16:00:55.000] ----------------------------------------------- -Info 27 [16:00:56.000] Project '/user/username/projects/myproject/usage/tsconfig.json' (Configured) -Info 27 [16:00:57.000] Files (3) +Info 26 [00:00:55.000] ----------------------------------------------- +Info 27 [00:00:56.000] Project '/user/username/projects/myproject/usage/tsconfig.json' (Configured) +Info 27 [00:00:57.000] Files (3) -Info 27 [16:00:58.000] ----------------------------------------------- -Info 27 [16:00:59.000] Open files: -Info 27 [16:01:00.000] FileName: /user/username/projects/myproject/usage/usage.ts ProjectRootPath: undefined -Info 27 [16:01:01.000] Projects: /user/username/projects/myproject/usage/tsconfig.json +Info 27 [00:00:58.000] ----------------------------------------------- +Info 27 [00:00:59.000] Open files: +Info 27 [00:01:00.000] FileName: /user/username/projects/myproject/usage/usage.ts ProjectRootPath: undefined +Info 27 [00:01:01.000] Projects: /user/username/projects/myproject/usage/tsconfig.json After request PolledWatches:: @@ -141,11 +141,11 @@ FsWatchesRecursive:: /user/username/projects/myproject/dependency: {} -Info 27 [16:01:02.000] response: +Info 27 [00:01:02.000] response: { "responseRequired": false } -Info 28 [16:01:03.000] request: +Info 28 [00:01:03.000] request: { "seq": 0, "type": "request", @@ -180,19 +180,19 @@ FsWatchesRecursive:: /user/username/projects/myproject/dependency: {} -Info 29 [16:01:04.000] FileWatcher:: Close:: WatchInfo: /user/username/projects/myproject/dependency/fns.ts 500 undefined WatchType: Closed Script info -Info 30 [16:01:05.000] Search path: /user/username/projects/myproject/dependency -Info 31 [16:01:06.000] For info: /user/username/projects/myproject/dependency/fns.ts :: Config file name: /user/username/projects/myproject/dependency/tsconfig.json -Info 32 [16:01:07.000] Creating configuration project /user/username/projects/myproject/dependency/tsconfig.json -Info 33 [16:01:08.000] Plugins were requested but not running in environment that supports 'require'. Nothing will be loaded -Info 34 [16:01:09.000] Starting updateGraphWorker: Project: /user/username/projects/myproject/dependency/tsconfig.json -Info 35 [16:01:10.000] 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 36 [16:01:11.000] 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 37 [16:01:12.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Type roots -Info 38 [16:01:13.000] 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 39 [16:01:14.000] Finishing updateGraphWorker: Project: /user/username/projects/myproject/dependency/tsconfig.json Version: 1 structureChanged: true structureIsReused:: Not Elapsed:: *ms -Info 40 [16:01:15.000] Project '/user/username/projects/myproject/dependency/tsconfig.json' (Configured) -Info 41 [16:01:16.000] Files (2) +Info 29 [00:01:04.000] FileWatcher:: Close:: WatchInfo: /user/username/projects/myproject/dependency/fns.ts 500 undefined WatchType: Closed Script info +Info 30 [00:01:05.000] Search path: /user/username/projects/myproject/dependency +Info 31 [00:01:06.000] For info: /user/username/projects/myproject/dependency/fns.ts :: Config file name: /user/username/projects/myproject/dependency/tsconfig.json +Info 32 [00:01:07.000] Creating configuration project /user/username/projects/myproject/dependency/tsconfig.json +Info 33 [00:01:08.000] Plugins were requested but not running in environment that supports 'require'. Nothing will be loaded +Info 34 [00:01:09.000] Starting updateGraphWorker: Project: /user/username/projects/myproject/dependency/tsconfig.json +Info 35 [00:01:10.000] 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 36 [00:01:11.000] 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 37 [00:01:12.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Type roots +Info 38 [00:01:13.000] 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 39 [00:01:14.000] Finishing updateGraphWorker: Project: /user/username/projects/myproject/dependency/tsconfig.json Version: 1 structureChanged: true structureIsReused:: Not Elapsed:: *ms +Info 40 [00:01:15.000] Project '/user/username/projects/myproject/dependency/tsconfig.json' (Configured) +Info 41 [00:01:16.000] Files (2) /a/lib/lib.d.ts /user/username/projects/myproject/dependency/fns.ts @@ -202,22 +202,22 @@ Info 41 [16:01:16.000] Files (2) fns.ts Matched by default include pattern '**/*' -Info 42 [16:01:17.000] ----------------------------------------------- -Info 43 [16:01:18.000] Search path: /user/username/projects/myproject/dependency -Info 44 [16:01:19.000] For info: /user/username/projects/myproject/dependency/tsconfig.json :: No config files found. -Info 45 [16:01:20.000] Project '/user/username/projects/myproject/usage/tsconfig.json' (Configured) -Info 45 [16:01:21.000] Files (3) - -Info 45 [16:01:22.000] ----------------------------------------------- -Info 45 [16:01:23.000] Project '/user/username/projects/myproject/dependency/tsconfig.json' (Configured) -Info 45 [16:01:24.000] Files (2) - -Info 45 [16:01:25.000] ----------------------------------------------- -Info 45 [16:01:26.000] Open files: -Info 45 [16:01:27.000] FileName: /user/username/projects/myproject/usage/usage.ts ProjectRootPath: undefined -Info 45 [16:01:28.000] Projects: /user/username/projects/myproject/usage/tsconfig.json -Info 45 [16:01:29.000] FileName: /user/username/projects/myproject/dependency/fns.ts ProjectRootPath: undefined -Info 45 [16:01:30.000] Projects: /user/username/projects/myproject/usage/tsconfig.json,/user/username/projects/myproject/dependency/tsconfig.json +Info 42 [00:01:17.000] ----------------------------------------------- +Info 43 [00:01:18.000] Search path: /user/username/projects/myproject/dependency +Info 44 [00:01:19.000] For info: /user/username/projects/myproject/dependency/tsconfig.json :: No config files found. +Info 45 [00:01:20.000] Project '/user/username/projects/myproject/usage/tsconfig.json' (Configured) +Info 45 [00:01:21.000] Files (3) + +Info 45 [00:01:22.000] ----------------------------------------------- +Info 45 [00:01:23.000] Project '/user/username/projects/myproject/dependency/tsconfig.json' (Configured) +Info 45 [00:01:24.000] Files (2) + +Info 45 [00:01:25.000] ----------------------------------------------- +Info 45 [00:01:26.000] Open files: +Info 45 [00:01:27.000] FileName: /user/username/projects/myproject/usage/usage.ts ProjectRootPath: undefined +Info 45 [00:01:28.000] Projects: /user/username/projects/myproject/usage/tsconfig.json +Info 45 [00:01:29.000] FileName: /user/username/projects/myproject/dependency/fns.ts ProjectRootPath: undefined +Info 45 [00:01:30.000] Projects: /user/username/projects/myproject/usage/tsconfig.json,/user/username/projects/myproject/dependency/tsconfig.json After request PolledWatches:: @@ -244,11 +244,11 @@ FsWatchesRecursive:: /user/username/projects/myproject/dependency: {} -Info 45 [16:01:31.000] response: +Info 45 [00:01:31.000] response: { "responseRequired": false } -Info 46 [16:01:32.000] request: +Info 46 [00:01:32.000] request: { "command": "compileOnSaveAffectedFileList", "arguments": { @@ -283,34 +283,34 @@ FsWatchesRecursive:: /user/username/projects/myproject/dependency: {} -Info 47 [16:01:33.000] Before ensureProjectForOpenFiles: -Info 48 [16:01:34.000] Project '/user/username/projects/myproject/usage/tsconfig.json' (Configured) -Info 48 [16:01:35.000] Files (3) - -Info 48 [16:01:36.000] ----------------------------------------------- -Info 48 [16:01:37.000] Project '/user/username/projects/myproject/dependency/tsconfig.json' (Configured) -Info 48 [16:01:38.000] Files (2) - -Info 48 [16:01:39.000] ----------------------------------------------- -Info 48 [16:01:40.000] Open files: -Info 48 [16:01:41.000] FileName: /user/username/projects/myproject/usage/usage.ts ProjectRootPath: undefined -Info 48 [16:01:42.000] Projects: /user/username/projects/myproject/usage/tsconfig.json -Info 48 [16:01:43.000] FileName: /user/username/projects/myproject/dependency/fns.ts ProjectRootPath: undefined -Info 48 [16:01:44.000] Projects: /user/username/projects/myproject/usage/tsconfig.json,/user/username/projects/myproject/dependency/tsconfig.json -Info 48 [16:01:45.000] After ensureProjectForOpenFiles: -Info 49 [16:01:46.000] Project '/user/username/projects/myproject/usage/tsconfig.json' (Configured) -Info 49 [16:01:47.000] Files (3) - -Info 49 [16:01:48.000] ----------------------------------------------- -Info 49 [16:01:49.000] Project '/user/username/projects/myproject/dependency/tsconfig.json' (Configured) -Info 49 [16:01:50.000] Files (2) - -Info 49 [16:01:51.000] ----------------------------------------------- -Info 49 [16:01:52.000] Open files: -Info 49 [16:01:53.000] FileName: /user/username/projects/myproject/usage/usage.ts ProjectRootPath: undefined -Info 49 [16:01:54.000] Projects: /user/username/projects/myproject/usage/tsconfig.json -Info 49 [16:01:55.000] FileName: /user/username/projects/myproject/dependency/fns.ts ProjectRootPath: undefined -Info 49 [16:01:56.000] Projects: /user/username/projects/myproject/usage/tsconfig.json,/user/username/projects/myproject/dependency/tsconfig.json +Info 47 [00:01:33.000] Before ensureProjectForOpenFiles: +Info 48 [00:01:34.000] Project '/user/username/projects/myproject/usage/tsconfig.json' (Configured) +Info 48 [00:01:35.000] Files (3) + +Info 48 [00:01:36.000] ----------------------------------------------- +Info 48 [00:01:37.000] Project '/user/username/projects/myproject/dependency/tsconfig.json' (Configured) +Info 48 [00:01:38.000] Files (2) + +Info 48 [00:01:39.000] ----------------------------------------------- +Info 48 [00:01:40.000] Open files: +Info 48 [00:01:41.000] FileName: /user/username/projects/myproject/usage/usage.ts ProjectRootPath: undefined +Info 48 [00:01:42.000] Projects: /user/username/projects/myproject/usage/tsconfig.json +Info 48 [00:01:43.000] FileName: /user/username/projects/myproject/dependency/fns.ts ProjectRootPath: undefined +Info 48 [00:01:44.000] Projects: /user/username/projects/myproject/usage/tsconfig.json,/user/username/projects/myproject/dependency/tsconfig.json +Info 48 [00:01:45.000] After ensureProjectForOpenFiles: +Info 49 [00:01:46.000] Project '/user/username/projects/myproject/usage/tsconfig.json' (Configured) +Info 49 [00:01:47.000] Files (3) + +Info 49 [00:01:48.000] ----------------------------------------------- +Info 49 [00:01:49.000] Project '/user/username/projects/myproject/dependency/tsconfig.json' (Configured) +Info 49 [00:01:50.000] Files (2) + +Info 49 [00:01:51.000] ----------------------------------------------- +Info 49 [00:01:52.000] Open files: +Info 49 [00:01:53.000] FileName: /user/username/projects/myproject/usage/usage.ts ProjectRootPath: undefined +Info 49 [00:01:54.000] Projects: /user/username/projects/myproject/usage/tsconfig.json +Info 49 [00:01:55.000] FileName: /user/username/projects/myproject/dependency/fns.ts ProjectRootPath: undefined +Info 49 [00:01:56.000] Projects: /user/username/projects/myproject/usage/tsconfig.json,/user/username/projects/myproject/dependency/tsconfig.json After request PolledWatches:: @@ -337,7 +337,7 @@ FsWatchesRecursive:: /user/username/projects/myproject/dependency: {} -Info 49 [16:01:57.000] response: +Info 49 [00:01:57.000] response: { "response": [ { @@ -357,7 +357,7 @@ Info 49 [16:01:57.000] response: ], "responseRequired": true } -Info 50 [16:01:58.000] request: +Info 50 [00:01:58.000] request: { "command": "change", "arguments": { @@ -423,11 +423,11 @@ FsWatchesRecursive:: /user/username/projects/myproject/dependency: {} -Info 51 [16:01:59.000] response: +Info 51 [00:01:59.000] response: { "responseRequired": false } -Info 52 [16:02:00.000] request: +Info 52 [00:02:00.000] request: { "command": "compileOnSaveAffectedFileList", "arguments": { @@ -463,9 +463,9 @@ FsWatchesRecursive:: /user/username/projects/myproject/dependency: {} -Info 53 [16:02:01.000] Starting updateGraphWorker: Project: /user/username/projects/myproject/usage/tsconfig.json -Info 54 [16:02:02.000] Finishing updateGraphWorker: Project: /user/username/projects/myproject/usage/tsconfig.json Version: 2 structureChanged: false structureIsReused:: Completely Elapsed:: *ms -Info 55 [16:02:03.000] Different program with same set of files +Info 53 [00:02:01.000] Starting updateGraphWorker: Project: /user/username/projects/myproject/usage/tsconfig.json +Info 54 [00:02:02.000] Finishing updateGraphWorker: Project: /user/username/projects/myproject/usage/tsconfig.json Version: 2 structureChanged: false structureIsReused:: Completely Elapsed:: *ms +Info 55 [00:02:03.000] Different program with same set of files After request PolledWatches:: @@ -492,7 +492,7 @@ FsWatchesRecursive:: /user/username/projects/myproject/dependency: {} -Info 56 [16:02:04.000] response: +Info 56 [00:02:04.000] response: { "response": [ { @@ -505,7 +505,7 @@ Info 56 [16:02:04.000] response: ], "responseRequired": true } -Info 57 [16:02:05.000] request: +Info 57 [00:02:05.000] request: { "command": "compileOnSaveEmitFile", "arguments": { @@ -541,9 +541,9 @@ FsWatchesRecursive:: /user/username/projects/myproject/dependency: {} -Info 58 [16:02:08.000] DirectoryWatcher:: Triggered with /user/username/projects/myproject/usage/usage.js :: WatchInfo: /user/username/projects/myproject/usage 1 undefined Config: /user/username/projects/myproject/usage/tsconfig.json WatchType: Wild card directory -Info 59 [16:02:09.000] Project: /user/username/projects/myproject/usage/tsconfig.json Detected file add/remove of non supported extension: /user/username/projects/myproject/usage/usage.js -Info 60 [16:02:10.000] Elapsed:: *ms DirectoryWatcher:: Triggered with /user/username/projects/myproject/usage/usage.js :: WatchInfo: /user/username/projects/myproject/usage 1 undefined Config: /user/username/projects/myproject/usage/tsconfig.json WatchType: Wild card directory +Info 58 [00:02:08.000] DirectoryWatcher:: Triggered with /user/username/projects/myproject/usage/usage.js :: WatchInfo: /user/username/projects/myproject/usage 1 undefined Config: /user/username/projects/myproject/usage/tsconfig.json WatchType: Wild card directory +Info 59 [00:02:09.000] Project: /user/username/projects/myproject/usage/tsconfig.json Detected file add/remove of non supported extension: /user/username/projects/myproject/usage/usage.js +Info 60 [00:02:10.000] Elapsed:: *ms DirectoryWatcher:: Triggered with /user/username/projects/myproject/usage/usage.js :: WatchInfo: /user/username/projects/myproject/usage 1 undefined Config: /user/username/projects/myproject/usage/tsconfig.json WatchType: Wild card directory After request //// [/user/username/projects/myproject/usage/usage.js] "use strict"; @@ -578,12 +578,12 @@ FsWatchesRecursive:: /user/username/projects/myproject/dependency: {} -Info 61 [16:02:11.000] response: +Info 61 [00:02:11.000] response: { "response": true, "responseRequired": true } -Info 62 [16:02:12.000] request: +Info 62 [00:02:12.000] request: { "command": "emit-output", "arguments": { @@ -645,7 +645,7 @@ FsWatchesRecursive:: /user/username/projects/myproject/dependency: {} -Info 63 [16:02:13.000] response: +Info 63 [00:02:13.000] response: { "response": { "outputFiles": [ 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 1f711e3c98c42..fa7f8381ef8e0 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 @@ -1,5 +1,5 @@ -Info 0 [16:00:29.000] Provided types map file "/a/lib/typesMap.json" doesn't exist -Info 1 [16:00:30.000] request: +Info 0 [00:00:29.000] Provided types map file "/a/lib/typesMap.json" doesn't exist +Info 1 [00:00:30.000] request: { "seq": 0, "type": "request", @@ -49,11 +49,11 @@ FsWatches:: FsWatchesRecursive:: -Info 2 [16:00:31.000] Search path: /user/username/projects/myproject/usage -Info 3 [16:00:32.000] For info: /user/username/projects/myproject/usage/usage.ts :: Config file name: /user/username/projects/myproject/usage/tsconfig.json -Info 4 [16:00:33.000] Creating configuration project /user/username/projects/myproject/usage/tsconfig.json -Info 5 [16:00:34.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/usage/tsconfig.json 2000 undefined Project: /user/username/projects/myproject/usage/tsconfig.json WatchType: Config file -Info 6 [16:00:35.000] Config: /user/username/projects/myproject/usage/tsconfig.json : { +Info 2 [00:00:31.000] Search path: /user/username/projects/myproject/usage +Info 3 [00:00:32.000] For info: /user/username/projects/myproject/usage/usage.ts :: Config file name: /user/username/projects/myproject/usage/tsconfig.json +Info 4 [00:00:33.000] Creating configuration project /user/username/projects/myproject/usage/tsconfig.json +Info 5 [00:00:34.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/usage/tsconfig.json 2000 undefined Project: /user/username/projects/myproject/usage/tsconfig.json WatchType: Config file +Info 6 [00:00:35.000] Config: /user/username/projects/myproject/usage/tsconfig.json : { "rootNames": [ "/user/username/projects/myproject/usage/usage.ts" ], @@ -67,11 +67,11 @@ Info 6 [16:00:35.000] Config: /user/username/projects/myproject/usage/tsconfi } ] } -Info 7 [16:00:36.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/usage 1 undefined Config: /user/username/projects/myproject/usage/tsconfig.json WatchType: Wild card directory -Info 8 [16:00:37.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/usage 1 undefined Config: /user/username/projects/myproject/usage/tsconfig.json WatchType: Wild card directory -Info 9 [16:00:38.000] Plugins were requested but not running in environment that supports 'require'. Nothing will be loaded -Info 10 [16:00:39.000] Starting updateGraphWorker: Project: /user/username/projects/myproject/usage/tsconfig.json -Info 11 [16:00:40.000] Config: /user/username/projects/myproject/dependency/tsconfig.json : { +Info 7 [00:00:36.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/usage 1 undefined Config: /user/username/projects/myproject/usage/tsconfig.json WatchType: Wild card directory +Info 8 [00:00:37.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/usage 1 undefined Config: /user/username/projects/myproject/usage/tsconfig.json WatchType: Wild card directory +Info 9 [00:00:38.000] Plugins were requested but not running in environment that supports 'require'. Nothing will be loaded +Info 10 [00:00:39.000] Starting updateGraphWorker: Project: /user/username/projects/myproject/usage/tsconfig.json +Info 11 [00:00:40.000] Config: /user/username/projects/myproject/dependency/tsconfig.json : { "rootNames": [ "/user/username/projects/myproject/dependency/fns.ts" ], @@ -81,20 +81,20 @@ Info 11 [16:00:40.000] Config: /user/username/projects/myproject/dependency/ts "configFilePath": "/user/username/projects/myproject/dependency/tsconfig.json" } } -Info 12 [16:00:41.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/dependency/tsconfig.json 2000 undefined Project: /user/username/projects/myproject/usage/tsconfig.json WatchType: Config file -Info 13 [16:00:42.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/dependency 1 undefined Config: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Wild card directory -Info 14 [16:00:43.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/dependency 1 undefined Config: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Wild card directory -Info 15 [16:00:44.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/decls 1 undefined Project: /user/username/projects/myproject/usage/tsconfig.json WatchType: Failed Lookup Locations -Info 16 [16:00:45.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/decls 1 undefined Project: /user/username/projects/myproject/usage/tsconfig.json WatchType: Failed Lookup Locations -Info 17 [16:00:46.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/dependency/fns.ts 500 undefined WatchType: Closed Script info -Info 18 [16:00:47.000] FileWatcher:: Added:: WatchInfo: /a/lib/lib.d.ts 500 undefined WatchType: Closed Script info -Info 19 [16:00:48.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/usage/node_modules/@types 1 undefined Project: /user/username/projects/myproject/usage/tsconfig.json WatchType: Type roots -Info 20 [16:00:49.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/usage/node_modules/@types 1 undefined Project: /user/username/projects/myproject/usage/tsconfig.json WatchType: Type roots -Info 21 [16:00:50.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/usage/tsconfig.json WatchType: Type roots -Info 22 [16:00:51.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/usage/tsconfig.json WatchType: Type roots -Info 23 [16:00:52.000] Finishing updateGraphWorker: Project: /user/username/projects/myproject/usage/tsconfig.json Version: 1 structureChanged: true structureIsReused:: Not Elapsed:: *ms -Info 24 [16:00:53.000] Project '/user/username/projects/myproject/usage/tsconfig.json' (Configured) -Info 25 [16:00:54.000] Files (3) +Info 12 [00:00:41.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/dependency/tsconfig.json 2000 undefined Project: /user/username/projects/myproject/usage/tsconfig.json WatchType: Config file +Info 13 [00:00:42.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/dependency 1 undefined Config: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Wild card directory +Info 14 [00:00:43.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/dependency 1 undefined Config: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Wild card directory +Info 15 [00:00:44.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/decls 1 undefined Project: /user/username/projects/myproject/usage/tsconfig.json WatchType: Failed Lookup Locations +Info 16 [00:00:45.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/decls 1 undefined Project: /user/username/projects/myproject/usage/tsconfig.json WatchType: Failed Lookup Locations +Info 17 [00:00:46.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/dependency/fns.ts 500 undefined WatchType: Closed Script info +Info 18 [00:00:47.000] FileWatcher:: Added:: WatchInfo: /a/lib/lib.d.ts 500 undefined WatchType: Closed Script info +Info 19 [00:00:48.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/usage/node_modules/@types 1 undefined Project: /user/username/projects/myproject/usage/tsconfig.json WatchType: Type roots +Info 20 [00:00:49.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/usage/node_modules/@types 1 undefined Project: /user/username/projects/myproject/usage/tsconfig.json WatchType: Type roots +Info 21 [00:00:50.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/usage/tsconfig.json WatchType: Type roots +Info 22 [00:00:51.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/usage/tsconfig.json WatchType: Type roots +Info 23 [00:00:52.000] Finishing updateGraphWorker: Project: /user/username/projects/myproject/usage/tsconfig.json Version: 1 structureChanged: true structureIsReused:: Not Elapsed:: *ms +Info 24 [00:00:53.000] Project '/user/username/projects/myproject/usage/tsconfig.json' (Configured) +Info 25 [00:00:54.000] Files (3) /a/lib/lib.d.ts /user/username/projects/myproject/dependency/fns.ts /user/username/projects/myproject/usage/usage.ts @@ -107,14 +107,14 @@ Info 25 [16:00:54.000] Files (3) usage.ts Matched by default include pattern '**/*' -Info 26 [16:00:55.000] ----------------------------------------------- -Info 27 [16:00:56.000] Project '/user/username/projects/myproject/usage/tsconfig.json' (Configured) -Info 27 [16:00:57.000] Files (3) +Info 26 [00:00:55.000] ----------------------------------------------- +Info 27 [00:00:56.000] Project '/user/username/projects/myproject/usage/tsconfig.json' (Configured) +Info 27 [00:00:57.000] Files (3) -Info 27 [16:00:58.000] ----------------------------------------------- -Info 27 [16:00:59.000] Open files: -Info 27 [16:01:00.000] FileName: /user/username/projects/myproject/usage/usage.ts ProjectRootPath: undefined -Info 27 [16:01:01.000] Projects: /user/username/projects/myproject/usage/tsconfig.json +Info 27 [00:00:58.000] ----------------------------------------------- +Info 27 [00:00:59.000] Open files: +Info 27 [00:01:00.000] FileName: /user/username/projects/myproject/usage/usage.ts ProjectRootPath: undefined +Info 27 [00:01:01.000] Projects: /user/username/projects/myproject/usage/tsconfig.json After request PolledWatches:: @@ -141,11 +141,11 @@ FsWatchesRecursive:: /user/username/projects/myproject/dependency: {} -Info 27 [16:01:02.000] response: +Info 27 [00:01:02.000] response: { "responseRequired": false } -Info 28 [16:01:03.000] request: +Info 28 [00:01:03.000] request: { "seq": 0, "type": "request", @@ -180,19 +180,19 @@ FsWatchesRecursive:: /user/username/projects/myproject/dependency: {} -Info 29 [16:01:04.000] FileWatcher:: Close:: WatchInfo: /user/username/projects/myproject/dependency/fns.ts 500 undefined WatchType: Closed Script info -Info 30 [16:01:05.000] Search path: /user/username/projects/myproject/dependency -Info 31 [16:01:06.000] For info: /user/username/projects/myproject/dependency/fns.ts :: Config file name: /user/username/projects/myproject/dependency/tsconfig.json -Info 32 [16:01:07.000] Creating configuration project /user/username/projects/myproject/dependency/tsconfig.json -Info 33 [16:01:08.000] Plugins were requested but not running in environment that supports 'require'. Nothing will be loaded -Info 34 [16:01:09.000] Starting updateGraphWorker: Project: /user/username/projects/myproject/dependency/tsconfig.json -Info 35 [16:01:10.000] 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 36 [16:01:11.000] 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 37 [16:01:12.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Type roots -Info 38 [16:01:13.000] 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 39 [16:01:14.000] Finishing updateGraphWorker: Project: /user/username/projects/myproject/dependency/tsconfig.json Version: 1 structureChanged: true structureIsReused:: Not Elapsed:: *ms -Info 40 [16:01:15.000] Project '/user/username/projects/myproject/dependency/tsconfig.json' (Configured) -Info 41 [16:01:16.000] Files (2) +Info 29 [00:01:04.000] FileWatcher:: Close:: WatchInfo: /user/username/projects/myproject/dependency/fns.ts 500 undefined WatchType: Closed Script info +Info 30 [00:01:05.000] Search path: /user/username/projects/myproject/dependency +Info 31 [00:01:06.000] For info: /user/username/projects/myproject/dependency/fns.ts :: Config file name: /user/username/projects/myproject/dependency/tsconfig.json +Info 32 [00:01:07.000] Creating configuration project /user/username/projects/myproject/dependency/tsconfig.json +Info 33 [00:01:08.000] Plugins were requested but not running in environment that supports 'require'. Nothing will be loaded +Info 34 [00:01:09.000] Starting updateGraphWorker: Project: /user/username/projects/myproject/dependency/tsconfig.json +Info 35 [00:01:10.000] 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 36 [00:01:11.000] 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 37 [00:01:12.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Type roots +Info 38 [00:01:13.000] 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 39 [00:01:14.000] Finishing updateGraphWorker: Project: /user/username/projects/myproject/dependency/tsconfig.json Version: 1 structureChanged: true structureIsReused:: Not Elapsed:: *ms +Info 40 [00:01:15.000] Project '/user/username/projects/myproject/dependency/tsconfig.json' (Configured) +Info 41 [00:01:16.000] Files (2) /a/lib/lib.d.ts /user/username/projects/myproject/dependency/fns.ts @@ -202,22 +202,22 @@ Info 41 [16:01:16.000] Files (2) fns.ts Matched by default include pattern '**/*' -Info 42 [16:01:17.000] ----------------------------------------------- -Info 43 [16:01:18.000] Search path: /user/username/projects/myproject/dependency -Info 44 [16:01:19.000] For info: /user/username/projects/myproject/dependency/tsconfig.json :: No config files found. -Info 45 [16:01:20.000] Project '/user/username/projects/myproject/usage/tsconfig.json' (Configured) -Info 45 [16:01:21.000] Files (3) - -Info 45 [16:01:22.000] ----------------------------------------------- -Info 45 [16:01:23.000] Project '/user/username/projects/myproject/dependency/tsconfig.json' (Configured) -Info 45 [16:01:24.000] Files (2) - -Info 45 [16:01:25.000] ----------------------------------------------- -Info 45 [16:01:26.000] Open files: -Info 45 [16:01:27.000] FileName: /user/username/projects/myproject/usage/usage.ts ProjectRootPath: undefined -Info 45 [16:01:28.000] Projects: /user/username/projects/myproject/usage/tsconfig.json -Info 45 [16:01:29.000] FileName: /user/username/projects/myproject/dependency/fns.ts ProjectRootPath: undefined -Info 45 [16:01:30.000] Projects: /user/username/projects/myproject/usage/tsconfig.json,/user/username/projects/myproject/dependency/tsconfig.json +Info 42 [00:01:17.000] ----------------------------------------------- +Info 43 [00:01:18.000] Search path: /user/username/projects/myproject/dependency +Info 44 [00:01:19.000] For info: /user/username/projects/myproject/dependency/tsconfig.json :: No config files found. +Info 45 [00:01:20.000] Project '/user/username/projects/myproject/usage/tsconfig.json' (Configured) +Info 45 [00:01:21.000] Files (3) + +Info 45 [00:01:22.000] ----------------------------------------------- +Info 45 [00:01:23.000] Project '/user/username/projects/myproject/dependency/tsconfig.json' (Configured) +Info 45 [00:01:24.000] Files (2) + +Info 45 [00:01:25.000] ----------------------------------------------- +Info 45 [00:01:26.000] Open files: +Info 45 [00:01:27.000] FileName: /user/username/projects/myproject/usage/usage.ts ProjectRootPath: undefined +Info 45 [00:01:28.000] Projects: /user/username/projects/myproject/usage/tsconfig.json +Info 45 [00:01:29.000] FileName: /user/username/projects/myproject/dependency/fns.ts ProjectRootPath: undefined +Info 45 [00:01:30.000] Projects: /user/username/projects/myproject/usage/tsconfig.json,/user/username/projects/myproject/dependency/tsconfig.json After request PolledWatches:: @@ -244,11 +244,11 @@ FsWatchesRecursive:: /user/username/projects/myproject/dependency: {} -Info 45 [16:01:31.000] response: +Info 45 [00:01:31.000] response: { "responseRequired": false } -Info 46 [16:01:32.000] request: +Info 46 [00:01:32.000] request: { "command": "compileOnSaveAffectedFileList", "arguments": { @@ -283,34 +283,34 @@ FsWatchesRecursive:: /user/username/projects/myproject/dependency: {} -Info 47 [16:01:33.000] Before ensureProjectForOpenFiles: -Info 48 [16:01:34.000] Project '/user/username/projects/myproject/usage/tsconfig.json' (Configured) -Info 48 [16:01:35.000] Files (3) - -Info 48 [16:01:36.000] ----------------------------------------------- -Info 48 [16:01:37.000] Project '/user/username/projects/myproject/dependency/tsconfig.json' (Configured) -Info 48 [16:01:38.000] Files (2) - -Info 48 [16:01:39.000] ----------------------------------------------- -Info 48 [16:01:40.000] Open files: -Info 48 [16:01:41.000] FileName: /user/username/projects/myproject/usage/usage.ts ProjectRootPath: undefined -Info 48 [16:01:42.000] Projects: /user/username/projects/myproject/usage/tsconfig.json -Info 48 [16:01:43.000] FileName: /user/username/projects/myproject/dependency/fns.ts ProjectRootPath: undefined -Info 48 [16:01:44.000] Projects: /user/username/projects/myproject/usage/tsconfig.json,/user/username/projects/myproject/dependency/tsconfig.json -Info 48 [16:01:45.000] After ensureProjectForOpenFiles: -Info 49 [16:01:46.000] Project '/user/username/projects/myproject/usage/tsconfig.json' (Configured) -Info 49 [16:01:47.000] Files (3) - -Info 49 [16:01:48.000] ----------------------------------------------- -Info 49 [16:01:49.000] Project '/user/username/projects/myproject/dependency/tsconfig.json' (Configured) -Info 49 [16:01:50.000] Files (2) - -Info 49 [16:01:51.000] ----------------------------------------------- -Info 49 [16:01:52.000] Open files: -Info 49 [16:01:53.000] FileName: /user/username/projects/myproject/usage/usage.ts ProjectRootPath: undefined -Info 49 [16:01:54.000] Projects: /user/username/projects/myproject/usage/tsconfig.json -Info 49 [16:01:55.000] FileName: /user/username/projects/myproject/dependency/fns.ts ProjectRootPath: undefined -Info 49 [16:01:56.000] Projects: /user/username/projects/myproject/usage/tsconfig.json,/user/username/projects/myproject/dependency/tsconfig.json +Info 47 [00:01:33.000] Before ensureProjectForOpenFiles: +Info 48 [00:01:34.000] Project '/user/username/projects/myproject/usage/tsconfig.json' (Configured) +Info 48 [00:01:35.000] Files (3) + +Info 48 [00:01:36.000] ----------------------------------------------- +Info 48 [00:01:37.000] Project '/user/username/projects/myproject/dependency/tsconfig.json' (Configured) +Info 48 [00:01:38.000] Files (2) + +Info 48 [00:01:39.000] ----------------------------------------------- +Info 48 [00:01:40.000] Open files: +Info 48 [00:01:41.000] FileName: /user/username/projects/myproject/usage/usage.ts ProjectRootPath: undefined +Info 48 [00:01:42.000] Projects: /user/username/projects/myproject/usage/tsconfig.json +Info 48 [00:01:43.000] FileName: /user/username/projects/myproject/dependency/fns.ts ProjectRootPath: undefined +Info 48 [00:01:44.000] Projects: /user/username/projects/myproject/usage/tsconfig.json,/user/username/projects/myproject/dependency/tsconfig.json +Info 48 [00:01:45.000] After ensureProjectForOpenFiles: +Info 49 [00:01:46.000] Project '/user/username/projects/myproject/usage/tsconfig.json' (Configured) +Info 49 [00:01:47.000] Files (3) + +Info 49 [00:01:48.000] ----------------------------------------------- +Info 49 [00:01:49.000] Project '/user/username/projects/myproject/dependency/tsconfig.json' (Configured) +Info 49 [00:01:50.000] Files (2) + +Info 49 [00:01:51.000] ----------------------------------------------- +Info 49 [00:01:52.000] Open files: +Info 49 [00:01:53.000] FileName: /user/username/projects/myproject/usage/usage.ts ProjectRootPath: undefined +Info 49 [00:01:54.000] Projects: /user/username/projects/myproject/usage/tsconfig.json +Info 49 [00:01:55.000] FileName: /user/username/projects/myproject/dependency/fns.ts ProjectRootPath: undefined +Info 49 [00:01:56.000] Projects: /user/username/projects/myproject/usage/tsconfig.json,/user/username/projects/myproject/dependency/tsconfig.json After request PolledWatches:: @@ -337,7 +337,7 @@ FsWatchesRecursive:: /user/username/projects/myproject/dependency: {} -Info 49 [16:01:57.000] response: +Info 49 [00:01:57.000] response: { "response": [ { @@ -357,7 +357,7 @@ Info 49 [16:01:57.000] response: ], "responseRequired": true } -Info 50 [16:01:58.000] request: +Info 50 [00:01:58.000] request: { "command": "change", "arguments": { @@ -423,11 +423,11 @@ FsWatchesRecursive:: /user/username/projects/myproject/dependency: {} -Info 51 [16:01:59.000] response: +Info 51 [00:01:59.000] response: { "responseRequired": false } -Info 52 [16:02:00.000] request: +Info 52 [00:02:00.000] request: { "command": "compileOnSaveAffectedFileList", "arguments": { @@ -463,9 +463,9 @@ FsWatchesRecursive:: /user/username/projects/myproject/dependency: {} -Info 53 [16:02:01.000] Starting updateGraphWorker: Project: /user/username/projects/myproject/usage/tsconfig.json -Info 54 [16:02:02.000] Finishing updateGraphWorker: Project: /user/username/projects/myproject/usage/tsconfig.json Version: 2 structureChanged: false structureIsReused:: Completely Elapsed:: *ms -Info 55 [16:02:03.000] Different program with same set of files +Info 53 [00:02:01.000] Starting updateGraphWorker: Project: /user/username/projects/myproject/usage/tsconfig.json +Info 54 [00:02:02.000] Finishing updateGraphWorker: Project: /user/username/projects/myproject/usage/tsconfig.json Version: 2 structureChanged: false structureIsReused:: Completely Elapsed:: *ms +Info 55 [00:02:03.000] Different program with same set of files After request PolledWatches:: @@ -492,7 +492,7 @@ FsWatchesRecursive:: /user/username/projects/myproject/dependency: {} -Info 56 [16:02:04.000] response: +Info 56 [00:02:04.000] response: { "response": [ { @@ -505,7 +505,7 @@ Info 56 [16:02:04.000] response: ], "responseRequired": true } -Info 57 [16:02:05.000] request: +Info 57 [00:02:05.000] request: { "command": "compileOnSaveEmitFile", "arguments": { @@ -541,9 +541,9 @@ FsWatchesRecursive:: /user/username/projects/myproject/dependency: {} -Info 58 [16:02:08.000] DirectoryWatcher:: Triggered with /user/username/projects/myproject/usage/usage.js :: WatchInfo: /user/username/projects/myproject/usage 1 undefined Config: /user/username/projects/myproject/usage/tsconfig.json WatchType: Wild card directory -Info 59 [16:02:09.000] Project: /user/username/projects/myproject/usage/tsconfig.json Detected file add/remove of non supported extension: /user/username/projects/myproject/usage/usage.js -Info 60 [16:02:10.000] Elapsed:: *ms DirectoryWatcher:: Triggered with /user/username/projects/myproject/usage/usage.js :: WatchInfo: /user/username/projects/myproject/usage 1 undefined Config: /user/username/projects/myproject/usage/tsconfig.json WatchType: Wild card directory +Info 58 [00:02:08.000] DirectoryWatcher:: Triggered with /user/username/projects/myproject/usage/usage.js :: WatchInfo: /user/username/projects/myproject/usage 1 undefined Config: /user/username/projects/myproject/usage/tsconfig.json WatchType: Wild card directory +Info 59 [00:02:09.000] Project: /user/username/projects/myproject/usage/tsconfig.json Detected file add/remove of non supported extension: /user/username/projects/myproject/usage/usage.js +Info 60 [00:02:10.000] Elapsed:: *ms DirectoryWatcher:: Triggered with /user/username/projects/myproject/usage/usage.js :: WatchInfo: /user/username/projects/myproject/usage 1 undefined Config: /user/username/projects/myproject/usage/tsconfig.json WatchType: Wild card directory After request //// [/user/username/projects/myproject/usage/usage.js] "use strict"; @@ -581,12 +581,12 @@ FsWatchesRecursive:: /user/username/projects/myproject/dependency: {} -Info 61 [16:02:11.000] response: +Info 61 [00:02:11.000] response: { "response": true, "responseRequired": true } -Info 62 [16:02:12.000] request: +Info 62 [00:02:12.000] request: { "command": "emit-output", "arguments": { @@ -648,7 +648,7 @@ FsWatchesRecursive:: /user/username/projects/myproject/dependency: {} -Info 63 [16:02:13.000] response: +Info 63 [00:02:13.000] response: { "response": { "outputFiles": [ 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 7a7a0d1704b00..ace175eb006e0 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 @@ -1,5 +1,5 @@ -Info 0 [16:00:29.000] Provided types map file "/a/lib/typesMap.json" doesn't exist -Info 1 [16:00:30.000] request: +Info 0 [00:00:29.000] Provided types map file "/a/lib/typesMap.json" doesn't exist +Info 1 [00:00:30.000] request: { "seq": 0, "type": "request", @@ -49,11 +49,11 @@ FsWatches:: FsWatchesRecursive:: -Info 2 [16:00:31.000] Search path: /user/username/projects/myproject/usage -Info 3 [16:00:32.000] For info: /user/username/projects/myproject/usage/usage.ts :: Config file name: /user/username/projects/myproject/usage/tsconfig.json -Info 4 [16:00:33.000] Creating configuration project /user/username/projects/myproject/usage/tsconfig.json -Info 5 [16:00:34.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/usage/tsconfig.json 2000 undefined Project: /user/username/projects/myproject/usage/tsconfig.json WatchType: Config file -Info 6 [16:00:35.000] Config: /user/username/projects/myproject/usage/tsconfig.json : { +Info 2 [00:00:31.000] Search path: /user/username/projects/myproject/usage +Info 3 [00:00:32.000] For info: /user/username/projects/myproject/usage/usage.ts :: Config file name: /user/username/projects/myproject/usage/tsconfig.json +Info 4 [00:00:33.000] Creating configuration project /user/username/projects/myproject/usage/tsconfig.json +Info 5 [00:00:34.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/usage/tsconfig.json 2000 undefined Project: /user/username/projects/myproject/usage/tsconfig.json WatchType: Config file +Info 6 [00:00:35.000] Config: /user/username/projects/myproject/usage/tsconfig.json : { "rootNames": [ "/user/username/projects/myproject/usage/usage.ts" ], @@ -67,11 +67,11 @@ Info 6 [16:00:35.000] Config: /user/username/projects/myproject/usage/tsconfi } ] } -Info 7 [16:00:36.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/usage 1 undefined Config: /user/username/projects/myproject/usage/tsconfig.json WatchType: Wild card directory -Info 8 [16:00:37.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/usage 1 undefined Config: /user/username/projects/myproject/usage/tsconfig.json WatchType: Wild card directory -Info 9 [16:00:38.000] Plugins were requested but not running in environment that supports 'require'. Nothing will be loaded -Info 10 [16:00:39.000] Starting updateGraphWorker: Project: /user/username/projects/myproject/usage/tsconfig.json -Info 11 [16:00:40.000] Config: /user/username/projects/myproject/dependency/tsconfig.json : { +Info 7 [00:00:36.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/usage 1 undefined Config: /user/username/projects/myproject/usage/tsconfig.json WatchType: Wild card directory +Info 8 [00:00:37.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/usage 1 undefined Config: /user/username/projects/myproject/usage/tsconfig.json WatchType: Wild card directory +Info 9 [00:00:38.000] Plugins were requested but not running in environment that supports 'require'. Nothing will be loaded +Info 10 [00:00:39.000] Starting updateGraphWorker: Project: /user/username/projects/myproject/usage/tsconfig.json +Info 11 [00:00:40.000] Config: /user/username/projects/myproject/dependency/tsconfig.json : { "rootNames": [ "/user/username/projects/myproject/dependency/fns.ts" ], @@ -81,20 +81,20 @@ Info 11 [16:00:40.000] Config: /user/username/projects/myproject/dependency/ts "configFilePath": "/user/username/projects/myproject/dependency/tsconfig.json" } } -Info 12 [16:00:41.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/dependency/tsconfig.json 2000 undefined Project: /user/username/projects/myproject/usage/tsconfig.json WatchType: Config file -Info 13 [16:00:42.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/dependency 1 undefined Config: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Wild card directory -Info 14 [16:00:43.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/dependency 1 undefined Config: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Wild card directory -Info 15 [16:00:44.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/decls 1 undefined Project: /user/username/projects/myproject/usage/tsconfig.json WatchType: Failed Lookup Locations -Info 16 [16:00:45.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/decls 1 undefined Project: /user/username/projects/myproject/usage/tsconfig.json WatchType: Failed Lookup Locations -Info 17 [16:00:46.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/dependency/fns.ts 500 undefined WatchType: Closed Script info -Info 18 [16:00:47.000] FileWatcher:: Added:: WatchInfo: /a/lib/lib.d.ts 500 undefined WatchType: Closed Script info -Info 19 [16:00:48.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/usage/node_modules/@types 1 undefined Project: /user/username/projects/myproject/usage/tsconfig.json WatchType: Type roots -Info 20 [16:00:49.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/usage/node_modules/@types 1 undefined Project: /user/username/projects/myproject/usage/tsconfig.json WatchType: Type roots -Info 21 [16:00:50.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/usage/tsconfig.json WatchType: Type roots -Info 22 [16:00:51.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/usage/tsconfig.json WatchType: Type roots -Info 23 [16:00:52.000] Finishing updateGraphWorker: Project: /user/username/projects/myproject/usage/tsconfig.json Version: 1 structureChanged: true structureIsReused:: Not Elapsed:: *ms -Info 24 [16:00:53.000] Project '/user/username/projects/myproject/usage/tsconfig.json' (Configured) -Info 25 [16:00:54.000] Files (3) +Info 12 [00:00:41.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/dependency/tsconfig.json 2000 undefined Project: /user/username/projects/myproject/usage/tsconfig.json WatchType: Config file +Info 13 [00:00:42.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/dependency 1 undefined Config: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Wild card directory +Info 14 [00:00:43.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/dependency 1 undefined Config: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Wild card directory +Info 15 [00:00:44.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/decls 1 undefined Project: /user/username/projects/myproject/usage/tsconfig.json WatchType: Failed Lookup Locations +Info 16 [00:00:45.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/decls 1 undefined Project: /user/username/projects/myproject/usage/tsconfig.json WatchType: Failed Lookup Locations +Info 17 [00:00:46.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/dependency/fns.ts 500 undefined WatchType: Closed Script info +Info 18 [00:00:47.000] FileWatcher:: Added:: WatchInfo: /a/lib/lib.d.ts 500 undefined WatchType: Closed Script info +Info 19 [00:00:48.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/usage/node_modules/@types 1 undefined Project: /user/username/projects/myproject/usage/tsconfig.json WatchType: Type roots +Info 20 [00:00:49.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/usage/node_modules/@types 1 undefined Project: /user/username/projects/myproject/usage/tsconfig.json WatchType: Type roots +Info 21 [00:00:50.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/usage/tsconfig.json WatchType: Type roots +Info 22 [00:00:51.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/usage/tsconfig.json WatchType: Type roots +Info 23 [00:00:52.000] Finishing updateGraphWorker: Project: /user/username/projects/myproject/usage/tsconfig.json Version: 1 structureChanged: true structureIsReused:: Not Elapsed:: *ms +Info 24 [00:00:53.000] Project '/user/username/projects/myproject/usage/tsconfig.json' (Configured) +Info 25 [00:00:54.000] Files (3) /a/lib/lib.d.ts /user/username/projects/myproject/dependency/fns.ts /user/username/projects/myproject/usage/usage.ts @@ -107,14 +107,14 @@ Info 25 [16:00:54.000] Files (3) usage.ts Matched by default include pattern '**/*' -Info 26 [16:00:55.000] ----------------------------------------------- -Info 27 [16:00:56.000] Project '/user/username/projects/myproject/usage/tsconfig.json' (Configured) -Info 27 [16:00:57.000] Files (3) +Info 26 [00:00:55.000] ----------------------------------------------- +Info 27 [00:00:56.000] Project '/user/username/projects/myproject/usage/tsconfig.json' (Configured) +Info 27 [00:00:57.000] Files (3) -Info 27 [16:00:58.000] ----------------------------------------------- -Info 27 [16:00:59.000] Open files: -Info 27 [16:01:00.000] FileName: /user/username/projects/myproject/usage/usage.ts ProjectRootPath: undefined -Info 27 [16:01:01.000] Projects: /user/username/projects/myproject/usage/tsconfig.json +Info 27 [00:00:58.000] ----------------------------------------------- +Info 27 [00:00:59.000] Open files: +Info 27 [00:01:00.000] FileName: /user/username/projects/myproject/usage/usage.ts ProjectRootPath: undefined +Info 27 [00:01:01.000] Projects: /user/username/projects/myproject/usage/tsconfig.json After request PolledWatches:: @@ -141,11 +141,11 @@ FsWatchesRecursive:: /user/username/projects/myproject/dependency: {} -Info 27 [16:01:02.000] response: +Info 27 [00:01:02.000] response: { "responseRequired": false } -Info 28 [16:01:03.000] request: +Info 28 [00:01:03.000] request: { "seq": 0, "type": "request", @@ -180,19 +180,19 @@ FsWatchesRecursive:: /user/username/projects/myproject/dependency: {} -Info 29 [16:01:04.000] FileWatcher:: Close:: WatchInfo: /user/username/projects/myproject/dependency/fns.ts 500 undefined WatchType: Closed Script info -Info 30 [16:01:05.000] Search path: /user/username/projects/myproject/dependency -Info 31 [16:01:06.000] For info: /user/username/projects/myproject/dependency/fns.ts :: Config file name: /user/username/projects/myproject/dependency/tsconfig.json -Info 32 [16:01:07.000] Creating configuration project /user/username/projects/myproject/dependency/tsconfig.json -Info 33 [16:01:08.000] Plugins were requested but not running in environment that supports 'require'. Nothing will be loaded -Info 34 [16:01:09.000] Starting updateGraphWorker: Project: /user/username/projects/myproject/dependency/tsconfig.json -Info 35 [16:01:10.000] 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 36 [16:01:11.000] 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 37 [16:01:12.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Type roots -Info 38 [16:01:13.000] 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 39 [16:01:14.000] Finishing updateGraphWorker: Project: /user/username/projects/myproject/dependency/tsconfig.json Version: 1 structureChanged: true structureIsReused:: Not Elapsed:: *ms -Info 40 [16:01:15.000] Project '/user/username/projects/myproject/dependency/tsconfig.json' (Configured) -Info 41 [16:01:16.000] Files (2) +Info 29 [00:01:04.000] FileWatcher:: Close:: WatchInfo: /user/username/projects/myproject/dependency/fns.ts 500 undefined WatchType: Closed Script info +Info 30 [00:01:05.000] Search path: /user/username/projects/myproject/dependency +Info 31 [00:01:06.000] For info: /user/username/projects/myproject/dependency/fns.ts :: Config file name: /user/username/projects/myproject/dependency/tsconfig.json +Info 32 [00:01:07.000] Creating configuration project /user/username/projects/myproject/dependency/tsconfig.json +Info 33 [00:01:08.000] Plugins were requested but not running in environment that supports 'require'. Nothing will be loaded +Info 34 [00:01:09.000] Starting updateGraphWorker: Project: /user/username/projects/myproject/dependency/tsconfig.json +Info 35 [00:01:10.000] 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 36 [00:01:11.000] 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 37 [00:01:12.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Type roots +Info 38 [00:01:13.000] 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 39 [00:01:14.000] Finishing updateGraphWorker: Project: /user/username/projects/myproject/dependency/tsconfig.json Version: 1 structureChanged: true structureIsReused:: Not Elapsed:: *ms +Info 40 [00:01:15.000] Project '/user/username/projects/myproject/dependency/tsconfig.json' (Configured) +Info 41 [00:01:16.000] Files (2) /a/lib/lib.d.ts /user/username/projects/myproject/dependency/fns.ts @@ -202,22 +202,22 @@ Info 41 [16:01:16.000] Files (2) fns.ts Matched by default include pattern '**/*' -Info 42 [16:01:17.000] ----------------------------------------------- -Info 43 [16:01:18.000] Search path: /user/username/projects/myproject/dependency -Info 44 [16:01:19.000] For info: /user/username/projects/myproject/dependency/tsconfig.json :: No config files found. -Info 45 [16:01:20.000] Project '/user/username/projects/myproject/usage/tsconfig.json' (Configured) -Info 45 [16:01:21.000] Files (3) - -Info 45 [16:01:22.000] ----------------------------------------------- -Info 45 [16:01:23.000] Project '/user/username/projects/myproject/dependency/tsconfig.json' (Configured) -Info 45 [16:01:24.000] Files (2) - -Info 45 [16:01:25.000] ----------------------------------------------- -Info 45 [16:01:26.000] Open files: -Info 45 [16:01:27.000] FileName: /user/username/projects/myproject/usage/usage.ts ProjectRootPath: undefined -Info 45 [16:01:28.000] Projects: /user/username/projects/myproject/usage/tsconfig.json -Info 45 [16:01:29.000] FileName: /user/username/projects/myproject/dependency/fns.ts ProjectRootPath: undefined -Info 45 [16:01:30.000] Projects: /user/username/projects/myproject/usage/tsconfig.json,/user/username/projects/myproject/dependency/tsconfig.json +Info 42 [00:01:17.000] ----------------------------------------------- +Info 43 [00:01:18.000] Search path: /user/username/projects/myproject/dependency +Info 44 [00:01:19.000] For info: /user/username/projects/myproject/dependency/tsconfig.json :: No config files found. +Info 45 [00:01:20.000] Project '/user/username/projects/myproject/usage/tsconfig.json' (Configured) +Info 45 [00:01:21.000] Files (3) + +Info 45 [00:01:22.000] ----------------------------------------------- +Info 45 [00:01:23.000] Project '/user/username/projects/myproject/dependency/tsconfig.json' (Configured) +Info 45 [00:01:24.000] Files (2) + +Info 45 [00:01:25.000] ----------------------------------------------- +Info 45 [00:01:26.000] Open files: +Info 45 [00:01:27.000] FileName: /user/username/projects/myproject/usage/usage.ts ProjectRootPath: undefined +Info 45 [00:01:28.000] Projects: /user/username/projects/myproject/usage/tsconfig.json +Info 45 [00:01:29.000] FileName: /user/username/projects/myproject/dependency/fns.ts ProjectRootPath: undefined +Info 45 [00:01:30.000] Projects: /user/username/projects/myproject/usage/tsconfig.json,/user/username/projects/myproject/dependency/tsconfig.json After request PolledWatches:: @@ -244,11 +244,11 @@ FsWatchesRecursive:: /user/username/projects/myproject/dependency: {} -Info 45 [16:01:31.000] response: +Info 45 [00:01:31.000] response: { "responseRequired": false } -Info 46 [16:01:32.000] request: +Info 46 [00:01:32.000] request: { "command": "compileOnSaveAffectedFileList", "arguments": { @@ -310,7 +310,7 @@ FsWatchesRecursive:: /user/username/projects/myproject/dependency: {} -Info 47 [16:01:33.000] response: +Info 47 [00:01:33.000] response: { "response": [ { @@ -323,7 +323,7 @@ Info 47 [16:01:33.000] response: ], "responseRequired": true } -Info 48 [16:01:34.000] request: +Info 48 [00:01:34.000] request: { "command": "compileOnSaveEmitFile", "arguments": { @@ -359,9 +359,9 @@ FsWatchesRecursive:: /user/username/projects/myproject/dependency: {} -Info 49 [16:01:37.000] DirectoryWatcher:: Triggered with /user/username/projects/myproject/usage/usage.js :: WatchInfo: /user/username/projects/myproject/usage 1 undefined Config: /user/username/projects/myproject/usage/tsconfig.json WatchType: Wild card directory -Info 50 [16:01:38.000] Project: /user/username/projects/myproject/usage/tsconfig.json Detected file add/remove of non supported extension: /user/username/projects/myproject/usage/usage.js -Info 51 [16:01:39.000] Elapsed:: *ms DirectoryWatcher:: Triggered with /user/username/projects/myproject/usage/usage.js :: WatchInfo: /user/username/projects/myproject/usage 1 undefined Config: /user/username/projects/myproject/usage/tsconfig.json WatchType: Wild card directory +Info 49 [00:01:37.000] DirectoryWatcher:: Triggered with /user/username/projects/myproject/usage/usage.js :: WatchInfo: /user/username/projects/myproject/usage 1 undefined Config: /user/username/projects/myproject/usage/tsconfig.json WatchType: Wild card directory +Info 50 [00:01:38.000] Project: /user/username/projects/myproject/usage/tsconfig.json Detected file add/remove of non supported extension: /user/username/projects/myproject/usage/usage.js +Info 51 [00:01:39.000] Elapsed:: *ms DirectoryWatcher:: Triggered with /user/username/projects/myproject/usage/usage.js :: WatchInfo: /user/username/projects/myproject/usage 1 undefined Config: /user/username/projects/myproject/usage/tsconfig.json WatchType: Wild card directory After request //// [/user/username/projects/myproject/usage/usage.js] "use strict"; @@ -396,12 +396,12 @@ FsWatchesRecursive:: /user/username/projects/myproject/dependency: {} -Info 52 [16:01:40.000] response: +Info 52 [00:01:40.000] response: { "response": true, "responseRequired": true } -Info 53 [16:01:41.000] request: +Info 53 [00:01:41.000] request: { "command": "emit-output", "arguments": { @@ -463,7 +463,7 @@ FsWatchesRecursive:: /user/username/projects/myproject/dependency: {} -Info 54 [16:01:42.000] response: +Info 54 [00:01:42.000] response: { "response": { "outputFiles": [ diff --git a/tests/baselines/reference/tsserver/projectReferenceCompileOnSave/save-on-usage.js b/tests/baselines/reference/tsserver/projectReferenceCompileOnSave/save-on-usage.js index eebb14b3f3de3..0e280410715dc 100644 --- a/tests/baselines/reference/tsserver/projectReferenceCompileOnSave/save-on-usage.js +++ b/tests/baselines/reference/tsserver/projectReferenceCompileOnSave/save-on-usage.js @@ -1,5 +1,5 @@ -Info 0 [16:00:29.000] Provided types map file "/a/lib/typesMap.json" doesn't exist -Info 1 [16:00:30.000] request: +Info 0 [00:00:29.000] Provided types map file "/a/lib/typesMap.json" doesn't exist +Info 1 [00:00:30.000] request: { "seq": 0, "type": "request", @@ -49,11 +49,11 @@ FsWatches:: FsWatchesRecursive:: -Info 2 [16:00:31.000] Search path: /user/username/projects/myproject/usage -Info 3 [16:00:32.000] For info: /user/username/projects/myproject/usage/usage.ts :: Config file name: /user/username/projects/myproject/usage/tsconfig.json -Info 4 [16:00:33.000] Creating configuration project /user/username/projects/myproject/usage/tsconfig.json -Info 5 [16:00:34.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/usage/tsconfig.json 2000 undefined Project: /user/username/projects/myproject/usage/tsconfig.json WatchType: Config file -Info 6 [16:00:35.000] Config: /user/username/projects/myproject/usage/tsconfig.json : { +Info 2 [00:00:31.000] Search path: /user/username/projects/myproject/usage +Info 3 [00:00:32.000] For info: /user/username/projects/myproject/usage/usage.ts :: Config file name: /user/username/projects/myproject/usage/tsconfig.json +Info 4 [00:00:33.000] Creating configuration project /user/username/projects/myproject/usage/tsconfig.json +Info 5 [00:00:34.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/usage/tsconfig.json 2000 undefined Project: /user/username/projects/myproject/usage/tsconfig.json WatchType: Config file +Info 6 [00:00:35.000] Config: /user/username/projects/myproject/usage/tsconfig.json : { "rootNames": [ "/user/username/projects/myproject/usage/usage.ts" ], @@ -67,11 +67,11 @@ Info 6 [16:00:35.000] Config: /user/username/projects/myproject/usage/tsconfi } ] } -Info 7 [16:00:36.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/usage 1 undefined Config: /user/username/projects/myproject/usage/tsconfig.json WatchType: Wild card directory -Info 8 [16:00:37.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/usage 1 undefined Config: /user/username/projects/myproject/usage/tsconfig.json WatchType: Wild card directory -Info 9 [16:00:38.000] Plugins were requested but not running in environment that supports 'require'. Nothing will be loaded -Info 10 [16:00:39.000] Starting updateGraphWorker: Project: /user/username/projects/myproject/usage/tsconfig.json -Info 11 [16:00:40.000] Config: /user/username/projects/myproject/dependency/tsconfig.json : { +Info 7 [00:00:36.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/usage 1 undefined Config: /user/username/projects/myproject/usage/tsconfig.json WatchType: Wild card directory +Info 8 [00:00:37.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/usage 1 undefined Config: /user/username/projects/myproject/usage/tsconfig.json WatchType: Wild card directory +Info 9 [00:00:38.000] Plugins were requested but not running in environment that supports 'require'. Nothing will be loaded +Info 10 [00:00:39.000] Starting updateGraphWorker: Project: /user/username/projects/myproject/usage/tsconfig.json +Info 11 [00:00:40.000] Config: /user/username/projects/myproject/dependency/tsconfig.json : { "rootNames": [ "/user/username/projects/myproject/dependency/fns.ts" ], @@ -81,20 +81,20 @@ Info 11 [16:00:40.000] Config: /user/username/projects/myproject/dependency/ts "configFilePath": "/user/username/projects/myproject/dependency/tsconfig.json" } } -Info 12 [16:00:41.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/dependency/tsconfig.json 2000 undefined Project: /user/username/projects/myproject/usage/tsconfig.json WatchType: Config file -Info 13 [16:00:42.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/dependency 1 undefined Config: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Wild card directory -Info 14 [16:00:43.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/dependency 1 undefined Config: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Wild card directory -Info 15 [16:00:44.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/decls 1 undefined Project: /user/username/projects/myproject/usage/tsconfig.json WatchType: Failed Lookup Locations -Info 16 [16:00:45.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/decls 1 undefined Project: /user/username/projects/myproject/usage/tsconfig.json WatchType: Failed Lookup Locations -Info 17 [16:00:46.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/dependency/fns.ts 500 undefined WatchType: Closed Script info -Info 18 [16:00:47.000] FileWatcher:: Added:: WatchInfo: /a/lib/lib.d.ts 500 undefined WatchType: Closed Script info -Info 19 [16:00:48.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/usage/node_modules/@types 1 undefined Project: /user/username/projects/myproject/usage/tsconfig.json WatchType: Type roots -Info 20 [16:00:49.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/usage/node_modules/@types 1 undefined Project: /user/username/projects/myproject/usage/tsconfig.json WatchType: Type roots -Info 21 [16:00:50.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/usage/tsconfig.json WatchType: Type roots -Info 22 [16:00:51.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/usage/tsconfig.json WatchType: Type roots -Info 23 [16:00:52.000] Finishing updateGraphWorker: Project: /user/username/projects/myproject/usage/tsconfig.json Version: 1 structureChanged: true structureIsReused:: Not Elapsed:: *ms -Info 24 [16:00:53.000] Project '/user/username/projects/myproject/usage/tsconfig.json' (Configured) -Info 25 [16:00:54.000] Files (3) +Info 12 [00:00:41.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/dependency/tsconfig.json 2000 undefined Project: /user/username/projects/myproject/usage/tsconfig.json WatchType: Config file +Info 13 [00:00:42.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/dependency 1 undefined Config: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Wild card directory +Info 14 [00:00:43.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/dependency 1 undefined Config: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Wild card directory +Info 15 [00:00:44.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/decls 1 undefined Project: /user/username/projects/myproject/usage/tsconfig.json WatchType: Failed Lookup Locations +Info 16 [00:00:45.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/decls 1 undefined Project: /user/username/projects/myproject/usage/tsconfig.json WatchType: Failed Lookup Locations +Info 17 [00:00:46.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/dependency/fns.ts 500 undefined WatchType: Closed Script info +Info 18 [00:00:47.000] FileWatcher:: Added:: WatchInfo: /a/lib/lib.d.ts 500 undefined WatchType: Closed Script info +Info 19 [00:00:48.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/usage/node_modules/@types 1 undefined Project: /user/username/projects/myproject/usage/tsconfig.json WatchType: Type roots +Info 20 [00:00:49.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/usage/node_modules/@types 1 undefined Project: /user/username/projects/myproject/usage/tsconfig.json WatchType: Type roots +Info 21 [00:00:50.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/usage/tsconfig.json WatchType: Type roots +Info 22 [00:00:51.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/usage/tsconfig.json WatchType: Type roots +Info 23 [00:00:52.000] Finishing updateGraphWorker: Project: /user/username/projects/myproject/usage/tsconfig.json Version: 1 structureChanged: true structureIsReused:: Not Elapsed:: *ms +Info 24 [00:00:53.000] Project '/user/username/projects/myproject/usage/tsconfig.json' (Configured) +Info 25 [00:00:54.000] Files (3) /a/lib/lib.d.ts /user/username/projects/myproject/dependency/fns.ts /user/username/projects/myproject/usage/usage.ts @@ -107,14 +107,14 @@ Info 25 [16:00:54.000] Files (3) usage.ts Matched by default include pattern '**/*' -Info 26 [16:00:55.000] ----------------------------------------------- -Info 27 [16:00:56.000] Project '/user/username/projects/myproject/usage/tsconfig.json' (Configured) -Info 27 [16:00:57.000] Files (3) +Info 26 [00:00:55.000] ----------------------------------------------- +Info 27 [00:00:56.000] Project '/user/username/projects/myproject/usage/tsconfig.json' (Configured) +Info 27 [00:00:57.000] Files (3) -Info 27 [16:00:58.000] ----------------------------------------------- -Info 27 [16:00:59.000] Open files: -Info 27 [16:01:00.000] FileName: /user/username/projects/myproject/usage/usage.ts ProjectRootPath: undefined -Info 27 [16:01:01.000] Projects: /user/username/projects/myproject/usage/tsconfig.json +Info 27 [00:00:58.000] ----------------------------------------------- +Info 27 [00:00:59.000] Open files: +Info 27 [00:01:00.000] FileName: /user/username/projects/myproject/usage/usage.ts ProjectRootPath: undefined +Info 27 [00:01:01.000] Projects: /user/username/projects/myproject/usage/tsconfig.json After request PolledWatches:: @@ -141,11 +141,11 @@ FsWatchesRecursive:: /user/username/projects/myproject/dependency: {} -Info 27 [16:01:02.000] response: +Info 27 [00:01:02.000] response: { "responseRequired": false } -Info 28 [16:01:03.000] request: +Info 28 [00:01:03.000] request: { "seq": 0, "type": "request", @@ -180,19 +180,19 @@ FsWatchesRecursive:: /user/username/projects/myproject/dependency: {} -Info 29 [16:01:04.000] FileWatcher:: Close:: WatchInfo: /user/username/projects/myproject/dependency/fns.ts 500 undefined WatchType: Closed Script info -Info 30 [16:01:05.000] Search path: /user/username/projects/myproject/dependency -Info 31 [16:01:06.000] For info: /user/username/projects/myproject/dependency/fns.ts :: Config file name: /user/username/projects/myproject/dependency/tsconfig.json -Info 32 [16:01:07.000] Creating configuration project /user/username/projects/myproject/dependency/tsconfig.json -Info 33 [16:01:08.000] Plugins were requested but not running in environment that supports 'require'. Nothing will be loaded -Info 34 [16:01:09.000] Starting updateGraphWorker: Project: /user/username/projects/myproject/dependency/tsconfig.json -Info 35 [16:01:10.000] 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 36 [16:01:11.000] 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 37 [16:01:12.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Type roots -Info 38 [16:01:13.000] 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 39 [16:01:14.000] Finishing updateGraphWorker: Project: /user/username/projects/myproject/dependency/tsconfig.json Version: 1 structureChanged: true structureIsReused:: Not Elapsed:: *ms -Info 40 [16:01:15.000] Project '/user/username/projects/myproject/dependency/tsconfig.json' (Configured) -Info 41 [16:01:16.000] Files (2) +Info 29 [00:01:04.000] FileWatcher:: Close:: WatchInfo: /user/username/projects/myproject/dependency/fns.ts 500 undefined WatchType: Closed Script info +Info 30 [00:01:05.000] Search path: /user/username/projects/myproject/dependency +Info 31 [00:01:06.000] For info: /user/username/projects/myproject/dependency/fns.ts :: Config file name: /user/username/projects/myproject/dependency/tsconfig.json +Info 32 [00:01:07.000] Creating configuration project /user/username/projects/myproject/dependency/tsconfig.json +Info 33 [00:01:08.000] Plugins were requested but not running in environment that supports 'require'. Nothing will be loaded +Info 34 [00:01:09.000] Starting updateGraphWorker: Project: /user/username/projects/myproject/dependency/tsconfig.json +Info 35 [00:01:10.000] 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 36 [00:01:11.000] 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 37 [00:01:12.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Type roots +Info 38 [00:01:13.000] 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 39 [00:01:14.000] Finishing updateGraphWorker: Project: /user/username/projects/myproject/dependency/tsconfig.json Version: 1 structureChanged: true structureIsReused:: Not Elapsed:: *ms +Info 40 [00:01:15.000] Project '/user/username/projects/myproject/dependency/tsconfig.json' (Configured) +Info 41 [00:01:16.000] Files (2) /a/lib/lib.d.ts /user/username/projects/myproject/dependency/fns.ts @@ -202,22 +202,22 @@ Info 41 [16:01:16.000] Files (2) fns.ts Matched by default include pattern '**/*' -Info 42 [16:01:17.000] ----------------------------------------------- -Info 43 [16:01:18.000] Search path: /user/username/projects/myproject/dependency -Info 44 [16:01:19.000] For info: /user/username/projects/myproject/dependency/tsconfig.json :: No config files found. -Info 45 [16:01:20.000] Project '/user/username/projects/myproject/usage/tsconfig.json' (Configured) -Info 45 [16:01:21.000] Files (3) - -Info 45 [16:01:22.000] ----------------------------------------------- -Info 45 [16:01:23.000] Project '/user/username/projects/myproject/dependency/tsconfig.json' (Configured) -Info 45 [16:01:24.000] Files (2) - -Info 45 [16:01:25.000] ----------------------------------------------- -Info 45 [16:01:26.000] Open files: -Info 45 [16:01:27.000] FileName: /user/username/projects/myproject/usage/usage.ts ProjectRootPath: undefined -Info 45 [16:01:28.000] Projects: /user/username/projects/myproject/usage/tsconfig.json -Info 45 [16:01:29.000] FileName: /user/username/projects/myproject/dependency/fns.ts ProjectRootPath: undefined -Info 45 [16:01:30.000] Projects: /user/username/projects/myproject/usage/tsconfig.json,/user/username/projects/myproject/dependency/tsconfig.json +Info 42 [00:01:17.000] ----------------------------------------------- +Info 43 [00:01:18.000] Search path: /user/username/projects/myproject/dependency +Info 44 [00:01:19.000] For info: /user/username/projects/myproject/dependency/tsconfig.json :: No config files found. +Info 45 [00:01:20.000] Project '/user/username/projects/myproject/usage/tsconfig.json' (Configured) +Info 45 [00:01:21.000] Files (3) + +Info 45 [00:01:22.000] ----------------------------------------------- +Info 45 [00:01:23.000] Project '/user/username/projects/myproject/dependency/tsconfig.json' (Configured) +Info 45 [00:01:24.000] Files (2) + +Info 45 [00:01:25.000] ----------------------------------------------- +Info 45 [00:01:26.000] Open files: +Info 45 [00:01:27.000] FileName: /user/username/projects/myproject/usage/usage.ts ProjectRootPath: undefined +Info 45 [00:01:28.000] Projects: /user/username/projects/myproject/usage/tsconfig.json +Info 45 [00:01:29.000] FileName: /user/username/projects/myproject/dependency/fns.ts ProjectRootPath: undefined +Info 45 [00:01:30.000] Projects: /user/username/projects/myproject/usage/tsconfig.json,/user/username/projects/myproject/dependency/tsconfig.json After request PolledWatches:: @@ -244,11 +244,11 @@ FsWatchesRecursive:: /user/username/projects/myproject/dependency: {} -Info 45 [16:01:31.000] response: +Info 45 [00:01:31.000] response: { "responseRequired": false } -Info 46 [16:01:32.000] request: +Info 46 [00:01:32.000] request: { "command": "compileOnSaveAffectedFileList", "arguments": { @@ -283,34 +283,34 @@ FsWatchesRecursive:: /user/username/projects/myproject/dependency: {} -Info 47 [16:01:33.000] Before ensureProjectForOpenFiles: -Info 48 [16:01:34.000] Project '/user/username/projects/myproject/usage/tsconfig.json' (Configured) -Info 48 [16:01:35.000] Files (3) - -Info 48 [16:01:36.000] ----------------------------------------------- -Info 48 [16:01:37.000] Project '/user/username/projects/myproject/dependency/tsconfig.json' (Configured) -Info 48 [16:01:38.000] Files (2) - -Info 48 [16:01:39.000] ----------------------------------------------- -Info 48 [16:01:40.000] Open files: -Info 48 [16:01:41.000] FileName: /user/username/projects/myproject/usage/usage.ts ProjectRootPath: undefined -Info 48 [16:01:42.000] Projects: /user/username/projects/myproject/usage/tsconfig.json -Info 48 [16:01:43.000] FileName: /user/username/projects/myproject/dependency/fns.ts ProjectRootPath: undefined -Info 48 [16:01:44.000] Projects: /user/username/projects/myproject/usage/tsconfig.json,/user/username/projects/myproject/dependency/tsconfig.json -Info 48 [16:01:45.000] After ensureProjectForOpenFiles: -Info 49 [16:01:46.000] Project '/user/username/projects/myproject/usage/tsconfig.json' (Configured) -Info 49 [16:01:47.000] Files (3) - -Info 49 [16:01:48.000] ----------------------------------------------- -Info 49 [16:01:49.000] Project '/user/username/projects/myproject/dependency/tsconfig.json' (Configured) -Info 49 [16:01:50.000] Files (2) - -Info 49 [16:01:51.000] ----------------------------------------------- -Info 49 [16:01:52.000] Open files: -Info 49 [16:01:53.000] FileName: /user/username/projects/myproject/usage/usage.ts ProjectRootPath: undefined -Info 49 [16:01:54.000] Projects: /user/username/projects/myproject/usage/tsconfig.json -Info 49 [16:01:55.000] FileName: /user/username/projects/myproject/dependency/fns.ts ProjectRootPath: undefined -Info 49 [16:01:56.000] Projects: /user/username/projects/myproject/usage/tsconfig.json,/user/username/projects/myproject/dependency/tsconfig.json +Info 47 [00:01:33.000] Before ensureProjectForOpenFiles: +Info 48 [00:01:34.000] Project '/user/username/projects/myproject/usage/tsconfig.json' (Configured) +Info 48 [00:01:35.000] Files (3) + +Info 48 [00:01:36.000] ----------------------------------------------- +Info 48 [00:01:37.000] Project '/user/username/projects/myproject/dependency/tsconfig.json' (Configured) +Info 48 [00:01:38.000] Files (2) + +Info 48 [00:01:39.000] ----------------------------------------------- +Info 48 [00:01:40.000] Open files: +Info 48 [00:01:41.000] FileName: /user/username/projects/myproject/usage/usage.ts ProjectRootPath: undefined +Info 48 [00:01:42.000] Projects: /user/username/projects/myproject/usage/tsconfig.json +Info 48 [00:01:43.000] FileName: /user/username/projects/myproject/dependency/fns.ts ProjectRootPath: undefined +Info 48 [00:01:44.000] Projects: /user/username/projects/myproject/usage/tsconfig.json,/user/username/projects/myproject/dependency/tsconfig.json +Info 48 [00:01:45.000] After ensureProjectForOpenFiles: +Info 49 [00:01:46.000] Project '/user/username/projects/myproject/usage/tsconfig.json' (Configured) +Info 49 [00:01:47.000] Files (3) + +Info 49 [00:01:48.000] ----------------------------------------------- +Info 49 [00:01:49.000] Project '/user/username/projects/myproject/dependency/tsconfig.json' (Configured) +Info 49 [00:01:50.000] Files (2) + +Info 49 [00:01:51.000] ----------------------------------------------- +Info 49 [00:01:52.000] Open files: +Info 49 [00:01:53.000] FileName: /user/username/projects/myproject/usage/usage.ts ProjectRootPath: undefined +Info 49 [00:01:54.000] Projects: /user/username/projects/myproject/usage/tsconfig.json +Info 49 [00:01:55.000] FileName: /user/username/projects/myproject/dependency/fns.ts ProjectRootPath: undefined +Info 49 [00:01:56.000] Projects: /user/username/projects/myproject/usage/tsconfig.json,/user/username/projects/myproject/dependency/tsconfig.json After request PolledWatches:: @@ -337,7 +337,7 @@ FsWatchesRecursive:: /user/username/projects/myproject/dependency: {} -Info 49 [16:01:57.000] response: +Info 49 [00:01:57.000] response: { "response": [ { @@ -350,7 +350,7 @@ Info 49 [16:01:57.000] response: ], "responseRequired": true } -Info 50 [16:01:58.000] request: +Info 50 [00:01:58.000] request: { "command": "compileOnSaveEmitFile", "arguments": { @@ -385,9 +385,9 @@ FsWatchesRecursive:: /user/username/projects/myproject/dependency: {} -Info 51 [16:02:01.000] DirectoryWatcher:: Triggered with /user/username/projects/myproject/usage/usage.js :: WatchInfo: /user/username/projects/myproject/usage 1 undefined Config: /user/username/projects/myproject/usage/tsconfig.json WatchType: Wild card directory -Info 52 [16:02:02.000] Project: /user/username/projects/myproject/usage/tsconfig.json Detected file add/remove of non supported extension: /user/username/projects/myproject/usage/usage.js -Info 53 [16:02:03.000] Elapsed:: *ms DirectoryWatcher:: Triggered with /user/username/projects/myproject/usage/usage.js :: WatchInfo: /user/username/projects/myproject/usage 1 undefined Config: /user/username/projects/myproject/usage/tsconfig.json WatchType: Wild card directory +Info 51 [00:02:01.000] DirectoryWatcher:: Triggered with /user/username/projects/myproject/usage/usage.js :: WatchInfo: /user/username/projects/myproject/usage 1 undefined Config: /user/username/projects/myproject/usage/tsconfig.json WatchType: Wild card directory +Info 52 [00:02:02.000] Project: /user/username/projects/myproject/usage/tsconfig.json Detected file add/remove of non supported extension: /user/username/projects/myproject/usage/usage.js +Info 53 [00:02:03.000] Elapsed:: *ms DirectoryWatcher:: Triggered with /user/username/projects/myproject/usage/usage.js :: WatchInfo: /user/username/projects/myproject/usage 1 undefined Config: /user/username/projects/myproject/usage/tsconfig.json WatchType: Wild card directory After request //// [/user/username/projects/myproject/usage/usage.js] "use strict"; @@ -422,12 +422,12 @@ FsWatchesRecursive:: /user/username/projects/myproject/dependency: {} -Info 54 [16:02:04.000] response: +Info 54 [00:02:04.000] response: { "response": true, "responseRequired": true } -Info 55 [16:02:05.000] request: +Info 55 [00:02:05.000] request: { "command": "emit-output", "arguments": { @@ -488,7 +488,7 @@ FsWatchesRecursive:: /user/username/projects/myproject/dependency: {} -Info 56 [16:02:06.000] response: +Info 56 [00:02:06.000] response: { "response": { "outputFiles": [ diff --git a/tests/baselines/reference/tsserver/projectReferenceCompileOnSave/when-dependency-project-is-not-open-and-save-on-dependency-and-change-to-dependency.js b/tests/baselines/reference/tsserver/projectReferenceCompileOnSave/when-dependency-project-is-not-open-and-save-on-dependency-and-change-to-dependency.js index 0c9ca474c69b2..985282f992732 100644 --- a/tests/baselines/reference/tsserver/projectReferenceCompileOnSave/when-dependency-project-is-not-open-and-save-on-dependency-and-change-to-dependency.js +++ b/tests/baselines/reference/tsserver/projectReferenceCompileOnSave/when-dependency-project-is-not-open-and-save-on-dependency-and-change-to-dependency.js @@ -1,5 +1,5 @@ -Info 0 [16:00:29.000] Provided types map file "/a/lib/typesMap.json" doesn't exist -Info 1 [16:00:30.000] request: +Info 0 [00:00:29.000] Provided types map file "/a/lib/typesMap.json" doesn't exist +Info 1 [00:00:30.000] request: { "seq": 0, "type": "request", @@ -49,11 +49,11 @@ FsWatches:: FsWatchesRecursive:: -Info 2 [16:00:31.000] Search path: /user/username/projects/myproject/usage -Info 3 [16:00:32.000] For info: /user/username/projects/myproject/usage/usage.ts :: Config file name: /user/username/projects/myproject/usage/tsconfig.json -Info 4 [16:00:33.000] Creating configuration project /user/username/projects/myproject/usage/tsconfig.json -Info 5 [16:00:34.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/usage/tsconfig.json 2000 undefined Project: /user/username/projects/myproject/usage/tsconfig.json WatchType: Config file -Info 6 [16:00:35.000] Config: /user/username/projects/myproject/usage/tsconfig.json : { +Info 2 [00:00:31.000] Search path: /user/username/projects/myproject/usage +Info 3 [00:00:32.000] For info: /user/username/projects/myproject/usage/usage.ts :: Config file name: /user/username/projects/myproject/usage/tsconfig.json +Info 4 [00:00:33.000] Creating configuration project /user/username/projects/myproject/usage/tsconfig.json +Info 5 [00:00:34.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/usage/tsconfig.json 2000 undefined Project: /user/username/projects/myproject/usage/tsconfig.json WatchType: Config file +Info 6 [00:00:35.000] Config: /user/username/projects/myproject/usage/tsconfig.json : { "rootNames": [ "/user/username/projects/myproject/usage/usage.ts" ], @@ -67,11 +67,11 @@ Info 6 [16:00:35.000] Config: /user/username/projects/myproject/usage/tsconfi } ] } -Info 7 [16:00:36.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/usage 1 undefined Config: /user/username/projects/myproject/usage/tsconfig.json WatchType: Wild card directory -Info 8 [16:00:37.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/usage 1 undefined Config: /user/username/projects/myproject/usage/tsconfig.json WatchType: Wild card directory -Info 9 [16:00:38.000] Plugins were requested but not running in environment that supports 'require'. Nothing will be loaded -Info 10 [16:00:39.000] Starting updateGraphWorker: Project: /user/username/projects/myproject/usage/tsconfig.json -Info 11 [16:00:40.000] Config: /user/username/projects/myproject/dependency/tsconfig.json : { +Info 7 [00:00:36.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/usage 1 undefined Config: /user/username/projects/myproject/usage/tsconfig.json WatchType: Wild card directory +Info 8 [00:00:37.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/usage 1 undefined Config: /user/username/projects/myproject/usage/tsconfig.json WatchType: Wild card directory +Info 9 [00:00:38.000] Plugins were requested but not running in environment that supports 'require'. Nothing will be loaded +Info 10 [00:00:39.000] Starting updateGraphWorker: Project: /user/username/projects/myproject/usage/tsconfig.json +Info 11 [00:00:40.000] Config: /user/username/projects/myproject/dependency/tsconfig.json : { "rootNames": [ "/user/username/projects/myproject/dependency/fns.ts" ], @@ -81,20 +81,20 @@ Info 11 [16:00:40.000] Config: /user/username/projects/myproject/dependency/ts "configFilePath": "/user/username/projects/myproject/dependency/tsconfig.json" } } -Info 12 [16:00:41.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/dependency/tsconfig.json 2000 undefined Project: /user/username/projects/myproject/usage/tsconfig.json WatchType: Config file -Info 13 [16:00:42.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/dependency 1 undefined Config: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Wild card directory -Info 14 [16:00:43.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/dependency 1 undefined Config: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Wild card directory -Info 15 [16:00:44.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/decls 1 undefined Project: /user/username/projects/myproject/usage/tsconfig.json WatchType: Failed Lookup Locations -Info 16 [16:00:45.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/decls 1 undefined Project: /user/username/projects/myproject/usage/tsconfig.json WatchType: Failed Lookup Locations -Info 17 [16:00:46.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/dependency/fns.ts 500 undefined WatchType: Closed Script info -Info 18 [16:00:47.000] FileWatcher:: Added:: WatchInfo: /a/lib/lib.d.ts 500 undefined WatchType: Closed Script info -Info 19 [16:00:48.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/usage/node_modules/@types 1 undefined Project: /user/username/projects/myproject/usage/tsconfig.json WatchType: Type roots -Info 20 [16:00:49.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/usage/node_modules/@types 1 undefined Project: /user/username/projects/myproject/usage/tsconfig.json WatchType: Type roots -Info 21 [16:00:50.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/usage/tsconfig.json WatchType: Type roots -Info 22 [16:00:51.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/usage/tsconfig.json WatchType: Type roots -Info 23 [16:00:52.000] Finishing updateGraphWorker: Project: /user/username/projects/myproject/usage/tsconfig.json Version: 1 structureChanged: true structureIsReused:: Not Elapsed:: *ms -Info 24 [16:00:53.000] Project '/user/username/projects/myproject/usage/tsconfig.json' (Configured) -Info 25 [16:00:54.000] Files (3) +Info 12 [00:00:41.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/dependency/tsconfig.json 2000 undefined Project: /user/username/projects/myproject/usage/tsconfig.json WatchType: Config file +Info 13 [00:00:42.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/dependency 1 undefined Config: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Wild card directory +Info 14 [00:00:43.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/dependency 1 undefined Config: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Wild card directory +Info 15 [00:00:44.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/decls 1 undefined Project: /user/username/projects/myproject/usage/tsconfig.json WatchType: Failed Lookup Locations +Info 16 [00:00:45.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/decls 1 undefined Project: /user/username/projects/myproject/usage/tsconfig.json WatchType: Failed Lookup Locations +Info 17 [00:00:46.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/dependency/fns.ts 500 undefined WatchType: Closed Script info +Info 18 [00:00:47.000] FileWatcher:: Added:: WatchInfo: /a/lib/lib.d.ts 500 undefined WatchType: Closed Script info +Info 19 [00:00:48.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/usage/node_modules/@types 1 undefined Project: /user/username/projects/myproject/usage/tsconfig.json WatchType: Type roots +Info 20 [00:00:49.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/usage/node_modules/@types 1 undefined Project: /user/username/projects/myproject/usage/tsconfig.json WatchType: Type roots +Info 21 [00:00:50.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/usage/tsconfig.json WatchType: Type roots +Info 22 [00:00:51.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/usage/tsconfig.json WatchType: Type roots +Info 23 [00:00:52.000] Finishing updateGraphWorker: Project: /user/username/projects/myproject/usage/tsconfig.json Version: 1 structureChanged: true structureIsReused:: Not Elapsed:: *ms +Info 24 [00:00:53.000] Project '/user/username/projects/myproject/usage/tsconfig.json' (Configured) +Info 25 [00:00:54.000] Files (3) /a/lib/lib.d.ts /user/username/projects/myproject/dependency/fns.ts /user/username/projects/myproject/usage/usage.ts @@ -107,14 +107,14 @@ Info 25 [16:00:54.000] Files (3) usage.ts Matched by default include pattern '**/*' -Info 26 [16:00:55.000] ----------------------------------------------- -Info 27 [16:00:56.000] Project '/user/username/projects/myproject/usage/tsconfig.json' (Configured) -Info 27 [16:00:57.000] Files (3) +Info 26 [00:00:55.000] ----------------------------------------------- +Info 27 [00:00:56.000] Project '/user/username/projects/myproject/usage/tsconfig.json' (Configured) +Info 27 [00:00:57.000] Files (3) -Info 27 [16:00:58.000] ----------------------------------------------- -Info 27 [16:00:59.000] Open files: -Info 27 [16:01:00.000] FileName: /user/username/projects/myproject/usage/usage.ts ProjectRootPath: undefined -Info 27 [16:01:01.000] Projects: /user/username/projects/myproject/usage/tsconfig.json +Info 27 [00:00:58.000] ----------------------------------------------- +Info 27 [00:00:59.000] Open files: +Info 27 [00:01:00.000] FileName: /user/username/projects/myproject/usage/usage.ts ProjectRootPath: undefined +Info 27 [00:01:01.000] Projects: /user/username/projects/myproject/usage/tsconfig.json After request PolledWatches:: @@ -141,11 +141,11 @@ FsWatchesRecursive:: /user/username/projects/myproject/dependency: {} -Info 27 [16:01:02.000] response: +Info 27 [00:01:02.000] response: { "responseRequired": false } -Info 28 [16:01:03.000] request: +Info 28 [00:01:03.000] request: { "command": "compileOnSaveAffectedFileList", "arguments": { @@ -180,22 +180,22 @@ FsWatchesRecursive:: /user/username/projects/myproject/dependency: {} -Info 29 [16:01:04.000] Before ensureProjectForOpenFiles: -Info 30 [16:01:05.000] Project '/user/username/projects/myproject/usage/tsconfig.json' (Configured) -Info 30 [16:01:06.000] Files (3) +Info 29 [00:01:04.000] Before ensureProjectForOpenFiles: +Info 30 [00:01:05.000] Project '/user/username/projects/myproject/usage/tsconfig.json' (Configured) +Info 30 [00:01:06.000] Files (3) -Info 30 [16:01:07.000] ----------------------------------------------- -Info 30 [16:01:08.000] Open files: -Info 30 [16:01:09.000] FileName: /user/username/projects/myproject/usage/usage.ts ProjectRootPath: undefined -Info 30 [16:01:10.000] Projects: /user/username/projects/myproject/usage/tsconfig.json -Info 30 [16:01:11.000] After ensureProjectForOpenFiles: -Info 31 [16:01:12.000] Project '/user/username/projects/myproject/usage/tsconfig.json' (Configured) -Info 31 [16:01:13.000] Files (3) +Info 30 [00:01:07.000] ----------------------------------------------- +Info 30 [00:01:08.000] Open files: +Info 30 [00:01:09.000] FileName: /user/username/projects/myproject/usage/usage.ts ProjectRootPath: undefined +Info 30 [00:01:10.000] Projects: /user/username/projects/myproject/usage/tsconfig.json +Info 30 [00:01:11.000] After ensureProjectForOpenFiles: +Info 31 [00:01:12.000] Project '/user/username/projects/myproject/usage/tsconfig.json' (Configured) +Info 31 [00:01:13.000] Files (3) -Info 31 [16:01:14.000] ----------------------------------------------- -Info 31 [16:01:15.000] Open files: -Info 31 [16:01:16.000] FileName: /user/username/projects/myproject/usage/usage.ts ProjectRootPath: undefined -Info 31 [16:01:17.000] Projects: /user/username/projects/myproject/usage/tsconfig.json +Info 31 [00:01:14.000] ----------------------------------------------- +Info 31 [00:01:15.000] Open files: +Info 31 [00:01:16.000] FileName: /user/username/projects/myproject/usage/usage.ts ProjectRootPath: undefined +Info 31 [00:01:17.000] Projects: /user/username/projects/myproject/usage/tsconfig.json After request PolledWatches:: @@ -222,7 +222,7 @@ FsWatchesRecursive:: /user/username/projects/myproject/dependency: {} -Info 31 [16:01:18.000] response: +Info 31 [00:01:18.000] response: { "response": [ { @@ -235,11 +235,11 @@ Info 31 [16:01:18.000] response: ], "responseRequired": true } -Info 32 [16:01:22.000] FileWatcher:: Triggered with /user/username/projects/myproject/dependency/fns.ts 1:: WatchInfo: /user/username/projects/myproject/dependency/fns.ts 500 undefined WatchType: Closed Script info -Info 33 [16:01:23.000] Scheduled: /user/username/projects/myproject/usage/tsconfig.json -Info 34 [16:01:24.000] Scheduled: *ensureProjectForOpenFiles* -Info 35 [16:01:25.000] Elapsed:: *ms FileWatcher:: Triggered with /user/username/projects/myproject/dependency/fns.ts 1:: WatchInfo: /user/username/projects/myproject/dependency/fns.ts 500 undefined WatchType: Closed Script info -Info 36 [16:01:26.000] request: +Info 32 [00:01:22.000] FileWatcher:: Triggered with /user/username/projects/myproject/dependency/fns.ts 1:: WatchInfo: /user/username/projects/myproject/dependency/fns.ts 500 undefined WatchType: Closed Script info +Info 33 [00:01:23.000] Scheduled: /user/username/projects/myproject/usage/tsconfig.json +Info 34 [00:01:24.000] Scheduled: *ensureProjectForOpenFiles* +Info 35 [00:01:25.000] Elapsed:: *ms FileWatcher:: Triggered with /user/username/projects/myproject/dependency/fns.ts 1:: WatchInfo: /user/username/projects/myproject/dependency/fns.ts 500 undefined WatchType: Closed Script info +Info 36 [00:01:26.000] request: { "command": "compileOnSaveAffectedFileList", "arguments": { @@ -279,25 +279,25 @@ FsWatchesRecursive:: /user/username/projects/myproject/dependency: {} -Info 37 [16:01:27.000] Starting updateGraphWorker: Project: /user/username/projects/myproject/usage/tsconfig.json -Info 38 [16:01:28.000] Finishing updateGraphWorker: Project: /user/username/projects/myproject/usage/tsconfig.json Version: 2 structureChanged: false structureIsReused:: Completely Elapsed:: *ms -Info 39 [16:01:29.000] Different program with same set of files -Info 40 [16:01:30.000] Before ensureProjectForOpenFiles: -Info 41 [16:01:31.000] Project '/user/username/projects/myproject/usage/tsconfig.json' (Configured) -Info 41 [16:01:32.000] Files (3) - -Info 41 [16:01:33.000] ----------------------------------------------- -Info 41 [16:01:34.000] Open files: -Info 41 [16:01:35.000] FileName: /user/username/projects/myproject/usage/usage.ts ProjectRootPath: undefined -Info 41 [16:01:36.000] Projects: /user/username/projects/myproject/usage/tsconfig.json -Info 41 [16:01:37.000] After ensureProjectForOpenFiles: -Info 42 [16:01:38.000] Project '/user/username/projects/myproject/usage/tsconfig.json' (Configured) -Info 42 [16:01:39.000] Files (3) - -Info 42 [16:01:40.000] ----------------------------------------------- -Info 42 [16:01:41.000] Open files: -Info 42 [16:01:42.000] FileName: /user/username/projects/myproject/usage/usage.ts ProjectRootPath: undefined -Info 42 [16:01:43.000] Projects: /user/username/projects/myproject/usage/tsconfig.json +Info 37 [00:01:27.000] Starting updateGraphWorker: Project: /user/username/projects/myproject/usage/tsconfig.json +Info 38 [00:01:28.000] Finishing updateGraphWorker: Project: /user/username/projects/myproject/usage/tsconfig.json Version: 2 structureChanged: false structureIsReused:: Completely Elapsed:: *ms +Info 39 [00:01:29.000] Different program with same set of files +Info 40 [00:01:30.000] Before ensureProjectForOpenFiles: +Info 41 [00:01:31.000] Project '/user/username/projects/myproject/usage/tsconfig.json' (Configured) +Info 41 [00:01:32.000] Files (3) + +Info 41 [00:01:33.000] ----------------------------------------------- +Info 41 [00:01:34.000] Open files: +Info 41 [00:01:35.000] FileName: /user/username/projects/myproject/usage/usage.ts ProjectRootPath: undefined +Info 41 [00:01:36.000] Projects: /user/username/projects/myproject/usage/tsconfig.json +Info 41 [00:01:37.000] After ensureProjectForOpenFiles: +Info 42 [00:01:38.000] Project '/user/username/projects/myproject/usage/tsconfig.json' (Configured) +Info 42 [00:01:39.000] Files (3) + +Info 42 [00:01:40.000] ----------------------------------------------- +Info 42 [00:01:41.000] Open files: +Info 42 [00:01:42.000] FileName: /user/username/projects/myproject/usage/usage.ts ProjectRootPath: undefined +Info 42 [00:01:43.000] Projects: /user/username/projects/myproject/usage/tsconfig.json After request PolledWatches:: @@ -324,7 +324,7 @@ FsWatchesRecursive:: /user/username/projects/myproject/dependency: {} -Info 42 [16:01:44.000] response: +Info 42 [00:01:44.000] response: { "response": [ { @@ -337,7 +337,7 @@ Info 42 [16:01:44.000] response: ], "responseRequired": true } -Info 43 [16:01:45.000] request: +Info 43 [00:01:45.000] request: { "command": "compileOnSaveEmitFile", "arguments": { @@ -398,12 +398,12 @@ FsWatchesRecursive:: /user/username/projects/myproject/dependency: {} -Info 44 [16:01:46.000] response: +Info 44 [00:01:46.000] response: { "response": false, "responseRequired": true } -Info 45 [16:01:47.000] request: +Info 45 [00:01:47.000] request: { "command": "emit-output", "arguments": { @@ -464,7 +464,7 @@ FsWatchesRecursive:: /user/username/projects/myproject/dependency: {} -Info 46 [16:01:48.000] response: +Info 46 [00:01:48.000] response: { "response": { "emitSkipped": true, diff --git a/tests/baselines/reference/tsserver/projectReferenceCompileOnSave/when-dependency-project-is-not-open-and-save-on-dependency-and-change-to-usage.js b/tests/baselines/reference/tsserver/projectReferenceCompileOnSave/when-dependency-project-is-not-open-and-save-on-dependency-and-change-to-usage.js index f0d379553d989..c04f883aaf9dc 100644 --- a/tests/baselines/reference/tsserver/projectReferenceCompileOnSave/when-dependency-project-is-not-open-and-save-on-dependency-and-change-to-usage.js +++ b/tests/baselines/reference/tsserver/projectReferenceCompileOnSave/when-dependency-project-is-not-open-and-save-on-dependency-and-change-to-usage.js @@ -1,5 +1,5 @@ -Info 0 [16:00:29.000] Provided types map file "/a/lib/typesMap.json" doesn't exist -Info 1 [16:00:30.000] request: +Info 0 [00:00:29.000] Provided types map file "/a/lib/typesMap.json" doesn't exist +Info 1 [00:00:30.000] request: { "seq": 0, "type": "request", @@ -49,11 +49,11 @@ FsWatches:: FsWatchesRecursive:: -Info 2 [16:00:31.000] Search path: /user/username/projects/myproject/usage -Info 3 [16:00:32.000] For info: /user/username/projects/myproject/usage/usage.ts :: Config file name: /user/username/projects/myproject/usage/tsconfig.json -Info 4 [16:00:33.000] Creating configuration project /user/username/projects/myproject/usage/tsconfig.json -Info 5 [16:00:34.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/usage/tsconfig.json 2000 undefined Project: /user/username/projects/myproject/usage/tsconfig.json WatchType: Config file -Info 6 [16:00:35.000] Config: /user/username/projects/myproject/usage/tsconfig.json : { +Info 2 [00:00:31.000] Search path: /user/username/projects/myproject/usage +Info 3 [00:00:32.000] For info: /user/username/projects/myproject/usage/usage.ts :: Config file name: /user/username/projects/myproject/usage/tsconfig.json +Info 4 [00:00:33.000] Creating configuration project /user/username/projects/myproject/usage/tsconfig.json +Info 5 [00:00:34.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/usage/tsconfig.json 2000 undefined Project: /user/username/projects/myproject/usage/tsconfig.json WatchType: Config file +Info 6 [00:00:35.000] Config: /user/username/projects/myproject/usage/tsconfig.json : { "rootNames": [ "/user/username/projects/myproject/usage/usage.ts" ], @@ -67,11 +67,11 @@ Info 6 [16:00:35.000] Config: /user/username/projects/myproject/usage/tsconfi } ] } -Info 7 [16:00:36.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/usage 1 undefined Config: /user/username/projects/myproject/usage/tsconfig.json WatchType: Wild card directory -Info 8 [16:00:37.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/usage 1 undefined Config: /user/username/projects/myproject/usage/tsconfig.json WatchType: Wild card directory -Info 9 [16:00:38.000] Plugins were requested but not running in environment that supports 'require'. Nothing will be loaded -Info 10 [16:00:39.000] Starting updateGraphWorker: Project: /user/username/projects/myproject/usage/tsconfig.json -Info 11 [16:00:40.000] Config: /user/username/projects/myproject/dependency/tsconfig.json : { +Info 7 [00:00:36.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/usage 1 undefined Config: /user/username/projects/myproject/usage/tsconfig.json WatchType: Wild card directory +Info 8 [00:00:37.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/usage 1 undefined Config: /user/username/projects/myproject/usage/tsconfig.json WatchType: Wild card directory +Info 9 [00:00:38.000] Plugins were requested but not running in environment that supports 'require'. Nothing will be loaded +Info 10 [00:00:39.000] Starting updateGraphWorker: Project: /user/username/projects/myproject/usage/tsconfig.json +Info 11 [00:00:40.000] Config: /user/username/projects/myproject/dependency/tsconfig.json : { "rootNames": [ "/user/username/projects/myproject/dependency/fns.ts" ], @@ -81,20 +81,20 @@ Info 11 [16:00:40.000] Config: /user/username/projects/myproject/dependency/ts "configFilePath": "/user/username/projects/myproject/dependency/tsconfig.json" } } -Info 12 [16:00:41.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/dependency/tsconfig.json 2000 undefined Project: /user/username/projects/myproject/usage/tsconfig.json WatchType: Config file -Info 13 [16:00:42.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/dependency 1 undefined Config: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Wild card directory -Info 14 [16:00:43.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/dependency 1 undefined Config: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Wild card directory -Info 15 [16:00:44.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/decls 1 undefined Project: /user/username/projects/myproject/usage/tsconfig.json WatchType: Failed Lookup Locations -Info 16 [16:00:45.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/decls 1 undefined Project: /user/username/projects/myproject/usage/tsconfig.json WatchType: Failed Lookup Locations -Info 17 [16:00:46.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/dependency/fns.ts 500 undefined WatchType: Closed Script info -Info 18 [16:00:47.000] FileWatcher:: Added:: WatchInfo: /a/lib/lib.d.ts 500 undefined WatchType: Closed Script info -Info 19 [16:00:48.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/usage/node_modules/@types 1 undefined Project: /user/username/projects/myproject/usage/tsconfig.json WatchType: Type roots -Info 20 [16:00:49.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/usage/node_modules/@types 1 undefined Project: /user/username/projects/myproject/usage/tsconfig.json WatchType: Type roots -Info 21 [16:00:50.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/usage/tsconfig.json WatchType: Type roots -Info 22 [16:00:51.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/usage/tsconfig.json WatchType: Type roots -Info 23 [16:00:52.000] Finishing updateGraphWorker: Project: /user/username/projects/myproject/usage/tsconfig.json Version: 1 structureChanged: true structureIsReused:: Not Elapsed:: *ms -Info 24 [16:00:53.000] Project '/user/username/projects/myproject/usage/tsconfig.json' (Configured) -Info 25 [16:00:54.000] Files (3) +Info 12 [00:00:41.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/dependency/tsconfig.json 2000 undefined Project: /user/username/projects/myproject/usage/tsconfig.json WatchType: Config file +Info 13 [00:00:42.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/dependency 1 undefined Config: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Wild card directory +Info 14 [00:00:43.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/dependency 1 undefined Config: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Wild card directory +Info 15 [00:00:44.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/decls 1 undefined Project: /user/username/projects/myproject/usage/tsconfig.json WatchType: Failed Lookup Locations +Info 16 [00:00:45.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/decls 1 undefined Project: /user/username/projects/myproject/usage/tsconfig.json WatchType: Failed Lookup Locations +Info 17 [00:00:46.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/dependency/fns.ts 500 undefined WatchType: Closed Script info +Info 18 [00:00:47.000] FileWatcher:: Added:: WatchInfo: /a/lib/lib.d.ts 500 undefined WatchType: Closed Script info +Info 19 [00:00:48.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/usage/node_modules/@types 1 undefined Project: /user/username/projects/myproject/usage/tsconfig.json WatchType: Type roots +Info 20 [00:00:49.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/usage/node_modules/@types 1 undefined Project: /user/username/projects/myproject/usage/tsconfig.json WatchType: Type roots +Info 21 [00:00:50.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/usage/tsconfig.json WatchType: Type roots +Info 22 [00:00:51.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/usage/tsconfig.json WatchType: Type roots +Info 23 [00:00:52.000] Finishing updateGraphWorker: Project: /user/username/projects/myproject/usage/tsconfig.json Version: 1 structureChanged: true structureIsReused:: Not Elapsed:: *ms +Info 24 [00:00:53.000] Project '/user/username/projects/myproject/usage/tsconfig.json' (Configured) +Info 25 [00:00:54.000] Files (3) /a/lib/lib.d.ts /user/username/projects/myproject/dependency/fns.ts /user/username/projects/myproject/usage/usage.ts @@ -107,14 +107,14 @@ Info 25 [16:00:54.000] Files (3) usage.ts Matched by default include pattern '**/*' -Info 26 [16:00:55.000] ----------------------------------------------- -Info 27 [16:00:56.000] Project '/user/username/projects/myproject/usage/tsconfig.json' (Configured) -Info 27 [16:00:57.000] Files (3) +Info 26 [00:00:55.000] ----------------------------------------------- +Info 27 [00:00:56.000] Project '/user/username/projects/myproject/usage/tsconfig.json' (Configured) +Info 27 [00:00:57.000] Files (3) -Info 27 [16:00:58.000] ----------------------------------------------- -Info 27 [16:00:59.000] Open files: -Info 27 [16:01:00.000] FileName: /user/username/projects/myproject/usage/usage.ts ProjectRootPath: undefined -Info 27 [16:01:01.000] Projects: /user/username/projects/myproject/usage/tsconfig.json +Info 27 [00:00:58.000] ----------------------------------------------- +Info 27 [00:00:59.000] Open files: +Info 27 [00:01:00.000] FileName: /user/username/projects/myproject/usage/usage.ts ProjectRootPath: undefined +Info 27 [00:01:01.000] Projects: /user/username/projects/myproject/usage/tsconfig.json After request PolledWatches:: @@ -141,11 +141,11 @@ FsWatchesRecursive:: /user/username/projects/myproject/dependency: {} -Info 27 [16:01:02.000] response: +Info 27 [00:01:02.000] response: { "responseRequired": false } -Info 28 [16:01:03.000] request: +Info 28 [00:01:03.000] request: { "command": "compileOnSaveAffectedFileList", "arguments": { @@ -180,22 +180,22 @@ FsWatchesRecursive:: /user/username/projects/myproject/dependency: {} -Info 29 [16:01:04.000] Before ensureProjectForOpenFiles: -Info 30 [16:01:05.000] Project '/user/username/projects/myproject/usage/tsconfig.json' (Configured) -Info 30 [16:01:06.000] Files (3) +Info 29 [00:01:04.000] Before ensureProjectForOpenFiles: +Info 30 [00:01:05.000] Project '/user/username/projects/myproject/usage/tsconfig.json' (Configured) +Info 30 [00:01:06.000] Files (3) -Info 30 [16:01:07.000] ----------------------------------------------- -Info 30 [16:01:08.000] Open files: -Info 30 [16:01:09.000] FileName: /user/username/projects/myproject/usage/usage.ts ProjectRootPath: undefined -Info 30 [16:01:10.000] Projects: /user/username/projects/myproject/usage/tsconfig.json -Info 30 [16:01:11.000] After ensureProjectForOpenFiles: -Info 31 [16:01:12.000] Project '/user/username/projects/myproject/usage/tsconfig.json' (Configured) -Info 31 [16:01:13.000] Files (3) +Info 30 [00:01:07.000] ----------------------------------------------- +Info 30 [00:01:08.000] Open files: +Info 30 [00:01:09.000] FileName: /user/username/projects/myproject/usage/usage.ts ProjectRootPath: undefined +Info 30 [00:01:10.000] Projects: /user/username/projects/myproject/usage/tsconfig.json +Info 30 [00:01:11.000] After ensureProjectForOpenFiles: +Info 31 [00:01:12.000] Project '/user/username/projects/myproject/usage/tsconfig.json' (Configured) +Info 31 [00:01:13.000] Files (3) -Info 31 [16:01:14.000] ----------------------------------------------- -Info 31 [16:01:15.000] Open files: -Info 31 [16:01:16.000] FileName: /user/username/projects/myproject/usage/usage.ts ProjectRootPath: undefined -Info 31 [16:01:17.000] Projects: /user/username/projects/myproject/usage/tsconfig.json +Info 31 [00:01:14.000] ----------------------------------------------- +Info 31 [00:01:15.000] Open files: +Info 31 [00:01:16.000] FileName: /user/username/projects/myproject/usage/usage.ts ProjectRootPath: undefined +Info 31 [00:01:17.000] Projects: /user/username/projects/myproject/usage/tsconfig.json After request PolledWatches:: @@ -222,7 +222,7 @@ FsWatchesRecursive:: /user/username/projects/myproject/dependency: {} -Info 31 [16:01:18.000] response: +Info 31 [00:01:18.000] response: { "response": [ { @@ -235,7 +235,7 @@ Info 31 [16:01:18.000] response: ], "responseRequired": true } -Info 32 [16:01:19.000] request: +Info 32 [00:01:19.000] request: { "command": "change", "arguments": { @@ -301,11 +301,11 @@ FsWatchesRecursive:: /user/username/projects/myproject/dependency: {} -Info 33 [16:01:20.000] response: +Info 33 [00:01:20.000] response: { "responseRequired": false } -Info 34 [16:01:21.000] request: +Info 34 [00:01:21.000] request: { "command": "compileOnSaveAffectedFileList", "arguments": { @@ -340,25 +340,25 @@ FsWatchesRecursive:: /user/username/projects/myproject/dependency: {} -Info 35 [16:01:22.000] Starting updateGraphWorker: Project: /user/username/projects/myproject/usage/tsconfig.json -Info 36 [16:01:23.000] Finishing updateGraphWorker: Project: /user/username/projects/myproject/usage/tsconfig.json Version: 2 structureChanged: false structureIsReused:: Completely Elapsed:: *ms -Info 37 [16:01:24.000] Different program with same set of files -Info 38 [16:01:25.000] Before ensureProjectForOpenFiles: -Info 39 [16:01:26.000] Project '/user/username/projects/myproject/usage/tsconfig.json' (Configured) -Info 39 [16:01:27.000] Files (3) - -Info 39 [16:01:28.000] ----------------------------------------------- -Info 39 [16:01:29.000] Open files: -Info 39 [16:01:30.000] FileName: /user/username/projects/myproject/usage/usage.ts ProjectRootPath: undefined -Info 39 [16:01:31.000] Projects: /user/username/projects/myproject/usage/tsconfig.json -Info 39 [16:01:32.000] After ensureProjectForOpenFiles: -Info 40 [16:01:33.000] Project '/user/username/projects/myproject/usage/tsconfig.json' (Configured) -Info 40 [16:01:34.000] Files (3) - -Info 40 [16:01:35.000] ----------------------------------------------- -Info 40 [16:01:36.000] Open files: -Info 40 [16:01:37.000] FileName: /user/username/projects/myproject/usage/usage.ts ProjectRootPath: undefined -Info 40 [16:01:38.000] Projects: /user/username/projects/myproject/usage/tsconfig.json +Info 35 [00:01:22.000] Starting updateGraphWorker: Project: /user/username/projects/myproject/usage/tsconfig.json +Info 36 [00:01:23.000] Finishing updateGraphWorker: Project: /user/username/projects/myproject/usage/tsconfig.json Version: 2 structureChanged: false structureIsReused:: Completely Elapsed:: *ms +Info 37 [00:01:24.000] Different program with same set of files +Info 38 [00:01:25.000] Before ensureProjectForOpenFiles: +Info 39 [00:01:26.000] Project '/user/username/projects/myproject/usage/tsconfig.json' (Configured) +Info 39 [00:01:27.000] Files (3) + +Info 39 [00:01:28.000] ----------------------------------------------- +Info 39 [00:01:29.000] Open files: +Info 39 [00:01:30.000] FileName: /user/username/projects/myproject/usage/usage.ts ProjectRootPath: undefined +Info 39 [00:01:31.000] Projects: /user/username/projects/myproject/usage/tsconfig.json +Info 39 [00:01:32.000] After ensureProjectForOpenFiles: +Info 40 [00:01:33.000] Project '/user/username/projects/myproject/usage/tsconfig.json' (Configured) +Info 40 [00:01:34.000] Files (3) + +Info 40 [00:01:35.000] ----------------------------------------------- +Info 40 [00:01:36.000] Open files: +Info 40 [00:01:37.000] FileName: /user/username/projects/myproject/usage/usage.ts ProjectRootPath: undefined +Info 40 [00:01:38.000] Projects: /user/username/projects/myproject/usage/tsconfig.json After request PolledWatches:: @@ -385,7 +385,7 @@ FsWatchesRecursive:: /user/username/projects/myproject/dependency: {} -Info 40 [16:01:39.000] response: +Info 40 [00:01:39.000] response: { "response": [ { @@ -396,7 +396,7 @@ Info 40 [16:01:39.000] response: ], "responseRequired": true } -Info 41 [16:01:40.000] request: +Info 41 [00:01:40.000] request: { "command": "compileOnSaveEmitFile", "arguments": { @@ -457,12 +457,12 @@ FsWatchesRecursive:: /user/username/projects/myproject/dependency: {} -Info 42 [16:01:41.000] response: +Info 42 [00:01:41.000] response: { "response": false, "responseRequired": true } -Info 43 [16:01:42.000] request: +Info 43 [00:01:42.000] request: { "command": "emit-output", "arguments": { @@ -523,7 +523,7 @@ FsWatchesRecursive:: /user/username/projects/myproject/dependency: {} -Info 44 [16:01:43.000] response: +Info 44 [00:01:43.000] response: { "response": { "emitSkipped": true, diff --git a/tests/baselines/reference/tsserver/projectReferenceCompileOnSave/when-dependency-project-is-not-open-and-save-on-dependency-and-local-change-to-dependency.js b/tests/baselines/reference/tsserver/projectReferenceCompileOnSave/when-dependency-project-is-not-open-and-save-on-dependency-and-local-change-to-dependency.js index 6ee948a64fbdd..583861fcc8b4a 100644 --- a/tests/baselines/reference/tsserver/projectReferenceCompileOnSave/when-dependency-project-is-not-open-and-save-on-dependency-and-local-change-to-dependency.js +++ b/tests/baselines/reference/tsserver/projectReferenceCompileOnSave/when-dependency-project-is-not-open-and-save-on-dependency-and-local-change-to-dependency.js @@ -1,5 +1,5 @@ -Info 0 [16:00:29.000] Provided types map file "/a/lib/typesMap.json" doesn't exist -Info 1 [16:00:30.000] request: +Info 0 [00:00:29.000] Provided types map file "/a/lib/typesMap.json" doesn't exist +Info 1 [00:00:30.000] request: { "seq": 0, "type": "request", @@ -49,11 +49,11 @@ FsWatches:: FsWatchesRecursive:: -Info 2 [16:00:31.000] Search path: /user/username/projects/myproject/usage -Info 3 [16:00:32.000] For info: /user/username/projects/myproject/usage/usage.ts :: Config file name: /user/username/projects/myproject/usage/tsconfig.json -Info 4 [16:00:33.000] Creating configuration project /user/username/projects/myproject/usage/tsconfig.json -Info 5 [16:00:34.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/usage/tsconfig.json 2000 undefined Project: /user/username/projects/myproject/usage/tsconfig.json WatchType: Config file -Info 6 [16:00:35.000] Config: /user/username/projects/myproject/usage/tsconfig.json : { +Info 2 [00:00:31.000] Search path: /user/username/projects/myproject/usage +Info 3 [00:00:32.000] For info: /user/username/projects/myproject/usage/usage.ts :: Config file name: /user/username/projects/myproject/usage/tsconfig.json +Info 4 [00:00:33.000] Creating configuration project /user/username/projects/myproject/usage/tsconfig.json +Info 5 [00:00:34.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/usage/tsconfig.json 2000 undefined Project: /user/username/projects/myproject/usage/tsconfig.json WatchType: Config file +Info 6 [00:00:35.000] Config: /user/username/projects/myproject/usage/tsconfig.json : { "rootNames": [ "/user/username/projects/myproject/usage/usage.ts" ], @@ -67,11 +67,11 @@ Info 6 [16:00:35.000] Config: /user/username/projects/myproject/usage/tsconfi } ] } -Info 7 [16:00:36.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/usage 1 undefined Config: /user/username/projects/myproject/usage/tsconfig.json WatchType: Wild card directory -Info 8 [16:00:37.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/usage 1 undefined Config: /user/username/projects/myproject/usage/tsconfig.json WatchType: Wild card directory -Info 9 [16:00:38.000] Plugins were requested but not running in environment that supports 'require'. Nothing will be loaded -Info 10 [16:00:39.000] Starting updateGraphWorker: Project: /user/username/projects/myproject/usage/tsconfig.json -Info 11 [16:00:40.000] Config: /user/username/projects/myproject/dependency/tsconfig.json : { +Info 7 [00:00:36.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/usage 1 undefined Config: /user/username/projects/myproject/usage/tsconfig.json WatchType: Wild card directory +Info 8 [00:00:37.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/usage 1 undefined Config: /user/username/projects/myproject/usage/tsconfig.json WatchType: Wild card directory +Info 9 [00:00:38.000] Plugins were requested but not running in environment that supports 'require'. Nothing will be loaded +Info 10 [00:00:39.000] Starting updateGraphWorker: Project: /user/username/projects/myproject/usage/tsconfig.json +Info 11 [00:00:40.000] Config: /user/username/projects/myproject/dependency/tsconfig.json : { "rootNames": [ "/user/username/projects/myproject/dependency/fns.ts" ], @@ -81,20 +81,20 @@ Info 11 [16:00:40.000] Config: /user/username/projects/myproject/dependency/ts "configFilePath": "/user/username/projects/myproject/dependency/tsconfig.json" } } -Info 12 [16:00:41.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/dependency/tsconfig.json 2000 undefined Project: /user/username/projects/myproject/usage/tsconfig.json WatchType: Config file -Info 13 [16:00:42.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/dependency 1 undefined Config: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Wild card directory -Info 14 [16:00:43.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/dependency 1 undefined Config: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Wild card directory -Info 15 [16:00:44.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/decls 1 undefined Project: /user/username/projects/myproject/usage/tsconfig.json WatchType: Failed Lookup Locations -Info 16 [16:00:45.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/decls 1 undefined Project: /user/username/projects/myproject/usage/tsconfig.json WatchType: Failed Lookup Locations -Info 17 [16:00:46.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/dependency/fns.ts 500 undefined WatchType: Closed Script info -Info 18 [16:00:47.000] FileWatcher:: Added:: WatchInfo: /a/lib/lib.d.ts 500 undefined WatchType: Closed Script info -Info 19 [16:00:48.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/usage/node_modules/@types 1 undefined Project: /user/username/projects/myproject/usage/tsconfig.json WatchType: Type roots -Info 20 [16:00:49.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/usage/node_modules/@types 1 undefined Project: /user/username/projects/myproject/usage/tsconfig.json WatchType: Type roots -Info 21 [16:00:50.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/usage/tsconfig.json WatchType: Type roots -Info 22 [16:00:51.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/usage/tsconfig.json WatchType: Type roots -Info 23 [16:00:52.000] Finishing updateGraphWorker: Project: /user/username/projects/myproject/usage/tsconfig.json Version: 1 structureChanged: true structureIsReused:: Not Elapsed:: *ms -Info 24 [16:00:53.000] Project '/user/username/projects/myproject/usage/tsconfig.json' (Configured) -Info 25 [16:00:54.000] Files (3) +Info 12 [00:00:41.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/dependency/tsconfig.json 2000 undefined Project: /user/username/projects/myproject/usage/tsconfig.json WatchType: Config file +Info 13 [00:00:42.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/dependency 1 undefined Config: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Wild card directory +Info 14 [00:00:43.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/dependency 1 undefined Config: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Wild card directory +Info 15 [00:00:44.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/decls 1 undefined Project: /user/username/projects/myproject/usage/tsconfig.json WatchType: Failed Lookup Locations +Info 16 [00:00:45.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/decls 1 undefined Project: /user/username/projects/myproject/usage/tsconfig.json WatchType: Failed Lookup Locations +Info 17 [00:00:46.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/dependency/fns.ts 500 undefined WatchType: Closed Script info +Info 18 [00:00:47.000] FileWatcher:: Added:: WatchInfo: /a/lib/lib.d.ts 500 undefined WatchType: Closed Script info +Info 19 [00:00:48.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/usage/node_modules/@types 1 undefined Project: /user/username/projects/myproject/usage/tsconfig.json WatchType: Type roots +Info 20 [00:00:49.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/usage/node_modules/@types 1 undefined Project: /user/username/projects/myproject/usage/tsconfig.json WatchType: Type roots +Info 21 [00:00:50.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/usage/tsconfig.json WatchType: Type roots +Info 22 [00:00:51.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/usage/tsconfig.json WatchType: Type roots +Info 23 [00:00:52.000] Finishing updateGraphWorker: Project: /user/username/projects/myproject/usage/tsconfig.json Version: 1 structureChanged: true structureIsReused:: Not Elapsed:: *ms +Info 24 [00:00:53.000] Project '/user/username/projects/myproject/usage/tsconfig.json' (Configured) +Info 25 [00:00:54.000] Files (3) /a/lib/lib.d.ts /user/username/projects/myproject/dependency/fns.ts /user/username/projects/myproject/usage/usage.ts @@ -107,14 +107,14 @@ Info 25 [16:00:54.000] Files (3) usage.ts Matched by default include pattern '**/*' -Info 26 [16:00:55.000] ----------------------------------------------- -Info 27 [16:00:56.000] Project '/user/username/projects/myproject/usage/tsconfig.json' (Configured) -Info 27 [16:00:57.000] Files (3) +Info 26 [00:00:55.000] ----------------------------------------------- +Info 27 [00:00:56.000] Project '/user/username/projects/myproject/usage/tsconfig.json' (Configured) +Info 27 [00:00:57.000] Files (3) -Info 27 [16:00:58.000] ----------------------------------------------- -Info 27 [16:00:59.000] Open files: -Info 27 [16:01:00.000] FileName: /user/username/projects/myproject/usage/usage.ts ProjectRootPath: undefined -Info 27 [16:01:01.000] Projects: /user/username/projects/myproject/usage/tsconfig.json +Info 27 [00:00:58.000] ----------------------------------------------- +Info 27 [00:00:59.000] Open files: +Info 27 [00:01:00.000] FileName: /user/username/projects/myproject/usage/usage.ts ProjectRootPath: undefined +Info 27 [00:01:01.000] Projects: /user/username/projects/myproject/usage/tsconfig.json After request PolledWatches:: @@ -141,11 +141,11 @@ FsWatchesRecursive:: /user/username/projects/myproject/dependency: {} -Info 27 [16:01:02.000] response: +Info 27 [00:01:02.000] response: { "responseRequired": false } -Info 28 [16:01:03.000] request: +Info 28 [00:01:03.000] request: { "command": "compileOnSaveAffectedFileList", "arguments": { @@ -180,22 +180,22 @@ FsWatchesRecursive:: /user/username/projects/myproject/dependency: {} -Info 29 [16:01:04.000] Before ensureProjectForOpenFiles: -Info 30 [16:01:05.000] Project '/user/username/projects/myproject/usage/tsconfig.json' (Configured) -Info 30 [16:01:06.000] Files (3) +Info 29 [00:01:04.000] Before ensureProjectForOpenFiles: +Info 30 [00:01:05.000] Project '/user/username/projects/myproject/usage/tsconfig.json' (Configured) +Info 30 [00:01:06.000] Files (3) -Info 30 [16:01:07.000] ----------------------------------------------- -Info 30 [16:01:08.000] Open files: -Info 30 [16:01:09.000] FileName: /user/username/projects/myproject/usage/usage.ts ProjectRootPath: undefined -Info 30 [16:01:10.000] Projects: /user/username/projects/myproject/usage/tsconfig.json -Info 30 [16:01:11.000] After ensureProjectForOpenFiles: -Info 31 [16:01:12.000] Project '/user/username/projects/myproject/usage/tsconfig.json' (Configured) -Info 31 [16:01:13.000] Files (3) +Info 30 [00:01:07.000] ----------------------------------------------- +Info 30 [00:01:08.000] Open files: +Info 30 [00:01:09.000] FileName: /user/username/projects/myproject/usage/usage.ts ProjectRootPath: undefined +Info 30 [00:01:10.000] Projects: /user/username/projects/myproject/usage/tsconfig.json +Info 30 [00:01:11.000] After ensureProjectForOpenFiles: +Info 31 [00:01:12.000] Project '/user/username/projects/myproject/usage/tsconfig.json' (Configured) +Info 31 [00:01:13.000] Files (3) -Info 31 [16:01:14.000] ----------------------------------------------- -Info 31 [16:01:15.000] Open files: -Info 31 [16:01:16.000] FileName: /user/username/projects/myproject/usage/usage.ts ProjectRootPath: undefined -Info 31 [16:01:17.000] Projects: /user/username/projects/myproject/usage/tsconfig.json +Info 31 [00:01:14.000] ----------------------------------------------- +Info 31 [00:01:15.000] Open files: +Info 31 [00:01:16.000] FileName: /user/username/projects/myproject/usage/usage.ts ProjectRootPath: undefined +Info 31 [00:01:17.000] Projects: /user/username/projects/myproject/usage/tsconfig.json After request PolledWatches:: @@ -222,7 +222,7 @@ FsWatchesRecursive:: /user/username/projects/myproject/dependency: {} -Info 31 [16:01:18.000] response: +Info 31 [00:01:18.000] response: { "response": [ { @@ -235,11 +235,11 @@ Info 31 [16:01:18.000] response: ], "responseRequired": true } -Info 32 [16:01:22.000] FileWatcher:: Triggered with /user/username/projects/myproject/dependency/fns.ts 1:: WatchInfo: /user/username/projects/myproject/dependency/fns.ts 500 undefined WatchType: Closed Script info -Info 33 [16:01:23.000] Scheduled: /user/username/projects/myproject/usage/tsconfig.json -Info 34 [16:01:24.000] Scheduled: *ensureProjectForOpenFiles* -Info 35 [16:01:25.000] Elapsed:: *ms FileWatcher:: Triggered with /user/username/projects/myproject/dependency/fns.ts 1:: WatchInfo: /user/username/projects/myproject/dependency/fns.ts 500 undefined WatchType: Closed Script info -Info 36 [16:01:26.000] request: +Info 32 [00:01:22.000] FileWatcher:: Triggered with /user/username/projects/myproject/dependency/fns.ts 1:: WatchInfo: /user/username/projects/myproject/dependency/fns.ts 500 undefined WatchType: Closed Script info +Info 33 [00:01:23.000] Scheduled: /user/username/projects/myproject/usage/tsconfig.json +Info 34 [00:01:24.000] Scheduled: *ensureProjectForOpenFiles* +Info 35 [00:01:25.000] Elapsed:: *ms FileWatcher:: Triggered with /user/username/projects/myproject/dependency/fns.ts 1:: WatchInfo: /user/username/projects/myproject/dependency/fns.ts 500 undefined WatchType: Closed Script info +Info 36 [00:01:26.000] request: { "command": "compileOnSaveAffectedFileList", "arguments": { @@ -279,25 +279,25 @@ FsWatchesRecursive:: /user/username/projects/myproject/dependency: {} -Info 37 [16:01:27.000] Starting updateGraphWorker: Project: /user/username/projects/myproject/usage/tsconfig.json -Info 38 [16:01:28.000] Finishing updateGraphWorker: Project: /user/username/projects/myproject/usage/tsconfig.json Version: 2 structureChanged: false structureIsReused:: Completely Elapsed:: *ms -Info 39 [16:01:29.000] Different program with same set of files -Info 40 [16:01:30.000] Before ensureProjectForOpenFiles: -Info 41 [16:01:31.000] Project '/user/username/projects/myproject/usage/tsconfig.json' (Configured) -Info 41 [16:01:32.000] Files (3) - -Info 41 [16:01:33.000] ----------------------------------------------- -Info 41 [16:01:34.000] Open files: -Info 41 [16:01:35.000] FileName: /user/username/projects/myproject/usage/usage.ts ProjectRootPath: undefined -Info 41 [16:01:36.000] Projects: /user/username/projects/myproject/usage/tsconfig.json -Info 41 [16:01:37.000] After ensureProjectForOpenFiles: -Info 42 [16:01:38.000] Project '/user/username/projects/myproject/usage/tsconfig.json' (Configured) -Info 42 [16:01:39.000] Files (3) - -Info 42 [16:01:40.000] ----------------------------------------------- -Info 42 [16:01:41.000] Open files: -Info 42 [16:01:42.000] FileName: /user/username/projects/myproject/usage/usage.ts ProjectRootPath: undefined -Info 42 [16:01:43.000] Projects: /user/username/projects/myproject/usage/tsconfig.json +Info 37 [00:01:27.000] Starting updateGraphWorker: Project: /user/username/projects/myproject/usage/tsconfig.json +Info 38 [00:01:28.000] Finishing updateGraphWorker: Project: /user/username/projects/myproject/usage/tsconfig.json Version: 2 structureChanged: false structureIsReused:: Completely Elapsed:: *ms +Info 39 [00:01:29.000] Different program with same set of files +Info 40 [00:01:30.000] Before ensureProjectForOpenFiles: +Info 41 [00:01:31.000] Project '/user/username/projects/myproject/usage/tsconfig.json' (Configured) +Info 41 [00:01:32.000] Files (3) + +Info 41 [00:01:33.000] ----------------------------------------------- +Info 41 [00:01:34.000] Open files: +Info 41 [00:01:35.000] FileName: /user/username/projects/myproject/usage/usage.ts ProjectRootPath: undefined +Info 41 [00:01:36.000] Projects: /user/username/projects/myproject/usage/tsconfig.json +Info 41 [00:01:37.000] After ensureProjectForOpenFiles: +Info 42 [00:01:38.000] Project '/user/username/projects/myproject/usage/tsconfig.json' (Configured) +Info 42 [00:01:39.000] Files (3) + +Info 42 [00:01:40.000] ----------------------------------------------- +Info 42 [00:01:41.000] Open files: +Info 42 [00:01:42.000] FileName: /user/username/projects/myproject/usage/usage.ts ProjectRootPath: undefined +Info 42 [00:01:43.000] Projects: /user/username/projects/myproject/usage/tsconfig.json After request PolledWatches:: @@ -324,7 +324,7 @@ FsWatchesRecursive:: /user/username/projects/myproject/dependency: {} -Info 42 [16:01:44.000] response: +Info 42 [00:01:44.000] response: { "response": [ { @@ -335,7 +335,7 @@ Info 42 [16:01:44.000] response: ], "responseRequired": true } -Info 43 [16:01:45.000] request: +Info 43 [00:01:45.000] request: { "command": "compileOnSaveEmitFile", "arguments": { @@ -396,12 +396,12 @@ FsWatchesRecursive:: /user/username/projects/myproject/dependency: {} -Info 44 [16:01:46.000] response: +Info 44 [00:01:46.000] response: { "response": false, "responseRequired": true } -Info 45 [16:01:47.000] request: +Info 45 [00:01:47.000] request: { "command": "emit-output", "arguments": { @@ -462,7 +462,7 @@ FsWatchesRecursive:: /user/username/projects/myproject/dependency: {} -Info 46 [16:01:48.000] response: +Info 46 [00:01:48.000] response: { "response": { "emitSkipped": true, diff --git a/tests/baselines/reference/tsserver/projectReferenceCompileOnSave/when-dependency-project-is-not-open-and-save-on-dependency-and-local-change-to-usage.js b/tests/baselines/reference/tsserver/projectReferenceCompileOnSave/when-dependency-project-is-not-open-and-save-on-dependency-and-local-change-to-usage.js index 6ef3ee7914cae..4604d8d643b73 100644 --- a/tests/baselines/reference/tsserver/projectReferenceCompileOnSave/when-dependency-project-is-not-open-and-save-on-dependency-and-local-change-to-usage.js +++ b/tests/baselines/reference/tsserver/projectReferenceCompileOnSave/when-dependency-project-is-not-open-and-save-on-dependency-and-local-change-to-usage.js @@ -1,5 +1,5 @@ -Info 0 [16:00:29.000] Provided types map file "/a/lib/typesMap.json" doesn't exist -Info 1 [16:00:30.000] request: +Info 0 [00:00:29.000] Provided types map file "/a/lib/typesMap.json" doesn't exist +Info 1 [00:00:30.000] request: { "seq": 0, "type": "request", @@ -49,11 +49,11 @@ FsWatches:: FsWatchesRecursive:: -Info 2 [16:00:31.000] Search path: /user/username/projects/myproject/usage -Info 3 [16:00:32.000] For info: /user/username/projects/myproject/usage/usage.ts :: Config file name: /user/username/projects/myproject/usage/tsconfig.json -Info 4 [16:00:33.000] Creating configuration project /user/username/projects/myproject/usage/tsconfig.json -Info 5 [16:00:34.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/usage/tsconfig.json 2000 undefined Project: /user/username/projects/myproject/usage/tsconfig.json WatchType: Config file -Info 6 [16:00:35.000] Config: /user/username/projects/myproject/usage/tsconfig.json : { +Info 2 [00:00:31.000] Search path: /user/username/projects/myproject/usage +Info 3 [00:00:32.000] For info: /user/username/projects/myproject/usage/usage.ts :: Config file name: /user/username/projects/myproject/usage/tsconfig.json +Info 4 [00:00:33.000] Creating configuration project /user/username/projects/myproject/usage/tsconfig.json +Info 5 [00:00:34.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/usage/tsconfig.json 2000 undefined Project: /user/username/projects/myproject/usage/tsconfig.json WatchType: Config file +Info 6 [00:00:35.000] Config: /user/username/projects/myproject/usage/tsconfig.json : { "rootNames": [ "/user/username/projects/myproject/usage/usage.ts" ], @@ -67,11 +67,11 @@ Info 6 [16:00:35.000] Config: /user/username/projects/myproject/usage/tsconfi } ] } -Info 7 [16:00:36.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/usage 1 undefined Config: /user/username/projects/myproject/usage/tsconfig.json WatchType: Wild card directory -Info 8 [16:00:37.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/usage 1 undefined Config: /user/username/projects/myproject/usage/tsconfig.json WatchType: Wild card directory -Info 9 [16:00:38.000] Plugins were requested but not running in environment that supports 'require'. Nothing will be loaded -Info 10 [16:00:39.000] Starting updateGraphWorker: Project: /user/username/projects/myproject/usage/tsconfig.json -Info 11 [16:00:40.000] Config: /user/username/projects/myproject/dependency/tsconfig.json : { +Info 7 [00:00:36.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/usage 1 undefined Config: /user/username/projects/myproject/usage/tsconfig.json WatchType: Wild card directory +Info 8 [00:00:37.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/usage 1 undefined Config: /user/username/projects/myproject/usage/tsconfig.json WatchType: Wild card directory +Info 9 [00:00:38.000] Plugins were requested but not running in environment that supports 'require'. Nothing will be loaded +Info 10 [00:00:39.000] Starting updateGraphWorker: Project: /user/username/projects/myproject/usage/tsconfig.json +Info 11 [00:00:40.000] Config: /user/username/projects/myproject/dependency/tsconfig.json : { "rootNames": [ "/user/username/projects/myproject/dependency/fns.ts" ], @@ -81,20 +81,20 @@ Info 11 [16:00:40.000] Config: /user/username/projects/myproject/dependency/ts "configFilePath": "/user/username/projects/myproject/dependency/tsconfig.json" } } -Info 12 [16:00:41.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/dependency/tsconfig.json 2000 undefined Project: /user/username/projects/myproject/usage/tsconfig.json WatchType: Config file -Info 13 [16:00:42.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/dependency 1 undefined Config: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Wild card directory -Info 14 [16:00:43.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/dependency 1 undefined Config: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Wild card directory -Info 15 [16:00:44.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/decls 1 undefined Project: /user/username/projects/myproject/usage/tsconfig.json WatchType: Failed Lookup Locations -Info 16 [16:00:45.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/decls 1 undefined Project: /user/username/projects/myproject/usage/tsconfig.json WatchType: Failed Lookup Locations -Info 17 [16:00:46.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/dependency/fns.ts 500 undefined WatchType: Closed Script info -Info 18 [16:00:47.000] FileWatcher:: Added:: WatchInfo: /a/lib/lib.d.ts 500 undefined WatchType: Closed Script info -Info 19 [16:00:48.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/usage/node_modules/@types 1 undefined Project: /user/username/projects/myproject/usage/tsconfig.json WatchType: Type roots -Info 20 [16:00:49.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/usage/node_modules/@types 1 undefined Project: /user/username/projects/myproject/usage/tsconfig.json WatchType: Type roots -Info 21 [16:00:50.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/usage/tsconfig.json WatchType: Type roots -Info 22 [16:00:51.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/usage/tsconfig.json WatchType: Type roots -Info 23 [16:00:52.000] Finishing updateGraphWorker: Project: /user/username/projects/myproject/usage/tsconfig.json Version: 1 structureChanged: true structureIsReused:: Not Elapsed:: *ms -Info 24 [16:00:53.000] Project '/user/username/projects/myproject/usage/tsconfig.json' (Configured) -Info 25 [16:00:54.000] Files (3) +Info 12 [00:00:41.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/dependency/tsconfig.json 2000 undefined Project: /user/username/projects/myproject/usage/tsconfig.json WatchType: Config file +Info 13 [00:00:42.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/dependency 1 undefined Config: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Wild card directory +Info 14 [00:00:43.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/dependency 1 undefined Config: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Wild card directory +Info 15 [00:00:44.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/decls 1 undefined Project: /user/username/projects/myproject/usage/tsconfig.json WatchType: Failed Lookup Locations +Info 16 [00:00:45.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/decls 1 undefined Project: /user/username/projects/myproject/usage/tsconfig.json WatchType: Failed Lookup Locations +Info 17 [00:00:46.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/dependency/fns.ts 500 undefined WatchType: Closed Script info +Info 18 [00:00:47.000] FileWatcher:: Added:: WatchInfo: /a/lib/lib.d.ts 500 undefined WatchType: Closed Script info +Info 19 [00:00:48.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/usage/node_modules/@types 1 undefined Project: /user/username/projects/myproject/usage/tsconfig.json WatchType: Type roots +Info 20 [00:00:49.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/usage/node_modules/@types 1 undefined Project: /user/username/projects/myproject/usage/tsconfig.json WatchType: Type roots +Info 21 [00:00:50.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/usage/tsconfig.json WatchType: Type roots +Info 22 [00:00:51.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/usage/tsconfig.json WatchType: Type roots +Info 23 [00:00:52.000] Finishing updateGraphWorker: Project: /user/username/projects/myproject/usage/tsconfig.json Version: 1 structureChanged: true structureIsReused:: Not Elapsed:: *ms +Info 24 [00:00:53.000] Project '/user/username/projects/myproject/usage/tsconfig.json' (Configured) +Info 25 [00:00:54.000] Files (3) /a/lib/lib.d.ts /user/username/projects/myproject/dependency/fns.ts /user/username/projects/myproject/usage/usage.ts @@ -107,14 +107,14 @@ Info 25 [16:00:54.000] Files (3) usage.ts Matched by default include pattern '**/*' -Info 26 [16:00:55.000] ----------------------------------------------- -Info 27 [16:00:56.000] Project '/user/username/projects/myproject/usage/tsconfig.json' (Configured) -Info 27 [16:00:57.000] Files (3) +Info 26 [00:00:55.000] ----------------------------------------------- +Info 27 [00:00:56.000] Project '/user/username/projects/myproject/usage/tsconfig.json' (Configured) +Info 27 [00:00:57.000] Files (3) -Info 27 [16:00:58.000] ----------------------------------------------- -Info 27 [16:00:59.000] Open files: -Info 27 [16:01:00.000] FileName: /user/username/projects/myproject/usage/usage.ts ProjectRootPath: undefined -Info 27 [16:01:01.000] Projects: /user/username/projects/myproject/usage/tsconfig.json +Info 27 [00:00:58.000] ----------------------------------------------- +Info 27 [00:00:59.000] Open files: +Info 27 [00:01:00.000] FileName: /user/username/projects/myproject/usage/usage.ts ProjectRootPath: undefined +Info 27 [00:01:01.000] Projects: /user/username/projects/myproject/usage/tsconfig.json After request PolledWatches:: @@ -141,11 +141,11 @@ FsWatchesRecursive:: /user/username/projects/myproject/dependency: {} -Info 27 [16:01:02.000] response: +Info 27 [00:01:02.000] response: { "responseRequired": false } -Info 28 [16:01:03.000] request: +Info 28 [00:01:03.000] request: { "command": "compileOnSaveAffectedFileList", "arguments": { @@ -180,22 +180,22 @@ FsWatchesRecursive:: /user/username/projects/myproject/dependency: {} -Info 29 [16:01:04.000] Before ensureProjectForOpenFiles: -Info 30 [16:01:05.000] Project '/user/username/projects/myproject/usage/tsconfig.json' (Configured) -Info 30 [16:01:06.000] Files (3) +Info 29 [00:01:04.000] Before ensureProjectForOpenFiles: +Info 30 [00:01:05.000] Project '/user/username/projects/myproject/usage/tsconfig.json' (Configured) +Info 30 [00:01:06.000] Files (3) -Info 30 [16:01:07.000] ----------------------------------------------- -Info 30 [16:01:08.000] Open files: -Info 30 [16:01:09.000] FileName: /user/username/projects/myproject/usage/usage.ts ProjectRootPath: undefined -Info 30 [16:01:10.000] Projects: /user/username/projects/myproject/usage/tsconfig.json -Info 30 [16:01:11.000] After ensureProjectForOpenFiles: -Info 31 [16:01:12.000] Project '/user/username/projects/myproject/usage/tsconfig.json' (Configured) -Info 31 [16:01:13.000] Files (3) +Info 30 [00:01:07.000] ----------------------------------------------- +Info 30 [00:01:08.000] Open files: +Info 30 [00:01:09.000] FileName: /user/username/projects/myproject/usage/usage.ts ProjectRootPath: undefined +Info 30 [00:01:10.000] Projects: /user/username/projects/myproject/usage/tsconfig.json +Info 30 [00:01:11.000] After ensureProjectForOpenFiles: +Info 31 [00:01:12.000] Project '/user/username/projects/myproject/usage/tsconfig.json' (Configured) +Info 31 [00:01:13.000] Files (3) -Info 31 [16:01:14.000] ----------------------------------------------- -Info 31 [16:01:15.000] Open files: -Info 31 [16:01:16.000] FileName: /user/username/projects/myproject/usage/usage.ts ProjectRootPath: undefined -Info 31 [16:01:17.000] Projects: /user/username/projects/myproject/usage/tsconfig.json +Info 31 [00:01:14.000] ----------------------------------------------- +Info 31 [00:01:15.000] Open files: +Info 31 [00:01:16.000] FileName: /user/username/projects/myproject/usage/usage.ts ProjectRootPath: undefined +Info 31 [00:01:17.000] Projects: /user/username/projects/myproject/usage/tsconfig.json After request PolledWatches:: @@ -222,7 +222,7 @@ FsWatchesRecursive:: /user/username/projects/myproject/dependency: {} -Info 31 [16:01:18.000] response: +Info 31 [00:01:18.000] response: { "response": [ { @@ -235,7 +235,7 @@ Info 31 [16:01:18.000] response: ], "responseRequired": true } -Info 32 [16:01:19.000] request: +Info 32 [00:01:19.000] request: { "command": "change", "arguments": { @@ -301,11 +301,11 @@ FsWatchesRecursive:: /user/username/projects/myproject/dependency: {} -Info 33 [16:01:20.000] response: +Info 33 [00:01:20.000] response: { "responseRequired": false } -Info 34 [16:01:21.000] request: +Info 34 [00:01:21.000] request: { "command": "compileOnSaveAffectedFileList", "arguments": { @@ -340,25 +340,25 @@ FsWatchesRecursive:: /user/username/projects/myproject/dependency: {} -Info 35 [16:01:22.000] Starting updateGraphWorker: Project: /user/username/projects/myproject/usage/tsconfig.json -Info 36 [16:01:23.000] Finishing updateGraphWorker: Project: /user/username/projects/myproject/usage/tsconfig.json Version: 2 structureChanged: false structureIsReused:: Completely Elapsed:: *ms -Info 37 [16:01:24.000] Different program with same set of files -Info 38 [16:01:25.000] Before ensureProjectForOpenFiles: -Info 39 [16:01:26.000] Project '/user/username/projects/myproject/usage/tsconfig.json' (Configured) -Info 39 [16:01:27.000] Files (3) - -Info 39 [16:01:28.000] ----------------------------------------------- -Info 39 [16:01:29.000] Open files: -Info 39 [16:01:30.000] FileName: /user/username/projects/myproject/usage/usage.ts ProjectRootPath: undefined -Info 39 [16:01:31.000] Projects: /user/username/projects/myproject/usage/tsconfig.json -Info 39 [16:01:32.000] After ensureProjectForOpenFiles: -Info 40 [16:01:33.000] Project '/user/username/projects/myproject/usage/tsconfig.json' (Configured) -Info 40 [16:01:34.000] Files (3) - -Info 40 [16:01:35.000] ----------------------------------------------- -Info 40 [16:01:36.000] Open files: -Info 40 [16:01:37.000] FileName: /user/username/projects/myproject/usage/usage.ts ProjectRootPath: undefined -Info 40 [16:01:38.000] Projects: /user/username/projects/myproject/usage/tsconfig.json +Info 35 [00:01:22.000] Starting updateGraphWorker: Project: /user/username/projects/myproject/usage/tsconfig.json +Info 36 [00:01:23.000] Finishing updateGraphWorker: Project: /user/username/projects/myproject/usage/tsconfig.json Version: 2 structureChanged: false structureIsReused:: Completely Elapsed:: *ms +Info 37 [00:01:24.000] Different program with same set of files +Info 38 [00:01:25.000] Before ensureProjectForOpenFiles: +Info 39 [00:01:26.000] Project '/user/username/projects/myproject/usage/tsconfig.json' (Configured) +Info 39 [00:01:27.000] Files (3) + +Info 39 [00:01:28.000] ----------------------------------------------- +Info 39 [00:01:29.000] Open files: +Info 39 [00:01:30.000] FileName: /user/username/projects/myproject/usage/usage.ts ProjectRootPath: undefined +Info 39 [00:01:31.000] Projects: /user/username/projects/myproject/usage/tsconfig.json +Info 39 [00:01:32.000] After ensureProjectForOpenFiles: +Info 40 [00:01:33.000] Project '/user/username/projects/myproject/usage/tsconfig.json' (Configured) +Info 40 [00:01:34.000] Files (3) + +Info 40 [00:01:35.000] ----------------------------------------------- +Info 40 [00:01:36.000] Open files: +Info 40 [00:01:37.000] FileName: /user/username/projects/myproject/usage/usage.ts ProjectRootPath: undefined +Info 40 [00:01:38.000] Projects: /user/username/projects/myproject/usage/tsconfig.json After request PolledWatches:: @@ -385,7 +385,7 @@ FsWatchesRecursive:: /user/username/projects/myproject/dependency: {} -Info 40 [16:01:39.000] response: +Info 40 [00:01:39.000] response: { "response": [ { @@ -396,7 +396,7 @@ Info 40 [16:01:39.000] response: ], "responseRequired": true } -Info 41 [16:01:40.000] request: +Info 41 [00:01:40.000] request: { "command": "compileOnSaveEmitFile", "arguments": { @@ -457,12 +457,12 @@ FsWatchesRecursive:: /user/username/projects/myproject/dependency: {} -Info 42 [16:01:41.000] response: +Info 42 [00:01:41.000] response: { "response": false, "responseRequired": true } -Info 43 [16:01:42.000] request: +Info 43 [00:01:42.000] request: { "command": "emit-output", "arguments": { @@ -523,7 +523,7 @@ FsWatchesRecursive:: /user/username/projects/myproject/dependency: {} -Info 44 [16:01:43.000] response: +Info 44 [00:01:43.000] response: { "response": { "emitSkipped": true, diff --git a/tests/baselines/reference/tsserver/projectReferenceCompileOnSave/when-dependency-project-is-not-open-and-save-on-dependency-with-project-and-change-to-dependency.js b/tests/baselines/reference/tsserver/projectReferenceCompileOnSave/when-dependency-project-is-not-open-and-save-on-dependency-with-project-and-change-to-dependency.js index bc7ca12707dfa..54098cdf6b724 100644 --- a/tests/baselines/reference/tsserver/projectReferenceCompileOnSave/when-dependency-project-is-not-open-and-save-on-dependency-with-project-and-change-to-dependency.js +++ b/tests/baselines/reference/tsserver/projectReferenceCompileOnSave/when-dependency-project-is-not-open-and-save-on-dependency-with-project-and-change-to-dependency.js @@ -1,5 +1,5 @@ -Info 0 [16:00:29.000] Provided types map file "/a/lib/typesMap.json" doesn't exist -Info 1 [16:00:30.000] request: +Info 0 [00:00:29.000] Provided types map file "/a/lib/typesMap.json" doesn't exist +Info 1 [00:00:30.000] request: { "seq": 0, "type": "request", @@ -49,11 +49,11 @@ FsWatches:: FsWatchesRecursive:: -Info 2 [16:00:31.000] Search path: /user/username/projects/myproject/usage -Info 3 [16:00:32.000] For info: /user/username/projects/myproject/usage/usage.ts :: Config file name: /user/username/projects/myproject/usage/tsconfig.json -Info 4 [16:00:33.000] Creating configuration project /user/username/projects/myproject/usage/tsconfig.json -Info 5 [16:00:34.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/usage/tsconfig.json 2000 undefined Project: /user/username/projects/myproject/usage/tsconfig.json WatchType: Config file -Info 6 [16:00:35.000] Config: /user/username/projects/myproject/usage/tsconfig.json : { +Info 2 [00:00:31.000] Search path: /user/username/projects/myproject/usage +Info 3 [00:00:32.000] For info: /user/username/projects/myproject/usage/usage.ts :: Config file name: /user/username/projects/myproject/usage/tsconfig.json +Info 4 [00:00:33.000] Creating configuration project /user/username/projects/myproject/usage/tsconfig.json +Info 5 [00:00:34.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/usage/tsconfig.json 2000 undefined Project: /user/username/projects/myproject/usage/tsconfig.json WatchType: Config file +Info 6 [00:00:35.000] Config: /user/username/projects/myproject/usage/tsconfig.json : { "rootNames": [ "/user/username/projects/myproject/usage/usage.ts" ], @@ -67,11 +67,11 @@ Info 6 [16:00:35.000] Config: /user/username/projects/myproject/usage/tsconfi } ] } -Info 7 [16:00:36.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/usage 1 undefined Config: /user/username/projects/myproject/usage/tsconfig.json WatchType: Wild card directory -Info 8 [16:00:37.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/usage 1 undefined Config: /user/username/projects/myproject/usage/tsconfig.json WatchType: Wild card directory -Info 9 [16:00:38.000] Plugins were requested but not running in environment that supports 'require'. Nothing will be loaded -Info 10 [16:00:39.000] Starting updateGraphWorker: Project: /user/username/projects/myproject/usage/tsconfig.json -Info 11 [16:00:40.000] Config: /user/username/projects/myproject/dependency/tsconfig.json : { +Info 7 [00:00:36.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/usage 1 undefined Config: /user/username/projects/myproject/usage/tsconfig.json WatchType: Wild card directory +Info 8 [00:00:37.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/usage 1 undefined Config: /user/username/projects/myproject/usage/tsconfig.json WatchType: Wild card directory +Info 9 [00:00:38.000] Plugins were requested but not running in environment that supports 'require'. Nothing will be loaded +Info 10 [00:00:39.000] Starting updateGraphWorker: Project: /user/username/projects/myproject/usage/tsconfig.json +Info 11 [00:00:40.000] Config: /user/username/projects/myproject/dependency/tsconfig.json : { "rootNames": [ "/user/username/projects/myproject/dependency/fns.ts" ], @@ -81,20 +81,20 @@ Info 11 [16:00:40.000] Config: /user/username/projects/myproject/dependency/ts "configFilePath": "/user/username/projects/myproject/dependency/tsconfig.json" } } -Info 12 [16:00:41.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/dependency/tsconfig.json 2000 undefined Project: /user/username/projects/myproject/usage/tsconfig.json WatchType: Config file -Info 13 [16:00:42.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/dependency 1 undefined Config: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Wild card directory -Info 14 [16:00:43.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/dependency 1 undefined Config: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Wild card directory -Info 15 [16:00:44.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/decls 1 undefined Project: /user/username/projects/myproject/usage/tsconfig.json WatchType: Failed Lookup Locations -Info 16 [16:00:45.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/decls 1 undefined Project: /user/username/projects/myproject/usage/tsconfig.json WatchType: Failed Lookup Locations -Info 17 [16:00:46.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/dependency/fns.ts 500 undefined WatchType: Closed Script info -Info 18 [16:00:47.000] FileWatcher:: Added:: WatchInfo: /a/lib/lib.d.ts 500 undefined WatchType: Closed Script info -Info 19 [16:00:48.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/usage/node_modules/@types 1 undefined Project: /user/username/projects/myproject/usage/tsconfig.json WatchType: Type roots -Info 20 [16:00:49.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/usage/node_modules/@types 1 undefined Project: /user/username/projects/myproject/usage/tsconfig.json WatchType: Type roots -Info 21 [16:00:50.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/usage/tsconfig.json WatchType: Type roots -Info 22 [16:00:51.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/usage/tsconfig.json WatchType: Type roots -Info 23 [16:00:52.000] Finishing updateGraphWorker: Project: /user/username/projects/myproject/usage/tsconfig.json Version: 1 structureChanged: true structureIsReused:: Not Elapsed:: *ms -Info 24 [16:00:53.000] Project '/user/username/projects/myproject/usage/tsconfig.json' (Configured) -Info 25 [16:00:54.000] Files (3) +Info 12 [00:00:41.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/dependency/tsconfig.json 2000 undefined Project: /user/username/projects/myproject/usage/tsconfig.json WatchType: Config file +Info 13 [00:00:42.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/dependency 1 undefined Config: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Wild card directory +Info 14 [00:00:43.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/dependency 1 undefined Config: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Wild card directory +Info 15 [00:00:44.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/decls 1 undefined Project: /user/username/projects/myproject/usage/tsconfig.json WatchType: Failed Lookup Locations +Info 16 [00:00:45.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/decls 1 undefined Project: /user/username/projects/myproject/usage/tsconfig.json WatchType: Failed Lookup Locations +Info 17 [00:00:46.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/dependency/fns.ts 500 undefined WatchType: Closed Script info +Info 18 [00:00:47.000] FileWatcher:: Added:: WatchInfo: /a/lib/lib.d.ts 500 undefined WatchType: Closed Script info +Info 19 [00:00:48.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/usage/node_modules/@types 1 undefined Project: /user/username/projects/myproject/usage/tsconfig.json WatchType: Type roots +Info 20 [00:00:49.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/usage/node_modules/@types 1 undefined Project: /user/username/projects/myproject/usage/tsconfig.json WatchType: Type roots +Info 21 [00:00:50.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/usage/tsconfig.json WatchType: Type roots +Info 22 [00:00:51.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/usage/tsconfig.json WatchType: Type roots +Info 23 [00:00:52.000] Finishing updateGraphWorker: Project: /user/username/projects/myproject/usage/tsconfig.json Version: 1 structureChanged: true structureIsReused:: Not Elapsed:: *ms +Info 24 [00:00:53.000] Project '/user/username/projects/myproject/usage/tsconfig.json' (Configured) +Info 25 [00:00:54.000] Files (3) /a/lib/lib.d.ts /user/username/projects/myproject/dependency/fns.ts /user/username/projects/myproject/usage/usage.ts @@ -107,14 +107,14 @@ Info 25 [16:00:54.000] Files (3) usage.ts Matched by default include pattern '**/*' -Info 26 [16:00:55.000] ----------------------------------------------- -Info 27 [16:00:56.000] Project '/user/username/projects/myproject/usage/tsconfig.json' (Configured) -Info 27 [16:00:57.000] Files (3) +Info 26 [00:00:55.000] ----------------------------------------------- +Info 27 [00:00:56.000] Project '/user/username/projects/myproject/usage/tsconfig.json' (Configured) +Info 27 [00:00:57.000] Files (3) -Info 27 [16:00:58.000] ----------------------------------------------- -Info 27 [16:00:59.000] Open files: -Info 27 [16:01:00.000] FileName: /user/username/projects/myproject/usage/usage.ts ProjectRootPath: undefined -Info 27 [16:01:01.000] Projects: /user/username/projects/myproject/usage/tsconfig.json +Info 27 [00:00:58.000] ----------------------------------------------- +Info 27 [00:00:59.000] Open files: +Info 27 [00:01:00.000] FileName: /user/username/projects/myproject/usage/usage.ts ProjectRootPath: undefined +Info 27 [00:01:01.000] Projects: /user/username/projects/myproject/usage/tsconfig.json After request PolledWatches:: @@ -141,11 +141,11 @@ FsWatchesRecursive:: /user/username/projects/myproject/dependency: {} -Info 27 [16:01:02.000] response: +Info 27 [00:01:02.000] response: { "responseRequired": false } -Info 28 [16:01:03.000] request: +Info 28 [00:01:03.000] request: { "command": "compileOnSaveAffectedFileList", "arguments": { @@ -180,22 +180,22 @@ FsWatchesRecursive:: /user/username/projects/myproject/dependency: {} -Info 29 [16:01:04.000] Before ensureProjectForOpenFiles: -Info 30 [16:01:05.000] Project '/user/username/projects/myproject/usage/tsconfig.json' (Configured) -Info 30 [16:01:06.000] Files (3) +Info 29 [00:01:04.000] Before ensureProjectForOpenFiles: +Info 30 [00:01:05.000] Project '/user/username/projects/myproject/usage/tsconfig.json' (Configured) +Info 30 [00:01:06.000] Files (3) -Info 30 [16:01:07.000] ----------------------------------------------- -Info 30 [16:01:08.000] Open files: -Info 30 [16:01:09.000] FileName: /user/username/projects/myproject/usage/usage.ts ProjectRootPath: undefined -Info 30 [16:01:10.000] Projects: /user/username/projects/myproject/usage/tsconfig.json -Info 30 [16:01:11.000] After ensureProjectForOpenFiles: -Info 31 [16:01:12.000] Project '/user/username/projects/myproject/usage/tsconfig.json' (Configured) -Info 31 [16:01:13.000] Files (3) +Info 30 [00:01:07.000] ----------------------------------------------- +Info 30 [00:01:08.000] Open files: +Info 30 [00:01:09.000] FileName: /user/username/projects/myproject/usage/usage.ts ProjectRootPath: undefined +Info 30 [00:01:10.000] Projects: /user/username/projects/myproject/usage/tsconfig.json +Info 30 [00:01:11.000] After ensureProjectForOpenFiles: +Info 31 [00:01:12.000] Project '/user/username/projects/myproject/usage/tsconfig.json' (Configured) +Info 31 [00:01:13.000] Files (3) -Info 31 [16:01:14.000] ----------------------------------------------- -Info 31 [16:01:15.000] Open files: -Info 31 [16:01:16.000] FileName: /user/username/projects/myproject/usage/usage.ts ProjectRootPath: undefined -Info 31 [16:01:17.000] Projects: /user/username/projects/myproject/usage/tsconfig.json +Info 31 [00:01:14.000] ----------------------------------------------- +Info 31 [00:01:15.000] Open files: +Info 31 [00:01:16.000] FileName: /user/username/projects/myproject/usage/usage.ts ProjectRootPath: undefined +Info 31 [00:01:17.000] Projects: /user/username/projects/myproject/usage/tsconfig.json After request PolledWatches:: @@ -222,7 +222,7 @@ FsWatchesRecursive:: /user/username/projects/myproject/dependency: {} -Info 31 [16:01:18.000] response: +Info 31 [00:01:18.000] response: { "response": [ { @@ -235,11 +235,11 @@ Info 31 [16:01:18.000] response: ], "responseRequired": true } -Info 32 [16:01:22.000] FileWatcher:: Triggered with /user/username/projects/myproject/dependency/fns.ts 1:: WatchInfo: /user/username/projects/myproject/dependency/fns.ts 500 undefined WatchType: Closed Script info -Info 33 [16:01:23.000] Scheduled: /user/username/projects/myproject/usage/tsconfig.json -Info 34 [16:01:24.000] Scheduled: *ensureProjectForOpenFiles* -Info 35 [16:01:25.000] Elapsed:: *ms FileWatcher:: Triggered with /user/username/projects/myproject/dependency/fns.ts 1:: WatchInfo: /user/username/projects/myproject/dependency/fns.ts 500 undefined WatchType: Closed Script info -Info 36 [16:01:26.000] request: +Info 32 [00:01:22.000] FileWatcher:: Triggered with /user/username/projects/myproject/dependency/fns.ts 1:: WatchInfo: /user/username/projects/myproject/dependency/fns.ts 500 undefined WatchType: Closed Script info +Info 33 [00:01:23.000] Scheduled: /user/username/projects/myproject/usage/tsconfig.json +Info 34 [00:01:24.000] Scheduled: *ensureProjectForOpenFiles* +Info 35 [00:01:25.000] Elapsed:: *ms FileWatcher:: Triggered with /user/username/projects/myproject/dependency/fns.ts 1:: WatchInfo: /user/username/projects/myproject/dependency/fns.ts 500 undefined WatchType: Closed Script info +Info 36 [00:01:26.000] request: { "command": "compileOnSaveAffectedFileList", "arguments": { @@ -280,9 +280,9 @@ FsWatchesRecursive:: /user/username/projects/myproject/dependency: {} -Info 37 [16:01:27.000] Starting updateGraphWorker: Project: /user/username/projects/myproject/usage/tsconfig.json -Info 38 [16:01:28.000] Finishing updateGraphWorker: Project: /user/username/projects/myproject/usage/tsconfig.json Version: 2 structureChanged: false structureIsReused:: Completely Elapsed:: *ms -Info 39 [16:01:29.000] Different program with same set of files +Info 37 [00:01:27.000] Starting updateGraphWorker: Project: /user/username/projects/myproject/usage/tsconfig.json +Info 38 [00:01:28.000] Finishing updateGraphWorker: Project: /user/username/projects/myproject/usage/tsconfig.json Version: 2 structureChanged: false structureIsReused:: Completely Elapsed:: *ms +Info 39 [00:01:29.000] Different program with same set of files After request PolledWatches:: @@ -309,7 +309,7 @@ FsWatchesRecursive:: /user/username/projects/myproject/dependency: {} -Info 40 [16:01:30.000] response: +Info 40 [00:01:30.000] response: { "response": [ { @@ -322,7 +322,7 @@ Info 40 [16:01:30.000] response: ], "responseRequired": true } -Info 41 [16:01:31.000] request: +Info 41 [00:01:31.000] request: { "command": "compileOnSaveEmitFile", "arguments": { @@ -384,12 +384,12 @@ FsWatchesRecursive:: /user/username/projects/myproject/dependency: {} -Info 42 [16:01:32.000] response: +Info 42 [00:01:32.000] response: { "response": false, "responseRequired": true } -Info 43 [16:01:33.000] request: +Info 43 [00:01:33.000] request: { "command": "emit-output", "arguments": { @@ -451,7 +451,7 @@ FsWatchesRecursive:: /user/username/projects/myproject/dependency: {} -Info 44 [16:01:34.000] response: +Info 44 [00:01:34.000] response: { "response": { "emitSkipped": true, diff --git a/tests/baselines/reference/tsserver/projectReferenceCompileOnSave/when-dependency-project-is-not-open-and-save-on-dependency-with-project-and-change-to-usage.js b/tests/baselines/reference/tsserver/projectReferenceCompileOnSave/when-dependency-project-is-not-open-and-save-on-dependency-with-project-and-change-to-usage.js index 46861bb9729c2..232bf4687dad4 100644 --- a/tests/baselines/reference/tsserver/projectReferenceCompileOnSave/when-dependency-project-is-not-open-and-save-on-dependency-with-project-and-change-to-usage.js +++ b/tests/baselines/reference/tsserver/projectReferenceCompileOnSave/when-dependency-project-is-not-open-and-save-on-dependency-with-project-and-change-to-usage.js @@ -1,5 +1,5 @@ -Info 0 [16:00:29.000] Provided types map file "/a/lib/typesMap.json" doesn't exist -Info 1 [16:00:30.000] request: +Info 0 [00:00:29.000] Provided types map file "/a/lib/typesMap.json" doesn't exist +Info 1 [00:00:30.000] request: { "seq": 0, "type": "request", @@ -49,11 +49,11 @@ FsWatches:: FsWatchesRecursive:: -Info 2 [16:00:31.000] Search path: /user/username/projects/myproject/usage -Info 3 [16:00:32.000] For info: /user/username/projects/myproject/usage/usage.ts :: Config file name: /user/username/projects/myproject/usage/tsconfig.json -Info 4 [16:00:33.000] Creating configuration project /user/username/projects/myproject/usage/tsconfig.json -Info 5 [16:00:34.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/usage/tsconfig.json 2000 undefined Project: /user/username/projects/myproject/usage/tsconfig.json WatchType: Config file -Info 6 [16:00:35.000] Config: /user/username/projects/myproject/usage/tsconfig.json : { +Info 2 [00:00:31.000] Search path: /user/username/projects/myproject/usage +Info 3 [00:00:32.000] For info: /user/username/projects/myproject/usage/usage.ts :: Config file name: /user/username/projects/myproject/usage/tsconfig.json +Info 4 [00:00:33.000] Creating configuration project /user/username/projects/myproject/usage/tsconfig.json +Info 5 [00:00:34.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/usage/tsconfig.json 2000 undefined Project: /user/username/projects/myproject/usage/tsconfig.json WatchType: Config file +Info 6 [00:00:35.000] Config: /user/username/projects/myproject/usage/tsconfig.json : { "rootNames": [ "/user/username/projects/myproject/usage/usage.ts" ], @@ -67,11 +67,11 @@ Info 6 [16:00:35.000] Config: /user/username/projects/myproject/usage/tsconfi } ] } -Info 7 [16:00:36.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/usage 1 undefined Config: /user/username/projects/myproject/usage/tsconfig.json WatchType: Wild card directory -Info 8 [16:00:37.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/usage 1 undefined Config: /user/username/projects/myproject/usage/tsconfig.json WatchType: Wild card directory -Info 9 [16:00:38.000] Plugins were requested but not running in environment that supports 'require'. Nothing will be loaded -Info 10 [16:00:39.000] Starting updateGraphWorker: Project: /user/username/projects/myproject/usage/tsconfig.json -Info 11 [16:00:40.000] Config: /user/username/projects/myproject/dependency/tsconfig.json : { +Info 7 [00:00:36.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/usage 1 undefined Config: /user/username/projects/myproject/usage/tsconfig.json WatchType: Wild card directory +Info 8 [00:00:37.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/usage 1 undefined Config: /user/username/projects/myproject/usage/tsconfig.json WatchType: Wild card directory +Info 9 [00:00:38.000] Plugins were requested but not running in environment that supports 'require'. Nothing will be loaded +Info 10 [00:00:39.000] Starting updateGraphWorker: Project: /user/username/projects/myproject/usage/tsconfig.json +Info 11 [00:00:40.000] Config: /user/username/projects/myproject/dependency/tsconfig.json : { "rootNames": [ "/user/username/projects/myproject/dependency/fns.ts" ], @@ -81,20 +81,20 @@ Info 11 [16:00:40.000] Config: /user/username/projects/myproject/dependency/ts "configFilePath": "/user/username/projects/myproject/dependency/tsconfig.json" } } -Info 12 [16:00:41.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/dependency/tsconfig.json 2000 undefined Project: /user/username/projects/myproject/usage/tsconfig.json WatchType: Config file -Info 13 [16:00:42.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/dependency 1 undefined Config: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Wild card directory -Info 14 [16:00:43.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/dependency 1 undefined Config: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Wild card directory -Info 15 [16:00:44.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/decls 1 undefined Project: /user/username/projects/myproject/usage/tsconfig.json WatchType: Failed Lookup Locations -Info 16 [16:00:45.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/decls 1 undefined Project: /user/username/projects/myproject/usage/tsconfig.json WatchType: Failed Lookup Locations -Info 17 [16:00:46.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/dependency/fns.ts 500 undefined WatchType: Closed Script info -Info 18 [16:00:47.000] FileWatcher:: Added:: WatchInfo: /a/lib/lib.d.ts 500 undefined WatchType: Closed Script info -Info 19 [16:00:48.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/usage/node_modules/@types 1 undefined Project: /user/username/projects/myproject/usage/tsconfig.json WatchType: Type roots -Info 20 [16:00:49.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/usage/node_modules/@types 1 undefined Project: /user/username/projects/myproject/usage/tsconfig.json WatchType: Type roots -Info 21 [16:00:50.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/usage/tsconfig.json WatchType: Type roots -Info 22 [16:00:51.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/usage/tsconfig.json WatchType: Type roots -Info 23 [16:00:52.000] Finishing updateGraphWorker: Project: /user/username/projects/myproject/usage/tsconfig.json Version: 1 structureChanged: true structureIsReused:: Not Elapsed:: *ms -Info 24 [16:00:53.000] Project '/user/username/projects/myproject/usage/tsconfig.json' (Configured) -Info 25 [16:00:54.000] Files (3) +Info 12 [00:00:41.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/dependency/tsconfig.json 2000 undefined Project: /user/username/projects/myproject/usage/tsconfig.json WatchType: Config file +Info 13 [00:00:42.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/dependency 1 undefined Config: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Wild card directory +Info 14 [00:00:43.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/dependency 1 undefined Config: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Wild card directory +Info 15 [00:00:44.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/decls 1 undefined Project: /user/username/projects/myproject/usage/tsconfig.json WatchType: Failed Lookup Locations +Info 16 [00:00:45.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/decls 1 undefined Project: /user/username/projects/myproject/usage/tsconfig.json WatchType: Failed Lookup Locations +Info 17 [00:00:46.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/dependency/fns.ts 500 undefined WatchType: Closed Script info +Info 18 [00:00:47.000] FileWatcher:: Added:: WatchInfo: /a/lib/lib.d.ts 500 undefined WatchType: Closed Script info +Info 19 [00:00:48.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/usage/node_modules/@types 1 undefined Project: /user/username/projects/myproject/usage/tsconfig.json WatchType: Type roots +Info 20 [00:00:49.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/usage/node_modules/@types 1 undefined Project: /user/username/projects/myproject/usage/tsconfig.json WatchType: Type roots +Info 21 [00:00:50.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/usage/tsconfig.json WatchType: Type roots +Info 22 [00:00:51.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/usage/tsconfig.json WatchType: Type roots +Info 23 [00:00:52.000] Finishing updateGraphWorker: Project: /user/username/projects/myproject/usage/tsconfig.json Version: 1 structureChanged: true structureIsReused:: Not Elapsed:: *ms +Info 24 [00:00:53.000] Project '/user/username/projects/myproject/usage/tsconfig.json' (Configured) +Info 25 [00:00:54.000] Files (3) /a/lib/lib.d.ts /user/username/projects/myproject/dependency/fns.ts /user/username/projects/myproject/usage/usage.ts @@ -107,14 +107,14 @@ Info 25 [16:00:54.000] Files (3) usage.ts Matched by default include pattern '**/*' -Info 26 [16:00:55.000] ----------------------------------------------- -Info 27 [16:00:56.000] Project '/user/username/projects/myproject/usage/tsconfig.json' (Configured) -Info 27 [16:00:57.000] Files (3) +Info 26 [00:00:55.000] ----------------------------------------------- +Info 27 [00:00:56.000] Project '/user/username/projects/myproject/usage/tsconfig.json' (Configured) +Info 27 [00:00:57.000] Files (3) -Info 27 [16:00:58.000] ----------------------------------------------- -Info 27 [16:00:59.000] Open files: -Info 27 [16:01:00.000] FileName: /user/username/projects/myproject/usage/usage.ts ProjectRootPath: undefined -Info 27 [16:01:01.000] Projects: /user/username/projects/myproject/usage/tsconfig.json +Info 27 [00:00:58.000] ----------------------------------------------- +Info 27 [00:00:59.000] Open files: +Info 27 [00:01:00.000] FileName: /user/username/projects/myproject/usage/usage.ts ProjectRootPath: undefined +Info 27 [00:01:01.000] Projects: /user/username/projects/myproject/usage/tsconfig.json After request PolledWatches:: @@ -141,11 +141,11 @@ FsWatchesRecursive:: /user/username/projects/myproject/dependency: {} -Info 27 [16:01:02.000] response: +Info 27 [00:01:02.000] response: { "responseRequired": false } -Info 28 [16:01:03.000] request: +Info 28 [00:01:03.000] request: { "command": "compileOnSaveAffectedFileList", "arguments": { @@ -180,22 +180,22 @@ FsWatchesRecursive:: /user/username/projects/myproject/dependency: {} -Info 29 [16:01:04.000] Before ensureProjectForOpenFiles: -Info 30 [16:01:05.000] Project '/user/username/projects/myproject/usage/tsconfig.json' (Configured) -Info 30 [16:01:06.000] Files (3) +Info 29 [00:01:04.000] Before ensureProjectForOpenFiles: +Info 30 [00:01:05.000] Project '/user/username/projects/myproject/usage/tsconfig.json' (Configured) +Info 30 [00:01:06.000] Files (3) -Info 30 [16:01:07.000] ----------------------------------------------- -Info 30 [16:01:08.000] Open files: -Info 30 [16:01:09.000] FileName: /user/username/projects/myproject/usage/usage.ts ProjectRootPath: undefined -Info 30 [16:01:10.000] Projects: /user/username/projects/myproject/usage/tsconfig.json -Info 30 [16:01:11.000] After ensureProjectForOpenFiles: -Info 31 [16:01:12.000] Project '/user/username/projects/myproject/usage/tsconfig.json' (Configured) -Info 31 [16:01:13.000] Files (3) +Info 30 [00:01:07.000] ----------------------------------------------- +Info 30 [00:01:08.000] Open files: +Info 30 [00:01:09.000] FileName: /user/username/projects/myproject/usage/usage.ts ProjectRootPath: undefined +Info 30 [00:01:10.000] Projects: /user/username/projects/myproject/usage/tsconfig.json +Info 30 [00:01:11.000] After ensureProjectForOpenFiles: +Info 31 [00:01:12.000] Project '/user/username/projects/myproject/usage/tsconfig.json' (Configured) +Info 31 [00:01:13.000] Files (3) -Info 31 [16:01:14.000] ----------------------------------------------- -Info 31 [16:01:15.000] Open files: -Info 31 [16:01:16.000] FileName: /user/username/projects/myproject/usage/usage.ts ProjectRootPath: undefined -Info 31 [16:01:17.000] Projects: /user/username/projects/myproject/usage/tsconfig.json +Info 31 [00:01:14.000] ----------------------------------------------- +Info 31 [00:01:15.000] Open files: +Info 31 [00:01:16.000] FileName: /user/username/projects/myproject/usage/usage.ts ProjectRootPath: undefined +Info 31 [00:01:17.000] Projects: /user/username/projects/myproject/usage/tsconfig.json After request PolledWatches:: @@ -222,7 +222,7 @@ FsWatchesRecursive:: /user/username/projects/myproject/dependency: {} -Info 31 [16:01:18.000] response: +Info 31 [00:01:18.000] response: { "response": [ { @@ -235,7 +235,7 @@ Info 31 [16:01:18.000] response: ], "responseRequired": true } -Info 32 [16:01:19.000] request: +Info 32 [00:01:19.000] request: { "command": "change", "arguments": { @@ -301,11 +301,11 @@ FsWatchesRecursive:: /user/username/projects/myproject/dependency: {} -Info 33 [16:01:20.000] response: +Info 33 [00:01:20.000] response: { "responseRequired": false } -Info 34 [16:01:21.000] request: +Info 34 [00:01:21.000] request: { "command": "compileOnSaveAffectedFileList", "arguments": { @@ -341,9 +341,9 @@ FsWatchesRecursive:: /user/username/projects/myproject/dependency: {} -Info 35 [16:01:22.000] Starting updateGraphWorker: Project: /user/username/projects/myproject/usage/tsconfig.json -Info 36 [16:01:23.000] Finishing updateGraphWorker: Project: /user/username/projects/myproject/usage/tsconfig.json Version: 2 structureChanged: false structureIsReused:: Completely Elapsed:: *ms -Info 37 [16:01:24.000] Different program with same set of files +Info 35 [00:01:22.000] Starting updateGraphWorker: Project: /user/username/projects/myproject/usage/tsconfig.json +Info 36 [00:01:23.000] Finishing updateGraphWorker: Project: /user/username/projects/myproject/usage/tsconfig.json Version: 2 structureChanged: false structureIsReused:: Completely Elapsed:: *ms +Info 37 [00:01:24.000] Different program with same set of files After request PolledWatches:: @@ -370,7 +370,7 @@ FsWatchesRecursive:: /user/username/projects/myproject/dependency: {} -Info 38 [16:01:25.000] response: +Info 38 [00:01:25.000] response: { "response": [ { @@ -381,7 +381,7 @@ Info 38 [16:01:25.000] response: ], "responseRequired": true } -Info 39 [16:01:26.000] request: +Info 39 [00:01:26.000] request: { "command": "compileOnSaveEmitFile", "arguments": { @@ -443,12 +443,12 @@ FsWatchesRecursive:: /user/username/projects/myproject/dependency: {} -Info 40 [16:01:27.000] response: +Info 40 [00:01:27.000] response: { "response": false, "responseRequired": true } -Info 41 [16:01:28.000] request: +Info 41 [00:01:28.000] request: { "command": "emit-output", "arguments": { @@ -510,7 +510,7 @@ FsWatchesRecursive:: /user/username/projects/myproject/dependency: {} -Info 42 [16:01:29.000] response: +Info 42 [00:01:29.000] response: { "response": { "emitSkipped": true, diff --git a/tests/baselines/reference/tsserver/projectReferenceCompileOnSave/when-dependency-project-is-not-open-and-save-on-dependency-with-project-and-local-change-to-dependency.js b/tests/baselines/reference/tsserver/projectReferenceCompileOnSave/when-dependency-project-is-not-open-and-save-on-dependency-with-project-and-local-change-to-dependency.js index a376749832b55..8d6a3efeb0d95 100644 --- a/tests/baselines/reference/tsserver/projectReferenceCompileOnSave/when-dependency-project-is-not-open-and-save-on-dependency-with-project-and-local-change-to-dependency.js +++ b/tests/baselines/reference/tsserver/projectReferenceCompileOnSave/when-dependency-project-is-not-open-and-save-on-dependency-with-project-and-local-change-to-dependency.js @@ -1,5 +1,5 @@ -Info 0 [16:00:29.000] Provided types map file "/a/lib/typesMap.json" doesn't exist -Info 1 [16:00:30.000] request: +Info 0 [00:00:29.000] Provided types map file "/a/lib/typesMap.json" doesn't exist +Info 1 [00:00:30.000] request: { "seq": 0, "type": "request", @@ -49,11 +49,11 @@ FsWatches:: FsWatchesRecursive:: -Info 2 [16:00:31.000] Search path: /user/username/projects/myproject/usage -Info 3 [16:00:32.000] For info: /user/username/projects/myproject/usage/usage.ts :: Config file name: /user/username/projects/myproject/usage/tsconfig.json -Info 4 [16:00:33.000] Creating configuration project /user/username/projects/myproject/usage/tsconfig.json -Info 5 [16:00:34.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/usage/tsconfig.json 2000 undefined Project: /user/username/projects/myproject/usage/tsconfig.json WatchType: Config file -Info 6 [16:00:35.000] Config: /user/username/projects/myproject/usage/tsconfig.json : { +Info 2 [00:00:31.000] Search path: /user/username/projects/myproject/usage +Info 3 [00:00:32.000] For info: /user/username/projects/myproject/usage/usage.ts :: Config file name: /user/username/projects/myproject/usage/tsconfig.json +Info 4 [00:00:33.000] Creating configuration project /user/username/projects/myproject/usage/tsconfig.json +Info 5 [00:00:34.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/usage/tsconfig.json 2000 undefined Project: /user/username/projects/myproject/usage/tsconfig.json WatchType: Config file +Info 6 [00:00:35.000] Config: /user/username/projects/myproject/usage/tsconfig.json : { "rootNames": [ "/user/username/projects/myproject/usage/usage.ts" ], @@ -67,11 +67,11 @@ Info 6 [16:00:35.000] Config: /user/username/projects/myproject/usage/tsconfi } ] } -Info 7 [16:00:36.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/usage 1 undefined Config: /user/username/projects/myproject/usage/tsconfig.json WatchType: Wild card directory -Info 8 [16:00:37.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/usage 1 undefined Config: /user/username/projects/myproject/usage/tsconfig.json WatchType: Wild card directory -Info 9 [16:00:38.000] Plugins were requested but not running in environment that supports 'require'. Nothing will be loaded -Info 10 [16:00:39.000] Starting updateGraphWorker: Project: /user/username/projects/myproject/usage/tsconfig.json -Info 11 [16:00:40.000] Config: /user/username/projects/myproject/dependency/tsconfig.json : { +Info 7 [00:00:36.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/usage 1 undefined Config: /user/username/projects/myproject/usage/tsconfig.json WatchType: Wild card directory +Info 8 [00:00:37.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/usage 1 undefined Config: /user/username/projects/myproject/usage/tsconfig.json WatchType: Wild card directory +Info 9 [00:00:38.000] Plugins were requested but not running in environment that supports 'require'. Nothing will be loaded +Info 10 [00:00:39.000] Starting updateGraphWorker: Project: /user/username/projects/myproject/usage/tsconfig.json +Info 11 [00:00:40.000] Config: /user/username/projects/myproject/dependency/tsconfig.json : { "rootNames": [ "/user/username/projects/myproject/dependency/fns.ts" ], @@ -81,20 +81,20 @@ Info 11 [16:00:40.000] Config: /user/username/projects/myproject/dependency/ts "configFilePath": "/user/username/projects/myproject/dependency/tsconfig.json" } } -Info 12 [16:00:41.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/dependency/tsconfig.json 2000 undefined Project: /user/username/projects/myproject/usage/tsconfig.json WatchType: Config file -Info 13 [16:00:42.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/dependency 1 undefined Config: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Wild card directory -Info 14 [16:00:43.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/dependency 1 undefined Config: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Wild card directory -Info 15 [16:00:44.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/decls 1 undefined Project: /user/username/projects/myproject/usage/tsconfig.json WatchType: Failed Lookup Locations -Info 16 [16:00:45.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/decls 1 undefined Project: /user/username/projects/myproject/usage/tsconfig.json WatchType: Failed Lookup Locations -Info 17 [16:00:46.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/dependency/fns.ts 500 undefined WatchType: Closed Script info -Info 18 [16:00:47.000] FileWatcher:: Added:: WatchInfo: /a/lib/lib.d.ts 500 undefined WatchType: Closed Script info -Info 19 [16:00:48.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/usage/node_modules/@types 1 undefined Project: /user/username/projects/myproject/usage/tsconfig.json WatchType: Type roots -Info 20 [16:00:49.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/usage/node_modules/@types 1 undefined Project: /user/username/projects/myproject/usage/tsconfig.json WatchType: Type roots -Info 21 [16:00:50.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/usage/tsconfig.json WatchType: Type roots -Info 22 [16:00:51.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/usage/tsconfig.json WatchType: Type roots -Info 23 [16:00:52.000] Finishing updateGraphWorker: Project: /user/username/projects/myproject/usage/tsconfig.json Version: 1 structureChanged: true structureIsReused:: Not Elapsed:: *ms -Info 24 [16:00:53.000] Project '/user/username/projects/myproject/usage/tsconfig.json' (Configured) -Info 25 [16:00:54.000] Files (3) +Info 12 [00:00:41.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/dependency/tsconfig.json 2000 undefined Project: /user/username/projects/myproject/usage/tsconfig.json WatchType: Config file +Info 13 [00:00:42.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/dependency 1 undefined Config: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Wild card directory +Info 14 [00:00:43.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/dependency 1 undefined Config: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Wild card directory +Info 15 [00:00:44.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/decls 1 undefined Project: /user/username/projects/myproject/usage/tsconfig.json WatchType: Failed Lookup Locations +Info 16 [00:00:45.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/decls 1 undefined Project: /user/username/projects/myproject/usage/tsconfig.json WatchType: Failed Lookup Locations +Info 17 [00:00:46.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/dependency/fns.ts 500 undefined WatchType: Closed Script info +Info 18 [00:00:47.000] FileWatcher:: Added:: WatchInfo: /a/lib/lib.d.ts 500 undefined WatchType: Closed Script info +Info 19 [00:00:48.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/usage/node_modules/@types 1 undefined Project: /user/username/projects/myproject/usage/tsconfig.json WatchType: Type roots +Info 20 [00:00:49.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/usage/node_modules/@types 1 undefined Project: /user/username/projects/myproject/usage/tsconfig.json WatchType: Type roots +Info 21 [00:00:50.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/usage/tsconfig.json WatchType: Type roots +Info 22 [00:00:51.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/usage/tsconfig.json WatchType: Type roots +Info 23 [00:00:52.000] Finishing updateGraphWorker: Project: /user/username/projects/myproject/usage/tsconfig.json Version: 1 structureChanged: true structureIsReused:: Not Elapsed:: *ms +Info 24 [00:00:53.000] Project '/user/username/projects/myproject/usage/tsconfig.json' (Configured) +Info 25 [00:00:54.000] Files (3) /a/lib/lib.d.ts /user/username/projects/myproject/dependency/fns.ts /user/username/projects/myproject/usage/usage.ts @@ -107,14 +107,14 @@ Info 25 [16:00:54.000] Files (3) usage.ts Matched by default include pattern '**/*' -Info 26 [16:00:55.000] ----------------------------------------------- -Info 27 [16:00:56.000] Project '/user/username/projects/myproject/usage/tsconfig.json' (Configured) -Info 27 [16:00:57.000] Files (3) +Info 26 [00:00:55.000] ----------------------------------------------- +Info 27 [00:00:56.000] Project '/user/username/projects/myproject/usage/tsconfig.json' (Configured) +Info 27 [00:00:57.000] Files (3) -Info 27 [16:00:58.000] ----------------------------------------------- -Info 27 [16:00:59.000] Open files: -Info 27 [16:01:00.000] FileName: /user/username/projects/myproject/usage/usage.ts ProjectRootPath: undefined -Info 27 [16:01:01.000] Projects: /user/username/projects/myproject/usage/tsconfig.json +Info 27 [00:00:58.000] ----------------------------------------------- +Info 27 [00:00:59.000] Open files: +Info 27 [00:01:00.000] FileName: /user/username/projects/myproject/usage/usage.ts ProjectRootPath: undefined +Info 27 [00:01:01.000] Projects: /user/username/projects/myproject/usage/tsconfig.json After request PolledWatches:: @@ -141,11 +141,11 @@ FsWatchesRecursive:: /user/username/projects/myproject/dependency: {} -Info 27 [16:01:02.000] response: +Info 27 [00:01:02.000] response: { "responseRequired": false } -Info 28 [16:01:03.000] request: +Info 28 [00:01:03.000] request: { "command": "compileOnSaveAffectedFileList", "arguments": { @@ -180,22 +180,22 @@ FsWatchesRecursive:: /user/username/projects/myproject/dependency: {} -Info 29 [16:01:04.000] Before ensureProjectForOpenFiles: -Info 30 [16:01:05.000] Project '/user/username/projects/myproject/usage/tsconfig.json' (Configured) -Info 30 [16:01:06.000] Files (3) +Info 29 [00:01:04.000] Before ensureProjectForOpenFiles: +Info 30 [00:01:05.000] Project '/user/username/projects/myproject/usage/tsconfig.json' (Configured) +Info 30 [00:01:06.000] Files (3) -Info 30 [16:01:07.000] ----------------------------------------------- -Info 30 [16:01:08.000] Open files: -Info 30 [16:01:09.000] FileName: /user/username/projects/myproject/usage/usage.ts ProjectRootPath: undefined -Info 30 [16:01:10.000] Projects: /user/username/projects/myproject/usage/tsconfig.json -Info 30 [16:01:11.000] After ensureProjectForOpenFiles: -Info 31 [16:01:12.000] Project '/user/username/projects/myproject/usage/tsconfig.json' (Configured) -Info 31 [16:01:13.000] Files (3) +Info 30 [00:01:07.000] ----------------------------------------------- +Info 30 [00:01:08.000] Open files: +Info 30 [00:01:09.000] FileName: /user/username/projects/myproject/usage/usage.ts ProjectRootPath: undefined +Info 30 [00:01:10.000] Projects: /user/username/projects/myproject/usage/tsconfig.json +Info 30 [00:01:11.000] After ensureProjectForOpenFiles: +Info 31 [00:01:12.000] Project '/user/username/projects/myproject/usage/tsconfig.json' (Configured) +Info 31 [00:01:13.000] Files (3) -Info 31 [16:01:14.000] ----------------------------------------------- -Info 31 [16:01:15.000] Open files: -Info 31 [16:01:16.000] FileName: /user/username/projects/myproject/usage/usage.ts ProjectRootPath: undefined -Info 31 [16:01:17.000] Projects: /user/username/projects/myproject/usage/tsconfig.json +Info 31 [00:01:14.000] ----------------------------------------------- +Info 31 [00:01:15.000] Open files: +Info 31 [00:01:16.000] FileName: /user/username/projects/myproject/usage/usage.ts ProjectRootPath: undefined +Info 31 [00:01:17.000] Projects: /user/username/projects/myproject/usage/tsconfig.json After request PolledWatches:: @@ -222,7 +222,7 @@ FsWatchesRecursive:: /user/username/projects/myproject/dependency: {} -Info 31 [16:01:18.000] response: +Info 31 [00:01:18.000] response: { "response": [ { @@ -235,11 +235,11 @@ Info 31 [16:01:18.000] response: ], "responseRequired": true } -Info 32 [16:01:22.000] FileWatcher:: Triggered with /user/username/projects/myproject/dependency/fns.ts 1:: WatchInfo: /user/username/projects/myproject/dependency/fns.ts 500 undefined WatchType: Closed Script info -Info 33 [16:01:23.000] Scheduled: /user/username/projects/myproject/usage/tsconfig.json -Info 34 [16:01:24.000] Scheduled: *ensureProjectForOpenFiles* -Info 35 [16:01:25.000] Elapsed:: *ms FileWatcher:: Triggered with /user/username/projects/myproject/dependency/fns.ts 1:: WatchInfo: /user/username/projects/myproject/dependency/fns.ts 500 undefined WatchType: Closed Script info -Info 36 [16:01:26.000] request: +Info 32 [00:01:22.000] FileWatcher:: Triggered with /user/username/projects/myproject/dependency/fns.ts 1:: WatchInfo: /user/username/projects/myproject/dependency/fns.ts 500 undefined WatchType: Closed Script info +Info 33 [00:01:23.000] Scheduled: /user/username/projects/myproject/usage/tsconfig.json +Info 34 [00:01:24.000] Scheduled: *ensureProjectForOpenFiles* +Info 35 [00:01:25.000] Elapsed:: *ms FileWatcher:: Triggered with /user/username/projects/myproject/dependency/fns.ts 1:: WatchInfo: /user/username/projects/myproject/dependency/fns.ts 500 undefined WatchType: Closed Script info +Info 36 [00:01:26.000] request: { "command": "compileOnSaveAffectedFileList", "arguments": { @@ -280,9 +280,9 @@ FsWatchesRecursive:: /user/username/projects/myproject/dependency: {} -Info 37 [16:01:27.000] Starting updateGraphWorker: Project: /user/username/projects/myproject/usage/tsconfig.json -Info 38 [16:01:28.000] Finishing updateGraphWorker: Project: /user/username/projects/myproject/usage/tsconfig.json Version: 2 structureChanged: false structureIsReused:: Completely Elapsed:: *ms -Info 39 [16:01:29.000] Different program with same set of files +Info 37 [00:01:27.000] Starting updateGraphWorker: Project: /user/username/projects/myproject/usage/tsconfig.json +Info 38 [00:01:28.000] Finishing updateGraphWorker: Project: /user/username/projects/myproject/usage/tsconfig.json Version: 2 structureChanged: false structureIsReused:: Completely Elapsed:: *ms +Info 39 [00:01:29.000] Different program with same set of files After request PolledWatches:: @@ -309,7 +309,7 @@ FsWatchesRecursive:: /user/username/projects/myproject/dependency: {} -Info 40 [16:01:30.000] response: +Info 40 [00:01:30.000] response: { "response": [ { @@ -320,7 +320,7 @@ Info 40 [16:01:30.000] response: ], "responseRequired": true } -Info 41 [16:01:31.000] request: +Info 41 [00:01:31.000] request: { "command": "compileOnSaveEmitFile", "arguments": { @@ -382,12 +382,12 @@ FsWatchesRecursive:: /user/username/projects/myproject/dependency: {} -Info 42 [16:01:32.000] response: +Info 42 [00:01:32.000] response: { "response": false, "responseRequired": true } -Info 43 [16:01:33.000] request: +Info 43 [00:01:33.000] request: { "command": "emit-output", "arguments": { @@ -449,7 +449,7 @@ FsWatchesRecursive:: /user/username/projects/myproject/dependency: {} -Info 44 [16:01:34.000] response: +Info 44 [00:01:34.000] response: { "response": { "emitSkipped": true, diff --git a/tests/baselines/reference/tsserver/projectReferenceCompileOnSave/when-dependency-project-is-not-open-and-save-on-dependency-with-project-and-local-change-to-usage.js b/tests/baselines/reference/tsserver/projectReferenceCompileOnSave/when-dependency-project-is-not-open-and-save-on-dependency-with-project-and-local-change-to-usage.js index 81d59908b72a3..3290e1c85a780 100644 --- a/tests/baselines/reference/tsserver/projectReferenceCompileOnSave/when-dependency-project-is-not-open-and-save-on-dependency-with-project-and-local-change-to-usage.js +++ b/tests/baselines/reference/tsserver/projectReferenceCompileOnSave/when-dependency-project-is-not-open-and-save-on-dependency-with-project-and-local-change-to-usage.js @@ -1,5 +1,5 @@ -Info 0 [16:00:29.000] Provided types map file "/a/lib/typesMap.json" doesn't exist -Info 1 [16:00:30.000] request: +Info 0 [00:00:29.000] Provided types map file "/a/lib/typesMap.json" doesn't exist +Info 1 [00:00:30.000] request: { "seq": 0, "type": "request", @@ -49,11 +49,11 @@ FsWatches:: FsWatchesRecursive:: -Info 2 [16:00:31.000] Search path: /user/username/projects/myproject/usage -Info 3 [16:00:32.000] For info: /user/username/projects/myproject/usage/usage.ts :: Config file name: /user/username/projects/myproject/usage/tsconfig.json -Info 4 [16:00:33.000] Creating configuration project /user/username/projects/myproject/usage/tsconfig.json -Info 5 [16:00:34.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/usage/tsconfig.json 2000 undefined Project: /user/username/projects/myproject/usage/tsconfig.json WatchType: Config file -Info 6 [16:00:35.000] Config: /user/username/projects/myproject/usage/tsconfig.json : { +Info 2 [00:00:31.000] Search path: /user/username/projects/myproject/usage +Info 3 [00:00:32.000] For info: /user/username/projects/myproject/usage/usage.ts :: Config file name: /user/username/projects/myproject/usage/tsconfig.json +Info 4 [00:00:33.000] Creating configuration project /user/username/projects/myproject/usage/tsconfig.json +Info 5 [00:00:34.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/usage/tsconfig.json 2000 undefined Project: /user/username/projects/myproject/usage/tsconfig.json WatchType: Config file +Info 6 [00:00:35.000] Config: /user/username/projects/myproject/usage/tsconfig.json : { "rootNames": [ "/user/username/projects/myproject/usage/usage.ts" ], @@ -67,11 +67,11 @@ Info 6 [16:00:35.000] Config: /user/username/projects/myproject/usage/tsconfi } ] } -Info 7 [16:00:36.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/usage 1 undefined Config: /user/username/projects/myproject/usage/tsconfig.json WatchType: Wild card directory -Info 8 [16:00:37.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/usage 1 undefined Config: /user/username/projects/myproject/usage/tsconfig.json WatchType: Wild card directory -Info 9 [16:00:38.000] Plugins were requested but not running in environment that supports 'require'. Nothing will be loaded -Info 10 [16:00:39.000] Starting updateGraphWorker: Project: /user/username/projects/myproject/usage/tsconfig.json -Info 11 [16:00:40.000] Config: /user/username/projects/myproject/dependency/tsconfig.json : { +Info 7 [00:00:36.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/usage 1 undefined Config: /user/username/projects/myproject/usage/tsconfig.json WatchType: Wild card directory +Info 8 [00:00:37.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/usage 1 undefined Config: /user/username/projects/myproject/usage/tsconfig.json WatchType: Wild card directory +Info 9 [00:00:38.000] Plugins were requested but not running in environment that supports 'require'. Nothing will be loaded +Info 10 [00:00:39.000] Starting updateGraphWorker: Project: /user/username/projects/myproject/usage/tsconfig.json +Info 11 [00:00:40.000] Config: /user/username/projects/myproject/dependency/tsconfig.json : { "rootNames": [ "/user/username/projects/myproject/dependency/fns.ts" ], @@ -81,20 +81,20 @@ Info 11 [16:00:40.000] Config: /user/username/projects/myproject/dependency/ts "configFilePath": "/user/username/projects/myproject/dependency/tsconfig.json" } } -Info 12 [16:00:41.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/dependency/tsconfig.json 2000 undefined Project: /user/username/projects/myproject/usage/tsconfig.json WatchType: Config file -Info 13 [16:00:42.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/dependency 1 undefined Config: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Wild card directory -Info 14 [16:00:43.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/dependency 1 undefined Config: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Wild card directory -Info 15 [16:00:44.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/decls 1 undefined Project: /user/username/projects/myproject/usage/tsconfig.json WatchType: Failed Lookup Locations -Info 16 [16:00:45.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/decls 1 undefined Project: /user/username/projects/myproject/usage/tsconfig.json WatchType: Failed Lookup Locations -Info 17 [16:00:46.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/dependency/fns.ts 500 undefined WatchType: Closed Script info -Info 18 [16:00:47.000] FileWatcher:: Added:: WatchInfo: /a/lib/lib.d.ts 500 undefined WatchType: Closed Script info -Info 19 [16:00:48.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/usage/node_modules/@types 1 undefined Project: /user/username/projects/myproject/usage/tsconfig.json WatchType: Type roots -Info 20 [16:00:49.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/usage/node_modules/@types 1 undefined Project: /user/username/projects/myproject/usage/tsconfig.json WatchType: Type roots -Info 21 [16:00:50.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/usage/tsconfig.json WatchType: Type roots -Info 22 [16:00:51.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/usage/tsconfig.json WatchType: Type roots -Info 23 [16:00:52.000] Finishing updateGraphWorker: Project: /user/username/projects/myproject/usage/tsconfig.json Version: 1 structureChanged: true structureIsReused:: Not Elapsed:: *ms -Info 24 [16:00:53.000] Project '/user/username/projects/myproject/usage/tsconfig.json' (Configured) -Info 25 [16:00:54.000] Files (3) +Info 12 [00:00:41.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/dependency/tsconfig.json 2000 undefined Project: /user/username/projects/myproject/usage/tsconfig.json WatchType: Config file +Info 13 [00:00:42.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/dependency 1 undefined Config: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Wild card directory +Info 14 [00:00:43.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/dependency 1 undefined Config: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Wild card directory +Info 15 [00:00:44.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/decls 1 undefined Project: /user/username/projects/myproject/usage/tsconfig.json WatchType: Failed Lookup Locations +Info 16 [00:00:45.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/decls 1 undefined Project: /user/username/projects/myproject/usage/tsconfig.json WatchType: Failed Lookup Locations +Info 17 [00:00:46.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/dependency/fns.ts 500 undefined WatchType: Closed Script info +Info 18 [00:00:47.000] FileWatcher:: Added:: WatchInfo: /a/lib/lib.d.ts 500 undefined WatchType: Closed Script info +Info 19 [00:00:48.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/usage/node_modules/@types 1 undefined Project: /user/username/projects/myproject/usage/tsconfig.json WatchType: Type roots +Info 20 [00:00:49.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/usage/node_modules/@types 1 undefined Project: /user/username/projects/myproject/usage/tsconfig.json WatchType: Type roots +Info 21 [00:00:50.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/usage/tsconfig.json WatchType: Type roots +Info 22 [00:00:51.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/usage/tsconfig.json WatchType: Type roots +Info 23 [00:00:52.000] Finishing updateGraphWorker: Project: /user/username/projects/myproject/usage/tsconfig.json Version: 1 structureChanged: true structureIsReused:: Not Elapsed:: *ms +Info 24 [00:00:53.000] Project '/user/username/projects/myproject/usage/tsconfig.json' (Configured) +Info 25 [00:00:54.000] Files (3) /a/lib/lib.d.ts /user/username/projects/myproject/dependency/fns.ts /user/username/projects/myproject/usage/usage.ts @@ -107,14 +107,14 @@ Info 25 [16:00:54.000] Files (3) usage.ts Matched by default include pattern '**/*' -Info 26 [16:00:55.000] ----------------------------------------------- -Info 27 [16:00:56.000] Project '/user/username/projects/myproject/usage/tsconfig.json' (Configured) -Info 27 [16:00:57.000] Files (3) +Info 26 [00:00:55.000] ----------------------------------------------- +Info 27 [00:00:56.000] Project '/user/username/projects/myproject/usage/tsconfig.json' (Configured) +Info 27 [00:00:57.000] Files (3) -Info 27 [16:00:58.000] ----------------------------------------------- -Info 27 [16:00:59.000] Open files: -Info 27 [16:01:00.000] FileName: /user/username/projects/myproject/usage/usage.ts ProjectRootPath: undefined -Info 27 [16:01:01.000] Projects: /user/username/projects/myproject/usage/tsconfig.json +Info 27 [00:00:58.000] ----------------------------------------------- +Info 27 [00:00:59.000] Open files: +Info 27 [00:01:00.000] FileName: /user/username/projects/myproject/usage/usage.ts ProjectRootPath: undefined +Info 27 [00:01:01.000] Projects: /user/username/projects/myproject/usage/tsconfig.json After request PolledWatches:: @@ -141,11 +141,11 @@ FsWatchesRecursive:: /user/username/projects/myproject/dependency: {} -Info 27 [16:01:02.000] response: +Info 27 [00:01:02.000] response: { "responseRequired": false } -Info 28 [16:01:03.000] request: +Info 28 [00:01:03.000] request: { "command": "compileOnSaveAffectedFileList", "arguments": { @@ -180,22 +180,22 @@ FsWatchesRecursive:: /user/username/projects/myproject/dependency: {} -Info 29 [16:01:04.000] Before ensureProjectForOpenFiles: -Info 30 [16:01:05.000] Project '/user/username/projects/myproject/usage/tsconfig.json' (Configured) -Info 30 [16:01:06.000] Files (3) +Info 29 [00:01:04.000] Before ensureProjectForOpenFiles: +Info 30 [00:01:05.000] Project '/user/username/projects/myproject/usage/tsconfig.json' (Configured) +Info 30 [00:01:06.000] Files (3) -Info 30 [16:01:07.000] ----------------------------------------------- -Info 30 [16:01:08.000] Open files: -Info 30 [16:01:09.000] FileName: /user/username/projects/myproject/usage/usage.ts ProjectRootPath: undefined -Info 30 [16:01:10.000] Projects: /user/username/projects/myproject/usage/tsconfig.json -Info 30 [16:01:11.000] After ensureProjectForOpenFiles: -Info 31 [16:01:12.000] Project '/user/username/projects/myproject/usage/tsconfig.json' (Configured) -Info 31 [16:01:13.000] Files (3) +Info 30 [00:01:07.000] ----------------------------------------------- +Info 30 [00:01:08.000] Open files: +Info 30 [00:01:09.000] FileName: /user/username/projects/myproject/usage/usage.ts ProjectRootPath: undefined +Info 30 [00:01:10.000] Projects: /user/username/projects/myproject/usage/tsconfig.json +Info 30 [00:01:11.000] After ensureProjectForOpenFiles: +Info 31 [00:01:12.000] Project '/user/username/projects/myproject/usage/tsconfig.json' (Configured) +Info 31 [00:01:13.000] Files (3) -Info 31 [16:01:14.000] ----------------------------------------------- -Info 31 [16:01:15.000] Open files: -Info 31 [16:01:16.000] FileName: /user/username/projects/myproject/usage/usage.ts ProjectRootPath: undefined -Info 31 [16:01:17.000] Projects: /user/username/projects/myproject/usage/tsconfig.json +Info 31 [00:01:14.000] ----------------------------------------------- +Info 31 [00:01:15.000] Open files: +Info 31 [00:01:16.000] FileName: /user/username/projects/myproject/usage/usage.ts ProjectRootPath: undefined +Info 31 [00:01:17.000] Projects: /user/username/projects/myproject/usage/tsconfig.json After request PolledWatches:: @@ -222,7 +222,7 @@ FsWatchesRecursive:: /user/username/projects/myproject/dependency: {} -Info 31 [16:01:18.000] response: +Info 31 [00:01:18.000] response: { "response": [ { @@ -235,7 +235,7 @@ Info 31 [16:01:18.000] response: ], "responseRequired": true } -Info 32 [16:01:19.000] request: +Info 32 [00:01:19.000] request: { "command": "change", "arguments": { @@ -301,11 +301,11 @@ FsWatchesRecursive:: /user/username/projects/myproject/dependency: {} -Info 33 [16:01:20.000] response: +Info 33 [00:01:20.000] response: { "responseRequired": false } -Info 34 [16:01:21.000] request: +Info 34 [00:01:21.000] request: { "command": "compileOnSaveAffectedFileList", "arguments": { @@ -341,9 +341,9 @@ FsWatchesRecursive:: /user/username/projects/myproject/dependency: {} -Info 35 [16:01:22.000] Starting updateGraphWorker: Project: /user/username/projects/myproject/usage/tsconfig.json -Info 36 [16:01:23.000] Finishing updateGraphWorker: Project: /user/username/projects/myproject/usage/tsconfig.json Version: 2 structureChanged: false structureIsReused:: Completely Elapsed:: *ms -Info 37 [16:01:24.000] Different program with same set of files +Info 35 [00:01:22.000] Starting updateGraphWorker: Project: /user/username/projects/myproject/usage/tsconfig.json +Info 36 [00:01:23.000] Finishing updateGraphWorker: Project: /user/username/projects/myproject/usage/tsconfig.json Version: 2 structureChanged: false structureIsReused:: Completely Elapsed:: *ms +Info 37 [00:01:24.000] Different program with same set of files After request PolledWatches:: @@ -370,7 +370,7 @@ FsWatchesRecursive:: /user/username/projects/myproject/dependency: {} -Info 38 [16:01:25.000] response: +Info 38 [00:01:25.000] response: { "response": [ { @@ -381,7 +381,7 @@ Info 38 [16:01:25.000] response: ], "responseRequired": true } -Info 39 [16:01:26.000] request: +Info 39 [00:01:26.000] request: { "command": "compileOnSaveEmitFile", "arguments": { @@ -443,12 +443,12 @@ FsWatchesRecursive:: /user/username/projects/myproject/dependency: {} -Info 40 [16:01:27.000] response: +Info 40 [00:01:27.000] response: { "response": false, "responseRequired": true } -Info 41 [16:01:28.000] request: +Info 41 [00:01:28.000] request: { "command": "emit-output", "arguments": { @@ -510,7 +510,7 @@ FsWatchesRecursive:: /user/username/projects/myproject/dependency: {} -Info 42 [16:01:29.000] response: +Info 42 [00:01:29.000] response: { "response": { "emitSkipped": true, diff --git a/tests/baselines/reference/tsserver/projectReferenceCompileOnSave/when-dependency-project-is-not-open-and-save-on-dependency-with-project.js b/tests/baselines/reference/tsserver/projectReferenceCompileOnSave/when-dependency-project-is-not-open-and-save-on-dependency-with-project.js index 1de8455ef17fc..916386187ff24 100644 --- a/tests/baselines/reference/tsserver/projectReferenceCompileOnSave/when-dependency-project-is-not-open-and-save-on-dependency-with-project.js +++ b/tests/baselines/reference/tsserver/projectReferenceCompileOnSave/when-dependency-project-is-not-open-and-save-on-dependency-with-project.js @@ -1,5 +1,5 @@ -Info 0 [16:00:29.000] Provided types map file "/a/lib/typesMap.json" doesn't exist -Info 1 [16:00:30.000] request: +Info 0 [00:00:29.000] Provided types map file "/a/lib/typesMap.json" doesn't exist +Info 1 [00:00:30.000] request: { "seq": 0, "type": "request", @@ -49,11 +49,11 @@ FsWatches:: FsWatchesRecursive:: -Info 2 [16:00:31.000] Search path: /user/username/projects/myproject/usage -Info 3 [16:00:32.000] For info: /user/username/projects/myproject/usage/usage.ts :: Config file name: /user/username/projects/myproject/usage/tsconfig.json -Info 4 [16:00:33.000] Creating configuration project /user/username/projects/myproject/usage/tsconfig.json -Info 5 [16:00:34.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/usage/tsconfig.json 2000 undefined Project: /user/username/projects/myproject/usage/tsconfig.json WatchType: Config file -Info 6 [16:00:35.000] Config: /user/username/projects/myproject/usage/tsconfig.json : { +Info 2 [00:00:31.000] Search path: /user/username/projects/myproject/usage +Info 3 [00:00:32.000] For info: /user/username/projects/myproject/usage/usage.ts :: Config file name: /user/username/projects/myproject/usage/tsconfig.json +Info 4 [00:00:33.000] Creating configuration project /user/username/projects/myproject/usage/tsconfig.json +Info 5 [00:00:34.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/usage/tsconfig.json 2000 undefined Project: /user/username/projects/myproject/usage/tsconfig.json WatchType: Config file +Info 6 [00:00:35.000] Config: /user/username/projects/myproject/usage/tsconfig.json : { "rootNames": [ "/user/username/projects/myproject/usage/usage.ts" ], @@ -67,11 +67,11 @@ Info 6 [16:00:35.000] Config: /user/username/projects/myproject/usage/tsconfi } ] } -Info 7 [16:00:36.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/usage 1 undefined Config: /user/username/projects/myproject/usage/tsconfig.json WatchType: Wild card directory -Info 8 [16:00:37.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/usage 1 undefined Config: /user/username/projects/myproject/usage/tsconfig.json WatchType: Wild card directory -Info 9 [16:00:38.000] Plugins were requested but not running in environment that supports 'require'. Nothing will be loaded -Info 10 [16:00:39.000] Starting updateGraphWorker: Project: /user/username/projects/myproject/usage/tsconfig.json -Info 11 [16:00:40.000] Config: /user/username/projects/myproject/dependency/tsconfig.json : { +Info 7 [00:00:36.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/usage 1 undefined Config: /user/username/projects/myproject/usage/tsconfig.json WatchType: Wild card directory +Info 8 [00:00:37.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/usage 1 undefined Config: /user/username/projects/myproject/usage/tsconfig.json WatchType: Wild card directory +Info 9 [00:00:38.000] Plugins were requested but not running in environment that supports 'require'. Nothing will be loaded +Info 10 [00:00:39.000] Starting updateGraphWorker: Project: /user/username/projects/myproject/usage/tsconfig.json +Info 11 [00:00:40.000] Config: /user/username/projects/myproject/dependency/tsconfig.json : { "rootNames": [ "/user/username/projects/myproject/dependency/fns.ts" ], @@ -81,20 +81,20 @@ Info 11 [16:00:40.000] Config: /user/username/projects/myproject/dependency/ts "configFilePath": "/user/username/projects/myproject/dependency/tsconfig.json" } } -Info 12 [16:00:41.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/dependency/tsconfig.json 2000 undefined Project: /user/username/projects/myproject/usage/tsconfig.json WatchType: Config file -Info 13 [16:00:42.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/dependency 1 undefined Config: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Wild card directory -Info 14 [16:00:43.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/dependency 1 undefined Config: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Wild card directory -Info 15 [16:00:44.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/decls 1 undefined Project: /user/username/projects/myproject/usage/tsconfig.json WatchType: Failed Lookup Locations -Info 16 [16:00:45.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/decls 1 undefined Project: /user/username/projects/myproject/usage/tsconfig.json WatchType: Failed Lookup Locations -Info 17 [16:00:46.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/dependency/fns.ts 500 undefined WatchType: Closed Script info -Info 18 [16:00:47.000] FileWatcher:: Added:: WatchInfo: /a/lib/lib.d.ts 500 undefined WatchType: Closed Script info -Info 19 [16:00:48.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/usage/node_modules/@types 1 undefined Project: /user/username/projects/myproject/usage/tsconfig.json WatchType: Type roots -Info 20 [16:00:49.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/usage/node_modules/@types 1 undefined Project: /user/username/projects/myproject/usage/tsconfig.json WatchType: Type roots -Info 21 [16:00:50.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/usage/tsconfig.json WatchType: Type roots -Info 22 [16:00:51.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/usage/tsconfig.json WatchType: Type roots -Info 23 [16:00:52.000] Finishing updateGraphWorker: Project: /user/username/projects/myproject/usage/tsconfig.json Version: 1 structureChanged: true structureIsReused:: Not Elapsed:: *ms -Info 24 [16:00:53.000] Project '/user/username/projects/myproject/usage/tsconfig.json' (Configured) -Info 25 [16:00:54.000] Files (3) +Info 12 [00:00:41.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/dependency/tsconfig.json 2000 undefined Project: /user/username/projects/myproject/usage/tsconfig.json WatchType: Config file +Info 13 [00:00:42.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/dependency 1 undefined Config: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Wild card directory +Info 14 [00:00:43.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/dependency 1 undefined Config: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Wild card directory +Info 15 [00:00:44.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/decls 1 undefined Project: /user/username/projects/myproject/usage/tsconfig.json WatchType: Failed Lookup Locations +Info 16 [00:00:45.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/decls 1 undefined Project: /user/username/projects/myproject/usage/tsconfig.json WatchType: Failed Lookup Locations +Info 17 [00:00:46.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/dependency/fns.ts 500 undefined WatchType: Closed Script info +Info 18 [00:00:47.000] FileWatcher:: Added:: WatchInfo: /a/lib/lib.d.ts 500 undefined WatchType: Closed Script info +Info 19 [00:00:48.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/usage/node_modules/@types 1 undefined Project: /user/username/projects/myproject/usage/tsconfig.json WatchType: Type roots +Info 20 [00:00:49.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/usage/node_modules/@types 1 undefined Project: /user/username/projects/myproject/usage/tsconfig.json WatchType: Type roots +Info 21 [00:00:50.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/usage/tsconfig.json WatchType: Type roots +Info 22 [00:00:51.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/usage/tsconfig.json WatchType: Type roots +Info 23 [00:00:52.000] Finishing updateGraphWorker: Project: /user/username/projects/myproject/usage/tsconfig.json Version: 1 structureChanged: true structureIsReused:: Not Elapsed:: *ms +Info 24 [00:00:53.000] Project '/user/username/projects/myproject/usage/tsconfig.json' (Configured) +Info 25 [00:00:54.000] Files (3) /a/lib/lib.d.ts /user/username/projects/myproject/dependency/fns.ts /user/username/projects/myproject/usage/usage.ts @@ -107,14 +107,14 @@ Info 25 [16:00:54.000] Files (3) usage.ts Matched by default include pattern '**/*' -Info 26 [16:00:55.000] ----------------------------------------------- -Info 27 [16:00:56.000] Project '/user/username/projects/myproject/usage/tsconfig.json' (Configured) -Info 27 [16:00:57.000] Files (3) +Info 26 [00:00:55.000] ----------------------------------------------- +Info 27 [00:00:56.000] Project '/user/username/projects/myproject/usage/tsconfig.json' (Configured) +Info 27 [00:00:57.000] Files (3) -Info 27 [16:00:58.000] ----------------------------------------------- -Info 27 [16:00:59.000] Open files: -Info 27 [16:01:00.000] FileName: /user/username/projects/myproject/usage/usage.ts ProjectRootPath: undefined -Info 27 [16:01:01.000] Projects: /user/username/projects/myproject/usage/tsconfig.json +Info 27 [00:00:58.000] ----------------------------------------------- +Info 27 [00:00:59.000] Open files: +Info 27 [00:01:00.000] FileName: /user/username/projects/myproject/usage/usage.ts ProjectRootPath: undefined +Info 27 [00:01:01.000] Projects: /user/username/projects/myproject/usage/tsconfig.json After request PolledWatches:: @@ -141,11 +141,11 @@ FsWatchesRecursive:: /user/username/projects/myproject/dependency: {} -Info 27 [16:01:02.000] response: +Info 27 [00:01:02.000] response: { "responseRequired": false } -Info 28 [16:01:03.000] request: +Info 28 [00:01:03.000] request: { "command": "compileOnSaveAffectedFileList", "arguments": { @@ -207,7 +207,7 @@ FsWatchesRecursive:: /user/username/projects/myproject/dependency: {} -Info 29 [16:01:04.000] response: +Info 29 [00:01:04.000] response: { "response": [ { @@ -220,7 +220,7 @@ Info 29 [16:01:04.000] response: ], "responseRequired": true } -Info 30 [16:01:05.000] request: +Info 30 [00:01:05.000] request: { "command": "compileOnSaveEmitFile", "arguments": { @@ -282,12 +282,12 @@ FsWatchesRecursive:: /user/username/projects/myproject/dependency: {} -Info 31 [16:01:06.000] response: +Info 31 [00:01:06.000] response: { "response": false, "responseRequired": true } -Info 32 [16:01:07.000] request: +Info 32 [00:01:07.000] request: { "command": "emit-output", "arguments": { @@ -349,7 +349,7 @@ FsWatchesRecursive:: /user/username/projects/myproject/dependency: {} -Info 33 [16:01:08.000] response: +Info 33 [00:01:08.000] response: { "response": { "emitSkipped": true, diff --git a/tests/baselines/reference/tsserver/projectReferenceCompileOnSave/when-dependency-project-is-not-open-and-save-on-dependency.js b/tests/baselines/reference/tsserver/projectReferenceCompileOnSave/when-dependency-project-is-not-open-and-save-on-dependency.js index 0ccc6871a4a27..ad785ce6259c2 100644 --- a/tests/baselines/reference/tsserver/projectReferenceCompileOnSave/when-dependency-project-is-not-open-and-save-on-dependency.js +++ b/tests/baselines/reference/tsserver/projectReferenceCompileOnSave/when-dependency-project-is-not-open-and-save-on-dependency.js @@ -1,5 +1,5 @@ -Info 0 [16:00:29.000] Provided types map file "/a/lib/typesMap.json" doesn't exist -Info 1 [16:00:30.000] request: +Info 0 [00:00:29.000] Provided types map file "/a/lib/typesMap.json" doesn't exist +Info 1 [00:00:30.000] request: { "seq": 0, "type": "request", @@ -49,11 +49,11 @@ FsWatches:: FsWatchesRecursive:: -Info 2 [16:00:31.000] Search path: /user/username/projects/myproject/usage -Info 3 [16:00:32.000] For info: /user/username/projects/myproject/usage/usage.ts :: Config file name: /user/username/projects/myproject/usage/tsconfig.json -Info 4 [16:00:33.000] Creating configuration project /user/username/projects/myproject/usage/tsconfig.json -Info 5 [16:00:34.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/usage/tsconfig.json 2000 undefined Project: /user/username/projects/myproject/usage/tsconfig.json WatchType: Config file -Info 6 [16:00:35.000] Config: /user/username/projects/myproject/usage/tsconfig.json : { +Info 2 [00:00:31.000] Search path: /user/username/projects/myproject/usage +Info 3 [00:00:32.000] For info: /user/username/projects/myproject/usage/usage.ts :: Config file name: /user/username/projects/myproject/usage/tsconfig.json +Info 4 [00:00:33.000] Creating configuration project /user/username/projects/myproject/usage/tsconfig.json +Info 5 [00:00:34.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/usage/tsconfig.json 2000 undefined Project: /user/username/projects/myproject/usage/tsconfig.json WatchType: Config file +Info 6 [00:00:35.000] Config: /user/username/projects/myproject/usage/tsconfig.json : { "rootNames": [ "/user/username/projects/myproject/usage/usage.ts" ], @@ -67,11 +67,11 @@ Info 6 [16:00:35.000] Config: /user/username/projects/myproject/usage/tsconfi } ] } -Info 7 [16:00:36.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/usage 1 undefined Config: /user/username/projects/myproject/usage/tsconfig.json WatchType: Wild card directory -Info 8 [16:00:37.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/usage 1 undefined Config: /user/username/projects/myproject/usage/tsconfig.json WatchType: Wild card directory -Info 9 [16:00:38.000] Plugins were requested but not running in environment that supports 'require'. Nothing will be loaded -Info 10 [16:00:39.000] Starting updateGraphWorker: Project: /user/username/projects/myproject/usage/tsconfig.json -Info 11 [16:00:40.000] Config: /user/username/projects/myproject/dependency/tsconfig.json : { +Info 7 [00:00:36.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/usage 1 undefined Config: /user/username/projects/myproject/usage/tsconfig.json WatchType: Wild card directory +Info 8 [00:00:37.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/usage 1 undefined Config: /user/username/projects/myproject/usage/tsconfig.json WatchType: Wild card directory +Info 9 [00:00:38.000] Plugins were requested but not running in environment that supports 'require'. Nothing will be loaded +Info 10 [00:00:39.000] Starting updateGraphWorker: Project: /user/username/projects/myproject/usage/tsconfig.json +Info 11 [00:00:40.000] Config: /user/username/projects/myproject/dependency/tsconfig.json : { "rootNames": [ "/user/username/projects/myproject/dependency/fns.ts" ], @@ -81,20 +81,20 @@ Info 11 [16:00:40.000] Config: /user/username/projects/myproject/dependency/ts "configFilePath": "/user/username/projects/myproject/dependency/tsconfig.json" } } -Info 12 [16:00:41.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/dependency/tsconfig.json 2000 undefined Project: /user/username/projects/myproject/usage/tsconfig.json WatchType: Config file -Info 13 [16:00:42.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/dependency 1 undefined Config: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Wild card directory -Info 14 [16:00:43.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/dependency 1 undefined Config: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Wild card directory -Info 15 [16:00:44.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/decls 1 undefined Project: /user/username/projects/myproject/usage/tsconfig.json WatchType: Failed Lookup Locations -Info 16 [16:00:45.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/decls 1 undefined Project: /user/username/projects/myproject/usage/tsconfig.json WatchType: Failed Lookup Locations -Info 17 [16:00:46.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/dependency/fns.ts 500 undefined WatchType: Closed Script info -Info 18 [16:00:47.000] FileWatcher:: Added:: WatchInfo: /a/lib/lib.d.ts 500 undefined WatchType: Closed Script info -Info 19 [16:00:48.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/usage/node_modules/@types 1 undefined Project: /user/username/projects/myproject/usage/tsconfig.json WatchType: Type roots -Info 20 [16:00:49.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/usage/node_modules/@types 1 undefined Project: /user/username/projects/myproject/usage/tsconfig.json WatchType: Type roots -Info 21 [16:00:50.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/usage/tsconfig.json WatchType: Type roots -Info 22 [16:00:51.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/usage/tsconfig.json WatchType: Type roots -Info 23 [16:00:52.000] Finishing updateGraphWorker: Project: /user/username/projects/myproject/usage/tsconfig.json Version: 1 structureChanged: true structureIsReused:: Not Elapsed:: *ms -Info 24 [16:00:53.000] Project '/user/username/projects/myproject/usage/tsconfig.json' (Configured) -Info 25 [16:00:54.000] Files (3) +Info 12 [00:00:41.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/dependency/tsconfig.json 2000 undefined Project: /user/username/projects/myproject/usage/tsconfig.json WatchType: Config file +Info 13 [00:00:42.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/dependency 1 undefined Config: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Wild card directory +Info 14 [00:00:43.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/dependency 1 undefined Config: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Wild card directory +Info 15 [00:00:44.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/decls 1 undefined Project: /user/username/projects/myproject/usage/tsconfig.json WatchType: Failed Lookup Locations +Info 16 [00:00:45.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/decls 1 undefined Project: /user/username/projects/myproject/usage/tsconfig.json WatchType: Failed Lookup Locations +Info 17 [00:00:46.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/dependency/fns.ts 500 undefined WatchType: Closed Script info +Info 18 [00:00:47.000] FileWatcher:: Added:: WatchInfo: /a/lib/lib.d.ts 500 undefined WatchType: Closed Script info +Info 19 [00:00:48.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/usage/node_modules/@types 1 undefined Project: /user/username/projects/myproject/usage/tsconfig.json WatchType: Type roots +Info 20 [00:00:49.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/usage/node_modules/@types 1 undefined Project: /user/username/projects/myproject/usage/tsconfig.json WatchType: Type roots +Info 21 [00:00:50.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/usage/tsconfig.json WatchType: Type roots +Info 22 [00:00:51.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/usage/tsconfig.json WatchType: Type roots +Info 23 [00:00:52.000] Finishing updateGraphWorker: Project: /user/username/projects/myproject/usage/tsconfig.json Version: 1 structureChanged: true structureIsReused:: Not Elapsed:: *ms +Info 24 [00:00:53.000] Project '/user/username/projects/myproject/usage/tsconfig.json' (Configured) +Info 25 [00:00:54.000] Files (3) /a/lib/lib.d.ts /user/username/projects/myproject/dependency/fns.ts /user/username/projects/myproject/usage/usage.ts @@ -107,14 +107,14 @@ Info 25 [16:00:54.000] Files (3) usage.ts Matched by default include pattern '**/*' -Info 26 [16:00:55.000] ----------------------------------------------- -Info 27 [16:00:56.000] Project '/user/username/projects/myproject/usage/tsconfig.json' (Configured) -Info 27 [16:00:57.000] Files (3) +Info 26 [00:00:55.000] ----------------------------------------------- +Info 27 [00:00:56.000] Project '/user/username/projects/myproject/usage/tsconfig.json' (Configured) +Info 27 [00:00:57.000] Files (3) -Info 27 [16:00:58.000] ----------------------------------------------- -Info 27 [16:00:59.000] Open files: -Info 27 [16:01:00.000] FileName: /user/username/projects/myproject/usage/usage.ts ProjectRootPath: undefined -Info 27 [16:01:01.000] Projects: /user/username/projects/myproject/usage/tsconfig.json +Info 27 [00:00:58.000] ----------------------------------------------- +Info 27 [00:00:59.000] Open files: +Info 27 [00:01:00.000] FileName: /user/username/projects/myproject/usage/usage.ts ProjectRootPath: undefined +Info 27 [00:01:01.000] Projects: /user/username/projects/myproject/usage/tsconfig.json After request PolledWatches:: @@ -141,11 +141,11 @@ FsWatchesRecursive:: /user/username/projects/myproject/dependency: {} -Info 27 [16:01:02.000] response: +Info 27 [00:01:02.000] response: { "responseRequired": false } -Info 28 [16:01:03.000] request: +Info 28 [00:01:03.000] request: { "command": "compileOnSaveAffectedFileList", "arguments": { @@ -180,22 +180,22 @@ FsWatchesRecursive:: /user/username/projects/myproject/dependency: {} -Info 29 [16:01:04.000] Before ensureProjectForOpenFiles: -Info 30 [16:01:05.000] Project '/user/username/projects/myproject/usage/tsconfig.json' (Configured) -Info 30 [16:01:06.000] Files (3) +Info 29 [00:01:04.000] Before ensureProjectForOpenFiles: +Info 30 [00:01:05.000] Project '/user/username/projects/myproject/usage/tsconfig.json' (Configured) +Info 30 [00:01:06.000] Files (3) -Info 30 [16:01:07.000] ----------------------------------------------- -Info 30 [16:01:08.000] Open files: -Info 30 [16:01:09.000] FileName: /user/username/projects/myproject/usage/usage.ts ProjectRootPath: undefined -Info 30 [16:01:10.000] Projects: /user/username/projects/myproject/usage/tsconfig.json -Info 30 [16:01:11.000] After ensureProjectForOpenFiles: -Info 31 [16:01:12.000] Project '/user/username/projects/myproject/usage/tsconfig.json' (Configured) -Info 31 [16:01:13.000] Files (3) +Info 30 [00:01:07.000] ----------------------------------------------- +Info 30 [00:01:08.000] Open files: +Info 30 [00:01:09.000] FileName: /user/username/projects/myproject/usage/usage.ts ProjectRootPath: undefined +Info 30 [00:01:10.000] Projects: /user/username/projects/myproject/usage/tsconfig.json +Info 30 [00:01:11.000] After ensureProjectForOpenFiles: +Info 31 [00:01:12.000] Project '/user/username/projects/myproject/usage/tsconfig.json' (Configured) +Info 31 [00:01:13.000] Files (3) -Info 31 [16:01:14.000] ----------------------------------------------- -Info 31 [16:01:15.000] Open files: -Info 31 [16:01:16.000] FileName: /user/username/projects/myproject/usage/usage.ts ProjectRootPath: undefined -Info 31 [16:01:17.000] Projects: /user/username/projects/myproject/usage/tsconfig.json +Info 31 [00:01:14.000] ----------------------------------------------- +Info 31 [00:01:15.000] Open files: +Info 31 [00:01:16.000] FileName: /user/username/projects/myproject/usage/usage.ts ProjectRootPath: undefined +Info 31 [00:01:17.000] Projects: /user/username/projects/myproject/usage/tsconfig.json After request PolledWatches:: @@ -222,7 +222,7 @@ FsWatchesRecursive:: /user/username/projects/myproject/dependency: {} -Info 31 [16:01:18.000] response: +Info 31 [00:01:18.000] response: { "response": [ { @@ -235,7 +235,7 @@ Info 31 [16:01:18.000] response: ], "responseRequired": true } -Info 32 [16:01:19.000] request: +Info 32 [00:01:19.000] request: { "command": "compileOnSaveEmitFile", "arguments": { @@ -296,12 +296,12 @@ FsWatchesRecursive:: /user/username/projects/myproject/dependency: {} -Info 33 [16:01:20.000] response: +Info 33 [00:01:20.000] response: { "response": false, "responseRequired": true } -Info 34 [16:01:21.000] request: +Info 34 [00:01:21.000] request: { "command": "emit-output", "arguments": { @@ -362,7 +362,7 @@ FsWatchesRecursive:: /user/username/projects/myproject/dependency: {} -Info 35 [16:01:22.000] response: +Info 35 [00:01:22.000] response: { "response": { "emitSkipped": true, diff --git a/tests/baselines/reference/tsserver/projectReferenceCompileOnSave/when-dependency-project-is-not-open-and-save-on-usage-and-change-to-depenedency.js b/tests/baselines/reference/tsserver/projectReferenceCompileOnSave/when-dependency-project-is-not-open-and-save-on-usage-and-change-to-depenedency.js index 060a3fbb1c4e4..78aef595d48ed 100644 --- a/tests/baselines/reference/tsserver/projectReferenceCompileOnSave/when-dependency-project-is-not-open-and-save-on-usage-and-change-to-depenedency.js +++ b/tests/baselines/reference/tsserver/projectReferenceCompileOnSave/when-dependency-project-is-not-open-and-save-on-usage-and-change-to-depenedency.js @@ -1,5 +1,5 @@ -Info 0 [16:00:29.000] Provided types map file "/a/lib/typesMap.json" doesn't exist -Info 1 [16:00:30.000] request: +Info 0 [00:00:29.000] Provided types map file "/a/lib/typesMap.json" doesn't exist +Info 1 [00:00:30.000] request: { "seq": 0, "type": "request", @@ -49,11 +49,11 @@ FsWatches:: FsWatchesRecursive:: -Info 2 [16:00:31.000] Search path: /user/username/projects/myproject/usage -Info 3 [16:00:32.000] For info: /user/username/projects/myproject/usage/usage.ts :: Config file name: /user/username/projects/myproject/usage/tsconfig.json -Info 4 [16:00:33.000] Creating configuration project /user/username/projects/myproject/usage/tsconfig.json -Info 5 [16:00:34.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/usage/tsconfig.json 2000 undefined Project: /user/username/projects/myproject/usage/tsconfig.json WatchType: Config file -Info 6 [16:00:35.000] Config: /user/username/projects/myproject/usage/tsconfig.json : { +Info 2 [00:00:31.000] Search path: /user/username/projects/myproject/usage +Info 3 [00:00:32.000] For info: /user/username/projects/myproject/usage/usage.ts :: Config file name: /user/username/projects/myproject/usage/tsconfig.json +Info 4 [00:00:33.000] Creating configuration project /user/username/projects/myproject/usage/tsconfig.json +Info 5 [00:00:34.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/usage/tsconfig.json 2000 undefined Project: /user/username/projects/myproject/usage/tsconfig.json WatchType: Config file +Info 6 [00:00:35.000] Config: /user/username/projects/myproject/usage/tsconfig.json : { "rootNames": [ "/user/username/projects/myproject/usage/usage.ts" ], @@ -67,11 +67,11 @@ Info 6 [16:00:35.000] Config: /user/username/projects/myproject/usage/tsconfi } ] } -Info 7 [16:00:36.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/usage 1 undefined Config: /user/username/projects/myproject/usage/tsconfig.json WatchType: Wild card directory -Info 8 [16:00:37.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/usage 1 undefined Config: /user/username/projects/myproject/usage/tsconfig.json WatchType: Wild card directory -Info 9 [16:00:38.000] Plugins were requested but not running in environment that supports 'require'. Nothing will be loaded -Info 10 [16:00:39.000] Starting updateGraphWorker: Project: /user/username/projects/myproject/usage/tsconfig.json -Info 11 [16:00:40.000] Config: /user/username/projects/myproject/dependency/tsconfig.json : { +Info 7 [00:00:36.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/usage 1 undefined Config: /user/username/projects/myproject/usage/tsconfig.json WatchType: Wild card directory +Info 8 [00:00:37.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/usage 1 undefined Config: /user/username/projects/myproject/usage/tsconfig.json WatchType: Wild card directory +Info 9 [00:00:38.000] Plugins were requested but not running in environment that supports 'require'. Nothing will be loaded +Info 10 [00:00:39.000] Starting updateGraphWorker: Project: /user/username/projects/myproject/usage/tsconfig.json +Info 11 [00:00:40.000] Config: /user/username/projects/myproject/dependency/tsconfig.json : { "rootNames": [ "/user/username/projects/myproject/dependency/fns.ts" ], @@ -81,20 +81,20 @@ Info 11 [16:00:40.000] Config: /user/username/projects/myproject/dependency/ts "configFilePath": "/user/username/projects/myproject/dependency/tsconfig.json" } } -Info 12 [16:00:41.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/dependency/tsconfig.json 2000 undefined Project: /user/username/projects/myproject/usage/tsconfig.json WatchType: Config file -Info 13 [16:00:42.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/dependency 1 undefined Config: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Wild card directory -Info 14 [16:00:43.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/dependency 1 undefined Config: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Wild card directory -Info 15 [16:00:44.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/decls 1 undefined Project: /user/username/projects/myproject/usage/tsconfig.json WatchType: Failed Lookup Locations -Info 16 [16:00:45.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/decls 1 undefined Project: /user/username/projects/myproject/usage/tsconfig.json WatchType: Failed Lookup Locations -Info 17 [16:00:46.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/dependency/fns.ts 500 undefined WatchType: Closed Script info -Info 18 [16:00:47.000] FileWatcher:: Added:: WatchInfo: /a/lib/lib.d.ts 500 undefined WatchType: Closed Script info -Info 19 [16:00:48.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/usage/node_modules/@types 1 undefined Project: /user/username/projects/myproject/usage/tsconfig.json WatchType: Type roots -Info 20 [16:00:49.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/usage/node_modules/@types 1 undefined Project: /user/username/projects/myproject/usage/tsconfig.json WatchType: Type roots -Info 21 [16:00:50.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/usage/tsconfig.json WatchType: Type roots -Info 22 [16:00:51.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/usage/tsconfig.json WatchType: Type roots -Info 23 [16:00:52.000] Finishing updateGraphWorker: Project: /user/username/projects/myproject/usage/tsconfig.json Version: 1 structureChanged: true structureIsReused:: Not Elapsed:: *ms -Info 24 [16:00:53.000] Project '/user/username/projects/myproject/usage/tsconfig.json' (Configured) -Info 25 [16:00:54.000] Files (3) +Info 12 [00:00:41.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/dependency/tsconfig.json 2000 undefined Project: /user/username/projects/myproject/usage/tsconfig.json WatchType: Config file +Info 13 [00:00:42.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/dependency 1 undefined Config: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Wild card directory +Info 14 [00:00:43.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/dependency 1 undefined Config: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Wild card directory +Info 15 [00:00:44.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/decls 1 undefined Project: /user/username/projects/myproject/usage/tsconfig.json WatchType: Failed Lookup Locations +Info 16 [00:00:45.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/decls 1 undefined Project: /user/username/projects/myproject/usage/tsconfig.json WatchType: Failed Lookup Locations +Info 17 [00:00:46.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/dependency/fns.ts 500 undefined WatchType: Closed Script info +Info 18 [00:00:47.000] FileWatcher:: Added:: WatchInfo: /a/lib/lib.d.ts 500 undefined WatchType: Closed Script info +Info 19 [00:00:48.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/usage/node_modules/@types 1 undefined Project: /user/username/projects/myproject/usage/tsconfig.json WatchType: Type roots +Info 20 [00:00:49.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/usage/node_modules/@types 1 undefined Project: /user/username/projects/myproject/usage/tsconfig.json WatchType: Type roots +Info 21 [00:00:50.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/usage/tsconfig.json WatchType: Type roots +Info 22 [00:00:51.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/usage/tsconfig.json WatchType: Type roots +Info 23 [00:00:52.000] Finishing updateGraphWorker: Project: /user/username/projects/myproject/usage/tsconfig.json Version: 1 structureChanged: true structureIsReused:: Not Elapsed:: *ms +Info 24 [00:00:53.000] Project '/user/username/projects/myproject/usage/tsconfig.json' (Configured) +Info 25 [00:00:54.000] Files (3) /a/lib/lib.d.ts /user/username/projects/myproject/dependency/fns.ts /user/username/projects/myproject/usage/usage.ts @@ -107,14 +107,14 @@ Info 25 [16:00:54.000] Files (3) usage.ts Matched by default include pattern '**/*' -Info 26 [16:00:55.000] ----------------------------------------------- -Info 27 [16:00:56.000] Project '/user/username/projects/myproject/usage/tsconfig.json' (Configured) -Info 27 [16:00:57.000] Files (3) +Info 26 [00:00:55.000] ----------------------------------------------- +Info 27 [00:00:56.000] Project '/user/username/projects/myproject/usage/tsconfig.json' (Configured) +Info 27 [00:00:57.000] Files (3) -Info 27 [16:00:58.000] ----------------------------------------------- -Info 27 [16:00:59.000] Open files: -Info 27 [16:01:00.000] FileName: /user/username/projects/myproject/usage/usage.ts ProjectRootPath: undefined -Info 27 [16:01:01.000] Projects: /user/username/projects/myproject/usage/tsconfig.json +Info 27 [00:00:58.000] ----------------------------------------------- +Info 27 [00:00:59.000] Open files: +Info 27 [00:01:00.000] FileName: /user/username/projects/myproject/usage/usage.ts ProjectRootPath: undefined +Info 27 [00:01:01.000] Projects: /user/username/projects/myproject/usage/tsconfig.json After request PolledWatches:: @@ -141,11 +141,11 @@ FsWatchesRecursive:: /user/username/projects/myproject/dependency: {} -Info 27 [16:01:02.000] response: +Info 27 [00:01:02.000] response: { "responseRequired": false } -Info 28 [16:01:03.000] request: +Info 28 [00:01:03.000] request: { "command": "compileOnSaveAffectedFileList", "arguments": { @@ -180,22 +180,22 @@ FsWatchesRecursive:: /user/username/projects/myproject/dependency: {} -Info 29 [16:01:04.000] Before ensureProjectForOpenFiles: -Info 30 [16:01:05.000] Project '/user/username/projects/myproject/usage/tsconfig.json' (Configured) -Info 30 [16:01:06.000] Files (3) +Info 29 [00:01:04.000] Before ensureProjectForOpenFiles: +Info 30 [00:01:05.000] Project '/user/username/projects/myproject/usage/tsconfig.json' (Configured) +Info 30 [00:01:06.000] Files (3) -Info 30 [16:01:07.000] ----------------------------------------------- -Info 30 [16:01:08.000] Open files: -Info 30 [16:01:09.000] FileName: /user/username/projects/myproject/usage/usage.ts ProjectRootPath: undefined -Info 30 [16:01:10.000] Projects: /user/username/projects/myproject/usage/tsconfig.json -Info 30 [16:01:11.000] After ensureProjectForOpenFiles: -Info 31 [16:01:12.000] Project '/user/username/projects/myproject/usage/tsconfig.json' (Configured) -Info 31 [16:01:13.000] Files (3) +Info 30 [00:01:07.000] ----------------------------------------------- +Info 30 [00:01:08.000] Open files: +Info 30 [00:01:09.000] FileName: /user/username/projects/myproject/usage/usage.ts ProjectRootPath: undefined +Info 30 [00:01:10.000] Projects: /user/username/projects/myproject/usage/tsconfig.json +Info 30 [00:01:11.000] After ensureProjectForOpenFiles: +Info 31 [00:01:12.000] Project '/user/username/projects/myproject/usage/tsconfig.json' (Configured) +Info 31 [00:01:13.000] Files (3) -Info 31 [16:01:14.000] ----------------------------------------------- -Info 31 [16:01:15.000] Open files: -Info 31 [16:01:16.000] FileName: /user/username/projects/myproject/usage/usage.ts ProjectRootPath: undefined -Info 31 [16:01:17.000] Projects: /user/username/projects/myproject/usage/tsconfig.json +Info 31 [00:01:14.000] ----------------------------------------------- +Info 31 [00:01:15.000] Open files: +Info 31 [00:01:16.000] FileName: /user/username/projects/myproject/usage/usage.ts ProjectRootPath: undefined +Info 31 [00:01:17.000] Projects: /user/username/projects/myproject/usage/tsconfig.json After request PolledWatches:: @@ -222,7 +222,7 @@ FsWatchesRecursive:: /user/username/projects/myproject/dependency: {} -Info 31 [16:01:18.000] response: +Info 31 [00:01:18.000] response: { "response": [ { @@ -235,11 +235,11 @@ Info 31 [16:01:18.000] response: ], "responseRequired": true } -Info 32 [16:01:22.000] FileWatcher:: Triggered with /user/username/projects/myproject/dependency/fns.ts 1:: WatchInfo: /user/username/projects/myproject/dependency/fns.ts 500 undefined WatchType: Closed Script info -Info 33 [16:01:23.000] Scheduled: /user/username/projects/myproject/usage/tsconfig.json -Info 34 [16:01:24.000] Scheduled: *ensureProjectForOpenFiles* -Info 35 [16:01:25.000] Elapsed:: *ms FileWatcher:: Triggered with /user/username/projects/myproject/dependency/fns.ts 1:: WatchInfo: /user/username/projects/myproject/dependency/fns.ts 500 undefined WatchType: Closed Script info -Info 36 [16:01:26.000] request: +Info 32 [00:01:22.000] FileWatcher:: Triggered with /user/username/projects/myproject/dependency/fns.ts 1:: WatchInfo: /user/username/projects/myproject/dependency/fns.ts 500 undefined WatchType: Closed Script info +Info 33 [00:01:23.000] Scheduled: /user/username/projects/myproject/usage/tsconfig.json +Info 34 [00:01:24.000] Scheduled: *ensureProjectForOpenFiles* +Info 35 [00:01:25.000] Elapsed:: *ms FileWatcher:: Triggered with /user/username/projects/myproject/dependency/fns.ts 1:: WatchInfo: /user/username/projects/myproject/dependency/fns.ts 500 undefined WatchType: Closed Script info +Info 36 [00:01:26.000] request: { "command": "compileOnSaveAffectedFileList", "arguments": { @@ -279,25 +279,25 @@ FsWatchesRecursive:: /user/username/projects/myproject/dependency: {} -Info 37 [16:01:27.000] Starting updateGraphWorker: Project: /user/username/projects/myproject/usage/tsconfig.json -Info 38 [16:01:28.000] Finishing updateGraphWorker: Project: /user/username/projects/myproject/usage/tsconfig.json Version: 2 structureChanged: false structureIsReused:: Completely Elapsed:: *ms -Info 39 [16:01:29.000] Different program with same set of files -Info 40 [16:01:30.000] Before ensureProjectForOpenFiles: -Info 41 [16:01:31.000] Project '/user/username/projects/myproject/usage/tsconfig.json' (Configured) -Info 41 [16:01:32.000] Files (3) - -Info 41 [16:01:33.000] ----------------------------------------------- -Info 41 [16:01:34.000] Open files: -Info 41 [16:01:35.000] FileName: /user/username/projects/myproject/usage/usage.ts ProjectRootPath: undefined -Info 41 [16:01:36.000] Projects: /user/username/projects/myproject/usage/tsconfig.json -Info 41 [16:01:37.000] After ensureProjectForOpenFiles: -Info 42 [16:01:38.000] Project '/user/username/projects/myproject/usage/tsconfig.json' (Configured) -Info 42 [16:01:39.000] Files (3) - -Info 42 [16:01:40.000] ----------------------------------------------- -Info 42 [16:01:41.000] Open files: -Info 42 [16:01:42.000] FileName: /user/username/projects/myproject/usage/usage.ts ProjectRootPath: undefined -Info 42 [16:01:43.000] Projects: /user/username/projects/myproject/usage/tsconfig.json +Info 37 [00:01:27.000] Starting updateGraphWorker: Project: /user/username/projects/myproject/usage/tsconfig.json +Info 38 [00:01:28.000] Finishing updateGraphWorker: Project: /user/username/projects/myproject/usage/tsconfig.json Version: 2 structureChanged: false structureIsReused:: Completely Elapsed:: *ms +Info 39 [00:01:29.000] Different program with same set of files +Info 40 [00:01:30.000] Before ensureProjectForOpenFiles: +Info 41 [00:01:31.000] Project '/user/username/projects/myproject/usage/tsconfig.json' (Configured) +Info 41 [00:01:32.000] Files (3) + +Info 41 [00:01:33.000] ----------------------------------------------- +Info 41 [00:01:34.000] Open files: +Info 41 [00:01:35.000] FileName: /user/username/projects/myproject/usage/usage.ts ProjectRootPath: undefined +Info 41 [00:01:36.000] Projects: /user/username/projects/myproject/usage/tsconfig.json +Info 41 [00:01:37.000] After ensureProjectForOpenFiles: +Info 42 [00:01:38.000] Project '/user/username/projects/myproject/usage/tsconfig.json' (Configured) +Info 42 [00:01:39.000] Files (3) + +Info 42 [00:01:40.000] ----------------------------------------------- +Info 42 [00:01:41.000] Open files: +Info 42 [00:01:42.000] FileName: /user/username/projects/myproject/usage/usage.ts ProjectRootPath: undefined +Info 42 [00:01:43.000] Projects: /user/username/projects/myproject/usage/tsconfig.json After request PolledWatches:: @@ -324,7 +324,7 @@ FsWatchesRecursive:: /user/username/projects/myproject/dependency: {} -Info 42 [16:01:44.000] response: +Info 42 [00:01:44.000] response: { "response": [ { @@ -337,7 +337,7 @@ Info 42 [16:01:44.000] response: ], "responseRequired": true } -Info 43 [16:01:45.000] request: +Info 43 [00:01:45.000] request: { "command": "compileOnSaveEmitFile", "arguments": { @@ -372,9 +372,9 @@ FsWatchesRecursive:: /user/username/projects/myproject/dependency: {} -Info 44 [16:01:48.000] DirectoryWatcher:: Triggered with /user/username/projects/myproject/usage/usage.js :: WatchInfo: /user/username/projects/myproject/usage 1 undefined Config: /user/username/projects/myproject/usage/tsconfig.json WatchType: Wild card directory -Info 45 [16:01:49.000] Project: /user/username/projects/myproject/usage/tsconfig.json Detected file add/remove of non supported extension: /user/username/projects/myproject/usage/usage.js -Info 46 [16:01:50.000] Elapsed:: *ms DirectoryWatcher:: Triggered with /user/username/projects/myproject/usage/usage.js :: WatchInfo: /user/username/projects/myproject/usage 1 undefined Config: /user/username/projects/myproject/usage/tsconfig.json WatchType: Wild card directory +Info 44 [00:01:48.000] DirectoryWatcher:: Triggered with /user/username/projects/myproject/usage/usage.js :: WatchInfo: /user/username/projects/myproject/usage 1 undefined Config: /user/username/projects/myproject/usage/tsconfig.json WatchType: Wild card directory +Info 45 [00:01:49.000] Project: /user/username/projects/myproject/usage/tsconfig.json Detected file add/remove of non supported extension: /user/username/projects/myproject/usage/usage.js +Info 46 [00:01:50.000] Elapsed:: *ms DirectoryWatcher:: Triggered with /user/username/projects/myproject/usage/usage.js :: WatchInfo: /user/username/projects/myproject/usage 1 undefined Config: /user/username/projects/myproject/usage/tsconfig.json WatchType: Wild card directory After request //// [/user/username/projects/myproject/usage/usage.js] "use strict"; @@ -409,12 +409,12 @@ FsWatchesRecursive:: /user/username/projects/myproject/dependency: {} -Info 47 [16:01:51.000] response: +Info 47 [00:01:51.000] response: { "response": true, "responseRequired": true } -Info 48 [16:01:52.000] request: +Info 48 [00:01:52.000] request: { "command": "emit-output", "arguments": { @@ -475,7 +475,7 @@ FsWatchesRecursive:: /user/username/projects/myproject/dependency: {} -Info 49 [16:01:53.000] response: +Info 49 [00:01:53.000] response: { "response": { "outputFiles": [ diff --git a/tests/baselines/reference/tsserver/projectReferenceCompileOnSave/when-dependency-project-is-not-open-and-save-on-usage-and-change-to-usage.js b/tests/baselines/reference/tsserver/projectReferenceCompileOnSave/when-dependency-project-is-not-open-and-save-on-usage-and-change-to-usage.js index ee3d2f04c4174..fa833d8b1f031 100644 --- a/tests/baselines/reference/tsserver/projectReferenceCompileOnSave/when-dependency-project-is-not-open-and-save-on-usage-and-change-to-usage.js +++ b/tests/baselines/reference/tsserver/projectReferenceCompileOnSave/when-dependency-project-is-not-open-and-save-on-usage-and-change-to-usage.js @@ -1,5 +1,5 @@ -Info 0 [16:00:29.000] Provided types map file "/a/lib/typesMap.json" doesn't exist -Info 1 [16:00:30.000] request: +Info 0 [00:00:29.000] Provided types map file "/a/lib/typesMap.json" doesn't exist +Info 1 [00:00:30.000] request: { "seq": 0, "type": "request", @@ -49,11 +49,11 @@ FsWatches:: FsWatchesRecursive:: -Info 2 [16:00:31.000] Search path: /user/username/projects/myproject/usage -Info 3 [16:00:32.000] For info: /user/username/projects/myproject/usage/usage.ts :: Config file name: /user/username/projects/myproject/usage/tsconfig.json -Info 4 [16:00:33.000] Creating configuration project /user/username/projects/myproject/usage/tsconfig.json -Info 5 [16:00:34.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/usage/tsconfig.json 2000 undefined Project: /user/username/projects/myproject/usage/tsconfig.json WatchType: Config file -Info 6 [16:00:35.000] Config: /user/username/projects/myproject/usage/tsconfig.json : { +Info 2 [00:00:31.000] Search path: /user/username/projects/myproject/usage +Info 3 [00:00:32.000] For info: /user/username/projects/myproject/usage/usage.ts :: Config file name: /user/username/projects/myproject/usage/tsconfig.json +Info 4 [00:00:33.000] Creating configuration project /user/username/projects/myproject/usage/tsconfig.json +Info 5 [00:00:34.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/usage/tsconfig.json 2000 undefined Project: /user/username/projects/myproject/usage/tsconfig.json WatchType: Config file +Info 6 [00:00:35.000] Config: /user/username/projects/myproject/usage/tsconfig.json : { "rootNames": [ "/user/username/projects/myproject/usage/usage.ts" ], @@ -67,11 +67,11 @@ Info 6 [16:00:35.000] Config: /user/username/projects/myproject/usage/tsconfi } ] } -Info 7 [16:00:36.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/usage 1 undefined Config: /user/username/projects/myproject/usage/tsconfig.json WatchType: Wild card directory -Info 8 [16:00:37.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/usage 1 undefined Config: /user/username/projects/myproject/usage/tsconfig.json WatchType: Wild card directory -Info 9 [16:00:38.000] Plugins were requested but not running in environment that supports 'require'. Nothing will be loaded -Info 10 [16:00:39.000] Starting updateGraphWorker: Project: /user/username/projects/myproject/usage/tsconfig.json -Info 11 [16:00:40.000] Config: /user/username/projects/myproject/dependency/tsconfig.json : { +Info 7 [00:00:36.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/usage 1 undefined Config: /user/username/projects/myproject/usage/tsconfig.json WatchType: Wild card directory +Info 8 [00:00:37.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/usage 1 undefined Config: /user/username/projects/myproject/usage/tsconfig.json WatchType: Wild card directory +Info 9 [00:00:38.000] Plugins were requested but not running in environment that supports 'require'. Nothing will be loaded +Info 10 [00:00:39.000] Starting updateGraphWorker: Project: /user/username/projects/myproject/usage/tsconfig.json +Info 11 [00:00:40.000] Config: /user/username/projects/myproject/dependency/tsconfig.json : { "rootNames": [ "/user/username/projects/myproject/dependency/fns.ts" ], @@ -81,20 +81,20 @@ Info 11 [16:00:40.000] Config: /user/username/projects/myproject/dependency/ts "configFilePath": "/user/username/projects/myproject/dependency/tsconfig.json" } } -Info 12 [16:00:41.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/dependency/tsconfig.json 2000 undefined Project: /user/username/projects/myproject/usage/tsconfig.json WatchType: Config file -Info 13 [16:00:42.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/dependency 1 undefined Config: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Wild card directory -Info 14 [16:00:43.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/dependency 1 undefined Config: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Wild card directory -Info 15 [16:00:44.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/decls 1 undefined Project: /user/username/projects/myproject/usage/tsconfig.json WatchType: Failed Lookup Locations -Info 16 [16:00:45.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/decls 1 undefined Project: /user/username/projects/myproject/usage/tsconfig.json WatchType: Failed Lookup Locations -Info 17 [16:00:46.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/dependency/fns.ts 500 undefined WatchType: Closed Script info -Info 18 [16:00:47.000] FileWatcher:: Added:: WatchInfo: /a/lib/lib.d.ts 500 undefined WatchType: Closed Script info -Info 19 [16:00:48.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/usage/node_modules/@types 1 undefined Project: /user/username/projects/myproject/usage/tsconfig.json WatchType: Type roots -Info 20 [16:00:49.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/usage/node_modules/@types 1 undefined Project: /user/username/projects/myproject/usage/tsconfig.json WatchType: Type roots -Info 21 [16:00:50.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/usage/tsconfig.json WatchType: Type roots -Info 22 [16:00:51.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/usage/tsconfig.json WatchType: Type roots -Info 23 [16:00:52.000] Finishing updateGraphWorker: Project: /user/username/projects/myproject/usage/tsconfig.json Version: 1 structureChanged: true structureIsReused:: Not Elapsed:: *ms -Info 24 [16:00:53.000] Project '/user/username/projects/myproject/usage/tsconfig.json' (Configured) -Info 25 [16:00:54.000] Files (3) +Info 12 [00:00:41.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/dependency/tsconfig.json 2000 undefined Project: /user/username/projects/myproject/usage/tsconfig.json WatchType: Config file +Info 13 [00:00:42.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/dependency 1 undefined Config: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Wild card directory +Info 14 [00:00:43.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/dependency 1 undefined Config: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Wild card directory +Info 15 [00:00:44.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/decls 1 undefined Project: /user/username/projects/myproject/usage/tsconfig.json WatchType: Failed Lookup Locations +Info 16 [00:00:45.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/decls 1 undefined Project: /user/username/projects/myproject/usage/tsconfig.json WatchType: Failed Lookup Locations +Info 17 [00:00:46.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/dependency/fns.ts 500 undefined WatchType: Closed Script info +Info 18 [00:00:47.000] FileWatcher:: Added:: WatchInfo: /a/lib/lib.d.ts 500 undefined WatchType: Closed Script info +Info 19 [00:00:48.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/usage/node_modules/@types 1 undefined Project: /user/username/projects/myproject/usage/tsconfig.json WatchType: Type roots +Info 20 [00:00:49.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/usage/node_modules/@types 1 undefined Project: /user/username/projects/myproject/usage/tsconfig.json WatchType: Type roots +Info 21 [00:00:50.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/usage/tsconfig.json WatchType: Type roots +Info 22 [00:00:51.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/usage/tsconfig.json WatchType: Type roots +Info 23 [00:00:52.000] Finishing updateGraphWorker: Project: /user/username/projects/myproject/usage/tsconfig.json Version: 1 structureChanged: true structureIsReused:: Not Elapsed:: *ms +Info 24 [00:00:53.000] Project '/user/username/projects/myproject/usage/tsconfig.json' (Configured) +Info 25 [00:00:54.000] Files (3) /a/lib/lib.d.ts /user/username/projects/myproject/dependency/fns.ts /user/username/projects/myproject/usage/usage.ts @@ -107,14 +107,14 @@ Info 25 [16:00:54.000] Files (3) usage.ts Matched by default include pattern '**/*' -Info 26 [16:00:55.000] ----------------------------------------------- -Info 27 [16:00:56.000] Project '/user/username/projects/myproject/usage/tsconfig.json' (Configured) -Info 27 [16:00:57.000] Files (3) +Info 26 [00:00:55.000] ----------------------------------------------- +Info 27 [00:00:56.000] Project '/user/username/projects/myproject/usage/tsconfig.json' (Configured) +Info 27 [00:00:57.000] Files (3) -Info 27 [16:00:58.000] ----------------------------------------------- -Info 27 [16:00:59.000] Open files: -Info 27 [16:01:00.000] FileName: /user/username/projects/myproject/usage/usage.ts ProjectRootPath: undefined -Info 27 [16:01:01.000] Projects: /user/username/projects/myproject/usage/tsconfig.json +Info 27 [00:00:58.000] ----------------------------------------------- +Info 27 [00:00:59.000] Open files: +Info 27 [00:01:00.000] FileName: /user/username/projects/myproject/usage/usage.ts ProjectRootPath: undefined +Info 27 [00:01:01.000] Projects: /user/username/projects/myproject/usage/tsconfig.json After request PolledWatches:: @@ -141,11 +141,11 @@ FsWatchesRecursive:: /user/username/projects/myproject/dependency: {} -Info 27 [16:01:02.000] response: +Info 27 [00:01:02.000] response: { "responseRequired": false } -Info 28 [16:01:03.000] request: +Info 28 [00:01:03.000] request: { "command": "compileOnSaveAffectedFileList", "arguments": { @@ -180,22 +180,22 @@ FsWatchesRecursive:: /user/username/projects/myproject/dependency: {} -Info 29 [16:01:04.000] Before ensureProjectForOpenFiles: -Info 30 [16:01:05.000] Project '/user/username/projects/myproject/usage/tsconfig.json' (Configured) -Info 30 [16:01:06.000] Files (3) +Info 29 [00:01:04.000] Before ensureProjectForOpenFiles: +Info 30 [00:01:05.000] Project '/user/username/projects/myproject/usage/tsconfig.json' (Configured) +Info 30 [00:01:06.000] Files (3) -Info 30 [16:01:07.000] ----------------------------------------------- -Info 30 [16:01:08.000] Open files: -Info 30 [16:01:09.000] FileName: /user/username/projects/myproject/usage/usage.ts ProjectRootPath: undefined -Info 30 [16:01:10.000] Projects: /user/username/projects/myproject/usage/tsconfig.json -Info 30 [16:01:11.000] After ensureProjectForOpenFiles: -Info 31 [16:01:12.000] Project '/user/username/projects/myproject/usage/tsconfig.json' (Configured) -Info 31 [16:01:13.000] Files (3) +Info 30 [00:01:07.000] ----------------------------------------------- +Info 30 [00:01:08.000] Open files: +Info 30 [00:01:09.000] FileName: /user/username/projects/myproject/usage/usage.ts ProjectRootPath: undefined +Info 30 [00:01:10.000] Projects: /user/username/projects/myproject/usage/tsconfig.json +Info 30 [00:01:11.000] After ensureProjectForOpenFiles: +Info 31 [00:01:12.000] Project '/user/username/projects/myproject/usage/tsconfig.json' (Configured) +Info 31 [00:01:13.000] Files (3) -Info 31 [16:01:14.000] ----------------------------------------------- -Info 31 [16:01:15.000] Open files: -Info 31 [16:01:16.000] FileName: /user/username/projects/myproject/usage/usage.ts ProjectRootPath: undefined -Info 31 [16:01:17.000] Projects: /user/username/projects/myproject/usage/tsconfig.json +Info 31 [00:01:14.000] ----------------------------------------------- +Info 31 [00:01:15.000] Open files: +Info 31 [00:01:16.000] FileName: /user/username/projects/myproject/usage/usage.ts ProjectRootPath: undefined +Info 31 [00:01:17.000] Projects: /user/username/projects/myproject/usage/tsconfig.json After request PolledWatches:: @@ -222,7 +222,7 @@ FsWatchesRecursive:: /user/username/projects/myproject/dependency: {} -Info 31 [16:01:18.000] response: +Info 31 [00:01:18.000] response: { "response": [ { @@ -235,7 +235,7 @@ Info 31 [16:01:18.000] response: ], "responseRequired": true } -Info 32 [16:01:19.000] request: +Info 32 [00:01:19.000] request: { "command": "change", "arguments": { @@ -301,11 +301,11 @@ FsWatchesRecursive:: /user/username/projects/myproject/dependency: {} -Info 33 [16:01:20.000] response: +Info 33 [00:01:20.000] response: { "responseRequired": false } -Info 34 [16:01:21.000] request: +Info 34 [00:01:21.000] request: { "command": "compileOnSaveAffectedFileList", "arguments": { @@ -340,25 +340,25 @@ FsWatchesRecursive:: /user/username/projects/myproject/dependency: {} -Info 35 [16:01:22.000] Starting updateGraphWorker: Project: /user/username/projects/myproject/usage/tsconfig.json -Info 36 [16:01:23.000] Finishing updateGraphWorker: Project: /user/username/projects/myproject/usage/tsconfig.json Version: 2 structureChanged: false structureIsReused:: Completely Elapsed:: *ms -Info 37 [16:01:24.000] Different program with same set of files -Info 38 [16:01:25.000] Before ensureProjectForOpenFiles: -Info 39 [16:01:26.000] Project '/user/username/projects/myproject/usage/tsconfig.json' (Configured) -Info 39 [16:01:27.000] Files (3) - -Info 39 [16:01:28.000] ----------------------------------------------- -Info 39 [16:01:29.000] Open files: -Info 39 [16:01:30.000] FileName: /user/username/projects/myproject/usage/usage.ts ProjectRootPath: undefined -Info 39 [16:01:31.000] Projects: /user/username/projects/myproject/usage/tsconfig.json -Info 39 [16:01:32.000] After ensureProjectForOpenFiles: -Info 40 [16:01:33.000] Project '/user/username/projects/myproject/usage/tsconfig.json' (Configured) -Info 40 [16:01:34.000] Files (3) - -Info 40 [16:01:35.000] ----------------------------------------------- -Info 40 [16:01:36.000] Open files: -Info 40 [16:01:37.000] FileName: /user/username/projects/myproject/usage/usage.ts ProjectRootPath: undefined -Info 40 [16:01:38.000] Projects: /user/username/projects/myproject/usage/tsconfig.json +Info 35 [00:01:22.000] Starting updateGraphWorker: Project: /user/username/projects/myproject/usage/tsconfig.json +Info 36 [00:01:23.000] Finishing updateGraphWorker: Project: /user/username/projects/myproject/usage/tsconfig.json Version: 2 structureChanged: false structureIsReused:: Completely Elapsed:: *ms +Info 37 [00:01:24.000] Different program with same set of files +Info 38 [00:01:25.000] Before ensureProjectForOpenFiles: +Info 39 [00:01:26.000] Project '/user/username/projects/myproject/usage/tsconfig.json' (Configured) +Info 39 [00:01:27.000] Files (3) + +Info 39 [00:01:28.000] ----------------------------------------------- +Info 39 [00:01:29.000] Open files: +Info 39 [00:01:30.000] FileName: /user/username/projects/myproject/usage/usage.ts ProjectRootPath: undefined +Info 39 [00:01:31.000] Projects: /user/username/projects/myproject/usage/tsconfig.json +Info 39 [00:01:32.000] After ensureProjectForOpenFiles: +Info 40 [00:01:33.000] Project '/user/username/projects/myproject/usage/tsconfig.json' (Configured) +Info 40 [00:01:34.000] Files (3) + +Info 40 [00:01:35.000] ----------------------------------------------- +Info 40 [00:01:36.000] Open files: +Info 40 [00:01:37.000] FileName: /user/username/projects/myproject/usage/usage.ts ProjectRootPath: undefined +Info 40 [00:01:38.000] Projects: /user/username/projects/myproject/usage/tsconfig.json After request PolledWatches:: @@ -385,7 +385,7 @@ FsWatchesRecursive:: /user/username/projects/myproject/dependency: {} -Info 40 [16:01:39.000] response: +Info 40 [00:01:39.000] response: { "response": [ { @@ -398,7 +398,7 @@ Info 40 [16:01:39.000] response: ], "responseRequired": true } -Info 41 [16:01:40.000] request: +Info 41 [00:01:40.000] request: { "command": "compileOnSaveEmitFile", "arguments": { @@ -433,9 +433,9 @@ FsWatchesRecursive:: /user/username/projects/myproject/dependency: {} -Info 42 [16:01:43.000] DirectoryWatcher:: Triggered with /user/username/projects/myproject/usage/usage.js :: WatchInfo: /user/username/projects/myproject/usage 1 undefined Config: /user/username/projects/myproject/usage/tsconfig.json WatchType: Wild card directory -Info 43 [16:01:44.000] Project: /user/username/projects/myproject/usage/tsconfig.json Detected file add/remove of non supported extension: /user/username/projects/myproject/usage/usage.js -Info 44 [16:01:45.000] Elapsed:: *ms DirectoryWatcher:: Triggered with /user/username/projects/myproject/usage/usage.js :: WatchInfo: /user/username/projects/myproject/usage 1 undefined Config: /user/username/projects/myproject/usage/tsconfig.json WatchType: Wild card directory +Info 42 [00:01:43.000] DirectoryWatcher:: Triggered with /user/username/projects/myproject/usage/usage.js :: WatchInfo: /user/username/projects/myproject/usage 1 undefined Config: /user/username/projects/myproject/usage/tsconfig.json WatchType: Wild card directory +Info 43 [00:01:44.000] Project: /user/username/projects/myproject/usage/tsconfig.json Detected file add/remove of non supported extension: /user/username/projects/myproject/usage/usage.js +Info 44 [00:01:45.000] Elapsed:: *ms DirectoryWatcher:: Triggered with /user/username/projects/myproject/usage/usage.js :: WatchInfo: /user/username/projects/myproject/usage 1 undefined Config: /user/username/projects/myproject/usage/tsconfig.json WatchType: Wild card directory After request //// [/user/username/projects/myproject/usage/usage.js] "use strict"; @@ -473,12 +473,12 @@ FsWatchesRecursive:: /user/username/projects/myproject/dependency: {} -Info 45 [16:01:46.000] response: +Info 45 [00:01:46.000] response: { "response": true, "responseRequired": true } -Info 46 [16:01:47.000] request: +Info 46 [00:01:47.000] request: { "command": "emit-output", "arguments": { @@ -539,7 +539,7 @@ FsWatchesRecursive:: /user/username/projects/myproject/dependency: {} -Info 47 [16:01:48.000] response: +Info 47 [00:01:48.000] response: { "response": { "outputFiles": [ diff --git a/tests/baselines/reference/tsserver/projectReferenceCompileOnSave/when-dependency-project-is-not-open-and-save-on-usage-and-local-change-to-dependency.js b/tests/baselines/reference/tsserver/projectReferenceCompileOnSave/when-dependency-project-is-not-open-and-save-on-usage-and-local-change-to-dependency.js index 4277fef7a33f8..6992708ea0c9b 100644 --- a/tests/baselines/reference/tsserver/projectReferenceCompileOnSave/when-dependency-project-is-not-open-and-save-on-usage-and-local-change-to-dependency.js +++ b/tests/baselines/reference/tsserver/projectReferenceCompileOnSave/when-dependency-project-is-not-open-and-save-on-usage-and-local-change-to-dependency.js @@ -1,5 +1,5 @@ -Info 0 [16:00:29.000] Provided types map file "/a/lib/typesMap.json" doesn't exist -Info 1 [16:00:30.000] request: +Info 0 [00:00:29.000] Provided types map file "/a/lib/typesMap.json" doesn't exist +Info 1 [00:00:30.000] request: { "seq": 0, "type": "request", @@ -49,11 +49,11 @@ FsWatches:: FsWatchesRecursive:: -Info 2 [16:00:31.000] Search path: /user/username/projects/myproject/usage -Info 3 [16:00:32.000] For info: /user/username/projects/myproject/usage/usage.ts :: Config file name: /user/username/projects/myproject/usage/tsconfig.json -Info 4 [16:00:33.000] Creating configuration project /user/username/projects/myproject/usage/tsconfig.json -Info 5 [16:00:34.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/usage/tsconfig.json 2000 undefined Project: /user/username/projects/myproject/usage/tsconfig.json WatchType: Config file -Info 6 [16:00:35.000] Config: /user/username/projects/myproject/usage/tsconfig.json : { +Info 2 [00:00:31.000] Search path: /user/username/projects/myproject/usage +Info 3 [00:00:32.000] For info: /user/username/projects/myproject/usage/usage.ts :: Config file name: /user/username/projects/myproject/usage/tsconfig.json +Info 4 [00:00:33.000] Creating configuration project /user/username/projects/myproject/usage/tsconfig.json +Info 5 [00:00:34.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/usage/tsconfig.json 2000 undefined Project: /user/username/projects/myproject/usage/tsconfig.json WatchType: Config file +Info 6 [00:00:35.000] Config: /user/username/projects/myproject/usage/tsconfig.json : { "rootNames": [ "/user/username/projects/myproject/usage/usage.ts" ], @@ -67,11 +67,11 @@ Info 6 [16:00:35.000] Config: /user/username/projects/myproject/usage/tsconfi } ] } -Info 7 [16:00:36.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/usage 1 undefined Config: /user/username/projects/myproject/usage/tsconfig.json WatchType: Wild card directory -Info 8 [16:00:37.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/usage 1 undefined Config: /user/username/projects/myproject/usage/tsconfig.json WatchType: Wild card directory -Info 9 [16:00:38.000] Plugins were requested but not running in environment that supports 'require'. Nothing will be loaded -Info 10 [16:00:39.000] Starting updateGraphWorker: Project: /user/username/projects/myproject/usage/tsconfig.json -Info 11 [16:00:40.000] Config: /user/username/projects/myproject/dependency/tsconfig.json : { +Info 7 [00:00:36.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/usage 1 undefined Config: /user/username/projects/myproject/usage/tsconfig.json WatchType: Wild card directory +Info 8 [00:00:37.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/usage 1 undefined Config: /user/username/projects/myproject/usage/tsconfig.json WatchType: Wild card directory +Info 9 [00:00:38.000] Plugins were requested but not running in environment that supports 'require'. Nothing will be loaded +Info 10 [00:00:39.000] Starting updateGraphWorker: Project: /user/username/projects/myproject/usage/tsconfig.json +Info 11 [00:00:40.000] Config: /user/username/projects/myproject/dependency/tsconfig.json : { "rootNames": [ "/user/username/projects/myproject/dependency/fns.ts" ], @@ -81,20 +81,20 @@ Info 11 [16:00:40.000] Config: /user/username/projects/myproject/dependency/ts "configFilePath": "/user/username/projects/myproject/dependency/tsconfig.json" } } -Info 12 [16:00:41.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/dependency/tsconfig.json 2000 undefined Project: /user/username/projects/myproject/usage/tsconfig.json WatchType: Config file -Info 13 [16:00:42.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/dependency 1 undefined Config: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Wild card directory -Info 14 [16:00:43.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/dependency 1 undefined Config: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Wild card directory -Info 15 [16:00:44.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/decls 1 undefined Project: /user/username/projects/myproject/usage/tsconfig.json WatchType: Failed Lookup Locations -Info 16 [16:00:45.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/decls 1 undefined Project: /user/username/projects/myproject/usage/tsconfig.json WatchType: Failed Lookup Locations -Info 17 [16:00:46.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/dependency/fns.ts 500 undefined WatchType: Closed Script info -Info 18 [16:00:47.000] FileWatcher:: Added:: WatchInfo: /a/lib/lib.d.ts 500 undefined WatchType: Closed Script info -Info 19 [16:00:48.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/usage/node_modules/@types 1 undefined Project: /user/username/projects/myproject/usage/tsconfig.json WatchType: Type roots -Info 20 [16:00:49.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/usage/node_modules/@types 1 undefined Project: /user/username/projects/myproject/usage/tsconfig.json WatchType: Type roots -Info 21 [16:00:50.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/usage/tsconfig.json WatchType: Type roots -Info 22 [16:00:51.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/usage/tsconfig.json WatchType: Type roots -Info 23 [16:00:52.000] Finishing updateGraphWorker: Project: /user/username/projects/myproject/usage/tsconfig.json Version: 1 structureChanged: true structureIsReused:: Not Elapsed:: *ms -Info 24 [16:00:53.000] Project '/user/username/projects/myproject/usage/tsconfig.json' (Configured) -Info 25 [16:00:54.000] Files (3) +Info 12 [00:00:41.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/dependency/tsconfig.json 2000 undefined Project: /user/username/projects/myproject/usage/tsconfig.json WatchType: Config file +Info 13 [00:00:42.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/dependency 1 undefined Config: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Wild card directory +Info 14 [00:00:43.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/dependency 1 undefined Config: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Wild card directory +Info 15 [00:00:44.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/decls 1 undefined Project: /user/username/projects/myproject/usage/tsconfig.json WatchType: Failed Lookup Locations +Info 16 [00:00:45.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/decls 1 undefined Project: /user/username/projects/myproject/usage/tsconfig.json WatchType: Failed Lookup Locations +Info 17 [00:00:46.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/dependency/fns.ts 500 undefined WatchType: Closed Script info +Info 18 [00:00:47.000] FileWatcher:: Added:: WatchInfo: /a/lib/lib.d.ts 500 undefined WatchType: Closed Script info +Info 19 [00:00:48.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/usage/node_modules/@types 1 undefined Project: /user/username/projects/myproject/usage/tsconfig.json WatchType: Type roots +Info 20 [00:00:49.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/usage/node_modules/@types 1 undefined Project: /user/username/projects/myproject/usage/tsconfig.json WatchType: Type roots +Info 21 [00:00:50.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/usage/tsconfig.json WatchType: Type roots +Info 22 [00:00:51.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/usage/tsconfig.json WatchType: Type roots +Info 23 [00:00:52.000] Finishing updateGraphWorker: Project: /user/username/projects/myproject/usage/tsconfig.json Version: 1 structureChanged: true structureIsReused:: Not Elapsed:: *ms +Info 24 [00:00:53.000] Project '/user/username/projects/myproject/usage/tsconfig.json' (Configured) +Info 25 [00:00:54.000] Files (3) /a/lib/lib.d.ts /user/username/projects/myproject/dependency/fns.ts /user/username/projects/myproject/usage/usage.ts @@ -107,14 +107,14 @@ Info 25 [16:00:54.000] Files (3) usage.ts Matched by default include pattern '**/*' -Info 26 [16:00:55.000] ----------------------------------------------- -Info 27 [16:00:56.000] Project '/user/username/projects/myproject/usage/tsconfig.json' (Configured) -Info 27 [16:00:57.000] Files (3) +Info 26 [00:00:55.000] ----------------------------------------------- +Info 27 [00:00:56.000] Project '/user/username/projects/myproject/usage/tsconfig.json' (Configured) +Info 27 [00:00:57.000] Files (3) -Info 27 [16:00:58.000] ----------------------------------------------- -Info 27 [16:00:59.000] Open files: -Info 27 [16:01:00.000] FileName: /user/username/projects/myproject/usage/usage.ts ProjectRootPath: undefined -Info 27 [16:01:01.000] Projects: /user/username/projects/myproject/usage/tsconfig.json +Info 27 [00:00:58.000] ----------------------------------------------- +Info 27 [00:00:59.000] Open files: +Info 27 [00:01:00.000] FileName: /user/username/projects/myproject/usage/usage.ts ProjectRootPath: undefined +Info 27 [00:01:01.000] Projects: /user/username/projects/myproject/usage/tsconfig.json After request PolledWatches:: @@ -141,11 +141,11 @@ FsWatchesRecursive:: /user/username/projects/myproject/dependency: {} -Info 27 [16:01:02.000] response: +Info 27 [00:01:02.000] response: { "responseRequired": false } -Info 28 [16:01:03.000] request: +Info 28 [00:01:03.000] request: { "command": "compileOnSaveAffectedFileList", "arguments": { @@ -180,22 +180,22 @@ FsWatchesRecursive:: /user/username/projects/myproject/dependency: {} -Info 29 [16:01:04.000] Before ensureProjectForOpenFiles: -Info 30 [16:01:05.000] Project '/user/username/projects/myproject/usage/tsconfig.json' (Configured) -Info 30 [16:01:06.000] Files (3) +Info 29 [00:01:04.000] Before ensureProjectForOpenFiles: +Info 30 [00:01:05.000] Project '/user/username/projects/myproject/usage/tsconfig.json' (Configured) +Info 30 [00:01:06.000] Files (3) -Info 30 [16:01:07.000] ----------------------------------------------- -Info 30 [16:01:08.000] Open files: -Info 30 [16:01:09.000] FileName: /user/username/projects/myproject/usage/usage.ts ProjectRootPath: undefined -Info 30 [16:01:10.000] Projects: /user/username/projects/myproject/usage/tsconfig.json -Info 30 [16:01:11.000] After ensureProjectForOpenFiles: -Info 31 [16:01:12.000] Project '/user/username/projects/myproject/usage/tsconfig.json' (Configured) -Info 31 [16:01:13.000] Files (3) +Info 30 [00:01:07.000] ----------------------------------------------- +Info 30 [00:01:08.000] Open files: +Info 30 [00:01:09.000] FileName: /user/username/projects/myproject/usage/usage.ts ProjectRootPath: undefined +Info 30 [00:01:10.000] Projects: /user/username/projects/myproject/usage/tsconfig.json +Info 30 [00:01:11.000] After ensureProjectForOpenFiles: +Info 31 [00:01:12.000] Project '/user/username/projects/myproject/usage/tsconfig.json' (Configured) +Info 31 [00:01:13.000] Files (3) -Info 31 [16:01:14.000] ----------------------------------------------- -Info 31 [16:01:15.000] Open files: -Info 31 [16:01:16.000] FileName: /user/username/projects/myproject/usage/usage.ts ProjectRootPath: undefined -Info 31 [16:01:17.000] Projects: /user/username/projects/myproject/usage/tsconfig.json +Info 31 [00:01:14.000] ----------------------------------------------- +Info 31 [00:01:15.000] Open files: +Info 31 [00:01:16.000] FileName: /user/username/projects/myproject/usage/usage.ts ProjectRootPath: undefined +Info 31 [00:01:17.000] Projects: /user/username/projects/myproject/usage/tsconfig.json After request PolledWatches:: @@ -222,7 +222,7 @@ FsWatchesRecursive:: /user/username/projects/myproject/dependency: {} -Info 31 [16:01:18.000] response: +Info 31 [00:01:18.000] response: { "response": [ { @@ -235,11 +235,11 @@ Info 31 [16:01:18.000] response: ], "responseRequired": true } -Info 32 [16:01:22.000] FileWatcher:: Triggered with /user/username/projects/myproject/dependency/fns.ts 1:: WatchInfo: /user/username/projects/myproject/dependency/fns.ts 500 undefined WatchType: Closed Script info -Info 33 [16:01:23.000] Scheduled: /user/username/projects/myproject/usage/tsconfig.json -Info 34 [16:01:24.000] Scheduled: *ensureProjectForOpenFiles* -Info 35 [16:01:25.000] Elapsed:: *ms FileWatcher:: Triggered with /user/username/projects/myproject/dependency/fns.ts 1:: WatchInfo: /user/username/projects/myproject/dependency/fns.ts 500 undefined WatchType: Closed Script info -Info 36 [16:01:26.000] request: +Info 32 [00:01:22.000] FileWatcher:: Triggered with /user/username/projects/myproject/dependency/fns.ts 1:: WatchInfo: /user/username/projects/myproject/dependency/fns.ts 500 undefined WatchType: Closed Script info +Info 33 [00:01:23.000] Scheduled: /user/username/projects/myproject/usage/tsconfig.json +Info 34 [00:01:24.000] Scheduled: *ensureProjectForOpenFiles* +Info 35 [00:01:25.000] Elapsed:: *ms FileWatcher:: Triggered with /user/username/projects/myproject/dependency/fns.ts 1:: WatchInfo: /user/username/projects/myproject/dependency/fns.ts 500 undefined WatchType: Closed Script info +Info 36 [00:01:26.000] request: { "command": "compileOnSaveAffectedFileList", "arguments": { @@ -279,25 +279,25 @@ FsWatchesRecursive:: /user/username/projects/myproject/dependency: {} -Info 37 [16:01:27.000] Starting updateGraphWorker: Project: /user/username/projects/myproject/usage/tsconfig.json -Info 38 [16:01:28.000] Finishing updateGraphWorker: Project: /user/username/projects/myproject/usage/tsconfig.json Version: 2 structureChanged: false structureIsReused:: Completely Elapsed:: *ms -Info 39 [16:01:29.000] Different program with same set of files -Info 40 [16:01:30.000] Before ensureProjectForOpenFiles: -Info 41 [16:01:31.000] Project '/user/username/projects/myproject/usage/tsconfig.json' (Configured) -Info 41 [16:01:32.000] Files (3) - -Info 41 [16:01:33.000] ----------------------------------------------- -Info 41 [16:01:34.000] Open files: -Info 41 [16:01:35.000] FileName: /user/username/projects/myproject/usage/usage.ts ProjectRootPath: undefined -Info 41 [16:01:36.000] Projects: /user/username/projects/myproject/usage/tsconfig.json -Info 41 [16:01:37.000] After ensureProjectForOpenFiles: -Info 42 [16:01:38.000] Project '/user/username/projects/myproject/usage/tsconfig.json' (Configured) -Info 42 [16:01:39.000] Files (3) - -Info 42 [16:01:40.000] ----------------------------------------------- -Info 42 [16:01:41.000] Open files: -Info 42 [16:01:42.000] FileName: /user/username/projects/myproject/usage/usage.ts ProjectRootPath: undefined -Info 42 [16:01:43.000] Projects: /user/username/projects/myproject/usage/tsconfig.json +Info 37 [00:01:27.000] Starting updateGraphWorker: Project: /user/username/projects/myproject/usage/tsconfig.json +Info 38 [00:01:28.000] Finishing updateGraphWorker: Project: /user/username/projects/myproject/usage/tsconfig.json Version: 2 structureChanged: false structureIsReused:: Completely Elapsed:: *ms +Info 39 [00:01:29.000] Different program with same set of files +Info 40 [00:01:30.000] Before ensureProjectForOpenFiles: +Info 41 [00:01:31.000] Project '/user/username/projects/myproject/usage/tsconfig.json' (Configured) +Info 41 [00:01:32.000] Files (3) + +Info 41 [00:01:33.000] ----------------------------------------------- +Info 41 [00:01:34.000] Open files: +Info 41 [00:01:35.000] FileName: /user/username/projects/myproject/usage/usage.ts ProjectRootPath: undefined +Info 41 [00:01:36.000] Projects: /user/username/projects/myproject/usage/tsconfig.json +Info 41 [00:01:37.000] After ensureProjectForOpenFiles: +Info 42 [00:01:38.000] Project '/user/username/projects/myproject/usage/tsconfig.json' (Configured) +Info 42 [00:01:39.000] Files (3) + +Info 42 [00:01:40.000] ----------------------------------------------- +Info 42 [00:01:41.000] Open files: +Info 42 [00:01:42.000] FileName: /user/username/projects/myproject/usage/usage.ts ProjectRootPath: undefined +Info 42 [00:01:43.000] Projects: /user/username/projects/myproject/usage/tsconfig.json After request PolledWatches:: @@ -324,7 +324,7 @@ FsWatchesRecursive:: /user/username/projects/myproject/dependency: {} -Info 42 [16:01:44.000] response: +Info 42 [00:01:44.000] response: { "response": [ { @@ -337,7 +337,7 @@ Info 42 [16:01:44.000] response: ], "responseRequired": true } -Info 43 [16:01:45.000] request: +Info 43 [00:01:45.000] request: { "command": "compileOnSaveEmitFile", "arguments": { @@ -372,9 +372,9 @@ FsWatchesRecursive:: /user/username/projects/myproject/dependency: {} -Info 44 [16:01:48.000] DirectoryWatcher:: Triggered with /user/username/projects/myproject/usage/usage.js :: WatchInfo: /user/username/projects/myproject/usage 1 undefined Config: /user/username/projects/myproject/usage/tsconfig.json WatchType: Wild card directory -Info 45 [16:01:49.000] Project: /user/username/projects/myproject/usage/tsconfig.json Detected file add/remove of non supported extension: /user/username/projects/myproject/usage/usage.js -Info 46 [16:01:50.000] Elapsed:: *ms DirectoryWatcher:: Triggered with /user/username/projects/myproject/usage/usage.js :: WatchInfo: /user/username/projects/myproject/usage 1 undefined Config: /user/username/projects/myproject/usage/tsconfig.json WatchType: Wild card directory +Info 44 [00:01:48.000] DirectoryWatcher:: Triggered with /user/username/projects/myproject/usage/usage.js :: WatchInfo: /user/username/projects/myproject/usage 1 undefined Config: /user/username/projects/myproject/usage/tsconfig.json WatchType: Wild card directory +Info 45 [00:01:49.000] Project: /user/username/projects/myproject/usage/tsconfig.json Detected file add/remove of non supported extension: /user/username/projects/myproject/usage/usage.js +Info 46 [00:01:50.000] Elapsed:: *ms DirectoryWatcher:: Triggered with /user/username/projects/myproject/usage/usage.js :: WatchInfo: /user/username/projects/myproject/usage 1 undefined Config: /user/username/projects/myproject/usage/tsconfig.json WatchType: Wild card directory After request //// [/user/username/projects/myproject/usage/usage.js] "use strict"; @@ -409,12 +409,12 @@ FsWatchesRecursive:: /user/username/projects/myproject/dependency: {} -Info 47 [16:01:51.000] response: +Info 47 [00:01:51.000] response: { "response": true, "responseRequired": true } -Info 48 [16:01:52.000] request: +Info 48 [00:01:52.000] request: { "command": "emit-output", "arguments": { @@ -475,7 +475,7 @@ FsWatchesRecursive:: /user/username/projects/myproject/dependency: {} -Info 49 [16:01:53.000] response: +Info 49 [00:01:53.000] response: { "response": { "outputFiles": [ diff --git a/tests/baselines/reference/tsserver/projectReferenceCompileOnSave/when-dependency-project-is-not-open-and-save-on-usage-and-local-change-to-usage.js b/tests/baselines/reference/tsserver/projectReferenceCompileOnSave/when-dependency-project-is-not-open-and-save-on-usage-and-local-change-to-usage.js index 1011e7e73f783..2316075217035 100644 --- a/tests/baselines/reference/tsserver/projectReferenceCompileOnSave/when-dependency-project-is-not-open-and-save-on-usage-and-local-change-to-usage.js +++ b/tests/baselines/reference/tsserver/projectReferenceCompileOnSave/when-dependency-project-is-not-open-and-save-on-usage-and-local-change-to-usage.js @@ -1,5 +1,5 @@ -Info 0 [16:00:29.000] Provided types map file "/a/lib/typesMap.json" doesn't exist -Info 1 [16:00:30.000] request: +Info 0 [00:00:29.000] Provided types map file "/a/lib/typesMap.json" doesn't exist +Info 1 [00:00:30.000] request: { "seq": 0, "type": "request", @@ -49,11 +49,11 @@ FsWatches:: FsWatchesRecursive:: -Info 2 [16:00:31.000] Search path: /user/username/projects/myproject/usage -Info 3 [16:00:32.000] For info: /user/username/projects/myproject/usage/usage.ts :: Config file name: /user/username/projects/myproject/usage/tsconfig.json -Info 4 [16:00:33.000] Creating configuration project /user/username/projects/myproject/usage/tsconfig.json -Info 5 [16:00:34.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/usage/tsconfig.json 2000 undefined Project: /user/username/projects/myproject/usage/tsconfig.json WatchType: Config file -Info 6 [16:00:35.000] Config: /user/username/projects/myproject/usage/tsconfig.json : { +Info 2 [00:00:31.000] Search path: /user/username/projects/myproject/usage +Info 3 [00:00:32.000] For info: /user/username/projects/myproject/usage/usage.ts :: Config file name: /user/username/projects/myproject/usage/tsconfig.json +Info 4 [00:00:33.000] Creating configuration project /user/username/projects/myproject/usage/tsconfig.json +Info 5 [00:00:34.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/usage/tsconfig.json 2000 undefined Project: /user/username/projects/myproject/usage/tsconfig.json WatchType: Config file +Info 6 [00:00:35.000] Config: /user/username/projects/myproject/usage/tsconfig.json : { "rootNames": [ "/user/username/projects/myproject/usage/usage.ts" ], @@ -67,11 +67,11 @@ Info 6 [16:00:35.000] Config: /user/username/projects/myproject/usage/tsconfi } ] } -Info 7 [16:00:36.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/usage 1 undefined Config: /user/username/projects/myproject/usage/tsconfig.json WatchType: Wild card directory -Info 8 [16:00:37.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/usage 1 undefined Config: /user/username/projects/myproject/usage/tsconfig.json WatchType: Wild card directory -Info 9 [16:00:38.000] Plugins were requested but not running in environment that supports 'require'. Nothing will be loaded -Info 10 [16:00:39.000] Starting updateGraphWorker: Project: /user/username/projects/myproject/usage/tsconfig.json -Info 11 [16:00:40.000] Config: /user/username/projects/myproject/dependency/tsconfig.json : { +Info 7 [00:00:36.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/usage 1 undefined Config: /user/username/projects/myproject/usage/tsconfig.json WatchType: Wild card directory +Info 8 [00:00:37.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/usage 1 undefined Config: /user/username/projects/myproject/usage/tsconfig.json WatchType: Wild card directory +Info 9 [00:00:38.000] Plugins were requested but not running in environment that supports 'require'. Nothing will be loaded +Info 10 [00:00:39.000] Starting updateGraphWorker: Project: /user/username/projects/myproject/usage/tsconfig.json +Info 11 [00:00:40.000] Config: /user/username/projects/myproject/dependency/tsconfig.json : { "rootNames": [ "/user/username/projects/myproject/dependency/fns.ts" ], @@ -81,20 +81,20 @@ Info 11 [16:00:40.000] Config: /user/username/projects/myproject/dependency/ts "configFilePath": "/user/username/projects/myproject/dependency/tsconfig.json" } } -Info 12 [16:00:41.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/dependency/tsconfig.json 2000 undefined Project: /user/username/projects/myproject/usage/tsconfig.json WatchType: Config file -Info 13 [16:00:42.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/dependency 1 undefined Config: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Wild card directory -Info 14 [16:00:43.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/dependency 1 undefined Config: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Wild card directory -Info 15 [16:00:44.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/decls 1 undefined Project: /user/username/projects/myproject/usage/tsconfig.json WatchType: Failed Lookup Locations -Info 16 [16:00:45.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/decls 1 undefined Project: /user/username/projects/myproject/usage/tsconfig.json WatchType: Failed Lookup Locations -Info 17 [16:00:46.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/dependency/fns.ts 500 undefined WatchType: Closed Script info -Info 18 [16:00:47.000] FileWatcher:: Added:: WatchInfo: /a/lib/lib.d.ts 500 undefined WatchType: Closed Script info -Info 19 [16:00:48.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/usage/node_modules/@types 1 undefined Project: /user/username/projects/myproject/usage/tsconfig.json WatchType: Type roots -Info 20 [16:00:49.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/usage/node_modules/@types 1 undefined Project: /user/username/projects/myproject/usage/tsconfig.json WatchType: Type roots -Info 21 [16:00:50.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/usage/tsconfig.json WatchType: Type roots -Info 22 [16:00:51.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/usage/tsconfig.json WatchType: Type roots -Info 23 [16:00:52.000] Finishing updateGraphWorker: Project: /user/username/projects/myproject/usage/tsconfig.json Version: 1 structureChanged: true structureIsReused:: Not Elapsed:: *ms -Info 24 [16:00:53.000] Project '/user/username/projects/myproject/usage/tsconfig.json' (Configured) -Info 25 [16:00:54.000] Files (3) +Info 12 [00:00:41.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/dependency/tsconfig.json 2000 undefined Project: /user/username/projects/myproject/usage/tsconfig.json WatchType: Config file +Info 13 [00:00:42.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/dependency 1 undefined Config: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Wild card directory +Info 14 [00:00:43.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/dependency 1 undefined Config: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Wild card directory +Info 15 [00:00:44.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/decls 1 undefined Project: /user/username/projects/myproject/usage/tsconfig.json WatchType: Failed Lookup Locations +Info 16 [00:00:45.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/decls 1 undefined Project: /user/username/projects/myproject/usage/tsconfig.json WatchType: Failed Lookup Locations +Info 17 [00:00:46.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/dependency/fns.ts 500 undefined WatchType: Closed Script info +Info 18 [00:00:47.000] FileWatcher:: Added:: WatchInfo: /a/lib/lib.d.ts 500 undefined WatchType: Closed Script info +Info 19 [00:00:48.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/usage/node_modules/@types 1 undefined Project: /user/username/projects/myproject/usage/tsconfig.json WatchType: Type roots +Info 20 [00:00:49.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/usage/node_modules/@types 1 undefined Project: /user/username/projects/myproject/usage/tsconfig.json WatchType: Type roots +Info 21 [00:00:50.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/usage/tsconfig.json WatchType: Type roots +Info 22 [00:00:51.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/usage/tsconfig.json WatchType: Type roots +Info 23 [00:00:52.000] Finishing updateGraphWorker: Project: /user/username/projects/myproject/usage/tsconfig.json Version: 1 structureChanged: true structureIsReused:: Not Elapsed:: *ms +Info 24 [00:00:53.000] Project '/user/username/projects/myproject/usage/tsconfig.json' (Configured) +Info 25 [00:00:54.000] Files (3) /a/lib/lib.d.ts /user/username/projects/myproject/dependency/fns.ts /user/username/projects/myproject/usage/usage.ts @@ -107,14 +107,14 @@ Info 25 [16:00:54.000] Files (3) usage.ts Matched by default include pattern '**/*' -Info 26 [16:00:55.000] ----------------------------------------------- -Info 27 [16:00:56.000] Project '/user/username/projects/myproject/usage/tsconfig.json' (Configured) -Info 27 [16:00:57.000] Files (3) +Info 26 [00:00:55.000] ----------------------------------------------- +Info 27 [00:00:56.000] Project '/user/username/projects/myproject/usage/tsconfig.json' (Configured) +Info 27 [00:00:57.000] Files (3) -Info 27 [16:00:58.000] ----------------------------------------------- -Info 27 [16:00:59.000] Open files: -Info 27 [16:01:00.000] FileName: /user/username/projects/myproject/usage/usage.ts ProjectRootPath: undefined -Info 27 [16:01:01.000] Projects: /user/username/projects/myproject/usage/tsconfig.json +Info 27 [00:00:58.000] ----------------------------------------------- +Info 27 [00:00:59.000] Open files: +Info 27 [00:01:00.000] FileName: /user/username/projects/myproject/usage/usage.ts ProjectRootPath: undefined +Info 27 [00:01:01.000] Projects: /user/username/projects/myproject/usage/tsconfig.json After request PolledWatches:: @@ -141,11 +141,11 @@ FsWatchesRecursive:: /user/username/projects/myproject/dependency: {} -Info 27 [16:01:02.000] response: +Info 27 [00:01:02.000] response: { "responseRequired": false } -Info 28 [16:01:03.000] request: +Info 28 [00:01:03.000] request: { "command": "compileOnSaveAffectedFileList", "arguments": { @@ -180,22 +180,22 @@ FsWatchesRecursive:: /user/username/projects/myproject/dependency: {} -Info 29 [16:01:04.000] Before ensureProjectForOpenFiles: -Info 30 [16:01:05.000] Project '/user/username/projects/myproject/usage/tsconfig.json' (Configured) -Info 30 [16:01:06.000] Files (3) +Info 29 [00:01:04.000] Before ensureProjectForOpenFiles: +Info 30 [00:01:05.000] Project '/user/username/projects/myproject/usage/tsconfig.json' (Configured) +Info 30 [00:01:06.000] Files (3) -Info 30 [16:01:07.000] ----------------------------------------------- -Info 30 [16:01:08.000] Open files: -Info 30 [16:01:09.000] FileName: /user/username/projects/myproject/usage/usage.ts ProjectRootPath: undefined -Info 30 [16:01:10.000] Projects: /user/username/projects/myproject/usage/tsconfig.json -Info 30 [16:01:11.000] After ensureProjectForOpenFiles: -Info 31 [16:01:12.000] Project '/user/username/projects/myproject/usage/tsconfig.json' (Configured) -Info 31 [16:01:13.000] Files (3) +Info 30 [00:01:07.000] ----------------------------------------------- +Info 30 [00:01:08.000] Open files: +Info 30 [00:01:09.000] FileName: /user/username/projects/myproject/usage/usage.ts ProjectRootPath: undefined +Info 30 [00:01:10.000] Projects: /user/username/projects/myproject/usage/tsconfig.json +Info 30 [00:01:11.000] After ensureProjectForOpenFiles: +Info 31 [00:01:12.000] Project '/user/username/projects/myproject/usage/tsconfig.json' (Configured) +Info 31 [00:01:13.000] Files (3) -Info 31 [16:01:14.000] ----------------------------------------------- -Info 31 [16:01:15.000] Open files: -Info 31 [16:01:16.000] FileName: /user/username/projects/myproject/usage/usage.ts ProjectRootPath: undefined -Info 31 [16:01:17.000] Projects: /user/username/projects/myproject/usage/tsconfig.json +Info 31 [00:01:14.000] ----------------------------------------------- +Info 31 [00:01:15.000] Open files: +Info 31 [00:01:16.000] FileName: /user/username/projects/myproject/usage/usage.ts ProjectRootPath: undefined +Info 31 [00:01:17.000] Projects: /user/username/projects/myproject/usage/tsconfig.json After request PolledWatches:: @@ -222,7 +222,7 @@ FsWatchesRecursive:: /user/username/projects/myproject/dependency: {} -Info 31 [16:01:18.000] response: +Info 31 [00:01:18.000] response: { "response": [ { @@ -235,7 +235,7 @@ Info 31 [16:01:18.000] response: ], "responseRequired": true } -Info 32 [16:01:19.000] request: +Info 32 [00:01:19.000] request: { "command": "change", "arguments": { @@ -301,11 +301,11 @@ FsWatchesRecursive:: /user/username/projects/myproject/dependency: {} -Info 33 [16:01:20.000] response: +Info 33 [00:01:20.000] response: { "responseRequired": false } -Info 34 [16:01:21.000] request: +Info 34 [00:01:21.000] request: { "command": "compileOnSaveAffectedFileList", "arguments": { @@ -340,25 +340,25 @@ FsWatchesRecursive:: /user/username/projects/myproject/dependency: {} -Info 35 [16:01:22.000] Starting updateGraphWorker: Project: /user/username/projects/myproject/usage/tsconfig.json -Info 36 [16:01:23.000] Finishing updateGraphWorker: Project: /user/username/projects/myproject/usage/tsconfig.json Version: 2 structureChanged: false structureIsReused:: Completely Elapsed:: *ms -Info 37 [16:01:24.000] Different program with same set of files -Info 38 [16:01:25.000] Before ensureProjectForOpenFiles: -Info 39 [16:01:26.000] Project '/user/username/projects/myproject/usage/tsconfig.json' (Configured) -Info 39 [16:01:27.000] Files (3) - -Info 39 [16:01:28.000] ----------------------------------------------- -Info 39 [16:01:29.000] Open files: -Info 39 [16:01:30.000] FileName: /user/username/projects/myproject/usage/usage.ts ProjectRootPath: undefined -Info 39 [16:01:31.000] Projects: /user/username/projects/myproject/usage/tsconfig.json -Info 39 [16:01:32.000] After ensureProjectForOpenFiles: -Info 40 [16:01:33.000] Project '/user/username/projects/myproject/usage/tsconfig.json' (Configured) -Info 40 [16:01:34.000] Files (3) - -Info 40 [16:01:35.000] ----------------------------------------------- -Info 40 [16:01:36.000] Open files: -Info 40 [16:01:37.000] FileName: /user/username/projects/myproject/usage/usage.ts ProjectRootPath: undefined -Info 40 [16:01:38.000] Projects: /user/username/projects/myproject/usage/tsconfig.json +Info 35 [00:01:22.000] Starting updateGraphWorker: Project: /user/username/projects/myproject/usage/tsconfig.json +Info 36 [00:01:23.000] Finishing updateGraphWorker: Project: /user/username/projects/myproject/usage/tsconfig.json Version: 2 structureChanged: false structureIsReused:: Completely Elapsed:: *ms +Info 37 [00:01:24.000] Different program with same set of files +Info 38 [00:01:25.000] Before ensureProjectForOpenFiles: +Info 39 [00:01:26.000] Project '/user/username/projects/myproject/usage/tsconfig.json' (Configured) +Info 39 [00:01:27.000] Files (3) + +Info 39 [00:01:28.000] ----------------------------------------------- +Info 39 [00:01:29.000] Open files: +Info 39 [00:01:30.000] FileName: /user/username/projects/myproject/usage/usage.ts ProjectRootPath: undefined +Info 39 [00:01:31.000] Projects: /user/username/projects/myproject/usage/tsconfig.json +Info 39 [00:01:32.000] After ensureProjectForOpenFiles: +Info 40 [00:01:33.000] Project '/user/username/projects/myproject/usage/tsconfig.json' (Configured) +Info 40 [00:01:34.000] Files (3) + +Info 40 [00:01:35.000] ----------------------------------------------- +Info 40 [00:01:36.000] Open files: +Info 40 [00:01:37.000] FileName: /user/username/projects/myproject/usage/usage.ts ProjectRootPath: undefined +Info 40 [00:01:38.000] Projects: /user/username/projects/myproject/usage/tsconfig.json After request PolledWatches:: @@ -385,7 +385,7 @@ FsWatchesRecursive:: /user/username/projects/myproject/dependency: {} -Info 40 [16:01:39.000] response: +Info 40 [00:01:39.000] response: { "response": [ { @@ -398,7 +398,7 @@ Info 40 [16:01:39.000] response: ], "responseRequired": true } -Info 41 [16:01:40.000] request: +Info 41 [00:01:40.000] request: { "command": "compileOnSaveEmitFile", "arguments": { @@ -433,9 +433,9 @@ FsWatchesRecursive:: /user/username/projects/myproject/dependency: {} -Info 42 [16:01:43.000] DirectoryWatcher:: Triggered with /user/username/projects/myproject/usage/usage.js :: WatchInfo: /user/username/projects/myproject/usage 1 undefined Config: /user/username/projects/myproject/usage/tsconfig.json WatchType: Wild card directory -Info 43 [16:01:44.000] Project: /user/username/projects/myproject/usage/tsconfig.json Detected file add/remove of non supported extension: /user/username/projects/myproject/usage/usage.js -Info 44 [16:01:45.000] Elapsed:: *ms DirectoryWatcher:: Triggered with /user/username/projects/myproject/usage/usage.js :: WatchInfo: /user/username/projects/myproject/usage 1 undefined Config: /user/username/projects/myproject/usage/tsconfig.json WatchType: Wild card directory +Info 42 [00:01:43.000] DirectoryWatcher:: Triggered with /user/username/projects/myproject/usage/usage.js :: WatchInfo: /user/username/projects/myproject/usage 1 undefined Config: /user/username/projects/myproject/usage/tsconfig.json WatchType: Wild card directory +Info 43 [00:01:44.000] Project: /user/username/projects/myproject/usage/tsconfig.json Detected file add/remove of non supported extension: /user/username/projects/myproject/usage/usage.js +Info 44 [00:01:45.000] Elapsed:: *ms DirectoryWatcher:: Triggered with /user/username/projects/myproject/usage/usage.js :: WatchInfo: /user/username/projects/myproject/usage 1 undefined Config: /user/username/projects/myproject/usage/tsconfig.json WatchType: Wild card directory After request //// [/user/username/projects/myproject/usage/usage.js] "use strict"; @@ -471,12 +471,12 @@ FsWatchesRecursive:: /user/username/projects/myproject/dependency: {} -Info 45 [16:01:46.000] response: +Info 45 [00:01:46.000] response: { "response": true, "responseRequired": true } -Info 46 [16:01:47.000] request: +Info 46 [00:01:47.000] request: { "command": "emit-output", "arguments": { @@ -537,7 +537,7 @@ FsWatchesRecursive:: /user/username/projects/myproject/dependency: {} -Info 47 [16:01:48.000] response: +Info 47 [00:01:48.000] response: { "response": { "outputFiles": [ diff --git a/tests/baselines/reference/tsserver/projectReferenceCompileOnSave/when-dependency-project-is-not-open-and-save-on-usage-with-project-and-change-to-depenedency.js b/tests/baselines/reference/tsserver/projectReferenceCompileOnSave/when-dependency-project-is-not-open-and-save-on-usage-with-project-and-change-to-depenedency.js index 44d57cabefd91..1a014dae360fa 100644 --- a/tests/baselines/reference/tsserver/projectReferenceCompileOnSave/when-dependency-project-is-not-open-and-save-on-usage-with-project-and-change-to-depenedency.js +++ b/tests/baselines/reference/tsserver/projectReferenceCompileOnSave/when-dependency-project-is-not-open-and-save-on-usage-with-project-and-change-to-depenedency.js @@ -1,5 +1,5 @@ -Info 0 [16:00:29.000] Provided types map file "/a/lib/typesMap.json" doesn't exist -Info 1 [16:00:30.000] request: +Info 0 [00:00:29.000] Provided types map file "/a/lib/typesMap.json" doesn't exist +Info 1 [00:00:30.000] request: { "seq": 0, "type": "request", @@ -49,11 +49,11 @@ FsWatches:: FsWatchesRecursive:: -Info 2 [16:00:31.000] Search path: /user/username/projects/myproject/usage -Info 3 [16:00:32.000] For info: /user/username/projects/myproject/usage/usage.ts :: Config file name: /user/username/projects/myproject/usage/tsconfig.json -Info 4 [16:00:33.000] Creating configuration project /user/username/projects/myproject/usage/tsconfig.json -Info 5 [16:00:34.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/usage/tsconfig.json 2000 undefined Project: /user/username/projects/myproject/usage/tsconfig.json WatchType: Config file -Info 6 [16:00:35.000] Config: /user/username/projects/myproject/usage/tsconfig.json : { +Info 2 [00:00:31.000] Search path: /user/username/projects/myproject/usage +Info 3 [00:00:32.000] For info: /user/username/projects/myproject/usage/usage.ts :: Config file name: /user/username/projects/myproject/usage/tsconfig.json +Info 4 [00:00:33.000] Creating configuration project /user/username/projects/myproject/usage/tsconfig.json +Info 5 [00:00:34.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/usage/tsconfig.json 2000 undefined Project: /user/username/projects/myproject/usage/tsconfig.json WatchType: Config file +Info 6 [00:00:35.000] Config: /user/username/projects/myproject/usage/tsconfig.json : { "rootNames": [ "/user/username/projects/myproject/usage/usage.ts" ], @@ -67,11 +67,11 @@ Info 6 [16:00:35.000] Config: /user/username/projects/myproject/usage/tsconfi } ] } -Info 7 [16:00:36.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/usage 1 undefined Config: /user/username/projects/myproject/usage/tsconfig.json WatchType: Wild card directory -Info 8 [16:00:37.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/usage 1 undefined Config: /user/username/projects/myproject/usage/tsconfig.json WatchType: Wild card directory -Info 9 [16:00:38.000] Plugins were requested but not running in environment that supports 'require'. Nothing will be loaded -Info 10 [16:00:39.000] Starting updateGraphWorker: Project: /user/username/projects/myproject/usage/tsconfig.json -Info 11 [16:00:40.000] Config: /user/username/projects/myproject/dependency/tsconfig.json : { +Info 7 [00:00:36.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/usage 1 undefined Config: /user/username/projects/myproject/usage/tsconfig.json WatchType: Wild card directory +Info 8 [00:00:37.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/usage 1 undefined Config: /user/username/projects/myproject/usage/tsconfig.json WatchType: Wild card directory +Info 9 [00:00:38.000] Plugins were requested but not running in environment that supports 'require'. Nothing will be loaded +Info 10 [00:00:39.000] Starting updateGraphWorker: Project: /user/username/projects/myproject/usage/tsconfig.json +Info 11 [00:00:40.000] Config: /user/username/projects/myproject/dependency/tsconfig.json : { "rootNames": [ "/user/username/projects/myproject/dependency/fns.ts" ], @@ -81,20 +81,20 @@ Info 11 [16:00:40.000] Config: /user/username/projects/myproject/dependency/ts "configFilePath": "/user/username/projects/myproject/dependency/tsconfig.json" } } -Info 12 [16:00:41.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/dependency/tsconfig.json 2000 undefined Project: /user/username/projects/myproject/usage/tsconfig.json WatchType: Config file -Info 13 [16:00:42.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/dependency 1 undefined Config: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Wild card directory -Info 14 [16:00:43.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/dependency 1 undefined Config: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Wild card directory -Info 15 [16:00:44.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/decls 1 undefined Project: /user/username/projects/myproject/usage/tsconfig.json WatchType: Failed Lookup Locations -Info 16 [16:00:45.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/decls 1 undefined Project: /user/username/projects/myproject/usage/tsconfig.json WatchType: Failed Lookup Locations -Info 17 [16:00:46.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/dependency/fns.ts 500 undefined WatchType: Closed Script info -Info 18 [16:00:47.000] FileWatcher:: Added:: WatchInfo: /a/lib/lib.d.ts 500 undefined WatchType: Closed Script info -Info 19 [16:00:48.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/usage/node_modules/@types 1 undefined Project: /user/username/projects/myproject/usage/tsconfig.json WatchType: Type roots -Info 20 [16:00:49.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/usage/node_modules/@types 1 undefined Project: /user/username/projects/myproject/usage/tsconfig.json WatchType: Type roots -Info 21 [16:00:50.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/usage/tsconfig.json WatchType: Type roots -Info 22 [16:00:51.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/usage/tsconfig.json WatchType: Type roots -Info 23 [16:00:52.000] Finishing updateGraphWorker: Project: /user/username/projects/myproject/usage/tsconfig.json Version: 1 structureChanged: true structureIsReused:: Not Elapsed:: *ms -Info 24 [16:00:53.000] Project '/user/username/projects/myproject/usage/tsconfig.json' (Configured) -Info 25 [16:00:54.000] Files (3) +Info 12 [00:00:41.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/dependency/tsconfig.json 2000 undefined Project: /user/username/projects/myproject/usage/tsconfig.json WatchType: Config file +Info 13 [00:00:42.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/dependency 1 undefined Config: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Wild card directory +Info 14 [00:00:43.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/dependency 1 undefined Config: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Wild card directory +Info 15 [00:00:44.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/decls 1 undefined Project: /user/username/projects/myproject/usage/tsconfig.json WatchType: Failed Lookup Locations +Info 16 [00:00:45.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/decls 1 undefined Project: /user/username/projects/myproject/usage/tsconfig.json WatchType: Failed Lookup Locations +Info 17 [00:00:46.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/dependency/fns.ts 500 undefined WatchType: Closed Script info +Info 18 [00:00:47.000] FileWatcher:: Added:: WatchInfo: /a/lib/lib.d.ts 500 undefined WatchType: Closed Script info +Info 19 [00:00:48.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/usage/node_modules/@types 1 undefined Project: /user/username/projects/myproject/usage/tsconfig.json WatchType: Type roots +Info 20 [00:00:49.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/usage/node_modules/@types 1 undefined Project: /user/username/projects/myproject/usage/tsconfig.json WatchType: Type roots +Info 21 [00:00:50.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/usage/tsconfig.json WatchType: Type roots +Info 22 [00:00:51.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/usage/tsconfig.json WatchType: Type roots +Info 23 [00:00:52.000] Finishing updateGraphWorker: Project: /user/username/projects/myproject/usage/tsconfig.json Version: 1 structureChanged: true structureIsReused:: Not Elapsed:: *ms +Info 24 [00:00:53.000] Project '/user/username/projects/myproject/usage/tsconfig.json' (Configured) +Info 25 [00:00:54.000] Files (3) /a/lib/lib.d.ts /user/username/projects/myproject/dependency/fns.ts /user/username/projects/myproject/usage/usage.ts @@ -107,14 +107,14 @@ Info 25 [16:00:54.000] Files (3) usage.ts Matched by default include pattern '**/*' -Info 26 [16:00:55.000] ----------------------------------------------- -Info 27 [16:00:56.000] Project '/user/username/projects/myproject/usage/tsconfig.json' (Configured) -Info 27 [16:00:57.000] Files (3) +Info 26 [00:00:55.000] ----------------------------------------------- +Info 27 [00:00:56.000] Project '/user/username/projects/myproject/usage/tsconfig.json' (Configured) +Info 27 [00:00:57.000] Files (3) -Info 27 [16:00:58.000] ----------------------------------------------- -Info 27 [16:00:59.000] Open files: -Info 27 [16:01:00.000] FileName: /user/username/projects/myproject/usage/usage.ts ProjectRootPath: undefined -Info 27 [16:01:01.000] Projects: /user/username/projects/myproject/usage/tsconfig.json +Info 27 [00:00:58.000] ----------------------------------------------- +Info 27 [00:00:59.000] Open files: +Info 27 [00:01:00.000] FileName: /user/username/projects/myproject/usage/usage.ts ProjectRootPath: undefined +Info 27 [00:01:01.000] Projects: /user/username/projects/myproject/usage/tsconfig.json After request PolledWatches:: @@ -141,11 +141,11 @@ FsWatchesRecursive:: /user/username/projects/myproject/dependency: {} -Info 27 [16:01:02.000] response: +Info 27 [00:01:02.000] response: { "responseRequired": false } -Info 28 [16:01:03.000] request: +Info 28 [00:01:03.000] request: { "command": "compileOnSaveAffectedFileList", "arguments": { @@ -180,22 +180,22 @@ FsWatchesRecursive:: /user/username/projects/myproject/dependency: {} -Info 29 [16:01:04.000] Before ensureProjectForOpenFiles: -Info 30 [16:01:05.000] Project '/user/username/projects/myproject/usage/tsconfig.json' (Configured) -Info 30 [16:01:06.000] Files (3) +Info 29 [00:01:04.000] Before ensureProjectForOpenFiles: +Info 30 [00:01:05.000] Project '/user/username/projects/myproject/usage/tsconfig.json' (Configured) +Info 30 [00:01:06.000] Files (3) -Info 30 [16:01:07.000] ----------------------------------------------- -Info 30 [16:01:08.000] Open files: -Info 30 [16:01:09.000] FileName: /user/username/projects/myproject/usage/usage.ts ProjectRootPath: undefined -Info 30 [16:01:10.000] Projects: /user/username/projects/myproject/usage/tsconfig.json -Info 30 [16:01:11.000] After ensureProjectForOpenFiles: -Info 31 [16:01:12.000] Project '/user/username/projects/myproject/usage/tsconfig.json' (Configured) -Info 31 [16:01:13.000] Files (3) +Info 30 [00:01:07.000] ----------------------------------------------- +Info 30 [00:01:08.000] Open files: +Info 30 [00:01:09.000] FileName: /user/username/projects/myproject/usage/usage.ts ProjectRootPath: undefined +Info 30 [00:01:10.000] Projects: /user/username/projects/myproject/usage/tsconfig.json +Info 30 [00:01:11.000] After ensureProjectForOpenFiles: +Info 31 [00:01:12.000] Project '/user/username/projects/myproject/usage/tsconfig.json' (Configured) +Info 31 [00:01:13.000] Files (3) -Info 31 [16:01:14.000] ----------------------------------------------- -Info 31 [16:01:15.000] Open files: -Info 31 [16:01:16.000] FileName: /user/username/projects/myproject/usage/usage.ts ProjectRootPath: undefined -Info 31 [16:01:17.000] Projects: /user/username/projects/myproject/usage/tsconfig.json +Info 31 [00:01:14.000] ----------------------------------------------- +Info 31 [00:01:15.000] Open files: +Info 31 [00:01:16.000] FileName: /user/username/projects/myproject/usage/usage.ts ProjectRootPath: undefined +Info 31 [00:01:17.000] Projects: /user/username/projects/myproject/usage/tsconfig.json After request PolledWatches:: @@ -222,7 +222,7 @@ FsWatchesRecursive:: /user/username/projects/myproject/dependency: {} -Info 31 [16:01:18.000] response: +Info 31 [00:01:18.000] response: { "response": [ { @@ -235,11 +235,11 @@ Info 31 [16:01:18.000] response: ], "responseRequired": true } -Info 32 [16:01:22.000] FileWatcher:: Triggered with /user/username/projects/myproject/dependency/fns.ts 1:: WatchInfo: /user/username/projects/myproject/dependency/fns.ts 500 undefined WatchType: Closed Script info -Info 33 [16:01:23.000] Scheduled: /user/username/projects/myproject/usage/tsconfig.json -Info 34 [16:01:24.000] Scheduled: *ensureProjectForOpenFiles* -Info 35 [16:01:25.000] Elapsed:: *ms FileWatcher:: Triggered with /user/username/projects/myproject/dependency/fns.ts 1:: WatchInfo: /user/username/projects/myproject/dependency/fns.ts 500 undefined WatchType: Closed Script info -Info 36 [16:01:26.000] request: +Info 32 [00:01:22.000] FileWatcher:: Triggered with /user/username/projects/myproject/dependency/fns.ts 1:: WatchInfo: /user/username/projects/myproject/dependency/fns.ts 500 undefined WatchType: Closed Script info +Info 33 [00:01:23.000] Scheduled: /user/username/projects/myproject/usage/tsconfig.json +Info 34 [00:01:24.000] Scheduled: *ensureProjectForOpenFiles* +Info 35 [00:01:25.000] Elapsed:: *ms FileWatcher:: Triggered with /user/username/projects/myproject/dependency/fns.ts 1:: WatchInfo: /user/username/projects/myproject/dependency/fns.ts 500 undefined WatchType: Closed Script info +Info 36 [00:01:26.000] request: { "command": "compileOnSaveAffectedFileList", "arguments": { @@ -280,9 +280,9 @@ FsWatchesRecursive:: /user/username/projects/myproject/dependency: {} -Info 37 [16:01:27.000] Starting updateGraphWorker: Project: /user/username/projects/myproject/usage/tsconfig.json -Info 38 [16:01:28.000] Finishing updateGraphWorker: Project: /user/username/projects/myproject/usage/tsconfig.json Version: 2 structureChanged: false structureIsReused:: Completely Elapsed:: *ms -Info 39 [16:01:29.000] Different program with same set of files +Info 37 [00:01:27.000] Starting updateGraphWorker: Project: /user/username/projects/myproject/usage/tsconfig.json +Info 38 [00:01:28.000] Finishing updateGraphWorker: Project: /user/username/projects/myproject/usage/tsconfig.json Version: 2 structureChanged: false structureIsReused:: Completely Elapsed:: *ms +Info 39 [00:01:29.000] Different program with same set of files After request PolledWatches:: @@ -309,7 +309,7 @@ FsWatchesRecursive:: /user/username/projects/myproject/dependency: {} -Info 40 [16:01:30.000] response: +Info 40 [00:01:30.000] response: { "response": [ { @@ -322,7 +322,7 @@ Info 40 [16:01:30.000] response: ], "responseRequired": true } -Info 41 [16:01:31.000] request: +Info 41 [00:01:31.000] request: { "command": "compileOnSaveEmitFile", "arguments": { @@ -358,9 +358,9 @@ FsWatchesRecursive:: /user/username/projects/myproject/dependency: {} -Info 42 [16:01:34.000] DirectoryWatcher:: Triggered with /user/username/projects/myproject/usage/usage.js :: WatchInfo: /user/username/projects/myproject/usage 1 undefined Config: /user/username/projects/myproject/usage/tsconfig.json WatchType: Wild card directory -Info 43 [16:01:35.000] Project: /user/username/projects/myproject/usage/tsconfig.json Detected file add/remove of non supported extension: /user/username/projects/myproject/usage/usage.js -Info 44 [16:01:36.000] Elapsed:: *ms DirectoryWatcher:: Triggered with /user/username/projects/myproject/usage/usage.js :: WatchInfo: /user/username/projects/myproject/usage 1 undefined Config: /user/username/projects/myproject/usage/tsconfig.json WatchType: Wild card directory +Info 42 [00:01:34.000] DirectoryWatcher:: Triggered with /user/username/projects/myproject/usage/usage.js :: WatchInfo: /user/username/projects/myproject/usage 1 undefined Config: /user/username/projects/myproject/usage/tsconfig.json WatchType: Wild card directory +Info 43 [00:01:35.000] Project: /user/username/projects/myproject/usage/tsconfig.json Detected file add/remove of non supported extension: /user/username/projects/myproject/usage/usage.js +Info 44 [00:01:36.000] Elapsed:: *ms DirectoryWatcher:: Triggered with /user/username/projects/myproject/usage/usage.js :: WatchInfo: /user/username/projects/myproject/usage 1 undefined Config: /user/username/projects/myproject/usage/tsconfig.json WatchType: Wild card directory After request //// [/user/username/projects/myproject/usage/usage.js] "use strict"; @@ -395,12 +395,12 @@ FsWatchesRecursive:: /user/username/projects/myproject/dependency: {} -Info 45 [16:01:37.000] response: +Info 45 [00:01:37.000] response: { "response": true, "responseRequired": true } -Info 46 [16:01:38.000] request: +Info 46 [00:01:38.000] request: { "command": "emit-output", "arguments": { @@ -462,7 +462,7 @@ FsWatchesRecursive:: /user/username/projects/myproject/dependency: {} -Info 47 [16:01:39.000] response: +Info 47 [00:01:39.000] response: { "response": { "outputFiles": [ diff --git a/tests/baselines/reference/tsserver/projectReferenceCompileOnSave/when-dependency-project-is-not-open-and-save-on-usage-with-project-and-change-to-usage.js b/tests/baselines/reference/tsserver/projectReferenceCompileOnSave/when-dependency-project-is-not-open-and-save-on-usage-with-project-and-change-to-usage.js index 14feebc1c0994..d9d81618a42e4 100644 --- a/tests/baselines/reference/tsserver/projectReferenceCompileOnSave/when-dependency-project-is-not-open-and-save-on-usage-with-project-and-change-to-usage.js +++ b/tests/baselines/reference/tsserver/projectReferenceCompileOnSave/when-dependency-project-is-not-open-and-save-on-usage-with-project-and-change-to-usage.js @@ -1,5 +1,5 @@ -Info 0 [16:00:29.000] Provided types map file "/a/lib/typesMap.json" doesn't exist -Info 1 [16:00:30.000] request: +Info 0 [00:00:29.000] Provided types map file "/a/lib/typesMap.json" doesn't exist +Info 1 [00:00:30.000] request: { "seq": 0, "type": "request", @@ -49,11 +49,11 @@ FsWatches:: FsWatchesRecursive:: -Info 2 [16:00:31.000] Search path: /user/username/projects/myproject/usage -Info 3 [16:00:32.000] For info: /user/username/projects/myproject/usage/usage.ts :: Config file name: /user/username/projects/myproject/usage/tsconfig.json -Info 4 [16:00:33.000] Creating configuration project /user/username/projects/myproject/usage/tsconfig.json -Info 5 [16:00:34.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/usage/tsconfig.json 2000 undefined Project: /user/username/projects/myproject/usage/tsconfig.json WatchType: Config file -Info 6 [16:00:35.000] Config: /user/username/projects/myproject/usage/tsconfig.json : { +Info 2 [00:00:31.000] Search path: /user/username/projects/myproject/usage +Info 3 [00:00:32.000] For info: /user/username/projects/myproject/usage/usage.ts :: Config file name: /user/username/projects/myproject/usage/tsconfig.json +Info 4 [00:00:33.000] Creating configuration project /user/username/projects/myproject/usage/tsconfig.json +Info 5 [00:00:34.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/usage/tsconfig.json 2000 undefined Project: /user/username/projects/myproject/usage/tsconfig.json WatchType: Config file +Info 6 [00:00:35.000] Config: /user/username/projects/myproject/usage/tsconfig.json : { "rootNames": [ "/user/username/projects/myproject/usage/usage.ts" ], @@ -67,11 +67,11 @@ Info 6 [16:00:35.000] Config: /user/username/projects/myproject/usage/tsconfi } ] } -Info 7 [16:00:36.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/usage 1 undefined Config: /user/username/projects/myproject/usage/tsconfig.json WatchType: Wild card directory -Info 8 [16:00:37.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/usage 1 undefined Config: /user/username/projects/myproject/usage/tsconfig.json WatchType: Wild card directory -Info 9 [16:00:38.000] Plugins were requested but not running in environment that supports 'require'. Nothing will be loaded -Info 10 [16:00:39.000] Starting updateGraphWorker: Project: /user/username/projects/myproject/usage/tsconfig.json -Info 11 [16:00:40.000] Config: /user/username/projects/myproject/dependency/tsconfig.json : { +Info 7 [00:00:36.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/usage 1 undefined Config: /user/username/projects/myproject/usage/tsconfig.json WatchType: Wild card directory +Info 8 [00:00:37.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/usage 1 undefined Config: /user/username/projects/myproject/usage/tsconfig.json WatchType: Wild card directory +Info 9 [00:00:38.000] Plugins were requested but not running in environment that supports 'require'. Nothing will be loaded +Info 10 [00:00:39.000] Starting updateGraphWorker: Project: /user/username/projects/myproject/usage/tsconfig.json +Info 11 [00:00:40.000] Config: /user/username/projects/myproject/dependency/tsconfig.json : { "rootNames": [ "/user/username/projects/myproject/dependency/fns.ts" ], @@ -81,20 +81,20 @@ Info 11 [16:00:40.000] Config: /user/username/projects/myproject/dependency/ts "configFilePath": "/user/username/projects/myproject/dependency/tsconfig.json" } } -Info 12 [16:00:41.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/dependency/tsconfig.json 2000 undefined Project: /user/username/projects/myproject/usage/tsconfig.json WatchType: Config file -Info 13 [16:00:42.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/dependency 1 undefined Config: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Wild card directory -Info 14 [16:00:43.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/dependency 1 undefined Config: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Wild card directory -Info 15 [16:00:44.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/decls 1 undefined Project: /user/username/projects/myproject/usage/tsconfig.json WatchType: Failed Lookup Locations -Info 16 [16:00:45.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/decls 1 undefined Project: /user/username/projects/myproject/usage/tsconfig.json WatchType: Failed Lookup Locations -Info 17 [16:00:46.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/dependency/fns.ts 500 undefined WatchType: Closed Script info -Info 18 [16:00:47.000] FileWatcher:: Added:: WatchInfo: /a/lib/lib.d.ts 500 undefined WatchType: Closed Script info -Info 19 [16:00:48.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/usage/node_modules/@types 1 undefined Project: /user/username/projects/myproject/usage/tsconfig.json WatchType: Type roots -Info 20 [16:00:49.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/usage/node_modules/@types 1 undefined Project: /user/username/projects/myproject/usage/tsconfig.json WatchType: Type roots -Info 21 [16:00:50.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/usage/tsconfig.json WatchType: Type roots -Info 22 [16:00:51.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/usage/tsconfig.json WatchType: Type roots -Info 23 [16:00:52.000] Finishing updateGraphWorker: Project: /user/username/projects/myproject/usage/tsconfig.json Version: 1 structureChanged: true structureIsReused:: Not Elapsed:: *ms -Info 24 [16:00:53.000] Project '/user/username/projects/myproject/usage/tsconfig.json' (Configured) -Info 25 [16:00:54.000] Files (3) +Info 12 [00:00:41.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/dependency/tsconfig.json 2000 undefined Project: /user/username/projects/myproject/usage/tsconfig.json WatchType: Config file +Info 13 [00:00:42.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/dependency 1 undefined Config: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Wild card directory +Info 14 [00:00:43.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/dependency 1 undefined Config: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Wild card directory +Info 15 [00:00:44.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/decls 1 undefined Project: /user/username/projects/myproject/usage/tsconfig.json WatchType: Failed Lookup Locations +Info 16 [00:00:45.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/decls 1 undefined Project: /user/username/projects/myproject/usage/tsconfig.json WatchType: Failed Lookup Locations +Info 17 [00:00:46.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/dependency/fns.ts 500 undefined WatchType: Closed Script info +Info 18 [00:00:47.000] FileWatcher:: Added:: WatchInfo: /a/lib/lib.d.ts 500 undefined WatchType: Closed Script info +Info 19 [00:00:48.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/usage/node_modules/@types 1 undefined Project: /user/username/projects/myproject/usage/tsconfig.json WatchType: Type roots +Info 20 [00:00:49.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/usage/node_modules/@types 1 undefined Project: /user/username/projects/myproject/usage/tsconfig.json WatchType: Type roots +Info 21 [00:00:50.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/usage/tsconfig.json WatchType: Type roots +Info 22 [00:00:51.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/usage/tsconfig.json WatchType: Type roots +Info 23 [00:00:52.000] Finishing updateGraphWorker: Project: /user/username/projects/myproject/usage/tsconfig.json Version: 1 structureChanged: true structureIsReused:: Not Elapsed:: *ms +Info 24 [00:00:53.000] Project '/user/username/projects/myproject/usage/tsconfig.json' (Configured) +Info 25 [00:00:54.000] Files (3) /a/lib/lib.d.ts /user/username/projects/myproject/dependency/fns.ts /user/username/projects/myproject/usage/usage.ts @@ -107,14 +107,14 @@ Info 25 [16:00:54.000] Files (3) usage.ts Matched by default include pattern '**/*' -Info 26 [16:00:55.000] ----------------------------------------------- -Info 27 [16:00:56.000] Project '/user/username/projects/myproject/usage/tsconfig.json' (Configured) -Info 27 [16:00:57.000] Files (3) +Info 26 [00:00:55.000] ----------------------------------------------- +Info 27 [00:00:56.000] Project '/user/username/projects/myproject/usage/tsconfig.json' (Configured) +Info 27 [00:00:57.000] Files (3) -Info 27 [16:00:58.000] ----------------------------------------------- -Info 27 [16:00:59.000] Open files: -Info 27 [16:01:00.000] FileName: /user/username/projects/myproject/usage/usage.ts ProjectRootPath: undefined -Info 27 [16:01:01.000] Projects: /user/username/projects/myproject/usage/tsconfig.json +Info 27 [00:00:58.000] ----------------------------------------------- +Info 27 [00:00:59.000] Open files: +Info 27 [00:01:00.000] FileName: /user/username/projects/myproject/usage/usage.ts ProjectRootPath: undefined +Info 27 [00:01:01.000] Projects: /user/username/projects/myproject/usage/tsconfig.json After request PolledWatches:: @@ -141,11 +141,11 @@ FsWatchesRecursive:: /user/username/projects/myproject/dependency: {} -Info 27 [16:01:02.000] response: +Info 27 [00:01:02.000] response: { "responseRequired": false } -Info 28 [16:01:03.000] request: +Info 28 [00:01:03.000] request: { "command": "compileOnSaveAffectedFileList", "arguments": { @@ -180,22 +180,22 @@ FsWatchesRecursive:: /user/username/projects/myproject/dependency: {} -Info 29 [16:01:04.000] Before ensureProjectForOpenFiles: -Info 30 [16:01:05.000] Project '/user/username/projects/myproject/usage/tsconfig.json' (Configured) -Info 30 [16:01:06.000] Files (3) +Info 29 [00:01:04.000] Before ensureProjectForOpenFiles: +Info 30 [00:01:05.000] Project '/user/username/projects/myproject/usage/tsconfig.json' (Configured) +Info 30 [00:01:06.000] Files (3) -Info 30 [16:01:07.000] ----------------------------------------------- -Info 30 [16:01:08.000] Open files: -Info 30 [16:01:09.000] FileName: /user/username/projects/myproject/usage/usage.ts ProjectRootPath: undefined -Info 30 [16:01:10.000] Projects: /user/username/projects/myproject/usage/tsconfig.json -Info 30 [16:01:11.000] After ensureProjectForOpenFiles: -Info 31 [16:01:12.000] Project '/user/username/projects/myproject/usage/tsconfig.json' (Configured) -Info 31 [16:01:13.000] Files (3) +Info 30 [00:01:07.000] ----------------------------------------------- +Info 30 [00:01:08.000] Open files: +Info 30 [00:01:09.000] FileName: /user/username/projects/myproject/usage/usage.ts ProjectRootPath: undefined +Info 30 [00:01:10.000] Projects: /user/username/projects/myproject/usage/tsconfig.json +Info 30 [00:01:11.000] After ensureProjectForOpenFiles: +Info 31 [00:01:12.000] Project '/user/username/projects/myproject/usage/tsconfig.json' (Configured) +Info 31 [00:01:13.000] Files (3) -Info 31 [16:01:14.000] ----------------------------------------------- -Info 31 [16:01:15.000] Open files: -Info 31 [16:01:16.000] FileName: /user/username/projects/myproject/usage/usage.ts ProjectRootPath: undefined -Info 31 [16:01:17.000] Projects: /user/username/projects/myproject/usage/tsconfig.json +Info 31 [00:01:14.000] ----------------------------------------------- +Info 31 [00:01:15.000] Open files: +Info 31 [00:01:16.000] FileName: /user/username/projects/myproject/usage/usage.ts ProjectRootPath: undefined +Info 31 [00:01:17.000] Projects: /user/username/projects/myproject/usage/tsconfig.json After request PolledWatches:: @@ -222,7 +222,7 @@ FsWatchesRecursive:: /user/username/projects/myproject/dependency: {} -Info 31 [16:01:18.000] response: +Info 31 [00:01:18.000] response: { "response": [ { @@ -235,7 +235,7 @@ Info 31 [16:01:18.000] response: ], "responseRequired": true } -Info 32 [16:01:19.000] request: +Info 32 [00:01:19.000] request: { "command": "change", "arguments": { @@ -301,11 +301,11 @@ FsWatchesRecursive:: /user/username/projects/myproject/dependency: {} -Info 33 [16:01:20.000] response: +Info 33 [00:01:20.000] response: { "responseRequired": false } -Info 34 [16:01:21.000] request: +Info 34 [00:01:21.000] request: { "command": "compileOnSaveAffectedFileList", "arguments": { @@ -341,9 +341,9 @@ FsWatchesRecursive:: /user/username/projects/myproject/dependency: {} -Info 35 [16:01:22.000] Starting updateGraphWorker: Project: /user/username/projects/myproject/usage/tsconfig.json -Info 36 [16:01:23.000] Finishing updateGraphWorker: Project: /user/username/projects/myproject/usage/tsconfig.json Version: 2 structureChanged: false structureIsReused:: Completely Elapsed:: *ms -Info 37 [16:01:24.000] Different program with same set of files +Info 35 [00:01:22.000] Starting updateGraphWorker: Project: /user/username/projects/myproject/usage/tsconfig.json +Info 36 [00:01:23.000] Finishing updateGraphWorker: Project: /user/username/projects/myproject/usage/tsconfig.json Version: 2 structureChanged: false structureIsReused:: Completely Elapsed:: *ms +Info 37 [00:01:24.000] Different program with same set of files After request PolledWatches:: @@ -370,7 +370,7 @@ FsWatchesRecursive:: /user/username/projects/myproject/dependency: {} -Info 38 [16:01:25.000] response: +Info 38 [00:01:25.000] response: { "response": [ { @@ -383,7 +383,7 @@ Info 38 [16:01:25.000] response: ], "responseRequired": true } -Info 39 [16:01:26.000] request: +Info 39 [00:01:26.000] request: { "command": "compileOnSaveEmitFile", "arguments": { @@ -419,9 +419,9 @@ FsWatchesRecursive:: /user/username/projects/myproject/dependency: {} -Info 40 [16:01:29.000] DirectoryWatcher:: Triggered with /user/username/projects/myproject/usage/usage.js :: WatchInfo: /user/username/projects/myproject/usage 1 undefined Config: /user/username/projects/myproject/usage/tsconfig.json WatchType: Wild card directory -Info 41 [16:01:30.000] Project: /user/username/projects/myproject/usage/tsconfig.json Detected file add/remove of non supported extension: /user/username/projects/myproject/usage/usage.js -Info 42 [16:01:31.000] Elapsed:: *ms DirectoryWatcher:: Triggered with /user/username/projects/myproject/usage/usage.js :: WatchInfo: /user/username/projects/myproject/usage 1 undefined Config: /user/username/projects/myproject/usage/tsconfig.json WatchType: Wild card directory +Info 40 [00:01:29.000] DirectoryWatcher:: Triggered with /user/username/projects/myproject/usage/usage.js :: WatchInfo: /user/username/projects/myproject/usage 1 undefined Config: /user/username/projects/myproject/usage/tsconfig.json WatchType: Wild card directory +Info 41 [00:01:30.000] Project: /user/username/projects/myproject/usage/tsconfig.json Detected file add/remove of non supported extension: /user/username/projects/myproject/usage/usage.js +Info 42 [00:01:31.000] Elapsed:: *ms DirectoryWatcher:: Triggered with /user/username/projects/myproject/usage/usage.js :: WatchInfo: /user/username/projects/myproject/usage 1 undefined Config: /user/username/projects/myproject/usage/tsconfig.json WatchType: Wild card directory After request //// [/user/username/projects/myproject/usage/usage.js] "use strict"; @@ -459,12 +459,12 @@ FsWatchesRecursive:: /user/username/projects/myproject/dependency: {} -Info 43 [16:01:32.000] response: +Info 43 [00:01:32.000] response: { "response": true, "responseRequired": true } -Info 44 [16:01:33.000] request: +Info 44 [00:01:33.000] request: { "command": "emit-output", "arguments": { @@ -526,7 +526,7 @@ FsWatchesRecursive:: /user/username/projects/myproject/dependency: {} -Info 45 [16:01:34.000] response: +Info 45 [00:01:34.000] response: { "response": { "outputFiles": [ diff --git a/tests/baselines/reference/tsserver/projectReferenceCompileOnSave/when-dependency-project-is-not-open-and-save-on-usage-with-project-and-local-change-to-dependency.js b/tests/baselines/reference/tsserver/projectReferenceCompileOnSave/when-dependency-project-is-not-open-and-save-on-usage-with-project-and-local-change-to-dependency.js index 51d852ec82414..4c5d4d9868ec5 100644 --- a/tests/baselines/reference/tsserver/projectReferenceCompileOnSave/when-dependency-project-is-not-open-and-save-on-usage-with-project-and-local-change-to-dependency.js +++ b/tests/baselines/reference/tsserver/projectReferenceCompileOnSave/when-dependency-project-is-not-open-and-save-on-usage-with-project-and-local-change-to-dependency.js @@ -1,5 +1,5 @@ -Info 0 [16:00:29.000] Provided types map file "/a/lib/typesMap.json" doesn't exist -Info 1 [16:00:30.000] request: +Info 0 [00:00:29.000] Provided types map file "/a/lib/typesMap.json" doesn't exist +Info 1 [00:00:30.000] request: { "seq": 0, "type": "request", @@ -49,11 +49,11 @@ FsWatches:: FsWatchesRecursive:: -Info 2 [16:00:31.000] Search path: /user/username/projects/myproject/usage -Info 3 [16:00:32.000] For info: /user/username/projects/myproject/usage/usage.ts :: Config file name: /user/username/projects/myproject/usage/tsconfig.json -Info 4 [16:00:33.000] Creating configuration project /user/username/projects/myproject/usage/tsconfig.json -Info 5 [16:00:34.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/usage/tsconfig.json 2000 undefined Project: /user/username/projects/myproject/usage/tsconfig.json WatchType: Config file -Info 6 [16:00:35.000] Config: /user/username/projects/myproject/usage/tsconfig.json : { +Info 2 [00:00:31.000] Search path: /user/username/projects/myproject/usage +Info 3 [00:00:32.000] For info: /user/username/projects/myproject/usage/usage.ts :: Config file name: /user/username/projects/myproject/usage/tsconfig.json +Info 4 [00:00:33.000] Creating configuration project /user/username/projects/myproject/usage/tsconfig.json +Info 5 [00:00:34.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/usage/tsconfig.json 2000 undefined Project: /user/username/projects/myproject/usage/tsconfig.json WatchType: Config file +Info 6 [00:00:35.000] Config: /user/username/projects/myproject/usage/tsconfig.json : { "rootNames": [ "/user/username/projects/myproject/usage/usage.ts" ], @@ -67,11 +67,11 @@ Info 6 [16:00:35.000] Config: /user/username/projects/myproject/usage/tsconfi } ] } -Info 7 [16:00:36.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/usage 1 undefined Config: /user/username/projects/myproject/usage/tsconfig.json WatchType: Wild card directory -Info 8 [16:00:37.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/usage 1 undefined Config: /user/username/projects/myproject/usage/tsconfig.json WatchType: Wild card directory -Info 9 [16:00:38.000] Plugins were requested but not running in environment that supports 'require'. Nothing will be loaded -Info 10 [16:00:39.000] Starting updateGraphWorker: Project: /user/username/projects/myproject/usage/tsconfig.json -Info 11 [16:00:40.000] Config: /user/username/projects/myproject/dependency/tsconfig.json : { +Info 7 [00:00:36.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/usage 1 undefined Config: /user/username/projects/myproject/usage/tsconfig.json WatchType: Wild card directory +Info 8 [00:00:37.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/usage 1 undefined Config: /user/username/projects/myproject/usage/tsconfig.json WatchType: Wild card directory +Info 9 [00:00:38.000] Plugins were requested but not running in environment that supports 'require'. Nothing will be loaded +Info 10 [00:00:39.000] Starting updateGraphWorker: Project: /user/username/projects/myproject/usage/tsconfig.json +Info 11 [00:00:40.000] Config: /user/username/projects/myproject/dependency/tsconfig.json : { "rootNames": [ "/user/username/projects/myproject/dependency/fns.ts" ], @@ -81,20 +81,20 @@ Info 11 [16:00:40.000] Config: /user/username/projects/myproject/dependency/ts "configFilePath": "/user/username/projects/myproject/dependency/tsconfig.json" } } -Info 12 [16:00:41.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/dependency/tsconfig.json 2000 undefined Project: /user/username/projects/myproject/usage/tsconfig.json WatchType: Config file -Info 13 [16:00:42.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/dependency 1 undefined Config: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Wild card directory -Info 14 [16:00:43.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/dependency 1 undefined Config: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Wild card directory -Info 15 [16:00:44.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/decls 1 undefined Project: /user/username/projects/myproject/usage/tsconfig.json WatchType: Failed Lookup Locations -Info 16 [16:00:45.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/decls 1 undefined Project: /user/username/projects/myproject/usage/tsconfig.json WatchType: Failed Lookup Locations -Info 17 [16:00:46.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/dependency/fns.ts 500 undefined WatchType: Closed Script info -Info 18 [16:00:47.000] FileWatcher:: Added:: WatchInfo: /a/lib/lib.d.ts 500 undefined WatchType: Closed Script info -Info 19 [16:00:48.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/usage/node_modules/@types 1 undefined Project: /user/username/projects/myproject/usage/tsconfig.json WatchType: Type roots -Info 20 [16:00:49.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/usage/node_modules/@types 1 undefined Project: /user/username/projects/myproject/usage/tsconfig.json WatchType: Type roots -Info 21 [16:00:50.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/usage/tsconfig.json WatchType: Type roots -Info 22 [16:00:51.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/usage/tsconfig.json WatchType: Type roots -Info 23 [16:00:52.000] Finishing updateGraphWorker: Project: /user/username/projects/myproject/usage/tsconfig.json Version: 1 structureChanged: true structureIsReused:: Not Elapsed:: *ms -Info 24 [16:00:53.000] Project '/user/username/projects/myproject/usage/tsconfig.json' (Configured) -Info 25 [16:00:54.000] Files (3) +Info 12 [00:00:41.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/dependency/tsconfig.json 2000 undefined Project: /user/username/projects/myproject/usage/tsconfig.json WatchType: Config file +Info 13 [00:00:42.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/dependency 1 undefined Config: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Wild card directory +Info 14 [00:00:43.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/dependency 1 undefined Config: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Wild card directory +Info 15 [00:00:44.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/decls 1 undefined Project: /user/username/projects/myproject/usage/tsconfig.json WatchType: Failed Lookup Locations +Info 16 [00:00:45.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/decls 1 undefined Project: /user/username/projects/myproject/usage/tsconfig.json WatchType: Failed Lookup Locations +Info 17 [00:00:46.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/dependency/fns.ts 500 undefined WatchType: Closed Script info +Info 18 [00:00:47.000] FileWatcher:: Added:: WatchInfo: /a/lib/lib.d.ts 500 undefined WatchType: Closed Script info +Info 19 [00:00:48.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/usage/node_modules/@types 1 undefined Project: /user/username/projects/myproject/usage/tsconfig.json WatchType: Type roots +Info 20 [00:00:49.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/usage/node_modules/@types 1 undefined Project: /user/username/projects/myproject/usage/tsconfig.json WatchType: Type roots +Info 21 [00:00:50.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/usage/tsconfig.json WatchType: Type roots +Info 22 [00:00:51.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/usage/tsconfig.json WatchType: Type roots +Info 23 [00:00:52.000] Finishing updateGraphWorker: Project: /user/username/projects/myproject/usage/tsconfig.json Version: 1 structureChanged: true structureIsReused:: Not Elapsed:: *ms +Info 24 [00:00:53.000] Project '/user/username/projects/myproject/usage/tsconfig.json' (Configured) +Info 25 [00:00:54.000] Files (3) /a/lib/lib.d.ts /user/username/projects/myproject/dependency/fns.ts /user/username/projects/myproject/usage/usage.ts @@ -107,14 +107,14 @@ Info 25 [16:00:54.000] Files (3) usage.ts Matched by default include pattern '**/*' -Info 26 [16:00:55.000] ----------------------------------------------- -Info 27 [16:00:56.000] Project '/user/username/projects/myproject/usage/tsconfig.json' (Configured) -Info 27 [16:00:57.000] Files (3) +Info 26 [00:00:55.000] ----------------------------------------------- +Info 27 [00:00:56.000] Project '/user/username/projects/myproject/usage/tsconfig.json' (Configured) +Info 27 [00:00:57.000] Files (3) -Info 27 [16:00:58.000] ----------------------------------------------- -Info 27 [16:00:59.000] Open files: -Info 27 [16:01:00.000] FileName: /user/username/projects/myproject/usage/usage.ts ProjectRootPath: undefined -Info 27 [16:01:01.000] Projects: /user/username/projects/myproject/usage/tsconfig.json +Info 27 [00:00:58.000] ----------------------------------------------- +Info 27 [00:00:59.000] Open files: +Info 27 [00:01:00.000] FileName: /user/username/projects/myproject/usage/usage.ts ProjectRootPath: undefined +Info 27 [00:01:01.000] Projects: /user/username/projects/myproject/usage/tsconfig.json After request PolledWatches:: @@ -141,11 +141,11 @@ FsWatchesRecursive:: /user/username/projects/myproject/dependency: {} -Info 27 [16:01:02.000] response: +Info 27 [00:01:02.000] response: { "responseRequired": false } -Info 28 [16:01:03.000] request: +Info 28 [00:01:03.000] request: { "command": "compileOnSaveAffectedFileList", "arguments": { @@ -180,22 +180,22 @@ FsWatchesRecursive:: /user/username/projects/myproject/dependency: {} -Info 29 [16:01:04.000] Before ensureProjectForOpenFiles: -Info 30 [16:01:05.000] Project '/user/username/projects/myproject/usage/tsconfig.json' (Configured) -Info 30 [16:01:06.000] Files (3) +Info 29 [00:01:04.000] Before ensureProjectForOpenFiles: +Info 30 [00:01:05.000] Project '/user/username/projects/myproject/usage/tsconfig.json' (Configured) +Info 30 [00:01:06.000] Files (3) -Info 30 [16:01:07.000] ----------------------------------------------- -Info 30 [16:01:08.000] Open files: -Info 30 [16:01:09.000] FileName: /user/username/projects/myproject/usage/usage.ts ProjectRootPath: undefined -Info 30 [16:01:10.000] Projects: /user/username/projects/myproject/usage/tsconfig.json -Info 30 [16:01:11.000] After ensureProjectForOpenFiles: -Info 31 [16:01:12.000] Project '/user/username/projects/myproject/usage/tsconfig.json' (Configured) -Info 31 [16:01:13.000] Files (3) +Info 30 [00:01:07.000] ----------------------------------------------- +Info 30 [00:01:08.000] Open files: +Info 30 [00:01:09.000] FileName: /user/username/projects/myproject/usage/usage.ts ProjectRootPath: undefined +Info 30 [00:01:10.000] Projects: /user/username/projects/myproject/usage/tsconfig.json +Info 30 [00:01:11.000] After ensureProjectForOpenFiles: +Info 31 [00:01:12.000] Project '/user/username/projects/myproject/usage/tsconfig.json' (Configured) +Info 31 [00:01:13.000] Files (3) -Info 31 [16:01:14.000] ----------------------------------------------- -Info 31 [16:01:15.000] Open files: -Info 31 [16:01:16.000] FileName: /user/username/projects/myproject/usage/usage.ts ProjectRootPath: undefined -Info 31 [16:01:17.000] Projects: /user/username/projects/myproject/usage/tsconfig.json +Info 31 [00:01:14.000] ----------------------------------------------- +Info 31 [00:01:15.000] Open files: +Info 31 [00:01:16.000] FileName: /user/username/projects/myproject/usage/usage.ts ProjectRootPath: undefined +Info 31 [00:01:17.000] Projects: /user/username/projects/myproject/usage/tsconfig.json After request PolledWatches:: @@ -222,7 +222,7 @@ FsWatchesRecursive:: /user/username/projects/myproject/dependency: {} -Info 31 [16:01:18.000] response: +Info 31 [00:01:18.000] response: { "response": [ { @@ -235,11 +235,11 @@ Info 31 [16:01:18.000] response: ], "responseRequired": true } -Info 32 [16:01:22.000] FileWatcher:: Triggered with /user/username/projects/myproject/dependency/fns.ts 1:: WatchInfo: /user/username/projects/myproject/dependency/fns.ts 500 undefined WatchType: Closed Script info -Info 33 [16:01:23.000] Scheduled: /user/username/projects/myproject/usage/tsconfig.json -Info 34 [16:01:24.000] Scheduled: *ensureProjectForOpenFiles* -Info 35 [16:01:25.000] Elapsed:: *ms FileWatcher:: Triggered with /user/username/projects/myproject/dependency/fns.ts 1:: WatchInfo: /user/username/projects/myproject/dependency/fns.ts 500 undefined WatchType: Closed Script info -Info 36 [16:01:26.000] request: +Info 32 [00:01:22.000] FileWatcher:: Triggered with /user/username/projects/myproject/dependency/fns.ts 1:: WatchInfo: /user/username/projects/myproject/dependency/fns.ts 500 undefined WatchType: Closed Script info +Info 33 [00:01:23.000] Scheduled: /user/username/projects/myproject/usage/tsconfig.json +Info 34 [00:01:24.000] Scheduled: *ensureProjectForOpenFiles* +Info 35 [00:01:25.000] Elapsed:: *ms FileWatcher:: Triggered with /user/username/projects/myproject/dependency/fns.ts 1:: WatchInfo: /user/username/projects/myproject/dependency/fns.ts 500 undefined WatchType: Closed Script info +Info 36 [00:01:26.000] request: { "command": "compileOnSaveAffectedFileList", "arguments": { @@ -280,9 +280,9 @@ FsWatchesRecursive:: /user/username/projects/myproject/dependency: {} -Info 37 [16:01:27.000] Starting updateGraphWorker: Project: /user/username/projects/myproject/usage/tsconfig.json -Info 38 [16:01:28.000] Finishing updateGraphWorker: Project: /user/username/projects/myproject/usage/tsconfig.json Version: 2 structureChanged: false structureIsReused:: Completely Elapsed:: *ms -Info 39 [16:01:29.000] Different program with same set of files +Info 37 [00:01:27.000] Starting updateGraphWorker: Project: /user/username/projects/myproject/usage/tsconfig.json +Info 38 [00:01:28.000] Finishing updateGraphWorker: Project: /user/username/projects/myproject/usage/tsconfig.json Version: 2 structureChanged: false structureIsReused:: Completely Elapsed:: *ms +Info 39 [00:01:29.000] Different program with same set of files After request PolledWatches:: @@ -309,7 +309,7 @@ FsWatchesRecursive:: /user/username/projects/myproject/dependency: {} -Info 40 [16:01:30.000] response: +Info 40 [00:01:30.000] response: { "response": [ { @@ -322,7 +322,7 @@ Info 40 [16:01:30.000] response: ], "responseRequired": true } -Info 41 [16:01:31.000] request: +Info 41 [00:01:31.000] request: { "command": "compileOnSaveEmitFile", "arguments": { @@ -358,9 +358,9 @@ FsWatchesRecursive:: /user/username/projects/myproject/dependency: {} -Info 42 [16:01:34.000] DirectoryWatcher:: Triggered with /user/username/projects/myproject/usage/usage.js :: WatchInfo: /user/username/projects/myproject/usage 1 undefined Config: /user/username/projects/myproject/usage/tsconfig.json WatchType: Wild card directory -Info 43 [16:01:35.000] Project: /user/username/projects/myproject/usage/tsconfig.json Detected file add/remove of non supported extension: /user/username/projects/myproject/usage/usage.js -Info 44 [16:01:36.000] Elapsed:: *ms DirectoryWatcher:: Triggered with /user/username/projects/myproject/usage/usage.js :: WatchInfo: /user/username/projects/myproject/usage 1 undefined Config: /user/username/projects/myproject/usage/tsconfig.json WatchType: Wild card directory +Info 42 [00:01:34.000] DirectoryWatcher:: Triggered with /user/username/projects/myproject/usage/usage.js :: WatchInfo: /user/username/projects/myproject/usage 1 undefined Config: /user/username/projects/myproject/usage/tsconfig.json WatchType: Wild card directory +Info 43 [00:01:35.000] Project: /user/username/projects/myproject/usage/tsconfig.json Detected file add/remove of non supported extension: /user/username/projects/myproject/usage/usage.js +Info 44 [00:01:36.000] Elapsed:: *ms DirectoryWatcher:: Triggered with /user/username/projects/myproject/usage/usage.js :: WatchInfo: /user/username/projects/myproject/usage 1 undefined Config: /user/username/projects/myproject/usage/tsconfig.json WatchType: Wild card directory After request //// [/user/username/projects/myproject/usage/usage.js] "use strict"; @@ -395,12 +395,12 @@ FsWatchesRecursive:: /user/username/projects/myproject/dependency: {} -Info 45 [16:01:37.000] response: +Info 45 [00:01:37.000] response: { "response": true, "responseRequired": true } -Info 46 [16:01:38.000] request: +Info 46 [00:01:38.000] request: { "command": "emit-output", "arguments": { @@ -462,7 +462,7 @@ FsWatchesRecursive:: /user/username/projects/myproject/dependency: {} -Info 47 [16:01:39.000] response: +Info 47 [00:01:39.000] response: { "response": { "outputFiles": [ diff --git a/tests/baselines/reference/tsserver/projectReferenceCompileOnSave/when-dependency-project-is-not-open-and-save-on-usage-with-project-and-local-change-to-usage.js b/tests/baselines/reference/tsserver/projectReferenceCompileOnSave/when-dependency-project-is-not-open-and-save-on-usage-with-project-and-local-change-to-usage.js index 2f8006ffc731d..0a6137030e65b 100644 --- a/tests/baselines/reference/tsserver/projectReferenceCompileOnSave/when-dependency-project-is-not-open-and-save-on-usage-with-project-and-local-change-to-usage.js +++ b/tests/baselines/reference/tsserver/projectReferenceCompileOnSave/when-dependency-project-is-not-open-and-save-on-usage-with-project-and-local-change-to-usage.js @@ -1,5 +1,5 @@ -Info 0 [16:00:29.000] Provided types map file "/a/lib/typesMap.json" doesn't exist -Info 1 [16:00:30.000] request: +Info 0 [00:00:29.000] Provided types map file "/a/lib/typesMap.json" doesn't exist +Info 1 [00:00:30.000] request: { "seq": 0, "type": "request", @@ -49,11 +49,11 @@ FsWatches:: FsWatchesRecursive:: -Info 2 [16:00:31.000] Search path: /user/username/projects/myproject/usage -Info 3 [16:00:32.000] For info: /user/username/projects/myproject/usage/usage.ts :: Config file name: /user/username/projects/myproject/usage/tsconfig.json -Info 4 [16:00:33.000] Creating configuration project /user/username/projects/myproject/usage/tsconfig.json -Info 5 [16:00:34.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/usage/tsconfig.json 2000 undefined Project: /user/username/projects/myproject/usage/tsconfig.json WatchType: Config file -Info 6 [16:00:35.000] Config: /user/username/projects/myproject/usage/tsconfig.json : { +Info 2 [00:00:31.000] Search path: /user/username/projects/myproject/usage +Info 3 [00:00:32.000] For info: /user/username/projects/myproject/usage/usage.ts :: Config file name: /user/username/projects/myproject/usage/tsconfig.json +Info 4 [00:00:33.000] Creating configuration project /user/username/projects/myproject/usage/tsconfig.json +Info 5 [00:00:34.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/usage/tsconfig.json 2000 undefined Project: /user/username/projects/myproject/usage/tsconfig.json WatchType: Config file +Info 6 [00:00:35.000] Config: /user/username/projects/myproject/usage/tsconfig.json : { "rootNames": [ "/user/username/projects/myproject/usage/usage.ts" ], @@ -67,11 +67,11 @@ Info 6 [16:00:35.000] Config: /user/username/projects/myproject/usage/tsconfi } ] } -Info 7 [16:00:36.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/usage 1 undefined Config: /user/username/projects/myproject/usage/tsconfig.json WatchType: Wild card directory -Info 8 [16:00:37.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/usage 1 undefined Config: /user/username/projects/myproject/usage/tsconfig.json WatchType: Wild card directory -Info 9 [16:00:38.000] Plugins were requested but not running in environment that supports 'require'. Nothing will be loaded -Info 10 [16:00:39.000] Starting updateGraphWorker: Project: /user/username/projects/myproject/usage/tsconfig.json -Info 11 [16:00:40.000] Config: /user/username/projects/myproject/dependency/tsconfig.json : { +Info 7 [00:00:36.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/usage 1 undefined Config: /user/username/projects/myproject/usage/tsconfig.json WatchType: Wild card directory +Info 8 [00:00:37.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/usage 1 undefined Config: /user/username/projects/myproject/usage/tsconfig.json WatchType: Wild card directory +Info 9 [00:00:38.000] Plugins were requested but not running in environment that supports 'require'. Nothing will be loaded +Info 10 [00:00:39.000] Starting updateGraphWorker: Project: /user/username/projects/myproject/usage/tsconfig.json +Info 11 [00:00:40.000] Config: /user/username/projects/myproject/dependency/tsconfig.json : { "rootNames": [ "/user/username/projects/myproject/dependency/fns.ts" ], @@ -81,20 +81,20 @@ Info 11 [16:00:40.000] Config: /user/username/projects/myproject/dependency/ts "configFilePath": "/user/username/projects/myproject/dependency/tsconfig.json" } } -Info 12 [16:00:41.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/dependency/tsconfig.json 2000 undefined Project: /user/username/projects/myproject/usage/tsconfig.json WatchType: Config file -Info 13 [16:00:42.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/dependency 1 undefined Config: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Wild card directory -Info 14 [16:00:43.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/dependency 1 undefined Config: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Wild card directory -Info 15 [16:00:44.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/decls 1 undefined Project: /user/username/projects/myproject/usage/tsconfig.json WatchType: Failed Lookup Locations -Info 16 [16:00:45.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/decls 1 undefined Project: /user/username/projects/myproject/usage/tsconfig.json WatchType: Failed Lookup Locations -Info 17 [16:00:46.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/dependency/fns.ts 500 undefined WatchType: Closed Script info -Info 18 [16:00:47.000] FileWatcher:: Added:: WatchInfo: /a/lib/lib.d.ts 500 undefined WatchType: Closed Script info -Info 19 [16:00:48.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/usage/node_modules/@types 1 undefined Project: /user/username/projects/myproject/usage/tsconfig.json WatchType: Type roots -Info 20 [16:00:49.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/usage/node_modules/@types 1 undefined Project: /user/username/projects/myproject/usage/tsconfig.json WatchType: Type roots -Info 21 [16:00:50.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/usage/tsconfig.json WatchType: Type roots -Info 22 [16:00:51.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/usage/tsconfig.json WatchType: Type roots -Info 23 [16:00:52.000] Finishing updateGraphWorker: Project: /user/username/projects/myproject/usage/tsconfig.json Version: 1 structureChanged: true structureIsReused:: Not Elapsed:: *ms -Info 24 [16:00:53.000] Project '/user/username/projects/myproject/usage/tsconfig.json' (Configured) -Info 25 [16:00:54.000] Files (3) +Info 12 [00:00:41.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/dependency/tsconfig.json 2000 undefined Project: /user/username/projects/myproject/usage/tsconfig.json WatchType: Config file +Info 13 [00:00:42.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/dependency 1 undefined Config: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Wild card directory +Info 14 [00:00:43.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/dependency 1 undefined Config: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Wild card directory +Info 15 [00:00:44.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/decls 1 undefined Project: /user/username/projects/myproject/usage/tsconfig.json WatchType: Failed Lookup Locations +Info 16 [00:00:45.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/decls 1 undefined Project: /user/username/projects/myproject/usage/tsconfig.json WatchType: Failed Lookup Locations +Info 17 [00:00:46.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/dependency/fns.ts 500 undefined WatchType: Closed Script info +Info 18 [00:00:47.000] FileWatcher:: Added:: WatchInfo: /a/lib/lib.d.ts 500 undefined WatchType: Closed Script info +Info 19 [00:00:48.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/usage/node_modules/@types 1 undefined Project: /user/username/projects/myproject/usage/tsconfig.json WatchType: Type roots +Info 20 [00:00:49.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/usage/node_modules/@types 1 undefined Project: /user/username/projects/myproject/usage/tsconfig.json WatchType: Type roots +Info 21 [00:00:50.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/usage/tsconfig.json WatchType: Type roots +Info 22 [00:00:51.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/usage/tsconfig.json WatchType: Type roots +Info 23 [00:00:52.000] Finishing updateGraphWorker: Project: /user/username/projects/myproject/usage/tsconfig.json Version: 1 structureChanged: true structureIsReused:: Not Elapsed:: *ms +Info 24 [00:00:53.000] Project '/user/username/projects/myproject/usage/tsconfig.json' (Configured) +Info 25 [00:00:54.000] Files (3) /a/lib/lib.d.ts /user/username/projects/myproject/dependency/fns.ts /user/username/projects/myproject/usage/usage.ts @@ -107,14 +107,14 @@ Info 25 [16:00:54.000] Files (3) usage.ts Matched by default include pattern '**/*' -Info 26 [16:00:55.000] ----------------------------------------------- -Info 27 [16:00:56.000] Project '/user/username/projects/myproject/usage/tsconfig.json' (Configured) -Info 27 [16:00:57.000] Files (3) +Info 26 [00:00:55.000] ----------------------------------------------- +Info 27 [00:00:56.000] Project '/user/username/projects/myproject/usage/tsconfig.json' (Configured) +Info 27 [00:00:57.000] Files (3) -Info 27 [16:00:58.000] ----------------------------------------------- -Info 27 [16:00:59.000] Open files: -Info 27 [16:01:00.000] FileName: /user/username/projects/myproject/usage/usage.ts ProjectRootPath: undefined -Info 27 [16:01:01.000] Projects: /user/username/projects/myproject/usage/tsconfig.json +Info 27 [00:00:58.000] ----------------------------------------------- +Info 27 [00:00:59.000] Open files: +Info 27 [00:01:00.000] FileName: /user/username/projects/myproject/usage/usage.ts ProjectRootPath: undefined +Info 27 [00:01:01.000] Projects: /user/username/projects/myproject/usage/tsconfig.json After request PolledWatches:: @@ -141,11 +141,11 @@ FsWatchesRecursive:: /user/username/projects/myproject/dependency: {} -Info 27 [16:01:02.000] response: +Info 27 [00:01:02.000] response: { "responseRequired": false } -Info 28 [16:01:03.000] request: +Info 28 [00:01:03.000] request: { "command": "compileOnSaveAffectedFileList", "arguments": { @@ -180,22 +180,22 @@ FsWatchesRecursive:: /user/username/projects/myproject/dependency: {} -Info 29 [16:01:04.000] Before ensureProjectForOpenFiles: -Info 30 [16:01:05.000] Project '/user/username/projects/myproject/usage/tsconfig.json' (Configured) -Info 30 [16:01:06.000] Files (3) +Info 29 [00:01:04.000] Before ensureProjectForOpenFiles: +Info 30 [00:01:05.000] Project '/user/username/projects/myproject/usage/tsconfig.json' (Configured) +Info 30 [00:01:06.000] Files (3) -Info 30 [16:01:07.000] ----------------------------------------------- -Info 30 [16:01:08.000] Open files: -Info 30 [16:01:09.000] FileName: /user/username/projects/myproject/usage/usage.ts ProjectRootPath: undefined -Info 30 [16:01:10.000] Projects: /user/username/projects/myproject/usage/tsconfig.json -Info 30 [16:01:11.000] After ensureProjectForOpenFiles: -Info 31 [16:01:12.000] Project '/user/username/projects/myproject/usage/tsconfig.json' (Configured) -Info 31 [16:01:13.000] Files (3) +Info 30 [00:01:07.000] ----------------------------------------------- +Info 30 [00:01:08.000] Open files: +Info 30 [00:01:09.000] FileName: /user/username/projects/myproject/usage/usage.ts ProjectRootPath: undefined +Info 30 [00:01:10.000] Projects: /user/username/projects/myproject/usage/tsconfig.json +Info 30 [00:01:11.000] After ensureProjectForOpenFiles: +Info 31 [00:01:12.000] Project '/user/username/projects/myproject/usage/tsconfig.json' (Configured) +Info 31 [00:01:13.000] Files (3) -Info 31 [16:01:14.000] ----------------------------------------------- -Info 31 [16:01:15.000] Open files: -Info 31 [16:01:16.000] FileName: /user/username/projects/myproject/usage/usage.ts ProjectRootPath: undefined -Info 31 [16:01:17.000] Projects: /user/username/projects/myproject/usage/tsconfig.json +Info 31 [00:01:14.000] ----------------------------------------------- +Info 31 [00:01:15.000] Open files: +Info 31 [00:01:16.000] FileName: /user/username/projects/myproject/usage/usage.ts ProjectRootPath: undefined +Info 31 [00:01:17.000] Projects: /user/username/projects/myproject/usage/tsconfig.json After request PolledWatches:: @@ -222,7 +222,7 @@ FsWatchesRecursive:: /user/username/projects/myproject/dependency: {} -Info 31 [16:01:18.000] response: +Info 31 [00:01:18.000] response: { "response": [ { @@ -235,7 +235,7 @@ Info 31 [16:01:18.000] response: ], "responseRequired": true } -Info 32 [16:01:19.000] request: +Info 32 [00:01:19.000] request: { "command": "change", "arguments": { @@ -301,11 +301,11 @@ FsWatchesRecursive:: /user/username/projects/myproject/dependency: {} -Info 33 [16:01:20.000] response: +Info 33 [00:01:20.000] response: { "responseRequired": false } -Info 34 [16:01:21.000] request: +Info 34 [00:01:21.000] request: { "command": "compileOnSaveAffectedFileList", "arguments": { @@ -341,9 +341,9 @@ FsWatchesRecursive:: /user/username/projects/myproject/dependency: {} -Info 35 [16:01:22.000] Starting updateGraphWorker: Project: /user/username/projects/myproject/usage/tsconfig.json -Info 36 [16:01:23.000] Finishing updateGraphWorker: Project: /user/username/projects/myproject/usage/tsconfig.json Version: 2 structureChanged: false structureIsReused:: Completely Elapsed:: *ms -Info 37 [16:01:24.000] Different program with same set of files +Info 35 [00:01:22.000] Starting updateGraphWorker: Project: /user/username/projects/myproject/usage/tsconfig.json +Info 36 [00:01:23.000] Finishing updateGraphWorker: Project: /user/username/projects/myproject/usage/tsconfig.json Version: 2 structureChanged: false structureIsReused:: Completely Elapsed:: *ms +Info 37 [00:01:24.000] Different program with same set of files After request PolledWatches:: @@ -370,7 +370,7 @@ FsWatchesRecursive:: /user/username/projects/myproject/dependency: {} -Info 38 [16:01:25.000] response: +Info 38 [00:01:25.000] response: { "response": [ { @@ -383,7 +383,7 @@ Info 38 [16:01:25.000] response: ], "responseRequired": true } -Info 39 [16:01:26.000] request: +Info 39 [00:01:26.000] request: { "command": "compileOnSaveEmitFile", "arguments": { @@ -419,9 +419,9 @@ FsWatchesRecursive:: /user/username/projects/myproject/dependency: {} -Info 40 [16:01:29.000] DirectoryWatcher:: Triggered with /user/username/projects/myproject/usage/usage.js :: WatchInfo: /user/username/projects/myproject/usage 1 undefined Config: /user/username/projects/myproject/usage/tsconfig.json WatchType: Wild card directory -Info 41 [16:01:30.000] Project: /user/username/projects/myproject/usage/tsconfig.json Detected file add/remove of non supported extension: /user/username/projects/myproject/usage/usage.js -Info 42 [16:01:31.000] Elapsed:: *ms DirectoryWatcher:: Triggered with /user/username/projects/myproject/usage/usage.js :: WatchInfo: /user/username/projects/myproject/usage 1 undefined Config: /user/username/projects/myproject/usage/tsconfig.json WatchType: Wild card directory +Info 40 [00:01:29.000] DirectoryWatcher:: Triggered with /user/username/projects/myproject/usage/usage.js :: WatchInfo: /user/username/projects/myproject/usage 1 undefined Config: /user/username/projects/myproject/usage/tsconfig.json WatchType: Wild card directory +Info 41 [00:01:30.000] Project: /user/username/projects/myproject/usage/tsconfig.json Detected file add/remove of non supported extension: /user/username/projects/myproject/usage/usage.js +Info 42 [00:01:31.000] Elapsed:: *ms DirectoryWatcher:: Triggered with /user/username/projects/myproject/usage/usage.js :: WatchInfo: /user/username/projects/myproject/usage 1 undefined Config: /user/username/projects/myproject/usage/tsconfig.json WatchType: Wild card directory After request //// [/user/username/projects/myproject/usage/usage.js] "use strict"; @@ -457,12 +457,12 @@ FsWatchesRecursive:: /user/username/projects/myproject/dependency: {} -Info 43 [16:01:32.000] response: +Info 43 [00:01:32.000] response: { "response": true, "responseRequired": true } -Info 44 [16:01:33.000] request: +Info 44 [00:01:33.000] request: { "command": "emit-output", "arguments": { @@ -524,7 +524,7 @@ FsWatchesRecursive:: /user/username/projects/myproject/dependency: {} -Info 45 [16:01:34.000] response: +Info 45 [00:01:34.000] response: { "response": { "outputFiles": [ diff --git a/tests/baselines/reference/tsserver/projectReferenceCompileOnSave/when-dependency-project-is-not-open-and-save-on-usage-with-project.js b/tests/baselines/reference/tsserver/projectReferenceCompileOnSave/when-dependency-project-is-not-open-and-save-on-usage-with-project.js index 6a7795c7f5da1..927fed7f37dfb 100644 --- a/tests/baselines/reference/tsserver/projectReferenceCompileOnSave/when-dependency-project-is-not-open-and-save-on-usage-with-project.js +++ b/tests/baselines/reference/tsserver/projectReferenceCompileOnSave/when-dependency-project-is-not-open-and-save-on-usage-with-project.js @@ -1,5 +1,5 @@ -Info 0 [16:00:29.000] Provided types map file "/a/lib/typesMap.json" doesn't exist -Info 1 [16:00:30.000] request: +Info 0 [00:00:29.000] Provided types map file "/a/lib/typesMap.json" doesn't exist +Info 1 [00:00:30.000] request: { "seq": 0, "type": "request", @@ -49,11 +49,11 @@ FsWatches:: FsWatchesRecursive:: -Info 2 [16:00:31.000] Search path: /user/username/projects/myproject/usage -Info 3 [16:00:32.000] For info: /user/username/projects/myproject/usage/usage.ts :: Config file name: /user/username/projects/myproject/usage/tsconfig.json -Info 4 [16:00:33.000] Creating configuration project /user/username/projects/myproject/usage/tsconfig.json -Info 5 [16:00:34.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/usage/tsconfig.json 2000 undefined Project: /user/username/projects/myproject/usage/tsconfig.json WatchType: Config file -Info 6 [16:00:35.000] Config: /user/username/projects/myproject/usage/tsconfig.json : { +Info 2 [00:00:31.000] Search path: /user/username/projects/myproject/usage +Info 3 [00:00:32.000] For info: /user/username/projects/myproject/usage/usage.ts :: Config file name: /user/username/projects/myproject/usage/tsconfig.json +Info 4 [00:00:33.000] Creating configuration project /user/username/projects/myproject/usage/tsconfig.json +Info 5 [00:00:34.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/usage/tsconfig.json 2000 undefined Project: /user/username/projects/myproject/usage/tsconfig.json WatchType: Config file +Info 6 [00:00:35.000] Config: /user/username/projects/myproject/usage/tsconfig.json : { "rootNames": [ "/user/username/projects/myproject/usage/usage.ts" ], @@ -67,11 +67,11 @@ Info 6 [16:00:35.000] Config: /user/username/projects/myproject/usage/tsconfi } ] } -Info 7 [16:00:36.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/usage 1 undefined Config: /user/username/projects/myproject/usage/tsconfig.json WatchType: Wild card directory -Info 8 [16:00:37.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/usage 1 undefined Config: /user/username/projects/myproject/usage/tsconfig.json WatchType: Wild card directory -Info 9 [16:00:38.000] Plugins were requested but not running in environment that supports 'require'. Nothing will be loaded -Info 10 [16:00:39.000] Starting updateGraphWorker: Project: /user/username/projects/myproject/usage/tsconfig.json -Info 11 [16:00:40.000] Config: /user/username/projects/myproject/dependency/tsconfig.json : { +Info 7 [00:00:36.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/usage 1 undefined Config: /user/username/projects/myproject/usage/tsconfig.json WatchType: Wild card directory +Info 8 [00:00:37.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/usage 1 undefined Config: /user/username/projects/myproject/usage/tsconfig.json WatchType: Wild card directory +Info 9 [00:00:38.000] Plugins were requested but not running in environment that supports 'require'. Nothing will be loaded +Info 10 [00:00:39.000] Starting updateGraphWorker: Project: /user/username/projects/myproject/usage/tsconfig.json +Info 11 [00:00:40.000] Config: /user/username/projects/myproject/dependency/tsconfig.json : { "rootNames": [ "/user/username/projects/myproject/dependency/fns.ts" ], @@ -81,20 +81,20 @@ Info 11 [16:00:40.000] Config: /user/username/projects/myproject/dependency/ts "configFilePath": "/user/username/projects/myproject/dependency/tsconfig.json" } } -Info 12 [16:00:41.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/dependency/tsconfig.json 2000 undefined Project: /user/username/projects/myproject/usage/tsconfig.json WatchType: Config file -Info 13 [16:00:42.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/dependency 1 undefined Config: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Wild card directory -Info 14 [16:00:43.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/dependency 1 undefined Config: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Wild card directory -Info 15 [16:00:44.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/decls 1 undefined Project: /user/username/projects/myproject/usage/tsconfig.json WatchType: Failed Lookup Locations -Info 16 [16:00:45.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/decls 1 undefined Project: /user/username/projects/myproject/usage/tsconfig.json WatchType: Failed Lookup Locations -Info 17 [16:00:46.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/dependency/fns.ts 500 undefined WatchType: Closed Script info -Info 18 [16:00:47.000] FileWatcher:: Added:: WatchInfo: /a/lib/lib.d.ts 500 undefined WatchType: Closed Script info -Info 19 [16:00:48.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/usage/node_modules/@types 1 undefined Project: /user/username/projects/myproject/usage/tsconfig.json WatchType: Type roots -Info 20 [16:00:49.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/usage/node_modules/@types 1 undefined Project: /user/username/projects/myproject/usage/tsconfig.json WatchType: Type roots -Info 21 [16:00:50.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/usage/tsconfig.json WatchType: Type roots -Info 22 [16:00:51.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/usage/tsconfig.json WatchType: Type roots -Info 23 [16:00:52.000] Finishing updateGraphWorker: Project: /user/username/projects/myproject/usage/tsconfig.json Version: 1 structureChanged: true structureIsReused:: Not Elapsed:: *ms -Info 24 [16:00:53.000] Project '/user/username/projects/myproject/usage/tsconfig.json' (Configured) -Info 25 [16:00:54.000] Files (3) +Info 12 [00:00:41.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/dependency/tsconfig.json 2000 undefined Project: /user/username/projects/myproject/usage/tsconfig.json WatchType: Config file +Info 13 [00:00:42.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/dependency 1 undefined Config: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Wild card directory +Info 14 [00:00:43.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/dependency 1 undefined Config: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Wild card directory +Info 15 [00:00:44.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/decls 1 undefined Project: /user/username/projects/myproject/usage/tsconfig.json WatchType: Failed Lookup Locations +Info 16 [00:00:45.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/decls 1 undefined Project: /user/username/projects/myproject/usage/tsconfig.json WatchType: Failed Lookup Locations +Info 17 [00:00:46.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/dependency/fns.ts 500 undefined WatchType: Closed Script info +Info 18 [00:00:47.000] FileWatcher:: Added:: WatchInfo: /a/lib/lib.d.ts 500 undefined WatchType: Closed Script info +Info 19 [00:00:48.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/usage/node_modules/@types 1 undefined Project: /user/username/projects/myproject/usage/tsconfig.json WatchType: Type roots +Info 20 [00:00:49.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/usage/node_modules/@types 1 undefined Project: /user/username/projects/myproject/usage/tsconfig.json WatchType: Type roots +Info 21 [00:00:50.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/usage/tsconfig.json WatchType: Type roots +Info 22 [00:00:51.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/usage/tsconfig.json WatchType: Type roots +Info 23 [00:00:52.000] Finishing updateGraphWorker: Project: /user/username/projects/myproject/usage/tsconfig.json Version: 1 structureChanged: true structureIsReused:: Not Elapsed:: *ms +Info 24 [00:00:53.000] Project '/user/username/projects/myproject/usage/tsconfig.json' (Configured) +Info 25 [00:00:54.000] Files (3) /a/lib/lib.d.ts /user/username/projects/myproject/dependency/fns.ts /user/username/projects/myproject/usage/usage.ts @@ -107,14 +107,14 @@ Info 25 [16:00:54.000] Files (3) usage.ts Matched by default include pattern '**/*' -Info 26 [16:00:55.000] ----------------------------------------------- -Info 27 [16:00:56.000] Project '/user/username/projects/myproject/usage/tsconfig.json' (Configured) -Info 27 [16:00:57.000] Files (3) +Info 26 [00:00:55.000] ----------------------------------------------- +Info 27 [00:00:56.000] Project '/user/username/projects/myproject/usage/tsconfig.json' (Configured) +Info 27 [00:00:57.000] Files (3) -Info 27 [16:00:58.000] ----------------------------------------------- -Info 27 [16:00:59.000] Open files: -Info 27 [16:01:00.000] FileName: /user/username/projects/myproject/usage/usage.ts ProjectRootPath: undefined -Info 27 [16:01:01.000] Projects: /user/username/projects/myproject/usage/tsconfig.json +Info 27 [00:00:58.000] ----------------------------------------------- +Info 27 [00:00:59.000] Open files: +Info 27 [00:01:00.000] FileName: /user/username/projects/myproject/usage/usage.ts ProjectRootPath: undefined +Info 27 [00:01:01.000] Projects: /user/username/projects/myproject/usage/tsconfig.json After request PolledWatches:: @@ -141,11 +141,11 @@ FsWatchesRecursive:: /user/username/projects/myproject/dependency: {} -Info 27 [16:01:02.000] response: +Info 27 [00:01:02.000] response: { "responseRequired": false } -Info 28 [16:01:03.000] request: +Info 28 [00:01:03.000] request: { "command": "compileOnSaveAffectedFileList", "arguments": { @@ -207,7 +207,7 @@ FsWatchesRecursive:: /user/username/projects/myproject/dependency: {} -Info 29 [16:01:04.000] response: +Info 29 [00:01:04.000] response: { "response": [ { @@ -220,7 +220,7 @@ Info 29 [16:01:04.000] response: ], "responseRequired": true } -Info 30 [16:01:05.000] request: +Info 30 [00:01:05.000] request: { "command": "compileOnSaveEmitFile", "arguments": { @@ -256,9 +256,9 @@ FsWatchesRecursive:: /user/username/projects/myproject/dependency: {} -Info 31 [16:01:08.000] DirectoryWatcher:: Triggered with /user/username/projects/myproject/usage/usage.js :: WatchInfo: /user/username/projects/myproject/usage 1 undefined Config: /user/username/projects/myproject/usage/tsconfig.json WatchType: Wild card directory -Info 32 [16:01:09.000] Project: /user/username/projects/myproject/usage/tsconfig.json Detected file add/remove of non supported extension: /user/username/projects/myproject/usage/usage.js -Info 33 [16:01:10.000] Elapsed:: *ms DirectoryWatcher:: Triggered with /user/username/projects/myproject/usage/usage.js :: WatchInfo: /user/username/projects/myproject/usage 1 undefined Config: /user/username/projects/myproject/usage/tsconfig.json WatchType: Wild card directory +Info 31 [00:01:08.000] DirectoryWatcher:: Triggered with /user/username/projects/myproject/usage/usage.js :: WatchInfo: /user/username/projects/myproject/usage 1 undefined Config: /user/username/projects/myproject/usage/tsconfig.json WatchType: Wild card directory +Info 32 [00:01:09.000] Project: /user/username/projects/myproject/usage/tsconfig.json Detected file add/remove of non supported extension: /user/username/projects/myproject/usage/usage.js +Info 33 [00:01:10.000] Elapsed:: *ms DirectoryWatcher:: Triggered with /user/username/projects/myproject/usage/usage.js :: WatchInfo: /user/username/projects/myproject/usage 1 undefined Config: /user/username/projects/myproject/usage/tsconfig.json WatchType: Wild card directory After request //// [/user/username/projects/myproject/usage/usage.js] "use strict"; @@ -293,12 +293,12 @@ FsWatchesRecursive:: /user/username/projects/myproject/dependency: {} -Info 34 [16:01:11.000] response: +Info 34 [00:01:11.000] response: { "response": true, "responseRequired": true } -Info 35 [16:01:12.000] request: +Info 35 [00:01:12.000] request: { "command": "emit-output", "arguments": { @@ -360,7 +360,7 @@ FsWatchesRecursive:: /user/username/projects/myproject/dependency: {} -Info 36 [16:01:13.000] response: +Info 36 [00:01:13.000] response: { "response": { "outputFiles": [ diff --git a/tests/baselines/reference/tsserver/projectReferenceCompileOnSave/when-dependency-project-is-not-open-and-save-on-usage.js b/tests/baselines/reference/tsserver/projectReferenceCompileOnSave/when-dependency-project-is-not-open-and-save-on-usage.js index c1d39d5c6b40e..8addcf0513d5d 100644 --- a/tests/baselines/reference/tsserver/projectReferenceCompileOnSave/when-dependency-project-is-not-open-and-save-on-usage.js +++ b/tests/baselines/reference/tsserver/projectReferenceCompileOnSave/when-dependency-project-is-not-open-and-save-on-usage.js @@ -1,5 +1,5 @@ -Info 0 [16:00:29.000] Provided types map file "/a/lib/typesMap.json" doesn't exist -Info 1 [16:00:30.000] request: +Info 0 [00:00:29.000] Provided types map file "/a/lib/typesMap.json" doesn't exist +Info 1 [00:00:30.000] request: { "seq": 0, "type": "request", @@ -49,11 +49,11 @@ FsWatches:: FsWatchesRecursive:: -Info 2 [16:00:31.000] Search path: /user/username/projects/myproject/usage -Info 3 [16:00:32.000] For info: /user/username/projects/myproject/usage/usage.ts :: Config file name: /user/username/projects/myproject/usage/tsconfig.json -Info 4 [16:00:33.000] Creating configuration project /user/username/projects/myproject/usage/tsconfig.json -Info 5 [16:00:34.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/usage/tsconfig.json 2000 undefined Project: /user/username/projects/myproject/usage/tsconfig.json WatchType: Config file -Info 6 [16:00:35.000] Config: /user/username/projects/myproject/usage/tsconfig.json : { +Info 2 [00:00:31.000] Search path: /user/username/projects/myproject/usage +Info 3 [00:00:32.000] For info: /user/username/projects/myproject/usage/usage.ts :: Config file name: /user/username/projects/myproject/usage/tsconfig.json +Info 4 [00:00:33.000] Creating configuration project /user/username/projects/myproject/usage/tsconfig.json +Info 5 [00:00:34.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/usage/tsconfig.json 2000 undefined Project: /user/username/projects/myproject/usage/tsconfig.json WatchType: Config file +Info 6 [00:00:35.000] Config: /user/username/projects/myproject/usage/tsconfig.json : { "rootNames": [ "/user/username/projects/myproject/usage/usage.ts" ], @@ -67,11 +67,11 @@ Info 6 [16:00:35.000] Config: /user/username/projects/myproject/usage/tsconfi } ] } -Info 7 [16:00:36.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/usage 1 undefined Config: /user/username/projects/myproject/usage/tsconfig.json WatchType: Wild card directory -Info 8 [16:00:37.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/usage 1 undefined Config: /user/username/projects/myproject/usage/tsconfig.json WatchType: Wild card directory -Info 9 [16:00:38.000] Plugins were requested but not running in environment that supports 'require'. Nothing will be loaded -Info 10 [16:00:39.000] Starting updateGraphWorker: Project: /user/username/projects/myproject/usage/tsconfig.json -Info 11 [16:00:40.000] Config: /user/username/projects/myproject/dependency/tsconfig.json : { +Info 7 [00:00:36.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/usage 1 undefined Config: /user/username/projects/myproject/usage/tsconfig.json WatchType: Wild card directory +Info 8 [00:00:37.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/usage 1 undefined Config: /user/username/projects/myproject/usage/tsconfig.json WatchType: Wild card directory +Info 9 [00:00:38.000] Plugins were requested but not running in environment that supports 'require'. Nothing will be loaded +Info 10 [00:00:39.000] Starting updateGraphWorker: Project: /user/username/projects/myproject/usage/tsconfig.json +Info 11 [00:00:40.000] Config: /user/username/projects/myproject/dependency/tsconfig.json : { "rootNames": [ "/user/username/projects/myproject/dependency/fns.ts" ], @@ -81,20 +81,20 @@ Info 11 [16:00:40.000] Config: /user/username/projects/myproject/dependency/ts "configFilePath": "/user/username/projects/myproject/dependency/tsconfig.json" } } -Info 12 [16:00:41.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/dependency/tsconfig.json 2000 undefined Project: /user/username/projects/myproject/usage/tsconfig.json WatchType: Config file -Info 13 [16:00:42.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/dependency 1 undefined Config: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Wild card directory -Info 14 [16:00:43.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/dependency 1 undefined Config: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Wild card directory -Info 15 [16:00:44.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/decls 1 undefined Project: /user/username/projects/myproject/usage/tsconfig.json WatchType: Failed Lookup Locations -Info 16 [16:00:45.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/decls 1 undefined Project: /user/username/projects/myproject/usage/tsconfig.json WatchType: Failed Lookup Locations -Info 17 [16:00:46.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/dependency/fns.ts 500 undefined WatchType: Closed Script info -Info 18 [16:00:47.000] FileWatcher:: Added:: WatchInfo: /a/lib/lib.d.ts 500 undefined WatchType: Closed Script info -Info 19 [16:00:48.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/usage/node_modules/@types 1 undefined Project: /user/username/projects/myproject/usage/tsconfig.json WatchType: Type roots -Info 20 [16:00:49.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/usage/node_modules/@types 1 undefined Project: /user/username/projects/myproject/usage/tsconfig.json WatchType: Type roots -Info 21 [16:00:50.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/usage/tsconfig.json WatchType: Type roots -Info 22 [16:00:51.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/usage/tsconfig.json WatchType: Type roots -Info 23 [16:00:52.000] Finishing updateGraphWorker: Project: /user/username/projects/myproject/usage/tsconfig.json Version: 1 structureChanged: true structureIsReused:: Not Elapsed:: *ms -Info 24 [16:00:53.000] Project '/user/username/projects/myproject/usage/tsconfig.json' (Configured) -Info 25 [16:00:54.000] Files (3) +Info 12 [00:00:41.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/dependency/tsconfig.json 2000 undefined Project: /user/username/projects/myproject/usage/tsconfig.json WatchType: Config file +Info 13 [00:00:42.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/dependency 1 undefined Config: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Wild card directory +Info 14 [00:00:43.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/dependency 1 undefined Config: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Wild card directory +Info 15 [00:00:44.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/decls 1 undefined Project: /user/username/projects/myproject/usage/tsconfig.json WatchType: Failed Lookup Locations +Info 16 [00:00:45.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/decls 1 undefined Project: /user/username/projects/myproject/usage/tsconfig.json WatchType: Failed Lookup Locations +Info 17 [00:00:46.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/dependency/fns.ts 500 undefined WatchType: Closed Script info +Info 18 [00:00:47.000] FileWatcher:: Added:: WatchInfo: /a/lib/lib.d.ts 500 undefined WatchType: Closed Script info +Info 19 [00:00:48.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/usage/node_modules/@types 1 undefined Project: /user/username/projects/myproject/usage/tsconfig.json WatchType: Type roots +Info 20 [00:00:49.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/usage/node_modules/@types 1 undefined Project: /user/username/projects/myproject/usage/tsconfig.json WatchType: Type roots +Info 21 [00:00:50.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/usage/tsconfig.json WatchType: Type roots +Info 22 [00:00:51.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/usage/tsconfig.json WatchType: Type roots +Info 23 [00:00:52.000] Finishing updateGraphWorker: Project: /user/username/projects/myproject/usage/tsconfig.json Version: 1 structureChanged: true structureIsReused:: Not Elapsed:: *ms +Info 24 [00:00:53.000] Project '/user/username/projects/myproject/usage/tsconfig.json' (Configured) +Info 25 [00:00:54.000] Files (3) /a/lib/lib.d.ts /user/username/projects/myproject/dependency/fns.ts /user/username/projects/myproject/usage/usage.ts @@ -107,14 +107,14 @@ Info 25 [16:00:54.000] Files (3) usage.ts Matched by default include pattern '**/*' -Info 26 [16:00:55.000] ----------------------------------------------- -Info 27 [16:00:56.000] Project '/user/username/projects/myproject/usage/tsconfig.json' (Configured) -Info 27 [16:00:57.000] Files (3) +Info 26 [00:00:55.000] ----------------------------------------------- +Info 27 [00:00:56.000] Project '/user/username/projects/myproject/usage/tsconfig.json' (Configured) +Info 27 [00:00:57.000] Files (3) -Info 27 [16:00:58.000] ----------------------------------------------- -Info 27 [16:00:59.000] Open files: -Info 27 [16:01:00.000] FileName: /user/username/projects/myproject/usage/usage.ts ProjectRootPath: undefined -Info 27 [16:01:01.000] Projects: /user/username/projects/myproject/usage/tsconfig.json +Info 27 [00:00:58.000] ----------------------------------------------- +Info 27 [00:00:59.000] Open files: +Info 27 [00:01:00.000] FileName: /user/username/projects/myproject/usage/usage.ts ProjectRootPath: undefined +Info 27 [00:01:01.000] Projects: /user/username/projects/myproject/usage/tsconfig.json After request PolledWatches:: @@ -141,11 +141,11 @@ FsWatchesRecursive:: /user/username/projects/myproject/dependency: {} -Info 27 [16:01:02.000] response: +Info 27 [00:01:02.000] response: { "responseRequired": false } -Info 28 [16:01:03.000] request: +Info 28 [00:01:03.000] request: { "command": "compileOnSaveAffectedFileList", "arguments": { @@ -180,22 +180,22 @@ FsWatchesRecursive:: /user/username/projects/myproject/dependency: {} -Info 29 [16:01:04.000] Before ensureProjectForOpenFiles: -Info 30 [16:01:05.000] Project '/user/username/projects/myproject/usage/tsconfig.json' (Configured) -Info 30 [16:01:06.000] Files (3) +Info 29 [00:01:04.000] Before ensureProjectForOpenFiles: +Info 30 [00:01:05.000] Project '/user/username/projects/myproject/usage/tsconfig.json' (Configured) +Info 30 [00:01:06.000] Files (3) -Info 30 [16:01:07.000] ----------------------------------------------- -Info 30 [16:01:08.000] Open files: -Info 30 [16:01:09.000] FileName: /user/username/projects/myproject/usage/usage.ts ProjectRootPath: undefined -Info 30 [16:01:10.000] Projects: /user/username/projects/myproject/usage/tsconfig.json -Info 30 [16:01:11.000] After ensureProjectForOpenFiles: -Info 31 [16:01:12.000] Project '/user/username/projects/myproject/usage/tsconfig.json' (Configured) -Info 31 [16:01:13.000] Files (3) +Info 30 [00:01:07.000] ----------------------------------------------- +Info 30 [00:01:08.000] Open files: +Info 30 [00:01:09.000] FileName: /user/username/projects/myproject/usage/usage.ts ProjectRootPath: undefined +Info 30 [00:01:10.000] Projects: /user/username/projects/myproject/usage/tsconfig.json +Info 30 [00:01:11.000] After ensureProjectForOpenFiles: +Info 31 [00:01:12.000] Project '/user/username/projects/myproject/usage/tsconfig.json' (Configured) +Info 31 [00:01:13.000] Files (3) -Info 31 [16:01:14.000] ----------------------------------------------- -Info 31 [16:01:15.000] Open files: -Info 31 [16:01:16.000] FileName: /user/username/projects/myproject/usage/usage.ts ProjectRootPath: undefined -Info 31 [16:01:17.000] Projects: /user/username/projects/myproject/usage/tsconfig.json +Info 31 [00:01:14.000] ----------------------------------------------- +Info 31 [00:01:15.000] Open files: +Info 31 [00:01:16.000] FileName: /user/username/projects/myproject/usage/usage.ts ProjectRootPath: undefined +Info 31 [00:01:17.000] Projects: /user/username/projects/myproject/usage/tsconfig.json After request PolledWatches:: @@ -222,7 +222,7 @@ FsWatchesRecursive:: /user/username/projects/myproject/dependency: {} -Info 31 [16:01:18.000] response: +Info 31 [00:01:18.000] response: { "response": [ { @@ -235,7 +235,7 @@ Info 31 [16:01:18.000] response: ], "responseRequired": true } -Info 32 [16:01:19.000] request: +Info 32 [00:01:19.000] request: { "command": "compileOnSaveEmitFile", "arguments": { @@ -270,9 +270,9 @@ FsWatchesRecursive:: /user/username/projects/myproject/dependency: {} -Info 33 [16:01:22.000] DirectoryWatcher:: Triggered with /user/username/projects/myproject/usage/usage.js :: WatchInfo: /user/username/projects/myproject/usage 1 undefined Config: /user/username/projects/myproject/usage/tsconfig.json WatchType: Wild card directory -Info 34 [16:01:23.000] Project: /user/username/projects/myproject/usage/tsconfig.json Detected file add/remove of non supported extension: /user/username/projects/myproject/usage/usage.js -Info 35 [16:01:24.000] Elapsed:: *ms DirectoryWatcher:: Triggered with /user/username/projects/myproject/usage/usage.js :: WatchInfo: /user/username/projects/myproject/usage 1 undefined Config: /user/username/projects/myproject/usage/tsconfig.json WatchType: Wild card directory +Info 33 [00:01:22.000] DirectoryWatcher:: Triggered with /user/username/projects/myproject/usage/usage.js :: WatchInfo: /user/username/projects/myproject/usage 1 undefined Config: /user/username/projects/myproject/usage/tsconfig.json WatchType: Wild card directory +Info 34 [00:01:23.000] Project: /user/username/projects/myproject/usage/tsconfig.json Detected file add/remove of non supported extension: /user/username/projects/myproject/usage/usage.js +Info 35 [00:01:24.000] Elapsed:: *ms DirectoryWatcher:: Triggered with /user/username/projects/myproject/usage/usage.js :: WatchInfo: /user/username/projects/myproject/usage 1 undefined Config: /user/username/projects/myproject/usage/tsconfig.json WatchType: Wild card directory After request //// [/user/username/projects/myproject/usage/usage.js] "use strict"; @@ -307,12 +307,12 @@ FsWatchesRecursive:: /user/username/projects/myproject/dependency: {} -Info 36 [16:01:25.000] response: +Info 36 [00:01:25.000] response: { "response": true, "responseRequired": true } -Info 37 [16:01:26.000] request: +Info 37 [00:01:26.000] request: { "command": "emit-output", "arguments": { @@ -373,7 +373,7 @@ FsWatchesRecursive:: /user/username/projects/myproject/dependency: {} -Info 38 [16:01:27.000] response: +Info 38 [00:01:27.000] response: { "response": { "outputFiles": [ diff --git a/tests/baselines/reference/tsserver/projectReferenceErrors/with-module-scenario-when-dependency-project-is-not-open-gerErr-with-sync-commands.js b/tests/baselines/reference/tsserver/projectReferenceErrors/with-module-scenario-when-dependency-project-is-not-open-gerErr-with-sync-commands.js index 301252bfcb248..25bdd5dad6a96 100644 --- a/tests/baselines/reference/tsserver/projectReferenceErrors/with-module-scenario-when-dependency-project-is-not-open-gerErr-with-sync-commands.js +++ b/tests/baselines/reference/tsserver/projectReferenceErrors/with-module-scenario-when-dependency-project-is-not-open-gerErr-with-sync-commands.js @@ -1,5 +1,5 @@ -Info 0 [16:00:29.000] Provided types map file "/a/lib/typesMap.json" doesn't exist -Info 1 [16:00:30.000] request: +Info 0 [00:00:29.000] Provided types map file "/a/lib/typesMap.json" doesn't exist +Info 1 [00:00:30.000] request: { "seq": 0, "type": "request", @@ -54,11 +54,11 @@ FsWatches:: FsWatchesRecursive:: -Info 2 [16:00:31.000] Search path: /user/username/projects/myproject/usage -Info 3 [16:00:32.000] For info: /user/username/projects/myproject/usage/usage.ts :: Config file name: /user/username/projects/myproject/usage/tsconfig.json -Info 4 [16:00:33.000] Creating configuration project /user/username/projects/myproject/usage/tsconfig.json -Info 5 [16:00:34.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/usage/tsconfig.json 2000 undefined Project: /user/username/projects/myproject/usage/tsconfig.json WatchType: Config file -Info 6 [16:00:35.000] Config: /user/username/projects/myproject/usage/tsconfig.json : { +Info 2 [00:00:31.000] Search path: /user/username/projects/myproject/usage +Info 3 [00:00:32.000] For info: /user/username/projects/myproject/usage/usage.ts :: Config file name: /user/username/projects/myproject/usage/tsconfig.json +Info 4 [00:00:33.000] Creating configuration project /user/username/projects/myproject/usage/tsconfig.json +Info 5 [00:00:34.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/usage/tsconfig.json 2000 undefined Project: /user/username/projects/myproject/usage/tsconfig.json WatchType: Config file +Info 6 [00:00:35.000] Config: /user/username/projects/myproject/usage/tsconfig.json : { "rootNames": [ "/user/username/projects/myproject/usage/usage.ts" ], @@ -73,11 +73,11 @@ Info 6 [16:00:35.000] Config: /user/username/projects/myproject/usage/tsconfi } ] } -Info 7 [16:00:36.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/usage 1 undefined Config: /user/username/projects/myproject/usage/tsconfig.json WatchType: Wild card directory -Info 8 [16:00:37.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/usage 1 undefined Config: /user/username/projects/myproject/usage/tsconfig.json WatchType: Wild card directory -Info 9 [16:00:38.000] Plugins were requested but not running in environment that supports 'require'. Nothing will be loaded -Info 10 [16:00:39.000] Starting updateGraphWorker: Project: /user/username/projects/myproject/usage/tsconfig.json -Info 11 [16:00:40.000] Config: /user/username/projects/myproject/dependency/tsconfig.json : { +Info 7 [00:00:36.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/usage 1 undefined Config: /user/username/projects/myproject/usage/tsconfig.json WatchType: Wild card directory +Info 8 [00:00:37.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/usage 1 undefined Config: /user/username/projects/myproject/usage/tsconfig.json WatchType: Wild card directory +Info 9 [00:00:38.000] Plugins were requested but not running in environment that supports 'require'. Nothing will be loaded +Info 10 [00:00:39.000] Starting updateGraphWorker: Project: /user/username/projects/myproject/usage/tsconfig.json +Info 11 [00:00:40.000] Config: /user/username/projects/myproject/dependency/tsconfig.json : { "rootNames": [ "/user/username/projects/myproject/dependency/fns.ts" ], @@ -87,20 +87,20 @@ Info 11 [16:00:40.000] Config: /user/username/projects/myproject/dependency/ts "configFilePath": "/user/username/projects/myproject/dependency/tsconfig.json" } } -Info 12 [16:00:41.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/dependency/tsconfig.json 2000 undefined Project: /user/username/projects/myproject/usage/tsconfig.json WatchType: Config file -Info 13 [16:00:42.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/dependency 1 undefined Config: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Wild card directory -Info 14 [16:00:43.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/dependency 1 undefined Config: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Wild card directory -Info 15 [16:00:44.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/decls 1 undefined Project: /user/username/projects/myproject/usage/tsconfig.json WatchType: Failed Lookup Locations -Info 16 [16:00:45.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/decls 1 undefined Project: /user/username/projects/myproject/usage/tsconfig.json WatchType: Failed Lookup Locations -Info 17 [16:00:46.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/dependency/fns.ts 500 undefined WatchType: Closed Script info -Info 18 [16:00:47.000] FileWatcher:: Added:: WatchInfo: /a/lib/lib.d.ts 500 undefined WatchType: Closed Script info -Info 19 [16:00:48.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/usage/node_modules/@types 1 undefined Project: /user/username/projects/myproject/usage/tsconfig.json WatchType: Type roots -Info 20 [16:00:49.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/usage/node_modules/@types 1 undefined Project: /user/username/projects/myproject/usage/tsconfig.json WatchType: Type roots -Info 21 [16:00:50.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/usage/tsconfig.json WatchType: Type roots -Info 22 [16:00:51.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/usage/tsconfig.json WatchType: Type roots -Info 23 [16:00:52.000] Finishing updateGraphWorker: Project: /user/username/projects/myproject/usage/tsconfig.json Version: 1 structureChanged: true structureIsReused:: Not Elapsed:: *ms -Info 24 [16:00:53.000] Project '/user/username/projects/myproject/usage/tsconfig.json' (Configured) -Info 25 [16:00:54.000] Files (3) +Info 12 [00:00:41.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/dependency/tsconfig.json 2000 undefined Project: /user/username/projects/myproject/usage/tsconfig.json WatchType: Config file +Info 13 [00:00:42.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/dependency 1 undefined Config: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Wild card directory +Info 14 [00:00:43.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/dependency 1 undefined Config: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Wild card directory +Info 15 [00:00:44.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/decls 1 undefined Project: /user/username/projects/myproject/usage/tsconfig.json WatchType: Failed Lookup Locations +Info 16 [00:00:45.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/decls 1 undefined Project: /user/username/projects/myproject/usage/tsconfig.json WatchType: Failed Lookup Locations +Info 17 [00:00:46.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/dependency/fns.ts 500 undefined WatchType: Closed Script info +Info 18 [00:00:47.000] FileWatcher:: Added:: WatchInfo: /a/lib/lib.d.ts 500 undefined WatchType: Closed Script info +Info 19 [00:00:48.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/usage/node_modules/@types 1 undefined Project: /user/username/projects/myproject/usage/tsconfig.json WatchType: Type roots +Info 20 [00:00:49.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/usage/node_modules/@types 1 undefined Project: /user/username/projects/myproject/usage/tsconfig.json WatchType: Type roots +Info 21 [00:00:50.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/usage/tsconfig.json WatchType: Type roots +Info 22 [00:00:51.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/usage/tsconfig.json WatchType: Type roots +Info 23 [00:00:52.000] Finishing updateGraphWorker: Project: /user/username/projects/myproject/usage/tsconfig.json Version: 1 structureChanged: true structureIsReused:: Not Elapsed:: *ms +Info 24 [00:00:53.000] Project '/user/username/projects/myproject/usage/tsconfig.json' (Configured) +Info 25 [00:00:54.000] Files (3) /a/lib/lib.d.ts /user/username/projects/myproject/dependency/fns.ts /user/username/projects/myproject/usage/usage.ts @@ -113,16 +113,16 @@ Info 25 [16:00:54.000] Files (3) usage.ts Matched by default include pattern '**/*' -Info 26 [16:00:55.000] ----------------------------------------------- -Info 27 [16:00:56.000] Search path: /user/username/projects/myproject/usage -Info 28 [16:00:57.000] For info: /user/username/projects/myproject/usage/tsconfig.json :: No config files found. -Info 29 [16:00:58.000] Project '/user/username/projects/myproject/usage/tsconfig.json' (Configured) -Info 29 [16:00:59.000] Files (3) +Info 26 [00:00:55.000] ----------------------------------------------- +Info 27 [00:00:56.000] Search path: /user/username/projects/myproject/usage +Info 28 [00:00:57.000] For info: /user/username/projects/myproject/usage/tsconfig.json :: No config files found. +Info 29 [00:00:58.000] Project '/user/username/projects/myproject/usage/tsconfig.json' (Configured) +Info 29 [00:00:59.000] Files (3) -Info 29 [16:01:00.000] ----------------------------------------------- -Info 29 [16:01:01.000] Open files: -Info 29 [16:01:02.000] FileName: /user/username/projects/myproject/usage/usage.ts ProjectRootPath: undefined -Info 29 [16:01:03.000] Projects: /user/username/projects/myproject/usage/tsconfig.json +Info 29 [00:01:00.000] ----------------------------------------------- +Info 29 [00:01:01.000] Open files: +Info 29 [00:01:02.000] FileName: /user/username/projects/myproject/usage/usage.ts ProjectRootPath: undefined +Info 29 [00:01:03.000] Projects: /user/username/projects/myproject/usage/tsconfig.json After request PolledWatches:: @@ -149,11 +149,11 @@ FsWatchesRecursive:: /user/username/projects/myproject/dependency: {} -Info 29 [16:01:04.000] response: +Info 29 [00:01:04.000] response: { "responseRequired": false } -Info 30 [16:01:05.000] request: +Info 30 [00:01:05.000] request: { "command": "syntacticDiagnosticsSync", "arguments": { @@ -214,12 +214,12 @@ FsWatchesRecursive:: /user/username/projects/myproject/dependency: {} -Info 31 [16:01:06.000] response: +Info 31 [00:01:06.000] response: { "response": [], "responseRequired": true } -Info 32 [16:01:07.000] request: +Info 32 [00:01:07.000] request: { "command": "semanticDiagnosticsSync", "arguments": { @@ -280,7 +280,7 @@ FsWatchesRecursive:: /user/username/projects/myproject/dependency: {} -Info 33 [16:01:08.000] response: +Info 33 [00:01:08.000] response: { "response": [ { @@ -299,7 +299,7 @@ Info 33 [16:01:08.000] response: ], "responseRequired": true } -Info 34 [16:01:09.000] request: +Info 34 [00:01:09.000] request: { "command": "suggestionDiagnosticsSync", "arguments": { @@ -360,12 +360,12 @@ FsWatchesRecursive:: /user/username/projects/myproject/dependency: {} -Info 35 [16:01:10.000] response: +Info 35 [00:01:10.000] response: { "response": [], "responseRequired": true } -Info 36 [16:01:11.000] request: +Info 36 [00:01:11.000] request: { "command": "syntacticDiagnosticsSync", "arguments": { @@ -426,12 +426,12 @@ FsWatchesRecursive:: /user/username/projects/myproject/dependency: {} -Info 37 [16:01:12.000] response: +Info 37 [00:01:12.000] response: { "response": [], "responseRequired": true } -Info 38 [16:01:13.000] request: +Info 38 [00:01:13.000] request: { "command": "semanticDiagnosticsSync", "arguments": { @@ -492,12 +492,12 @@ FsWatchesRecursive:: /user/username/projects/myproject/dependency: {} -Info 39 [16:01:14.000] response: +Info 39 [00:01:14.000] response: { "response": [], "responseRequired": true } -Info 40 [16:01:15.000] request: +Info 40 [00:01:15.000] request: { "command": "suggestionDiagnosticsSync", "arguments": { @@ -558,12 +558,12 @@ FsWatchesRecursive:: /user/username/projects/myproject/dependency: {} -Info 41 [16:01:16.000] response: +Info 41 [00:01:16.000] response: { "response": [], "responseRequired": true } -Info 42 [16:01:17.000] request: +Info 42 [00:01:17.000] request: { "command": "syntacticDiagnosticsSync", "arguments": { @@ -625,12 +625,12 @@ FsWatchesRecursive:: /user/username/projects/myproject/dependency: {} -Info 43 [16:01:18.000] response: +Info 43 [00:01:18.000] response: { "response": [], "responseRequired": true } -Info 44 [16:01:19.000] request: +Info 44 [00:01:19.000] request: { "command": "semanticDiagnosticsSync", "arguments": { @@ -692,7 +692,7 @@ FsWatchesRecursive:: /user/username/projects/myproject/dependency: {} -Info 45 [16:01:20.000] response: +Info 45 [00:01:20.000] response: { "response": [ { @@ -711,7 +711,7 @@ Info 45 [16:01:20.000] response: ], "responseRequired": true } -Info 46 [16:01:21.000] request: +Info 46 [00:01:21.000] request: { "command": "suggestionDiagnosticsSync", "arguments": { @@ -773,12 +773,12 @@ FsWatchesRecursive:: /user/username/projects/myproject/dependency: {} -Info 47 [16:01:22.000] response: +Info 47 [00:01:22.000] response: { "response": [], "responseRequired": true } -Info 48 [16:01:23.000] request: +Info 48 [00:01:23.000] request: { "command": "syntacticDiagnosticsSync", "arguments": { @@ -840,12 +840,12 @@ FsWatchesRecursive:: /user/username/projects/myproject/dependency: {} -Info 49 [16:01:24.000] response: +Info 49 [00:01:24.000] response: { "response": [], "responseRequired": true } -Info 50 [16:01:25.000] request: +Info 50 [00:01:25.000] request: { "command": "semanticDiagnosticsSync", "arguments": { @@ -907,12 +907,12 @@ FsWatchesRecursive:: /user/username/projects/myproject/dependency: {} -Info 51 [16:01:26.000] response: +Info 51 [00:01:26.000] response: { "response": [], "responseRequired": true } -Info 52 [16:01:27.000] request: +Info 52 [00:01:27.000] request: { "command": "suggestionDiagnosticsSync", "arguments": { @@ -974,7 +974,7 @@ FsWatchesRecursive:: /user/username/projects/myproject/dependency: {} -Info 53 [16:01:28.000] response: +Info 53 [00:01:28.000] response: { "response": [], "responseRequired": true diff --git a/tests/baselines/reference/tsserver/projectReferenceErrors/with-module-scenario-when-dependency-project-is-not-open-getErr.js b/tests/baselines/reference/tsserver/projectReferenceErrors/with-module-scenario-when-dependency-project-is-not-open-getErr.js index d81b7d00ce856..24ae99c83313d 100644 --- a/tests/baselines/reference/tsserver/projectReferenceErrors/with-module-scenario-when-dependency-project-is-not-open-getErr.js +++ b/tests/baselines/reference/tsserver/projectReferenceErrors/with-module-scenario-when-dependency-project-is-not-open-getErr.js @@ -1,5 +1,5 @@ -Info 0 [16:00:29.000] Provided types map file "/a/lib/typesMap.json" doesn't exist -Info 1 [16:00:30.000] request: +Info 0 [00:00:29.000] Provided types map file "/a/lib/typesMap.json" doesn't exist +Info 1 [00:00:30.000] request: { "seq": 0, "type": "request", @@ -54,13 +54,13 @@ FsWatches:: FsWatchesRecursive:: -Info 2 [16:00:31.000] Search path: /user/username/projects/myproject/usage -Info 3 [16:00:32.000] For info: /user/username/projects/myproject/usage/usage.ts :: Config file name: /user/username/projects/myproject/usage/tsconfig.json -Info 4 [16:00:33.000] Creating configuration project /user/username/projects/myproject/usage/tsconfig.json -Info 5 [16:00:34.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/usage/tsconfig.json 2000 undefined Project: /user/username/projects/myproject/usage/tsconfig.json WatchType: Config file -Info 6 [16:00:35.000] event: +Info 2 [00:00:31.000] Search path: /user/username/projects/myproject/usage +Info 3 [00:00:32.000] For info: /user/username/projects/myproject/usage/usage.ts :: Config file name: /user/username/projects/myproject/usage/tsconfig.json +Info 4 [00:00:33.000] Creating configuration project /user/username/projects/myproject/usage/tsconfig.json +Info 5 [00:00:34.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/usage/tsconfig.json 2000 undefined Project: /user/username/projects/myproject/usage/tsconfig.json WatchType: Config file +Info 6 [00:00:35.000] event: {"seq":0,"type":"event","event":"projectLoadingStart","body":{"projectName":"/user/username/projects/myproject/usage/tsconfig.json","reason":"Creating possible configured project for /user/username/projects/myproject/usage/usage.ts to open"}} -Info 7 [16:00:36.000] Config: /user/username/projects/myproject/usage/tsconfig.json : { +Info 7 [00:00:36.000] Config: /user/username/projects/myproject/usage/tsconfig.json : { "rootNames": [ "/user/username/projects/myproject/usage/usage.ts" ], @@ -75,11 +75,11 @@ Info 7 [16:00:36.000] Config: /user/username/projects/myproject/usage/tsconfi } ] } -Info 8 [16:00:37.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/usage 1 undefined Config: /user/username/projects/myproject/usage/tsconfig.json WatchType: Wild card directory -Info 9 [16:00:38.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/usage 1 undefined Config: /user/username/projects/myproject/usage/tsconfig.json WatchType: Wild card directory -Info 10 [16:00:39.000] Plugins were requested but not running in environment that supports 'require'. Nothing will be loaded -Info 11 [16:00:40.000] Starting updateGraphWorker: Project: /user/username/projects/myproject/usage/tsconfig.json -Info 12 [16:00:41.000] Config: /user/username/projects/myproject/dependency/tsconfig.json : { +Info 8 [00:00:37.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/usage 1 undefined Config: /user/username/projects/myproject/usage/tsconfig.json WatchType: Wild card directory +Info 9 [00:00:38.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/usage 1 undefined Config: /user/username/projects/myproject/usage/tsconfig.json WatchType: Wild card directory +Info 10 [00:00:39.000] Plugins were requested but not running in environment that supports 'require'. Nothing will be loaded +Info 11 [00:00:40.000] Starting updateGraphWorker: Project: /user/username/projects/myproject/usage/tsconfig.json +Info 12 [00:00:41.000] Config: /user/username/projects/myproject/dependency/tsconfig.json : { "rootNames": [ "/user/username/projects/myproject/dependency/fns.ts" ], @@ -89,20 +89,20 @@ Info 12 [16:00:41.000] Config: /user/username/projects/myproject/dependency/ts "configFilePath": "/user/username/projects/myproject/dependency/tsconfig.json" } } -Info 13 [16:00:42.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/dependency/tsconfig.json 2000 undefined Project: /user/username/projects/myproject/usage/tsconfig.json WatchType: Config file -Info 14 [16:00:43.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/dependency 1 undefined Config: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Wild card directory -Info 15 [16:00:44.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/dependency 1 undefined Config: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Wild card directory -Info 16 [16:00:45.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/decls 1 undefined Project: /user/username/projects/myproject/usage/tsconfig.json WatchType: Failed Lookup Locations -Info 17 [16:00:46.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/decls 1 undefined Project: /user/username/projects/myproject/usage/tsconfig.json WatchType: Failed Lookup Locations -Info 18 [16:00:47.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/dependency/fns.ts 500 undefined WatchType: Closed Script info -Info 19 [16:00:48.000] FileWatcher:: Added:: WatchInfo: /a/lib/lib.d.ts 500 undefined WatchType: Closed Script info -Info 20 [16:00:49.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/usage/node_modules/@types 1 undefined Project: /user/username/projects/myproject/usage/tsconfig.json WatchType: Type roots -Info 21 [16:00:50.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/usage/node_modules/@types 1 undefined Project: /user/username/projects/myproject/usage/tsconfig.json WatchType: Type roots -Info 22 [16:00:51.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/usage/tsconfig.json WatchType: Type roots -Info 23 [16:00:52.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/usage/tsconfig.json WatchType: Type roots -Info 24 [16:00:53.000] Finishing updateGraphWorker: Project: /user/username/projects/myproject/usage/tsconfig.json Version: 1 structureChanged: true structureIsReused:: Not Elapsed:: *ms -Info 25 [16:00:54.000] Project '/user/username/projects/myproject/usage/tsconfig.json' (Configured) -Info 26 [16:00:55.000] Files (3) +Info 13 [00:00:42.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/dependency/tsconfig.json 2000 undefined Project: /user/username/projects/myproject/usage/tsconfig.json WatchType: Config file +Info 14 [00:00:43.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/dependency 1 undefined Config: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Wild card directory +Info 15 [00:00:44.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/dependency 1 undefined Config: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Wild card directory +Info 16 [00:00:45.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/decls 1 undefined Project: /user/username/projects/myproject/usage/tsconfig.json WatchType: Failed Lookup Locations +Info 17 [00:00:46.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/decls 1 undefined Project: /user/username/projects/myproject/usage/tsconfig.json WatchType: Failed Lookup Locations +Info 18 [00:00:47.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/dependency/fns.ts 500 undefined WatchType: Closed Script info +Info 19 [00:00:48.000] FileWatcher:: Added:: WatchInfo: /a/lib/lib.d.ts 500 undefined WatchType: Closed Script info +Info 20 [00:00:49.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/usage/node_modules/@types 1 undefined Project: /user/username/projects/myproject/usage/tsconfig.json WatchType: Type roots +Info 21 [00:00:50.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/usage/node_modules/@types 1 undefined Project: /user/username/projects/myproject/usage/tsconfig.json WatchType: Type roots +Info 22 [00:00:51.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/usage/tsconfig.json WatchType: Type roots +Info 23 [00:00:52.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/usage/tsconfig.json WatchType: Type roots +Info 24 [00:00:53.000] Finishing updateGraphWorker: Project: /user/username/projects/myproject/usage/tsconfig.json Version: 1 structureChanged: true structureIsReused:: Not Elapsed:: *ms +Info 25 [00:00:54.000] Project '/user/username/projects/myproject/usage/tsconfig.json' (Configured) +Info 26 [00:00:55.000] Files (3) /a/lib/lib.d.ts /user/username/projects/myproject/dependency/fns.ts /user/username/projects/myproject/usage/usage.ts @@ -115,22 +115,22 @@ Info 26 [16:00:55.000] Files (3) usage.ts Matched by default include pattern '**/*' -Info 27 [16:00:56.000] ----------------------------------------------- -Info 28 [16:00:57.000] event: +Info 27 [00:00:56.000] ----------------------------------------------- +Info 28 [00:00:57.000] event: {"seq":0,"type":"event","event":"projectLoadingFinish","body":{"projectName":"/user/username/projects/myproject/usage/tsconfig.json"}} -Info 29 [16:00:58.000] event: +Info 29 [00:00:58.000] event: {"seq":0,"type":"event","event":"telemetry","body":{"telemetryEventName":"projectInfo","payload":{"projectId":"2b96539513e8810fb8ec0c078e4cb28919c0c28cdb8f7646118c5a6f4ff4cb10","fileStats":{"js":0,"jsSize":0,"jsx":0,"jsxSize":0,"ts":2,"tsSize":266,"tsx":0,"tsxSize":0,"dts":1,"dtsSize":334,"deferred":0,"deferredSize":0},"compilerOptions":{"composite":true},"typeAcquisition":{"enable":false,"include":false,"exclude":false},"extends":false,"files":false,"include":false,"exclude":false,"compileOnSave":false,"configFileName":"tsconfig.json","projectType":"configured","languageServiceEnabled":true,"version":"FakeVersion"}}} -Info 30 [16:00:59.000] event: +Info 30 [00:00:59.000] event: {"seq":0,"type":"event","event":"configFileDiag","body":{"triggerFile":"/user/username/projects/myproject/usage/usage.ts","configFile":"/user/username/projects/myproject/usage/tsconfig.json","diagnostics":[]}} -Info 31 [16:01:00.000] Search path: /user/username/projects/myproject/usage -Info 32 [16:01:01.000] For info: /user/username/projects/myproject/usage/tsconfig.json :: No config files found. -Info 33 [16:01:02.000] Project '/user/username/projects/myproject/usage/tsconfig.json' (Configured) -Info 33 [16:01:03.000] Files (3) - -Info 33 [16:01:04.000] ----------------------------------------------- -Info 33 [16:01:05.000] Open files: -Info 33 [16:01:06.000] FileName: /user/username/projects/myproject/usage/usage.ts ProjectRootPath: undefined -Info 33 [16:01:07.000] Projects: /user/username/projects/myproject/usage/tsconfig.json +Info 31 [00:01:00.000] Search path: /user/username/projects/myproject/usage +Info 32 [00:01:01.000] For info: /user/username/projects/myproject/usage/tsconfig.json :: No config files found. +Info 33 [00:01:02.000] Project '/user/username/projects/myproject/usage/tsconfig.json' (Configured) +Info 33 [00:01:03.000] Files (3) + +Info 33 [00:01:04.000] ----------------------------------------------- +Info 33 [00:01:05.000] Open files: +Info 33 [00:01:06.000] FileName: /user/username/projects/myproject/usage/usage.ts ProjectRootPath: undefined +Info 33 [00:01:07.000] Projects: /user/username/projects/myproject/usage/tsconfig.json After request PolledWatches:: @@ -157,11 +157,11 @@ FsWatchesRecursive:: /user/username/projects/myproject/dependency: {} -Info 33 [16:01:08.000] response: +Info 33 [00:01:08.000] response: { "responseRequired": false } -Info 34 [16:01:09.000] request: +Info 34 [00:01:09.000] request: { "command": "geterr", "arguments": { @@ -225,7 +225,7 @@ FsWatchesRecursive:: /user/username/projects/myproject/dependency: {} -Info 35 [16:01:10.000] response: +Info 35 [00:01:10.000] response: { "responseRequired": false } @@ -255,7 +255,7 @@ FsWatchesRecursive:: /user/username/projects/myproject/dependency: {} -Info 36 [16:01:11.000] event: +Info 36 [00:01:11.000] event: {"seq":0,"type":"event","event":"syntaxDiag","body":{"file":"/user/username/projects/myproject/usage/usage.ts","diagnostics":[]}} After checking timeout queue length (1) and running @@ -309,7 +309,7 @@ FsWatchesRecursive:: /user/username/projects/myproject/dependency: {} -Info 37 [16:01:12.000] event: +Info 37 [00:01:12.000] event: {"seq":0,"type":"event","event":"semanticDiag","body":{"file":"/user/username/projects/myproject/usage/usage.ts","diagnostics":[{"start":{"line":4,"offset":5},"end":{"line":4,"offset":10},"text":"Module '\"../decls/fns\"' has no exported member 'fnErr'.","code":2305,"category":"error"}]}} Before running immediate callbacks and checking length (1) @@ -363,9 +363,9 @@ FsWatchesRecursive:: /user/username/projects/myproject/dependency: {} -Info 38 [16:01:13.000] event: +Info 38 [00:01:13.000] event: {"seq":0,"type":"event","event":"suggestionDiag","body":{"file":"/user/username/projects/myproject/usage/usage.ts","diagnostics":[]}} -Info 39 [16:01:14.000] event: +Info 39 [00:01:14.000] event: {"seq":0,"type":"event","event":"requestCompleted","body":{"request_seq":1}} Before running immediate callbacks and checking length (1) diff --git a/tests/baselines/reference/tsserver/projectReferenceErrors/with-module-scenario-when-dependency-project-is-not-open-geterrForProject.js b/tests/baselines/reference/tsserver/projectReferenceErrors/with-module-scenario-when-dependency-project-is-not-open-geterrForProject.js index d827e5ff05899..e555fa7bd2fd3 100644 --- a/tests/baselines/reference/tsserver/projectReferenceErrors/with-module-scenario-when-dependency-project-is-not-open-geterrForProject.js +++ b/tests/baselines/reference/tsserver/projectReferenceErrors/with-module-scenario-when-dependency-project-is-not-open-geterrForProject.js @@ -1,5 +1,5 @@ -Info 0 [16:00:29.000] Provided types map file "/a/lib/typesMap.json" doesn't exist -Info 1 [16:00:30.000] request: +Info 0 [00:00:29.000] Provided types map file "/a/lib/typesMap.json" doesn't exist +Info 1 [00:00:30.000] request: { "seq": 0, "type": "request", @@ -54,13 +54,13 @@ FsWatches:: FsWatchesRecursive:: -Info 2 [16:00:31.000] Search path: /user/username/projects/myproject/usage -Info 3 [16:00:32.000] For info: /user/username/projects/myproject/usage/usage.ts :: Config file name: /user/username/projects/myproject/usage/tsconfig.json -Info 4 [16:00:33.000] Creating configuration project /user/username/projects/myproject/usage/tsconfig.json -Info 5 [16:00:34.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/usage/tsconfig.json 2000 undefined Project: /user/username/projects/myproject/usage/tsconfig.json WatchType: Config file -Info 6 [16:00:35.000] event: +Info 2 [00:00:31.000] Search path: /user/username/projects/myproject/usage +Info 3 [00:00:32.000] For info: /user/username/projects/myproject/usage/usage.ts :: Config file name: /user/username/projects/myproject/usage/tsconfig.json +Info 4 [00:00:33.000] Creating configuration project /user/username/projects/myproject/usage/tsconfig.json +Info 5 [00:00:34.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/usage/tsconfig.json 2000 undefined Project: /user/username/projects/myproject/usage/tsconfig.json WatchType: Config file +Info 6 [00:00:35.000] event: {"seq":0,"type":"event","event":"projectLoadingStart","body":{"projectName":"/user/username/projects/myproject/usage/tsconfig.json","reason":"Creating possible configured project for /user/username/projects/myproject/usage/usage.ts to open"}} -Info 7 [16:00:36.000] Config: /user/username/projects/myproject/usage/tsconfig.json : { +Info 7 [00:00:36.000] Config: /user/username/projects/myproject/usage/tsconfig.json : { "rootNames": [ "/user/username/projects/myproject/usage/usage.ts" ], @@ -75,11 +75,11 @@ Info 7 [16:00:36.000] Config: /user/username/projects/myproject/usage/tsconfi } ] } -Info 8 [16:00:37.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/usage 1 undefined Config: /user/username/projects/myproject/usage/tsconfig.json WatchType: Wild card directory -Info 9 [16:00:38.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/usage 1 undefined Config: /user/username/projects/myproject/usage/tsconfig.json WatchType: Wild card directory -Info 10 [16:00:39.000] Plugins were requested but not running in environment that supports 'require'. Nothing will be loaded -Info 11 [16:00:40.000] Starting updateGraphWorker: Project: /user/username/projects/myproject/usage/tsconfig.json -Info 12 [16:00:41.000] Config: /user/username/projects/myproject/dependency/tsconfig.json : { +Info 8 [00:00:37.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/usage 1 undefined Config: /user/username/projects/myproject/usage/tsconfig.json WatchType: Wild card directory +Info 9 [00:00:38.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/usage 1 undefined Config: /user/username/projects/myproject/usage/tsconfig.json WatchType: Wild card directory +Info 10 [00:00:39.000] Plugins were requested but not running in environment that supports 'require'. Nothing will be loaded +Info 11 [00:00:40.000] Starting updateGraphWorker: Project: /user/username/projects/myproject/usage/tsconfig.json +Info 12 [00:00:41.000] Config: /user/username/projects/myproject/dependency/tsconfig.json : { "rootNames": [ "/user/username/projects/myproject/dependency/fns.ts" ], @@ -89,20 +89,20 @@ Info 12 [16:00:41.000] Config: /user/username/projects/myproject/dependency/ts "configFilePath": "/user/username/projects/myproject/dependency/tsconfig.json" } } -Info 13 [16:00:42.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/dependency/tsconfig.json 2000 undefined Project: /user/username/projects/myproject/usage/tsconfig.json WatchType: Config file -Info 14 [16:00:43.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/dependency 1 undefined Config: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Wild card directory -Info 15 [16:00:44.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/dependency 1 undefined Config: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Wild card directory -Info 16 [16:00:45.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/decls 1 undefined Project: /user/username/projects/myproject/usage/tsconfig.json WatchType: Failed Lookup Locations -Info 17 [16:00:46.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/decls 1 undefined Project: /user/username/projects/myproject/usage/tsconfig.json WatchType: Failed Lookup Locations -Info 18 [16:00:47.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/dependency/fns.ts 500 undefined WatchType: Closed Script info -Info 19 [16:00:48.000] FileWatcher:: Added:: WatchInfo: /a/lib/lib.d.ts 500 undefined WatchType: Closed Script info -Info 20 [16:00:49.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/usage/node_modules/@types 1 undefined Project: /user/username/projects/myproject/usage/tsconfig.json WatchType: Type roots -Info 21 [16:00:50.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/usage/node_modules/@types 1 undefined Project: /user/username/projects/myproject/usage/tsconfig.json WatchType: Type roots -Info 22 [16:00:51.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/usage/tsconfig.json WatchType: Type roots -Info 23 [16:00:52.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/usage/tsconfig.json WatchType: Type roots -Info 24 [16:00:53.000] Finishing updateGraphWorker: Project: /user/username/projects/myproject/usage/tsconfig.json Version: 1 structureChanged: true structureIsReused:: Not Elapsed:: *ms -Info 25 [16:00:54.000] Project '/user/username/projects/myproject/usage/tsconfig.json' (Configured) -Info 26 [16:00:55.000] Files (3) +Info 13 [00:00:42.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/dependency/tsconfig.json 2000 undefined Project: /user/username/projects/myproject/usage/tsconfig.json WatchType: Config file +Info 14 [00:00:43.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/dependency 1 undefined Config: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Wild card directory +Info 15 [00:00:44.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/dependency 1 undefined Config: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Wild card directory +Info 16 [00:00:45.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/decls 1 undefined Project: /user/username/projects/myproject/usage/tsconfig.json WatchType: Failed Lookup Locations +Info 17 [00:00:46.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/decls 1 undefined Project: /user/username/projects/myproject/usage/tsconfig.json WatchType: Failed Lookup Locations +Info 18 [00:00:47.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/dependency/fns.ts 500 undefined WatchType: Closed Script info +Info 19 [00:00:48.000] FileWatcher:: Added:: WatchInfo: /a/lib/lib.d.ts 500 undefined WatchType: Closed Script info +Info 20 [00:00:49.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/usage/node_modules/@types 1 undefined Project: /user/username/projects/myproject/usage/tsconfig.json WatchType: Type roots +Info 21 [00:00:50.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/usage/node_modules/@types 1 undefined Project: /user/username/projects/myproject/usage/tsconfig.json WatchType: Type roots +Info 22 [00:00:51.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/usage/tsconfig.json WatchType: Type roots +Info 23 [00:00:52.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/usage/tsconfig.json WatchType: Type roots +Info 24 [00:00:53.000] Finishing updateGraphWorker: Project: /user/username/projects/myproject/usage/tsconfig.json Version: 1 structureChanged: true structureIsReused:: Not Elapsed:: *ms +Info 25 [00:00:54.000] Project '/user/username/projects/myproject/usage/tsconfig.json' (Configured) +Info 26 [00:00:55.000] Files (3) /a/lib/lib.d.ts /user/username/projects/myproject/dependency/fns.ts /user/username/projects/myproject/usage/usage.ts @@ -115,22 +115,22 @@ Info 26 [16:00:55.000] Files (3) usage.ts Matched by default include pattern '**/*' -Info 27 [16:00:56.000] ----------------------------------------------- -Info 28 [16:00:57.000] event: +Info 27 [00:00:56.000] ----------------------------------------------- +Info 28 [00:00:57.000] event: {"seq":0,"type":"event","event":"projectLoadingFinish","body":{"projectName":"/user/username/projects/myproject/usage/tsconfig.json"}} -Info 29 [16:00:58.000] event: +Info 29 [00:00:58.000] event: {"seq":0,"type":"event","event":"telemetry","body":{"telemetryEventName":"projectInfo","payload":{"projectId":"2b96539513e8810fb8ec0c078e4cb28919c0c28cdb8f7646118c5a6f4ff4cb10","fileStats":{"js":0,"jsSize":0,"jsx":0,"jsxSize":0,"ts":2,"tsSize":266,"tsx":0,"tsxSize":0,"dts":1,"dtsSize":334,"deferred":0,"deferredSize":0},"compilerOptions":{"composite":true},"typeAcquisition":{"enable":false,"include":false,"exclude":false},"extends":false,"files":false,"include":false,"exclude":false,"compileOnSave":false,"configFileName":"tsconfig.json","projectType":"configured","languageServiceEnabled":true,"version":"FakeVersion"}}} -Info 30 [16:00:59.000] event: +Info 30 [00:00:59.000] event: {"seq":0,"type":"event","event":"configFileDiag","body":{"triggerFile":"/user/username/projects/myproject/usage/usage.ts","configFile":"/user/username/projects/myproject/usage/tsconfig.json","diagnostics":[]}} -Info 31 [16:01:00.000] Search path: /user/username/projects/myproject/usage -Info 32 [16:01:01.000] For info: /user/username/projects/myproject/usage/tsconfig.json :: No config files found. -Info 33 [16:01:02.000] Project '/user/username/projects/myproject/usage/tsconfig.json' (Configured) -Info 33 [16:01:03.000] Files (3) - -Info 33 [16:01:04.000] ----------------------------------------------- -Info 33 [16:01:05.000] Open files: -Info 33 [16:01:06.000] FileName: /user/username/projects/myproject/usage/usage.ts ProjectRootPath: undefined -Info 33 [16:01:07.000] Projects: /user/username/projects/myproject/usage/tsconfig.json +Info 31 [00:01:00.000] Search path: /user/username/projects/myproject/usage +Info 32 [00:01:01.000] For info: /user/username/projects/myproject/usage/tsconfig.json :: No config files found. +Info 33 [00:01:02.000] Project '/user/username/projects/myproject/usage/tsconfig.json' (Configured) +Info 33 [00:01:03.000] Files (3) + +Info 33 [00:01:04.000] ----------------------------------------------- +Info 33 [00:01:05.000] Open files: +Info 33 [00:01:06.000] FileName: /user/username/projects/myproject/usage/usage.ts ProjectRootPath: undefined +Info 33 [00:01:07.000] Projects: /user/username/projects/myproject/usage/tsconfig.json After request PolledWatches:: @@ -157,11 +157,11 @@ FsWatchesRecursive:: /user/username/projects/myproject/dependency: {} -Info 33 [16:01:08.000] response: +Info 33 [00:01:08.000] response: { "responseRequired": false } -Info 34 [16:01:09.000] request: +Info 34 [00:01:09.000] request: { "command": "geterrForProject", "arguments": { @@ -223,7 +223,7 @@ FsWatchesRecursive:: /user/username/projects/myproject/dependency: {} -Info 35 [16:01:10.000] response: +Info 35 [00:01:10.000] response: { "responseRequired": false } @@ -253,7 +253,7 @@ FsWatchesRecursive:: /user/username/projects/myproject/dependency: {} -Info 36 [16:01:11.000] event: +Info 36 [00:01:11.000] event: {"seq":0,"type":"event","event":"syntaxDiag","body":{"file":"/user/username/projects/myproject/usage/usage.ts","diagnostics":[]}} After checking timeout queue length (1) and running @@ -307,7 +307,7 @@ FsWatchesRecursive:: /user/username/projects/myproject/dependency: {} -Info 37 [16:01:12.000] event: +Info 37 [00:01:12.000] event: {"seq":0,"type":"event","event":"semanticDiag","body":{"file":"/user/username/projects/myproject/usage/usage.ts","diagnostics":[{"start":{"line":4,"offset":5},"end":{"line":4,"offset":10},"text":"Module '\"../decls/fns\"' has no exported member 'fnErr'.","code":2305,"category":"error"}]}} Before running immediate callbacks and checking length (1) @@ -361,7 +361,7 @@ FsWatchesRecursive:: /user/username/projects/myproject/dependency: {} -Info 38 [16:01:13.000] event: +Info 38 [00:01:13.000] event: {"seq":0,"type":"event","event":"suggestionDiag","body":{"file":"/user/username/projects/myproject/usage/usage.ts","diagnostics":[]}} Before running immediate callbacks and checking length (1) @@ -415,7 +415,7 @@ FsWatchesRecursive:: /user/username/projects/myproject/dependency: {} -Info 39 [16:01:14.000] event: +Info 39 [00:01:14.000] event: {"seq":0,"type":"event","event":"syntaxDiag","body":{"file":"/user/username/projects/myproject/dependency/fns.ts","diagnostics":[]}} After checking timeout queue length (1) and running @@ -469,7 +469,7 @@ FsWatchesRecursive:: /user/username/projects/myproject/dependency: {} -Info 40 [16:01:15.000] event: +Info 40 [00:01:15.000] event: {"seq":0,"type":"event","event":"semanticDiag","body":{"file":"/user/username/projects/myproject/dependency/fns.ts","diagnostics":[]}} Before running immediate callbacks and checking length (1) @@ -523,9 +523,9 @@ FsWatchesRecursive:: /user/username/projects/myproject/dependency: {} -Info 41 [16:01:16.000] event: +Info 41 [00:01:16.000] event: {"seq":0,"type":"event","event":"suggestionDiag","body":{"file":"/user/username/projects/myproject/dependency/fns.ts","diagnostics":[]}} -Info 42 [16:01:17.000] event: +Info 42 [00:01:17.000] event: {"seq":0,"type":"event","event":"requestCompleted","body":{"request_seq":1}} Before running immediate callbacks and checking length (1) @@ -553,7 +553,7 @@ FsWatchesRecursive:: /user/username/projects/myproject/dependency: {} -Info 43 [16:01:18.000] request: +Info 43 [00:01:18.000] request: { "command": "geterrForProject", "arguments": { @@ -615,7 +615,7 @@ FsWatchesRecursive:: /user/username/projects/myproject/dependency: {} -Info 44 [16:01:19.000] response: +Info 44 [00:01:19.000] response: { "responseRequired": false } @@ -645,7 +645,7 @@ FsWatchesRecursive:: /user/username/projects/myproject/dependency: {} -Info 45 [16:01:20.000] event: +Info 45 [00:01:20.000] event: {"seq":0,"type":"event","event":"syntaxDiag","body":{"file":"/user/username/projects/myproject/dependency/fns.ts","diagnostics":[]}} After checking timeout queue length (1) and running @@ -699,7 +699,7 @@ FsWatchesRecursive:: /user/username/projects/myproject/dependency: {} -Info 46 [16:01:21.000] event: +Info 46 [00:01:21.000] event: {"seq":0,"type":"event","event":"semanticDiag","body":{"file":"/user/username/projects/myproject/dependency/fns.ts","diagnostics":[]}} Before running immediate callbacks and checking length (1) @@ -753,7 +753,7 @@ FsWatchesRecursive:: /user/username/projects/myproject/dependency: {} -Info 47 [16:01:22.000] event: +Info 47 [00:01:22.000] event: {"seq":0,"type":"event","event":"suggestionDiag","body":{"file":"/user/username/projects/myproject/dependency/fns.ts","diagnostics":[]}} Before running immediate callbacks and checking length (1) @@ -807,7 +807,7 @@ FsWatchesRecursive:: /user/username/projects/myproject/dependency: {} -Info 48 [16:01:23.000] event: +Info 48 [00:01:23.000] event: {"seq":0,"type":"event","event":"syntaxDiag","body":{"file":"/user/username/projects/myproject/usage/usage.ts","diagnostics":[]}} After checking timeout queue length (1) and running @@ -861,7 +861,7 @@ FsWatchesRecursive:: /user/username/projects/myproject/dependency: {} -Info 49 [16:01:24.000] event: +Info 49 [00:01:24.000] event: {"seq":0,"type":"event","event":"semanticDiag","body":{"file":"/user/username/projects/myproject/usage/usage.ts","diagnostics":[{"start":{"line":4,"offset":5},"end":{"line":4,"offset":10},"text":"Module '\"../decls/fns\"' has no exported member 'fnErr'.","code":2305,"category":"error"}]}} Before running immediate callbacks and checking length (1) @@ -915,9 +915,9 @@ FsWatchesRecursive:: /user/username/projects/myproject/dependency: {} -Info 50 [16:01:25.000] event: +Info 50 [00:01:25.000] event: {"seq":0,"type":"event","event":"suggestionDiag","body":{"file":"/user/username/projects/myproject/usage/usage.ts","diagnostics":[]}} -Info 51 [16:01:26.000] event: +Info 51 [00:01:26.000] event: {"seq":0,"type":"event","event":"requestCompleted","body":{"request_seq":2}} Before running immediate callbacks and checking length (1) 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 38cf0feaadfd2..9c74230c04a23 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 @@ -1,5 +1,5 @@ -Info 0 [16:00:29.000] Provided types map file "/a/lib/typesMap.json" doesn't exist -Info 1 [16:00:30.000] request: +Info 0 [00:00:29.000] Provided types map file "/a/lib/typesMap.json" doesn't exist +Info 1 [00:00:30.000] request: { "seq": 0, "type": "request", @@ -54,11 +54,11 @@ FsWatches:: FsWatchesRecursive:: -Info 2 [16:00:31.000] Search path: /user/username/projects/myproject/usage -Info 3 [16:00:32.000] For info: /user/username/projects/myproject/usage/usage.ts :: Config file name: /user/username/projects/myproject/usage/tsconfig.json -Info 4 [16:00:33.000] Creating configuration project /user/username/projects/myproject/usage/tsconfig.json -Info 5 [16:00:34.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/usage/tsconfig.json 2000 undefined Project: /user/username/projects/myproject/usage/tsconfig.json WatchType: Config file -Info 6 [16:00:35.000] Config: /user/username/projects/myproject/usage/tsconfig.json : { +Info 2 [00:00:31.000] Search path: /user/username/projects/myproject/usage +Info 3 [00:00:32.000] For info: /user/username/projects/myproject/usage/usage.ts :: Config file name: /user/username/projects/myproject/usage/tsconfig.json +Info 4 [00:00:33.000] Creating configuration project /user/username/projects/myproject/usage/tsconfig.json +Info 5 [00:00:34.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/usage/tsconfig.json 2000 undefined Project: /user/username/projects/myproject/usage/tsconfig.json WatchType: Config file +Info 6 [00:00:35.000] Config: /user/username/projects/myproject/usage/tsconfig.json : { "rootNames": [ "/user/username/projects/myproject/usage/usage.ts" ], @@ -73,11 +73,11 @@ Info 6 [16:00:35.000] Config: /user/username/projects/myproject/usage/tsconfi } ] } -Info 7 [16:00:36.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/usage 1 undefined Config: /user/username/projects/myproject/usage/tsconfig.json WatchType: Wild card directory -Info 8 [16:00:37.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/usage 1 undefined Config: /user/username/projects/myproject/usage/tsconfig.json WatchType: Wild card directory -Info 9 [16:00:38.000] Plugins were requested but not running in environment that supports 'require'. Nothing will be loaded -Info 10 [16:00:39.000] Starting updateGraphWorker: Project: /user/username/projects/myproject/usage/tsconfig.json -Info 11 [16:00:40.000] Config: /user/username/projects/myproject/dependency/tsconfig.json : { +Info 7 [00:00:36.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/usage 1 undefined Config: /user/username/projects/myproject/usage/tsconfig.json WatchType: Wild card directory +Info 8 [00:00:37.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/usage 1 undefined Config: /user/username/projects/myproject/usage/tsconfig.json WatchType: Wild card directory +Info 9 [00:00:38.000] Plugins were requested but not running in environment that supports 'require'. Nothing will be loaded +Info 10 [00:00:39.000] Starting updateGraphWorker: Project: /user/username/projects/myproject/usage/tsconfig.json +Info 11 [00:00:40.000] Config: /user/username/projects/myproject/dependency/tsconfig.json : { "rootNames": [ "/user/username/projects/myproject/dependency/fns.ts" ], @@ -87,20 +87,20 @@ Info 11 [16:00:40.000] Config: /user/username/projects/myproject/dependency/ts "configFilePath": "/user/username/projects/myproject/dependency/tsconfig.json" } } -Info 12 [16:00:41.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/dependency/tsconfig.json 2000 undefined Project: /user/username/projects/myproject/usage/tsconfig.json WatchType: Config file -Info 13 [16:00:42.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/dependency 1 undefined Config: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Wild card directory -Info 14 [16:00:43.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/dependency 1 undefined Config: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Wild card directory -Info 15 [16:00:44.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/decls 1 undefined Project: /user/username/projects/myproject/usage/tsconfig.json WatchType: Failed Lookup Locations -Info 16 [16:00:45.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/decls 1 undefined Project: /user/username/projects/myproject/usage/tsconfig.json WatchType: Failed Lookup Locations -Info 17 [16:00:46.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/dependency/fns.ts 500 undefined WatchType: Closed Script info -Info 18 [16:00:47.000] FileWatcher:: Added:: WatchInfo: /a/lib/lib.d.ts 500 undefined WatchType: Closed Script info -Info 19 [16:00:48.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/usage/node_modules/@types 1 undefined Project: /user/username/projects/myproject/usage/tsconfig.json WatchType: Type roots -Info 20 [16:00:49.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/usage/node_modules/@types 1 undefined Project: /user/username/projects/myproject/usage/tsconfig.json WatchType: Type roots -Info 21 [16:00:50.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/usage/tsconfig.json WatchType: Type roots -Info 22 [16:00:51.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/usage/tsconfig.json WatchType: Type roots -Info 23 [16:00:52.000] Finishing updateGraphWorker: Project: /user/username/projects/myproject/usage/tsconfig.json Version: 1 structureChanged: true structureIsReused:: Not Elapsed:: *ms -Info 24 [16:00:53.000] Project '/user/username/projects/myproject/usage/tsconfig.json' (Configured) -Info 25 [16:00:54.000] Files (3) +Info 12 [00:00:41.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/dependency/tsconfig.json 2000 undefined Project: /user/username/projects/myproject/usage/tsconfig.json WatchType: Config file +Info 13 [00:00:42.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/dependency 1 undefined Config: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Wild card directory +Info 14 [00:00:43.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/dependency 1 undefined Config: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Wild card directory +Info 15 [00:00:44.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/decls 1 undefined Project: /user/username/projects/myproject/usage/tsconfig.json WatchType: Failed Lookup Locations +Info 16 [00:00:45.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/decls 1 undefined Project: /user/username/projects/myproject/usage/tsconfig.json WatchType: Failed Lookup Locations +Info 17 [00:00:46.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/dependency/fns.ts 500 undefined WatchType: Closed Script info +Info 18 [00:00:47.000] FileWatcher:: Added:: WatchInfo: /a/lib/lib.d.ts 500 undefined WatchType: Closed Script info +Info 19 [00:00:48.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/usage/node_modules/@types 1 undefined Project: /user/username/projects/myproject/usage/tsconfig.json WatchType: Type roots +Info 20 [00:00:49.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/usage/node_modules/@types 1 undefined Project: /user/username/projects/myproject/usage/tsconfig.json WatchType: Type roots +Info 21 [00:00:50.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/usage/tsconfig.json WatchType: Type roots +Info 22 [00:00:51.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/usage/tsconfig.json WatchType: Type roots +Info 23 [00:00:52.000] Finishing updateGraphWorker: Project: /user/username/projects/myproject/usage/tsconfig.json Version: 1 structureChanged: true structureIsReused:: Not Elapsed:: *ms +Info 24 [00:00:53.000] Project '/user/username/projects/myproject/usage/tsconfig.json' (Configured) +Info 25 [00:00:54.000] Files (3) /a/lib/lib.d.ts /user/username/projects/myproject/dependency/fns.ts /user/username/projects/myproject/usage/usage.ts @@ -113,16 +113,16 @@ Info 25 [16:00:54.000] Files (3) usage.ts Matched by default include pattern '**/*' -Info 26 [16:00:55.000] ----------------------------------------------- -Info 27 [16:00:56.000] Search path: /user/username/projects/myproject/usage -Info 28 [16:00:57.000] For info: /user/username/projects/myproject/usage/tsconfig.json :: No config files found. -Info 29 [16:00:58.000] Project '/user/username/projects/myproject/usage/tsconfig.json' (Configured) -Info 29 [16:00:59.000] Files (3) +Info 26 [00:00:55.000] ----------------------------------------------- +Info 27 [00:00:56.000] Search path: /user/username/projects/myproject/usage +Info 28 [00:00:57.000] For info: /user/username/projects/myproject/usage/tsconfig.json :: No config files found. +Info 29 [00:00:58.000] Project '/user/username/projects/myproject/usage/tsconfig.json' (Configured) +Info 29 [00:00:59.000] Files (3) -Info 29 [16:01:00.000] ----------------------------------------------- -Info 29 [16:01:01.000] Open files: -Info 29 [16:01:02.000] FileName: /user/username/projects/myproject/usage/usage.ts ProjectRootPath: undefined -Info 29 [16:01:03.000] Projects: /user/username/projects/myproject/usage/tsconfig.json +Info 29 [00:01:00.000] ----------------------------------------------- +Info 29 [00:01:01.000] Open files: +Info 29 [00:01:02.000] FileName: /user/username/projects/myproject/usage/usage.ts ProjectRootPath: undefined +Info 29 [00:01:03.000] Projects: /user/username/projects/myproject/usage/tsconfig.json After request PolledWatches:: @@ -149,11 +149,11 @@ FsWatchesRecursive:: /user/username/projects/myproject/dependency: {} -Info 29 [16:01:04.000] response: +Info 29 [00:01:04.000] response: { "responseRequired": false } -Info 30 [16:01:05.000] request: +Info 30 [00:01:05.000] request: { "seq": 0, "type": "request", @@ -188,19 +188,19 @@ FsWatchesRecursive:: /user/username/projects/myproject/dependency: {} -Info 31 [16:01:06.000] FileWatcher:: Close:: WatchInfo: /user/username/projects/myproject/dependency/fns.ts 500 undefined WatchType: Closed Script info -Info 32 [16:01:07.000] Search path: /user/username/projects/myproject/dependency -Info 33 [16:01:08.000] For info: /user/username/projects/myproject/dependency/fns.ts :: Config file name: /user/username/projects/myproject/dependency/tsconfig.json -Info 34 [16:01:09.000] Creating configuration project /user/username/projects/myproject/dependency/tsconfig.json -Info 35 [16:01:10.000] Plugins were requested but not running in environment that supports 'require'. Nothing will be loaded -Info 36 [16:01:11.000] Starting updateGraphWorker: Project: /user/username/projects/myproject/dependency/tsconfig.json -Info 37 [16:01:12.000] 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 38 [16:01:13.000] 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 39 [16:01:14.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Type roots -Info 40 [16:01:15.000] 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 41 [16:01:16.000] Finishing updateGraphWorker: Project: /user/username/projects/myproject/dependency/tsconfig.json Version: 1 structureChanged: true structureIsReused:: Not Elapsed:: *ms -Info 42 [16:01:17.000] Project '/user/username/projects/myproject/dependency/tsconfig.json' (Configured) -Info 43 [16:01:18.000] Files (2) +Info 31 [00:01:06.000] FileWatcher:: Close:: WatchInfo: /user/username/projects/myproject/dependency/fns.ts 500 undefined WatchType: Closed Script info +Info 32 [00:01:07.000] Search path: /user/username/projects/myproject/dependency +Info 33 [00:01:08.000] For info: /user/username/projects/myproject/dependency/fns.ts :: Config file name: /user/username/projects/myproject/dependency/tsconfig.json +Info 34 [00:01:09.000] Creating configuration project /user/username/projects/myproject/dependency/tsconfig.json +Info 35 [00:01:10.000] Plugins were requested but not running in environment that supports 'require'. Nothing will be loaded +Info 36 [00:01:11.000] Starting updateGraphWorker: Project: /user/username/projects/myproject/dependency/tsconfig.json +Info 37 [00:01:12.000] 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 38 [00:01:13.000] 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 39 [00:01:14.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Type roots +Info 40 [00:01:15.000] 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 41 [00:01:16.000] Finishing updateGraphWorker: Project: /user/username/projects/myproject/dependency/tsconfig.json Version: 1 structureChanged: true structureIsReused:: Not Elapsed:: *ms +Info 42 [00:01:17.000] Project '/user/username/projects/myproject/dependency/tsconfig.json' (Configured) +Info 43 [00:01:18.000] Files (2) /a/lib/lib.d.ts /user/username/projects/myproject/dependency/fns.ts @@ -210,22 +210,22 @@ Info 43 [16:01:18.000] Files (2) fns.ts Matched by default include pattern '**/*' -Info 44 [16:01:19.000] ----------------------------------------------- -Info 45 [16:01:20.000] Search path: /user/username/projects/myproject/dependency -Info 46 [16:01:21.000] For info: /user/username/projects/myproject/dependency/tsconfig.json :: No config files found. -Info 47 [16:01:22.000] Project '/user/username/projects/myproject/usage/tsconfig.json' (Configured) -Info 47 [16:01:23.000] Files (3) - -Info 47 [16:01:24.000] ----------------------------------------------- -Info 47 [16:01:25.000] Project '/user/username/projects/myproject/dependency/tsconfig.json' (Configured) -Info 47 [16:01:26.000] Files (2) - -Info 47 [16:01:27.000] ----------------------------------------------- -Info 47 [16:01:28.000] Open files: -Info 47 [16:01:29.000] FileName: /user/username/projects/myproject/usage/usage.ts ProjectRootPath: undefined -Info 47 [16:01:30.000] Projects: /user/username/projects/myproject/usage/tsconfig.json -Info 47 [16:01:31.000] FileName: /user/username/projects/myproject/dependency/fns.ts ProjectRootPath: undefined -Info 47 [16:01:32.000] Projects: /user/username/projects/myproject/usage/tsconfig.json,/user/username/projects/myproject/dependency/tsconfig.json +Info 44 [00:01:19.000] ----------------------------------------------- +Info 45 [00:01:20.000] Search path: /user/username/projects/myproject/dependency +Info 46 [00:01:21.000] For info: /user/username/projects/myproject/dependency/tsconfig.json :: No config files found. +Info 47 [00:01:22.000] Project '/user/username/projects/myproject/usage/tsconfig.json' (Configured) +Info 47 [00:01:23.000] Files (3) + +Info 47 [00:01:24.000] ----------------------------------------------- +Info 47 [00:01:25.000] Project '/user/username/projects/myproject/dependency/tsconfig.json' (Configured) +Info 47 [00:01:26.000] Files (2) + +Info 47 [00:01:27.000] ----------------------------------------------- +Info 47 [00:01:28.000] Open files: +Info 47 [00:01:29.000] FileName: /user/username/projects/myproject/usage/usage.ts ProjectRootPath: undefined +Info 47 [00:01:30.000] Projects: /user/username/projects/myproject/usage/tsconfig.json +Info 47 [00:01:31.000] FileName: /user/username/projects/myproject/dependency/fns.ts ProjectRootPath: undefined +Info 47 [00:01:32.000] Projects: /user/username/projects/myproject/usage/tsconfig.json,/user/username/projects/myproject/dependency/tsconfig.json After request PolledWatches:: @@ -252,11 +252,11 @@ FsWatchesRecursive:: /user/username/projects/myproject/dependency: {} -Info 47 [16:01:33.000] response: +Info 47 [00:01:33.000] response: { "responseRequired": false } -Info 48 [16:01:34.000] request: +Info 48 [00:01:34.000] request: { "command": "syntacticDiagnosticsSync", "arguments": { @@ -317,12 +317,12 @@ FsWatchesRecursive:: /user/username/projects/myproject/dependency: {} -Info 49 [16:01:35.000] response: +Info 49 [00:01:35.000] response: { "response": [], "responseRequired": true } -Info 50 [16:01:36.000] request: +Info 50 [00:01:36.000] request: { "command": "semanticDiagnosticsSync", "arguments": { @@ -383,7 +383,7 @@ FsWatchesRecursive:: /user/username/projects/myproject/dependency: {} -Info 51 [16:01:37.000] response: +Info 51 [00:01:37.000] response: { "response": [ { @@ -402,7 +402,7 @@ Info 51 [16:01:37.000] response: ], "responseRequired": true } -Info 52 [16:01:38.000] request: +Info 52 [00:01:38.000] request: { "command": "suggestionDiagnosticsSync", "arguments": { @@ -463,12 +463,12 @@ FsWatchesRecursive:: /user/username/projects/myproject/dependency: {} -Info 53 [16:01:39.000] response: +Info 53 [00:01:39.000] response: { "response": [], "responseRequired": true } -Info 54 [16:01:40.000] request: +Info 54 [00:01:40.000] request: { "command": "syntacticDiagnosticsSync", "arguments": { @@ -529,12 +529,12 @@ FsWatchesRecursive:: /user/username/projects/myproject/dependency: {} -Info 55 [16:01:41.000] response: +Info 55 [00:01:41.000] response: { "response": [], "responseRequired": true } -Info 56 [16:01:42.000] request: +Info 56 [00:01:42.000] request: { "command": "semanticDiagnosticsSync", "arguments": { @@ -595,7 +595,7 @@ FsWatchesRecursive:: /user/username/projects/myproject/dependency: {} -Info 57 [16:01:43.000] response: +Info 57 [00:01:43.000] response: { "response": [ { @@ -614,7 +614,7 @@ Info 57 [16:01:43.000] response: ], "responseRequired": true } -Info 58 [16:01:44.000] request: +Info 58 [00:01:44.000] request: { "command": "suggestionDiagnosticsSync", "arguments": { @@ -675,12 +675,12 @@ FsWatchesRecursive:: /user/username/projects/myproject/dependency: {} -Info 59 [16:01:45.000] response: +Info 59 [00:01:45.000] response: { "response": [], "responseRequired": true } -Info 60 [16:01:46.000] request: +Info 60 [00:01:46.000] request: { "command": "syntacticDiagnosticsSync", "arguments": { @@ -742,12 +742,12 @@ FsWatchesRecursive:: /user/username/projects/myproject/dependency: {} -Info 61 [16:01:47.000] response: +Info 61 [00:01:47.000] response: { "response": [], "responseRequired": true } -Info 62 [16:01:48.000] request: +Info 62 [00:01:48.000] request: { "command": "semanticDiagnosticsSync", "arguments": { @@ -809,7 +809,7 @@ FsWatchesRecursive:: /user/username/projects/myproject/dependency: {} -Info 63 [16:01:49.000] response: +Info 63 [00:01:49.000] response: { "response": [ { @@ -828,7 +828,7 @@ Info 63 [16:01:49.000] response: ], "responseRequired": true } -Info 64 [16:01:50.000] request: +Info 64 [00:01:50.000] request: { "command": "suggestionDiagnosticsSync", "arguments": { @@ -890,12 +890,12 @@ FsWatchesRecursive:: /user/username/projects/myproject/dependency: {} -Info 65 [16:01:51.000] response: +Info 65 [00:01:51.000] response: { "response": [], "responseRequired": true } -Info 66 [16:01:52.000] request: +Info 66 [00:01:52.000] request: { "command": "syntacticDiagnosticsSync", "arguments": { @@ -957,12 +957,12 @@ FsWatchesRecursive:: /user/username/projects/myproject/dependency: {} -Info 67 [16:01:53.000] response: +Info 67 [00:01:53.000] response: { "response": [], "responseRequired": true } -Info 68 [16:01:54.000] request: +Info 68 [00:01:54.000] request: { "command": "semanticDiagnosticsSync", "arguments": { @@ -1024,12 +1024,12 @@ FsWatchesRecursive:: /user/username/projects/myproject/dependency: {} -Info 69 [16:01:55.000] response: +Info 69 [00:01:55.000] response: { "response": [], "responseRequired": true } -Info 70 [16:01:56.000] request: +Info 70 [00:01:56.000] request: { "command": "suggestionDiagnosticsSync", "arguments": { @@ -1091,12 +1091,12 @@ FsWatchesRecursive:: /user/username/projects/myproject/dependency: {} -Info 71 [16:01:57.000] response: +Info 71 [00:01:57.000] response: { "response": [], "responseRequired": true } -Info 72 [16:01:58.000] request: +Info 72 [00:01:58.000] request: { "command": "syntacticDiagnosticsSync", "arguments": { @@ -1158,12 +1158,12 @@ FsWatchesRecursive:: /user/username/projects/myproject/dependency: {} -Info 73 [16:01:59.000] response: +Info 73 [00:01:59.000] response: { "response": [], "responseRequired": true } -Info 74 [16:02:00.000] request: +Info 74 [00:02:00.000] request: { "command": "semanticDiagnosticsSync", "arguments": { @@ -1225,7 +1225,7 @@ FsWatchesRecursive:: /user/username/projects/myproject/dependency: {} -Info 75 [16:02:01.000] response: +Info 75 [00:02:01.000] response: { "response": [ { @@ -1244,7 +1244,7 @@ Info 75 [16:02:01.000] response: ], "responseRequired": true } -Info 76 [16:02:02.000] request: +Info 76 [00:02:02.000] request: { "command": "suggestionDiagnosticsSync", "arguments": { @@ -1306,7 +1306,7 @@ FsWatchesRecursive:: /user/username/projects/myproject/dependency: {} -Info 77 [16:02:03.000] response: +Info 77 [00:02:03.000] response: { "response": [], "responseRequired": true 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 8cdfb7bfeede0..ac511243e25df 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 @@ -1,5 +1,5 @@ -Info 0 [16:00:29.000] Provided types map file "/a/lib/typesMap.json" doesn't exist -Info 1 [16:00:30.000] request: +Info 0 [00:00:29.000] Provided types map file "/a/lib/typesMap.json" doesn't exist +Info 1 [00:00:30.000] request: { "seq": 0, "type": "request", @@ -54,13 +54,13 @@ FsWatches:: FsWatchesRecursive:: -Info 2 [16:00:31.000] Search path: /user/username/projects/myproject/usage -Info 3 [16:00:32.000] For info: /user/username/projects/myproject/usage/usage.ts :: Config file name: /user/username/projects/myproject/usage/tsconfig.json -Info 4 [16:00:33.000] Creating configuration project /user/username/projects/myproject/usage/tsconfig.json -Info 5 [16:00:34.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/usage/tsconfig.json 2000 undefined Project: /user/username/projects/myproject/usage/tsconfig.json WatchType: Config file -Info 6 [16:00:35.000] event: +Info 2 [00:00:31.000] Search path: /user/username/projects/myproject/usage +Info 3 [00:00:32.000] For info: /user/username/projects/myproject/usage/usage.ts :: Config file name: /user/username/projects/myproject/usage/tsconfig.json +Info 4 [00:00:33.000] Creating configuration project /user/username/projects/myproject/usage/tsconfig.json +Info 5 [00:00:34.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/usage/tsconfig.json 2000 undefined Project: /user/username/projects/myproject/usage/tsconfig.json WatchType: Config file +Info 6 [00:00:35.000] event: {"seq":0,"type":"event","event":"projectLoadingStart","body":{"projectName":"/user/username/projects/myproject/usage/tsconfig.json","reason":"Creating possible configured project for /user/username/projects/myproject/usage/usage.ts to open"}} -Info 7 [16:00:36.000] Config: /user/username/projects/myproject/usage/tsconfig.json : { +Info 7 [00:00:36.000] Config: /user/username/projects/myproject/usage/tsconfig.json : { "rootNames": [ "/user/username/projects/myproject/usage/usage.ts" ], @@ -75,11 +75,11 @@ Info 7 [16:00:36.000] Config: /user/username/projects/myproject/usage/tsconfi } ] } -Info 8 [16:00:37.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/usage 1 undefined Config: /user/username/projects/myproject/usage/tsconfig.json WatchType: Wild card directory -Info 9 [16:00:38.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/usage 1 undefined Config: /user/username/projects/myproject/usage/tsconfig.json WatchType: Wild card directory -Info 10 [16:00:39.000] Plugins were requested but not running in environment that supports 'require'. Nothing will be loaded -Info 11 [16:00:40.000] Starting updateGraphWorker: Project: /user/username/projects/myproject/usage/tsconfig.json -Info 12 [16:00:41.000] Config: /user/username/projects/myproject/dependency/tsconfig.json : { +Info 8 [00:00:37.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/usage 1 undefined Config: /user/username/projects/myproject/usage/tsconfig.json WatchType: Wild card directory +Info 9 [00:00:38.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/usage 1 undefined Config: /user/username/projects/myproject/usage/tsconfig.json WatchType: Wild card directory +Info 10 [00:00:39.000] Plugins were requested but not running in environment that supports 'require'. Nothing will be loaded +Info 11 [00:00:40.000] Starting updateGraphWorker: Project: /user/username/projects/myproject/usage/tsconfig.json +Info 12 [00:00:41.000] Config: /user/username/projects/myproject/dependency/tsconfig.json : { "rootNames": [ "/user/username/projects/myproject/dependency/fns.ts" ], @@ -89,20 +89,20 @@ Info 12 [16:00:41.000] Config: /user/username/projects/myproject/dependency/ts "configFilePath": "/user/username/projects/myproject/dependency/tsconfig.json" } } -Info 13 [16:00:42.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/dependency/tsconfig.json 2000 undefined Project: /user/username/projects/myproject/usage/tsconfig.json WatchType: Config file -Info 14 [16:00:43.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/dependency 1 undefined Config: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Wild card directory -Info 15 [16:00:44.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/dependency 1 undefined Config: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Wild card directory -Info 16 [16:00:45.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/decls 1 undefined Project: /user/username/projects/myproject/usage/tsconfig.json WatchType: Failed Lookup Locations -Info 17 [16:00:46.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/decls 1 undefined Project: /user/username/projects/myproject/usage/tsconfig.json WatchType: Failed Lookup Locations -Info 18 [16:00:47.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/dependency/fns.ts 500 undefined WatchType: Closed Script info -Info 19 [16:00:48.000] FileWatcher:: Added:: WatchInfo: /a/lib/lib.d.ts 500 undefined WatchType: Closed Script info -Info 20 [16:00:49.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/usage/node_modules/@types 1 undefined Project: /user/username/projects/myproject/usage/tsconfig.json WatchType: Type roots -Info 21 [16:00:50.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/usage/node_modules/@types 1 undefined Project: /user/username/projects/myproject/usage/tsconfig.json WatchType: Type roots -Info 22 [16:00:51.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/usage/tsconfig.json WatchType: Type roots -Info 23 [16:00:52.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/usage/tsconfig.json WatchType: Type roots -Info 24 [16:00:53.000] Finishing updateGraphWorker: Project: /user/username/projects/myproject/usage/tsconfig.json Version: 1 structureChanged: true structureIsReused:: Not Elapsed:: *ms -Info 25 [16:00:54.000] Project '/user/username/projects/myproject/usage/tsconfig.json' (Configured) -Info 26 [16:00:55.000] Files (3) +Info 13 [00:00:42.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/dependency/tsconfig.json 2000 undefined Project: /user/username/projects/myproject/usage/tsconfig.json WatchType: Config file +Info 14 [00:00:43.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/dependency 1 undefined Config: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Wild card directory +Info 15 [00:00:44.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/dependency 1 undefined Config: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Wild card directory +Info 16 [00:00:45.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/decls 1 undefined Project: /user/username/projects/myproject/usage/tsconfig.json WatchType: Failed Lookup Locations +Info 17 [00:00:46.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/decls 1 undefined Project: /user/username/projects/myproject/usage/tsconfig.json WatchType: Failed Lookup Locations +Info 18 [00:00:47.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/dependency/fns.ts 500 undefined WatchType: Closed Script info +Info 19 [00:00:48.000] FileWatcher:: Added:: WatchInfo: /a/lib/lib.d.ts 500 undefined WatchType: Closed Script info +Info 20 [00:00:49.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/usage/node_modules/@types 1 undefined Project: /user/username/projects/myproject/usage/tsconfig.json WatchType: Type roots +Info 21 [00:00:50.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/usage/node_modules/@types 1 undefined Project: /user/username/projects/myproject/usage/tsconfig.json WatchType: Type roots +Info 22 [00:00:51.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/usage/tsconfig.json WatchType: Type roots +Info 23 [00:00:52.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/usage/tsconfig.json WatchType: Type roots +Info 24 [00:00:53.000] Finishing updateGraphWorker: Project: /user/username/projects/myproject/usage/tsconfig.json Version: 1 structureChanged: true structureIsReused:: Not Elapsed:: *ms +Info 25 [00:00:54.000] Project '/user/username/projects/myproject/usage/tsconfig.json' (Configured) +Info 26 [00:00:55.000] Files (3) /a/lib/lib.d.ts /user/username/projects/myproject/dependency/fns.ts /user/username/projects/myproject/usage/usage.ts @@ -115,22 +115,22 @@ Info 26 [16:00:55.000] Files (3) usage.ts Matched by default include pattern '**/*' -Info 27 [16:00:56.000] ----------------------------------------------- -Info 28 [16:00:57.000] event: +Info 27 [00:00:56.000] ----------------------------------------------- +Info 28 [00:00:57.000] event: {"seq":0,"type":"event","event":"projectLoadingFinish","body":{"projectName":"/user/username/projects/myproject/usage/tsconfig.json"}} -Info 29 [16:00:58.000] event: +Info 29 [00:00:58.000] event: {"seq":0,"type":"event","event":"telemetry","body":{"telemetryEventName":"projectInfo","payload":{"projectId":"2b96539513e8810fb8ec0c078e4cb28919c0c28cdb8f7646118c5a6f4ff4cb10","fileStats":{"js":0,"jsSize":0,"jsx":0,"jsxSize":0,"ts":2,"tsSize":266,"tsx":0,"tsxSize":0,"dts":1,"dtsSize":334,"deferred":0,"deferredSize":0},"compilerOptions":{"composite":true},"typeAcquisition":{"enable":false,"include":false,"exclude":false},"extends":false,"files":false,"include":false,"exclude":false,"compileOnSave":false,"configFileName":"tsconfig.json","projectType":"configured","languageServiceEnabled":true,"version":"FakeVersion"}}} -Info 30 [16:00:59.000] event: +Info 30 [00:00:59.000] event: {"seq":0,"type":"event","event":"configFileDiag","body":{"triggerFile":"/user/username/projects/myproject/usage/usage.ts","configFile":"/user/username/projects/myproject/usage/tsconfig.json","diagnostics":[]}} -Info 31 [16:01:00.000] Search path: /user/username/projects/myproject/usage -Info 32 [16:01:01.000] For info: /user/username/projects/myproject/usage/tsconfig.json :: No config files found. -Info 33 [16:01:02.000] Project '/user/username/projects/myproject/usage/tsconfig.json' (Configured) -Info 33 [16:01:03.000] Files (3) - -Info 33 [16:01:04.000] ----------------------------------------------- -Info 33 [16:01:05.000] Open files: -Info 33 [16:01:06.000] FileName: /user/username/projects/myproject/usage/usage.ts ProjectRootPath: undefined -Info 33 [16:01:07.000] Projects: /user/username/projects/myproject/usage/tsconfig.json +Info 31 [00:01:00.000] Search path: /user/username/projects/myproject/usage +Info 32 [00:01:01.000] For info: /user/username/projects/myproject/usage/tsconfig.json :: No config files found. +Info 33 [00:01:02.000] Project '/user/username/projects/myproject/usage/tsconfig.json' (Configured) +Info 33 [00:01:03.000] Files (3) + +Info 33 [00:01:04.000] ----------------------------------------------- +Info 33 [00:01:05.000] Open files: +Info 33 [00:01:06.000] FileName: /user/username/projects/myproject/usage/usage.ts ProjectRootPath: undefined +Info 33 [00:01:07.000] Projects: /user/username/projects/myproject/usage/tsconfig.json After request PolledWatches:: @@ -157,11 +157,11 @@ FsWatchesRecursive:: /user/username/projects/myproject/dependency: {} -Info 33 [16:01:08.000] response: +Info 33 [00:01:08.000] response: { "responseRequired": false } -Info 34 [16:01:09.000] request: +Info 34 [00:01:09.000] request: { "seq": 0, "type": "request", @@ -196,21 +196,21 @@ FsWatchesRecursive:: /user/username/projects/myproject/dependency: {} -Info 35 [16:01:10.000] FileWatcher:: Close:: WatchInfo: /user/username/projects/myproject/dependency/fns.ts 500 undefined WatchType: Closed Script info -Info 36 [16:01:11.000] Search path: /user/username/projects/myproject/dependency -Info 37 [16:01:12.000] For info: /user/username/projects/myproject/dependency/fns.ts :: Config file name: /user/username/projects/myproject/dependency/tsconfig.json -Info 38 [16:01:13.000] Creating configuration project /user/username/projects/myproject/dependency/tsconfig.json -Info 39 [16:01:14.000] event: +Info 35 [00:01:10.000] FileWatcher:: Close:: WatchInfo: /user/username/projects/myproject/dependency/fns.ts 500 undefined WatchType: Closed Script info +Info 36 [00:01:11.000] Search path: /user/username/projects/myproject/dependency +Info 37 [00:01:12.000] For info: /user/username/projects/myproject/dependency/fns.ts :: Config file name: /user/username/projects/myproject/dependency/tsconfig.json +Info 38 [00:01:13.000] Creating configuration project /user/username/projects/myproject/dependency/tsconfig.json +Info 39 [00:01:14.000] event: {"seq":0,"type":"event","event":"projectLoadingStart","body":{"projectName":"/user/username/projects/myproject/dependency/tsconfig.json","reason":"Creating possible configured project for /user/username/projects/myproject/dependency/fns.ts to open"}} -Info 40 [16:01:15.000] Plugins were requested but not running in environment that supports 'require'. Nothing will be loaded -Info 41 [16:01:16.000] Starting updateGraphWorker: Project: /user/username/projects/myproject/dependency/tsconfig.json -Info 42 [16:01:17.000] 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 43 [16:01:18.000] 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 44 [16:01:19.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Type roots -Info 45 [16:01:20.000] 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 46 [16:01:21.000] Finishing updateGraphWorker: Project: /user/username/projects/myproject/dependency/tsconfig.json Version: 1 structureChanged: true structureIsReused:: Not Elapsed:: *ms -Info 47 [16:01:22.000] Project '/user/username/projects/myproject/dependency/tsconfig.json' (Configured) -Info 48 [16:01:23.000] Files (2) +Info 40 [00:01:15.000] Plugins were requested but not running in environment that supports 'require'. Nothing will be loaded +Info 41 [00:01:16.000] Starting updateGraphWorker: Project: /user/username/projects/myproject/dependency/tsconfig.json +Info 42 [00:01:17.000] 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 43 [00:01:18.000] 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 44 [00:01:19.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Type roots +Info 45 [00:01:20.000] 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 46 [00:01:21.000] Finishing updateGraphWorker: Project: /user/username/projects/myproject/dependency/tsconfig.json Version: 1 structureChanged: true structureIsReused:: Not Elapsed:: *ms +Info 47 [00:01:22.000] Project '/user/username/projects/myproject/dependency/tsconfig.json' (Configured) +Info 48 [00:01:23.000] Files (2) /a/lib/lib.d.ts /user/username/projects/myproject/dependency/fns.ts @@ -220,28 +220,28 @@ Info 48 [16:01:23.000] Files (2) fns.ts Matched by default include pattern '**/*' -Info 49 [16:01:24.000] ----------------------------------------------- -Info 50 [16:01:25.000] event: +Info 49 [00:01:24.000] ----------------------------------------------- +Info 50 [00:01:25.000] event: {"seq":0,"type":"event","event":"projectLoadingFinish","body":{"projectName":"/user/username/projects/myproject/dependency/tsconfig.json"}} -Info 51 [16:01:26.000] event: +Info 51 [00:01:26.000] event: {"seq":0,"type":"event","event":"telemetry","body":{"telemetryEventName":"projectInfo","payload":{"projectId":"80216eb4c9c6d41fcd26650a22a2df8f2cac81cda661de72dc723e6251203d22","fileStats":{"js":0,"jsSize":0,"jsx":0,"jsxSize":0,"ts":1,"tsSize":184,"tsx":0,"tsxSize":0,"dts":1,"dtsSize":334,"deferred":0,"deferredSize":0},"compilerOptions":{"composite":true,"declarationDir":""},"typeAcquisition":{"enable":false,"include":false,"exclude":false},"extends":false,"files":false,"include":false,"exclude":false,"compileOnSave":false,"configFileName":"tsconfig.json","projectType":"configured","languageServiceEnabled":true,"version":"FakeVersion"}}} -Info 52 [16:01:27.000] event: +Info 52 [00:01:27.000] event: {"seq":0,"type":"event","event":"configFileDiag","body":{"triggerFile":"/user/username/projects/myproject/dependency/fns.ts","configFile":"/user/username/projects/myproject/dependency/tsconfig.json","diagnostics":[]}} -Info 53 [16:01:28.000] Search path: /user/username/projects/myproject/dependency -Info 54 [16:01:29.000] For info: /user/username/projects/myproject/dependency/tsconfig.json :: No config files found. -Info 55 [16:01:30.000] Project '/user/username/projects/myproject/usage/tsconfig.json' (Configured) -Info 55 [16:01:31.000] Files (3) - -Info 55 [16:01:32.000] ----------------------------------------------- -Info 55 [16:01:33.000] Project '/user/username/projects/myproject/dependency/tsconfig.json' (Configured) -Info 55 [16:01:34.000] Files (2) - -Info 55 [16:01:35.000] ----------------------------------------------- -Info 55 [16:01:36.000] Open files: -Info 55 [16:01:37.000] FileName: /user/username/projects/myproject/usage/usage.ts ProjectRootPath: undefined -Info 55 [16:01:38.000] Projects: /user/username/projects/myproject/usage/tsconfig.json -Info 55 [16:01:39.000] FileName: /user/username/projects/myproject/dependency/fns.ts ProjectRootPath: undefined -Info 55 [16:01:40.000] Projects: /user/username/projects/myproject/usage/tsconfig.json,/user/username/projects/myproject/dependency/tsconfig.json +Info 53 [00:01:28.000] Search path: /user/username/projects/myproject/dependency +Info 54 [00:01:29.000] For info: /user/username/projects/myproject/dependency/tsconfig.json :: No config files found. +Info 55 [00:01:30.000] Project '/user/username/projects/myproject/usage/tsconfig.json' (Configured) +Info 55 [00:01:31.000] Files (3) + +Info 55 [00:01:32.000] ----------------------------------------------- +Info 55 [00:01:33.000] Project '/user/username/projects/myproject/dependency/tsconfig.json' (Configured) +Info 55 [00:01:34.000] Files (2) + +Info 55 [00:01:35.000] ----------------------------------------------- +Info 55 [00:01:36.000] Open files: +Info 55 [00:01:37.000] FileName: /user/username/projects/myproject/usage/usage.ts ProjectRootPath: undefined +Info 55 [00:01:38.000] Projects: /user/username/projects/myproject/usage/tsconfig.json +Info 55 [00:01:39.000] FileName: /user/username/projects/myproject/dependency/fns.ts ProjectRootPath: undefined +Info 55 [00:01:40.000] Projects: /user/username/projects/myproject/usage/tsconfig.json,/user/username/projects/myproject/dependency/tsconfig.json After request PolledWatches:: @@ -268,11 +268,11 @@ FsWatchesRecursive:: /user/username/projects/myproject/dependency: {} -Info 55 [16:01:41.000] response: +Info 55 [00:01:41.000] response: { "responseRequired": false } -Info 56 [16:01:42.000] request: +Info 56 [00:01:42.000] request: { "command": "geterr", "arguments": { @@ -337,7 +337,7 @@ FsWatchesRecursive:: /user/username/projects/myproject/dependency: {} -Info 57 [16:01:43.000] response: +Info 57 [00:01:43.000] response: { "responseRequired": false } @@ -367,7 +367,7 @@ FsWatchesRecursive:: /user/username/projects/myproject/dependency: {} -Info 58 [16:01:44.000] event: +Info 58 [00:01:44.000] event: {"seq":0,"type":"event","event":"syntaxDiag","body":{"file":"/user/username/projects/myproject/usage/usage.ts","diagnostics":[]}} After checking timeout queue length (1) and running @@ -421,7 +421,7 @@ FsWatchesRecursive:: /user/username/projects/myproject/dependency: {} -Info 59 [16:01:45.000] event: +Info 59 [00:01:45.000] event: {"seq":0,"type":"event","event":"semanticDiag","body":{"file":"/user/username/projects/myproject/usage/usage.ts","diagnostics":[{"start":{"line":4,"offset":5},"end":{"line":4,"offset":10},"text":"Module '\"../decls/fns\"' has no exported member 'fnErr'.","code":2305,"category":"error"}]}} Before running immediate callbacks and checking length (1) @@ -475,7 +475,7 @@ FsWatchesRecursive:: /user/username/projects/myproject/dependency: {} -Info 60 [16:01:46.000] event: +Info 60 [00:01:46.000] event: {"seq":0,"type":"event","event":"suggestionDiag","body":{"file":"/user/username/projects/myproject/usage/usage.ts","diagnostics":[]}} Before running immediate callbacks and checking length (1) @@ -529,7 +529,7 @@ FsWatchesRecursive:: /user/username/projects/myproject/dependency: {} -Info 61 [16:01:47.000] event: +Info 61 [00:01:47.000] event: {"seq":0,"type":"event","event":"syntaxDiag","body":{"file":"/user/username/projects/myproject/dependency/fns.ts","diagnostics":[]}} After checking timeout queue length (1) and running @@ -583,7 +583,7 @@ FsWatchesRecursive:: /user/username/projects/myproject/dependency: {} -Info 62 [16:01:48.000] event: +Info 62 [00:01:48.000] event: {"seq":0,"type":"event","event":"semanticDiag","body":{"file":"/user/username/projects/myproject/dependency/fns.ts","diagnostics":[{"start":{"line":6,"offset":12},"end":{"line":6,"offset":13},"text":"Type 'number' is not assignable to type 'string'.","code":2322,"category":"error"}]}} Before running immediate callbacks and checking length (1) @@ -637,9 +637,9 @@ FsWatchesRecursive:: /user/username/projects/myproject/dependency: {} -Info 63 [16:01:49.000] event: +Info 63 [00:01:49.000] event: {"seq":0,"type":"event","event":"suggestionDiag","body":{"file":"/user/username/projects/myproject/dependency/fns.ts","diagnostics":[]}} -Info 64 [16:01:50.000] event: +Info 64 [00:01:50.000] event: {"seq":0,"type":"event","event":"requestCompleted","body":{"request_seq":1}} Before running immediate callbacks and checking length (1) 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 5f3c2afefc11a..72b8dde214353 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 @@ -1,5 +1,5 @@ -Info 0 [16:00:29.000] Provided types map file "/a/lib/typesMap.json" doesn't exist -Info 1 [16:00:30.000] request: +Info 0 [00:00:29.000] Provided types map file "/a/lib/typesMap.json" doesn't exist +Info 1 [00:00:30.000] request: { "seq": 0, "type": "request", @@ -54,13 +54,13 @@ FsWatches:: FsWatchesRecursive:: -Info 2 [16:00:31.000] Search path: /user/username/projects/myproject/usage -Info 3 [16:00:32.000] For info: /user/username/projects/myproject/usage/usage.ts :: Config file name: /user/username/projects/myproject/usage/tsconfig.json -Info 4 [16:00:33.000] Creating configuration project /user/username/projects/myproject/usage/tsconfig.json -Info 5 [16:00:34.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/usage/tsconfig.json 2000 undefined Project: /user/username/projects/myproject/usage/tsconfig.json WatchType: Config file -Info 6 [16:00:35.000] event: +Info 2 [00:00:31.000] Search path: /user/username/projects/myproject/usage +Info 3 [00:00:32.000] For info: /user/username/projects/myproject/usage/usage.ts :: Config file name: /user/username/projects/myproject/usage/tsconfig.json +Info 4 [00:00:33.000] Creating configuration project /user/username/projects/myproject/usage/tsconfig.json +Info 5 [00:00:34.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/usage/tsconfig.json 2000 undefined Project: /user/username/projects/myproject/usage/tsconfig.json WatchType: Config file +Info 6 [00:00:35.000] event: {"seq":0,"type":"event","event":"projectLoadingStart","body":{"projectName":"/user/username/projects/myproject/usage/tsconfig.json","reason":"Creating possible configured project for /user/username/projects/myproject/usage/usage.ts to open"}} -Info 7 [16:00:36.000] Config: /user/username/projects/myproject/usage/tsconfig.json : { +Info 7 [00:00:36.000] Config: /user/username/projects/myproject/usage/tsconfig.json : { "rootNames": [ "/user/username/projects/myproject/usage/usage.ts" ], @@ -75,11 +75,11 @@ Info 7 [16:00:36.000] Config: /user/username/projects/myproject/usage/tsconfi } ] } -Info 8 [16:00:37.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/usage 1 undefined Config: /user/username/projects/myproject/usage/tsconfig.json WatchType: Wild card directory -Info 9 [16:00:38.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/usage 1 undefined Config: /user/username/projects/myproject/usage/tsconfig.json WatchType: Wild card directory -Info 10 [16:00:39.000] Plugins were requested but not running in environment that supports 'require'. Nothing will be loaded -Info 11 [16:00:40.000] Starting updateGraphWorker: Project: /user/username/projects/myproject/usage/tsconfig.json -Info 12 [16:00:41.000] Config: /user/username/projects/myproject/dependency/tsconfig.json : { +Info 8 [00:00:37.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/usage 1 undefined Config: /user/username/projects/myproject/usage/tsconfig.json WatchType: Wild card directory +Info 9 [00:00:38.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/usage 1 undefined Config: /user/username/projects/myproject/usage/tsconfig.json WatchType: Wild card directory +Info 10 [00:00:39.000] Plugins were requested but not running in environment that supports 'require'. Nothing will be loaded +Info 11 [00:00:40.000] Starting updateGraphWorker: Project: /user/username/projects/myproject/usage/tsconfig.json +Info 12 [00:00:41.000] Config: /user/username/projects/myproject/dependency/tsconfig.json : { "rootNames": [ "/user/username/projects/myproject/dependency/fns.ts" ], @@ -89,20 +89,20 @@ Info 12 [16:00:41.000] Config: /user/username/projects/myproject/dependency/ts "configFilePath": "/user/username/projects/myproject/dependency/tsconfig.json" } } -Info 13 [16:00:42.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/dependency/tsconfig.json 2000 undefined Project: /user/username/projects/myproject/usage/tsconfig.json WatchType: Config file -Info 14 [16:00:43.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/dependency 1 undefined Config: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Wild card directory -Info 15 [16:00:44.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/dependency 1 undefined Config: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Wild card directory -Info 16 [16:00:45.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/decls 1 undefined Project: /user/username/projects/myproject/usage/tsconfig.json WatchType: Failed Lookup Locations -Info 17 [16:00:46.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/decls 1 undefined Project: /user/username/projects/myproject/usage/tsconfig.json WatchType: Failed Lookup Locations -Info 18 [16:00:47.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/dependency/fns.ts 500 undefined WatchType: Closed Script info -Info 19 [16:00:48.000] FileWatcher:: Added:: WatchInfo: /a/lib/lib.d.ts 500 undefined WatchType: Closed Script info -Info 20 [16:00:49.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/usage/node_modules/@types 1 undefined Project: /user/username/projects/myproject/usage/tsconfig.json WatchType: Type roots -Info 21 [16:00:50.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/usage/node_modules/@types 1 undefined Project: /user/username/projects/myproject/usage/tsconfig.json WatchType: Type roots -Info 22 [16:00:51.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/usage/tsconfig.json WatchType: Type roots -Info 23 [16:00:52.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/usage/tsconfig.json WatchType: Type roots -Info 24 [16:00:53.000] Finishing updateGraphWorker: Project: /user/username/projects/myproject/usage/tsconfig.json Version: 1 structureChanged: true structureIsReused:: Not Elapsed:: *ms -Info 25 [16:00:54.000] Project '/user/username/projects/myproject/usage/tsconfig.json' (Configured) -Info 26 [16:00:55.000] Files (3) +Info 13 [00:00:42.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/dependency/tsconfig.json 2000 undefined Project: /user/username/projects/myproject/usage/tsconfig.json WatchType: Config file +Info 14 [00:00:43.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/dependency 1 undefined Config: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Wild card directory +Info 15 [00:00:44.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/dependency 1 undefined Config: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Wild card directory +Info 16 [00:00:45.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/decls 1 undefined Project: /user/username/projects/myproject/usage/tsconfig.json WatchType: Failed Lookup Locations +Info 17 [00:00:46.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/decls 1 undefined Project: /user/username/projects/myproject/usage/tsconfig.json WatchType: Failed Lookup Locations +Info 18 [00:00:47.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/dependency/fns.ts 500 undefined WatchType: Closed Script info +Info 19 [00:00:48.000] FileWatcher:: Added:: WatchInfo: /a/lib/lib.d.ts 500 undefined WatchType: Closed Script info +Info 20 [00:00:49.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/usage/node_modules/@types 1 undefined Project: /user/username/projects/myproject/usage/tsconfig.json WatchType: Type roots +Info 21 [00:00:50.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/usage/node_modules/@types 1 undefined Project: /user/username/projects/myproject/usage/tsconfig.json WatchType: Type roots +Info 22 [00:00:51.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/usage/tsconfig.json WatchType: Type roots +Info 23 [00:00:52.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/usage/tsconfig.json WatchType: Type roots +Info 24 [00:00:53.000] Finishing updateGraphWorker: Project: /user/username/projects/myproject/usage/tsconfig.json Version: 1 structureChanged: true structureIsReused:: Not Elapsed:: *ms +Info 25 [00:00:54.000] Project '/user/username/projects/myproject/usage/tsconfig.json' (Configured) +Info 26 [00:00:55.000] Files (3) /a/lib/lib.d.ts /user/username/projects/myproject/dependency/fns.ts /user/username/projects/myproject/usage/usage.ts @@ -115,22 +115,22 @@ Info 26 [16:00:55.000] Files (3) usage.ts Matched by default include pattern '**/*' -Info 27 [16:00:56.000] ----------------------------------------------- -Info 28 [16:00:57.000] event: +Info 27 [00:00:56.000] ----------------------------------------------- +Info 28 [00:00:57.000] event: {"seq":0,"type":"event","event":"projectLoadingFinish","body":{"projectName":"/user/username/projects/myproject/usage/tsconfig.json"}} -Info 29 [16:00:58.000] event: +Info 29 [00:00:58.000] event: {"seq":0,"type":"event","event":"telemetry","body":{"telemetryEventName":"projectInfo","payload":{"projectId":"2b96539513e8810fb8ec0c078e4cb28919c0c28cdb8f7646118c5a6f4ff4cb10","fileStats":{"js":0,"jsSize":0,"jsx":0,"jsxSize":0,"ts":2,"tsSize":266,"tsx":0,"tsxSize":0,"dts":1,"dtsSize":334,"deferred":0,"deferredSize":0},"compilerOptions":{"composite":true},"typeAcquisition":{"enable":false,"include":false,"exclude":false},"extends":false,"files":false,"include":false,"exclude":false,"compileOnSave":false,"configFileName":"tsconfig.json","projectType":"configured","languageServiceEnabled":true,"version":"FakeVersion"}}} -Info 30 [16:00:59.000] event: +Info 30 [00:00:59.000] event: {"seq":0,"type":"event","event":"configFileDiag","body":{"triggerFile":"/user/username/projects/myproject/usage/usage.ts","configFile":"/user/username/projects/myproject/usage/tsconfig.json","diagnostics":[]}} -Info 31 [16:01:00.000] Search path: /user/username/projects/myproject/usage -Info 32 [16:01:01.000] For info: /user/username/projects/myproject/usage/tsconfig.json :: No config files found. -Info 33 [16:01:02.000] Project '/user/username/projects/myproject/usage/tsconfig.json' (Configured) -Info 33 [16:01:03.000] Files (3) - -Info 33 [16:01:04.000] ----------------------------------------------- -Info 33 [16:01:05.000] Open files: -Info 33 [16:01:06.000] FileName: /user/username/projects/myproject/usage/usage.ts ProjectRootPath: undefined -Info 33 [16:01:07.000] Projects: /user/username/projects/myproject/usage/tsconfig.json +Info 31 [00:01:00.000] Search path: /user/username/projects/myproject/usage +Info 32 [00:01:01.000] For info: /user/username/projects/myproject/usage/tsconfig.json :: No config files found. +Info 33 [00:01:02.000] Project '/user/username/projects/myproject/usage/tsconfig.json' (Configured) +Info 33 [00:01:03.000] Files (3) + +Info 33 [00:01:04.000] ----------------------------------------------- +Info 33 [00:01:05.000] Open files: +Info 33 [00:01:06.000] FileName: /user/username/projects/myproject/usage/usage.ts ProjectRootPath: undefined +Info 33 [00:01:07.000] Projects: /user/username/projects/myproject/usage/tsconfig.json After request PolledWatches:: @@ -157,11 +157,11 @@ FsWatchesRecursive:: /user/username/projects/myproject/dependency: {} -Info 33 [16:01:08.000] response: +Info 33 [00:01:08.000] response: { "responseRequired": false } -Info 34 [16:01:09.000] request: +Info 34 [00:01:09.000] request: { "seq": 0, "type": "request", @@ -196,21 +196,21 @@ FsWatchesRecursive:: /user/username/projects/myproject/dependency: {} -Info 35 [16:01:10.000] FileWatcher:: Close:: WatchInfo: /user/username/projects/myproject/dependency/fns.ts 500 undefined WatchType: Closed Script info -Info 36 [16:01:11.000] Search path: /user/username/projects/myproject/dependency -Info 37 [16:01:12.000] For info: /user/username/projects/myproject/dependency/fns.ts :: Config file name: /user/username/projects/myproject/dependency/tsconfig.json -Info 38 [16:01:13.000] Creating configuration project /user/username/projects/myproject/dependency/tsconfig.json -Info 39 [16:01:14.000] event: +Info 35 [00:01:10.000] FileWatcher:: Close:: WatchInfo: /user/username/projects/myproject/dependency/fns.ts 500 undefined WatchType: Closed Script info +Info 36 [00:01:11.000] Search path: /user/username/projects/myproject/dependency +Info 37 [00:01:12.000] For info: /user/username/projects/myproject/dependency/fns.ts :: Config file name: /user/username/projects/myproject/dependency/tsconfig.json +Info 38 [00:01:13.000] Creating configuration project /user/username/projects/myproject/dependency/tsconfig.json +Info 39 [00:01:14.000] event: {"seq":0,"type":"event","event":"projectLoadingStart","body":{"projectName":"/user/username/projects/myproject/dependency/tsconfig.json","reason":"Creating possible configured project for /user/username/projects/myproject/dependency/fns.ts to open"}} -Info 40 [16:01:15.000] Plugins were requested but not running in environment that supports 'require'. Nothing will be loaded -Info 41 [16:01:16.000] Starting updateGraphWorker: Project: /user/username/projects/myproject/dependency/tsconfig.json -Info 42 [16:01:17.000] 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 43 [16:01:18.000] 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 44 [16:01:19.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Type roots -Info 45 [16:01:20.000] 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 46 [16:01:21.000] Finishing updateGraphWorker: Project: /user/username/projects/myproject/dependency/tsconfig.json Version: 1 structureChanged: true structureIsReused:: Not Elapsed:: *ms -Info 47 [16:01:22.000] Project '/user/username/projects/myproject/dependency/tsconfig.json' (Configured) -Info 48 [16:01:23.000] Files (2) +Info 40 [00:01:15.000] Plugins were requested but not running in environment that supports 'require'. Nothing will be loaded +Info 41 [00:01:16.000] Starting updateGraphWorker: Project: /user/username/projects/myproject/dependency/tsconfig.json +Info 42 [00:01:17.000] 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 43 [00:01:18.000] 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 44 [00:01:19.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Type roots +Info 45 [00:01:20.000] 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 46 [00:01:21.000] Finishing updateGraphWorker: Project: /user/username/projects/myproject/dependency/tsconfig.json Version: 1 structureChanged: true structureIsReused:: Not Elapsed:: *ms +Info 47 [00:01:22.000] Project '/user/username/projects/myproject/dependency/tsconfig.json' (Configured) +Info 48 [00:01:23.000] Files (2) /a/lib/lib.d.ts /user/username/projects/myproject/dependency/fns.ts @@ -220,28 +220,28 @@ Info 48 [16:01:23.000] Files (2) fns.ts Matched by default include pattern '**/*' -Info 49 [16:01:24.000] ----------------------------------------------- -Info 50 [16:01:25.000] event: +Info 49 [00:01:24.000] ----------------------------------------------- +Info 50 [00:01:25.000] event: {"seq":0,"type":"event","event":"projectLoadingFinish","body":{"projectName":"/user/username/projects/myproject/dependency/tsconfig.json"}} -Info 51 [16:01:26.000] event: +Info 51 [00:01:26.000] event: {"seq":0,"type":"event","event":"telemetry","body":{"telemetryEventName":"projectInfo","payload":{"projectId":"80216eb4c9c6d41fcd26650a22a2df8f2cac81cda661de72dc723e6251203d22","fileStats":{"js":0,"jsSize":0,"jsx":0,"jsxSize":0,"ts":1,"tsSize":184,"tsx":0,"tsxSize":0,"dts":1,"dtsSize":334,"deferred":0,"deferredSize":0},"compilerOptions":{"composite":true,"declarationDir":""},"typeAcquisition":{"enable":false,"include":false,"exclude":false},"extends":false,"files":false,"include":false,"exclude":false,"compileOnSave":false,"configFileName":"tsconfig.json","projectType":"configured","languageServiceEnabled":true,"version":"FakeVersion"}}} -Info 52 [16:01:27.000] event: +Info 52 [00:01:27.000] event: {"seq":0,"type":"event","event":"configFileDiag","body":{"triggerFile":"/user/username/projects/myproject/dependency/fns.ts","configFile":"/user/username/projects/myproject/dependency/tsconfig.json","diagnostics":[]}} -Info 53 [16:01:28.000] Search path: /user/username/projects/myproject/dependency -Info 54 [16:01:29.000] For info: /user/username/projects/myproject/dependency/tsconfig.json :: No config files found. -Info 55 [16:01:30.000] Project '/user/username/projects/myproject/usage/tsconfig.json' (Configured) -Info 55 [16:01:31.000] Files (3) - -Info 55 [16:01:32.000] ----------------------------------------------- -Info 55 [16:01:33.000] Project '/user/username/projects/myproject/dependency/tsconfig.json' (Configured) -Info 55 [16:01:34.000] Files (2) - -Info 55 [16:01:35.000] ----------------------------------------------- -Info 55 [16:01:36.000] Open files: -Info 55 [16:01:37.000] FileName: /user/username/projects/myproject/usage/usage.ts ProjectRootPath: undefined -Info 55 [16:01:38.000] Projects: /user/username/projects/myproject/usage/tsconfig.json -Info 55 [16:01:39.000] FileName: /user/username/projects/myproject/dependency/fns.ts ProjectRootPath: undefined -Info 55 [16:01:40.000] Projects: /user/username/projects/myproject/usage/tsconfig.json,/user/username/projects/myproject/dependency/tsconfig.json +Info 53 [00:01:28.000] Search path: /user/username/projects/myproject/dependency +Info 54 [00:01:29.000] For info: /user/username/projects/myproject/dependency/tsconfig.json :: No config files found. +Info 55 [00:01:30.000] Project '/user/username/projects/myproject/usage/tsconfig.json' (Configured) +Info 55 [00:01:31.000] Files (3) + +Info 55 [00:01:32.000] ----------------------------------------------- +Info 55 [00:01:33.000] Project '/user/username/projects/myproject/dependency/tsconfig.json' (Configured) +Info 55 [00:01:34.000] Files (2) + +Info 55 [00:01:35.000] ----------------------------------------------- +Info 55 [00:01:36.000] Open files: +Info 55 [00:01:37.000] FileName: /user/username/projects/myproject/usage/usage.ts ProjectRootPath: undefined +Info 55 [00:01:38.000] Projects: /user/username/projects/myproject/usage/tsconfig.json +Info 55 [00:01:39.000] FileName: /user/username/projects/myproject/dependency/fns.ts ProjectRootPath: undefined +Info 55 [00:01:40.000] Projects: /user/username/projects/myproject/usage/tsconfig.json,/user/username/projects/myproject/dependency/tsconfig.json After request PolledWatches:: @@ -268,11 +268,11 @@ FsWatchesRecursive:: /user/username/projects/myproject/dependency: {} -Info 55 [16:01:41.000] response: +Info 55 [00:01:41.000] response: { "responseRequired": false } -Info 56 [16:01:42.000] request: +Info 56 [00:01:42.000] request: { "command": "geterrForProject", "arguments": { @@ -334,7 +334,7 @@ FsWatchesRecursive:: /user/username/projects/myproject/dependency: {} -Info 57 [16:01:43.000] response: +Info 57 [00:01:43.000] response: { "responseRequired": false } @@ -364,7 +364,7 @@ FsWatchesRecursive:: /user/username/projects/myproject/dependency: {} -Info 58 [16:01:44.000] event: +Info 58 [00:01:44.000] event: {"seq":0,"type":"event","event":"syntaxDiag","body":{"file":"/user/username/projects/myproject/usage/usage.ts","diagnostics":[]}} After checking timeout queue length (1) and running @@ -418,7 +418,7 @@ FsWatchesRecursive:: /user/username/projects/myproject/dependency: {} -Info 59 [16:01:45.000] event: +Info 59 [00:01:45.000] event: {"seq":0,"type":"event","event":"semanticDiag","body":{"file":"/user/username/projects/myproject/usage/usage.ts","diagnostics":[{"start":{"line":4,"offset":5},"end":{"line":4,"offset":10},"text":"Module '\"../decls/fns\"' has no exported member 'fnErr'.","code":2305,"category":"error"}]}} Before running immediate callbacks and checking length (1) @@ -472,7 +472,7 @@ FsWatchesRecursive:: /user/username/projects/myproject/dependency: {} -Info 60 [16:01:46.000] event: +Info 60 [00:01:46.000] event: {"seq":0,"type":"event","event":"suggestionDiag","body":{"file":"/user/username/projects/myproject/usage/usage.ts","diagnostics":[]}} Before running immediate callbacks and checking length (1) @@ -526,7 +526,7 @@ FsWatchesRecursive:: /user/username/projects/myproject/dependency: {} -Info 61 [16:01:47.000] event: +Info 61 [00:01:47.000] event: {"seq":0,"type":"event","event":"syntaxDiag","body":{"file":"/user/username/projects/myproject/dependency/fns.ts","diagnostics":[]}} After checking timeout queue length (1) and running @@ -580,7 +580,7 @@ FsWatchesRecursive:: /user/username/projects/myproject/dependency: {} -Info 62 [16:01:48.000] event: +Info 62 [00:01:48.000] event: {"seq":0,"type":"event","event":"semanticDiag","body":{"file":"/user/username/projects/myproject/dependency/fns.ts","diagnostics":[]}} Before running immediate callbacks and checking length (1) @@ -634,9 +634,9 @@ FsWatchesRecursive:: /user/username/projects/myproject/dependency: {} -Info 63 [16:01:49.000] event: +Info 63 [00:01:49.000] event: {"seq":0,"type":"event","event":"suggestionDiag","body":{"file":"/user/username/projects/myproject/dependency/fns.ts","diagnostics":[]}} -Info 64 [16:01:50.000] event: +Info 64 [00:01:50.000] event: {"seq":0,"type":"event","event":"requestCompleted","body":{"request_seq":1}} Before running immediate callbacks and checking length (1) @@ -664,7 +664,7 @@ FsWatchesRecursive:: /user/username/projects/myproject/dependency: {} -Info 65 [16:01:51.000] request: +Info 65 [00:01:51.000] request: { "command": "geterrForProject", "arguments": { @@ -726,7 +726,7 @@ FsWatchesRecursive:: /user/username/projects/myproject/dependency: {} -Info 66 [16:01:52.000] response: +Info 66 [00:01:52.000] response: { "responseRequired": false } @@ -756,7 +756,7 @@ FsWatchesRecursive:: /user/username/projects/myproject/dependency: {} -Info 67 [16:01:53.000] event: +Info 67 [00:01:53.000] event: {"seq":0,"type":"event","event":"syntaxDiag","body":{"file":"/user/username/projects/myproject/dependency/fns.ts","diagnostics":[]}} After checking timeout queue length (1) and running @@ -810,7 +810,7 @@ FsWatchesRecursive:: /user/username/projects/myproject/dependency: {} -Info 68 [16:01:54.000] event: +Info 68 [00:01:54.000] event: {"seq":0,"type":"event","event":"semanticDiag","body":{"file":"/user/username/projects/myproject/dependency/fns.ts","diagnostics":[{"start":{"line":6,"offset":12},"end":{"line":6,"offset":13},"text":"Type 'number' is not assignable to type 'string'.","code":2322,"category":"error"}]}} Before running immediate callbacks and checking length (1) @@ -864,9 +864,9 @@ FsWatchesRecursive:: /user/username/projects/myproject/dependency: {} -Info 69 [16:01:55.000] event: +Info 69 [00:01:55.000] event: {"seq":0,"type":"event","event":"suggestionDiag","body":{"file":"/user/username/projects/myproject/dependency/fns.ts","diagnostics":[]}} -Info 70 [16:01:56.000] event: +Info 70 [00:01:56.000] event: {"seq":0,"type":"event","event":"requestCompleted","body":{"request_seq":2}} Before running immediate callbacks and checking length (1) diff --git a/tests/baselines/reference/tsserver/projectReferenceErrors/with-non-module-when-dependency-project-is-not-open-gerErr-with-sync-commands.js b/tests/baselines/reference/tsserver/projectReferenceErrors/with-non-module-when-dependency-project-is-not-open-gerErr-with-sync-commands.js index 1e6ea99fc8bc0..78ff8e41af908 100644 --- a/tests/baselines/reference/tsserver/projectReferenceErrors/with-non-module-when-dependency-project-is-not-open-gerErr-with-sync-commands.js +++ b/tests/baselines/reference/tsserver/projectReferenceErrors/with-non-module-when-dependency-project-is-not-open-gerErr-with-sync-commands.js @@ -1,5 +1,5 @@ -Info 0 [16:00:29.000] Provided types map file "/a/lib/typesMap.json" doesn't exist -Info 1 [16:00:30.000] request: +Info 0 [00:00:29.000] Provided types map file "/a/lib/typesMap.json" doesn't exist +Info 1 [00:00:30.000] request: { "seq": 0, "type": "request", @@ -49,11 +49,11 @@ FsWatches:: FsWatchesRecursive:: -Info 2 [16:00:31.000] Search path: /user/username/projects/myproject/usage -Info 3 [16:00:32.000] For info: /user/username/projects/myproject/usage/usage.ts :: Config file name: /user/username/projects/myproject/usage/tsconfig.json -Info 4 [16:00:33.000] Creating configuration project /user/username/projects/myproject/usage/tsconfig.json -Info 5 [16:00:34.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/usage/tsconfig.json 2000 undefined Project: /user/username/projects/myproject/usage/tsconfig.json WatchType: Config file -Info 6 [16:00:35.000] Config: /user/username/projects/myproject/usage/tsconfig.json : { +Info 2 [00:00:31.000] Search path: /user/username/projects/myproject/usage +Info 3 [00:00:32.000] For info: /user/username/projects/myproject/usage/usage.ts :: Config file name: /user/username/projects/myproject/usage/tsconfig.json +Info 4 [00:00:33.000] Creating configuration project /user/username/projects/myproject/usage/tsconfig.json +Info 5 [00:00:34.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/usage/tsconfig.json 2000 undefined Project: /user/username/projects/myproject/usage/tsconfig.json WatchType: Config file +Info 6 [00:00:35.000] Config: /user/username/projects/myproject/usage/tsconfig.json : { "rootNames": [ "/user/username/projects/myproject/usage/usage.ts" ], @@ -69,11 +69,11 @@ Info 6 [16:00:35.000] Config: /user/username/projects/myproject/usage/tsconfi } ] } -Info 7 [16:00:36.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/usage 1 undefined Config: /user/username/projects/myproject/usage/tsconfig.json WatchType: Wild card directory -Info 8 [16:00:37.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/usage 1 undefined Config: /user/username/projects/myproject/usage/tsconfig.json WatchType: Wild card directory -Info 9 [16:00:38.000] Plugins were requested but not running in environment that supports 'require'. Nothing will be loaded -Info 10 [16:00:39.000] Starting updateGraphWorker: Project: /user/username/projects/myproject/usage/tsconfig.json -Info 11 [16:00:40.000] Config: /user/username/projects/myproject/dependency/tsconfig.json : { +Info 7 [00:00:36.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/usage 1 undefined Config: /user/username/projects/myproject/usage/tsconfig.json WatchType: Wild card directory +Info 8 [00:00:37.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/usage 1 undefined Config: /user/username/projects/myproject/usage/tsconfig.json WatchType: Wild card directory +Info 9 [00:00:38.000] Plugins were requested but not running in environment that supports 'require'. Nothing will be loaded +Info 10 [00:00:39.000] Starting updateGraphWorker: Project: /user/username/projects/myproject/usage/tsconfig.json +Info 11 [00:00:40.000] Config: /user/username/projects/myproject/dependency/tsconfig.json : { "rootNames": [ "/user/username/projects/myproject/dependency/fns.ts" ], @@ -83,18 +83,18 @@ Info 11 [16:00:40.000] Config: /user/username/projects/myproject/dependency/ts "configFilePath": "/user/username/projects/myproject/dependency/tsconfig.json" } } -Info 12 [16:00:41.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/dependency/tsconfig.json 2000 undefined Project: /user/username/projects/myproject/usage/tsconfig.json WatchType: Config file -Info 13 [16:00:42.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/dependency 1 undefined Config: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Wild card directory -Info 14 [16:00:43.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/dependency 1 undefined Config: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Wild card directory -Info 15 [16:00:44.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/dependency/fns.ts 500 undefined WatchType: Closed Script info -Info 16 [16:00:45.000] FileWatcher:: Added:: WatchInfo: /a/lib/lib.d.ts 500 undefined WatchType: Closed Script info -Info 17 [16:00:46.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/usage/node_modules/@types 1 undefined Project: /user/username/projects/myproject/usage/tsconfig.json WatchType: Type roots -Info 18 [16:00:47.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/usage/node_modules/@types 1 undefined Project: /user/username/projects/myproject/usage/tsconfig.json WatchType: Type roots -Info 19 [16:00:48.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/usage/tsconfig.json WatchType: Type roots -Info 20 [16:00:49.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/usage/tsconfig.json WatchType: Type roots -Info 21 [16:00:50.000] Finishing updateGraphWorker: Project: /user/username/projects/myproject/usage/tsconfig.json Version: 1 structureChanged: true structureIsReused:: Not Elapsed:: *ms -Info 22 [16:00:51.000] Project '/user/username/projects/myproject/usage/tsconfig.json' (Configured) -Info 23 [16:00:52.000] Files (3) +Info 12 [00:00:41.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/dependency/tsconfig.json 2000 undefined Project: /user/username/projects/myproject/usage/tsconfig.json WatchType: Config file +Info 13 [00:00:42.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/dependency 1 undefined Config: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Wild card directory +Info 14 [00:00:43.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/dependency 1 undefined Config: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Wild card directory +Info 15 [00:00:44.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/dependency/fns.ts 500 undefined WatchType: Closed Script info +Info 16 [00:00:45.000] FileWatcher:: Added:: WatchInfo: /a/lib/lib.d.ts 500 undefined WatchType: Closed Script info +Info 17 [00:00:46.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/usage/node_modules/@types 1 undefined Project: /user/username/projects/myproject/usage/tsconfig.json WatchType: Type roots +Info 18 [00:00:47.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/usage/node_modules/@types 1 undefined Project: /user/username/projects/myproject/usage/tsconfig.json WatchType: Type roots +Info 19 [00:00:48.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/usage/tsconfig.json WatchType: Type roots +Info 20 [00:00:49.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/usage/tsconfig.json WatchType: Type roots +Info 21 [00:00:50.000] Finishing updateGraphWorker: Project: /user/username/projects/myproject/usage/tsconfig.json Version: 1 structureChanged: true structureIsReused:: Not Elapsed:: *ms +Info 22 [00:00:51.000] Project '/user/username/projects/myproject/usage/tsconfig.json' (Configured) +Info 23 [00:00:52.000] Files (3) /a/lib/lib.d.ts /user/username/projects/myproject/dependency/fns.ts /user/username/projects/myproject/usage/usage.ts @@ -107,16 +107,16 @@ Info 23 [16:00:52.000] Files (3) usage.ts Matched by default include pattern '**/*' -Info 24 [16:00:53.000] ----------------------------------------------- -Info 25 [16:00:54.000] Search path: /user/username/projects/myproject/usage -Info 26 [16:00:55.000] For info: /user/username/projects/myproject/usage/tsconfig.json :: No config files found. -Info 27 [16:00:56.000] Project '/user/username/projects/myproject/usage/tsconfig.json' (Configured) -Info 27 [16:00:57.000] Files (3) +Info 24 [00:00:53.000] ----------------------------------------------- +Info 25 [00:00:54.000] Search path: /user/username/projects/myproject/usage +Info 26 [00:00:55.000] For info: /user/username/projects/myproject/usage/tsconfig.json :: No config files found. +Info 27 [00:00:56.000] Project '/user/username/projects/myproject/usage/tsconfig.json' (Configured) +Info 27 [00:00:57.000] Files (3) -Info 27 [16:00:58.000] ----------------------------------------------- -Info 27 [16:00:59.000] Open files: -Info 27 [16:01:00.000] FileName: /user/username/projects/myproject/usage/usage.ts ProjectRootPath: undefined -Info 27 [16:01:01.000] Projects: /user/username/projects/myproject/usage/tsconfig.json +Info 27 [00:00:58.000] ----------------------------------------------- +Info 27 [00:00:59.000] Open files: +Info 27 [00:01:00.000] FileName: /user/username/projects/myproject/usage/usage.ts ProjectRootPath: undefined +Info 27 [00:01:01.000] Projects: /user/username/projects/myproject/usage/tsconfig.json After request PolledWatches:: @@ -141,11 +141,11 @@ FsWatchesRecursive:: /user/username/projects/myproject/dependency: {} -Info 27 [16:01:02.000] response: +Info 27 [00:01:02.000] response: { "responseRequired": false } -Info 28 [16:01:03.000] request: +Info 28 [00:01:03.000] request: { "command": "syntacticDiagnosticsSync", "arguments": { @@ -202,12 +202,12 @@ FsWatchesRecursive:: /user/username/projects/myproject/dependency: {} -Info 29 [16:01:04.000] response: +Info 29 [00:01:04.000] response: { "response": [], "responseRequired": true } -Info 30 [16:01:05.000] request: +Info 30 [00:01:05.000] request: { "command": "semanticDiagnosticsSync", "arguments": { @@ -264,7 +264,7 @@ FsWatchesRecursive:: /user/username/projects/myproject/dependency: {} -Info 31 [16:01:06.000] response: +Info 31 [00:01:06.000] response: { "response": [ { @@ -283,7 +283,7 @@ Info 31 [16:01:06.000] response: ], "responseRequired": true } -Info 32 [16:01:07.000] request: +Info 32 [00:01:07.000] request: { "command": "suggestionDiagnosticsSync", "arguments": { @@ -340,12 +340,12 @@ FsWatchesRecursive:: /user/username/projects/myproject/dependency: {} -Info 33 [16:01:08.000] response: +Info 33 [00:01:08.000] response: { "response": [], "responseRequired": true } -Info 34 [16:01:09.000] request: +Info 34 [00:01:09.000] request: { "command": "syntacticDiagnosticsSync", "arguments": { @@ -402,12 +402,12 @@ FsWatchesRecursive:: /user/username/projects/myproject/dependency: {} -Info 35 [16:01:10.000] response: +Info 35 [00:01:10.000] response: { "response": [], "responseRequired": true } -Info 36 [16:01:11.000] request: +Info 36 [00:01:11.000] request: { "command": "semanticDiagnosticsSync", "arguments": { @@ -464,12 +464,12 @@ FsWatchesRecursive:: /user/username/projects/myproject/dependency: {} -Info 37 [16:01:12.000] response: +Info 37 [00:01:12.000] response: { "response": [], "responseRequired": true } -Info 38 [16:01:13.000] request: +Info 38 [00:01:13.000] request: { "command": "suggestionDiagnosticsSync", "arguments": { @@ -526,12 +526,12 @@ FsWatchesRecursive:: /user/username/projects/myproject/dependency: {} -Info 39 [16:01:14.000] response: +Info 39 [00:01:14.000] response: { "response": [], "responseRequired": true } -Info 40 [16:01:15.000] request: +Info 40 [00:01:15.000] request: { "command": "syntacticDiagnosticsSync", "arguments": { @@ -589,12 +589,12 @@ FsWatchesRecursive:: /user/username/projects/myproject/dependency: {} -Info 41 [16:01:16.000] response: +Info 41 [00:01:16.000] response: { "response": [], "responseRequired": true } -Info 42 [16:01:17.000] request: +Info 42 [00:01:17.000] request: { "command": "semanticDiagnosticsSync", "arguments": { @@ -652,7 +652,7 @@ FsWatchesRecursive:: /user/username/projects/myproject/dependency: {} -Info 43 [16:01:18.000] response: +Info 43 [00:01:18.000] response: { "response": [ { @@ -671,7 +671,7 @@ Info 43 [16:01:18.000] response: ], "responseRequired": true } -Info 44 [16:01:19.000] request: +Info 44 [00:01:19.000] request: { "command": "suggestionDiagnosticsSync", "arguments": { @@ -729,12 +729,12 @@ FsWatchesRecursive:: /user/username/projects/myproject/dependency: {} -Info 45 [16:01:20.000] response: +Info 45 [00:01:20.000] response: { "response": [], "responseRequired": true } -Info 46 [16:01:21.000] request: +Info 46 [00:01:21.000] request: { "command": "syntacticDiagnosticsSync", "arguments": { @@ -792,12 +792,12 @@ FsWatchesRecursive:: /user/username/projects/myproject/dependency: {} -Info 47 [16:01:22.000] response: +Info 47 [00:01:22.000] response: { "response": [], "responseRequired": true } -Info 48 [16:01:23.000] request: +Info 48 [00:01:23.000] request: { "command": "semanticDiagnosticsSync", "arguments": { @@ -855,12 +855,12 @@ FsWatchesRecursive:: /user/username/projects/myproject/dependency: {} -Info 49 [16:01:24.000] response: +Info 49 [00:01:24.000] response: { "response": [], "responseRequired": true } -Info 50 [16:01:25.000] request: +Info 50 [00:01:25.000] request: { "command": "suggestionDiagnosticsSync", "arguments": { @@ -918,7 +918,7 @@ FsWatchesRecursive:: /user/username/projects/myproject/dependency: {} -Info 51 [16:01:26.000] response: +Info 51 [00:01:26.000] response: { "response": [], "responseRequired": true diff --git a/tests/baselines/reference/tsserver/projectReferenceErrors/with-non-module-when-dependency-project-is-not-open-getErr.js b/tests/baselines/reference/tsserver/projectReferenceErrors/with-non-module-when-dependency-project-is-not-open-getErr.js index 57bf719692551..298dd2c8e2fdd 100644 --- a/tests/baselines/reference/tsserver/projectReferenceErrors/with-non-module-when-dependency-project-is-not-open-getErr.js +++ b/tests/baselines/reference/tsserver/projectReferenceErrors/with-non-module-when-dependency-project-is-not-open-getErr.js @@ -1,5 +1,5 @@ -Info 0 [16:00:29.000] Provided types map file "/a/lib/typesMap.json" doesn't exist -Info 1 [16:00:30.000] request: +Info 0 [00:00:29.000] Provided types map file "/a/lib/typesMap.json" doesn't exist +Info 1 [00:00:30.000] request: { "seq": 0, "type": "request", @@ -49,13 +49,13 @@ FsWatches:: FsWatchesRecursive:: -Info 2 [16:00:31.000] Search path: /user/username/projects/myproject/usage -Info 3 [16:00:32.000] For info: /user/username/projects/myproject/usage/usage.ts :: Config file name: /user/username/projects/myproject/usage/tsconfig.json -Info 4 [16:00:33.000] Creating configuration project /user/username/projects/myproject/usage/tsconfig.json -Info 5 [16:00:34.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/usage/tsconfig.json 2000 undefined Project: /user/username/projects/myproject/usage/tsconfig.json WatchType: Config file -Info 6 [16:00:35.000] event: +Info 2 [00:00:31.000] Search path: /user/username/projects/myproject/usage +Info 3 [00:00:32.000] For info: /user/username/projects/myproject/usage/usage.ts :: Config file name: /user/username/projects/myproject/usage/tsconfig.json +Info 4 [00:00:33.000] Creating configuration project /user/username/projects/myproject/usage/tsconfig.json +Info 5 [00:00:34.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/usage/tsconfig.json 2000 undefined Project: /user/username/projects/myproject/usage/tsconfig.json WatchType: Config file +Info 6 [00:00:35.000] event: {"seq":0,"type":"event","event":"projectLoadingStart","body":{"projectName":"/user/username/projects/myproject/usage/tsconfig.json","reason":"Creating possible configured project for /user/username/projects/myproject/usage/usage.ts to open"}} -Info 7 [16:00:36.000] Config: /user/username/projects/myproject/usage/tsconfig.json : { +Info 7 [00:00:36.000] Config: /user/username/projects/myproject/usage/tsconfig.json : { "rootNames": [ "/user/username/projects/myproject/usage/usage.ts" ], @@ -71,11 +71,11 @@ Info 7 [16:00:36.000] Config: /user/username/projects/myproject/usage/tsconfi } ] } -Info 8 [16:00:37.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/usage 1 undefined Config: /user/username/projects/myproject/usage/tsconfig.json WatchType: Wild card directory -Info 9 [16:00:38.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/usage 1 undefined Config: /user/username/projects/myproject/usage/tsconfig.json WatchType: Wild card directory -Info 10 [16:00:39.000] Plugins were requested but not running in environment that supports 'require'. Nothing will be loaded -Info 11 [16:00:40.000] Starting updateGraphWorker: Project: /user/username/projects/myproject/usage/tsconfig.json -Info 12 [16:00:41.000] Config: /user/username/projects/myproject/dependency/tsconfig.json : { +Info 8 [00:00:37.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/usage 1 undefined Config: /user/username/projects/myproject/usage/tsconfig.json WatchType: Wild card directory +Info 9 [00:00:38.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/usage 1 undefined Config: /user/username/projects/myproject/usage/tsconfig.json WatchType: Wild card directory +Info 10 [00:00:39.000] Plugins were requested but not running in environment that supports 'require'. Nothing will be loaded +Info 11 [00:00:40.000] Starting updateGraphWorker: Project: /user/username/projects/myproject/usage/tsconfig.json +Info 12 [00:00:41.000] Config: /user/username/projects/myproject/dependency/tsconfig.json : { "rootNames": [ "/user/username/projects/myproject/dependency/fns.ts" ], @@ -85,18 +85,18 @@ Info 12 [16:00:41.000] Config: /user/username/projects/myproject/dependency/ts "configFilePath": "/user/username/projects/myproject/dependency/tsconfig.json" } } -Info 13 [16:00:42.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/dependency/tsconfig.json 2000 undefined Project: /user/username/projects/myproject/usage/tsconfig.json WatchType: Config file -Info 14 [16:00:43.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/dependency 1 undefined Config: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Wild card directory -Info 15 [16:00:44.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/dependency 1 undefined Config: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Wild card directory -Info 16 [16:00:45.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/dependency/fns.ts 500 undefined WatchType: Closed Script info -Info 17 [16:00:46.000] FileWatcher:: Added:: WatchInfo: /a/lib/lib.d.ts 500 undefined WatchType: Closed Script info -Info 18 [16:00:47.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/usage/node_modules/@types 1 undefined Project: /user/username/projects/myproject/usage/tsconfig.json WatchType: Type roots -Info 19 [16:00:48.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/usage/node_modules/@types 1 undefined Project: /user/username/projects/myproject/usage/tsconfig.json WatchType: Type roots -Info 20 [16:00:49.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/usage/tsconfig.json WatchType: Type roots -Info 21 [16:00:50.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/usage/tsconfig.json WatchType: Type roots -Info 22 [16:00:51.000] Finishing updateGraphWorker: Project: /user/username/projects/myproject/usage/tsconfig.json Version: 1 structureChanged: true structureIsReused:: Not Elapsed:: *ms -Info 23 [16:00:52.000] Project '/user/username/projects/myproject/usage/tsconfig.json' (Configured) -Info 24 [16:00:53.000] Files (3) +Info 13 [00:00:42.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/dependency/tsconfig.json 2000 undefined Project: /user/username/projects/myproject/usage/tsconfig.json WatchType: Config file +Info 14 [00:00:43.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/dependency 1 undefined Config: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Wild card directory +Info 15 [00:00:44.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/dependency 1 undefined Config: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Wild card directory +Info 16 [00:00:45.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/dependency/fns.ts 500 undefined WatchType: Closed Script info +Info 17 [00:00:46.000] FileWatcher:: Added:: WatchInfo: /a/lib/lib.d.ts 500 undefined WatchType: Closed Script info +Info 18 [00:00:47.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/usage/node_modules/@types 1 undefined Project: /user/username/projects/myproject/usage/tsconfig.json WatchType: Type roots +Info 19 [00:00:48.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/usage/node_modules/@types 1 undefined Project: /user/username/projects/myproject/usage/tsconfig.json WatchType: Type roots +Info 20 [00:00:49.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/usage/tsconfig.json WatchType: Type roots +Info 21 [00:00:50.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/usage/tsconfig.json WatchType: Type roots +Info 22 [00:00:51.000] Finishing updateGraphWorker: Project: /user/username/projects/myproject/usage/tsconfig.json Version: 1 structureChanged: true structureIsReused:: Not Elapsed:: *ms +Info 23 [00:00:52.000] Project '/user/username/projects/myproject/usage/tsconfig.json' (Configured) +Info 24 [00:00:53.000] Files (3) /a/lib/lib.d.ts /user/username/projects/myproject/dependency/fns.ts /user/username/projects/myproject/usage/usage.ts @@ -109,22 +109,22 @@ Info 24 [16:00:53.000] Files (3) usage.ts Matched by default include pattern '**/*' -Info 25 [16:00:54.000] ----------------------------------------------- -Info 26 [16:00:55.000] event: +Info 25 [00:00:54.000] ----------------------------------------------- +Info 26 [00:00:55.000] event: {"seq":0,"type":"event","event":"projectLoadingFinish","body":{"projectName":"/user/username/projects/myproject/usage/tsconfig.json"}} -Info 27 [16:00:56.000] event: +Info 27 [00:00:56.000] event: {"seq":0,"type":"event","event":"telemetry","body":{"telemetryEventName":"projectInfo","payload":{"projectId":"2b96539513e8810fb8ec0c078e4cb28919c0c28cdb8f7646118c5a6f4ff4cb10","fileStats":{"js":0,"jsSize":0,"jsx":0,"jsxSize":0,"ts":2,"tsSize":179,"tsx":0,"tsxSize":0,"dts":1,"dtsSize":334,"deferred":0,"deferredSize":0},"compilerOptions":{"composite":true,"outFile":""},"typeAcquisition":{"enable":false,"include":false,"exclude":false},"extends":false,"files":false,"include":false,"exclude":false,"compileOnSave":false,"configFileName":"tsconfig.json","projectType":"configured","languageServiceEnabled":true,"version":"FakeVersion"}}} -Info 28 [16:00:57.000] event: +Info 28 [00:00:57.000] event: {"seq":0,"type":"event","event":"configFileDiag","body":{"triggerFile":"/user/username/projects/myproject/usage/usage.ts","configFile":"/user/username/projects/myproject/usage/tsconfig.json","diagnostics":[]}} -Info 29 [16:00:58.000] Search path: /user/username/projects/myproject/usage -Info 30 [16:00:59.000] For info: /user/username/projects/myproject/usage/tsconfig.json :: No config files found. -Info 31 [16:01:00.000] Project '/user/username/projects/myproject/usage/tsconfig.json' (Configured) -Info 31 [16:01:01.000] Files (3) - -Info 31 [16:01:02.000] ----------------------------------------------- -Info 31 [16:01:03.000] Open files: -Info 31 [16:01:04.000] FileName: /user/username/projects/myproject/usage/usage.ts ProjectRootPath: undefined -Info 31 [16:01:05.000] Projects: /user/username/projects/myproject/usage/tsconfig.json +Info 29 [00:00:58.000] Search path: /user/username/projects/myproject/usage +Info 30 [00:00:59.000] For info: /user/username/projects/myproject/usage/tsconfig.json :: No config files found. +Info 31 [00:01:00.000] Project '/user/username/projects/myproject/usage/tsconfig.json' (Configured) +Info 31 [00:01:01.000] Files (3) + +Info 31 [00:01:02.000] ----------------------------------------------- +Info 31 [00:01:03.000] Open files: +Info 31 [00:01:04.000] FileName: /user/username/projects/myproject/usage/usage.ts ProjectRootPath: undefined +Info 31 [00:01:05.000] Projects: /user/username/projects/myproject/usage/tsconfig.json After request PolledWatches:: @@ -149,11 +149,11 @@ FsWatchesRecursive:: /user/username/projects/myproject/dependency: {} -Info 31 [16:01:06.000] response: +Info 31 [00:01:06.000] response: { "responseRequired": false } -Info 32 [16:01:07.000] request: +Info 32 [00:01:07.000] request: { "command": "geterr", "arguments": { @@ -213,7 +213,7 @@ FsWatchesRecursive:: /user/username/projects/myproject/dependency: {} -Info 33 [16:01:08.000] response: +Info 33 [00:01:08.000] response: { "responseRequired": false } @@ -241,7 +241,7 @@ FsWatchesRecursive:: /user/username/projects/myproject/dependency: {} -Info 34 [16:01:09.000] event: +Info 34 [00:01:09.000] event: {"seq":0,"type":"event","event":"syntaxDiag","body":{"file":"/user/username/projects/myproject/usage/usage.ts","diagnostics":[]}} After checking timeout queue length (1) and running @@ -291,7 +291,7 @@ FsWatchesRecursive:: /user/username/projects/myproject/dependency: {} -Info 35 [16:01:10.000] event: +Info 35 [00:01:10.000] event: {"seq":0,"type":"event","event":"semanticDiag","body":{"file":"/user/username/projects/myproject/usage/usage.ts","diagnostics":[{"start":{"line":3,"offset":1},"end":{"line":3,"offset":6},"text":"Cannot find name 'fnErr'.","code":2304,"category":"error"}]}} Before running immediate callbacks and checking length (1) @@ -341,9 +341,9 @@ FsWatchesRecursive:: /user/username/projects/myproject/dependency: {} -Info 36 [16:01:11.000] event: +Info 36 [00:01:11.000] event: {"seq":0,"type":"event","event":"suggestionDiag","body":{"file":"/user/username/projects/myproject/usage/usage.ts","diagnostics":[]}} -Info 37 [16:01:12.000] event: +Info 37 [00:01:12.000] event: {"seq":0,"type":"event","event":"requestCompleted","body":{"request_seq":1}} Before running immediate callbacks and checking length (1) diff --git a/tests/baselines/reference/tsserver/projectReferenceErrors/with-non-module-when-dependency-project-is-not-open-geterrForProject.js b/tests/baselines/reference/tsserver/projectReferenceErrors/with-non-module-when-dependency-project-is-not-open-geterrForProject.js index ef77cd59aa050..a32280173f065 100644 --- a/tests/baselines/reference/tsserver/projectReferenceErrors/with-non-module-when-dependency-project-is-not-open-geterrForProject.js +++ b/tests/baselines/reference/tsserver/projectReferenceErrors/with-non-module-when-dependency-project-is-not-open-geterrForProject.js @@ -1,5 +1,5 @@ -Info 0 [16:00:29.000] Provided types map file "/a/lib/typesMap.json" doesn't exist -Info 1 [16:00:30.000] request: +Info 0 [00:00:29.000] Provided types map file "/a/lib/typesMap.json" doesn't exist +Info 1 [00:00:30.000] request: { "seq": 0, "type": "request", @@ -49,13 +49,13 @@ FsWatches:: FsWatchesRecursive:: -Info 2 [16:00:31.000] Search path: /user/username/projects/myproject/usage -Info 3 [16:00:32.000] For info: /user/username/projects/myproject/usage/usage.ts :: Config file name: /user/username/projects/myproject/usage/tsconfig.json -Info 4 [16:00:33.000] Creating configuration project /user/username/projects/myproject/usage/tsconfig.json -Info 5 [16:00:34.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/usage/tsconfig.json 2000 undefined Project: /user/username/projects/myproject/usage/tsconfig.json WatchType: Config file -Info 6 [16:00:35.000] event: +Info 2 [00:00:31.000] Search path: /user/username/projects/myproject/usage +Info 3 [00:00:32.000] For info: /user/username/projects/myproject/usage/usage.ts :: Config file name: /user/username/projects/myproject/usage/tsconfig.json +Info 4 [00:00:33.000] Creating configuration project /user/username/projects/myproject/usage/tsconfig.json +Info 5 [00:00:34.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/usage/tsconfig.json 2000 undefined Project: /user/username/projects/myproject/usage/tsconfig.json WatchType: Config file +Info 6 [00:00:35.000] event: {"seq":0,"type":"event","event":"projectLoadingStart","body":{"projectName":"/user/username/projects/myproject/usage/tsconfig.json","reason":"Creating possible configured project for /user/username/projects/myproject/usage/usage.ts to open"}} -Info 7 [16:00:36.000] Config: /user/username/projects/myproject/usage/tsconfig.json : { +Info 7 [00:00:36.000] Config: /user/username/projects/myproject/usage/tsconfig.json : { "rootNames": [ "/user/username/projects/myproject/usage/usage.ts" ], @@ -71,11 +71,11 @@ Info 7 [16:00:36.000] Config: /user/username/projects/myproject/usage/tsconfi } ] } -Info 8 [16:00:37.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/usage 1 undefined Config: /user/username/projects/myproject/usage/tsconfig.json WatchType: Wild card directory -Info 9 [16:00:38.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/usage 1 undefined Config: /user/username/projects/myproject/usage/tsconfig.json WatchType: Wild card directory -Info 10 [16:00:39.000] Plugins were requested but not running in environment that supports 'require'. Nothing will be loaded -Info 11 [16:00:40.000] Starting updateGraphWorker: Project: /user/username/projects/myproject/usage/tsconfig.json -Info 12 [16:00:41.000] Config: /user/username/projects/myproject/dependency/tsconfig.json : { +Info 8 [00:00:37.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/usage 1 undefined Config: /user/username/projects/myproject/usage/tsconfig.json WatchType: Wild card directory +Info 9 [00:00:38.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/usage 1 undefined Config: /user/username/projects/myproject/usage/tsconfig.json WatchType: Wild card directory +Info 10 [00:00:39.000] Plugins were requested but not running in environment that supports 'require'. Nothing will be loaded +Info 11 [00:00:40.000] Starting updateGraphWorker: Project: /user/username/projects/myproject/usage/tsconfig.json +Info 12 [00:00:41.000] Config: /user/username/projects/myproject/dependency/tsconfig.json : { "rootNames": [ "/user/username/projects/myproject/dependency/fns.ts" ], @@ -85,18 +85,18 @@ Info 12 [16:00:41.000] Config: /user/username/projects/myproject/dependency/ts "configFilePath": "/user/username/projects/myproject/dependency/tsconfig.json" } } -Info 13 [16:00:42.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/dependency/tsconfig.json 2000 undefined Project: /user/username/projects/myproject/usage/tsconfig.json WatchType: Config file -Info 14 [16:00:43.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/dependency 1 undefined Config: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Wild card directory -Info 15 [16:00:44.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/dependency 1 undefined Config: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Wild card directory -Info 16 [16:00:45.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/dependency/fns.ts 500 undefined WatchType: Closed Script info -Info 17 [16:00:46.000] FileWatcher:: Added:: WatchInfo: /a/lib/lib.d.ts 500 undefined WatchType: Closed Script info -Info 18 [16:00:47.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/usage/node_modules/@types 1 undefined Project: /user/username/projects/myproject/usage/tsconfig.json WatchType: Type roots -Info 19 [16:00:48.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/usage/node_modules/@types 1 undefined Project: /user/username/projects/myproject/usage/tsconfig.json WatchType: Type roots -Info 20 [16:00:49.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/usage/tsconfig.json WatchType: Type roots -Info 21 [16:00:50.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/usage/tsconfig.json WatchType: Type roots -Info 22 [16:00:51.000] Finishing updateGraphWorker: Project: /user/username/projects/myproject/usage/tsconfig.json Version: 1 structureChanged: true structureIsReused:: Not Elapsed:: *ms -Info 23 [16:00:52.000] Project '/user/username/projects/myproject/usage/tsconfig.json' (Configured) -Info 24 [16:00:53.000] Files (3) +Info 13 [00:00:42.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/dependency/tsconfig.json 2000 undefined Project: /user/username/projects/myproject/usage/tsconfig.json WatchType: Config file +Info 14 [00:00:43.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/dependency 1 undefined Config: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Wild card directory +Info 15 [00:00:44.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/dependency 1 undefined Config: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Wild card directory +Info 16 [00:00:45.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/dependency/fns.ts 500 undefined WatchType: Closed Script info +Info 17 [00:00:46.000] FileWatcher:: Added:: WatchInfo: /a/lib/lib.d.ts 500 undefined WatchType: Closed Script info +Info 18 [00:00:47.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/usage/node_modules/@types 1 undefined Project: /user/username/projects/myproject/usage/tsconfig.json WatchType: Type roots +Info 19 [00:00:48.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/usage/node_modules/@types 1 undefined Project: /user/username/projects/myproject/usage/tsconfig.json WatchType: Type roots +Info 20 [00:00:49.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/usage/tsconfig.json WatchType: Type roots +Info 21 [00:00:50.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/usage/tsconfig.json WatchType: Type roots +Info 22 [00:00:51.000] Finishing updateGraphWorker: Project: /user/username/projects/myproject/usage/tsconfig.json Version: 1 structureChanged: true structureIsReused:: Not Elapsed:: *ms +Info 23 [00:00:52.000] Project '/user/username/projects/myproject/usage/tsconfig.json' (Configured) +Info 24 [00:00:53.000] Files (3) /a/lib/lib.d.ts /user/username/projects/myproject/dependency/fns.ts /user/username/projects/myproject/usage/usage.ts @@ -109,22 +109,22 @@ Info 24 [16:00:53.000] Files (3) usage.ts Matched by default include pattern '**/*' -Info 25 [16:00:54.000] ----------------------------------------------- -Info 26 [16:00:55.000] event: +Info 25 [00:00:54.000] ----------------------------------------------- +Info 26 [00:00:55.000] event: {"seq":0,"type":"event","event":"projectLoadingFinish","body":{"projectName":"/user/username/projects/myproject/usage/tsconfig.json"}} -Info 27 [16:00:56.000] event: +Info 27 [00:00:56.000] event: {"seq":0,"type":"event","event":"telemetry","body":{"telemetryEventName":"projectInfo","payload":{"projectId":"2b96539513e8810fb8ec0c078e4cb28919c0c28cdb8f7646118c5a6f4ff4cb10","fileStats":{"js":0,"jsSize":0,"jsx":0,"jsxSize":0,"ts":2,"tsSize":179,"tsx":0,"tsxSize":0,"dts":1,"dtsSize":334,"deferred":0,"deferredSize":0},"compilerOptions":{"composite":true,"outFile":""},"typeAcquisition":{"enable":false,"include":false,"exclude":false},"extends":false,"files":false,"include":false,"exclude":false,"compileOnSave":false,"configFileName":"tsconfig.json","projectType":"configured","languageServiceEnabled":true,"version":"FakeVersion"}}} -Info 28 [16:00:57.000] event: +Info 28 [00:00:57.000] event: {"seq":0,"type":"event","event":"configFileDiag","body":{"triggerFile":"/user/username/projects/myproject/usage/usage.ts","configFile":"/user/username/projects/myproject/usage/tsconfig.json","diagnostics":[]}} -Info 29 [16:00:58.000] Search path: /user/username/projects/myproject/usage -Info 30 [16:00:59.000] For info: /user/username/projects/myproject/usage/tsconfig.json :: No config files found. -Info 31 [16:01:00.000] Project '/user/username/projects/myproject/usage/tsconfig.json' (Configured) -Info 31 [16:01:01.000] Files (3) - -Info 31 [16:01:02.000] ----------------------------------------------- -Info 31 [16:01:03.000] Open files: -Info 31 [16:01:04.000] FileName: /user/username/projects/myproject/usage/usage.ts ProjectRootPath: undefined -Info 31 [16:01:05.000] Projects: /user/username/projects/myproject/usage/tsconfig.json +Info 29 [00:00:58.000] Search path: /user/username/projects/myproject/usage +Info 30 [00:00:59.000] For info: /user/username/projects/myproject/usage/tsconfig.json :: No config files found. +Info 31 [00:01:00.000] Project '/user/username/projects/myproject/usage/tsconfig.json' (Configured) +Info 31 [00:01:01.000] Files (3) + +Info 31 [00:01:02.000] ----------------------------------------------- +Info 31 [00:01:03.000] Open files: +Info 31 [00:01:04.000] FileName: /user/username/projects/myproject/usage/usage.ts ProjectRootPath: undefined +Info 31 [00:01:05.000] Projects: /user/username/projects/myproject/usage/tsconfig.json After request PolledWatches:: @@ -149,11 +149,11 @@ FsWatchesRecursive:: /user/username/projects/myproject/dependency: {} -Info 31 [16:01:06.000] response: +Info 31 [00:01:06.000] response: { "responseRequired": false } -Info 32 [16:01:07.000] request: +Info 32 [00:01:07.000] request: { "command": "geterrForProject", "arguments": { @@ -211,7 +211,7 @@ FsWatchesRecursive:: /user/username/projects/myproject/dependency: {} -Info 33 [16:01:08.000] response: +Info 33 [00:01:08.000] response: { "responseRequired": false } @@ -239,7 +239,7 @@ FsWatchesRecursive:: /user/username/projects/myproject/dependency: {} -Info 34 [16:01:09.000] event: +Info 34 [00:01:09.000] event: {"seq":0,"type":"event","event":"syntaxDiag","body":{"file":"/user/username/projects/myproject/usage/usage.ts","diagnostics":[]}} After checking timeout queue length (1) and running @@ -289,7 +289,7 @@ FsWatchesRecursive:: /user/username/projects/myproject/dependency: {} -Info 35 [16:01:10.000] event: +Info 35 [00:01:10.000] event: {"seq":0,"type":"event","event":"semanticDiag","body":{"file":"/user/username/projects/myproject/usage/usage.ts","diagnostics":[{"start":{"line":3,"offset":1},"end":{"line":3,"offset":6},"text":"Cannot find name 'fnErr'.","code":2304,"category":"error"}]}} Before running immediate callbacks and checking length (1) @@ -339,7 +339,7 @@ FsWatchesRecursive:: /user/username/projects/myproject/dependency: {} -Info 36 [16:01:11.000] event: +Info 36 [00:01:11.000] event: {"seq":0,"type":"event","event":"suggestionDiag","body":{"file":"/user/username/projects/myproject/usage/usage.ts","diagnostics":[]}} Before running immediate callbacks and checking length (1) @@ -389,7 +389,7 @@ FsWatchesRecursive:: /user/username/projects/myproject/dependency: {} -Info 37 [16:01:12.000] event: +Info 37 [00:01:12.000] event: {"seq":0,"type":"event","event":"syntaxDiag","body":{"file":"/user/username/projects/myproject/dependency/fns.ts","diagnostics":[]}} After checking timeout queue length (1) and running @@ -439,7 +439,7 @@ FsWatchesRecursive:: /user/username/projects/myproject/dependency: {} -Info 38 [16:01:13.000] event: +Info 38 [00:01:13.000] event: {"seq":0,"type":"event","event":"semanticDiag","body":{"file":"/user/username/projects/myproject/dependency/fns.ts","diagnostics":[]}} Before running immediate callbacks and checking length (1) @@ -489,9 +489,9 @@ FsWatchesRecursive:: /user/username/projects/myproject/dependency: {} -Info 39 [16:01:14.000] event: +Info 39 [00:01:14.000] event: {"seq":0,"type":"event","event":"suggestionDiag","body":{"file":"/user/username/projects/myproject/dependency/fns.ts","diagnostics":[]}} -Info 40 [16:01:15.000] event: +Info 40 [00:01:15.000] event: {"seq":0,"type":"event","event":"requestCompleted","body":{"request_seq":1}} Before running immediate callbacks and checking length (1) @@ -517,7 +517,7 @@ FsWatchesRecursive:: /user/username/projects/myproject/dependency: {} -Info 41 [16:01:16.000] request: +Info 41 [00:01:16.000] request: { "command": "geterrForProject", "arguments": { @@ -575,7 +575,7 @@ FsWatchesRecursive:: /user/username/projects/myproject/dependency: {} -Info 42 [16:01:17.000] response: +Info 42 [00:01:17.000] response: { "responseRequired": false } @@ -603,7 +603,7 @@ FsWatchesRecursive:: /user/username/projects/myproject/dependency: {} -Info 43 [16:01:18.000] event: +Info 43 [00:01:18.000] event: {"seq":0,"type":"event","event":"syntaxDiag","body":{"file":"/user/username/projects/myproject/dependency/fns.ts","diagnostics":[]}} After checking timeout queue length (1) and running @@ -653,7 +653,7 @@ FsWatchesRecursive:: /user/username/projects/myproject/dependency: {} -Info 44 [16:01:19.000] event: +Info 44 [00:01:19.000] event: {"seq":0,"type":"event","event":"semanticDiag","body":{"file":"/user/username/projects/myproject/dependency/fns.ts","diagnostics":[]}} Before running immediate callbacks and checking length (1) @@ -703,7 +703,7 @@ FsWatchesRecursive:: /user/username/projects/myproject/dependency: {} -Info 45 [16:01:20.000] event: +Info 45 [00:01:20.000] event: {"seq":0,"type":"event","event":"suggestionDiag","body":{"file":"/user/username/projects/myproject/dependency/fns.ts","diagnostics":[]}} Before running immediate callbacks and checking length (1) @@ -753,7 +753,7 @@ FsWatchesRecursive:: /user/username/projects/myproject/dependency: {} -Info 46 [16:01:21.000] event: +Info 46 [00:01:21.000] event: {"seq":0,"type":"event","event":"syntaxDiag","body":{"file":"/user/username/projects/myproject/usage/usage.ts","diagnostics":[]}} After checking timeout queue length (1) and running @@ -803,7 +803,7 @@ FsWatchesRecursive:: /user/username/projects/myproject/dependency: {} -Info 47 [16:01:22.000] event: +Info 47 [00:01:22.000] event: {"seq":0,"type":"event","event":"semanticDiag","body":{"file":"/user/username/projects/myproject/usage/usage.ts","diagnostics":[{"start":{"line":3,"offset":1},"end":{"line":3,"offset":6},"text":"Cannot find name 'fnErr'.","code":2304,"category":"error"}]}} Before running immediate callbacks and checking length (1) @@ -853,9 +853,9 @@ FsWatchesRecursive:: /user/username/projects/myproject/dependency: {} -Info 48 [16:01:23.000] event: +Info 48 [00:01:23.000] event: {"seq":0,"type":"event","event":"suggestionDiag","body":{"file":"/user/username/projects/myproject/usage/usage.ts","diagnostics":[]}} -Info 49 [16:01:24.000] event: +Info 49 [00:01:24.000] event: {"seq":0,"type":"event","event":"requestCompleted","body":{"request_seq":2}} Before running immediate callbacks and checking length (1) 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 5a61a0cb696ce..c7ce77f28bdbe 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 @@ -1,5 +1,5 @@ -Info 0 [16:00:29.000] Provided types map file "/a/lib/typesMap.json" doesn't exist -Info 1 [16:00:30.000] request: +Info 0 [00:00:29.000] Provided types map file "/a/lib/typesMap.json" doesn't exist +Info 1 [00:00:30.000] request: { "seq": 0, "type": "request", @@ -49,11 +49,11 @@ FsWatches:: FsWatchesRecursive:: -Info 2 [16:00:31.000] Search path: /user/username/projects/myproject/usage -Info 3 [16:00:32.000] For info: /user/username/projects/myproject/usage/usage.ts :: Config file name: /user/username/projects/myproject/usage/tsconfig.json -Info 4 [16:00:33.000] Creating configuration project /user/username/projects/myproject/usage/tsconfig.json -Info 5 [16:00:34.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/usage/tsconfig.json 2000 undefined Project: /user/username/projects/myproject/usage/tsconfig.json WatchType: Config file -Info 6 [16:00:35.000] Config: /user/username/projects/myproject/usage/tsconfig.json : { +Info 2 [00:00:31.000] Search path: /user/username/projects/myproject/usage +Info 3 [00:00:32.000] For info: /user/username/projects/myproject/usage/usage.ts :: Config file name: /user/username/projects/myproject/usage/tsconfig.json +Info 4 [00:00:33.000] Creating configuration project /user/username/projects/myproject/usage/tsconfig.json +Info 5 [00:00:34.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/usage/tsconfig.json 2000 undefined Project: /user/username/projects/myproject/usage/tsconfig.json WatchType: Config file +Info 6 [00:00:35.000] Config: /user/username/projects/myproject/usage/tsconfig.json : { "rootNames": [ "/user/username/projects/myproject/usage/usage.ts" ], @@ -69,11 +69,11 @@ Info 6 [16:00:35.000] Config: /user/username/projects/myproject/usage/tsconfi } ] } -Info 7 [16:00:36.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/usage 1 undefined Config: /user/username/projects/myproject/usage/tsconfig.json WatchType: Wild card directory -Info 8 [16:00:37.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/usage 1 undefined Config: /user/username/projects/myproject/usage/tsconfig.json WatchType: Wild card directory -Info 9 [16:00:38.000] Plugins were requested but not running in environment that supports 'require'. Nothing will be loaded -Info 10 [16:00:39.000] Starting updateGraphWorker: Project: /user/username/projects/myproject/usage/tsconfig.json -Info 11 [16:00:40.000] Config: /user/username/projects/myproject/dependency/tsconfig.json : { +Info 7 [00:00:36.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/usage 1 undefined Config: /user/username/projects/myproject/usage/tsconfig.json WatchType: Wild card directory +Info 8 [00:00:37.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/usage 1 undefined Config: /user/username/projects/myproject/usage/tsconfig.json WatchType: Wild card directory +Info 9 [00:00:38.000] Plugins were requested but not running in environment that supports 'require'. Nothing will be loaded +Info 10 [00:00:39.000] Starting updateGraphWorker: Project: /user/username/projects/myproject/usage/tsconfig.json +Info 11 [00:00:40.000] Config: /user/username/projects/myproject/dependency/tsconfig.json : { "rootNames": [ "/user/username/projects/myproject/dependency/fns.ts" ], @@ -83,18 +83,18 @@ Info 11 [16:00:40.000] Config: /user/username/projects/myproject/dependency/ts "configFilePath": "/user/username/projects/myproject/dependency/tsconfig.json" } } -Info 12 [16:00:41.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/dependency/tsconfig.json 2000 undefined Project: /user/username/projects/myproject/usage/tsconfig.json WatchType: Config file -Info 13 [16:00:42.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/dependency 1 undefined Config: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Wild card directory -Info 14 [16:00:43.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/dependency 1 undefined Config: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Wild card directory -Info 15 [16:00:44.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/dependency/fns.ts 500 undefined WatchType: Closed Script info -Info 16 [16:00:45.000] FileWatcher:: Added:: WatchInfo: /a/lib/lib.d.ts 500 undefined WatchType: Closed Script info -Info 17 [16:00:46.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/usage/node_modules/@types 1 undefined Project: /user/username/projects/myproject/usage/tsconfig.json WatchType: Type roots -Info 18 [16:00:47.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/usage/node_modules/@types 1 undefined Project: /user/username/projects/myproject/usage/tsconfig.json WatchType: Type roots -Info 19 [16:00:48.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/usage/tsconfig.json WatchType: Type roots -Info 20 [16:00:49.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/usage/tsconfig.json WatchType: Type roots -Info 21 [16:00:50.000] Finishing updateGraphWorker: Project: /user/username/projects/myproject/usage/tsconfig.json Version: 1 structureChanged: true structureIsReused:: Not Elapsed:: *ms -Info 22 [16:00:51.000] Project '/user/username/projects/myproject/usage/tsconfig.json' (Configured) -Info 23 [16:00:52.000] Files (3) +Info 12 [00:00:41.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/dependency/tsconfig.json 2000 undefined Project: /user/username/projects/myproject/usage/tsconfig.json WatchType: Config file +Info 13 [00:00:42.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/dependency 1 undefined Config: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Wild card directory +Info 14 [00:00:43.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/dependency 1 undefined Config: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Wild card directory +Info 15 [00:00:44.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/dependency/fns.ts 500 undefined WatchType: Closed Script info +Info 16 [00:00:45.000] FileWatcher:: Added:: WatchInfo: /a/lib/lib.d.ts 500 undefined WatchType: Closed Script info +Info 17 [00:00:46.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/usage/node_modules/@types 1 undefined Project: /user/username/projects/myproject/usage/tsconfig.json WatchType: Type roots +Info 18 [00:00:47.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/usage/node_modules/@types 1 undefined Project: /user/username/projects/myproject/usage/tsconfig.json WatchType: Type roots +Info 19 [00:00:48.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/usage/tsconfig.json WatchType: Type roots +Info 20 [00:00:49.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/usage/tsconfig.json WatchType: Type roots +Info 21 [00:00:50.000] Finishing updateGraphWorker: Project: /user/username/projects/myproject/usage/tsconfig.json Version: 1 structureChanged: true structureIsReused:: Not Elapsed:: *ms +Info 22 [00:00:51.000] Project '/user/username/projects/myproject/usage/tsconfig.json' (Configured) +Info 23 [00:00:52.000] Files (3) /a/lib/lib.d.ts /user/username/projects/myproject/dependency/fns.ts /user/username/projects/myproject/usage/usage.ts @@ -107,16 +107,16 @@ Info 23 [16:00:52.000] Files (3) usage.ts Matched by default include pattern '**/*' -Info 24 [16:00:53.000] ----------------------------------------------- -Info 25 [16:00:54.000] Search path: /user/username/projects/myproject/usage -Info 26 [16:00:55.000] For info: /user/username/projects/myproject/usage/tsconfig.json :: No config files found. -Info 27 [16:00:56.000] Project '/user/username/projects/myproject/usage/tsconfig.json' (Configured) -Info 27 [16:00:57.000] Files (3) +Info 24 [00:00:53.000] ----------------------------------------------- +Info 25 [00:00:54.000] Search path: /user/username/projects/myproject/usage +Info 26 [00:00:55.000] For info: /user/username/projects/myproject/usage/tsconfig.json :: No config files found. +Info 27 [00:00:56.000] Project '/user/username/projects/myproject/usage/tsconfig.json' (Configured) +Info 27 [00:00:57.000] Files (3) -Info 27 [16:00:58.000] ----------------------------------------------- -Info 27 [16:00:59.000] Open files: -Info 27 [16:01:00.000] FileName: /user/username/projects/myproject/usage/usage.ts ProjectRootPath: undefined -Info 27 [16:01:01.000] Projects: /user/username/projects/myproject/usage/tsconfig.json +Info 27 [00:00:58.000] ----------------------------------------------- +Info 27 [00:00:59.000] Open files: +Info 27 [00:01:00.000] FileName: /user/username/projects/myproject/usage/usage.ts ProjectRootPath: undefined +Info 27 [00:01:01.000] Projects: /user/username/projects/myproject/usage/tsconfig.json After request PolledWatches:: @@ -141,11 +141,11 @@ FsWatchesRecursive:: /user/username/projects/myproject/dependency: {} -Info 27 [16:01:02.000] response: +Info 27 [00:01:02.000] response: { "responseRequired": false } -Info 28 [16:01:03.000] request: +Info 28 [00:01:03.000] request: { "seq": 0, "type": "request", @@ -178,19 +178,19 @@ FsWatchesRecursive:: /user/username/projects/myproject/dependency: {} -Info 29 [16:01:04.000] FileWatcher:: Close:: WatchInfo: /user/username/projects/myproject/dependency/fns.ts 500 undefined WatchType: Closed Script info -Info 30 [16:01:05.000] Search path: /user/username/projects/myproject/dependency -Info 31 [16:01:06.000] For info: /user/username/projects/myproject/dependency/fns.ts :: Config file name: /user/username/projects/myproject/dependency/tsconfig.json -Info 32 [16:01:07.000] Creating configuration project /user/username/projects/myproject/dependency/tsconfig.json -Info 33 [16:01:08.000] Plugins were requested but not running in environment that supports 'require'. Nothing will be loaded -Info 34 [16:01:09.000] Starting updateGraphWorker: Project: /user/username/projects/myproject/dependency/tsconfig.json -Info 35 [16:01:10.000] 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 36 [16:01:11.000] 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 37 [16:01:12.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Type roots -Info 38 [16:01:13.000] 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 39 [16:01:14.000] Finishing updateGraphWorker: Project: /user/username/projects/myproject/dependency/tsconfig.json Version: 1 structureChanged: true structureIsReused:: Not Elapsed:: *ms -Info 40 [16:01:15.000] Project '/user/username/projects/myproject/dependency/tsconfig.json' (Configured) -Info 41 [16:01:16.000] Files (2) +Info 29 [00:01:04.000] FileWatcher:: Close:: WatchInfo: /user/username/projects/myproject/dependency/fns.ts 500 undefined WatchType: Closed Script info +Info 30 [00:01:05.000] Search path: /user/username/projects/myproject/dependency +Info 31 [00:01:06.000] For info: /user/username/projects/myproject/dependency/fns.ts :: Config file name: /user/username/projects/myproject/dependency/tsconfig.json +Info 32 [00:01:07.000] Creating configuration project /user/username/projects/myproject/dependency/tsconfig.json +Info 33 [00:01:08.000] Plugins were requested but not running in environment that supports 'require'. Nothing will be loaded +Info 34 [00:01:09.000] Starting updateGraphWorker: Project: /user/username/projects/myproject/dependency/tsconfig.json +Info 35 [00:01:10.000] 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 36 [00:01:11.000] 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 37 [00:01:12.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Type roots +Info 38 [00:01:13.000] 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 39 [00:01:14.000] Finishing updateGraphWorker: Project: /user/username/projects/myproject/dependency/tsconfig.json Version: 1 structureChanged: true structureIsReused:: Not Elapsed:: *ms +Info 40 [00:01:15.000] Project '/user/username/projects/myproject/dependency/tsconfig.json' (Configured) +Info 41 [00:01:16.000] Files (2) /a/lib/lib.d.ts /user/username/projects/myproject/dependency/fns.ts @@ -200,22 +200,22 @@ Info 41 [16:01:16.000] Files (2) fns.ts Matched by default include pattern '**/*' -Info 42 [16:01:17.000] ----------------------------------------------- -Info 43 [16:01:18.000] Search path: /user/username/projects/myproject/dependency -Info 44 [16:01:19.000] For info: /user/username/projects/myproject/dependency/tsconfig.json :: No config files found. -Info 45 [16:01:20.000] Project '/user/username/projects/myproject/usage/tsconfig.json' (Configured) -Info 45 [16:01:21.000] Files (3) - -Info 45 [16:01:22.000] ----------------------------------------------- -Info 45 [16:01:23.000] Project '/user/username/projects/myproject/dependency/tsconfig.json' (Configured) -Info 45 [16:01:24.000] Files (2) - -Info 45 [16:01:25.000] ----------------------------------------------- -Info 45 [16:01:26.000] Open files: -Info 45 [16:01:27.000] FileName: /user/username/projects/myproject/usage/usage.ts ProjectRootPath: undefined -Info 45 [16:01:28.000] Projects: /user/username/projects/myproject/usage/tsconfig.json -Info 45 [16:01:29.000] FileName: /user/username/projects/myproject/dependency/fns.ts ProjectRootPath: undefined -Info 45 [16:01:30.000] Projects: /user/username/projects/myproject/usage/tsconfig.json,/user/username/projects/myproject/dependency/tsconfig.json +Info 42 [00:01:17.000] ----------------------------------------------- +Info 43 [00:01:18.000] Search path: /user/username/projects/myproject/dependency +Info 44 [00:01:19.000] For info: /user/username/projects/myproject/dependency/tsconfig.json :: No config files found. +Info 45 [00:01:20.000] Project '/user/username/projects/myproject/usage/tsconfig.json' (Configured) +Info 45 [00:01:21.000] Files (3) + +Info 45 [00:01:22.000] ----------------------------------------------- +Info 45 [00:01:23.000] Project '/user/username/projects/myproject/dependency/tsconfig.json' (Configured) +Info 45 [00:01:24.000] Files (2) + +Info 45 [00:01:25.000] ----------------------------------------------- +Info 45 [00:01:26.000] Open files: +Info 45 [00:01:27.000] FileName: /user/username/projects/myproject/usage/usage.ts ProjectRootPath: undefined +Info 45 [00:01:28.000] Projects: /user/username/projects/myproject/usage/tsconfig.json +Info 45 [00:01:29.000] FileName: /user/username/projects/myproject/dependency/fns.ts ProjectRootPath: undefined +Info 45 [00:01:30.000] Projects: /user/username/projects/myproject/usage/tsconfig.json,/user/username/projects/myproject/dependency/tsconfig.json After request PolledWatches:: @@ -240,11 +240,11 @@ FsWatchesRecursive:: /user/username/projects/myproject/dependency: {} -Info 45 [16:01:31.000] response: +Info 45 [00:01:31.000] response: { "responseRequired": false } -Info 46 [16:01:32.000] request: +Info 46 [00:01:32.000] request: { "command": "syntacticDiagnosticsSync", "arguments": { @@ -301,12 +301,12 @@ FsWatchesRecursive:: /user/username/projects/myproject/dependency: {} -Info 47 [16:01:33.000] response: +Info 47 [00:01:33.000] response: { "response": [], "responseRequired": true } -Info 48 [16:01:34.000] request: +Info 48 [00:01:34.000] request: { "command": "semanticDiagnosticsSync", "arguments": { @@ -363,7 +363,7 @@ FsWatchesRecursive:: /user/username/projects/myproject/dependency: {} -Info 49 [16:01:35.000] response: +Info 49 [00:01:35.000] response: { "response": [ { @@ -382,7 +382,7 @@ Info 49 [16:01:35.000] response: ], "responseRequired": true } -Info 50 [16:01:36.000] request: +Info 50 [00:01:36.000] request: { "command": "suggestionDiagnosticsSync", "arguments": { @@ -439,12 +439,12 @@ FsWatchesRecursive:: /user/username/projects/myproject/dependency: {} -Info 51 [16:01:37.000] response: +Info 51 [00:01:37.000] response: { "response": [], "responseRequired": true } -Info 52 [16:01:38.000] request: +Info 52 [00:01:38.000] request: { "command": "syntacticDiagnosticsSync", "arguments": { @@ -501,12 +501,12 @@ FsWatchesRecursive:: /user/username/projects/myproject/dependency: {} -Info 53 [16:01:39.000] response: +Info 53 [00:01:39.000] response: { "response": [], "responseRequired": true } -Info 54 [16:01:40.000] request: +Info 54 [00:01:40.000] request: { "command": "semanticDiagnosticsSync", "arguments": { @@ -563,7 +563,7 @@ FsWatchesRecursive:: /user/username/projects/myproject/dependency: {} -Info 55 [16:01:41.000] response: +Info 55 [00:01:41.000] response: { "response": [ { @@ -582,7 +582,7 @@ Info 55 [16:01:41.000] response: ], "responseRequired": true } -Info 56 [16:01:42.000] request: +Info 56 [00:01:42.000] request: { "command": "suggestionDiagnosticsSync", "arguments": { @@ -639,12 +639,12 @@ FsWatchesRecursive:: /user/username/projects/myproject/dependency: {} -Info 57 [16:01:43.000] response: +Info 57 [00:01:43.000] response: { "response": [], "responseRequired": true } -Info 58 [16:01:44.000] request: +Info 58 [00:01:44.000] request: { "command": "syntacticDiagnosticsSync", "arguments": { @@ -702,12 +702,12 @@ FsWatchesRecursive:: /user/username/projects/myproject/dependency: {} -Info 59 [16:01:45.000] response: +Info 59 [00:01:45.000] response: { "response": [], "responseRequired": true } -Info 60 [16:01:46.000] request: +Info 60 [00:01:46.000] request: { "command": "semanticDiagnosticsSync", "arguments": { @@ -765,7 +765,7 @@ FsWatchesRecursive:: /user/username/projects/myproject/dependency: {} -Info 61 [16:01:47.000] response: +Info 61 [00:01:47.000] response: { "response": [ { @@ -784,7 +784,7 @@ Info 61 [16:01:47.000] response: ], "responseRequired": true } -Info 62 [16:01:48.000] request: +Info 62 [00:01:48.000] request: { "command": "suggestionDiagnosticsSync", "arguments": { @@ -842,12 +842,12 @@ FsWatchesRecursive:: /user/username/projects/myproject/dependency: {} -Info 63 [16:01:49.000] response: +Info 63 [00:01:49.000] response: { "response": [], "responseRequired": true } -Info 64 [16:01:50.000] request: +Info 64 [00:01:50.000] request: { "command": "syntacticDiagnosticsSync", "arguments": { @@ -905,12 +905,12 @@ FsWatchesRecursive:: /user/username/projects/myproject/dependency: {} -Info 65 [16:01:51.000] response: +Info 65 [00:01:51.000] response: { "response": [], "responseRequired": true } -Info 66 [16:01:52.000] request: +Info 66 [00:01:52.000] request: { "command": "semanticDiagnosticsSync", "arguments": { @@ -968,12 +968,12 @@ FsWatchesRecursive:: /user/username/projects/myproject/dependency: {} -Info 67 [16:01:53.000] response: +Info 67 [00:01:53.000] response: { "response": [], "responseRequired": true } -Info 68 [16:01:54.000] request: +Info 68 [00:01:54.000] request: { "command": "suggestionDiagnosticsSync", "arguments": { @@ -1031,12 +1031,12 @@ FsWatchesRecursive:: /user/username/projects/myproject/dependency: {} -Info 69 [16:01:55.000] response: +Info 69 [00:01:55.000] response: { "response": [], "responseRequired": true } -Info 70 [16:01:56.000] request: +Info 70 [00:01:56.000] request: { "command": "syntacticDiagnosticsSync", "arguments": { @@ -1094,12 +1094,12 @@ FsWatchesRecursive:: /user/username/projects/myproject/dependency: {} -Info 71 [16:01:57.000] response: +Info 71 [00:01:57.000] response: { "response": [], "responseRequired": true } -Info 72 [16:01:58.000] request: +Info 72 [00:01:58.000] request: { "command": "semanticDiagnosticsSync", "arguments": { @@ -1157,7 +1157,7 @@ FsWatchesRecursive:: /user/username/projects/myproject/dependency: {} -Info 73 [16:01:59.000] response: +Info 73 [00:01:59.000] response: { "response": [ { @@ -1176,7 +1176,7 @@ Info 73 [16:01:59.000] response: ], "responseRequired": true } -Info 74 [16:02:00.000] request: +Info 74 [00:02:00.000] request: { "command": "suggestionDiagnosticsSync", "arguments": { @@ -1234,7 +1234,7 @@ FsWatchesRecursive:: /user/username/projects/myproject/dependency: {} -Info 75 [16:02:01.000] response: +Info 75 [00:02:01.000] response: { "response": [], "responseRequired": true 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 051eafa8e1cd0..2de5791dddd61 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 @@ -1,5 +1,5 @@ -Info 0 [16:00:29.000] Provided types map file "/a/lib/typesMap.json" doesn't exist -Info 1 [16:00:30.000] request: +Info 0 [00:00:29.000] Provided types map file "/a/lib/typesMap.json" doesn't exist +Info 1 [00:00:30.000] request: { "seq": 0, "type": "request", @@ -49,13 +49,13 @@ FsWatches:: FsWatchesRecursive:: -Info 2 [16:00:31.000] Search path: /user/username/projects/myproject/usage -Info 3 [16:00:32.000] For info: /user/username/projects/myproject/usage/usage.ts :: Config file name: /user/username/projects/myproject/usage/tsconfig.json -Info 4 [16:00:33.000] Creating configuration project /user/username/projects/myproject/usage/tsconfig.json -Info 5 [16:00:34.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/usage/tsconfig.json 2000 undefined Project: /user/username/projects/myproject/usage/tsconfig.json WatchType: Config file -Info 6 [16:00:35.000] event: +Info 2 [00:00:31.000] Search path: /user/username/projects/myproject/usage +Info 3 [00:00:32.000] For info: /user/username/projects/myproject/usage/usage.ts :: Config file name: /user/username/projects/myproject/usage/tsconfig.json +Info 4 [00:00:33.000] Creating configuration project /user/username/projects/myproject/usage/tsconfig.json +Info 5 [00:00:34.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/usage/tsconfig.json 2000 undefined Project: /user/username/projects/myproject/usage/tsconfig.json WatchType: Config file +Info 6 [00:00:35.000] event: {"seq":0,"type":"event","event":"projectLoadingStart","body":{"projectName":"/user/username/projects/myproject/usage/tsconfig.json","reason":"Creating possible configured project for /user/username/projects/myproject/usage/usage.ts to open"}} -Info 7 [16:00:36.000] Config: /user/username/projects/myproject/usage/tsconfig.json : { +Info 7 [00:00:36.000] Config: /user/username/projects/myproject/usage/tsconfig.json : { "rootNames": [ "/user/username/projects/myproject/usage/usage.ts" ], @@ -71,11 +71,11 @@ Info 7 [16:00:36.000] Config: /user/username/projects/myproject/usage/tsconfi } ] } -Info 8 [16:00:37.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/usage 1 undefined Config: /user/username/projects/myproject/usage/tsconfig.json WatchType: Wild card directory -Info 9 [16:00:38.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/usage 1 undefined Config: /user/username/projects/myproject/usage/tsconfig.json WatchType: Wild card directory -Info 10 [16:00:39.000] Plugins were requested but not running in environment that supports 'require'. Nothing will be loaded -Info 11 [16:00:40.000] Starting updateGraphWorker: Project: /user/username/projects/myproject/usage/tsconfig.json -Info 12 [16:00:41.000] Config: /user/username/projects/myproject/dependency/tsconfig.json : { +Info 8 [00:00:37.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/usage 1 undefined Config: /user/username/projects/myproject/usage/tsconfig.json WatchType: Wild card directory +Info 9 [00:00:38.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/usage 1 undefined Config: /user/username/projects/myproject/usage/tsconfig.json WatchType: Wild card directory +Info 10 [00:00:39.000] Plugins were requested but not running in environment that supports 'require'. Nothing will be loaded +Info 11 [00:00:40.000] Starting updateGraphWorker: Project: /user/username/projects/myproject/usage/tsconfig.json +Info 12 [00:00:41.000] Config: /user/username/projects/myproject/dependency/tsconfig.json : { "rootNames": [ "/user/username/projects/myproject/dependency/fns.ts" ], @@ -85,18 +85,18 @@ Info 12 [16:00:41.000] Config: /user/username/projects/myproject/dependency/ts "configFilePath": "/user/username/projects/myproject/dependency/tsconfig.json" } } -Info 13 [16:00:42.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/dependency/tsconfig.json 2000 undefined Project: /user/username/projects/myproject/usage/tsconfig.json WatchType: Config file -Info 14 [16:00:43.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/dependency 1 undefined Config: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Wild card directory -Info 15 [16:00:44.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/dependency 1 undefined Config: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Wild card directory -Info 16 [16:00:45.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/dependency/fns.ts 500 undefined WatchType: Closed Script info -Info 17 [16:00:46.000] FileWatcher:: Added:: WatchInfo: /a/lib/lib.d.ts 500 undefined WatchType: Closed Script info -Info 18 [16:00:47.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/usage/node_modules/@types 1 undefined Project: /user/username/projects/myproject/usage/tsconfig.json WatchType: Type roots -Info 19 [16:00:48.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/usage/node_modules/@types 1 undefined Project: /user/username/projects/myproject/usage/tsconfig.json WatchType: Type roots -Info 20 [16:00:49.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/usage/tsconfig.json WatchType: Type roots -Info 21 [16:00:50.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/usage/tsconfig.json WatchType: Type roots -Info 22 [16:00:51.000] Finishing updateGraphWorker: Project: /user/username/projects/myproject/usage/tsconfig.json Version: 1 structureChanged: true structureIsReused:: Not Elapsed:: *ms -Info 23 [16:00:52.000] Project '/user/username/projects/myproject/usage/tsconfig.json' (Configured) -Info 24 [16:00:53.000] Files (3) +Info 13 [00:00:42.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/dependency/tsconfig.json 2000 undefined Project: /user/username/projects/myproject/usage/tsconfig.json WatchType: Config file +Info 14 [00:00:43.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/dependency 1 undefined Config: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Wild card directory +Info 15 [00:00:44.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/dependency 1 undefined Config: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Wild card directory +Info 16 [00:00:45.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/dependency/fns.ts 500 undefined WatchType: Closed Script info +Info 17 [00:00:46.000] FileWatcher:: Added:: WatchInfo: /a/lib/lib.d.ts 500 undefined WatchType: Closed Script info +Info 18 [00:00:47.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/usage/node_modules/@types 1 undefined Project: /user/username/projects/myproject/usage/tsconfig.json WatchType: Type roots +Info 19 [00:00:48.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/usage/node_modules/@types 1 undefined Project: /user/username/projects/myproject/usage/tsconfig.json WatchType: Type roots +Info 20 [00:00:49.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/usage/tsconfig.json WatchType: Type roots +Info 21 [00:00:50.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/usage/tsconfig.json WatchType: Type roots +Info 22 [00:00:51.000] Finishing updateGraphWorker: Project: /user/username/projects/myproject/usage/tsconfig.json Version: 1 structureChanged: true structureIsReused:: Not Elapsed:: *ms +Info 23 [00:00:52.000] Project '/user/username/projects/myproject/usage/tsconfig.json' (Configured) +Info 24 [00:00:53.000] Files (3) /a/lib/lib.d.ts /user/username/projects/myproject/dependency/fns.ts /user/username/projects/myproject/usage/usage.ts @@ -109,22 +109,22 @@ Info 24 [16:00:53.000] Files (3) usage.ts Matched by default include pattern '**/*' -Info 25 [16:00:54.000] ----------------------------------------------- -Info 26 [16:00:55.000] event: +Info 25 [00:00:54.000] ----------------------------------------------- +Info 26 [00:00:55.000] event: {"seq":0,"type":"event","event":"projectLoadingFinish","body":{"projectName":"/user/username/projects/myproject/usage/tsconfig.json"}} -Info 27 [16:00:56.000] event: +Info 27 [00:00:56.000] event: {"seq":0,"type":"event","event":"telemetry","body":{"telemetryEventName":"projectInfo","payload":{"projectId":"2b96539513e8810fb8ec0c078e4cb28919c0c28cdb8f7646118c5a6f4ff4cb10","fileStats":{"js":0,"jsSize":0,"jsx":0,"jsxSize":0,"ts":2,"tsSize":179,"tsx":0,"tsxSize":0,"dts":1,"dtsSize":334,"deferred":0,"deferredSize":0},"compilerOptions":{"composite":true,"outFile":""},"typeAcquisition":{"enable":false,"include":false,"exclude":false},"extends":false,"files":false,"include":false,"exclude":false,"compileOnSave":false,"configFileName":"tsconfig.json","projectType":"configured","languageServiceEnabled":true,"version":"FakeVersion"}}} -Info 28 [16:00:57.000] event: +Info 28 [00:00:57.000] event: {"seq":0,"type":"event","event":"configFileDiag","body":{"triggerFile":"/user/username/projects/myproject/usage/usage.ts","configFile":"/user/username/projects/myproject/usage/tsconfig.json","diagnostics":[]}} -Info 29 [16:00:58.000] Search path: /user/username/projects/myproject/usage -Info 30 [16:00:59.000] For info: /user/username/projects/myproject/usage/tsconfig.json :: No config files found. -Info 31 [16:01:00.000] Project '/user/username/projects/myproject/usage/tsconfig.json' (Configured) -Info 31 [16:01:01.000] Files (3) - -Info 31 [16:01:02.000] ----------------------------------------------- -Info 31 [16:01:03.000] Open files: -Info 31 [16:01:04.000] FileName: /user/username/projects/myproject/usage/usage.ts ProjectRootPath: undefined -Info 31 [16:01:05.000] Projects: /user/username/projects/myproject/usage/tsconfig.json +Info 29 [00:00:58.000] Search path: /user/username/projects/myproject/usage +Info 30 [00:00:59.000] For info: /user/username/projects/myproject/usage/tsconfig.json :: No config files found. +Info 31 [00:01:00.000] Project '/user/username/projects/myproject/usage/tsconfig.json' (Configured) +Info 31 [00:01:01.000] Files (3) + +Info 31 [00:01:02.000] ----------------------------------------------- +Info 31 [00:01:03.000] Open files: +Info 31 [00:01:04.000] FileName: /user/username/projects/myproject/usage/usage.ts ProjectRootPath: undefined +Info 31 [00:01:05.000] Projects: /user/username/projects/myproject/usage/tsconfig.json After request PolledWatches:: @@ -149,11 +149,11 @@ FsWatchesRecursive:: /user/username/projects/myproject/dependency: {} -Info 31 [16:01:06.000] response: +Info 31 [00:01:06.000] response: { "responseRequired": false } -Info 32 [16:01:07.000] request: +Info 32 [00:01:07.000] request: { "seq": 0, "type": "request", @@ -186,21 +186,21 @@ FsWatchesRecursive:: /user/username/projects/myproject/dependency: {} -Info 33 [16:01:08.000] FileWatcher:: Close:: WatchInfo: /user/username/projects/myproject/dependency/fns.ts 500 undefined WatchType: Closed Script info -Info 34 [16:01:09.000] Search path: /user/username/projects/myproject/dependency -Info 35 [16:01:10.000] For info: /user/username/projects/myproject/dependency/fns.ts :: Config file name: /user/username/projects/myproject/dependency/tsconfig.json -Info 36 [16:01:11.000] Creating configuration project /user/username/projects/myproject/dependency/tsconfig.json -Info 37 [16:01:12.000] event: +Info 33 [00:01:08.000] FileWatcher:: Close:: WatchInfo: /user/username/projects/myproject/dependency/fns.ts 500 undefined WatchType: Closed Script info +Info 34 [00:01:09.000] Search path: /user/username/projects/myproject/dependency +Info 35 [00:01:10.000] For info: /user/username/projects/myproject/dependency/fns.ts :: Config file name: /user/username/projects/myproject/dependency/tsconfig.json +Info 36 [00:01:11.000] Creating configuration project /user/username/projects/myproject/dependency/tsconfig.json +Info 37 [00:01:12.000] event: {"seq":0,"type":"event","event":"projectLoadingStart","body":{"projectName":"/user/username/projects/myproject/dependency/tsconfig.json","reason":"Creating possible configured project for /user/username/projects/myproject/dependency/fns.ts to open"}} -Info 38 [16:01:13.000] Plugins were requested but not running in environment that supports 'require'. Nothing will be loaded -Info 39 [16:01:14.000] Starting updateGraphWorker: Project: /user/username/projects/myproject/dependency/tsconfig.json -Info 40 [16:01:15.000] 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 41 [16:01:16.000] 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 42 [16:01:17.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Type roots -Info 43 [16:01:18.000] 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 44 [16:01:19.000] Finishing updateGraphWorker: Project: /user/username/projects/myproject/dependency/tsconfig.json Version: 1 structureChanged: true structureIsReused:: Not Elapsed:: *ms -Info 45 [16:01:20.000] Project '/user/username/projects/myproject/dependency/tsconfig.json' (Configured) -Info 46 [16:01:21.000] Files (2) +Info 38 [00:01:13.000] Plugins were requested but not running in environment that supports 'require'. Nothing will be loaded +Info 39 [00:01:14.000] Starting updateGraphWorker: Project: /user/username/projects/myproject/dependency/tsconfig.json +Info 40 [00:01:15.000] 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 41 [00:01:16.000] 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 42 [00:01:17.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Type roots +Info 43 [00:01:18.000] 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 44 [00:01:19.000] Finishing updateGraphWorker: Project: /user/username/projects/myproject/dependency/tsconfig.json Version: 1 structureChanged: true structureIsReused:: Not Elapsed:: *ms +Info 45 [00:01:20.000] Project '/user/username/projects/myproject/dependency/tsconfig.json' (Configured) +Info 46 [00:01:21.000] Files (2) /a/lib/lib.d.ts /user/username/projects/myproject/dependency/fns.ts @@ -210,28 +210,28 @@ Info 46 [16:01:21.000] Files (2) fns.ts Matched by default include pattern '**/*' -Info 47 [16:01:22.000] ----------------------------------------------- -Info 48 [16:01:23.000] event: +Info 47 [00:01:22.000] ----------------------------------------------- +Info 48 [00:01:23.000] event: {"seq":0,"type":"event","event":"projectLoadingFinish","body":{"projectName":"/user/username/projects/myproject/dependency/tsconfig.json"}} -Info 49 [16:01:24.000] event: +Info 49 [00:01:24.000] event: {"seq":0,"type":"event","event":"telemetry","body":{"telemetryEventName":"projectInfo","payload":{"projectId":"80216eb4c9c6d41fcd26650a22a2df8f2cac81cda661de72dc723e6251203d22","fileStats":{"js":0,"jsSize":0,"jsx":0,"jsxSize":0,"ts":1,"tsSize":156,"tsx":0,"tsxSize":0,"dts":1,"dtsSize":334,"deferred":0,"deferredSize":0},"compilerOptions":{"composite":true,"outFile":""},"typeAcquisition":{"enable":false,"include":false,"exclude":false},"extends":false,"files":false,"include":false,"exclude":false,"compileOnSave":false,"configFileName":"tsconfig.json","projectType":"configured","languageServiceEnabled":true,"version":"FakeVersion"}}} -Info 50 [16:01:25.000] event: +Info 50 [00:01:25.000] event: {"seq":0,"type":"event","event":"configFileDiag","body":{"triggerFile":"/user/username/projects/myproject/dependency/fns.ts","configFile":"/user/username/projects/myproject/dependency/tsconfig.json","diagnostics":[]}} -Info 51 [16:01:26.000] Search path: /user/username/projects/myproject/dependency -Info 52 [16:01:27.000] For info: /user/username/projects/myproject/dependency/tsconfig.json :: No config files found. -Info 53 [16:01:28.000] Project '/user/username/projects/myproject/usage/tsconfig.json' (Configured) -Info 53 [16:01:29.000] Files (3) - -Info 53 [16:01:30.000] ----------------------------------------------- -Info 53 [16:01:31.000] Project '/user/username/projects/myproject/dependency/tsconfig.json' (Configured) -Info 53 [16:01:32.000] Files (2) - -Info 53 [16:01:33.000] ----------------------------------------------- -Info 53 [16:01:34.000] Open files: -Info 53 [16:01:35.000] FileName: /user/username/projects/myproject/usage/usage.ts ProjectRootPath: undefined -Info 53 [16:01:36.000] Projects: /user/username/projects/myproject/usage/tsconfig.json -Info 53 [16:01:37.000] FileName: /user/username/projects/myproject/dependency/fns.ts ProjectRootPath: undefined -Info 53 [16:01:38.000] Projects: /user/username/projects/myproject/usage/tsconfig.json,/user/username/projects/myproject/dependency/tsconfig.json +Info 51 [00:01:26.000] Search path: /user/username/projects/myproject/dependency +Info 52 [00:01:27.000] For info: /user/username/projects/myproject/dependency/tsconfig.json :: No config files found. +Info 53 [00:01:28.000] Project '/user/username/projects/myproject/usage/tsconfig.json' (Configured) +Info 53 [00:01:29.000] Files (3) + +Info 53 [00:01:30.000] ----------------------------------------------- +Info 53 [00:01:31.000] Project '/user/username/projects/myproject/dependency/tsconfig.json' (Configured) +Info 53 [00:01:32.000] Files (2) + +Info 53 [00:01:33.000] ----------------------------------------------- +Info 53 [00:01:34.000] Open files: +Info 53 [00:01:35.000] FileName: /user/username/projects/myproject/usage/usage.ts ProjectRootPath: undefined +Info 53 [00:01:36.000] Projects: /user/username/projects/myproject/usage/tsconfig.json +Info 53 [00:01:37.000] FileName: /user/username/projects/myproject/dependency/fns.ts ProjectRootPath: undefined +Info 53 [00:01:38.000] Projects: /user/username/projects/myproject/usage/tsconfig.json,/user/username/projects/myproject/dependency/tsconfig.json After request PolledWatches:: @@ -256,11 +256,11 @@ FsWatchesRecursive:: /user/username/projects/myproject/dependency: {} -Info 53 [16:01:39.000] response: +Info 53 [00:01:39.000] response: { "responseRequired": false } -Info 54 [16:01:40.000] request: +Info 54 [00:01:40.000] request: { "command": "geterr", "arguments": { @@ -321,7 +321,7 @@ FsWatchesRecursive:: /user/username/projects/myproject/dependency: {} -Info 55 [16:01:41.000] response: +Info 55 [00:01:41.000] response: { "responseRequired": false } @@ -349,7 +349,7 @@ FsWatchesRecursive:: /user/username/projects/myproject/dependency: {} -Info 56 [16:01:42.000] event: +Info 56 [00:01:42.000] event: {"seq":0,"type":"event","event":"syntaxDiag","body":{"file":"/user/username/projects/myproject/usage/usage.ts","diagnostics":[]}} After checking timeout queue length (1) and running @@ -399,7 +399,7 @@ FsWatchesRecursive:: /user/username/projects/myproject/dependency: {} -Info 57 [16:01:43.000] event: +Info 57 [00:01:43.000] event: {"seq":0,"type":"event","event":"semanticDiag","body":{"file":"/user/username/projects/myproject/usage/usage.ts","diagnostics":[{"start":{"line":3,"offset":1},"end":{"line":3,"offset":6},"text":"Cannot find name 'fnErr'.","code":2304,"category":"error"}]}} Before running immediate callbacks and checking length (1) @@ -449,7 +449,7 @@ FsWatchesRecursive:: /user/username/projects/myproject/dependency: {} -Info 58 [16:01:44.000] event: +Info 58 [00:01:44.000] event: {"seq":0,"type":"event","event":"suggestionDiag","body":{"file":"/user/username/projects/myproject/usage/usage.ts","diagnostics":[]}} Before running immediate callbacks and checking length (1) @@ -499,7 +499,7 @@ FsWatchesRecursive:: /user/username/projects/myproject/dependency: {} -Info 59 [16:01:45.000] event: +Info 59 [00:01:45.000] event: {"seq":0,"type":"event","event":"syntaxDiag","body":{"file":"/user/username/projects/myproject/dependency/fns.ts","diagnostics":[]}} After checking timeout queue length (1) and running @@ -549,7 +549,7 @@ FsWatchesRecursive:: /user/username/projects/myproject/dependency: {} -Info 60 [16:01:46.000] event: +Info 60 [00:01:46.000] event: {"seq":0,"type":"event","event":"semanticDiag","body":{"file":"/user/username/projects/myproject/dependency/fns.ts","diagnostics":[{"start":{"line":6,"offset":5},"end":{"line":6,"offset":6},"text":"Type 'number' is not assignable to type 'string'.","code":2322,"category":"error"}]}} Before running immediate callbacks and checking length (1) @@ -599,9 +599,9 @@ FsWatchesRecursive:: /user/username/projects/myproject/dependency: {} -Info 61 [16:01:47.000] event: +Info 61 [00:01:47.000] event: {"seq":0,"type":"event","event":"suggestionDiag","body":{"file":"/user/username/projects/myproject/dependency/fns.ts","diagnostics":[]}} -Info 62 [16:01:48.000] event: +Info 62 [00:01:48.000] event: {"seq":0,"type":"event","event":"requestCompleted","body":{"request_seq":1}} Before running immediate callbacks and checking length (1) 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 6de529c85dee4..de816b667b90b 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 @@ -1,5 +1,5 @@ -Info 0 [16:00:29.000] Provided types map file "/a/lib/typesMap.json" doesn't exist -Info 1 [16:00:30.000] request: +Info 0 [00:00:29.000] Provided types map file "/a/lib/typesMap.json" doesn't exist +Info 1 [00:00:30.000] request: { "seq": 0, "type": "request", @@ -49,13 +49,13 @@ FsWatches:: FsWatchesRecursive:: -Info 2 [16:00:31.000] Search path: /user/username/projects/myproject/usage -Info 3 [16:00:32.000] For info: /user/username/projects/myproject/usage/usage.ts :: Config file name: /user/username/projects/myproject/usage/tsconfig.json -Info 4 [16:00:33.000] Creating configuration project /user/username/projects/myproject/usage/tsconfig.json -Info 5 [16:00:34.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/usage/tsconfig.json 2000 undefined Project: /user/username/projects/myproject/usage/tsconfig.json WatchType: Config file -Info 6 [16:00:35.000] event: +Info 2 [00:00:31.000] Search path: /user/username/projects/myproject/usage +Info 3 [00:00:32.000] For info: /user/username/projects/myproject/usage/usage.ts :: Config file name: /user/username/projects/myproject/usage/tsconfig.json +Info 4 [00:00:33.000] Creating configuration project /user/username/projects/myproject/usage/tsconfig.json +Info 5 [00:00:34.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/usage/tsconfig.json 2000 undefined Project: /user/username/projects/myproject/usage/tsconfig.json WatchType: Config file +Info 6 [00:00:35.000] event: {"seq":0,"type":"event","event":"projectLoadingStart","body":{"projectName":"/user/username/projects/myproject/usage/tsconfig.json","reason":"Creating possible configured project for /user/username/projects/myproject/usage/usage.ts to open"}} -Info 7 [16:00:36.000] Config: /user/username/projects/myproject/usage/tsconfig.json : { +Info 7 [00:00:36.000] Config: /user/username/projects/myproject/usage/tsconfig.json : { "rootNames": [ "/user/username/projects/myproject/usage/usage.ts" ], @@ -71,11 +71,11 @@ Info 7 [16:00:36.000] Config: /user/username/projects/myproject/usage/tsconfi } ] } -Info 8 [16:00:37.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/usage 1 undefined Config: /user/username/projects/myproject/usage/tsconfig.json WatchType: Wild card directory -Info 9 [16:00:38.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/usage 1 undefined Config: /user/username/projects/myproject/usage/tsconfig.json WatchType: Wild card directory -Info 10 [16:00:39.000] Plugins were requested but not running in environment that supports 'require'. Nothing will be loaded -Info 11 [16:00:40.000] Starting updateGraphWorker: Project: /user/username/projects/myproject/usage/tsconfig.json -Info 12 [16:00:41.000] Config: /user/username/projects/myproject/dependency/tsconfig.json : { +Info 8 [00:00:37.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/usage 1 undefined Config: /user/username/projects/myproject/usage/tsconfig.json WatchType: Wild card directory +Info 9 [00:00:38.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/usage 1 undefined Config: /user/username/projects/myproject/usage/tsconfig.json WatchType: Wild card directory +Info 10 [00:00:39.000] Plugins were requested but not running in environment that supports 'require'. Nothing will be loaded +Info 11 [00:00:40.000] Starting updateGraphWorker: Project: /user/username/projects/myproject/usage/tsconfig.json +Info 12 [00:00:41.000] Config: /user/username/projects/myproject/dependency/tsconfig.json : { "rootNames": [ "/user/username/projects/myproject/dependency/fns.ts" ], @@ -85,18 +85,18 @@ Info 12 [16:00:41.000] Config: /user/username/projects/myproject/dependency/ts "configFilePath": "/user/username/projects/myproject/dependency/tsconfig.json" } } -Info 13 [16:00:42.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/dependency/tsconfig.json 2000 undefined Project: /user/username/projects/myproject/usage/tsconfig.json WatchType: Config file -Info 14 [16:00:43.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/dependency 1 undefined Config: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Wild card directory -Info 15 [16:00:44.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/dependency 1 undefined Config: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Wild card directory -Info 16 [16:00:45.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/dependency/fns.ts 500 undefined WatchType: Closed Script info -Info 17 [16:00:46.000] FileWatcher:: Added:: WatchInfo: /a/lib/lib.d.ts 500 undefined WatchType: Closed Script info -Info 18 [16:00:47.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/usage/node_modules/@types 1 undefined Project: /user/username/projects/myproject/usage/tsconfig.json WatchType: Type roots -Info 19 [16:00:48.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/usage/node_modules/@types 1 undefined Project: /user/username/projects/myproject/usage/tsconfig.json WatchType: Type roots -Info 20 [16:00:49.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/usage/tsconfig.json WatchType: Type roots -Info 21 [16:00:50.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/usage/tsconfig.json WatchType: Type roots -Info 22 [16:00:51.000] Finishing updateGraphWorker: Project: /user/username/projects/myproject/usage/tsconfig.json Version: 1 structureChanged: true structureIsReused:: Not Elapsed:: *ms -Info 23 [16:00:52.000] Project '/user/username/projects/myproject/usage/tsconfig.json' (Configured) -Info 24 [16:00:53.000] Files (3) +Info 13 [00:00:42.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/dependency/tsconfig.json 2000 undefined Project: /user/username/projects/myproject/usage/tsconfig.json WatchType: Config file +Info 14 [00:00:43.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/dependency 1 undefined Config: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Wild card directory +Info 15 [00:00:44.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/dependency 1 undefined Config: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Wild card directory +Info 16 [00:00:45.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/dependency/fns.ts 500 undefined WatchType: Closed Script info +Info 17 [00:00:46.000] FileWatcher:: Added:: WatchInfo: /a/lib/lib.d.ts 500 undefined WatchType: Closed Script info +Info 18 [00:00:47.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/usage/node_modules/@types 1 undefined Project: /user/username/projects/myproject/usage/tsconfig.json WatchType: Type roots +Info 19 [00:00:48.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/usage/node_modules/@types 1 undefined Project: /user/username/projects/myproject/usage/tsconfig.json WatchType: Type roots +Info 20 [00:00:49.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/usage/tsconfig.json WatchType: Type roots +Info 21 [00:00:50.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/usage/tsconfig.json WatchType: Type roots +Info 22 [00:00:51.000] Finishing updateGraphWorker: Project: /user/username/projects/myproject/usage/tsconfig.json Version: 1 structureChanged: true structureIsReused:: Not Elapsed:: *ms +Info 23 [00:00:52.000] Project '/user/username/projects/myproject/usage/tsconfig.json' (Configured) +Info 24 [00:00:53.000] Files (3) /a/lib/lib.d.ts /user/username/projects/myproject/dependency/fns.ts /user/username/projects/myproject/usage/usage.ts @@ -109,22 +109,22 @@ Info 24 [16:00:53.000] Files (3) usage.ts Matched by default include pattern '**/*' -Info 25 [16:00:54.000] ----------------------------------------------- -Info 26 [16:00:55.000] event: +Info 25 [00:00:54.000] ----------------------------------------------- +Info 26 [00:00:55.000] event: {"seq":0,"type":"event","event":"projectLoadingFinish","body":{"projectName":"/user/username/projects/myproject/usage/tsconfig.json"}} -Info 27 [16:00:56.000] event: +Info 27 [00:00:56.000] event: {"seq":0,"type":"event","event":"telemetry","body":{"telemetryEventName":"projectInfo","payload":{"projectId":"2b96539513e8810fb8ec0c078e4cb28919c0c28cdb8f7646118c5a6f4ff4cb10","fileStats":{"js":0,"jsSize":0,"jsx":0,"jsxSize":0,"ts":2,"tsSize":179,"tsx":0,"tsxSize":0,"dts":1,"dtsSize":334,"deferred":0,"deferredSize":0},"compilerOptions":{"composite":true,"outFile":""},"typeAcquisition":{"enable":false,"include":false,"exclude":false},"extends":false,"files":false,"include":false,"exclude":false,"compileOnSave":false,"configFileName":"tsconfig.json","projectType":"configured","languageServiceEnabled":true,"version":"FakeVersion"}}} -Info 28 [16:00:57.000] event: +Info 28 [00:00:57.000] event: {"seq":0,"type":"event","event":"configFileDiag","body":{"triggerFile":"/user/username/projects/myproject/usage/usage.ts","configFile":"/user/username/projects/myproject/usage/tsconfig.json","diagnostics":[]}} -Info 29 [16:00:58.000] Search path: /user/username/projects/myproject/usage -Info 30 [16:00:59.000] For info: /user/username/projects/myproject/usage/tsconfig.json :: No config files found. -Info 31 [16:01:00.000] Project '/user/username/projects/myproject/usage/tsconfig.json' (Configured) -Info 31 [16:01:01.000] Files (3) - -Info 31 [16:01:02.000] ----------------------------------------------- -Info 31 [16:01:03.000] Open files: -Info 31 [16:01:04.000] FileName: /user/username/projects/myproject/usage/usage.ts ProjectRootPath: undefined -Info 31 [16:01:05.000] Projects: /user/username/projects/myproject/usage/tsconfig.json +Info 29 [00:00:58.000] Search path: /user/username/projects/myproject/usage +Info 30 [00:00:59.000] For info: /user/username/projects/myproject/usage/tsconfig.json :: No config files found. +Info 31 [00:01:00.000] Project '/user/username/projects/myproject/usage/tsconfig.json' (Configured) +Info 31 [00:01:01.000] Files (3) + +Info 31 [00:01:02.000] ----------------------------------------------- +Info 31 [00:01:03.000] Open files: +Info 31 [00:01:04.000] FileName: /user/username/projects/myproject/usage/usage.ts ProjectRootPath: undefined +Info 31 [00:01:05.000] Projects: /user/username/projects/myproject/usage/tsconfig.json After request PolledWatches:: @@ -149,11 +149,11 @@ FsWatchesRecursive:: /user/username/projects/myproject/dependency: {} -Info 31 [16:01:06.000] response: +Info 31 [00:01:06.000] response: { "responseRequired": false } -Info 32 [16:01:07.000] request: +Info 32 [00:01:07.000] request: { "seq": 0, "type": "request", @@ -186,21 +186,21 @@ FsWatchesRecursive:: /user/username/projects/myproject/dependency: {} -Info 33 [16:01:08.000] FileWatcher:: Close:: WatchInfo: /user/username/projects/myproject/dependency/fns.ts 500 undefined WatchType: Closed Script info -Info 34 [16:01:09.000] Search path: /user/username/projects/myproject/dependency -Info 35 [16:01:10.000] For info: /user/username/projects/myproject/dependency/fns.ts :: Config file name: /user/username/projects/myproject/dependency/tsconfig.json -Info 36 [16:01:11.000] Creating configuration project /user/username/projects/myproject/dependency/tsconfig.json -Info 37 [16:01:12.000] event: +Info 33 [00:01:08.000] FileWatcher:: Close:: WatchInfo: /user/username/projects/myproject/dependency/fns.ts 500 undefined WatchType: Closed Script info +Info 34 [00:01:09.000] Search path: /user/username/projects/myproject/dependency +Info 35 [00:01:10.000] For info: /user/username/projects/myproject/dependency/fns.ts :: Config file name: /user/username/projects/myproject/dependency/tsconfig.json +Info 36 [00:01:11.000] Creating configuration project /user/username/projects/myproject/dependency/tsconfig.json +Info 37 [00:01:12.000] event: {"seq":0,"type":"event","event":"projectLoadingStart","body":{"projectName":"/user/username/projects/myproject/dependency/tsconfig.json","reason":"Creating possible configured project for /user/username/projects/myproject/dependency/fns.ts to open"}} -Info 38 [16:01:13.000] Plugins were requested but not running in environment that supports 'require'. Nothing will be loaded -Info 39 [16:01:14.000] Starting updateGraphWorker: Project: /user/username/projects/myproject/dependency/tsconfig.json -Info 40 [16:01:15.000] 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 41 [16:01:16.000] 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 42 [16:01:17.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Type roots -Info 43 [16:01:18.000] 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 44 [16:01:19.000] Finishing updateGraphWorker: Project: /user/username/projects/myproject/dependency/tsconfig.json Version: 1 structureChanged: true structureIsReused:: Not Elapsed:: *ms -Info 45 [16:01:20.000] Project '/user/username/projects/myproject/dependency/tsconfig.json' (Configured) -Info 46 [16:01:21.000] Files (2) +Info 38 [00:01:13.000] Plugins were requested but not running in environment that supports 'require'. Nothing will be loaded +Info 39 [00:01:14.000] Starting updateGraphWorker: Project: /user/username/projects/myproject/dependency/tsconfig.json +Info 40 [00:01:15.000] 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 41 [00:01:16.000] 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 42 [00:01:17.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Type roots +Info 43 [00:01:18.000] 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 44 [00:01:19.000] Finishing updateGraphWorker: Project: /user/username/projects/myproject/dependency/tsconfig.json Version: 1 structureChanged: true structureIsReused:: Not Elapsed:: *ms +Info 45 [00:01:20.000] Project '/user/username/projects/myproject/dependency/tsconfig.json' (Configured) +Info 46 [00:01:21.000] Files (2) /a/lib/lib.d.ts /user/username/projects/myproject/dependency/fns.ts @@ -210,28 +210,28 @@ Info 46 [16:01:21.000] Files (2) fns.ts Matched by default include pattern '**/*' -Info 47 [16:01:22.000] ----------------------------------------------- -Info 48 [16:01:23.000] event: +Info 47 [00:01:22.000] ----------------------------------------------- +Info 48 [00:01:23.000] event: {"seq":0,"type":"event","event":"projectLoadingFinish","body":{"projectName":"/user/username/projects/myproject/dependency/tsconfig.json"}} -Info 49 [16:01:24.000] event: +Info 49 [00:01:24.000] event: {"seq":0,"type":"event","event":"telemetry","body":{"telemetryEventName":"projectInfo","payload":{"projectId":"80216eb4c9c6d41fcd26650a22a2df8f2cac81cda661de72dc723e6251203d22","fileStats":{"js":0,"jsSize":0,"jsx":0,"jsxSize":0,"ts":1,"tsSize":156,"tsx":0,"tsxSize":0,"dts":1,"dtsSize":334,"deferred":0,"deferredSize":0},"compilerOptions":{"composite":true,"outFile":""},"typeAcquisition":{"enable":false,"include":false,"exclude":false},"extends":false,"files":false,"include":false,"exclude":false,"compileOnSave":false,"configFileName":"tsconfig.json","projectType":"configured","languageServiceEnabled":true,"version":"FakeVersion"}}} -Info 50 [16:01:25.000] event: +Info 50 [00:01:25.000] event: {"seq":0,"type":"event","event":"configFileDiag","body":{"triggerFile":"/user/username/projects/myproject/dependency/fns.ts","configFile":"/user/username/projects/myproject/dependency/tsconfig.json","diagnostics":[]}} -Info 51 [16:01:26.000] Search path: /user/username/projects/myproject/dependency -Info 52 [16:01:27.000] For info: /user/username/projects/myproject/dependency/tsconfig.json :: No config files found. -Info 53 [16:01:28.000] Project '/user/username/projects/myproject/usage/tsconfig.json' (Configured) -Info 53 [16:01:29.000] Files (3) - -Info 53 [16:01:30.000] ----------------------------------------------- -Info 53 [16:01:31.000] Project '/user/username/projects/myproject/dependency/tsconfig.json' (Configured) -Info 53 [16:01:32.000] Files (2) - -Info 53 [16:01:33.000] ----------------------------------------------- -Info 53 [16:01:34.000] Open files: -Info 53 [16:01:35.000] FileName: /user/username/projects/myproject/usage/usage.ts ProjectRootPath: undefined -Info 53 [16:01:36.000] Projects: /user/username/projects/myproject/usage/tsconfig.json -Info 53 [16:01:37.000] FileName: /user/username/projects/myproject/dependency/fns.ts ProjectRootPath: undefined -Info 53 [16:01:38.000] Projects: /user/username/projects/myproject/usage/tsconfig.json,/user/username/projects/myproject/dependency/tsconfig.json +Info 51 [00:01:26.000] Search path: /user/username/projects/myproject/dependency +Info 52 [00:01:27.000] For info: /user/username/projects/myproject/dependency/tsconfig.json :: No config files found. +Info 53 [00:01:28.000] Project '/user/username/projects/myproject/usage/tsconfig.json' (Configured) +Info 53 [00:01:29.000] Files (3) + +Info 53 [00:01:30.000] ----------------------------------------------- +Info 53 [00:01:31.000] Project '/user/username/projects/myproject/dependency/tsconfig.json' (Configured) +Info 53 [00:01:32.000] Files (2) + +Info 53 [00:01:33.000] ----------------------------------------------- +Info 53 [00:01:34.000] Open files: +Info 53 [00:01:35.000] FileName: /user/username/projects/myproject/usage/usage.ts ProjectRootPath: undefined +Info 53 [00:01:36.000] Projects: /user/username/projects/myproject/usage/tsconfig.json +Info 53 [00:01:37.000] FileName: /user/username/projects/myproject/dependency/fns.ts ProjectRootPath: undefined +Info 53 [00:01:38.000] Projects: /user/username/projects/myproject/usage/tsconfig.json,/user/username/projects/myproject/dependency/tsconfig.json After request PolledWatches:: @@ -256,11 +256,11 @@ FsWatchesRecursive:: /user/username/projects/myproject/dependency: {} -Info 53 [16:01:39.000] response: +Info 53 [00:01:39.000] response: { "responseRequired": false } -Info 54 [16:01:40.000] request: +Info 54 [00:01:40.000] request: { "command": "geterrForProject", "arguments": { @@ -318,7 +318,7 @@ FsWatchesRecursive:: /user/username/projects/myproject/dependency: {} -Info 55 [16:01:41.000] response: +Info 55 [00:01:41.000] response: { "responseRequired": false } @@ -346,7 +346,7 @@ FsWatchesRecursive:: /user/username/projects/myproject/dependency: {} -Info 56 [16:01:42.000] event: +Info 56 [00:01:42.000] event: {"seq":0,"type":"event","event":"syntaxDiag","body":{"file":"/user/username/projects/myproject/usage/usage.ts","diagnostics":[]}} After checking timeout queue length (1) and running @@ -396,7 +396,7 @@ FsWatchesRecursive:: /user/username/projects/myproject/dependency: {} -Info 57 [16:01:43.000] event: +Info 57 [00:01:43.000] event: {"seq":0,"type":"event","event":"semanticDiag","body":{"file":"/user/username/projects/myproject/usage/usage.ts","diagnostics":[{"start":{"line":3,"offset":1},"end":{"line":3,"offset":6},"text":"Cannot find name 'fnErr'.","code":2304,"category":"error"}]}} Before running immediate callbacks and checking length (1) @@ -446,7 +446,7 @@ FsWatchesRecursive:: /user/username/projects/myproject/dependency: {} -Info 58 [16:01:44.000] event: +Info 58 [00:01:44.000] event: {"seq":0,"type":"event","event":"suggestionDiag","body":{"file":"/user/username/projects/myproject/usage/usage.ts","diagnostics":[]}} Before running immediate callbacks and checking length (1) @@ -496,7 +496,7 @@ FsWatchesRecursive:: /user/username/projects/myproject/dependency: {} -Info 59 [16:01:45.000] event: +Info 59 [00:01:45.000] event: {"seq":0,"type":"event","event":"syntaxDiag","body":{"file":"/user/username/projects/myproject/dependency/fns.ts","diagnostics":[]}} After checking timeout queue length (1) and running @@ -546,7 +546,7 @@ FsWatchesRecursive:: /user/username/projects/myproject/dependency: {} -Info 60 [16:01:46.000] event: +Info 60 [00:01:46.000] event: {"seq":0,"type":"event","event":"semanticDiag","body":{"file":"/user/username/projects/myproject/dependency/fns.ts","diagnostics":[]}} Before running immediate callbacks and checking length (1) @@ -596,9 +596,9 @@ FsWatchesRecursive:: /user/username/projects/myproject/dependency: {} -Info 61 [16:01:47.000] event: +Info 61 [00:01:47.000] event: {"seq":0,"type":"event","event":"suggestionDiag","body":{"file":"/user/username/projects/myproject/dependency/fns.ts","diagnostics":[]}} -Info 62 [16:01:48.000] event: +Info 62 [00:01:48.000] event: {"seq":0,"type":"event","event":"requestCompleted","body":{"request_seq":1}} Before running immediate callbacks and checking length (1) @@ -624,7 +624,7 @@ FsWatchesRecursive:: /user/username/projects/myproject/dependency: {} -Info 63 [16:01:49.000] request: +Info 63 [00:01:49.000] request: { "command": "geterrForProject", "arguments": { @@ -682,7 +682,7 @@ FsWatchesRecursive:: /user/username/projects/myproject/dependency: {} -Info 64 [16:01:50.000] response: +Info 64 [00:01:50.000] response: { "responseRequired": false } @@ -710,7 +710,7 @@ FsWatchesRecursive:: /user/username/projects/myproject/dependency: {} -Info 65 [16:01:51.000] event: +Info 65 [00:01:51.000] event: {"seq":0,"type":"event","event":"syntaxDiag","body":{"file":"/user/username/projects/myproject/dependency/fns.ts","diagnostics":[]}} After checking timeout queue length (1) and running @@ -760,7 +760,7 @@ FsWatchesRecursive:: /user/username/projects/myproject/dependency: {} -Info 66 [16:01:52.000] event: +Info 66 [00:01:52.000] event: {"seq":0,"type":"event","event":"semanticDiag","body":{"file":"/user/username/projects/myproject/dependency/fns.ts","diagnostics":[{"start":{"line":6,"offset":5},"end":{"line":6,"offset":6},"text":"Type 'number' is not assignable to type 'string'.","code":2322,"category":"error"}]}} Before running immediate callbacks and checking length (1) @@ -810,9 +810,9 @@ FsWatchesRecursive:: /user/username/projects/myproject/dependency: {} -Info 67 [16:01:53.000] event: +Info 67 [00:01:53.000] event: {"seq":0,"type":"event","event":"suggestionDiag","body":{"file":"/user/username/projects/myproject/dependency/fns.ts","diagnostics":[]}} -Info 68 [16:01:54.000] event: +Info 68 [00:01:54.000] event: {"seq":0,"type":"event","event":"requestCompleted","body":{"request_seq":2}} Before running immediate callbacks and checking length (1) 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 f355b288ec5da..d0e98836dba58 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 @@ -1,5 +1,5 @@ -Info 0 [16:01:14.000] Provided types map file "/a/lib/typesMap.json" doesn't exist -Info 1 [16:01:15.000] request: +Info 0 [00:01:14.000] Provided types map file "/a/lib/typesMap.json" doesn't exist +Info 1 [00:01:15.000] request: { "seq": 0, "type": "request", @@ -349,11 +349,11 @@ FsWatches:: FsWatchesRecursive:: -Info 2 [16:01:16.000] Search path: /user/username/projects/container/compositeExec -Info 3 [16:01:17.000] For info: /user/username/projects/container/compositeExec/index.ts :: Config file name: /user/username/projects/container/compositeExec/tsconfig.json -Info 4 [16:01:18.000] Creating configuration project /user/username/projects/container/compositeExec/tsconfig.json -Info 5 [16:01:19.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/container/compositeExec/tsconfig.json 2000 undefined Project: /user/username/projects/container/compositeExec/tsconfig.json WatchType: Config file -Info 6 [16:01:20.000] Config: /user/username/projects/container/compositeExec/tsconfig.json : { +Info 2 [00:01:16.000] Search path: /user/username/projects/container/compositeExec +Info 3 [00:01:17.000] For info: /user/username/projects/container/compositeExec/index.ts :: Config file name: /user/username/projects/container/compositeExec/tsconfig.json +Info 4 [00:01:18.000] Creating configuration project /user/username/projects/container/compositeExec/tsconfig.json +Info 5 [00:01:19.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/container/compositeExec/tsconfig.json 2000 undefined Project: /user/username/projects/container/compositeExec/tsconfig.json WatchType: Config file +Info 6 [00:01:20.000] Config: /user/username/projects/container/compositeExec/tsconfig.json : { "rootNames": [ "/user/username/projects/container/compositeExec/index.ts" ], @@ -371,9 +371,9 @@ Info 6 [16:01:20.000] Config: /user/username/projects/container/compositeExec } ] } -Info 7 [16:01:21.000] Plugins were requested but not running in environment that supports 'require'. Nothing will be loaded -Info 8 [16:01:22.000] Starting updateGraphWorker: Project: /user/username/projects/container/compositeExec/tsconfig.json -Info 9 [16:01:23.000] Config: /user/username/projects/container/lib/tsconfig.json : { +Info 7 [00:01:21.000] Plugins were requested but not running in environment that supports 'require'. Nothing will be loaded +Info 8 [00:01:22.000] Starting updateGraphWorker: Project: /user/username/projects/container/compositeExec/tsconfig.json +Info 9 [00:01:23.000] Config: /user/username/projects/container/lib/tsconfig.json : { "rootNames": [ "/user/username/projects/container/lib/index.ts" ], @@ -384,16 +384,16 @@ Info 9 [16:01:23.000] Config: /user/username/projects/container/lib/tsconfig. "configFilePath": "/user/username/projects/container/lib/tsconfig.json" } } -Info 10 [16:01:24.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/container/lib/tsconfig.json 2000 undefined Project: /user/username/projects/container/compositeExec/tsconfig.json WatchType: Config file -Info 11 [16:01:25.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/container/lib/index.ts 500 undefined WatchType: Closed Script info -Info 12 [16:01:26.000] FileWatcher:: Added:: WatchInfo: /a/lib/lib.d.ts 500 undefined WatchType: Closed Script info -Info 13 [16:01:27.000] 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 14 [16:01:28.000] 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 15 [16:01:29.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/container/node_modules/@types 1 undefined Project: /user/username/projects/container/compositeExec/tsconfig.json WatchType: Type roots -Info 16 [16:01:30.000] 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 17 [16:01:31.000] Finishing updateGraphWorker: Project: /user/username/projects/container/compositeExec/tsconfig.json Version: 1 structureChanged: true structureIsReused:: Not Elapsed:: *ms -Info 18 [16:01:32.000] Project '/user/username/projects/container/compositeExec/tsconfig.json' (Configured) -Info 19 [16:01:33.000] Files (3) +Info 10 [00:01:24.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/container/lib/tsconfig.json 2000 undefined Project: /user/username/projects/container/compositeExec/tsconfig.json WatchType: Config file +Info 11 [00:01:25.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/container/lib/index.ts 500 undefined WatchType: Closed Script info +Info 12 [00:01:26.000] FileWatcher:: Added:: WatchInfo: /a/lib/lib.d.ts 500 undefined WatchType: Closed Script info +Info 13 [00:01:27.000] 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 14 [00:01:28.000] 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 15 [00:01:29.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/container/node_modules/@types 1 undefined Project: /user/username/projects/container/compositeExec/tsconfig.json WatchType: Type roots +Info 16 [00:01:30.000] 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 17 [00:01:31.000] Finishing updateGraphWorker: Project: /user/username/projects/container/compositeExec/tsconfig.json Version: 1 structureChanged: true structureIsReused:: Not Elapsed:: *ms +Info 18 [00:01:32.000] Project '/user/username/projects/container/compositeExec/tsconfig.json' (Configured) +Info 19 [00:01:33.000] Files (3) /a/lib/lib.d.ts /user/username/projects/container/lib/index.ts /user/username/projects/container/compositeExec/index.ts @@ -406,24 +406,24 @@ Info 19 [16:01:33.000] Files (3) index.ts Part of 'files' list in tsconfig.json -Info 20 [16:01:34.000] ----------------------------------------------- -Info 21 [16:01:35.000] Search path: /user/username/projects/container/compositeExec -Info 22 [16:01:36.000] For info: /user/username/projects/container/compositeExec/tsconfig.json :: Config file name: /user/username/projects/container/tsconfig.json -Info 23 [16:01:37.000] Creating configuration project /user/username/projects/container/tsconfig.json -Info 24 [16:01:38.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/container/tsconfig.json 2000 undefined Project: /user/username/projects/container/tsconfig.json WatchType: Config file -Info 25 [16:01:39.000] Search path: /user/username/projects/container -Info 26 [16:01:40.000] For info: /user/username/projects/container/tsconfig.json :: No config files found. -Info 27 [16:01:41.000] Project '/user/username/projects/container/compositeExec/tsconfig.json' (Configured) -Info 27 [16:01:42.000] Files (3) - -Info 27 [16:01:43.000] ----------------------------------------------- -Info 27 [16:01:44.000] Project '/user/username/projects/container/tsconfig.json' (Configured) -Info 27 [16:01:45.000] Files (0) InitialLoadPending - -Info 27 [16:01:46.000] ----------------------------------------------- -Info 27 [16:01:47.000] Open files: -Info 27 [16:01:48.000] FileName: /user/username/projects/container/compositeExec/index.ts ProjectRootPath: undefined -Info 27 [16:01:49.000] Projects: /user/username/projects/container/compositeExec/tsconfig.json +Info 20 [00:01:34.000] ----------------------------------------------- +Info 21 [00:01:35.000] Search path: /user/username/projects/container/compositeExec +Info 22 [00:01:36.000] For info: /user/username/projects/container/compositeExec/tsconfig.json :: Config file name: /user/username/projects/container/tsconfig.json +Info 23 [00:01:37.000] Creating configuration project /user/username/projects/container/tsconfig.json +Info 24 [00:01:38.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/container/tsconfig.json 2000 undefined Project: /user/username/projects/container/tsconfig.json WatchType: Config file +Info 25 [00:01:39.000] Search path: /user/username/projects/container +Info 26 [00:01:40.000] For info: /user/username/projects/container/tsconfig.json :: No config files found. +Info 27 [00:01:41.000] Project '/user/username/projects/container/compositeExec/tsconfig.json' (Configured) +Info 27 [00:01:42.000] Files (3) + +Info 27 [00:01:43.000] ----------------------------------------------- +Info 27 [00:01:44.000] Project '/user/username/projects/container/tsconfig.json' (Configured) +Info 27 [00:01:45.000] Files (0) InitialLoadPending + +Info 27 [00:01:46.000] ----------------------------------------------- +Info 27 [00:01:47.000] Open files: +Info 27 [00:01:48.000] FileName: /user/username/projects/container/compositeExec/index.ts ProjectRootPath: undefined +Info 27 [00:01:49.000] Projects: /user/username/projects/container/compositeExec/tsconfig.json After request PolledWatches:: @@ -446,11 +446,11 @@ FsWatches:: FsWatchesRecursive:: -Info 27 [16:01:50.000] response: +Info 27 [00:01:50.000] response: { "responseRequired": false } -Info 28 [16:01:51.000] request: +Info 28 [00:01:51.000] request: { "seq": 0, "type": "request", @@ -481,17 +481,17 @@ FsWatches:: FsWatchesRecursive:: -Info 29 [16:01:52.000] Search path: /user/username/projects/temp -Info 30 [16:01:53.000] For info: /user/username/projects/temp/temp.ts :: No config files found. -Info 31 [16:01:54.000] Plugins were requested but not running in environment that supports 'require'. Nothing will be loaded -Info 32 [16:01:55.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/temp/tsconfig.json 2000 undefined WatchType: Config file for the inferred project root -Info 33 [16:01:56.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/temp/jsconfig.json 2000 undefined WatchType: Config file for the inferred project root -Info 34 [16:01:57.000] Starting updateGraphWorker: Project: /dev/null/inferredProject1* -Info 35 [16:01:58.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/temp/node_modules/@types 1 undefined Project: /dev/null/inferredProject1* WatchType: Type roots -Info 36 [16:01:59.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/temp/node_modules/@types 1 undefined Project: /dev/null/inferredProject1* WatchType: Type roots -Info 37 [16:02:00.000] Finishing updateGraphWorker: Project: /dev/null/inferredProject1* Version: 1 structureChanged: true structureIsReused:: Not Elapsed:: *ms -Info 38 [16:02:01.000] Project '/dev/null/inferredProject1*' (Inferred) -Info 39 [16:02:02.000] Files (2) +Info 29 [00:01:52.000] Search path: /user/username/projects/temp +Info 30 [00:01:53.000] For info: /user/username/projects/temp/temp.ts :: No config files found. +Info 31 [00:01:54.000] Plugins were requested but not running in environment that supports 'require'. Nothing will be loaded +Info 32 [00:01:55.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/temp/tsconfig.json 2000 undefined WatchType: Config file for the inferred project root +Info 33 [00:01:56.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/temp/jsconfig.json 2000 undefined WatchType: Config file for the inferred project root +Info 34 [00:01:57.000] Starting updateGraphWorker: Project: /dev/null/inferredProject1* +Info 35 [00:01:58.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/temp/node_modules/@types 1 undefined Project: /dev/null/inferredProject1* WatchType: Type roots +Info 36 [00:01:59.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/temp/node_modules/@types 1 undefined Project: /dev/null/inferredProject1* WatchType: Type roots +Info 37 [00:02:00.000] Finishing updateGraphWorker: Project: /dev/null/inferredProject1* Version: 1 structureChanged: true structureIsReused:: Not Elapsed:: *ms +Info 38 [00:02:01.000] Project '/dev/null/inferredProject1*' (Inferred) +Info 39 [00:02:02.000] Files (2) /a/lib/lib.d.ts /user/username/projects/temp/temp.ts @@ -501,24 +501,24 @@ Info 39 [16:02:02.000] Files (2) temp.ts Root file specified for compilation -Info 40 [16:02:03.000] ----------------------------------------------- -Info 41 [16:02:04.000] Project '/user/username/projects/container/compositeExec/tsconfig.json' (Configured) -Info 41 [16:02:05.000] Files (3) +Info 40 [00:02:03.000] ----------------------------------------------- +Info 41 [00:02:04.000] Project '/user/username/projects/container/compositeExec/tsconfig.json' (Configured) +Info 41 [00:02:05.000] Files (3) -Info 41 [16:02:06.000] ----------------------------------------------- -Info 41 [16:02:07.000] Project '/user/username/projects/container/tsconfig.json' (Configured) -Info 41 [16:02:08.000] Files (0) InitialLoadPending +Info 41 [00:02:06.000] ----------------------------------------------- +Info 41 [00:02:07.000] Project '/user/username/projects/container/tsconfig.json' (Configured) +Info 41 [00:02:08.000] Files (0) InitialLoadPending -Info 41 [16:02:09.000] ----------------------------------------------- -Info 41 [16:02:10.000] Project '/dev/null/inferredProject1*' (Inferred) -Info 41 [16:02:11.000] Files (2) +Info 41 [00:02:09.000] ----------------------------------------------- +Info 41 [00:02:10.000] Project '/dev/null/inferredProject1*' (Inferred) +Info 41 [00:02:11.000] Files (2) -Info 41 [16:02:12.000] ----------------------------------------------- -Info 41 [16:02:13.000] Open files: -Info 41 [16:02:14.000] FileName: /user/username/projects/container/compositeExec/index.ts ProjectRootPath: undefined -Info 41 [16:02:15.000] Projects: /user/username/projects/container/compositeExec/tsconfig.json -Info 41 [16:02:16.000] FileName: /user/username/projects/temp/temp.ts ProjectRootPath: undefined -Info 41 [16:02:17.000] Projects: /dev/null/inferredProject1* +Info 41 [00:02:12.000] ----------------------------------------------- +Info 41 [00:02:13.000] Open files: +Info 41 [00:02:14.000] FileName: /user/username/projects/container/compositeExec/index.ts ProjectRootPath: undefined +Info 41 [00:02:15.000] Projects: /user/username/projects/container/compositeExec/tsconfig.json +Info 41 [00:02:16.000] FileName: /user/username/projects/temp/temp.ts ProjectRootPath: undefined +Info 41 [00:02:17.000] Projects: /dev/null/inferredProject1* After request PolledWatches:: @@ -547,11 +547,11 @@ FsWatches:: FsWatchesRecursive:: -Info 41 [16:02:18.000] response: +Info 41 [00:02:18.000] response: { "responseRequired": false } -Info 42 [16:02:19.000] request: +Info 42 [00:02:19.000] request: { "command": "rename", "arguments": { @@ -590,18 +590,18 @@ FsWatches:: FsWatchesRecursive:: -Info 43 [16:02:20.000] Search path: /user/username/projects/container/lib -Info 44 [16:02:21.000] For info: /user/username/projects/container/lib/index.ts :: Config file name: /user/username/projects/container/lib/tsconfig.json -Info 45 [16:02:22.000] Creating configuration project /user/username/projects/container/lib/tsconfig.json -Info 46 [16:02:23.000] Plugins were requested but not running in environment that supports 'require'. Nothing will be loaded -Info 47 [16:02:24.000] Starting updateGraphWorker: Project: /user/username/projects/container/lib/tsconfig.json -Info 48 [16:02:25.000] 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 49 [16:02:26.000] 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 50 [16:02:27.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/container/node_modules/@types 1 undefined Project: /user/username/projects/container/lib/tsconfig.json WatchType: Type roots -Info 51 [16:02:28.000] 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 52 [16:02:29.000] Finishing updateGraphWorker: Project: /user/username/projects/container/lib/tsconfig.json Version: 1 structureChanged: true structureIsReused:: Not Elapsed:: *ms -Info 53 [16:02:30.000] Project '/user/username/projects/container/lib/tsconfig.json' (Configured) -Info 54 [16:02:31.000] Files (2) +Info 43 [00:02:20.000] Search path: /user/username/projects/container/lib +Info 44 [00:02:21.000] For info: /user/username/projects/container/lib/index.ts :: Config file name: /user/username/projects/container/lib/tsconfig.json +Info 45 [00:02:22.000] Creating configuration project /user/username/projects/container/lib/tsconfig.json +Info 46 [00:02:23.000] Plugins were requested but not running in environment that supports 'require'. Nothing will be loaded +Info 47 [00:02:24.000] Starting updateGraphWorker: Project: /user/username/projects/container/lib/tsconfig.json +Info 48 [00:02:25.000] 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 49 [00:02:26.000] 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 50 [00:02:27.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/container/node_modules/@types 1 undefined Project: /user/username/projects/container/lib/tsconfig.json WatchType: Type roots +Info 51 [00:02:28.000] 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 52 [00:02:29.000] Finishing updateGraphWorker: Project: /user/username/projects/container/lib/tsconfig.json Version: 1 structureChanged: true structureIsReused:: Not Elapsed:: *ms +Info 53 [00:02:30.000] Project '/user/username/projects/container/lib/tsconfig.json' (Configured) +Info 54 [00:02:31.000] Files (2) /a/lib/lib.d.ts /user/username/projects/container/lib/index.ts @@ -611,9 +611,9 @@ Info 54 [16:02:31.000] Files (2) index.ts Part of 'files' list in tsconfig.json -Info 55 [16:02:32.000] ----------------------------------------------- -Info 56 [16:02:33.000] Loading configured project /user/username/projects/container/tsconfig.json -Info 57 [16:02:34.000] Config: /user/username/projects/container/tsconfig.json : { +Info 55 [00:02:32.000] ----------------------------------------------- +Info 56 [00:02:33.000] Loading configured project /user/username/projects/container/tsconfig.json +Info 57 [00:02:34.000] Config: /user/username/projects/container/tsconfig.json : { "rootNames": [], "options": { "configFilePath": "/user/username/projects/container/tsconfig.json" @@ -629,9 +629,9 @@ Info 57 [16:02:34.000] Config: /user/username/projects/container/tsconfig.json } ] } -Info 58 [16:02:35.000] Plugins were requested but not running in environment that supports 'require'. Nothing will be loaded -Info 59 [16:02:36.000] Starting updateGraphWorker: Project: /user/username/projects/container/tsconfig.json -Info 60 [16:02:37.000] Config: /user/username/projects/container/exec/tsconfig.json : { +Info 58 [00:02:35.000] Plugins were requested but not running in environment that supports 'require'. Nothing will be loaded +Info 59 [00:02:36.000] Starting updateGraphWorker: Project: /user/username/projects/container/tsconfig.json +Info 60 [00:02:37.000] Config: /user/username/projects/container/exec/tsconfig.json : { "rootNames": [ "/user/username/projects/container/exec/index.ts" ], @@ -647,22 +647,22 @@ Info 60 [16:02:37.000] Config: /user/username/projects/container/exec/tsconfig } ] } -Info 61 [16:02:38.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/container/exec/tsconfig.json 2000 undefined Project: /user/username/projects/container/tsconfig.json WatchType: Config file -Info 62 [16:02:39.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/container/node_modules/@types 1 undefined Project: /user/username/projects/container/tsconfig.json WatchType: Type roots -Info 63 [16:02:40.000] 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 64 [16:02:41.000] Finishing updateGraphWorker: Project: /user/username/projects/container/tsconfig.json Version: 1 structureChanged: true structureIsReused:: Not Elapsed:: *ms -Info 65 [16:02:42.000] Different program with same set of files -Info 66 [16:02:43.000] Creating configuration project /user/username/projects/container/exec/tsconfig.json -Info 67 [16:02:44.000] Plugins were requested but not running in environment that supports 'require'. Nothing will be loaded -Info 68 [16:02:45.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/container/exec/index.ts 500 undefined WatchType: Closed Script info -Info 69 [16:02:46.000] Starting updateGraphWorker: Project: /user/username/projects/container/exec/tsconfig.json -Info 70 [16:02:47.000] 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 71 [16:02:48.000] 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 72 [16:02:49.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/container/node_modules/@types 1 undefined Project: /user/username/projects/container/exec/tsconfig.json WatchType: Type roots -Info 73 [16:02:50.000] 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 74 [16:02:51.000] Finishing updateGraphWorker: Project: /user/username/projects/container/exec/tsconfig.json Version: 1 structureChanged: true structureIsReused:: Not Elapsed:: *ms -Info 75 [16:02:52.000] Project '/user/username/projects/container/exec/tsconfig.json' (Configured) -Info 76 [16:02:53.000] Files (3) +Info 61 [00:02:38.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/container/exec/tsconfig.json 2000 undefined Project: /user/username/projects/container/tsconfig.json WatchType: Config file +Info 62 [00:02:39.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/container/node_modules/@types 1 undefined Project: /user/username/projects/container/tsconfig.json WatchType: Type roots +Info 63 [00:02:40.000] 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 64 [00:02:41.000] Finishing updateGraphWorker: Project: /user/username/projects/container/tsconfig.json Version: 1 structureChanged: true structureIsReused:: Not Elapsed:: *ms +Info 65 [00:02:42.000] Different program with same set of files +Info 66 [00:02:43.000] Creating configuration project /user/username/projects/container/exec/tsconfig.json +Info 67 [00:02:44.000] Plugins were requested but not running in environment that supports 'require'. Nothing will be loaded +Info 68 [00:02:45.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/container/exec/index.ts 500 undefined WatchType: Closed Script info +Info 69 [00:02:46.000] Starting updateGraphWorker: Project: /user/username/projects/container/exec/tsconfig.json +Info 70 [00:02:47.000] 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 71 [00:02:48.000] 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 72 [00:02:49.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/container/node_modules/@types 1 undefined Project: /user/username/projects/container/exec/tsconfig.json WatchType: Type roots +Info 73 [00:02:50.000] 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 74 [00:02:51.000] Finishing updateGraphWorker: Project: /user/username/projects/container/exec/tsconfig.json Version: 1 structureChanged: true structureIsReused:: Not Elapsed:: *ms +Info 75 [00:02:52.000] Project '/user/username/projects/container/exec/tsconfig.json' (Configured) +Info 76 [00:02:53.000] Files (3) /a/lib/lib.d.ts /user/username/projects/container/lib/index.ts /user/username/projects/container/exec/index.ts @@ -675,9 +675,9 @@ Info 76 [16:02:53.000] Files (3) index.ts Part of 'files' list in tsconfig.json -Info 77 [16:02:54.000] ----------------------------------------------- -Info 78 [16:02:55.000] Search path: /user/username/projects/container/lib -Info 79 [16:02:56.000] For info: /user/username/projects/container/lib/index.ts :: Config file name: /user/username/projects/container/lib/tsconfig.json +Info 77 [00:02:54.000] ----------------------------------------------- +Info 78 [00:02:55.000] Search path: /user/username/projects/container/lib +Info 79 [00:02:56.000] For info: /user/username/projects/container/lib/index.ts :: Config file name: /user/username/projects/container/lib/tsconfig.json After request PolledWatches:: @@ -714,7 +714,7 @@ FsWatches:: FsWatchesRecursive:: -Info 80 [16:02:57.000] response: +Info 80 [00:02:57.000] response: { "response": { "info": { @@ -792,33 +792,33 @@ Info 80 [16:02:57.000] response: }, "responseRequired": true } -Info 81 [16:02:58.000] FileWatcher:: Close:: WatchInfo: /user/username/projects/temp/tsconfig.json 2000 undefined WatchType: Config file for the inferred project root -Info 82 [16:02:59.000] FileWatcher:: Close:: WatchInfo: /user/username/projects/temp/jsconfig.json 2000 undefined WatchType: Config file for the inferred project root -Info 83 [16:03:00.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/temp/temp.ts 500 undefined WatchType: Closed Script info -Info 84 [16:03:01.000] Project '/user/username/projects/container/compositeExec/tsconfig.json' (Configured) -Info 84 [16:03:02.000] Files (3) - -Info 84 [16:03:03.000] ----------------------------------------------- -Info 84 [16:03:04.000] Project '/user/username/projects/container/tsconfig.json' (Configured) -Info 84 [16:03:05.000] Files (0) - -Info 84 [16:03:06.000] ----------------------------------------------- -Info 84 [16:03:07.000] Project '/user/username/projects/container/lib/tsconfig.json' (Configured) -Info 84 [16:03:08.000] Files (2) - -Info 84 [16:03:09.000] ----------------------------------------------- -Info 84 [16:03:10.000] Project '/user/username/projects/container/exec/tsconfig.json' (Configured) -Info 84 [16:03:11.000] Files (3) - -Info 84 [16:03:12.000] ----------------------------------------------- -Info 84 [16:03:13.000] Project '/dev/null/inferredProject1*' (Inferred) -Info 84 [16:03:14.000] Files (2) - -Info 84 [16:03:15.000] ----------------------------------------------- -Info 84 [16:03:16.000] Open files: -Info 84 [16:03:17.000] FileName: /user/username/projects/container/compositeExec/index.ts ProjectRootPath: undefined -Info 84 [16:03:18.000] Projects: /user/username/projects/container/compositeExec/tsconfig.json -Info 84 [16:03:19.000] request: +Info 81 [00:02:58.000] FileWatcher:: Close:: WatchInfo: /user/username/projects/temp/tsconfig.json 2000 undefined WatchType: Config file for the inferred project root +Info 82 [00:02:59.000] FileWatcher:: Close:: WatchInfo: /user/username/projects/temp/jsconfig.json 2000 undefined WatchType: Config file for the inferred project root +Info 83 [00:03:00.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/temp/temp.ts 500 undefined WatchType: Closed Script info +Info 84 [00:03:01.000] Project '/user/username/projects/container/compositeExec/tsconfig.json' (Configured) +Info 84 [00:03:02.000] Files (3) + +Info 84 [00:03:03.000] ----------------------------------------------- +Info 84 [00:03:04.000] Project '/user/username/projects/container/tsconfig.json' (Configured) +Info 84 [00:03:05.000] Files (0) + +Info 84 [00:03:06.000] ----------------------------------------------- +Info 84 [00:03:07.000] Project '/user/username/projects/container/lib/tsconfig.json' (Configured) +Info 84 [00:03:08.000] Files (2) + +Info 84 [00:03:09.000] ----------------------------------------------- +Info 84 [00:03:10.000] Project '/user/username/projects/container/exec/tsconfig.json' (Configured) +Info 84 [00:03:11.000] Files (3) + +Info 84 [00:03:12.000] ----------------------------------------------- +Info 84 [00:03:13.000] Project '/dev/null/inferredProject1*' (Inferred) +Info 84 [00:03:14.000] Files (2) + +Info 84 [00:03:15.000] ----------------------------------------------- +Info 84 [00:03:16.000] Open files: +Info 84 [00:03:17.000] FileName: /user/username/projects/container/compositeExec/index.ts ProjectRootPath: undefined +Info 84 [00:03:18.000] Projects: /user/username/projects/container/compositeExec/tsconfig.json +Info 84 [00:03:19.000] request: { "seq": 0, "type": "request", @@ -861,15 +861,15 @@ FsWatches:: FsWatchesRecursive:: -Info 85 [16:03:20.000] FileWatcher:: Close:: WatchInfo: /user/username/projects/temp/temp.ts 500 undefined WatchType: Closed Script info -Info 86 [16:03:21.000] Search path: /user/username/projects/temp -Info 87 [16:03:22.000] For info: /user/username/projects/temp/temp.ts :: No config files found. -Info 88 [16:03:23.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/temp/tsconfig.json 2000 undefined WatchType: Config file for the inferred project root -Info 89 [16:03:24.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/temp/jsconfig.json 2000 undefined WatchType: Config file for the inferred project root -Info 90 [16:03:25.000] Starting updateGraphWorker: Project: /dev/null/inferredProject1* -Info 91 [16:03:26.000] Finishing updateGraphWorker: Project: /dev/null/inferredProject1* Version: 2 structureChanged: false structureIsReused:: Not Elapsed:: *ms -Info 92 [16:03:27.000] Project '/dev/null/inferredProject1*' (Inferred) -Info 93 [16:03:28.000] Files (2) +Info 85 [00:03:20.000] FileWatcher:: Close:: WatchInfo: /user/username/projects/temp/temp.ts 500 undefined WatchType: Closed Script info +Info 86 [00:03:21.000] Search path: /user/username/projects/temp +Info 87 [00:03:22.000] For info: /user/username/projects/temp/temp.ts :: No config files found. +Info 88 [00:03:23.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/temp/tsconfig.json 2000 undefined WatchType: Config file for the inferred project root +Info 89 [00:03:24.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/temp/jsconfig.json 2000 undefined WatchType: Config file for the inferred project root +Info 90 [00:03:25.000] Starting updateGraphWorker: Project: /dev/null/inferredProject1* +Info 91 [00:03:26.000] Finishing updateGraphWorker: Project: /dev/null/inferredProject1* Version: 2 structureChanged: false structureIsReused:: Not Elapsed:: *ms +Info 92 [00:03:27.000] Project '/dev/null/inferredProject1*' (Inferred) +Info 93 [00:03:28.000] Files (2) /a/lib/lib.d.ts /user/username/projects/temp/temp.ts @@ -879,32 +879,32 @@ Info 93 [16:03:28.000] Files (2) temp.ts Root file specified for compilation -Info 94 [16:03:29.000] ----------------------------------------------- -Info 95 [16:03:30.000] Project '/user/username/projects/container/compositeExec/tsconfig.json' (Configured) -Info 95 [16:03:31.000] Files (3) +Info 94 [00:03:29.000] ----------------------------------------------- +Info 95 [00:03:30.000] Project '/user/username/projects/container/compositeExec/tsconfig.json' (Configured) +Info 95 [00:03:31.000] Files (3) -Info 95 [16:03:32.000] ----------------------------------------------- -Info 95 [16:03:33.000] Project '/user/username/projects/container/tsconfig.json' (Configured) -Info 95 [16:03:34.000] Files (0) +Info 95 [00:03:32.000] ----------------------------------------------- +Info 95 [00:03:33.000] Project '/user/username/projects/container/tsconfig.json' (Configured) +Info 95 [00:03:34.000] Files (0) -Info 95 [16:03:35.000] ----------------------------------------------- -Info 95 [16:03:36.000] Project '/user/username/projects/container/lib/tsconfig.json' (Configured) -Info 95 [16:03:37.000] Files (2) +Info 95 [00:03:35.000] ----------------------------------------------- +Info 95 [00:03:36.000] Project '/user/username/projects/container/lib/tsconfig.json' (Configured) +Info 95 [00:03:37.000] Files (2) -Info 95 [16:03:38.000] ----------------------------------------------- -Info 95 [16:03:39.000] Project '/user/username/projects/container/exec/tsconfig.json' (Configured) -Info 95 [16:03:40.000] Files (3) +Info 95 [00:03:38.000] ----------------------------------------------- +Info 95 [00:03:39.000] Project '/user/username/projects/container/exec/tsconfig.json' (Configured) +Info 95 [00:03:40.000] Files (3) -Info 95 [16:03:41.000] ----------------------------------------------- -Info 95 [16:03:42.000] Project '/dev/null/inferredProject1*' (Inferred) -Info 95 [16:03:43.000] Files (2) +Info 95 [00:03:41.000] ----------------------------------------------- +Info 95 [00:03:42.000] Project '/dev/null/inferredProject1*' (Inferred) +Info 95 [00:03:43.000] Files (2) -Info 95 [16:03:44.000] ----------------------------------------------- -Info 95 [16:03:45.000] Open files: -Info 95 [16:03:46.000] FileName: /user/username/projects/container/compositeExec/index.ts ProjectRootPath: undefined -Info 95 [16:03:47.000] Projects: /user/username/projects/container/compositeExec/tsconfig.json -Info 95 [16:03:48.000] FileName: /user/username/projects/temp/temp.ts ProjectRootPath: undefined -Info 95 [16:03:49.000] Projects: /dev/null/inferredProject1* +Info 95 [00:03:44.000] ----------------------------------------------- +Info 95 [00:03:45.000] Open files: +Info 95 [00:03:46.000] FileName: /user/username/projects/container/compositeExec/index.ts ProjectRootPath: undefined +Info 95 [00:03:47.000] Projects: /user/username/projects/container/compositeExec/tsconfig.json +Info 95 [00:03:48.000] FileName: /user/username/projects/temp/temp.ts ProjectRootPath: undefined +Info 95 [00:03:49.000] Projects: /dev/null/inferredProject1* After request PolledWatches:: @@ -941,59 +941,59 @@ FsWatches:: FsWatchesRecursive:: -Info 95 [16:03:50.000] response: +Info 95 [00:03:50.000] response: { "responseRequired": false } -Info 96 [16:03:51.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/container/compositeExec/index.ts 500 undefined WatchType: Closed Script info -Info 97 [16:03:52.000] Project '/user/username/projects/container/compositeExec/tsconfig.json' (Configured) -Info 97 [16:03:53.000] Files (3) - -Info 97 [16:03:54.000] ----------------------------------------------- -Info 97 [16:03:55.000] Project '/user/username/projects/container/tsconfig.json' (Configured) -Info 97 [16:03:56.000] Files (0) - -Info 97 [16:03:57.000] ----------------------------------------------- -Info 97 [16:03:58.000] Project '/user/username/projects/container/lib/tsconfig.json' (Configured) -Info 97 [16:03:59.000] Files (2) - -Info 97 [16:04:00.000] ----------------------------------------------- -Info 97 [16:04:01.000] Project '/user/username/projects/container/exec/tsconfig.json' (Configured) -Info 97 [16:04:02.000] Files (3) - -Info 97 [16:04:03.000] ----------------------------------------------- -Info 97 [16:04:04.000] Project '/dev/null/inferredProject1*' (Inferred) -Info 97 [16:04:05.000] Files (2) - -Info 97 [16:04:06.000] ----------------------------------------------- -Info 97 [16:04:07.000] Open files: -Info 97 [16:04:08.000] FileName: /user/username/projects/temp/temp.ts ProjectRootPath: undefined -Info 97 [16:04:09.000] Projects: /dev/null/inferredProject1* -Info 97 [16:04:10.000] FileWatcher:: Close:: WatchInfo: /user/username/projects/temp/tsconfig.json 2000 undefined WatchType: Config file for the inferred project root -Info 98 [16:04:11.000] FileWatcher:: Close:: WatchInfo: /user/username/projects/temp/jsconfig.json 2000 undefined WatchType: Config file for the inferred project root -Info 99 [16:04:12.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/temp/temp.ts 500 undefined WatchType: Closed Script info -Info 100 [16:04:13.000] Project '/user/username/projects/container/compositeExec/tsconfig.json' (Configured) -Info 100 [16:04:14.000] Files (3) - -Info 100 [16:04:15.000] ----------------------------------------------- -Info 100 [16:04:16.000] Project '/user/username/projects/container/tsconfig.json' (Configured) -Info 100 [16:04:17.000] Files (0) - -Info 100 [16:04:18.000] ----------------------------------------------- -Info 100 [16:04:19.000] Project '/user/username/projects/container/lib/tsconfig.json' (Configured) -Info 100 [16:04:20.000] Files (2) - -Info 100 [16:04:21.000] ----------------------------------------------- -Info 100 [16:04:22.000] Project '/user/username/projects/container/exec/tsconfig.json' (Configured) -Info 100 [16:04:23.000] Files (3) - -Info 100 [16:04:24.000] ----------------------------------------------- -Info 100 [16:04:25.000] Project '/dev/null/inferredProject1*' (Inferred) -Info 100 [16:04:26.000] Files (2) - -Info 100 [16:04:27.000] ----------------------------------------------- -Info 100 [16:04:28.000] Open files: -Info 100 [16:04:29.000] request: +Info 96 [00:03:51.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/container/compositeExec/index.ts 500 undefined WatchType: Closed Script info +Info 97 [00:03:52.000] Project '/user/username/projects/container/compositeExec/tsconfig.json' (Configured) +Info 97 [00:03:53.000] Files (3) + +Info 97 [00:03:54.000] ----------------------------------------------- +Info 97 [00:03:55.000] Project '/user/username/projects/container/tsconfig.json' (Configured) +Info 97 [00:03:56.000] Files (0) + +Info 97 [00:03:57.000] ----------------------------------------------- +Info 97 [00:03:58.000] Project '/user/username/projects/container/lib/tsconfig.json' (Configured) +Info 97 [00:03:59.000] Files (2) + +Info 97 [00:04:00.000] ----------------------------------------------- +Info 97 [00:04:01.000] Project '/user/username/projects/container/exec/tsconfig.json' (Configured) +Info 97 [00:04:02.000] Files (3) + +Info 97 [00:04:03.000] ----------------------------------------------- +Info 97 [00:04:04.000] Project '/dev/null/inferredProject1*' (Inferred) +Info 97 [00:04:05.000] Files (2) + +Info 97 [00:04:06.000] ----------------------------------------------- +Info 97 [00:04:07.000] Open files: +Info 97 [00:04:08.000] FileName: /user/username/projects/temp/temp.ts ProjectRootPath: undefined +Info 97 [00:04:09.000] Projects: /dev/null/inferredProject1* +Info 97 [00:04:10.000] FileWatcher:: Close:: WatchInfo: /user/username/projects/temp/tsconfig.json 2000 undefined WatchType: Config file for the inferred project root +Info 98 [00:04:11.000] FileWatcher:: Close:: WatchInfo: /user/username/projects/temp/jsconfig.json 2000 undefined WatchType: Config file for the inferred project root +Info 99 [00:04:12.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/temp/temp.ts 500 undefined WatchType: Closed Script info +Info 100 [00:04:13.000] Project '/user/username/projects/container/compositeExec/tsconfig.json' (Configured) +Info 100 [00:04:14.000] Files (3) + +Info 100 [00:04:15.000] ----------------------------------------------- +Info 100 [00:04:16.000] Project '/user/username/projects/container/tsconfig.json' (Configured) +Info 100 [00:04:17.000] Files (0) + +Info 100 [00:04:18.000] ----------------------------------------------- +Info 100 [00:04:19.000] Project '/user/username/projects/container/lib/tsconfig.json' (Configured) +Info 100 [00:04:20.000] Files (2) + +Info 100 [00:04:21.000] ----------------------------------------------- +Info 100 [00:04:22.000] Project '/user/username/projects/container/exec/tsconfig.json' (Configured) +Info 100 [00:04:23.000] Files (3) + +Info 100 [00:04:24.000] ----------------------------------------------- +Info 100 [00:04:25.000] Project '/dev/null/inferredProject1*' (Inferred) +Info 100 [00:04:26.000] Files (2) + +Info 100 [00:04:27.000] ----------------------------------------------- +Info 100 [00:04:28.000] Open files: +Info 100 [00:04:29.000] request: { "seq": 0, "type": "request", @@ -1038,15 +1038,15 @@ FsWatches:: FsWatchesRecursive:: -Info 101 [16:04:30.000] FileWatcher:: Close:: WatchInfo: /user/username/projects/temp/temp.ts 500 undefined WatchType: Closed Script info -Info 102 [16:04:31.000] Search path: /user/username/projects/temp -Info 103 [16:04:32.000] For info: /user/username/projects/temp/temp.ts :: No config files found. -Info 104 [16:04:33.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/temp/tsconfig.json 2000 undefined WatchType: Config file for the inferred project root -Info 105 [16:04:34.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/temp/jsconfig.json 2000 undefined WatchType: Config file for the inferred project root -Info 106 [16:04:35.000] Starting updateGraphWorker: Project: /dev/null/inferredProject1* -Info 107 [16:04:36.000] Finishing updateGraphWorker: Project: /dev/null/inferredProject1* Version: 3 structureChanged: false structureIsReused:: Not Elapsed:: *ms -Info 108 [16:04:37.000] Project '/dev/null/inferredProject1*' (Inferred) -Info 109 [16:04:38.000] Files (2) +Info 101 [00:04:30.000] FileWatcher:: Close:: WatchInfo: /user/username/projects/temp/temp.ts 500 undefined WatchType: Closed Script info +Info 102 [00:04:31.000] Search path: /user/username/projects/temp +Info 103 [00:04:32.000] For info: /user/username/projects/temp/temp.ts :: No config files found. +Info 104 [00:04:33.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/temp/tsconfig.json 2000 undefined WatchType: Config file for the inferred project root +Info 105 [00:04:34.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/temp/jsconfig.json 2000 undefined WatchType: Config file for the inferred project root +Info 106 [00:04:35.000] Starting updateGraphWorker: Project: /dev/null/inferredProject1* +Info 107 [00:04:36.000] Finishing updateGraphWorker: Project: /dev/null/inferredProject1* Version: 3 structureChanged: false structureIsReused:: Not Elapsed:: *ms +Info 108 [00:04:37.000] Project '/dev/null/inferredProject1*' (Inferred) +Info 109 [00:04:38.000] Files (2) /a/lib/lib.d.ts /user/username/projects/temp/temp.ts @@ -1056,10 +1056,10 @@ Info 109 [16:04:38.000] Files (2) temp.ts Root file specified for compilation -Info 110 [16:04:39.000] ----------------------------------------------- -Info 111 [16:04:40.000] `remove Project:: -Info 112 [16:04:41.000] Project '/user/username/projects/container/compositeExec/tsconfig.json' (Configured) -Info 113 [16:04:42.000] Files (3) +Info 110 [00:04:39.000] ----------------------------------------------- +Info 111 [00:04:40.000] `remove Project:: +Info 112 [00:04:41.000] Project '/user/username/projects/container/compositeExec/tsconfig.json' (Configured) +Info 113 [00:04:42.000] Files (3) /a/lib/lib.d.ts /user/username/projects/container/lib/index.ts /user/username/projects/container/compositeExec/index.ts @@ -1072,25 +1072,25 @@ Info 113 [16:04:42.000] Files (3) index.ts Part of 'files' list in tsconfig.json -Info 114 [16:04:43.000] ----------------------------------------------- -Info 115 [16:04:44.000] 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 116 [16:04:45.000] 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 117 [16:04:46.000] DirectoryWatcher:: Close:: WatchInfo: /user/username/projects/container/node_modules/@types 1 undefined Project: /user/username/projects/container/compositeExec/tsconfig.json WatchType: Type roots -Info 118 [16:04:47.000] 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 119 [16:04:48.000] `remove Project:: -Info 120 [16:04:49.000] Project '/user/username/projects/container/tsconfig.json' (Configured) -Info 121 [16:04:50.000] Files (0) +Info 114 [00:04:43.000] ----------------------------------------------- +Info 115 [00:04:44.000] 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 116 [00:04:45.000] 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 117 [00:04:46.000] DirectoryWatcher:: Close:: WatchInfo: /user/username/projects/container/node_modules/@types 1 undefined Project: /user/username/projects/container/compositeExec/tsconfig.json WatchType: Type roots +Info 118 [00:04:47.000] 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 119 [00:04:48.000] `remove Project:: +Info 120 [00:04:49.000] Project '/user/username/projects/container/tsconfig.json' (Configured) +Info 121 [00:04:50.000] Files (0) -Info 122 [16:04:51.000] ----------------------------------------------- -Info 123 [16:04:52.000] FileWatcher:: Close:: WatchInfo: /user/username/projects/container/compositeExec/tsconfig.json 2000 undefined Project: /user/username/projects/container/compositeExec/tsconfig.json WatchType: Config file -Info 124 [16:04:53.000] FileWatcher:: Close:: WatchInfo: /user/username/projects/container/tsconfig.json 2000 undefined Project: /user/username/projects/container/tsconfig.json WatchType: Config file -Info 125 [16:04:54.000] DirectoryWatcher:: Close:: WatchInfo: /user/username/projects/container/node_modules/@types 1 undefined Project: /user/username/projects/container/tsconfig.json WatchType: Type roots -Info 126 [16:04:55.000] 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 127 [16:04:56.000] `remove Project:: -Info 128 [16:04:57.000] Project '/user/username/projects/container/lib/tsconfig.json' (Configured) -Info 129 [16:04:58.000] Files (2) +Info 122 [00:04:51.000] ----------------------------------------------- +Info 123 [00:04:52.000] FileWatcher:: Close:: WatchInfo: /user/username/projects/container/compositeExec/tsconfig.json 2000 undefined Project: /user/username/projects/container/compositeExec/tsconfig.json WatchType: Config file +Info 124 [00:04:53.000] FileWatcher:: Close:: WatchInfo: /user/username/projects/container/tsconfig.json 2000 undefined Project: /user/username/projects/container/tsconfig.json WatchType: Config file +Info 125 [00:04:54.000] DirectoryWatcher:: Close:: WatchInfo: /user/username/projects/container/node_modules/@types 1 undefined Project: /user/username/projects/container/tsconfig.json WatchType: Type roots +Info 126 [00:04:55.000] 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 127 [00:04:56.000] `remove Project:: +Info 128 [00:04:57.000] Project '/user/username/projects/container/lib/tsconfig.json' (Configured) +Info 129 [00:04:58.000] Files (2) /a/lib/lib.d.ts /user/username/projects/container/lib/index.ts @@ -1100,14 +1100,14 @@ Info 129 [16:04:58.000] Files (2) index.ts Part of 'files' list in tsconfig.json -Info 130 [16:04:59.000] ----------------------------------------------- -Info 131 [16:05:00.000] 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 132 [16:05:01.000] 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 133 [16:05:02.000] DirectoryWatcher:: Close:: WatchInfo: /user/username/projects/container/node_modules/@types 1 undefined Project: /user/username/projects/container/lib/tsconfig.json WatchType: Type roots -Info 134 [16:05:03.000] 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 135 [16:05:04.000] `remove Project:: -Info 136 [16:05:05.000] Project '/user/username/projects/container/exec/tsconfig.json' (Configured) -Info 137 [16:05:06.000] Files (3) +Info 130 [00:04:59.000] ----------------------------------------------- +Info 131 [00:05:00.000] 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 132 [00:05:01.000] 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 133 [00:05:02.000] DirectoryWatcher:: Close:: WatchInfo: /user/username/projects/container/node_modules/@types 1 undefined Project: /user/username/projects/container/lib/tsconfig.json WatchType: Type roots +Info 134 [00:05:03.000] 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 135 [00:05:04.000] `remove Project:: +Info 136 [00:05:05.000] Project '/user/username/projects/container/exec/tsconfig.json' (Configured) +Info 137 [00:05:06.000] Files (3) /a/lib/lib.d.ts /user/username/projects/container/lib/index.ts /user/username/projects/container/exec/index.ts @@ -1120,23 +1120,23 @@ Info 137 [16:05:06.000] Files (3) index.ts Part of 'files' list in tsconfig.json -Info 138 [16:05:07.000] ----------------------------------------------- -Info 139 [16:05:08.000] FileWatcher:: Close:: WatchInfo: /user/username/projects/container/lib/tsconfig.json 2000 undefined Project: /user/username/projects/container/compositeExec/tsconfig.json WatchType: Config file -Info 140 [16:05:09.000] FileWatcher:: Close:: WatchInfo: /user/username/projects/container/exec/tsconfig.json 2000 undefined Project: /user/username/projects/container/tsconfig.json WatchType: Config file -Info 141 [16:05:10.000] 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 142 [16:05:11.000] 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 143 [16:05:12.000] DirectoryWatcher:: Close:: WatchInfo: /user/username/projects/container/node_modules/@types 1 undefined Project: /user/username/projects/container/exec/tsconfig.json WatchType: Type roots -Info 144 [16:05:13.000] 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 145 [16:05:14.000] FileWatcher:: Close:: WatchInfo: /user/username/projects/container/compositeExec/index.ts 500 undefined WatchType: Closed Script info -Info 146 [16:05:15.000] FileWatcher:: Close:: WatchInfo: /user/username/projects/container/lib/index.ts 500 undefined WatchType: Closed Script info -Info 147 [16:05:16.000] FileWatcher:: Close:: WatchInfo: /user/username/projects/container/exec/index.ts 500 undefined WatchType: Closed Script info -Info 148 [16:05:17.000] Project '/dev/null/inferredProject1*' (Inferred) -Info 148 [16:05:18.000] Files (2) - -Info 148 [16:05:19.000] ----------------------------------------------- -Info 148 [16:05:20.000] Open files: -Info 148 [16:05:21.000] FileName: /user/username/projects/temp/temp.ts ProjectRootPath: undefined -Info 148 [16:05:22.000] Projects: /dev/null/inferredProject1* +Info 138 [00:05:07.000] ----------------------------------------------- +Info 139 [00:05:08.000] FileWatcher:: Close:: WatchInfo: /user/username/projects/container/lib/tsconfig.json 2000 undefined Project: /user/username/projects/container/compositeExec/tsconfig.json WatchType: Config file +Info 140 [00:05:09.000] FileWatcher:: Close:: WatchInfo: /user/username/projects/container/exec/tsconfig.json 2000 undefined Project: /user/username/projects/container/tsconfig.json WatchType: Config file +Info 141 [00:05:10.000] 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 142 [00:05:11.000] 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 143 [00:05:12.000] DirectoryWatcher:: Close:: WatchInfo: /user/username/projects/container/node_modules/@types 1 undefined Project: /user/username/projects/container/exec/tsconfig.json WatchType: Type roots +Info 144 [00:05:13.000] 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 145 [00:05:14.000] FileWatcher:: Close:: WatchInfo: /user/username/projects/container/compositeExec/index.ts 500 undefined WatchType: Closed Script info +Info 146 [00:05:15.000] FileWatcher:: Close:: WatchInfo: /user/username/projects/container/lib/index.ts 500 undefined WatchType: Closed Script info +Info 147 [00:05:16.000] FileWatcher:: Close:: WatchInfo: /user/username/projects/container/exec/index.ts 500 undefined WatchType: Closed Script info +Info 148 [00:05:17.000] Project '/dev/null/inferredProject1*' (Inferred) +Info 148 [00:05:18.000] Files (2) + +Info 148 [00:05:19.000] ----------------------------------------------- +Info 148 [00:05:20.000] Open files: +Info 148 [00:05:21.000] FileName: /user/username/projects/temp/temp.ts ProjectRootPath: undefined +Info 148 [00:05:22.000] Projects: /dev/null/inferredProject1* After request PolledWatches:: @@ -1153,7 +1153,7 @@ FsWatches:: FsWatchesRecursive:: -Info 148 [16:05:23.000] response: +Info 148 [00:05:23.000] response: { "responseRequired": false } \ No newline at end of file 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 d35da22a4e04e..b365fc49f5f9d 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 @@ -1,5 +1,5 @@ -Info 0 [16:01:11.000] Provided types map file "/a/lib/typesMap.json" doesn't exist -Info 1 [16:01:12.000] request: +Info 0 [00:01:11.000] Provided types map file "/a/lib/typesMap.json" doesn't exist +Info 1 [00:01:12.000] request: { "seq": 0, "type": "request", @@ -192,11 +192,11 @@ FsWatches:: FsWatchesRecursive:: -Info 2 [16:01:13.000] Search path: /user/username/projects/myproject/app/src/program -Info 3 [16:01:14.000] For info: /user/username/projects/myproject/app/src/program/index.ts :: Config file name: /user/username/projects/myproject/app/src/program/tsconfig.json -Info 4 [16:01:15.000] Creating configuration project /user/username/projects/myproject/app/src/program/tsconfig.json -Info 5 [16:01:16.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/app/src/program/tsconfig.json 2000 undefined Project: /user/username/projects/myproject/app/src/program/tsconfig.json WatchType: Config file -Info 6 [16:01:17.000] Config: /user/username/projects/myproject/app/src/program/tsconfig.json : { +Info 2 [00:01:13.000] Search path: /user/username/projects/myproject/app/src/program +Info 3 [00:01:14.000] For info: /user/username/projects/myproject/app/src/program/index.ts :: Config file name: /user/username/projects/myproject/app/src/program/tsconfig.json +Info 4 [00:01:15.000] Creating configuration project /user/username/projects/myproject/app/src/program/tsconfig.json +Info 5 [00:01:16.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/app/src/program/tsconfig.json 2000 undefined Project: /user/username/projects/myproject/app/src/program/tsconfig.json WatchType: Config file +Info 6 [00:01:17.000] Config: /user/username/projects/myproject/app/src/program/tsconfig.json : { "rootNames": [ "/user/username/projects/myproject/app/src/program/bar.ts", "/user/username/projects/myproject/app/src/program/index.ts" @@ -214,12 +214,12 @@ Info 6 [16:01:17.000] Config: /user/username/projects/myproject/app/src/progr } ] } -Info 7 [16:01:18.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/app/src/program 1 undefined Config: /user/username/projects/myproject/app/src/program/tsconfig.json WatchType: Wild card directory -Info 8 [16:01:19.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/app/src/program 1 undefined Config: /user/username/projects/myproject/app/src/program/tsconfig.json WatchType: Wild card directory -Info 9 [16:01:20.000] Plugins were requested but not running in environment that supports 'require'. Nothing will be loaded -Info 10 [16:01:21.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/app/src/program/bar.ts 500 undefined WatchType: Closed Script info -Info 11 [16:01:22.000] Starting updateGraphWorker: Project: /user/username/projects/myproject/app/src/program/tsconfig.json -Info 12 [16:01:23.000] Config: /user/username/projects/myproject/shared/src/library/tsconfig.json : { +Info 7 [00:01:18.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/app/src/program 1 undefined Config: /user/username/projects/myproject/app/src/program/tsconfig.json WatchType: Wild card directory +Info 8 [00:01:19.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/app/src/program 1 undefined Config: /user/username/projects/myproject/app/src/program/tsconfig.json WatchType: Wild card directory +Info 9 [00:01:20.000] Plugins were requested but not running in environment that supports 'require'. Nothing will be loaded +Info 10 [00:01:21.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/app/src/program/bar.ts 500 undefined WatchType: Closed Script info +Info 11 [00:01:22.000] Starting updateGraphWorker: Project: /user/username/projects/myproject/app/src/program/tsconfig.json +Info 12 [00:01:23.000] Config: /user/username/projects/myproject/shared/src/library/tsconfig.json : { "rootNames": [ "/user/username/projects/myproject/shared/src/library/index.ts" ], @@ -229,31 +229,31 @@ Info 12 [16:01:23.000] Config: /user/username/projects/myproject/shared/src/li "configFilePath": "/user/username/projects/myproject/shared/src/library/tsconfig.json" } } -Info 13 [16:01:24.000] 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 14 [16:01:25.000] 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 15 [16:01:26.000] 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 16 [16:01:27.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/shared/bld/library/index.d.ts 500 undefined WatchType: Closed Script info -Info 17 [16:01:28.000] FileWatcher:: Added:: WatchInfo: /a/lib/lib.d.ts 500 undefined WatchType: Closed Script info -Info 18 [16:01:29.000] 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 19 [16:01:30.000] 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 20 [16:01:31.000] 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 -Info 21 [16:01:32.000] Elapsed:: *ms 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 -Info 22 [16:01:33.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/app/node_modules 1 undefined Project: /user/username/projects/myproject/app/src/program/tsconfig.json WatchType: Failed Lookup Locations -Info 23 [16:01:34.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/app/node_modules 1 undefined Project: /user/username/projects/myproject/app/src/program/tsconfig.json WatchType: Failed Lookup Locations -Info 24 [16:01:35.000] 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 25 [16:01:36.000] 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 26 [16:01:37.000] 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 27 [16:01:38.000] 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 28 [16:01:39.000] 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 29 [16:01:40.000] 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 -Info 30 [16:01:41.000] Elapsed:: *ms 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 -Info 31 [16:01:42.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/app/node_modules/@types 1 undefined Project: /user/username/projects/myproject/app/src/program/tsconfig.json WatchType: Type roots -Info 32 [16:01:43.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/app/node_modules/@types 1 undefined Project: /user/username/projects/myproject/app/src/program/tsconfig.json WatchType: Type roots -Info 33 [16:01:44.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/app/src/program/tsconfig.json WatchType: Type roots -Info 34 [16:01:45.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/app/src/program/tsconfig.json WatchType: Type roots -Info 35 [16:01:46.000] Finishing updateGraphWorker: Project: /user/username/projects/myproject/app/src/program/tsconfig.json Version: 1 structureChanged: true structureIsReused:: Not Elapsed:: *ms -Info 36 [16:01:47.000] Project '/user/username/projects/myproject/app/src/program/tsconfig.json' (Configured) -Info 37 [16:01:48.000] Files (4) +Info 13 [00:01:24.000] 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 14 [00:01:25.000] 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 15 [00:01:26.000] 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 16 [00:01:27.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/shared/bld/library/index.d.ts 500 undefined WatchType: Closed Script info +Info 17 [00:01:28.000] FileWatcher:: Added:: WatchInfo: /a/lib/lib.d.ts 500 undefined WatchType: Closed Script info +Info 18 [00:01:29.000] 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 19 [00:01:30.000] 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 20 [00:01:31.000] 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 +Info 21 [00:01:32.000] Elapsed:: *ms 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 +Info 22 [00:01:33.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/app/node_modules 1 undefined Project: /user/username/projects/myproject/app/src/program/tsconfig.json WatchType: Failed Lookup Locations +Info 23 [00:01:34.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/app/node_modules 1 undefined Project: /user/username/projects/myproject/app/src/program/tsconfig.json WatchType: Failed Lookup Locations +Info 24 [00:01:35.000] 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 25 [00:01:36.000] 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 26 [00:01:37.000] 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 27 [00:01:38.000] 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 28 [00:01:39.000] 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 29 [00:01:40.000] 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 +Info 30 [00:01:41.000] Elapsed:: *ms 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 +Info 31 [00:01:42.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/app/node_modules/@types 1 undefined Project: /user/username/projects/myproject/app/src/program/tsconfig.json WatchType: Type roots +Info 32 [00:01:43.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/app/node_modules/@types 1 undefined Project: /user/username/projects/myproject/app/src/program/tsconfig.json WatchType: Type roots +Info 33 [00:01:44.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/app/src/program/tsconfig.json WatchType: Type roots +Info 34 [00:01:45.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/app/src/program/tsconfig.json WatchType: Type roots +Info 35 [00:01:46.000] Finishing updateGraphWorker: Project: /user/username/projects/myproject/app/src/program/tsconfig.json Version: 1 structureChanged: true structureIsReused:: Not Elapsed:: *ms +Info 36 [00:01:47.000] Project '/user/username/projects/myproject/app/src/program/tsconfig.json' (Configured) +Info 37 [00:01:48.000] Files (4) /a/lib/lib.d.ts /user/username/projects/myproject/shared/bld/library/index.d.ts /user/username/projects/myproject/app/src/program/bar.ts @@ -269,24 +269,24 @@ Info 37 [16:01:48.000] Files (4) index.ts Matched by default include pattern '**/*' -Info 38 [16:01:49.000] ----------------------------------------------- -Info 39 [16:01:50.000] Search path: /user/username/projects/myproject/app/src/program -Info 40 [16:01:51.000] For info: /user/username/projects/myproject/app/src/program/tsconfig.json :: Config file name: /user/username/projects/myproject/tsconfig.json -Info 41 [16:01:52.000] Creating configuration project /user/username/projects/myproject/tsconfig.json -Info 42 [16:01:53.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/tsconfig.json 2000 undefined Project: /user/username/projects/myproject/tsconfig.json WatchType: Config file -Info 43 [16:01:54.000] Search path: /user/username/projects/myproject -Info 44 [16:01:55.000] For info: /user/username/projects/myproject/tsconfig.json :: No config files found. -Info 45 [16:01:56.000] Project '/user/username/projects/myproject/app/src/program/tsconfig.json' (Configured) -Info 45 [16:01:57.000] Files (4) - -Info 45 [16:01:58.000] ----------------------------------------------- -Info 45 [16:01:59.000] Project '/user/username/projects/myproject/tsconfig.json' (Configured) -Info 45 [16:02:00.000] Files (0) InitialLoadPending - -Info 45 [16:02:01.000] ----------------------------------------------- -Info 45 [16:02:02.000] Open files: -Info 45 [16:02:03.000] FileName: /user/username/projects/myproject/app/src/program/index.ts ProjectRootPath: undefined -Info 45 [16:02:04.000] Projects: /user/username/projects/myproject/app/src/program/tsconfig.json +Info 38 [00:01:49.000] ----------------------------------------------- +Info 39 [00:01:50.000] Search path: /user/username/projects/myproject/app/src/program +Info 40 [00:01:51.000] For info: /user/username/projects/myproject/app/src/program/tsconfig.json :: Config file name: /user/username/projects/myproject/tsconfig.json +Info 41 [00:01:52.000] Creating configuration project /user/username/projects/myproject/tsconfig.json +Info 42 [00:01:53.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/tsconfig.json 2000 undefined Project: /user/username/projects/myproject/tsconfig.json WatchType: Config file +Info 43 [00:01:54.000] Search path: /user/username/projects/myproject +Info 44 [00:01:55.000] For info: /user/username/projects/myproject/tsconfig.json :: No config files found. +Info 45 [00:01:56.000] Project '/user/username/projects/myproject/app/src/program/tsconfig.json' (Configured) +Info 45 [00:01:57.000] Files (4) + +Info 45 [00:01:58.000] ----------------------------------------------- +Info 45 [00:01:59.000] Project '/user/username/projects/myproject/tsconfig.json' (Configured) +Info 45 [00:02:00.000] Files (0) InitialLoadPending + +Info 45 [00:02:01.000] ----------------------------------------------- +Info 45 [00:02:02.000] Open files: +Info 45 [00:02:03.000] FileName: /user/username/projects/myproject/app/src/program/index.ts ProjectRootPath: undefined +Info 45 [00:02:04.000] Projects: /user/username/projects/myproject/app/src/program/tsconfig.json After request PolledWatches:: @@ -329,11 +329,11 @@ FsWatchesRecursive:: /user/username/projects/myproject/node_modules: {} -Info 45 [16:02:05.000] response: +Info 45 [00:02:05.000] response: { "responseRequired": false } -Info 46 [16:02:06.000] request: +Info 46 [00:02:06.000] request: { "command": "getCodeFixes", "arguments": { @@ -391,8 +391,8 @@ FsWatchesRecursive:: /user/username/projects/myproject/node_modules: {} -Info 47 [16:02:07.000] 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 48 [16:02:08.000] 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 47 [00:02:07.000] 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 48 [00:02:08.000] 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 After request PolledWatches:: @@ -435,7 +435,7 @@ FsWatchesRecursive:: /user/username/projects/myproject/node_modules: {} -Info 49 [16:02:09.000] response: +Info 49 [00:02:09.000] response: { "response": [ { 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 8c05d213312c7..8078516f86c91 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 @@ -1,5 +1,5 @@ -Info 0 [16:01:11.000] Provided types map file "/a/lib/typesMap.json" doesn't exist -Info 1 [16:01:12.000] request: +Info 0 [00:01:11.000] Provided types map file "/a/lib/typesMap.json" doesn't exist +Info 1 [00:01:12.000] request: { "seq": 0, "type": "request", @@ -192,11 +192,11 @@ FsWatches:: FsWatchesRecursive:: -Info 2 [16:01:13.000] Search path: /user/username/projects/myproject/app/src/program -Info 3 [16:01:14.000] For info: /user/username/projects/myproject/app/src/program/index.ts :: Config file name: /user/username/projects/myproject/app/src/program/tsconfig.json -Info 4 [16:01:15.000] Creating configuration project /user/username/projects/myproject/app/src/program/tsconfig.json -Info 5 [16:01:16.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/app/src/program/tsconfig.json 2000 undefined Project: /user/username/projects/myproject/app/src/program/tsconfig.json WatchType: Config file -Info 6 [16:01:17.000] Config: /user/username/projects/myproject/app/src/program/tsconfig.json : { +Info 2 [00:01:13.000] Search path: /user/username/projects/myproject/app/src/program +Info 3 [00:01:14.000] For info: /user/username/projects/myproject/app/src/program/index.ts :: Config file name: /user/username/projects/myproject/app/src/program/tsconfig.json +Info 4 [00:01:15.000] Creating configuration project /user/username/projects/myproject/app/src/program/tsconfig.json +Info 5 [00:01:16.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/app/src/program/tsconfig.json 2000 undefined Project: /user/username/projects/myproject/app/src/program/tsconfig.json WatchType: Config file +Info 6 [00:01:17.000] Config: /user/username/projects/myproject/app/src/program/tsconfig.json : { "rootNames": [ "/user/username/projects/myproject/app/src/program/bar.ts", "/user/username/projects/myproject/app/src/program/index.ts" @@ -213,12 +213,12 @@ Info 6 [16:01:17.000] Config: /user/username/projects/myproject/app/src/progr } ] } -Info 7 [16:01:18.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/app/src/program 1 undefined Config: /user/username/projects/myproject/app/src/program/tsconfig.json WatchType: Wild card directory -Info 8 [16:01:19.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/app/src/program 1 undefined Config: /user/username/projects/myproject/app/src/program/tsconfig.json WatchType: Wild card directory -Info 9 [16:01:20.000] Plugins were requested but not running in environment that supports 'require'. Nothing will be loaded -Info 10 [16:01:21.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/app/src/program/bar.ts 500 undefined WatchType: Closed Script info -Info 11 [16:01:22.000] Starting updateGraphWorker: Project: /user/username/projects/myproject/app/src/program/tsconfig.json -Info 12 [16:01:23.000] Config: /user/username/projects/myproject/shared/src/library/tsconfig.json : { +Info 7 [00:01:18.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/app/src/program 1 undefined Config: /user/username/projects/myproject/app/src/program/tsconfig.json WatchType: Wild card directory +Info 8 [00:01:19.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/app/src/program 1 undefined Config: /user/username/projects/myproject/app/src/program/tsconfig.json WatchType: Wild card directory +Info 9 [00:01:20.000] Plugins were requested but not running in environment that supports 'require'. Nothing will be loaded +Info 10 [00:01:21.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/app/src/program/bar.ts 500 undefined WatchType: Closed Script info +Info 11 [00:01:22.000] Starting updateGraphWorker: Project: /user/username/projects/myproject/app/src/program/tsconfig.json +Info 12 [00:01:23.000] Config: /user/username/projects/myproject/shared/src/library/tsconfig.json : { "rootNames": [ "/user/username/projects/myproject/shared/src/library/index.ts" ], @@ -228,31 +228,31 @@ Info 12 [16:01:23.000] Config: /user/username/projects/myproject/shared/src/li "configFilePath": "/user/username/projects/myproject/shared/src/library/tsconfig.json" } } -Info 13 [16:01:24.000] 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 14 [16:01:25.000] 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 15 [16:01:26.000] 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 16 [16:01:27.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/shared/src/library/index.ts 500 undefined WatchType: Closed Script info -Info 17 [16:01:28.000] FileWatcher:: Added:: WatchInfo: /a/lib/lib.d.ts 500 undefined WatchType: Closed Script info -Info 18 [16:01:29.000] 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 19 [16:01:30.000] 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 20 [16:01:31.000] 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 -Info 21 [16:01:32.000] Elapsed:: *ms 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 -Info 22 [16:01:33.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/app/node_modules 1 undefined Project: /user/username/projects/myproject/app/src/program/tsconfig.json WatchType: Failed Lookup Locations -Info 23 [16:01:34.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/app/node_modules 1 undefined Project: /user/username/projects/myproject/app/src/program/tsconfig.json WatchType: Failed Lookup Locations -Info 24 [16:01:35.000] 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 25 [16:01:36.000] 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 26 [16:01:37.000] 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 27 [16:01:38.000] 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 28 [16:01:39.000] 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 29 [16:01:40.000] 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 -Info 30 [16:01:41.000] Elapsed:: *ms 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 -Info 31 [16:01:42.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/app/node_modules/@types 1 undefined Project: /user/username/projects/myproject/app/src/program/tsconfig.json WatchType: Type roots -Info 32 [16:01:43.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/app/node_modules/@types 1 undefined Project: /user/username/projects/myproject/app/src/program/tsconfig.json WatchType: Type roots -Info 33 [16:01:44.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/app/src/program/tsconfig.json WatchType: Type roots -Info 34 [16:01:45.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/app/src/program/tsconfig.json WatchType: Type roots -Info 35 [16:01:46.000] Finishing updateGraphWorker: Project: /user/username/projects/myproject/app/src/program/tsconfig.json Version: 1 structureChanged: true structureIsReused:: Not Elapsed:: *ms -Info 36 [16:01:47.000] Project '/user/username/projects/myproject/app/src/program/tsconfig.json' (Configured) -Info 37 [16:01:48.000] Files (4) +Info 13 [00:01:24.000] 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 14 [00:01:25.000] 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 15 [00:01:26.000] 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 16 [00:01:27.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/shared/src/library/index.ts 500 undefined WatchType: Closed Script info +Info 17 [00:01:28.000] FileWatcher:: Added:: WatchInfo: /a/lib/lib.d.ts 500 undefined WatchType: Closed Script info +Info 18 [00:01:29.000] 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 19 [00:01:30.000] 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 20 [00:01:31.000] 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 +Info 21 [00:01:32.000] Elapsed:: *ms 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 +Info 22 [00:01:33.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/app/node_modules 1 undefined Project: /user/username/projects/myproject/app/src/program/tsconfig.json WatchType: Failed Lookup Locations +Info 23 [00:01:34.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/app/node_modules 1 undefined Project: /user/username/projects/myproject/app/src/program/tsconfig.json WatchType: Failed Lookup Locations +Info 24 [00:01:35.000] 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 25 [00:01:36.000] 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 26 [00:01:37.000] 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 27 [00:01:38.000] 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 28 [00:01:39.000] 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 29 [00:01:40.000] 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 +Info 30 [00:01:41.000] Elapsed:: *ms 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 +Info 31 [00:01:42.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/app/node_modules/@types 1 undefined Project: /user/username/projects/myproject/app/src/program/tsconfig.json WatchType: Type roots +Info 32 [00:01:43.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/app/node_modules/@types 1 undefined Project: /user/username/projects/myproject/app/src/program/tsconfig.json WatchType: Type roots +Info 33 [00:01:44.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/app/src/program/tsconfig.json WatchType: Type roots +Info 34 [00:01:45.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/app/src/program/tsconfig.json WatchType: Type roots +Info 35 [00:01:46.000] Finishing updateGraphWorker: Project: /user/username/projects/myproject/app/src/program/tsconfig.json Version: 1 structureChanged: true structureIsReused:: Not Elapsed:: *ms +Info 36 [00:01:47.000] Project '/user/username/projects/myproject/app/src/program/tsconfig.json' (Configured) +Info 37 [00:01:48.000] Files (4) /a/lib/lib.d.ts /user/username/projects/myproject/shared/src/library/index.ts /user/username/projects/myproject/app/src/program/bar.ts @@ -268,24 +268,24 @@ Info 37 [16:01:48.000] Files (4) index.ts Matched by default include pattern '**/*' -Info 38 [16:01:49.000] ----------------------------------------------- -Info 39 [16:01:50.000] Search path: /user/username/projects/myproject/app/src/program -Info 40 [16:01:51.000] For info: /user/username/projects/myproject/app/src/program/tsconfig.json :: Config file name: /user/username/projects/myproject/tsconfig.json -Info 41 [16:01:52.000] Creating configuration project /user/username/projects/myproject/tsconfig.json -Info 42 [16:01:53.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/tsconfig.json 2000 undefined Project: /user/username/projects/myproject/tsconfig.json WatchType: Config file -Info 43 [16:01:54.000] Search path: /user/username/projects/myproject -Info 44 [16:01:55.000] For info: /user/username/projects/myproject/tsconfig.json :: No config files found. -Info 45 [16:01:56.000] Project '/user/username/projects/myproject/app/src/program/tsconfig.json' (Configured) -Info 45 [16:01:57.000] Files (4) - -Info 45 [16:01:58.000] ----------------------------------------------- -Info 45 [16:01:59.000] Project '/user/username/projects/myproject/tsconfig.json' (Configured) -Info 45 [16:02:00.000] Files (0) InitialLoadPending - -Info 45 [16:02:01.000] ----------------------------------------------- -Info 45 [16:02:02.000] Open files: -Info 45 [16:02:03.000] FileName: /user/username/projects/myproject/app/src/program/index.ts ProjectRootPath: undefined -Info 45 [16:02:04.000] Projects: /user/username/projects/myproject/app/src/program/tsconfig.json +Info 38 [00:01:49.000] ----------------------------------------------- +Info 39 [00:01:50.000] Search path: /user/username/projects/myproject/app/src/program +Info 40 [00:01:51.000] For info: /user/username/projects/myproject/app/src/program/tsconfig.json :: Config file name: /user/username/projects/myproject/tsconfig.json +Info 41 [00:01:52.000] Creating configuration project /user/username/projects/myproject/tsconfig.json +Info 42 [00:01:53.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/tsconfig.json 2000 undefined Project: /user/username/projects/myproject/tsconfig.json WatchType: Config file +Info 43 [00:01:54.000] Search path: /user/username/projects/myproject +Info 44 [00:01:55.000] For info: /user/username/projects/myproject/tsconfig.json :: No config files found. +Info 45 [00:01:56.000] Project '/user/username/projects/myproject/app/src/program/tsconfig.json' (Configured) +Info 45 [00:01:57.000] Files (4) + +Info 45 [00:01:58.000] ----------------------------------------------- +Info 45 [00:01:59.000] Project '/user/username/projects/myproject/tsconfig.json' (Configured) +Info 45 [00:02:00.000] Files (0) InitialLoadPending + +Info 45 [00:02:01.000] ----------------------------------------------- +Info 45 [00:02:02.000] Open files: +Info 45 [00:02:03.000] FileName: /user/username/projects/myproject/app/src/program/index.ts ProjectRootPath: undefined +Info 45 [00:02:04.000] Projects: /user/username/projects/myproject/app/src/program/tsconfig.json After request PolledWatches:: @@ -328,11 +328,11 @@ FsWatchesRecursive:: /user/username/projects/myproject/node_modules: {} -Info 45 [16:02:05.000] response: +Info 45 [00:02:05.000] response: { "responseRequired": false } -Info 46 [16:02:06.000] request: +Info 46 [00:02:06.000] request: { "command": "getCodeFixes", "arguments": { @@ -390,8 +390,8 @@ FsWatchesRecursive:: /user/username/projects/myproject/node_modules: {} -Info 47 [16:02:07.000] 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 48 [16:02:08.000] 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 47 [00:02:07.000] 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 48 [00:02:08.000] 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 After request PolledWatches:: @@ -434,7 +434,7 @@ FsWatchesRecursive:: /user/username/projects/myproject/node_modules: {} -Info 49 [16:02:09.000] response: +Info 49 [00:02:09.000] response: { "response": [ { 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 380d37056735f..4cc528348d41e 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 @@ -1,5 +1,5 @@ -Info 0 [16:00:47.000] Provided types map file "/a/lib/typesMap.json" doesn't exist -Info 1 [16:00:48.000] request: +Info 0 [00:00:47.000] Provided types map file "/a/lib/typesMap.json" doesn't exist +Info 1 [00:00:48.000] request: { "seq": 0, "type": "request", @@ -51,11 +51,11 @@ FsWatches:: FsWatchesRecursive:: -Info 2 [16:00:49.000] Search path: /user/username/projects/myproject/app/src/program -Info 3 [16:00:50.000] For info: /user/username/projects/myproject/app/src/program/index.ts :: Config file name: /user/username/projects/myproject/app/src/program/tsconfig.json -Info 4 [16:00:51.000] Creating configuration project /user/username/projects/myproject/app/src/program/tsconfig.json -Info 5 [16:00:52.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/app/src/program/tsconfig.json 2000 undefined Project: /user/username/projects/myproject/app/src/program/tsconfig.json WatchType: Config file -Info 6 [16:00:53.000] Config: /user/username/projects/myproject/app/src/program/tsconfig.json : { +Info 2 [00:00:49.000] Search path: /user/username/projects/myproject/app/src/program +Info 3 [00:00:50.000] For info: /user/username/projects/myproject/app/src/program/index.ts :: Config file name: /user/username/projects/myproject/app/src/program/tsconfig.json +Info 4 [00:00:51.000] Creating configuration project /user/username/projects/myproject/app/src/program/tsconfig.json +Info 5 [00:00:52.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/app/src/program/tsconfig.json 2000 undefined Project: /user/username/projects/myproject/app/src/program/tsconfig.json WatchType: Config file +Info 6 [00:00:53.000] Config: /user/username/projects/myproject/app/src/program/tsconfig.json : { "rootNames": [ "/user/username/projects/myproject/app/src/program/bar.ts", "/user/username/projects/myproject/app/src/program/index.ts" @@ -72,12 +72,12 @@ Info 6 [16:00:53.000] Config: /user/username/projects/myproject/app/src/progr } ] } -Info 7 [16:00:54.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/app/src/program 1 undefined Config: /user/username/projects/myproject/app/src/program/tsconfig.json WatchType: Wild card directory -Info 8 [16:00:55.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/app/src/program 1 undefined Config: /user/username/projects/myproject/app/src/program/tsconfig.json WatchType: Wild card directory -Info 9 [16:00:56.000] Plugins were requested but not running in environment that supports 'require'. Nothing will be loaded -Info 10 [16:00:57.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/app/src/program/bar.ts 500 undefined WatchType: Closed Script info -Info 11 [16:00:58.000] Starting updateGraphWorker: Project: /user/username/projects/myproject/app/src/program/tsconfig.json -Info 12 [16:00:59.000] Config: /user/username/projects/myproject/shared/src/library/tsconfig.json : { +Info 7 [00:00:54.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/app/src/program 1 undefined Config: /user/username/projects/myproject/app/src/program/tsconfig.json WatchType: Wild card directory +Info 8 [00:00:55.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/app/src/program 1 undefined Config: /user/username/projects/myproject/app/src/program/tsconfig.json WatchType: Wild card directory +Info 9 [00:00:56.000] Plugins were requested but not running in environment that supports 'require'. Nothing will be loaded +Info 10 [00:00:57.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/app/src/program/bar.ts 500 undefined WatchType: Closed Script info +Info 11 [00:00:58.000] Starting updateGraphWorker: Project: /user/username/projects/myproject/app/src/program/tsconfig.json +Info 12 [00:00:59.000] Config: /user/username/projects/myproject/shared/src/library/tsconfig.json : { "rootNames": [ "/user/username/projects/myproject/shared/src/library/index.ts" ], @@ -87,31 +87,31 @@ Info 12 [16:00:59.000] Config: /user/username/projects/myproject/shared/src/li "configFilePath": "/user/username/projects/myproject/shared/src/library/tsconfig.json" } } -Info 13 [16:01:00.000] 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 14 [16:01:01.000] 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 15 [16:01:02.000] 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 16 [16:01:03.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/shared/src/library/index.ts 500 undefined WatchType: Closed Script info -Info 17 [16:01:04.000] FileWatcher:: Added:: WatchInfo: /a/lib/lib.d.ts 500 undefined WatchType: Closed Script info -Info 18 [16:01:05.000] 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 19 [16:01:06.000] 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 20 [16:01:07.000] 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 -Info 21 [16:01:08.000] Elapsed:: *ms 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 -Info 22 [16:01:09.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/app/node_modules 1 undefined Project: /user/username/projects/myproject/app/src/program/tsconfig.json WatchType: Failed Lookup Locations -Info 23 [16:01:10.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/app/node_modules 1 undefined Project: /user/username/projects/myproject/app/src/program/tsconfig.json WatchType: Failed Lookup Locations -Info 24 [16:01:11.000] 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 25 [16:01:12.000] 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 26 [16:01:13.000] 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 27 [16:01:14.000] 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 28 [16:01:15.000] 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 29 [16:01:16.000] 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 -Info 30 [16:01:17.000] Elapsed:: *ms 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 -Info 31 [16:01:18.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/app/node_modules/@types 1 undefined Project: /user/username/projects/myproject/app/src/program/tsconfig.json WatchType: Type roots -Info 32 [16:01:19.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/app/node_modules/@types 1 undefined Project: /user/username/projects/myproject/app/src/program/tsconfig.json WatchType: Type roots -Info 33 [16:01:20.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/app/src/program/tsconfig.json WatchType: Type roots -Info 34 [16:01:21.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/app/src/program/tsconfig.json WatchType: Type roots -Info 35 [16:01:22.000] Finishing updateGraphWorker: Project: /user/username/projects/myproject/app/src/program/tsconfig.json Version: 1 structureChanged: true structureIsReused:: Not Elapsed:: *ms -Info 36 [16:01:23.000] Project '/user/username/projects/myproject/app/src/program/tsconfig.json' (Configured) -Info 37 [16:01:24.000] Files (4) +Info 13 [00:01:00.000] 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 14 [00:01:01.000] 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 15 [00:01:02.000] 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 16 [00:01:03.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/shared/src/library/index.ts 500 undefined WatchType: Closed Script info +Info 17 [00:01:04.000] FileWatcher:: Added:: WatchInfo: /a/lib/lib.d.ts 500 undefined WatchType: Closed Script info +Info 18 [00:01:05.000] 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 19 [00:01:06.000] 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 20 [00:01:07.000] 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 +Info 21 [00:01:08.000] Elapsed:: *ms 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 +Info 22 [00:01:09.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/app/node_modules 1 undefined Project: /user/username/projects/myproject/app/src/program/tsconfig.json WatchType: Failed Lookup Locations +Info 23 [00:01:10.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/app/node_modules 1 undefined Project: /user/username/projects/myproject/app/src/program/tsconfig.json WatchType: Failed Lookup Locations +Info 24 [00:01:11.000] 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 25 [00:01:12.000] 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 26 [00:01:13.000] 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 27 [00:01:14.000] 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 28 [00:01:15.000] 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 29 [00:01:16.000] 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 +Info 30 [00:01:17.000] Elapsed:: *ms 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 +Info 31 [00:01:18.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/app/node_modules/@types 1 undefined Project: /user/username/projects/myproject/app/src/program/tsconfig.json WatchType: Type roots +Info 32 [00:01:19.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/app/node_modules/@types 1 undefined Project: /user/username/projects/myproject/app/src/program/tsconfig.json WatchType: Type roots +Info 33 [00:01:20.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/app/src/program/tsconfig.json WatchType: Type roots +Info 34 [00:01:21.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/app/src/program/tsconfig.json WatchType: Type roots +Info 35 [00:01:22.000] Finishing updateGraphWorker: Project: /user/username/projects/myproject/app/src/program/tsconfig.json Version: 1 structureChanged: true structureIsReused:: Not Elapsed:: *ms +Info 36 [00:01:23.000] Project '/user/username/projects/myproject/app/src/program/tsconfig.json' (Configured) +Info 37 [00:01:24.000] Files (4) /a/lib/lib.d.ts /user/username/projects/myproject/shared/src/library/index.ts /user/username/projects/myproject/app/src/program/bar.ts @@ -127,24 +127,24 @@ Info 37 [16:01:24.000] Files (4) index.ts Matched by default include pattern '**/*' -Info 38 [16:01:25.000] ----------------------------------------------- -Info 39 [16:01:26.000] Search path: /user/username/projects/myproject/app/src/program -Info 40 [16:01:27.000] For info: /user/username/projects/myproject/app/src/program/tsconfig.json :: Config file name: /user/username/projects/myproject/tsconfig.json -Info 41 [16:01:28.000] Creating configuration project /user/username/projects/myproject/tsconfig.json -Info 42 [16:01:29.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/tsconfig.json 2000 undefined Project: /user/username/projects/myproject/tsconfig.json WatchType: Config file -Info 43 [16:01:30.000] Search path: /user/username/projects/myproject -Info 44 [16:01:31.000] For info: /user/username/projects/myproject/tsconfig.json :: No config files found. -Info 45 [16:01:32.000] Project '/user/username/projects/myproject/app/src/program/tsconfig.json' (Configured) -Info 45 [16:01:33.000] Files (4) +Info 38 [00:01:25.000] ----------------------------------------------- +Info 39 [00:01:26.000] Search path: /user/username/projects/myproject/app/src/program +Info 40 [00:01:27.000] For info: /user/username/projects/myproject/app/src/program/tsconfig.json :: Config file name: /user/username/projects/myproject/tsconfig.json +Info 41 [00:01:28.000] Creating configuration project /user/username/projects/myproject/tsconfig.json +Info 42 [00:01:29.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/tsconfig.json 2000 undefined Project: /user/username/projects/myproject/tsconfig.json WatchType: Config file +Info 43 [00:01:30.000] Search path: /user/username/projects/myproject +Info 44 [00:01:31.000] For info: /user/username/projects/myproject/tsconfig.json :: No config files found. +Info 45 [00:01:32.000] Project '/user/username/projects/myproject/app/src/program/tsconfig.json' (Configured) +Info 45 [00:01:33.000] Files (4) -Info 45 [16:01:34.000] ----------------------------------------------- -Info 45 [16:01:35.000] Project '/user/username/projects/myproject/tsconfig.json' (Configured) -Info 45 [16:01:36.000] Files (0) InitialLoadPending +Info 45 [00:01:34.000] ----------------------------------------------- +Info 45 [00:01:35.000] Project '/user/username/projects/myproject/tsconfig.json' (Configured) +Info 45 [00:01:36.000] Files (0) InitialLoadPending -Info 45 [16:01:37.000] ----------------------------------------------- -Info 45 [16:01:38.000] Open files: -Info 45 [16:01:39.000] FileName: /user/username/projects/myproject/app/src/program/index.ts ProjectRootPath: undefined -Info 45 [16:01:40.000] Projects: /user/username/projects/myproject/app/src/program/tsconfig.json +Info 45 [00:01:37.000] ----------------------------------------------- +Info 45 [00:01:38.000] Open files: +Info 45 [00:01:39.000] FileName: /user/username/projects/myproject/app/src/program/index.ts ProjectRootPath: undefined +Info 45 [00:01:40.000] Projects: /user/username/projects/myproject/app/src/program/tsconfig.json After request PolledWatches:: @@ -187,11 +187,11 @@ FsWatchesRecursive:: /user/username/projects/myproject/node_modules: {} -Info 45 [16:01:41.000] response: +Info 45 [00:01:41.000] response: { "responseRequired": false } -Info 46 [16:01:42.000] request: +Info 46 [00:01:42.000] request: { "command": "getCodeFixes", "arguments": { @@ -249,8 +249,8 @@ FsWatchesRecursive:: /user/username/projects/myproject/node_modules: {} -Info 47 [16:01:43.000] 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 48 [16:01:44.000] 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 47 [00:01:43.000] 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 48 [00:01:44.000] 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 After request PolledWatches:: @@ -293,7 +293,7 @@ FsWatchesRecursive:: /user/username/projects/myproject/node_modules: {} -Info 49 [16:01:45.000] response: +Info 49 [00:01:45.000] response: { "response": [ { 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 c6f07cf5accd4..9503e1c507652 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 @@ -1,5 +1,5 @@ -Info 0 [16:01:10.000] Provided types map file "/a/lib/typesMap.json" doesn't exist -Info 1 [16:01:11.000] request: +Info 0 [00:01:10.000] Provided types map file "/a/lib/typesMap.json" doesn't exist +Info 1 [00:01:11.000] request: { "seq": 0, "type": "request", @@ -346,11 +346,11 @@ FsWatches:: FsWatchesRecursive:: -Info 2 [16:01:12.000] Search path: /user/username/projects/container/compositeExec -Info 3 [16:01:13.000] For info: /user/username/projects/container/compositeExec/index.ts :: Config file name: /user/username/projects/container/compositeExec/tsconfig.json -Info 4 [16:01:14.000] Creating configuration project /user/username/projects/container/compositeExec/tsconfig.json -Info 5 [16:01:15.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/container/compositeExec/tsconfig.json 2000 undefined Project: /user/username/projects/container/compositeExec/tsconfig.json WatchType: Config file -Info 6 [16:01:16.000] Config: /user/username/projects/container/compositeExec/tsconfig.json : { +Info 2 [00:01:12.000] Search path: /user/username/projects/container/compositeExec +Info 3 [00:01:13.000] For info: /user/username/projects/container/compositeExec/index.ts :: Config file name: /user/username/projects/container/compositeExec/tsconfig.json +Info 4 [00:01:14.000] Creating configuration project /user/username/projects/container/compositeExec/tsconfig.json +Info 5 [00:01:15.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/container/compositeExec/tsconfig.json 2000 undefined Project: /user/username/projects/container/compositeExec/tsconfig.json WatchType: Config file +Info 6 [00:01:16.000] Config: /user/username/projects/container/compositeExec/tsconfig.json : { "rootNames": [ "/user/username/projects/container/compositeExec/index.ts" ], @@ -368,9 +368,9 @@ Info 6 [16:01:16.000] Config: /user/username/projects/container/compositeExec } ] } -Info 7 [16:01:17.000] Plugins were requested but not running in environment that supports 'require'. Nothing will be loaded -Info 8 [16:01:18.000] Starting updateGraphWorker: Project: /user/username/projects/container/compositeExec/tsconfig.json -Info 9 [16:01:19.000] Config: /user/username/projects/container/lib/tsconfig.json : { +Info 7 [00:01:17.000] Plugins were requested but not running in environment that supports 'require'. Nothing will be loaded +Info 8 [00:01:18.000] Starting updateGraphWorker: Project: /user/username/projects/container/compositeExec/tsconfig.json +Info 9 [00:01:19.000] Config: /user/username/projects/container/lib/tsconfig.json : { "rootNames": [ "/user/username/projects/container/lib/index.ts" ], @@ -381,16 +381,16 @@ Info 9 [16:01:19.000] Config: /user/username/projects/container/lib/tsconfig. "configFilePath": "/user/username/projects/container/lib/tsconfig.json" } } -Info 10 [16:01:20.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/container/lib/tsconfig.json 2000 undefined Project: /user/username/projects/container/compositeExec/tsconfig.json WatchType: Config file -Info 11 [16:01:21.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/container/lib/index.ts 500 undefined WatchType: Closed Script info -Info 12 [16:01:22.000] FileWatcher:: Added:: WatchInfo: /a/lib/lib.d.ts 500 undefined WatchType: Closed Script info -Info 13 [16:01:23.000] 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 14 [16:01:24.000] 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 15 [16:01:25.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/container/node_modules/@types 1 undefined Project: /user/username/projects/container/compositeExec/tsconfig.json WatchType: Type roots -Info 16 [16:01:26.000] 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 17 [16:01:27.000] Finishing updateGraphWorker: Project: /user/username/projects/container/compositeExec/tsconfig.json Version: 1 structureChanged: true structureIsReused:: Not Elapsed:: *ms -Info 18 [16:01:28.000] Project '/user/username/projects/container/compositeExec/tsconfig.json' (Configured) -Info 19 [16:01:29.000] Files (3) +Info 10 [00:01:20.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/container/lib/tsconfig.json 2000 undefined Project: /user/username/projects/container/compositeExec/tsconfig.json WatchType: Config file +Info 11 [00:01:21.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/container/lib/index.ts 500 undefined WatchType: Closed Script info +Info 12 [00:01:22.000] FileWatcher:: Added:: WatchInfo: /a/lib/lib.d.ts 500 undefined WatchType: Closed Script info +Info 13 [00:01:23.000] 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 14 [00:01:24.000] 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 15 [00:01:25.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/container/node_modules/@types 1 undefined Project: /user/username/projects/container/compositeExec/tsconfig.json WatchType: Type roots +Info 16 [00:01:26.000] 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 17 [00:01:27.000] Finishing updateGraphWorker: Project: /user/username/projects/container/compositeExec/tsconfig.json Version: 1 structureChanged: true structureIsReused:: Not Elapsed:: *ms +Info 18 [00:01:28.000] Project '/user/username/projects/container/compositeExec/tsconfig.json' (Configured) +Info 19 [00:01:29.000] Files (3) /a/lib/lib.d.ts /user/username/projects/container/lib/index.ts /user/username/projects/container/compositeExec/index.ts @@ -403,24 +403,24 @@ Info 19 [16:01:29.000] Files (3) index.ts Part of 'files' list in tsconfig.json -Info 20 [16:01:30.000] ----------------------------------------------- -Info 21 [16:01:31.000] Search path: /user/username/projects/container/compositeExec -Info 22 [16:01:32.000] For info: /user/username/projects/container/compositeExec/tsconfig.json :: Config file name: /user/username/projects/container/tsconfig.json -Info 23 [16:01:33.000] Creating configuration project /user/username/projects/container/tsconfig.json -Info 24 [16:01:34.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/container/tsconfig.json 2000 undefined Project: /user/username/projects/container/tsconfig.json WatchType: Config file -Info 25 [16:01:35.000] Search path: /user/username/projects/container -Info 26 [16:01:36.000] For info: /user/username/projects/container/tsconfig.json :: No config files found. -Info 27 [16:01:37.000] Project '/user/username/projects/container/compositeExec/tsconfig.json' (Configured) -Info 27 [16:01:38.000] Files (3) - -Info 27 [16:01:39.000] ----------------------------------------------- -Info 27 [16:01:40.000] Project '/user/username/projects/container/tsconfig.json' (Configured) -Info 27 [16:01:41.000] Files (0) InitialLoadPending - -Info 27 [16:01:42.000] ----------------------------------------------- -Info 27 [16:01:43.000] Open files: -Info 27 [16:01:44.000] FileName: /user/username/projects/container/compositeExec/index.ts ProjectRootPath: undefined -Info 27 [16:01:45.000] Projects: /user/username/projects/container/compositeExec/tsconfig.json +Info 20 [00:01:30.000] ----------------------------------------------- +Info 21 [00:01:31.000] Search path: /user/username/projects/container/compositeExec +Info 22 [00:01:32.000] For info: /user/username/projects/container/compositeExec/tsconfig.json :: Config file name: /user/username/projects/container/tsconfig.json +Info 23 [00:01:33.000] Creating configuration project /user/username/projects/container/tsconfig.json +Info 24 [00:01:34.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/container/tsconfig.json 2000 undefined Project: /user/username/projects/container/tsconfig.json WatchType: Config file +Info 25 [00:01:35.000] Search path: /user/username/projects/container +Info 26 [00:01:36.000] For info: /user/username/projects/container/tsconfig.json :: No config files found. +Info 27 [00:01:37.000] Project '/user/username/projects/container/compositeExec/tsconfig.json' (Configured) +Info 27 [00:01:38.000] Files (3) + +Info 27 [00:01:39.000] ----------------------------------------------- +Info 27 [00:01:40.000] Project '/user/username/projects/container/tsconfig.json' (Configured) +Info 27 [00:01:41.000] Files (0) InitialLoadPending + +Info 27 [00:01:42.000] ----------------------------------------------- +Info 27 [00:01:43.000] Open files: +Info 27 [00:01:44.000] FileName: /user/username/projects/container/compositeExec/index.ts ProjectRootPath: undefined +Info 27 [00:01:45.000] Projects: /user/username/projects/container/compositeExec/tsconfig.json After request PolledWatches:: @@ -443,11 +443,11 @@ FsWatches:: FsWatchesRecursive:: -Info 27 [16:01:46.000] response: +Info 27 [00:01:46.000] response: { "responseRequired": false } -Info 28 [16:01:47.000] request: +Info 28 [00:01:47.000] request: { "command": "rename", "arguments": { @@ -480,18 +480,18 @@ FsWatches:: FsWatchesRecursive:: -Info 29 [16:01:48.000] Search path: /user/username/projects/container/lib -Info 30 [16:01:49.000] For info: /user/username/projects/container/lib/index.ts :: Config file name: /user/username/projects/container/lib/tsconfig.json -Info 31 [16:01:50.000] Creating configuration project /user/username/projects/container/lib/tsconfig.json -Info 32 [16:01:51.000] Plugins were requested but not running in environment that supports 'require'. Nothing will be loaded -Info 33 [16:01:52.000] Starting updateGraphWorker: Project: /user/username/projects/container/lib/tsconfig.json -Info 34 [16:01:53.000] 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 35 [16:01:54.000] 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 36 [16:01:55.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/container/node_modules/@types 1 undefined Project: /user/username/projects/container/lib/tsconfig.json WatchType: Type roots -Info 37 [16:01:56.000] 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 38 [16:01:57.000] Finishing updateGraphWorker: Project: /user/username/projects/container/lib/tsconfig.json Version: 1 structureChanged: true structureIsReused:: Not Elapsed:: *ms -Info 39 [16:01:58.000] Project '/user/username/projects/container/lib/tsconfig.json' (Configured) -Info 40 [16:01:59.000] Files (2) +Info 29 [00:01:48.000] Search path: /user/username/projects/container/lib +Info 30 [00:01:49.000] For info: /user/username/projects/container/lib/index.ts :: Config file name: /user/username/projects/container/lib/tsconfig.json +Info 31 [00:01:50.000] Creating configuration project /user/username/projects/container/lib/tsconfig.json +Info 32 [00:01:51.000] Plugins were requested but not running in environment that supports 'require'. Nothing will be loaded +Info 33 [00:01:52.000] Starting updateGraphWorker: Project: /user/username/projects/container/lib/tsconfig.json +Info 34 [00:01:53.000] 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 35 [00:01:54.000] 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 36 [00:01:55.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/container/node_modules/@types 1 undefined Project: /user/username/projects/container/lib/tsconfig.json WatchType: Type roots +Info 37 [00:01:56.000] 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 38 [00:01:57.000] Finishing updateGraphWorker: Project: /user/username/projects/container/lib/tsconfig.json Version: 1 structureChanged: true structureIsReused:: Not Elapsed:: *ms +Info 39 [00:01:58.000] Project '/user/username/projects/container/lib/tsconfig.json' (Configured) +Info 40 [00:01:59.000] Files (2) /a/lib/lib.d.ts /user/username/projects/container/lib/index.ts @@ -501,9 +501,9 @@ Info 40 [16:01:59.000] Files (2) index.ts Part of 'files' list in tsconfig.json -Info 41 [16:02:00.000] ----------------------------------------------- -Info 42 [16:02:01.000] Loading configured project /user/username/projects/container/tsconfig.json -Info 43 [16:02:02.000] Config: /user/username/projects/container/tsconfig.json : { +Info 41 [00:02:00.000] ----------------------------------------------- +Info 42 [00:02:01.000] Loading configured project /user/username/projects/container/tsconfig.json +Info 43 [00:02:02.000] Config: /user/username/projects/container/tsconfig.json : { "rootNames": [], "options": { "configFilePath": "/user/username/projects/container/tsconfig.json" @@ -519,9 +519,9 @@ Info 43 [16:02:02.000] Config: /user/username/projects/container/tsconfig.json } ] } -Info 44 [16:02:03.000] Plugins were requested but not running in environment that supports 'require'. Nothing will be loaded -Info 45 [16:02:04.000] Starting updateGraphWorker: Project: /user/username/projects/container/tsconfig.json -Info 46 [16:02:05.000] Config: /user/username/projects/container/exec/tsconfig.json : { +Info 44 [00:02:03.000] Plugins were requested but not running in environment that supports 'require'. Nothing will be loaded +Info 45 [00:02:04.000] Starting updateGraphWorker: Project: /user/username/projects/container/tsconfig.json +Info 46 [00:02:05.000] Config: /user/username/projects/container/exec/tsconfig.json : { "rootNames": [ "/user/username/projects/container/exec/index.ts" ], @@ -537,22 +537,22 @@ Info 46 [16:02:05.000] Config: /user/username/projects/container/exec/tsconfig } ] } -Info 47 [16:02:06.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/container/exec/tsconfig.json 2000 undefined Project: /user/username/projects/container/tsconfig.json WatchType: Config file -Info 48 [16:02:07.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/container/node_modules/@types 1 undefined Project: /user/username/projects/container/tsconfig.json WatchType: Type roots -Info 49 [16:02:08.000] 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 50 [16:02:09.000] Finishing updateGraphWorker: Project: /user/username/projects/container/tsconfig.json Version: 1 structureChanged: true structureIsReused:: Not Elapsed:: *ms -Info 51 [16:02:10.000] Different program with same set of files -Info 52 [16:02:11.000] Creating configuration project /user/username/projects/container/exec/tsconfig.json -Info 53 [16:02:12.000] Plugins were requested but not running in environment that supports 'require'. Nothing will be loaded -Info 54 [16:02:13.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/container/exec/index.ts 500 undefined WatchType: Closed Script info -Info 55 [16:02:14.000] Starting updateGraphWorker: Project: /user/username/projects/container/exec/tsconfig.json -Info 56 [16:02:15.000] 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 57 [16:02:16.000] 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 58 [16:02:17.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/container/node_modules/@types 1 undefined Project: /user/username/projects/container/exec/tsconfig.json WatchType: Type roots -Info 59 [16:02:18.000] 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 60 [16:02:19.000] Finishing updateGraphWorker: Project: /user/username/projects/container/exec/tsconfig.json Version: 1 structureChanged: true structureIsReused:: Not Elapsed:: *ms -Info 61 [16:02:20.000] Project '/user/username/projects/container/exec/tsconfig.json' (Configured) -Info 62 [16:02:21.000] Files (3) +Info 47 [00:02:06.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/container/exec/tsconfig.json 2000 undefined Project: /user/username/projects/container/tsconfig.json WatchType: Config file +Info 48 [00:02:07.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/container/node_modules/@types 1 undefined Project: /user/username/projects/container/tsconfig.json WatchType: Type roots +Info 49 [00:02:08.000] 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 50 [00:02:09.000] Finishing updateGraphWorker: Project: /user/username/projects/container/tsconfig.json Version: 1 structureChanged: true structureIsReused:: Not Elapsed:: *ms +Info 51 [00:02:10.000] Different program with same set of files +Info 52 [00:02:11.000] Creating configuration project /user/username/projects/container/exec/tsconfig.json +Info 53 [00:02:12.000] Plugins were requested but not running in environment that supports 'require'. Nothing will be loaded +Info 54 [00:02:13.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/container/exec/index.ts 500 undefined WatchType: Closed Script info +Info 55 [00:02:14.000] Starting updateGraphWorker: Project: /user/username/projects/container/exec/tsconfig.json +Info 56 [00:02:15.000] 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 57 [00:02:16.000] 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 58 [00:02:17.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/container/node_modules/@types 1 undefined Project: /user/username/projects/container/exec/tsconfig.json WatchType: Type roots +Info 59 [00:02:18.000] 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 60 [00:02:19.000] Finishing updateGraphWorker: Project: /user/username/projects/container/exec/tsconfig.json Version: 1 structureChanged: true structureIsReused:: Not Elapsed:: *ms +Info 61 [00:02:20.000] Project '/user/username/projects/container/exec/tsconfig.json' (Configured) +Info 62 [00:02:21.000] Files (3) /a/lib/lib.d.ts /user/username/projects/container/lib/index.ts /user/username/projects/container/exec/index.ts @@ -565,9 +565,9 @@ Info 62 [16:02:21.000] Files (3) index.ts Part of 'files' list in tsconfig.json -Info 63 [16:02:22.000] ----------------------------------------------- -Info 64 [16:02:23.000] Search path: /user/username/projects/container/lib -Info 65 [16:02:24.000] For info: /user/username/projects/container/lib/index.ts :: Config file name: /user/username/projects/container/lib/tsconfig.json +Info 63 [00:02:22.000] ----------------------------------------------- +Info 64 [00:02:23.000] Search path: /user/username/projects/container/lib +Info 65 [00:02:24.000] For info: /user/username/projects/container/lib/index.ts :: Config file name: /user/username/projects/container/lib/tsconfig.json After request PolledWatches:: @@ -598,7 +598,7 @@ FsWatches:: FsWatchesRecursive:: -Info 66 [16:02:25.000] response: +Info 66 [00:02:25.000] response: { "response": { "info": { diff --git a/tests/baselines/reference/tsserver/projectReferences/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/disables-looking-into-the-child-project-if-disableReferencedProjectLoad-is-set-in-first-indirect-project-but-not-in-another-one.js index ff9ce815967a8..a599119847d02 100644 --- a/tests/baselines/reference/tsserver/projectReferences/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/disables-looking-into-the-child-project-if-disableReferencedProjectLoad-is-set-in-first-indirect-project-but-not-in-another-one.js @@ -1,11 +1,11 @@ -Info 0 [16:01:05.000] Provided types map file "/a/lib/typesMap.json" doesn't exist -Info 1 [16:01:06.000] Search path: /user/username/projects/myproject/src -Info 2 [16:01:07.000] For info: /user/username/projects/myproject/src/main.ts :: Config file name: /user/username/projects/myproject/tsconfig.json -Info 3 [16:01:08.000] Creating configuration project /user/username/projects/myproject/tsconfig.json -Info 4 [16:01:09.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/tsconfig.json 2000 undefined Project: /user/username/projects/myproject/tsconfig.json WatchType: Config file -Info 5 [16:01:10.000] event: +Info 0 [00:01:05.000] Provided types map file "/a/lib/typesMap.json" doesn't exist +Info 1 [00:01:06.000] Search path: /user/username/projects/myproject/src +Info 2 [00:01:07.000] For info: /user/username/projects/myproject/src/main.ts :: Config file name: /user/username/projects/myproject/tsconfig.json +Info 3 [00:01:08.000] Creating configuration project /user/username/projects/myproject/tsconfig.json +Info 4 [00:01:09.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/tsconfig.json 2000 undefined Project: /user/username/projects/myproject/tsconfig.json WatchType: Config file +Info 5 [00:01:10.000] event: {"seq":0,"type":"event","event":"projectLoadingStart","body":{"projectName":"/user/username/projects/myproject/tsconfig.json","reason":"Creating possible configured project for /user/username/projects/myproject/src/main.ts to open"}} -Info 6 [16:01:11.000] Config: /user/username/projects/myproject/tsconfig.json : { +Info 6 [00:01:11.000] Config: /user/username/projects/myproject/tsconfig.json : { "rootNames": [], "options": { "configFilePath": "/user/username/projects/myproject/tsconfig.json" @@ -21,9 +21,9 @@ Info 6 [16:01:11.000] Config: /user/username/projects/myproject/tsconfig.json } ] } -Info 7 [16:01:12.000] Plugins were requested but not running in environment that supports 'require'. Nothing will be loaded -Info 8 [16:01:13.000] Starting updateGraphWorker: Project: /user/username/projects/myproject/tsconfig.json -Info 9 [16:01:14.000] Config: /user/username/projects/myproject/tsconfig-indirect1.json : { +Info 7 [00:01:12.000] Plugins were requested but not running in environment that supports 'require'. Nothing will be loaded +Info 8 [00:01:13.000] Starting updateGraphWorker: Project: /user/username/projects/myproject/tsconfig.json +Info 9 [00:01:14.000] Config: /user/username/projects/myproject/tsconfig-indirect1.json : { "rootNames": [ "/user/username/projects/myproject/indirect1/main.ts" ], @@ -41,8 +41,8 @@ Info 9 [16:01:14.000] Config: /user/username/projects/myproject/tsconfig-indi } ] } -Info 10 [16:01:15.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/tsconfig-indirect1.json 2000 undefined Project: /user/username/projects/myproject/tsconfig.json WatchType: Config file -Info 11 [16:01:16.000] Config: /user/username/projects/myproject/tsconfig-src.json : { +Info 10 [00:01:15.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/tsconfig-indirect1.json 2000 undefined Project: /user/username/projects/myproject/tsconfig.json WatchType: Config file +Info 11 [00:01:16.000] Config: /user/username/projects/myproject/tsconfig-src.json : { "rootNames": [ "/user/username/projects/myproject/src/main.ts", "/user/username/projects/myproject/src/helpers/functions.ts" @@ -54,10 +54,10 @@ Info 11 [16:01:16.000] Config: /user/username/projects/myproject/tsconfig-src. "configFilePath": "/user/username/projects/myproject/tsconfig-src.json" } } -Info 12 [16:01:17.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/tsconfig-src.json 2000 undefined Project: /user/username/projects/myproject/tsconfig.json WatchType: Config file -Info 13 [16:01:18.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/src 1 undefined Config: /user/username/projects/myproject/tsconfig-src.json WatchType: Wild card directory -Info 14 [16:01:19.000] 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 15 [16:01:20.000] Config: /user/username/projects/myproject/tsconfig-indirect2.json : { +Info 12 [00:01:17.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/tsconfig-src.json 2000 undefined Project: /user/username/projects/myproject/tsconfig.json WatchType: Config file +Info 13 [00:01:18.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/src 1 undefined Config: /user/username/projects/myproject/tsconfig-src.json WatchType: Wild card directory +Info 14 [00:01:19.000] 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 15 [00:01:20.000] Config: /user/username/projects/myproject/tsconfig-indirect2.json : { "rootNames": [ "/user/username/projects/myproject/indirect2/main.ts" ], @@ -74,27 +74,27 @@ Info 15 [16:01:20.000] Config: /user/username/projects/myproject/tsconfig-indi } ] } -Info 16 [16:01:21.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/tsconfig-indirect2.json 2000 undefined Project: /user/username/projects/myproject/tsconfig.json WatchType: Config file -Info 17 [16:01:22.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/tsconfig.json WatchType: Type roots -Info 18 [16:01:23.000] 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 19 [16:01:24.000] Finishing updateGraphWorker: Project: /user/username/projects/myproject/tsconfig.json Version: 1 structureChanged: true structureIsReused:: Not Elapsed:: *ms -Info 20 [16:01:25.000] Different program with same set of files -Info 21 [16:01:26.000] event: +Info 16 [00:01:21.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/tsconfig-indirect2.json 2000 undefined Project: /user/username/projects/myproject/tsconfig.json WatchType: Config file +Info 17 [00:01:22.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/tsconfig.json WatchType: Type roots +Info 18 [00:01:23.000] 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 19 [00:01:24.000] Finishing updateGraphWorker: Project: /user/username/projects/myproject/tsconfig.json Version: 1 structureChanged: true structureIsReused:: Not Elapsed:: *ms +Info 20 [00:01:25.000] Different program with same set of files +Info 21 [00:01:26.000] event: {"seq":0,"type":"event","event":"projectLoadingFinish","body":{"projectName":"/user/username/projects/myproject/tsconfig.json"}} -Info 22 [16:01:27.000] event: +Info 22 [00:01:27.000] event: {"seq":0,"type":"event","event":"telemetry","body":{"telemetryEventName":"projectInfo","payload":{"projectId":"4a33d78ee40d836c4f4e64c59aed976628aea0013be9585c5ff171dfc41baf98","fileStats":{"js":0,"jsSize":0,"jsx":0,"jsxSize":0,"ts":0,"tsSize":0,"tsx":0,"tsxSize":0,"dts":0,"dtsSize":0,"deferred":0,"deferredSize":0},"compilerOptions":{},"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 23 [16:01:28.000] Creating configuration project /user/username/projects/myproject/tsconfig-src.json -Info 24 [16:01:29.000] event: +Info 23 [00:01:28.000] Creating configuration project /user/username/projects/myproject/tsconfig-src.json +Info 24 [00:01:29.000] event: {"seq":0,"type":"event","event":"projectLoadingStart","body":{"projectName":"/user/username/projects/myproject/tsconfig-src.json","reason":"Creating project referenced in solution /user/username/projects/myproject/tsconfig.json to find possible configured project for /user/username/projects/myproject/src/main.ts to open"}} -Info 25 [16:01:30.000] Plugins were requested but not running in environment that supports 'require'. Nothing will be loaded -Info 26 [16:01:31.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/src/helpers/functions.ts 500 undefined WatchType: Closed Script info -Info 27 [16:01:32.000] Starting updateGraphWorker: Project: /user/username/projects/myproject/tsconfig-src.json -Info 28 [16:01:33.000] FileWatcher:: Added:: WatchInfo: /a/lib/lib.d.ts 500 undefined WatchType: Closed Script info -Info 29 [16:01:34.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/tsconfig-src.json WatchType: Type roots -Info 30 [16:01:35.000] 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 31 [16:01:36.000] Finishing updateGraphWorker: Project: /user/username/projects/myproject/tsconfig-src.json Version: 1 structureChanged: true structureIsReused:: Not Elapsed:: *ms -Info 32 [16:01:37.000] Project '/user/username/projects/myproject/tsconfig-src.json' (Configured) -Info 33 [16:01:38.000] Files (3) +Info 25 [00:01:30.000] Plugins were requested but not running in environment that supports 'require'. Nothing will be loaded +Info 26 [00:01:31.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/src/helpers/functions.ts 500 undefined WatchType: Closed Script info +Info 27 [00:01:32.000] Starting updateGraphWorker: Project: /user/username/projects/myproject/tsconfig-src.json +Info 28 [00:01:33.000] FileWatcher:: Added:: WatchInfo: /a/lib/lib.d.ts 500 undefined WatchType: Closed Script info +Info 29 [00:01:34.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/tsconfig-src.json WatchType: Type roots +Info 30 [00:01:35.000] 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 31 [00:01:36.000] Finishing updateGraphWorker: Project: /user/username/projects/myproject/tsconfig-src.json Version: 1 structureChanged: true structureIsReused:: Not Elapsed:: *ms +Info 32 [00:01:37.000] Project '/user/username/projects/myproject/tsconfig-src.json' (Configured) +Info 33 [00:01:38.000] Files (3) /a/lib/lib.d.ts /user/username/projects/myproject/src/helpers/functions.ts /user/username/projects/myproject/src/main.ts @@ -108,35 +108,35 @@ Info 33 [16:01:38.000] Files (3) src/main.ts Matched by include pattern './src/**/*' in 'tsconfig-src.json' -Info 34 [16:01:39.000] ----------------------------------------------- -Info 35 [16:01:40.000] event: +Info 34 [00:01:39.000] ----------------------------------------------- +Info 35 [00:01:40.000] event: {"seq":0,"type":"event","event":"projectLoadingFinish","body":{"projectName":"/user/username/projects/myproject/tsconfig-src.json"}} -Info 36 [16:01:41.000] event: +Info 36 [00:01:41.000] event: {"seq":0,"type":"event","event":"telemetry","body":{"telemetryEventName":"projectInfo","payload":{"projectId":"75d5ba36c0a162a329bf40235b10e96d2d129b95469e1f02c08da775fb38a2b4","fileStats":{"js":0,"jsSize":0,"jsx":0,"jsxSize":0,"ts":2,"tsSize":77,"tsx":0,"tsxSize":0,"dts":1,"dtsSize":334,"deferred":0,"deferredSize":0},"compilerOptions":{"composite":true,"outDir":"","baseUrl":""},"typeAcquisition":{"enable":false,"include":false,"exclude":false},"extends":false,"files":false,"include":true,"exclude":false,"compileOnSave":false,"configFileName":"other","projectType":"configured","languageServiceEnabled":true,"version":"FakeVersion"}}} -Info 37 [16:01:42.000] event: +Info 37 [00:01:42.000] event: {"seq":0,"type":"event","event":"configFileDiag","body":{"triggerFile":"/user/username/projects/myproject/src/main.ts","configFile":"/user/username/projects/myproject/tsconfig-src.json","diagnostics":[]}} -Info 38 [16:01:43.000] Project '/user/username/projects/myproject/tsconfig.json' (Configured) -Info 38 [16:01:44.000] Files (0) +Info 38 [00:01:43.000] Project '/user/username/projects/myproject/tsconfig.json' (Configured) +Info 38 [00:01:44.000] Files (0) -Info 38 [16:01:45.000] ----------------------------------------------- -Info 38 [16:01:46.000] Project '/user/username/projects/myproject/tsconfig-src.json' (Configured) -Info 38 [16:01:47.000] Files (3) +Info 38 [00:01:45.000] ----------------------------------------------- +Info 38 [00:01:46.000] Project '/user/username/projects/myproject/tsconfig-src.json' (Configured) +Info 38 [00:01:47.000] Files (3) -Info 38 [16:01:48.000] ----------------------------------------------- -Info 38 [16:01:49.000] Open files: -Info 38 [16:01:50.000] FileName: /user/username/projects/myproject/src/main.ts ProjectRootPath: undefined -Info 38 [16:01:51.000] Projects: /user/username/projects/myproject/tsconfig-src.json -Info 38 [16:01:52.000] getDefaultProject for /user/username/projects/myproject/src/main.ts: /user/username/projects/myproject/tsconfig-src.json -Info 38 [16:01:53.000] findDefaultConfiguredProject for /user/username/projects/myproject/src/main.ts: /user/username/projects/myproject/tsconfig-src.json -Info 38 [16:01:54.000] Search path: /dummy -Info 39 [16:01:55.000] For info: /dummy/dummy.ts :: No config files found. -Info 40 [16:01:56.000] Plugins were requested but not running in environment that supports 'require'. Nothing will be loaded -Info 41 [16:01:57.000] Starting updateGraphWorker: Project: /dev/null/inferredProject1* -Info 42 [16:01:58.000] DirectoryWatcher:: Added:: WatchInfo: /dummy/node_modules/@types 1 undefined Project: /dev/null/inferredProject1* WatchType: Type roots -Info 43 [16:01:59.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /dummy/node_modules/@types 1 undefined Project: /dev/null/inferredProject1* WatchType: Type roots -Info 44 [16:02:00.000] Finishing updateGraphWorker: Project: /dev/null/inferredProject1* Version: 1 structureChanged: true structureIsReused:: Not Elapsed:: *ms -Info 45 [16:02:01.000] Project '/dev/null/inferredProject1*' (Inferred) -Info 46 [16:02:02.000] Files (2) +Info 38 [00:01:48.000] ----------------------------------------------- +Info 38 [00:01:49.000] Open files: +Info 38 [00:01:50.000] FileName: /user/username/projects/myproject/src/main.ts ProjectRootPath: undefined +Info 38 [00:01:51.000] Projects: /user/username/projects/myproject/tsconfig-src.json +Info 38 [00:01:52.000] getDefaultProject for /user/username/projects/myproject/src/main.ts: /user/username/projects/myproject/tsconfig-src.json +Info 38 [00:01:53.000] findDefaultConfiguredProject for /user/username/projects/myproject/src/main.ts: /user/username/projects/myproject/tsconfig-src.json +Info 38 [00:01:54.000] Search path: /dummy +Info 39 [00:01:55.000] For info: /dummy/dummy.ts :: No config files found. +Info 40 [00:01:56.000] Plugins were requested but not running in environment that supports 'require'. Nothing will be loaded +Info 41 [00:01:57.000] Starting updateGraphWorker: Project: /dev/null/inferredProject1* +Info 42 [00:01:58.000] DirectoryWatcher:: Added:: WatchInfo: /dummy/node_modules/@types 1 undefined Project: /dev/null/inferredProject1* WatchType: Type roots +Info 43 [00:01:59.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /dummy/node_modules/@types 1 undefined Project: /dev/null/inferredProject1* WatchType: Type roots +Info 44 [00:02:00.000] Finishing updateGraphWorker: Project: /dev/null/inferredProject1* Version: 1 structureChanged: true structureIsReused:: Not Elapsed:: *ms +Info 45 [00:02:01.000] Project '/dev/null/inferredProject1*' (Inferred) +Info 46 [00:02:02.000] Files (2) /a/lib/lib.d.ts /dummy/dummy.ts @@ -146,61 +146,61 @@ Info 46 [16:02:02.000] Files (2) dummy.ts Root file specified for compilation -Info 47 [16:02:03.000] ----------------------------------------------- -Info 48 [16:02:04.000] Project '/user/username/projects/myproject/tsconfig.json' (Configured) -Info 48 [16:02:05.000] Files (0) +Info 47 [00:02:03.000] ----------------------------------------------- +Info 48 [00:02:04.000] Project '/user/username/projects/myproject/tsconfig.json' (Configured) +Info 48 [00:02:05.000] Files (0) -Info 48 [16:02:06.000] ----------------------------------------------- -Info 48 [16:02:07.000] Project '/user/username/projects/myproject/tsconfig-src.json' (Configured) -Info 48 [16:02:08.000] Files (3) +Info 48 [00:02:06.000] ----------------------------------------------- +Info 48 [00:02:07.000] Project '/user/username/projects/myproject/tsconfig-src.json' (Configured) +Info 48 [00:02:08.000] Files (3) -Info 48 [16:02:09.000] ----------------------------------------------- -Info 48 [16:02:10.000] Project '/dev/null/inferredProject1*' (Inferred) -Info 48 [16:02:11.000] Files (2) +Info 48 [00:02:09.000] ----------------------------------------------- +Info 48 [00:02:10.000] Project '/dev/null/inferredProject1*' (Inferred) +Info 48 [00:02:11.000] Files (2) -Info 48 [16:02:12.000] ----------------------------------------------- -Info 48 [16:02:13.000] Open files: -Info 48 [16:02:14.000] FileName: /user/username/projects/myproject/src/main.ts ProjectRootPath: undefined -Info 48 [16:02:15.000] Projects: /user/username/projects/myproject/tsconfig-src.json -Info 48 [16:02:16.000] FileName: /dummy/dummy.ts ProjectRootPath: undefined -Info 48 [16:02:17.000] Projects: /dev/null/inferredProject1* -Info 48 [16:02:18.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/src/main.ts 500 undefined WatchType: Closed Script info -Info 49 [16:02:19.000] Project '/user/username/projects/myproject/tsconfig.json' (Configured) -Info 49 [16:02:20.000] Files (0) +Info 48 [00:02:12.000] ----------------------------------------------- +Info 48 [00:02:13.000] Open files: +Info 48 [00:02:14.000] FileName: /user/username/projects/myproject/src/main.ts ProjectRootPath: undefined +Info 48 [00:02:15.000] Projects: /user/username/projects/myproject/tsconfig-src.json +Info 48 [00:02:16.000] FileName: /dummy/dummy.ts ProjectRootPath: undefined +Info 48 [00:02:17.000] Projects: /dev/null/inferredProject1* +Info 48 [00:02:18.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/src/main.ts 500 undefined WatchType: Closed Script info +Info 49 [00:02:19.000] Project '/user/username/projects/myproject/tsconfig.json' (Configured) +Info 49 [00:02:20.000] Files (0) -Info 49 [16:02:21.000] ----------------------------------------------- -Info 49 [16:02:22.000] Project '/user/username/projects/myproject/tsconfig-src.json' (Configured) -Info 49 [16:02:23.000] Files (3) +Info 49 [00:02:21.000] ----------------------------------------------- +Info 49 [00:02:22.000] Project '/user/username/projects/myproject/tsconfig-src.json' (Configured) +Info 49 [00:02:23.000] Files (3) -Info 49 [16:02:24.000] ----------------------------------------------- -Info 49 [16:02:25.000] Project '/dev/null/inferredProject1*' (Inferred) -Info 49 [16:02:26.000] Files (2) +Info 49 [00:02:24.000] ----------------------------------------------- +Info 49 [00:02:25.000] Project '/dev/null/inferredProject1*' (Inferred) +Info 49 [00:02:26.000] Files (2) -Info 49 [16:02:27.000] ----------------------------------------------- -Info 49 [16:02:28.000] Open files: -Info 49 [16:02:29.000] FileName: /dummy/dummy.ts ProjectRootPath: undefined -Info 49 [16:02:30.000] Projects: /dev/null/inferredProject1* -Info 49 [16:02:31.000] FileWatcher:: Added:: WatchInfo: /dummy/dummy.ts 500 undefined WatchType: Closed Script info -Info 50 [16:02:32.000] Project '/user/username/projects/myproject/tsconfig.json' (Configured) -Info 50 [16:02:33.000] Files (0) +Info 49 [00:02:27.000] ----------------------------------------------- +Info 49 [00:02:28.000] Open files: +Info 49 [00:02:29.000] FileName: /dummy/dummy.ts ProjectRootPath: undefined +Info 49 [00:02:30.000] Projects: /dev/null/inferredProject1* +Info 49 [00:02:31.000] FileWatcher:: Added:: WatchInfo: /dummy/dummy.ts 500 undefined WatchType: Closed Script info +Info 50 [00:02:32.000] Project '/user/username/projects/myproject/tsconfig.json' (Configured) +Info 50 [00:02:33.000] Files (0) -Info 50 [16:02:34.000] ----------------------------------------------- -Info 50 [16:02:35.000] Project '/user/username/projects/myproject/tsconfig-src.json' (Configured) -Info 50 [16:02:36.000] Files (3) +Info 50 [00:02:34.000] ----------------------------------------------- +Info 50 [00:02:35.000] Project '/user/username/projects/myproject/tsconfig-src.json' (Configured) +Info 50 [00:02:36.000] Files (3) -Info 50 [16:02:37.000] ----------------------------------------------- -Info 50 [16:02:38.000] Project '/dev/null/inferredProject1*' (Inferred) -Info 50 [16:02:39.000] Files (2) +Info 50 [00:02:37.000] ----------------------------------------------- +Info 50 [00:02:38.000] Project '/dev/null/inferredProject1*' (Inferred) +Info 50 [00:02:39.000] Files (2) -Info 50 [16:02:40.000] ----------------------------------------------- -Info 50 [16:02:41.000] Open files: -Info 50 [16:02:42.000] FileWatcher:: Close:: WatchInfo: /dummy/dummy.ts 500 undefined WatchType: Closed Script info -Info 51 [16:02:43.000] Search path: /dummy -Info 52 [16:02:44.000] For info: /dummy/dummy.ts :: No config files found. -Info 53 [16:02:45.000] Starting updateGraphWorker: Project: /dev/null/inferredProject1* -Info 54 [16:02:46.000] Finishing updateGraphWorker: Project: /dev/null/inferredProject1* Version: 2 structureChanged: false structureIsReused:: Not Elapsed:: *ms -Info 55 [16:02:47.000] Project '/dev/null/inferredProject1*' (Inferred) -Info 56 [16:02:48.000] Files (2) +Info 50 [00:02:40.000] ----------------------------------------------- +Info 50 [00:02:41.000] Open files: +Info 50 [00:02:42.000] FileWatcher:: Close:: WatchInfo: /dummy/dummy.ts 500 undefined WatchType: Closed Script info +Info 51 [00:02:43.000] Search path: /dummy +Info 52 [00:02:44.000] For info: /dummy/dummy.ts :: No config files found. +Info 53 [00:02:45.000] Starting updateGraphWorker: Project: /dev/null/inferredProject1* +Info 54 [00:02:46.000] Finishing updateGraphWorker: Project: /dev/null/inferredProject1* Version: 2 structureChanged: false structureIsReused:: Not Elapsed:: *ms +Info 55 [00:02:47.000] Project '/dev/null/inferredProject1*' (Inferred) +Info 56 [00:02:48.000] Files (2) /a/lib/lib.d.ts /dummy/dummy.ts @@ -210,22 +210,22 @@ Info 56 [16:02:48.000] Files (2) dummy.ts Root file specified for compilation -Info 57 [16:02:49.000] ----------------------------------------------- -Info 58 [16:02:50.000] `remove Project:: -Info 59 [16:02:51.000] Project '/user/username/projects/myproject/tsconfig.json' (Configured) -Info 60 [16:02:52.000] Files (0) +Info 57 [00:02:49.000] ----------------------------------------------- +Info 58 [00:02:50.000] `remove Project:: +Info 59 [00:02:51.000] Project '/user/username/projects/myproject/tsconfig.json' (Configured) +Info 60 [00:02:52.000] Files (0) -Info 61 [16:02:53.000] ----------------------------------------------- -Info 62 [16:02:54.000] FileWatcher:: Close:: WatchInfo: /user/username/projects/myproject/tsconfig.json 2000 undefined Project: /user/username/projects/myproject/tsconfig.json WatchType: Config file -Info 63 [16:02:55.000] FileWatcher:: Close:: WatchInfo: /user/username/projects/myproject/tsconfig-indirect1.json 2000 undefined Project: /user/username/projects/myproject/tsconfig.json WatchType: Config file -Info 64 [16:02:56.000] FileWatcher:: Close:: WatchInfo: /user/username/projects/myproject/tsconfig-indirect2.json 2000 undefined Project: /user/username/projects/myproject/tsconfig.json WatchType: Config file -Info 65 [16:02:57.000] DirectoryWatcher:: Close:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/tsconfig.json WatchType: Type roots -Info 66 [16:02:58.000] 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 67 [16:02:59.000] `remove Project:: -Info 68 [16:03:00.000] Project '/user/username/projects/myproject/tsconfig-src.json' (Configured) -Info 69 [16:03:01.000] Files (3) +Info 61 [00:02:53.000] ----------------------------------------------- +Info 62 [00:02:54.000] FileWatcher:: Close:: WatchInfo: /user/username/projects/myproject/tsconfig.json 2000 undefined Project: /user/username/projects/myproject/tsconfig.json WatchType: Config file +Info 63 [00:02:55.000] FileWatcher:: Close:: WatchInfo: /user/username/projects/myproject/tsconfig-indirect1.json 2000 undefined Project: /user/username/projects/myproject/tsconfig.json WatchType: Config file +Info 64 [00:02:56.000] FileWatcher:: Close:: WatchInfo: /user/username/projects/myproject/tsconfig-indirect2.json 2000 undefined Project: /user/username/projects/myproject/tsconfig.json WatchType: Config file +Info 65 [00:02:57.000] DirectoryWatcher:: Close:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/tsconfig.json WatchType: Type roots +Info 66 [00:02:58.000] 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 67 [00:02:59.000] `remove Project:: +Info 68 [00:03:00.000] Project '/user/username/projects/myproject/tsconfig-src.json' (Configured) +Info 69 [00:03:01.000] Files (3) /a/lib/lib.d.ts /user/username/projects/myproject/src/helpers/functions.ts /user/username/projects/myproject/src/main.ts @@ -239,28 +239,28 @@ Info 69 [16:03:01.000] Files (3) src/main.ts Matched by include pattern './src/**/*' in 'tsconfig-src.json' -Info 70 [16:03:02.000] ----------------------------------------------- -Info 71 [16:03:03.000] DirectoryWatcher:: Close:: WatchInfo: /user/username/projects/myproject/src 1 undefined Config: /user/username/projects/myproject/tsconfig-src.json WatchType: Wild card directory -Info 72 [16:03:04.000] 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 73 [16:03:05.000] FileWatcher:: Close:: WatchInfo: /user/username/projects/myproject/tsconfig-src.json 2000 undefined Project: /user/username/projects/myproject/tsconfig.json WatchType: Config file -Info 74 [16:03:06.000] DirectoryWatcher:: Close:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/tsconfig-src.json WatchType: Type roots -Info 75 [16:03:07.000] 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 76 [16:03:08.000] FileWatcher:: Close:: WatchInfo: /user/username/projects/myproject/src/main.ts 500 undefined WatchType: Closed Script info -Info 77 [16:03:09.000] FileWatcher:: Close:: WatchInfo: /user/username/projects/myproject/src/helpers/functions.ts 500 undefined WatchType: Closed Script info -Info 78 [16:03:10.000] Project '/dev/null/inferredProject1*' (Inferred) -Info 78 [16:03:11.000] Files (2) +Info 70 [00:03:02.000] ----------------------------------------------- +Info 71 [00:03:03.000] DirectoryWatcher:: Close:: WatchInfo: /user/username/projects/myproject/src 1 undefined Config: /user/username/projects/myproject/tsconfig-src.json WatchType: Wild card directory +Info 72 [00:03:04.000] 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 73 [00:03:05.000] FileWatcher:: Close:: WatchInfo: /user/username/projects/myproject/tsconfig-src.json 2000 undefined Project: /user/username/projects/myproject/tsconfig.json WatchType: Config file +Info 74 [00:03:06.000] DirectoryWatcher:: Close:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/tsconfig-src.json WatchType: Type roots +Info 75 [00:03:07.000] 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 76 [00:03:08.000] FileWatcher:: Close:: WatchInfo: /user/username/projects/myproject/src/main.ts 500 undefined WatchType: Closed Script info +Info 77 [00:03:09.000] FileWatcher:: Close:: WatchInfo: /user/username/projects/myproject/src/helpers/functions.ts 500 undefined WatchType: Closed Script info +Info 78 [00:03:10.000] Project '/dev/null/inferredProject1*' (Inferred) +Info 78 [00:03:11.000] Files (2) -Info 78 [16:03:12.000] ----------------------------------------------- -Info 78 [16:03:13.000] Open files: -Info 78 [16:03:14.000] FileName: /dummy/dummy.ts ProjectRootPath: undefined -Info 78 [16:03:15.000] Projects: /dev/null/inferredProject1* -Info 78 [16:03:16.000] Search path: /user/username/projects/myproject/src -Info 79 [16:03:17.000] For info: /user/username/projects/myproject/src/main.ts :: Config file name: /user/username/projects/myproject/tsconfig.json -Info 80 [16:03:18.000] Creating configuration project /user/username/projects/myproject/tsconfig.json -Info 81 [16:03:19.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/tsconfig.json 2000 undefined Project: /user/username/projects/myproject/tsconfig.json WatchType: Config file -Info 82 [16:03:20.000] event: +Info 78 [00:03:12.000] ----------------------------------------------- +Info 78 [00:03:13.000] Open files: +Info 78 [00:03:14.000] FileName: /dummy/dummy.ts ProjectRootPath: undefined +Info 78 [00:03:15.000] Projects: /dev/null/inferredProject1* +Info 78 [00:03:16.000] Search path: /user/username/projects/myproject/src +Info 79 [00:03:17.000] For info: /user/username/projects/myproject/src/main.ts :: Config file name: /user/username/projects/myproject/tsconfig.json +Info 80 [00:03:18.000] Creating configuration project /user/username/projects/myproject/tsconfig.json +Info 81 [00:03:19.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/tsconfig.json 2000 undefined Project: /user/username/projects/myproject/tsconfig.json WatchType: Config file +Info 82 [00:03:20.000] event: {"seq":0,"type":"event","event":"projectLoadingStart","body":{"projectName":"/user/username/projects/myproject/tsconfig.json","reason":"Creating possible configured project for /user/username/projects/myproject/src/main.ts to open"}} -Info 83 [16:03:21.000] Config: /user/username/projects/myproject/tsconfig.json : { +Info 83 [00:03:21.000] Config: /user/username/projects/myproject/tsconfig.json : { "rootNames": [], "options": { "configFilePath": "/user/username/projects/myproject/tsconfig.json" @@ -276,9 +276,9 @@ Info 83 [16:03:21.000] Config: /user/username/projects/myproject/tsconfig.json } ] } -Info 84 [16:03:22.000] Plugins were requested but not running in environment that supports 'require'. Nothing will be loaded -Info 85 [16:03:23.000] Starting updateGraphWorker: Project: /user/username/projects/myproject/tsconfig.json -Info 86 [16:03:24.000] Config: /user/username/projects/myproject/tsconfig-indirect1.json : { +Info 84 [00:03:22.000] Plugins were requested but not running in environment that supports 'require'. Nothing will be loaded +Info 85 [00:03:23.000] Starting updateGraphWorker: Project: /user/username/projects/myproject/tsconfig.json +Info 86 [00:03:24.000] Config: /user/username/projects/myproject/tsconfig-indirect1.json : { "rootNames": [ "/user/username/projects/myproject/indirect1/main.ts" ], @@ -296,8 +296,8 @@ Info 86 [16:03:24.000] Config: /user/username/projects/myproject/tsconfig-indi } ] } -Info 87 [16:03:25.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/tsconfig-indirect1.json 2000 undefined Project: /user/username/projects/myproject/tsconfig.json WatchType: Config file -Info 88 [16:03:26.000] Config: /user/username/projects/myproject/tsconfig-src.json : { +Info 87 [00:03:25.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/tsconfig-indirect1.json 2000 undefined Project: /user/username/projects/myproject/tsconfig.json WatchType: Config file +Info 88 [00:03:26.000] Config: /user/username/projects/myproject/tsconfig-src.json : { "rootNames": [ "/user/username/projects/myproject/src/main.ts", "/user/username/projects/myproject/src/helpers/functions.ts" @@ -309,10 +309,10 @@ Info 88 [16:03:26.000] Config: /user/username/projects/myproject/tsconfig-src. "configFilePath": "/user/username/projects/myproject/tsconfig-src.json" } } -Info 89 [16:03:27.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/tsconfig-src.json 2000 undefined Project: /user/username/projects/myproject/tsconfig.json WatchType: Config file -Info 90 [16:03:28.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/src 1 undefined Config: /user/username/projects/myproject/tsconfig-src.json WatchType: Wild card directory -Info 91 [16:03:29.000] 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 92 [16:03:30.000] Config: /user/username/projects/myproject/tsconfig-indirect2.json : { +Info 89 [00:03:27.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/tsconfig-src.json 2000 undefined Project: /user/username/projects/myproject/tsconfig.json WatchType: Config file +Info 90 [00:03:28.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/src 1 undefined Config: /user/username/projects/myproject/tsconfig-src.json WatchType: Wild card directory +Info 91 [00:03:29.000] 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 92 [00:03:30.000] Config: /user/username/projects/myproject/tsconfig-indirect2.json : { "rootNames": [ "/user/username/projects/myproject/indirect2/main.ts" ], @@ -329,24 +329,24 @@ Info 92 [16:03:30.000] Config: /user/username/projects/myproject/tsconfig-indi } ] } -Info 93 [16:03:31.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/tsconfig-indirect2.json 2000 undefined Project: /user/username/projects/myproject/tsconfig.json WatchType: Config file -Info 94 [16:03:32.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/tsconfig.json WatchType: Type roots -Info 95 [16:03:33.000] 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 96 [16:03:34.000] Finishing updateGraphWorker: Project: /user/username/projects/myproject/tsconfig.json Version: 1 structureChanged: true structureIsReused:: Not Elapsed:: *ms -Info 97 [16:03:35.000] Different program with same set of files -Info 98 [16:03:36.000] event: +Info 93 [00:03:31.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/tsconfig-indirect2.json 2000 undefined Project: /user/username/projects/myproject/tsconfig.json WatchType: Config file +Info 94 [00:03:32.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/tsconfig.json WatchType: Type roots +Info 95 [00:03:33.000] 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 96 [00:03:34.000] Finishing updateGraphWorker: Project: /user/username/projects/myproject/tsconfig.json Version: 1 structureChanged: true structureIsReused:: Not Elapsed:: *ms +Info 97 [00:03:35.000] Different program with same set of files +Info 98 [00:03:36.000] event: {"seq":0,"type":"event","event":"projectLoadingFinish","body":{"projectName":"/user/username/projects/myproject/tsconfig.json"}} -Info 99 [16:03:37.000] Creating configuration project /user/username/projects/myproject/tsconfig-src.json -Info 100 [16:03:38.000] event: +Info 99 [00:03:37.000] Creating configuration project /user/username/projects/myproject/tsconfig-src.json +Info 100 [00:03:38.000] event: {"seq":0,"type":"event","event":"projectLoadingStart","body":{"projectName":"/user/username/projects/myproject/tsconfig-src.json","reason":"Creating project referenced in solution /user/username/projects/myproject/tsconfig.json to find possible configured project for /user/username/projects/myproject/src/main.ts to open"}} -Info 101 [16:03:39.000] Plugins were requested but not running in environment that supports 'require'. Nothing will be loaded -Info 102 [16:03:40.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/src/helpers/functions.ts 500 undefined WatchType: Closed Script info -Info 103 [16:03:41.000] Starting updateGraphWorker: Project: /user/username/projects/myproject/tsconfig-src.json -Info 104 [16:03:42.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/tsconfig-src.json WatchType: Type roots -Info 105 [16:03:43.000] 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 106 [16:03:44.000] Finishing updateGraphWorker: Project: /user/username/projects/myproject/tsconfig-src.json Version: 1 structureChanged: true structureIsReused:: Not Elapsed:: *ms -Info 107 [16:03:45.000] Project '/user/username/projects/myproject/tsconfig-src.json' (Configured) -Info 108 [16:03:46.000] Files (3) +Info 101 [00:03:39.000] Plugins were requested but not running in environment that supports 'require'. Nothing will be loaded +Info 102 [00:03:40.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/src/helpers/functions.ts 500 undefined WatchType: Closed Script info +Info 103 [00:03:41.000] Starting updateGraphWorker: Project: /user/username/projects/myproject/tsconfig-src.json +Info 104 [00:03:42.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/tsconfig-src.json WatchType: Type roots +Info 105 [00:03:43.000] 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 106 [00:03:44.000] Finishing updateGraphWorker: Project: /user/username/projects/myproject/tsconfig-src.json Version: 1 structureChanged: true structureIsReused:: Not Elapsed:: *ms +Info 107 [00:03:45.000] Project '/user/username/projects/myproject/tsconfig-src.json' (Configured) +Info 108 [00:03:46.000] Files (3) /a/lib/lib.d.ts /user/username/projects/myproject/src/helpers/functions.ts /user/username/projects/myproject/src/main.ts @@ -360,44 +360,44 @@ Info 108 [16:03:46.000] Files (3) src/main.ts Matched by include pattern './src/**/*' in 'tsconfig-src.json' -Info 109 [16:03:47.000] ----------------------------------------------- -Info 110 [16:03:48.000] event: +Info 109 [00:03:47.000] ----------------------------------------------- +Info 110 [00:03:48.000] event: {"seq":0,"type":"event","event":"projectLoadingFinish","body":{"projectName":"/user/username/projects/myproject/tsconfig-src.json"}} -Info 111 [16:03:49.000] event: +Info 111 [00:03:49.000] event: {"seq":0,"type":"event","event":"configFileDiag","body":{"triggerFile":"/user/username/projects/myproject/src/main.ts","configFile":"/user/username/projects/myproject/tsconfig-src.json","diagnostics":[]}} -Info 112 [16:03:50.000] Project '/user/username/projects/myproject/tsconfig.json' (Configured) -Info 112 [16:03:51.000] Files (0) +Info 112 [00:03:50.000] Project '/user/username/projects/myproject/tsconfig.json' (Configured) +Info 112 [00:03:51.000] Files (0) -Info 112 [16:03:52.000] ----------------------------------------------- -Info 112 [16:03:53.000] Project '/user/username/projects/myproject/tsconfig-src.json' (Configured) -Info 112 [16:03:54.000] Files (3) +Info 112 [00:03:52.000] ----------------------------------------------- +Info 112 [00:03:53.000] Project '/user/username/projects/myproject/tsconfig-src.json' (Configured) +Info 112 [00:03:54.000] Files (3) -Info 112 [16:03:55.000] ----------------------------------------------- -Info 112 [16:03:56.000] Project '/dev/null/inferredProject1*' (Inferred) -Info 112 [16:03:57.000] Files (2) +Info 112 [00:03:55.000] ----------------------------------------------- +Info 112 [00:03:56.000] Project '/dev/null/inferredProject1*' (Inferred) +Info 112 [00:03:57.000] Files (2) -Info 112 [16:03:58.000] ----------------------------------------------- -Info 112 [16:03:59.000] Open files: -Info 112 [16:04:00.000] FileName: /dummy/dummy.ts ProjectRootPath: undefined -Info 112 [16:04:01.000] Projects: /dev/null/inferredProject1* -Info 112 [16:04:02.000] FileName: /user/username/projects/myproject/src/main.ts ProjectRootPath: undefined -Info 112 [16:04:03.000] Projects: /user/username/projects/myproject/tsconfig-src.json -Info 112 [16:04:04.000] reload projects. -Info 113 [16:04:05.000] Scheduled: /dev/null/inferredProject1* -Info 114 [16:04:06.000] Scheduled: /user/username/projects/myproject/tsconfig-src.json -Info 115 [16:04:07.000] Scheduled: *ensureProjectForOpenFiles* -Info 116 [16:04:08.000] Scheduled: /user/username/projects/myproject/tsconfig-src.json, Cancelled earlier one -Info 117 [16:04:09.000] Scheduled: *ensureProjectForOpenFiles*, Cancelled earlier one -Info 118 [16:04:10.000] Search path: /dummy -Info 119 [16:04:11.000] For info: /dummy/dummy.ts :: No config files found. -Info 120 [16:04:12.000] Search path: /user/username/projects/myproject/src -Info 121 [16:04:13.000] For info: /user/username/projects/myproject/src/main.ts :: Config file name: /user/username/projects/myproject/tsconfig.json -Info 122 [16:04:14.000] DirectoryWatcher:: Close:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/tsconfig.json WatchType: Type roots -Info 123 [16:04:15.000] 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 124 [16:04:16.000] Reloading configured project /user/username/projects/myproject/tsconfig.json -Info 125 [16:04:17.000] event: +Info 112 [00:03:58.000] ----------------------------------------------- +Info 112 [00:03:59.000] Open files: +Info 112 [00:04:00.000] FileName: /dummy/dummy.ts ProjectRootPath: undefined +Info 112 [00:04:01.000] Projects: /dev/null/inferredProject1* +Info 112 [00:04:02.000] FileName: /user/username/projects/myproject/src/main.ts ProjectRootPath: undefined +Info 112 [00:04:03.000] Projects: /user/username/projects/myproject/tsconfig-src.json +Info 112 [00:04:04.000] reload projects. +Info 113 [00:04:05.000] Scheduled: /dev/null/inferredProject1* +Info 114 [00:04:06.000] Scheduled: /user/username/projects/myproject/tsconfig-src.json +Info 115 [00:04:07.000] Scheduled: *ensureProjectForOpenFiles* +Info 116 [00:04:08.000] Scheduled: /user/username/projects/myproject/tsconfig-src.json, Cancelled earlier one +Info 117 [00:04:09.000] Scheduled: *ensureProjectForOpenFiles*, Cancelled earlier one +Info 118 [00:04:10.000] Search path: /dummy +Info 119 [00:04:11.000] For info: /dummy/dummy.ts :: No config files found. +Info 120 [00:04:12.000] Search path: /user/username/projects/myproject/src +Info 121 [00:04:13.000] For info: /user/username/projects/myproject/src/main.ts :: Config file name: /user/username/projects/myproject/tsconfig.json +Info 122 [00:04:14.000] DirectoryWatcher:: Close:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/tsconfig.json WatchType: Type roots +Info 123 [00:04:15.000] 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 124 [00:04:16.000] Reloading configured project /user/username/projects/myproject/tsconfig.json +Info 125 [00:04:17.000] event: {"seq":0,"type":"event","event":"projectLoadingStart","body":{"projectName":"/user/username/projects/myproject/tsconfig.json","reason":"User requested reload projects"}} -Info 126 [16:04:18.000] Config: /user/username/projects/myproject/tsconfig.json : { +Info 126 [00:04:18.000] Config: /user/username/projects/myproject/tsconfig.json : { "rootNames": [], "options": { "configFilePath": "/user/username/projects/myproject/tsconfig.json" @@ -413,9 +413,9 @@ Info 126 [16:04:18.000] Config: /user/username/projects/myproject/tsconfig.json } ] } -Info 127 [16:04:19.000] Plugins were requested but not running in environment that supports 'require'. Nothing will be loaded -Info 128 [16:04:20.000] Starting updateGraphWorker: Project: /user/username/projects/myproject/tsconfig.json -Info 129 [16:04:21.000] Config: /user/username/projects/myproject/tsconfig-indirect1.json : { +Info 127 [00:04:19.000] Plugins were requested but not running in environment that supports 'require'. Nothing will be loaded +Info 128 [00:04:20.000] Starting updateGraphWorker: Project: /user/username/projects/myproject/tsconfig.json +Info 129 [00:04:21.000] Config: /user/username/projects/myproject/tsconfig-indirect1.json : { "rootNames": [ "/user/username/projects/myproject/indirect1/main.ts" ], @@ -433,7 +433,7 @@ Info 129 [16:04:21.000] Config: /user/username/projects/myproject/tsconfig-indi } ] } -Info 130 [16:04:22.000] Config: /user/username/projects/myproject/tsconfig-src.json : { +Info 130 [00:04:22.000] Config: /user/username/projects/myproject/tsconfig-src.json : { "rootNames": [ "/user/username/projects/myproject/src/main.ts", "/user/username/projects/myproject/src/helpers/functions.ts" @@ -445,7 +445,7 @@ Info 130 [16:04:22.000] Config: /user/username/projects/myproject/tsconfig-src. "configFilePath": "/user/username/projects/myproject/tsconfig-src.json" } } -Info 131 [16:04:23.000] Config: /user/username/projects/myproject/tsconfig-indirect2.json : { +Info 131 [00:04:23.000] Config: /user/username/projects/myproject/tsconfig-indirect2.json : { "rootNames": [ "/user/username/projects/myproject/indirect2/main.ts" ], @@ -462,69 +462,69 @@ Info 131 [16:04:23.000] Config: /user/username/projects/myproject/tsconfig-indi } ] } -Info 132 [16:04:24.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/tsconfig.json WatchType: Type roots -Info 133 [16:04:25.000] 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 134 [16:04:26.000] Finishing updateGraphWorker: Project: /user/username/projects/myproject/tsconfig.json Version: 2 structureChanged: true structureIsReused:: Not Elapsed:: *ms -Info 135 [16:04:27.000] Different program with same set of files -Info 136 [16:04:28.000] event: +Info 132 [00:04:24.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/tsconfig.json WatchType: Type roots +Info 133 [00:04:25.000] 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 134 [00:04:26.000] Finishing updateGraphWorker: Project: /user/username/projects/myproject/tsconfig.json Version: 2 structureChanged: true structureIsReused:: Not Elapsed:: *ms +Info 135 [00:04:27.000] Different program with same set of files +Info 136 [00:04:28.000] event: {"seq":0,"type":"event","event":"projectLoadingFinish","body":{"projectName":"/user/username/projects/myproject/tsconfig.json"}} -Info 137 [16:04:29.000] event: +Info 137 [00:04:29.000] event: {"seq":0,"type":"event","event":"configFileDiag","body":{"triggerFile":"/user/username/projects/myproject/tsconfig.json","configFile":"/user/username/projects/myproject/tsconfig.json","diagnostics":[]}} -Info 138 [16:04:30.000] DirectoryWatcher:: Close:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/tsconfig-src.json WatchType: Type roots -Info 139 [16:04:31.000] 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 140 [16:04:32.000] Reloading configured project /user/username/projects/myproject/tsconfig-src.json -Info 141 [16:04:33.000] event: +Info 138 [00:04:30.000] DirectoryWatcher:: Close:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/tsconfig-src.json WatchType: Type roots +Info 139 [00:04:31.000] 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 140 [00:04:32.000] Reloading configured project /user/username/projects/myproject/tsconfig-src.json +Info 141 [00:04:33.000] event: {"seq":0,"type":"event","event":"projectLoadingStart","body":{"projectName":"/user/username/projects/myproject/tsconfig-src.json","reason":"User requested reload projects"}} -Info 142 [16:04:34.000] Plugins were requested but not running in environment that supports 'require'. Nothing will be loaded -Info 143 [16:04:35.000] Starting updateGraphWorker: Project: /user/username/projects/myproject/tsconfig-src.json -Info 144 [16:04:36.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/tsconfig-src.json WatchType: Type roots -Info 145 [16:04:37.000] 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 146 [16:04:38.000] Finishing updateGraphWorker: Project: /user/username/projects/myproject/tsconfig-src.json Version: 2 structureChanged: true structureIsReused:: Not Elapsed:: *ms -Info 147 [16:04:39.000] Different program with same set of files -Info 148 [16:04:40.000] event: +Info 142 [00:04:34.000] Plugins were requested but not running in environment that supports 'require'. Nothing will be loaded +Info 143 [00:04:35.000] Starting updateGraphWorker: Project: /user/username/projects/myproject/tsconfig-src.json +Info 144 [00:04:36.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/tsconfig-src.json WatchType: Type roots +Info 145 [00:04:37.000] 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 146 [00:04:38.000] Finishing updateGraphWorker: Project: /user/username/projects/myproject/tsconfig-src.json Version: 2 structureChanged: true structureIsReused:: Not Elapsed:: *ms +Info 147 [00:04:39.000] Different program with same set of files +Info 148 [00:04:40.000] event: {"seq":0,"type":"event","event":"projectLoadingFinish","body":{"projectName":"/user/username/projects/myproject/tsconfig-src.json"}} -Info 149 [16:04:41.000] event: +Info 149 [00:04:41.000] event: {"seq":0,"type":"event","event":"configFileDiag","body":{"triggerFile":"/user/username/projects/myproject/tsconfig-src.json","configFile":"/user/username/projects/myproject/tsconfig-src.json","diagnostics":[]}} -Info 150 [16:04:42.000] DirectoryWatcher:: Close:: WatchInfo: /dummy/node_modules/@types 1 undefined Project: /dev/null/inferredProject1* WatchType: Type roots -Info 151 [16:04:43.000] Elapsed:: *ms DirectoryWatcher:: Close:: WatchInfo: /dummy/node_modules/@types 1 undefined Project: /dev/null/inferredProject1* WatchType: Type roots -Info 152 [16:04:44.000] Before ensureProjectForOpenFiles: -Info 153 [16:04:45.000] Project '/user/username/projects/myproject/tsconfig.json' (Configured) -Info 153 [16:04:46.000] Files (0) +Info 150 [00:04:42.000] DirectoryWatcher:: Close:: WatchInfo: /dummy/node_modules/@types 1 undefined Project: /dev/null/inferredProject1* WatchType: Type roots +Info 151 [00:04:43.000] Elapsed:: *ms DirectoryWatcher:: Close:: WatchInfo: /dummy/node_modules/@types 1 undefined Project: /dev/null/inferredProject1* WatchType: Type roots +Info 152 [00:04:44.000] Before ensureProjectForOpenFiles: +Info 153 [00:04:45.000] Project '/user/username/projects/myproject/tsconfig.json' (Configured) +Info 153 [00:04:46.000] Files (0) -Info 153 [16:04:47.000] ----------------------------------------------- -Info 153 [16:04:48.000] Project '/user/username/projects/myproject/tsconfig-src.json' (Configured) -Info 153 [16:04:49.000] Files (3) +Info 153 [00:04:47.000] ----------------------------------------------- +Info 153 [00:04:48.000] Project '/user/username/projects/myproject/tsconfig-src.json' (Configured) +Info 153 [00:04:49.000] Files (3) -Info 153 [16:04:50.000] ----------------------------------------------- -Info 153 [16:04:51.000] Project '/dev/null/inferredProject1*' (Inferred) -Info 153 [16:04:52.000] Files (2) +Info 153 [00:04:50.000] ----------------------------------------------- +Info 153 [00:04:51.000] Project '/dev/null/inferredProject1*' (Inferred) +Info 153 [00:04:52.000] Files (2) -Info 153 [16:04:53.000] ----------------------------------------------- -Info 153 [16:04:54.000] Open files: -Info 153 [16:04:55.000] FileName: /dummy/dummy.ts ProjectRootPath: undefined -Info 153 [16:04:56.000] Projects: /dev/null/inferredProject1* -Info 153 [16:04:57.000] FileName: /user/username/projects/myproject/src/main.ts ProjectRootPath: undefined -Info 153 [16:04:58.000] Projects: /user/username/projects/myproject/tsconfig-src.json -Info 153 [16:04:59.000] Starting updateGraphWorker: Project: /dev/null/inferredProject1* -Info 154 [16:05:00.000] DirectoryWatcher:: Added:: WatchInfo: /dummy/node_modules/@types 1 undefined Project: /dev/null/inferredProject1* WatchType: Type roots -Info 155 [16:05:01.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /dummy/node_modules/@types 1 undefined Project: /dev/null/inferredProject1* WatchType: Type roots -Info 156 [16:05:02.000] Finishing updateGraphWorker: Project: /dev/null/inferredProject1* Version: 3 structureChanged: true structureIsReused:: Not Elapsed:: *ms -Info 157 [16:05:03.000] Different program with same set of files -Info 158 [16:05:04.000] After ensureProjectForOpenFiles: -Info 159 [16:05:05.000] Project '/user/username/projects/myproject/tsconfig.json' (Configured) -Info 159 [16:05:06.000] Files (0) +Info 153 [00:04:53.000] ----------------------------------------------- +Info 153 [00:04:54.000] Open files: +Info 153 [00:04:55.000] FileName: /dummy/dummy.ts ProjectRootPath: undefined +Info 153 [00:04:56.000] Projects: /dev/null/inferredProject1* +Info 153 [00:04:57.000] FileName: /user/username/projects/myproject/src/main.ts ProjectRootPath: undefined +Info 153 [00:04:58.000] Projects: /user/username/projects/myproject/tsconfig-src.json +Info 153 [00:04:59.000] Starting updateGraphWorker: Project: /dev/null/inferredProject1* +Info 154 [00:05:00.000] DirectoryWatcher:: Added:: WatchInfo: /dummy/node_modules/@types 1 undefined Project: /dev/null/inferredProject1* WatchType: Type roots +Info 155 [00:05:01.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /dummy/node_modules/@types 1 undefined Project: /dev/null/inferredProject1* WatchType: Type roots +Info 156 [00:05:02.000] Finishing updateGraphWorker: Project: /dev/null/inferredProject1* Version: 3 structureChanged: true structureIsReused:: Not Elapsed:: *ms +Info 157 [00:05:03.000] Different program with same set of files +Info 158 [00:05:04.000] After ensureProjectForOpenFiles: +Info 159 [00:05:05.000] Project '/user/username/projects/myproject/tsconfig.json' (Configured) +Info 159 [00:05:06.000] Files (0) -Info 159 [16:05:07.000] ----------------------------------------------- -Info 159 [16:05:08.000] Project '/user/username/projects/myproject/tsconfig-src.json' (Configured) -Info 159 [16:05:09.000] Files (3) +Info 159 [00:05:07.000] ----------------------------------------------- +Info 159 [00:05:08.000] Project '/user/username/projects/myproject/tsconfig-src.json' (Configured) +Info 159 [00:05:09.000] Files (3) -Info 159 [16:05:10.000] ----------------------------------------------- -Info 159 [16:05:11.000] Project '/dev/null/inferredProject1*' (Inferred) -Info 159 [16:05:12.000] Files (2) +Info 159 [00:05:10.000] ----------------------------------------------- +Info 159 [00:05:11.000] Project '/dev/null/inferredProject1*' (Inferred) +Info 159 [00:05:12.000] Files (2) -Info 159 [16:05:13.000] ----------------------------------------------- -Info 159 [16:05:14.000] Open files: -Info 159 [16:05:15.000] FileName: /dummy/dummy.ts ProjectRootPath: undefined -Info 159 [16:05:16.000] Projects: /dev/null/inferredProject1* -Info 159 [16:05:17.000] FileName: /user/username/projects/myproject/src/main.ts ProjectRootPath: undefined -Info 159 [16:05:18.000] Projects: /user/username/projects/myproject/tsconfig-src.json \ No newline at end of file +Info 159 [00:05:13.000] ----------------------------------------------- +Info 159 [00:05:14.000] Open files: +Info 159 [00:05:15.000] FileName: /dummy/dummy.ts ProjectRootPath: undefined +Info 159 [00:05:16.000] Projects: /dev/null/inferredProject1* +Info 159 [00:05:17.000] FileName: /user/username/projects/myproject/src/main.ts ProjectRootPath: undefined +Info 159 [00:05:18.000] Projects: /user/username/projects/myproject/tsconfig-src.json \ No newline at end of file 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 6809429dec218..3d06d15f4151b 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 @@ -1,11 +1,11 @@ -Info 0 [16:00:59.000] Provided types map file "/a/lib/typesMap.json" doesn't exist -Info 1 [16:01:00.000] Search path: /user/username/projects/myproject/src -Info 2 [16:01:01.000] For info: /user/username/projects/myproject/src/main.ts :: Config file name: /user/username/projects/myproject/tsconfig.json -Info 3 [16:01:02.000] Creating configuration project /user/username/projects/myproject/tsconfig.json -Info 4 [16:01:03.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/tsconfig.json 2000 undefined Project: /user/username/projects/myproject/tsconfig.json WatchType: Config file -Info 5 [16:01:04.000] event: +Info 0 [00:00:59.000] Provided types map file "/a/lib/typesMap.json" doesn't exist +Info 1 [00:01:00.000] Search path: /user/username/projects/myproject/src +Info 2 [00:01:01.000] For info: /user/username/projects/myproject/src/main.ts :: Config file name: /user/username/projects/myproject/tsconfig.json +Info 3 [00:01:02.000] Creating configuration project /user/username/projects/myproject/tsconfig.json +Info 4 [00:01:03.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/tsconfig.json 2000 undefined Project: /user/username/projects/myproject/tsconfig.json WatchType: Config file +Info 5 [00:01:04.000] event: {"seq":0,"type":"event","event":"projectLoadingStart","body":{"projectName":"/user/username/projects/myproject/tsconfig.json","reason":"Creating possible configured project for /user/username/projects/myproject/src/main.ts to open"}} -Info 6 [16:01:05.000] Config: /user/username/projects/myproject/tsconfig.json : { +Info 6 [00:01:05.000] Config: /user/username/projects/myproject/tsconfig.json : { "rootNames": [], "options": { "configFilePath": "/user/username/projects/myproject/tsconfig.json" @@ -17,9 +17,9 @@ Info 6 [16:01:05.000] Config: /user/username/projects/myproject/tsconfig.json } ] } -Info 7 [16:01:06.000] Plugins were requested but not running in environment that supports 'require'. Nothing will be loaded -Info 8 [16:01:07.000] Starting updateGraphWorker: Project: /user/username/projects/myproject/tsconfig.json -Info 9 [16:01:08.000] Config: /user/username/projects/myproject/tsconfig-indirect1.json : { +Info 7 [00:01:06.000] Plugins were requested but not running in environment that supports 'require'. Nothing will be loaded +Info 8 [00:01:07.000] Starting updateGraphWorker: Project: /user/username/projects/myproject/tsconfig.json +Info 9 [00:01:08.000] Config: /user/username/projects/myproject/tsconfig-indirect1.json : { "rootNames": [ "/user/username/projects/myproject/indirect1/main.ts" ], @@ -37,8 +37,8 @@ Info 9 [16:01:08.000] Config: /user/username/projects/myproject/tsconfig-indi } ] } -Info 10 [16:01:09.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/tsconfig-indirect1.json 2000 undefined Project: /user/username/projects/myproject/tsconfig.json WatchType: Config file -Info 11 [16:01:10.000] Config: /user/username/projects/myproject/tsconfig-src.json : { +Info 10 [00:01:09.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/tsconfig-indirect1.json 2000 undefined Project: /user/username/projects/myproject/tsconfig.json WatchType: Config file +Info 11 [00:01:10.000] Config: /user/username/projects/myproject/tsconfig-src.json : { "rootNames": [ "/user/username/projects/myproject/src/main.ts", "/user/username/projects/myproject/src/helpers/functions.ts" @@ -50,30 +50,30 @@ Info 11 [16:01:10.000] Config: /user/username/projects/myproject/tsconfig-src. "configFilePath": "/user/username/projects/myproject/tsconfig-src.json" } } -Info 12 [16:01:11.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/tsconfig-src.json 2000 undefined Project: /user/username/projects/myproject/tsconfig.json WatchType: Config file -Info 13 [16:01:12.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/src 1 undefined Config: /user/username/projects/myproject/tsconfig-src.json WatchType: Wild card directory -Info 14 [16:01:13.000] 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 15 [16:01:14.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/tsconfig.json WatchType: Type roots -Info 16 [16:01:15.000] 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 17 [16:01:16.000] Finishing updateGraphWorker: Project: /user/username/projects/myproject/tsconfig.json Version: 1 structureChanged: true structureIsReused:: Not Elapsed:: *ms -Info 18 [16:01:17.000] Different program with same set of files -Info 19 [16:01:18.000] event: +Info 12 [00:01:11.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/tsconfig-src.json 2000 undefined Project: /user/username/projects/myproject/tsconfig.json WatchType: Config file +Info 13 [00:01:12.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/src 1 undefined Config: /user/username/projects/myproject/tsconfig-src.json WatchType: Wild card directory +Info 14 [00:01:13.000] 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 15 [00:01:14.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/tsconfig.json WatchType: Type roots +Info 16 [00:01:15.000] 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 17 [00:01:16.000] Finishing updateGraphWorker: Project: /user/username/projects/myproject/tsconfig.json Version: 1 structureChanged: true structureIsReused:: Not Elapsed:: *ms +Info 18 [00:01:17.000] Different program with same set of files +Info 19 [00:01:18.000] event: {"seq":0,"type":"event","event":"projectLoadingFinish","body":{"projectName":"/user/username/projects/myproject/tsconfig.json"}} -Info 20 [16:01:19.000] event: +Info 20 [00:01:19.000] event: {"seq":0,"type":"event","event":"telemetry","body":{"telemetryEventName":"projectInfo","payload":{"projectId":"4a33d78ee40d836c4f4e64c59aed976628aea0013be9585c5ff171dfc41baf98","fileStats":{"js":0,"jsSize":0,"jsx":0,"jsxSize":0,"ts":0,"tsSize":0,"tsx":0,"tsxSize":0,"dts":0,"dtsSize":0,"deferred":0,"deferredSize":0},"compilerOptions":{},"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 21 [16:01:20.000] Creating configuration project /user/username/projects/myproject/tsconfig-indirect1.json -Info 22 [16:01:21.000] event: +Info 21 [00:01:20.000] Creating configuration project /user/username/projects/myproject/tsconfig-indirect1.json +Info 22 [00:01:21.000] event: {"seq":0,"type":"event","event":"projectLoadingStart","body":{"projectName":"/user/username/projects/myproject/tsconfig-indirect1.json","reason":"Creating project referenced in solution /user/username/projects/myproject/tsconfig.json to find possible configured project for /user/username/projects/myproject/src/main.ts to open"}} -Info 23 [16:01:22.000] Plugins were requested but not running in environment that supports 'require'. Nothing will be loaded -Info 24 [16:01:23.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/indirect1/main.ts 500 undefined WatchType: Closed Script info -Info 25 [16:01:24.000] Starting updateGraphWorker: Project: /user/username/projects/myproject/tsconfig-indirect1.json -Info 26 [16:01:25.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/src/helpers/functions.ts 500 undefined WatchType: Closed Script info -Info 27 [16:01:26.000] FileWatcher:: Added:: WatchInfo: /a/lib/lib.d.ts 500 undefined WatchType: Closed Script info -Info 28 [16:01:27.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/tsconfig-indirect1.json WatchType: Type roots -Info 29 [16:01:28.000] 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 30 [16:01:29.000] Finishing updateGraphWorker: Project: /user/username/projects/myproject/tsconfig-indirect1.json Version: 1 structureChanged: true structureIsReused:: Not Elapsed:: *ms -Info 31 [16:01:30.000] Project '/user/username/projects/myproject/tsconfig-indirect1.json' (Configured) -Info 32 [16:01:31.000] Files (4) +Info 23 [00:01:22.000] Plugins were requested but not running in environment that supports 'require'. Nothing will be loaded +Info 24 [00:01:23.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/indirect1/main.ts 500 undefined WatchType: Closed Script info +Info 25 [00:01:24.000] Starting updateGraphWorker: Project: /user/username/projects/myproject/tsconfig-indirect1.json +Info 26 [00:01:25.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/src/helpers/functions.ts 500 undefined WatchType: Closed Script info +Info 27 [00:01:26.000] FileWatcher:: Added:: WatchInfo: /a/lib/lib.d.ts 500 undefined WatchType: Closed Script info +Info 28 [00:01:27.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/tsconfig-indirect1.json WatchType: Type roots +Info 29 [00:01:28.000] 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 30 [00:01:29.000] Finishing updateGraphWorker: Project: /user/username/projects/myproject/tsconfig-indirect1.json Version: 1 structureChanged: true structureIsReused:: Not Elapsed:: *ms +Info 31 [00:01:30.000] Project '/user/username/projects/myproject/tsconfig-indirect1.json' (Configured) +Info 32 [00:01:31.000] Files (4) /a/lib/lib.d.ts /user/username/projects/myproject/src/helpers/functions.ts /user/username/projects/myproject/src/main.ts @@ -89,35 +89,35 @@ Info 32 [16:01:31.000] Files (4) indirect1/main.ts Part of 'files' list in tsconfig.json -Info 33 [16:01:32.000] ----------------------------------------------- -Info 34 [16:01:33.000] event: +Info 33 [00:01:32.000] ----------------------------------------------- +Info 34 [00:01:33.000] event: {"seq":0,"type":"event","event":"projectLoadingFinish","body":{"projectName":"/user/username/projects/myproject/tsconfig-indirect1.json"}} -Info 35 [16:01:34.000] event: +Info 35 [00:01:34.000] event: {"seq":0,"type":"event","event":"telemetry","body":{"telemetryEventName":"projectInfo","payload":{"projectId":"9ccc3aed1af08832ccb25ea453f7b771199f56af238b53cc428549dbd2d59246","fileStats":{"js":0,"jsSize":0,"jsx":0,"jsxSize":0,"ts":3,"tsSize":134,"tsx":0,"tsxSize":0,"dts":1,"dtsSize":334,"deferred":0,"deferredSize":0},"compilerOptions":{"composite":true,"outDir":"","baseUrl":"","disableReferencedProjectLoad":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 36 [16:01:35.000] event: +Info 36 [00:01:35.000] event: {"seq":0,"type":"event","event":"configFileDiag","body":{"triggerFile":"/user/username/projects/myproject/src/main.ts","configFile":"/user/username/projects/myproject/tsconfig-indirect1.json","diagnostics":[]}} -Info 37 [16:01:36.000] Project '/user/username/projects/myproject/tsconfig.json' (Configured) -Info 37 [16:01:37.000] Files (0) +Info 37 [00:01:36.000] Project '/user/username/projects/myproject/tsconfig.json' (Configured) +Info 37 [00:01:37.000] Files (0) -Info 37 [16:01:38.000] ----------------------------------------------- -Info 37 [16:01:39.000] Project '/user/username/projects/myproject/tsconfig-indirect1.json' (Configured) -Info 37 [16:01:40.000] Files (4) +Info 37 [00:01:38.000] ----------------------------------------------- +Info 37 [00:01:39.000] Project '/user/username/projects/myproject/tsconfig-indirect1.json' (Configured) +Info 37 [00:01:40.000] Files (4) -Info 37 [16:01:41.000] ----------------------------------------------- -Info 37 [16:01:42.000] Open files: -Info 37 [16:01:43.000] FileName: /user/username/projects/myproject/src/main.ts ProjectRootPath: undefined -Info 37 [16:01:44.000] Projects: /user/username/projects/myproject/tsconfig-indirect1.json -Info 37 [16:01:45.000] getDefaultProject for /user/username/projects/myproject/src/main.ts: /user/username/projects/myproject/tsconfig-indirect1.json -Info 37 [16:01:46.000] findDefaultConfiguredProject for /user/username/projects/myproject/src/main.ts: undefined -Info 37 [16:01:47.000] Search path: /dummy -Info 38 [16:01:48.000] For info: /dummy/dummy.ts :: No config files found. -Info 39 [16:01:49.000] Plugins were requested but not running in environment that supports 'require'. Nothing will be loaded -Info 40 [16:01:50.000] Starting updateGraphWorker: Project: /dev/null/inferredProject1* -Info 41 [16:01:51.000] DirectoryWatcher:: Added:: WatchInfo: /dummy/node_modules/@types 1 undefined Project: /dev/null/inferredProject1* WatchType: Type roots -Info 42 [16:01:52.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /dummy/node_modules/@types 1 undefined Project: /dev/null/inferredProject1* WatchType: Type roots -Info 43 [16:01:53.000] Finishing updateGraphWorker: Project: /dev/null/inferredProject1* Version: 1 structureChanged: true structureIsReused:: Not Elapsed:: *ms -Info 44 [16:01:54.000] Project '/dev/null/inferredProject1*' (Inferred) -Info 45 [16:01:55.000] Files (2) +Info 37 [00:01:41.000] ----------------------------------------------- +Info 37 [00:01:42.000] Open files: +Info 37 [00:01:43.000] FileName: /user/username/projects/myproject/src/main.ts ProjectRootPath: undefined +Info 37 [00:01:44.000] Projects: /user/username/projects/myproject/tsconfig-indirect1.json +Info 37 [00:01:45.000] getDefaultProject for /user/username/projects/myproject/src/main.ts: /user/username/projects/myproject/tsconfig-indirect1.json +Info 37 [00:01:46.000] findDefaultConfiguredProject for /user/username/projects/myproject/src/main.ts: undefined +Info 37 [00:01:47.000] Search path: /dummy +Info 38 [00:01:48.000] For info: /dummy/dummy.ts :: No config files found. +Info 39 [00:01:49.000] Plugins were requested but not running in environment that supports 'require'. Nothing will be loaded +Info 40 [00:01:50.000] Starting updateGraphWorker: Project: /dev/null/inferredProject1* +Info 41 [00:01:51.000] DirectoryWatcher:: Added:: WatchInfo: /dummy/node_modules/@types 1 undefined Project: /dev/null/inferredProject1* WatchType: Type roots +Info 42 [00:01:52.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /dummy/node_modules/@types 1 undefined Project: /dev/null/inferredProject1* WatchType: Type roots +Info 43 [00:01:53.000] Finishing updateGraphWorker: Project: /dev/null/inferredProject1* Version: 1 structureChanged: true structureIsReused:: Not Elapsed:: *ms +Info 44 [00:01:54.000] Project '/dev/null/inferredProject1*' (Inferred) +Info 45 [00:01:55.000] Files (2) /a/lib/lib.d.ts /dummy/dummy.ts @@ -127,61 +127,61 @@ Info 45 [16:01:55.000] Files (2) dummy.ts Root file specified for compilation -Info 46 [16:01:56.000] ----------------------------------------------- -Info 47 [16:01:57.000] Project '/user/username/projects/myproject/tsconfig.json' (Configured) -Info 47 [16:01:58.000] Files (0) +Info 46 [00:01:56.000] ----------------------------------------------- +Info 47 [00:01:57.000] Project '/user/username/projects/myproject/tsconfig.json' (Configured) +Info 47 [00:01:58.000] Files (0) -Info 47 [16:01:59.000] ----------------------------------------------- -Info 47 [16:02:00.000] Project '/user/username/projects/myproject/tsconfig-indirect1.json' (Configured) -Info 47 [16:02:01.000] Files (4) +Info 47 [00:01:59.000] ----------------------------------------------- +Info 47 [00:02:00.000] Project '/user/username/projects/myproject/tsconfig-indirect1.json' (Configured) +Info 47 [00:02:01.000] Files (4) -Info 47 [16:02:02.000] ----------------------------------------------- -Info 47 [16:02:03.000] Project '/dev/null/inferredProject1*' (Inferred) -Info 47 [16:02:04.000] Files (2) +Info 47 [00:02:02.000] ----------------------------------------------- +Info 47 [00:02:03.000] Project '/dev/null/inferredProject1*' (Inferred) +Info 47 [00:02:04.000] Files (2) -Info 47 [16:02:05.000] ----------------------------------------------- -Info 47 [16:02:06.000] Open files: -Info 47 [16:02:07.000] FileName: /user/username/projects/myproject/src/main.ts ProjectRootPath: undefined -Info 47 [16:02:08.000] Projects: /user/username/projects/myproject/tsconfig-indirect1.json -Info 47 [16:02:09.000] FileName: /dummy/dummy.ts ProjectRootPath: undefined -Info 47 [16:02:10.000] Projects: /dev/null/inferredProject1* -Info 47 [16:02:11.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/src/main.ts 500 undefined WatchType: Closed Script info -Info 48 [16:02:12.000] Project '/user/username/projects/myproject/tsconfig.json' (Configured) -Info 48 [16:02:13.000] Files (0) +Info 47 [00:02:05.000] ----------------------------------------------- +Info 47 [00:02:06.000] Open files: +Info 47 [00:02:07.000] FileName: /user/username/projects/myproject/src/main.ts ProjectRootPath: undefined +Info 47 [00:02:08.000] Projects: /user/username/projects/myproject/tsconfig-indirect1.json +Info 47 [00:02:09.000] FileName: /dummy/dummy.ts ProjectRootPath: undefined +Info 47 [00:02:10.000] Projects: /dev/null/inferredProject1* +Info 47 [00:02:11.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/src/main.ts 500 undefined WatchType: Closed Script info +Info 48 [00:02:12.000] Project '/user/username/projects/myproject/tsconfig.json' (Configured) +Info 48 [00:02:13.000] Files (0) -Info 48 [16:02:14.000] ----------------------------------------------- -Info 48 [16:02:15.000] Project '/user/username/projects/myproject/tsconfig-indirect1.json' (Configured) -Info 48 [16:02:16.000] Files (4) +Info 48 [00:02:14.000] ----------------------------------------------- +Info 48 [00:02:15.000] Project '/user/username/projects/myproject/tsconfig-indirect1.json' (Configured) +Info 48 [00:02:16.000] Files (4) -Info 48 [16:02:17.000] ----------------------------------------------- -Info 48 [16:02:18.000] Project '/dev/null/inferredProject1*' (Inferred) -Info 48 [16:02:19.000] Files (2) +Info 48 [00:02:17.000] ----------------------------------------------- +Info 48 [00:02:18.000] Project '/dev/null/inferredProject1*' (Inferred) +Info 48 [00:02:19.000] Files (2) -Info 48 [16:02:20.000] ----------------------------------------------- -Info 48 [16:02:21.000] Open files: -Info 48 [16:02:22.000] FileName: /dummy/dummy.ts ProjectRootPath: undefined -Info 48 [16:02:23.000] Projects: /dev/null/inferredProject1* -Info 48 [16:02:24.000] FileWatcher:: Added:: WatchInfo: /dummy/dummy.ts 500 undefined WatchType: Closed Script info -Info 49 [16:02:25.000] Project '/user/username/projects/myproject/tsconfig.json' (Configured) -Info 49 [16:02:26.000] Files (0) +Info 48 [00:02:20.000] ----------------------------------------------- +Info 48 [00:02:21.000] Open files: +Info 48 [00:02:22.000] FileName: /dummy/dummy.ts ProjectRootPath: undefined +Info 48 [00:02:23.000] Projects: /dev/null/inferredProject1* +Info 48 [00:02:24.000] FileWatcher:: Added:: WatchInfo: /dummy/dummy.ts 500 undefined WatchType: Closed Script info +Info 49 [00:02:25.000] Project '/user/username/projects/myproject/tsconfig.json' (Configured) +Info 49 [00:02:26.000] Files (0) -Info 49 [16:02:27.000] ----------------------------------------------- -Info 49 [16:02:28.000] Project '/user/username/projects/myproject/tsconfig-indirect1.json' (Configured) -Info 49 [16:02:29.000] Files (4) +Info 49 [00:02:27.000] ----------------------------------------------- +Info 49 [00:02:28.000] Project '/user/username/projects/myproject/tsconfig-indirect1.json' (Configured) +Info 49 [00:02:29.000] Files (4) -Info 49 [16:02:30.000] ----------------------------------------------- -Info 49 [16:02:31.000] Project '/dev/null/inferredProject1*' (Inferred) -Info 49 [16:02:32.000] Files (2) +Info 49 [00:02:30.000] ----------------------------------------------- +Info 49 [00:02:31.000] Project '/dev/null/inferredProject1*' (Inferred) +Info 49 [00:02:32.000] Files (2) -Info 49 [16:02:33.000] ----------------------------------------------- -Info 49 [16:02:34.000] Open files: -Info 49 [16:02:35.000] FileWatcher:: Close:: WatchInfo: /dummy/dummy.ts 500 undefined WatchType: Closed Script info -Info 50 [16:02:36.000] Search path: /dummy -Info 51 [16:02:37.000] For info: /dummy/dummy.ts :: No config files found. -Info 52 [16:02:38.000] Starting updateGraphWorker: Project: /dev/null/inferredProject1* -Info 53 [16:02:39.000] Finishing updateGraphWorker: Project: /dev/null/inferredProject1* Version: 2 structureChanged: false structureIsReused:: Not Elapsed:: *ms -Info 54 [16:02:40.000] Project '/dev/null/inferredProject1*' (Inferred) -Info 55 [16:02:41.000] Files (2) +Info 49 [00:02:33.000] ----------------------------------------------- +Info 49 [00:02:34.000] Open files: +Info 49 [00:02:35.000] FileWatcher:: Close:: WatchInfo: /dummy/dummy.ts 500 undefined WatchType: Closed Script info +Info 50 [00:02:36.000] Search path: /dummy +Info 51 [00:02:37.000] For info: /dummy/dummy.ts :: No config files found. +Info 52 [00:02:38.000] Starting updateGraphWorker: Project: /dev/null/inferredProject1* +Info 53 [00:02:39.000] Finishing updateGraphWorker: Project: /dev/null/inferredProject1* Version: 2 structureChanged: false structureIsReused:: Not Elapsed:: *ms +Info 54 [00:02:40.000] Project '/dev/null/inferredProject1*' (Inferred) +Info 55 [00:02:41.000] Files (2) /a/lib/lib.d.ts /dummy/dummy.ts @@ -191,20 +191,20 @@ Info 55 [16:02:41.000] Files (2) dummy.ts Root file specified for compilation -Info 56 [16:02:42.000] ----------------------------------------------- -Info 57 [16:02:43.000] `remove Project:: -Info 58 [16:02:44.000] Project '/user/username/projects/myproject/tsconfig.json' (Configured) -Info 59 [16:02:45.000] Files (0) +Info 56 [00:02:42.000] ----------------------------------------------- +Info 57 [00:02:43.000] `remove Project:: +Info 58 [00:02:44.000] Project '/user/username/projects/myproject/tsconfig.json' (Configured) +Info 59 [00:02:45.000] Files (0) -Info 60 [16:02:46.000] ----------------------------------------------- -Info 61 [16:02:47.000] FileWatcher:: Close:: WatchInfo: /user/username/projects/myproject/tsconfig.json 2000 undefined Project: /user/username/projects/myproject/tsconfig.json WatchType: Config file -Info 62 [16:02:48.000] DirectoryWatcher:: Close:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/tsconfig.json WatchType: Type roots -Info 63 [16:02:49.000] 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 64 [16:02:50.000] `remove Project:: -Info 65 [16:02:51.000] Project '/user/username/projects/myproject/tsconfig-indirect1.json' (Configured) -Info 66 [16:02:52.000] Files (4) +Info 60 [00:02:46.000] ----------------------------------------------- +Info 61 [00:02:47.000] FileWatcher:: Close:: WatchInfo: /user/username/projects/myproject/tsconfig.json 2000 undefined Project: /user/username/projects/myproject/tsconfig.json WatchType: Config file +Info 62 [00:02:48.000] DirectoryWatcher:: Close:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/tsconfig.json WatchType: Type roots +Info 63 [00:02:49.000] 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 64 [00:02:50.000] `remove Project:: +Info 65 [00:02:51.000] Project '/user/username/projects/myproject/tsconfig-indirect1.json' (Configured) +Info 66 [00:02:52.000] Files (4) /a/lib/lib.d.ts /user/username/projects/myproject/src/helpers/functions.ts /user/username/projects/myproject/src/main.ts @@ -220,30 +220,30 @@ Info 66 [16:02:52.000] Files (4) indirect1/main.ts Part of 'files' list in tsconfig.json -Info 67 [16:02:53.000] ----------------------------------------------- -Info 68 [16:02:54.000] FileWatcher:: Close:: WatchInfo: /user/username/projects/myproject/tsconfig-indirect1.json 2000 undefined Project: /user/username/projects/myproject/tsconfig.json WatchType: Config file -Info 69 [16:02:55.000] DirectoryWatcher:: Close:: WatchInfo: /user/username/projects/myproject/src 1 undefined Config: /user/username/projects/myproject/tsconfig-src.json WatchType: Wild card directory -Info 70 [16:02:56.000] 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 71 [16:02:57.000] FileWatcher:: Close:: WatchInfo: /user/username/projects/myproject/tsconfig-src.json 2000 undefined Project: /user/username/projects/myproject/tsconfig.json WatchType: Config file -Info 72 [16:02:58.000] DirectoryWatcher:: Close:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/tsconfig-indirect1.json WatchType: Type roots -Info 73 [16:02:59.000] 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 74 [16:03:00.000] FileWatcher:: Close:: WatchInfo: /user/username/projects/myproject/src/main.ts 500 undefined WatchType: Closed Script info -Info 75 [16:03:01.000] FileWatcher:: Close:: WatchInfo: /user/username/projects/myproject/indirect1/main.ts 500 undefined WatchType: Closed Script info -Info 76 [16:03:02.000] FileWatcher:: Close:: WatchInfo: /user/username/projects/myproject/src/helpers/functions.ts 500 undefined WatchType: Closed Script info -Info 77 [16:03:03.000] Project '/dev/null/inferredProject1*' (Inferred) -Info 77 [16:03:04.000] Files (2) +Info 67 [00:02:53.000] ----------------------------------------------- +Info 68 [00:02:54.000] FileWatcher:: Close:: WatchInfo: /user/username/projects/myproject/tsconfig-indirect1.json 2000 undefined Project: /user/username/projects/myproject/tsconfig.json WatchType: Config file +Info 69 [00:02:55.000] DirectoryWatcher:: Close:: WatchInfo: /user/username/projects/myproject/src 1 undefined Config: /user/username/projects/myproject/tsconfig-src.json WatchType: Wild card directory +Info 70 [00:02:56.000] 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 71 [00:02:57.000] FileWatcher:: Close:: WatchInfo: /user/username/projects/myproject/tsconfig-src.json 2000 undefined Project: /user/username/projects/myproject/tsconfig.json WatchType: Config file +Info 72 [00:02:58.000] DirectoryWatcher:: Close:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/tsconfig-indirect1.json WatchType: Type roots +Info 73 [00:02:59.000] 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 74 [00:03:00.000] FileWatcher:: Close:: WatchInfo: /user/username/projects/myproject/src/main.ts 500 undefined WatchType: Closed Script info +Info 75 [00:03:01.000] FileWatcher:: Close:: WatchInfo: /user/username/projects/myproject/indirect1/main.ts 500 undefined WatchType: Closed Script info +Info 76 [00:03:02.000] FileWatcher:: Close:: WatchInfo: /user/username/projects/myproject/src/helpers/functions.ts 500 undefined WatchType: Closed Script info +Info 77 [00:03:03.000] Project '/dev/null/inferredProject1*' (Inferred) +Info 77 [00:03:04.000] Files (2) -Info 77 [16:03:05.000] ----------------------------------------------- -Info 77 [16:03:06.000] Open files: -Info 77 [16:03:07.000] FileName: /dummy/dummy.ts ProjectRootPath: undefined -Info 77 [16:03:08.000] Projects: /dev/null/inferredProject1* -Info 77 [16:03:09.000] Search path: /user/username/projects/myproject/src -Info 78 [16:03:10.000] For info: /user/username/projects/myproject/src/main.ts :: Config file name: /user/username/projects/myproject/tsconfig.json -Info 79 [16:03:11.000] Creating configuration project /user/username/projects/myproject/tsconfig.json -Info 80 [16:03:12.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/tsconfig.json 2000 undefined Project: /user/username/projects/myproject/tsconfig.json WatchType: Config file -Info 81 [16:03:13.000] event: +Info 77 [00:03:05.000] ----------------------------------------------- +Info 77 [00:03:06.000] Open files: +Info 77 [00:03:07.000] FileName: /dummy/dummy.ts ProjectRootPath: undefined +Info 77 [00:03:08.000] Projects: /dev/null/inferredProject1* +Info 77 [00:03:09.000] Search path: /user/username/projects/myproject/src +Info 78 [00:03:10.000] For info: /user/username/projects/myproject/src/main.ts :: Config file name: /user/username/projects/myproject/tsconfig.json +Info 79 [00:03:11.000] Creating configuration project /user/username/projects/myproject/tsconfig.json +Info 80 [00:03:12.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/tsconfig.json 2000 undefined Project: /user/username/projects/myproject/tsconfig.json WatchType: Config file +Info 81 [00:03:13.000] event: {"seq":0,"type":"event","event":"projectLoadingStart","body":{"projectName":"/user/username/projects/myproject/tsconfig.json","reason":"Creating possible configured project for /user/username/projects/myproject/src/main.ts to open"}} -Info 82 [16:03:14.000] Config: /user/username/projects/myproject/tsconfig.json : { +Info 82 [00:03:14.000] Config: /user/username/projects/myproject/tsconfig.json : { "rootNames": [], "options": { "configFilePath": "/user/username/projects/myproject/tsconfig.json" @@ -255,9 +255,9 @@ Info 82 [16:03:14.000] Config: /user/username/projects/myproject/tsconfig.json } ] } -Info 83 [16:03:15.000] Plugins were requested but not running in environment that supports 'require'. Nothing will be loaded -Info 84 [16:03:16.000] Starting updateGraphWorker: Project: /user/username/projects/myproject/tsconfig.json -Info 85 [16:03:17.000] Config: /user/username/projects/myproject/tsconfig-indirect1.json : { +Info 83 [00:03:15.000] Plugins were requested but not running in environment that supports 'require'. Nothing will be loaded +Info 84 [00:03:16.000] Starting updateGraphWorker: Project: /user/username/projects/myproject/tsconfig.json +Info 85 [00:03:17.000] Config: /user/username/projects/myproject/tsconfig-indirect1.json : { "rootNames": [ "/user/username/projects/myproject/indirect1/main.ts" ], @@ -275,8 +275,8 @@ Info 85 [16:03:17.000] Config: /user/username/projects/myproject/tsconfig-indi } ] } -Info 86 [16:03:18.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/tsconfig-indirect1.json 2000 undefined Project: /user/username/projects/myproject/tsconfig.json WatchType: Config file -Info 87 [16:03:19.000] Config: /user/username/projects/myproject/tsconfig-src.json : { +Info 86 [00:03:18.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/tsconfig-indirect1.json 2000 undefined Project: /user/username/projects/myproject/tsconfig.json WatchType: Config file +Info 87 [00:03:19.000] Config: /user/username/projects/myproject/tsconfig-src.json : { "rootNames": [ "/user/username/projects/myproject/src/main.ts", "/user/username/projects/myproject/src/helpers/functions.ts" @@ -288,27 +288,27 @@ Info 87 [16:03:19.000] Config: /user/username/projects/myproject/tsconfig-src. "configFilePath": "/user/username/projects/myproject/tsconfig-src.json" } } -Info 88 [16:03:20.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/tsconfig-src.json 2000 undefined Project: /user/username/projects/myproject/tsconfig.json WatchType: Config file -Info 89 [16:03:21.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/src 1 undefined Config: /user/username/projects/myproject/tsconfig-src.json WatchType: Wild card directory -Info 90 [16:03:22.000] 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 91 [16:03:23.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/tsconfig.json WatchType: Type roots -Info 92 [16:03:24.000] 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 93 [16:03:25.000] Finishing updateGraphWorker: Project: /user/username/projects/myproject/tsconfig.json Version: 1 structureChanged: true structureIsReused:: Not Elapsed:: *ms -Info 94 [16:03:26.000] Different program with same set of files -Info 95 [16:03:27.000] event: +Info 88 [00:03:20.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/tsconfig-src.json 2000 undefined Project: /user/username/projects/myproject/tsconfig.json WatchType: Config file +Info 89 [00:03:21.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/src 1 undefined Config: /user/username/projects/myproject/tsconfig-src.json WatchType: Wild card directory +Info 90 [00:03:22.000] 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 91 [00:03:23.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/tsconfig.json WatchType: Type roots +Info 92 [00:03:24.000] 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 93 [00:03:25.000] Finishing updateGraphWorker: Project: /user/username/projects/myproject/tsconfig.json Version: 1 structureChanged: true structureIsReused:: Not Elapsed:: *ms +Info 94 [00:03:26.000] Different program with same set of files +Info 95 [00:03:27.000] event: {"seq":0,"type":"event","event":"projectLoadingFinish","body":{"projectName":"/user/username/projects/myproject/tsconfig.json"}} -Info 96 [16:03:28.000] Creating configuration project /user/username/projects/myproject/tsconfig-indirect1.json -Info 97 [16:03:29.000] event: +Info 96 [00:03:28.000] Creating configuration project /user/username/projects/myproject/tsconfig-indirect1.json +Info 97 [00:03:29.000] event: {"seq":0,"type":"event","event":"projectLoadingStart","body":{"projectName":"/user/username/projects/myproject/tsconfig-indirect1.json","reason":"Creating project referenced in solution /user/username/projects/myproject/tsconfig.json to find possible configured project for /user/username/projects/myproject/src/main.ts to open"}} -Info 98 [16:03:30.000] Plugins were requested but not running in environment that supports 'require'. Nothing will be loaded -Info 99 [16:03:31.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/indirect1/main.ts 500 undefined WatchType: Closed Script info -Info 100 [16:03:32.000] Starting updateGraphWorker: Project: /user/username/projects/myproject/tsconfig-indirect1.json -Info 101 [16:03:33.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/src/helpers/functions.ts 500 undefined WatchType: Closed Script info -Info 102 [16:03:34.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/tsconfig-indirect1.json WatchType: Type roots -Info 103 [16:03:35.000] 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 104 [16:03:36.000] Finishing updateGraphWorker: Project: /user/username/projects/myproject/tsconfig-indirect1.json Version: 1 structureChanged: true structureIsReused:: Not Elapsed:: *ms -Info 105 [16:03:37.000] Project '/user/username/projects/myproject/tsconfig-indirect1.json' (Configured) -Info 106 [16:03:38.000] Files (4) +Info 98 [00:03:30.000] Plugins were requested but not running in environment that supports 'require'. Nothing will be loaded +Info 99 [00:03:31.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/indirect1/main.ts 500 undefined WatchType: Closed Script info +Info 100 [00:03:32.000] Starting updateGraphWorker: Project: /user/username/projects/myproject/tsconfig-indirect1.json +Info 101 [00:03:33.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/src/helpers/functions.ts 500 undefined WatchType: Closed Script info +Info 102 [00:03:34.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/tsconfig-indirect1.json WatchType: Type roots +Info 103 [00:03:35.000] 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 104 [00:03:36.000] Finishing updateGraphWorker: Project: /user/username/projects/myproject/tsconfig-indirect1.json Version: 1 structureChanged: true structureIsReused:: Not Elapsed:: *ms +Info 105 [00:03:37.000] Project '/user/username/projects/myproject/tsconfig-indirect1.json' (Configured) +Info 106 [00:03:38.000] Files (4) /a/lib/lib.d.ts /user/username/projects/myproject/src/helpers/functions.ts /user/username/projects/myproject/src/main.ts @@ -324,46 +324,46 @@ Info 106 [16:03:38.000] Files (4) indirect1/main.ts Part of 'files' list in tsconfig.json -Info 107 [16:03:39.000] ----------------------------------------------- -Info 108 [16:03:40.000] event: +Info 107 [00:03:39.000] ----------------------------------------------- +Info 108 [00:03:40.000] event: {"seq":0,"type":"event","event":"projectLoadingFinish","body":{"projectName":"/user/username/projects/myproject/tsconfig-indirect1.json"}} -Info 109 [16:03:41.000] event: +Info 109 [00:03:41.000] event: {"seq":0,"type":"event","event":"configFileDiag","body":{"triggerFile":"/user/username/projects/myproject/src/main.ts","configFile":"/user/username/projects/myproject/tsconfig-indirect1.json","diagnostics":[]}} -Info 110 [16:03:42.000] Project '/user/username/projects/myproject/tsconfig.json' (Configured) -Info 110 [16:03:43.000] Files (0) +Info 110 [00:03:42.000] Project '/user/username/projects/myproject/tsconfig.json' (Configured) +Info 110 [00:03:43.000] Files (0) -Info 110 [16:03:44.000] ----------------------------------------------- -Info 110 [16:03:45.000] Project '/user/username/projects/myproject/tsconfig-indirect1.json' (Configured) -Info 110 [16:03:46.000] Files (4) +Info 110 [00:03:44.000] ----------------------------------------------- +Info 110 [00:03:45.000] Project '/user/username/projects/myproject/tsconfig-indirect1.json' (Configured) +Info 110 [00:03:46.000] Files (4) -Info 110 [16:03:47.000] ----------------------------------------------- -Info 110 [16:03:48.000] Project '/dev/null/inferredProject1*' (Inferred) -Info 110 [16:03:49.000] Files (2) +Info 110 [00:03:47.000] ----------------------------------------------- +Info 110 [00:03:48.000] Project '/dev/null/inferredProject1*' (Inferred) +Info 110 [00:03:49.000] Files (2) -Info 110 [16:03:50.000] ----------------------------------------------- -Info 110 [16:03:51.000] Open files: -Info 110 [16:03:52.000] FileName: /dummy/dummy.ts ProjectRootPath: undefined -Info 110 [16:03:53.000] Projects: /dev/null/inferredProject1* -Info 110 [16:03:54.000] FileName: /user/username/projects/myproject/src/main.ts ProjectRootPath: undefined -Info 110 [16:03:55.000] Projects: /user/username/projects/myproject/tsconfig-indirect1.json -Info 110 [16:03:56.000] reload projects. -Info 111 [16:03:57.000] Scheduled: /dev/null/inferredProject1* -Info 112 [16:03:58.000] Scheduled: /user/username/projects/myproject/tsconfig-indirect1.json -Info 113 [16:03:59.000] Scheduled: *ensureProjectForOpenFiles* -Info 114 [16:04:00.000] Scheduled: /user/username/projects/myproject/tsconfig-indirect1.json, Cancelled earlier one -Info 115 [16:04:01.000] Scheduled: *ensureProjectForOpenFiles*, Cancelled earlier one -Info 116 [16:04:02.000] Scheduled: /user/username/projects/myproject/tsconfig-indirect1.json, Cancelled earlier one -Info 117 [16:04:03.000] Scheduled: *ensureProjectForOpenFiles*, Cancelled earlier one -Info 118 [16:04:04.000] Search path: /dummy -Info 119 [16:04:05.000] For info: /dummy/dummy.ts :: No config files found. -Info 120 [16:04:06.000] Search path: /user/username/projects/myproject/src -Info 121 [16:04:07.000] For info: /user/username/projects/myproject/src/main.ts :: Config file name: /user/username/projects/myproject/tsconfig.json -Info 122 [16:04:08.000] DirectoryWatcher:: Close:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/tsconfig.json WatchType: Type roots -Info 123 [16:04:09.000] 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 124 [16:04:10.000] Reloading configured project /user/username/projects/myproject/tsconfig.json -Info 125 [16:04:11.000] event: +Info 110 [00:03:50.000] ----------------------------------------------- +Info 110 [00:03:51.000] Open files: +Info 110 [00:03:52.000] FileName: /dummy/dummy.ts ProjectRootPath: undefined +Info 110 [00:03:53.000] Projects: /dev/null/inferredProject1* +Info 110 [00:03:54.000] FileName: /user/username/projects/myproject/src/main.ts ProjectRootPath: undefined +Info 110 [00:03:55.000] Projects: /user/username/projects/myproject/tsconfig-indirect1.json +Info 110 [00:03:56.000] reload projects. +Info 111 [00:03:57.000] Scheduled: /dev/null/inferredProject1* +Info 112 [00:03:58.000] Scheduled: /user/username/projects/myproject/tsconfig-indirect1.json +Info 113 [00:03:59.000] Scheduled: *ensureProjectForOpenFiles* +Info 114 [00:04:00.000] Scheduled: /user/username/projects/myproject/tsconfig-indirect1.json, Cancelled earlier one +Info 115 [00:04:01.000] Scheduled: *ensureProjectForOpenFiles*, Cancelled earlier one +Info 116 [00:04:02.000] Scheduled: /user/username/projects/myproject/tsconfig-indirect1.json, Cancelled earlier one +Info 117 [00:04:03.000] Scheduled: *ensureProjectForOpenFiles*, Cancelled earlier one +Info 118 [00:04:04.000] Search path: /dummy +Info 119 [00:04:05.000] For info: /dummy/dummy.ts :: No config files found. +Info 120 [00:04:06.000] Search path: /user/username/projects/myproject/src +Info 121 [00:04:07.000] For info: /user/username/projects/myproject/src/main.ts :: Config file name: /user/username/projects/myproject/tsconfig.json +Info 122 [00:04:08.000] DirectoryWatcher:: Close:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/tsconfig.json WatchType: Type roots +Info 123 [00:04:09.000] 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 124 [00:04:10.000] Reloading configured project /user/username/projects/myproject/tsconfig.json +Info 125 [00:04:11.000] event: {"seq":0,"type":"event","event":"projectLoadingStart","body":{"projectName":"/user/username/projects/myproject/tsconfig.json","reason":"User requested reload projects"}} -Info 126 [16:04:12.000] Config: /user/username/projects/myproject/tsconfig.json : { +Info 126 [00:04:12.000] Config: /user/username/projects/myproject/tsconfig.json : { "rootNames": [], "options": { "configFilePath": "/user/username/projects/myproject/tsconfig.json" @@ -375,9 +375,9 @@ Info 126 [16:04:12.000] Config: /user/username/projects/myproject/tsconfig.json } ] } -Info 127 [16:04:13.000] Plugins were requested but not running in environment that supports 'require'. Nothing will be loaded -Info 128 [16:04:14.000] Starting updateGraphWorker: Project: /user/username/projects/myproject/tsconfig.json -Info 129 [16:04:15.000] Config: /user/username/projects/myproject/tsconfig-indirect1.json : { +Info 127 [00:04:13.000] Plugins were requested but not running in environment that supports 'require'. Nothing will be loaded +Info 128 [00:04:14.000] Starting updateGraphWorker: Project: /user/username/projects/myproject/tsconfig.json +Info 129 [00:04:15.000] Config: /user/username/projects/myproject/tsconfig-indirect1.json : { "rootNames": [ "/user/username/projects/myproject/indirect1/main.ts" ], @@ -395,7 +395,7 @@ Info 129 [16:04:15.000] Config: /user/username/projects/myproject/tsconfig-indi } ] } -Info 130 [16:04:16.000] Config: /user/username/projects/myproject/tsconfig-src.json : { +Info 130 [00:04:16.000] Config: /user/username/projects/myproject/tsconfig-src.json : { "rootNames": [ "/user/username/projects/myproject/src/main.ts", "/user/username/projects/myproject/src/helpers/functions.ts" @@ -407,69 +407,69 @@ Info 130 [16:04:16.000] Config: /user/username/projects/myproject/tsconfig-src. "configFilePath": "/user/username/projects/myproject/tsconfig-src.json" } } -Info 131 [16:04:17.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/tsconfig.json WatchType: Type roots -Info 132 [16:04:18.000] 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 133 [16:04:19.000] Finishing updateGraphWorker: Project: /user/username/projects/myproject/tsconfig.json Version: 2 structureChanged: true structureIsReused:: Not Elapsed:: *ms -Info 134 [16:04:20.000] Different program with same set of files -Info 135 [16:04:21.000] event: +Info 131 [00:04:17.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/tsconfig.json WatchType: Type roots +Info 132 [00:04:18.000] 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 133 [00:04:19.000] Finishing updateGraphWorker: Project: /user/username/projects/myproject/tsconfig.json Version: 2 structureChanged: true structureIsReused:: Not Elapsed:: *ms +Info 134 [00:04:20.000] Different program with same set of files +Info 135 [00:04:21.000] event: {"seq":0,"type":"event","event":"projectLoadingFinish","body":{"projectName":"/user/username/projects/myproject/tsconfig.json"}} -Info 136 [16:04:22.000] event: +Info 136 [00:04:22.000] event: {"seq":0,"type":"event","event":"configFileDiag","body":{"triggerFile":"/user/username/projects/myproject/tsconfig.json","configFile":"/user/username/projects/myproject/tsconfig.json","diagnostics":[]}} -Info 137 [16:04:23.000] DirectoryWatcher:: Close:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/tsconfig-indirect1.json WatchType: Type roots -Info 138 [16:04:24.000] 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 139 [16:04:25.000] Reloading configured project /user/username/projects/myproject/tsconfig-indirect1.json -Info 140 [16:04:26.000] event: +Info 137 [00:04:23.000] DirectoryWatcher:: Close:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/tsconfig-indirect1.json WatchType: Type roots +Info 138 [00:04:24.000] 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 139 [00:04:25.000] Reloading configured project /user/username/projects/myproject/tsconfig-indirect1.json +Info 140 [00:04:26.000] event: {"seq":0,"type":"event","event":"projectLoadingStart","body":{"projectName":"/user/username/projects/myproject/tsconfig-indirect1.json","reason":"User requested reload projects"}} -Info 141 [16:04:27.000] Plugins were requested but not running in environment that supports 'require'. Nothing will be loaded -Info 142 [16:04:28.000] Starting updateGraphWorker: Project: /user/username/projects/myproject/tsconfig-indirect1.json -Info 143 [16:04:29.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/tsconfig-indirect1.json WatchType: Type roots -Info 144 [16:04:30.000] 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 145 [16:04:31.000] Finishing updateGraphWorker: Project: /user/username/projects/myproject/tsconfig-indirect1.json Version: 2 structureChanged: true structureIsReused:: Not Elapsed:: *ms -Info 146 [16:04:32.000] Different program with same set of files -Info 147 [16:04:33.000] event: +Info 141 [00:04:27.000] Plugins were requested but not running in environment that supports 'require'. Nothing will be loaded +Info 142 [00:04:28.000] Starting updateGraphWorker: Project: /user/username/projects/myproject/tsconfig-indirect1.json +Info 143 [00:04:29.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/tsconfig-indirect1.json WatchType: Type roots +Info 144 [00:04:30.000] 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 145 [00:04:31.000] Finishing updateGraphWorker: Project: /user/username/projects/myproject/tsconfig-indirect1.json Version: 2 structureChanged: true structureIsReused:: Not Elapsed:: *ms +Info 146 [00:04:32.000] Different program with same set of files +Info 147 [00:04:33.000] event: {"seq":0,"type":"event","event":"projectLoadingFinish","body":{"projectName":"/user/username/projects/myproject/tsconfig-indirect1.json"}} -Info 148 [16:04:34.000] event: +Info 148 [00:04:34.000] event: {"seq":0,"type":"event","event":"configFileDiag","body":{"triggerFile":"/user/username/projects/myproject/tsconfig-indirect1.json","configFile":"/user/username/projects/myproject/tsconfig-indirect1.json","diagnostics":[]}} -Info 149 [16:04:35.000] DirectoryWatcher:: Close:: WatchInfo: /dummy/node_modules/@types 1 undefined Project: /dev/null/inferredProject1* WatchType: Type roots -Info 150 [16:04:36.000] Elapsed:: *ms DirectoryWatcher:: Close:: WatchInfo: /dummy/node_modules/@types 1 undefined Project: /dev/null/inferredProject1* WatchType: Type roots -Info 151 [16:04:37.000] Before ensureProjectForOpenFiles: -Info 152 [16:04:38.000] Project '/user/username/projects/myproject/tsconfig.json' (Configured) -Info 152 [16:04:39.000] Files (0) +Info 149 [00:04:35.000] DirectoryWatcher:: Close:: WatchInfo: /dummy/node_modules/@types 1 undefined Project: /dev/null/inferredProject1* WatchType: Type roots +Info 150 [00:04:36.000] Elapsed:: *ms DirectoryWatcher:: Close:: WatchInfo: /dummy/node_modules/@types 1 undefined Project: /dev/null/inferredProject1* WatchType: Type roots +Info 151 [00:04:37.000] Before ensureProjectForOpenFiles: +Info 152 [00:04:38.000] Project '/user/username/projects/myproject/tsconfig.json' (Configured) +Info 152 [00:04:39.000] Files (0) -Info 152 [16:04:40.000] ----------------------------------------------- -Info 152 [16:04:41.000] Project '/user/username/projects/myproject/tsconfig-indirect1.json' (Configured) -Info 152 [16:04:42.000] Files (4) +Info 152 [00:04:40.000] ----------------------------------------------- +Info 152 [00:04:41.000] Project '/user/username/projects/myproject/tsconfig-indirect1.json' (Configured) +Info 152 [00:04:42.000] Files (4) -Info 152 [16:04:43.000] ----------------------------------------------- -Info 152 [16:04:44.000] Project '/dev/null/inferredProject1*' (Inferred) -Info 152 [16:04:45.000] Files (2) +Info 152 [00:04:43.000] ----------------------------------------------- +Info 152 [00:04:44.000] Project '/dev/null/inferredProject1*' (Inferred) +Info 152 [00:04:45.000] Files (2) -Info 152 [16:04:46.000] ----------------------------------------------- -Info 152 [16:04:47.000] Open files: -Info 152 [16:04:48.000] FileName: /dummy/dummy.ts ProjectRootPath: undefined -Info 152 [16:04:49.000] Projects: /dev/null/inferredProject1* -Info 152 [16:04:50.000] FileName: /user/username/projects/myproject/src/main.ts ProjectRootPath: undefined -Info 152 [16:04:51.000] Projects: /user/username/projects/myproject/tsconfig-indirect1.json -Info 152 [16:04:52.000] Starting updateGraphWorker: Project: /dev/null/inferredProject1* -Info 153 [16:04:53.000] DirectoryWatcher:: Added:: WatchInfo: /dummy/node_modules/@types 1 undefined Project: /dev/null/inferredProject1* WatchType: Type roots -Info 154 [16:04:54.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /dummy/node_modules/@types 1 undefined Project: /dev/null/inferredProject1* WatchType: Type roots -Info 155 [16:04:55.000] Finishing updateGraphWorker: Project: /dev/null/inferredProject1* Version: 3 structureChanged: true structureIsReused:: Not Elapsed:: *ms -Info 156 [16:04:56.000] Different program with same set of files -Info 157 [16:04:57.000] After ensureProjectForOpenFiles: -Info 158 [16:04:58.000] Project '/user/username/projects/myproject/tsconfig.json' (Configured) -Info 158 [16:04:59.000] Files (0) +Info 152 [00:04:46.000] ----------------------------------------------- +Info 152 [00:04:47.000] Open files: +Info 152 [00:04:48.000] FileName: /dummy/dummy.ts ProjectRootPath: undefined +Info 152 [00:04:49.000] Projects: /dev/null/inferredProject1* +Info 152 [00:04:50.000] FileName: /user/username/projects/myproject/src/main.ts ProjectRootPath: undefined +Info 152 [00:04:51.000] Projects: /user/username/projects/myproject/tsconfig-indirect1.json +Info 152 [00:04:52.000] Starting updateGraphWorker: Project: /dev/null/inferredProject1* +Info 153 [00:04:53.000] DirectoryWatcher:: Added:: WatchInfo: /dummy/node_modules/@types 1 undefined Project: /dev/null/inferredProject1* WatchType: Type roots +Info 154 [00:04:54.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /dummy/node_modules/@types 1 undefined Project: /dev/null/inferredProject1* WatchType: Type roots +Info 155 [00:04:55.000] Finishing updateGraphWorker: Project: /dev/null/inferredProject1* Version: 3 structureChanged: true structureIsReused:: Not Elapsed:: *ms +Info 156 [00:04:56.000] Different program with same set of files +Info 157 [00:04:57.000] After ensureProjectForOpenFiles: +Info 158 [00:04:58.000] Project '/user/username/projects/myproject/tsconfig.json' (Configured) +Info 158 [00:04:59.000] Files (0) -Info 158 [16:05:00.000] ----------------------------------------------- -Info 158 [16:05:01.000] Project '/user/username/projects/myproject/tsconfig-indirect1.json' (Configured) -Info 158 [16:05:02.000] Files (4) +Info 158 [00:05:00.000] ----------------------------------------------- +Info 158 [00:05:01.000] Project '/user/username/projects/myproject/tsconfig-indirect1.json' (Configured) +Info 158 [00:05:02.000] Files (4) -Info 158 [16:05:03.000] ----------------------------------------------- -Info 158 [16:05:04.000] Project '/dev/null/inferredProject1*' (Inferred) -Info 158 [16:05:05.000] Files (2) +Info 158 [00:05:03.000] ----------------------------------------------- +Info 158 [00:05:04.000] Project '/dev/null/inferredProject1*' (Inferred) +Info 158 [00:05:05.000] Files (2) -Info 158 [16:05:06.000] ----------------------------------------------- -Info 158 [16:05:07.000] Open files: -Info 158 [16:05:08.000] FileName: /dummy/dummy.ts ProjectRootPath: undefined -Info 158 [16:05:09.000] Projects: /dev/null/inferredProject1* -Info 158 [16:05:10.000] FileName: /user/username/projects/myproject/src/main.ts ProjectRootPath: undefined -Info 158 [16:05:11.000] Projects: /user/username/projects/myproject/tsconfig-indirect1.json \ No newline at end of file +Info 158 [00:05:06.000] ----------------------------------------------- +Info 158 [00:05:07.000] Open files: +Info 158 [00:05:08.000] FileName: /dummy/dummy.ts ProjectRootPath: undefined +Info 158 [00:05:09.000] Projects: /dev/null/inferredProject1* +Info 158 [00:05:10.000] FileName: /user/username/projects/myproject/src/main.ts ProjectRootPath: undefined +Info 158 [00:05:11.000] Projects: /user/username/projects/myproject/tsconfig-indirect1.json \ No newline at end of file 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 6ca468b2eef3b..7c4ced343ab93 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 @@ -1,11 +1,11 @@ -Info 0 [16:00:53.000] Provided types map file "/a/lib/typesMap.json" doesn't exist -Info 1 [16:00:54.000] Search path: /user/username/projects/myproject/src -Info 2 [16:00:55.000] For info: /user/username/projects/myproject/src/main.ts :: Config file name: /user/username/projects/myproject/tsconfig.json -Info 3 [16:00:56.000] Creating configuration project /user/username/projects/myproject/tsconfig.json -Info 4 [16:00:57.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/tsconfig.json 2000 undefined Project: /user/username/projects/myproject/tsconfig.json WatchType: Config file -Info 5 [16:00:58.000] event: +Info 0 [00:00:53.000] Provided types map file "/a/lib/typesMap.json" doesn't exist +Info 1 [00:00:54.000] Search path: /user/username/projects/myproject/src +Info 2 [00:00:55.000] For info: /user/username/projects/myproject/src/main.ts :: Config file name: /user/username/projects/myproject/tsconfig.json +Info 3 [00:00:56.000] Creating configuration project /user/username/projects/myproject/tsconfig.json +Info 4 [00:00:57.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/tsconfig.json 2000 undefined Project: /user/username/projects/myproject/tsconfig.json WatchType: Config file +Info 5 [00:00:58.000] event: {"seq":0,"type":"event","event":"projectLoadingStart","body":{"projectName":"/user/username/projects/myproject/tsconfig.json","reason":"Creating possible configured project for /user/username/projects/myproject/src/main.ts to open"}} -Info 6 [16:00:59.000] Config: /user/username/projects/myproject/tsconfig.json : { +Info 6 [00:00:59.000] Config: /user/username/projects/myproject/tsconfig.json : { "rootNames": [], "options": { "disableReferencedProjectLoad": true, @@ -18,9 +18,9 @@ Info 6 [16:00:59.000] Config: /user/username/projects/myproject/tsconfig.json } ] } -Info 7 [16:01:00.000] Plugins were requested but not running in environment that supports 'require'. Nothing will be loaded -Info 8 [16:01:01.000] Starting updateGraphWorker: Project: /user/username/projects/myproject/tsconfig.json -Info 9 [16:01:02.000] Config: /user/username/projects/myproject/tsconfig-src.json : { +Info 7 [00:01:00.000] Plugins were requested but not running in environment that supports 'require'. Nothing will be loaded +Info 8 [00:01:01.000] Starting updateGraphWorker: Project: /user/username/projects/myproject/tsconfig.json +Info 9 [00:01:02.000] Config: /user/username/projects/myproject/tsconfig-src.json : { "rootNames": [ "/user/username/projects/myproject/src/main.ts", "/user/username/projects/myproject/src/helpers/functions.ts" @@ -32,36 +32,36 @@ Info 9 [16:01:02.000] Config: /user/username/projects/myproject/tsconfig-src. "configFilePath": "/user/username/projects/myproject/tsconfig-src.json" } } -Info 10 [16:01:03.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/tsconfig-src.json 2000 undefined Project: /user/username/projects/myproject/tsconfig.json WatchType: Config file -Info 11 [16:01:04.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/src 1 undefined Config: /user/username/projects/myproject/tsconfig-src.json WatchType: Wild card directory -Info 12 [16:01:05.000] 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 13 [16:01:06.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/tsconfig.json WatchType: Type roots -Info 14 [16:01:07.000] 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 15 [16:01:08.000] Finishing updateGraphWorker: Project: /user/username/projects/myproject/tsconfig.json Version: 1 structureChanged: true structureIsReused:: Not Elapsed:: *ms -Info 16 [16:01:09.000] Different program with same set of files -Info 17 [16:01:10.000] event: +Info 10 [00:01:03.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/tsconfig-src.json 2000 undefined Project: /user/username/projects/myproject/tsconfig.json WatchType: Config file +Info 11 [00:01:04.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/src 1 undefined Config: /user/username/projects/myproject/tsconfig-src.json WatchType: Wild card directory +Info 12 [00:01:05.000] 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 13 [00:01:06.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/tsconfig.json WatchType: Type roots +Info 14 [00:01:07.000] 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 15 [00:01:08.000] Finishing updateGraphWorker: Project: /user/username/projects/myproject/tsconfig.json Version: 1 structureChanged: true structureIsReused:: Not Elapsed:: *ms +Info 16 [00:01:09.000] Different program with same set of files +Info 17 [00:01:10.000] event: {"seq":0,"type":"event","event":"projectLoadingFinish","body":{"projectName":"/user/username/projects/myproject/tsconfig.json"}} -Info 18 [16:01:11.000] event: +Info 18 [00:01:11.000] event: {"seq":0,"type":"event","event":"telemetry","body":{"telemetryEventName":"projectInfo","payload":{"projectId":"4a33d78ee40d836c4f4e64c59aed976628aea0013be9585c5ff171dfc41baf98","fileStats":{"js":0,"jsSize":0,"jsx":0,"jsxSize":0,"ts":0,"tsSize":0,"tsx":0,"tsxSize":0,"dts":0,"dtsSize":0,"deferred":0,"deferredSize":0},"compilerOptions":{"disableReferencedProjectLoad":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 19 [16:01:12.000] event: +Info 19 [00:01:12.000] event: {"seq":0,"type":"event","event":"configFileDiag","body":{"triggerFile":"/user/username/projects/myproject/src/main.ts","configFile":"/user/username/projects/myproject/tsconfig.json","diagnostics":[]}} -Info 20 [16:01:13.000] Plugins were requested but not running in environment that supports 'require'. Nothing will be loaded -Info 21 [16:01:14.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/src/tsconfig.json 2000 undefined WatchType: Config file for the inferred project root -Info 22 [16:01:15.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/src/jsconfig.json 2000 undefined WatchType: Config file for the inferred project root -Info 23 [16:01:16.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/jsconfig.json 2000 undefined WatchType: Config file for the inferred project root -Info 24 [16:01:17.000] Starting updateGraphWorker: Project: /dev/null/inferredProject1* -Info 25 [16:01:18.000] FileWatcher:: Added:: WatchInfo: /a/lib/lib.d.ts 500 undefined WatchType: Closed Script info -Info 26 [16:01:19.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/src/node_modules 1 undefined Project: /dev/null/inferredProject1* WatchType: Failed Lookup Locations -Info 27 [16:01:20.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/src/node_modules 1 undefined Project: /dev/null/inferredProject1* WatchType: Failed Lookup Locations -Info 28 [16:01:21.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules 1 undefined Project: /dev/null/inferredProject1* WatchType: Failed Lookup Locations -Info 29 [16:01:22.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules 1 undefined Project: /dev/null/inferredProject1* WatchType: Failed Lookup Locations -Info 30 [16:01:23.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/src/node_modules/@types 1 undefined Project: /dev/null/inferredProject1* WatchType: Type roots -Info 31 [16:01:24.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/src/node_modules/@types 1 undefined Project: /dev/null/inferredProject1* WatchType: Type roots -Info 32 [16:01:25.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /dev/null/inferredProject1* WatchType: Type roots -Info 33 [16:01:26.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /dev/null/inferredProject1* WatchType: Type roots -Info 34 [16:01:27.000] Finishing updateGraphWorker: Project: /dev/null/inferredProject1* Version: 1 structureChanged: true structureIsReused:: Not Elapsed:: *ms -Info 35 [16:01:28.000] Project '/dev/null/inferredProject1*' (Inferred) -Info 36 [16:01:29.000] Files (2) +Info 20 [00:01:13.000] Plugins were requested but not running in environment that supports 'require'. Nothing will be loaded +Info 21 [00:01:14.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/src/tsconfig.json 2000 undefined WatchType: Config file for the inferred project root +Info 22 [00:01:15.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/src/jsconfig.json 2000 undefined WatchType: Config file for the inferred project root +Info 23 [00:01:16.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/jsconfig.json 2000 undefined WatchType: Config file for the inferred project root +Info 24 [00:01:17.000] Starting updateGraphWorker: Project: /dev/null/inferredProject1* +Info 25 [00:01:18.000] FileWatcher:: Added:: WatchInfo: /a/lib/lib.d.ts 500 undefined WatchType: Closed Script info +Info 26 [00:01:19.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/src/node_modules 1 undefined Project: /dev/null/inferredProject1* WatchType: Failed Lookup Locations +Info 27 [00:01:20.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/src/node_modules 1 undefined Project: /dev/null/inferredProject1* WatchType: Failed Lookup Locations +Info 28 [00:01:21.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules 1 undefined Project: /dev/null/inferredProject1* WatchType: Failed Lookup Locations +Info 29 [00:01:22.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules 1 undefined Project: /dev/null/inferredProject1* WatchType: Failed Lookup Locations +Info 30 [00:01:23.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/src/node_modules/@types 1 undefined Project: /dev/null/inferredProject1* WatchType: Type roots +Info 31 [00:01:24.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/src/node_modules/@types 1 undefined Project: /dev/null/inferredProject1* WatchType: Type roots +Info 32 [00:01:25.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /dev/null/inferredProject1* WatchType: Type roots +Info 33 [00:01:26.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /dev/null/inferredProject1* WatchType: Type roots +Info 34 [00:01:27.000] Finishing updateGraphWorker: Project: /dev/null/inferredProject1* Version: 1 structureChanged: true structureIsReused:: Not Elapsed:: *ms +Info 35 [00:01:28.000] Project '/dev/null/inferredProject1*' (Inferred) +Info 36 [00:01:29.000] Files (2) /a/lib/lib.d.ts /user/username/projects/myproject/src/main.ts @@ -71,29 +71,29 @@ Info 36 [16:01:29.000] Files (2) main.ts Root file specified for compilation -Info 37 [16:01:30.000] ----------------------------------------------- -Info 38 [16:01:31.000] Project '/user/username/projects/myproject/tsconfig.json' (Configured) -Info 38 [16:01:32.000] Files (0) +Info 37 [00:01:30.000] ----------------------------------------------- +Info 38 [00:01:31.000] Project '/user/username/projects/myproject/tsconfig.json' (Configured) +Info 38 [00:01:32.000] Files (0) -Info 38 [16:01:33.000] ----------------------------------------------- -Info 38 [16:01:34.000] Project '/dev/null/inferredProject1*' (Inferred) -Info 38 [16:01:35.000] Files (2) +Info 38 [00:01:33.000] ----------------------------------------------- +Info 38 [00:01:34.000] Project '/dev/null/inferredProject1*' (Inferred) +Info 38 [00:01:35.000] Files (2) -Info 38 [16:01:36.000] ----------------------------------------------- -Info 38 [16:01:37.000] Open files: -Info 38 [16:01:38.000] FileName: /user/username/projects/myproject/src/main.ts ProjectRootPath: undefined -Info 38 [16:01:39.000] Projects: /dev/null/inferredProject1* -Info 38 [16:01:40.000] getDefaultProject for /user/username/projects/myproject/src/main.ts: /dev/null/inferredProject1* -Info 38 [16:01:41.000] findDefaultConfiguredProject for /user/username/projects/myproject/src/main.ts: undefined -Info 38 [16:01:42.000] Search path: /dummy -Info 39 [16:01:43.000] For info: /dummy/dummy.ts :: No config files found. -Info 40 [16:01:44.000] Plugins were requested but not running in environment that supports 'require'. Nothing will be loaded -Info 41 [16:01:45.000] Starting updateGraphWorker: Project: /dev/null/inferredProject2* -Info 42 [16:01:46.000] DirectoryWatcher:: Added:: WatchInfo: /dummy/node_modules/@types 1 undefined Project: /dev/null/inferredProject2* WatchType: Type roots -Info 43 [16:01:47.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /dummy/node_modules/@types 1 undefined Project: /dev/null/inferredProject2* WatchType: Type roots -Info 44 [16:01:48.000] Finishing updateGraphWorker: Project: /dev/null/inferredProject2* Version: 1 structureChanged: true structureIsReused:: Not Elapsed:: *ms -Info 45 [16:01:49.000] Project '/dev/null/inferredProject2*' (Inferred) -Info 46 [16:01:50.000] Files (2) +Info 38 [00:01:36.000] ----------------------------------------------- +Info 38 [00:01:37.000] Open files: +Info 38 [00:01:38.000] FileName: /user/username/projects/myproject/src/main.ts ProjectRootPath: undefined +Info 38 [00:01:39.000] Projects: /dev/null/inferredProject1* +Info 38 [00:01:40.000] getDefaultProject for /user/username/projects/myproject/src/main.ts: /dev/null/inferredProject1* +Info 38 [00:01:41.000] findDefaultConfiguredProject for /user/username/projects/myproject/src/main.ts: undefined +Info 38 [00:01:42.000] Search path: /dummy +Info 39 [00:01:43.000] For info: /dummy/dummy.ts :: No config files found. +Info 40 [00:01:44.000] Plugins were requested but not running in environment that supports 'require'. Nothing will be loaded +Info 41 [00:01:45.000] Starting updateGraphWorker: Project: /dev/null/inferredProject2* +Info 42 [00:01:46.000] DirectoryWatcher:: Added:: WatchInfo: /dummy/node_modules/@types 1 undefined Project: /dev/null/inferredProject2* WatchType: Type roots +Info 43 [00:01:47.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /dummy/node_modules/@types 1 undefined Project: /dev/null/inferredProject2* WatchType: Type roots +Info 44 [00:01:48.000] Finishing updateGraphWorker: Project: /dev/null/inferredProject2* Version: 1 structureChanged: true structureIsReused:: Not Elapsed:: *ms +Info 45 [00:01:49.000] Project '/dev/null/inferredProject2*' (Inferred) +Info 46 [00:01:50.000] Files (2) /a/lib/lib.d.ts /dummy/dummy.ts @@ -103,65 +103,65 @@ Info 46 [16:01:50.000] Files (2) dummy.ts Root file specified for compilation -Info 47 [16:01:51.000] ----------------------------------------------- -Info 48 [16:01:52.000] `remove Project:: -Info 49 [16:01:53.000] Project '/user/username/projects/myproject/tsconfig.json' (Configured) -Info 50 [16:01:54.000] Files (0) +Info 47 [00:01:51.000] ----------------------------------------------- +Info 48 [00:01:52.000] `remove Project:: +Info 49 [00:01:53.000] Project '/user/username/projects/myproject/tsconfig.json' (Configured) +Info 50 [00:01:54.000] Files (0) -Info 51 [16:01:55.000] ----------------------------------------------- -Info 52 [16:01:56.000] DirectoryWatcher:: Close:: WatchInfo: /user/username/projects/myproject/src 1 undefined Config: /user/username/projects/myproject/tsconfig-src.json WatchType: Wild card directory -Info 53 [16:01:57.000] 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 54 [16:01:58.000] FileWatcher:: Close:: WatchInfo: /user/username/projects/myproject/tsconfig-src.json 2000 undefined Project: /user/username/projects/myproject/tsconfig.json WatchType: Config file -Info 55 [16:01:59.000] DirectoryWatcher:: Close:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/tsconfig.json WatchType: Type roots -Info 56 [16:02:00.000] 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 57 [16:02:01.000] Project '/dev/null/inferredProject1*' (Inferred) -Info 57 [16:02:02.000] Files (2) +Info 51 [00:01:55.000] ----------------------------------------------- +Info 52 [00:01:56.000] DirectoryWatcher:: Close:: WatchInfo: /user/username/projects/myproject/src 1 undefined Config: /user/username/projects/myproject/tsconfig-src.json WatchType: Wild card directory +Info 53 [00:01:57.000] 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 54 [00:01:58.000] FileWatcher:: Close:: WatchInfo: /user/username/projects/myproject/tsconfig-src.json 2000 undefined Project: /user/username/projects/myproject/tsconfig.json WatchType: Config file +Info 55 [00:01:59.000] DirectoryWatcher:: Close:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/tsconfig.json WatchType: Type roots +Info 56 [00:02:00.000] 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 57 [00:02:01.000] Project '/dev/null/inferredProject1*' (Inferred) +Info 57 [00:02:02.000] Files (2) -Info 57 [16:02:03.000] ----------------------------------------------- -Info 57 [16:02:04.000] Project '/dev/null/inferredProject2*' (Inferred) -Info 57 [16:02:05.000] Files (2) +Info 57 [00:02:03.000] ----------------------------------------------- +Info 57 [00:02:04.000] Project '/dev/null/inferredProject2*' (Inferred) +Info 57 [00:02:05.000] Files (2) -Info 57 [16:02:06.000] ----------------------------------------------- -Info 57 [16:02:07.000] Open files: -Info 57 [16:02:08.000] FileName: /user/username/projects/myproject/src/main.ts ProjectRootPath: undefined -Info 57 [16:02:09.000] Projects: /dev/null/inferredProject1* -Info 57 [16:02:10.000] FileName: /dummy/dummy.ts ProjectRootPath: undefined -Info 57 [16:02:11.000] Projects: /dev/null/inferredProject2* -Info 57 [16:02:12.000] FileWatcher:: Close:: WatchInfo: /user/username/projects/myproject/src/tsconfig.json 2000 undefined WatchType: Config file for the inferred project root -Info 58 [16:02:13.000] FileWatcher:: Close:: WatchInfo: /user/username/projects/myproject/src/jsconfig.json 2000 undefined WatchType: Config file for the inferred project root -Info 59 [16:02:14.000] FileWatcher:: Close:: WatchInfo: /user/username/projects/myproject/tsconfig.json 2000 undefined Project: /user/username/projects/myproject/tsconfig.json WatchType: Config file -Info 60 [16:02:15.000] FileWatcher:: Close:: WatchInfo: /user/username/projects/myproject/jsconfig.json 2000 undefined WatchType: Config file for the inferred project root -Info 61 [16:02:16.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/src/main.ts 500 undefined WatchType: Closed Script info -Info 62 [16:02:17.000] Project '/dev/null/inferredProject1*' (Inferred) -Info 62 [16:02:18.000] Files (2) +Info 57 [00:02:06.000] ----------------------------------------------- +Info 57 [00:02:07.000] Open files: +Info 57 [00:02:08.000] FileName: /user/username/projects/myproject/src/main.ts ProjectRootPath: undefined +Info 57 [00:02:09.000] Projects: /dev/null/inferredProject1* +Info 57 [00:02:10.000] FileName: /dummy/dummy.ts ProjectRootPath: undefined +Info 57 [00:02:11.000] Projects: /dev/null/inferredProject2* +Info 57 [00:02:12.000] FileWatcher:: Close:: WatchInfo: /user/username/projects/myproject/src/tsconfig.json 2000 undefined WatchType: Config file for the inferred project root +Info 58 [00:02:13.000] FileWatcher:: Close:: WatchInfo: /user/username/projects/myproject/src/jsconfig.json 2000 undefined WatchType: Config file for the inferred project root +Info 59 [00:02:14.000] FileWatcher:: Close:: WatchInfo: /user/username/projects/myproject/tsconfig.json 2000 undefined Project: /user/username/projects/myproject/tsconfig.json WatchType: Config file +Info 60 [00:02:15.000] FileWatcher:: Close:: WatchInfo: /user/username/projects/myproject/jsconfig.json 2000 undefined WatchType: Config file for the inferred project root +Info 61 [00:02:16.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/src/main.ts 500 undefined WatchType: Closed Script info +Info 62 [00:02:17.000] Project '/dev/null/inferredProject1*' (Inferred) +Info 62 [00:02:18.000] Files (2) -Info 62 [16:02:19.000] ----------------------------------------------- -Info 62 [16:02:20.000] Project '/dev/null/inferredProject2*' (Inferred) -Info 62 [16:02:21.000] Files (2) +Info 62 [00:02:19.000] ----------------------------------------------- +Info 62 [00:02:20.000] Project '/dev/null/inferredProject2*' (Inferred) +Info 62 [00:02:21.000] Files (2) -Info 62 [16:02:22.000] ----------------------------------------------- -Info 62 [16:02:23.000] Open files: -Info 62 [16:02:24.000] FileName: /dummy/dummy.ts ProjectRootPath: undefined -Info 62 [16:02:25.000] Projects: /dev/null/inferredProject2* -Info 62 [16:02:26.000] FileWatcher:: Added:: WatchInfo: /dummy/dummy.ts 500 undefined WatchType: Closed Script info -Info 63 [16:02:27.000] Project '/dev/null/inferredProject1*' (Inferred) -Info 63 [16:02:28.000] Files (2) +Info 62 [00:02:22.000] ----------------------------------------------- +Info 62 [00:02:23.000] Open files: +Info 62 [00:02:24.000] FileName: /dummy/dummy.ts ProjectRootPath: undefined +Info 62 [00:02:25.000] Projects: /dev/null/inferredProject2* +Info 62 [00:02:26.000] FileWatcher:: Added:: WatchInfo: /dummy/dummy.ts 500 undefined WatchType: Closed Script info +Info 63 [00:02:27.000] Project '/dev/null/inferredProject1*' (Inferred) +Info 63 [00:02:28.000] Files (2) -Info 63 [16:02:29.000] ----------------------------------------------- -Info 63 [16:02:30.000] Project '/dev/null/inferredProject2*' (Inferred) -Info 63 [16:02:31.000] Files (2) +Info 63 [00:02:29.000] ----------------------------------------------- +Info 63 [00:02:30.000] Project '/dev/null/inferredProject2*' (Inferred) +Info 63 [00:02:31.000] Files (2) -Info 63 [16:02:32.000] ----------------------------------------------- -Info 63 [16:02:33.000] Open files: -Info 63 [16:02:34.000] FileWatcher:: Close:: WatchInfo: /dummy/dummy.ts 500 undefined WatchType: Closed Script info -Info 64 [16:02:35.000] Search path: /dummy -Info 65 [16:02:36.000] For info: /dummy/dummy.ts :: No config files found. -Info 66 [16:02:37.000] Starting updateGraphWorker: Project: /dev/null/inferredProject2* -Info 67 [16:02:38.000] Finishing updateGraphWorker: Project: /dev/null/inferredProject2* Version: 2 structureChanged: false structureIsReused:: Not Elapsed:: *ms -Info 68 [16:02:39.000] Project '/dev/null/inferredProject2*' (Inferred) -Info 69 [16:02:40.000] Files (2) +Info 63 [00:02:32.000] ----------------------------------------------- +Info 63 [00:02:33.000] Open files: +Info 63 [00:02:34.000] FileWatcher:: Close:: WatchInfo: /dummy/dummy.ts 500 undefined WatchType: Closed Script info +Info 64 [00:02:35.000] Search path: /dummy +Info 65 [00:02:36.000] For info: /dummy/dummy.ts :: No config files found. +Info 66 [00:02:37.000] Starting updateGraphWorker: Project: /dev/null/inferredProject2* +Info 67 [00:02:38.000] Finishing updateGraphWorker: Project: /dev/null/inferredProject2* Version: 2 structureChanged: false structureIsReused:: Not Elapsed:: *ms +Info 68 [00:02:39.000] Project '/dev/null/inferredProject2*' (Inferred) +Info 69 [00:02:40.000] Files (2) /a/lib/lib.d.ts /dummy/dummy.ts @@ -171,10 +171,10 @@ Info 69 [16:02:40.000] Files (2) dummy.ts Root file specified for compilation -Info 70 [16:02:41.000] ----------------------------------------------- -Info 71 [16:02:42.000] `remove Project:: -Info 72 [16:02:43.000] Project '/dev/null/inferredProject1*' (Inferred) -Info 73 [16:02:44.000] Files (2) +Info 70 [00:02:41.000] ----------------------------------------------- +Info 71 [00:02:42.000] `remove Project:: +Info 72 [00:02:43.000] Project '/dev/null/inferredProject1*' (Inferred) +Info 73 [00:02:44.000] Files (2) /a/lib/lib.d.ts /user/username/projects/myproject/src/main.ts @@ -184,30 +184,30 @@ Info 73 [16:02:44.000] Files (2) main.ts Root file specified for compilation -Info 74 [16:02:45.000] ----------------------------------------------- -Info 75 [16:02:46.000] DirectoryWatcher:: Close:: WatchInfo: /user/username/projects/myproject/src/node_modules 1 undefined Project: /dev/null/inferredProject1* WatchType: Failed Lookup Locations -Info 76 [16:02:47.000] Elapsed:: *ms DirectoryWatcher:: Close:: WatchInfo: /user/username/projects/myproject/src/node_modules 1 undefined Project: /dev/null/inferredProject1* WatchType: Failed Lookup Locations -Info 77 [16:02:48.000] DirectoryWatcher:: Close:: WatchInfo: /user/username/projects/myproject/node_modules 1 undefined Project: /dev/null/inferredProject1* WatchType: Failed Lookup Locations -Info 78 [16:02:49.000] Elapsed:: *ms DirectoryWatcher:: Close:: WatchInfo: /user/username/projects/myproject/node_modules 1 undefined Project: /dev/null/inferredProject1* WatchType: Failed Lookup Locations -Info 79 [16:02:50.000] DirectoryWatcher:: Close:: WatchInfo: /user/username/projects/myproject/src/node_modules/@types 1 undefined Project: /dev/null/inferredProject1* WatchType: Type roots -Info 80 [16:02:51.000] Elapsed:: *ms DirectoryWatcher:: Close:: WatchInfo: /user/username/projects/myproject/src/node_modules/@types 1 undefined Project: /dev/null/inferredProject1* WatchType: Type roots -Info 81 [16:02:52.000] DirectoryWatcher:: Close:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /dev/null/inferredProject1* WatchType: Type roots -Info 82 [16:02:53.000] Elapsed:: *ms DirectoryWatcher:: Close:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /dev/null/inferredProject1* WatchType: Type roots -Info 83 [16:02:54.000] FileWatcher:: Close:: WatchInfo: /user/username/projects/myproject/src/main.ts 500 undefined WatchType: Closed Script info -Info 84 [16:02:55.000] Project '/dev/null/inferredProject2*' (Inferred) -Info 84 [16:02:56.000] Files (2) +Info 74 [00:02:45.000] ----------------------------------------------- +Info 75 [00:02:46.000] DirectoryWatcher:: Close:: WatchInfo: /user/username/projects/myproject/src/node_modules 1 undefined Project: /dev/null/inferredProject1* WatchType: Failed Lookup Locations +Info 76 [00:02:47.000] Elapsed:: *ms DirectoryWatcher:: Close:: WatchInfo: /user/username/projects/myproject/src/node_modules 1 undefined Project: /dev/null/inferredProject1* WatchType: Failed Lookup Locations +Info 77 [00:02:48.000] DirectoryWatcher:: Close:: WatchInfo: /user/username/projects/myproject/node_modules 1 undefined Project: /dev/null/inferredProject1* WatchType: Failed Lookup Locations +Info 78 [00:02:49.000] Elapsed:: *ms DirectoryWatcher:: Close:: WatchInfo: /user/username/projects/myproject/node_modules 1 undefined Project: /dev/null/inferredProject1* WatchType: Failed Lookup Locations +Info 79 [00:02:50.000] DirectoryWatcher:: Close:: WatchInfo: /user/username/projects/myproject/src/node_modules/@types 1 undefined Project: /dev/null/inferredProject1* WatchType: Type roots +Info 80 [00:02:51.000] Elapsed:: *ms DirectoryWatcher:: Close:: WatchInfo: /user/username/projects/myproject/src/node_modules/@types 1 undefined Project: /dev/null/inferredProject1* WatchType: Type roots +Info 81 [00:02:52.000] DirectoryWatcher:: Close:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /dev/null/inferredProject1* WatchType: Type roots +Info 82 [00:02:53.000] Elapsed:: *ms DirectoryWatcher:: Close:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /dev/null/inferredProject1* WatchType: Type roots +Info 83 [00:02:54.000] FileWatcher:: Close:: WatchInfo: /user/username/projects/myproject/src/main.ts 500 undefined WatchType: Closed Script info +Info 84 [00:02:55.000] Project '/dev/null/inferredProject2*' (Inferred) +Info 84 [00:02:56.000] Files (2) -Info 84 [16:02:57.000] ----------------------------------------------- -Info 84 [16:02:58.000] Open files: -Info 84 [16:02:59.000] FileName: /dummy/dummy.ts ProjectRootPath: undefined -Info 84 [16:03:00.000] Projects: /dev/null/inferredProject2* -Info 84 [16:03:01.000] Search path: /user/username/projects/myproject/src -Info 85 [16:03:02.000] For info: /user/username/projects/myproject/src/main.ts :: Config file name: /user/username/projects/myproject/tsconfig.json -Info 86 [16:03:03.000] Creating configuration project /user/username/projects/myproject/tsconfig.json -Info 87 [16:03:04.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/tsconfig.json 2000 undefined Project: /user/username/projects/myproject/tsconfig.json WatchType: Config file -Info 88 [16:03:05.000] event: +Info 84 [00:02:57.000] ----------------------------------------------- +Info 84 [00:02:58.000] Open files: +Info 84 [00:02:59.000] FileName: /dummy/dummy.ts ProjectRootPath: undefined +Info 84 [00:03:00.000] Projects: /dev/null/inferredProject2* +Info 84 [00:03:01.000] Search path: /user/username/projects/myproject/src +Info 85 [00:03:02.000] For info: /user/username/projects/myproject/src/main.ts :: Config file name: /user/username/projects/myproject/tsconfig.json +Info 86 [00:03:03.000] Creating configuration project /user/username/projects/myproject/tsconfig.json +Info 87 [00:03:04.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/tsconfig.json 2000 undefined Project: /user/username/projects/myproject/tsconfig.json WatchType: Config file +Info 88 [00:03:05.000] event: {"seq":0,"type":"event","event":"projectLoadingStart","body":{"projectName":"/user/username/projects/myproject/tsconfig.json","reason":"Creating possible configured project for /user/username/projects/myproject/src/main.ts to open"}} -Info 89 [16:03:06.000] Config: /user/username/projects/myproject/tsconfig.json : { +Info 89 [00:03:06.000] Config: /user/username/projects/myproject/tsconfig.json : { "rootNames": [], "options": { "disableReferencedProjectLoad": true, @@ -220,9 +220,9 @@ Info 89 [16:03:06.000] Config: /user/username/projects/myproject/tsconfig.json } ] } -Info 90 [16:03:07.000] Plugins were requested but not running in environment that supports 'require'. Nothing will be loaded -Info 91 [16:03:08.000] Starting updateGraphWorker: Project: /user/username/projects/myproject/tsconfig.json -Info 92 [16:03:09.000] Config: /user/username/projects/myproject/tsconfig-src.json : { +Info 90 [00:03:07.000] Plugins were requested but not running in environment that supports 'require'. Nothing will be loaded +Info 91 [00:03:08.000] Starting updateGraphWorker: Project: /user/username/projects/myproject/tsconfig.json +Info 92 [00:03:09.000] Config: /user/username/projects/myproject/tsconfig-src.json : { "rootNames": [ "/user/username/projects/myproject/src/main.ts", "/user/username/projects/myproject/src/helpers/functions.ts" @@ -234,33 +234,33 @@ Info 92 [16:03:09.000] Config: /user/username/projects/myproject/tsconfig-src. "configFilePath": "/user/username/projects/myproject/tsconfig-src.json" } } -Info 93 [16:03:10.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/tsconfig-src.json 2000 undefined Project: /user/username/projects/myproject/tsconfig.json WatchType: Config file -Info 94 [16:03:11.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/src 1 undefined Config: /user/username/projects/myproject/tsconfig-src.json WatchType: Wild card directory -Info 95 [16:03:12.000] 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 96 [16:03:13.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/tsconfig.json WatchType: Type roots -Info 97 [16:03:14.000] 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 98 [16:03:15.000] Finishing updateGraphWorker: Project: /user/username/projects/myproject/tsconfig.json Version: 1 structureChanged: true structureIsReused:: Not Elapsed:: *ms -Info 99 [16:03:16.000] Different program with same set of files -Info 100 [16:03:17.000] event: +Info 93 [00:03:10.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/tsconfig-src.json 2000 undefined Project: /user/username/projects/myproject/tsconfig.json WatchType: Config file +Info 94 [00:03:11.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/src 1 undefined Config: /user/username/projects/myproject/tsconfig-src.json WatchType: Wild card directory +Info 95 [00:03:12.000] 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 96 [00:03:13.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/tsconfig.json WatchType: Type roots +Info 97 [00:03:14.000] 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 98 [00:03:15.000] Finishing updateGraphWorker: Project: /user/username/projects/myproject/tsconfig.json Version: 1 structureChanged: true structureIsReused:: Not Elapsed:: *ms +Info 99 [00:03:16.000] Different program with same set of files +Info 100 [00:03:17.000] event: {"seq":0,"type":"event","event":"projectLoadingFinish","body":{"projectName":"/user/username/projects/myproject/tsconfig.json"}} -Info 101 [16:03:18.000] event: +Info 101 [00:03:18.000] event: {"seq":0,"type":"event","event":"configFileDiag","body":{"triggerFile":"/user/username/projects/myproject/src/main.ts","configFile":"/user/username/projects/myproject/tsconfig.json","diagnostics":[]}} -Info 102 [16:03:19.000] Plugins were requested but not running in environment that supports 'require'. Nothing will be loaded -Info 103 [16:03:20.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/src/tsconfig.json 2000 undefined WatchType: Config file for the inferred project root -Info 104 [16:03:21.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/src/jsconfig.json 2000 undefined WatchType: Config file for the inferred project root -Info 105 [16:03:22.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/jsconfig.json 2000 undefined WatchType: Config file for the inferred project root -Info 106 [16:03:23.000] Starting updateGraphWorker: Project: /dev/null/inferredProject3* -Info 107 [16:03:24.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/src/node_modules 1 undefined Project: /dev/null/inferredProject3* WatchType: Failed Lookup Locations -Info 108 [16:03:25.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/src/node_modules 1 undefined Project: /dev/null/inferredProject3* WatchType: Failed Lookup Locations -Info 109 [16:03:26.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules 1 undefined Project: /dev/null/inferredProject3* WatchType: Failed Lookup Locations -Info 110 [16:03:27.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules 1 undefined Project: /dev/null/inferredProject3* WatchType: Failed Lookup Locations -Info 111 [16:03:28.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/src/node_modules/@types 1 undefined Project: /dev/null/inferredProject3* WatchType: Type roots -Info 112 [16:03:29.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/src/node_modules/@types 1 undefined Project: /dev/null/inferredProject3* WatchType: Type roots -Info 113 [16:03:30.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /dev/null/inferredProject3* WatchType: Type roots -Info 114 [16:03:31.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /dev/null/inferredProject3* WatchType: Type roots -Info 115 [16:03:32.000] Finishing updateGraphWorker: Project: /dev/null/inferredProject3* Version: 1 structureChanged: true structureIsReused:: Not Elapsed:: *ms -Info 116 [16:03:33.000] Project '/dev/null/inferredProject3*' (Inferred) -Info 117 [16:03:34.000] Files (2) +Info 102 [00:03:19.000] Plugins were requested but not running in environment that supports 'require'. Nothing will be loaded +Info 103 [00:03:20.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/src/tsconfig.json 2000 undefined WatchType: Config file for the inferred project root +Info 104 [00:03:21.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/src/jsconfig.json 2000 undefined WatchType: Config file for the inferred project root +Info 105 [00:03:22.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/jsconfig.json 2000 undefined WatchType: Config file for the inferred project root +Info 106 [00:03:23.000] Starting updateGraphWorker: Project: /dev/null/inferredProject3* +Info 107 [00:03:24.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/src/node_modules 1 undefined Project: /dev/null/inferredProject3* WatchType: Failed Lookup Locations +Info 108 [00:03:25.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/src/node_modules 1 undefined Project: /dev/null/inferredProject3* WatchType: Failed Lookup Locations +Info 109 [00:03:26.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules 1 undefined Project: /dev/null/inferredProject3* WatchType: Failed Lookup Locations +Info 110 [00:03:27.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules 1 undefined Project: /dev/null/inferredProject3* WatchType: Failed Lookup Locations +Info 111 [00:03:28.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/src/node_modules/@types 1 undefined Project: /dev/null/inferredProject3* WatchType: Type roots +Info 112 [00:03:29.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/src/node_modules/@types 1 undefined Project: /dev/null/inferredProject3* WatchType: Type roots +Info 113 [00:03:30.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /dev/null/inferredProject3* WatchType: Type roots +Info 114 [00:03:31.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /dev/null/inferredProject3* WatchType: Type roots +Info 115 [00:03:32.000] Finishing updateGraphWorker: Project: /dev/null/inferredProject3* Version: 1 structureChanged: true structureIsReused:: Not Elapsed:: *ms +Info 116 [00:03:33.000] Project '/dev/null/inferredProject3*' (Inferred) +Info 117 [00:03:34.000] Files (2) /a/lib/lib.d.ts /user/username/projects/myproject/src/main.ts @@ -270,38 +270,38 @@ Info 117 [16:03:34.000] Files (2) main.ts Root file specified for compilation -Info 118 [16:03:35.000] ----------------------------------------------- -Info 119 [16:03:36.000] Project '/user/username/projects/myproject/tsconfig.json' (Configured) -Info 119 [16:03:37.000] Files (0) +Info 118 [00:03:35.000] ----------------------------------------------- +Info 119 [00:03:36.000] Project '/user/username/projects/myproject/tsconfig.json' (Configured) +Info 119 [00:03:37.000] Files (0) -Info 119 [16:03:38.000] ----------------------------------------------- -Info 119 [16:03:39.000] Project '/dev/null/inferredProject2*' (Inferred) -Info 119 [16:03:40.000] Files (2) +Info 119 [00:03:38.000] ----------------------------------------------- +Info 119 [00:03:39.000] Project '/dev/null/inferredProject2*' (Inferred) +Info 119 [00:03:40.000] Files (2) -Info 119 [16:03:41.000] ----------------------------------------------- -Info 119 [16:03:42.000] Project '/dev/null/inferredProject3*' (Inferred) -Info 119 [16:03:43.000] Files (2) +Info 119 [00:03:41.000] ----------------------------------------------- +Info 119 [00:03:42.000] Project '/dev/null/inferredProject3*' (Inferred) +Info 119 [00:03:43.000] Files (2) -Info 119 [16:03:44.000] ----------------------------------------------- -Info 119 [16:03:45.000] Open files: -Info 119 [16:03:46.000] FileName: /dummy/dummy.ts ProjectRootPath: undefined -Info 119 [16:03:47.000] Projects: /dev/null/inferredProject2* -Info 119 [16:03:48.000] FileName: /user/username/projects/myproject/src/main.ts ProjectRootPath: undefined -Info 119 [16:03:49.000] Projects: /dev/null/inferredProject3* -Info 119 [16:03:50.000] reload projects. -Info 120 [16:03:51.000] Scheduled: /dev/null/inferredProject2* -Info 121 [16:03:52.000] Scheduled: /dev/null/inferredProject3* -Info 122 [16:03:53.000] Scheduled: *ensureProjectForOpenFiles* -Info 123 [16:03:54.000] Search path: /dummy -Info 124 [16:03:55.000] For info: /dummy/dummy.ts :: No config files found. -Info 125 [16:03:56.000] Search path: /user/username/projects/myproject/src -Info 126 [16:03:57.000] For info: /user/username/projects/myproject/src/main.ts :: Config file name: /user/username/projects/myproject/tsconfig.json -Info 127 [16:03:58.000] DirectoryWatcher:: Close:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/tsconfig.json WatchType: Type roots -Info 128 [16:03:59.000] 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 129 [16:04:00.000] Reloading configured project /user/username/projects/myproject/tsconfig.json -Info 130 [16:04:01.000] event: +Info 119 [00:03:44.000] ----------------------------------------------- +Info 119 [00:03:45.000] Open files: +Info 119 [00:03:46.000] FileName: /dummy/dummy.ts ProjectRootPath: undefined +Info 119 [00:03:47.000] Projects: /dev/null/inferredProject2* +Info 119 [00:03:48.000] FileName: /user/username/projects/myproject/src/main.ts ProjectRootPath: undefined +Info 119 [00:03:49.000] Projects: /dev/null/inferredProject3* +Info 119 [00:03:50.000] reload projects. +Info 120 [00:03:51.000] Scheduled: /dev/null/inferredProject2* +Info 121 [00:03:52.000] Scheduled: /dev/null/inferredProject3* +Info 122 [00:03:53.000] Scheduled: *ensureProjectForOpenFiles* +Info 123 [00:03:54.000] Search path: /dummy +Info 124 [00:03:55.000] For info: /dummy/dummy.ts :: No config files found. +Info 125 [00:03:56.000] Search path: /user/username/projects/myproject/src +Info 126 [00:03:57.000] For info: /user/username/projects/myproject/src/main.ts :: Config file name: /user/username/projects/myproject/tsconfig.json +Info 127 [00:03:58.000] DirectoryWatcher:: Close:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/tsconfig.json WatchType: Type roots +Info 128 [00:03:59.000] 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 129 [00:04:00.000] Reloading configured project /user/username/projects/myproject/tsconfig.json +Info 130 [00:04:01.000] event: {"seq":0,"type":"event","event":"projectLoadingStart","body":{"projectName":"/user/username/projects/myproject/tsconfig.json","reason":"User requested reload projects"}} -Info 131 [16:04:02.000] Config: /user/username/projects/myproject/tsconfig.json : { +Info 131 [00:04:02.000] Config: /user/username/projects/myproject/tsconfig.json : { "rootNames": [], "options": { "disableReferencedProjectLoad": true, @@ -314,9 +314,9 @@ Info 131 [16:04:02.000] Config: /user/username/projects/myproject/tsconfig.json } ] } -Info 132 [16:04:03.000] Plugins were requested but not running in environment that supports 'require'. Nothing will be loaded -Info 133 [16:04:04.000] Starting updateGraphWorker: Project: /user/username/projects/myproject/tsconfig.json -Info 134 [16:04:05.000] Config: /user/username/projects/myproject/tsconfig-src.json : { +Info 132 [00:04:03.000] Plugins were requested but not running in environment that supports 'require'. Nothing will be loaded +Info 133 [00:04:04.000] Starting updateGraphWorker: Project: /user/username/projects/myproject/tsconfig.json +Info 134 [00:04:05.000] Config: /user/username/projects/myproject/tsconfig-src.json : { "rootNames": [ "/user/username/projects/myproject/src/main.ts", "/user/username/projects/myproject/src/helpers/functions.ts" @@ -328,73 +328,73 @@ Info 134 [16:04:05.000] Config: /user/username/projects/myproject/tsconfig-src. "configFilePath": "/user/username/projects/myproject/tsconfig-src.json" } } -Info 135 [16:04:06.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/tsconfig.json WatchType: Type roots -Info 136 [16:04:07.000] 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 137 [16:04:08.000] Finishing updateGraphWorker: Project: /user/username/projects/myproject/tsconfig.json Version: 2 structureChanged: true structureIsReused:: Not Elapsed:: *ms -Info 138 [16:04:09.000] Different program with same set of files -Info 139 [16:04:10.000] event: +Info 135 [00:04:06.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/tsconfig.json WatchType: Type roots +Info 136 [00:04:07.000] 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 137 [00:04:08.000] Finishing updateGraphWorker: Project: /user/username/projects/myproject/tsconfig.json Version: 2 structureChanged: true structureIsReused:: Not Elapsed:: *ms +Info 138 [00:04:09.000] Different program with same set of files +Info 139 [00:04:10.000] event: {"seq":0,"type":"event","event":"projectLoadingFinish","body":{"projectName":"/user/username/projects/myproject/tsconfig.json"}} -Info 140 [16:04:11.000] event: +Info 140 [00:04:11.000] event: {"seq":0,"type":"event","event":"configFileDiag","body":{"triggerFile":"/user/username/projects/myproject/tsconfig.json","configFile":"/user/username/projects/myproject/tsconfig.json","diagnostics":[]}} -Info 141 [16:04:12.000] DirectoryWatcher:: Close:: WatchInfo: /dummy/node_modules/@types 1 undefined Project: /dev/null/inferredProject2* WatchType: Type roots -Info 142 [16:04:13.000] Elapsed:: *ms DirectoryWatcher:: Close:: WatchInfo: /dummy/node_modules/@types 1 undefined Project: /dev/null/inferredProject2* WatchType: Type roots -Info 143 [16:04:14.000] DirectoryWatcher:: Close:: WatchInfo: /user/username/projects/myproject/src/node_modules 1 undefined Project: /dev/null/inferredProject3* WatchType: Failed Lookup Locations -Info 144 [16:04:15.000] Elapsed:: *ms DirectoryWatcher:: Close:: WatchInfo: /user/username/projects/myproject/src/node_modules 1 undefined Project: /dev/null/inferredProject3* WatchType: Failed Lookup Locations -Info 145 [16:04:16.000] DirectoryWatcher:: Close:: WatchInfo: /user/username/projects/myproject/node_modules 1 undefined Project: /dev/null/inferredProject3* WatchType: Failed Lookup Locations -Info 146 [16:04:17.000] Elapsed:: *ms DirectoryWatcher:: Close:: WatchInfo: /user/username/projects/myproject/node_modules 1 undefined Project: /dev/null/inferredProject3* WatchType: Failed Lookup Locations -Info 147 [16:04:18.000] DirectoryWatcher:: Close:: WatchInfo: /user/username/projects/myproject/src/node_modules/@types 1 undefined Project: /dev/null/inferredProject3* WatchType: Type roots -Info 148 [16:04:19.000] Elapsed:: *ms DirectoryWatcher:: Close:: WatchInfo: /user/username/projects/myproject/src/node_modules/@types 1 undefined Project: /dev/null/inferredProject3* WatchType: Type roots -Info 149 [16:04:20.000] DirectoryWatcher:: Close:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /dev/null/inferredProject3* WatchType: Type roots -Info 150 [16:04:21.000] Elapsed:: *ms DirectoryWatcher:: Close:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /dev/null/inferredProject3* WatchType: Type roots -Info 151 [16:04:22.000] Before ensureProjectForOpenFiles: -Info 152 [16:04:23.000] Project '/user/username/projects/myproject/tsconfig.json' (Configured) -Info 152 [16:04:24.000] Files (0) +Info 141 [00:04:12.000] DirectoryWatcher:: Close:: WatchInfo: /dummy/node_modules/@types 1 undefined Project: /dev/null/inferredProject2* WatchType: Type roots +Info 142 [00:04:13.000] Elapsed:: *ms DirectoryWatcher:: Close:: WatchInfo: /dummy/node_modules/@types 1 undefined Project: /dev/null/inferredProject2* WatchType: Type roots +Info 143 [00:04:14.000] DirectoryWatcher:: Close:: WatchInfo: /user/username/projects/myproject/src/node_modules 1 undefined Project: /dev/null/inferredProject3* WatchType: Failed Lookup Locations +Info 144 [00:04:15.000] Elapsed:: *ms DirectoryWatcher:: Close:: WatchInfo: /user/username/projects/myproject/src/node_modules 1 undefined Project: /dev/null/inferredProject3* WatchType: Failed Lookup Locations +Info 145 [00:04:16.000] DirectoryWatcher:: Close:: WatchInfo: /user/username/projects/myproject/node_modules 1 undefined Project: /dev/null/inferredProject3* WatchType: Failed Lookup Locations +Info 146 [00:04:17.000] Elapsed:: *ms DirectoryWatcher:: Close:: WatchInfo: /user/username/projects/myproject/node_modules 1 undefined Project: /dev/null/inferredProject3* WatchType: Failed Lookup Locations +Info 147 [00:04:18.000] DirectoryWatcher:: Close:: WatchInfo: /user/username/projects/myproject/src/node_modules/@types 1 undefined Project: /dev/null/inferredProject3* WatchType: Type roots +Info 148 [00:04:19.000] Elapsed:: *ms DirectoryWatcher:: Close:: WatchInfo: /user/username/projects/myproject/src/node_modules/@types 1 undefined Project: /dev/null/inferredProject3* WatchType: Type roots +Info 149 [00:04:20.000] DirectoryWatcher:: Close:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /dev/null/inferredProject3* WatchType: Type roots +Info 150 [00:04:21.000] Elapsed:: *ms DirectoryWatcher:: Close:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /dev/null/inferredProject3* WatchType: Type roots +Info 151 [00:04:22.000] Before ensureProjectForOpenFiles: +Info 152 [00:04:23.000] Project '/user/username/projects/myproject/tsconfig.json' (Configured) +Info 152 [00:04:24.000] Files (0) -Info 152 [16:04:25.000] ----------------------------------------------- -Info 152 [16:04:26.000] Project '/dev/null/inferredProject2*' (Inferred) -Info 152 [16:04:27.000] Files (2) +Info 152 [00:04:25.000] ----------------------------------------------- +Info 152 [00:04:26.000] Project '/dev/null/inferredProject2*' (Inferred) +Info 152 [00:04:27.000] Files (2) -Info 152 [16:04:28.000] ----------------------------------------------- -Info 152 [16:04:29.000] Project '/dev/null/inferredProject3*' (Inferred) -Info 152 [16:04:30.000] Files (2) +Info 152 [00:04:28.000] ----------------------------------------------- +Info 152 [00:04:29.000] Project '/dev/null/inferredProject3*' (Inferred) +Info 152 [00:04:30.000] Files (2) -Info 152 [16:04:31.000] ----------------------------------------------- -Info 152 [16:04:32.000] Open files: -Info 152 [16:04:33.000] FileName: /dummy/dummy.ts ProjectRootPath: undefined -Info 152 [16:04:34.000] Projects: /dev/null/inferredProject2* -Info 152 [16:04:35.000] FileName: /user/username/projects/myproject/src/main.ts ProjectRootPath: undefined -Info 152 [16:04:36.000] Projects: /dev/null/inferredProject3* -Info 152 [16:04:37.000] Starting updateGraphWorker: Project: /dev/null/inferredProject2* -Info 153 [16:04:38.000] DirectoryWatcher:: Added:: WatchInfo: /dummy/node_modules/@types 1 undefined Project: /dev/null/inferredProject2* WatchType: Type roots -Info 154 [16:04:39.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /dummy/node_modules/@types 1 undefined Project: /dev/null/inferredProject2* WatchType: Type roots -Info 155 [16:04:40.000] Finishing updateGraphWorker: Project: /dev/null/inferredProject2* Version: 3 structureChanged: true structureIsReused:: Not Elapsed:: *ms -Info 156 [16:04:41.000] Different program with same set of files -Info 157 [16:04:42.000] Starting updateGraphWorker: Project: /dev/null/inferredProject3* -Info 158 [16:04:43.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/src/node_modules 1 undefined Project: /dev/null/inferredProject3* WatchType: Failed Lookup Locations -Info 159 [16:04:44.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/src/node_modules 1 undefined Project: /dev/null/inferredProject3* WatchType: Failed Lookup Locations -Info 160 [16:04:45.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules 1 undefined Project: /dev/null/inferredProject3* WatchType: Failed Lookup Locations -Info 161 [16:04:46.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules 1 undefined Project: /dev/null/inferredProject3* WatchType: Failed Lookup Locations -Info 162 [16:04:47.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/src/node_modules/@types 1 undefined Project: /dev/null/inferredProject3* WatchType: Type roots -Info 163 [16:04:48.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/src/node_modules/@types 1 undefined Project: /dev/null/inferredProject3* WatchType: Type roots -Info 164 [16:04:49.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /dev/null/inferredProject3* WatchType: Type roots -Info 165 [16:04:50.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /dev/null/inferredProject3* WatchType: Type roots -Info 166 [16:04:51.000] Finishing updateGraphWorker: Project: /dev/null/inferredProject3* Version: 2 structureChanged: true structureIsReused:: Not Elapsed:: *ms -Info 167 [16:04:52.000] Different program with same set of files -Info 168 [16:04:53.000] After ensureProjectForOpenFiles: -Info 169 [16:04:54.000] Project '/user/username/projects/myproject/tsconfig.json' (Configured) -Info 169 [16:04:55.000] Files (0) +Info 152 [00:04:31.000] ----------------------------------------------- +Info 152 [00:04:32.000] Open files: +Info 152 [00:04:33.000] FileName: /dummy/dummy.ts ProjectRootPath: undefined +Info 152 [00:04:34.000] Projects: /dev/null/inferredProject2* +Info 152 [00:04:35.000] FileName: /user/username/projects/myproject/src/main.ts ProjectRootPath: undefined +Info 152 [00:04:36.000] Projects: /dev/null/inferredProject3* +Info 152 [00:04:37.000] Starting updateGraphWorker: Project: /dev/null/inferredProject2* +Info 153 [00:04:38.000] DirectoryWatcher:: Added:: WatchInfo: /dummy/node_modules/@types 1 undefined Project: /dev/null/inferredProject2* WatchType: Type roots +Info 154 [00:04:39.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /dummy/node_modules/@types 1 undefined Project: /dev/null/inferredProject2* WatchType: Type roots +Info 155 [00:04:40.000] Finishing updateGraphWorker: Project: /dev/null/inferredProject2* Version: 3 structureChanged: true structureIsReused:: Not Elapsed:: *ms +Info 156 [00:04:41.000] Different program with same set of files +Info 157 [00:04:42.000] Starting updateGraphWorker: Project: /dev/null/inferredProject3* +Info 158 [00:04:43.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/src/node_modules 1 undefined Project: /dev/null/inferredProject3* WatchType: Failed Lookup Locations +Info 159 [00:04:44.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/src/node_modules 1 undefined Project: /dev/null/inferredProject3* WatchType: Failed Lookup Locations +Info 160 [00:04:45.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules 1 undefined Project: /dev/null/inferredProject3* WatchType: Failed Lookup Locations +Info 161 [00:04:46.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules 1 undefined Project: /dev/null/inferredProject3* WatchType: Failed Lookup Locations +Info 162 [00:04:47.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/src/node_modules/@types 1 undefined Project: /dev/null/inferredProject3* WatchType: Type roots +Info 163 [00:04:48.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/src/node_modules/@types 1 undefined Project: /dev/null/inferredProject3* WatchType: Type roots +Info 164 [00:04:49.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /dev/null/inferredProject3* WatchType: Type roots +Info 165 [00:04:50.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /dev/null/inferredProject3* WatchType: Type roots +Info 166 [00:04:51.000] Finishing updateGraphWorker: Project: /dev/null/inferredProject3* Version: 2 structureChanged: true structureIsReused:: Not Elapsed:: *ms +Info 167 [00:04:52.000] Different program with same set of files +Info 168 [00:04:53.000] After ensureProjectForOpenFiles: +Info 169 [00:04:54.000] Project '/user/username/projects/myproject/tsconfig.json' (Configured) +Info 169 [00:04:55.000] Files (0) -Info 169 [16:04:56.000] ----------------------------------------------- -Info 169 [16:04:57.000] Project '/dev/null/inferredProject2*' (Inferred) -Info 169 [16:04:58.000] Files (2) +Info 169 [00:04:56.000] ----------------------------------------------- +Info 169 [00:04:57.000] Project '/dev/null/inferredProject2*' (Inferred) +Info 169 [00:04:58.000] Files (2) -Info 169 [16:04:59.000] ----------------------------------------------- -Info 169 [16:05:00.000] Project '/dev/null/inferredProject3*' (Inferred) -Info 169 [16:05:01.000] Files (2) +Info 169 [00:04:59.000] ----------------------------------------------- +Info 169 [00:05:00.000] Project '/dev/null/inferredProject3*' (Inferred) +Info 169 [00:05:01.000] Files (2) -Info 169 [16:05:02.000] ----------------------------------------------- -Info 169 [16:05:03.000] Open files: -Info 169 [16:05:04.000] FileName: /dummy/dummy.ts ProjectRootPath: undefined -Info 169 [16:05:05.000] Projects: /dev/null/inferredProject2* -Info 169 [16:05:06.000] FileName: /user/username/projects/myproject/src/main.ts ProjectRootPath: undefined -Info 169 [16:05:07.000] Projects: /dev/null/inferredProject3* \ No newline at end of file +Info 169 [00:05:02.000] ----------------------------------------------- +Info 169 [00:05:03.000] Open files: +Info 169 [00:05:04.000] FileName: /dummy/dummy.ts ProjectRootPath: undefined +Info 169 [00:05:05.000] Projects: /dev/null/inferredProject2* +Info 169 [00:05:06.000] FileName: /user/username/projects/myproject/src/main.ts ProjectRootPath: undefined +Info 169 [00:05:07.000] Projects: /dev/null/inferredProject3* \ No newline at end of file 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 0459e1fb0b47c..7a781651b9163 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 @@ -1,7 +1,7 @@ -Info 0 [16:01:10.000] Provided types map file "/a/lib/typesMap.json" doesn't exist -Info 1 [16:01:11.000] Creating configuration project /user/username/projects/container/compositeExec/tsconfig.json -Info 2 [16:01:12.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/container/compositeExec/tsconfig.json 2000 undefined Project: /user/username/projects/container/compositeExec/tsconfig.json WatchType: Config file -Info 3 [16:01:13.000] Config: /user/username/projects/container/compositeExec/tsconfig.json : { +Info 0 [00:01:10.000] Provided types map file "/a/lib/typesMap.json" doesn't exist +Info 1 [00:01:11.000] Creating configuration project /user/username/projects/container/compositeExec/tsconfig.json +Info 2 [00:01:12.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/container/compositeExec/tsconfig.json 2000 undefined Project: /user/username/projects/container/compositeExec/tsconfig.json WatchType: Config file +Info 3 [00:01:13.000] Config: /user/username/projects/container/compositeExec/tsconfig.json : { "rootNames": [ "/user/username/projects/container/compositeExec/index.ts" ], @@ -19,10 +19,10 @@ Info 3 [16:01:13.000] Config: /user/username/projects/container/compositeExec } ] } -Info 4 [16:01:14.000] Plugins were requested but not running in environment that supports 'require'. Nothing will be loaded -Info 5 [16:01:15.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/container/compositeExec/index.ts 500 undefined WatchType: Closed Script info -Info 6 [16:01:16.000] Starting updateGraphWorker: Project: /user/username/projects/container/compositeExec/tsconfig.json -Info 7 [16:01:17.000] Config: /user/username/projects/container/lib/tsconfig.json : { +Info 4 [00:01:14.000] Plugins were requested but not running in environment that supports 'require'. Nothing will be loaded +Info 5 [00:01:15.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/container/compositeExec/index.ts 500 undefined WatchType: Closed Script info +Info 6 [00:01:16.000] Starting updateGraphWorker: Project: /user/username/projects/container/compositeExec/tsconfig.json +Info 7 [00:01:17.000] Config: /user/username/projects/container/lib/tsconfig.json : { "rootNames": [ "/user/username/projects/container/lib/index.ts" ], @@ -33,16 +33,16 @@ Info 7 [16:01:17.000] Config: /user/username/projects/container/lib/tsconfig. "configFilePath": "/user/username/projects/container/lib/tsconfig.json" } } -Info 8 [16:01:18.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/container/lib/tsconfig.json 2000 undefined Project: /user/username/projects/container/compositeExec/tsconfig.json WatchType: Config file -Info 9 [16:01:19.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/container/lib/index.ts 500 undefined WatchType: Closed Script info -Info 10 [16:01:20.000] FileWatcher:: Added:: WatchInfo: /a/lib/lib.d.ts 500 undefined WatchType: Closed Script info -Info 11 [16:01:21.000] 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 12 [16:01:22.000] 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 13 [16:01:23.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/container/node_modules/@types 1 undefined Project: /user/username/projects/container/compositeExec/tsconfig.json WatchType: Type roots -Info 14 [16:01:24.000] 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 15 [16:01:25.000] Finishing updateGraphWorker: Project: /user/username/projects/container/compositeExec/tsconfig.json Version: 1 structureChanged: true structureIsReused:: Not Elapsed:: *ms -Info 16 [16:01:26.000] Project '/user/username/projects/container/compositeExec/tsconfig.json' (Configured) -Info 17 [16:01:27.000] Files (3) +Info 8 [00:01:18.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/container/lib/tsconfig.json 2000 undefined Project: /user/username/projects/container/compositeExec/tsconfig.json WatchType: Config file +Info 9 [00:01:19.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/container/lib/index.ts 500 undefined WatchType: Closed Script info +Info 10 [00:01:20.000] FileWatcher:: Added:: WatchInfo: /a/lib/lib.d.ts 500 undefined WatchType: Closed Script info +Info 11 [00:01:21.000] 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 12 [00:01:22.000] 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 13 [00:01:23.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/container/node_modules/@types 1 undefined Project: /user/username/projects/container/compositeExec/tsconfig.json WatchType: Type roots +Info 14 [00:01:24.000] 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 15 [00:01:25.000] Finishing updateGraphWorker: Project: /user/username/projects/container/compositeExec/tsconfig.json Version: 1 structureChanged: true structureIsReused:: Not Elapsed:: *ms +Info 16 [00:01:26.000] Project '/user/username/projects/container/compositeExec/tsconfig.json' (Configured) +Info 17 [00:01:27.000] Files (3) /a/lib/lib.d.ts /user/username/projects/container/lib/index.ts /user/username/projects/container/compositeExec/index.ts @@ -55,10 +55,10 @@ Info 17 [16:01:27.000] Files (3) index.ts Part of 'files' list in tsconfig.json -Info 18 [16:01:28.000] ----------------------------------------------- -Info 19 [16:01:29.000] Creating configuration project /user/username/projects/container/exec/tsconfig.json -Info 20 [16:01:30.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/container/exec/tsconfig.json 2000 undefined Project: /user/username/projects/container/exec/tsconfig.json WatchType: Config file -Info 21 [16:01:31.000] Config: /user/username/projects/container/exec/tsconfig.json : { +Info 18 [00:01:28.000] ----------------------------------------------- +Info 19 [00:01:29.000] Creating configuration project /user/username/projects/container/exec/tsconfig.json +Info 20 [00:01:30.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/container/exec/tsconfig.json 2000 undefined Project: /user/username/projects/container/exec/tsconfig.json WatchType: Config file +Info 21 [00:01:31.000] Config: /user/username/projects/container/exec/tsconfig.json : { "rootNames": [ "/user/username/projects/container/exec/index.ts" ], @@ -74,16 +74,16 @@ Info 21 [16:01:31.000] Config: /user/username/projects/container/exec/tsconfig } ] } -Info 22 [16:01:32.000] Plugins were requested but not running in environment that supports 'require'. Nothing will be loaded -Info 23 [16:01:33.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/container/exec/index.ts 500 undefined WatchType: Closed Script info -Info 24 [16:01:34.000] Starting updateGraphWorker: Project: /user/username/projects/container/exec/tsconfig.json -Info 25 [16:01:35.000] 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 26 [16:01:36.000] 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 27 [16:01:37.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/container/node_modules/@types 1 undefined Project: /user/username/projects/container/exec/tsconfig.json WatchType: Type roots -Info 28 [16:01:38.000] 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 29 [16:01:39.000] Finishing updateGraphWorker: Project: /user/username/projects/container/exec/tsconfig.json Version: 1 structureChanged: true structureIsReused:: Not Elapsed:: *ms -Info 30 [16:01:40.000] Project '/user/username/projects/container/exec/tsconfig.json' (Configured) -Info 31 [16:01:41.000] Files (3) +Info 22 [00:01:32.000] Plugins were requested but not running in environment that supports 'require'. Nothing will be loaded +Info 23 [00:01:33.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/container/exec/index.ts 500 undefined WatchType: Closed Script info +Info 24 [00:01:34.000] Starting updateGraphWorker: Project: /user/username/projects/container/exec/tsconfig.json +Info 25 [00:01:35.000] 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 26 [00:01:36.000] 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 27 [00:01:37.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/container/node_modules/@types 1 undefined Project: /user/username/projects/container/exec/tsconfig.json WatchType: Type roots +Info 28 [00:01:38.000] 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 29 [00:01:39.000] Finishing updateGraphWorker: Project: /user/username/projects/container/exec/tsconfig.json Version: 1 structureChanged: true structureIsReused:: Not Elapsed:: *ms +Info 30 [00:01:40.000] Project '/user/username/projects/container/exec/tsconfig.json' (Configured) +Info 31 [00:01:41.000] Files (3) /a/lib/lib.d.ts /user/username/projects/container/lib/index.ts /user/username/projects/container/exec/index.ts @@ -96,17 +96,17 @@ Info 31 [16:01:41.000] Files (3) index.ts Part of 'files' list in tsconfig.json -Info 32 [16:01:42.000] ----------------------------------------------- -Info 33 [16:01:43.000] Creating configuration project /user/username/projects/container/lib/tsconfig.json -Info 34 [16:01:44.000] Plugins were requested but not running in environment that supports 'require'. Nothing will be loaded -Info 35 [16:01:45.000] Starting updateGraphWorker: Project: /user/username/projects/container/lib/tsconfig.json -Info 36 [16:01:46.000] 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 37 [16:01:47.000] 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 38 [16:01:48.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/container/node_modules/@types 1 undefined Project: /user/username/projects/container/lib/tsconfig.json WatchType: Type roots -Info 39 [16:01:49.000] 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 40 [16:01:50.000] Finishing updateGraphWorker: Project: /user/username/projects/container/lib/tsconfig.json Version: 1 structureChanged: true structureIsReused:: Not Elapsed:: *ms -Info 41 [16:01:51.000] Project '/user/username/projects/container/lib/tsconfig.json' (Configured) -Info 42 [16:01:52.000] Files (2) +Info 32 [00:01:42.000] ----------------------------------------------- +Info 33 [00:01:43.000] Creating configuration project /user/username/projects/container/lib/tsconfig.json +Info 34 [00:01:44.000] Plugins were requested but not running in environment that supports 'require'. Nothing will be loaded +Info 35 [00:01:45.000] Starting updateGraphWorker: Project: /user/username/projects/container/lib/tsconfig.json +Info 36 [00:01:46.000] 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 37 [00:01:47.000] 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 38 [00:01:48.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/container/node_modules/@types 1 undefined Project: /user/username/projects/container/lib/tsconfig.json WatchType: Type roots +Info 39 [00:01:49.000] 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 40 [00:01:50.000] Finishing updateGraphWorker: Project: /user/username/projects/container/lib/tsconfig.json Version: 1 structureChanged: true structureIsReused:: Not Elapsed:: *ms +Info 41 [00:01:51.000] Project '/user/username/projects/container/lib/tsconfig.json' (Configured) +Info 42 [00:01:52.000] Files (2) /a/lib/lib.d.ts /user/username/projects/container/lib/index.ts @@ -116,10 +116,10 @@ Info 42 [16:01:52.000] Files (2) index.ts Part of 'files' list in tsconfig.json -Info 43 [16:01:53.000] ----------------------------------------------- -Info 44 [16:01:54.000] Creating configuration project /user/username/projects/container/tsconfig.json -Info 45 [16:01:55.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/container/tsconfig.json 2000 undefined Project: /user/username/projects/container/tsconfig.json WatchType: Config file -Info 46 [16:01:56.000] Config: /user/username/projects/container/tsconfig.json : { +Info 43 [00:01:53.000] ----------------------------------------------- +Info 44 [00:01:54.000] Creating configuration project /user/username/projects/container/tsconfig.json +Info 45 [00:01:55.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/container/tsconfig.json 2000 undefined Project: /user/username/projects/container/tsconfig.json WatchType: Config file +Info 46 [00:01:56.000] Config: /user/username/projects/container/tsconfig.json : { "rootNames": [], "options": { "configFilePath": "/user/username/projects/container/tsconfig.json" @@ -135,13 +135,13 @@ Info 46 [16:01:56.000] Config: /user/username/projects/container/tsconfig.json } ] } -Info 47 [16:01:57.000] Plugins were requested but not running in environment that supports 'require'. Nothing will be loaded -Info 48 [16:01:58.000] Starting updateGraphWorker: Project: /user/username/projects/container/tsconfig.json -Info 49 [16:01:59.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/container/node_modules/@types 1 undefined Project: /user/username/projects/container/tsconfig.json WatchType: Type roots -Info 50 [16:02:00.000] 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 51 [16:02:01.000] Finishing updateGraphWorker: Project: /user/username/projects/container/tsconfig.json Version: 1 structureChanged: true structureIsReused:: Not Elapsed:: *ms -Info 52 [16:02:02.000] Different program with same set of files -Info 53 [16:02:03.000] request: +Info 47 [00:01:57.000] Plugins were requested but not running in environment that supports 'require'. Nothing will be loaded +Info 48 [00:01:58.000] Starting updateGraphWorker: Project: /user/username/projects/container/tsconfig.json +Info 49 [00:01:59.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/container/node_modules/@types 1 undefined Project: /user/username/projects/container/tsconfig.json WatchType: Type roots +Info 50 [00:02:00.000] 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 51 [00:02:01.000] Finishing updateGraphWorker: Project: /user/username/projects/container/tsconfig.json Version: 1 structureChanged: true structureIsReused:: Not Elapsed:: *ms +Info 52 [00:02:02.000] Different program with same set of files +Info 53 [00:02:03.000] request: { "command": "syntacticDiagnosticsSync", "arguments": { @@ -544,12 +544,12 @@ FsWatches:: FsWatchesRecursive:: -Info 54 [16:02:04.000] response: +Info 54 [00:02:04.000] response: { "response": [], "responseRequired": true } -Info 55 [16:02:05.000] request: +Info 55 [00:02:05.000] request: { "command": "semanticDiagnosticsSync", "arguments": { @@ -622,12 +622,12 @@ FsWatches:: FsWatchesRecursive:: -Info 56 [16:02:06.000] response: +Info 56 [00:02:06.000] response: { "response": [], "responseRequired": true } -Info 57 [16:02:07.000] request: +Info 57 [00:02:07.000] request: { "command": "syntacticDiagnosticsSync", "arguments": { @@ -701,12 +701,12 @@ FsWatches:: FsWatchesRecursive:: -Info 58 [16:02:08.000] response: +Info 58 [00:02:08.000] response: { "response": [], "responseRequired": true } -Info 59 [16:02:09.000] request: +Info 59 [00:02:09.000] request: { "command": "semanticDiagnosticsSync", "arguments": { @@ -780,12 +780,12 @@ FsWatches:: FsWatchesRecursive:: -Info 60 [16:02:10.000] response: +Info 60 [00:02:10.000] response: { "response": [], "responseRequired": true } -Info 61 [16:02:11.000] request: +Info 61 [00:02:11.000] request: { "command": "syntacticDiagnosticsSync", "arguments": { @@ -858,12 +858,12 @@ FsWatches:: FsWatchesRecursive:: -Info 62 [16:02:12.000] response: +Info 62 [00:02:12.000] response: { "response": [], "responseRequired": true } -Info 63 [16:02:13.000] request: +Info 63 [00:02:13.000] request: { "command": "semanticDiagnosticsSync", "arguments": { @@ -936,12 +936,12 @@ FsWatches:: FsWatchesRecursive:: -Info 64 [16:02:14.000] response: +Info 64 [00:02:14.000] response: { "response": [], "responseRequired": true } -Info 65 [16:02:15.000] request: +Info 65 [00:02:15.000] request: { "command": "syntacticDiagnosticsSync", "arguments": { @@ -1015,12 +1015,12 @@ FsWatches:: FsWatchesRecursive:: -Info 66 [16:02:16.000] response: +Info 66 [00:02:16.000] response: { "response": [], "responseRequired": true } -Info 67 [16:02:17.000] request: +Info 67 [00:02:17.000] request: { "command": "semanticDiagnosticsSync", "arguments": { @@ -1094,12 +1094,12 @@ FsWatches:: FsWatchesRecursive:: -Info 68 [16:02:18.000] response: +Info 68 [00:02:18.000] response: { "response": [], "responseRequired": true } -Info 69 [16:02:19.000] request: +Info 69 [00:02:19.000] request: { "command": "syntacticDiagnosticsSync", "arguments": { @@ -1172,12 +1172,12 @@ FsWatches:: FsWatchesRecursive:: -Info 70 [16:02:20.000] response: +Info 70 [00:02:20.000] response: { "response": [], "responseRequired": true } -Info 71 [16:02:21.000] request: +Info 71 [00:02:21.000] request: { "command": "semanticDiagnosticsSync", "arguments": { @@ -1250,12 +1250,12 @@ FsWatches:: FsWatchesRecursive:: -Info 72 [16:02:22.000] response: +Info 72 [00:02:22.000] response: { "response": [], "responseRequired": true } -Info 73 [16:02:23.000] request: +Info 73 [00:02:23.000] request: { "command": "syntacticDiagnosticsSync", "arguments": { @@ -1329,12 +1329,12 @@ FsWatches:: FsWatchesRecursive:: -Info 74 [16:02:24.000] response: +Info 74 [00:02:24.000] response: { "response": [], "responseRequired": true } -Info 75 [16:02:25.000] request: +Info 75 [00:02:25.000] request: { "command": "semanticDiagnosticsSync", "arguments": { @@ -1408,12 +1408,12 @@ FsWatches:: FsWatchesRecursive:: -Info 76 [16:02:26.000] response: +Info 76 [00:02:26.000] response: { "response": [], "responseRequired": true } -Info 77 [16:02:27.000] request: +Info 77 [00:02:27.000] request: { "command": "syntacticDiagnosticsSync", "arguments": { @@ -1486,12 +1486,12 @@ FsWatches:: FsWatchesRecursive:: -Info 78 [16:02:28.000] response: +Info 78 [00:02:28.000] response: { "response": [], "responseRequired": true } -Info 79 [16:02:29.000] request: +Info 79 [00:02:29.000] request: { "command": "semanticDiagnosticsSync", "arguments": { @@ -1564,12 +1564,12 @@ FsWatches:: FsWatchesRecursive:: -Info 80 [16:02:30.000] response: +Info 80 [00:02:30.000] response: { "response": [], "responseRequired": true } -Info 81 [16:02:31.000] request: +Info 81 [00:02:31.000] request: { "command": "syntacticDiagnosticsSync", "arguments": { @@ -1643,12 +1643,12 @@ FsWatches:: FsWatchesRecursive:: -Info 82 [16:02:32.000] response: +Info 82 [00:02:32.000] response: { "response": [], "responseRequired": true } -Info 83 [16:02:33.000] request: +Info 83 [00:02:33.000] request: { "command": "semanticDiagnosticsSync", "arguments": { @@ -1722,12 +1722,12 @@ FsWatches:: FsWatchesRecursive:: -Info 84 [16:02:34.000] response: +Info 84 [00:02:34.000] response: { "response": [], "responseRequired": true } -Info 85 [16:02:35.000] request: +Info 85 [00:02:35.000] request: { "command": "compilerOptionsDiagnostics-full", "arguments": { @@ -1800,7 +1800,7 @@ FsWatches:: FsWatchesRecursive:: -Info 86 [16:02:36.000] response: +Info 86 [00:02:36.000] response: { "response": [], "responseRequired": true 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 4eb1908c435c2..4d572a9d4bdf7 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 @@ -1,5 +1,5 @@ -Info 0 [16:00:29.000] Provided types map file "/a/lib/typesMap.json" doesn't exist -Info 1 [16:00:30.000] request: +Info 0 [00:00:29.000] Provided types map file "/a/lib/typesMap.json" doesn't exist +Info 1 [00:00:30.000] request: { "seq": 0, "type": "request", @@ -52,11 +52,11 @@ FsWatches:: FsWatchesRecursive:: -Info 2 [16:00:31.000] Search path: /user/username/projects/myproject/a -Info 3 [16:00:32.000] For info: /user/username/projects/myproject/a/index.ts :: Config file name: /user/username/projects/myproject/a/tsconfig.json -Info 4 [16:00:33.000] Creating configuration project /user/username/projects/myproject/a/tsconfig.json -Info 5 [16:00:34.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/a/tsconfig.json 2000 undefined Project: /user/username/projects/myproject/a/tsconfig.json WatchType: Config file -Info 6 [16:00:35.000] Config: /user/username/projects/myproject/a/tsconfig.json : { +Info 2 [00:00:31.000] Search path: /user/username/projects/myproject/a +Info 3 [00:00:32.000] For info: /user/username/projects/myproject/a/index.ts :: Config file name: /user/username/projects/myproject/a/tsconfig.json +Info 4 [00:00:33.000] Creating configuration project /user/username/projects/myproject/a/tsconfig.json +Info 5 [00:00:34.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/a/tsconfig.json 2000 undefined Project: /user/username/projects/myproject/a/tsconfig.json WatchType: Config file +Info 6 [00:00:35.000] Config: /user/username/projects/myproject/a/tsconfig.json : { "rootNames": [ "/user/username/projects/myproject/a/index.ts" ], @@ -73,11 +73,11 @@ Info 6 [16:00:35.000] Config: /user/username/projects/myproject/a/tsconfig.js } ] } -Info 7 [16:00:36.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/a 1 undefined Config: /user/username/projects/myproject/a/tsconfig.json WatchType: Wild card directory -Info 8 [16:00:37.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/a 1 undefined Config: /user/username/projects/myproject/a/tsconfig.json WatchType: Wild card directory -Info 9 [16:00:38.000] Plugins were requested but not running in environment that supports 'require'. Nothing will be loaded -Info 10 [16:00:39.000] Starting updateGraphWorker: Project: /user/username/projects/myproject/a/tsconfig.json -Info 11 [16:00:40.000] Config: /user/username/projects/myproject/b/tsconfig.json : { +Info 7 [00:00:36.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/a 1 undefined Config: /user/username/projects/myproject/a/tsconfig.json WatchType: Wild card directory +Info 8 [00:00:37.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/a 1 undefined Config: /user/username/projects/myproject/a/tsconfig.json WatchType: Wild card directory +Info 9 [00:00:38.000] Plugins were requested but not running in environment that supports 'require'. Nothing will be loaded +Info 10 [00:00:39.000] Starting updateGraphWorker: Project: /user/username/projects/myproject/a/tsconfig.json +Info 11 [00:00:40.000] Config: /user/username/projects/myproject/b/tsconfig.json : { "rootNames": [ "/user/username/projects/myproject/b/helper.ts", "/user/username/projects/myproject/b/index.ts" @@ -89,20 +89,20 @@ Info 11 [16:00:40.000] Config: /user/username/projects/myproject/b/tsconfig.js "configFilePath": "/user/username/projects/myproject/b/tsconfig.json" } } -Info 12 [16:00:41.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/b/tsconfig.json 2000 undefined Project: /user/username/projects/myproject/a/tsconfig.json WatchType: Config file -Info 13 [16:00:42.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/b 1 undefined Config: /user/username/projects/myproject/b/tsconfig.json WatchType: Wild card directory -Info 14 [16:00:43.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/b 1 undefined Config: /user/username/projects/myproject/b/tsconfig.json WatchType: Wild card directory -Info 15 [16:00:44.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/b 1 undefined Project: /user/username/projects/myproject/a/tsconfig.json WatchType: Failed Lookup Locations -Info 16 [16:00:45.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/b 1 undefined Project: /user/username/projects/myproject/a/tsconfig.json WatchType: Failed Lookup Locations -Info 17 [16:00:46.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/b/lib/index.d.ts 500 undefined WatchType: Closed Script info -Info 18 [16:00:47.000] FileWatcher:: Added:: WatchInfo: /a/lib/lib.d.ts 500 undefined Project: /user/username/projects/myproject/a/tsconfig.json WatchType: Missing file -Info 19 [16:00:48.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/a/node_modules/@types 1 undefined Project: /user/username/projects/myproject/a/tsconfig.json WatchType: Type roots -Info 20 [16:00:49.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/a/node_modules/@types 1 undefined Project: /user/username/projects/myproject/a/tsconfig.json WatchType: Type roots -Info 21 [16:00:50.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/a/tsconfig.json WatchType: Type roots -Info 22 [16:00:51.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/a/tsconfig.json WatchType: Type roots -Info 23 [16:00:52.000] Finishing updateGraphWorker: Project: /user/username/projects/myproject/a/tsconfig.json Version: 1 structureChanged: true structureIsReused:: Not Elapsed:: *ms -Info 24 [16:00:53.000] Project '/user/username/projects/myproject/a/tsconfig.json' (Configured) -Info 25 [16:00:54.000] Files (2) +Info 12 [00:00:41.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/b/tsconfig.json 2000 undefined Project: /user/username/projects/myproject/a/tsconfig.json WatchType: Config file +Info 13 [00:00:42.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/b 1 undefined Config: /user/username/projects/myproject/b/tsconfig.json WatchType: Wild card directory +Info 14 [00:00:43.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/b 1 undefined Config: /user/username/projects/myproject/b/tsconfig.json WatchType: Wild card directory +Info 15 [00:00:44.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/b 1 undefined Project: /user/username/projects/myproject/a/tsconfig.json WatchType: Failed Lookup Locations +Info 16 [00:00:45.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/b 1 undefined Project: /user/username/projects/myproject/a/tsconfig.json WatchType: Failed Lookup Locations +Info 17 [00:00:46.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/b/lib/index.d.ts 500 undefined WatchType: Closed Script info +Info 18 [00:00:47.000] FileWatcher:: Added:: WatchInfo: /a/lib/lib.d.ts 500 undefined Project: /user/username/projects/myproject/a/tsconfig.json WatchType: Missing file +Info 19 [00:00:48.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/a/node_modules/@types 1 undefined Project: /user/username/projects/myproject/a/tsconfig.json WatchType: Type roots +Info 20 [00:00:49.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/a/node_modules/@types 1 undefined Project: /user/username/projects/myproject/a/tsconfig.json WatchType: Type roots +Info 21 [00:00:50.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/a/tsconfig.json WatchType: Type roots +Info 22 [00:00:51.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/a/tsconfig.json WatchType: Type roots +Info 23 [00:00:52.000] Finishing updateGraphWorker: Project: /user/username/projects/myproject/a/tsconfig.json Version: 1 structureChanged: true structureIsReused:: Not Elapsed:: *ms +Info 24 [00:00:53.000] Project '/user/username/projects/myproject/a/tsconfig.json' (Configured) +Info 25 [00:00:54.000] Files (2) /user/username/projects/myproject/b/lib/index.d.ts /user/username/projects/myproject/a/index.ts @@ -112,16 +112,16 @@ Info 25 [16:00:54.000] Files (2) index.ts Matched by default include pattern '**/*' -Info 26 [16:00:55.000] ----------------------------------------------- -Info 27 [16:00:56.000] Search path: /user/username/projects/myproject/a -Info 28 [16:00:57.000] For info: /user/username/projects/myproject/a/tsconfig.json :: No config files found. -Info 29 [16:00:58.000] Project '/user/username/projects/myproject/a/tsconfig.json' (Configured) -Info 29 [16:00:59.000] Files (2) +Info 26 [00:00:55.000] ----------------------------------------------- +Info 27 [00:00:56.000] Search path: /user/username/projects/myproject/a +Info 28 [00:00:57.000] For info: /user/username/projects/myproject/a/tsconfig.json :: No config files found. +Info 29 [00:00:58.000] Project '/user/username/projects/myproject/a/tsconfig.json' (Configured) +Info 29 [00:00:59.000] Files (2) -Info 29 [16:01:00.000] ----------------------------------------------- -Info 29 [16:01:01.000] Open files: -Info 29 [16:01:02.000] FileName: /user/username/projects/myproject/a/index.ts ProjectRootPath: undefined -Info 29 [16:01:03.000] Projects: /user/username/projects/myproject/a/tsconfig.json +Info 29 [00:01:00.000] ----------------------------------------------- +Info 29 [00:01:01.000] Open files: +Info 29 [00:01:02.000] FileName: /user/username/projects/myproject/a/index.ts ProjectRootPath: undefined +Info 29 [00:01:03.000] Projects: /user/username/projects/myproject/a/tsconfig.json After request PolledWatches:: @@ -146,11 +146,11 @@ FsWatchesRecursive:: /user/username/projects/myproject/b: {} -Info 29 [16:01:04.000] response: +Info 29 [00:01:04.000] response: { "responseRequired": false } -Info 30 [16:01:05.000] request: +Info 30 [00:01:05.000] request: { "seq": 0, "type": "request", @@ -183,22 +183,22 @@ FsWatchesRecursive:: /user/username/projects/myproject/b: {} -Info 31 [16:01:06.000] Search path: /user/username/projects/myproject/b -Info 32 [16:01:07.000] For info: /user/username/projects/myproject/b/helper.ts :: Config file name: /user/username/projects/myproject/b/tsconfig.json -Info 33 [16:01:08.000] Creating configuration project /user/username/projects/myproject/b/tsconfig.json -Info 34 [16:01:09.000] Plugins were requested but not running in environment that supports 'require'. Nothing will be loaded -Info 35 [16:01:10.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/b/index.ts 500 undefined WatchType: Closed Script info -Info 36 [16:01:11.000] Starting updateGraphWorker: Project: /user/username/projects/myproject/b/tsconfig.json -Info 37 [16:01:12.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/b 0 undefined Project: /user/username/projects/myproject/b/tsconfig.json WatchType: Failed Lookup Locations -Info 38 [16:01:13.000] 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 39 [16:01:14.000] FileWatcher:: Added:: WatchInfo: /a/lib/lib.d.ts 500 undefined Project: /user/username/projects/myproject/b/tsconfig.json WatchType: Missing file -Info 40 [16:01:15.000] 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 41 [16:01:16.000] 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 42 [16:01:17.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/b/tsconfig.json WatchType: Type roots -Info 43 [16:01:18.000] 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 44 [16:01:19.000] Finishing updateGraphWorker: Project: /user/username/projects/myproject/b/tsconfig.json Version: 1 structureChanged: true structureIsReused:: Not Elapsed:: *ms -Info 45 [16:01:20.000] Project '/user/username/projects/myproject/b/tsconfig.json' (Configured) -Info 46 [16:01:21.000] Files (2) +Info 31 [00:01:06.000] Search path: /user/username/projects/myproject/b +Info 32 [00:01:07.000] For info: /user/username/projects/myproject/b/helper.ts :: Config file name: /user/username/projects/myproject/b/tsconfig.json +Info 33 [00:01:08.000] Creating configuration project /user/username/projects/myproject/b/tsconfig.json +Info 34 [00:01:09.000] Plugins were requested but not running in environment that supports 'require'. Nothing will be loaded +Info 35 [00:01:10.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/b/index.ts 500 undefined WatchType: Closed Script info +Info 36 [00:01:11.000] Starting updateGraphWorker: Project: /user/username/projects/myproject/b/tsconfig.json +Info 37 [00:01:12.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/b 0 undefined Project: /user/username/projects/myproject/b/tsconfig.json WatchType: Failed Lookup Locations +Info 38 [00:01:13.000] 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 39 [00:01:14.000] FileWatcher:: Added:: WatchInfo: /a/lib/lib.d.ts 500 undefined Project: /user/username/projects/myproject/b/tsconfig.json WatchType: Missing file +Info 40 [00:01:15.000] 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 41 [00:01:16.000] 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 42 [00:01:17.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/b/tsconfig.json WatchType: Type roots +Info 43 [00:01:18.000] 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 44 [00:01:19.000] Finishing updateGraphWorker: Project: /user/username/projects/myproject/b/tsconfig.json Version: 1 structureChanged: true structureIsReused:: Not Elapsed:: *ms +Info 45 [00:01:20.000] Project '/user/username/projects/myproject/b/tsconfig.json' (Configured) +Info 46 [00:01:21.000] Files (2) /user/username/projects/myproject/b/index.ts /user/username/projects/myproject/b/helper.ts @@ -209,22 +209,22 @@ Info 46 [16:01:21.000] Files (2) helper.ts Matched by default include pattern '**/*' -Info 47 [16:01:22.000] ----------------------------------------------- -Info 48 [16:01:23.000] Search path: /user/username/projects/myproject/b -Info 49 [16:01:24.000] For info: /user/username/projects/myproject/b/tsconfig.json :: No config files found. -Info 50 [16:01:25.000] Project '/user/username/projects/myproject/a/tsconfig.json' (Configured) -Info 50 [16:01:26.000] Files (2) - -Info 50 [16:01:27.000] ----------------------------------------------- -Info 50 [16:01:28.000] Project '/user/username/projects/myproject/b/tsconfig.json' (Configured) -Info 50 [16:01:29.000] Files (2) - -Info 50 [16:01:30.000] ----------------------------------------------- -Info 50 [16:01:31.000] Open files: -Info 50 [16:01:32.000] FileName: /user/username/projects/myproject/a/index.ts ProjectRootPath: undefined -Info 50 [16:01:33.000] Projects: /user/username/projects/myproject/a/tsconfig.json -Info 50 [16:01:34.000] FileName: /user/username/projects/myproject/b/helper.ts ProjectRootPath: undefined -Info 50 [16:01:35.000] Projects: /user/username/projects/myproject/b/tsconfig.json +Info 47 [00:01:22.000] ----------------------------------------------- +Info 48 [00:01:23.000] Search path: /user/username/projects/myproject/b +Info 49 [00:01:24.000] For info: /user/username/projects/myproject/b/tsconfig.json :: No config files found. +Info 50 [00:01:25.000] Project '/user/username/projects/myproject/a/tsconfig.json' (Configured) +Info 50 [00:01:26.000] Files (2) + +Info 50 [00:01:27.000] ----------------------------------------------- +Info 50 [00:01:28.000] Project '/user/username/projects/myproject/b/tsconfig.json' (Configured) +Info 50 [00:01:29.000] Files (2) + +Info 50 [00:01:30.000] ----------------------------------------------- +Info 50 [00:01:31.000] Open files: +Info 50 [00:01:32.000] FileName: /user/username/projects/myproject/a/index.ts ProjectRootPath: undefined +Info 50 [00:01:33.000] Projects: /user/username/projects/myproject/a/tsconfig.json +Info 50 [00:01:34.000] FileName: /user/username/projects/myproject/b/helper.ts ProjectRootPath: undefined +Info 50 [00:01:35.000] Projects: /user/username/projects/myproject/b/tsconfig.json After request PolledWatches:: @@ -255,11 +255,11 @@ FsWatchesRecursive:: /user/username/projects/myproject/b: {} -Info 50 [16:01:36.000] response: +Info 50 [00:01:36.000] response: { "responseRequired": false } -Info 51 [16:01:37.000] request: +Info 51 [00:01:37.000] request: { "command": "references", "arguments": { @@ -300,8 +300,8 @@ FsWatchesRecursive:: /user/username/projects/myproject/b: {} -Info 52 [16:01:38.000] Finding references to /user/username/projects/myproject/a/index.ts position 40 in project /user/username/projects/myproject/a/tsconfig.json -Info 53 [16:01:39.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/b/lib/index.d.ts.map 2000 undefined WatchType: Missing source map file +Info 52 [00:01:38.000] Finding references to /user/username/projects/myproject/a/index.ts position 40 in project /user/username/projects/myproject/a/tsconfig.json +Info 53 [00:01:39.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/b/lib/index.d.ts.map 2000 undefined WatchType: Missing source map file After request PolledWatches:: @@ -334,7 +334,7 @@ FsWatchesRecursive:: /user/username/projects/myproject/b: {} -Info 54 [16:01:40.000] response: +Info 54 [00:01:40.000] response: { "response": { "refs": [ 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 9a3f1a301da80..39493c661c408 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 @@ -1,5 +1,5 @@ -Info 0 [16:00:31.000] Provided types map file "/a/lib/typesMap.json" doesn't exist -Info 1 [16:00:32.000] request: +Info 0 [00:00:31.000] Provided types map file "/a/lib/typesMap.json" doesn't exist +Info 1 [00:00:32.000] request: { "seq": 0, "type": "request", @@ -55,11 +55,11 @@ FsWatches:: FsWatchesRecursive:: -Info 2 [16:00:33.000] Search path: /user/username/projects/myproject/a -Info 3 [16:00:34.000] For info: /user/username/projects/myproject/a/index.ts :: Config file name: /user/username/projects/myproject/a/tsconfig.json -Info 4 [16:00:35.000] Creating configuration project /user/username/projects/myproject/a/tsconfig.json -Info 5 [16:00:36.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/a/tsconfig.json 2000 undefined Project: /user/username/projects/myproject/a/tsconfig.json WatchType: Config file -Info 6 [16:00:37.000] Config: /user/username/projects/myproject/a/tsconfig.json : { +Info 2 [00:00:33.000] Search path: /user/username/projects/myproject/a +Info 3 [00:00:34.000] For info: /user/username/projects/myproject/a/index.ts :: Config file name: /user/username/projects/myproject/a/tsconfig.json +Info 4 [00:00:35.000] Creating configuration project /user/username/projects/myproject/a/tsconfig.json +Info 5 [00:00:36.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/a/tsconfig.json 2000 undefined Project: /user/username/projects/myproject/a/tsconfig.json WatchType: Config file +Info 6 [00:00:37.000] Config: /user/username/projects/myproject/a/tsconfig.json : { "rootNames": [ "/user/username/projects/myproject/a/index.ts" ], @@ -76,11 +76,11 @@ Info 6 [16:00:37.000] Config: /user/username/projects/myproject/a/tsconfig.js } ] } -Info 7 [16:00:38.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/a 1 undefined Config: /user/username/projects/myproject/a/tsconfig.json WatchType: Wild card directory -Info 8 [16:00:39.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/a 1 undefined Config: /user/username/projects/myproject/a/tsconfig.json WatchType: Wild card directory -Info 9 [16:00:40.000] Plugins were requested but not running in environment that supports 'require'. Nothing will be loaded -Info 10 [16:00:41.000] Starting updateGraphWorker: Project: /user/username/projects/myproject/a/tsconfig.json -Info 11 [16:00:42.000] Config: /user/username/projects/myproject/b/tsconfig.json : { +Info 7 [00:00:38.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/a 1 undefined Config: /user/username/projects/myproject/a/tsconfig.json WatchType: Wild card directory +Info 8 [00:00:39.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/a 1 undefined Config: /user/username/projects/myproject/a/tsconfig.json WatchType: Wild card directory +Info 9 [00:00:40.000] Plugins were requested but not running in environment that supports 'require'. Nothing will be loaded +Info 10 [00:00:41.000] Starting updateGraphWorker: Project: /user/username/projects/myproject/a/tsconfig.json +Info 11 [00:00:42.000] Config: /user/username/projects/myproject/b/tsconfig.json : { "rootNames": [ "/user/username/projects/myproject/b/helper.ts", "/user/username/projects/myproject/b/index.ts" @@ -92,20 +92,20 @@ Info 11 [16:00:42.000] Config: /user/username/projects/myproject/b/tsconfig.js "configFilePath": "/user/username/projects/myproject/b/tsconfig.json" } } -Info 12 [16:00:43.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/b/tsconfig.json 2000 undefined Project: /user/username/projects/myproject/a/tsconfig.json WatchType: Config file -Info 13 [16:00:44.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/b 1 undefined Config: /user/username/projects/myproject/b/tsconfig.json WatchType: Wild card directory -Info 14 [16:00:45.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/b 1 undefined Config: /user/username/projects/myproject/b/tsconfig.json WatchType: Wild card directory -Info 15 [16:00:46.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/b 1 undefined Project: /user/username/projects/myproject/a/tsconfig.json WatchType: Failed Lookup Locations -Info 16 [16:00:47.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/b 1 undefined Project: /user/username/projects/myproject/a/tsconfig.json WatchType: Failed Lookup Locations -Info 17 [16:00:48.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/b/lib/index.d.ts 500 undefined WatchType: Closed Script info -Info 18 [16:00:49.000] FileWatcher:: Added:: WatchInfo: /a/lib/lib.d.ts 500 undefined Project: /user/username/projects/myproject/a/tsconfig.json WatchType: Missing file -Info 19 [16:00:50.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/a/node_modules/@types 1 undefined Project: /user/username/projects/myproject/a/tsconfig.json WatchType: Type roots -Info 20 [16:00:51.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/a/node_modules/@types 1 undefined Project: /user/username/projects/myproject/a/tsconfig.json WatchType: Type roots -Info 21 [16:00:52.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/a/tsconfig.json WatchType: Type roots -Info 22 [16:00:53.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/a/tsconfig.json WatchType: Type roots -Info 23 [16:00:54.000] Finishing updateGraphWorker: Project: /user/username/projects/myproject/a/tsconfig.json Version: 1 structureChanged: true structureIsReused:: Not Elapsed:: *ms -Info 24 [16:00:55.000] Project '/user/username/projects/myproject/a/tsconfig.json' (Configured) -Info 25 [16:00:56.000] Files (2) +Info 12 [00:00:43.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/b/tsconfig.json 2000 undefined Project: /user/username/projects/myproject/a/tsconfig.json WatchType: Config file +Info 13 [00:00:44.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/b 1 undefined Config: /user/username/projects/myproject/b/tsconfig.json WatchType: Wild card directory +Info 14 [00:00:45.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/b 1 undefined Config: /user/username/projects/myproject/b/tsconfig.json WatchType: Wild card directory +Info 15 [00:00:46.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/b 1 undefined Project: /user/username/projects/myproject/a/tsconfig.json WatchType: Failed Lookup Locations +Info 16 [00:00:47.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/b 1 undefined Project: /user/username/projects/myproject/a/tsconfig.json WatchType: Failed Lookup Locations +Info 17 [00:00:48.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/b/lib/index.d.ts 500 undefined WatchType: Closed Script info +Info 18 [00:00:49.000] FileWatcher:: Added:: WatchInfo: /a/lib/lib.d.ts 500 undefined Project: /user/username/projects/myproject/a/tsconfig.json WatchType: Missing file +Info 19 [00:00:50.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/a/node_modules/@types 1 undefined Project: /user/username/projects/myproject/a/tsconfig.json WatchType: Type roots +Info 20 [00:00:51.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/a/node_modules/@types 1 undefined Project: /user/username/projects/myproject/a/tsconfig.json WatchType: Type roots +Info 21 [00:00:52.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/a/tsconfig.json WatchType: Type roots +Info 22 [00:00:53.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/a/tsconfig.json WatchType: Type roots +Info 23 [00:00:54.000] Finishing updateGraphWorker: Project: /user/username/projects/myproject/a/tsconfig.json Version: 1 structureChanged: true structureIsReused:: Not Elapsed:: *ms +Info 24 [00:00:55.000] Project '/user/username/projects/myproject/a/tsconfig.json' (Configured) +Info 25 [00:00:56.000] Files (2) /user/username/projects/myproject/b/lib/index.d.ts /user/username/projects/myproject/a/index.ts @@ -115,16 +115,16 @@ Info 25 [16:00:56.000] Files (2) index.ts Matched by default include pattern '**/*' -Info 26 [16:00:57.000] ----------------------------------------------- -Info 27 [16:00:58.000] Search path: /user/username/projects/myproject/a -Info 28 [16:00:59.000] For info: /user/username/projects/myproject/a/tsconfig.json :: No config files found. -Info 29 [16:01:00.000] Project '/user/username/projects/myproject/a/tsconfig.json' (Configured) -Info 29 [16:01:01.000] Files (2) +Info 26 [00:00:57.000] ----------------------------------------------- +Info 27 [00:00:58.000] Search path: /user/username/projects/myproject/a +Info 28 [00:00:59.000] For info: /user/username/projects/myproject/a/tsconfig.json :: No config files found. +Info 29 [00:01:00.000] Project '/user/username/projects/myproject/a/tsconfig.json' (Configured) +Info 29 [00:01:01.000] Files (2) -Info 29 [16:01:02.000] ----------------------------------------------- -Info 29 [16:01:03.000] Open files: -Info 29 [16:01:04.000] FileName: /user/username/projects/myproject/a/index.ts ProjectRootPath: undefined -Info 29 [16:01:05.000] Projects: /user/username/projects/myproject/a/tsconfig.json +Info 29 [00:01:02.000] ----------------------------------------------- +Info 29 [00:01:03.000] Open files: +Info 29 [00:01:04.000] FileName: /user/username/projects/myproject/a/index.ts ProjectRootPath: undefined +Info 29 [00:01:05.000] Projects: /user/username/projects/myproject/a/tsconfig.json After request PolledWatches:: @@ -149,11 +149,11 @@ FsWatchesRecursive:: /user/username/projects/myproject/b: {} -Info 29 [16:01:06.000] response: +Info 29 [00:01:06.000] response: { "responseRequired": false } -Info 30 [16:01:07.000] request: +Info 30 [00:01:07.000] request: { "seq": 0, "type": "request", @@ -186,22 +186,22 @@ FsWatchesRecursive:: /user/username/projects/myproject/b: {} -Info 31 [16:01:08.000] Search path: /user/username/projects/myproject/b -Info 32 [16:01:09.000] For info: /user/username/projects/myproject/b/helper.ts :: Config file name: /user/username/projects/myproject/b/tsconfig.json -Info 33 [16:01:10.000] Creating configuration project /user/username/projects/myproject/b/tsconfig.json -Info 34 [16:01:11.000] Plugins were requested but not running in environment that supports 'require'. Nothing will be loaded -Info 35 [16:01:12.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/b/index.ts 500 undefined WatchType: Closed Script info -Info 36 [16:01:13.000] Starting updateGraphWorker: Project: /user/username/projects/myproject/b/tsconfig.json -Info 37 [16:01:14.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/b 0 undefined Project: /user/username/projects/myproject/b/tsconfig.json WatchType: Failed Lookup Locations -Info 38 [16:01:15.000] 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 39 [16:01:16.000] FileWatcher:: Added:: WatchInfo: /a/lib/lib.d.ts 500 undefined Project: /user/username/projects/myproject/b/tsconfig.json WatchType: Missing file -Info 40 [16:01:17.000] 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 41 [16:01:18.000] 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 42 [16:01:19.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/b/tsconfig.json WatchType: Type roots -Info 43 [16:01:20.000] 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 44 [16:01:21.000] Finishing updateGraphWorker: Project: /user/username/projects/myproject/b/tsconfig.json Version: 1 structureChanged: true structureIsReused:: Not Elapsed:: *ms -Info 45 [16:01:22.000] Project '/user/username/projects/myproject/b/tsconfig.json' (Configured) -Info 46 [16:01:23.000] Files (2) +Info 31 [00:01:08.000] Search path: /user/username/projects/myproject/b +Info 32 [00:01:09.000] For info: /user/username/projects/myproject/b/helper.ts :: Config file name: /user/username/projects/myproject/b/tsconfig.json +Info 33 [00:01:10.000] Creating configuration project /user/username/projects/myproject/b/tsconfig.json +Info 34 [00:01:11.000] Plugins were requested but not running in environment that supports 'require'. Nothing will be loaded +Info 35 [00:01:12.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/b/index.ts 500 undefined WatchType: Closed Script info +Info 36 [00:01:13.000] Starting updateGraphWorker: Project: /user/username/projects/myproject/b/tsconfig.json +Info 37 [00:01:14.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/b 0 undefined Project: /user/username/projects/myproject/b/tsconfig.json WatchType: Failed Lookup Locations +Info 38 [00:01:15.000] 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 39 [00:01:16.000] FileWatcher:: Added:: WatchInfo: /a/lib/lib.d.ts 500 undefined Project: /user/username/projects/myproject/b/tsconfig.json WatchType: Missing file +Info 40 [00:01:17.000] 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 41 [00:01:18.000] 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 42 [00:01:19.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/b/tsconfig.json WatchType: Type roots +Info 43 [00:01:20.000] 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 44 [00:01:21.000] Finishing updateGraphWorker: Project: /user/username/projects/myproject/b/tsconfig.json Version: 1 structureChanged: true structureIsReused:: Not Elapsed:: *ms +Info 45 [00:01:22.000] Project '/user/username/projects/myproject/b/tsconfig.json' (Configured) +Info 46 [00:01:23.000] Files (2) /user/username/projects/myproject/b/index.ts /user/username/projects/myproject/b/helper.ts @@ -212,22 +212,22 @@ Info 46 [16:01:23.000] Files (2) helper.ts Matched by default include pattern '**/*' -Info 47 [16:01:24.000] ----------------------------------------------- -Info 48 [16:01:25.000] Search path: /user/username/projects/myproject/b -Info 49 [16:01:26.000] For info: /user/username/projects/myproject/b/tsconfig.json :: No config files found. -Info 50 [16:01:27.000] Project '/user/username/projects/myproject/a/tsconfig.json' (Configured) -Info 50 [16:01:28.000] Files (2) - -Info 50 [16:01:29.000] ----------------------------------------------- -Info 50 [16:01:30.000] Project '/user/username/projects/myproject/b/tsconfig.json' (Configured) -Info 50 [16:01:31.000] Files (2) - -Info 50 [16:01:32.000] ----------------------------------------------- -Info 50 [16:01:33.000] Open files: -Info 50 [16:01:34.000] FileName: /user/username/projects/myproject/a/index.ts ProjectRootPath: undefined -Info 50 [16:01:35.000] Projects: /user/username/projects/myproject/a/tsconfig.json -Info 50 [16:01:36.000] FileName: /user/username/projects/myproject/b/helper.ts ProjectRootPath: undefined -Info 50 [16:01:37.000] Projects: /user/username/projects/myproject/b/tsconfig.json +Info 47 [00:01:24.000] ----------------------------------------------- +Info 48 [00:01:25.000] Search path: /user/username/projects/myproject/b +Info 49 [00:01:26.000] For info: /user/username/projects/myproject/b/tsconfig.json :: No config files found. +Info 50 [00:01:27.000] Project '/user/username/projects/myproject/a/tsconfig.json' (Configured) +Info 50 [00:01:28.000] Files (2) + +Info 50 [00:01:29.000] ----------------------------------------------- +Info 50 [00:01:30.000] Project '/user/username/projects/myproject/b/tsconfig.json' (Configured) +Info 50 [00:01:31.000] Files (2) + +Info 50 [00:01:32.000] ----------------------------------------------- +Info 50 [00:01:33.000] Open files: +Info 50 [00:01:34.000] FileName: /user/username/projects/myproject/a/index.ts ProjectRootPath: undefined +Info 50 [00:01:35.000] Projects: /user/username/projects/myproject/a/tsconfig.json +Info 50 [00:01:36.000] FileName: /user/username/projects/myproject/b/helper.ts ProjectRootPath: undefined +Info 50 [00:01:37.000] Projects: /user/username/projects/myproject/b/tsconfig.json After request PolledWatches:: @@ -258,11 +258,11 @@ FsWatchesRecursive:: /user/username/projects/myproject/b: {} -Info 50 [16:01:38.000] response: +Info 50 [00:01:38.000] response: { "responseRequired": false } -Info 51 [16:01:39.000] request: +Info 51 [00:01:39.000] request: { "command": "references", "arguments": { @@ -303,13 +303,13 @@ FsWatchesRecursive:: /user/username/projects/myproject/b: {} -Info 52 [16:01:40.000] Finding references to /user/username/projects/myproject/a/index.ts position 40 in project /user/username/projects/myproject/a/tsconfig.json -Info 53 [16:01:41.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/b/lib/index.d.ts.map 500 undefined WatchType: Closed Script info -Info 54 [16:01:42.000] Search path: /user/username/projects/myproject/b -Info 55 [16:01:43.000] For info: /user/username/projects/myproject/b/index.ts :: Config file name: /user/username/projects/myproject/b/tsconfig.json -Info 56 [16:01:44.000] Search path: /user/username/projects/myproject/b -Info 57 [16:01:45.000] For info: /user/username/projects/myproject/b/index.ts :: Config file name: /user/username/projects/myproject/b/tsconfig.json -Info 58 [16:01:46.000] Finding references to /user/username/projects/myproject/b/index.ts position 13 in project /user/username/projects/myproject/b/tsconfig.json +Info 52 [00:01:40.000] Finding references to /user/username/projects/myproject/a/index.ts position 40 in project /user/username/projects/myproject/a/tsconfig.json +Info 53 [00:01:41.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/b/lib/index.d.ts.map 500 undefined WatchType: Closed Script info +Info 54 [00:01:42.000] Search path: /user/username/projects/myproject/b +Info 55 [00:01:43.000] For info: /user/username/projects/myproject/b/index.ts :: Config file name: /user/username/projects/myproject/b/tsconfig.json +Info 56 [00:01:44.000] Search path: /user/username/projects/myproject/b +Info 57 [00:01:45.000] For info: /user/username/projects/myproject/b/index.ts :: Config file name: /user/username/projects/myproject/b/tsconfig.json +Info 58 [00:01:46.000] Finding references to /user/username/projects/myproject/b/index.ts position 13 in project /user/username/projects/myproject/b/tsconfig.json After request PolledWatches:: @@ -342,7 +342,7 @@ FsWatchesRecursive:: /user/username/projects/myproject/b: {} -Info 59 [16:01:47.000] response: +Info 59 [00:01:47.000] response: { "response": { "refs": [ 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 a575c23974be9..bef09307e4905 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 @@ -1,5 +1,5 @@ -Info 0 [16:00:29.000] Provided types map file "/a/lib/typesMap.json" doesn't exist -Info 1 [16:00:30.000] request: +Info 0 [00:00:29.000] Provided types map file "/a/lib/typesMap.json" doesn't exist +Info 1 [00:00:30.000] request: { "seq": 0, "type": "request", @@ -52,11 +52,11 @@ FsWatches:: FsWatchesRecursive:: -Info 2 [16:00:31.000] Search path: /user/username/projects/myproject/a -Info 3 [16:00:32.000] For info: /user/username/projects/myproject/a/index.ts :: Config file name: /user/username/projects/myproject/a/tsconfig.json -Info 4 [16:00:33.000] Creating configuration project /user/username/projects/myproject/a/tsconfig.json -Info 5 [16:00:34.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/a/tsconfig.json 2000 undefined Project: /user/username/projects/myproject/a/tsconfig.json WatchType: Config file -Info 6 [16:00:35.000] Config: /user/username/projects/myproject/a/tsconfig.json : { +Info 2 [00:00:31.000] Search path: /user/username/projects/myproject/a +Info 3 [00:00:32.000] For info: /user/username/projects/myproject/a/index.ts :: Config file name: /user/username/projects/myproject/a/tsconfig.json +Info 4 [00:00:33.000] Creating configuration project /user/username/projects/myproject/a/tsconfig.json +Info 5 [00:00:34.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/a/tsconfig.json 2000 undefined Project: /user/username/projects/myproject/a/tsconfig.json WatchType: Config file +Info 6 [00:00:35.000] Config: /user/username/projects/myproject/a/tsconfig.json : { "rootNames": [ "/user/username/projects/myproject/a/index.ts" ], @@ -73,11 +73,11 @@ Info 6 [16:00:35.000] Config: /user/username/projects/myproject/a/tsconfig.js } ] } -Info 7 [16:00:36.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/a 1 undefined Config: /user/username/projects/myproject/a/tsconfig.json WatchType: Wild card directory -Info 8 [16:00:37.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/a 1 undefined Config: /user/username/projects/myproject/a/tsconfig.json WatchType: Wild card directory -Info 9 [16:00:38.000] Plugins were requested but not running in environment that supports 'require'. Nothing will be loaded -Info 10 [16:00:39.000] Starting updateGraphWorker: Project: /user/username/projects/myproject/a/tsconfig.json -Info 11 [16:00:40.000] Config: /user/username/projects/myproject/b/tsconfig.json : { +Info 7 [00:00:36.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/a 1 undefined Config: /user/username/projects/myproject/a/tsconfig.json WatchType: Wild card directory +Info 8 [00:00:37.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/a 1 undefined Config: /user/username/projects/myproject/a/tsconfig.json WatchType: Wild card directory +Info 9 [00:00:38.000] Plugins were requested but not running in environment that supports 'require'. Nothing will be loaded +Info 10 [00:00:39.000] Starting updateGraphWorker: Project: /user/username/projects/myproject/a/tsconfig.json +Info 11 [00:00:40.000] Config: /user/username/projects/myproject/b/tsconfig.json : { "rootNames": [ "/user/username/projects/myproject/b/helper.ts", "/user/username/projects/myproject/b/index.ts" @@ -89,20 +89,20 @@ Info 11 [16:00:40.000] Config: /user/username/projects/myproject/b/tsconfig.js "configFilePath": "/user/username/projects/myproject/b/tsconfig.json" } } -Info 12 [16:00:41.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/b/tsconfig.json 2000 undefined Project: /user/username/projects/myproject/a/tsconfig.json WatchType: Config file -Info 13 [16:00:42.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/b 1 undefined Config: /user/username/projects/myproject/b/tsconfig.json WatchType: Wild card directory -Info 14 [16:00:43.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/b 1 undefined Config: /user/username/projects/myproject/b/tsconfig.json WatchType: Wild card directory -Info 15 [16:00:44.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/b 1 undefined Project: /user/username/projects/myproject/a/tsconfig.json WatchType: Failed Lookup Locations -Info 16 [16:00:45.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/b 1 undefined Project: /user/username/projects/myproject/a/tsconfig.json WatchType: Failed Lookup Locations -Info 17 [16:00:46.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/b/index.ts 500 undefined WatchType: Closed Script info -Info 18 [16:00:47.000] FileWatcher:: Added:: WatchInfo: /a/lib/lib.d.ts 500 undefined Project: /user/username/projects/myproject/a/tsconfig.json WatchType: Missing file -Info 19 [16:00:48.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/a/node_modules/@types 1 undefined Project: /user/username/projects/myproject/a/tsconfig.json WatchType: Type roots -Info 20 [16:00:49.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/a/node_modules/@types 1 undefined Project: /user/username/projects/myproject/a/tsconfig.json WatchType: Type roots -Info 21 [16:00:50.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/a/tsconfig.json WatchType: Type roots -Info 22 [16:00:51.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/a/tsconfig.json WatchType: Type roots -Info 23 [16:00:52.000] Finishing updateGraphWorker: Project: /user/username/projects/myproject/a/tsconfig.json Version: 1 structureChanged: true structureIsReused:: Not Elapsed:: *ms -Info 24 [16:00:53.000] Project '/user/username/projects/myproject/a/tsconfig.json' (Configured) -Info 25 [16:00:54.000] Files (2) +Info 12 [00:00:41.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/b/tsconfig.json 2000 undefined Project: /user/username/projects/myproject/a/tsconfig.json WatchType: Config file +Info 13 [00:00:42.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/b 1 undefined Config: /user/username/projects/myproject/b/tsconfig.json WatchType: Wild card directory +Info 14 [00:00:43.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/b 1 undefined Config: /user/username/projects/myproject/b/tsconfig.json WatchType: Wild card directory +Info 15 [00:00:44.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/b 1 undefined Project: /user/username/projects/myproject/a/tsconfig.json WatchType: Failed Lookup Locations +Info 16 [00:00:45.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/b 1 undefined Project: /user/username/projects/myproject/a/tsconfig.json WatchType: Failed Lookup Locations +Info 17 [00:00:46.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/b/index.ts 500 undefined WatchType: Closed Script info +Info 18 [00:00:47.000] FileWatcher:: Added:: WatchInfo: /a/lib/lib.d.ts 500 undefined Project: /user/username/projects/myproject/a/tsconfig.json WatchType: Missing file +Info 19 [00:00:48.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/a/node_modules/@types 1 undefined Project: /user/username/projects/myproject/a/tsconfig.json WatchType: Type roots +Info 20 [00:00:49.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/a/node_modules/@types 1 undefined Project: /user/username/projects/myproject/a/tsconfig.json WatchType: Type roots +Info 21 [00:00:50.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/a/tsconfig.json WatchType: Type roots +Info 22 [00:00:51.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/a/tsconfig.json WatchType: Type roots +Info 23 [00:00:52.000] Finishing updateGraphWorker: Project: /user/username/projects/myproject/a/tsconfig.json Version: 1 structureChanged: true structureIsReused:: Not Elapsed:: *ms +Info 24 [00:00:53.000] Project '/user/username/projects/myproject/a/tsconfig.json' (Configured) +Info 25 [00:00:54.000] Files (2) /user/username/projects/myproject/b/index.ts /user/username/projects/myproject/a/index.ts @@ -112,16 +112,16 @@ Info 25 [16:00:54.000] Files (2) index.ts Matched by default include pattern '**/*' -Info 26 [16:00:55.000] ----------------------------------------------- -Info 27 [16:00:56.000] Search path: /user/username/projects/myproject/a -Info 28 [16:00:57.000] For info: /user/username/projects/myproject/a/tsconfig.json :: No config files found. -Info 29 [16:00:58.000] Project '/user/username/projects/myproject/a/tsconfig.json' (Configured) -Info 29 [16:00:59.000] Files (2) +Info 26 [00:00:55.000] ----------------------------------------------- +Info 27 [00:00:56.000] Search path: /user/username/projects/myproject/a +Info 28 [00:00:57.000] For info: /user/username/projects/myproject/a/tsconfig.json :: No config files found. +Info 29 [00:00:58.000] Project '/user/username/projects/myproject/a/tsconfig.json' (Configured) +Info 29 [00:00:59.000] Files (2) -Info 29 [16:01:00.000] ----------------------------------------------- -Info 29 [16:01:01.000] Open files: -Info 29 [16:01:02.000] FileName: /user/username/projects/myproject/a/index.ts ProjectRootPath: undefined -Info 29 [16:01:03.000] Projects: /user/username/projects/myproject/a/tsconfig.json +Info 29 [00:01:00.000] ----------------------------------------------- +Info 29 [00:01:01.000] Open files: +Info 29 [00:01:02.000] FileName: /user/username/projects/myproject/a/index.ts ProjectRootPath: undefined +Info 29 [00:01:03.000] Projects: /user/username/projects/myproject/a/tsconfig.json After request PolledWatches:: @@ -146,11 +146,11 @@ FsWatchesRecursive:: /user/username/projects/myproject/b: {} -Info 29 [16:01:04.000] response: +Info 29 [00:01:04.000] response: { "responseRequired": false } -Info 30 [16:01:05.000] request: +Info 30 [00:01:05.000] request: { "seq": 0, "type": "request", @@ -183,21 +183,21 @@ FsWatchesRecursive:: /user/username/projects/myproject/b: {} -Info 31 [16:01:06.000] Search path: /user/username/projects/myproject/b -Info 32 [16:01:07.000] For info: /user/username/projects/myproject/b/helper.ts :: Config file name: /user/username/projects/myproject/b/tsconfig.json -Info 33 [16:01:08.000] Creating configuration project /user/username/projects/myproject/b/tsconfig.json -Info 34 [16:01:09.000] Plugins were requested but not running in environment that supports 'require'. Nothing will be loaded -Info 35 [16:01:10.000] Starting updateGraphWorker: Project: /user/username/projects/myproject/b/tsconfig.json -Info 36 [16:01:11.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/b 0 undefined Project: /user/username/projects/myproject/b/tsconfig.json WatchType: Failed Lookup Locations -Info 37 [16:01:12.000] 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 38 [16:01:13.000] FileWatcher:: Added:: WatchInfo: /a/lib/lib.d.ts 500 undefined Project: /user/username/projects/myproject/b/tsconfig.json WatchType: Missing file -Info 39 [16:01:14.000] 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 40 [16:01:15.000] 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 41 [16:01:16.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/b/tsconfig.json WatchType: Type roots -Info 42 [16:01:17.000] 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 43 [16:01:18.000] Finishing updateGraphWorker: Project: /user/username/projects/myproject/b/tsconfig.json Version: 1 structureChanged: true structureIsReused:: Not Elapsed:: *ms -Info 44 [16:01:19.000] Project '/user/username/projects/myproject/b/tsconfig.json' (Configured) -Info 45 [16:01:20.000] Files (2) +Info 31 [00:01:06.000] Search path: /user/username/projects/myproject/b +Info 32 [00:01:07.000] For info: /user/username/projects/myproject/b/helper.ts :: Config file name: /user/username/projects/myproject/b/tsconfig.json +Info 33 [00:01:08.000] Creating configuration project /user/username/projects/myproject/b/tsconfig.json +Info 34 [00:01:09.000] Plugins were requested but not running in environment that supports 'require'. Nothing will be loaded +Info 35 [00:01:10.000] Starting updateGraphWorker: Project: /user/username/projects/myproject/b/tsconfig.json +Info 36 [00:01:11.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/b 0 undefined Project: /user/username/projects/myproject/b/tsconfig.json WatchType: Failed Lookup Locations +Info 37 [00:01:12.000] 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 38 [00:01:13.000] FileWatcher:: Added:: WatchInfo: /a/lib/lib.d.ts 500 undefined Project: /user/username/projects/myproject/b/tsconfig.json WatchType: Missing file +Info 39 [00:01:14.000] 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 40 [00:01:15.000] 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 41 [00:01:16.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/b/tsconfig.json WatchType: Type roots +Info 42 [00:01:17.000] 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 43 [00:01:18.000] Finishing updateGraphWorker: Project: /user/username/projects/myproject/b/tsconfig.json Version: 1 structureChanged: true structureIsReused:: Not Elapsed:: *ms +Info 44 [00:01:19.000] Project '/user/username/projects/myproject/b/tsconfig.json' (Configured) +Info 45 [00:01:20.000] Files (2) /user/username/projects/myproject/b/index.ts /user/username/projects/myproject/b/helper.ts @@ -208,22 +208,22 @@ Info 45 [16:01:20.000] Files (2) helper.ts Matched by default include pattern '**/*' -Info 46 [16:01:21.000] ----------------------------------------------- -Info 47 [16:01:22.000] Search path: /user/username/projects/myproject/b -Info 48 [16:01:23.000] For info: /user/username/projects/myproject/b/tsconfig.json :: No config files found. -Info 49 [16:01:24.000] Project '/user/username/projects/myproject/a/tsconfig.json' (Configured) -Info 49 [16:01:25.000] Files (2) - -Info 49 [16:01:26.000] ----------------------------------------------- -Info 49 [16:01:27.000] Project '/user/username/projects/myproject/b/tsconfig.json' (Configured) -Info 49 [16:01:28.000] Files (2) - -Info 49 [16:01:29.000] ----------------------------------------------- -Info 49 [16:01:30.000] Open files: -Info 49 [16:01:31.000] FileName: /user/username/projects/myproject/a/index.ts ProjectRootPath: undefined -Info 49 [16:01:32.000] Projects: /user/username/projects/myproject/a/tsconfig.json -Info 49 [16:01:33.000] FileName: /user/username/projects/myproject/b/helper.ts ProjectRootPath: undefined -Info 49 [16:01:34.000] Projects: /user/username/projects/myproject/b/tsconfig.json +Info 46 [00:01:21.000] ----------------------------------------------- +Info 47 [00:01:22.000] Search path: /user/username/projects/myproject/b +Info 48 [00:01:23.000] For info: /user/username/projects/myproject/b/tsconfig.json :: No config files found. +Info 49 [00:01:24.000] Project '/user/username/projects/myproject/a/tsconfig.json' (Configured) +Info 49 [00:01:25.000] Files (2) + +Info 49 [00:01:26.000] ----------------------------------------------- +Info 49 [00:01:27.000] Project '/user/username/projects/myproject/b/tsconfig.json' (Configured) +Info 49 [00:01:28.000] Files (2) + +Info 49 [00:01:29.000] ----------------------------------------------- +Info 49 [00:01:30.000] Open files: +Info 49 [00:01:31.000] FileName: /user/username/projects/myproject/a/index.ts ProjectRootPath: undefined +Info 49 [00:01:32.000] Projects: /user/username/projects/myproject/a/tsconfig.json +Info 49 [00:01:33.000] FileName: /user/username/projects/myproject/b/helper.ts ProjectRootPath: undefined +Info 49 [00:01:34.000] Projects: /user/username/projects/myproject/b/tsconfig.json After request PolledWatches:: @@ -252,11 +252,11 @@ FsWatchesRecursive:: /user/username/projects/myproject/b: {} -Info 49 [16:01:35.000] response: +Info 49 [00:01:35.000] response: { "responseRequired": false } -Info 50 [16:01:36.000] request: +Info 50 [00:01:36.000] request: { "command": "references", "arguments": { @@ -295,12 +295,12 @@ FsWatchesRecursive:: /user/username/projects/myproject/b: {} -Info 51 [16:01:37.000] Finding references to /user/username/projects/myproject/a/index.ts position 40 in project /user/username/projects/myproject/a/tsconfig.json -Info 52 [16:01:38.000] Search path: /user/username/projects/myproject/b -Info 53 [16:01:39.000] For info: /user/username/projects/myproject/b/index.ts :: Config file name: /user/username/projects/myproject/b/tsconfig.json -Info 54 [16:01:40.000] Search path: /user/username/projects/myproject/b -Info 55 [16:01:41.000] For info: /user/username/projects/myproject/b/index.ts :: Config file name: /user/username/projects/myproject/b/tsconfig.json -Info 56 [16:01:42.000] Finding references to /user/username/projects/myproject/b/index.ts position 13 in project /user/username/projects/myproject/b/tsconfig.json +Info 51 [00:01:37.000] Finding references to /user/username/projects/myproject/a/index.ts position 40 in project /user/username/projects/myproject/a/tsconfig.json +Info 52 [00:01:38.000] Search path: /user/username/projects/myproject/b +Info 53 [00:01:39.000] For info: /user/username/projects/myproject/b/index.ts :: Config file name: /user/username/projects/myproject/b/tsconfig.json +Info 54 [00:01:40.000] Search path: /user/username/projects/myproject/b +Info 55 [00:01:41.000] For info: /user/username/projects/myproject/b/index.ts :: Config file name: /user/username/projects/myproject/b/tsconfig.json +Info 56 [00:01:42.000] Finding references to /user/username/projects/myproject/b/index.ts position 13 in project /user/username/projects/myproject/b/tsconfig.json After request PolledWatches:: @@ -329,7 +329,7 @@ FsWatchesRecursive:: /user/username/projects/myproject/b: {} -Info 57 [16:01:43.000] response: +Info 57 [00:01:43.000] response: { "response": { "refs": [ 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 90d32ec4476c7..974ad23e860d4 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 @@ -1,5 +1,5 @@ -Info 0 [16:00:31.000] Provided types map file "/a/lib/typesMap.json" doesn't exist -Info 1 [16:00:32.000] request: +Info 0 [00:00:31.000] Provided types map file "/a/lib/typesMap.json" doesn't exist +Info 1 [00:00:32.000] request: { "seq": 0, "type": "request", @@ -55,11 +55,11 @@ FsWatches:: FsWatchesRecursive:: -Info 2 [16:00:33.000] Search path: /user/username/projects/myproject/a -Info 3 [16:00:34.000] For info: /user/username/projects/myproject/a/index.ts :: Config file name: /user/username/projects/myproject/a/tsconfig.json -Info 4 [16:00:35.000] Creating configuration project /user/username/projects/myproject/a/tsconfig.json -Info 5 [16:00:36.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/a/tsconfig.json 2000 undefined Project: /user/username/projects/myproject/a/tsconfig.json WatchType: Config file -Info 6 [16:00:37.000] Config: /user/username/projects/myproject/a/tsconfig.json : { +Info 2 [00:00:33.000] Search path: /user/username/projects/myproject/a +Info 3 [00:00:34.000] For info: /user/username/projects/myproject/a/index.ts :: Config file name: /user/username/projects/myproject/a/tsconfig.json +Info 4 [00:00:35.000] Creating configuration project /user/username/projects/myproject/a/tsconfig.json +Info 5 [00:00:36.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/a/tsconfig.json 2000 undefined Project: /user/username/projects/myproject/a/tsconfig.json WatchType: Config file +Info 6 [00:00:37.000] Config: /user/username/projects/myproject/a/tsconfig.json : { "rootNames": [ "/user/username/projects/myproject/a/index.ts" ], @@ -76,11 +76,11 @@ Info 6 [16:00:37.000] Config: /user/username/projects/myproject/a/tsconfig.js } ] } -Info 7 [16:00:38.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/a 1 undefined Config: /user/username/projects/myproject/a/tsconfig.json WatchType: Wild card directory -Info 8 [16:00:39.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/a 1 undefined Config: /user/username/projects/myproject/a/tsconfig.json WatchType: Wild card directory -Info 9 [16:00:40.000] Plugins were requested but not running in environment that supports 'require'. Nothing will be loaded -Info 10 [16:00:41.000] Starting updateGraphWorker: Project: /user/username/projects/myproject/a/tsconfig.json -Info 11 [16:00:42.000] Config: /user/username/projects/myproject/b/tsconfig.json : { +Info 7 [00:00:38.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/a 1 undefined Config: /user/username/projects/myproject/a/tsconfig.json WatchType: Wild card directory +Info 8 [00:00:39.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/a 1 undefined Config: /user/username/projects/myproject/a/tsconfig.json WatchType: Wild card directory +Info 9 [00:00:40.000] Plugins were requested but not running in environment that supports 'require'. Nothing will be loaded +Info 10 [00:00:41.000] Starting updateGraphWorker: Project: /user/username/projects/myproject/a/tsconfig.json +Info 11 [00:00:42.000] Config: /user/username/projects/myproject/b/tsconfig.json : { "rootNames": [ "/user/username/projects/myproject/b/helper.ts", "/user/username/projects/myproject/b/index.ts" @@ -92,20 +92,20 @@ Info 11 [16:00:42.000] Config: /user/username/projects/myproject/b/tsconfig.js "configFilePath": "/user/username/projects/myproject/b/tsconfig.json" } } -Info 12 [16:00:43.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/b/tsconfig.json 2000 undefined Project: /user/username/projects/myproject/a/tsconfig.json WatchType: Config file -Info 13 [16:00:44.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/b 1 undefined Config: /user/username/projects/myproject/b/tsconfig.json WatchType: Wild card directory -Info 14 [16:00:45.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/b 1 undefined Config: /user/username/projects/myproject/b/tsconfig.json WatchType: Wild card directory -Info 15 [16:00:46.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/b 1 undefined Project: /user/username/projects/myproject/a/tsconfig.json WatchType: Failed Lookup Locations -Info 16 [16:00:47.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/b 1 undefined Project: /user/username/projects/myproject/a/tsconfig.json WatchType: Failed Lookup Locations -Info 17 [16:00:48.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/b/index.ts 500 undefined WatchType: Closed Script info -Info 18 [16:00:49.000] FileWatcher:: Added:: WatchInfo: /a/lib/lib.d.ts 500 undefined Project: /user/username/projects/myproject/a/tsconfig.json WatchType: Missing file -Info 19 [16:00:50.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/a/node_modules/@types 1 undefined Project: /user/username/projects/myproject/a/tsconfig.json WatchType: Type roots -Info 20 [16:00:51.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/a/node_modules/@types 1 undefined Project: /user/username/projects/myproject/a/tsconfig.json WatchType: Type roots -Info 21 [16:00:52.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/a/tsconfig.json WatchType: Type roots -Info 22 [16:00:53.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/a/tsconfig.json WatchType: Type roots -Info 23 [16:00:54.000] Finishing updateGraphWorker: Project: /user/username/projects/myproject/a/tsconfig.json Version: 1 structureChanged: true structureIsReused:: Not Elapsed:: *ms -Info 24 [16:00:55.000] Project '/user/username/projects/myproject/a/tsconfig.json' (Configured) -Info 25 [16:00:56.000] Files (2) +Info 12 [00:00:43.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/b/tsconfig.json 2000 undefined Project: /user/username/projects/myproject/a/tsconfig.json WatchType: Config file +Info 13 [00:00:44.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/b 1 undefined Config: /user/username/projects/myproject/b/tsconfig.json WatchType: Wild card directory +Info 14 [00:00:45.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/b 1 undefined Config: /user/username/projects/myproject/b/tsconfig.json WatchType: Wild card directory +Info 15 [00:00:46.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/b 1 undefined Project: /user/username/projects/myproject/a/tsconfig.json WatchType: Failed Lookup Locations +Info 16 [00:00:47.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/b 1 undefined Project: /user/username/projects/myproject/a/tsconfig.json WatchType: Failed Lookup Locations +Info 17 [00:00:48.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/b/index.ts 500 undefined WatchType: Closed Script info +Info 18 [00:00:49.000] FileWatcher:: Added:: WatchInfo: /a/lib/lib.d.ts 500 undefined Project: /user/username/projects/myproject/a/tsconfig.json WatchType: Missing file +Info 19 [00:00:50.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/a/node_modules/@types 1 undefined Project: /user/username/projects/myproject/a/tsconfig.json WatchType: Type roots +Info 20 [00:00:51.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/a/node_modules/@types 1 undefined Project: /user/username/projects/myproject/a/tsconfig.json WatchType: Type roots +Info 21 [00:00:52.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/a/tsconfig.json WatchType: Type roots +Info 22 [00:00:53.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/a/tsconfig.json WatchType: Type roots +Info 23 [00:00:54.000] Finishing updateGraphWorker: Project: /user/username/projects/myproject/a/tsconfig.json Version: 1 structureChanged: true structureIsReused:: Not Elapsed:: *ms +Info 24 [00:00:55.000] Project '/user/username/projects/myproject/a/tsconfig.json' (Configured) +Info 25 [00:00:56.000] Files (2) /user/username/projects/myproject/b/index.ts /user/username/projects/myproject/a/index.ts @@ -115,16 +115,16 @@ Info 25 [16:00:56.000] Files (2) index.ts Matched by default include pattern '**/*' -Info 26 [16:00:57.000] ----------------------------------------------- -Info 27 [16:00:58.000] Search path: /user/username/projects/myproject/a -Info 28 [16:00:59.000] For info: /user/username/projects/myproject/a/tsconfig.json :: No config files found. -Info 29 [16:01:00.000] Project '/user/username/projects/myproject/a/tsconfig.json' (Configured) -Info 29 [16:01:01.000] Files (2) +Info 26 [00:00:57.000] ----------------------------------------------- +Info 27 [00:00:58.000] Search path: /user/username/projects/myproject/a +Info 28 [00:00:59.000] For info: /user/username/projects/myproject/a/tsconfig.json :: No config files found. +Info 29 [00:01:00.000] Project '/user/username/projects/myproject/a/tsconfig.json' (Configured) +Info 29 [00:01:01.000] Files (2) -Info 29 [16:01:02.000] ----------------------------------------------- -Info 29 [16:01:03.000] Open files: -Info 29 [16:01:04.000] FileName: /user/username/projects/myproject/a/index.ts ProjectRootPath: undefined -Info 29 [16:01:05.000] Projects: /user/username/projects/myproject/a/tsconfig.json +Info 29 [00:01:02.000] ----------------------------------------------- +Info 29 [00:01:03.000] Open files: +Info 29 [00:01:04.000] FileName: /user/username/projects/myproject/a/index.ts ProjectRootPath: undefined +Info 29 [00:01:05.000] Projects: /user/username/projects/myproject/a/tsconfig.json After request PolledWatches:: @@ -149,11 +149,11 @@ FsWatchesRecursive:: /user/username/projects/myproject/b: {} -Info 29 [16:01:06.000] response: +Info 29 [00:01:06.000] response: { "responseRequired": false } -Info 30 [16:01:07.000] request: +Info 30 [00:01:07.000] request: { "seq": 0, "type": "request", @@ -186,21 +186,21 @@ FsWatchesRecursive:: /user/username/projects/myproject/b: {} -Info 31 [16:01:08.000] Search path: /user/username/projects/myproject/b -Info 32 [16:01:09.000] For info: /user/username/projects/myproject/b/helper.ts :: Config file name: /user/username/projects/myproject/b/tsconfig.json -Info 33 [16:01:10.000] Creating configuration project /user/username/projects/myproject/b/tsconfig.json -Info 34 [16:01:11.000] Plugins were requested but not running in environment that supports 'require'. Nothing will be loaded -Info 35 [16:01:12.000] Starting updateGraphWorker: Project: /user/username/projects/myproject/b/tsconfig.json -Info 36 [16:01:13.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/b 0 undefined Project: /user/username/projects/myproject/b/tsconfig.json WatchType: Failed Lookup Locations -Info 37 [16:01:14.000] 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 38 [16:01:15.000] FileWatcher:: Added:: WatchInfo: /a/lib/lib.d.ts 500 undefined Project: /user/username/projects/myproject/b/tsconfig.json WatchType: Missing file -Info 39 [16:01:16.000] 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 40 [16:01:17.000] 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 41 [16:01:18.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/b/tsconfig.json WatchType: Type roots -Info 42 [16:01:19.000] 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 43 [16:01:20.000] Finishing updateGraphWorker: Project: /user/username/projects/myproject/b/tsconfig.json Version: 1 structureChanged: true structureIsReused:: Not Elapsed:: *ms -Info 44 [16:01:21.000] Project '/user/username/projects/myproject/b/tsconfig.json' (Configured) -Info 45 [16:01:22.000] Files (2) +Info 31 [00:01:08.000] Search path: /user/username/projects/myproject/b +Info 32 [00:01:09.000] For info: /user/username/projects/myproject/b/helper.ts :: Config file name: /user/username/projects/myproject/b/tsconfig.json +Info 33 [00:01:10.000] Creating configuration project /user/username/projects/myproject/b/tsconfig.json +Info 34 [00:01:11.000] Plugins were requested but not running in environment that supports 'require'. Nothing will be loaded +Info 35 [00:01:12.000] Starting updateGraphWorker: Project: /user/username/projects/myproject/b/tsconfig.json +Info 36 [00:01:13.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/b 0 undefined Project: /user/username/projects/myproject/b/tsconfig.json WatchType: Failed Lookup Locations +Info 37 [00:01:14.000] 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 38 [00:01:15.000] FileWatcher:: Added:: WatchInfo: /a/lib/lib.d.ts 500 undefined Project: /user/username/projects/myproject/b/tsconfig.json WatchType: Missing file +Info 39 [00:01:16.000] 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 40 [00:01:17.000] 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 41 [00:01:18.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/b/tsconfig.json WatchType: Type roots +Info 42 [00:01:19.000] 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 43 [00:01:20.000] Finishing updateGraphWorker: Project: /user/username/projects/myproject/b/tsconfig.json Version: 1 structureChanged: true structureIsReused:: Not Elapsed:: *ms +Info 44 [00:01:21.000] Project '/user/username/projects/myproject/b/tsconfig.json' (Configured) +Info 45 [00:01:22.000] Files (2) /user/username/projects/myproject/b/index.ts /user/username/projects/myproject/b/helper.ts @@ -211,22 +211,22 @@ Info 45 [16:01:22.000] Files (2) helper.ts Matched by default include pattern '**/*' -Info 46 [16:01:23.000] ----------------------------------------------- -Info 47 [16:01:24.000] Search path: /user/username/projects/myproject/b -Info 48 [16:01:25.000] For info: /user/username/projects/myproject/b/tsconfig.json :: No config files found. -Info 49 [16:01:26.000] Project '/user/username/projects/myproject/a/tsconfig.json' (Configured) -Info 49 [16:01:27.000] Files (2) - -Info 49 [16:01:28.000] ----------------------------------------------- -Info 49 [16:01:29.000] Project '/user/username/projects/myproject/b/tsconfig.json' (Configured) -Info 49 [16:01:30.000] Files (2) - -Info 49 [16:01:31.000] ----------------------------------------------- -Info 49 [16:01:32.000] Open files: -Info 49 [16:01:33.000] FileName: /user/username/projects/myproject/a/index.ts ProjectRootPath: undefined -Info 49 [16:01:34.000] Projects: /user/username/projects/myproject/a/tsconfig.json -Info 49 [16:01:35.000] FileName: /user/username/projects/myproject/b/helper.ts ProjectRootPath: undefined -Info 49 [16:01:36.000] Projects: /user/username/projects/myproject/b/tsconfig.json +Info 46 [00:01:23.000] ----------------------------------------------- +Info 47 [00:01:24.000] Search path: /user/username/projects/myproject/b +Info 48 [00:01:25.000] For info: /user/username/projects/myproject/b/tsconfig.json :: No config files found. +Info 49 [00:01:26.000] Project '/user/username/projects/myproject/a/tsconfig.json' (Configured) +Info 49 [00:01:27.000] Files (2) + +Info 49 [00:01:28.000] ----------------------------------------------- +Info 49 [00:01:29.000] Project '/user/username/projects/myproject/b/tsconfig.json' (Configured) +Info 49 [00:01:30.000] Files (2) + +Info 49 [00:01:31.000] ----------------------------------------------- +Info 49 [00:01:32.000] Open files: +Info 49 [00:01:33.000] FileName: /user/username/projects/myproject/a/index.ts ProjectRootPath: undefined +Info 49 [00:01:34.000] Projects: /user/username/projects/myproject/a/tsconfig.json +Info 49 [00:01:35.000] FileName: /user/username/projects/myproject/b/helper.ts ProjectRootPath: undefined +Info 49 [00:01:36.000] Projects: /user/username/projects/myproject/b/tsconfig.json After request PolledWatches:: @@ -255,11 +255,11 @@ FsWatchesRecursive:: /user/username/projects/myproject/b: {} -Info 49 [16:01:37.000] response: +Info 49 [00:01:37.000] response: { "responseRequired": false } -Info 50 [16:01:38.000] request: +Info 50 [00:01:38.000] request: { "command": "references", "arguments": { @@ -298,12 +298,12 @@ FsWatchesRecursive:: /user/username/projects/myproject/b: {} -Info 51 [16:01:39.000] Finding references to /user/username/projects/myproject/a/index.ts position 40 in project /user/username/projects/myproject/a/tsconfig.json -Info 52 [16:01:40.000] Search path: /user/username/projects/myproject/b -Info 53 [16:01:41.000] For info: /user/username/projects/myproject/b/index.ts :: Config file name: /user/username/projects/myproject/b/tsconfig.json -Info 54 [16:01:42.000] Search path: /user/username/projects/myproject/b -Info 55 [16:01:43.000] For info: /user/username/projects/myproject/b/index.ts :: Config file name: /user/username/projects/myproject/b/tsconfig.json -Info 56 [16:01:44.000] Finding references to /user/username/projects/myproject/b/index.ts position 13 in project /user/username/projects/myproject/b/tsconfig.json +Info 51 [00:01:39.000] Finding references to /user/username/projects/myproject/a/index.ts position 40 in project /user/username/projects/myproject/a/tsconfig.json +Info 52 [00:01:40.000] Search path: /user/username/projects/myproject/b +Info 53 [00:01:41.000] For info: /user/username/projects/myproject/b/index.ts :: Config file name: /user/username/projects/myproject/b/tsconfig.json +Info 54 [00:01:42.000] Search path: /user/username/projects/myproject/b +Info 55 [00:01:43.000] For info: /user/username/projects/myproject/b/index.ts :: Config file name: /user/username/projects/myproject/b/tsconfig.json +Info 56 [00:01:44.000] Finding references to /user/username/projects/myproject/b/index.ts position 13 in project /user/username/projects/myproject/b/tsconfig.json After request PolledWatches:: @@ -332,7 +332,7 @@ FsWatchesRecursive:: /user/username/projects/myproject/b: {} -Info 57 [16:01:45.000] response: +Info 57 [00:01:45.000] response: { "response": { "refs": [ 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 e6d7ec6ea8e1a..30ad37cadc223 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 @@ -1,5 +1,5 @@ -Info 0 [16:00:29.000] Provided types map file "/a/lib/typesMap.json" doesn't exist -Info 1 [16:00:30.000] request: +Info 0 [00:00:29.000] Provided types map file "/a/lib/typesMap.json" doesn't exist +Info 1 [00:00:30.000] request: { "seq": 0, "type": "request", @@ -52,11 +52,11 @@ FsWatches:: FsWatchesRecursive:: -Info 2 [16:00:31.000] Search path: /user/username/projects/myproject/a -Info 3 [16:00:32.000] For info: /user/username/projects/myproject/a/index.ts :: Config file name: /user/username/projects/myproject/a/tsconfig.json -Info 4 [16:00:33.000] Creating configuration project /user/username/projects/myproject/a/tsconfig.json -Info 5 [16:00:34.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/a/tsconfig.json 2000 undefined Project: /user/username/projects/myproject/a/tsconfig.json WatchType: Config file -Info 6 [16:00:35.000] Config: /user/username/projects/myproject/a/tsconfig.json : { +Info 2 [00:00:31.000] Search path: /user/username/projects/myproject/a +Info 3 [00:00:32.000] For info: /user/username/projects/myproject/a/index.ts :: Config file name: /user/username/projects/myproject/a/tsconfig.json +Info 4 [00:00:33.000] Creating configuration project /user/username/projects/myproject/a/tsconfig.json +Info 5 [00:00:34.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/a/tsconfig.json 2000 undefined Project: /user/username/projects/myproject/a/tsconfig.json WatchType: Config file +Info 6 [00:00:35.000] Config: /user/username/projects/myproject/a/tsconfig.json : { "rootNames": [ "/user/username/projects/myproject/a/index.ts" ], @@ -73,11 +73,11 @@ Info 6 [16:00:35.000] Config: /user/username/projects/myproject/a/tsconfig.js } ] } -Info 7 [16:00:36.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/a 1 undefined Config: /user/username/projects/myproject/a/tsconfig.json WatchType: Wild card directory -Info 8 [16:00:37.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/a 1 undefined Config: /user/username/projects/myproject/a/tsconfig.json WatchType: Wild card directory -Info 9 [16:00:38.000] Plugins were requested but not running in environment that supports 'require'. Nothing will be loaded -Info 10 [16:00:39.000] Starting updateGraphWorker: Project: /user/username/projects/myproject/a/tsconfig.json -Info 11 [16:00:40.000] Config: /user/username/projects/myproject/b/tsconfig.json : { +Info 7 [00:00:36.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/a 1 undefined Config: /user/username/projects/myproject/a/tsconfig.json WatchType: Wild card directory +Info 8 [00:00:37.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/a 1 undefined Config: /user/username/projects/myproject/a/tsconfig.json WatchType: Wild card directory +Info 9 [00:00:38.000] Plugins were requested but not running in environment that supports 'require'. Nothing will be loaded +Info 10 [00:00:39.000] Starting updateGraphWorker: Project: /user/username/projects/myproject/a/tsconfig.json +Info 11 [00:00:40.000] Config: /user/username/projects/myproject/b/tsconfig.json : { "rootNames": [ "/user/username/projects/myproject/b/helper.ts", "/user/username/projects/myproject/b/index.ts" @@ -89,20 +89,20 @@ Info 11 [16:00:40.000] Config: /user/username/projects/myproject/b/tsconfig.js "configFilePath": "/user/username/projects/myproject/b/tsconfig.json" } } -Info 12 [16:00:41.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/b/tsconfig.json 2000 undefined Project: /user/username/projects/myproject/a/tsconfig.json WatchType: Config file -Info 13 [16:00:42.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/b 1 undefined Config: /user/username/projects/myproject/b/tsconfig.json WatchType: Wild card directory -Info 14 [16:00:43.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/b 1 undefined Config: /user/username/projects/myproject/b/tsconfig.json WatchType: Wild card directory -Info 15 [16:00:44.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/b 1 undefined Project: /user/username/projects/myproject/a/tsconfig.json WatchType: Failed Lookup Locations -Info 16 [16:00:45.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/b 1 undefined Project: /user/username/projects/myproject/a/tsconfig.json WatchType: Failed Lookup Locations -Info 17 [16:00:46.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/b/lib/index.d.ts 500 undefined WatchType: Closed Script info -Info 18 [16:00:47.000] FileWatcher:: Added:: WatchInfo: /a/lib/lib.d.ts 500 undefined Project: /user/username/projects/myproject/a/tsconfig.json WatchType: Missing file -Info 19 [16:00:48.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/a/node_modules/@types 1 undefined Project: /user/username/projects/myproject/a/tsconfig.json WatchType: Type roots -Info 20 [16:00:49.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/a/node_modules/@types 1 undefined Project: /user/username/projects/myproject/a/tsconfig.json WatchType: Type roots -Info 21 [16:00:50.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/a/tsconfig.json WatchType: Type roots -Info 22 [16:00:51.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/a/tsconfig.json WatchType: Type roots -Info 23 [16:00:52.000] Finishing updateGraphWorker: Project: /user/username/projects/myproject/a/tsconfig.json Version: 1 structureChanged: true structureIsReused:: Not Elapsed:: *ms -Info 24 [16:00:53.000] Project '/user/username/projects/myproject/a/tsconfig.json' (Configured) -Info 25 [16:00:54.000] Files (2) +Info 12 [00:00:41.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/b/tsconfig.json 2000 undefined Project: /user/username/projects/myproject/a/tsconfig.json WatchType: Config file +Info 13 [00:00:42.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/b 1 undefined Config: /user/username/projects/myproject/b/tsconfig.json WatchType: Wild card directory +Info 14 [00:00:43.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/b 1 undefined Config: /user/username/projects/myproject/b/tsconfig.json WatchType: Wild card directory +Info 15 [00:00:44.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/b 1 undefined Project: /user/username/projects/myproject/a/tsconfig.json WatchType: Failed Lookup Locations +Info 16 [00:00:45.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/b 1 undefined Project: /user/username/projects/myproject/a/tsconfig.json WatchType: Failed Lookup Locations +Info 17 [00:00:46.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/b/lib/index.d.ts 500 undefined WatchType: Closed Script info +Info 18 [00:00:47.000] FileWatcher:: Added:: WatchInfo: /a/lib/lib.d.ts 500 undefined Project: /user/username/projects/myproject/a/tsconfig.json WatchType: Missing file +Info 19 [00:00:48.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/a/node_modules/@types 1 undefined Project: /user/username/projects/myproject/a/tsconfig.json WatchType: Type roots +Info 20 [00:00:49.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/a/node_modules/@types 1 undefined Project: /user/username/projects/myproject/a/tsconfig.json WatchType: Type roots +Info 21 [00:00:50.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/a/tsconfig.json WatchType: Type roots +Info 22 [00:00:51.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/a/tsconfig.json WatchType: Type roots +Info 23 [00:00:52.000] Finishing updateGraphWorker: Project: /user/username/projects/myproject/a/tsconfig.json Version: 1 structureChanged: true structureIsReused:: Not Elapsed:: *ms +Info 24 [00:00:53.000] Project '/user/username/projects/myproject/a/tsconfig.json' (Configured) +Info 25 [00:00:54.000] Files (2) /user/username/projects/myproject/b/lib/index.d.ts /user/username/projects/myproject/a/index.ts @@ -112,16 +112,16 @@ Info 25 [16:00:54.000] Files (2) index.ts Matched by default include pattern '**/*' -Info 26 [16:00:55.000] ----------------------------------------------- -Info 27 [16:00:56.000] Search path: /user/username/projects/myproject/a -Info 28 [16:00:57.000] For info: /user/username/projects/myproject/a/tsconfig.json :: No config files found. -Info 29 [16:00:58.000] Project '/user/username/projects/myproject/a/tsconfig.json' (Configured) -Info 29 [16:00:59.000] Files (2) +Info 26 [00:00:55.000] ----------------------------------------------- +Info 27 [00:00:56.000] Search path: /user/username/projects/myproject/a +Info 28 [00:00:57.000] For info: /user/username/projects/myproject/a/tsconfig.json :: No config files found. +Info 29 [00:00:58.000] Project '/user/username/projects/myproject/a/tsconfig.json' (Configured) +Info 29 [00:00:59.000] Files (2) -Info 29 [16:01:00.000] ----------------------------------------------- -Info 29 [16:01:01.000] Open files: -Info 29 [16:01:02.000] FileName: /user/username/projects/myproject/a/index.ts ProjectRootPath: undefined -Info 29 [16:01:03.000] Projects: /user/username/projects/myproject/a/tsconfig.json +Info 29 [00:01:00.000] ----------------------------------------------- +Info 29 [00:01:01.000] Open files: +Info 29 [00:01:02.000] FileName: /user/username/projects/myproject/a/index.ts ProjectRootPath: undefined +Info 29 [00:01:03.000] Projects: /user/username/projects/myproject/a/tsconfig.json After request PolledWatches:: @@ -146,11 +146,11 @@ FsWatchesRecursive:: /user/username/projects/myproject/b: {} -Info 29 [16:01:04.000] response: +Info 29 [00:01:04.000] response: { "responseRequired": false } -Info 30 [16:01:05.000] request: +Info 30 [00:01:05.000] request: { "seq": 0, "type": "request", @@ -183,22 +183,22 @@ FsWatchesRecursive:: /user/username/projects/myproject/b: {} -Info 31 [16:01:06.000] Search path: /user/username/projects/myproject/b -Info 32 [16:01:07.000] For info: /user/username/projects/myproject/b/helper.ts :: Config file name: /user/username/projects/myproject/b/tsconfig.json -Info 33 [16:01:08.000] Creating configuration project /user/username/projects/myproject/b/tsconfig.json -Info 34 [16:01:09.000] Plugins were requested but not running in environment that supports 'require'. Nothing will be loaded -Info 35 [16:01:10.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/b/index.ts 500 undefined WatchType: Closed Script info -Info 36 [16:01:11.000] Starting updateGraphWorker: Project: /user/username/projects/myproject/b/tsconfig.json -Info 37 [16:01:12.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/b 0 undefined Project: /user/username/projects/myproject/b/tsconfig.json WatchType: Failed Lookup Locations -Info 38 [16:01:13.000] 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 39 [16:01:14.000] FileWatcher:: Added:: WatchInfo: /a/lib/lib.d.ts 500 undefined Project: /user/username/projects/myproject/b/tsconfig.json WatchType: Missing file -Info 40 [16:01:15.000] 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 41 [16:01:16.000] 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 42 [16:01:17.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/b/tsconfig.json WatchType: Type roots -Info 43 [16:01:18.000] 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 44 [16:01:19.000] Finishing updateGraphWorker: Project: /user/username/projects/myproject/b/tsconfig.json Version: 1 structureChanged: true structureIsReused:: Not Elapsed:: *ms -Info 45 [16:01:20.000] Project '/user/username/projects/myproject/b/tsconfig.json' (Configured) -Info 46 [16:01:21.000] Files (2) +Info 31 [00:01:06.000] Search path: /user/username/projects/myproject/b +Info 32 [00:01:07.000] For info: /user/username/projects/myproject/b/helper.ts :: Config file name: /user/username/projects/myproject/b/tsconfig.json +Info 33 [00:01:08.000] Creating configuration project /user/username/projects/myproject/b/tsconfig.json +Info 34 [00:01:09.000] Plugins were requested but not running in environment that supports 'require'. Nothing will be loaded +Info 35 [00:01:10.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/b/index.ts 500 undefined WatchType: Closed Script info +Info 36 [00:01:11.000] Starting updateGraphWorker: Project: /user/username/projects/myproject/b/tsconfig.json +Info 37 [00:01:12.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/b 0 undefined Project: /user/username/projects/myproject/b/tsconfig.json WatchType: Failed Lookup Locations +Info 38 [00:01:13.000] 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 39 [00:01:14.000] FileWatcher:: Added:: WatchInfo: /a/lib/lib.d.ts 500 undefined Project: /user/username/projects/myproject/b/tsconfig.json WatchType: Missing file +Info 40 [00:01:15.000] 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 41 [00:01:16.000] 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 42 [00:01:17.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/b/tsconfig.json WatchType: Type roots +Info 43 [00:01:18.000] 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 44 [00:01:19.000] Finishing updateGraphWorker: Project: /user/username/projects/myproject/b/tsconfig.json Version: 1 structureChanged: true structureIsReused:: Not Elapsed:: *ms +Info 45 [00:01:20.000] Project '/user/username/projects/myproject/b/tsconfig.json' (Configured) +Info 46 [00:01:21.000] Files (2) /user/username/projects/myproject/b/index.ts /user/username/projects/myproject/b/helper.ts @@ -209,22 +209,22 @@ Info 46 [16:01:21.000] Files (2) helper.ts Matched by default include pattern '**/*' -Info 47 [16:01:22.000] ----------------------------------------------- -Info 48 [16:01:23.000] Search path: /user/username/projects/myproject/b -Info 49 [16:01:24.000] For info: /user/username/projects/myproject/b/tsconfig.json :: No config files found. -Info 50 [16:01:25.000] Project '/user/username/projects/myproject/a/tsconfig.json' (Configured) -Info 50 [16:01:26.000] Files (2) - -Info 50 [16:01:27.000] ----------------------------------------------- -Info 50 [16:01:28.000] Project '/user/username/projects/myproject/b/tsconfig.json' (Configured) -Info 50 [16:01:29.000] Files (2) - -Info 50 [16:01:30.000] ----------------------------------------------- -Info 50 [16:01:31.000] Open files: -Info 50 [16:01:32.000] FileName: /user/username/projects/myproject/a/index.ts ProjectRootPath: undefined -Info 50 [16:01:33.000] Projects: /user/username/projects/myproject/a/tsconfig.json -Info 50 [16:01:34.000] FileName: /user/username/projects/myproject/b/helper.ts ProjectRootPath: undefined -Info 50 [16:01:35.000] Projects: /user/username/projects/myproject/b/tsconfig.json +Info 47 [00:01:22.000] ----------------------------------------------- +Info 48 [00:01:23.000] Search path: /user/username/projects/myproject/b +Info 49 [00:01:24.000] For info: /user/username/projects/myproject/b/tsconfig.json :: No config files found. +Info 50 [00:01:25.000] Project '/user/username/projects/myproject/a/tsconfig.json' (Configured) +Info 50 [00:01:26.000] Files (2) + +Info 50 [00:01:27.000] ----------------------------------------------- +Info 50 [00:01:28.000] Project '/user/username/projects/myproject/b/tsconfig.json' (Configured) +Info 50 [00:01:29.000] Files (2) + +Info 50 [00:01:30.000] ----------------------------------------------- +Info 50 [00:01:31.000] Open files: +Info 50 [00:01:32.000] FileName: /user/username/projects/myproject/a/index.ts ProjectRootPath: undefined +Info 50 [00:01:33.000] Projects: /user/username/projects/myproject/a/tsconfig.json +Info 50 [00:01:34.000] FileName: /user/username/projects/myproject/b/helper.ts ProjectRootPath: undefined +Info 50 [00:01:35.000] Projects: /user/username/projects/myproject/b/tsconfig.json After request PolledWatches:: @@ -255,11 +255,11 @@ FsWatchesRecursive:: /user/username/projects/myproject/b: {} -Info 50 [16:01:36.000] response: +Info 50 [00:01:36.000] response: { "responseRequired": false } -Info 51 [16:01:37.000] request: +Info 51 [00:01:37.000] request: { "command": "references", "arguments": { @@ -300,8 +300,8 @@ FsWatchesRecursive:: /user/username/projects/myproject/b: {} -Info 52 [16:01:38.000] Finding references to /user/username/projects/myproject/a/index.ts position 40 in project /user/username/projects/myproject/a/tsconfig.json -Info 53 [16:01:39.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/b/lib/index.d.ts.map 2000 undefined WatchType: Missing source map file +Info 52 [00:01:38.000] Finding references to /user/username/projects/myproject/a/index.ts position 40 in project /user/username/projects/myproject/a/tsconfig.json +Info 53 [00:01:39.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/b/lib/index.d.ts.map 2000 undefined WatchType: Missing source map file After request PolledWatches:: @@ -334,7 +334,7 @@ FsWatchesRecursive:: /user/username/projects/myproject/b: {} -Info 54 [16:01:40.000] response: +Info 54 [00:01:40.000] response: { "response": { "refs": [ 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 cabbe12464670..82a231c7cfe3a 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 @@ -1,5 +1,5 @@ -Info 0 [16:00:31.000] Provided types map file "/a/lib/typesMap.json" doesn't exist -Info 1 [16:00:32.000] request: +Info 0 [00:00:31.000] Provided types map file "/a/lib/typesMap.json" doesn't exist +Info 1 [00:00:32.000] request: { "seq": 0, "type": "request", @@ -55,11 +55,11 @@ FsWatches:: FsWatchesRecursive:: -Info 2 [16:00:33.000] Search path: /user/username/projects/myproject/a -Info 3 [16:00:34.000] For info: /user/username/projects/myproject/a/index.ts :: Config file name: /user/username/projects/myproject/a/tsconfig.json -Info 4 [16:00:35.000] Creating configuration project /user/username/projects/myproject/a/tsconfig.json -Info 5 [16:00:36.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/a/tsconfig.json 2000 undefined Project: /user/username/projects/myproject/a/tsconfig.json WatchType: Config file -Info 6 [16:00:37.000] Config: /user/username/projects/myproject/a/tsconfig.json : { +Info 2 [00:00:33.000] Search path: /user/username/projects/myproject/a +Info 3 [00:00:34.000] For info: /user/username/projects/myproject/a/index.ts :: Config file name: /user/username/projects/myproject/a/tsconfig.json +Info 4 [00:00:35.000] Creating configuration project /user/username/projects/myproject/a/tsconfig.json +Info 5 [00:00:36.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/a/tsconfig.json 2000 undefined Project: /user/username/projects/myproject/a/tsconfig.json WatchType: Config file +Info 6 [00:00:37.000] Config: /user/username/projects/myproject/a/tsconfig.json : { "rootNames": [ "/user/username/projects/myproject/a/index.ts" ], @@ -76,11 +76,11 @@ Info 6 [16:00:37.000] Config: /user/username/projects/myproject/a/tsconfig.js } ] } -Info 7 [16:00:38.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/a 1 undefined Config: /user/username/projects/myproject/a/tsconfig.json WatchType: Wild card directory -Info 8 [16:00:39.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/a 1 undefined Config: /user/username/projects/myproject/a/tsconfig.json WatchType: Wild card directory -Info 9 [16:00:40.000] Plugins were requested but not running in environment that supports 'require'. Nothing will be loaded -Info 10 [16:00:41.000] Starting updateGraphWorker: Project: /user/username/projects/myproject/a/tsconfig.json -Info 11 [16:00:42.000] Config: /user/username/projects/myproject/b/tsconfig.json : { +Info 7 [00:00:38.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/a 1 undefined Config: /user/username/projects/myproject/a/tsconfig.json WatchType: Wild card directory +Info 8 [00:00:39.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/a 1 undefined Config: /user/username/projects/myproject/a/tsconfig.json WatchType: Wild card directory +Info 9 [00:00:40.000] Plugins were requested but not running in environment that supports 'require'. Nothing will be loaded +Info 10 [00:00:41.000] Starting updateGraphWorker: Project: /user/username/projects/myproject/a/tsconfig.json +Info 11 [00:00:42.000] Config: /user/username/projects/myproject/b/tsconfig.json : { "rootNames": [ "/user/username/projects/myproject/b/helper.ts", "/user/username/projects/myproject/b/index.ts" @@ -92,20 +92,20 @@ Info 11 [16:00:42.000] Config: /user/username/projects/myproject/b/tsconfig.js "configFilePath": "/user/username/projects/myproject/b/tsconfig.json" } } -Info 12 [16:00:43.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/b/tsconfig.json 2000 undefined Project: /user/username/projects/myproject/a/tsconfig.json WatchType: Config file -Info 13 [16:00:44.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/b 1 undefined Config: /user/username/projects/myproject/b/tsconfig.json WatchType: Wild card directory -Info 14 [16:00:45.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/b 1 undefined Config: /user/username/projects/myproject/b/tsconfig.json WatchType: Wild card directory -Info 15 [16:00:46.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/b 1 undefined Project: /user/username/projects/myproject/a/tsconfig.json WatchType: Failed Lookup Locations -Info 16 [16:00:47.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/b 1 undefined Project: /user/username/projects/myproject/a/tsconfig.json WatchType: Failed Lookup Locations -Info 17 [16:00:48.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/b/lib/index.d.ts 500 undefined WatchType: Closed Script info -Info 18 [16:00:49.000] FileWatcher:: Added:: WatchInfo: /a/lib/lib.d.ts 500 undefined Project: /user/username/projects/myproject/a/tsconfig.json WatchType: Missing file -Info 19 [16:00:50.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/a/node_modules/@types 1 undefined Project: /user/username/projects/myproject/a/tsconfig.json WatchType: Type roots -Info 20 [16:00:51.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/a/node_modules/@types 1 undefined Project: /user/username/projects/myproject/a/tsconfig.json WatchType: Type roots -Info 21 [16:00:52.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/a/tsconfig.json WatchType: Type roots -Info 22 [16:00:53.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/a/tsconfig.json WatchType: Type roots -Info 23 [16:00:54.000] Finishing updateGraphWorker: Project: /user/username/projects/myproject/a/tsconfig.json Version: 1 structureChanged: true structureIsReused:: Not Elapsed:: *ms -Info 24 [16:00:55.000] Project '/user/username/projects/myproject/a/tsconfig.json' (Configured) -Info 25 [16:00:56.000] Files (2) +Info 12 [00:00:43.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/b/tsconfig.json 2000 undefined Project: /user/username/projects/myproject/a/tsconfig.json WatchType: Config file +Info 13 [00:00:44.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/b 1 undefined Config: /user/username/projects/myproject/b/tsconfig.json WatchType: Wild card directory +Info 14 [00:00:45.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/b 1 undefined Config: /user/username/projects/myproject/b/tsconfig.json WatchType: Wild card directory +Info 15 [00:00:46.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/b 1 undefined Project: /user/username/projects/myproject/a/tsconfig.json WatchType: Failed Lookup Locations +Info 16 [00:00:47.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/b 1 undefined Project: /user/username/projects/myproject/a/tsconfig.json WatchType: Failed Lookup Locations +Info 17 [00:00:48.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/b/lib/index.d.ts 500 undefined WatchType: Closed Script info +Info 18 [00:00:49.000] FileWatcher:: Added:: WatchInfo: /a/lib/lib.d.ts 500 undefined Project: /user/username/projects/myproject/a/tsconfig.json WatchType: Missing file +Info 19 [00:00:50.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/a/node_modules/@types 1 undefined Project: /user/username/projects/myproject/a/tsconfig.json WatchType: Type roots +Info 20 [00:00:51.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/a/node_modules/@types 1 undefined Project: /user/username/projects/myproject/a/tsconfig.json WatchType: Type roots +Info 21 [00:00:52.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/a/tsconfig.json WatchType: Type roots +Info 22 [00:00:53.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/a/tsconfig.json WatchType: Type roots +Info 23 [00:00:54.000] Finishing updateGraphWorker: Project: /user/username/projects/myproject/a/tsconfig.json Version: 1 structureChanged: true structureIsReused:: Not Elapsed:: *ms +Info 24 [00:00:55.000] Project '/user/username/projects/myproject/a/tsconfig.json' (Configured) +Info 25 [00:00:56.000] Files (2) /user/username/projects/myproject/b/lib/index.d.ts /user/username/projects/myproject/a/index.ts @@ -115,16 +115,16 @@ Info 25 [16:00:56.000] Files (2) index.ts Matched by default include pattern '**/*' -Info 26 [16:00:57.000] ----------------------------------------------- -Info 27 [16:00:58.000] Search path: /user/username/projects/myproject/a -Info 28 [16:00:59.000] For info: /user/username/projects/myproject/a/tsconfig.json :: No config files found. -Info 29 [16:01:00.000] Project '/user/username/projects/myproject/a/tsconfig.json' (Configured) -Info 29 [16:01:01.000] Files (2) +Info 26 [00:00:57.000] ----------------------------------------------- +Info 27 [00:00:58.000] Search path: /user/username/projects/myproject/a +Info 28 [00:00:59.000] For info: /user/username/projects/myproject/a/tsconfig.json :: No config files found. +Info 29 [00:01:00.000] Project '/user/username/projects/myproject/a/tsconfig.json' (Configured) +Info 29 [00:01:01.000] Files (2) -Info 29 [16:01:02.000] ----------------------------------------------- -Info 29 [16:01:03.000] Open files: -Info 29 [16:01:04.000] FileName: /user/username/projects/myproject/a/index.ts ProjectRootPath: undefined -Info 29 [16:01:05.000] Projects: /user/username/projects/myproject/a/tsconfig.json +Info 29 [00:01:02.000] ----------------------------------------------- +Info 29 [00:01:03.000] Open files: +Info 29 [00:01:04.000] FileName: /user/username/projects/myproject/a/index.ts ProjectRootPath: undefined +Info 29 [00:01:05.000] Projects: /user/username/projects/myproject/a/tsconfig.json After request PolledWatches:: @@ -149,11 +149,11 @@ FsWatchesRecursive:: /user/username/projects/myproject/b: {} -Info 29 [16:01:06.000] response: +Info 29 [00:01:06.000] response: { "responseRequired": false } -Info 30 [16:01:07.000] request: +Info 30 [00:01:07.000] request: { "seq": 0, "type": "request", @@ -186,22 +186,22 @@ FsWatchesRecursive:: /user/username/projects/myproject/b: {} -Info 31 [16:01:08.000] Search path: /user/username/projects/myproject/b -Info 32 [16:01:09.000] For info: /user/username/projects/myproject/b/helper.ts :: Config file name: /user/username/projects/myproject/b/tsconfig.json -Info 33 [16:01:10.000] Creating configuration project /user/username/projects/myproject/b/tsconfig.json -Info 34 [16:01:11.000] Plugins were requested but not running in environment that supports 'require'. Nothing will be loaded -Info 35 [16:01:12.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/b/index.ts 500 undefined WatchType: Closed Script info -Info 36 [16:01:13.000] Starting updateGraphWorker: Project: /user/username/projects/myproject/b/tsconfig.json -Info 37 [16:01:14.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/b 0 undefined Project: /user/username/projects/myproject/b/tsconfig.json WatchType: Failed Lookup Locations -Info 38 [16:01:15.000] 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 39 [16:01:16.000] FileWatcher:: Added:: WatchInfo: /a/lib/lib.d.ts 500 undefined Project: /user/username/projects/myproject/b/tsconfig.json WatchType: Missing file -Info 40 [16:01:17.000] 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 41 [16:01:18.000] 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 42 [16:01:19.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/b/tsconfig.json WatchType: Type roots -Info 43 [16:01:20.000] 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 44 [16:01:21.000] Finishing updateGraphWorker: Project: /user/username/projects/myproject/b/tsconfig.json Version: 1 structureChanged: true structureIsReused:: Not Elapsed:: *ms -Info 45 [16:01:22.000] Project '/user/username/projects/myproject/b/tsconfig.json' (Configured) -Info 46 [16:01:23.000] Files (2) +Info 31 [00:01:08.000] Search path: /user/username/projects/myproject/b +Info 32 [00:01:09.000] For info: /user/username/projects/myproject/b/helper.ts :: Config file name: /user/username/projects/myproject/b/tsconfig.json +Info 33 [00:01:10.000] Creating configuration project /user/username/projects/myproject/b/tsconfig.json +Info 34 [00:01:11.000] Plugins were requested but not running in environment that supports 'require'. Nothing will be loaded +Info 35 [00:01:12.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/b/index.ts 500 undefined WatchType: Closed Script info +Info 36 [00:01:13.000] Starting updateGraphWorker: Project: /user/username/projects/myproject/b/tsconfig.json +Info 37 [00:01:14.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/b 0 undefined Project: /user/username/projects/myproject/b/tsconfig.json WatchType: Failed Lookup Locations +Info 38 [00:01:15.000] 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 39 [00:01:16.000] FileWatcher:: Added:: WatchInfo: /a/lib/lib.d.ts 500 undefined Project: /user/username/projects/myproject/b/tsconfig.json WatchType: Missing file +Info 40 [00:01:17.000] 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 41 [00:01:18.000] 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 42 [00:01:19.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/b/tsconfig.json WatchType: Type roots +Info 43 [00:01:20.000] 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 44 [00:01:21.000] Finishing updateGraphWorker: Project: /user/username/projects/myproject/b/tsconfig.json Version: 1 structureChanged: true structureIsReused:: Not Elapsed:: *ms +Info 45 [00:01:22.000] Project '/user/username/projects/myproject/b/tsconfig.json' (Configured) +Info 46 [00:01:23.000] Files (2) /user/username/projects/myproject/b/index.ts /user/username/projects/myproject/b/helper.ts @@ -212,22 +212,22 @@ Info 46 [16:01:23.000] Files (2) helper.ts Matched by default include pattern '**/*' -Info 47 [16:01:24.000] ----------------------------------------------- -Info 48 [16:01:25.000] Search path: /user/username/projects/myproject/b -Info 49 [16:01:26.000] For info: /user/username/projects/myproject/b/tsconfig.json :: No config files found. -Info 50 [16:01:27.000] Project '/user/username/projects/myproject/a/tsconfig.json' (Configured) -Info 50 [16:01:28.000] Files (2) - -Info 50 [16:01:29.000] ----------------------------------------------- -Info 50 [16:01:30.000] Project '/user/username/projects/myproject/b/tsconfig.json' (Configured) -Info 50 [16:01:31.000] Files (2) - -Info 50 [16:01:32.000] ----------------------------------------------- -Info 50 [16:01:33.000] Open files: -Info 50 [16:01:34.000] FileName: /user/username/projects/myproject/a/index.ts ProjectRootPath: undefined -Info 50 [16:01:35.000] Projects: /user/username/projects/myproject/a/tsconfig.json -Info 50 [16:01:36.000] FileName: /user/username/projects/myproject/b/helper.ts ProjectRootPath: undefined -Info 50 [16:01:37.000] Projects: /user/username/projects/myproject/b/tsconfig.json +Info 47 [00:01:24.000] ----------------------------------------------- +Info 48 [00:01:25.000] Search path: /user/username/projects/myproject/b +Info 49 [00:01:26.000] For info: /user/username/projects/myproject/b/tsconfig.json :: No config files found. +Info 50 [00:01:27.000] Project '/user/username/projects/myproject/a/tsconfig.json' (Configured) +Info 50 [00:01:28.000] Files (2) + +Info 50 [00:01:29.000] ----------------------------------------------- +Info 50 [00:01:30.000] Project '/user/username/projects/myproject/b/tsconfig.json' (Configured) +Info 50 [00:01:31.000] Files (2) + +Info 50 [00:01:32.000] ----------------------------------------------- +Info 50 [00:01:33.000] Open files: +Info 50 [00:01:34.000] FileName: /user/username/projects/myproject/a/index.ts ProjectRootPath: undefined +Info 50 [00:01:35.000] Projects: /user/username/projects/myproject/a/tsconfig.json +Info 50 [00:01:36.000] FileName: /user/username/projects/myproject/b/helper.ts ProjectRootPath: undefined +Info 50 [00:01:37.000] Projects: /user/username/projects/myproject/b/tsconfig.json After request PolledWatches:: @@ -258,11 +258,11 @@ FsWatchesRecursive:: /user/username/projects/myproject/b: {} -Info 50 [16:01:38.000] response: +Info 50 [00:01:38.000] response: { "responseRequired": false } -Info 51 [16:01:39.000] request: +Info 51 [00:01:39.000] request: { "command": "references", "arguments": { @@ -303,13 +303,13 @@ FsWatchesRecursive:: /user/username/projects/myproject/b: {} -Info 52 [16:01:40.000] Finding references to /user/username/projects/myproject/a/index.ts position 40 in project /user/username/projects/myproject/a/tsconfig.json -Info 53 [16:01:41.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/b/lib/index.d.ts.map 500 undefined WatchType: Closed Script info -Info 54 [16:01:42.000] Search path: /user/username/projects/myproject/b -Info 55 [16:01:43.000] For info: /user/username/projects/myproject/b/index.ts :: Config file name: /user/username/projects/myproject/b/tsconfig.json -Info 56 [16:01:44.000] Search path: /user/username/projects/myproject/b -Info 57 [16:01:45.000] For info: /user/username/projects/myproject/b/index.ts :: Config file name: /user/username/projects/myproject/b/tsconfig.json -Info 58 [16:01:46.000] Finding references to /user/username/projects/myproject/b/index.ts position 13 in project /user/username/projects/myproject/b/tsconfig.json +Info 52 [00:01:40.000] Finding references to /user/username/projects/myproject/a/index.ts position 40 in project /user/username/projects/myproject/a/tsconfig.json +Info 53 [00:01:41.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/b/lib/index.d.ts.map 500 undefined WatchType: Closed Script info +Info 54 [00:01:42.000] Search path: /user/username/projects/myproject/b +Info 55 [00:01:43.000] For info: /user/username/projects/myproject/b/index.ts :: Config file name: /user/username/projects/myproject/b/tsconfig.json +Info 56 [00:01:44.000] Search path: /user/username/projects/myproject/b +Info 57 [00:01:45.000] For info: /user/username/projects/myproject/b/index.ts :: Config file name: /user/username/projects/myproject/b/tsconfig.json +Info 58 [00:01:46.000] Finding references to /user/username/projects/myproject/b/index.ts position 13 in project /user/username/projects/myproject/b/tsconfig.json After request PolledWatches:: @@ -342,7 +342,7 @@ FsWatchesRecursive:: /user/username/projects/myproject/b: {} -Info 59 [16:01:47.000] response: +Info 59 [00:01:47.000] response: { "response": { "refs": [ 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 9f4a235fabfd7..e23d9416a2d04 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 @@ -1,5 +1,5 @@ -Info 0 [16:00:29.000] Provided types map file "/a/lib/typesMap.json" doesn't exist -Info 1 [16:00:30.000] request: +Info 0 [00:00:29.000] Provided types map file "/a/lib/typesMap.json" doesn't exist +Info 1 [00:00:30.000] request: { "seq": 0, "type": "request", @@ -52,11 +52,11 @@ FsWatches:: FsWatchesRecursive:: -Info 2 [16:00:31.000] Search path: /user/username/projects/myproject/a -Info 3 [16:00:32.000] For info: /user/username/projects/myproject/a/index.ts :: Config file name: /user/username/projects/myproject/a/tsconfig.json -Info 4 [16:00:33.000] Creating configuration project /user/username/projects/myproject/a/tsconfig.json -Info 5 [16:00:34.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/a/tsconfig.json 2000 undefined Project: /user/username/projects/myproject/a/tsconfig.json WatchType: Config file -Info 6 [16:00:35.000] Config: /user/username/projects/myproject/a/tsconfig.json : { +Info 2 [00:00:31.000] Search path: /user/username/projects/myproject/a +Info 3 [00:00:32.000] For info: /user/username/projects/myproject/a/index.ts :: Config file name: /user/username/projects/myproject/a/tsconfig.json +Info 4 [00:00:33.000] Creating configuration project /user/username/projects/myproject/a/tsconfig.json +Info 5 [00:00:34.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/a/tsconfig.json 2000 undefined Project: /user/username/projects/myproject/a/tsconfig.json WatchType: Config file +Info 6 [00:00:35.000] Config: /user/username/projects/myproject/a/tsconfig.json : { "rootNames": [ "/user/username/projects/myproject/a/index.ts" ], @@ -73,11 +73,11 @@ Info 6 [16:00:35.000] Config: /user/username/projects/myproject/a/tsconfig.js } ] } -Info 7 [16:00:36.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/a 1 undefined Config: /user/username/projects/myproject/a/tsconfig.json WatchType: Wild card directory -Info 8 [16:00:37.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/a 1 undefined Config: /user/username/projects/myproject/a/tsconfig.json WatchType: Wild card directory -Info 9 [16:00:38.000] Plugins were requested but not running in environment that supports 'require'. Nothing will be loaded -Info 10 [16:00:39.000] Starting updateGraphWorker: Project: /user/username/projects/myproject/a/tsconfig.json -Info 11 [16:00:40.000] Config: /user/username/projects/myproject/b/tsconfig.json : { +Info 7 [00:00:36.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/a 1 undefined Config: /user/username/projects/myproject/a/tsconfig.json WatchType: Wild card directory +Info 8 [00:00:37.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/a 1 undefined Config: /user/username/projects/myproject/a/tsconfig.json WatchType: Wild card directory +Info 9 [00:00:38.000] Plugins were requested but not running in environment that supports 'require'. Nothing will be loaded +Info 10 [00:00:39.000] Starting updateGraphWorker: Project: /user/username/projects/myproject/a/tsconfig.json +Info 11 [00:00:40.000] Config: /user/username/projects/myproject/b/tsconfig.json : { "rootNames": [ "/user/username/projects/myproject/b/helper.ts", "/user/username/projects/myproject/b/index.ts" @@ -89,20 +89,20 @@ Info 11 [16:00:40.000] Config: /user/username/projects/myproject/b/tsconfig.js "configFilePath": "/user/username/projects/myproject/b/tsconfig.json" } } -Info 12 [16:00:41.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/b/tsconfig.json 2000 undefined Project: /user/username/projects/myproject/a/tsconfig.json WatchType: Config file -Info 13 [16:00:42.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/b 1 undefined Config: /user/username/projects/myproject/b/tsconfig.json WatchType: Wild card directory -Info 14 [16:00:43.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/b 1 undefined Config: /user/username/projects/myproject/b/tsconfig.json WatchType: Wild card directory -Info 15 [16:00:44.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/b 1 undefined Project: /user/username/projects/myproject/a/tsconfig.json WatchType: Failed Lookup Locations -Info 16 [16:00:45.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/b 1 undefined Project: /user/username/projects/myproject/a/tsconfig.json WatchType: Failed Lookup Locations -Info 17 [16:00:46.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/b/index.ts 500 undefined WatchType: Closed Script info -Info 18 [16:00:47.000] FileWatcher:: Added:: WatchInfo: /a/lib/lib.d.ts 500 undefined Project: /user/username/projects/myproject/a/tsconfig.json WatchType: Missing file -Info 19 [16:00:48.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/a/node_modules/@types 1 undefined Project: /user/username/projects/myproject/a/tsconfig.json WatchType: Type roots -Info 20 [16:00:49.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/a/node_modules/@types 1 undefined Project: /user/username/projects/myproject/a/tsconfig.json WatchType: Type roots -Info 21 [16:00:50.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/a/tsconfig.json WatchType: Type roots -Info 22 [16:00:51.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/a/tsconfig.json WatchType: Type roots -Info 23 [16:00:52.000] Finishing updateGraphWorker: Project: /user/username/projects/myproject/a/tsconfig.json Version: 1 structureChanged: true structureIsReused:: Not Elapsed:: *ms -Info 24 [16:00:53.000] Project '/user/username/projects/myproject/a/tsconfig.json' (Configured) -Info 25 [16:00:54.000] Files (2) +Info 12 [00:00:41.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/b/tsconfig.json 2000 undefined Project: /user/username/projects/myproject/a/tsconfig.json WatchType: Config file +Info 13 [00:00:42.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/b 1 undefined Config: /user/username/projects/myproject/b/tsconfig.json WatchType: Wild card directory +Info 14 [00:00:43.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/b 1 undefined Config: /user/username/projects/myproject/b/tsconfig.json WatchType: Wild card directory +Info 15 [00:00:44.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/b 1 undefined Project: /user/username/projects/myproject/a/tsconfig.json WatchType: Failed Lookup Locations +Info 16 [00:00:45.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/b 1 undefined Project: /user/username/projects/myproject/a/tsconfig.json WatchType: Failed Lookup Locations +Info 17 [00:00:46.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/b/index.ts 500 undefined WatchType: Closed Script info +Info 18 [00:00:47.000] FileWatcher:: Added:: WatchInfo: /a/lib/lib.d.ts 500 undefined Project: /user/username/projects/myproject/a/tsconfig.json WatchType: Missing file +Info 19 [00:00:48.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/a/node_modules/@types 1 undefined Project: /user/username/projects/myproject/a/tsconfig.json WatchType: Type roots +Info 20 [00:00:49.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/a/node_modules/@types 1 undefined Project: /user/username/projects/myproject/a/tsconfig.json WatchType: Type roots +Info 21 [00:00:50.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/a/tsconfig.json WatchType: Type roots +Info 22 [00:00:51.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/a/tsconfig.json WatchType: Type roots +Info 23 [00:00:52.000] Finishing updateGraphWorker: Project: /user/username/projects/myproject/a/tsconfig.json Version: 1 structureChanged: true structureIsReused:: Not Elapsed:: *ms +Info 24 [00:00:53.000] Project '/user/username/projects/myproject/a/tsconfig.json' (Configured) +Info 25 [00:00:54.000] Files (2) /user/username/projects/myproject/b/index.ts /user/username/projects/myproject/a/index.ts @@ -112,16 +112,16 @@ Info 25 [16:00:54.000] Files (2) index.ts Matched by default include pattern '**/*' -Info 26 [16:00:55.000] ----------------------------------------------- -Info 27 [16:00:56.000] Search path: /user/username/projects/myproject/a -Info 28 [16:00:57.000] For info: /user/username/projects/myproject/a/tsconfig.json :: No config files found. -Info 29 [16:00:58.000] Project '/user/username/projects/myproject/a/tsconfig.json' (Configured) -Info 29 [16:00:59.000] Files (2) +Info 26 [00:00:55.000] ----------------------------------------------- +Info 27 [00:00:56.000] Search path: /user/username/projects/myproject/a +Info 28 [00:00:57.000] For info: /user/username/projects/myproject/a/tsconfig.json :: No config files found. +Info 29 [00:00:58.000] Project '/user/username/projects/myproject/a/tsconfig.json' (Configured) +Info 29 [00:00:59.000] Files (2) -Info 29 [16:01:00.000] ----------------------------------------------- -Info 29 [16:01:01.000] Open files: -Info 29 [16:01:02.000] FileName: /user/username/projects/myproject/a/index.ts ProjectRootPath: undefined -Info 29 [16:01:03.000] Projects: /user/username/projects/myproject/a/tsconfig.json +Info 29 [00:01:00.000] ----------------------------------------------- +Info 29 [00:01:01.000] Open files: +Info 29 [00:01:02.000] FileName: /user/username/projects/myproject/a/index.ts ProjectRootPath: undefined +Info 29 [00:01:03.000] Projects: /user/username/projects/myproject/a/tsconfig.json After request PolledWatches:: @@ -146,11 +146,11 @@ FsWatchesRecursive:: /user/username/projects/myproject/b: {} -Info 29 [16:01:04.000] response: +Info 29 [00:01:04.000] response: { "responseRequired": false } -Info 30 [16:01:05.000] request: +Info 30 [00:01:05.000] request: { "seq": 0, "type": "request", @@ -183,21 +183,21 @@ FsWatchesRecursive:: /user/username/projects/myproject/b: {} -Info 31 [16:01:06.000] Search path: /user/username/projects/myproject/b -Info 32 [16:01:07.000] For info: /user/username/projects/myproject/b/helper.ts :: Config file name: /user/username/projects/myproject/b/tsconfig.json -Info 33 [16:01:08.000] Creating configuration project /user/username/projects/myproject/b/tsconfig.json -Info 34 [16:01:09.000] Plugins were requested but not running in environment that supports 'require'. Nothing will be loaded -Info 35 [16:01:10.000] Starting updateGraphWorker: Project: /user/username/projects/myproject/b/tsconfig.json -Info 36 [16:01:11.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/b 0 undefined Project: /user/username/projects/myproject/b/tsconfig.json WatchType: Failed Lookup Locations -Info 37 [16:01:12.000] 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 38 [16:01:13.000] FileWatcher:: Added:: WatchInfo: /a/lib/lib.d.ts 500 undefined Project: /user/username/projects/myproject/b/tsconfig.json WatchType: Missing file -Info 39 [16:01:14.000] 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 40 [16:01:15.000] 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 41 [16:01:16.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/b/tsconfig.json WatchType: Type roots -Info 42 [16:01:17.000] 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 43 [16:01:18.000] Finishing updateGraphWorker: Project: /user/username/projects/myproject/b/tsconfig.json Version: 1 structureChanged: true structureIsReused:: Not Elapsed:: *ms -Info 44 [16:01:19.000] Project '/user/username/projects/myproject/b/tsconfig.json' (Configured) -Info 45 [16:01:20.000] Files (2) +Info 31 [00:01:06.000] Search path: /user/username/projects/myproject/b +Info 32 [00:01:07.000] For info: /user/username/projects/myproject/b/helper.ts :: Config file name: /user/username/projects/myproject/b/tsconfig.json +Info 33 [00:01:08.000] Creating configuration project /user/username/projects/myproject/b/tsconfig.json +Info 34 [00:01:09.000] Plugins were requested but not running in environment that supports 'require'. Nothing will be loaded +Info 35 [00:01:10.000] Starting updateGraphWorker: Project: /user/username/projects/myproject/b/tsconfig.json +Info 36 [00:01:11.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/b 0 undefined Project: /user/username/projects/myproject/b/tsconfig.json WatchType: Failed Lookup Locations +Info 37 [00:01:12.000] 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 38 [00:01:13.000] FileWatcher:: Added:: WatchInfo: /a/lib/lib.d.ts 500 undefined Project: /user/username/projects/myproject/b/tsconfig.json WatchType: Missing file +Info 39 [00:01:14.000] 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 40 [00:01:15.000] 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 41 [00:01:16.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/b/tsconfig.json WatchType: Type roots +Info 42 [00:01:17.000] 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 43 [00:01:18.000] Finishing updateGraphWorker: Project: /user/username/projects/myproject/b/tsconfig.json Version: 1 structureChanged: true structureIsReused:: Not Elapsed:: *ms +Info 44 [00:01:19.000] Project '/user/username/projects/myproject/b/tsconfig.json' (Configured) +Info 45 [00:01:20.000] Files (2) /user/username/projects/myproject/b/index.ts /user/username/projects/myproject/b/helper.ts @@ -208,22 +208,22 @@ Info 45 [16:01:20.000] Files (2) helper.ts Matched by default include pattern '**/*' -Info 46 [16:01:21.000] ----------------------------------------------- -Info 47 [16:01:22.000] Search path: /user/username/projects/myproject/b -Info 48 [16:01:23.000] For info: /user/username/projects/myproject/b/tsconfig.json :: No config files found. -Info 49 [16:01:24.000] Project '/user/username/projects/myproject/a/tsconfig.json' (Configured) -Info 49 [16:01:25.000] Files (2) - -Info 49 [16:01:26.000] ----------------------------------------------- -Info 49 [16:01:27.000] Project '/user/username/projects/myproject/b/tsconfig.json' (Configured) -Info 49 [16:01:28.000] Files (2) - -Info 49 [16:01:29.000] ----------------------------------------------- -Info 49 [16:01:30.000] Open files: -Info 49 [16:01:31.000] FileName: /user/username/projects/myproject/a/index.ts ProjectRootPath: undefined -Info 49 [16:01:32.000] Projects: /user/username/projects/myproject/a/tsconfig.json -Info 49 [16:01:33.000] FileName: /user/username/projects/myproject/b/helper.ts ProjectRootPath: undefined -Info 49 [16:01:34.000] Projects: /user/username/projects/myproject/b/tsconfig.json +Info 46 [00:01:21.000] ----------------------------------------------- +Info 47 [00:01:22.000] Search path: /user/username/projects/myproject/b +Info 48 [00:01:23.000] For info: /user/username/projects/myproject/b/tsconfig.json :: No config files found. +Info 49 [00:01:24.000] Project '/user/username/projects/myproject/a/tsconfig.json' (Configured) +Info 49 [00:01:25.000] Files (2) + +Info 49 [00:01:26.000] ----------------------------------------------- +Info 49 [00:01:27.000] Project '/user/username/projects/myproject/b/tsconfig.json' (Configured) +Info 49 [00:01:28.000] Files (2) + +Info 49 [00:01:29.000] ----------------------------------------------- +Info 49 [00:01:30.000] Open files: +Info 49 [00:01:31.000] FileName: /user/username/projects/myproject/a/index.ts ProjectRootPath: undefined +Info 49 [00:01:32.000] Projects: /user/username/projects/myproject/a/tsconfig.json +Info 49 [00:01:33.000] FileName: /user/username/projects/myproject/b/helper.ts ProjectRootPath: undefined +Info 49 [00:01:34.000] Projects: /user/username/projects/myproject/b/tsconfig.json After request PolledWatches:: @@ -252,11 +252,11 @@ FsWatchesRecursive:: /user/username/projects/myproject/b: {} -Info 49 [16:01:35.000] response: +Info 49 [00:01:35.000] response: { "responseRequired": false } -Info 50 [16:01:36.000] request: +Info 50 [00:01:36.000] request: { "command": "references", "arguments": { @@ -295,12 +295,12 @@ FsWatchesRecursive:: /user/username/projects/myproject/b: {} -Info 51 [16:01:37.000] Finding references to /user/username/projects/myproject/a/index.ts position 40 in project /user/username/projects/myproject/a/tsconfig.json -Info 52 [16:01:38.000] Search path: /user/username/projects/myproject/b -Info 53 [16:01:39.000] For info: /user/username/projects/myproject/b/index.ts :: Config file name: /user/username/projects/myproject/b/tsconfig.json -Info 54 [16:01:40.000] Search path: /user/username/projects/myproject/b -Info 55 [16:01:41.000] For info: /user/username/projects/myproject/b/index.ts :: Config file name: /user/username/projects/myproject/b/tsconfig.json -Info 56 [16:01:42.000] Finding references to /user/username/projects/myproject/b/index.ts position 13 in project /user/username/projects/myproject/b/tsconfig.json +Info 51 [00:01:37.000] Finding references to /user/username/projects/myproject/a/index.ts position 40 in project /user/username/projects/myproject/a/tsconfig.json +Info 52 [00:01:38.000] Search path: /user/username/projects/myproject/b +Info 53 [00:01:39.000] For info: /user/username/projects/myproject/b/index.ts :: Config file name: /user/username/projects/myproject/b/tsconfig.json +Info 54 [00:01:40.000] Search path: /user/username/projects/myproject/b +Info 55 [00:01:41.000] For info: /user/username/projects/myproject/b/index.ts :: Config file name: /user/username/projects/myproject/b/tsconfig.json +Info 56 [00:01:42.000] Finding references to /user/username/projects/myproject/b/index.ts position 13 in project /user/username/projects/myproject/b/tsconfig.json After request PolledWatches:: @@ -329,7 +329,7 @@ FsWatchesRecursive:: /user/username/projects/myproject/b: {} -Info 57 [16:01:43.000] response: +Info 57 [00:01:43.000] response: { "response": { "refs": [ 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 6c65798e15a7f..4659083bed3d5 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 @@ -1,5 +1,5 @@ -Info 0 [16:00:31.000] Provided types map file "/a/lib/typesMap.json" doesn't exist -Info 1 [16:00:32.000] request: +Info 0 [00:00:31.000] Provided types map file "/a/lib/typesMap.json" doesn't exist +Info 1 [00:00:32.000] request: { "seq": 0, "type": "request", @@ -55,11 +55,11 @@ FsWatches:: FsWatchesRecursive:: -Info 2 [16:00:33.000] Search path: /user/username/projects/myproject/a -Info 3 [16:00:34.000] For info: /user/username/projects/myproject/a/index.ts :: Config file name: /user/username/projects/myproject/a/tsconfig.json -Info 4 [16:00:35.000] Creating configuration project /user/username/projects/myproject/a/tsconfig.json -Info 5 [16:00:36.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/a/tsconfig.json 2000 undefined Project: /user/username/projects/myproject/a/tsconfig.json WatchType: Config file -Info 6 [16:00:37.000] Config: /user/username/projects/myproject/a/tsconfig.json : { +Info 2 [00:00:33.000] Search path: /user/username/projects/myproject/a +Info 3 [00:00:34.000] For info: /user/username/projects/myproject/a/index.ts :: Config file name: /user/username/projects/myproject/a/tsconfig.json +Info 4 [00:00:35.000] Creating configuration project /user/username/projects/myproject/a/tsconfig.json +Info 5 [00:00:36.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/a/tsconfig.json 2000 undefined Project: /user/username/projects/myproject/a/tsconfig.json WatchType: Config file +Info 6 [00:00:37.000] Config: /user/username/projects/myproject/a/tsconfig.json : { "rootNames": [ "/user/username/projects/myproject/a/index.ts" ], @@ -76,11 +76,11 @@ Info 6 [16:00:37.000] Config: /user/username/projects/myproject/a/tsconfig.js } ] } -Info 7 [16:00:38.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/a 1 undefined Config: /user/username/projects/myproject/a/tsconfig.json WatchType: Wild card directory -Info 8 [16:00:39.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/a 1 undefined Config: /user/username/projects/myproject/a/tsconfig.json WatchType: Wild card directory -Info 9 [16:00:40.000] Plugins were requested but not running in environment that supports 'require'. Nothing will be loaded -Info 10 [16:00:41.000] Starting updateGraphWorker: Project: /user/username/projects/myproject/a/tsconfig.json -Info 11 [16:00:42.000] Config: /user/username/projects/myproject/b/tsconfig.json : { +Info 7 [00:00:38.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/a 1 undefined Config: /user/username/projects/myproject/a/tsconfig.json WatchType: Wild card directory +Info 8 [00:00:39.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/a 1 undefined Config: /user/username/projects/myproject/a/tsconfig.json WatchType: Wild card directory +Info 9 [00:00:40.000] Plugins were requested but not running in environment that supports 'require'. Nothing will be loaded +Info 10 [00:00:41.000] Starting updateGraphWorker: Project: /user/username/projects/myproject/a/tsconfig.json +Info 11 [00:00:42.000] Config: /user/username/projects/myproject/b/tsconfig.json : { "rootNames": [ "/user/username/projects/myproject/b/helper.ts", "/user/username/projects/myproject/b/index.ts" @@ -92,20 +92,20 @@ Info 11 [16:00:42.000] Config: /user/username/projects/myproject/b/tsconfig.js "configFilePath": "/user/username/projects/myproject/b/tsconfig.json" } } -Info 12 [16:00:43.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/b/tsconfig.json 2000 undefined Project: /user/username/projects/myproject/a/tsconfig.json WatchType: Config file -Info 13 [16:00:44.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/b 1 undefined Config: /user/username/projects/myproject/b/tsconfig.json WatchType: Wild card directory -Info 14 [16:00:45.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/b 1 undefined Config: /user/username/projects/myproject/b/tsconfig.json WatchType: Wild card directory -Info 15 [16:00:46.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/b 1 undefined Project: /user/username/projects/myproject/a/tsconfig.json WatchType: Failed Lookup Locations -Info 16 [16:00:47.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/b 1 undefined Project: /user/username/projects/myproject/a/tsconfig.json WatchType: Failed Lookup Locations -Info 17 [16:00:48.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/b/index.ts 500 undefined WatchType: Closed Script info -Info 18 [16:00:49.000] FileWatcher:: Added:: WatchInfo: /a/lib/lib.d.ts 500 undefined Project: /user/username/projects/myproject/a/tsconfig.json WatchType: Missing file -Info 19 [16:00:50.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/a/node_modules/@types 1 undefined Project: /user/username/projects/myproject/a/tsconfig.json WatchType: Type roots -Info 20 [16:00:51.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/a/node_modules/@types 1 undefined Project: /user/username/projects/myproject/a/tsconfig.json WatchType: Type roots -Info 21 [16:00:52.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/a/tsconfig.json WatchType: Type roots -Info 22 [16:00:53.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/a/tsconfig.json WatchType: Type roots -Info 23 [16:00:54.000] Finishing updateGraphWorker: Project: /user/username/projects/myproject/a/tsconfig.json Version: 1 structureChanged: true structureIsReused:: Not Elapsed:: *ms -Info 24 [16:00:55.000] Project '/user/username/projects/myproject/a/tsconfig.json' (Configured) -Info 25 [16:00:56.000] Files (2) +Info 12 [00:00:43.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/b/tsconfig.json 2000 undefined Project: /user/username/projects/myproject/a/tsconfig.json WatchType: Config file +Info 13 [00:00:44.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/b 1 undefined Config: /user/username/projects/myproject/b/tsconfig.json WatchType: Wild card directory +Info 14 [00:00:45.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/b 1 undefined Config: /user/username/projects/myproject/b/tsconfig.json WatchType: Wild card directory +Info 15 [00:00:46.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/b 1 undefined Project: /user/username/projects/myproject/a/tsconfig.json WatchType: Failed Lookup Locations +Info 16 [00:00:47.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/b 1 undefined Project: /user/username/projects/myproject/a/tsconfig.json WatchType: Failed Lookup Locations +Info 17 [00:00:48.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/b/index.ts 500 undefined WatchType: Closed Script info +Info 18 [00:00:49.000] FileWatcher:: Added:: WatchInfo: /a/lib/lib.d.ts 500 undefined Project: /user/username/projects/myproject/a/tsconfig.json WatchType: Missing file +Info 19 [00:00:50.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/a/node_modules/@types 1 undefined Project: /user/username/projects/myproject/a/tsconfig.json WatchType: Type roots +Info 20 [00:00:51.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/a/node_modules/@types 1 undefined Project: /user/username/projects/myproject/a/tsconfig.json WatchType: Type roots +Info 21 [00:00:52.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/a/tsconfig.json WatchType: Type roots +Info 22 [00:00:53.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/a/tsconfig.json WatchType: Type roots +Info 23 [00:00:54.000] Finishing updateGraphWorker: Project: /user/username/projects/myproject/a/tsconfig.json Version: 1 structureChanged: true structureIsReused:: Not Elapsed:: *ms +Info 24 [00:00:55.000] Project '/user/username/projects/myproject/a/tsconfig.json' (Configured) +Info 25 [00:00:56.000] Files (2) /user/username/projects/myproject/b/index.ts /user/username/projects/myproject/a/index.ts @@ -115,16 +115,16 @@ Info 25 [16:00:56.000] Files (2) index.ts Matched by default include pattern '**/*' -Info 26 [16:00:57.000] ----------------------------------------------- -Info 27 [16:00:58.000] Search path: /user/username/projects/myproject/a -Info 28 [16:00:59.000] For info: /user/username/projects/myproject/a/tsconfig.json :: No config files found. -Info 29 [16:01:00.000] Project '/user/username/projects/myproject/a/tsconfig.json' (Configured) -Info 29 [16:01:01.000] Files (2) +Info 26 [00:00:57.000] ----------------------------------------------- +Info 27 [00:00:58.000] Search path: /user/username/projects/myproject/a +Info 28 [00:00:59.000] For info: /user/username/projects/myproject/a/tsconfig.json :: No config files found. +Info 29 [00:01:00.000] Project '/user/username/projects/myproject/a/tsconfig.json' (Configured) +Info 29 [00:01:01.000] Files (2) -Info 29 [16:01:02.000] ----------------------------------------------- -Info 29 [16:01:03.000] Open files: -Info 29 [16:01:04.000] FileName: /user/username/projects/myproject/a/index.ts ProjectRootPath: undefined -Info 29 [16:01:05.000] Projects: /user/username/projects/myproject/a/tsconfig.json +Info 29 [00:01:02.000] ----------------------------------------------- +Info 29 [00:01:03.000] Open files: +Info 29 [00:01:04.000] FileName: /user/username/projects/myproject/a/index.ts ProjectRootPath: undefined +Info 29 [00:01:05.000] Projects: /user/username/projects/myproject/a/tsconfig.json After request PolledWatches:: @@ -149,11 +149,11 @@ FsWatchesRecursive:: /user/username/projects/myproject/b: {} -Info 29 [16:01:06.000] response: +Info 29 [00:01:06.000] response: { "responseRequired": false } -Info 30 [16:01:07.000] request: +Info 30 [00:01:07.000] request: { "seq": 0, "type": "request", @@ -186,21 +186,21 @@ FsWatchesRecursive:: /user/username/projects/myproject/b: {} -Info 31 [16:01:08.000] Search path: /user/username/projects/myproject/b -Info 32 [16:01:09.000] For info: /user/username/projects/myproject/b/helper.ts :: Config file name: /user/username/projects/myproject/b/tsconfig.json -Info 33 [16:01:10.000] Creating configuration project /user/username/projects/myproject/b/tsconfig.json -Info 34 [16:01:11.000] Plugins were requested but not running in environment that supports 'require'. Nothing will be loaded -Info 35 [16:01:12.000] Starting updateGraphWorker: Project: /user/username/projects/myproject/b/tsconfig.json -Info 36 [16:01:13.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/b 0 undefined Project: /user/username/projects/myproject/b/tsconfig.json WatchType: Failed Lookup Locations -Info 37 [16:01:14.000] 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 38 [16:01:15.000] FileWatcher:: Added:: WatchInfo: /a/lib/lib.d.ts 500 undefined Project: /user/username/projects/myproject/b/tsconfig.json WatchType: Missing file -Info 39 [16:01:16.000] 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 40 [16:01:17.000] 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 41 [16:01:18.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/b/tsconfig.json WatchType: Type roots -Info 42 [16:01:19.000] 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 43 [16:01:20.000] Finishing updateGraphWorker: Project: /user/username/projects/myproject/b/tsconfig.json Version: 1 structureChanged: true structureIsReused:: Not Elapsed:: *ms -Info 44 [16:01:21.000] Project '/user/username/projects/myproject/b/tsconfig.json' (Configured) -Info 45 [16:01:22.000] Files (2) +Info 31 [00:01:08.000] Search path: /user/username/projects/myproject/b +Info 32 [00:01:09.000] For info: /user/username/projects/myproject/b/helper.ts :: Config file name: /user/username/projects/myproject/b/tsconfig.json +Info 33 [00:01:10.000] Creating configuration project /user/username/projects/myproject/b/tsconfig.json +Info 34 [00:01:11.000] Plugins were requested but not running in environment that supports 'require'. Nothing will be loaded +Info 35 [00:01:12.000] Starting updateGraphWorker: Project: /user/username/projects/myproject/b/tsconfig.json +Info 36 [00:01:13.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/b 0 undefined Project: /user/username/projects/myproject/b/tsconfig.json WatchType: Failed Lookup Locations +Info 37 [00:01:14.000] 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 38 [00:01:15.000] FileWatcher:: Added:: WatchInfo: /a/lib/lib.d.ts 500 undefined Project: /user/username/projects/myproject/b/tsconfig.json WatchType: Missing file +Info 39 [00:01:16.000] 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 40 [00:01:17.000] 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 41 [00:01:18.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/b/tsconfig.json WatchType: Type roots +Info 42 [00:01:19.000] 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 43 [00:01:20.000] Finishing updateGraphWorker: Project: /user/username/projects/myproject/b/tsconfig.json Version: 1 structureChanged: true structureIsReused:: Not Elapsed:: *ms +Info 44 [00:01:21.000] Project '/user/username/projects/myproject/b/tsconfig.json' (Configured) +Info 45 [00:01:22.000] Files (2) /user/username/projects/myproject/b/index.ts /user/username/projects/myproject/b/helper.ts @@ -211,22 +211,22 @@ Info 45 [16:01:22.000] Files (2) helper.ts Matched by default include pattern '**/*' -Info 46 [16:01:23.000] ----------------------------------------------- -Info 47 [16:01:24.000] Search path: /user/username/projects/myproject/b -Info 48 [16:01:25.000] For info: /user/username/projects/myproject/b/tsconfig.json :: No config files found. -Info 49 [16:01:26.000] Project '/user/username/projects/myproject/a/tsconfig.json' (Configured) -Info 49 [16:01:27.000] Files (2) - -Info 49 [16:01:28.000] ----------------------------------------------- -Info 49 [16:01:29.000] Project '/user/username/projects/myproject/b/tsconfig.json' (Configured) -Info 49 [16:01:30.000] Files (2) - -Info 49 [16:01:31.000] ----------------------------------------------- -Info 49 [16:01:32.000] Open files: -Info 49 [16:01:33.000] FileName: /user/username/projects/myproject/a/index.ts ProjectRootPath: undefined -Info 49 [16:01:34.000] Projects: /user/username/projects/myproject/a/tsconfig.json -Info 49 [16:01:35.000] FileName: /user/username/projects/myproject/b/helper.ts ProjectRootPath: undefined -Info 49 [16:01:36.000] Projects: /user/username/projects/myproject/b/tsconfig.json +Info 46 [00:01:23.000] ----------------------------------------------- +Info 47 [00:01:24.000] Search path: /user/username/projects/myproject/b +Info 48 [00:01:25.000] For info: /user/username/projects/myproject/b/tsconfig.json :: No config files found. +Info 49 [00:01:26.000] Project '/user/username/projects/myproject/a/tsconfig.json' (Configured) +Info 49 [00:01:27.000] Files (2) + +Info 49 [00:01:28.000] ----------------------------------------------- +Info 49 [00:01:29.000] Project '/user/username/projects/myproject/b/tsconfig.json' (Configured) +Info 49 [00:01:30.000] Files (2) + +Info 49 [00:01:31.000] ----------------------------------------------- +Info 49 [00:01:32.000] Open files: +Info 49 [00:01:33.000] FileName: /user/username/projects/myproject/a/index.ts ProjectRootPath: undefined +Info 49 [00:01:34.000] Projects: /user/username/projects/myproject/a/tsconfig.json +Info 49 [00:01:35.000] FileName: /user/username/projects/myproject/b/helper.ts ProjectRootPath: undefined +Info 49 [00:01:36.000] Projects: /user/username/projects/myproject/b/tsconfig.json After request PolledWatches:: @@ -255,11 +255,11 @@ FsWatchesRecursive:: /user/username/projects/myproject/b: {} -Info 49 [16:01:37.000] response: +Info 49 [00:01:37.000] response: { "responseRequired": false } -Info 50 [16:01:38.000] request: +Info 50 [00:01:38.000] request: { "command": "references", "arguments": { @@ -298,12 +298,12 @@ FsWatchesRecursive:: /user/username/projects/myproject/b: {} -Info 51 [16:01:39.000] Finding references to /user/username/projects/myproject/a/index.ts position 40 in project /user/username/projects/myproject/a/tsconfig.json -Info 52 [16:01:40.000] Search path: /user/username/projects/myproject/b -Info 53 [16:01:41.000] For info: /user/username/projects/myproject/b/index.ts :: Config file name: /user/username/projects/myproject/b/tsconfig.json -Info 54 [16:01:42.000] Search path: /user/username/projects/myproject/b -Info 55 [16:01:43.000] For info: /user/username/projects/myproject/b/index.ts :: Config file name: /user/username/projects/myproject/b/tsconfig.json -Info 56 [16:01:44.000] Finding references to /user/username/projects/myproject/b/index.ts position 13 in project /user/username/projects/myproject/b/tsconfig.json +Info 51 [00:01:39.000] Finding references to /user/username/projects/myproject/a/index.ts position 40 in project /user/username/projects/myproject/a/tsconfig.json +Info 52 [00:01:40.000] Search path: /user/username/projects/myproject/b +Info 53 [00:01:41.000] For info: /user/username/projects/myproject/b/index.ts :: Config file name: /user/username/projects/myproject/b/tsconfig.json +Info 54 [00:01:42.000] Search path: /user/username/projects/myproject/b +Info 55 [00:01:43.000] For info: /user/username/projects/myproject/b/index.ts :: Config file name: /user/username/projects/myproject/b/tsconfig.json +Info 56 [00:01:44.000] Finding references to /user/username/projects/myproject/b/index.ts position 13 in project /user/username/projects/myproject/b/tsconfig.json After request PolledWatches:: @@ -332,7 +332,7 @@ FsWatchesRecursive:: /user/username/projects/myproject/b: {} -Info 57 [16:01:45.000] response: +Info 57 [00:01:45.000] response: { "response": { "refs": [ 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-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-not-loaded-and-refd-proj-loading-is-disabled-and-proj-ref-redirects-are-disabled-and-a-decl-map-is-missing.js index 825e2f2ab1ca0..a833e44cf1039 100644 --- a/tests/baselines/reference/tsserver/projectReferences/find-refs-to-decl-in-other-proj-when-proj-is-not-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-not-loaded-and-refd-proj-loading-is-disabled-and-proj-ref-redirects-are-disabled-and-a-decl-map-is-missing.js @@ -1,5 +1,5 @@ -Info 0 [16:00:29.000] Provided types map file "/a/lib/typesMap.json" doesn't exist -Info 1 [16:00:30.000] request: +Info 0 [00:00:29.000] Provided types map file "/a/lib/typesMap.json" doesn't exist +Info 1 [00:00:30.000] request: { "seq": 0, "type": "request", @@ -52,11 +52,11 @@ FsWatches:: FsWatchesRecursive:: -Info 2 [16:00:31.000] Search path: /user/username/projects/myproject/a -Info 3 [16:00:32.000] For info: /user/username/projects/myproject/a/index.ts :: Config file name: /user/username/projects/myproject/a/tsconfig.json -Info 4 [16:00:33.000] Creating configuration project /user/username/projects/myproject/a/tsconfig.json -Info 5 [16:00:34.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/a/tsconfig.json 2000 undefined Project: /user/username/projects/myproject/a/tsconfig.json WatchType: Config file -Info 6 [16:00:35.000] Config: /user/username/projects/myproject/a/tsconfig.json : { +Info 2 [00:00:31.000] Search path: /user/username/projects/myproject/a +Info 3 [00:00:32.000] For info: /user/username/projects/myproject/a/index.ts :: Config file name: /user/username/projects/myproject/a/tsconfig.json +Info 4 [00:00:33.000] Creating configuration project /user/username/projects/myproject/a/tsconfig.json +Info 5 [00:00:34.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/a/tsconfig.json 2000 undefined Project: /user/username/projects/myproject/a/tsconfig.json WatchType: Config file +Info 6 [00:00:35.000] Config: /user/username/projects/myproject/a/tsconfig.json : { "rootNames": [ "/user/username/projects/myproject/a/index.ts" ], @@ -73,11 +73,11 @@ Info 6 [16:00:35.000] Config: /user/username/projects/myproject/a/tsconfig.js } ] } -Info 7 [16:00:36.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/a 1 undefined Config: /user/username/projects/myproject/a/tsconfig.json WatchType: Wild card directory -Info 8 [16:00:37.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/a 1 undefined Config: /user/username/projects/myproject/a/tsconfig.json WatchType: Wild card directory -Info 9 [16:00:38.000] Plugins were requested but not running in environment that supports 'require'. Nothing will be loaded -Info 10 [16:00:39.000] Starting updateGraphWorker: Project: /user/username/projects/myproject/a/tsconfig.json -Info 11 [16:00:40.000] Config: /user/username/projects/myproject/b/tsconfig.json : { +Info 7 [00:00:36.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/a 1 undefined Config: /user/username/projects/myproject/a/tsconfig.json WatchType: Wild card directory +Info 8 [00:00:37.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/a 1 undefined Config: /user/username/projects/myproject/a/tsconfig.json WatchType: Wild card directory +Info 9 [00:00:38.000] Plugins were requested but not running in environment that supports 'require'. Nothing will be loaded +Info 10 [00:00:39.000] Starting updateGraphWorker: Project: /user/username/projects/myproject/a/tsconfig.json +Info 11 [00:00:40.000] Config: /user/username/projects/myproject/b/tsconfig.json : { "rootNames": [ "/user/username/projects/myproject/b/helper.ts", "/user/username/projects/myproject/b/index.ts" @@ -89,20 +89,20 @@ Info 11 [16:00:40.000] Config: /user/username/projects/myproject/b/tsconfig.js "configFilePath": "/user/username/projects/myproject/b/tsconfig.json" } } -Info 12 [16:00:41.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/b/tsconfig.json 2000 undefined Project: /user/username/projects/myproject/a/tsconfig.json WatchType: Config file -Info 13 [16:00:42.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/b 1 undefined Config: /user/username/projects/myproject/b/tsconfig.json WatchType: Wild card directory -Info 14 [16:00:43.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/b 1 undefined Config: /user/username/projects/myproject/b/tsconfig.json WatchType: Wild card directory -Info 15 [16:00:44.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/b 1 undefined Project: /user/username/projects/myproject/a/tsconfig.json WatchType: Failed Lookup Locations -Info 16 [16:00:45.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/b 1 undefined Project: /user/username/projects/myproject/a/tsconfig.json WatchType: Failed Lookup Locations -Info 17 [16:00:46.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/b/lib/index.d.ts 500 undefined WatchType: Closed Script info -Info 18 [16:00:47.000] FileWatcher:: Added:: WatchInfo: /a/lib/lib.d.ts 500 undefined Project: /user/username/projects/myproject/a/tsconfig.json WatchType: Missing file -Info 19 [16:00:48.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/a/node_modules/@types 1 undefined Project: /user/username/projects/myproject/a/tsconfig.json WatchType: Type roots -Info 20 [16:00:49.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/a/node_modules/@types 1 undefined Project: /user/username/projects/myproject/a/tsconfig.json WatchType: Type roots -Info 21 [16:00:50.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/a/tsconfig.json WatchType: Type roots -Info 22 [16:00:51.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/a/tsconfig.json WatchType: Type roots -Info 23 [16:00:52.000] Finishing updateGraphWorker: Project: /user/username/projects/myproject/a/tsconfig.json Version: 1 structureChanged: true structureIsReused:: Not Elapsed:: *ms -Info 24 [16:00:53.000] Project '/user/username/projects/myproject/a/tsconfig.json' (Configured) -Info 25 [16:00:54.000] Files (2) +Info 12 [00:00:41.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/b/tsconfig.json 2000 undefined Project: /user/username/projects/myproject/a/tsconfig.json WatchType: Config file +Info 13 [00:00:42.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/b 1 undefined Config: /user/username/projects/myproject/b/tsconfig.json WatchType: Wild card directory +Info 14 [00:00:43.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/b 1 undefined Config: /user/username/projects/myproject/b/tsconfig.json WatchType: Wild card directory +Info 15 [00:00:44.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/b 1 undefined Project: /user/username/projects/myproject/a/tsconfig.json WatchType: Failed Lookup Locations +Info 16 [00:00:45.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/b 1 undefined Project: /user/username/projects/myproject/a/tsconfig.json WatchType: Failed Lookup Locations +Info 17 [00:00:46.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/b/lib/index.d.ts 500 undefined WatchType: Closed Script info +Info 18 [00:00:47.000] FileWatcher:: Added:: WatchInfo: /a/lib/lib.d.ts 500 undefined Project: /user/username/projects/myproject/a/tsconfig.json WatchType: Missing file +Info 19 [00:00:48.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/a/node_modules/@types 1 undefined Project: /user/username/projects/myproject/a/tsconfig.json WatchType: Type roots +Info 20 [00:00:49.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/a/node_modules/@types 1 undefined Project: /user/username/projects/myproject/a/tsconfig.json WatchType: Type roots +Info 21 [00:00:50.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/a/tsconfig.json WatchType: Type roots +Info 22 [00:00:51.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/a/tsconfig.json WatchType: Type roots +Info 23 [00:00:52.000] Finishing updateGraphWorker: Project: /user/username/projects/myproject/a/tsconfig.json Version: 1 structureChanged: true structureIsReused:: Not Elapsed:: *ms +Info 24 [00:00:53.000] Project '/user/username/projects/myproject/a/tsconfig.json' (Configured) +Info 25 [00:00:54.000] Files (2) /user/username/projects/myproject/b/lib/index.d.ts /user/username/projects/myproject/a/index.ts @@ -112,16 +112,16 @@ Info 25 [16:00:54.000] Files (2) index.ts Matched by default include pattern '**/*' -Info 26 [16:00:55.000] ----------------------------------------------- -Info 27 [16:00:56.000] Search path: /user/username/projects/myproject/a -Info 28 [16:00:57.000] For info: /user/username/projects/myproject/a/tsconfig.json :: No config files found. -Info 29 [16:00:58.000] Project '/user/username/projects/myproject/a/tsconfig.json' (Configured) -Info 29 [16:00:59.000] Files (2) +Info 26 [00:00:55.000] ----------------------------------------------- +Info 27 [00:00:56.000] Search path: /user/username/projects/myproject/a +Info 28 [00:00:57.000] For info: /user/username/projects/myproject/a/tsconfig.json :: No config files found. +Info 29 [00:00:58.000] Project '/user/username/projects/myproject/a/tsconfig.json' (Configured) +Info 29 [00:00:59.000] Files (2) -Info 29 [16:01:00.000] ----------------------------------------------- -Info 29 [16:01:01.000] Open files: -Info 29 [16:01:02.000] FileName: /user/username/projects/myproject/a/index.ts ProjectRootPath: undefined -Info 29 [16:01:03.000] Projects: /user/username/projects/myproject/a/tsconfig.json +Info 29 [00:01:00.000] ----------------------------------------------- +Info 29 [00:01:01.000] Open files: +Info 29 [00:01:02.000] FileName: /user/username/projects/myproject/a/index.ts ProjectRootPath: undefined +Info 29 [00:01:03.000] Projects: /user/username/projects/myproject/a/tsconfig.json After request PolledWatches:: @@ -146,11 +146,11 @@ FsWatchesRecursive:: /user/username/projects/myproject/b: {} -Info 29 [16:01:04.000] response: +Info 29 [00:01:04.000] response: { "responseRequired": false } -Info 30 [16:01:05.000] request: +Info 30 [00:01:05.000] request: { "command": "references", "arguments": { @@ -185,8 +185,8 @@ FsWatchesRecursive:: /user/username/projects/myproject/b: {} -Info 31 [16:01:06.000] Finding references to /user/username/projects/myproject/a/index.ts position 40 in project /user/username/projects/myproject/a/tsconfig.json -Info 32 [16:01:07.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/b/lib/index.d.ts.map 2000 undefined WatchType: Missing source map file +Info 31 [00:01:06.000] Finding references to /user/username/projects/myproject/a/index.ts position 40 in project /user/username/projects/myproject/a/tsconfig.json +Info 32 [00:01:07.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/b/lib/index.d.ts.map 2000 undefined WatchType: Missing source map file After request PolledWatches:: @@ -213,7 +213,7 @@ FsWatchesRecursive:: /user/username/projects/myproject/b: {} -Info 33 [16:01:08.000] response: +Info 33 [00:01:08.000] response: { "response": { "refs": [ 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-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-not-loaded-and-refd-proj-loading-is-disabled-and-proj-ref-redirects-are-disabled-and-a-decl-map-is-present.js index 6a900027f7864..cf9096da904d7 100644 --- a/tests/baselines/reference/tsserver/projectReferences/find-refs-to-decl-in-other-proj-when-proj-is-not-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-not-loaded-and-refd-proj-loading-is-disabled-and-proj-ref-redirects-are-disabled-and-a-decl-map-is-present.js @@ -1,5 +1,5 @@ -Info 0 [16:00:31.000] Provided types map file "/a/lib/typesMap.json" doesn't exist -Info 1 [16:00:32.000] request: +Info 0 [00:00:31.000] Provided types map file "/a/lib/typesMap.json" doesn't exist +Info 1 [00:00:32.000] request: { "seq": 0, "type": "request", @@ -55,11 +55,11 @@ FsWatches:: FsWatchesRecursive:: -Info 2 [16:00:33.000] Search path: /user/username/projects/myproject/a -Info 3 [16:00:34.000] For info: /user/username/projects/myproject/a/index.ts :: Config file name: /user/username/projects/myproject/a/tsconfig.json -Info 4 [16:00:35.000] Creating configuration project /user/username/projects/myproject/a/tsconfig.json -Info 5 [16:00:36.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/a/tsconfig.json 2000 undefined Project: /user/username/projects/myproject/a/tsconfig.json WatchType: Config file -Info 6 [16:00:37.000] Config: /user/username/projects/myproject/a/tsconfig.json : { +Info 2 [00:00:33.000] Search path: /user/username/projects/myproject/a +Info 3 [00:00:34.000] For info: /user/username/projects/myproject/a/index.ts :: Config file name: /user/username/projects/myproject/a/tsconfig.json +Info 4 [00:00:35.000] Creating configuration project /user/username/projects/myproject/a/tsconfig.json +Info 5 [00:00:36.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/a/tsconfig.json 2000 undefined Project: /user/username/projects/myproject/a/tsconfig.json WatchType: Config file +Info 6 [00:00:37.000] Config: /user/username/projects/myproject/a/tsconfig.json : { "rootNames": [ "/user/username/projects/myproject/a/index.ts" ], @@ -76,11 +76,11 @@ Info 6 [16:00:37.000] Config: /user/username/projects/myproject/a/tsconfig.js } ] } -Info 7 [16:00:38.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/a 1 undefined Config: /user/username/projects/myproject/a/tsconfig.json WatchType: Wild card directory -Info 8 [16:00:39.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/a 1 undefined Config: /user/username/projects/myproject/a/tsconfig.json WatchType: Wild card directory -Info 9 [16:00:40.000] Plugins were requested but not running in environment that supports 'require'. Nothing will be loaded -Info 10 [16:00:41.000] Starting updateGraphWorker: Project: /user/username/projects/myproject/a/tsconfig.json -Info 11 [16:00:42.000] Config: /user/username/projects/myproject/b/tsconfig.json : { +Info 7 [00:00:38.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/a 1 undefined Config: /user/username/projects/myproject/a/tsconfig.json WatchType: Wild card directory +Info 8 [00:00:39.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/a 1 undefined Config: /user/username/projects/myproject/a/tsconfig.json WatchType: Wild card directory +Info 9 [00:00:40.000] Plugins were requested but not running in environment that supports 'require'. Nothing will be loaded +Info 10 [00:00:41.000] Starting updateGraphWorker: Project: /user/username/projects/myproject/a/tsconfig.json +Info 11 [00:00:42.000] Config: /user/username/projects/myproject/b/tsconfig.json : { "rootNames": [ "/user/username/projects/myproject/b/helper.ts", "/user/username/projects/myproject/b/index.ts" @@ -92,20 +92,20 @@ Info 11 [16:00:42.000] Config: /user/username/projects/myproject/b/tsconfig.js "configFilePath": "/user/username/projects/myproject/b/tsconfig.json" } } -Info 12 [16:00:43.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/b/tsconfig.json 2000 undefined Project: /user/username/projects/myproject/a/tsconfig.json WatchType: Config file -Info 13 [16:00:44.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/b 1 undefined Config: /user/username/projects/myproject/b/tsconfig.json WatchType: Wild card directory -Info 14 [16:00:45.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/b 1 undefined Config: /user/username/projects/myproject/b/tsconfig.json WatchType: Wild card directory -Info 15 [16:00:46.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/b 1 undefined Project: /user/username/projects/myproject/a/tsconfig.json WatchType: Failed Lookup Locations -Info 16 [16:00:47.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/b 1 undefined Project: /user/username/projects/myproject/a/tsconfig.json WatchType: Failed Lookup Locations -Info 17 [16:00:48.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/b/lib/index.d.ts 500 undefined WatchType: Closed Script info -Info 18 [16:00:49.000] FileWatcher:: Added:: WatchInfo: /a/lib/lib.d.ts 500 undefined Project: /user/username/projects/myproject/a/tsconfig.json WatchType: Missing file -Info 19 [16:00:50.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/a/node_modules/@types 1 undefined Project: /user/username/projects/myproject/a/tsconfig.json WatchType: Type roots -Info 20 [16:00:51.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/a/node_modules/@types 1 undefined Project: /user/username/projects/myproject/a/tsconfig.json WatchType: Type roots -Info 21 [16:00:52.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/a/tsconfig.json WatchType: Type roots -Info 22 [16:00:53.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/a/tsconfig.json WatchType: Type roots -Info 23 [16:00:54.000] Finishing updateGraphWorker: Project: /user/username/projects/myproject/a/tsconfig.json Version: 1 structureChanged: true structureIsReused:: Not Elapsed:: *ms -Info 24 [16:00:55.000] Project '/user/username/projects/myproject/a/tsconfig.json' (Configured) -Info 25 [16:00:56.000] Files (2) +Info 12 [00:00:43.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/b/tsconfig.json 2000 undefined Project: /user/username/projects/myproject/a/tsconfig.json WatchType: Config file +Info 13 [00:00:44.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/b 1 undefined Config: /user/username/projects/myproject/b/tsconfig.json WatchType: Wild card directory +Info 14 [00:00:45.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/b 1 undefined Config: /user/username/projects/myproject/b/tsconfig.json WatchType: Wild card directory +Info 15 [00:00:46.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/b 1 undefined Project: /user/username/projects/myproject/a/tsconfig.json WatchType: Failed Lookup Locations +Info 16 [00:00:47.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/b 1 undefined Project: /user/username/projects/myproject/a/tsconfig.json WatchType: Failed Lookup Locations +Info 17 [00:00:48.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/b/lib/index.d.ts 500 undefined WatchType: Closed Script info +Info 18 [00:00:49.000] FileWatcher:: Added:: WatchInfo: /a/lib/lib.d.ts 500 undefined Project: /user/username/projects/myproject/a/tsconfig.json WatchType: Missing file +Info 19 [00:00:50.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/a/node_modules/@types 1 undefined Project: /user/username/projects/myproject/a/tsconfig.json WatchType: Type roots +Info 20 [00:00:51.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/a/node_modules/@types 1 undefined Project: /user/username/projects/myproject/a/tsconfig.json WatchType: Type roots +Info 21 [00:00:52.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/a/tsconfig.json WatchType: Type roots +Info 22 [00:00:53.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/a/tsconfig.json WatchType: Type roots +Info 23 [00:00:54.000] Finishing updateGraphWorker: Project: /user/username/projects/myproject/a/tsconfig.json Version: 1 structureChanged: true structureIsReused:: Not Elapsed:: *ms +Info 24 [00:00:55.000] Project '/user/username/projects/myproject/a/tsconfig.json' (Configured) +Info 25 [00:00:56.000] Files (2) /user/username/projects/myproject/b/lib/index.d.ts /user/username/projects/myproject/a/index.ts @@ -115,16 +115,16 @@ Info 25 [16:00:56.000] Files (2) index.ts Matched by default include pattern '**/*' -Info 26 [16:00:57.000] ----------------------------------------------- -Info 27 [16:00:58.000] Search path: /user/username/projects/myproject/a -Info 28 [16:00:59.000] For info: /user/username/projects/myproject/a/tsconfig.json :: No config files found. -Info 29 [16:01:00.000] Project '/user/username/projects/myproject/a/tsconfig.json' (Configured) -Info 29 [16:01:01.000] Files (2) +Info 26 [00:00:57.000] ----------------------------------------------- +Info 27 [00:00:58.000] Search path: /user/username/projects/myproject/a +Info 28 [00:00:59.000] For info: /user/username/projects/myproject/a/tsconfig.json :: No config files found. +Info 29 [00:01:00.000] Project '/user/username/projects/myproject/a/tsconfig.json' (Configured) +Info 29 [00:01:01.000] Files (2) -Info 29 [16:01:02.000] ----------------------------------------------- -Info 29 [16:01:03.000] Open files: -Info 29 [16:01:04.000] FileName: /user/username/projects/myproject/a/index.ts ProjectRootPath: undefined -Info 29 [16:01:05.000] Projects: /user/username/projects/myproject/a/tsconfig.json +Info 29 [00:01:02.000] ----------------------------------------------- +Info 29 [00:01:03.000] Open files: +Info 29 [00:01:04.000] FileName: /user/username/projects/myproject/a/index.ts ProjectRootPath: undefined +Info 29 [00:01:05.000] Projects: /user/username/projects/myproject/a/tsconfig.json After request PolledWatches:: @@ -149,11 +149,11 @@ FsWatchesRecursive:: /user/username/projects/myproject/b: {} -Info 29 [16:01:06.000] response: +Info 29 [00:01:06.000] response: { "responseRequired": false } -Info 30 [16:01:07.000] request: +Info 30 [00:01:07.000] request: { "command": "references", "arguments": { @@ -188,13 +188,13 @@ FsWatchesRecursive:: /user/username/projects/myproject/b: {} -Info 31 [16:01:08.000] Finding references to /user/username/projects/myproject/a/index.ts position 40 in project /user/username/projects/myproject/a/tsconfig.json -Info 32 [16:01:09.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/b/lib/index.d.ts.map 500 undefined WatchType: Closed Script info -Info 33 [16:01:10.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/b/index.ts 500 undefined WatchType: Closed Script info -Info 34 [16:01:11.000] Search path: /user/username/projects/myproject/b -Info 35 [16:01:12.000] For info: /user/username/projects/myproject/b/index.ts :: Config file name: /user/username/projects/myproject/b/tsconfig.json -Info 36 [16:01:13.000] Search path: /user/username/projects/myproject/b -Info 37 [16:01:14.000] For info: /user/username/projects/myproject/b/index.ts :: Config file name: /user/username/projects/myproject/b/tsconfig.json +Info 31 [00:01:08.000] Finding references to /user/username/projects/myproject/a/index.ts position 40 in project /user/username/projects/myproject/a/tsconfig.json +Info 32 [00:01:09.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/b/lib/index.d.ts.map 500 undefined WatchType: Closed Script info +Info 33 [00:01:10.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/b/index.ts 500 undefined WatchType: Closed Script info +Info 34 [00:01:11.000] Search path: /user/username/projects/myproject/b +Info 35 [00:01:12.000] For info: /user/username/projects/myproject/b/index.ts :: Config file name: /user/username/projects/myproject/b/tsconfig.json +Info 36 [00:01:13.000] Search path: /user/username/projects/myproject/b +Info 37 [00:01:14.000] For info: /user/username/projects/myproject/b/index.ts :: Config file name: /user/username/projects/myproject/b/tsconfig.json After request PolledWatches:: @@ -223,7 +223,7 @@ FsWatchesRecursive:: /user/username/projects/myproject/b: {} -Info 38 [16:01:15.000] response: +Info 38 [00:01:15.000] response: { "response": { "refs": [ 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-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-not-loaded-and-refd-proj-loading-is-disabled-and-proj-ref-redirects-are-enabled-and-a-decl-map-is-missing.js index 33b0f239d0c89..f0d6376d0985e 100644 --- a/tests/baselines/reference/tsserver/projectReferences/find-refs-to-decl-in-other-proj-when-proj-is-not-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-not-loaded-and-refd-proj-loading-is-disabled-and-proj-ref-redirects-are-enabled-and-a-decl-map-is-missing.js @@ -1,5 +1,5 @@ -Info 0 [16:00:29.000] Provided types map file "/a/lib/typesMap.json" doesn't exist -Info 1 [16:00:30.000] request: +Info 0 [00:00:29.000] Provided types map file "/a/lib/typesMap.json" doesn't exist +Info 1 [00:00:30.000] request: { "seq": 0, "type": "request", @@ -52,11 +52,11 @@ FsWatches:: FsWatchesRecursive:: -Info 2 [16:00:31.000] Search path: /user/username/projects/myproject/a -Info 3 [16:00:32.000] For info: /user/username/projects/myproject/a/index.ts :: Config file name: /user/username/projects/myproject/a/tsconfig.json -Info 4 [16:00:33.000] Creating configuration project /user/username/projects/myproject/a/tsconfig.json -Info 5 [16:00:34.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/a/tsconfig.json 2000 undefined Project: /user/username/projects/myproject/a/tsconfig.json WatchType: Config file -Info 6 [16:00:35.000] Config: /user/username/projects/myproject/a/tsconfig.json : { +Info 2 [00:00:31.000] Search path: /user/username/projects/myproject/a +Info 3 [00:00:32.000] For info: /user/username/projects/myproject/a/index.ts :: Config file name: /user/username/projects/myproject/a/tsconfig.json +Info 4 [00:00:33.000] Creating configuration project /user/username/projects/myproject/a/tsconfig.json +Info 5 [00:00:34.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/a/tsconfig.json 2000 undefined Project: /user/username/projects/myproject/a/tsconfig.json WatchType: Config file +Info 6 [00:00:35.000] Config: /user/username/projects/myproject/a/tsconfig.json : { "rootNames": [ "/user/username/projects/myproject/a/index.ts" ], @@ -73,11 +73,11 @@ Info 6 [16:00:35.000] Config: /user/username/projects/myproject/a/tsconfig.js } ] } -Info 7 [16:00:36.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/a 1 undefined Config: /user/username/projects/myproject/a/tsconfig.json WatchType: Wild card directory -Info 8 [16:00:37.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/a 1 undefined Config: /user/username/projects/myproject/a/tsconfig.json WatchType: Wild card directory -Info 9 [16:00:38.000] Plugins were requested but not running in environment that supports 'require'. Nothing will be loaded -Info 10 [16:00:39.000] Starting updateGraphWorker: Project: /user/username/projects/myproject/a/tsconfig.json -Info 11 [16:00:40.000] Config: /user/username/projects/myproject/b/tsconfig.json : { +Info 7 [00:00:36.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/a 1 undefined Config: /user/username/projects/myproject/a/tsconfig.json WatchType: Wild card directory +Info 8 [00:00:37.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/a 1 undefined Config: /user/username/projects/myproject/a/tsconfig.json WatchType: Wild card directory +Info 9 [00:00:38.000] Plugins were requested but not running in environment that supports 'require'. Nothing will be loaded +Info 10 [00:00:39.000] Starting updateGraphWorker: Project: /user/username/projects/myproject/a/tsconfig.json +Info 11 [00:00:40.000] Config: /user/username/projects/myproject/b/tsconfig.json : { "rootNames": [ "/user/username/projects/myproject/b/helper.ts", "/user/username/projects/myproject/b/index.ts" @@ -89,20 +89,20 @@ Info 11 [16:00:40.000] Config: /user/username/projects/myproject/b/tsconfig.js "configFilePath": "/user/username/projects/myproject/b/tsconfig.json" } } -Info 12 [16:00:41.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/b/tsconfig.json 2000 undefined Project: /user/username/projects/myproject/a/tsconfig.json WatchType: Config file -Info 13 [16:00:42.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/b 1 undefined Config: /user/username/projects/myproject/b/tsconfig.json WatchType: Wild card directory -Info 14 [16:00:43.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/b 1 undefined Config: /user/username/projects/myproject/b/tsconfig.json WatchType: Wild card directory -Info 15 [16:00:44.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/b 1 undefined Project: /user/username/projects/myproject/a/tsconfig.json WatchType: Failed Lookup Locations -Info 16 [16:00:45.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/b 1 undefined Project: /user/username/projects/myproject/a/tsconfig.json WatchType: Failed Lookup Locations -Info 17 [16:00:46.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/b/index.ts 500 undefined WatchType: Closed Script info -Info 18 [16:00:47.000] FileWatcher:: Added:: WatchInfo: /a/lib/lib.d.ts 500 undefined Project: /user/username/projects/myproject/a/tsconfig.json WatchType: Missing file -Info 19 [16:00:48.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/a/node_modules/@types 1 undefined Project: /user/username/projects/myproject/a/tsconfig.json WatchType: Type roots -Info 20 [16:00:49.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/a/node_modules/@types 1 undefined Project: /user/username/projects/myproject/a/tsconfig.json WatchType: Type roots -Info 21 [16:00:50.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/a/tsconfig.json WatchType: Type roots -Info 22 [16:00:51.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/a/tsconfig.json WatchType: Type roots -Info 23 [16:00:52.000] Finishing updateGraphWorker: Project: /user/username/projects/myproject/a/tsconfig.json Version: 1 structureChanged: true structureIsReused:: Not Elapsed:: *ms -Info 24 [16:00:53.000] Project '/user/username/projects/myproject/a/tsconfig.json' (Configured) -Info 25 [16:00:54.000] Files (2) +Info 12 [00:00:41.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/b/tsconfig.json 2000 undefined Project: /user/username/projects/myproject/a/tsconfig.json WatchType: Config file +Info 13 [00:00:42.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/b 1 undefined Config: /user/username/projects/myproject/b/tsconfig.json WatchType: Wild card directory +Info 14 [00:00:43.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/b 1 undefined Config: /user/username/projects/myproject/b/tsconfig.json WatchType: Wild card directory +Info 15 [00:00:44.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/b 1 undefined Project: /user/username/projects/myproject/a/tsconfig.json WatchType: Failed Lookup Locations +Info 16 [00:00:45.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/b 1 undefined Project: /user/username/projects/myproject/a/tsconfig.json WatchType: Failed Lookup Locations +Info 17 [00:00:46.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/b/index.ts 500 undefined WatchType: Closed Script info +Info 18 [00:00:47.000] FileWatcher:: Added:: WatchInfo: /a/lib/lib.d.ts 500 undefined Project: /user/username/projects/myproject/a/tsconfig.json WatchType: Missing file +Info 19 [00:00:48.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/a/node_modules/@types 1 undefined Project: /user/username/projects/myproject/a/tsconfig.json WatchType: Type roots +Info 20 [00:00:49.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/a/node_modules/@types 1 undefined Project: /user/username/projects/myproject/a/tsconfig.json WatchType: Type roots +Info 21 [00:00:50.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/a/tsconfig.json WatchType: Type roots +Info 22 [00:00:51.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/a/tsconfig.json WatchType: Type roots +Info 23 [00:00:52.000] Finishing updateGraphWorker: Project: /user/username/projects/myproject/a/tsconfig.json Version: 1 structureChanged: true structureIsReused:: Not Elapsed:: *ms +Info 24 [00:00:53.000] Project '/user/username/projects/myproject/a/tsconfig.json' (Configured) +Info 25 [00:00:54.000] Files (2) /user/username/projects/myproject/b/index.ts /user/username/projects/myproject/a/index.ts @@ -112,16 +112,16 @@ Info 25 [16:00:54.000] Files (2) index.ts Matched by default include pattern '**/*' -Info 26 [16:00:55.000] ----------------------------------------------- -Info 27 [16:00:56.000] Search path: /user/username/projects/myproject/a -Info 28 [16:00:57.000] For info: /user/username/projects/myproject/a/tsconfig.json :: No config files found. -Info 29 [16:00:58.000] Project '/user/username/projects/myproject/a/tsconfig.json' (Configured) -Info 29 [16:00:59.000] Files (2) +Info 26 [00:00:55.000] ----------------------------------------------- +Info 27 [00:00:56.000] Search path: /user/username/projects/myproject/a +Info 28 [00:00:57.000] For info: /user/username/projects/myproject/a/tsconfig.json :: No config files found. +Info 29 [00:00:58.000] Project '/user/username/projects/myproject/a/tsconfig.json' (Configured) +Info 29 [00:00:59.000] Files (2) -Info 29 [16:01:00.000] ----------------------------------------------- -Info 29 [16:01:01.000] Open files: -Info 29 [16:01:02.000] FileName: /user/username/projects/myproject/a/index.ts ProjectRootPath: undefined -Info 29 [16:01:03.000] Projects: /user/username/projects/myproject/a/tsconfig.json +Info 29 [00:01:00.000] ----------------------------------------------- +Info 29 [00:01:01.000] Open files: +Info 29 [00:01:02.000] FileName: /user/username/projects/myproject/a/index.ts ProjectRootPath: undefined +Info 29 [00:01:03.000] Projects: /user/username/projects/myproject/a/tsconfig.json After request PolledWatches:: @@ -146,11 +146,11 @@ FsWatchesRecursive:: /user/username/projects/myproject/b: {} -Info 29 [16:01:04.000] response: +Info 29 [00:01:04.000] response: { "responseRequired": false } -Info 30 [16:01:05.000] request: +Info 30 [00:01:05.000] request: { "command": "references", "arguments": { @@ -185,11 +185,11 @@ FsWatchesRecursive:: /user/username/projects/myproject/b: {} -Info 31 [16:01:06.000] Finding references to /user/username/projects/myproject/a/index.ts position 40 in project /user/username/projects/myproject/a/tsconfig.json -Info 32 [16:01:07.000] Search path: /user/username/projects/myproject/b -Info 33 [16:01:08.000] For info: /user/username/projects/myproject/b/index.ts :: Config file name: /user/username/projects/myproject/b/tsconfig.json -Info 34 [16:01:09.000] Search path: /user/username/projects/myproject/b -Info 35 [16:01:10.000] For info: /user/username/projects/myproject/b/index.ts :: Config file name: /user/username/projects/myproject/b/tsconfig.json +Info 31 [00:01:06.000] Finding references to /user/username/projects/myproject/a/index.ts position 40 in project /user/username/projects/myproject/a/tsconfig.json +Info 32 [00:01:07.000] Search path: /user/username/projects/myproject/b +Info 33 [00:01:08.000] For info: /user/username/projects/myproject/b/index.ts :: Config file name: /user/username/projects/myproject/b/tsconfig.json +Info 34 [00:01:09.000] Search path: /user/username/projects/myproject/b +Info 35 [00:01:10.000] For info: /user/username/projects/myproject/b/index.ts :: Config file name: /user/username/projects/myproject/b/tsconfig.json After request PolledWatches:: @@ -214,7 +214,7 @@ FsWatchesRecursive:: /user/username/projects/myproject/b: {} -Info 36 [16:01:11.000] response: +Info 36 [00:01:11.000] response: { "response": { "refs": [ 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-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-not-loaded-and-refd-proj-loading-is-disabled-and-proj-ref-redirects-are-enabled-and-a-decl-map-is-present.js index 943ecac885fb3..e25aeed59c965 100644 --- a/tests/baselines/reference/tsserver/projectReferences/find-refs-to-decl-in-other-proj-when-proj-is-not-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-not-loaded-and-refd-proj-loading-is-disabled-and-proj-ref-redirects-are-enabled-and-a-decl-map-is-present.js @@ -1,5 +1,5 @@ -Info 0 [16:00:31.000] Provided types map file "/a/lib/typesMap.json" doesn't exist -Info 1 [16:00:32.000] request: +Info 0 [00:00:31.000] Provided types map file "/a/lib/typesMap.json" doesn't exist +Info 1 [00:00:32.000] request: { "seq": 0, "type": "request", @@ -55,11 +55,11 @@ FsWatches:: FsWatchesRecursive:: -Info 2 [16:00:33.000] Search path: /user/username/projects/myproject/a -Info 3 [16:00:34.000] For info: /user/username/projects/myproject/a/index.ts :: Config file name: /user/username/projects/myproject/a/tsconfig.json -Info 4 [16:00:35.000] Creating configuration project /user/username/projects/myproject/a/tsconfig.json -Info 5 [16:00:36.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/a/tsconfig.json 2000 undefined Project: /user/username/projects/myproject/a/tsconfig.json WatchType: Config file -Info 6 [16:00:37.000] Config: /user/username/projects/myproject/a/tsconfig.json : { +Info 2 [00:00:33.000] Search path: /user/username/projects/myproject/a +Info 3 [00:00:34.000] For info: /user/username/projects/myproject/a/index.ts :: Config file name: /user/username/projects/myproject/a/tsconfig.json +Info 4 [00:00:35.000] Creating configuration project /user/username/projects/myproject/a/tsconfig.json +Info 5 [00:00:36.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/a/tsconfig.json 2000 undefined Project: /user/username/projects/myproject/a/tsconfig.json WatchType: Config file +Info 6 [00:00:37.000] Config: /user/username/projects/myproject/a/tsconfig.json : { "rootNames": [ "/user/username/projects/myproject/a/index.ts" ], @@ -76,11 +76,11 @@ Info 6 [16:00:37.000] Config: /user/username/projects/myproject/a/tsconfig.js } ] } -Info 7 [16:00:38.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/a 1 undefined Config: /user/username/projects/myproject/a/tsconfig.json WatchType: Wild card directory -Info 8 [16:00:39.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/a 1 undefined Config: /user/username/projects/myproject/a/tsconfig.json WatchType: Wild card directory -Info 9 [16:00:40.000] Plugins were requested but not running in environment that supports 'require'. Nothing will be loaded -Info 10 [16:00:41.000] Starting updateGraphWorker: Project: /user/username/projects/myproject/a/tsconfig.json -Info 11 [16:00:42.000] Config: /user/username/projects/myproject/b/tsconfig.json : { +Info 7 [00:00:38.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/a 1 undefined Config: /user/username/projects/myproject/a/tsconfig.json WatchType: Wild card directory +Info 8 [00:00:39.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/a 1 undefined Config: /user/username/projects/myproject/a/tsconfig.json WatchType: Wild card directory +Info 9 [00:00:40.000] Plugins were requested but not running in environment that supports 'require'. Nothing will be loaded +Info 10 [00:00:41.000] Starting updateGraphWorker: Project: /user/username/projects/myproject/a/tsconfig.json +Info 11 [00:00:42.000] Config: /user/username/projects/myproject/b/tsconfig.json : { "rootNames": [ "/user/username/projects/myproject/b/helper.ts", "/user/username/projects/myproject/b/index.ts" @@ -92,20 +92,20 @@ Info 11 [16:00:42.000] Config: /user/username/projects/myproject/b/tsconfig.js "configFilePath": "/user/username/projects/myproject/b/tsconfig.json" } } -Info 12 [16:00:43.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/b/tsconfig.json 2000 undefined Project: /user/username/projects/myproject/a/tsconfig.json WatchType: Config file -Info 13 [16:00:44.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/b 1 undefined Config: /user/username/projects/myproject/b/tsconfig.json WatchType: Wild card directory -Info 14 [16:00:45.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/b 1 undefined Config: /user/username/projects/myproject/b/tsconfig.json WatchType: Wild card directory -Info 15 [16:00:46.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/b 1 undefined Project: /user/username/projects/myproject/a/tsconfig.json WatchType: Failed Lookup Locations -Info 16 [16:00:47.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/b 1 undefined Project: /user/username/projects/myproject/a/tsconfig.json WatchType: Failed Lookup Locations -Info 17 [16:00:48.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/b/index.ts 500 undefined WatchType: Closed Script info -Info 18 [16:00:49.000] FileWatcher:: Added:: WatchInfo: /a/lib/lib.d.ts 500 undefined Project: /user/username/projects/myproject/a/tsconfig.json WatchType: Missing file -Info 19 [16:00:50.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/a/node_modules/@types 1 undefined Project: /user/username/projects/myproject/a/tsconfig.json WatchType: Type roots -Info 20 [16:00:51.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/a/node_modules/@types 1 undefined Project: /user/username/projects/myproject/a/tsconfig.json WatchType: Type roots -Info 21 [16:00:52.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/a/tsconfig.json WatchType: Type roots -Info 22 [16:00:53.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/a/tsconfig.json WatchType: Type roots -Info 23 [16:00:54.000] Finishing updateGraphWorker: Project: /user/username/projects/myproject/a/tsconfig.json Version: 1 structureChanged: true structureIsReused:: Not Elapsed:: *ms -Info 24 [16:00:55.000] Project '/user/username/projects/myproject/a/tsconfig.json' (Configured) -Info 25 [16:00:56.000] Files (2) +Info 12 [00:00:43.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/b/tsconfig.json 2000 undefined Project: /user/username/projects/myproject/a/tsconfig.json WatchType: Config file +Info 13 [00:00:44.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/b 1 undefined Config: /user/username/projects/myproject/b/tsconfig.json WatchType: Wild card directory +Info 14 [00:00:45.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/b 1 undefined Config: /user/username/projects/myproject/b/tsconfig.json WatchType: Wild card directory +Info 15 [00:00:46.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/b 1 undefined Project: /user/username/projects/myproject/a/tsconfig.json WatchType: Failed Lookup Locations +Info 16 [00:00:47.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/b 1 undefined Project: /user/username/projects/myproject/a/tsconfig.json WatchType: Failed Lookup Locations +Info 17 [00:00:48.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/b/index.ts 500 undefined WatchType: Closed Script info +Info 18 [00:00:49.000] FileWatcher:: Added:: WatchInfo: /a/lib/lib.d.ts 500 undefined Project: /user/username/projects/myproject/a/tsconfig.json WatchType: Missing file +Info 19 [00:00:50.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/a/node_modules/@types 1 undefined Project: /user/username/projects/myproject/a/tsconfig.json WatchType: Type roots +Info 20 [00:00:51.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/a/node_modules/@types 1 undefined Project: /user/username/projects/myproject/a/tsconfig.json WatchType: Type roots +Info 21 [00:00:52.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/a/tsconfig.json WatchType: Type roots +Info 22 [00:00:53.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/a/tsconfig.json WatchType: Type roots +Info 23 [00:00:54.000] Finishing updateGraphWorker: Project: /user/username/projects/myproject/a/tsconfig.json Version: 1 structureChanged: true structureIsReused:: Not Elapsed:: *ms +Info 24 [00:00:55.000] Project '/user/username/projects/myproject/a/tsconfig.json' (Configured) +Info 25 [00:00:56.000] Files (2) /user/username/projects/myproject/b/index.ts /user/username/projects/myproject/a/index.ts @@ -115,16 +115,16 @@ Info 25 [16:00:56.000] Files (2) index.ts Matched by default include pattern '**/*' -Info 26 [16:00:57.000] ----------------------------------------------- -Info 27 [16:00:58.000] Search path: /user/username/projects/myproject/a -Info 28 [16:00:59.000] For info: /user/username/projects/myproject/a/tsconfig.json :: No config files found. -Info 29 [16:01:00.000] Project '/user/username/projects/myproject/a/tsconfig.json' (Configured) -Info 29 [16:01:01.000] Files (2) +Info 26 [00:00:57.000] ----------------------------------------------- +Info 27 [00:00:58.000] Search path: /user/username/projects/myproject/a +Info 28 [00:00:59.000] For info: /user/username/projects/myproject/a/tsconfig.json :: No config files found. +Info 29 [00:01:00.000] Project '/user/username/projects/myproject/a/tsconfig.json' (Configured) +Info 29 [00:01:01.000] Files (2) -Info 29 [16:01:02.000] ----------------------------------------------- -Info 29 [16:01:03.000] Open files: -Info 29 [16:01:04.000] FileName: /user/username/projects/myproject/a/index.ts ProjectRootPath: undefined -Info 29 [16:01:05.000] Projects: /user/username/projects/myproject/a/tsconfig.json +Info 29 [00:01:02.000] ----------------------------------------------- +Info 29 [00:01:03.000] Open files: +Info 29 [00:01:04.000] FileName: /user/username/projects/myproject/a/index.ts ProjectRootPath: undefined +Info 29 [00:01:05.000] Projects: /user/username/projects/myproject/a/tsconfig.json After request PolledWatches:: @@ -149,11 +149,11 @@ FsWatchesRecursive:: /user/username/projects/myproject/b: {} -Info 29 [16:01:06.000] response: +Info 29 [00:01:06.000] response: { "responseRequired": false } -Info 30 [16:01:07.000] request: +Info 30 [00:01:07.000] request: { "command": "references", "arguments": { @@ -188,11 +188,11 @@ FsWatchesRecursive:: /user/username/projects/myproject/b: {} -Info 31 [16:01:08.000] Finding references to /user/username/projects/myproject/a/index.ts position 40 in project /user/username/projects/myproject/a/tsconfig.json -Info 32 [16:01:09.000] Search path: /user/username/projects/myproject/b -Info 33 [16:01:10.000] For info: /user/username/projects/myproject/b/index.ts :: Config file name: /user/username/projects/myproject/b/tsconfig.json -Info 34 [16:01:11.000] Search path: /user/username/projects/myproject/b -Info 35 [16:01:12.000] For info: /user/username/projects/myproject/b/index.ts :: Config file name: /user/username/projects/myproject/b/tsconfig.json +Info 31 [00:01:08.000] Finding references to /user/username/projects/myproject/a/index.ts position 40 in project /user/username/projects/myproject/a/tsconfig.json +Info 32 [00:01:09.000] Search path: /user/username/projects/myproject/b +Info 33 [00:01:10.000] For info: /user/username/projects/myproject/b/index.ts :: Config file name: /user/username/projects/myproject/b/tsconfig.json +Info 34 [00:01:11.000] Search path: /user/username/projects/myproject/b +Info 35 [00:01:12.000] For info: /user/username/projects/myproject/b/index.ts :: Config file name: /user/username/projects/myproject/b/tsconfig.json After request PolledWatches:: @@ -217,7 +217,7 @@ FsWatchesRecursive:: /user/username/projects/myproject/b: {} -Info 36 [16:01:13.000] response: +Info 36 [00:01:13.000] response: { "response": { "refs": [ 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-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-disabled-and-a-decl-map-is-missing.js index 4c55160a9d6c3..da02d1a157a23 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-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-disabled-and-a-decl-map-is-missing.js @@ -1,5 +1,5 @@ -Info 0 [16:00:29.000] Provided types map file "/a/lib/typesMap.json" doesn't exist -Info 1 [16:00:30.000] request: +Info 0 [00:00:29.000] Provided types map file "/a/lib/typesMap.json" doesn't exist +Info 1 [00:00:30.000] request: { "seq": 0, "type": "request", @@ -52,11 +52,11 @@ FsWatches:: FsWatchesRecursive:: -Info 2 [16:00:31.000] Search path: /user/username/projects/myproject/a -Info 3 [16:00:32.000] For info: /user/username/projects/myproject/a/index.ts :: Config file name: /user/username/projects/myproject/a/tsconfig.json -Info 4 [16:00:33.000] Creating configuration project /user/username/projects/myproject/a/tsconfig.json -Info 5 [16:00:34.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/a/tsconfig.json 2000 undefined Project: /user/username/projects/myproject/a/tsconfig.json WatchType: Config file -Info 6 [16:00:35.000] Config: /user/username/projects/myproject/a/tsconfig.json : { +Info 2 [00:00:31.000] Search path: /user/username/projects/myproject/a +Info 3 [00:00:32.000] For info: /user/username/projects/myproject/a/index.ts :: Config file name: /user/username/projects/myproject/a/tsconfig.json +Info 4 [00:00:33.000] Creating configuration project /user/username/projects/myproject/a/tsconfig.json +Info 5 [00:00:34.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/a/tsconfig.json 2000 undefined Project: /user/username/projects/myproject/a/tsconfig.json WatchType: Config file +Info 6 [00:00:35.000] Config: /user/username/projects/myproject/a/tsconfig.json : { "rootNames": [ "/user/username/projects/myproject/a/index.ts" ], @@ -73,11 +73,11 @@ Info 6 [16:00:35.000] Config: /user/username/projects/myproject/a/tsconfig.js } ] } -Info 7 [16:00:36.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/a 1 undefined Config: /user/username/projects/myproject/a/tsconfig.json WatchType: Wild card directory -Info 8 [16:00:37.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/a 1 undefined Config: /user/username/projects/myproject/a/tsconfig.json WatchType: Wild card directory -Info 9 [16:00:38.000] Plugins were requested but not running in environment that supports 'require'. Nothing will be loaded -Info 10 [16:00:39.000] Starting updateGraphWorker: Project: /user/username/projects/myproject/a/tsconfig.json -Info 11 [16:00:40.000] Config: /user/username/projects/myproject/b/tsconfig.json : { +Info 7 [00:00:36.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/a 1 undefined Config: /user/username/projects/myproject/a/tsconfig.json WatchType: Wild card directory +Info 8 [00:00:37.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/a 1 undefined Config: /user/username/projects/myproject/a/tsconfig.json WatchType: Wild card directory +Info 9 [00:00:38.000] Plugins were requested but not running in environment that supports 'require'. Nothing will be loaded +Info 10 [00:00:39.000] Starting updateGraphWorker: Project: /user/username/projects/myproject/a/tsconfig.json +Info 11 [00:00:40.000] Config: /user/username/projects/myproject/b/tsconfig.json : { "rootNames": [ "/user/username/projects/myproject/b/helper.ts", "/user/username/projects/myproject/b/index.ts" @@ -89,20 +89,20 @@ Info 11 [16:00:40.000] Config: /user/username/projects/myproject/b/tsconfig.js "configFilePath": "/user/username/projects/myproject/b/tsconfig.json" } } -Info 12 [16:00:41.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/b/tsconfig.json 2000 undefined Project: /user/username/projects/myproject/a/tsconfig.json WatchType: Config file -Info 13 [16:00:42.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/b 1 undefined Config: /user/username/projects/myproject/b/tsconfig.json WatchType: Wild card directory -Info 14 [16:00:43.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/b 1 undefined Config: /user/username/projects/myproject/b/tsconfig.json WatchType: Wild card directory -Info 15 [16:00:44.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/b 1 undefined Project: /user/username/projects/myproject/a/tsconfig.json WatchType: Failed Lookup Locations -Info 16 [16:00:45.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/b 1 undefined Project: /user/username/projects/myproject/a/tsconfig.json WatchType: Failed Lookup Locations -Info 17 [16:00:46.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/b/lib/index.d.ts 500 undefined WatchType: Closed Script info -Info 18 [16:00:47.000] FileWatcher:: Added:: WatchInfo: /a/lib/lib.d.ts 500 undefined Project: /user/username/projects/myproject/a/tsconfig.json WatchType: Missing file -Info 19 [16:00:48.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/a/node_modules/@types 1 undefined Project: /user/username/projects/myproject/a/tsconfig.json WatchType: Type roots -Info 20 [16:00:49.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/a/node_modules/@types 1 undefined Project: /user/username/projects/myproject/a/tsconfig.json WatchType: Type roots -Info 21 [16:00:50.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/a/tsconfig.json WatchType: Type roots -Info 22 [16:00:51.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/a/tsconfig.json WatchType: Type roots -Info 23 [16:00:52.000] Finishing updateGraphWorker: Project: /user/username/projects/myproject/a/tsconfig.json Version: 1 structureChanged: true structureIsReused:: Not Elapsed:: *ms -Info 24 [16:00:53.000] Project '/user/username/projects/myproject/a/tsconfig.json' (Configured) -Info 25 [16:00:54.000] Files (2) +Info 12 [00:00:41.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/b/tsconfig.json 2000 undefined Project: /user/username/projects/myproject/a/tsconfig.json WatchType: Config file +Info 13 [00:00:42.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/b 1 undefined Config: /user/username/projects/myproject/b/tsconfig.json WatchType: Wild card directory +Info 14 [00:00:43.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/b 1 undefined Config: /user/username/projects/myproject/b/tsconfig.json WatchType: Wild card directory +Info 15 [00:00:44.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/b 1 undefined Project: /user/username/projects/myproject/a/tsconfig.json WatchType: Failed Lookup Locations +Info 16 [00:00:45.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/b 1 undefined Project: /user/username/projects/myproject/a/tsconfig.json WatchType: Failed Lookup Locations +Info 17 [00:00:46.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/b/lib/index.d.ts 500 undefined WatchType: Closed Script info +Info 18 [00:00:47.000] FileWatcher:: Added:: WatchInfo: /a/lib/lib.d.ts 500 undefined Project: /user/username/projects/myproject/a/tsconfig.json WatchType: Missing file +Info 19 [00:00:48.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/a/node_modules/@types 1 undefined Project: /user/username/projects/myproject/a/tsconfig.json WatchType: Type roots +Info 20 [00:00:49.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/a/node_modules/@types 1 undefined Project: /user/username/projects/myproject/a/tsconfig.json WatchType: Type roots +Info 21 [00:00:50.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/a/tsconfig.json WatchType: Type roots +Info 22 [00:00:51.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/a/tsconfig.json WatchType: Type roots +Info 23 [00:00:52.000] Finishing updateGraphWorker: Project: /user/username/projects/myproject/a/tsconfig.json Version: 1 structureChanged: true structureIsReused:: Not Elapsed:: *ms +Info 24 [00:00:53.000] Project '/user/username/projects/myproject/a/tsconfig.json' (Configured) +Info 25 [00:00:54.000] Files (2) /user/username/projects/myproject/b/lib/index.d.ts /user/username/projects/myproject/a/index.ts @@ -112,16 +112,16 @@ Info 25 [16:00:54.000] Files (2) index.ts Matched by default include pattern '**/*' -Info 26 [16:00:55.000] ----------------------------------------------- -Info 27 [16:00:56.000] Search path: /user/username/projects/myproject/a -Info 28 [16:00:57.000] For info: /user/username/projects/myproject/a/tsconfig.json :: No config files found. -Info 29 [16:00:58.000] Project '/user/username/projects/myproject/a/tsconfig.json' (Configured) -Info 29 [16:00:59.000] Files (2) +Info 26 [00:00:55.000] ----------------------------------------------- +Info 27 [00:00:56.000] Search path: /user/username/projects/myproject/a +Info 28 [00:00:57.000] For info: /user/username/projects/myproject/a/tsconfig.json :: No config files found. +Info 29 [00:00:58.000] Project '/user/username/projects/myproject/a/tsconfig.json' (Configured) +Info 29 [00:00:59.000] Files (2) -Info 29 [16:01:00.000] ----------------------------------------------- -Info 29 [16:01:01.000] Open files: -Info 29 [16:01:02.000] FileName: /user/username/projects/myproject/a/index.ts ProjectRootPath: undefined -Info 29 [16:01:03.000] Projects: /user/username/projects/myproject/a/tsconfig.json +Info 29 [00:01:00.000] ----------------------------------------------- +Info 29 [00:01:01.000] Open files: +Info 29 [00:01:02.000] FileName: /user/username/projects/myproject/a/index.ts ProjectRootPath: undefined +Info 29 [00:01:03.000] Projects: /user/username/projects/myproject/a/tsconfig.json After request PolledWatches:: @@ -146,11 +146,11 @@ FsWatchesRecursive:: /user/username/projects/myproject/b: {} -Info 29 [16:01:04.000] response: +Info 29 [00:01:04.000] response: { "responseRequired": false } -Info 30 [16:01:05.000] request: +Info 30 [00:01:05.000] request: { "command": "references", "arguments": { @@ -185,8 +185,8 @@ FsWatchesRecursive:: /user/username/projects/myproject/b: {} -Info 31 [16:01:06.000] Finding references to /user/username/projects/myproject/a/index.ts position 40 in project /user/username/projects/myproject/a/tsconfig.json -Info 32 [16:01:07.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/b/lib/index.d.ts.map 2000 undefined WatchType: Missing source map file +Info 31 [00:01:06.000] Finding references to /user/username/projects/myproject/a/index.ts position 40 in project /user/username/projects/myproject/a/tsconfig.json +Info 32 [00:01:07.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/b/lib/index.d.ts.map 2000 undefined WatchType: Missing source map file After request PolledWatches:: @@ -213,7 +213,7 @@ FsWatchesRecursive:: /user/username/projects/myproject/b: {} -Info 33 [16:01:08.000] response: +Info 33 [00:01:08.000] response: { "response": { "refs": [ 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 453f42c75872d..3183247dcf030 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 @@ -1,5 +1,5 @@ -Info 0 [16:00:31.000] Provided types map file "/a/lib/typesMap.json" doesn't exist -Info 1 [16:00:32.000] request: +Info 0 [00:00:31.000] Provided types map file "/a/lib/typesMap.json" doesn't exist +Info 1 [00:00:32.000] request: { "seq": 0, "type": "request", @@ -55,11 +55,11 @@ FsWatches:: FsWatchesRecursive:: -Info 2 [16:00:33.000] Search path: /user/username/projects/myproject/a -Info 3 [16:00:34.000] For info: /user/username/projects/myproject/a/index.ts :: Config file name: /user/username/projects/myproject/a/tsconfig.json -Info 4 [16:00:35.000] Creating configuration project /user/username/projects/myproject/a/tsconfig.json -Info 5 [16:00:36.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/a/tsconfig.json 2000 undefined Project: /user/username/projects/myproject/a/tsconfig.json WatchType: Config file -Info 6 [16:00:37.000] Config: /user/username/projects/myproject/a/tsconfig.json : { +Info 2 [00:00:33.000] Search path: /user/username/projects/myproject/a +Info 3 [00:00:34.000] For info: /user/username/projects/myproject/a/index.ts :: Config file name: /user/username/projects/myproject/a/tsconfig.json +Info 4 [00:00:35.000] Creating configuration project /user/username/projects/myproject/a/tsconfig.json +Info 5 [00:00:36.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/a/tsconfig.json 2000 undefined Project: /user/username/projects/myproject/a/tsconfig.json WatchType: Config file +Info 6 [00:00:37.000] Config: /user/username/projects/myproject/a/tsconfig.json : { "rootNames": [ "/user/username/projects/myproject/a/index.ts" ], @@ -76,11 +76,11 @@ Info 6 [16:00:37.000] Config: /user/username/projects/myproject/a/tsconfig.js } ] } -Info 7 [16:00:38.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/a 1 undefined Config: /user/username/projects/myproject/a/tsconfig.json WatchType: Wild card directory -Info 8 [16:00:39.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/a 1 undefined Config: /user/username/projects/myproject/a/tsconfig.json WatchType: Wild card directory -Info 9 [16:00:40.000] Plugins were requested but not running in environment that supports 'require'. Nothing will be loaded -Info 10 [16:00:41.000] Starting updateGraphWorker: Project: /user/username/projects/myproject/a/tsconfig.json -Info 11 [16:00:42.000] Config: /user/username/projects/myproject/b/tsconfig.json : { +Info 7 [00:00:38.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/a 1 undefined Config: /user/username/projects/myproject/a/tsconfig.json WatchType: Wild card directory +Info 8 [00:00:39.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/a 1 undefined Config: /user/username/projects/myproject/a/tsconfig.json WatchType: Wild card directory +Info 9 [00:00:40.000] Plugins were requested but not running in environment that supports 'require'. Nothing will be loaded +Info 10 [00:00:41.000] Starting updateGraphWorker: Project: /user/username/projects/myproject/a/tsconfig.json +Info 11 [00:00:42.000] Config: /user/username/projects/myproject/b/tsconfig.json : { "rootNames": [ "/user/username/projects/myproject/b/helper.ts", "/user/username/projects/myproject/b/index.ts" @@ -92,20 +92,20 @@ Info 11 [16:00:42.000] Config: /user/username/projects/myproject/b/tsconfig.js "configFilePath": "/user/username/projects/myproject/b/tsconfig.json" } } -Info 12 [16:00:43.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/b/tsconfig.json 2000 undefined Project: /user/username/projects/myproject/a/tsconfig.json WatchType: Config file -Info 13 [16:00:44.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/b 1 undefined Config: /user/username/projects/myproject/b/tsconfig.json WatchType: Wild card directory -Info 14 [16:00:45.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/b 1 undefined Config: /user/username/projects/myproject/b/tsconfig.json WatchType: Wild card directory -Info 15 [16:00:46.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/b 1 undefined Project: /user/username/projects/myproject/a/tsconfig.json WatchType: Failed Lookup Locations -Info 16 [16:00:47.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/b 1 undefined Project: /user/username/projects/myproject/a/tsconfig.json WatchType: Failed Lookup Locations -Info 17 [16:00:48.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/b/lib/index.d.ts 500 undefined WatchType: Closed Script info -Info 18 [16:00:49.000] FileWatcher:: Added:: WatchInfo: /a/lib/lib.d.ts 500 undefined Project: /user/username/projects/myproject/a/tsconfig.json WatchType: Missing file -Info 19 [16:00:50.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/a/node_modules/@types 1 undefined Project: /user/username/projects/myproject/a/tsconfig.json WatchType: Type roots -Info 20 [16:00:51.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/a/node_modules/@types 1 undefined Project: /user/username/projects/myproject/a/tsconfig.json WatchType: Type roots -Info 21 [16:00:52.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/a/tsconfig.json WatchType: Type roots -Info 22 [16:00:53.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/a/tsconfig.json WatchType: Type roots -Info 23 [16:00:54.000] Finishing updateGraphWorker: Project: /user/username/projects/myproject/a/tsconfig.json Version: 1 structureChanged: true structureIsReused:: Not Elapsed:: *ms -Info 24 [16:00:55.000] Project '/user/username/projects/myproject/a/tsconfig.json' (Configured) -Info 25 [16:00:56.000] Files (2) +Info 12 [00:00:43.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/b/tsconfig.json 2000 undefined Project: /user/username/projects/myproject/a/tsconfig.json WatchType: Config file +Info 13 [00:00:44.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/b 1 undefined Config: /user/username/projects/myproject/b/tsconfig.json WatchType: Wild card directory +Info 14 [00:00:45.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/b 1 undefined Config: /user/username/projects/myproject/b/tsconfig.json WatchType: Wild card directory +Info 15 [00:00:46.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/b 1 undefined Project: /user/username/projects/myproject/a/tsconfig.json WatchType: Failed Lookup Locations +Info 16 [00:00:47.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/b 1 undefined Project: /user/username/projects/myproject/a/tsconfig.json WatchType: Failed Lookup Locations +Info 17 [00:00:48.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/b/lib/index.d.ts 500 undefined WatchType: Closed Script info +Info 18 [00:00:49.000] FileWatcher:: Added:: WatchInfo: /a/lib/lib.d.ts 500 undefined Project: /user/username/projects/myproject/a/tsconfig.json WatchType: Missing file +Info 19 [00:00:50.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/a/node_modules/@types 1 undefined Project: /user/username/projects/myproject/a/tsconfig.json WatchType: Type roots +Info 20 [00:00:51.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/a/node_modules/@types 1 undefined Project: /user/username/projects/myproject/a/tsconfig.json WatchType: Type roots +Info 21 [00:00:52.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/a/tsconfig.json WatchType: Type roots +Info 22 [00:00:53.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/a/tsconfig.json WatchType: Type roots +Info 23 [00:00:54.000] Finishing updateGraphWorker: Project: /user/username/projects/myproject/a/tsconfig.json Version: 1 structureChanged: true structureIsReused:: Not Elapsed:: *ms +Info 24 [00:00:55.000] Project '/user/username/projects/myproject/a/tsconfig.json' (Configured) +Info 25 [00:00:56.000] Files (2) /user/username/projects/myproject/b/lib/index.d.ts /user/username/projects/myproject/a/index.ts @@ -115,16 +115,16 @@ Info 25 [16:00:56.000] Files (2) index.ts Matched by default include pattern '**/*' -Info 26 [16:00:57.000] ----------------------------------------------- -Info 27 [16:00:58.000] Search path: /user/username/projects/myproject/a -Info 28 [16:00:59.000] For info: /user/username/projects/myproject/a/tsconfig.json :: No config files found. -Info 29 [16:01:00.000] Project '/user/username/projects/myproject/a/tsconfig.json' (Configured) -Info 29 [16:01:01.000] Files (2) +Info 26 [00:00:57.000] ----------------------------------------------- +Info 27 [00:00:58.000] Search path: /user/username/projects/myproject/a +Info 28 [00:00:59.000] For info: /user/username/projects/myproject/a/tsconfig.json :: No config files found. +Info 29 [00:01:00.000] Project '/user/username/projects/myproject/a/tsconfig.json' (Configured) +Info 29 [00:01:01.000] Files (2) -Info 29 [16:01:02.000] ----------------------------------------------- -Info 29 [16:01:03.000] Open files: -Info 29 [16:01:04.000] FileName: /user/username/projects/myproject/a/index.ts ProjectRootPath: undefined -Info 29 [16:01:05.000] Projects: /user/username/projects/myproject/a/tsconfig.json +Info 29 [00:01:02.000] ----------------------------------------------- +Info 29 [00:01:03.000] Open files: +Info 29 [00:01:04.000] FileName: /user/username/projects/myproject/a/index.ts ProjectRootPath: undefined +Info 29 [00:01:05.000] Projects: /user/username/projects/myproject/a/tsconfig.json After request PolledWatches:: @@ -149,11 +149,11 @@ FsWatchesRecursive:: /user/username/projects/myproject/b: {} -Info 29 [16:01:06.000] response: +Info 29 [00:01:06.000] response: { "responseRequired": false } -Info 30 [16:01:07.000] request: +Info 30 [00:01:07.000] request: { "command": "references", "arguments": { @@ -188,25 +188,25 @@ FsWatchesRecursive:: /user/username/projects/myproject/b: {} -Info 31 [16:01:08.000] Finding references to /user/username/projects/myproject/a/index.ts position 40 in project /user/username/projects/myproject/a/tsconfig.json -Info 32 [16:01:09.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/b/lib/index.d.ts.map 500 undefined WatchType: Closed Script info -Info 33 [16:01:10.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/b/index.ts 500 undefined WatchType: Closed Script info -Info 34 [16:01:11.000] Search path: /user/username/projects/myproject/b -Info 35 [16:01:12.000] For info: /user/username/projects/myproject/b/index.ts :: Config file name: /user/username/projects/myproject/b/tsconfig.json -Info 36 [16:01:13.000] Creating configuration project /user/username/projects/myproject/b/tsconfig.json -Info 37 [16:01:14.000] Plugins were requested but not running in environment that supports 'require'. Nothing will be loaded -Info 38 [16:01:15.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/b/helper.ts 500 undefined WatchType: Closed Script info -Info 39 [16:01:16.000] Starting updateGraphWorker: Project: /user/username/projects/myproject/b/tsconfig.json -Info 40 [16:01:17.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/b 0 undefined Project: /user/username/projects/myproject/b/tsconfig.json WatchType: Failed Lookup Locations -Info 41 [16:01:18.000] 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 42 [16:01:19.000] FileWatcher:: Added:: WatchInfo: /a/lib/lib.d.ts 500 undefined Project: /user/username/projects/myproject/b/tsconfig.json WatchType: Missing file -Info 43 [16:01:20.000] 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 44 [16:01:21.000] 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 45 [16:01:22.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/b/tsconfig.json WatchType: Type roots -Info 46 [16:01:23.000] 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 47 [16:01:24.000] Finishing updateGraphWorker: Project: /user/username/projects/myproject/b/tsconfig.json Version: 1 structureChanged: true structureIsReused:: Not Elapsed:: *ms -Info 48 [16:01:25.000] Project '/user/username/projects/myproject/b/tsconfig.json' (Configured) -Info 49 [16:01:26.000] Files (2) +Info 31 [00:01:08.000] Finding references to /user/username/projects/myproject/a/index.ts position 40 in project /user/username/projects/myproject/a/tsconfig.json +Info 32 [00:01:09.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/b/lib/index.d.ts.map 500 undefined WatchType: Closed Script info +Info 33 [00:01:10.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/b/index.ts 500 undefined WatchType: Closed Script info +Info 34 [00:01:11.000] Search path: /user/username/projects/myproject/b +Info 35 [00:01:12.000] For info: /user/username/projects/myproject/b/index.ts :: Config file name: /user/username/projects/myproject/b/tsconfig.json +Info 36 [00:01:13.000] Creating configuration project /user/username/projects/myproject/b/tsconfig.json +Info 37 [00:01:14.000] Plugins were requested but not running in environment that supports 'require'. Nothing will be loaded +Info 38 [00:01:15.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/b/helper.ts 500 undefined WatchType: Closed Script info +Info 39 [00:01:16.000] Starting updateGraphWorker: Project: /user/username/projects/myproject/b/tsconfig.json +Info 40 [00:01:17.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/b 0 undefined Project: /user/username/projects/myproject/b/tsconfig.json WatchType: Failed Lookup Locations +Info 41 [00:01:18.000] 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 42 [00:01:19.000] FileWatcher:: Added:: WatchInfo: /a/lib/lib.d.ts 500 undefined Project: /user/username/projects/myproject/b/tsconfig.json WatchType: Missing file +Info 43 [00:01:20.000] 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 44 [00:01:21.000] 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 45 [00:01:22.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/b/tsconfig.json WatchType: Type roots +Info 46 [00:01:23.000] 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 47 [00:01:24.000] Finishing updateGraphWorker: Project: /user/username/projects/myproject/b/tsconfig.json Version: 1 structureChanged: true structureIsReused:: Not Elapsed:: *ms +Info 48 [00:01:25.000] Project '/user/username/projects/myproject/b/tsconfig.json' (Configured) +Info 49 [00:01:26.000] Files (2) /user/username/projects/myproject/b/index.ts /user/username/projects/myproject/b/helper.ts @@ -217,10 +217,10 @@ Info 49 [16:01:26.000] Files (2) helper.ts Matched by default include pattern '**/*' -Info 50 [16:01:27.000] ----------------------------------------------- -Info 51 [16:01:28.000] Search path: /user/username/projects/myproject/b -Info 52 [16:01:29.000] For info: /user/username/projects/myproject/b/index.ts :: Config file name: /user/username/projects/myproject/b/tsconfig.json -Info 53 [16:01:30.000] Finding references to /user/username/projects/myproject/b/index.ts position 13 in project /user/username/projects/myproject/b/tsconfig.json +Info 50 [00:01:27.000] ----------------------------------------------- +Info 51 [00:01:28.000] Search path: /user/username/projects/myproject/b +Info 52 [00:01:29.000] For info: /user/username/projects/myproject/b/index.ts :: Config file name: /user/username/projects/myproject/b/tsconfig.json +Info 53 [00:01:30.000] Finding references to /user/username/projects/myproject/b/index.ts position 13 in project /user/username/projects/myproject/b/tsconfig.json After request PolledWatches:: @@ -255,7 +255,7 @@ FsWatchesRecursive:: /user/username/projects/myproject/b: {} -Info 54 [16:01:31.000] response: +Info 54 [00:01:31.000] response: { "response": { "refs": [ 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 90e852f5652c1..f9c1aeb3daf20 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 @@ -1,5 +1,5 @@ -Info 0 [16:00:29.000] Provided types map file "/a/lib/typesMap.json" doesn't exist -Info 1 [16:00:30.000] request: +Info 0 [00:00:29.000] Provided types map file "/a/lib/typesMap.json" doesn't exist +Info 1 [00:00:30.000] request: { "seq": 0, "type": "request", @@ -52,11 +52,11 @@ FsWatches:: FsWatchesRecursive:: -Info 2 [16:00:31.000] Search path: /user/username/projects/myproject/a -Info 3 [16:00:32.000] For info: /user/username/projects/myproject/a/index.ts :: Config file name: /user/username/projects/myproject/a/tsconfig.json -Info 4 [16:00:33.000] Creating configuration project /user/username/projects/myproject/a/tsconfig.json -Info 5 [16:00:34.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/a/tsconfig.json 2000 undefined Project: /user/username/projects/myproject/a/tsconfig.json WatchType: Config file -Info 6 [16:00:35.000] Config: /user/username/projects/myproject/a/tsconfig.json : { +Info 2 [00:00:31.000] Search path: /user/username/projects/myproject/a +Info 3 [00:00:32.000] For info: /user/username/projects/myproject/a/index.ts :: Config file name: /user/username/projects/myproject/a/tsconfig.json +Info 4 [00:00:33.000] Creating configuration project /user/username/projects/myproject/a/tsconfig.json +Info 5 [00:00:34.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/a/tsconfig.json 2000 undefined Project: /user/username/projects/myproject/a/tsconfig.json WatchType: Config file +Info 6 [00:00:35.000] Config: /user/username/projects/myproject/a/tsconfig.json : { "rootNames": [ "/user/username/projects/myproject/a/index.ts" ], @@ -73,11 +73,11 @@ Info 6 [16:00:35.000] Config: /user/username/projects/myproject/a/tsconfig.js } ] } -Info 7 [16:00:36.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/a 1 undefined Config: /user/username/projects/myproject/a/tsconfig.json WatchType: Wild card directory -Info 8 [16:00:37.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/a 1 undefined Config: /user/username/projects/myproject/a/tsconfig.json WatchType: Wild card directory -Info 9 [16:00:38.000] Plugins were requested but not running in environment that supports 'require'. Nothing will be loaded -Info 10 [16:00:39.000] Starting updateGraphWorker: Project: /user/username/projects/myproject/a/tsconfig.json -Info 11 [16:00:40.000] Config: /user/username/projects/myproject/b/tsconfig.json : { +Info 7 [00:00:36.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/a 1 undefined Config: /user/username/projects/myproject/a/tsconfig.json WatchType: Wild card directory +Info 8 [00:00:37.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/a 1 undefined Config: /user/username/projects/myproject/a/tsconfig.json WatchType: Wild card directory +Info 9 [00:00:38.000] Plugins were requested but not running in environment that supports 'require'. Nothing will be loaded +Info 10 [00:00:39.000] Starting updateGraphWorker: Project: /user/username/projects/myproject/a/tsconfig.json +Info 11 [00:00:40.000] Config: /user/username/projects/myproject/b/tsconfig.json : { "rootNames": [ "/user/username/projects/myproject/b/helper.ts", "/user/username/projects/myproject/b/index.ts" @@ -89,20 +89,20 @@ Info 11 [16:00:40.000] Config: /user/username/projects/myproject/b/tsconfig.js "configFilePath": "/user/username/projects/myproject/b/tsconfig.json" } } -Info 12 [16:00:41.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/b/tsconfig.json 2000 undefined Project: /user/username/projects/myproject/a/tsconfig.json WatchType: Config file -Info 13 [16:00:42.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/b 1 undefined Config: /user/username/projects/myproject/b/tsconfig.json WatchType: Wild card directory -Info 14 [16:00:43.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/b 1 undefined Config: /user/username/projects/myproject/b/tsconfig.json WatchType: Wild card directory -Info 15 [16:00:44.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/b 1 undefined Project: /user/username/projects/myproject/a/tsconfig.json WatchType: Failed Lookup Locations -Info 16 [16:00:45.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/b 1 undefined Project: /user/username/projects/myproject/a/tsconfig.json WatchType: Failed Lookup Locations -Info 17 [16:00:46.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/b/index.ts 500 undefined WatchType: Closed Script info -Info 18 [16:00:47.000] FileWatcher:: Added:: WatchInfo: /a/lib/lib.d.ts 500 undefined Project: /user/username/projects/myproject/a/tsconfig.json WatchType: Missing file -Info 19 [16:00:48.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/a/node_modules/@types 1 undefined Project: /user/username/projects/myproject/a/tsconfig.json WatchType: Type roots -Info 20 [16:00:49.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/a/node_modules/@types 1 undefined Project: /user/username/projects/myproject/a/tsconfig.json WatchType: Type roots -Info 21 [16:00:50.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/a/tsconfig.json WatchType: Type roots -Info 22 [16:00:51.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/a/tsconfig.json WatchType: Type roots -Info 23 [16:00:52.000] Finishing updateGraphWorker: Project: /user/username/projects/myproject/a/tsconfig.json Version: 1 structureChanged: true structureIsReused:: Not Elapsed:: *ms -Info 24 [16:00:53.000] Project '/user/username/projects/myproject/a/tsconfig.json' (Configured) -Info 25 [16:00:54.000] Files (2) +Info 12 [00:00:41.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/b/tsconfig.json 2000 undefined Project: /user/username/projects/myproject/a/tsconfig.json WatchType: Config file +Info 13 [00:00:42.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/b 1 undefined Config: /user/username/projects/myproject/b/tsconfig.json WatchType: Wild card directory +Info 14 [00:00:43.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/b 1 undefined Config: /user/username/projects/myproject/b/tsconfig.json WatchType: Wild card directory +Info 15 [00:00:44.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/b 1 undefined Project: /user/username/projects/myproject/a/tsconfig.json WatchType: Failed Lookup Locations +Info 16 [00:00:45.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/b 1 undefined Project: /user/username/projects/myproject/a/tsconfig.json WatchType: Failed Lookup Locations +Info 17 [00:00:46.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/b/index.ts 500 undefined WatchType: Closed Script info +Info 18 [00:00:47.000] FileWatcher:: Added:: WatchInfo: /a/lib/lib.d.ts 500 undefined Project: /user/username/projects/myproject/a/tsconfig.json WatchType: Missing file +Info 19 [00:00:48.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/a/node_modules/@types 1 undefined Project: /user/username/projects/myproject/a/tsconfig.json WatchType: Type roots +Info 20 [00:00:49.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/a/node_modules/@types 1 undefined Project: /user/username/projects/myproject/a/tsconfig.json WatchType: Type roots +Info 21 [00:00:50.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/a/tsconfig.json WatchType: Type roots +Info 22 [00:00:51.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/a/tsconfig.json WatchType: Type roots +Info 23 [00:00:52.000] Finishing updateGraphWorker: Project: /user/username/projects/myproject/a/tsconfig.json Version: 1 structureChanged: true structureIsReused:: Not Elapsed:: *ms +Info 24 [00:00:53.000] Project '/user/username/projects/myproject/a/tsconfig.json' (Configured) +Info 25 [00:00:54.000] Files (2) /user/username/projects/myproject/b/index.ts /user/username/projects/myproject/a/index.ts @@ -112,16 +112,16 @@ Info 25 [16:00:54.000] Files (2) index.ts Matched by default include pattern '**/*' -Info 26 [16:00:55.000] ----------------------------------------------- -Info 27 [16:00:56.000] Search path: /user/username/projects/myproject/a -Info 28 [16:00:57.000] For info: /user/username/projects/myproject/a/tsconfig.json :: No config files found. -Info 29 [16:00:58.000] Project '/user/username/projects/myproject/a/tsconfig.json' (Configured) -Info 29 [16:00:59.000] Files (2) +Info 26 [00:00:55.000] ----------------------------------------------- +Info 27 [00:00:56.000] Search path: /user/username/projects/myproject/a +Info 28 [00:00:57.000] For info: /user/username/projects/myproject/a/tsconfig.json :: No config files found. +Info 29 [00:00:58.000] Project '/user/username/projects/myproject/a/tsconfig.json' (Configured) +Info 29 [00:00:59.000] Files (2) -Info 29 [16:01:00.000] ----------------------------------------------- -Info 29 [16:01:01.000] Open files: -Info 29 [16:01:02.000] FileName: /user/username/projects/myproject/a/index.ts ProjectRootPath: undefined -Info 29 [16:01:03.000] Projects: /user/username/projects/myproject/a/tsconfig.json +Info 29 [00:01:00.000] ----------------------------------------------- +Info 29 [00:01:01.000] Open files: +Info 29 [00:01:02.000] FileName: /user/username/projects/myproject/a/index.ts ProjectRootPath: undefined +Info 29 [00:01:03.000] Projects: /user/username/projects/myproject/a/tsconfig.json After request PolledWatches:: @@ -146,11 +146,11 @@ FsWatchesRecursive:: /user/username/projects/myproject/b: {} -Info 29 [16:01:04.000] response: +Info 29 [00:01:04.000] response: { "responseRequired": false } -Info 30 [16:01:05.000] request: +Info 30 [00:01:05.000] request: { "command": "references", "arguments": { @@ -185,23 +185,23 @@ FsWatchesRecursive:: /user/username/projects/myproject/b: {} -Info 31 [16:01:06.000] Finding references to /user/username/projects/myproject/a/index.ts position 40 in project /user/username/projects/myproject/a/tsconfig.json -Info 32 [16:01:07.000] Search path: /user/username/projects/myproject/b -Info 33 [16:01:08.000] For info: /user/username/projects/myproject/b/index.ts :: Config file name: /user/username/projects/myproject/b/tsconfig.json -Info 34 [16:01:09.000] Creating configuration project /user/username/projects/myproject/b/tsconfig.json -Info 35 [16:01:10.000] Plugins were requested but not running in environment that supports 'require'. Nothing will be loaded -Info 36 [16:01:11.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/b/helper.ts 500 undefined WatchType: Closed Script info -Info 37 [16:01:12.000] Starting updateGraphWorker: Project: /user/username/projects/myproject/b/tsconfig.json -Info 38 [16:01:13.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/b 0 undefined Project: /user/username/projects/myproject/b/tsconfig.json WatchType: Failed Lookup Locations -Info 39 [16:01:14.000] 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 40 [16:01:15.000] FileWatcher:: Added:: WatchInfo: /a/lib/lib.d.ts 500 undefined Project: /user/username/projects/myproject/b/tsconfig.json WatchType: Missing file -Info 41 [16:01:16.000] 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 42 [16:01:17.000] 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 43 [16:01:18.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/b/tsconfig.json WatchType: Type roots -Info 44 [16:01:19.000] 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 45 [16:01:20.000] Finishing updateGraphWorker: Project: /user/username/projects/myproject/b/tsconfig.json Version: 1 structureChanged: true structureIsReused:: Not Elapsed:: *ms -Info 46 [16:01:21.000] Project '/user/username/projects/myproject/b/tsconfig.json' (Configured) -Info 47 [16:01:22.000] Files (2) +Info 31 [00:01:06.000] Finding references to /user/username/projects/myproject/a/index.ts position 40 in project /user/username/projects/myproject/a/tsconfig.json +Info 32 [00:01:07.000] Search path: /user/username/projects/myproject/b +Info 33 [00:01:08.000] For info: /user/username/projects/myproject/b/index.ts :: Config file name: /user/username/projects/myproject/b/tsconfig.json +Info 34 [00:01:09.000] Creating configuration project /user/username/projects/myproject/b/tsconfig.json +Info 35 [00:01:10.000] Plugins were requested but not running in environment that supports 'require'. Nothing will be loaded +Info 36 [00:01:11.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/b/helper.ts 500 undefined WatchType: Closed Script info +Info 37 [00:01:12.000] Starting updateGraphWorker: Project: /user/username/projects/myproject/b/tsconfig.json +Info 38 [00:01:13.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/b 0 undefined Project: /user/username/projects/myproject/b/tsconfig.json WatchType: Failed Lookup Locations +Info 39 [00:01:14.000] 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 40 [00:01:15.000] FileWatcher:: Added:: WatchInfo: /a/lib/lib.d.ts 500 undefined Project: /user/username/projects/myproject/b/tsconfig.json WatchType: Missing file +Info 41 [00:01:16.000] 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 42 [00:01:17.000] 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 43 [00:01:18.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/b/tsconfig.json WatchType: Type roots +Info 44 [00:01:19.000] 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 45 [00:01:20.000] Finishing updateGraphWorker: Project: /user/username/projects/myproject/b/tsconfig.json Version: 1 structureChanged: true structureIsReused:: Not Elapsed:: *ms +Info 46 [00:01:21.000] Project '/user/username/projects/myproject/b/tsconfig.json' (Configured) +Info 47 [00:01:22.000] Files (2) /user/username/projects/myproject/b/index.ts /user/username/projects/myproject/b/helper.ts @@ -212,10 +212,10 @@ Info 47 [16:01:22.000] Files (2) helper.ts Matched by default include pattern '**/*' -Info 48 [16:01:23.000] ----------------------------------------------- -Info 49 [16:01:24.000] Search path: /user/username/projects/myproject/b -Info 50 [16:01:25.000] For info: /user/username/projects/myproject/b/index.ts :: Config file name: /user/username/projects/myproject/b/tsconfig.json -Info 51 [16:01:26.000] Finding references to /user/username/projects/myproject/b/index.ts position 13 in project /user/username/projects/myproject/b/tsconfig.json +Info 48 [00:01:23.000] ----------------------------------------------- +Info 49 [00:01:24.000] Search path: /user/username/projects/myproject/b +Info 50 [00:01:25.000] For info: /user/username/projects/myproject/b/index.ts :: Config file name: /user/username/projects/myproject/b/tsconfig.json +Info 51 [00:01:26.000] Finding references to /user/username/projects/myproject/b/index.ts position 13 in project /user/username/projects/myproject/b/tsconfig.json After request PolledWatches:: @@ -246,7 +246,7 @@ FsWatchesRecursive:: /user/username/projects/myproject/b: {} -Info 52 [16:01:27.000] response: +Info 52 [00:01:27.000] response: { "response": { "refs": [ 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 76de3d303230a..3cea03506718f 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 @@ -1,5 +1,5 @@ -Info 0 [16:00:31.000] Provided types map file "/a/lib/typesMap.json" doesn't exist -Info 1 [16:00:32.000] request: +Info 0 [00:00:31.000] Provided types map file "/a/lib/typesMap.json" doesn't exist +Info 1 [00:00:32.000] request: { "seq": 0, "type": "request", @@ -55,11 +55,11 @@ FsWatches:: FsWatchesRecursive:: -Info 2 [16:00:33.000] Search path: /user/username/projects/myproject/a -Info 3 [16:00:34.000] For info: /user/username/projects/myproject/a/index.ts :: Config file name: /user/username/projects/myproject/a/tsconfig.json -Info 4 [16:00:35.000] Creating configuration project /user/username/projects/myproject/a/tsconfig.json -Info 5 [16:00:36.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/a/tsconfig.json 2000 undefined Project: /user/username/projects/myproject/a/tsconfig.json WatchType: Config file -Info 6 [16:00:37.000] Config: /user/username/projects/myproject/a/tsconfig.json : { +Info 2 [00:00:33.000] Search path: /user/username/projects/myproject/a +Info 3 [00:00:34.000] For info: /user/username/projects/myproject/a/index.ts :: Config file name: /user/username/projects/myproject/a/tsconfig.json +Info 4 [00:00:35.000] Creating configuration project /user/username/projects/myproject/a/tsconfig.json +Info 5 [00:00:36.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/a/tsconfig.json 2000 undefined Project: /user/username/projects/myproject/a/tsconfig.json WatchType: Config file +Info 6 [00:00:37.000] Config: /user/username/projects/myproject/a/tsconfig.json : { "rootNames": [ "/user/username/projects/myproject/a/index.ts" ], @@ -76,11 +76,11 @@ Info 6 [16:00:37.000] Config: /user/username/projects/myproject/a/tsconfig.js } ] } -Info 7 [16:00:38.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/a 1 undefined Config: /user/username/projects/myproject/a/tsconfig.json WatchType: Wild card directory -Info 8 [16:00:39.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/a 1 undefined Config: /user/username/projects/myproject/a/tsconfig.json WatchType: Wild card directory -Info 9 [16:00:40.000] Plugins were requested but not running in environment that supports 'require'. Nothing will be loaded -Info 10 [16:00:41.000] Starting updateGraphWorker: Project: /user/username/projects/myproject/a/tsconfig.json -Info 11 [16:00:42.000] Config: /user/username/projects/myproject/b/tsconfig.json : { +Info 7 [00:00:38.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/a 1 undefined Config: /user/username/projects/myproject/a/tsconfig.json WatchType: Wild card directory +Info 8 [00:00:39.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/a 1 undefined Config: /user/username/projects/myproject/a/tsconfig.json WatchType: Wild card directory +Info 9 [00:00:40.000] Plugins were requested but not running in environment that supports 'require'. Nothing will be loaded +Info 10 [00:00:41.000] Starting updateGraphWorker: Project: /user/username/projects/myproject/a/tsconfig.json +Info 11 [00:00:42.000] Config: /user/username/projects/myproject/b/tsconfig.json : { "rootNames": [ "/user/username/projects/myproject/b/helper.ts", "/user/username/projects/myproject/b/index.ts" @@ -92,20 +92,20 @@ Info 11 [16:00:42.000] Config: /user/username/projects/myproject/b/tsconfig.js "configFilePath": "/user/username/projects/myproject/b/tsconfig.json" } } -Info 12 [16:00:43.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/b/tsconfig.json 2000 undefined Project: /user/username/projects/myproject/a/tsconfig.json WatchType: Config file -Info 13 [16:00:44.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/b 1 undefined Config: /user/username/projects/myproject/b/tsconfig.json WatchType: Wild card directory -Info 14 [16:00:45.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/b 1 undefined Config: /user/username/projects/myproject/b/tsconfig.json WatchType: Wild card directory -Info 15 [16:00:46.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/b 1 undefined Project: /user/username/projects/myproject/a/tsconfig.json WatchType: Failed Lookup Locations -Info 16 [16:00:47.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/b 1 undefined Project: /user/username/projects/myproject/a/tsconfig.json WatchType: Failed Lookup Locations -Info 17 [16:00:48.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/b/index.ts 500 undefined WatchType: Closed Script info -Info 18 [16:00:49.000] FileWatcher:: Added:: WatchInfo: /a/lib/lib.d.ts 500 undefined Project: /user/username/projects/myproject/a/tsconfig.json WatchType: Missing file -Info 19 [16:00:50.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/a/node_modules/@types 1 undefined Project: /user/username/projects/myproject/a/tsconfig.json WatchType: Type roots -Info 20 [16:00:51.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/a/node_modules/@types 1 undefined Project: /user/username/projects/myproject/a/tsconfig.json WatchType: Type roots -Info 21 [16:00:52.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/a/tsconfig.json WatchType: Type roots -Info 22 [16:00:53.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/a/tsconfig.json WatchType: Type roots -Info 23 [16:00:54.000] Finishing updateGraphWorker: Project: /user/username/projects/myproject/a/tsconfig.json Version: 1 structureChanged: true structureIsReused:: Not Elapsed:: *ms -Info 24 [16:00:55.000] Project '/user/username/projects/myproject/a/tsconfig.json' (Configured) -Info 25 [16:00:56.000] Files (2) +Info 12 [00:00:43.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/b/tsconfig.json 2000 undefined Project: /user/username/projects/myproject/a/tsconfig.json WatchType: Config file +Info 13 [00:00:44.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/b 1 undefined Config: /user/username/projects/myproject/b/tsconfig.json WatchType: Wild card directory +Info 14 [00:00:45.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/b 1 undefined Config: /user/username/projects/myproject/b/tsconfig.json WatchType: Wild card directory +Info 15 [00:00:46.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/b 1 undefined Project: /user/username/projects/myproject/a/tsconfig.json WatchType: Failed Lookup Locations +Info 16 [00:00:47.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/b 1 undefined Project: /user/username/projects/myproject/a/tsconfig.json WatchType: Failed Lookup Locations +Info 17 [00:00:48.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/b/index.ts 500 undefined WatchType: Closed Script info +Info 18 [00:00:49.000] FileWatcher:: Added:: WatchInfo: /a/lib/lib.d.ts 500 undefined Project: /user/username/projects/myproject/a/tsconfig.json WatchType: Missing file +Info 19 [00:00:50.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/a/node_modules/@types 1 undefined Project: /user/username/projects/myproject/a/tsconfig.json WatchType: Type roots +Info 20 [00:00:51.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/a/node_modules/@types 1 undefined Project: /user/username/projects/myproject/a/tsconfig.json WatchType: Type roots +Info 21 [00:00:52.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/a/tsconfig.json WatchType: Type roots +Info 22 [00:00:53.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/a/tsconfig.json WatchType: Type roots +Info 23 [00:00:54.000] Finishing updateGraphWorker: Project: /user/username/projects/myproject/a/tsconfig.json Version: 1 structureChanged: true structureIsReused:: Not Elapsed:: *ms +Info 24 [00:00:55.000] Project '/user/username/projects/myproject/a/tsconfig.json' (Configured) +Info 25 [00:00:56.000] Files (2) /user/username/projects/myproject/b/index.ts /user/username/projects/myproject/a/index.ts @@ -115,16 +115,16 @@ Info 25 [16:00:56.000] Files (2) index.ts Matched by default include pattern '**/*' -Info 26 [16:00:57.000] ----------------------------------------------- -Info 27 [16:00:58.000] Search path: /user/username/projects/myproject/a -Info 28 [16:00:59.000] For info: /user/username/projects/myproject/a/tsconfig.json :: No config files found. -Info 29 [16:01:00.000] Project '/user/username/projects/myproject/a/tsconfig.json' (Configured) -Info 29 [16:01:01.000] Files (2) +Info 26 [00:00:57.000] ----------------------------------------------- +Info 27 [00:00:58.000] Search path: /user/username/projects/myproject/a +Info 28 [00:00:59.000] For info: /user/username/projects/myproject/a/tsconfig.json :: No config files found. +Info 29 [00:01:00.000] Project '/user/username/projects/myproject/a/tsconfig.json' (Configured) +Info 29 [00:01:01.000] Files (2) -Info 29 [16:01:02.000] ----------------------------------------------- -Info 29 [16:01:03.000] Open files: -Info 29 [16:01:04.000] FileName: /user/username/projects/myproject/a/index.ts ProjectRootPath: undefined -Info 29 [16:01:05.000] Projects: /user/username/projects/myproject/a/tsconfig.json +Info 29 [00:01:02.000] ----------------------------------------------- +Info 29 [00:01:03.000] Open files: +Info 29 [00:01:04.000] FileName: /user/username/projects/myproject/a/index.ts ProjectRootPath: undefined +Info 29 [00:01:05.000] Projects: /user/username/projects/myproject/a/tsconfig.json After request PolledWatches:: @@ -149,11 +149,11 @@ FsWatchesRecursive:: /user/username/projects/myproject/b: {} -Info 29 [16:01:06.000] response: +Info 29 [00:01:06.000] response: { "responseRequired": false } -Info 30 [16:01:07.000] request: +Info 30 [00:01:07.000] request: { "command": "references", "arguments": { @@ -188,23 +188,23 @@ FsWatchesRecursive:: /user/username/projects/myproject/b: {} -Info 31 [16:01:08.000] Finding references to /user/username/projects/myproject/a/index.ts position 40 in project /user/username/projects/myproject/a/tsconfig.json -Info 32 [16:01:09.000] Search path: /user/username/projects/myproject/b -Info 33 [16:01:10.000] For info: /user/username/projects/myproject/b/index.ts :: Config file name: /user/username/projects/myproject/b/tsconfig.json -Info 34 [16:01:11.000] Creating configuration project /user/username/projects/myproject/b/tsconfig.json -Info 35 [16:01:12.000] Plugins were requested but not running in environment that supports 'require'. Nothing will be loaded -Info 36 [16:01:13.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/b/helper.ts 500 undefined WatchType: Closed Script info -Info 37 [16:01:14.000] Starting updateGraphWorker: Project: /user/username/projects/myproject/b/tsconfig.json -Info 38 [16:01:15.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/b 0 undefined Project: /user/username/projects/myproject/b/tsconfig.json WatchType: Failed Lookup Locations -Info 39 [16:01:16.000] 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 40 [16:01:17.000] FileWatcher:: Added:: WatchInfo: /a/lib/lib.d.ts 500 undefined Project: /user/username/projects/myproject/b/tsconfig.json WatchType: Missing file -Info 41 [16:01:18.000] 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 42 [16:01:19.000] 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 43 [16:01:20.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/b/tsconfig.json WatchType: Type roots -Info 44 [16:01:21.000] 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 45 [16:01:22.000] Finishing updateGraphWorker: Project: /user/username/projects/myproject/b/tsconfig.json Version: 1 structureChanged: true structureIsReused:: Not Elapsed:: *ms -Info 46 [16:01:23.000] Project '/user/username/projects/myproject/b/tsconfig.json' (Configured) -Info 47 [16:01:24.000] Files (2) +Info 31 [00:01:08.000] Finding references to /user/username/projects/myproject/a/index.ts position 40 in project /user/username/projects/myproject/a/tsconfig.json +Info 32 [00:01:09.000] Search path: /user/username/projects/myproject/b +Info 33 [00:01:10.000] For info: /user/username/projects/myproject/b/index.ts :: Config file name: /user/username/projects/myproject/b/tsconfig.json +Info 34 [00:01:11.000] Creating configuration project /user/username/projects/myproject/b/tsconfig.json +Info 35 [00:01:12.000] Plugins were requested but not running in environment that supports 'require'. Nothing will be loaded +Info 36 [00:01:13.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/b/helper.ts 500 undefined WatchType: Closed Script info +Info 37 [00:01:14.000] Starting updateGraphWorker: Project: /user/username/projects/myproject/b/tsconfig.json +Info 38 [00:01:15.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/b 0 undefined Project: /user/username/projects/myproject/b/tsconfig.json WatchType: Failed Lookup Locations +Info 39 [00:01:16.000] 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 40 [00:01:17.000] FileWatcher:: Added:: WatchInfo: /a/lib/lib.d.ts 500 undefined Project: /user/username/projects/myproject/b/tsconfig.json WatchType: Missing file +Info 41 [00:01:18.000] 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 42 [00:01:19.000] 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 43 [00:01:20.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/b/tsconfig.json WatchType: Type roots +Info 44 [00:01:21.000] 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 45 [00:01:22.000] Finishing updateGraphWorker: Project: /user/username/projects/myproject/b/tsconfig.json Version: 1 structureChanged: true structureIsReused:: Not Elapsed:: *ms +Info 46 [00:01:23.000] Project '/user/username/projects/myproject/b/tsconfig.json' (Configured) +Info 47 [00:01:24.000] Files (2) /user/username/projects/myproject/b/index.ts /user/username/projects/myproject/b/helper.ts @@ -215,10 +215,10 @@ Info 47 [16:01:24.000] Files (2) helper.ts Matched by default include pattern '**/*' -Info 48 [16:01:25.000] ----------------------------------------------- -Info 49 [16:01:26.000] Search path: /user/username/projects/myproject/b -Info 50 [16:01:27.000] For info: /user/username/projects/myproject/b/index.ts :: Config file name: /user/username/projects/myproject/b/tsconfig.json -Info 51 [16:01:28.000] Finding references to /user/username/projects/myproject/b/index.ts position 13 in project /user/username/projects/myproject/b/tsconfig.json +Info 48 [00:01:25.000] ----------------------------------------------- +Info 49 [00:01:26.000] Search path: /user/username/projects/myproject/b +Info 50 [00:01:27.000] For info: /user/username/projects/myproject/b/index.ts :: Config file name: /user/username/projects/myproject/b/tsconfig.json +Info 51 [00:01:28.000] Finding references to /user/username/projects/myproject/b/index.ts position 13 in project /user/username/projects/myproject/b/tsconfig.json After request PolledWatches:: @@ -249,7 +249,7 @@ FsWatchesRecursive:: /user/username/projects/myproject/b: {} -Info 52 [16:01:29.000] response: +Info 52 [00:01:29.000] response: { "response": { "refs": [ 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 c4c612cdd3b40..345a427cbf10e 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 @@ -1,5 +1,5 @@ -Info 0 [16:00:34.000] Provided types map file "/a/lib/typesMap.json" doesn't exist -Info 1 [16:00:35.000] request: +Info 0 [00:00:34.000] Provided types map file "/a/lib/typesMap.json" doesn't exist +Info 1 [00:00:35.000] request: { "seq": 0, "type": "request", @@ -61,11 +61,11 @@ FsWatches:: FsWatchesRecursive:: -Info 2 [16:00:36.000] Search path: /user/username/projects/solution/compiler -Info 3 [16:00:37.000] For info: /user/username/projects/solution/compiler/program.ts :: Config file name: /user/username/projects/solution/compiler/tsconfig.json -Info 4 [16:00:38.000] Creating configuration project /user/username/projects/solution/compiler/tsconfig.json -Info 5 [16:00:39.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/solution/compiler/tsconfig.json 2000 undefined Project: /user/username/projects/solution/compiler/tsconfig.json WatchType: Config file -Info 6 [16:00:40.000] Config: /user/username/projects/solution/compiler/tsconfig.json : { +Info 2 [00:00:36.000] Search path: /user/username/projects/solution/compiler +Info 3 [00:00:37.000] For info: /user/username/projects/solution/compiler/program.ts :: Config file name: /user/username/projects/solution/compiler/tsconfig.json +Info 4 [00:00:38.000] Creating configuration project /user/username/projects/solution/compiler/tsconfig.json +Info 5 [00:00:39.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/solution/compiler/tsconfig.json 2000 undefined Project: /user/username/projects/solution/compiler/tsconfig.json WatchType: Config file +Info 6 [00:00:40.000] Config: /user/username/projects/solution/compiler/tsconfig.json : { "rootNames": [ "/user/username/projects/solution/compiler/types.ts", "/user/username/projects/solution/compiler/program.ts" @@ -76,17 +76,17 @@ Info 6 [16:00:40.000] Config: /user/username/projects/solution/compiler/tscon "configFilePath": "/user/username/projects/solution/compiler/tsconfig.json" } } -Info 7 [16:00:41.000] Plugins were requested but not running in environment that supports 'require'. Nothing will be loaded -Info 8 [16:00:42.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/solution/compiler/types.ts 500 undefined WatchType: Closed Script info -Info 9 [16:00:43.000] Starting updateGraphWorker: Project: /user/username/projects/solution/compiler/tsconfig.json -Info 10 [16:00:44.000] FileWatcher:: Added:: WatchInfo: /a/lib/lib.d.ts 500 undefined WatchType: Closed Script info -Info 11 [16:00:45.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/solution/compiler/node_modules/@types 1 undefined Project: /user/username/projects/solution/compiler/tsconfig.json WatchType: Type roots -Info 12 [16:00:46.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/solution/compiler/node_modules/@types 1 undefined Project: /user/username/projects/solution/compiler/tsconfig.json WatchType: Type roots -Info 13 [16:00:47.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/solution/node_modules/@types 1 undefined Project: /user/username/projects/solution/compiler/tsconfig.json WatchType: Type roots -Info 14 [16:00:48.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/solution/node_modules/@types 1 undefined Project: /user/username/projects/solution/compiler/tsconfig.json WatchType: Type roots -Info 15 [16:00:49.000] Finishing updateGraphWorker: Project: /user/username/projects/solution/compiler/tsconfig.json Version: 1 structureChanged: true structureIsReused:: Not Elapsed:: *ms -Info 16 [16:00:50.000] Project '/user/username/projects/solution/compiler/tsconfig.json' (Configured) -Info 17 [16:00:51.000] Files (3) +Info 7 [00:00:41.000] Plugins were requested but not running in environment that supports 'require'. Nothing will be loaded +Info 8 [00:00:42.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/solution/compiler/types.ts 500 undefined WatchType: Closed Script info +Info 9 [00:00:43.000] Starting updateGraphWorker: Project: /user/username/projects/solution/compiler/tsconfig.json +Info 10 [00:00:44.000] FileWatcher:: Added:: WatchInfo: /a/lib/lib.d.ts 500 undefined WatchType: Closed Script info +Info 11 [00:00:45.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/solution/compiler/node_modules/@types 1 undefined Project: /user/username/projects/solution/compiler/tsconfig.json WatchType: Type roots +Info 12 [00:00:46.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/solution/compiler/node_modules/@types 1 undefined Project: /user/username/projects/solution/compiler/tsconfig.json WatchType: Type roots +Info 13 [00:00:47.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/solution/node_modules/@types 1 undefined Project: /user/username/projects/solution/compiler/tsconfig.json WatchType: Type roots +Info 14 [00:00:48.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/solution/node_modules/@types 1 undefined Project: /user/username/projects/solution/compiler/tsconfig.json WatchType: Type roots +Info 15 [00:00:49.000] Finishing updateGraphWorker: Project: /user/username/projects/solution/compiler/tsconfig.json Version: 1 structureChanged: true structureIsReused:: Not Elapsed:: *ms +Info 16 [00:00:50.000] Project '/user/username/projects/solution/compiler/tsconfig.json' (Configured) +Info 17 [00:00:51.000] Files (3) /a/lib/lib.d.ts /user/username/projects/solution/compiler/types.ts /user/username/projects/solution/compiler/program.ts @@ -99,24 +99,24 @@ Info 17 [16:00:51.000] Files (3) program.ts Part of 'files' list in tsconfig.json -Info 18 [16:00:52.000] ----------------------------------------------- -Info 19 [16:00:53.000] Search path: /user/username/projects/solution/compiler -Info 20 [16:00:54.000] For info: /user/username/projects/solution/compiler/tsconfig.json :: Config file name: /user/username/projects/solution/tsconfig.json -Info 21 [16:00:55.000] Creating configuration project /user/username/projects/solution/tsconfig.json -Info 22 [16:00:56.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/solution/tsconfig.json 2000 undefined Project: /user/username/projects/solution/tsconfig.json WatchType: Config file -Info 23 [16:00:57.000] Search path: /user/username/projects/solution -Info 24 [16:00:58.000] For info: /user/username/projects/solution/tsconfig.json :: No config files found. -Info 25 [16:00:59.000] Project '/user/username/projects/solution/compiler/tsconfig.json' (Configured) -Info 25 [16:01:00.000] Files (3) - -Info 25 [16:01:01.000] ----------------------------------------------- -Info 25 [16:01:02.000] Project '/user/username/projects/solution/tsconfig.json' (Configured) -Info 25 [16:01:03.000] Files (0) InitialLoadPending - -Info 25 [16:01:04.000] ----------------------------------------------- -Info 25 [16:01:05.000] Open files: -Info 25 [16:01:06.000] FileName: /user/username/projects/solution/compiler/program.ts ProjectRootPath: undefined -Info 25 [16:01:07.000] Projects: /user/username/projects/solution/compiler/tsconfig.json +Info 18 [00:00:52.000] ----------------------------------------------- +Info 19 [00:00:53.000] Search path: /user/username/projects/solution/compiler +Info 20 [00:00:54.000] For info: /user/username/projects/solution/compiler/tsconfig.json :: Config file name: /user/username/projects/solution/tsconfig.json +Info 21 [00:00:55.000] Creating configuration project /user/username/projects/solution/tsconfig.json +Info 22 [00:00:56.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/solution/tsconfig.json 2000 undefined Project: /user/username/projects/solution/tsconfig.json WatchType: Config file +Info 23 [00:00:57.000] Search path: /user/username/projects/solution +Info 24 [00:00:58.000] For info: /user/username/projects/solution/tsconfig.json :: No config files found. +Info 25 [00:00:59.000] Project '/user/username/projects/solution/compiler/tsconfig.json' (Configured) +Info 25 [00:01:00.000] Files (3) + +Info 25 [00:01:01.000] ----------------------------------------------- +Info 25 [00:01:02.000] Project '/user/username/projects/solution/tsconfig.json' (Configured) +Info 25 [00:01:03.000] Files (0) InitialLoadPending + +Info 25 [00:01:04.000] ----------------------------------------------- +Info 25 [00:01:05.000] Open files: +Info 25 [00:01:06.000] FileName: /user/username/projects/solution/compiler/program.ts ProjectRootPath: undefined +Info 25 [00:01:07.000] Projects: /user/username/projects/solution/compiler/tsconfig.json After request PolledWatches:: @@ -137,11 +137,11 @@ FsWatches:: FsWatchesRecursive:: -Info 25 [16:01:08.000] response: +Info 25 [00:01:08.000] response: { "responseRequired": false } -Info 26 [16:01:09.000] request: +Info 26 [00:01:09.000] request: { "command": "references", "arguments": { @@ -172,7 +172,7 @@ FsWatches:: FsWatchesRecursive:: -Info 27 [16:01:10.000] Finding references to /user/username/projects/solution/compiler/program.ts position 133 in project /user/username/projects/solution/compiler/tsconfig.json +Info 27 [00:01:10.000] Finding references to /user/username/projects/solution/compiler/program.ts position 133 in project /user/username/projects/solution/compiler/tsconfig.json After request PolledWatches:: @@ -193,7 +193,7 @@ FsWatches:: FsWatchesRecursive:: -Info 28 [16:01:11.000] response: +Info 28 [00:01:11.000] response: { "response": { "refs": [ @@ -238,7 +238,7 @@ Info 28 [16:01:11.000] response: }, "responseRequired": true } -Info 29 [16:01:12.000] request: +Info 29 [00:01:12.000] request: { "command": "references", "arguments": { @@ -269,9 +269,9 @@ FsWatches:: FsWatchesRecursive:: -Info 30 [16:01:13.000] Finding references to /user/username/projects/solution/compiler/program.ts position 110 in project /user/username/projects/solution/compiler/tsconfig.json -Info 31 [16:01:14.000] Loading configured project /user/username/projects/solution/tsconfig.json -Info 32 [16:01:15.000] Config: /user/username/projects/solution/tsconfig.json : { +Info 30 [00:01:13.000] Finding references to /user/username/projects/solution/compiler/program.ts position 110 in project /user/username/projects/solution/compiler/tsconfig.json +Info 31 [00:01:14.000] Loading configured project /user/username/projects/solution/tsconfig.json +Info 32 [00:01:15.000] Config: /user/username/projects/solution/tsconfig.json : { "rootNames": [], "options": { "configFilePath": "/user/username/projects/solution/tsconfig.json" @@ -287,9 +287,9 @@ Info 32 [16:01:15.000] Config: /user/username/projects/solution/tsconfig.json } ] } -Info 33 [16:01:16.000] Plugins were requested but not running in environment that supports 'require'. Nothing will be loaded -Info 34 [16:01:17.000] Starting updateGraphWorker: Project: /user/username/projects/solution/tsconfig.json -Info 35 [16:01:18.000] Config: /user/username/projects/solution/services/tsconfig.json : { +Info 33 [00:01:16.000] Plugins were requested but not running in environment that supports 'require'. Nothing will be loaded +Info 34 [00:01:17.000] Starting updateGraphWorker: Project: /user/username/projects/solution/tsconfig.json +Info 35 [00:01:18.000] Config: /user/username/projects/solution/services/tsconfig.json : { "rootNames": [ "/user/username/projects/solution/services/services.ts" ], @@ -304,22 +304,22 @@ Info 35 [16:01:18.000] Config: /user/username/projects/solution/services/tscon } ] } -Info 36 [16:01:19.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/solution/services/tsconfig.json 2000 undefined Project: /user/username/projects/solution/tsconfig.json WatchType: Config file -Info 37 [16:01:20.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/solution/node_modules/@types 1 undefined Project: /user/username/projects/solution/tsconfig.json WatchType: Type roots -Info 38 [16:01:21.000] 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 39 [16:01:22.000] Finishing updateGraphWorker: Project: /user/username/projects/solution/tsconfig.json Version: 1 structureChanged: true structureIsReused:: Not Elapsed:: *ms -Info 40 [16:01:23.000] Different program with same set of files -Info 41 [16:01:24.000] Creating configuration project /user/username/projects/solution/services/tsconfig.json -Info 42 [16:01:25.000] Plugins were requested but not running in environment that supports 'require'. Nothing will be loaded -Info 43 [16:01:26.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/solution/services/services.ts 500 undefined WatchType: Closed Script info -Info 44 [16:01:27.000] Starting updateGraphWorker: Project: /user/username/projects/solution/services/tsconfig.json -Info 45 [16:01:28.000] 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 46 [16:01:29.000] 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 47 [16:01:30.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/solution/node_modules/@types 1 undefined Project: /user/username/projects/solution/services/tsconfig.json WatchType: Type roots -Info 48 [16:01:31.000] 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 49 [16:01:32.000] Finishing updateGraphWorker: Project: /user/username/projects/solution/services/tsconfig.json Version: 1 structureChanged: true structureIsReused:: Not Elapsed:: *ms -Info 50 [16:01:33.000] Project '/user/username/projects/solution/services/tsconfig.json' (Configured) -Info 51 [16:01:34.000] Files (4) +Info 36 [00:01:19.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/solution/services/tsconfig.json 2000 undefined Project: /user/username/projects/solution/tsconfig.json WatchType: Config file +Info 37 [00:01:20.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/solution/node_modules/@types 1 undefined Project: /user/username/projects/solution/tsconfig.json WatchType: Type roots +Info 38 [00:01:21.000] 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 39 [00:01:22.000] Finishing updateGraphWorker: Project: /user/username/projects/solution/tsconfig.json Version: 1 structureChanged: true structureIsReused:: Not Elapsed:: *ms +Info 40 [00:01:23.000] Different program with same set of files +Info 41 [00:01:24.000] Creating configuration project /user/username/projects/solution/services/tsconfig.json +Info 42 [00:01:25.000] Plugins were requested but not running in environment that supports 'require'. Nothing will be loaded +Info 43 [00:01:26.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/solution/services/services.ts 500 undefined WatchType: Closed Script info +Info 44 [00:01:27.000] Starting updateGraphWorker: Project: /user/username/projects/solution/services/tsconfig.json +Info 45 [00:01:28.000] 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 46 [00:01:29.000] 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 47 [00:01:30.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/solution/node_modules/@types 1 undefined Project: /user/username/projects/solution/services/tsconfig.json WatchType: Type roots +Info 48 [00:01:31.000] 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 49 [00:01:32.000] Finishing updateGraphWorker: Project: /user/username/projects/solution/services/tsconfig.json Version: 1 structureChanged: true structureIsReused:: Not Elapsed:: *ms +Info 50 [00:01:33.000] Project '/user/username/projects/solution/services/tsconfig.json' (Configured) +Info 51 [00:01:34.000] Files (4) /a/lib/lib.d.ts /user/username/projects/solution/compiler/types.ts /user/username/projects/solution/compiler/program.ts @@ -335,15 +335,15 @@ Info 51 [16:01:34.000] Files (4) services.ts Part of 'files' list in tsconfig.json -Info 52 [16:01:35.000] ----------------------------------------------- -Info 53 [16:01:36.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/solution/compiler/types.d.ts 2000 undefined Project: /user/username/projects/solution/compiler/tsconfig.json WatchType: Missing generated file -Info 54 [16:01:37.000] Finding references to /user/username/projects/solution/compiler/types.ts position 103 in project /user/username/projects/solution/services/tsconfig.json -Info 55 [16:01:38.000] Search path: /user/username/projects/solution/compiler -Info 56 [16:01:39.000] For info: /user/username/projects/solution/compiler/types.ts :: Config file name: /user/username/projects/solution/compiler/tsconfig.json -Info 57 [16:01:40.000] Search path: /user/username/projects/solution/compiler -Info 58 [16:01:41.000] For info: /user/username/projects/solution/compiler/types.ts :: Config file name: /user/username/projects/solution/compiler/tsconfig.json -Info 59 [16:01:42.000] Search path: /user/username/projects/solution/compiler -Info 60 [16:01:43.000] For info: /user/username/projects/solution/compiler/program.ts :: Config file name: /user/username/projects/solution/compiler/tsconfig.json +Info 52 [00:01:35.000] ----------------------------------------------- +Info 53 [00:01:36.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/solution/compiler/types.d.ts 2000 undefined Project: /user/username/projects/solution/compiler/tsconfig.json WatchType: Missing generated file +Info 54 [00:01:37.000] Finding references to /user/username/projects/solution/compiler/types.ts position 103 in project /user/username/projects/solution/services/tsconfig.json +Info 55 [00:01:38.000] Search path: /user/username/projects/solution/compiler +Info 56 [00:01:39.000] For info: /user/username/projects/solution/compiler/types.ts :: Config file name: /user/username/projects/solution/compiler/tsconfig.json +Info 57 [00:01:40.000] Search path: /user/username/projects/solution/compiler +Info 58 [00:01:41.000] For info: /user/username/projects/solution/compiler/types.ts :: Config file name: /user/username/projects/solution/compiler/tsconfig.json +Info 59 [00:01:42.000] Search path: /user/username/projects/solution/compiler +Info 60 [00:01:43.000] For info: /user/username/projects/solution/compiler/program.ts :: Config file name: /user/username/projects/solution/compiler/tsconfig.json After request PolledWatches:: @@ -372,7 +372,7 @@ FsWatches:: FsWatchesRecursive:: -Info 61 [16:01:44.000] response: +Info 61 [00:01:44.000] response: { "response": { "refs": [ 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 6fdb49ec457ee..fabcb37fd7e8e 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 @@ -1,5 +1,5 @@ -Info 0 [16:00:44.000] Provided types map file "/a/lib/typesMap.json" doesn't exist -Info 1 [16:00:45.000] request: +Info 0 [00:00:44.000] Provided types map file "/a/lib/typesMap.json" doesn't exist +Info 1 [00:00:45.000] request: { "seq": 0, "type": "request", @@ -74,11 +74,11 @@ FsWatches:: FsWatchesRecursive:: -Info 2 [16:00:46.000] Search path: /user/username/projects/solution/b -Info 3 [16:00:47.000] For info: /user/username/projects/solution/b/index.ts :: Config file name: /user/username/projects/solution/b/tsconfig.json -Info 4 [16:00:48.000] Creating configuration project /user/username/projects/solution/b/tsconfig.json -Info 5 [16:00:49.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/solution/b/tsconfig.json 2000 undefined Project: /user/username/projects/solution/b/tsconfig.json WatchType: Config file -Info 6 [16:00:50.000] Config: /user/username/projects/solution/b/tsconfig.json : { +Info 2 [00:00:46.000] Search path: /user/username/projects/solution/b +Info 3 [00:00:47.000] For info: /user/username/projects/solution/b/index.ts :: Config file name: /user/username/projects/solution/b/tsconfig.json +Info 4 [00:00:48.000] Creating configuration project /user/username/projects/solution/b/tsconfig.json +Info 5 [00:00:49.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/solution/b/tsconfig.json 2000 undefined Project: /user/username/projects/solution/b/tsconfig.json WatchType: Config file +Info 6 [00:00:50.000] Config: /user/username/projects/solution/b/tsconfig.json : { "rootNames": [ "/user/username/projects/solution/b/index.ts" ], @@ -93,9 +93,9 @@ Info 6 [16:00:50.000] Config: /user/username/projects/solution/b/tsconfig.jso } ] } -Info 7 [16:00:51.000] Plugins were requested but not running in environment that supports 'require'. Nothing will be loaded -Info 8 [16:00:52.000] Starting updateGraphWorker: Project: /user/username/projects/solution/b/tsconfig.json -Info 9 [16:00:53.000] Config: /user/username/projects/solution/a/tsconfig.json : { +Info 7 [00:00:51.000] Plugins were requested but not running in environment that supports 'require'. Nothing will be loaded +Info 8 [00:00:52.000] Starting updateGraphWorker: Project: /user/username/projects/solution/b/tsconfig.json +Info 9 [00:00:53.000] Config: /user/username/projects/solution/a/tsconfig.json : { "rootNames": [ "/user/username/projects/solution/a/index.ts" ], @@ -105,20 +105,20 @@ Info 9 [16:00:53.000] Config: /user/username/projects/solution/a/tsconfig.jso "configFilePath": "/user/username/projects/solution/a/tsconfig.json" } } -Info 10 [16:00:54.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/solution/a/tsconfig.json 2000 undefined Project: /user/username/projects/solution/b/tsconfig.json WatchType: Config file -Info 11 [16:00:55.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/solution/a/index.ts 500 undefined WatchType: Closed Script info -Info 12 [16:00:56.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/solution 0 undefined Project: /user/username/projects/solution/b/tsconfig.json WatchType: Failed Lookup Locations -Info 13 [16:00:57.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/solution 0 undefined Project: /user/username/projects/solution/b/tsconfig.json WatchType: Failed Lookup Locations -Info 14 [16:00:58.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/solution/a 1 undefined Project: /user/username/projects/solution/b/tsconfig.json WatchType: Failed Lookup Locations -Info 15 [16:00:59.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/solution/a 1 undefined Project: /user/username/projects/solution/b/tsconfig.json WatchType: Failed Lookup Locations -Info 16 [16:01:00.000] FileWatcher:: Added:: WatchInfo: /a/lib/lib.d.ts 500 undefined WatchType: Closed Script info -Info 17 [16:01:01.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/solution/b/node_modules/@types 1 undefined Project: /user/username/projects/solution/b/tsconfig.json WatchType: Type roots -Info 18 [16:01:02.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/solution/b/node_modules/@types 1 undefined Project: /user/username/projects/solution/b/tsconfig.json WatchType: Type roots -Info 19 [16:01:03.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/solution/node_modules/@types 1 undefined Project: /user/username/projects/solution/b/tsconfig.json WatchType: Type roots -Info 20 [16:01:04.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/solution/node_modules/@types 1 undefined Project: /user/username/projects/solution/b/tsconfig.json WatchType: Type roots -Info 21 [16:01:05.000] Finishing updateGraphWorker: Project: /user/username/projects/solution/b/tsconfig.json Version: 1 structureChanged: true structureIsReused:: Not Elapsed:: *ms -Info 22 [16:01:06.000] Project '/user/username/projects/solution/b/tsconfig.json' (Configured) -Info 23 [16:01:07.000] Files (3) +Info 10 [00:00:54.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/solution/a/tsconfig.json 2000 undefined Project: /user/username/projects/solution/b/tsconfig.json WatchType: Config file +Info 11 [00:00:55.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/solution/a/index.ts 500 undefined WatchType: Closed Script info +Info 12 [00:00:56.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/solution 0 undefined Project: /user/username/projects/solution/b/tsconfig.json WatchType: Failed Lookup Locations +Info 13 [00:00:57.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/solution 0 undefined Project: /user/username/projects/solution/b/tsconfig.json WatchType: Failed Lookup Locations +Info 14 [00:00:58.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/solution/a 1 undefined Project: /user/username/projects/solution/b/tsconfig.json WatchType: Failed Lookup Locations +Info 15 [00:00:59.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/solution/a 1 undefined Project: /user/username/projects/solution/b/tsconfig.json WatchType: Failed Lookup Locations +Info 16 [00:01:00.000] FileWatcher:: Added:: WatchInfo: /a/lib/lib.d.ts 500 undefined WatchType: Closed Script info +Info 17 [00:01:01.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/solution/b/node_modules/@types 1 undefined Project: /user/username/projects/solution/b/tsconfig.json WatchType: Type roots +Info 18 [00:01:02.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/solution/b/node_modules/@types 1 undefined Project: /user/username/projects/solution/b/tsconfig.json WatchType: Type roots +Info 19 [00:01:03.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/solution/node_modules/@types 1 undefined Project: /user/username/projects/solution/b/tsconfig.json WatchType: Type roots +Info 20 [00:01:04.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/solution/node_modules/@types 1 undefined Project: /user/username/projects/solution/b/tsconfig.json WatchType: Type roots +Info 21 [00:01:05.000] Finishing updateGraphWorker: Project: /user/username/projects/solution/b/tsconfig.json Version: 1 structureChanged: true structureIsReused:: Not Elapsed:: *ms +Info 22 [00:01:06.000] Project '/user/username/projects/solution/b/tsconfig.json' (Configured) +Info 23 [00:01:07.000] Files (3) /a/lib/lib.d.ts /user/username/projects/solution/a/index.ts /user/username/projects/solution/b/index.ts @@ -132,24 +132,24 @@ Info 23 [16:01:07.000] Files (3) index.ts Part of 'files' list in tsconfig.json -Info 24 [16:01:08.000] ----------------------------------------------- -Info 25 [16:01:09.000] Search path: /user/username/projects/solution/b -Info 26 [16:01:10.000] For info: /user/username/projects/solution/b/tsconfig.json :: Config file name: /user/username/projects/solution/tsconfig.json -Info 27 [16:01:11.000] Creating configuration project /user/username/projects/solution/tsconfig.json -Info 28 [16:01:12.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/solution/tsconfig.json 2000 undefined Project: /user/username/projects/solution/tsconfig.json WatchType: Config file -Info 29 [16:01:13.000] Search path: /user/username/projects/solution -Info 30 [16:01:14.000] For info: /user/username/projects/solution/tsconfig.json :: No config files found. -Info 31 [16:01:15.000] Project '/user/username/projects/solution/b/tsconfig.json' (Configured) -Info 31 [16:01:16.000] Files (3) - -Info 31 [16:01:17.000] ----------------------------------------------- -Info 31 [16:01:18.000] Project '/user/username/projects/solution/tsconfig.json' (Configured) -Info 31 [16:01:19.000] Files (0) InitialLoadPending - -Info 31 [16:01:20.000] ----------------------------------------------- -Info 31 [16:01:21.000] Open files: -Info 31 [16:01:22.000] FileName: /user/username/projects/solution/b/index.ts ProjectRootPath: undefined -Info 31 [16:01:23.000] Projects: /user/username/projects/solution/b/tsconfig.json +Info 24 [00:01:08.000] ----------------------------------------------- +Info 25 [00:01:09.000] Search path: /user/username/projects/solution/b +Info 26 [00:01:10.000] For info: /user/username/projects/solution/b/tsconfig.json :: Config file name: /user/username/projects/solution/tsconfig.json +Info 27 [00:01:11.000] Creating configuration project /user/username/projects/solution/tsconfig.json +Info 28 [00:01:12.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/solution/tsconfig.json 2000 undefined Project: /user/username/projects/solution/tsconfig.json WatchType: Config file +Info 29 [00:01:13.000] Search path: /user/username/projects/solution +Info 30 [00:01:14.000] For info: /user/username/projects/solution/tsconfig.json :: No config files found. +Info 31 [00:01:15.000] Project '/user/username/projects/solution/b/tsconfig.json' (Configured) +Info 31 [00:01:16.000] Files (3) + +Info 31 [00:01:17.000] ----------------------------------------------- +Info 31 [00:01:18.000] Project '/user/username/projects/solution/tsconfig.json' (Configured) +Info 31 [00:01:19.000] Files (0) InitialLoadPending + +Info 31 [00:01:20.000] ----------------------------------------------- +Info 31 [00:01:21.000] Open files: +Info 31 [00:01:22.000] FileName: /user/username/projects/solution/b/index.ts ProjectRootPath: undefined +Info 31 [00:01:23.000] Projects: /user/username/projects/solution/b/tsconfig.json After request PolledWatches:: @@ -176,11 +176,11 @@ FsWatchesRecursive:: /user/username/projects/solution/a: {} -Info 31 [16:01:24.000] response: +Info 31 [00:01:24.000] response: { "responseRequired": false } -Info 32 [16:01:25.000] request: +Info 32 [00:01:25.000] request: { "command": "references", "arguments": { @@ -217,19 +217,19 @@ FsWatchesRecursive:: /user/username/projects/solution/a: {} -Info 33 [16:01:26.000] Finding references to /user/username/projects/solution/b/index.ts position 86 in project /user/username/projects/solution/b/tsconfig.json -Info 34 [16:01:27.000] Search path: /user/username/projects/solution/a -Info 35 [16:01:28.000] For info: /user/username/projects/solution/a/index.ts :: Config file name: /user/username/projects/solution/a/tsconfig.json -Info 36 [16:01:29.000] Creating configuration project /user/username/projects/solution/a/tsconfig.json -Info 37 [16:01:30.000] Plugins were requested but not running in environment that supports 'require'. Nothing will be loaded -Info 38 [16:01:31.000] Starting updateGraphWorker: Project: /user/username/projects/solution/a/tsconfig.json -Info 39 [16:01:32.000] 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 40 [16:01:33.000] 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 41 [16:01:34.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/solution/node_modules/@types 1 undefined Project: /user/username/projects/solution/a/tsconfig.json WatchType: Type roots -Info 42 [16:01:35.000] 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 43 [16:01:36.000] Finishing updateGraphWorker: Project: /user/username/projects/solution/a/tsconfig.json Version: 1 structureChanged: true structureIsReused:: Not Elapsed:: *ms -Info 44 [16:01:37.000] Project '/user/username/projects/solution/a/tsconfig.json' (Configured) -Info 45 [16:01:38.000] Files (2) +Info 33 [00:01:26.000] Finding references to /user/username/projects/solution/b/index.ts position 86 in project /user/username/projects/solution/b/tsconfig.json +Info 34 [00:01:27.000] Search path: /user/username/projects/solution/a +Info 35 [00:01:28.000] For info: /user/username/projects/solution/a/index.ts :: Config file name: /user/username/projects/solution/a/tsconfig.json +Info 36 [00:01:29.000] Creating configuration project /user/username/projects/solution/a/tsconfig.json +Info 37 [00:01:30.000] Plugins were requested but not running in environment that supports 'require'. Nothing will be loaded +Info 38 [00:01:31.000] Starting updateGraphWorker: Project: /user/username/projects/solution/a/tsconfig.json +Info 39 [00:01:32.000] 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 40 [00:01:33.000] 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 41 [00:01:34.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/solution/node_modules/@types 1 undefined Project: /user/username/projects/solution/a/tsconfig.json WatchType: Type roots +Info 42 [00:01:35.000] 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 43 [00:01:36.000] Finishing updateGraphWorker: Project: /user/username/projects/solution/a/tsconfig.json Version: 1 structureChanged: true structureIsReused:: Not Elapsed:: *ms +Info 44 [00:01:37.000] Project '/user/username/projects/solution/a/tsconfig.json' (Configured) +Info 45 [00:01:38.000] Files (2) /a/lib/lib.d.ts /user/username/projects/solution/a/index.ts @@ -239,12 +239,12 @@ Info 45 [16:01:38.000] Files (2) index.ts Part of 'files' list in tsconfig.json -Info 46 [16:01:39.000] ----------------------------------------------- -Info 47 [16:01:40.000] Search path: /user/username/projects/solution/a -Info 48 [16:01:41.000] For info: /user/username/projects/solution/a/index.ts :: Config file name: /user/username/projects/solution/a/tsconfig.json -Info 49 [16:01:42.000] Finding references to /user/username/projects/solution/a/index.ts position 34 in project /user/username/projects/solution/a/tsconfig.json -Info 50 [16:01:43.000] Loading configured project /user/username/projects/solution/tsconfig.json -Info 51 [16:01:44.000] Config: /user/username/projects/solution/tsconfig.json : { +Info 46 [00:01:39.000] ----------------------------------------------- +Info 47 [00:01:40.000] Search path: /user/username/projects/solution/a +Info 48 [00:01:41.000] For info: /user/username/projects/solution/a/index.ts :: Config file name: /user/username/projects/solution/a/tsconfig.json +Info 49 [00:01:42.000] Finding references to /user/username/projects/solution/a/index.ts position 34 in project /user/username/projects/solution/a/tsconfig.json +Info 50 [00:01:43.000] Loading configured project /user/username/projects/solution/tsconfig.json +Info 51 [00:01:44.000] Config: /user/username/projects/solution/tsconfig.json : { "rootNames": [], "options": { "configFilePath": "/user/username/projects/solution/tsconfig.json" @@ -268,9 +268,9 @@ Info 51 [16:01:44.000] Config: /user/username/projects/solution/tsconfig.json } ] } -Info 52 [16:01:45.000] Plugins were requested but not running in environment that supports 'require'. Nothing will be loaded -Info 53 [16:01:46.000] Starting updateGraphWorker: Project: /user/username/projects/solution/tsconfig.json -Info 54 [16:01:47.000] Config: /user/username/projects/solution/c/tsconfig.json : { +Info 52 [00:01:45.000] Plugins were requested but not running in environment that supports 'require'. Nothing will be loaded +Info 53 [00:01:46.000] Starting updateGraphWorker: Project: /user/username/projects/solution/tsconfig.json +Info 54 [00:01:47.000] Config: /user/username/projects/solution/c/tsconfig.json : { "rootNames": [ "/user/username/projects/solution/c/index.ts" ], @@ -285,8 +285,8 @@ Info 54 [16:01:47.000] Config: /user/username/projects/solution/c/tsconfig.jso } ] } -Info 55 [16:01:48.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/solution/c/tsconfig.json 2000 undefined Project: /user/username/projects/solution/tsconfig.json WatchType: Config file -Info 56 [16:01:49.000] Config: /user/username/projects/solution/d/tsconfig.json : { +Info 55 [00:01:48.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/solution/c/tsconfig.json 2000 undefined Project: /user/username/projects/solution/tsconfig.json WatchType: Config file +Info 56 [00:01:49.000] Config: /user/username/projects/solution/d/tsconfig.json : { "rootNames": [ "/user/username/projects/solution/d/index.ts" ], @@ -301,28 +301,28 @@ Info 56 [16:01:49.000] Config: /user/username/projects/solution/d/tsconfig.jso } ] } -Info 57 [16:01:50.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/solution/d/tsconfig.json 2000 undefined Project: /user/username/projects/solution/tsconfig.json WatchType: Config file -Info 58 [16:01:51.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/solution/node_modules/@types 1 undefined Project: /user/username/projects/solution/tsconfig.json WatchType: Type roots -Info 59 [16:01:52.000] 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 60 [16:01:53.000] Finishing updateGraphWorker: Project: /user/username/projects/solution/tsconfig.json Version: 1 structureChanged: true structureIsReused:: Not Elapsed:: *ms -Info 61 [16:01:54.000] Different program with same set of files -Info 62 [16:01:55.000] Creating configuration project /user/username/projects/solution/c/tsconfig.json -Info 63 [16:01:56.000] Plugins were requested but not running in environment that supports 'require'. Nothing will be loaded -Info 64 [16:01:57.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/solution/c/index.ts 500 undefined WatchType: Closed Script info -Info 65 [16:01:58.000] Starting updateGraphWorker: Project: /user/username/projects/solution/c/tsconfig.json -Info 66 [16:01:59.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/solution 0 undefined Project: /user/username/projects/solution/c/tsconfig.json WatchType: Failed Lookup Locations -Info 67 [16:02:00.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/solution 0 undefined Project: /user/username/projects/solution/c/tsconfig.json WatchType: Failed Lookup Locations -Info 68 [16:02:01.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/solution/a 1 undefined Project: /user/username/projects/solution/c/tsconfig.json WatchType: Failed Lookup Locations -Info 69 [16:02:02.000] 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 70 [16:02:03.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/solution/b 1 undefined Project: /user/username/projects/solution/c/tsconfig.json WatchType: Failed Lookup Locations -Info 71 [16:02:04.000] 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 72 [16:02:05.000] 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 73 [16:02:06.000] 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 74 [16:02:07.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/solution/node_modules/@types 1 undefined Project: /user/username/projects/solution/c/tsconfig.json WatchType: Type roots -Info 75 [16:02:08.000] 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 76 [16:02:09.000] Finishing updateGraphWorker: Project: /user/username/projects/solution/c/tsconfig.json Version: 1 structureChanged: true structureIsReused:: Not Elapsed:: *ms -Info 77 [16:02:10.000] Project '/user/username/projects/solution/c/tsconfig.json' (Configured) -Info 78 [16:02:11.000] Files (4) +Info 57 [00:01:50.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/solution/d/tsconfig.json 2000 undefined Project: /user/username/projects/solution/tsconfig.json WatchType: Config file +Info 58 [00:01:51.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/solution/node_modules/@types 1 undefined Project: /user/username/projects/solution/tsconfig.json WatchType: Type roots +Info 59 [00:01:52.000] 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 60 [00:01:53.000] Finishing updateGraphWorker: Project: /user/username/projects/solution/tsconfig.json Version: 1 structureChanged: true structureIsReused:: Not Elapsed:: *ms +Info 61 [00:01:54.000] Different program with same set of files +Info 62 [00:01:55.000] Creating configuration project /user/username/projects/solution/c/tsconfig.json +Info 63 [00:01:56.000] Plugins were requested but not running in environment that supports 'require'. Nothing will be loaded +Info 64 [00:01:57.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/solution/c/index.ts 500 undefined WatchType: Closed Script info +Info 65 [00:01:58.000] Starting updateGraphWorker: Project: /user/username/projects/solution/c/tsconfig.json +Info 66 [00:01:59.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/solution 0 undefined Project: /user/username/projects/solution/c/tsconfig.json WatchType: Failed Lookup Locations +Info 67 [00:02:00.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/solution 0 undefined Project: /user/username/projects/solution/c/tsconfig.json WatchType: Failed Lookup Locations +Info 68 [00:02:01.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/solution/a 1 undefined Project: /user/username/projects/solution/c/tsconfig.json WatchType: Failed Lookup Locations +Info 69 [00:02:02.000] 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 70 [00:02:03.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/solution/b 1 undefined Project: /user/username/projects/solution/c/tsconfig.json WatchType: Failed Lookup Locations +Info 71 [00:02:04.000] 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 72 [00:02:05.000] 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 73 [00:02:06.000] 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 74 [00:02:07.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/solution/node_modules/@types 1 undefined Project: /user/username/projects/solution/c/tsconfig.json WatchType: Type roots +Info 75 [00:02:08.000] 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 76 [00:02:09.000] Finishing updateGraphWorker: Project: /user/username/projects/solution/c/tsconfig.json Version: 1 structureChanged: true structureIsReused:: Not Elapsed:: *ms +Info 77 [00:02:10.000] Project '/user/username/projects/solution/c/tsconfig.json' (Configured) +Info 78 [00:02:11.000] Files (4) /a/lib/lib.d.ts /user/username/projects/solution/a/index.ts /user/username/projects/solution/b/index.ts @@ -339,26 +339,26 @@ Info 78 [16:02:11.000] Files (4) index.ts Part of 'files' list in tsconfig.json -Info 79 [16:02:12.000] ----------------------------------------------- -Info 80 [16:02:13.000] Creating configuration project /user/username/projects/solution/d/tsconfig.json -Info 81 [16:02:14.000] Plugins were requested but not running in environment that supports 'require'. Nothing will be loaded -Info 82 [16:02:15.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/solution/d/index.ts 500 undefined WatchType: Closed Script info -Info 83 [16:02:16.000] Starting updateGraphWorker: Project: /user/username/projects/solution/d/tsconfig.json -Info 84 [16:02:17.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/solution 0 undefined Project: /user/username/projects/solution/d/tsconfig.json WatchType: Failed Lookup Locations -Info 85 [16:02:18.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/solution 0 undefined Project: /user/username/projects/solution/d/tsconfig.json WatchType: Failed Lookup Locations -Info 86 [16:02:19.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/solution/a 1 undefined Project: /user/username/projects/solution/d/tsconfig.json WatchType: Failed Lookup Locations -Info 87 [16:02:20.000] 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 88 [16:02:21.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/solution/c 1 undefined Project: /user/username/projects/solution/d/tsconfig.json WatchType: Failed Lookup Locations -Info 89 [16:02:22.000] 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 90 [16:02:23.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/solution/b 1 undefined Project: /user/username/projects/solution/d/tsconfig.json WatchType: Failed Lookup Locations -Info 91 [16:02:24.000] 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 92 [16:02:25.000] 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 93 [16:02:26.000] 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 94 [16:02:27.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/solution/node_modules/@types 1 undefined Project: /user/username/projects/solution/d/tsconfig.json WatchType: Type roots -Info 95 [16:02:28.000] 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 96 [16:02:29.000] Finishing updateGraphWorker: Project: /user/username/projects/solution/d/tsconfig.json Version: 1 structureChanged: true structureIsReused:: Not Elapsed:: *ms -Info 97 [16:02:30.000] Project '/user/username/projects/solution/d/tsconfig.json' (Configured) -Info 98 [16:02:31.000] Files (5) +Info 79 [00:02:12.000] ----------------------------------------------- +Info 80 [00:02:13.000] Creating configuration project /user/username/projects/solution/d/tsconfig.json +Info 81 [00:02:14.000] Plugins were requested but not running in environment that supports 'require'. Nothing will be loaded +Info 82 [00:02:15.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/solution/d/index.ts 500 undefined WatchType: Closed Script info +Info 83 [00:02:16.000] Starting updateGraphWorker: Project: /user/username/projects/solution/d/tsconfig.json +Info 84 [00:02:17.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/solution 0 undefined Project: /user/username/projects/solution/d/tsconfig.json WatchType: Failed Lookup Locations +Info 85 [00:02:18.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/solution 0 undefined Project: /user/username/projects/solution/d/tsconfig.json WatchType: Failed Lookup Locations +Info 86 [00:02:19.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/solution/a 1 undefined Project: /user/username/projects/solution/d/tsconfig.json WatchType: Failed Lookup Locations +Info 87 [00:02:20.000] 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 88 [00:02:21.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/solution/c 1 undefined Project: /user/username/projects/solution/d/tsconfig.json WatchType: Failed Lookup Locations +Info 89 [00:02:22.000] 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 90 [00:02:23.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/solution/b 1 undefined Project: /user/username/projects/solution/d/tsconfig.json WatchType: Failed Lookup Locations +Info 91 [00:02:24.000] 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 92 [00:02:25.000] 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 93 [00:02:26.000] 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 94 [00:02:27.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/solution/node_modules/@types 1 undefined Project: /user/username/projects/solution/d/tsconfig.json WatchType: Type roots +Info 95 [00:02:28.000] 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 96 [00:02:29.000] Finishing updateGraphWorker: Project: /user/username/projects/solution/d/tsconfig.json Version: 1 structureChanged: true structureIsReused:: Not Elapsed:: *ms +Info 97 [00:02:30.000] Project '/user/username/projects/solution/d/tsconfig.json' (Configured) +Info 98 [00:02:31.000] Files (5) /a/lib/lib.d.ts /user/username/projects/solution/a/index.ts /user/username/projects/solution/b/index.ts @@ -379,35 +379,35 @@ Info 98 [16:02:31.000] Files (5) index.ts Part of 'files' list in tsconfig.json -Info 99 [16:02:32.000] ----------------------------------------------- -Info 100 [16:02:33.000] Finding references to /user/username/projects/solution/a/index.ts position 34 in project /user/username/projects/solution/c/tsconfig.json -Info 101 [16:02:34.000] Search path: /user/username/projects/solution/a -Info 102 [16:02:35.000] For info: /user/username/projects/solution/a/index.ts :: Config file name: /user/username/projects/solution/a/tsconfig.json -Info 103 [16:02:36.000] Search path: /user/username/projects/solution/a -Info 104 [16:02:37.000] For info: /user/username/projects/solution/a/index.ts :: Config file name: /user/username/projects/solution/a/tsconfig.json -Info 105 [16:02:38.000] Search path: /user/username/projects/solution/b -Info 106 [16:02:39.000] For info: /user/username/projects/solution/b/index.ts :: Config file name: /user/username/projects/solution/b/tsconfig.json -Info 107 [16:02:40.000] Search path: /user/username/projects/solution/b -Info 108 [16:02:41.000] For info: /user/username/projects/solution/b/index.ts :: Config file name: /user/username/projects/solution/b/tsconfig.json -Info 109 [16:02:42.000] Search path: /user/username/projects/solution/b -Info 110 [16:02:43.000] For info: /user/username/projects/solution/b/index.ts :: Config file name: /user/username/projects/solution/b/tsconfig.json -Info 111 [16:02:44.000] Finding references to /user/username/projects/solution/a/index.ts position 34 in project /user/username/projects/solution/d/tsconfig.json -Info 112 [16:02:45.000] Search path: /user/username/projects/solution/a -Info 113 [16:02:46.000] For info: /user/username/projects/solution/a/index.ts :: Config file name: /user/username/projects/solution/a/tsconfig.json -Info 114 [16:02:47.000] Search path: /user/username/projects/solution/a -Info 115 [16:02:48.000] For info: /user/username/projects/solution/a/index.ts :: Config file name: /user/username/projects/solution/a/tsconfig.json -Info 116 [16:02:49.000] Search path: /user/username/projects/solution/b -Info 117 [16:02:50.000] For info: /user/username/projects/solution/b/index.ts :: Config file name: /user/username/projects/solution/b/tsconfig.json -Info 118 [16:02:51.000] Search path: /user/username/projects/solution/b -Info 119 [16:02:52.000] For info: /user/username/projects/solution/b/index.ts :: Config file name: /user/username/projects/solution/b/tsconfig.json -Info 120 [16:02:53.000] Search path: /user/username/projects/solution/b -Info 121 [16:02:54.000] For info: /user/username/projects/solution/b/index.ts :: Config file name: /user/username/projects/solution/b/tsconfig.json -Info 122 [16:02:55.000] Search path: /user/username/projects/solution/c -Info 123 [16:02:56.000] For info: /user/username/projects/solution/c/index.ts :: Config file name: /user/username/projects/solution/c/tsconfig.json -Info 124 [16:02:57.000] Search path: /user/username/projects/solution/c -Info 125 [16:02:58.000] For info: /user/username/projects/solution/c/index.ts :: Config file name: /user/username/projects/solution/c/tsconfig.json -Info 126 [16:02:59.000] Search path: /user/username/projects/solution/c -Info 127 [16:03:00.000] For info: /user/username/projects/solution/c/index.ts :: Config file name: /user/username/projects/solution/c/tsconfig.json +Info 99 [00:02:32.000] ----------------------------------------------- +Info 100 [00:02:33.000] Finding references to /user/username/projects/solution/a/index.ts position 34 in project /user/username/projects/solution/c/tsconfig.json +Info 101 [00:02:34.000] Search path: /user/username/projects/solution/a +Info 102 [00:02:35.000] For info: /user/username/projects/solution/a/index.ts :: Config file name: /user/username/projects/solution/a/tsconfig.json +Info 103 [00:02:36.000] Search path: /user/username/projects/solution/a +Info 104 [00:02:37.000] For info: /user/username/projects/solution/a/index.ts :: Config file name: /user/username/projects/solution/a/tsconfig.json +Info 105 [00:02:38.000] Search path: /user/username/projects/solution/b +Info 106 [00:02:39.000] For info: /user/username/projects/solution/b/index.ts :: Config file name: /user/username/projects/solution/b/tsconfig.json +Info 107 [00:02:40.000] Search path: /user/username/projects/solution/b +Info 108 [00:02:41.000] For info: /user/username/projects/solution/b/index.ts :: Config file name: /user/username/projects/solution/b/tsconfig.json +Info 109 [00:02:42.000] Search path: /user/username/projects/solution/b +Info 110 [00:02:43.000] For info: /user/username/projects/solution/b/index.ts :: Config file name: /user/username/projects/solution/b/tsconfig.json +Info 111 [00:02:44.000] Finding references to /user/username/projects/solution/a/index.ts position 34 in project /user/username/projects/solution/d/tsconfig.json +Info 112 [00:02:45.000] Search path: /user/username/projects/solution/a +Info 113 [00:02:46.000] For info: /user/username/projects/solution/a/index.ts :: Config file name: /user/username/projects/solution/a/tsconfig.json +Info 114 [00:02:47.000] Search path: /user/username/projects/solution/a +Info 115 [00:02:48.000] For info: /user/username/projects/solution/a/index.ts :: Config file name: /user/username/projects/solution/a/tsconfig.json +Info 116 [00:02:49.000] Search path: /user/username/projects/solution/b +Info 117 [00:02:50.000] For info: /user/username/projects/solution/b/index.ts :: Config file name: /user/username/projects/solution/b/tsconfig.json +Info 118 [00:02:51.000] Search path: /user/username/projects/solution/b +Info 119 [00:02:52.000] For info: /user/username/projects/solution/b/index.ts :: Config file name: /user/username/projects/solution/b/tsconfig.json +Info 120 [00:02:53.000] Search path: /user/username/projects/solution/b +Info 121 [00:02:54.000] For info: /user/username/projects/solution/b/index.ts :: Config file name: /user/username/projects/solution/b/tsconfig.json +Info 122 [00:02:55.000] Search path: /user/username/projects/solution/c +Info 123 [00:02:56.000] For info: /user/username/projects/solution/c/index.ts :: Config file name: /user/username/projects/solution/c/tsconfig.json +Info 124 [00:02:57.000] Search path: /user/username/projects/solution/c +Info 125 [00:02:58.000] For info: /user/username/projects/solution/c/index.ts :: Config file name: /user/username/projects/solution/c/tsconfig.json +Info 126 [00:02:59.000] Search path: /user/username/projects/solution/c +Info 127 [00:03:00.000] For info: /user/username/projects/solution/c/index.ts :: Config file name: /user/username/projects/solution/c/tsconfig.json After request PolledWatches:: @@ -452,7 +452,7 @@ FsWatchesRecursive:: /user/username/projects/solution/c: {} -Info 128 [16:03:01.000] response: +Info 128 [00:03:01.000] response: { "response": { "refs": [ @@ -586,7 +586,7 @@ Info 128 [16:03:01.000] response: }, "responseRequired": true } -Info 129 [16:03:02.000] request: +Info 129 [00:03:02.000] request: { "command": "references", "arguments": { @@ -641,40 +641,40 @@ FsWatchesRecursive:: /user/username/projects/solution/c: {} -Info 130 [16:03:03.000] Finding references to /user/username/projects/solution/b/index.ts position 86 in project /user/username/projects/solution/b/tsconfig.json -Info 131 [16:03:04.000] Search path: /user/username/projects/solution/a -Info 132 [16:03:05.000] For info: /user/username/projects/solution/a/index.ts :: Config file name: /user/username/projects/solution/a/tsconfig.json -Info 133 [16:03:06.000] Search path: /user/username/projects/solution/a -Info 134 [16:03:07.000] For info: /user/username/projects/solution/a/index.ts :: Config file name: /user/username/projects/solution/a/tsconfig.json -Info 135 [16:03:08.000] Finding references to /user/username/projects/solution/b/index.ts position 86 in project /user/username/projects/solution/c/tsconfig.json -Info 136 [16:03:09.000] Search path: /user/username/projects/solution/b -Info 137 [16:03:10.000] For info: /user/username/projects/solution/b/index.ts :: Config file name: /user/username/projects/solution/b/tsconfig.json -Info 138 [16:03:11.000] Search path: /user/username/projects/solution/b -Info 139 [16:03:12.000] For info: /user/username/projects/solution/b/index.ts :: Config file name: /user/username/projects/solution/b/tsconfig.json -Info 140 [16:03:13.000] Search path: /user/username/projects/solution/b -Info 141 [16:03:14.000] For info: /user/username/projects/solution/b/index.ts :: Config file name: /user/username/projects/solution/b/tsconfig.json -Info 142 [16:03:15.000] Search path: /user/username/projects/solution/a -Info 143 [16:03:16.000] For info: /user/username/projects/solution/a/index.ts :: Config file name: /user/username/projects/solution/a/tsconfig.json -Info 144 [16:03:17.000] Search path: /user/username/projects/solution/a -Info 145 [16:03:18.000] For info: /user/username/projects/solution/a/index.ts :: Config file name: /user/username/projects/solution/a/tsconfig.json -Info 146 [16:03:19.000] Finding references to /user/username/projects/solution/b/index.ts position 86 in project /user/username/projects/solution/d/tsconfig.json -Info 147 [16:03:20.000] Search path: /user/username/projects/solution/b -Info 148 [16:03:21.000] For info: /user/username/projects/solution/b/index.ts :: Config file name: /user/username/projects/solution/b/tsconfig.json -Info 149 [16:03:22.000] Search path: /user/username/projects/solution/b -Info 150 [16:03:23.000] For info: /user/username/projects/solution/b/index.ts :: Config file name: /user/username/projects/solution/b/tsconfig.json -Info 151 [16:03:24.000] Search path: /user/username/projects/solution/b -Info 152 [16:03:25.000] For info: /user/username/projects/solution/b/index.ts :: Config file name: /user/username/projects/solution/b/tsconfig.json -Info 153 [16:03:26.000] Search path: /user/username/projects/solution/a -Info 154 [16:03:27.000] For info: /user/username/projects/solution/a/index.ts :: Config file name: /user/username/projects/solution/a/tsconfig.json -Info 155 [16:03:28.000] Search path: /user/username/projects/solution/a -Info 156 [16:03:29.000] For info: /user/username/projects/solution/a/index.ts :: Config file name: /user/username/projects/solution/a/tsconfig.json -Info 157 [16:03:30.000] Search path: /user/username/projects/solution/c -Info 158 [16:03:31.000] For info: /user/username/projects/solution/c/index.ts :: Config file name: /user/username/projects/solution/c/tsconfig.json -Info 159 [16:03:32.000] Search path: /user/username/projects/solution/c -Info 160 [16:03:33.000] For info: /user/username/projects/solution/c/index.ts :: Config file name: /user/username/projects/solution/c/tsconfig.json -Info 161 [16:03:34.000] Search path: /user/username/projects/solution/c -Info 162 [16:03:35.000] For info: /user/username/projects/solution/c/index.ts :: Config file name: /user/username/projects/solution/c/tsconfig.json -Info 163 [16:03:36.000] Finding references to /user/username/projects/solution/a/index.ts position 34 in project /user/username/projects/solution/a/tsconfig.json +Info 130 [00:03:03.000] Finding references to /user/username/projects/solution/b/index.ts position 86 in project /user/username/projects/solution/b/tsconfig.json +Info 131 [00:03:04.000] Search path: /user/username/projects/solution/a +Info 132 [00:03:05.000] For info: /user/username/projects/solution/a/index.ts :: Config file name: /user/username/projects/solution/a/tsconfig.json +Info 133 [00:03:06.000] Search path: /user/username/projects/solution/a +Info 134 [00:03:07.000] For info: /user/username/projects/solution/a/index.ts :: Config file name: /user/username/projects/solution/a/tsconfig.json +Info 135 [00:03:08.000] Finding references to /user/username/projects/solution/b/index.ts position 86 in project /user/username/projects/solution/c/tsconfig.json +Info 136 [00:03:09.000] Search path: /user/username/projects/solution/b +Info 137 [00:03:10.000] For info: /user/username/projects/solution/b/index.ts :: Config file name: /user/username/projects/solution/b/tsconfig.json +Info 138 [00:03:11.000] Search path: /user/username/projects/solution/b +Info 139 [00:03:12.000] For info: /user/username/projects/solution/b/index.ts :: Config file name: /user/username/projects/solution/b/tsconfig.json +Info 140 [00:03:13.000] Search path: /user/username/projects/solution/b +Info 141 [00:03:14.000] For info: /user/username/projects/solution/b/index.ts :: Config file name: /user/username/projects/solution/b/tsconfig.json +Info 142 [00:03:15.000] Search path: /user/username/projects/solution/a +Info 143 [00:03:16.000] For info: /user/username/projects/solution/a/index.ts :: Config file name: /user/username/projects/solution/a/tsconfig.json +Info 144 [00:03:17.000] Search path: /user/username/projects/solution/a +Info 145 [00:03:18.000] For info: /user/username/projects/solution/a/index.ts :: Config file name: /user/username/projects/solution/a/tsconfig.json +Info 146 [00:03:19.000] Finding references to /user/username/projects/solution/b/index.ts position 86 in project /user/username/projects/solution/d/tsconfig.json +Info 147 [00:03:20.000] Search path: /user/username/projects/solution/b +Info 148 [00:03:21.000] For info: /user/username/projects/solution/b/index.ts :: Config file name: /user/username/projects/solution/b/tsconfig.json +Info 149 [00:03:22.000] Search path: /user/username/projects/solution/b +Info 150 [00:03:23.000] For info: /user/username/projects/solution/b/index.ts :: Config file name: /user/username/projects/solution/b/tsconfig.json +Info 151 [00:03:24.000] Search path: /user/username/projects/solution/b +Info 152 [00:03:25.000] For info: /user/username/projects/solution/b/index.ts :: Config file name: /user/username/projects/solution/b/tsconfig.json +Info 153 [00:03:26.000] Search path: /user/username/projects/solution/a +Info 154 [00:03:27.000] For info: /user/username/projects/solution/a/index.ts :: Config file name: /user/username/projects/solution/a/tsconfig.json +Info 155 [00:03:28.000] Search path: /user/username/projects/solution/a +Info 156 [00:03:29.000] For info: /user/username/projects/solution/a/index.ts :: Config file name: /user/username/projects/solution/a/tsconfig.json +Info 157 [00:03:30.000] Search path: /user/username/projects/solution/c +Info 158 [00:03:31.000] For info: /user/username/projects/solution/c/index.ts :: Config file name: /user/username/projects/solution/c/tsconfig.json +Info 159 [00:03:32.000] Search path: /user/username/projects/solution/c +Info 160 [00:03:33.000] For info: /user/username/projects/solution/c/index.ts :: Config file name: /user/username/projects/solution/c/tsconfig.json +Info 161 [00:03:34.000] Search path: /user/username/projects/solution/c +Info 162 [00:03:35.000] For info: /user/username/projects/solution/c/index.ts :: Config file name: /user/username/projects/solution/c/tsconfig.json +Info 163 [00:03:36.000] Finding references to /user/username/projects/solution/a/index.ts position 34 in project /user/username/projects/solution/a/tsconfig.json After request PolledWatches:: @@ -719,7 +719,7 @@ FsWatchesRecursive:: /user/username/projects/solution/c: {} -Info 164 [16:03:37.000] response: +Info 164 [00:03:37.000] response: { "response": { "refs": [ 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 e56304e474be3..85d7dba477c73 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 @@ -1,5 +1,5 @@ -Info 0 [16:01:11.000] Provided types map file "/a/lib/typesMap.json" doesn't exist -Info 1 [16:01:12.000] request: +Info 0 [00:01:11.000] Provided types map file "/a/lib/typesMap.json" doesn't exist +Info 1 [00:01:12.000] request: { "seq": 0, "type": "request", @@ -194,13 +194,13 @@ FsWatches:: FsWatchesRecursive:: -Info 2 [16:01:13.000] Search path: /user/username/projects/myproject/packages/A/src -Info 3 [16:01:14.000] For info: /user/username/projects/myproject/packages/A/src/index.ts :: Config file name: /user/username/projects/myproject/packages/A/tsconfig.json -Info 4 [16:01:15.000] Creating configuration project /user/username/projects/myproject/packages/A/tsconfig.json -Info 5 [16:01:16.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/packages/A/tsconfig.json 2000 undefined Project: /user/username/projects/myproject/packages/A/tsconfig.json WatchType: Config file -Info 6 [16:01:17.000] event: +Info 2 [00:01:13.000] Search path: /user/username/projects/myproject/packages/A/src +Info 3 [00:01:14.000] For info: /user/username/projects/myproject/packages/A/src/index.ts :: Config file name: /user/username/projects/myproject/packages/A/tsconfig.json +Info 4 [00:01:15.000] Creating configuration project /user/username/projects/myproject/packages/A/tsconfig.json +Info 5 [00:01:16.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/packages/A/tsconfig.json 2000 undefined Project: /user/username/projects/myproject/packages/A/tsconfig.json WatchType: Config file +Info 6 [00:01:17.000] event: {"seq":0,"type":"event","event":"projectLoadingStart","body":{"projectName":"/user/username/projects/myproject/packages/A/tsconfig.json","reason":"Creating possible configured project for /user/username/projects/myproject/packages/A/src/index.ts to open"}} -Info 7 [16:01:18.000] Config: /user/username/projects/myproject/packages/A/tsconfig.json : { +Info 7 [00:01:18.000] Config: /user/username/projects/myproject/packages/A/tsconfig.json : { "rootNames": [ "/user/username/projects/myproject/packages/A/src/index.ts" ], @@ -218,11 +218,11 @@ Info 7 [16:01:18.000] Config: /user/username/projects/myproject/packages/A/ts } ] } -Info 8 [16:01:19.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/packages/a/src 1 undefined Config: /user/username/projects/myproject/packages/A/tsconfig.json WatchType: Wild card directory -Info 9 [16:01:20.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/packages/a/src 1 undefined Config: /user/username/projects/myproject/packages/A/tsconfig.json WatchType: Wild card directory -Info 10 [16:01:21.000] Plugins were requested but not running in environment that supports 'require'. Nothing will be loaded -Info 11 [16:01:22.000] Starting updateGraphWorker: Project: /user/username/projects/myproject/packages/A/tsconfig.json -Info 12 [16:01:23.000] Config: /user/username/projects/myproject/packages/B/tsconfig.json : { +Info 8 [00:01:19.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/packages/a/src 1 undefined Config: /user/username/projects/myproject/packages/A/tsconfig.json WatchType: Wild card directory +Info 9 [00:01:20.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/packages/a/src 1 undefined Config: /user/username/projects/myproject/packages/A/tsconfig.json WatchType: Wild card directory +Info 10 [00:01:21.000] Plugins were requested but not running in environment that supports 'require'. Nothing will be loaded +Info 11 [00:01:22.000] Starting updateGraphWorker: Project: /user/username/projects/myproject/packages/A/tsconfig.json +Info 12 [00:01:23.000] Config: /user/username/projects/myproject/packages/B/tsconfig.json : { "rootNames": [ "/user/username/projects/myproject/packages/B/src/bar.ts", "/user/username/projects/myproject/packages/B/src/index.ts" @@ -235,30 +235,30 @@ Info 12 [16:01:23.000] Config: /user/username/projects/myproject/packages/B/ts "configFilePath": "/user/username/projects/myproject/packages/B/tsconfig.json" } } -Info 13 [16:01:24.000] 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 14 [16:01:25.000] 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 15 [16:01:26.000] 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 16 [16:01:27.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/packages/B/src/index.ts 500 undefined WatchType: Closed Script info -Info 17 [16:01:28.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/packages/B/src/bar.ts 500 undefined WatchType: Closed Script info -Info 18 [16:01:29.000] FileWatcher:: Added:: WatchInfo: /a/lib/lib.d.ts 500 undefined WatchType: Closed Script info -Info 19 [16:01:30.000] 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 20 [16:01:31.000] 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 21 [16:01:32.000] 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 -Info 22 [16:01:33.000] Elapsed:: *ms 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 -Info 23 [16:01:34.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/packages/node_modules 1 undefined Project: /user/username/projects/myproject/packages/A/tsconfig.json WatchType: Failed Lookup Locations -Info 24 [16:01:35.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/packages/node_modules 1 undefined Project: /user/username/projects/myproject/packages/A/tsconfig.json WatchType: Failed Lookup Locations -Info 25 [16:01:36.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules 1 undefined Project: /user/username/projects/myproject/packages/A/tsconfig.json WatchType: Failed Lookup Locations -Info 26 [16:01:37.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules 1 undefined Project: /user/username/projects/myproject/packages/A/tsconfig.json WatchType: Failed Lookup Locations -Info 27 [16:01:38.000] 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 28 [16:01:39.000] 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 29 [16:01:40.000] 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 30 [16:01:41.000] 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 -Info 31 [16:01:42.000] Elapsed:: *ms 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 -Info 32 [16:01:43.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/packages/A/tsconfig.json WatchType: Type roots -Info 33 [16:01:44.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/packages/A/tsconfig.json WatchType: Type roots -Info 34 [16:01:45.000] Finishing updateGraphWorker: Project: /user/username/projects/myproject/packages/A/tsconfig.json Version: 1 structureChanged: true structureIsReused:: Not Elapsed:: *ms -Info 35 [16:01:46.000] Project '/user/username/projects/myproject/packages/A/tsconfig.json' (Configured) -Info 36 [16:01:47.000] Files (4) +Info 13 [00:01:24.000] 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 14 [00:01:25.000] 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 15 [00:01:26.000] 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 16 [00:01:27.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/packages/B/src/index.ts 500 undefined WatchType: Closed Script info +Info 17 [00:01:28.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/packages/B/src/bar.ts 500 undefined WatchType: Closed Script info +Info 18 [00:01:29.000] FileWatcher:: Added:: WatchInfo: /a/lib/lib.d.ts 500 undefined WatchType: Closed Script info +Info 19 [00:01:30.000] 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 20 [00:01:31.000] 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 21 [00:01:32.000] 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 +Info 22 [00:01:33.000] Elapsed:: *ms 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 +Info 23 [00:01:34.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/packages/node_modules 1 undefined Project: /user/username/projects/myproject/packages/A/tsconfig.json WatchType: Failed Lookup Locations +Info 24 [00:01:35.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/packages/node_modules 1 undefined Project: /user/username/projects/myproject/packages/A/tsconfig.json WatchType: Failed Lookup Locations +Info 25 [00:01:36.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules 1 undefined Project: /user/username/projects/myproject/packages/A/tsconfig.json WatchType: Failed Lookup Locations +Info 26 [00:01:37.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules 1 undefined Project: /user/username/projects/myproject/packages/A/tsconfig.json WatchType: Failed Lookup Locations +Info 27 [00:01:38.000] 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 28 [00:01:39.000] 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 29 [00:01:40.000] 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 30 [00:01:41.000] 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 +Info 31 [00:01:42.000] Elapsed:: *ms 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 +Info 32 [00:01:43.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/packages/A/tsconfig.json WatchType: Type roots +Info 33 [00:01:44.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/packages/A/tsconfig.json WatchType: Type roots +Info 34 [00:01:45.000] Finishing updateGraphWorker: Project: /user/username/projects/myproject/packages/A/tsconfig.json Version: 1 structureChanged: true structureIsReused:: Not Elapsed:: *ms +Info 35 [00:01:46.000] Project '/user/username/projects/myproject/packages/A/tsconfig.json' (Configured) +Info 36 [00:01:47.000] Files (4) /a/lib/lib.d.ts /user/username/projects/myproject/packages/B/src/index.ts /user/username/projects/myproject/packages/B/src/bar.ts @@ -274,22 +274,22 @@ Info 36 [16:01:47.000] Files (4) src/index.ts Matched by include pattern 'src' in 'tsconfig.json' -Info 37 [16:01:48.000] ----------------------------------------------- -Info 38 [16:01:49.000] event: +Info 37 [00:01:48.000] ----------------------------------------------- +Info 38 [00:01:49.000] event: {"seq":0,"type":"event","event":"projectLoadingFinish","body":{"projectName":"/user/username/projects/myproject/packages/A/tsconfig.json"}} -Info 39 [16:01:50.000] event: +Info 39 [00:01:50.000] event: {"seq":0,"type":"event","event":"telemetry","body":{"telemetryEventName":"projectInfo","payload":{"projectId":"8c5cfb88fb6a6125ddaca4c198af63d261c8feb2786e348cbf3223fcf8461e16","fileStats":{"js":0,"jsSize":0,"jsx":0,"jsxSize":0,"ts":3,"tsSize":122,"tsx":0,"tsxSize":0,"dts":1,"dtsSize":334,"deferred":0,"deferredSize":0},"compilerOptions":{"outDir":"","rootDir":"","composite":true,"preserveSymlinks":true},"typeAcquisition":{"enable":false,"include":false,"exclude":false},"extends":false,"files":false,"include":true,"exclude":false,"compileOnSave":false,"configFileName":"tsconfig.json","projectType":"configured","languageServiceEnabled":true,"version":"FakeVersion"}}} -Info 40 [16:01:51.000] event: +Info 40 [00:01:51.000] event: {"seq":0,"type":"event","event":"configFileDiag","body":{"triggerFile":"/user/username/projects/myproject/packages/A/src/index.ts","configFile":"/user/username/projects/myproject/packages/A/tsconfig.json","diagnostics":[]}} -Info 41 [16:01:52.000] Search path: /user/username/projects/myproject/packages/A -Info 42 [16:01:53.000] For info: /user/username/projects/myproject/packages/A/tsconfig.json :: No config files found. -Info 43 [16:01:54.000] Project '/user/username/projects/myproject/packages/A/tsconfig.json' (Configured) -Info 43 [16:01:55.000] Files (4) - -Info 43 [16:01:56.000] ----------------------------------------------- -Info 43 [16:01:57.000] Open files: -Info 43 [16:01:58.000] FileName: /user/username/projects/myproject/packages/A/src/index.ts ProjectRootPath: undefined -Info 43 [16:01:59.000] Projects: /user/username/projects/myproject/packages/A/tsconfig.json +Info 41 [00:01:52.000] Search path: /user/username/projects/myproject/packages/A +Info 42 [00:01:53.000] For info: /user/username/projects/myproject/packages/A/tsconfig.json :: No config files found. +Info 43 [00:01:54.000] Project '/user/username/projects/myproject/packages/A/tsconfig.json' (Configured) +Info 43 [00:01:55.000] Files (4) + +Info 43 [00:01:56.000] ----------------------------------------------- +Info 43 [00:01:57.000] Open files: +Info 43 [00:01:58.000] FileName: /user/username/projects/myproject/packages/A/src/index.ts ProjectRootPath: undefined +Info 43 [00:01:59.000] Projects: /user/username/projects/myproject/packages/A/tsconfig.json After request PolledWatches:: @@ -326,11 +326,11 @@ FsWatchesRecursive:: /user/username/projects/myproject/node_modules: {} -Info 43 [16:02:00.000] response: +Info 43 [00:02:00.000] response: { "responseRequired": false } -Info 44 [16:02:01.000] request: +Info 44 [00:02:01.000] request: { "command": "geterr", "arguments": { @@ -414,7 +414,7 @@ FsWatchesRecursive:: /user/username/projects/myproject/node_modules: {} -Info 45 [16:02:02.000] response: +Info 45 [00:02:02.000] response: { "responseRequired": false } @@ -454,7 +454,7 @@ FsWatchesRecursive:: /user/username/projects/myproject/node_modules: {} -Info 46 [16:02:03.000] event: +Info 46 [00:02:03.000] event: {"seq":0,"type":"event","event":"syntaxDiag","body":{"file":"/user/username/projects/myproject/packages/A/src/index.ts","diagnostics":[]}} After checking timeout queue length (1) and running @@ -528,7 +528,7 @@ FsWatchesRecursive:: /user/username/projects/myproject/node_modules: {} -Info 47 [16:02:04.000] event: +Info 47 [00:02:04.000] event: {"seq":0,"type":"event","event":"semanticDiag","body":{"file":"/user/username/projects/myproject/packages/A/src/index.ts","diagnostics":[]}} Before running immediate callbacks and checking length (1) @@ -602,9 +602,9 @@ FsWatchesRecursive:: /user/username/projects/myproject/node_modules: {} -Info 48 [16:02:05.000] event: +Info 48 [00:02:05.000] event: {"seq":0,"type":"event","event":"suggestionDiag","body":{"file":"/user/username/projects/myproject/packages/A/src/index.ts","diagnostics":[]}} -Info 49 [16:02:06.000] event: +Info 49 [00:02:06.000] event: {"seq":0,"type":"event","event":"requestCompleted","body":{"request_seq":1}} Before running immediate callbacks and checking length (1) @@ -642,7 +642,7 @@ FsWatchesRecursive:: /user/username/projects/myproject/node_modules: {} -Info 50 [16:02:07.000] request: +Info 50 [00:02:07.000] request: { "command": "updateOpen", "arguments": { @@ -740,12 +740,12 @@ FsWatchesRecursive:: /user/username/projects/myproject/node_modules: {} -Info 51 [16:02:08.000] response: +Info 51 [00:02:08.000] response: { "response": true, "responseRequired": true } -Info 52 [16:02:09.000] request: +Info 52 [00:02:09.000] request: { "command": "geterr", "arguments": { @@ -829,7 +829,7 @@ FsWatchesRecursive:: /user/username/projects/myproject/node_modules: {} -Info 53 [16:02:10.000] response: +Info 53 [00:02:10.000] response: { "responseRequired": false } @@ -869,10 +869,10 @@ FsWatchesRecursive:: /user/username/projects/myproject/node_modules: {} -Info 54 [16:02:11.000] Starting updateGraphWorker: Project: /user/username/projects/myproject/packages/A/tsconfig.json -Info 55 [16:02:12.000] Finishing updateGraphWorker: Project: /user/username/projects/myproject/packages/A/tsconfig.json Version: 2 structureChanged: false structureIsReused:: Completely Elapsed:: *ms -Info 56 [16:02:13.000] Different program with same set of files -Info 57 [16:02:14.000] event: +Info 54 [00:02:11.000] Starting updateGraphWorker: Project: /user/username/projects/myproject/packages/A/tsconfig.json +Info 55 [00:02:12.000] Finishing updateGraphWorker: Project: /user/username/projects/myproject/packages/A/tsconfig.json Version: 2 structureChanged: false structureIsReused:: Completely Elapsed:: *ms +Info 56 [00:02:13.000] Different program with same set of files +Info 57 [00:02:14.000] event: {"seq":0,"type":"event","event":"syntaxDiag","body":{"file":"/user/username/projects/myproject/packages/A/src/index.ts","diagnostics":[]}} After checking timeout queue length (1) and running @@ -946,7 +946,7 @@ FsWatchesRecursive:: /user/username/projects/myproject/node_modules: {} -Info 58 [16:02:15.000] event: +Info 58 [00:02:15.000] event: {"seq":0,"type":"event","event":"semanticDiag","body":{"file":"/user/username/projects/myproject/packages/A/src/index.ts","diagnostics":[]}} Before running immediate callbacks and checking length (1) @@ -1020,9 +1020,9 @@ FsWatchesRecursive:: /user/username/projects/myproject/node_modules: {} -Info 59 [16:02:16.000] event: +Info 59 [00:02:16.000] event: {"seq":0,"type":"event","event":"suggestionDiag","body":{"file":"/user/username/projects/myproject/packages/A/src/index.ts","diagnostics":[]}} -Info 60 [16:02:17.000] event: +Info 60 [00:02:17.000] event: {"seq":0,"type":"event","event":"requestCompleted","body":{"request_seq":3}} Before running immediate callbacks and checking length (1) 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 6434540495001..7b49753486f39 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 @@ -1,5 +1,5 @@ -Info 0 [16:01:11.000] Provided types map file "/a/lib/typesMap.json" doesn't exist -Info 1 [16:01:12.000] request: +Info 0 [00:01:11.000] Provided types map file "/a/lib/typesMap.json" doesn't exist +Info 1 [00:01:12.000] request: { "seq": 0, "type": "request", @@ -194,13 +194,13 @@ FsWatches:: FsWatchesRecursive:: -Info 2 [16:01:13.000] Search path: /user/username/projects/myproject/packages/A/src -Info 3 [16:01:14.000] For info: /user/username/projects/myproject/packages/A/src/index.ts :: Config file name: /user/username/projects/myproject/packages/A/tsconfig.json -Info 4 [16:01:15.000] Creating configuration project /user/username/projects/myproject/packages/A/tsconfig.json -Info 5 [16:01:16.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/packages/A/tsconfig.json 2000 undefined Project: /user/username/projects/myproject/packages/A/tsconfig.json WatchType: Config file -Info 6 [16:01:17.000] event: +Info 2 [00:01:13.000] Search path: /user/username/projects/myproject/packages/A/src +Info 3 [00:01:14.000] For info: /user/username/projects/myproject/packages/A/src/index.ts :: Config file name: /user/username/projects/myproject/packages/A/tsconfig.json +Info 4 [00:01:15.000] Creating configuration project /user/username/projects/myproject/packages/A/tsconfig.json +Info 5 [00:01:16.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/packages/A/tsconfig.json 2000 undefined Project: /user/username/projects/myproject/packages/A/tsconfig.json WatchType: Config file +Info 6 [00:01:17.000] event: {"seq":0,"type":"event","event":"projectLoadingStart","body":{"projectName":"/user/username/projects/myproject/packages/A/tsconfig.json","reason":"Creating possible configured project for /user/username/projects/myproject/packages/A/src/index.ts to open"}} -Info 7 [16:01:18.000] Config: /user/username/projects/myproject/packages/A/tsconfig.json : { +Info 7 [00:01:18.000] Config: /user/username/projects/myproject/packages/A/tsconfig.json : { "rootNames": [ "/user/username/projects/myproject/packages/A/src/index.ts" ], @@ -217,11 +217,11 @@ Info 7 [16:01:18.000] Config: /user/username/projects/myproject/packages/A/ts } ] } -Info 8 [16:01:19.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/packages/a/src 1 undefined Config: /user/username/projects/myproject/packages/A/tsconfig.json WatchType: Wild card directory -Info 9 [16:01:20.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/packages/a/src 1 undefined Config: /user/username/projects/myproject/packages/A/tsconfig.json WatchType: Wild card directory -Info 10 [16:01:21.000] Plugins were requested but not running in environment that supports 'require'. Nothing will be loaded -Info 11 [16:01:22.000] Starting updateGraphWorker: Project: /user/username/projects/myproject/packages/A/tsconfig.json -Info 12 [16:01:23.000] Config: /user/username/projects/myproject/packages/B/tsconfig.json : { +Info 8 [00:01:19.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/packages/a/src 1 undefined Config: /user/username/projects/myproject/packages/A/tsconfig.json WatchType: Wild card directory +Info 9 [00:01:20.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/packages/a/src 1 undefined Config: /user/username/projects/myproject/packages/A/tsconfig.json WatchType: Wild card directory +Info 10 [00:01:21.000] Plugins were requested but not running in environment that supports 'require'. Nothing will be loaded +Info 11 [00:01:22.000] Starting updateGraphWorker: Project: /user/username/projects/myproject/packages/A/tsconfig.json +Info 12 [00:01:23.000] Config: /user/username/projects/myproject/packages/B/tsconfig.json : { "rootNames": [ "/user/username/projects/myproject/packages/B/src/bar.ts", "/user/username/projects/myproject/packages/B/src/index.ts" @@ -233,30 +233,30 @@ Info 12 [16:01:23.000] Config: /user/username/projects/myproject/packages/B/ts "configFilePath": "/user/username/projects/myproject/packages/B/tsconfig.json" } } -Info 13 [16:01:24.000] 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 14 [16:01:25.000] 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 15 [16:01:26.000] 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 16 [16:01:27.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/packages/B/src/index.ts 500 undefined WatchType: Closed Script info -Info 17 [16:01:28.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/packages/B/src/bar.ts 500 undefined WatchType: Closed Script info -Info 18 [16:01:29.000] FileWatcher:: Added:: WatchInfo: /a/lib/lib.d.ts 500 undefined WatchType: Closed Script info -Info 19 [16:01:30.000] 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 20 [16:01:31.000] 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 21 [16:01:32.000] 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 -Info 22 [16:01:33.000] Elapsed:: *ms 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 -Info 23 [16:01:34.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/packages/node_modules 1 undefined Project: /user/username/projects/myproject/packages/A/tsconfig.json WatchType: Failed Lookup Locations -Info 24 [16:01:35.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/packages/node_modules 1 undefined Project: /user/username/projects/myproject/packages/A/tsconfig.json WatchType: Failed Lookup Locations -Info 25 [16:01:36.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules 1 undefined Project: /user/username/projects/myproject/packages/A/tsconfig.json WatchType: Failed Lookup Locations -Info 26 [16:01:37.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules 1 undefined Project: /user/username/projects/myproject/packages/A/tsconfig.json WatchType: Failed Lookup Locations -Info 27 [16:01:38.000] 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 28 [16:01:39.000] 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 29 [16:01:40.000] 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 30 [16:01:41.000] 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 -Info 31 [16:01:42.000] Elapsed:: *ms 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 -Info 32 [16:01:43.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/packages/A/tsconfig.json WatchType: Type roots -Info 33 [16:01:44.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/packages/A/tsconfig.json WatchType: Type roots -Info 34 [16:01:45.000] Finishing updateGraphWorker: Project: /user/username/projects/myproject/packages/A/tsconfig.json Version: 1 structureChanged: true structureIsReused:: Not Elapsed:: *ms -Info 35 [16:01:46.000] Project '/user/username/projects/myproject/packages/A/tsconfig.json' (Configured) -Info 36 [16:01:47.000] Files (4) +Info 13 [00:01:24.000] 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 14 [00:01:25.000] 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 15 [00:01:26.000] 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 16 [00:01:27.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/packages/B/src/index.ts 500 undefined WatchType: Closed Script info +Info 17 [00:01:28.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/packages/B/src/bar.ts 500 undefined WatchType: Closed Script info +Info 18 [00:01:29.000] FileWatcher:: Added:: WatchInfo: /a/lib/lib.d.ts 500 undefined WatchType: Closed Script info +Info 19 [00:01:30.000] 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 20 [00:01:31.000] 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 21 [00:01:32.000] 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 +Info 22 [00:01:33.000] Elapsed:: *ms 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 +Info 23 [00:01:34.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/packages/node_modules 1 undefined Project: /user/username/projects/myproject/packages/A/tsconfig.json WatchType: Failed Lookup Locations +Info 24 [00:01:35.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/packages/node_modules 1 undefined Project: /user/username/projects/myproject/packages/A/tsconfig.json WatchType: Failed Lookup Locations +Info 25 [00:01:36.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules 1 undefined Project: /user/username/projects/myproject/packages/A/tsconfig.json WatchType: Failed Lookup Locations +Info 26 [00:01:37.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules 1 undefined Project: /user/username/projects/myproject/packages/A/tsconfig.json WatchType: Failed Lookup Locations +Info 27 [00:01:38.000] 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 28 [00:01:39.000] 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 29 [00:01:40.000] 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 30 [00:01:41.000] 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 +Info 31 [00:01:42.000] Elapsed:: *ms 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 +Info 32 [00:01:43.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/packages/A/tsconfig.json WatchType: Type roots +Info 33 [00:01:44.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/packages/A/tsconfig.json WatchType: Type roots +Info 34 [00:01:45.000] Finishing updateGraphWorker: Project: /user/username/projects/myproject/packages/A/tsconfig.json Version: 1 structureChanged: true structureIsReused:: Not Elapsed:: *ms +Info 35 [00:01:46.000] Project '/user/username/projects/myproject/packages/A/tsconfig.json' (Configured) +Info 36 [00:01:47.000] Files (4) /a/lib/lib.d.ts /user/username/projects/myproject/packages/B/src/index.ts /user/username/projects/myproject/packages/B/src/bar.ts @@ -272,22 +272,22 @@ Info 36 [16:01:47.000] Files (4) src/index.ts Matched by include pattern 'src' in 'tsconfig.json' -Info 37 [16:01:48.000] ----------------------------------------------- -Info 38 [16:01:49.000] event: +Info 37 [00:01:48.000] ----------------------------------------------- +Info 38 [00:01:49.000] event: {"seq":0,"type":"event","event":"projectLoadingFinish","body":{"projectName":"/user/username/projects/myproject/packages/A/tsconfig.json"}} -Info 39 [16:01:50.000] event: +Info 39 [00:01:50.000] event: {"seq":0,"type":"event","event":"telemetry","body":{"telemetryEventName":"projectInfo","payload":{"projectId":"8c5cfb88fb6a6125ddaca4c198af63d261c8feb2786e348cbf3223fcf8461e16","fileStats":{"js":0,"jsSize":0,"jsx":0,"jsxSize":0,"ts":3,"tsSize":122,"tsx":0,"tsxSize":0,"dts":1,"dtsSize":334,"deferred":0,"deferredSize":0},"compilerOptions":{"outDir":"","rootDir":"","composite":true},"typeAcquisition":{"enable":false,"include":false,"exclude":false},"extends":false,"files":false,"include":true,"exclude":false,"compileOnSave":false,"configFileName":"tsconfig.json","projectType":"configured","languageServiceEnabled":true,"version":"FakeVersion"}}} -Info 40 [16:01:51.000] event: +Info 40 [00:01:51.000] event: {"seq":0,"type":"event","event":"configFileDiag","body":{"triggerFile":"/user/username/projects/myproject/packages/A/src/index.ts","configFile":"/user/username/projects/myproject/packages/A/tsconfig.json","diagnostics":[]}} -Info 41 [16:01:52.000] Search path: /user/username/projects/myproject/packages/A -Info 42 [16:01:53.000] For info: /user/username/projects/myproject/packages/A/tsconfig.json :: No config files found. -Info 43 [16:01:54.000] Project '/user/username/projects/myproject/packages/A/tsconfig.json' (Configured) -Info 43 [16:01:55.000] Files (4) - -Info 43 [16:01:56.000] ----------------------------------------------- -Info 43 [16:01:57.000] Open files: -Info 43 [16:01:58.000] FileName: /user/username/projects/myproject/packages/A/src/index.ts ProjectRootPath: undefined -Info 43 [16:01:59.000] Projects: /user/username/projects/myproject/packages/A/tsconfig.json +Info 41 [00:01:52.000] Search path: /user/username/projects/myproject/packages/A +Info 42 [00:01:53.000] For info: /user/username/projects/myproject/packages/A/tsconfig.json :: No config files found. +Info 43 [00:01:54.000] Project '/user/username/projects/myproject/packages/A/tsconfig.json' (Configured) +Info 43 [00:01:55.000] Files (4) + +Info 43 [00:01:56.000] ----------------------------------------------- +Info 43 [00:01:57.000] Open files: +Info 43 [00:01:58.000] FileName: /user/username/projects/myproject/packages/A/src/index.ts ProjectRootPath: undefined +Info 43 [00:01:59.000] Projects: /user/username/projects/myproject/packages/A/tsconfig.json After request PolledWatches:: @@ -324,11 +324,11 @@ FsWatchesRecursive:: /user/username/projects/myproject/node_modules: {} -Info 43 [16:02:00.000] response: +Info 43 [00:02:00.000] response: { "responseRequired": false } -Info 44 [16:02:01.000] request: +Info 44 [00:02:01.000] request: { "command": "geterr", "arguments": { @@ -412,7 +412,7 @@ FsWatchesRecursive:: /user/username/projects/myproject/node_modules: {} -Info 45 [16:02:02.000] response: +Info 45 [00:02:02.000] response: { "responseRequired": false } @@ -452,7 +452,7 @@ FsWatchesRecursive:: /user/username/projects/myproject/node_modules: {} -Info 46 [16:02:03.000] event: +Info 46 [00:02:03.000] event: {"seq":0,"type":"event","event":"syntaxDiag","body":{"file":"/user/username/projects/myproject/packages/A/src/index.ts","diagnostics":[]}} After checking timeout queue length (1) and running @@ -526,7 +526,7 @@ FsWatchesRecursive:: /user/username/projects/myproject/node_modules: {} -Info 47 [16:02:04.000] event: +Info 47 [00:02:04.000] event: {"seq":0,"type":"event","event":"semanticDiag","body":{"file":"/user/username/projects/myproject/packages/A/src/index.ts","diagnostics":[]}} Before running immediate callbacks and checking length (1) @@ -600,9 +600,9 @@ FsWatchesRecursive:: /user/username/projects/myproject/node_modules: {} -Info 48 [16:02:05.000] event: +Info 48 [00:02:05.000] event: {"seq":0,"type":"event","event":"suggestionDiag","body":{"file":"/user/username/projects/myproject/packages/A/src/index.ts","diagnostics":[]}} -Info 49 [16:02:06.000] event: +Info 49 [00:02:06.000] event: {"seq":0,"type":"event","event":"requestCompleted","body":{"request_seq":1}} Before running immediate callbacks and checking length (1) @@ -640,7 +640,7 @@ FsWatchesRecursive:: /user/username/projects/myproject/node_modules: {} -Info 50 [16:02:07.000] request: +Info 50 [00:02:07.000] request: { "command": "updateOpen", "arguments": { @@ -738,12 +738,12 @@ FsWatchesRecursive:: /user/username/projects/myproject/node_modules: {} -Info 51 [16:02:08.000] response: +Info 51 [00:02:08.000] response: { "response": true, "responseRequired": true } -Info 52 [16:02:09.000] request: +Info 52 [00:02:09.000] request: { "command": "geterr", "arguments": { @@ -827,7 +827,7 @@ FsWatchesRecursive:: /user/username/projects/myproject/node_modules: {} -Info 53 [16:02:10.000] response: +Info 53 [00:02:10.000] response: { "responseRequired": false } @@ -867,10 +867,10 @@ FsWatchesRecursive:: /user/username/projects/myproject/node_modules: {} -Info 54 [16:02:11.000] Starting updateGraphWorker: Project: /user/username/projects/myproject/packages/A/tsconfig.json -Info 55 [16:02:12.000] Finishing updateGraphWorker: Project: /user/username/projects/myproject/packages/A/tsconfig.json Version: 2 structureChanged: false structureIsReused:: Completely Elapsed:: *ms -Info 56 [16:02:13.000] Different program with same set of files -Info 57 [16:02:14.000] event: +Info 54 [00:02:11.000] Starting updateGraphWorker: Project: /user/username/projects/myproject/packages/A/tsconfig.json +Info 55 [00:02:12.000] Finishing updateGraphWorker: Project: /user/username/projects/myproject/packages/A/tsconfig.json Version: 2 structureChanged: false structureIsReused:: Completely Elapsed:: *ms +Info 56 [00:02:13.000] Different program with same set of files +Info 57 [00:02:14.000] event: {"seq":0,"type":"event","event":"syntaxDiag","body":{"file":"/user/username/projects/myproject/packages/A/src/index.ts","diagnostics":[]}} After checking timeout queue length (1) and running @@ -944,7 +944,7 @@ FsWatchesRecursive:: /user/username/projects/myproject/node_modules: {} -Info 58 [16:02:15.000] event: +Info 58 [00:02:15.000] event: {"seq":0,"type":"event","event":"semanticDiag","body":{"file":"/user/username/projects/myproject/packages/A/src/index.ts","diagnostics":[]}} Before running immediate callbacks and checking length (1) @@ -1018,9 +1018,9 @@ FsWatchesRecursive:: /user/username/projects/myproject/node_modules: {} -Info 59 [16:02:16.000] event: +Info 59 [00:02:16.000] event: {"seq":0,"type":"event","event":"suggestionDiag","body":{"file":"/user/username/projects/myproject/packages/A/src/index.ts","diagnostics":[]}} -Info 60 [16:02:17.000] event: +Info 60 [00:02:17.000] event: {"seq":0,"type":"event","event":"requestCompleted","body":{"request_seq":3}} Before running immediate callbacks and checking length (1) 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 b4dec1f127fc2..be11413f4405d 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 @@ -1,5 +1,5 @@ -Info 0 [16:00:43.000] Provided types map file "/a/lib/typesMap.json" doesn't exist -Info 1 [16:00:44.000] request: +Info 0 [00:00:43.000] Provided types map file "/a/lib/typesMap.json" doesn't exist +Info 1 [00:00:44.000] request: { "seq": 0, "type": "request", @@ -52,13 +52,13 @@ FsWatches:: FsWatchesRecursive:: -Info 2 [16:00:45.000] Search path: /user/username/projects/myproject/packages/A/src -Info 3 [16:00:46.000] For info: /user/username/projects/myproject/packages/A/src/index.ts :: Config file name: /user/username/projects/myproject/packages/A/tsconfig.json -Info 4 [16:00:47.000] Creating configuration project /user/username/projects/myproject/packages/A/tsconfig.json -Info 5 [16:00:48.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/packages/A/tsconfig.json 2000 undefined Project: /user/username/projects/myproject/packages/A/tsconfig.json WatchType: Config file -Info 6 [16:00:49.000] event: +Info 2 [00:00:45.000] Search path: /user/username/projects/myproject/packages/A/src +Info 3 [00:00:46.000] For info: /user/username/projects/myproject/packages/A/src/index.ts :: Config file name: /user/username/projects/myproject/packages/A/tsconfig.json +Info 4 [00:00:47.000] Creating configuration project /user/username/projects/myproject/packages/A/tsconfig.json +Info 5 [00:00:48.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/packages/A/tsconfig.json 2000 undefined Project: /user/username/projects/myproject/packages/A/tsconfig.json WatchType: Config file +Info 6 [00:00:49.000] event: {"seq":0,"type":"event","event":"projectLoadingStart","body":{"projectName":"/user/username/projects/myproject/packages/A/tsconfig.json","reason":"Creating possible configured project for /user/username/projects/myproject/packages/A/src/index.ts to open"}} -Info 7 [16:00:50.000] Config: /user/username/projects/myproject/packages/A/tsconfig.json : { +Info 7 [00:00:50.000] Config: /user/username/projects/myproject/packages/A/tsconfig.json : { "rootNames": [ "/user/username/projects/myproject/packages/A/src/index.ts" ], @@ -76,11 +76,11 @@ Info 7 [16:00:50.000] Config: /user/username/projects/myproject/packages/A/ts } ] } -Info 8 [16:00:51.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/packages/a/src 1 undefined Config: /user/username/projects/myproject/packages/A/tsconfig.json WatchType: Wild card directory -Info 9 [16:00:52.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/packages/a/src 1 undefined Config: /user/username/projects/myproject/packages/A/tsconfig.json WatchType: Wild card directory -Info 10 [16:00:53.000] Plugins were requested but not running in environment that supports 'require'. Nothing will be loaded -Info 11 [16:00:54.000] Starting updateGraphWorker: Project: /user/username/projects/myproject/packages/A/tsconfig.json -Info 12 [16:00:55.000] Config: /user/username/projects/myproject/packages/B/tsconfig.json : { +Info 8 [00:00:51.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/packages/a/src 1 undefined Config: /user/username/projects/myproject/packages/A/tsconfig.json WatchType: Wild card directory +Info 9 [00:00:52.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/packages/a/src 1 undefined Config: /user/username/projects/myproject/packages/A/tsconfig.json WatchType: Wild card directory +Info 10 [00:00:53.000] Plugins were requested but not running in environment that supports 'require'. Nothing will be loaded +Info 11 [00:00:54.000] Starting updateGraphWorker: Project: /user/username/projects/myproject/packages/A/tsconfig.json +Info 12 [00:00:55.000] Config: /user/username/projects/myproject/packages/B/tsconfig.json : { "rootNames": [ "/user/username/projects/myproject/packages/B/src/bar.ts", "/user/username/projects/myproject/packages/B/src/index.ts" @@ -93,30 +93,30 @@ Info 12 [16:00:55.000] Config: /user/username/projects/myproject/packages/B/ts "configFilePath": "/user/username/projects/myproject/packages/B/tsconfig.json" } } -Info 13 [16:00:56.000] 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 14 [16:00:57.000] 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 15 [16:00:58.000] 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 16 [16:00:59.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/packages/B/src/index.ts 500 undefined WatchType: Closed Script info -Info 17 [16:01:00.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/packages/B/src/bar.ts 500 undefined WatchType: Closed Script info -Info 18 [16:01:01.000] FileWatcher:: Added:: WatchInfo: /a/lib/lib.d.ts 500 undefined WatchType: Closed Script info -Info 19 [16:01:02.000] 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 20 [16:01:03.000] 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 21 [16:01:04.000] 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 -Info 22 [16:01:05.000] Elapsed:: *ms 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 -Info 23 [16:01:06.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/packages/node_modules 1 undefined Project: /user/username/projects/myproject/packages/A/tsconfig.json WatchType: Failed Lookup Locations -Info 24 [16:01:07.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/packages/node_modules 1 undefined Project: /user/username/projects/myproject/packages/A/tsconfig.json WatchType: Failed Lookup Locations -Info 25 [16:01:08.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules 1 undefined Project: /user/username/projects/myproject/packages/A/tsconfig.json WatchType: Failed Lookup Locations -Info 26 [16:01:09.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules 1 undefined Project: /user/username/projects/myproject/packages/A/tsconfig.json WatchType: Failed Lookup Locations -Info 27 [16:01:10.000] 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 28 [16:01:11.000] 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 29 [16:01:12.000] 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 30 [16:01:13.000] 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 -Info 31 [16:01:14.000] Elapsed:: *ms 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 -Info 32 [16:01:15.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/packages/A/tsconfig.json WatchType: Type roots -Info 33 [16:01:16.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/packages/A/tsconfig.json WatchType: Type roots -Info 34 [16:01:17.000] Finishing updateGraphWorker: Project: /user/username/projects/myproject/packages/A/tsconfig.json Version: 1 structureChanged: true structureIsReused:: Not Elapsed:: *ms -Info 35 [16:01:18.000] Project '/user/username/projects/myproject/packages/A/tsconfig.json' (Configured) -Info 36 [16:01:19.000] Files (4) +Info 13 [00:00:56.000] 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 14 [00:00:57.000] 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 15 [00:00:58.000] 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 16 [00:00:59.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/packages/B/src/index.ts 500 undefined WatchType: Closed Script info +Info 17 [00:01:00.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/packages/B/src/bar.ts 500 undefined WatchType: Closed Script info +Info 18 [00:01:01.000] FileWatcher:: Added:: WatchInfo: /a/lib/lib.d.ts 500 undefined WatchType: Closed Script info +Info 19 [00:01:02.000] 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 20 [00:01:03.000] 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 21 [00:01:04.000] 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 +Info 22 [00:01:05.000] Elapsed:: *ms 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 +Info 23 [00:01:06.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/packages/node_modules 1 undefined Project: /user/username/projects/myproject/packages/A/tsconfig.json WatchType: Failed Lookup Locations +Info 24 [00:01:07.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/packages/node_modules 1 undefined Project: /user/username/projects/myproject/packages/A/tsconfig.json WatchType: Failed Lookup Locations +Info 25 [00:01:08.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules 1 undefined Project: /user/username/projects/myproject/packages/A/tsconfig.json WatchType: Failed Lookup Locations +Info 26 [00:01:09.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules 1 undefined Project: /user/username/projects/myproject/packages/A/tsconfig.json WatchType: Failed Lookup Locations +Info 27 [00:01:10.000] 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 28 [00:01:11.000] 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 29 [00:01:12.000] 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 30 [00:01:13.000] 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 +Info 31 [00:01:14.000] Elapsed:: *ms 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 +Info 32 [00:01:15.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/packages/A/tsconfig.json WatchType: Type roots +Info 33 [00:01:16.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/packages/A/tsconfig.json WatchType: Type roots +Info 34 [00:01:17.000] Finishing updateGraphWorker: Project: /user/username/projects/myproject/packages/A/tsconfig.json Version: 1 structureChanged: true structureIsReused:: Not Elapsed:: *ms +Info 35 [00:01:18.000] Project '/user/username/projects/myproject/packages/A/tsconfig.json' (Configured) +Info 36 [00:01:19.000] Files (4) /a/lib/lib.d.ts /user/username/projects/myproject/packages/B/src/index.ts /user/username/projects/myproject/packages/B/src/bar.ts @@ -132,22 +132,22 @@ Info 36 [16:01:19.000] Files (4) src/index.ts Matched by include pattern 'src' in 'tsconfig.json' -Info 37 [16:01:20.000] ----------------------------------------------- -Info 38 [16:01:21.000] event: +Info 37 [00:01:20.000] ----------------------------------------------- +Info 38 [00:01:21.000] event: {"seq":0,"type":"event","event":"projectLoadingFinish","body":{"projectName":"/user/username/projects/myproject/packages/A/tsconfig.json"}} -Info 39 [16:01:22.000] event: +Info 39 [00:01:22.000] event: {"seq":0,"type":"event","event":"telemetry","body":{"telemetryEventName":"projectInfo","payload":{"projectId":"8c5cfb88fb6a6125ddaca4c198af63d261c8feb2786e348cbf3223fcf8461e16","fileStats":{"js":0,"jsSize":0,"jsx":0,"jsxSize":0,"ts":3,"tsSize":122,"tsx":0,"tsxSize":0,"dts":1,"dtsSize":334,"deferred":0,"deferredSize":0},"compilerOptions":{"outDir":"","rootDir":"","composite":true,"preserveSymlinks":true},"typeAcquisition":{"enable":false,"include":false,"exclude":false},"extends":false,"files":false,"include":true,"exclude":false,"compileOnSave":false,"configFileName":"tsconfig.json","projectType":"configured","languageServiceEnabled":true,"version":"FakeVersion"}}} -Info 40 [16:01:23.000] event: +Info 40 [00:01:23.000] event: {"seq":0,"type":"event","event":"configFileDiag","body":{"triggerFile":"/user/username/projects/myproject/packages/A/src/index.ts","configFile":"/user/username/projects/myproject/packages/A/tsconfig.json","diagnostics":[]}} -Info 41 [16:01:24.000] Search path: /user/username/projects/myproject/packages/A -Info 42 [16:01:25.000] For info: /user/username/projects/myproject/packages/A/tsconfig.json :: No config files found. -Info 43 [16:01:26.000] Project '/user/username/projects/myproject/packages/A/tsconfig.json' (Configured) -Info 43 [16:01:27.000] Files (4) - -Info 43 [16:01:28.000] ----------------------------------------------- -Info 43 [16:01:29.000] Open files: -Info 43 [16:01:30.000] FileName: /user/username/projects/myproject/packages/A/src/index.ts ProjectRootPath: undefined -Info 43 [16:01:31.000] Projects: /user/username/projects/myproject/packages/A/tsconfig.json +Info 41 [00:01:24.000] Search path: /user/username/projects/myproject/packages/A +Info 42 [00:01:25.000] For info: /user/username/projects/myproject/packages/A/tsconfig.json :: No config files found. +Info 43 [00:01:26.000] Project '/user/username/projects/myproject/packages/A/tsconfig.json' (Configured) +Info 43 [00:01:27.000] Files (4) + +Info 43 [00:01:28.000] ----------------------------------------------- +Info 43 [00:01:29.000] Open files: +Info 43 [00:01:30.000] FileName: /user/username/projects/myproject/packages/A/src/index.ts ProjectRootPath: undefined +Info 43 [00:01:31.000] Projects: /user/username/projects/myproject/packages/A/tsconfig.json After request PolledWatches:: @@ -184,11 +184,11 @@ FsWatchesRecursive:: /user/username/projects/myproject/node_modules: {} -Info 43 [16:01:32.000] response: +Info 43 [00:01:32.000] response: { "responseRequired": false } -Info 44 [16:01:33.000] request: +Info 44 [00:01:33.000] request: { "command": "geterr", "arguments": { @@ -272,7 +272,7 @@ FsWatchesRecursive:: /user/username/projects/myproject/node_modules: {} -Info 45 [16:01:34.000] response: +Info 45 [00:01:34.000] response: { "responseRequired": false } @@ -312,7 +312,7 @@ FsWatchesRecursive:: /user/username/projects/myproject/node_modules: {} -Info 46 [16:01:35.000] event: +Info 46 [00:01:35.000] event: {"seq":0,"type":"event","event":"syntaxDiag","body":{"file":"/user/username/projects/myproject/packages/A/src/index.ts","diagnostics":[]}} After checking timeout queue length (1) and running @@ -386,7 +386,7 @@ FsWatchesRecursive:: /user/username/projects/myproject/node_modules: {} -Info 47 [16:01:36.000] event: +Info 47 [00:01:36.000] event: {"seq":0,"type":"event","event":"semanticDiag","body":{"file":"/user/username/projects/myproject/packages/A/src/index.ts","diagnostics":[]}} Before running immediate callbacks and checking length (1) @@ -460,9 +460,9 @@ FsWatchesRecursive:: /user/username/projects/myproject/node_modules: {} -Info 48 [16:01:37.000] event: +Info 48 [00:01:37.000] event: {"seq":0,"type":"event","event":"suggestionDiag","body":{"file":"/user/username/projects/myproject/packages/A/src/index.ts","diagnostics":[]}} -Info 49 [16:01:38.000] event: +Info 49 [00:01:38.000] event: {"seq":0,"type":"event","event":"requestCompleted","body":{"request_seq":1}} Before running immediate callbacks and checking length (1) @@ -500,7 +500,7 @@ FsWatchesRecursive:: /user/username/projects/myproject/node_modules: {} -Info 50 [16:01:39.000] request: +Info 50 [00:01:39.000] request: { "command": "updateOpen", "arguments": { @@ -598,12 +598,12 @@ FsWatchesRecursive:: /user/username/projects/myproject/node_modules: {} -Info 51 [16:01:40.000] response: +Info 51 [00:01:40.000] response: { "response": true, "responseRequired": true } -Info 52 [16:01:41.000] request: +Info 52 [00:01:41.000] request: { "command": "geterr", "arguments": { @@ -687,7 +687,7 @@ FsWatchesRecursive:: /user/username/projects/myproject/node_modules: {} -Info 53 [16:01:42.000] response: +Info 53 [00:01:42.000] response: { "responseRequired": false } @@ -727,10 +727,10 @@ FsWatchesRecursive:: /user/username/projects/myproject/node_modules: {} -Info 54 [16:01:43.000] Starting updateGraphWorker: Project: /user/username/projects/myproject/packages/A/tsconfig.json -Info 55 [16:01:44.000] Finishing updateGraphWorker: Project: /user/username/projects/myproject/packages/A/tsconfig.json Version: 2 structureChanged: false structureIsReused:: Completely Elapsed:: *ms -Info 56 [16:01:45.000] Different program with same set of files -Info 57 [16:01:46.000] event: +Info 54 [00:01:43.000] Starting updateGraphWorker: Project: /user/username/projects/myproject/packages/A/tsconfig.json +Info 55 [00:01:44.000] Finishing updateGraphWorker: Project: /user/username/projects/myproject/packages/A/tsconfig.json Version: 2 structureChanged: false structureIsReused:: Completely Elapsed:: *ms +Info 56 [00:01:45.000] Different program with same set of files +Info 57 [00:01:46.000] event: {"seq":0,"type":"event","event":"syntaxDiag","body":{"file":"/user/username/projects/myproject/packages/A/src/index.ts","diagnostics":[]}} After checking timeout queue length (1) and running @@ -804,7 +804,7 @@ FsWatchesRecursive:: /user/username/projects/myproject/node_modules: {} -Info 58 [16:01:47.000] event: +Info 58 [00:01:47.000] event: {"seq":0,"type":"event","event":"semanticDiag","body":{"file":"/user/username/projects/myproject/packages/A/src/index.ts","diagnostics":[]}} Before running immediate callbacks and checking length (1) @@ -878,9 +878,9 @@ FsWatchesRecursive:: /user/username/projects/myproject/node_modules: {} -Info 59 [16:01:48.000] event: +Info 59 [00:01:48.000] event: {"seq":0,"type":"event","event":"suggestionDiag","body":{"file":"/user/username/projects/myproject/packages/A/src/index.ts","diagnostics":[]}} -Info 60 [16:01:49.000] event: +Info 60 [00:01:49.000] event: {"seq":0,"type":"event","event":"requestCompleted","body":{"request_seq":3}} Before running immediate callbacks and checking length (1) 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 5965a03da32bc..7dce3e3a21ac1 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 @@ -1,5 +1,5 @@ -Info 0 [16:00:43.000] Provided types map file "/a/lib/typesMap.json" doesn't exist -Info 1 [16:00:44.000] request: +Info 0 [00:00:43.000] Provided types map file "/a/lib/typesMap.json" doesn't exist +Info 1 [00:00:44.000] request: { "seq": 0, "type": "request", @@ -52,13 +52,13 @@ FsWatches:: FsWatchesRecursive:: -Info 2 [16:00:45.000] Search path: /user/username/projects/myproject/packages/A/src -Info 3 [16:00:46.000] For info: /user/username/projects/myproject/packages/A/src/index.ts :: Config file name: /user/username/projects/myproject/packages/A/tsconfig.json -Info 4 [16:00:47.000] Creating configuration project /user/username/projects/myproject/packages/A/tsconfig.json -Info 5 [16:00:48.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/packages/A/tsconfig.json 2000 undefined Project: /user/username/projects/myproject/packages/A/tsconfig.json WatchType: Config file -Info 6 [16:00:49.000] event: +Info 2 [00:00:45.000] Search path: /user/username/projects/myproject/packages/A/src +Info 3 [00:00:46.000] For info: /user/username/projects/myproject/packages/A/src/index.ts :: Config file name: /user/username/projects/myproject/packages/A/tsconfig.json +Info 4 [00:00:47.000] Creating configuration project /user/username/projects/myproject/packages/A/tsconfig.json +Info 5 [00:00:48.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/packages/A/tsconfig.json 2000 undefined Project: /user/username/projects/myproject/packages/A/tsconfig.json WatchType: Config file +Info 6 [00:00:49.000] event: {"seq":0,"type":"event","event":"projectLoadingStart","body":{"projectName":"/user/username/projects/myproject/packages/A/tsconfig.json","reason":"Creating possible configured project for /user/username/projects/myproject/packages/A/src/index.ts to open"}} -Info 7 [16:00:50.000] Config: /user/username/projects/myproject/packages/A/tsconfig.json : { +Info 7 [00:00:50.000] Config: /user/username/projects/myproject/packages/A/tsconfig.json : { "rootNames": [ "/user/username/projects/myproject/packages/A/src/index.ts" ], @@ -75,11 +75,11 @@ Info 7 [16:00:50.000] Config: /user/username/projects/myproject/packages/A/ts } ] } -Info 8 [16:00:51.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/packages/a/src 1 undefined Config: /user/username/projects/myproject/packages/A/tsconfig.json WatchType: Wild card directory -Info 9 [16:00:52.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/packages/a/src 1 undefined Config: /user/username/projects/myproject/packages/A/tsconfig.json WatchType: Wild card directory -Info 10 [16:00:53.000] Plugins were requested but not running in environment that supports 'require'. Nothing will be loaded -Info 11 [16:00:54.000] Starting updateGraphWorker: Project: /user/username/projects/myproject/packages/A/tsconfig.json -Info 12 [16:00:55.000] Config: /user/username/projects/myproject/packages/B/tsconfig.json : { +Info 8 [00:00:51.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/packages/a/src 1 undefined Config: /user/username/projects/myproject/packages/A/tsconfig.json WatchType: Wild card directory +Info 9 [00:00:52.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/packages/a/src 1 undefined Config: /user/username/projects/myproject/packages/A/tsconfig.json WatchType: Wild card directory +Info 10 [00:00:53.000] Plugins were requested but not running in environment that supports 'require'. Nothing will be loaded +Info 11 [00:00:54.000] Starting updateGraphWorker: Project: /user/username/projects/myproject/packages/A/tsconfig.json +Info 12 [00:00:55.000] Config: /user/username/projects/myproject/packages/B/tsconfig.json : { "rootNames": [ "/user/username/projects/myproject/packages/B/src/bar.ts", "/user/username/projects/myproject/packages/B/src/index.ts" @@ -91,30 +91,30 @@ Info 12 [16:00:55.000] Config: /user/username/projects/myproject/packages/B/ts "configFilePath": "/user/username/projects/myproject/packages/B/tsconfig.json" } } -Info 13 [16:00:56.000] 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 14 [16:00:57.000] 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 15 [16:00:58.000] 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 16 [16:00:59.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/packages/B/src/index.ts 500 undefined WatchType: Closed Script info -Info 17 [16:01:00.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/packages/B/src/bar.ts 500 undefined WatchType: Closed Script info -Info 18 [16:01:01.000] FileWatcher:: Added:: WatchInfo: /a/lib/lib.d.ts 500 undefined WatchType: Closed Script info -Info 19 [16:01:02.000] 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 20 [16:01:03.000] 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 21 [16:01:04.000] 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 -Info 22 [16:01:05.000] Elapsed:: *ms 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 -Info 23 [16:01:06.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/packages/node_modules 1 undefined Project: /user/username/projects/myproject/packages/A/tsconfig.json WatchType: Failed Lookup Locations -Info 24 [16:01:07.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/packages/node_modules 1 undefined Project: /user/username/projects/myproject/packages/A/tsconfig.json WatchType: Failed Lookup Locations -Info 25 [16:01:08.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules 1 undefined Project: /user/username/projects/myproject/packages/A/tsconfig.json WatchType: Failed Lookup Locations -Info 26 [16:01:09.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules 1 undefined Project: /user/username/projects/myproject/packages/A/tsconfig.json WatchType: Failed Lookup Locations -Info 27 [16:01:10.000] 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 28 [16:01:11.000] 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 29 [16:01:12.000] 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 30 [16:01:13.000] 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 -Info 31 [16:01:14.000] Elapsed:: *ms 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 -Info 32 [16:01:15.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/packages/A/tsconfig.json WatchType: Type roots -Info 33 [16:01:16.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/packages/A/tsconfig.json WatchType: Type roots -Info 34 [16:01:17.000] Finishing updateGraphWorker: Project: /user/username/projects/myproject/packages/A/tsconfig.json Version: 1 structureChanged: true structureIsReused:: Not Elapsed:: *ms -Info 35 [16:01:18.000] Project '/user/username/projects/myproject/packages/A/tsconfig.json' (Configured) -Info 36 [16:01:19.000] Files (4) +Info 13 [00:00:56.000] 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 14 [00:00:57.000] 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 15 [00:00:58.000] 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 16 [00:00:59.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/packages/B/src/index.ts 500 undefined WatchType: Closed Script info +Info 17 [00:01:00.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/packages/B/src/bar.ts 500 undefined WatchType: Closed Script info +Info 18 [00:01:01.000] FileWatcher:: Added:: WatchInfo: /a/lib/lib.d.ts 500 undefined WatchType: Closed Script info +Info 19 [00:01:02.000] 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 20 [00:01:03.000] 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 21 [00:01:04.000] 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 +Info 22 [00:01:05.000] Elapsed:: *ms 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 +Info 23 [00:01:06.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/packages/node_modules 1 undefined Project: /user/username/projects/myproject/packages/A/tsconfig.json WatchType: Failed Lookup Locations +Info 24 [00:01:07.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/packages/node_modules 1 undefined Project: /user/username/projects/myproject/packages/A/tsconfig.json WatchType: Failed Lookup Locations +Info 25 [00:01:08.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules 1 undefined Project: /user/username/projects/myproject/packages/A/tsconfig.json WatchType: Failed Lookup Locations +Info 26 [00:01:09.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules 1 undefined Project: /user/username/projects/myproject/packages/A/tsconfig.json WatchType: Failed Lookup Locations +Info 27 [00:01:10.000] 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 28 [00:01:11.000] 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 29 [00:01:12.000] 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 30 [00:01:13.000] 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 +Info 31 [00:01:14.000] Elapsed:: *ms 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 +Info 32 [00:01:15.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/packages/A/tsconfig.json WatchType: Type roots +Info 33 [00:01:16.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/packages/A/tsconfig.json WatchType: Type roots +Info 34 [00:01:17.000] Finishing updateGraphWorker: Project: /user/username/projects/myproject/packages/A/tsconfig.json Version: 1 structureChanged: true structureIsReused:: Not Elapsed:: *ms +Info 35 [00:01:18.000] Project '/user/username/projects/myproject/packages/A/tsconfig.json' (Configured) +Info 36 [00:01:19.000] Files (4) /a/lib/lib.d.ts /user/username/projects/myproject/packages/B/src/index.ts /user/username/projects/myproject/packages/B/src/bar.ts @@ -130,22 +130,22 @@ Info 36 [16:01:19.000] Files (4) src/index.ts Matched by include pattern 'src' in 'tsconfig.json' -Info 37 [16:01:20.000] ----------------------------------------------- -Info 38 [16:01:21.000] event: +Info 37 [00:01:20.000] ----------------------------------------------- +Info 38 [00:01:21.000] event: {"seq":0,"type":"event","event":"projectLoadingFinish","body":{"projectName":"/user/username/projects/myproject/packages/A/tsconfig.json"}} -Info 39 [16:01:22.000] event: +Info 39 [00:01:22.000] event: {"seq":0,"type":"event","event":"telemetry","body":{"telemetryEventName":"projectInfo","payload":{"projectId":"8c5cfb88fb6a6125ddaca4c198af63d261c8feb2786e348cbf3223fcf8461e16","fileStats":{"js":0,"jsSize":0,"jsx":0,"jsxSize":0,"ts":3,"tsSize":122,"tsx":0,"tsxSize":0,"dts":1,"dtsSize":334,"deferred":0,"deferredSize":0},"compilerOptions":{"outDir":"","rootDir":"","composite":true},"typeAcquisition":{"enable":false,"include":false,"exclude":false},"extends":false,"files":false,"include":true,"exclude":false,"compileOnSave":false,"configFileName":"tsconfig.json","projectType":"configured","languageServiceEnabled":true,"version":"FakeVersion"}}} -Info 40 [16:01:23.000] event: +Info 40 [00:01:23.000] event: {"seq":0,"type":"event","event":"configFileDiag","body":{"triggerFile":"/user/username/projects/myproject/packages/A/src/index.ts","configFile":"/user/username/projects/myproject/packages/A/tsconfig.json","diagnostics":[]}} -Info 41 [16:01:24.000] Search path: /user/username/projects/myproject/packages/A -Info 42 [16:01:25.000] For info: /user/username/projects/myproject/packages/A/tsconfig.json :: No config files found. -Info 43 [16:01:26.000] Project '/user/username/projects/myproject/packages/A/tsconfig.json' (Configured) -Info 43 [16:01:27.000] Files (4) - -Info 43 [16:01:28.000] ----------------------------------------------- -Info 43 [16:01:29.000] Open files: -Info 43 [16:01:30.000] FileName: /user/username/projects/myproject/packages/A/src/index.ts ProjectRootPath: undefined -Info 43 [16:01:31.000] Projects: /user/username/projects/myproject/packages/A/tsconfig.json +Info 41 [00:01:24.000] Search path: /user/username/projects/myproject/packages/A +Info 42 [00:01:25.000] For info: /user/username/projects/myproject/packages/A/tsconfig.json :: No config files found. +Info 43 [00:01:26.000] Project '/user/username/projects/myproject/packages/A/tsconfig.json' (Configured) +Info 43 [00:01:27.000] Files (4) + +Info 43 [00:01:28.000] ----------------------------------------------- +Info 43 [00:01:29.000] Open files: +Info 43 [00:01:30.000] FileName: /user/username/projects/myproject/packages/A/src/index.ts ProjectRootPath: undefined +Info 43 [00:01:31.000] Projects: /user/username/projects/myproject/packages/A/tsconfig.json After request PolledWatches:: @@ -182,11 +182,11 @@ FsWatchesRecursive:: /user/username/projects/myproject/node_modules: {} -Info 43 [16:01:32.000] response: +Info 43 [00:01:32.000] response: { "responseRequired": false } -Info 44 [16:01:33.000] request: +Info 44 [00:01:33.000] request: { "command": "geterr", "arguments": { @@ -270,7 +270,7 @@ FsWatchesRecursive:: /user/username/projects/myproject/node_modules: {} -Info 45 [16:01:34.000] response: +Info 45 [00:01:34.000] response: { "responseRequired": false } @@ -310,7 +310,7 @@ FsWatchesRecursive:: /user/username/projects/myproject/node_modules: {} -Info 46 [16:01:35.000] event: +Info 46 [00:01:35.000] event: {"seq":0,"type":"event","event":"syntaxDiag","body":{"file":"/user/username/projects/myproject/packages/A/src/index.ts","diagnostics":[]}} After checking timeout queue length (1) and running @@ -384,7 +384,7 @@ FsWatchesRecursive:: /user/username/projects/myproject/node_modules: {} -Info 47 [16:01:36.000] event: +Info 47 [00:01:36.000] event: {"seq":0,"type":"event","event":"semanticDiag","body":{"file":"/user/username/projects/myproject/packages/A/src/index.ts","diagnostics":[]}} Before running immediate callbacks and checking length (1) @@ -458,9 +458,9 @@ FsWatchesRecursive:: /user/username/projects/myproject/node_modules: {} -Info 48 [16:01:37.000] event: +Info 48 [00:01:37.000] event: {"seq":0,"type":"event","event":"suggestionDiag","body":{"file":"/user/username/projects/myproject/packages/A/src/index.ts","diagnostics":[]}} -Info 49 [16:01:38.000] event: +Info 49 [00:01:38.000] event: {"seq":0,"type":"event","event":"requestCompleted","body":{"request_seq":1}} Before running immediate callbacks and checking length (1) @@ -498,7 +498,7 @@ FsWatchesRecursive:: /user/username/projects/myproject/node_modules: {} -Info 50 [16:01:39.000] request: +Info 50 [00:01:39.000] request: { "command": "updateOpen", "arguments": { @@ -596,12 +596,12 @@ FsWatchesRecursive:: /user/username/projects/myproject/node_modules: {} -Info 51 [16:01:40.000] response: +Info 51 [00:01:40.000] response: { "response": true, "responseRequired": true } -Info 52 [16:01:41.000] request: +Info 52 [00:01:41.000] request: { "command": "geterr", "arguments": { @@ -685,7 +685,7 @@ FsWatchesRecursive:: /user/username/projects/myproject/node_modules: {} -Info 53 [16:01:42.000] response: +Info 53 [00:01:42.000] response: { "responseRequired": false } @@ -725,10 +725,10 @@ FsWatchesRecursive:: /user/username/projects/myproject/node_modules: {} -Info 54 [16:01:43.000] Starting updateGraphWorker: Project: /user/username/projects/myproject/packages/A/tsconfig.json -Info 55 [16:01:44.000] Finishing updateGraphWorker: Project: /user/username/projects/myproject/packages/A/tsconfig.json Version: 2 structureChanged: false structureIsReused:: Completely Elapsed:: *ms -Info 56 [16:01:45.000] Different program with same set of files -Info 57 [16:01:46.000] event: +Info 54 [00:01:43.000] Starting updateGraphWorker: Project: /user/username/projects/myproject/packages/A/tsconfig.json +Info 55 [00:01:44.000] Finishing updateGraphWorker: Project: /user/username/projects/myproject/packages/A/tsconfig.json Version: 2 structureChanged: false structureIsReused:: Completely Elapsed:: *ms +Info 56 [00:01:45.000] Different program with same set of files +Info 57 [00:01:46.000] event: {"seq":0,"type":"event","event":"syntaxDiag","body":{"file":"/user/username/projects/myproject/packages/A/src/index.ts","diagnostics":[]}} After checking timeout queue length (1) and running @@ -802,7 +802,7 @@ FsWatchesRecursive:: /user/username/projects/myproject/node_modules: {} -Info 58 [16:01:47.000] event: +Info 58 [00:01:47.000] event: {"seq":0,"type":"event","event":"semanticDiag","body":{"file":"/user/username/projects/myproject/packages/A/src/index.ts","diagnostics":[]}} Before running immediate callbacks and checking length (1) @@ -876,9 +876,9 @@ FsWatchesRecursive:: /user/username/projects/myproject/node_modules: {} -Info 59 [16:01:48.000] event: +Info 59 [00:01:48.000] event: {"seq":0,"type":"event","event":"suggestionDiag","body":{"file":"/user/username/projects/myproject/packages/A/src/index.ts","diagnostics":[]}} -Info 60 [16:01:49.000] event: +Info 60 [00:01:49.000] event: {"seq":0,"type":"event","event":"requestCompleted","body":{"request_seq":3}} Before running immediate callbacks and checking length (1) 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 87a1c941ef870..b338809584611 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 @@ -1,5 +1,5 @@ -Info 0 [16:01:13.000] Provided types map file "/a/lib/typesMap.json" doesn't exist -Info 1 [16:01:14.000] request: +Info 0 [00:01:13.000] Provided types map file "/a/lib/typesMap.json" doesn't exist +Info 1 [00:01:14.000] request: { "seq": 0, "type": "request", @@ -194,13 +194,13 @@ FsWatches:: FsWatchesRecursive:: -Info 2 [16:01:15.000] Search path: /user/username/projects/myproject/packages/A/src -Info 3 [16:01:16.000] For info: /user/username/projects/myproject/packages/A/src/index.ts :: Config file name: /user/username/projects/myproject/packages/A/tsconfig.json -Info 4 [16:01:17.000] Creating configuration project /user/username/projects/myproject/packages/A/tsconfig.json -Info 5 [16:01:18.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/packages/A/tsconfig.json 2000 undefined Project: /user/username/projects/myproject/packages/A/tsconfig.json WatchType: Config file -Info 6 [16:01:19.000] event: +Info 2 [00:01:15.000] Search path: /user/username/projects/myproject/packages/A/src +Info 3 [00:01:16.000] For info: /user/username/projects/myproject/packages/A/src/index.ts :: Config file name: /user/username/projects/myproject/packages/A/tsconfig.json +Info 4 [00:01:17.000] Creating configuration project /user/username/projects/myproject/packages/A/tsconfig.json +Info 5 [00:01:18.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/packages/A/tsconfig.json 2000 undefined Project: /user/username/projects/myproject/packages/A/tsconfig.json WatchType: Config file +Info 6 [00:01:19.000] event: {"seq":0,"type":"event","event":"projectLoadingStart","body":{"projectName":"/user/username/projects/myproject/packages/A/tsconfig.json","reason":"Creating possible configured project for /user/username/projects/myproject/packages/A/src/index.ts to open"}} -Info 7 [16:01:20.000] Config: /user/username/projects/myproject/packages/A/tsconfig.json : { +Info 7 [00:01:20.000] Config: /user/username/projects/myproject/packages/A/tsconfig.json : { "rootNames": [ "/user/username/projects/myproject/packages/A/src/index.ts" ], @@ -218,11 +218,11 @@ Info 7 [16:01:20.000] Config: /user/username/projects/myproject/packages/A/ts } ] } -Info 8 [16:01:21.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/packages/a/src 1 undefined Config: /user/username/projects/myproject/packages/A/tsconfig.json WatchType: Wild card directory -Info 9 [16:01:22.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/packages/a/src 1 undefined Config: /user/username/projects/myproject/packages/A/tsconfig.json WatchType: Wild card directory -Info 10 [16:01:23.000] Plugins were requested but not running in environment that supports 'require'. Nothing will be loaded -Info 11 [16:01:24.000] Starting updateGraphWorker: Project: /user/username/projects/myproject/packages/A/tsconfig.json -Info 12 [16:01:25.000] Config: /user/username/projects/myproject/packages/B/tsconfig.json : { +Info 8 [00:01:21.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/packages/a/src 1 undefined Config: /user/username/projects/myproject/packages/A/tsconfig.json WatchType: Wild card directory +Info 9 [00:01:22.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/packages/a/src 1 undefined Config: /user/username/projects/myproject/packages/A/tsconfig.json WatchType: Wild card directory +Info 10 [00:01:23.000] Plugins were requested but not running in environment that supports 'require'. Nothing will be loaded +Info 11 [00:01:24.000] Starting updateGraphWorker: Project: /user/username/projects/myproject/packages/A/tsconfig.json +Info 12 [00:01:25.000] Config: /user/username/projects/myproject/packages/B/tsconfig.json : { "rootNames": [ "/user/username/projects/myproject/packages/B/src/bar.ts", "/user/username/projects/myproject/packages/B/src/index.ts" @@ -235,30 +235,30 @@ Info 12 [16:01:25.000] Config: /user/username/projects/myproject/packages/B/ts "configFilePath": "/user/username/projects/myproject/packages/B/tsconfig.json" } } -Info 13 [16:01:26.000] 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 14 [16:01:27.000] 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 15 [16:01:28.000] 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 16 [16:01:29.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/packages/B/src/index.ts 500 undefined WatchType: Closed Script info -Info 17 [16:01:30.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/packages/B/src/bar.ts 500 undefined WatchType: Closed Script info -Info 18 [16:01:31.000] FileWatcher:: Added:: WatchInfo: /a/lib/lib.d.ts 500 undefined WatchType: Closed Script info -Info 19 [16:01:32.000] 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 20 [16:01:33.000] 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 21 [16:01:34.000] 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 -Info 22 [16:01:35.000] Elapsed:: *ms 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 -Info 23 [16:01:36.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/packages/node_modules 1 undefined Project: /user/username/projects/myproject/packages/A/tsconfig.json WatchType: Failed Lookup Locations -Info 24 [16:01:37.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/packages/node_modules 1 undefined Project: /user/username/projects/myproject/packages/A/tsconfig.json WatchType: Failed Lookup Locations -Info 25 [16:01:38.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules 1 undefined Project: /user/username/projects/myproject/packages/A/tsconfig.json WatchType: Failed Lookup Locations -Info 26 [16:01:39.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules 1 undefined Project: /user/username/projects/myproject/packages/A/tsconfig.json WatchType: Failed Lookup Locations -Info 27 [16:01:40.000] 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 28 [16:01:41.000] 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 29 [16:01:42.000] 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 30 [16:01:43.000] 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 -Info 31 [16:01:44.000] Elapsed:: *ms 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 -Info 32 [16:01:45.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/packages/A/tsconfig.json WatchType: Type roots -Info 33 [16:01:46.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/packages/A/tsconfig.json WatchType: Type roots -Info 34 [16:01:47.000] Finishing updateGraphWorker: Project: /user/username/projects/myproject/packages/A/tsconfig.json Version: 1 structureChanged: true structureIsReused:: Not Elapsed:: *ms -Info 35 [16:01:48.000] Project '/user/username/projects/myproject/packages/A/tsconfig.json' (Configured) -Info 36 [16:01:49.000] Files (4) +Info 13 [00:01:26.000] 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 14 [00:01:27.000] 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 15 [00:01:28.000] 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 16 [00:01:29.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/packages/B/src/index.ts 500 undefined WatchType: Closed Script info +Info 17 [00:01:30.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/packages/B/src/bar.ts 500 undefined WatchType: Closed Script info +Info 18 [00:01:31.000] FileWatcher:: Added:: WatchInfo: /a/lib/lib.d.ts 500 undefined WatchType: Closed Script info +Info 19 [00:01:32.000] 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 20 [00:01:33.000] 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 21 [00:01:34.000] 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 +Info 22 [00:01:35.000] Elapsed:: *ms 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 +Info 23 [00:01:36.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/packages/node_modules 1 undefined Project: /user/username/projects/myproject/packages/A/tsconfig.json WatchType: Failed Lookup Locations +Info 24 [00:01:37.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/packages/node_modules 1 undefined Project: /user/username/projects/myproject/packages/A/tsconfig.json WatchType: Failed Lookup Locations +Info 25 [00:01:38.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules 1 undefined Project: /user/username/projects/myproject/packages/A/tsconfig.json WatchType: Failed Lookup Locations +Info 26 [00:01:39.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules 1 undefined Project: /user/username/projects/myproject/packages/A/tsconfig.json WatchType: Failed Lookup Locations +Info 27 [00:01:40.000] 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 28 [00:01:41.000] 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 29 [00:01:42.000] 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 30 [00:01:43.000] 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 +Info 31 [00:01:44.000] Elapsed:: *ms 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 +Info 32 [00:01:45.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/packages/A/tsconfig.json WatchType: Type roots +Info 33 [00:01:46.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/packages/A/tsconfig.json WatchType: Type roots +Info 34 [00:01:47.000] Finishing updateGraphWorker: Project: /user/username/projects/myproject/packages/A/tsconfig.json Version: 1 structureChanged: true structureIsReused:: Not Elapsed:: *ms +Info 35 [00:01:48.000] Project '/user/username/projects/myproject/packages/A/tsconfig.json' (Configured) +Info 36 [00:01:49.000] Files (4) /a/lib/lib.d.ts /user/username/projects/myproject/packages/B/src/index.ts /user/username/projects/myproject/packages/B/src/bar.ts @@ -274,22 +274,22 @@ Info 36 [16:01:49.000] Files (4) src/index.ts Matched by include pattern 'src' in 'tsconfig.json' -Info 37 [16:01:50.000] ----------------------------------------------- -Info 38 [16:01:51.000] event: +Info 37 [00:01:50.000] ----------------------------------------------- +Info 38 [00:01:51.000] event: {"seq":0,"type":"event","event":"projectLoadingFinish","body":{"projectName":"/user/username/projects/myproject/packages/A/tsconfig.json"}} -Info 39 [16:01:52.000] event: +Info 39 [00:01:52.000] event: {"seq":0,"type":"event","event":"telemetry","body":{"telemetryEventName":"projectInfo","payload":{"projectId":"8c5cfb88fb6a6125ddaca4c198af63d261c8feb2786e348cbf3223fcf8461e16","fileStats":{"js":0,"jsSize":0,"jsx":0,"jsxSize":0,"ts":3,"tsSize":136,"tsx":0,"tsxSize":0,"dts":1,"dtsSize":334,"deferred":0,"deferredSize":0},"compilerOptions":{"outDir":"","rootDir":"","composite":true,"preserveSymlinks":true},"typeAcquisition":{"enable":false,"include":false,"exclude":false},"extends":false,"files":false,"include":true,"exclude":false,"compileOnSave":false,"configFileName":"tsconfig.json","projectType":"configured","languageServiceEnabled":true,"version":"FakeVersion"}}} -Info 40 [16:01:53.000] event: +Info 40 [00:01:53.000] event: {"seq":0,"type":"event","event":"configFileDiag","body":{"triggerFile":"/user/username/projects/myproject/packages/A/src/index.ts","configFile":"/user/username/projects/myproject/packages/A/tsconfig.json","diagnostics":[]}} -Info 41 [16:01:54.000] Search path: /user/username/projects/myproject/packages/A -Info 42 [16:01:55.000] For info: /user/username/projects/myproject/packages/A/tsconfig.json :: No config files found. -Info 43 [16:01:56.000] Project '/user/username/projects/myproject/packages/A/tsconfig.json' (Configured) -Info 43 [16:01:57.000] Files (4) - -Info 43 [16:01:58.000] ----------------------------------------------- -Info 43 [16:01:59.000] Open files: -Info 43 [16:02:00.000] FileName: /user/username/projects/myproject/packages/A/src/index.ts ProjectRootPath: undefined -Info 43 [16:02:01.000] Projects: /user/username/projects/myproject/packages/A/tsconfig.json +Info 41 [00:01:54.000] Search path: /user/username/projects/myproject/packages/A +Info 42 [00:01:55.000] For info: /user/username/projects/myproject/packages/A/tsconfig.json :: No config files found. +Info 43 [00:01:56.000] Project '/user/username/projects/myproject/packages/A/tsconfig.json' (Configured) +Info 43 [00:01:57.000] Files (4) + +Info 43 [00:01:58.000] ----------------------------------------------- +Info 43 [00:01:59.000] Open files: +Info 43 [00:02:00.000] FileName: /user/username/projects/myproject/packages/A/src/index.ts ProjectRootPath: undefined +Info 43 [00:02:01.000] Projects: /user/username/projects/myproject/packages/A/tsconfig.json After request PolledWatches:: @@ -326,11 +326,11 @@ FsWatchesRecursive:: /user/username/projects/myproject/node_modules: {} -Info 43 [16:02:02.000] response: +Info 43 [00:02:02.000] response: { "responseRequired": false } -Info 44 [16:02:03.000] request: +Info 44 [00:02:03.000] request: { "command": "geterr", "arguments": { @@ -414,7 +414,7 @@ FsWatchesRecursive:: /user/username/projects/myproject/node_modules: {} -Info 45 [16:02:04.000] response: +Info 45 [00:02:04.000] response: { "responseRequired": false } @@ -454,7 +454,7 @@ FsWatchesRecursive:: /user/username/projects/myproject/node_modules: {} -Info 46 [16:02:05.000] event: +Info 46 [00:02:05.000] event: {"seq":0,"type":"event","event":"syntaxDiag","body":{"file":"/user/username/projects/myproject/packages/A/src/index.ts","diagnostics":[]}} After checking timeout queue length (1) and running @@ -528,7 +528,7 @@ FsWatchesRecursive:: /user/username/projects/myproject/node_modules: {} -Info 47 [16:02:06.000] event: +Info 47 [00:02:06.000] event: {"seq":0,"type":"event","event":"semanticDiag","body":{"file":"/user/username/projects/myproject/packages/A/src/index.ts","diagnostics":[]}} Before running immediate callbacks and checking length (1) @@ -602,9 +602,9 @@ FsWatchesRecursive:: /user/username/projects/myproject/node_modules: {} -Info 48 [16:02:07.000] event: +Info 48 [00:02:07.000] event: {"seq":0,"type":"event","event":"suggestionDiag","body":{"file":"/user/username/projects/myproject/packages/A/src/index.ts","diagnostics":[]}} -Info 49 [16:02:08.000] event: +Info 49 [00:02:08.000] event: {"seq":0,"type":"event","event":"requestCompleted","body":{"request_seq":1}} Before running immediate callbacks and checking length (1) @@ -642,7 +642,7 @@ FsWatchesRecursive:: /user/username/projects/myproject/node_modules: {} -Info 50 [16:02:09.000] request: +Info 50 [00:02:09.000] request: { "command": "updateOpen", "arguments": { @@ -740,12 +740,12 @@ FsWatchesRecursive:: /user/username/projects/myproject/node_modules: {} -Info 51 [16:02:10.000] response: +Info 51 [00:02:10.000] response: { "response": true, "responseRequired": true } -Info 52 [16:02:11.000] request: +Info 52 [00:02:11.000] request: { "command": "geterr", "arguments": { @@ -829,7 +829,7 @@ FsWatchesRecursive:: /user/username/projects/myproject/node_modules: {} -Info 53 [16:02:12.000] response: +Info 53 [00:02:12.000] response: { "responseRequired": false } @@ -869,10 +869,10 @@ FsWatchesRecursive:: /user/username/projects/myproject/node_modules: {} -Info 54 [16:02:13.000] Starting updateGraphWorker: Project: /user/username/projects/myproject/packages/A/tsconfig.json -Info 55 [16:02:14.000] Finishing updateGraphWorker: Project: /user/username/projects/myproject/packages/A/tsconfig.json Version: 2 structureChanged: false structureIsReused:: Completely Elapsed:: *ms -Info 56 [16:02:15.000] Different program with same set of files -Info 57 [16:02:16.000] event: +Info 54 [00:02:13.000] Starting updateGraphWorker: Project: /user/username/projects/myproject/packages/A/tsconfig.json +Info 55 [00:02:14.000] Finishing updateGraphWorker: Project: /user/username/projects/myproject/packages/A/tsconfig.json Version: 2 structureChanged: false structureIsReused:: Completely Elapsed:: *ms +Info 56 [00:02:15.000] Different program with same set of files +Info 57 [00:02:16.000] event: {"seq":0,"type":"event","event":"syntaxDiag","body":{"file":"/user/username/projects/myproject/packages/A/src/index.ts","diagnostics":[]}} After checking timeout queue length (1) and running @@ -946,7 +946,7 @@ FsWatchesRecursive:: /user/username/projects/myproject/node_modules: {} -Info 58 [16:02:17.000] event: +Info 58 [00:02:17.000] event: {"seq":0,"type":"event","event":"semanticDiag","body":{"file":"/user/username/projects/myproject/packages/A/src/index.ts","diagnostics":[]}} Before running immediate callbacks and checking length (1) @@ -1020,9 +1020,9 @@ FsWatchesRecursive:: /user/username/projects/myproject/node_modules: {} -Info 59 [16:02:18.000] event: +Info 59 [00:02:18.000] event: {"seq":0,"type":"event","event":"suggestionDiag","body":{"file":"/user/username/projects/myproject/packages/A/src/index.ts","diagnostics":[]}} -Info 60 [16:02:19.000] event: +Info 60 [00:02:19.000] event: {"seq":0,"type":"event","event":"requestCompleted","body":{"request_seq":3}} Before running immediate callbacks and checking length (1) 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 fe71df1a8aec6..88766b8e736a7 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 @@ -1,5 +1,5 @@ -Info 0 [16:01:13.000] Provided types map file "/a/lib/typesMap.json" doesn't exist -Info 1 [16:01:14.000] request: +Info 0 [00:01:13.000] Provided types map file "/a/lib/typesMap.json" doesn't exist +Info 1 [00:01:14.000] request: { "seq": 0, "type": "request", @@ -194,13 +194,13 @@ FsWatches:: FsWatchesRecursive:: -Info 2 [16:01:15.000] Search path: /user/username/projects/myproject/packages/A/src -Info 3 [16:01:16.000] For info: /user/username/projects/myproject/packages/A/src/index.ts :: Config file name: /user/username/projects/myproject/packages/A/tsconfig.json -Info 4 [16:01:17.000] Creating configuration project /user/username/projects/myproject/packages/A/tsconfig.json -Info 5 [16:01:18.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/packages/A/tsconfig.json 2000 undefined Project: /user/username/projects/myproject/packages/A/tsconfig.json WatchType: Config file -Info 6 [16:01:19.000] event: +Info 2 [00:01:15.000] Search path: /user/username/projects/myproject/packages/A/src +Info 3 [00:01:16.000] For info: /user/username/projects/myproject/packages/A/src/index.ts :: Config file name: /user/username/projects/myproject/packages/A/tsconfig.json +Info 4 [00:01:17.000] Creating configuration project /user/username/projects/myproject/packages/A/tsconfig.json +Info 5 [00:01:18.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/packages/A/tsconfig.json 2000 undefined Project: /user/username/projects/myproject/packages/A/tsconfig.json WatchType: Config file +Info 6 [00:01:19.000] event: {"seq":0,"type":"event","event":"projectLoadingStart","body":{"projectName":"/user/username/projects/myproject/packages/A/tsconfig.json","reason":"Creating possible configured project for /user/username/projects/myproject/packages/A/src/index.ts to open"}} -Info 7 [16:01:20.000] Config: /user/username/projects/myproject/packages/A/tsconfig.json : { +Info 7 [00:01:20.000] Config: /user/username/projects/myproject/packages/A/tsconfig.json : { "rootNames": [ "/user/username/projects/myproject/packages/A/src/index.ts" ], @@ -217,11 +217,11 @@ Info 7 [16:01:20.000] Config: /user/username/projects/myproject/packages/A/ts } ] } -Info 8 [16:01:21.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/packages/a/src 1 undefined Config: /user/username/projects/myproject/packages/A/tsconfig.json WatchType: Wild card directory -Info 9 [16:01:22.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/packages/a/src 1 undefined Config: /user/username/projects/myproject/packages/A/tsconfig.json WatchType: Wild card directory -Info 10 [16:01:23.000] Plugins were requested but not running in environment that supports 'require'. Nothing will be loaded -Info 11 [16:01:24.000] Starting updateGraphWorker: Project: /user/username/projects/myproject/packages/A/tsconfig.json -Info 12 [16:01:25.000] Config: /user/username/projects/myproject/packages/B/tsconfig.json : { +Info 8 [00:01:21.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/packages/a/src 1 undefined Config: /user/username/projects/myproject/packages/A/tsconfig.json WatchType: Wild card directory +Info 9 [00:01:22.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/packages/a/src 1 undefined Config: /user/username/projects/myproject/packages/A/tsconfig.json WatchType: Wild card directory +Info 10 [00:01:23.000] Plugins were requested but not running in environment that supports 'require'. Nothing will be loaded +Info 11 [00:01:24.000] Starting updateGraphWorker: Project: /user/username/projects/myproject/packages/A/tsconfig.json +Info 12 [00:01:25.000] Config: /user/username/projects/myproject/packages/B/tsconfig.json : { "rootNames": [ "/user/username/projects/myproject/packages/B/src/bar.ts", "/user/username/projects/myproject/packages/B/src/index.ts" @@ -233,30 +233,30 @@ Info 12 [16:01:25.000] Config: /user/username/projects/myproject/packages/B/ts "configFilePath": "/user/username/projects/myproject/packages/B/tsconfig.json" } } -Info 13 [16:01:26.000] 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 14 [16:01:27.000] 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 15 [16:01:28.000] 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 16 [16:01:29.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/packages/B/src/index.ts 500 undefined WatchType: Closed Script info -Info 17 [16:01:30.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/packages/B/src/bar.ts 500 undefined WatchType: Closed Script info -Info 18 [16:01:31.000] FileWatcher:: Added:: WatchInfo: /a/lib/lib.d.ts 500 undefined WatchType: Closed Script info -Info 19 [16:01:32.000] 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 20 [16:01:33.000] 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 21 [16:01:34.000] 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 -Info 22 [16:01:35.000] Elapsed:: *ms 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 -Info 23 [16:01:36.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/packages/node_modules 1 undefined Project: /user/username/projects/myproject/packages/A/tsconfig.json WatchType: Failed Lookup Locations -Info 24 [16:01:37.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/packages/node_modules 1 undefined Project: /user/username/projects/myproject/packages/A/tsconfig.json WatchType: Failed Lookup Locations -Info 25 [16:01:38.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules 1 undefined Project: /user/username/projects/myproject/packages/A/tsconfig.json WatchType: Failed Lookup Locations -Info 26 [16:01:39.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules 1 undefined Project: /user/username/projects/myproject/packages/A/tsconfig.json WatchType: Failed Lookup Locations -Info 27 [16:01:40.000] 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 28 [16:01:41.000] 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 29 [16:01:42.000] 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 30 [16:01:43.000] 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 -Info 31 [16:01:44.000] Elapsed:: *ms 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 -Info 32 [16:01:45.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/packages/A/tsconfig.json WatchType: Type roots -Info 33 [16:01:46.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/packages/A/tsconfig.json WatchType: Type roots -Info 34 [16:01:47.000] Finishing updateGraphWorker: Project: /user/username/projects/myproject/packages/A/tsconfig.json Version: 1 structureChanged: true structureIsReused:: Not Elapsed:: *ms -Info 35 [16:01:48.000] Project '/user/username/projects/myproject/packages/A/tsconfig.json' (Configured) -Info 36 [16:01:49.000] Files (4) +Info 13 [00:01:26.000] 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 14 [00:01:27.000] 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 15 [00:01:28.000] 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 16 [00:01:29.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/packages/B/src/index.ts 500 undefined WatchType: Closed Script info +Info 17 [00:01:30.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/packages/B/src/bar.ts 500 undefined WatchType: Closed Script info +Info 18 [00:01:31.000] FileWatcher:: Added:: WatchInfo: /a/lib/lib.d.ts 500 undefined WatchType: Closed Script info +Info 19 [00:01:32.000] 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 20 [00:01:33.000] 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 21 [00:01:34.000] 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 +Info 22 [00:01:35.000] Elapsed:: *ms 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 +Info 23 [00:01:36.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/packages/node_modules 1 undefined Project: /user/username/projects/myproject/packages/A/tsconfig.json WatchType: Failed Lookup Locations +Info 24 [00:01:37.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/packages/node_modules 1 undefined Project: /user/username/projects/myproject/packages/A/tsconfig.json WatchType: Failed Lookup Locations +Info 25 [00:01:38.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules 1 undefined Project: /user/username/projects/myproject/packages/A/tsconfig.json WatchType: Failed Lookup Locations +Info 26 [00:01:39.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules 1 undefined Project: /user/username/projects/myproject/packages/A/tsconfig.json WatchType: Failed Lookup Locations +Info 27 [00:01:40.000] 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 28 [00:01:41.000] 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 29 [00:01:42.000] 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 30 [00:01:43.000] 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 +Info 31 [00:01:44.000] Elapsed:: *ms 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 +Info 32 [00:01:45.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/packages/A/tsconfig.json WatchType: Type roots +Info 33 [00:01:46.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/packages/A/tsconfig.json WatchType: Type roots +Info 34 [00:01:47.000] Finishing updateGraphWorker: Project: /user/username/projects/myproject/packages/A/tsconfig.json Version: 1 structureChanged: true structureIsReused:: Not Elapsed:: *ms +Info 35 [00:01:48.000] Project '/user/username/projects/myproject/packages/A/tsconfig.json' (Configured) +Info 36 [00:01:49.000] Files (4) /a/lib/lib.d.ts /user/username/projects/myproject/packages/B/src/index.ts /user/username/projects/myproject/packages/B/src/bar.ts @@ -272,22 +272,22 @@ Info 36 [16:01:49.000] Files (4) src/index.ts Matched by include pattern 'src' in 'tsconfig.json' -Info 37 [16:01:50.000] ----------------------------------------------- -Info 38 [16:01:51.000] event: +Info 37 [00:01:50.000] ----------------------------------------------- +Info 38 [00:01:51.000] event: {"seq":0,"type":"event","event":"projectLoadingFinish","body":{"projectName":"/user/username/projects/myproject/packages/A/tsconfig.json"}} -Info 39 [16:01:52.000] event: +Info 39 [00:01:52.000] event: {"seq":0,"type":"event","event":"telemetry","body":{"telemetryEventName":"projectInfo","payload":{"projectId":"8c5cfb88fb6a6125ddaca4c198af63d261c8feb2786e348cbf3223fcf8461e16","fileStats":{"js":0,"jsSize":0,"jsx":0,"jsxSize":0,"ts":3,"tsSize":136,"tsx":0,"tsxSize":0,"dts":1,"dtsSize":334,"deferred":0,"deferredSize":0},"compilerOptions":{"outDir":"","rootDir":"","composite":true},"typeAcquisition":{"enable":false,"include":false,"exclude":false},"extends":false,"files":false,"include":true,"exclude":false,"compileOnSave":false,"configFileName":"tsconfig.json","projectType":"configured","languageServiceEnabled":true,"version":"FakeVersion"}}} -Info 40 [16:01:53.000] event: +Info 40 [00:01:53.000] event: {"seq":0,"type":"event","event":"configFileDiag","body":{"triggerFile":"/user/username/projects/myproject/packages/A/src/index.ts","configFile":"/user/username/projects/myproject/packages/A/tsconfig.json","diagnostics":[]}} -Info 41 [16:01:54.000] Search path: /user/username/projects/myproject/packages/A -Info 42 [16:01:55.000] For info: /user/username/projects/myproject/packages/A/tsconfig.json :: No config files found. -Info 43 [16:01:56.000] Project '/user/username/projects/myproject/packages/A/tsconfig.json' (Configured) -Info 43 [16:01:57.000] Files (4) - -Info 43 [16:01:58.000] ----------------------------------------------- -Info 43 [16:01:59.000] Open files: -Info 43 [16:02:00.000] FileName: /user/username/projects/myproject/packages/A/src/index.ts ProjectRootPath: undefined -Info 43 [16:02:01.000] Projects: /user/username/projects/myproject/packages/A/tsconfig.json +Info 41 [00:01:54.000] Search path: /user/username/projects/myproject/packages/A +Info 42 [00:01:55.000] For info: /user/username/projects/myproject/packages/A/tsconfig.json :: No config files found. +Info 43 [00:01:56.000] Project '/user/username/projects/myproject/packages/A/tsconfig.json' (Configured) +Info 43 [00:01:57.000] Files (4) + +Info 43 [00:01:58.000] ----------------------------------------------- +Info 43 [00:01:59.000] Open files: +Info 43 [00:02:00.000] FileName: /user/username/projects/myproject/packages/A/src/index.ts ProjectRootPath: undefined +Info 43 [00:02:01.000] Projects: /user/username/projects/myproject/packages/A/tsconfig.json After request PolledWatches:: @@ -324,11 +324,11 @@ FsWatchesRecursive:: /user/username/projects/myproject/node_modules: {} -Info 43 [16:02:02.000] response: +Info 43 [00:02:02.000] response: { "responseRequired": false } -Info 44 [16:02:03.000] request: +Info 44 [00:02:03.000] request: { "command": "geterr", "arguments": { @@ -412,7 +412,7 @@ FsWatchesRecursive:: /user/username/projects/myproject/node_modules: {} -Info 45 [16:02:04.000] response: +Info 45 [00:02:04.000] response: { "responseRequired": false } @@ -452,7 +452,7 @@ FsWatchesRecursive:: /user/username/projects/myproject/node_modules: {} -Info 46 [16:02:05.000] event: +Info 46 [00:02:05.000] event: {"seq":0,"type":"event","event":"syntaxDiag","body":{"file":"/user/username/projects/myproject/packages/A/src/index.ts","diagnostics":[]}} After checking timeout queue length (1) and running @@ -526,7 +526,7 @@ FsWatchesRecursive:: /user/username/projects/myproject/node_modules: {} -Info 47 [16:02:06.000] event: +Info 47 [00:02:06.000] event: {"seq":0,"type":"event","event":"semanticDiag","body":{"file":"/user/username/projects/myproject/packages/A/src/index.ts","diagnostics":[]}} Before running immediate callbacks and checking length (1) @@ -600,9 +600,9 @@ FsWatchesRecursive:: /user/username/projects/myproject/node_modules: {} -Info 48 [16:02:07.000] event: +Info 48 [00:02:07.000] event: {"seq":0,"type":"event","event":"suggestionDiag","body":{"file":"/user/username/projects/myproject/packages/A/src/index.ts","diagnostics":[]}} -Info 49 [16:02:08.000] event: +Info 49 [00:02:08.000] event: {"seq":0,"type":"event","event":"requestCompleted","body":{"request_seq":1}} Before running immediate callbacks and checking length (1) @@ -640,7 +640,7 @@ FsWatchesRecursive:: /user/username/projects/myproject/node_modules: {} -Info 50 [16:02:09.000] request: +Info 50 [00:02:09.000] request: { "command": "updateOpen", "arguments": { @@ -738,12 +738,12 @@ FsWatchesRecursive:: /user/username/projects/myproject/node_modules: {} -Info 51 [16:02:10.000] response: +Info 51 [00:02:10.000] response: { "response": true, "responseRequired": true } -Info 52 [16:02:11.000] request: +Info 52 [00:02:11.000] request: { "command": "geterr", "arguments": { @@ -827,7 +827,7 @@ FsWatchesRecursive:: /user/username/projects/myproject/node_modules: {} -Info 53 [16:02:12.000] response: +Info 53 [00:02:12.000] response: { "responseRequired": false } @@ -867,10 +867,10 @@ FsWatchesRecursive:: /user/username/projects/myproject/node_modules: {} -Info 54 [16:02:13.000] Starting updateGraphWorker: Project: /user/username/projects/myproject/packages/A/tsconfig.json -Info 55 [16:02:14.000] Finishing updateGraphWorker: Project: /user/username/projects/myproject/packages/A/tsconfig.json Version: 2 structureChanged: false structureIsReused:: Completely Elapsed:: *ms -Info 56 [16:02:15.000] Different program with same set of files -Info 57 [16:02:16.000] event: +Info 54 [00:02:13.000] Starting updateGraphWorker: Project: /user/username/projects/myproject/packages/A/tsconfig.json +Info 55 [00:02:14.000] Finishing updateGraphWorker: Project: /user/username/projects/myproject/packages/A/tsconfig.json Version: 2 structureChanged: false structureIsReused:: Completely Elapsed:: *ms +Info 56 [00:02:15.000] Different program with same set of files +Info 57 [00:02:16.000] event: {"seq":0,"type":"event","event":"syntaxDiag","body":{"file":"/user/username/projects/myproject/packages/A/src/index.ts","diagnostics":[]}} After checking timeout queue length (1) and running @@ -944,7 +944,7 @@ FsWatchesRecursive:: /user/username/projects/myproject/node_modules: {} -Info 58 [16:02:17.000] event: +Info 58 [00:02:17.000] event: {"seq":0,"type":"event","event":"semanticDiag","body":{"file":"/user/username/projects/myproject/packages/A/src/index.ts","diagnostics":[]}} Before running immediate callbacks and checking length (1) @@ -1018,9 +1018,9 @@ FsWatchesRecursive:: /user/username/projects/myproject/node_modules: {} -Info 59 [16:02:18.000] event: +Info 59 [00:02:18.000] event: {"seq":0,"type":"event","event":"suggestionDiag","body":{"file":"/user/username/projects/myproject/packages/A/src/index.ts","diagnostics":[]}} -Info 60 [16:02:19.000] event: +Info 60 [00:02:19.000] event: {"seq":0,"type":"event","event":"requestCompleted","body":{"request_seq":3}} Before running immediate callbacks and checking length (1) 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 ab76e103c4a06..bd5b3d49a9e03 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 @@ -1,5 +1,5 @@ -Info 0 [16:00:45.000] Provided types map file "/a/lib/typesMap.json" doesn't exist -Info 1 [16:00:46.000] request: +Info 0 [00:00:45.000] Provided types map file "/a/lib/typesMap.json" doesn't exist +Info 1 [00:00:46.000] request: { "seq": 0, "type": "request", @@ -52,13 +52,13 @@ FsWatches:: FsWatchesRecursive:: -Info 2 [16:00:47.000] Search path: /user/username/projects/myproject/packages/A/src -Info 3 [16:00:48.000] For info: /user/username/projects/myproject/packages/A/src/index.ts :: Config file name: /user/username/projects/myproject/packages/A/tsconfig.json -Info 4 [16:00:49.000] Creating configuration project /user/username/projects/myproject/packages/A/tsconfig.json -Info 5 [16:00:50.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/packages/A/tsconfig.json 2000 undefined Project: /user/username/projects/myproject/packages/A/tsconfig.json WatchType: Config file -Info 6 [16:00:51.000] event: +Info 2 [00:00:47.000] Search path: /user/username/projects/myproject/packages/A/src +Info 3 [00:00:48.000] For info: /user/username/projects/myproject/packages/A/src/index.ts :: Config file name: /user/username/projects/myproject/packages/A/tsconfig.json +Info 4 [00:00:49.000] Creating configuration project /user/username/projects/myproject/packages/A/tsconfig.json +Info 5 [00:00:50.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/packages/A/tsconfig.json 2000 undefined Project: /user/username/projects/myproject/packages/A/tsconfig.json WatchType: Config file +Info 6 [00:00:51.000] event: {"seq":0,"type":"event","event":"projectLoadingStart","body":{"projectName":"/user/username/projects/myproject/packages/A/tsconfig.json","reason":"Creating possible configured project for /user/username/projects/myproject/packages/A/src/index.ts to open"}} -Info 7 [16:00:52.000] Config: /user/username/projects/myproject/packages/A/tsconfig.json : { +Info 7 [00:00:52.000] Config: /user/username/projects/myproject/packages/A/tsconfig.json : { "rootNames": [ "/user/username/projects/myproject/packages/A/src/index.ts" ], @@ -76,11 +76,11 @@ Info 7 [16:00:52.000] Config: /user/username/projects/myproject/packages/A/ts } ] } -Info 8 [16:00:53.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/packages/a/src 1 undefined Config: /user/username/projects/myproject/packages/A/tsconfig.json WatchType: Wild card directory -Info 9 [16:00:54.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/packages/a/src 1 undefined Config: /user/username/projects/myproject/packages/A/tsconfig.json WatchType: Wild card directory -Info 10 [16:00:55.000] Plugins were requested but not running in environment that supports 'require'. Nothing will be loaded -Info 11 [16:00:56.000] Starting updateGraphWorker: Project: /user/username/projects/myproject/packages/A/tsconfig.json -Info 12 [16:00:57.000] Config: /user/username/projects/myproject/packages/B/tsconfig.json : { +Info 8 [00:00:53.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/packages/a/src 1 undefined Config: /user/username/projects/myproject/packages/A/tsconfig.json WatchType: Wild card directory +Info 9 [00:00:54.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/packages/a/src 1 undefined Config: /user/username/projects/myproject/packages/A/tsconfig.json WatchType: Wild card directory +Info 10 [00:00:55.000] Plugins were requested but not running in environment that supports 'require'. Nothing will be loaded +Info 11 [00:00:56.000] Starting updateGraphWorker: Project: /user/username/projects/myproject/packages/A/tsconfig.json +Info 12 [00:00:57.000] Config: /user/username/projects/myproject/packages/B/tsconfig.json : { "rootNames": [ "/user/username/projects/myproject/packages/B/src/bar.ts", "/user/username/projects/myproject/packages/B/src/index.ts" @@ -93,30 +93,30 @@ Info 12 [16:00:57.000] Config: /user/username/projects/myproject/packages/B/ts "configFilePath": "/user/username/projects/myproject/packages/B/tsconfig.json" } } -Info 13 [16:00:58.000] 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 14 [16:00:59.000] 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 15 [16:01:00.000] 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 16 [16:01:01.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/packages/B/src/index.ts 500 undefined WatchType: Closed Script info -Info 17 [16:01:02.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/packages/B/src/bar.ts 500 undefined WatchType: Closed Script info -Info 18 [16:01:03.000] FileWatcher:: Added:: WatchInfo: /a/lib/lib.d.ts 500 undefined WatchType: Closed Script info -Info 19 [16:01:04.000] 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 20 [16:01:05.000] 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 21 [16:01:06.000] 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 -Info 22 [16:01:07.000] Elapsed:: *ms 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 -Info 23 [16:01:08.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/packages/node_modules 1 undefined Project: /user/username/projects/myproject/packages/A/tsconfig.json WatchType: Failed Lookup Locations -Info 24 [16:01:09.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/packages/node_modules 1 undefined Project: /user/username/projects/myproject/packages/A/tsconfig.json WatchType: Failed Lookup Locations -Info 25 [16:01:10.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules 1 undefined Project: /user/username/projects/myproject/packages/A/tsconfig.json WatchType: Failed Lookup Locations -Info 26 [16:01:11.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules 1 undefined Project: /user/username/projects/myproject/packages/A/tsconfig.json WatchType: Failed Lookup Locations -Info 27 [16:01:12.000] 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 28 [16:01:13.000] 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 29 [16:01:14.000] 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 30 [16:01:15.000] 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 -Info 31 [16:01:16.000] Elapsed:: *ms 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 -Info 32 [16:01:17.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/packages/A/tsconfig.json WatchType: Type roots -Info 33 [16:01:18.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/packages/A/tsconfig.json WatchType: Type roots -Info 34 [16:01:19.000] Finishing updateGraphWorker: Project: /user/username/projects/myproject/packages/A/tsconfig.json Version: 1 structureChanged: true structureIsReused:: Not Elapsed:: *ms -Info 35 [16:01:20.000] Project '/user/username/projects/myproject/packages/A/tsconfig.json' (Configured) -Info 36 [16:01:21.000] Files (4) +Info 13 [00:00:58.000] 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 14 [00:00:59.000] 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 15 [00:01:00.000] 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 16 [00:01:01.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/packages/B/src/index.ts 500 undefined WatchType: Closed Script info +Info 17 [00:01:02.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/packages/B/src/bar.ts 500 undefined WatchType: Closed Script info +Info 18 [00:01:03.000] FileWatcher:: Added:: WatchInfo: /a/lib/lib.d.ts 500 undefined WatchType: Closed Script info +Info 19 [00:01:04.000] 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 20 [00:01:05.000] 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 21 [00:01:06.000] 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 +Info 22 [00:01:07.000] Elapsed:: *ms 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 +Info 23 [00:01:08.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/packages/node_modules 1 undefined Project: /user/username/projects/myproject/packages/A/tsconfig.json WatchType: Failed Lookup Locations +Info 24 [00:01:09.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/packages/node_modules 1 undefined Project: /user/username/projects/myproject/packages/A/tsconfig.json WatchType: Failed Lookup Locations +Info 25 [00:01:10.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules 1 undefined Project: /user/username/projects/myproject/packages/A/tsconfig.json WatchType: Failed Lookup Locations +Info 26 [00:01:11.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules 1 undefined Project: /user/username/projects/myproject/packages/A/tsconfig.json WatchType: Failed Lookup Locations +Info 27 [00:01:12.000] 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 28 [00:01:13.000] 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 29 [00:01:14.000] 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 30 [00:01:15.000] 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 +Info 31 [00:01:16.000] Elapsed:: *ms 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 +Info 32 [00:01:17.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/packages/A/tsconfig.json WatchType: Type roots +Info 33 [00:01:18.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/packages/A/tsconfig.json WatchType: Type roots +Info 34 [00:01:19.000] Finishing updateGraphWorker: Project: /user/username/projects/myproject/packages/A/tsconfig.json Version: 1 structureChanged: true structureIsReused:: Not Elapsed:: *ms +Info 35 [00:01:20.000] Project '/user/username/projects/myproject/packages/A/tsconfig.json' (Configured) +Info 36 [00:01:21.000] Files (4) /a/lib/lib.d.ts /user/username/projects/myproject/packages/B/src/index.ts /user/username/projects/myproject/packages/B/src/bar.ts @@ -132,22 +132,22 @@ Info 36 [16:01:21.000] Files (4) src/index.ts Matched by include pattern 'src' in 'tsconfig.json' -Info 37 [16:01:22.000] ----------------------------------------------- -Info 38 [16:01:23.000] event: +Info 37 [00:01:22.000] ----------------------------------------------- +Info 38 [00:01:23.000] event: {"seq":0,"type":"event","event":"projectLoadingFinish","body":{"projectName":"/user/username/projects/myproject/packages/A/tsconfig.json"}} -Info 39 [16:01:24.000] event: +Info 39 [00:01:24.000] event: {"seq":0,"type":"event","event":"telemetry","body":{"telemetryEventName":"projectInfo","payload":{"projectId":"8c5cfb88fb6a6125ddaca4c198af63d261c8feb2786e348cbf3223fcf8461e16","fileStats":{"js":0,"jsSize":0,"jsx":0,"jsxSize":0,"ts":3,"tsSize":136,"tsx":0,"tsxSize":0,"dts":1,"dtsSize":334,"deferred":0,"deferredSize":0},"compilerOptions":{"outDir":"","rootDir":"","composite":true,"preserveSymlinks":true},"typeAcquisition":{"enable":false,"include":false,"exclude":false},"extends":false,"files":false,"include":true,"exclude":false,"compileOnSave":false,"configFileName":"tsconfig.json","projectType":"configured","languageServiceEnabled":true,"version":"FakeVersion"}}} -Info 40 [16:01:25.000] event: +Info 40 [00:01:25.000] event: {"seq":0,"type":"event","event":"configFileDiag","body":{"triggerFile":"/user/username/projects/myproject/packages/A/src/index.ts","configFile":"/user/username/projects/myproject/packages/A/tsconfig.json","diagnostics":[]}} -Info 41 [16:01:26.000] Search path: /user/username/projects/myproject/packages/A -Info 42 [16:01:27.000] For info: /user/username/projects/myproject/packages/A/tsconfig.json :: No config files found. -Info 43 [16:01:28.000] Project '/user/username/projects/myproject/packages/A/tsconfig.json' (Configured) -Info 43 [16:01:29.000] Files (4) - -Info 43 [16:01:30.000] ----------------------------------------------- -Info 43 [16:01:31.000] Open files: -Info 43 [16:01:32.000] FileName: /user/username/projects/myproject/packages/A/src/index.ts ProjectRootPath: undefined -Info 43 [16:01:33.000] Projects: /user/username/projects/myproject/packages/A/tsconfig.json +Info 41 [00:01:26.000] Search path: /user/username/projects/myproject/packages/A +Info 42 [00:01:27.000] For info: /user/username/projects/myproject/packages/A/tsconfig.json :: No config files found. +Info 43 [00:01:28.000] Project '/user/username/projects/myproject/packages/A/tsconfig.json' (Configured) +Info 43 [00:01:29.000] Files (4) + +Info 43 [00:01:30.000] ----------------------------------------------- +Info 43 [00:01:31.000] Open files: +Info 43 [00:01:32.000] FileName: /user/username/projects/myproject/packages/A/src/index.ts ProjectRootPath: undefined +Info 43 [00:01:33.000] Projects: /user/username/projects/myproject/packages/A/tsconfig.json After request PolledWatches:: @@ -184,11 +184,11 @@ FsWatchesRecursive:: /user/username/projects/myproject/node_modules: {} -Info 43 [16:01:34.000] response: +Info 43 [00:01:34.000] response: { "responseRequired": false } -Info 44 [16:01:35.000] request: +Info 44 [00:01:35.000] request: { "command": "geterr", "arguments": { @@ -272,7 +272,7 @@ FsWatchesRecursive:: /user/username/projects/myproject/node_modules: {} -Info 45 [16:01:36.000] response: +Info 45 [00:01:36.000] response: { "responseRequired": false } @@ -312,7 +312,7 @@ FsWatchesRecursive:: /user/username/projects/myproject/node_modules: {} -Info 46 [16:01:37.000] event: +Info 46 [00:01:37.000] event: {"seq":0,"type":"event","event":"syntaxDiag","body":{"file":"/user/username/projects/myproject/packages/A/src/index.ts","diagnostics":[]}} After checking timeout queue length (1) and running @@ -386,7 +386,7 @@ FsWatchesRecursive:: /user/username/projects/myproject/node_modules: {} -Info 47 [16:01:38.000] event: +Info 47 [00:01:38.000] event: {"seq":0,"type":"event","event":"semanticDiag","body":{"file":"/user/username/projects/myproject/packages/A/src/index.ts","diagnostics":[]}} Before running immediate callbacks and checking length (1) @@ -460,9 +460,9 @@ FsWatchesRecursive:: /user/username/projects/myproject/node_modules: {} -Info 48 [16:01:39.000] event: +Info 48 [00:01:39.000] event: {"seq":0,"type":"event","event":"suggestionDiag","body":{"file":"/user/username/projects/myproject/packages/A/src/index.ts","diagnostics":[]}} -Info 49 [16:01:40.000] event: +Info 49 [00:01:40.000] event: {"seq":0,"type":"event","event":"requestCompleted","body":{"request_seq":1}} Before running immediate callbacks and checking length (1) @@ -500,7 +500,7 @@ FsWatchesRecursive:: /user/username/projects/myproject/node_modules: {} -Info 50 [16:01:41.000] request: +Info 50 [00:01:41.000] request: { "command": "updateOpen", "arguments": { @@ -598,12 +598,12 @@ FsWatchesRecursive:: /user/username/projects/myproject/node_modules: {} -Info 51 [16:01:42.000] response: +Info 51 [00:01:42.000] response: { "response": true, "responseRequired": true } -Info 52 [16:01:43.000] request: +Info 52 [00:01:43.000] request: { "command": "geterr", "arguments": { @@ -687,7 +687,7 @@ FsWatchesRecursive:: /user/username/projects/myproject/node_modules: {} -Info 53 [16:01:44.000] response: +Info 53 [00:01:44.000] response: { "responseRequired": false } @@ -727,10 +727,10 @@ FsWatchesRecursive:: /user/username/projects/myproject/node_modules: {} -Info 54 [16:01:45.000] Starting updateGraphWorker: Project: /user/username/projects/myproject/packages/A/tsconfig.json -Info 55 [16:01:46.000] Finishing updateGraphWorker: Project: /user/username/projects/myproject/packages/A/tsconfig.json Version: 2 structureChanged: false structureIsReused:: Completely Elapsed:: *ms -Info 56 [16:01:47.000] Different program with same set of files -Info 57 [16:01:48.000] event: +Info 54 [00:01:45.000] Starting updateGraphWorker: Project: /user/username/projects/myproject/packages/A/tsconfig.json +Info 55 [00:01:46.000] Finishing updateGraphWorker: Project: /user/username/projects/myproject/packages/A/tsconfig.json Version: 2 structureChanged: false structureIsReused:: Completely Elapsed:: *ms +Info 56 [00:01:47.000] Different program with same set of files +Info 57 [00:01:48.000] event: {"seq":0,"type":"event","event":"syntaxDiag","body":{"file":"/user/username/projects/myproject/packages/A/src/index.ts","diagnostics":[]}} After checking timeout queue length (1) and running @@ -804,7 +804,7 @@ FsWatchesRecursive:: /user/username/projects/myproject/node_modules: {} -Info 58 [16:01:49.000] event: +Info 58 [00:01:49.000] event: {"seq":0,"type":"event","event":"semanticDiag","body":{"file":"/user/username/projects/myproject/packages/A/src/index.ts","diagnostics":[]}} Before running immediate callbacks and checking length (1) @@ -878,9 +878,9 @@ FsWatchesRecursive:: /user/username/projects/myproject/node_modules: {} -Info 59 [16:01:50.000] event: +Info 59 [00:01:50.000] event: {"seq":0,"type":"event","event":"suggestionDiag","body":{"file":"/user/username/projects/myproject/packages/A/src/index.ts","diagnostics":[]}} -Info 60 [16:01:51.000] event: +Info 60 [00:01:51.000] event: {"seq":0,"type":"event","event":"requestCompleted","body":{"request_seq":3}} Before running immediate callbacks and checking length (1) 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 d3c5f530539e0..54bb95b90b028 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 @@ -1,5 +1,5 @@ -Info 0 [16:00:45.000] Provided types map file "/a/lib/typesMap.json" doesn't exist -Info 1 [16:00:46.000] request: +Info 0 [00:00:45.000] Provided types map file "/a/lib/typesMap.json" doesn't exist +Info 1 [00:00:46.000] request: { "seq": 0, "type": "request", @@ -52,13 +52,13 @@ FsWatches:: FsWatchesRecursive:: -Info 2 [16:00:47.000] Search path: /user/username/projects/myproject/packages/A/src -Info 3 [16:00:48.000] For info: /user/username/projects/myproject/packages/A/src/index.ts :: Config file name: /user/username/projects/myproject/packages/A/tsconfig.json -Info 4 [16:00:49.000] Creating configuration project /user/username/projects/myproject/packages/A/tsconfig.json -Info 5 [16:00:50.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/packages/A/tsconfig.json 2000 undefined Project: /user/username/projects/myproject/packages/A/tsconfig.json WatchType: Config file -Info 6 [16:00:51.000] event: +Info 2 [00:00:47.000] Search path: /user/username/projects/myproject/packages/A/src +Info 3 [00:00:48.000] For info: /user/username/projects/myproject/packages/A/src/index.ts :: Config file name: /user/username/projects/myproject/packages/A/tsconfig.json +Info 4 [00:00:49.000] Creating configuration project /user/username/projects/myproject/packages/A/tsconfig.json +Info 5 [00:00:50.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/packages/A/tsconfig.json 2000 undefined Project: /user/username/projects/myproject/packages/A/tsconfig.json WatchType: Config file +Info 6 [00:00:51.000] event: {"seq":0,"type":"event","event":"projectLoadingStart","body":{"projectName":"/user/username/projects/myproject/packages/A/tsconfig.json","reason":"Creating possible configured project for /user/username/projects/myproject/packages/A/src/index.ts to open"}} -Info 7 [16:00:52.000] Config: /user/username/projects/myproject/packages/A/tsconfig.json : { +Info 7 [00:00:52.000] Config: /user/username/projects/myproject/packages/A/tsconfig.json : { "rootNames": [ "/user/username/projects/myproject/packages/A/src/index.ts" ], @@ -75,11 +75,11 @@ Info 7 [16:00:52.000] Config: /user/username/projects/myproject/packages/A/ts } ] } -Info 8 [16:00:53.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/packages/a/src 1 undefined Config: /user/username/projects/myproject/packages/A/tsconfig.json WatchType: Wild card directory -Info 9 [16:00:54.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/packages/a/src 1 undefined Config: /user/username/projects/myproject/packages/A/tsconfig.json WatchType: Wild card directory -Info 10 [16:00:55.000] Plugins were requested but not running in environment that supports 'require'. Nothing will be loaded -Info 11 [16:00:56.000] Starting updateGraphWorker: Project: /user/username/projects/myproject/packages/A/tsconfig.json -Info 12 [16:00:57.000] Config: /user/username/projects/myproject/packages/B/tsconfig.json : { +Info 8 [00:00:53.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/packages/a/src 1 undefined Config: /user/username/projects/myproject/packages/A/tsconfig.json WatchType: Wild card directory +Info 9 [00:00:54.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/packages/a/src 1 undefined Config: /user/username/projects/myproject/packages/A/tsconfig.json WatchType: Wild card directory +Info 10 [00:00:55.000] Plugins were requested but not running in environment that supports 'require'. Nothing will be loaded +Info 11 [00:00:56.000] Starting updateGraphWorker: Project: /user/username/projects/myproject/packages/A/tsconfig.json +Info 12 [00:00:57.000] Config: /user/username/projects/myproject/packages/B/tsconfig.json : { "rootNames": [ "/user/username/projects/myproject/packages/B/src/bar.ts", "/user/username/projects/myproject/packages/B/src/index.ts" @@ -91,30 +91,30 @@ Info 12 [16:00:57.000] Config: /user/username/projects/myproject/packages/B/ts "configFilePath": "/user/username/projects/myproject/packages/B/tsconfig.json" } } -Info 13 [16:00:58.000] 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 14 [16:00:59.000] 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 15 [16:01:00.000] 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 16 [16:01:01.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/packages/B/src/index.ts 500 undefined WatchType: Closed Script info -Info 17 [16:01:02.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/packages/B/src/bar.ts 500 undefined WatchType: Closed Script info -Info 18 [16:01:03.000] FileWatcher:: Added:: WatchInfo: /a/lib/lib.d.ts 500 undefined WatchType: Closed Script info -Info 19 [16:01:04.000] 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 20 [16:01:05.000] 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 21 [16:01:06.000] 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 -Info 22 [16:01:07.000] Elapsed:: *ms 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 -Info 23 [16:01:08.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/packages/node_modules 1 undefined Project: /user/username/projects/myproject/packages/A/tsconfig.json WatchType: Failed Lookup Locations -Info 24 [16:01:09.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/packages/node_modules 1 undefined Project: /user/username/projects/myproject/packages/A/tsconfig.json WatchType: Failed Lookup Locations -Info 25 [16:01:10.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules 1 undefined Project: /user/username/projects/myproject/packages/A/tsconfig.json WatchType: Failed Lookup Locations -Info 26 [16:01:11.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules 1 undefined Project: /user/username/projects/myproject/packages/A/tsconfig.json WatchType: Failed Lookup Locations -Info 27 [16:01:12.000] 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 28 [16:01:13.000] 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 29 [16:01:14.000] 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 30 [16:01:15.000] 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 -Info 31 [16:01:16.000] Elapsed:: *ms 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 -Info 32 [16:01:17.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/packages/A/tsconfig.json WatchType: Type roots -Info 33 [16:01:18.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/packages/A/tsconfig.json WatchType: Type roots -Info 34 [16:01:19.000] Finishing updateGraphWorker: Project: /user/username/projects/myproject/packages/A/tsconfig.json Version: 1 structureChanged: true structureIsReused:: Not Elapsed:: *ms -Info 35 [16:01:20.000] Project '/user/username/projects/myproject/packages/A/tsconfig.json' (Configured) -Info 36 [16:01:21.000] Files (4) +Info 13 [00:00:58.000] 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 14 [00:00:59.000] 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 15 [00:01:00.000] 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 16 [00:01:01.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/packages/B/src/index.ts 500 undefined WatchType: Closed Script info +Info 17 [00:01:02.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/packages/B/src/bar.ts 500 undefined WatchType: Closed Script info +Info 18 [00:01:03.000] FileWatcher:: Added:: WatchInfo: /a/lib/lib.d.ts 500 undefined WatchType: Closed Script info +Info 19 [00:01:04.000] 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 20 [00:01:05.000] 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 21 [00:01:06.000] 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 +Info 22 [00:01:07.000] Elapsed:: *ms 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 +Info 23 [00:01:08.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/packages/node_modules 1 undefined Project: /user/username/projects/myproject/packages/A/tsconfig.json WatchType: Failed Lookup Locations +Info 24 [00:01:09.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/packages/node_modules 1 undefined Project: /user/username/projects/myproject/packages/A/tsconfig.json WatchType: Failed Lookup Locations +Info 25 [00:01:10.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules 1 undefined Project: /user/username/projects/myproject/packages/A/tsconfig.json WatchType: Failed Lookup Locations +Info 26 [00:01:11.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules 1 undefined Project: /user/username/projects/myproject/packages/A/tsconfig.json WatchType: Failed Lookup Locations +Info 27 [00:01:12.000] 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 28 [00:01:13.000] 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 29 [00:01:14.000] 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 30 [00:01:15.000] 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 +Info 31 [00:01:16.000] Elapsed:: *ms 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 +Info 32 [00:01:17.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/packages/A/tsconfig.json WatchType: Type roots +Info 33 [00:01:18.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/packages/A/tsconfig.json WatchType: Type roots +Info 34 [00:01:19.000] Finishing updateGraphWorker: Project: /user/username/projects/myproject/packages/A/tsconfig.json Version: 1 structureChanged: true structureIsReused:: Not Elapsed:: *ms +Info 35 [00:01:20.000] Project '/user/username/projects/myproject/packages/A/tsconfig.json' (Configured) +Info 36 [00:01:21.000] Files (4) /a/lib/lib.d.ts /user/username/projects/myproject/packages/B/src/index.ts /user/username/projects/myproject/packages/B/src/bar.ts @@ -130,22 +130,22 @@ Info 36 [16:01:21.000] Files (4) src/index.ts Matched by include pattern 'src' in 'tsconfig.json' -Info 37 [16:01:22.000] ----------------------------------------------- -Info 38 [16:01:23.000] event: +Info 37 [00:01:22.000] ----------------------------------------------- +Info 38 [00:01:23.000] event: {"seq":0,"type":"event","event":"projectLoadingFinish","body":{"projectName":"/user/username/projects/myproject/packages/A/tsconfig.json"}} -Info 39 [16:01:24.000] event: +Info 39 [00:01:24.000] event: {"seq":0,"type":"event","event":"telemetry","body":{"telemetryEventName":"projectInfo","payload":{"projectId":"8c5cfb88fb6a6125ddaca4c198af63d261c8feb2786e348cbf3223fcf8461e16","fileStats":{"js":0,"jsSize":0,"jsx":0,"jsxSize":0,"ts":3,"tsSize":136,"tsx":0,"tsxSize":0,"dts":1,"dtsSize":334,"deferred":0,"deferredSize":0},"compilerOptions":{"outDir":"","rootDir":"","composite":true},"typeAcquisition":{"enable":false,"include":false,"exclude":false},"extends":false,"files":false,"include":true,"exclude":false,"compileOnSave":false,"configFileName":"tsconfig.json","projectType":"configured","languageServiceEnabled":true,"version":"FakeVersion"}}} -Info 40 [16:01:25.000] event: +Info 40 [00:01:25.000] event: {"seq":0,"type":"event","event":"configFileDiag","body":{"triggerFile":"/user/username/projects/myproject/packages/A/src/index.ts","configFile":"/user/username/projects/myproject/packages/A/tsconfig.json","diagnostics":[]}} -Info 41 [16:01:26.000] Search path: /user/username/projects/myproject/packages/A -Info 42 [16:01:27.000] For info: /user/username/projects/myproject/packages/A/tsconfig.json :: No config files found. -Info 43 [16:01:28.000] Project '/user/username/projects/myproject/packages/A/tsconfig.json' (Configured) -Info 43 [16:01:29.000] Files (4) - -Info 43 [16:01:30.000] ----------------------------------------------- -Info 43 [16:01:31.000] Open files: -Info 43 [16:01:32.000] FileName: /user/username/projects/myproject/packages/A/src/index.ts ProjectRootPath: undefined -Info 43 [16:01:33.000] Projects: /user/username/projects/myproject/packages/A/tsconfig.json +Info 41 [00:01:26.000] Search path: /user/username/projects/myproject/packages/A +Info 42 [00:01:27.000] For info: /user/username/projects/myproject/packages/A/tsconfig.json :: No config files found. +Info 43 [00:01:28.000] Project '/user/username/projects/myproject/packages/A/tsconfig.json' (Configured) +Info 43 [00:01:29.000] Files (4) + +Info 43 [00:01:30.000] ----------------------------------------------- +Info 43 [00:01:31.000] Open files: +Info 43 [00:01:32.000] FileName: /user/username/projects/myproject/packages/A/src/index.ts ProjectRootPath: undefined +Info 43 [00:01:33.000] Projects: /user/username/projects/myproject/packages/A/tsconfig.json After request PolledWatches:: @@ -182,11 +182,11 @@ FsWatchesRecursive:: /user/username/projects/myproject/node_modules: {} -Info 43 [16:01:34.000] response: +Info 43 [00:01:34.000] response: { "responseRequired": false } -Info 44 [16:01:35.000] request: +Info 44 [00:01:35.000] request: { "command": "geterr", "arguments": { @@ -270,7 +270,7 @@ FsWatchesRecursive:: /user/username/projects/myproject/node_modules: {} -Info 45 [16:01:36.000] response: +Info 45 [00:01:36.000] response: { "responseRequired": false } @@ -310,7 +310,7 @@ FsWatchesRecursive:: /user/username/projects/myproject/node_modules: {} -Info 46 [16:01:37.000] event: +Info 46 [00:01:37.000] event: {"seq":0,"type":"event","event":"syntaxDiag","body":{"file":"/user/username/projects/myproject/packages/A/src/index.ts","diagnostics":[]}} After checking timeout queue length (1) and running @@ -384,7 +384,7 @@ FsWatchesRecursive:: /user/username/projects/myproject/node_modules: {} -Info 47 [16:01:38.000] event: +Info 47 [00:01:38.000] event: {"seq":0,"type":"event","event":"semanticDiag","body":{"file":"/user/username/projects/myproject/packages/A/src/index.ts","diagnostics":[]}} Before running immediate callbacks and checking length (1) @@ -458,9 +458,9 @@ FsWatchesRecursive:: /user/username/projects/myproject/node_modules: {} -Info 48 [16:01:39.000] event: +Info 48 [00:01:39.000] event: {"seq":0,"type":"event","event":"suggestionDiag","body":{"file":"/user/username/projects/myproject/packages/A/src/index.ts","diagnostics":[]}} -Info 49 [16:01:40.000] event: +Info 49 [00:01:40.000] event: {"seq":0,"type":"event","event":"requestCompleted","body":{"request_seq":1}} Before running immediate callbacks and checking length (1) @@ -498,7 +498,7 @@ FsWatchesRecursive:: /user/username/projects/myproject/node_modules: {} -Info 50 [16:01:41.000] request: +Info 50 [00:01:41.000] request: { "command": "updateOpen", "arguments": { @@ -596,12 +596,12 @@ FsWatchesRecursive:: /user/username/projects/myproject/node_modules: {} -Info 51 [16:01:42.000] response: +Info 51 [00:01:42.000] response: { "response": true, "responseRequired": true } -Info 52 [16:01:43.000] request: +Info 52 [00:01:43.000] request: { "command": "geterr", "arguments": { @@ -685,7 +685,7 @@ FsWatchesRecursive:: /user/username/projects/myproject/node_modules: {} -Info 53 [16:01:44.000] response: +Info 53 [00:01:44.000] response: { "responseRequired": false } @@ -725,10 +725,10 @@ FsWatchesRecursive:: /user/username/projects/myproject/node_modules: {} -Info 54 [16:01:45.000] Starting updateGraphWorker: Project: /user/username/projects/myproject/packages/A/tsconfig.json -Info 55 [16:01:46.000] Finishing updateGraphWorker: Project: /user/username/projects/myproject/packages/A/tsconfig.json Version: 2 structureChanged: false structureIsReused:: Completely Elapsed:: *ms -Info 56 [16:01:47.000] Different program with same set of files -Info 57 [16:01:48.000] event: +Info 54 [00:01:45.000] Starting updateGraphWorker: Project: /user/username/projects/myproject/packages/A/tsconfig.json +Info 55 [00:01:46.000] Finishing updateGraphWorker: Project: /user/username/projects/myproject/packages/A/tsconfig.json Version: 2 structureChanged: false structureIsReused:: Completely Elapsed:: *ms +Info 56 [00:01:47.000] Different program with same set of files +Info 57 [00:01:48.000] event: {"seq":0,"type":"event","event":"syntaxDiag","body":{"file":"/user/username/projects/myproject/packages/A/src/index.ts","diagnostics":[]}} After checking timeout queue length (1) and running @@ -802,7 +802,7 @@ FsWatchesRecursive:: /user/username/projects/myproject/node_modules: {} -Info 58 [16:01:49.000] event: +Info 58 [00:01:49.000] event: {"seq":0,"type":"event","event":"semanticDiag","body":{"file":"/user/username/projects/myproject/packages/A/src/index.ts","diagnostics":[]}} Before running immediate callbacks and checking length (1) @@ -876,9 +876,9 @@ FsWatchesRecursive:: /user/username/projects/myproject/node_modules: {} -Info 59 [16:01:50.000] event: +Info 59 [00:01:50.000] event: {"seq":0,"type":"event","event":"suggestionDiag","body":{"file":"/user/username/projects/myproject/packages/A/src/index.ts","diagnostics":[]}} -Info 60 [16:01:51.000] event: +Info 60 [00:01:51.000] event: {"seq":0,"type":"event","event":"requestCompleted","body":{"request_seq":3}} Before running immediate callbacks and checking length (1) 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 f5b59ac0916cb..038473bb0bee9 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 @@ -1,5 +1,5 @@ -Info 0 [16:01:16.000] Provided types map file "/a/lib/typesMap.json" doesn't exist -Info 1 [16:01:17.000] request: +Info 0 [00:01:16.000] Provided types map file "/a/lib/typesMap.json" doesn't exist +Info 1 [00:01:17.000] request: { "seq": 0, "type": "request", @@ -194,13 +194,13 @@ FsWatches:: FsWatchesRecursive:: -Info 2 [16:01:18.000] Search path: /user/username/projects/myproject/packages/A/src -Info 3 [16:01:19.000] For info: /user/username/projects/myproject/packages/A/src/test.ts :: Config file name: /user/username/projects/myproject/packages/A/tsconfig.json -Info 4 [16:01:20.000] Creating configuration project /user/username/projects/myproject/packages/A/tsconfig.json -Info 5 [16:01:21.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/packages/A/tsconfig.json 2000 undefined Project: /user/username/projects/myproject/packages/A/tsconfig.json WatchType: Config file -Info 6 [16:01:22.000] event: +Info 2 [00:01:18.000] Search path: /user/username/projects/myproject/packages/A/src +Info 3 [00:01:19.000] For info: /user/username/projects/myproject/packages/A/src/test.ts :: Config file name: /user/username/projects/myproject/packages/A/tsconfig.json +Info 4 [00:01:20.000] Creating configuration project /user/username/projects/myproject/packages/A/tsconfig.json +Info 5 [00:01:21.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/packages/A/tsconfig.json 2000 undefined Project: /user/username/projects/myproject/packages/A/tsconfig.json WatchType: Config file +Info 6 [00:01:22.000] event: {"seq":0,"type":"event","event":"projectLoadingStart","body":{"projectName":"/user/username/projects/myproject/packages/A/tsconfig.json","reason":"Creating possible configured project for /user/username/projects/myproject/packages/A/src/test.ts to open"}} -Info 7 [16:01:23.000] Config: /user/username/projects/myproject/packages/A/tsconfig.json : { +Info 7 [00:01:23.000] Config: /user/username/projects/myproject/packages/A/tsconfig.json : { "rootNames": [ "/user/username/projects/myproject/packages/A/src/test.ts" ], @@ -218,11 +218,11 @@ Info 7 [16:01:23.000] Config: /user/username/projects/myproject/packages/A/ts } ] } -Info 8 [16:01:24.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/packages/a/src 1 undefined Config: /user/username/projects/myproject/packages/A/tsconfig.json WatchType: Wild card directory -Info 9 [16:01:25.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/packages/a/src 1 undefined Config: /user/username/projects/myproject/packages/A/tsconfig.json WatchType: Wild card directory -Info 10 [16:01:26.000] Plugins were requested but not running in environment that supports 'require'. Nothing will be loaded -Info 11 [16:01:27.000] Starting updateGraphWorker: Project: /user/username/projects/myproject/packages/A/tsconfig.json -Info 12 [16:01:28.000] Config: /user/username/projects/myproject/packages/B/tsconfig.json : { +Info 8 [00:01:24.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/packages/a/src 1 undefined Config: /user/username/projects/myproject/packages/A/tsconfig.json WatchType: Wild card directory +Info 9 [00:01:25.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/packages/a/src 1 undefined Config: /user/username/projects/myproject/packages/A/tsconfig.json WatchType: Wild card directory +Info 10 [00:01:26.000] Plugins were requested but not running in environment that supports 'require'. Nothing will be loaded +Info 11 [00:01:27.000] Starting updateGraphWorker: Project: /user/username/projects/myproject/packages/A/tsconfig.json +Info 12 [00:01:28.000] Config: /user/username/projects/myproject/packages/B/tsconfig.json : { "rootNames": [ "/user/username/projects/myproject/packages/B/src/foo.ts", "/user/username/projects/myproject/packages/B/src/bar/foo.ts" @@ -235,30 +235,30 @@ Info 12 [16:01:28.000] Config: /user/username/projects/myproject/packages/B/ts "configFilePath": "/user/username/projects/myproject/packages/B/tsconfig.json" } } -Info 13 [16:01:29.000] 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 14 [16:01:30.000] 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 15 [16:01:31.000] 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 16 [16:01:32.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/packages/B/src/foo.ts 500 undefined WatchType: Closed Script info -Info 17 [16:01:33.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/packages/B/src/bar/foo.ts 500 undefined WatchType: Closed Script info -Info 18 [16:01:34.000] FileWatcher:: Added:: WatchInfo: /a/lib/lib.d.ts 500 undefined WatchType: Closed Script info -Info 19 [16:01:35.000] 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 20 [16:01:36.000] 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 21 [16:01:37.000] 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 -Info 22 [16:01:38.000] Elapsed:: *ms 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 -Info 23 [16:01:39.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/packages/node_modules 1 undefined Project: /user/username/projects/myproject/packages/A/tsconfig.json WatchType: Failed Lookup Locations -Info 24 [16:01:40.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/packages/node_modules 1 undefined Project: /user/username/projects/myproject/packages/A/tsconfig.json WatchType: Failed Lookup Locations -Info 25 [16:01:41.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules 1 undefined Project: /user/username/projects/myproject/packages/A/tsconfig.json WatchType: Failed Lookup Locations -Info 26 [16:01:42.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules 1 undefined Project: /user/username/projects/myproject/packages/A/tsconfig.json WatchType: Failed Lookup Locations -Info 27 [16:01:43.000] 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 28 [16:01:44.000] 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 29 [16:01:45.000] 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 30 [16:01:46.000] 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 -Info 31 [16:01:47.000] Elapsed:: *ms 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 -Info 32 [16:01:48.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/packages/A/tsconfig.json WatchType: Type roots -Info 33 [16:01:49.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/packages/A/tsconfig.json WatchType: Type roots -Info 34 [16:01:50.000] Finishing updateGraphWorker: Project: /user/username/projects/myproject/packages/A/tsconfig.json Version: 1 structureChanged: true structureIsReused:: Not Elapsed:: *ms -Info 35 [16:01:51.000] Project '/user/username/projects/myproject/packages/A/tsconfig.json' (Configured) -Info 36 [16:01:52.000] Files (4) +Info 13 [00:01:29.000] 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 14 [00:01:30.000] 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 15 [00:01:31.000] 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 16 [00:01:32.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/packages/B/src/foo.ts 500 undefined WatchType: Closed Script info +Info 17 [00:01:33.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/packages/B/src/bar/foo.ts 500 undefined WatchType: Closed Script info +Info 18 [00:01:34.000] FileWatcher:: Added:: WatchInfo: /a/lib/lib.d.ts 500 undefined WatchType: Closed Script info +Info 19 [00:01:35.000] 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 20 [00:01:36.000] 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 21 [00:01:37.000] 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 +Info 22 [00:01:38.000] Elapsed:: *ms 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 +Info 23 [00:01:39.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/packages/node_modules 1 undefined Project: /user/username/projects/myproject/packages/A/tsconfig.json WatchType: Failed Lookup Locations +Info 24 [00:01:40.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/packages/node_modules 1 undefined Project: /user/username/projects/myproject/packages/A/tsconfig.json WatchType: Failed Lookup Locations +Info 25 [00:01:41.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules 1 undefined Project: /user/username/projects/myproject/packages/A/tsconfig.json WatchType: Failed Lookup Locations +Info 26 [00:01:42.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules 1 undefined Project: /user/username/projects/myproject/packages/A/tsconfig.json WatchType: Failed Lookup Locations +Info 27 [00:01:43.000] 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 28 [00:01:44.000] 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 29 [00:01:45.000] 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 30 [00:01:46.000] 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 +Info 31 [00:01:47.000] Elapsed:: *ms 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 +Info 32 [00:01:48.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/packages/A/tsconfig.json WatchType: Type roots +Info 33 [00:01:49.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/packages/A/tsconfig.json WatchType: Type roots +Info 34 [00:01:50.000] Finishing updateGraphWorker: Project: /user/username/projects/myproject/packages/A/tsconfig.json Version: 1 structureChanged: true structureIsReused:: Not Elapsed:: *ms +Info 35 [00:01:51.000] Project '/user/username/projects/myproject/packages/A/tsconfig.json' (Configured) +Info 36 [00:01:52.000] Files (4) /a/lib/lib.d.ts /user/username/projects/myproject/packages/B/src/foo.ts /user/username/projects/myproject/packages/B/src/bar/foo.ts @@ -274,22 +274,22 @@ Info 36 [16:01:52.000] Files (4) src/test.ts Matched by include pattern 'src' in 'tsconfig.json' -Info 37 [16:01:53.000] ----------------------------------------------- -Info 38 [16:01:54.000] event: +Info 37 [00:01:53.000] ----------------------------------------------- +Info 38 [00:01:54.000] event: {"seq":0,"type":"event","event":"projectLoadingFinish","body":{"projectName":"/user/username/projects/myproject/packages/A/tsconfig.json"}} -Info 39 [16:01:55.000] event: +Info 39 [00:01:55.000] event: {"seq":0,"type":"event","event":"telemetry","body":{"telemetryEventName":"projectInfo","payload":{"projectId":"8c5cfb88fb6a6125ddaca4c198af63d261c8feb2786e348cbf3223fcf8461e16","fileStats":{"js":0,"jsSize":0,"jsx":0,"jsxSize":0,"ts":3,"tsSize":134,"tsx":0,"tsxSize":0,"dts":1,"dtsSize":334,"deferred":0,"deferredSize":0},"compilerOptions":{"outDir":"","rootDir":"","composite":true,"preserveSymlinks":true},"typeAcquisition":{"enable":false,"include":false,"exclude":false},"extends":false,"files":false,"include":true,"exclude":false,"compileOnSave":false,"configFileName":"tsconfig.json","projectType":"configured","languageServiceEnabled":true,"version":"FakeVersion"}}} -Info 40 [16:01:56.000] event: +Info 40 [00:01:56.000] event: {"seq":0,"type":"event","event":"configFileDiag","body":{"triggerFile":"/user/username/projects/myproject/packages/A/src/test.ts","configFile":"/user/username/projects/myproject/packages/A/tsconfig.json","diagnostics":[]}} -Info 41 [16:01:57.000] Search path: /user/username/projects/myproject/packages/A -Info 42 [16:01:58.000] For info: /user/username/projects/myproject/packages/A/tsconfig.json :: No config files found. -Info 43 [16:01:59.000] Project '/user/username/projects/myproject/packages/A/tsconfig.json' (Configured) -Info 43 [16:02:00.000] Files (4) - -Info 43 [16:02:01.000] ----------------------------------------------- -Info 43 [16:02:02.000] Open files: -Info 43 [16:02:03.000] FileName: /user/username/projects/myproject/packages/A/src/test.ts ProjectRootPath: undefined -Info 43 [16:02:04.000] Projects: /user/username/projects/myproject/packages/A/tsconfig.json +Info 41 [00:01:57.000] Search path: /user/username/projects/myproject/packages/A +Info 42 [00:01:58.000] For info: /user/username/projects/myproject/packages/A/tsconfig.json :: No config files found. +Info 43 [00:01:59.000] Project '/user/username/projects/myproject/packages/A/tsconfig.json' (Configured) +Info 43 [00:02:00.000] Files (4) + +Info 43 [00:02:01.000] ----------------------------------------------- +Info 43 [00:02:02.000] Open files: +Info 43 [00:02:03.000] FileName: /user/username/projects/myproject/packages/A/src/test.ts ProjectRootPath: undefined +Info 43 [00:02:04.000] Projects: /user/username/projects/myproject/packages/A/tsconfig.json After request PolledWatches:: @@ -326,11 +326,11 @@ FsWatchesRecursive:: /user/username/projects/myproject/node_modules: {} -Info 43 [16:02:05.000] response: +Info 43 [00:02:05.000] response: { "responseRequired": false } -Info 44 [16:02:06.000] request: +Info 44 [00:02:06.000] request: { "command": "geterr", "arguments": { @@ -414,7 +414,7 @@ FsWatchesRecursive:: /user/username/projects/myproject/node_modules: {} -Info 45 [16:02:07.000] response: +Info 45 [00:02:07.000] response: { "responseRequired": false } @@ -454,7 +454,7 @@ FsWatchesRecursive:: /user/username/projects/myproject/node_modules: {} -Info 46 [16:02:08.000] event: +Info 46 [00:02:08.000] event: {"seq":0,"type":"event","event":"syntaxDiag","body":{"file":"/user/username/projects/myproject/packages/A/src/test.ts","diagnostics":[]}} After checking timeout queue length (1) and running @@ -528,7 +528,7 @@ FsWatchesRecursive:: /user/username/projects/myproject/node_modules: {} -Info 47 [16:02:09.000] event: +Info 47 [00:02:09.000] event: {"seq":0,"type":"event","event":"semanticDiag","body":{"file":"/user/username/projects/myproject/packages/A/src/test.ts","diagnostics":[]}} Before running immediate callbacks and checking length (1) @@ -602,9 +602,9 @@ FsWatchesRecursive:: /user/username/projects/myproject/node_modules: {} -Info 48 [16:02:10.000] event: +Info 48 [00:02:10.000] event: {"seq":0,"type":"event","event":"suggestionDiag","body":{"file":"/user/username/projects/myproject/packages/A/src/test.ts","diagnostics":[]}} -Info 49 [16:02:11.000] event: +Info 49 [00:02:11.000] event: {"seq":0,"type":"event","event":"requestCompleted","body":{"request_seq":1}} Before running immediate callbacks and checking length (1) @@ -642,7 +642,7 @@ FsWatchesRecursive:: /user/username/projects/myproject/node_modules: {} -Info 50 [16:02:12.000] request: +Info 50 [00:02:12.000] request: { "command": "updateOpen", "arguments": { @@ -740,12 +740,12 @@ FsWatchesRecursive:: /user/username/projects/myproject/node_modules: {} -Info 51 [16:02:13.000] response: +Info 51 [00:02:13.000] response: { "response": true, "responseRequired": true } -Info 52 [16:02:14.000] request: +Info 52 [00:02:14.000] request: { "command": "geterr", "arguments": { @@ -829,7 +829,7 @@ FsWatchesRecursive:: /user/username/projects/myproject/node_modules: {} -Info 53 [16:02:15.000] response: +Info 53 [00:02:15.000] response: { "responseRequired": false } @@ -869,10 +869,10 @@ FsWatchesRecursive:: /user/username/projects/myproject/node_modules: {} -Info 54 [16:02:16.000] Starting updateGraphWorker: Project: /user/username/projects/myproject/packages/A/tsconfig.json -Info 55 [16:02:17.000] Finishing updateGraphWorker: Project: /user/username/projects/myproject/packages/A/tsconfig.json Version: 2 structureChanged: false structureIsReused:: Completely Elapsed:: *ms -Info 56 [16:02:18.000] Different program with same set of files -Info 57 [16:02:19.000] event: +Info 54 [00:02:16.000] Starting updateGraphWorker: Project: /user/username/projects/myproject/packages/A/tsconfig.json +Info 55 [00:02:17.000] Finishing updateGraphWorker: Project: /user/username/projects/myproject/packages/A/tsconfig.json Version: 2 structureChanged: false structureIsReused:: Completely Elapsed:: *ms +Info 56 [00:02:18.000] Different program with same set of files +Info 57 [00:02:19.000] event: {"seq":0,"type":"event","event":"syntaxDiag","body":{"file":"/user/username/projects/myproject/packages/A/src/test.ts","diagnostics":[]}} After checking timeout queue length (1) and running @@ -946,7 +946,7 @@ FsWatchesRecursive:: /user/username/projects/myproject/node_modules: {} -Info 58 [16:02:20.000] event: +Info 58 [00:02:20.000] event: {"seq":0,"type":"event","event":"semanticDiag","body":{"file":"/user/username/projects/myproject/packages/A/src/test.ts","diagnostics":[]}} Before running immediate callbacks and checking length (1) @@ -1020,9 +1020,9 @@ FsWatchesRecursive:: /user/username/projects/myproject/node_modules: {} -Info 59 [16:02:21.000] event: +Info 59 [00:02:21.000] event: {"seq":0,"type":"event","event":"suggestionDiag","body":{"file":"/user/username/projects/myproject/packages/A/src/test.ts","diagnostics":[]}} -Info 60 [16:02:22.000] event: +Info 60 [00:02:22.000] event: {"seq":0,"type":"event","event":"requestCompleted","body":{"request_seq":3}} Before running immediate callbacks and checking length (1) 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 9226a7f9e4a19..626f273cccace 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 @@ -1,5 +1,5 @@ -Info 0 [16:01:16.000] Provided types map file "/a/lib/typesMap.json" doesn't exist -Info 1 [16:01:17.000] request: +Info 0 [00:01:16.000] Provided types map file "/a/lib/typesMap.json" doesn't exist +Info 1 [00:01:17.000] request: { "seq": 0, "type": "request", @@ -194,13 +194,13 @@ FsWatches:: FsWatchesRecursive:: -Info 2 [16:01:18.000] Search path: /user/username/projects/myproject/packages/A/src -Info 3 [16:01:19.000] For info: /user/username/projects/myproject/packages/A/src/test.ts :: Config file name: /user/username/projects/myproject/packages/A/tsconfig.json -Info 4 [16:01:20.000] Creating configuration project /user/username/projects/myproject/packages/A/tsconfig.json -Info 5 [16:01:21.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/packages/A/tsconfig.json 2000 undefined Project: /user/username/projects/myproject/packages/A/tsconfig.json WatchType: Config file -Info 6 [16:01:22.000] event: +Info 2 [00:01:18.000] Search path: /user/username/projects/myproject/packages/A/src +Info 3 [00:01:19.000] For info: /user/username/projects/myproject/packages/A/src/test.ts :: Config file name: /user/username/projects/myproject/packages/A/tsconfig.json +Info 4 [00:01:20.000] Creating configuration project /user/username/projects/myproject/packages/A/tsconfig.json +Info 5 [00:01:21.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/packages/A/tsconfig.json 2000 undefined Project: /user/username/projects/myproject/packages/A/tsconfig.json WatchType: Config file +Info 6 [00:01:22.000] event: {"seq":0,"type":"event","event":"projectLoadingStart","body":{"projectName":"/user/username/projects/myproject/packages/A/tsconfig.json","reason":"Creating possible configured project for /user/username/projects/myproject/packages/A/src/test.ts to open"}} -Info 7 [16:01:23.000] Config: /user/username/projects/myproject/packages/A/tsconfig.json : { +Info 7 [00:01:23.000] Config: /user/username/projects/myproject/packages/A/tsconfig.json : { "rootNames": [ "/user/username/projects/myproject/packages/A/src/test.ts" ], @@ -217,11 +217,11 @@ Info 7 [16:01:23.000] Config: /user/username/projects/myproject/packages/A/ts } ] } -Info 8 [16:01:24.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/packages/a/src 1 undefined Config: /user/username/projects/myproject/packages/A/tsconfig.json WatchType: Wild card directory -Info 9 [16:01:25.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/packages/a/src 1 undefined Config: /user/username/projects/myproject/packages/A/tsconfig.json WatchType: Wild card directory -Info 10 [16:01:26.000] Plugins were requested but not running in environment that supports 'require'. Nothing will be loaded -Info 11 [16:01:27.000] Starting updateGraphWorker: Project: /user/username/projects/myproject/packages/A/tsconfig.json -Info 12 [16:01:28.000] Config: /user/username/projects/myproject/packages/B/tsconfig.json : { +Info 8 [00:01:24.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/packages/a/src 1 undefined Config: /user/username/projects/myproject/packages/A/tsconfig.json WatchType: Wild card directory +Info 9 [00:01:25.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/packages/a/src 1 undefined Config: /user/username/projects/myproject/packages/A/tsconfig.json WatchType: Wild card directory +Info 10 [00:01:26.000] Plugins were requested but not running in environment that supports 'require'. Nothing will be loaded +Info 11 [00:01:27.000] Starting updateGraphWorker: Project: /user/username/projects/myproject/packages/A/tsconfig.json +Info 12 [00:01:28.000] Config: /user/username/projects/myproject/packages/B/tsconfig.json : { "rootNames": [ "/user/username/projects/myproject/packages/B/src/foo.ts", "/user/username/projects/myproject/packages/B/src/bar/foo.ts" @@ -233,30 +233,30 @@ Info 12 [16:01:28.000] Config: /user/username/projects/myproject/packages/B/ts "configFilePath": "/user/username/projects/myproject/packages/B/tsconfig.json" } } -Info 13 [16:01:29.000] 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 14 [16:01:30.000] 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 15 [16:01:31.000] 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 16 [16:01:32.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/packages/B/src/foo.ts 500 undefined WatchType: Closed Script info -Info 17 [16:01:33.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/packages/B/src/bar/foo.ts 500 undefined WatchType: Closed Script info -Info 18 [16:01:34.000] FileWatcher:: Added:: WatchInfo: /a/lib/lib.d.ts 500 undefined WatchType: Closed Script info -Info 19 [16:01:35.000] 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 20 [16:01:36.000] 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 21 [16:01:37.000] 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 -Info 22 [16:01:38.000] Elapsed:: *ms 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 -Info 23 [16:01:39.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/packages/node_modules 1 undefined Project: /user/username/projects/myproject/packages/A/tsconfig.json WatchType: Failed Lookup Locations -Info 24 [16:01:40.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/packages/node_modules 1 undefined Project: /user/username/projects/myproject/packages/A/tsconfig.json WatchType: Failed Lookup Locations -Info 25 [16:01:41.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules 1 undefined Project: /user/username/projects/myproject/packages/A/tsconfig.json WatchType: Failed Lookup Locations -Info 26 [16:01:42.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules 1 undefined Project: /user/username/projects/myproject/packages/A/tsconfig.json WatchType: Failed Lookup Locations -Info 27 [16:01:43.000] 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 28 [16:01:44.000] 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 29 [16:01:45.000] 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 30 [16:01:46.000] 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 -Info 31 [16:01:47.000] Elapsed:: *ms 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 -Info 32 [16:01:48.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/packages/A/tsconfig.json WatchType: Type roots -Info 33 [16:01:49.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/packages/A/tsconfig.json WatchType: Type roots -Info 34 [16:01:50.000] Finishing updateGraphWorker: Project: /user/username/projects/myproject/packages/A/tsconfig.json Version: 1 structureChanged: true structureIsReused:: Not Elapsed:: *ms -Info 35 [16:01:51.000] Project '/user/username/projects/myproject/packages/A/tsconfig.json' (Configured) -Info 36 [16:01:52.000] Files (4) +Info 13 [00:01:29.000] 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 14 [00:01:30.000] 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 15 [00:01:31.000] 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 16 [00:01:32.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/packages/B/src/foo.ts 500 undefined WatchType: Closed Script info +Info 17 [00:01:33.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/packages/B/src/bar/foo.ts 500 undefined WatchType: Closed Script info +Info 18 [00:01:34.000] FileWatcher:: Added:: WatchInfo: /a/lib/lib.d.ts 500 undefined WatchType: Closed Script info +Info 19 [00:01:35.000] 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 20 [00:01:36.000] 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 21 [00:01:37.000] 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 +Info 22 [00:01:38.000] Elapsed:: *ms 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 +Info 23 [00:01:39.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/packages/node_modules 1 undefined Project: /user/username/projects/myproject/packages/A/tsconfig.json WatchType: Failed Lookup Locations +Info 24 [00:01:40.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/packages/node_modules 1 undefined Project: /user/username/projects/myproject/packages/A/tsconfig.json WatchType: Failed Lookup Locations +Info 25 [00:01:41.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules 1 undefined Project: /user/username/projects/myproject/packages/A/tsconfig.json WatchType: Failed Lookup Locations +Info 26 [00:01:42.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules 1 undefined Project: /user/username/projects/myproject/packages/A/tsconfig.json WatchType: Failed Lookup Locations +Info 27 [00:01:43.000] 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 28 [00:01:44.000] 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 29 [00:01:45.000] 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 30 [00:01:46.000] 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 +Info 31 [00:01:47.000] Elapsed:: *ms 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 +Info 32 [00:01:48.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/packages/A/tsconfig.json WatchType: Type roots +Info 33 [00:01:49.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/packages/A/tsconfig.json WatchType: Type roots +Info 34 [00:01:50.000] Finishing updateGraphWorker: Project: /user/username/projects/myproject/packages/A/tsconfig.json Version: 1 structureChanged: true structureIsReused:: Not Elapsed:: *ms +Info 35 [00:01:51.000] Project '/user/username/projects/myproject/packages/A/tsconfig.json' (Configured) +Info 36 [00:01:52.000] Files (4) /a/lib/lib.d.ts /user/username/projects/myproject/packages/B/src/foo.ts /user/username/projects/myproject/packages/B/src/bar/foo.ts @@ -272,22 +272,22 @@ Info 36 [16:01:52.000] Files (4) src/test.ts Matched by include pattern 'src' in 'tsconfig.json' -Info 37 [16:01:53.000] ----------------------------------------------- -Info 38 [16:01:54.000] event: +Info 37 [00:01:53.000] ----------------------------------------------- +Info 38 [00:01:54.000] event: {"seq":0,"type":"event","event":"projectLoadingFinish","body":{"projectName":"/user/username/projects/myproject/packages/A/tsconfig.json"}} -Info 39 [16:01:55.000] event: +Info 39 [00:01:55.000] event: {"seq":0,"type":"event","event":"telemetry","body":{"telemetryEventName":"projectInfo","payload":{"projectId":"8c5cfb88fb6a6125ddaca4c198af63d261c8feb2786e348cbf3223fcf8461e16","fileStats":{"js":0,"jsSize":0,"jsx":0,"jsxSize":0,"ts":3,"tsSize":134,"tsx":0,"tsxSize":0,"dts":1,"dtsSize":334,"deferred":0,"deferredSize":0},"compilerOptions":{"outDir":"","rootDir":"","composite":true},"typeAcquisition":{"enable":false,"include":false,"exclude":false},"extends":false,"files":false,"include":true,"exclude":false,"compileOnSave":false,"configFileName":"tsconfig.json","projectType":"configured","languageServiceEnabled":true,"version":"FakeVersion"}}} -Info 40 [16:01:56.000] event: +Info 40 [00:01:56.000] event: {"seq":0,"type":"event","event":"configFileDiag","body":{"triggerFile":"/user/username/projects/myproject/packages/A/src/test.ts","configFile":"/user/username/projects/myproject/packages/A/tsconfig.json","diagnostics":[]}} -Info 41 [16:01:57.000] Search path: /user/username/projects/myproject/packages/A -Info 42 [16:01:58.000] For info: /user/username/projects/myproject/packages/A/tsconfig.json :: No config files found. -Info 43 [16:01:59.000] Project '/user/username/projects/myproject/packages/A/tsconfig.json' (Configured) -Info 43 [16:02:00.000] Files (4) - -Info 43 [16:02:01.000] ----------------------------------------------- -Info 43 [16:02:02.000] Open files: -Info 43 [16:02:03.000] FileName: /user/username/projects/myproject/packages/A/src/test.ts ProjectRootPath: undefined -Info 43 [16:02:04.000] Projects: /user/username/projects/myproject/packages/A/tsconfig.json +Info 41 [00:01:57.000] Search path: /user/username/projects/myproject/packages/A +Info 42 [00:01:58.000] For info: /user/username/projects/myproject/packages/A/tsconfig.json :: No config files found. +Info 43 [00:01:59.000] Project '/user/username/projects/myproject/packages/A/tsconfig.json' (Configured) +Info 43 [00:02:00.000] Files (4) + +Info 43 [00:02:01.000] ----------------------------------------------- +Info 43 [00:02:02.000] Open files: +Info 43 [00:02:03.000] FileName: /user/username/projects/myproject/packages/A/src/test.ts ProjectRootPath: undefined +Info 43 [00:02:04.000] Projects: /user/username/projects/myproject/packages/A/tsconfig.json After request PolledWatches:: @@ -324,11 +324,11 @@ FsWatchesRecursive:: /user/username/projects/myproject/node_modules: {} -Info 43 [16:02:05.000] response: +Info 43 [00:02:05.000] response: { "responseRequired": false } -Info 44 [16:02:06.000] request: +Info 44 [00:02:06.000] request: { "command": "geterr", "arguments": { @@ -412,7 +412,7 @@ FsWatchesRecursive:: /user/username/projects/myproject/node_modules: {} -Info 45 [16:02:07.000] response: +Info 45 [00:02:07.000] response: { "responseRequired": false } @@ -452,7 +452,7 @@ FsWatchesRecursive:: /user/username/projects/myproject/node_modules: {} -Info 46 [16:02:08.000] event: +Info 46 [00:02:08.000] event: {"seq":0,"type":"event","event":"syntaxDiag","body":{"file":"/user/username/projects/myproject/packages/A/src/test.ts","diagnostics":[]}} After checking timeout queue length (1) and running @@ -526,7 +526,7 @@ FsWatchesRecursive:: /user/username/projects/myproject/node_modules: {} -Info 47 [16:02:09.000] event: +Info 47 [00:02:09.000] event: {"seq":0,"type":"event","event":"semanticDiag","body":{"file":"/user/username/projects/myproject/packages/A/src/test.ts","diagnostics":[]}} Before running immediate callbacks and checking length (1) @@ -600,9 +600,9 @@ FsWatchesRecursive:: /user/username/projects/myproject/node_modules: {} -Info 48 [16:02:10.000] event: +Info 48 [00:02:10.000] event: {"seq":0,"type":"event","event":"suggestionDiag","body":{"file":"/user/username/projects/myproject/packages/A/src/test.ts","diagnostics":[]}} -Info 49 [16:02:11.000] event: +Info 49 [00:02:11.000] event: {"seq":0,"type":"event","event":"requestCompleted","body":{"request_seq":1}} Before running immediate callbacks and checking length (1) @@ -640,7 +640,7 @@ FsWatchesRecursive:: /user/username/projects/myproject/node_modules: {} -Info 50 [16:02:12.000] request: +Info 50 [00:02:12.000] request: { "command": "updateOpen", "arguments": { @@ -738,12 +738,12 @@ FsWatchesRecursive:: /user/username/projects/myproject/node_modules: {} -Info 51 [16:02:13.000] response: +Info 51 [00:02:13.000] response: { "response": true, "responseRequired": true } -Info 52 [16:02:14.000] request: +Info 52 [00:02:14.000] request: { "command": "geterr", "arguments": { @@ -827,7 +827,7 @@ FsWatchesRecursive:: /user/username/projects/myproject/node_modules: {} -Info 53 [16:02:15.000] response: +Info 53 [00:02:15.000] response: { "responseRequired": false } @@ -867,10 +867,10 @@ FsWatchesRecursive:: /user/username/projects/myproject/node_modules: {} -Info 54 [16:02:16.000] Starting updateGraphWorker: Project: /user/username/projects/myproject/packages/A/tsconfig.json -Info 55 [16:02:17.000] Finishing updateGraphWorker: Project: /user/username/projects/myproject/packages/A/tsconfig.json Version: 2 structureChanged: false structureIsReused:: Completely Elapsed:: *ms -Info 56 [16:02:18.000] Different program with same set of files -Info 57 [16:02:19.000] event: +Info 54 [00:02:16.000] Starting updateGraphWorker: Project: /user/username/projects/myproject/packages/A/tsconfig.json +Info 55 [00:02:17.000] Finishing updateGraphWorker: Project: /user/username/projects/myproject/packages/A/tsconfig.json Version: 2 structureChanged: false structureIsReused:: Completely Elapsed:: *ms +Info 56 [00:02:18.000] Different program with same set of files +Info 57 [00:02:19.000] event: {"seq":0,"type":"event","event":"syntaxDiag","body":{"file":"/user/username/projects/myproject/packages/A/src/test.ts","diagnostics":[]}} After checking timeout queue length (1) and running @@ -944,7 +944,7 @@ FsWatchesRecursive:: /user/username/projects/myproject/node_modules: {} -Info 58 [16:02:20.000] event: +Info 58 [00:02:20.000] event: {"seq":0,"type":"event","event":"semanticDiag","body":{"file":"/user/username/projects/myproject/packages/A/src/test.ts","diagnostics":[]}} Before running immediate callbacks and checking length (1) @@ -1018,9 +1018,9 @@ FsWatchesRecursive:: /user/username/projects/myproject/node_modules: {} -Info 59 [16:02:21.000] event: +Info 59 [00:02:21.000] event: {"seq":0,"type":"event","event":"suggestionDiag","body":{"file":"/user/username/projects/myproject/packages/A/src/test.ts","diagnostics":[]}} -Info 60 [16:02:22.000] event: +Info 60 [00:02:22.000] event: {"seq":0,"type":"event","event":"requestCompleted","body":{"request_seq":3}} Before running immediate callbacks and checking length (1) 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 dde50027ad82c..48cc83b34601a 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 @@ -1,5 +1,5 @@ -Info 0 [16:00:45.000] Provided types map file "/a/lib/typesMap.json" doesn't exist -Info 1 [16:00:46.000] request: +Info 0 [00:00:45.000] Provided types map file "/a/lib/typesMap.json" doesn't exist +Info 1 [00:00:46.000] request: { "seq": 0, "type": "request", @@ -52,13 +52,13 @@ FsWatches:: FsWatchesRecursive:: -Info 2 [16:00:47.000] Search path: /user/username/projects/myproject/packages/A/src -Info 3 [16:00:48.000] For info: /user/username/projects/myproject/packages/A/src/test.ts :: Config file name: /user/username/projects/myproject/packages/A/tsconfig.json -Info 4 [16:00:49.000] Creating configuration project /user/username/projects/myproject/packages/A/tsconfig.json -Info 5 [16:00:50.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/packages/A/tsconfig.json 2000 undefined Project: /user/username/projects/myproject/packages/A/tsconfig.json WatchType: Config file -Info 6 [16:00:51.000] event: +Info 2 [00:00:47.000] Search path: /user/username/projects/myproject/packages/A/src +Info 3 [00:00:48.000] For info: /user/username/projects/myproject/packages/A/src/test.ts :: Config file name: /user/username/projects/myproject/packages/A/tsconfig.json +Info 4 [00:00:49.000] Creating configuration project /user/username/projects/myproject/packages/A/tsconfig.json +Info 5 [00:00:50.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/packages/A/tsconfig.json 2000 undefined Project: /user/username/projects/myproject/packages/A/tsconfig.json WatchType: Config file +Info 6 [00:00:51.000] event: {"seq":0,"type":"event","event":"projectLoadingStart","body":{"projectName":"/user/username/projects/myproject/packages/A/tsconfig.json","reason":"Creating possible configured project for /user/username/projects/myproject/packages/A/src/test.ts to open"}} -Info 7 [16:00:52.000] Config: /user/username/projects/myproject/packages/A/tsconfig.json : { +Info 7 [00:00:52.000] Config: /user/username/projects/myproject/packages/A/tsconfig.json : { "rootNames": [ "/user/username/projects/myproject/packages/A/src/test.ts" ], @@ -76,11 +76,11 @@ Info 7 [16:00:52.000] Config: /user/username/projects/myproject/packages/A/ts } ] } -Info 8 [16:00:53.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/packages/a/src 1 undefined Config: /user/username/projects/myproject/packages/A/tsconfig.json WatchType: Wild card directory -Info 9 [16:00:54.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/packages/a/src 1 undefined Config: /user/username/projects/myproject/packages/A/tsconfig.json WatchType: Wild card directory -Info 10 [16:00:55.000] Plugins were requested but not running in environment that supports 'require'. Nothing will be loaded -Info 11 [16:00:56.000] Starting updateGraphWorker: Project: /user/username/projects/myproject/packages/A/tsconfig.json -Info 12 [16:00:57.000] Config: /user/username/projects/myproject/packages/B/tsconfig.json : { +Info 8 [00:00:53.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/packages/a/src 1 undefined Config: /user/username/projects/myproject/packages/A/tsconfig.json WatchType: Wild card directory +Info 9 [00:00:54.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/packages/a/src 1 undefined Config: /user/username/projects/myproject/packages/A/tsconfig.json WatchType: Wild card directory +Info 10 [00:00:55.000] Plugins were requested but not running in environment that supports 'require'. Nothing will be loaded +Info 11 [00:00:56.000] Starting updateGraphWorker: Project: /user/username/projects/myproject/packages/A/tsconfig.json +Info 12 [00:00:57.000] Config: /user/username/projects/myproject/packages/B/tsconfig.json : { "rootNames": [ "/user/username/projects/myproject/packages/B/src/foo.ts", "/user/username/projects/myproject/packages/B/src/bar/foo.ts" @@ -93,30 +93,30 @@ Info 12 [16:00:57.000] Config: /user/username/projects/myproject/packages/B/ts "configFilePath": "/user/username/projects/myproject/packages/B/tsconfig.json" } } -Info 13 [16:00:58.000] 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 14 [16:00:59.000] 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 15 [16:01:00.000] 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 16 [16:01:01.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/packages/B/src/foo.ts 500 undefined WatchType: Closed Script info -Info 17 [16:01:02.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/packages/B/src/bar/foo.ts 500 undefined WatchType: Closed Script info -Info 18 [16:01:03.000] FileWatcher:: Added:: WatchInfo: /a/lib/lib.d.ts 500 undefined WatchType: Closed Script info -Info 19 [16:01:04.000] 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 20 [16:01:05.000] 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 21 [16:01:06.000] 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 -Info 22 [16:01:07.000] Elapsed:: *ms 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 -Info 23 [16:01:08.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/packages/node_modules 1 undefined Project: /user/username/projects/myproject/packages/A/tsconfig.json WatchType: Failed Lookup Locations -Info 24 [16:01:09.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/packages/node_modules 1 undefined Project: /user/username/projects/myproject/packages/A/tsconfig.json WatchType: Failed Lookup Locations -Info 25 [16:01:10.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules 1 undefined Project: /user/username/projects/myproject/packages/A/tsconfig.json WatchType: Failed Lookup Locations -Info 26 [16:01:11.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules 1 undefined Project: /user/username/projects/myproject/packages/A/tsconfig.json WatchType: Failed Lookup Locations -Info 27 [16:01:12.000] 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 28 [16:01:13.000] 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 29 [16:01:14.000] 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 30 [16:01:15.000] 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 -Info 31 [16:01:16.000] Elapsed:: *ms 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 -Info 32 [16:01:17.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/packages/A/tsconfig.json WatchType: Type roots -Info 33 [16:01:18.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/packages/A/tsconfig.json WatchType: Type roots -Info 34 [16:01:19.000] Finishing updateGraphWorker: Project: /user/username/projects/myproject/packages/A/tsconfig.json Version: 1 structureChanged: true structureIsReused:: Not Elapsed:: *ms -Info 35 [16:01:20.000] Project '/user/username/projects/myproject/packages/A/tsconfig.json' (Configured) -Info 36 [16:01:21.000] Files (4) +Info 13 [00:00:58.000] 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 14 [00:00:59.000] 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 15 [00:01:00.000] 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 16 [00:01:01.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/packages/B/src/foo.ts 500 undefined WatchType: Closed Script info +Info 17 [00:01:02.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/packages/B/src/bar/foo.ts 500 undefined WatchType: Closed Script info +Info 18 [00:01:03.000] FileWatcher:: Added:: WatchInfo: /a/lib/lib.d.ts 500 undefined WatchType: Closed Script info +Info 19 [00:01:04.000] 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 20 [00:01:05.000] 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 21 [00:01:06.000] 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 +Info 22 [00:01:07.000] Elapsed:: *ms 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 +Info 23 [00:01:08.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/packages/node_modules 1 undefined Project: /user/username/projects/myproject/packages/A/tsconfig.json WatchType: Failed Lookup Locations +Info 24 [00:01:09.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/packages/node_modules 1 undefined Project: /user/username/projects/myproject/packages/A/tsconfig.json WatchType: Failed Lookup Locations +Info 25 [00:01:10.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules 1 undefined Project: /user/username/projects/myproject/packages/A/tsconfig.json WatchType: Failed Lookup Locations +Info 26 [00:01:11.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules 1 undefined Project: /user/username/projects/myproject/packages/A/tsconfig.json WatchType: Failed Lookup Locations +Info 27 [00:01:12.000] 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 28 [00:01:13.000] 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 29 [00:01:14.000] 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 30 [00:01:15.000] 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 +Info 31 [00:01:16.000] Elapsed:: *ms 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 +Info 32 [00:01:17.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/packages/A/tsconfig.json WatchType: Type roots +Info 33 [00:01:18.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/packages/A/tsconfig.json WatchType: Type roots +Info 34 [00:01:19.000] Finishing updateGraphWorker: Project: /user/username/projects/myproject/packages/A/tsconfig.json Version: 1 structureChanged: true structureIsReused:: Not Elapsed:: *ms +Info 35 [00:01:20.000] Project '/user/username/projects/myproject/packages/A/tsconfig.json' (Configured) +Info 36 [00:01:21.000] Files (4) /a/lib/lib.d.ts /user/username/projects/myproject/packages/B/src/foo.ts /user/username/projects/myproject/packages/B/src/bar/foo.ts @@ -132,22 +132,22 @@ Info 36 [16:01:21.000] Files (4) src/test.ts Matched by include pattern 'src' in 'tsconfig.json' -Info 37 [16:01:22.000] ----------------------------------------------- -Info 38 [16:01:23.000] event: +Info 37 [00:01:22.000] ----------------------------------------------- +Info 38 [00:01:23.000] event: {"seq":0,"type":"event","event":"projectLoadingFinish","body":{"projectName":"/user/username/projects/myproject/packages/A/tsconfig.json"}} -Info 39 [16:01:24.000] event: +Info 39 [00:01:24.000] event: {"seq":0,"type":"event","event":"telemetry","body":{"telemetryEventName":"projectInfo","payload":{"projectId":"8c5cfb88fb6a6125ddaca4c198af63d261c8feb2786e348cbf3223fcf8461e16","fileStats":{"js":0,"jsSize":0,"jsx":0,"jsxSize":0,"ts":3,"tsSize":134,"tsx":0,"tsxSize":0,"dts":1,"dtsSize":334,"deferred":0,"deferredSize":0},"compilerOptions":{"outDir":"","rootDir":"","composite":true,"preserveSymlinks":true},"typeAcquisition":{"enable":false,"include":false,"exclude":false},"extends":false,"files":false,"include":true,"exclude":false,"compileOnSave":false,"configFileName":"tsconfig.json","projectType":"configured","languageServiceEnabled":true,"version":"FakeVersion"}}} -Info 40 [16:01:25.000] event: +Info 40 [00:01:25.000] event: {"seq":0,"type":"event","event":"configFileDiag","body":{"triggerFile":"/user/username/projects/myproject/packages/A/src/test.ts","configFile":"/user/username/projects/myproject/packages/A/tsconfig.json","diagnostics":[]}} -Info 41 [16:01:26.000] Search path: /user/username/projects/myproject/packages/A -Info 42 [16:01:27.000] For info: /user/username/projects/myproject/packages/A/tsconfig.json :: No config files found. -Info 43 [16:01:28.000] Project '/user/username/projects/myproject/packages/A/tsconfig.json' (Configured) -Info 43 [16:01:29.000] Files (4) - -Info 43 [16:01:30.000] ----------------------------------------------- -Info 43 [16:01:31.000] Open files: -Info 43 [16:01:32.000] FileName: /user/username/projects/myproject/packages/A/src/test.ts ProjectRootPath: undefined -Info 43 [16:01:33.000] Projects: /user/username/projects/myproject/packages/A/tsconfig.json +Info 41 [00:01:26.000] Search path: /user/username/projects/myproject/packages/A +Info 42 [00:01:27.000] For info: /user/username/projects/myproject/packages/A/tsconfig.json :: No config files found. +Info 43 [00:01:28.000] Project '/user/username/projects/myproject/packages/A/tsconfig.json' (Configured) +Info 43 [00:01:29.000] Files (4) + +Info 43 [00:01:30.000] ----------------------------------------------- +Info 43 [00:01:31.000] Open files: +Info 43 [00:01:32.000] FileName: /user/username/projects/myproject/packages/A/src/test.ts ProjectRootPath: undefined +Info 43 [00:01:33.000] Projects: /user/username/projects/myproject/packages/A/tsconfig.json After request PolledWatches:: @@ -184,11 +184,11 @@ FsWatchesRecursive:: /user/username/projects/myproject/node_modules: {} -Info 43 [16:01:34.000] response: +Info 43 [00:01:34.000] response: { "responseRequired": false } -Info 44 [16:01:35.000] request: +Info 44 [00:01:35.000] request: { "command": "geterr", "arguments": { @@ -272,7 +272,7 @@ FsWatchesRecursive:: /user/username/projects/myproject/node_modules: {} -Info 45 [16:01:36.000] response: +Info 45 [00:01:36.000] response: { "responseRequired": false } @@ -312,7 +312,7 @@ FsWatchesRecursive:: /user/username/projects/myproject/node_modules: {} -Info 46 [16:01:37.000] event: +Info 46 [00:01:37.000] event: {"seq":0,"type":"event","event":"syntaxDiag","body":{"file":"/user/username/projects/myproject/packages/A/src/test.ts","diagnostics":[]}} After checking timeout queue length (1) and running @@ -386,7 +386,7 @@ FsWatchesRecursive:: /user/username/projects/myproject/node_modules: {} -Info 47 [16:01:38.000] event: +Info 47 [00:01:38.000] event: {"seq":0,"type":"event","event":"semanticDiag","body":{"file":"/user/username/projects/myproject/packages/A/src/test.ts","diagnostics":[]}} Before running immediate callbacks and checking length (1) @@ -460,9 +460,9 @@ FsWatchesRecursive:: /user/username/projects/myproject/node_modules: {} -Info 48 [16:01:39.000] event: +Info 48 [00:01:39.000] event: {"seq":0,"type":"event","event":"suggestionDiag","body":{"file":"/user/username/projects/myproject/packages/A/src/test.ts","diagnostics":[]}} -Info 49 [16:01:40.000] event: +Info 49 [00:01:40.000] event: {"seq":0,"type":"event","event":"requestCompleted","body":{"request_seq":1}} Before running immediate callbacks and checking length (1) @@ -500,7 +500,7 @@ FsWatchesRecursive:: /user/username/projects/myproject/node_modules: {} -Info 50 [16:01:41.000] request: +Info 50 [00:01:41.000] request: { "command": "updateOpen", "arguments": { @@ -598,12 +598,12 @@ FsWatchesRecursive:: /user/username/projects/myproject/node_modules: {} -Info 51 [16:01:42.000] response: +Info 51 [00:01:42.000] response: { "response": true, "responseRequired": true } -Info 52 [16:01:43.000] request: +Info 52 [00:01:43.000] request: { "command": "geterr", "arguments": { @@ -687,7 +687,7 @@ FsWatchesRecursive:: /user/username/projects/myproject/node_modules: {} -Info 53 [16:01:44.000] response: +Info 53 [00:01:44.000] response: { "responseRequired": false } @@ -727,10 +727,10 @@ FsWatchesRecursive:: /user/username/projects/myproject/node_modules: {} -Info 54 [16:01:45.000] Starting updateGraphWorker: Project: /user/username/projects/myproject/packages/A/tsconfig.json -Info 55 [16:01:46.000] Finishing updateGraphWorker: Project: /user/username/projects/myproject/packages/A/tsconfig.json Version: 2 structureChanged: false structureIsReused:: Completely Elapsed:: *ms -Info 56 [16:01:47.000] Different program with same set of files -Info 57 [16:01:48.000] event: +Info 54 [00:01:45.000] Starting updateGraphWorker: Project: /user/username/projects/myproject/packages/A/tsconfig.json +Info 55 [00:01:46.000] Finishing updateGraphWorker: Project: /user/username/projects/myproject/packages/A/tsconfig.json Version: 2 structureChanged: false structureIsReused:: Completely Elapsed:: *ms +Info 56 [00:01:47.000] Different program with same set of files +Info 57 [00:01:48.000] event: {"seq":0,"type":"event","event":"syntaxDiag","body":{"file":"/user/username/projects/myproject/packages/A/src/test.ts","diagnostics":[]}} After checking timeout queue length (1) and running @@ -804,7 +804,7 @@ FsWatchesRecursive:: /user/username/projects/myproject/node_modules: {} -Info 58 [16:01:49.000] event: +Info 58 [00:01:49.000] event: {"seq":0,"type":"event","event":"semanticDiag","body":{"file":"/user/username/projects/myproject/packages/A/src/test.ts","diagnostics":[]}} Before running immediate callbacks and checking length (1) @@ -878,9 +878,9 @@ FsWatchesRecursive:: /user/username/projects/myproject/node_modules: {} -Info 59 [16:01:50.000] event: +Info 59 [00:01:50.000] event: {"seq":0,"type":"event","event":"suggestionDiag","body":{"file":"/user/username/projects/myproject/packages/A/src/test.ts","diagnostics":[]}} -Info 60 [16:01:51.000] event: +Info 60 [00:01:51.000] event: {"seq":0,"type":"event","event":"requestCompleted","body":{"request_seq":3}} Before running immediate callbacks and checking length (1) 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 f2a033152da29..965feba1830e4 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 @@ -1,5 +1,5 @@ -Info 0 [16:00:45.000] Provided types map file "/a/lib/typesMap.json" doesn't exist -Info 1 [16:00:46.000] request: +Info 0 [00:00:45.000] Provided types map file "/a/lib/typesMap.json" doesn't exist +Info 1 [00:00:46.000] request: { "seq": 0, "type": "request", @@ -52,13 +52,13 @@ FsWatches:: FsWatchesRecursive:: -Info 2 [16:00:47.000] Search path: /user/username/projects/myproject/packages/A/src -Info 3 [16:00:48.000] For info: /user/username/projects/myproject/packages/A/src/test.ts :: Config file name: /user/username/projects/myproject/packages/A/tsconfig.json -Info 4 [16:00:49.000] Creating configuration project /user/username/projects/myproject/packages/A/tsconfig.json -Info 5 [16:00:50.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/packages/A/tsconfig.json 2000 undefined Project: /user/username/projects/myproject/packages/A/tsconfig.json WatchType: Config file -Info 6 [16:00:51.000] event: +Info 2 [00:00:47.000] Search path: /user/username/projects/myproject/packages/A/src +Info 3 [00:00:48.000] For info: /user/username/projects/myproject/packages/A/src/test.ts :: Config file name: /user/username/projects/myproject/packages/A/tsconfig.json +Info 4 [00:00:49.000] Creating configuration project /user/username/projects/myproject/packages/A/tsconfig.json +Info 5 [00:00:50.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/packages/A/tsconfig.json 2000 undefined Project: /user/username/projects/myproject/packages/A/tsconfig.json WatchType: Config file +Info 6 [00:00:51.000] event: {"seq":0,"type":"event","event":"projectLoadingStart","body":{"projectName":"/user/username/projects/myproject/packages/A/tsconfig.json","reason":"Creating possible configured project for /user/username/projects/myproject/packages/A/src/test.ts to open"}} -Info 7 [16:00:52.000] Config: /user/username/projects/myproject/packages/A/tsconfig.json : { +Info 7 [00:00:52.000] Config: /user/username/projects/myproject/packages/A/tsconfig.json : { "rootNames": [ "/user/username/projects/myproject/packages/A/src/test.ts" ], @@ -75,11 +75,11 @@ Info 7 [16:00:52.000] Config: /user/username/projects/myproject/packages/A/ts } ] } -Info 8 [16:00:53.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/packages/a/src 1 undefined Config: /user/username/projects/myproject/packages/A/tsconfig.json WatchType: Wild card directory -Info 9 [16:00:54.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/packages/a/src 1 undefined Config: /user/username/projects/myproject/packages/A/tsconfig.json WatchType: Wild card directory -Info 10 [16:00:55.000] Plugins were requested but not running in environment that supports 'require'. Nothing will be loaded -Info 11 [16:00:56.000] Starting updateGraphWorker: Project: /user/username/projects/myproject/packages/A/tsconfig.json -Info 12 [16:00:57.000] Config: /user/username/projects/myproject/packages/B/tsconfig.json : { +Info 8 [00:00:53.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/packages/a/src 1 undefined Config: /user/username/projects/myproject/packages/A/tsconfig.json WatchType: Wild card directory +Info 9 [00:00:54.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/packages/a/src 1 undefined Config: /user/username/projects/myproject/packages/A/tsconfig.json WatchType: Wild card directory +Info 10 [00:00:55.000] Plugins were requested but not running in environment that supports 'require'. Nothing will be loaded +Info 11 [00:00:56.000] Starting updateGraphWorker: Project: /user/username/projects/myproject/packages/A/tsconfig.json +Info 12 [00:00:57.000] Config: /user/username/projects/myproject/packages/B/tsconfig.json : { "rootNames": [ "/user/username/projects/myproject/packages/B/src/foo.ts", "/user/username/projects/myproject/packages/B/src/bar/foo.ts" @@ -91,30 +91,30 @@ Info 12 [16:00:57.000] Config: /user/username/projects/myproject/packages/B/ts "configFilePath": "/user/username/projects/myproject/packages/B/tsconfig.json" } } -Info 13 [16:00:58.000] 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 14 [16:00:59.000] 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 15 [16:01:00.000] 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 16 [16:01:01.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/packages/B/src/foo.ts 500 undefined WatchType: Closed Script info -Info 17 [16:01:02.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/packages/B/src/bar/foo.ts 500 undefined WatchType: Closed Script info -Info 18 [16:01:03.000] FileWatcher:: Added:: WatchInfo: /a/lib/lib.d.ts 500 undefined WatchType: Closed Script info -Info 19 [16:01:04.000] 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 20 [16:01:05.000] 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 21 [16:01:06.000] 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 -Info 22 [16:01:07.000] Elapsed:: *ms 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 -Info 23 [16:01:08.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/packages/node_modules 1 undefined Project: /user/username/projects/myproject/packages/A/tsconfig.json WatchType: Failed Lookup Locations -Info 24 [16:01:09.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/packages/node_modules 1 undefined Project: /user/username/projects/myproject/packages/A/tsconfig.json WatchType: Failed Lookup Locations -Info 25 [16:01:10.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules 1 undefined Project: /user/username/projects/myproject/packages/A/tsconfig.json WatchType: Failed Lookup Locations -Info 26 [16:01:11.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules 1 undefined Project: /user/username/projects/myproject/packages/A/tsconfig.json WatchType: Failed Lookup Locations -Info 27 [16:01:12.000] 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 28 [16:01:13.000] 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 29 [16:01:14.000] 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 30 [16:01:15.000] 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 -Info 31 [16:01:16.000] Elapsed:: *ms 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 -Info 32 [16:01:17.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/packages/A/tsconfig.json WatchType: Type roots -Info 33 [16:01:18.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/packages/A/tsconfig.json WatchType: Type roots -Info 34 [16:01:19.000] Finishing updateGraphWorker: Project: /user/username/projects/myproject/packages/A/tsconfig.json Version: 1 structureChanged: true structureIsReused:: Not Elapsed:: *ms -Info 35 [16:01:20.000] Project '/user/username/projects/myproject/packages/A/tsconfig.json' (Configured) -Info 36 [16:01:21.000] Files (4) +Info 13 [00:00:58.000] 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 14 [00:00:59.000] 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 15 [00:01:00.000] 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 16 [00:01:01.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/packages/B/src/foo.ts 500 undefined WatchType: Closed Script info +Info 17 [00:01:02.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/packages/B/src/bar/foo.ts 500 undefined WatchType: Closed Script info +Info 18 [00:01:03.000] FileWatcher:: Added:: WatchInfo: /a/lib/lib.d.ts 500 undefined WatchType: Closed Script info +Info 19 [00:01:04.000] 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 20 [00:01:05.000] 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 21 [00:01:06.000] 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 +Info 22 [00:01:07.000] Elapsed:: *ms 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 +Info 23 [00:01:08.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/packages/node_modules 1 undefined Project: /user/username/projects/myproject/packages/A/tsconfig.json WatchType: Failed Lookup Locations +Info 24 [00:01:09.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/packages/node_modules 1 undefined Project: /user/username/projects/myproject/packages/A/tsconfig.json WatchType: Failed Lookup Locations +Info 25 [00:01:10.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules 1 undefined Project: /user/username/projects/myproject/packages/A/tsconfig.json WatchType: Failed Lookup Locations +Info 26 [00:01:11.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules 1 undefined Project: /user/username/projects/myproject/packages/A/tsconfig.json WatchType: Failed Lookup Locations +Info 27 [00:01:12.000] 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 28 [00:01:13.000] 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 29 [00:01:14.000] 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 30 [00:01:15.000] 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 +Info 31 [00:01:16.000] Elapsed:: *ms 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 +Info 32 [00:01:17.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/packages/A/tsconfig.json WatchType: Type roots +Info 33 [00:01:18.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/packages/A/tsconfig.json WatchType: Type roots +Info 34 [00:01:19.000] Finishing updateGraphWorker: Project: /user/username/projects/myproject/packages/A/tsconfig.json Version: 1 structureChanged: true structureIsReused:: Not Elapsed:: *ms +Info 35 [00:01:20.000] Project '/user/username/projects/myproject/packages/A/tsconfig.json' (Configured) +Info 36 [00:01:21.000] Files (4) /a/lib/lib.d.ts /user/username/projects/myproject/packages/B/src/foo.ts /user/username/projects/myproject/packages/B/src/bar/foo.ts @@ -130,22 +130,22 @@ Info 36 [16:01:21.000] Files (4) src/test.ts Matched by include pattern 'src' in 'tsconfig.json' -Info 37 [16:01:22.000] ----------------------------------------------- -Info 38 [16:01:23.000] event: +Info 37 [00:01:22.000] ----------------------------------------------- +Info 38 [00:01:23.000] event: {"seq":0,"type":"event","event":"projectLoadingFinish","body":{"projectName":"/user/username/projects/myproject/packages/A/tsconfig.json"}} -Info 39 [16:01:24.000] event: +Info 39 [00:01:24.000] event: {"seq":0,"type":"event","event":"telemetry","body":{"telemetryEventName":"projectInfo","payload":{"projectId":"8c5cfb88fb6a6125ddaca4c198af63d261c8feb2786e348cbf3223fcf8461e16","fileStats":{"js":0,"jsSize":0,"jsx":0,"jsxSize":0,"ts":3,"tsSize":134,"tsx":0,"tsxSize":0,"dts":1,"dtsSize":334,"deferred":0,"deferredSize":0},"compilerOptions":{"outDir":"","rootDir":"","composite":true},"typeAcquisition":{"enable":false,"include":false,"exclude":false},"extends":false,"files":false,"include":true,"exclude":false,"compileOnSave":false,"configFileName":"tsconfig.json","projectType":"configured","languageServiceEnabled":true,"version":"FakeVersion"}}} -Info 40 [16:01:25.000] event: +Info 40 [00:01:25.000] event: {"seq":0,"type":"event","event":"configFileDiag","body":{"triggerFile":"/user/username/projects/myproject/packages/A/src/test.ts","configFile":"/user/username/projects/myproject/packages/A/tsconfig.json","diagnostics":[]}} -Info 41 [16:01:26.000] Search path: /user/username/projects/myproject/packages/A -Info 42 [16:01:27.000] For info: /user/username/projects/myproject/packages/A/tsconfig.json :: No config files found. -Info 43 [16:01:28.000] Project '/user/username/projects/myproject/packages/A/tsconfig.json' (Configured) -Info 43 [16:01:29.000] Files (4) - -Info 43 [16:01:30.000] ----------------------------------------------- -Info 43 [16:01:31.000] Open files: -Info 43 [16:01:32.000] FileName: /user/username/projects/myproject/packages/A/src/test.ts ProjectRootPath: undefined -Info 43 [16:01:33.000] Projects: /user/username/projects/myproject/packages/A/tsconfig.json +Info 41 [00:01:26.000] Search path: /user/username/projects/myproject/packages/A +Info 42 [00:01:27.000] For info: /user/username/projects/myproject/packages/A/tsconfig.json :: No config files found. +Info 43 [00:01:28.000] Project '/user/username/projects/myproject/packages/A/tsconfig.json' (Configured) +Info 43 [00:01:29.000] Files (4) + +Info 43 [00:01:30.000] ----------------------------------------------- +Info 43 [00:01:31.000] Open files: +Info 43 [00:01:32.000] FileName: /user/username/projects/myproject/packages/A/src/test.ts ProjectRootPath: undefined +Info 43 [00:01:33.000] Projects: /user/username/projects/myproject/packages/A/tsconfig.json After request PolledWatches:: @@ -182,11 +182,11 @@ FsWatchesRecursive:: /user/username/projects/myproject/node_modules: {} -Info 43 [16:01:34.000] response: +Info 43 [00:01:34.000] response: { "responseRequired": false } -Info 44 [16:01:35.000] request: +Info 44 [00:01:35.000] request: { "command": "geterr", "arguments": { @@ -270,7 +270,7 @@ FsWatchesRecursive:: /user/username/projects/myproject/node_modules: {} -Info 45 [16:01:36.000] response: +Info 45 [00:01:36.000] response: { "responseRequired": false } @@ -310,7 +310,7 @@ FsWatchesRecursive:: /user/username/projects/myproject/node_modules: {} -Info 46 [16:01:37.000] event: +Info 46 [00:01:37.000] event: {"seq":0,"type":"event","event":"syntaxDiag","body":{"file":"/user/username/projects/myproject/packages/A/src/test.ts","diagnostics":[]}} After checking timeout queue length (1) and running @@ -384,7 +384,7 @@ FsWatchesRecursive:: /user/username/projects/myproject/node_modules: {} -Info 47 [16:01:38.000] event: +Info 47 [00:01:38.000] event: {"seq":0,"type":"event","event":"semanticDiag","body":{"file":"/user/username/projects/myproject/packages/A/src/test.ts","diagnostics":[]}} Before running immediate callbacks and checking length (1) @@ -458,9 +458,9 @@ FsWatchesRecursive:: /user/username/projects/myproject/node_modules: {} -Info 48 [16:01:39.000] event: +Info 48 [00:01:39.000] event: {"seq":0,"type":"event","event":"suggestionDiag","body":{"file":"/user/username/projects/myproject/packages/A/src/test.ts","diagnostics":[]}} -Info 49 [16:01:40.000] event: +Info 49 [00:01:40.000] event: {"seq":0,"type":"event","event":"requestCompleted","body":{"request_seq":1}} Before running immediate callbacks and checking length (1) @@ -498,7 +498,7 @@ FsWatchesRecursive:: /user/username/projects/myproject/node_modules: {} -Info 50 [16:01:41.000] request: +Info 50 [00:01:41.000] request: { "command": "updateOpen", "arguments": { @@ -596,12 +596,12 @@ FsWatchesRecursive:: /user/username/projects/myproject/node_modules: {} -Info 51 [16:01:42.000] response: +Info 51 [00:01:42.000] response: { "response": true, "responseRequired": true } -Info 52 [16:01:43.000] request: +Info 52 [00:01:43.000] request: { "command": "geterr", "arguments": { @@ -685,7 +685,7 @@ FsWatchesRecursive:: /user/username/projects/myproject/node_modules: {} -Info 53 [16:01:44.000] response: +Info 53 [00:01:44.000] response: { "responseRequired": false } @@ -725,10 +725,10 @@ FsWatchesRecursive:: /user/username/projects/myproject/node_modules: {} -Info 54 [16:01:45.000] Starting updateGraphWorker: Project: /user/username/projects/myproject/packages/A/tsconfig.json -Info 55 [16:01:46.000] Finishing updateGraphWorker: Project: /user/username/projects/myproject/packages/A/tsconfig.json Version: 2 structureChanged: false structureIsReused:: Completely Elapsed:: *ms -Info 56 [16:01:47.000] Different program with same set of files -Info 57 [16:01:48.000] event: +Info 54 [00:01:45.000] Starting updateGraphWorker: Project: /user/username/projects/myproject/packages/A/tsconfig.json +Info 55 [00:01:46.000] Finishing updateGraphWorker: Project: /user/username/projects/myproject/packages/A/tsconfig.json Version: 2 structureChanged: false structureIsReused:: Completely Elapsed:: *ms +Info 56 [00:01:47.000] Different program with same set of files +Info 57 [00:01:48.000] event: {"seq":0,"type":"event","event":"syntaxDiag","body":{"file":"/user/username/projects/myproject/packages/A/src/test.ts","diagnostics":[]}} After checking timeout queue length (1) and running @@ -802,7 +802,7 @@ FsWatchesRecursive:: /user/username/projects/myproject/node_modules: {} -Info 58 [16:01:49.000] event: +Info 58 [00:01:49.000] event: {"seq":0,"type":"event","event":"semanticDiag","body":{"file":"/user/username/projects/myproject/packages/A/src/test.ts","diagnostics":[]}} Before running immediate callbacks and checking length (1) @@ -876,9 +876,9 @@ FsWatchesRecursive:: /user/username/projects/myproject/node_modules: {} -Info 59 [16:01:50.000] event: +Info 59 [00:01:50.000] event: {"seq":0,"type":"event","event":"suggestionDiag","body":{"file":"/user/username/projects/myproject/packages/A/src/test.ts","diagnostics":[]}} -Info 60 [16:01:51.000] event: +Info 60 [00:01:51.000] event: {"seq":0,"type":"event","event":"requestCompleted","body":{"request_seq":3}} Before running immediate callbacks and checking length (1) 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 6274e4afd647e..ba2437a0ae632 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 @@ -1,5 +1,5 @@ -Info 0 [16:01:18.000] Provided types map file "/a/lib/typesMap.json" doesn't exist -Info 1 [16:01:19.000] request: +Info 0 [00:01:18.000] Provided types map file "/a/lib/typesMap.json" doesn't exist +Info 1 [00:01:19.000] request: { "seq": 0, "type": "request", @@ -194,13 +194,13 @@ FsWatches:: FsWatchesRecursive:: -Info 2 [16:01:20.000] Search path: /user/username/projects/myproject/packages/A/src -Info 3 [16:01:21.000] For info: /user/username/projects/myproject/packages/A/src/test.ts :: Config file name: /user/username/projects/myproject/packages/A/tsconfig.json -Info 4 [16:01:22.000] Creating configuration project /user/username/projects/myproject/packages/A/tsconfig.json -Info 5 [16:01:23.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/packages/A/tsconfig.json 2000 undefined Project: /user/username/projects/myproject/packages/A/tsconfig.json WatchType: Config file -Info 6 [16:01:24.000] event: +Info 2 [00:01:20.000] Search path: /user/username/projects/myproject/packages/A/src +Info 3 [00:01:21.000] For info: /user/username/projects/myproject/packages/A/src/test.ts :: Config file name: /user/username/projects/myproject/packages/A/tsconfig.json +Info 4 [00:01:22.000] Creating configuration project /user/username/projects/myproject/packages/A/tsconfig.json +Info 5 [00:01:23.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/packages/A/tsconfig.json 2000 undefined Project: /user/username/projects/myproject/packages/A/tsconfig.json WatchType: Config file +Info 6 [00:01:24.000] event: {"seq":0,"type":"event","event":"projectLoadingStart","body":{"projectName":"/user/username/projects/myproject/packages/A/tsconfig.json","reason":"Creating possible configured project for /user/username/projects/myproject/packages/A/src/test.ts to open"}} -Info 7 [16:01:25.000] Config: /user/username/projects/myproject/packages/A/tsconfig.json : { +Info 7 [00:01:25.000] Config: /user/username/projects/myproject/packages/A/tsconfig.json : { "rootNames": [ "/user/username/projects/myproject/packages/A/src/test.ts" ], @@ -218,11 +218,11 @@ Info 7 [16:01:25.000] Config: /user/username/projects/myproject/packages/A/ts } ] } -Info 8 [16:01:26.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/packages/a/src 1 undefined Config: /user/username/projects/myproject/packages/A/tsconfig.json WatchType: Wild card directory -Info 9 [16:01:27.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/packages/a/src 1 undefined Config: /user/username/projects/myproject/packages/A/tsconfig.json WatchType: Wild card directory -Info 10 [16:01:28.000] Plugins were requested but not running in environment that supports 'require'. Nothing will be loaded -Info 11 [16:01:29.000] Starting updateGraphWorker: Project: /user/username/projects/myproject/packages/A/tsconfig.json -Info 12 [16:01:30.000] Config: /user/username/projects/myproject/packages/B/tsconfig.json : { +Info 8 [00:01:26.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/packages/a/src 1 undefined Config: /user/username/projects/myproject/packages/A/tsconfig.json WatchType: Wild card directory +Info 9 [00:01:27.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/packages/a/src 1 undefined Config: /user/username/projects/myproject/packages/A/tsconfig.json WatchType: Wild card directory +Info 10 [00:01:28.000] Plugins were requested but not running in environment that supports 'require'. Nothing will be loaded +Info 11 [00:01:29.000] Starting updateGraphWorker: Project: /user/username/projects/myproject/packages/A/tsconfig.json +Info 12 [00:01:30.000] Config: /user/username/projects/myproject/packages/B/tsconfig.json : { "rootNames": [ "/user/username/projects/myproject/packages/B/src/foo.ts", "/user/username/projects/myproject/packages/B/src/bar/foo.ts" @@ -235,30 +235,30 @@ Info 12 [16:01:30.000] Config: /user/username/projects/myproject/packages/B/ts "configFilePath": "/user/username/projects/myproject/packages/B/tsconfig.json" } } -Info 13 [16:01:31.000] 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 14 [16:01:32.000] 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 15 [16:01:33.000] 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 16 [16:01:34.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/packages/B/src/foo.ts 500 undefined WatchType: Closed Script info -Info 17 [16:01:35.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/packages/B/src/bar/foo.ts 500 undefined WatchType: Closed Script info -Info 18 [16:01:36.000] FileWatcher:: Added:: WatchInfo: /a/lib/lib.d.ts 500 undefined WatchType: Closed Script info -Info 19 [16:01:37.000] 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 20 [16:01:38.000] 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 21 [16:01:39.000] 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 -Info 22 [16:01:40.000] Elapsed:: *ms 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 -Info 23 [16:01:41.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/packages/node_modules 1 undefined Project: /user/username/projects/myproject/packages/A/tsconfig.json WatchType: Failed Lookup Locations -Info 24 [16:01:42.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/packages/node_modules 1 undefined Project: /user/username/projects/myproject/packages/A/tsconfig.json WatchType: Failed Lookup Locations -Info 25 [16:01:43.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules 1 undefined Project: /user/username/projects/myproject/packages/A/tsconfig.json WatchType: Failed Lookup Locations -Info 26 [16:01:44.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules 1 undefined Project: /user/username/projects/myproject/packages/A/tsconfig.json WatchType: Failed Lookup Locations -Info 27 [16:01:45.000] 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 28 [16:01:46.000] 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 29 [16:01:47.000] 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 30 [16:01:48.000] 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 -Info 31 [16:01:49.000] Elapsed:: *ms 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 -Info 32 [16:01:50.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/packages/A/tsconfig.json WatchType: Type roots -Info 33 [16:01:51.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/packages/A/tsconfig.json WatchType: Type roots -Info 34 [16:01:52.000] Finishing updateGraphWorker: Project: /user/username/projects/myproject/packages/A/tsconfig.json Version: 1 structureChanged: true structureIsReused:: Not Elapsed:: *ms -Info 35 [16:01:53.000] Project '/user/username/projects/myproject/packages/A/tsconfig.json' (Configured) -Info 36 [16:01:54.000] Files (4) +Info 13 [00:01:31.000] 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 14 [00:01:32.000] 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 15 [00:01:33.000] 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 16 [00:01:34.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/packages/B/src/foo.ts 500 undefined WatchType: Closed Script info +Info 17 [00:01:35.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/packages/B/src/bar/foo.ts 500 undefined WatchType: Closed Script info +Info 18 [00:01:36.000] FileWatcher:: Added:: WatchInfo: /a/lib/lib.d.ts 500 undefined WatchType: Closed Script info +Info 19 [00:01:37.000] 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 20 [00:01:38.000] 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 21 [00:01:39.000] 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 +Info 22 [00:01:40.000] Elapsed:: *ms 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 +Info 23 [00:01:41.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/packages/node_modules 1 undefined Project: /user/username/projects/myproject/packages/A/tsconfig.json WatchType: Failed Lookup Locations +Info 24 [00:01:42.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/packages/node_modules 1 undefined Project: /user/username/projects/myproject/packages/A/tsconfig.json WatchType: Failed Lookup Locations +Info 25 [00:01:43.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules 1 undefined Project: /user/username/projects/myproject/packages/A/tsconfig.json WatchType: Failed Lookup Locations +Info 26 [00:01:44.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules 1 undefined Project: /user/username/projects/myproject/packages/A/tsconfig.json WatchType: Failed Lookup Locations +Info 27 [00:01:45.000] 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 28 [00:01:46.000] 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 29 [00:01:47.000] 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 30 [00:01:48.000] 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 +Info 31 [00:01:49.000] Elapsed:: *ms 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 +Info 32 [00:01:50.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/packages/A/tsconfig.json WatchType: Type roots +Info 33 [00:01:51.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/packages/A/tsconfig.json WatchType: Type roots +Info 34 [00:01:52.000] Finishing updateGraphWorker: Project: /user/username/projects/myproject/packages/A/tsconfig.json Version: 1 structureChanged: true structureIsReused:: Not Elapsed:: *ms +Info 35 [00:01:53.000] Project '/user/username/projects/myproject/packages/A/tsconfig.json' (Configured) +Info 36 [00:01:54.000] Files (4) /a/lib/lib.d.ts /user/username/projects/myproject/packages/B/src/foo.ts /user/username/projects/myproject/packages/B/src/bar/foo.ts @@ -274,22 +274,22 @@ Info 36 [16:01:54.000] Files (4) src/test.ts Matched by include pattern 'src' in 'tsconfig.json' -Info 37 [16:01:55.000] ----------------------------------------------- -Info 38 [16:01:56.000] event: +Info 37 [00:01:55.000] ----------------------------------------------- +Info 38 [00:01:56.000] event: {"seq":0,"type":"event","event":"projectLoadingFinish","body":{"projectName":"/user/username/projects/myproject/packages/A/tsconfig.json"}} -Info 39 [16:01:57.000] event: +Info 39 [00:01:57.000] event: {"seq":0,"type":"event","event":"telemetry","body":{"telemetryEventName":"projectInfo","payload":{"projectId":"8c5cfb88fb6a6125ddaca4c198af63d261c8feb2786e348cbf3223fcf8461e16","fileStats":{"js":0,"jsSize":0,"jsx":0,"jsxSize":0,"ts":3,"tsSize":148,"tsx":0,"tsxSize":0,"dts":1,"dtsSize":334,"deferred":0,"deferredSize":0},"compilerOptions":{"outDir":"","rootDir":"","composite":true,"preserveSymlinks":true},"typeAcquisition":{"enable":false,"include":false,"exclude":false},"extends":false,"files":false,"include":true,"exclude":false,"compileOnSave":false,"configFileName":"tsconfig.json","projectType":"configured","languageServiceEnabled":true,"version":"FakeVersion"}}} -Info 40 [16:01:58.000] event: +Info 40 [00:01:58.000] event: {"seq":0,"type":"event","event":"configFileDiag","body":{"triggerFile":"/user/username/projects/myproject/packages/A/src/test.ts","configFile":"/user/username/projects/myproject/packages/A/tsconfig.json","diagnostics":[]}} -Info 41 [16:01:59.000] Search path: /user/username/projects/myproject/packages/A -Info 42 [16:02:00.000] For info: /user/username/projects/myproject/packages/A/tsconfig.json :: No config files found. -Info 43 [16:02:01.000] Project '/user/username/projects/myproject/packages/A/tsconfig.json' (Configured) -Info 43 [16:02:02.000] Files (4) - -Info 43 [16:02:03.000] ----------------------------------------------- -Info 43 [16:02:04.000] Open files: -Info 43 [16:02:05.000] FileName: /user/username/projects/myproject/packages/A/src/test.ts ProjectRootPath: undefined -Info 43 [16:02:06.000] Projects: /user/username/projects/myproject/packages/A/tsconfig.json +Info 41 [00:01:59.000] Search path: /user/username/projects/myproject/packages/A +Info 42 [00:02:00.000] For info: /user/username/projects/myproject/packages/A/tsconfig.json :: No config files found. +Info 43 [00:02:01.000] Project '/user/username/projects/myproject/packages/A/tsconfig.json' (Configured) +Info 43 [00:02:02.000] Files (4) + +Info 43 [00:02:03.000] ----------------------------------------------- +Info 43 [00:02:04.000] Open files: +Info 43 [00:02:05.000] FileName: /user/username/projects/myproject/packages/A/src/test.ts ProjectRootPath: undefined +Info 43 [00:02:06.000] Projects: /user/username/projects/myproject/packages/A/tsconfig.json After request PolledWatches:: @@ -326,11 +326,11 @@ FsWatchesRecursive:: /user/username/projects/myproject/node_modules: {} -Info 43 [16:02:07.000] response: +Info 43 [00:02:07.000] response: { "responseRequired": false } -Info 44 [16:02:08.000] request: +Info 44 [00:02:08.000] request: { "command": "geterr", "arguments": { @@ -414,7 +414,7 @@ FsWatchesRecursive:: /user/username/projects/myproject/node_modules: {} -Info 45 [16:02:09.000] response: +Info 45 [00:02:09.000] response: { "responseRequired": false } @@ -454,7 +454,7 @@ FsWatchesRecursive:: /user/username/projects/myproject/node_modules: {} -Info 46 [16:02:10.000] event: +Info 46 [00:02:10.000] event: {"seq":0,"type":"event","event":"syntaxDiag","body":{"file":"/user/username/projects/myproject/packages/A/src/test.ts","diagnostics":[]}} After checking timeout queue length (1) and running @@ -528,7 +528,7 @@ FsWatchesRecursive:: /user/username/projects/myproject/node_modules: {} -Info 47 [16:02:11.000] event: +Info 47 [00:02:11.000] event: {"seq":0,"type":"event","event":"semanticDiag","body":{"file":"/user/username/projects/myproject/packages/A/src/test.ts","diagnostics":[]}} Before running immediate callbacks and checking length (1) @@ -602,9 +602,9 @@ FsWatchesRecursive:: /user/username/projects/myproject/node_modules: {} -Info 48 [16:02:12.000] event: +Info 48 [00:02:12.000] event: {"seq":0,"type":"event","event":"suggestionDiag","body":{"file":"/user/username/projects/myproject/packages/A/src/test.ts","diagnostics":[]}} -Info 49 [16:02:13.000] event: +Info 49 [00:02:13.000] event: {"seq":0,"type":"event","event":"requestCompleted","body":{"request_seq":1}} Before running immediate callbacks and checking length (1) @@ -642,7 +642,7 @@ FsWatchesRecursive:: /user/username/projects/myproject/node_modules: {} -Info 50 [16:02:14.000] request: +Info 50 [00:02:14.000] request: { "command": "updateOpen", "arguments": { @@ -740,12 +740,12 @@ FsWatchesRecursive:: /user/username/projects/myproject/node_modules: {} -Info 51 [16:02:15.000] response: +Info 51 [00:02:15.000] response: { "response": true, "responseRequired": true } -Info 52 [16:02:16.000] request: +Info 52 [00:02:16.000] request: { "command": "geterr", "arguments": { @@ -829,7 +829,7 @@ FsWatchesRecursive:: /user/username/projects/myproject/node_modules: {} -Info 53 [16:02:17.000] response: +Info 53 [00:02:17.000] response: { "responseRequired": false } @@ -869,10 +869,10 @@ FsWatchesRecursive:: /user/username/projects/myproject/node_modules: {} -Info 54 [16:02:18.000] Starting updateGraphWorker: Project: /user/username/projects/myproject/packages/A/tsconfig.json -Info 55 [16:02:19.000] Finishing updateGraphWorker: Project: /user/username/projects/myproject/packages/A/tsconfig.json Version: 2 structureChanged: false structureIsReused:: Completely Elapsed:: *ms -Info 56 [16:02:20.000] Different program with same set of files -Info 57 [16:02:21.000] event: +Info 54 [00:02:18.000] Starting updateGraphWorker: Project: /user/username/projects/myproject/packages/A/tsconfig.json +Info 55 [00:02:19.000] Finishing updateGraphWorker: Project: /user/username/projects/myproject/packages/A/tsconfig.json Version: 2 structureChanged: false structureIsReused:: Completely Elapsed:: *ms +Info 56 [00:02:20.000] Different program with same set of files +Info 57 [00:02:21.000] event: {"seq":0,"type":"event","event":"syntaxDiag","body":{"file":"/user/username/projects/myproject/packages/A/src/test.ts","diagnostics":[]}} After checking timeout queue length (1) and running @@ -946,7 +946,7 @@ FsWatchesRecursive:: /user/username/projects/myproject/node_modules: {} -Info 58 [16:02:22.000] event: +Info 58 [00:02:22.000] event: {"seq":0,"type":"event","event":"semanticDiag","body":{"file":"/user/username/projects/myproject/packages/A/src/test.ts","diagnostics":[]}} Before running immediate callbacks and checking length (1) @@ -1020,9 +1020,9 @@ FsWatchesRecursive:: /user/username/projects/myproject/node_modules: {} -Info 59 [16:02:23.000] event: +Info 59 [00:02:23.000] event: {"seq":0,"type":"event","event":"suggestionDiag","body":{"file":"/user/username/projects/myproject/packages/A/src/test.ts","diagnostics":[]}} -Info 60 [16:02:24.000] event: +Info 60 [00:02:24.000] event: {"seq":0,"type":"event","event":"requestCompleted","body":{"request_seq":3}} Before running immediate callbacks and checking length (1) 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 4417484130d49..a5a24b79141ca 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 @@ -1,5 +1,5 @@ -Info 0 [16:01:18.000] Provided types map file "/a/lib/typesMap.json" doesn't exist -Info 1 [16:01:19.000] request: +Info 0 [00:01:18.000] Provided types map file "/a/lib/typesMap.json" doesn't exist +Info 1 [00:01:19.000] request: { "seq": 0, "type": "request", @@ -194,13 +194,13 @@ FsWatches:: FsWatchesRecursive:: -Info 2 [16:01:20.000] Search path: /user/username/projects/myproject/packages/A/src -Info 3 [16:01:21.000] For info: /user/username/projects/myproject/packages/A/src/test.ts :: Config file name: /user/username/projects/myproject/packages/A/tsconfig.json -Info 4 [16:01:22.000] Creating configuration project /user/username/projects/myproject/packages/A/tsconfig.json -Info 5 [16:01:23.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/packages/A/tsconfig.json 2000 undefined Project: /user/username/projects/myproject/packages/A/tsconfig.json WatchType: Config file -Info 6 [16:01:24.000] event: +Info 2 [00:01:20.000] Search path: /user/username/projects/myproject/packages/A/src +Info 3 [00:01:21.000] For info: /user/username/projects/myproject/packages/A/src/test.ts :: Config file name: /user/username/projects/myproject/packages/A/tsconfig.json +Info 4 [00:01:22.000] Creating configuration project /user/username/projects/myproject/packages/A/tsconfig.json +Info 5 [00:01:23.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/packages/A/tsconfig.json 2000 undefined Project: /user/username/projects/myproject/packages/A/tsconfig.json WatchType: Config file +Info 6 [00:01:24.000] event: {"seq":0,"type":"event","event":"projectLoadingStart","body":{"projectName":"/user/username/projects/myproject/packages/A/tsconfig.json","reason":"Creating possible configured project for /user/username/projects/myproject/packages/A/src/test.ts to open"}} -Info 7 [16:01:25.000] Config: /user/username/projects/myproject/packages/A/tsconfig.json : { +Info 7 [00:01:25.000] Config: /user/username/projects/myproject/packages/A/tsconfig.json : { "rootNames": [ "/user/username/projects/myproject/packages/A/src/test.ts" ], @@ -217,11 +217,11 @@ Info 7 [16:01:25.000] Config: /user/username/projects/myproject/packages/A/ts } ] } -Info 8 [16:01:26.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/packages/a/src 1 undefined Config: /user/username/projects/myproject/packages/A/tsconfig.json WatchType: Wild card directory -Info 9 [16:01:27.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/packages/a/src 1 undefined Config: /user/username/projects/myproject/packages/A/tsconfig.json WatchType: Wild card directory -Info 10 [16:01:28.000] Plugins were requested but not running in environment that supports 'require'. Nothing will be loaded -Info 11 [16:01:29.000] Starting updateGraphWorker: Project: /user/username/projects/myproject/packages/A/tsconfig.json -Info 12 [16:01:30.000] Config: /user/username/projects/myproject/packages/B/tsconfig.json : { +Info 8 [00:01:26.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/packages/a/src 1 undefined Config: /user/username/projects/myproject/packages/A/tsconfig.json WatchType: Wild card directory +Info 9 [00:01:27.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/packages/a/src 1 undefined Config: /user/username/projects/myproject/packages/A/tsconfig.json WatchType: Wild card directory +Info 10 [00:01:28.000] Plugins were requested but not running in environment that supports 'require'. Nothing will be loaded +Info 11 [00:01:29.000] Starting updateGraphWorker: Project: /user/username/projects/myproject/packages/A/tsconfig.json +Info 12 [00:01:30.000] Config: /user/username/projects/myproject/packages/B/tsconfig.json : { "rootNames": [ "/user/username/projects/myproject/packages/B/src/foo.ts", "/user/username/projects/myproject/packages/B/src/bar/foo.ts" @@ -233,30 +233,30 @@ Info 12 [16:01:30.000] Config: /user/username/projects/myproject/packages/B/ts "configFilePath": "/user/username/projects/myproject/packages/B/tsconfig.json" } } -Info 13 [16:01:31.000] 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 14 [16:01:32.000] 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 15 [16:01:33.000] 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 16 [16:01:34.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/packages/B/src/foo.ts 500 undefined WatchType: Closed Script info -Info 17 [16:01:35.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/packages/B/src/bar/foo.ts 500 undefined WatchType: Closed Script info -Info 18 [16:01:36.000] FileWatcher:: Added:: WatchInfo: /a/lib/lib.d.ts 500 undefined WatchType: Closed Script info -Info 19 [16:01:37.000] 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 20 [16:01:38.000] 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 21 [16:01:39.000] 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 -Info 22 [16:01:40.000] Elapsed:: *ms 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 -Info 23 [16:01:41.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/packages/node_modules 1 undefined Project: /user/username/projects/myproject/packages/A/tsconfig.json WatchType: Failed Lookup Locations -Info 24 [16:01:42.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/packages/node_modules 1 undefined Project: /user/username/projects/myproject/packages/A/tsconfig.json WatchType: Failed Lookup Locations -Info 25 [16:01:43.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules 1 undefined Project: /user/username/projects/myproject/packages/A/tsconfig.json WatchType: Failed Lookup Locations -Info 26 [16:01:44.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules 1 undefined Project: /user/username/projects/myproject/packages/A/tsconfig.json WatchType: Failed Lookup Locations -Info 27 [16:01:45.000] 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 28 [16:01:46.000] 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 29 [16:01:47.000] 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 30 [16:01:48.000] 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 -Info 31 [16:01:49.000] Elapsed:: *ms 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 -Info 32 [16:01:50.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/packages/A/tsconfig.json WatchType: Type roots -Info 33 [16:01:51.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/packages/A/tsconfig.json WatchType: Type roots -Info 34 [16:01:52.000] Finishing updateGraphWorker: Project: /user/username/projects/myproject/packages/A/tsconfig.json Version: 1 structureChanged: true structureIsReused:: Not Elapsed:: *ms -Info 35 [16:01:53.000] Project '/user/username/projects/myproject/packages/A/tsconfig.json' (Configured) -Info 36 [16:01:54.000] Files (4) +Info 13 [00:01:31.000] 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 14 [00:01:32.000] 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 15 [00:01:33.000] 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 16 [00:01:34.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/packages/B/src/foo.ts 500 undefined WatchType: Closed Script info +Info 17 [00:01:35.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/packages/B/src/bar/foo.ts 500 undefined WatchType: Closed Script info +Info 18 [00:01:36.000] FileWatcher:: Added:: WatchInfo: /a/lib/lib.d.ts 500 undefined WatchType: Closed Script info +Info 19 [00:01:37.000] 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 20 [00:01:38.000] 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 21 [00:01:39.000] 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 +Info 22 [00:01:40.000] Elapsed:: *ms 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 +Info 23 [00:01:41.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/packages/node_modules 1 undefined Project: /user/username/projects/myproject/packages/A/tsconfig.json WatchType: Failed Lookup Locations +Info 24 [00:01:42.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/packages/node_modules 1 undefined Project: /user/username/projects/myproject/packages/A/tsconfig.json WatchType: Failed Lookup Locations +Info 25 [00:01:43.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules 1 undefined Project: /user/username/projects/myproject/packages/A/tsconfig.json WatchType: Failed Lookup Locations +Info 26 [00:01:44.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules 1 undefined Project: /user/username/projects/myproject/packages/A/tsconfig.json WatchType: Failed Lookup Locations +Info 27 [00:01:45.000] 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 28 [00:01:46.000] 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 29 [00:01:47.000] 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 30 [00:01:48.000] 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 +Info 31 [00:01:49.000] Elapsed:: *ms 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 +Info 32 [00:01:50.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/packages/A/tsconfig.json WatchType: Type roots +Info 33 [00:01:51.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/packages/A/tsconfig.json WatchType: Type roots +Info 34 [00:01:52.000] Finishing updateGraphWorker: Project: /user/username/projects/myproject/packages/A/tsconfig.json Version: 1 structureChanged: true structureIsReused:: Not Elapsed:: *ms +Info 35 [00:01:53.000] Project '/user/username/projects/myproject/packages/A/tsconfig.json' (Configured) +Info 36 [00:01:54.000] Files (4) /a/lib/lib.d.ts /user/username/projects/myproject/packages/B/src/foo.ts /user/username/projects/myproject/packages/B/src/bar/foo.ts @@ -272,22 +272,22 @@ Info 36 [16:01:54.000] Files (4) src/test.ts Matched by include pattern 'src' in 'tsconfig.json' -Info 37 [16:01:55.000] ----------------------------------------------- -Info 38 [16:01:56.000] event: +Info 37 [00:01:55.000] ----------------------------------------------- +Info 38 [00:01:56.000] event: {"seq":0,"type":"event","event":"projectLoadingFinish","body":{"projectName":"/user/username/projects/myproject/packages/A/tsconfig.json"}} -Info 39 [16:01:57.000] event: +Info 39 [00:01:57.000] event: {"seq":0,"type":"event","event":"telemetry","body":{"telemetryEventName":"projectInfo","payload":{"projectId":"8c5cfb88fb6a6125ddaca4c198af63d261c8feb2786e348cbf3223fcf8461e16","fileStats":{"js":0,"jsSize":0,"jsx":0,"jsxSize":0,"ts":3,"tsSize":148,"tsx":0,"tsxSize":0,"dts":1,"dtsSize":334,"deferred":0,"deferredSize":0},"compilerOptions":{"outDir":"","rootDir":"","composite":true},"typeAcquisition":{"enable":false,"include":false,"exclude":false},"extends":false,"files":false,"include":true,"exclude":false,"compileOnSave":false,"configFileName":"tsconfig.json","projectType":"configured","languageServiceEnabled":true,"version":"FakeVersion"}}} -Info 40 [16:01:58.000] event: +Info 40 [00:01:58.000] event: {"seq":0,"type":"event","event":"configFileDiag","body":{"triggerFile":"/user/username/projects/myproject/packages/A/src/test.ts","configFile":"/user/username/projects/myproject/packages/A/tsconfig.json","diagnostics":[]}} -Info 41 [16:01:59.000] Search path: /user/username/projects/myproject/packages/A -Info 42 [16:02:00.000] For info: /user/username/projects/myproject/packages/A/tsconfig.json :: No config files found. -Info 43 [16:02:01.000] Project '/user/username/projects/myproject/packages/A/tsconfig.json' (Configured) -Info 43 [16:02:02.000] Files (4) - -Info 43 [16:02:03.000] ----------------------------------------------- -Info 43 [16:02:04.000] Open files: -Info 43 [16:02:05.000] FileName: /user/username/projects/myproject/packages/A/src/test.ts ProjectRootPath: undefined -Info 43 [16:02:06.000] Projects: /user/username/projects/myproject/packages/A/tsconfig.json +Info 41 [00:01:59.000] Search path: /user/username/projects/myproject/packages/A +Info 42 [00:02:00.000] For info: /user/username/projects/myproject/packages/A/tsconfig.json :: No config files found. +Info 43 [00:02:01.000] Project '/user/username/projects/myproject/packages/A/tsconfig.json' (Configured) +Info 43 [00:02:02.000] Files (4) + +Info 43 [00:02:03.000] ----------------------------------------------- +Info 43 [00:02:04.000] Open files: +Info 43 [00:02:05.000] FileName: /user/username/projects/myproject/packages/A/src/test.ts ProjectRootPath: undefined +Info 43 [00:02:06.000] Projects: /user/username/projects/myproject/packages/A/tsconfig.json After request PolledWatches:: @@ -324,11 +324,11 @@ FsWatchesRecursive:: /user/username/projects/myproject/node_modules: {} -Info 43 [16:02:07.000] response: +Info 43 [00:02:07.000] response: { "responseRequired": false } -Info 44 [16:02:08.000] request: +Info 44 [00:02:08.000] request: { "command": "geterr", "arguments": { @@ -412,7 +412,7 @@ FsWatchesRecursive:: /user/username/projects/myproject/node_modules: {} -Info 45 [16:02:09.000] response: +Info 45 [00:02:09.000] response: { "responseRequired": false } @@ -452,7 +452,7 @@ FsWatchesRecursive:: /user/username/projects/myproject/node_modules: {} -Info 46 [16:02:10.000] event: +Info 46 [00:02:10.000] event: {"seq":0,"type":"event","event":"syntaxDiag","body":{"file":"/user/username/projects/myproject/packages/A/src/test.ts","diagnostics":[]}} After checking timeout queue length (1) and running @@ -526,7 +526,7 @@ FsWatchesRecursive:: /user/username/projects/myproject/node_modules: {} -Info 47 [16:02:11.000] event: +Info 47 [00:02:11.000] event: {"seq":0,"type":"event","event":"semanticDiag","body":{"file":"/user/username/projects/myproject/packages/A/src/test.ts","diagnostics":[]}} Before running immediate callbacks and checking length (1) @@ -600,9 +600,9 @@ FsWatchesRecursive:: /user/username/projects/myproject/node_modules: {} -Info 48 [16:02:12.000] event: +Info 48 [00:02:12.000] event: {"seq":0,"type":"event","event":"suggestionDiag","body":{"file":"/user/username/projects/myproject/packages/A/src/test.ts","diagnostics":[]}} -Info 49 [16:02:13.000] event: +Info 49 [00:02:13.000] event: {"seq":0,"type":"event","event":"requestCompleted","body":{"request_seq":1}} Before running immediate callbacks and checking length (1) @@ -640,7 +640,7 @@ FsWatchesRecursive:: /user/username/projects/myproject/node_modules: {} -Info 50 [16:02:14.000] request: +Info 50 [00:02:14.000] request: { "command": "updateOpen", "arguments": { @@ -738,12 +738,12 @@ FsWatchesRecursive:: /user/username/projects/myproject/node_modules: {} -Info 51 [16:02:15.000] response: +Info 51 [00:02:15.000] response: { "response": true, "responseRequired": true } -Info 52 [16:02:16.000] request: +Info 52 [00:02:16.000] request: { "command": "geterr", "arguments": { @@ -827,7 +827,7 @@ FsWatchesRecursive:: /user/username/projects/myproject/node_modules: {} -Info 53 [16:02:17.000] response: +Info 53 [00:02:17.000] response: { "responseRequired": false } @@ -867,10 +867,10 @@ FsWatchesRecursive:: /user/username/projects/myproject/node_modules: {} -Info 54 [16:02:18.000] Starting updateGraphWorker: Project: /user/username/projects/myproject/packages/A/tsconfig.json -Info 55 [16:02:19.000] Finishing updateGraphWorker: Project: /user/username/projects/myproject/packages/A/tsconfig.json Version: 2 structureChanged: false structureIsReused:: Completely Elapsed:: *ms -Info 56 [16:02:20.000] Different program with same set of files -Info 57 [16:02:21.000] event: +Info 54 [00:02:18.000] Starting updateGraphWorker: Project: /user/username/projects/myproject/packages/A/tsconfig.json +Info 55 [00:02:19.000] Finishing updateGraphWorker: Project: /user/username/projects/myproject/packages/A/tsconfig.json Version: 2 structureChanged: false structureIsReused:: Completely Elapsed:: *ms +Info 56 [00:02:20.000] Different program with same set of files +Info 57 [00:02:21.000] event: {"seq":0,"type":"event","event":"syntaxDiag","body":{"file":"/user/username/projects/myproject/packages/A/src/test.ts","diagnostics":[]}} After checking timeout queue length (1) and running @@ -944,7 +944,7 @@ FsWatchesRecursive:: /user/username/projects/myproject/node_modules: {} -Info 58 [16:02:22.000] event: +Info 58 [00:02:22.000] event: {"seq":0,"type":"event","event":"semanticDiag","body":{"file":"/user/username/projects/myproject/packages/A/src/test.ts","diagnostics":[]}} Before running immediate callbacks and checking length (1) @@ -1018,9 +1018,9 @@ FsWatchesRecursive:: /user/username/projects/myproject/node_modules: {} -Info 59 [16:02:23.000] event: +Info 59 [00:02:23.000] event: {"seq":0,"type":"event","event":"suggestionDiag","body":{"file":"/user/username/projects/myproject/packages/A/src/test.ts","diagnostics":[]}} -Info 60 [16:02:24.000] event: +Info 60 [00:02:24.000] event: {"seq":0,"type":"event","event":"requestCompleted","body":{"request_seq":3}} Before running immediate callbacks and checking length (1) 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 532f55d9ddb45..691f33aa15eec 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 @@ -1,5 +1,5 @@ -Info 0 [16:00:47.000] Provided types map file "/a/lib/typesMap.json" doesn't exist -Info 1 [16:00:48.000] request: +Info 0 [00:00:47.000] Provided types map file "/a/lib/typesMap.json" doesn't exist +Info 1 [00:00:48.000] request: { "seq": 0, "type": "request", @@ -52,13 +52,13 @@ FsWatches:: FsWatchesRecursive:: -Info 2 [16:00:49.000] Search path: /user/username/projects/myproject/packages/A/src -Info 3 [16:00:50.000] For info: /user/username/projects/myproject/packages/A/src/test.ts :: Config file name: /user/username/projects/myproject/packages/A/tsconfig.json -Info 4 [16:00:51.000] Creating configuration project /user/username/projects/myproject/packages/A/tsconfig.json -Info 5 [16:00:52.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/packages/A/tsconfig.json 2000 undefined Project: /user/username/projects/myproject/packages/A/tsconfig.json WatchType: Config file -Info 6 [16:00:53.000] event: +Info 2 [00:00:49.000] Search path: /user/username/projects/myproject/packages/A/src +Info 3 [00:00:50.000] For info: /user/username/projects/myproject/packages/A/src/test.ts :: Config file name: /user/username/projects/myproject/packages/A/tsconfig.json +Info 4 [00:00:51.000] Creating configuration project /user/username/projects/myproject/packages/A/tsconfig.json +Info 5 [00:00:52.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/packages/A/tsconfig.json 2000 undefined Project: /user/username/projects/myproject/packages/A/tsconfig.json WatchType: Config file +Info 6 [00:00:53.000] event: {"seq":0,"type":"event","event":"projectLoadingStart","body":{"projectName":"/user/username/projects/myproject/packages/A/tsconfig.json","reason":"Creating possible configured project for /user/username/projects/myproject/packages/A/src/test.ts to open"}} -Info 7 [16:00:54.000] Config: /user/username/projects/myproject/packages/A/tsconfig.json : { +Info 7 [00:00:54.000] Config: /user/username/projects/myproject/packages/A/tsconfig.json : { "rootNames": [ "/user/username/projects/myproject/packages/A/src/test.ts" ], @@ -76,11 +76,11 @@ Info 7 [16:00:54.000] Config: /user/username/projects/myproject/packages/A/ts } ] } -Info 8 [16:00:55.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/packages/a/src 1 undefined Config: /user/username/projects/myproject/packages/A/tsconfig.json WatchType: Wild card directory -Info 9 [16:00:56.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/packages/a/src 1 undefined Config: /user/username/projects/myproject/packages/A/tsconfig.json WatchType: Wild card directory -Info 10 [16:00:57.000] Plugins were requested but not running in environment that supports 'require'. Nothing will be loaded -Info 11 [16:00:58.000] Starting updateGraphWorker: Project: /user/username/projects/myproject/packages/A/tsconfig.json -Info 12 [16:00:59.000] Config: /user/username/projects/myproject/packages/B/tsconfig.json : { +Info 8 [00:00:55.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/packages/a/src 1 undefined Config: /user/username/projects/myproject/packages/A/tsconfig.json WatchType: Wild card directory +Info 9 [00:00:56.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/packages/a/src 1 undefined Config: /user/username/projects/myproject/packages/A/tsconfig.json WatchType: Wild card directory +Info 10 [00:00:57.000] Plugins were requested but not running in environment that supports 'require'. Nothing will be loaded +Info 11 [00:00:58.000] Starting updateGraphWorker: Project: /user/username/projects/myproject/packages/A/tsconfig.json +Info 12 [00:00:59.000] Config: /user/username/projects/myproject/packages/B/tsconfig.json : { "rootNames": [ "/user/username/projects/myproject/packages/B/src/foo.ts", "/user/username/projects/myproject/packages/B/src/bar/foo.ts" @@ -93,30 +93,30 @@ Info 12 [16:00:59.000] Config: /user/username/projects/myproject/packages/B/ts "configFilePath": "/user/username/projects/myproject/packages/B/tsconfig.json" } } -Info 13 [16:01:00.000] 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 14 [16:01:01.000] 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 15 [16:01:02.000] 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 16 [16:01:03.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/packages/B/src/foo.ts 500 undefined WatchType: Closed Script info -Info 17 [16:01:04.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/packages/B/src/bar/foo.ts 500 undefined WatchType: Closed Script info -Info 18 [16:01:05.000] FileWatcher:: Added:: WatchInfo: /a/lib/lib.d.ts 500 undefined WatchType: Closed Script info -Info 19 [16:01:06.000] 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 20 [16:01:07.000] 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 21 [16:01:08.000] 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 -Info 22 [16:01:09.000] Elapsed:: *ms 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 -Info 23 [16:01:10.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/packages/node_modules 1 undefined Project: /user/username/projects/myproject/packages/A/tsconfig.json WatchType: Failed Lookup Locations -Info 24 [16:01:11.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/packages/node_modules 1 undefined Project: /user/username/projects/myproject/packages/A/tsconfig.json WatchType: Failed Lookup Locations -Info 25 [16:01:12.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules 1 undefined Project: /user/username/projects/myproject/packages/A/tsconfig.json WatchType: Failed Lookup Locations -Info 26 [16:01:13.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules 1 undefined Project: /user/username/projects/myproject/packages/A/tsconfig.json WatchType: Failed Lookup Locations -Info 27 [16:01:14.000] 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 28 [16:01:15.000] 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 29 [16:01:16.000] 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 30 [16:01:17.000] 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 -Info 31 [16:01:18.000] Elapsed:: *ms 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 -Info 32 [16:01:19.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/packages/A/tsconfig.json WatchType: Type roots -Info 33 [16:01:20.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/packages/A/tsconfig.json WatchType: Type roots -Info 34 [16:01:21.000] Finishing updateGraphWorker: Project: /user/username/projects/myproject/packages/A/tsconfig.json Version: 1 structureChanged: true structureIsReused:: Not Elapsed:: *ms -Info 35 [16:01:22.000] Project '/user/username/projects/myproject/packages/A/tsconfig.json' (Configured) -Info 36 [16:01:23.000] Files (4) +Info 13 [00:01:00.000] 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 14 [00:01:01.000] 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 15 [00:01:02.000] 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 16 [00:01:03.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/packages/B/src/foo.ts 500 undefined WatchType: Closed Script info +Info 17 [00:01:04.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/packages/B/src/bar/foo.ts 500 undefined WatchType: Closed Script info +Info 18 [00:01:05.000] FileWatcher:: Added:: WatchInfo: /a/lib/lib.d.ts 500 undefined WatchType: Closed Script info +Info 19 [00:01:06.000] 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 20 [00:01:07.000] 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 21 [00:01:08.000] 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 +Info 22 [00:01:09.000] Elapsed:: *ms 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 +Info 23 [00:01:10.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/packages/node_modules 1 undefined Project: /user/username/projects/myproject/packages/A/tsconfig.json WatchType: Failed Lookup Locations +Info 24 [00:01:11.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/packages/node_modules 1 undefined Project: /user/username/projects/myproject/packages/A/tsconfig.json WatchType: Failed Lookup Locations +Info 25 [00:01:12.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules 1 undefined Project: /user/username/projects/myproject/packages/A/tsconfig.json WatchType: Failed Lookup Locations +Info 26 [00:01:13.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules 1 undefined Project: /user/username/projects/myproject/packages/A/tsconfig.json WatchType: Failed Lookup Locations +Info 27 [00:01:14.000] 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 28 [00:01:15.000] 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 29 [00:01:16.000] 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 30 [00:01:17.000] 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 +Info 31 [00:01:18.000] Elapsed:: *ms 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 +Info 32 [00:01:19.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/packages/A/tsconfig.json WatchType: Type roots +Info 33 [00:01:20.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/packages/A/tsconfig.json WatchType: Type roots +Info 34 [00:01:21.000] Finishing updateGraphWorker: Project: /user/username/projects/myproject/packages/A/tsconfig.json Version: 1 structureChanged: true structureIsReused:: Not Elapsed:: *ms +Info 35 [00:01:22.000] Project '/user/username/projects/myproject/packages/A/tsconfig.json' (Configured) +Info 36 [00:01:23.000] Files (4) /a/lib/lib.d.ts /user/username/projects/myproject/packages/B/src/foo.ts /user/username/projects/myproject/packages/B/src/bar/foo.ts @@ -132,22 +132,22 @@ Info 36 [16:01:23.000] Files (4) src/test.ts Matched by include pattern 'src' in 'tsconfig.json' -Info 37 [16:01:24.000] ----------------------------------------------- -Info 38 [16:01:25.000] event: +Info 37 [00:01:24.000] ----------------------------------------------- +Info 38 [00:01:25.000] event: {"seq":0,"type":"event","event":"projectLoadingFinish","body":{"projectName":"/user/username/projects/myproject/packages/A/tsconfig.json"}} -Info 39 [16:01:26.000] event: +Info 39 [00:01:26.000] event: {"seq":0,"type":"event","event":"telemetry","body":{"telemetryEventName":"projectInfo","payload":{"projectId":"8c5cfb88fb6a6125ddaca4c198af63d261c8feb2786e348cbf3223fcf8461e16","fileStats":{"js":0,"jsSize":0,"jsx":0,"jsxSize":0,"ts":3,"tsSize":148,"tsx":0,"tsxSize":0,"dts":1,"dtsSize":334,"deferred":0,"deferredSize":0},"compilerOptions":{"outDir":"","rootDir":"","composite":true,"preserveSymlinks":true},"typeAcquisition":{"enable":false,"include":false,"exclude":false},"extends":false,"files":false,"include":true,"exclude":false,"compileOnSave":false,"configFileName":"tsconfig.json","projectType":"configured","languageServiceEnabled":true,"version":"FakeVersion"}}} -Info 40 [16:01:27.000] event: +Info 40 [00:01:27.000] event: {"seq":0,"type":"event","event":"configFileDiag","body":{"triggerFile":"/user/username/projects/myproject/packages/A/src/test.ts","configFile":"/user/username/projects/myproject/packages/A/tsconfig.json","diagnostics":[]}} -Info 41 [16:01:28.000] Search path: /user/username/projects/myproject/packages/A -Info 42 [16:01:29.000] For info: /user/username/projects/myproject/packages/A/tsconfig.json :: No config files found. -Info 43 [16:01:30.000] Project '/user/username/projects/myproject/packages/A/tsconfig.json' (Configured) -Info 43 [16:01:31.000] Files (4) - -Info 43 [16:01:32.000] ----------------------------------------------- -Info 43 [16:01:33.000] Open files: -Info 43 [16:01:34.000] FileName: /user/username/projects/myproject/packages/A/src/test.ts ProjectRootPath: undefined -Info 43 [16:01:35.000] Projects: /user/username/projects/myproject/packages/A/tsconfig.json +Info 41 [00:01:28.000] Search path: /user/username/projects/myproject/packages/A +Info 42 [00:01:29.000] For info: /user/username/projects/myproject/packages/A/tsconfig.json :: No config files found. +Info 43 [00:01:30.000] Project '/user/username/projects/myproject/packages/A/tsconfig.json' (Configured) +Info 43 [00:01:31.000] Files (4) + +Info 43 [00:01:32.000] ----------------------------------------------- +Info 43 [00:01:33.000] Open files: +Info 43 [00:01:34.000] FileName: /user/username/projects/myproject/packages/A/src/test.ts ProjectRootPath: undefined +Info 43 [00:01:35.000] Projects: /user/username/projects/myproject/packages/A/tsconfig.json After request PolledWatches:: @@ -184,11 +184,11 @@ FsWatchesRecursive:: /user/username/projects/myproject/node_modules: {} -Info 43 [16:01:36.000] response: +Info 43 [00:01:36.000] response: { "responseRequired": false } -Info 44 [16:01:37.000] request: +Info 44 [00:01:37.000] request: { "command": "geterr", "arguments": { @@ -272,7 +272,7 @@ FsWatchesRecursive:: /user/username/projects/myproject/node_modules: {} -Info 45 [16:01:38.000] response: +Info 45 [00:01:38.000] response: { "responseRequired": false } @@ -312,7 +312,7 @@ FsWatchesRecursive:: /user/username/projects/myproject/node_modules: {} -Info 46 [16:01:39.000] event: +Info 46 [00:01:39.000] event: {"seq":0,"type":"event","event":"syntaxDiag","body":{"file":"/user/username/projects/myproject/packages/A/src/test.ts","diagnostics":[]}} After checking timeout queue length (1) and running @@ -386,7 +386,7 @@ FsWatchesRecursive:: /user/username/projects/myproject/node_modules: {} -Info 47 [16:01:40.000] event: +Info 47 [00:01:40.000] event: {"seq":0,"type":"event","event":"semanticDiag","body":{"file":"/user/username/projects/myproject/packages/A/src/test.ts","diagnostics":[]}} Before running immediate callbacks and checking length (1) @@ -460,9 +460,9 @@ FsWatchesRecursive:: /user/username/projects/myproject/node_modules: {} -Info 48 [16:01:41.000] event: +Info 48 [00:01:41.000] event: {"seq":0,"type":"event","event":"suggestionDiag","body":{"file":"/user/username/projects/myproject/packages/A/src/test.ts","diagnostics":[]}} -Info 49 [16:01:42.000] event: +Info 49 [00:01:42.000] event: {"seq":0,"type":"event","event":"requestCompleted","body":{"request_seq":1}} Before running immediate callbacks and checking length (1) @@ -500,7 +500,7 @@ FsWatchesRecursive:: /user/username/projects/myproject/node_modules: {} -Info 50 [16:01:43.000] request: +Info 50 [00:01:43.000] request: { "command": "updateOpen", "arguments": { @@ -598,12 +598,12 @@ FsWatchesRecursive:: /user/username/projects/myproject/node_modules: {} -Info 51 [16:01:44.000] response: +Info 51 [00:01:44.000] response: { "response": true, "responseRequired": true } -Info 52 [16:01:45.000] request: +Info 52 [00:01:45.000] request: { "command": "geterr", "arguments": { @@ -687,7 +687,7 @@ FsWatchesRecursive:: /user/username/projects/myproject/node_modules: {} -Info 53 [16:01:46.000] response: +Info 53 [00:01:46.000] response: { "responseRequired": false } @@ -727,10 +727,10 @@ FsWatchesRecursive:: /user/username/projects/myproject/node_modules: {} -Info 54 [16:01:47.000] Starting updateGraphWorker: Project: /user/username/projects/myproject/packages/A/tsconfig.json -Info 55 [16:01:48.000] Finishing updateGraphWorker: Project: /user/username/projects/myproject/packages/A/tsconfig.json Version: 2 structureChanged: false structureIsReused:: Completely Elapsed:: *ms -Info 56 [16:01:49.000] Different program with same set of files -Info 57 [16:01:50.000] event: +Info 54 [00:01:47.000] Starting updateGraphWorker: Project: /user/username/projects/myproject/packages/A/tsconfig.json +Info 55 [00:01:48.000] Finishing updateGraphWorker: Project: /user/username/projects/myproject/packages/A/tsconfig.json Version: 2 structureChanged: false structureIsReused:: Completely Elapsed:: *ms +Info 56 [00:01:49.000] Different program with same set of files +Info 57 [00:01:50.000] event: {"seq":0,"type":"event","event":"syntaxDiag","body":{"file":"/user/username/projects/myproject/packages/A/src/test.ts","diagnostics":[]}} After checking timeout queue length (1) and running @@ -804,7 +804,7 @@ FsWatchesRecursive:: /user/username/projects/myproject/node_modules: {} -Info 58 [16:01:51.000] event: +Info 58 [00:01:51.000] event: {"seq":0,"type":"event","event":"semanticDiag","body":{"file":"/user/username/projects/myproject/packages/A/src/test.ts","diagnostics":[]}} Before running immediate callbacks and checking length (1) @@ -878,9 +878,9 @@ FsWatchesRecursive:: /user/username/projects/myproject/node_modules: {} -Info 59 [16:01:52.000] event: +Info 59 [00:01:52.000] event: {"seq":0,"type":"event","event":"suggestionDiag","body":{"file":"/user/username/projects/myproject/packages/A/src/test.ts","diagnostics":[]}} -Info 60 [16:01:53.000] event: +Info 60 [00:01:53.000] event: {"seq":0,"type":"event","event":"requestCompleted","body":{"request_seq":3}} Before running immediate callbacks and checking length (1) 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 b7751823b94ba..2f8276f94f61c 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 @@ -1,5 +1,5 @@ -Info 0 [16:00:47.000] Provided types map file "/a/lib/typesMap.json" doesn't exist -Info 1 [16:00:48.000] request: +Info 0 [00:00:47.000] Provided types map file "/a/lib/typesMap.json" doesn't exist +Info 1 [00:00:48.000] request: { "seq": 0, "type": "request", @@ -52,13 +52,13 @@ FsWatches:: FsWatchesRecursive:: -Info 2 [16:00:49.000] Search path: /user/username/projects/myproject/packages/A/src -Info 3 [16:00:50.000] For info: /user/username/projects/myproject/packages/A/src/test.ts :: Config file name: /user/username/projects/myproject/packages/A/tsconfig.json -Info 4 [16:00:51.000] Creating configuration project /user/username/projects/myproject/packages/A/tsconfig.json -Info 5 [16:00:52.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/packages/A/tsconfig.json 2000 undefined Project: /user/username/projects/myproject/packages/A/tsconfig.json WatchType: Config file -Info 6 [16:00:53.000] event: +Info 2 [00:00:49.000] Search path: /user/username/projects/myproject/packages/A/src +Info 3 [00:00:50.000] For info: /user/username/projects/myproject/packages/A/src/test.ts :: Config file name: /user/username/projects/myproject/packages/A/tsconfig.json +Info 4 [00:00:51.000] Creating configuration project /user/username/projects/myproject/packages/A/tsconfig.json +Info 5 [00:00:52.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/packages/A/tsconfig.json 2000 undefined Project: /user/username/projects/myproject/packages/A/tsconfig.json WatchType: Config file +Info 6 [00:00:53.000] event: {"seq":0,"type":"event","event":"projectLoadingStart","body":{"projectName":"/user/username/projects/myproject/packages/A/tsconfig.json","reason":"Creating possible configured project for /user/username/projects/myproject/packages/A/src/test.ts to open"}} -Info 7 [16:00:54.000] Config: /user/username/projects/myproject/packages/A/tsconfig.json : { +Info 7 [00:00:54.000] Config: /user/username/projects/myproject/packages/A/tsconfig.json : { "rootNames": [ "/user/username/projects/myproject/packages/A/src/test.ts" ], @@ -75,11 +75,11 @@ Info 7 [16:00:54.000] Config: /user/username/projects/myproject/packages/A/ts } ] } -Info 8 [16:00:55.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/packages/a/src 1 undefined Config: /user/username/projects/myproject/packages/A/tsconfig.json WatchType: Wild card directory -Info 9 [16:00:56.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/packages/a/src 1 undefined Config: /user/username/projects/myproject/packages/A/tsconfig.json WatchType: Wild card directory -Info 10 [16:00:57.000] Plugins were requested but not running in environment that supports 'require'. Nothing will be loaded -Info 11 [16:00:58.000] Starting updateGraphWorker: Project: /user/username/projects/myproject/packages/A/tsconfig.json -Info 12 [16:00:59.000] Config: /user/username/projects/myproject/packages/B/tsconfig.json : { +Info 8 [00:00:55.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/packages/a/src 1 undefined Config: /user/username/projects/myproject/packages/A/tsconfig.json WatchType: Wild card directory +Info 9 [00:00:56.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/packages/a/src 1 undefined Config: /user/username/projects/myproject/packages/A/tsconfig.json WatchType: Wild card directory +Info 10 [00:00:57.000] Plugins were requested but not running in environment that supports 'require'. Nothing will be loaded +Info 11 [00:00:58.000] Starting updateGraphWorker: Project: /user/username/projects/myproject/packages/A/tsconfig.json +Info 12 [00:00:59.000] Config: /user/username/projects/myproject/packages/B/tsconfig.json : { "rootNames": [ "/user/username/projects/myproject/packages/B/src/foo.ts", "/user/username/projects/myproject/packages/B/src/bar/foo.ts" @@ -91,30 +91,30 @@ Info 12 [16:00:59.000] Config: /user/username/projects/myproject/packages/B/ts "configFilePath": "/user/username/projects/myproject/packages/B/tsconfig.json" } } -Info 13 [16:01:00.000] 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 14 [16:01:01.000] 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 15 [16:01:02.000] 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 16 [16:01:03.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/packages/B/src/foo.ts 500 undefined WatchType: Closed Script info -Info 17 [16:01:04.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/packages/B/src/bar/foo.ts 500 undefined WatchType: Closed Script info -Info 18 [16:01:05.000] FileWatcher:: Added:: WatchInfo: /a/lib/lib.d.ts 500 undefined WatchType: Closed Script info -Info 19 [16:01:06.000] 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 20 [16:01:07.000] 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 21 [16:01:08.000] 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 -Info 22 [16:01:09.000] Elapsed:: *ms 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 -Info 23 [16:01:10.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/packages/node_modules 1 undefined Project: /user/username/projects/myproject/packages/A/tsconfig.json WatchType: Failed Lookup Locations -Info 24 [16:01:11.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/packages/node_modules 1 undefined Project: /user/username/projects/myproject/packages/A/tsconfig.json WatchType: Failed Lookup Locations -Info 25 [16:01:12.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules 1 undefined Project: /user/username/projects/myproject/packages/A/tsconfig.json WatchType: Failed Lookup Locations -Info 26 [16:01:13.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules 1 undefined Project: /user/username/projects/myproject/packages/A/tsconfig.json WatchType: Failed Lookup Locations -Info 27 [16:01:14.000] 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 28 [16:01:15.000] 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 29 [16:01:16.000] 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 30 [16:01:17.000] 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 -Info 31 [16:01:18.000] Elapsed:: *ms 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 -Info 32 [16:01:19.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/packages/A/tsconfig.json WatchType: Type roots -Info 33 [16:01:20.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/packages/A/tsconfig.json WatchType: Type roots -Info 34 [16:01:21.000] Finishing updateGraphWorker: Project: /user/username/projects/myproject/packages/A/tsconfig.json Version: 1 structureChanged: true structureIsReused:: Not Elapsed:: *ms -Info 35 [16:01:22.000] Project '/user/username/projects/myproject/packages/A/tsconfig.json' (Configured) -Info 36 [16:01:23.000] Files (4) +Info 13 [00:01:00.000] 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 14 [00:01:01.000] 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 15 [00:01:02.000] 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 16 [00:01:03.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/packages/B/src/foo.ts 500 undefined WatchType: Closed Script info +Info 17 [00:01:04.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/packages/B/src/bar/foo.ts 500 undefined WatchType: Closed Script info +Info 18 [00:01:05.000] FileWatcher:: Added:: WatchInfo: /a/lib/lib.d.ts 500 undefined WatchType: Closed Script info +Info 19 [00:01:06.000] 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 20 [00:01:07.000] 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 21 [00:01:08.000] 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 +Info 22 [00:01:09.000] Elapsed:: *ms 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 +Info 23 [00:01:10.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/packages/node_modules 1 undefined Project: /user/username/projects/myproject/packages/A/tsconfig.json WatchType: Failed Lookup Locations +Info 24 [00:01:11.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/packages/node_modules 1 undefined Project: /user/username/projects/myproject/packages/A/tsconfig.json WatchType: Failed Lookup Locations +Info 25 [00:01:12.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules 1 undefined Project: /user/username/projects/myproject/packages/A/tsconfig.json WatchType: Failed Lookup Locations +Info 26 [00:01:13.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules 1 undefined Project: /user/username/projects/myproject/packages/A/tsconfig.json WatchType: Failed Lookup Locations +Info 27 [00:01:14.000] 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 28 [00:01:15.000] 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 29 [00:01:16.000] 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 30 [00:01:17.000] 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 +Info 31 [00:01:18.000] Elapsed:: *ms 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 +Info 32 [00:01:19.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/packages/A/tsconfig.json WatchType: Type roots +Info 33 [00:01:20.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/packages/A/tsconfig.json WatchType: Type roots +Info 34 [00:01:21.000] Finishing updateGraphWorker: Project: /user/username/projects/myproject/packages/A/tsconfig.json Version: 1 structureChanged: true structureIsReused:: Not Elapsed:: *ms +Info 35 [00:01:22.000] Project '/user/username/projects/myproject/packages/A/tsconfig.json' (Configured) +Info 36 [00:01:23.000] Files (4) /a/lib/lib.d.ts /user/username/projects/myproject/packages/B/src/foo.ts /user/username/projects/myproject/packages/B/src/bar/foo.ts @@ -130,22 +130,22 @@ Info 36 [16:01:23.000] Files (4) src/test.ts Matched by include pattern 'src' in 'tsconfig.json' -Info 37 [16:01:24.000] ----------------------------------------------- -Info 38 [16:01:25.000] event: +Info 37 [00:01:24.000] ----------------------------------------------- +Info 38 [00:01:25.000] event: {"seq":0,"type":"event","event":"projectLoadingFinish","body":{"projectName":"/user/username/projects/myproject/packages/A/tsconfig.json"}} -Info 39 [16:01:26.000] event: +Info 39 [00:01:26.000] event: {"seq":0,"type":"event","event":"telemetry","body":{"telemetryEventName":"projectInfo","payload":{"projectId":"8c5cfb88fb6a6125ddaca4c198af63d261c8feb2786e348cbf3223fcf8461e16","fileStats":{"js":0,"jsSize":0,"jsx":0,"jsxSize":0,"ts":3,"tsSize":148,"tsx":0,"tsxSize":0,"dts":1,"dtsSize":334,"deferred":0,"deferredSize":0},"compilerOptions":{"outDir":"","rootDir":"","composite":true},"typeAcquisition":{"enable":false,"include":false,"exclude":false},"extends":false,"files":false,"include":true,"exclude":false,"compileOnSave":false,"configFileName":"tsconfig.json","projectType":"configured","languageServiceEnabled":true,"version":"FakeVersion"}}} -Info 40 [16:01:27.000] event: +Info 40 [00:01:27.000] event: {"seq":0,"type":"event","event":"configFileDiag","body":{"triggerFile":"/user/username/projects/myproject/packages/A/src/test.ts","configFile":"/user/username/projects/myproject/packages/A/tsconfig.json","diagnostics":[]}} -Info 41 [16:01:28.000] Search path: /user/username/projects/myproject/packages/A -Info 42 [16:01:29.000] For info: /user/username/projects/myproject/packages/A/tsconfig.json :: No config files found. -Info 43 [16:01:30.000] Project '/user/username/projects/myproject/packages/A/tsconfig.json' (Configured) -Info 43 [16:01:31.000] Files (4) - -Info 43 [16:01:32.000] ----------------------------------------------- -Info 43 [16:01:33.000] Open files: -Info 43 [16:01:34.000] FileName: /user/username/projects/myproject/packages/A/src/test.ts ProjectRootPath: undefined -Info 43 [16:01:35.000] Projects: /user/username/projects/myproject/packages/A/tsconfig.json +Info 41 [00:01:28.000] Search path: /user/username/projects/myproject/packages/A +Info 42 [00:01:29.000] For info: /user/username/projects/myproject/packages/A/tsconfig.json :: No config files found. +Info 43 [00:01:30.000] Project '/user/username/projects/myproject/packages/A/tsconfig.json' (Configured) +Info 43 [00:01:31.000] Files (4) + +Info 43 [00:01:32.000] ----------------------------------------------- +Info 43 [00:01:33.000] Open files: +Info 43 [00:01:34.000] FileName: /user/username/projects/myproject/packages/A/src/test.ts ProjectRootPath: undefined +Info 43 [00:01:35.000] Projects: /user/username/projects/myproject/packages/A/tsconfig.json After request PolledWatches:: @@ -182,11 +182,11 @@ FsWatchesRecursive:: /user/username/projects/myproject/node_modules: {} -Info 43 [16:01:36.000] response: +Info 43 [00:01:36.000] response: { "responseRequired": false } -Info 44 [16:01:37.000] request: +Info 44 [00:01:37.000] request: { "command": "geterr", "arguments": { @@ -270,7 +270,7 @@ FsWatchesRecursive:: /user/username/projects/myproject/node_modules: {} -Info 45 [16:01:38.000] response: +Info 45 [00:01:38.000] response: { "responseRequired": false } @@ -310,7 +310,7 @@ FsWatchesRecursive:: /user/username/projects/myproject/node_modules: {} -Info 46 [16:01:39.000] event: +Info 46 [00:01:39.000] event: {"seq":0,"type":"event","event":"syntaxDiag","body":{"file":"/user/username/projects/myproject/packages/A/src/test.ts","diagnostics":[]}} After checking timeout queue length (1) and running @@ -384,7 +384,7 @@ FsWatchesRecursive:: /user/username/projects/myproject/node_modules: {} -Info 47 [16:01:40.000] event: +Info 47 [00:01:40.000] event: {"seq":0,"type":"event","event":"semanticDiag","body":{"file":"/user/username/projects/myproject/packages/A/src/test.ts","diagnostics":[]}} Before running immediate callbacks and checking length (1) @@ -458,9 +458,9 @@ FsWatchesRecursive:: /user/username/projects/myproject/node_modules: {} -Info 48 [16:01:41.000] event: +Info 48 [00:01:41.000] event: {"seq":0,"type":"event","event":"suggestionDiag","body":{"file":"/user/username/projects/myproject/packages/A/src/test.ts","diagnostics":[]}} -Info 49 [16:01:42.000] event: +Info 49 [00:01:42.000] event: {"seq":0,"type":"event","event":"requestCompleted","body":{"request_seq":1}} Before running immediate callbacks and checking length (1) @@ -498,7 +498,7 @@ FsWatchesRecursive:: /user/username/projects/myproject/node_modules: {} -Info 50 [16:01:43.000] request: +Info 50 [00:01:43.000] request: { "command": "updateOpen", "arguments": { @@ -596,12 +596,12 @@ FsWatchesRecursive:: /user/username/projects/myproject/node_modules: {} -Info 51 [16:01:44.000] response: +Info 51 [00:01:44.000] response: { "response": true, "responseRequired": true } -Info 52 [16:01:45.000] request: +Info 52 [00:01:45.000] request: { "command": "geterr", "arguments": { @@ -685,7 +685,7 @@ FsWatchesRecursive:: /user/username/projects/myproject/node_modules: {} -Info 53 [16:01:46.000] response: +Info 53 [00:01:46.000] response: { "responseRequired": false } @@ -725,10 +725,10 @@ FsWatchesRecursive:: /user/username/projects/myproject/node_modules: {} -Info 54 [16:01:47.000] Starting updateGraphWorker: Project: /user/username/projects/myproject/packages/A/tsconfig.json -Info 55 [16:01:48.000] Finishing updateGraphWorker: Project: /user/username/projects/myproject/packages/A/tsconfig.json Version: 2 structureChanged: false structureIsReused:: Completely Elapsed:: *ms -Info 56 [16:01:49.000] Different program with same set of files -Info 57 [16:01:50.000] event: +Info 54 [00:01:47.000] Starting updateGraphWorker: Project: /user/username/projects/myproject/packages/A/tsconfig.json +Info 55 [00:01:48.000] Finishing updateGraphWorker: Project: /user/username/projects/myproject/packages/A/tsconfig.json Version: 2 structureChanged: false structureIsReused:: Completely Elapsed:: *ms +Info 56 [00:01:49.000] Different program with same set of files +Info 57 [00:01:50.000] event: {"seq":0,"type":"event","event":"syntaxDiag","body":{"file":"/user/username/projects/myproject/packages/A/src/test.ts","diagnostics":[]}} After checking timeout queue length (1) and running @@ -802,7 +802,7 @@ FsWatchesRecursive:: /user/username/projects/myproject/node_modules: {} -Info 58 [16:01:51.000] event: +Info 58 [00:01:51.000] event: {"seq":0,"type":"event","event":"semanticDiag","body":{"file":"/user/username/projects/myproject/packages/A/src/test.ts","diagnostics":[]}} Before running immediate callbacks and checking length (1) @@ -876,9 +876,9 @@ FsWatchesRecursive:: /user/username/projects/myproject/node_modules: {} -Info 59 [16:01:52.000] event: +Info 59 [00:01:52.000] event: {"seq":0,"type":"event","event":"suggestionDiag","body":{"file":"/user/username/projects/myproject/packages/A/src/test.ts","diagnostics":[]}} -Info 60 [16:01:53.000] event: +Info 60 [00:01:53.000] event: {"seq":0,"type":"event","event":"requestCompleted","body":{"request_seq":3}} Before running immediate callbacks and checking length (1) diff --git a/tests/baselines/reference/tsserver/projectReferences/new-file-is-added-to-the-referenced-project-when-referenced-project-is-not-open-with-disableSourceOfProjectReferenceRedirect.js b/tests/baselines/reference/tsserver/projectReferences/new-file-is-added-to-the-referenced-project-when-referenced-project-is-not-open-with-disableSourceOfProjectReferenceRedirect.js index f1c82eae84f71..8d719602f473a 100644 --- a/tests/baselines/reference/tsserver/projectReferences/new-file-is-added-to-the-referenced-project-when-referenced-project-is-not-open-with-disableSourceOfProjectReferenceRedirect.js +++ b/tests/baselines/reference/tsserver/projectReferences/new-file-is-added-to-the-referenced-project-when-referenced-project-is-not-open-with-disableSourceOfProjectReferenceRedirect.js @@ -1,5 +1,5 @@ -Info 0 [16:00:33.000] Provided types map file "/a/lib/typesMap.json" doesn't exist -Info 1 [16:00:34.000] request: +Info 0 [00:00:33.000] Provided types map file "/a/lib/typesMap.json" doesn't exist +Info 1 [00:00:34.000] request: { "seq": 0, "type": "request", @@ -44,11 +44,11 @@ FsWatches:: FsWatchesRecursive:: -Info 2 [16:00:35.000] Search path: /user/username/projects/myproject/projects/project2 -Info 3 [16:00:36.000] For info: /user/username/projects/myproject/projects/project2/class2.ts :: Config file name: /user/username/projects/myproject/projects/project2/tsconfig.json -Info 4 [16:00:37.000] Creating configuration project /user/username/projects/myproject/projects/project2/tsconfig.json -Info 5 [16:00:38.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/projects/project2/tsconfig.json 2000 undefined Project: /user/username/projects/myproject/projects/project2/tsconfig.json WatchType: Config file -Info 6 [16:00:39.000] Config: /user/username/projects/myproject/projects/project2/tsconfig.json : { +Info 2 [00:00:35.000] Search path: /user/username/projects/myproject/projects/project2 +Info 3 [00:00:36.000] For info: /user/username/projects/myproject/projects/project2/class2.ts :: Config file name: /user/username/projects/myproject/projects/project2/tsconfig.json +Info 4 [00:00:37.000] Creating configuration project /user/username/projects/myproject/projects/project2/tsconfig.json +Info 5 [00:00:38.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/projects/project2/tsconfig.json 2000 undefined Project: /user/username/projects/myproject/projects/project2/tsconfig.json WatchType: Config file +Info 6 [00:00:39.000] Config: /user/username/projects/myproject/projects/project2/tsconfig.json : { "rootNames": [ "/user/username/projects/myproject/projects/project2/class2.ts" ], @@ -65,11 +65,11 @@ Info 6 [16:00:39.000] Config: /user/username/projects/myproject/projects/proj } ] } -Info 7 [16:00:40.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/projects/project2 1 undefined Config: /user/username/projects/myproject/projects/project2/tsconfig.json WatchType: Wild card directory -Info 8 [16:00:41.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/projects/project2 1 undefined Config: /user/username/projects/myproject/projects/project2/tsconfig.json WatchType: Wild card directory -Info 9 [16:00:42.000] Plugins were requested but not running in environment that supports 'require'. Nothing will be loaded -Info 10 [16:00:43.000] Starting updateGraphWorker: Project: /user/username/projects/myproject/projects/project2/tsconfig.json -Info 11 [16:00:44.000] Config: /user/username/projects/myproject/projects/project1/tsconfig.json : { +Info 7 [00:00:40.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/projects/project2 1 undefined Config: /user/username/projects/myproject/projects/project2/tsconfig.json WatchType: Wild card directory +Info 8 [00:00:41.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/projects/project2 1 undefined Config: /user/username/projects/myproject/projects/project2/tsconfig.json WatchType: Wild card directory +Info 9 [00:00:42.000] Plugins were requested but not running in environment that supports 'require'. Nothing will be loaded +Info 10 [00:00:43.000] Starting updateGraphWorker: Project: /user/username/projects/myproject/projects/project2/tsconfig.json +Info 11 [00:00:44.000] Config: /user/username/projects/myproject/projects/project1/tsconfig.json : { "rootNames": [ "/user/username/projects/myproject/projects/project1/class1.ts" ], @@ -79,20 +79,20 @@ Info 11 [16:00:44.000] Config: /user/username/projects/myproject/projects/proj "configFilePath": "/user/username/projects/myproject/projects/project1/tsconfig.json" } } -Info 12 [16:00:45.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/projects/project1/tsconfig.json 2000 undefined Project: /user/username/projects/myproject/projects/project2/tsconfig.json WatchType: Config file -Info 13 [16:00:46.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/projects/project1 1 undefined Config: /user/username/projects/myproject/projects/project1/tsconfig.json WatchType: Wild card directory -Info 14 [16:00:47.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/projects/project1 1 undefined Config: /user/username/projects/myproject/projects/project1/tsconfig.json WatchType: Wild card directory -Info 15 [16:00:48.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/projects/project1/class1.d.ts 500 undefined WatchType: Closed Script info -Info 16 [16:00:49.000] FileWatcher:: Added:: WatchInfo: /a/lib/lib.d.ts 500 undefined WatchType: Closed Script info -Info 17 [16:00:50.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/projects/project2/node_modules/@types 1 undefined Project: /user/username/projects/myproject/projects/project2/tsconfig.json WatchType: Type roots -Info 18 [16:00:51.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/projects/project2/node_modules/@types 1 undefined Project: /user/username/projects/myproject/projects/project2/tsconfig.json WatchType: Type roots -Info 19 [16:00:52.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/projects/node_modules/@types 1 undefined Project: /user/username/projects/myproject/projects/project2/tsconfig.json WatchType: Type roots -Info 20 [16:00:53.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/projects/node_modules/@types 1 undefined Project: /user/username/projects/myproject/projects/project2/tsconfig.json WatchType: Type roots -Info 21 [16:00:54.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/projects/project2/tsconfig.json WatchType: Type roots -Info 22 [16:00:55.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/projects/project2/tsconfig.json WatchType: Type roots -Info 23 [16:00:56.000] Finishing updateGraphWorker: Project: /user/username/projects/myproject/projects/project2/tsconfig.json Version: 1 structureChanged: true structureIsReused:: Not Elapsed:: *ms -Info 24 [16:00:57.000] Project '/user/username/projects/myproject/projects/project2/tsconfig.json' (Configured) -Info 25 [16:00:58.000] Files (3) +Info 12 [00:00:45.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/projects/project1/tsconfig.json 2000 undefined Project: /user/username/projects/myproject/projects/project2/tsconfig.json WatchType: Config file +Info 13 [00:00:46.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/projects/project1 1 undefined Config: /user/username/projects/myproject/projects/project1/tsconfig.json WatchType: Wild card directory +Info 14 [00:00:47.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/projects/project1 1 undefined Config: /user/username/projects/myproject/projects/project1/tsconfig.json WatchType: Wild card directory +Info 15 [00:00:48.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/projects/project1/class1.d.ts 500 undefined WatchType: Closed Script info +Info 16 [00:00:49.000] FileWatcher:: Added:: WatchInfo: /a/lib/lib.d.ts 500 undefined WatchType: Closed Script info +Info 17 [00:00:50.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/projects/project2/node_modules/@types 1 undefined Project: /user/username/projects/myproject/projects/project2/tsconfig.json WatchType: Type roots +Info 18 [00:00:51.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/projects/project2/node_modules/@types 1 undefined Project: /user/username/projects/myproject/projects/project2/tsconfig.json WatchType: Type roots +Info 19 [00:00:52.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/projects/node_modules/@types 1 undefined Project: /user/username/projects/myproject/projects/project2/tsconfig.json WatchType: Type roots +Info 20 [00:00:53.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/projects/node_modules/@types 1 undefined Project: /user/username/projects/myproject/projects/project2/tsconfig.json WatchType: Type roots +Info 21 [00:00:54.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/projects/project2/tsconfig.json WatchType: Type roots +Info 22 [00:00:55.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/projects/project2/tsconfig.json WatchType: Type roots +Info 23 [00:00:56.000] Finishing updateGraphWorker: Project: /user/username/projects/myproject/projects/project2/tsconfig.json Version: 1 structureChanged: true structureIsReused:: Not Elapsed:: *ms +Info 24 [00:00:57.000] Project '/user/username/projects/myproject/projects/project2/tsconfig.json' (Configured) +Info 25 [00:00:58.000] Files (3) /a/lib/lib.d.ts /user/username/projects/myproject/projects/project1/class1.d.ts /user/username/projects/myproject/projects/project2/class2.ts @@ -105,16 +105,16 @@ Info 25 [16:00:58.000] Files (3) class2.ts Matched by default include pattern '**/*' -Info 26 [16:00:59.000] ----------------------------------------------- -Info 27 [16:01:00.000] Search path: /user/username/projects/myproject/projects/project2 -Info 28 [16:01:01.000] For info: /user/username/projects/myproject/projects/project2/tsconfig.json :: No config files found. -Info 29 [16:01:02.000] Project '/user/username/projects/myproject/projects/project2/tsconfig.json' (Configured) -Info 29 [16:01:03.000] Files (3) +Info 26 [00:00:59.000] ----------------------------------------------- +Info 27 [00:01:00.000] Search path: /user/username/projects/myproject/projects/project2 +Info 28 [00:01:01.000] For info: /user/username/projects/myproject/projects/project2/tsconfig.json :: No config files found. +Info 29 [00:01:02.000] Project '/user/username/projects/myproject/projects/project2/tsconfig.json' (Configured) +Info 29 [00:01:03.000] Files (3) -Info 29 [16:01:04.000] ----------------------------------------------- -Info 29 [16:01:05.000] Open files: -Info 29 [16:01:06.000] FileName: /user/username/projects/myproject/projects/project2/class2.ts ProjectRootPath: undefined -Info 29 [16:01:07.000] Projects: /user/username/projects/myproject/projects/project2/tsconfig.json +Info 29 [00:01:04.000] ----------------------------------------------- +Info 29 [00:01:05.000] Open files: +Info 29 [00:01:06.000] FileName: /user/username/projects/myproject/projects/project2/class2.ts ProjectRootPath: undefined +Info 29 [00:01:07.000] Projects: /user/username/projects/myproject/projects/project2/tsconfig.json After request PolledWatches:: @@ -141,14 +141,14 @@ FsWatchesRecursive:: /user/username/projects/myproject/projects/project1: {} -Info 29 [16:01:08.000] response: +Info 29 [00:01:08.000] response: { "responseRequired": false } -Info 30 [16:01:11.000] DirectoryWatcher:: Triggered with /user/username/projects/myproject/projects/project1/class3.ts :: WatchInfo: /user/username/projects/myproject/projects/project1 1 undefined Config: /user/username/projects/myproject/projects/project1/tsconfig.json WatchType: Wild card directory -Info 31 [16:01:12.000] Scheduled: /user/username/projects/myproject/projects/project2/tsconfig.json -Info 32 [16:01:13.000] Scheduled: *ensureProjectForOpenFiles* -Info 33 [16:01:14.000] Elapsed:: *ms DirectoryWatcher:: Triggered with /user/username/projects/myproject/projects/project1/class3.ts :: WatchInfo: /user/username/projects/myproject/projects/project1 1 undefined Config: /user/username/projects/myproject/projects/project1/tsconfig.json WatchType: Wild card directory +Info 30 [00:01:11.000] DirectoryWatcher:: Triggered with /user/username/projects/myproject/projects/project1/class3.ts :: WatchInfo: /user/username/projects/myproject/projects/project1 1 undefined Config: /user/username/projects/myproject/projects/project1/tsconfig.json WatchType: Wild card directory +Info 31 [00:01:12.000] Scheduled: /user/username/projects/myproject/projects/project2/tsconfig.json +Info 32 [00:01:13.000] Scheduled: *ensureProjectForOpenFiles* +Info 33 [00:01:14.000] Elapsed:: *ms DirectoryWatcher:: Triggered with /user/username/projects/myproject/projects/project1/class3.ts :: WatchInfo: /user/username/projects/myproject/projects/project1 1 undefined Config: /user/username/projects/myproject/projects/project1/tsconfig.json WatchType: Wild card directory Before checking timeout queue length (2) and running //// [/user/username/projects/myproject/projects/project1/class3.ts] class class3 {} @@ -178,28 +178,28 @@ FsWatchesRecursive:: /user/username/projects/myproject/projects/project1: {} -Info 34 [16:01:15.000] Running: /user/username/projects/myproject/projects/project2/tsconfig.json -Info 35 [16:01:16.000] Starting updateGraphWorker: Project: /user/username/projects/myproject/projects/project2/tsconfig.json -Info 36 [16:01:17.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/projects/project1/class3.d.ts 500 undefined Project: /user/username/projects/myproject/projects/project2/tsconfig.json WatchType: Missing file -Info 37 [16:01:18.000] Finishing updateGraphWorker: Project: /user/username/projects/myproject/projects/project2/tsconfig.json Version: 2 structureChanged: true structureIsReused:: Not Elapsed:: *ms -Info 38 [16:01:19.000] Different program with same set of files -Info 39 [16:01:20.000] Running: *ensureProjectForOpenFiles* -Info 40 [16:01:21.000] Before ensureProjectForOpenFiles: -Info 41 [16:01:22.000] Project '/user/username/projects/myproject/projects/project2/tsconfig.json' (Configured) -Info 41 [16:01:23.000] Files (3) - -Info 41 [16:01:24.000] ----------------------------------------------- -Info 41 [16:01:25.000] Open files: -Info 41 [16:01:26.000] FileName: /user/username/projects/myproject/projects/project2/class2.ts ProjectRootPath: undefined -Info 41 [16:01:27.000] Projects: /user/username/projects/myproject/projects/project2/tsconfig.json -Info 41 [16:01:28.000] After ensureProjectForOpenFiles: -Info 42 [16:01:29.000] Project '/user/username/projects/myproject/projects/project2/tsconfig.json' (Configured) -Info 42 [16:01:30.000] Files (3) - -Info 42 [16:01:31.000] ----------------------------------------------- -Info 42 [16:01:32.000] Open files: -Info 42 [16:01:33.000] FileName: /user/username/projects/myproject/projects/project2/class2.ts ProjectRootPath: undefined -Info 42 [16:01:34.000] Projects: /user/username/projects/myproject/projects/project2/tsconfig.json +Info 34 [00:01:15.000] Running: /user/username/projects/myproject/projects/project2/tsconfig.json +Info 35 [00:01:16.000] Starting updateGraphWorker: Project: /user/username/projects/myproject/projects/project2/tsconfig.json +Info 36 [00:01:17.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/projects/project1/class3.d.ts 500 undefined Project: /user/username/projects/myproject/projects/project2/tsconfig.json WatchType: Missing file +Info 37 [00:01:18.000] Finishing updateGraphWorker: Project: /user/username/projects/myproject/projects/project2/tsconfig.json Version: 2 structureChanged: true structureIsReused:: Not Elapsed:: *ms +Info 38 [00:01:19.000] Different program with same set of files +Info 39 [00:01:20.000] Running: *ensureProjectForOpenFiles* +Info 40 [00:01:21.000] Before ensureProjectForOpenFiles: +Info 41 [00:01:22.000] Project '/user/username/projects/myproject/projects/project2/tsconfig.json' (Configured) +Info 41 [00:01:23.000] Files (3) + +Info 41 [00:01:24.000] ----------------------------------------------- +Info 41 [00:01:25.000] Open files: +Info 41 [00:01:26.000] FileName: /user/username/projects/myproject/projects/project2/class2.ts ProjectRootPath: undefined +Info 41 [00:01:27.000] Projects: /user/username/projects/myproject/projects/project2/tsconfig.json +Info 41 [00:01:28.000] After ensureProjectForOpenFiles: +Info 42 [00:01:29.000] Project '/user/username/projects/myproject/projects/project2/tsconfig.json' (Configured) +Info 42 [00:01:30.000] Files (3) + +Info 42 [00:01:31.000] ----------------------------------------------- +Info 42 [00:01:32.000] Open files: +Info 42 [00:01:33.000] FileName: /user/username/projects/myproject/projects/project2/class2.ts ProjectRootPath: undefined +Info 42 [00:01:34.000] Projects: /user/username/projects/myproject/projects/project2/tsconfig.json After checking timeout queue length (2) and running PolledWatches:: @@ -228,14 +228,14 @@ FsWatchesRecursive:: /user/username/projects/myproject/projects/project1: {} -Info 42 [16:01:37.000] FileWatcher:: Triggered with /user/username/projects/myproject/projects/project1/class3.d.ts 0:: WatchInfo: /user/username/projects/myproject/projects/project1/class3.d.ts 500 undefined Project: /user/username/projects/myproject/projects/project2/tsconfig.json WatchType: Missing file -Info 43 [16:01:38.000] FileWatcher:: Close:: WatchInfo: /user/username/projects/myproject/projects/project1/class3.d.ts 500 undefined Project: /user/username/projects/myproject/projects/project2/tsconfig.json WatchType: Missing file -Info 44 [16:01:39.000] Scheduled: /user/username/projects/myproject/projects/project2/tsconfig.json -Info 45 [16:01:40.000] Scheduled: *ensureProjectForOpenFiles* -Info 46 [16:01:41.000] Elapsed:: *ms FileWatcher:: Triggered with /user/username/projects/myproject/projects/project1/class3.d.ts 0:: WatchInfo: /user/username/projects/myproject/projects/project1/class3.d.ts 500 undefined Project: /user/username/projects/myproject/projects/project2/tsconfig.json WatchType: Missing file -Info 47 [16:01:42.000] DirectoryWatcher:: Triggered with /user/username/projects/myproject/projects/project1/class3.d.ts :: WatchInfo: /user/username/projects/myproject/projects/project1 1 undefined Config: /user/username/projects/myproject/projects/project1/tsconfig.json WatchType: Wild card directory -Info 48 [16:01:43.000] Project: /user/username/projects/myproject/projects/project1/tsconfig.json Detected output file: /user/username/projects/myproject/projects/project1/class3.d.ts -Info 49 [16:01:44.000] Elapsed:: *ms DirectoryWatcher:: Triggered with /user/username/projects/myproject/projects/project1/class3.d.ts :: WatchInfo: /user/username/projects/myproject/projects/project1 1 undefined Config: /user/username/projects/myproject/projects/project1/tsconfig.json WatchType: Wild card directory +Info 42 [00:01:37.000] FileWatcher:: Triggered with /user/username/projects/myproject/projects/project1/class3.d.ts 0:: WatchInfo: /user/username/projects/myproject/projects/project1/class3.d.ts 500 undefined Project: /user/username/projects/myproject/projects/project2/tsconfig.json WatchType: Missing file +Info 43 [00:01:38.000] FileWatcher:: Close:: WatchInfo: /user/username/projects/myproject/projects/project1/class3.d.ts 500 undefined Project: /user/username/projects/myproject/projects/project2/tsconfig.json WatchType: Missing file +Info 44 [00:01:39.000] Scheduled: /user/username/projects/myproject/projects/project2/tsconfig.json +Info 45 [00:01:40.000] Scheduled: *ensureProjectForOpenFiles* +Info 46 [00:01:41.000] Elapsed:: *ms FileWatcher:: Triggered with /user/username/projects/myproject/projects/project1/class3.d.ts 0:: WatchInfo: /user/username/projects/myproject/projects/project1/class3.d.ts 500 undefined Project: /user/username/projects/myproject/projects/project2/tsconfig.json WatchType: Missing file +Info 47 [00:01:42.000] DirectoryWatcher:: Triggered with /user/username/projects/myproject/projects/project1/class3.d.ts :: WatchInfo: /user/username/projects/myproject/projects/project1 1 undefined Config: /user/username/projects/myproject/projects/project1/tsconfig.json WatchType: Wild card directory +Info 48 [00:01:43.000] Project: /user/username/projects/myproject/projects/project1/tsconfig.json Detected output file: /user/username/projects/myproject/projects/project1/class3.d.ts +Info 49 [00:01:44.000] Elapsed:: *ms DirectoryWatcher:: Triggered with /user/username/projects/myproject/projects/project1/class3.d.ts :: WatchInfo: /user/username/projects/myproject/projects/project1 1 undefined Config: /user/username/projects/myproject/projects/project1/tsconfig.json WatchType: Wild card directory Before checking timeout queue length (2) and running //// [/user/username/projects/myproject/projects/project1/class3.d.ts] declare class class3 {} @@ -265,12 +265,12 @@ FsWatchesRecursive:: /user/username/projects/myproject/projects/project1: {} -Info 50 [16:01:45.000] Running: /user/username/projects/myproject/projects/project2/tsconfig.json -Info 51 [16:01:46.000] Starting updateGraphWorker: Project: /user/username/projects/myproject/projects/project2/tsconfig.json -Info 52 [16:01:47.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/projects/project1/class3.d.ts 500 undefined WatchType: Closed Script info -Info 53 [16:01:48.000] Finishing updateGraphWorker: Project: /user/username/projects/myproject/projects/project2/tsconfig.json Version: 3 structureChanged: true structureIsReused:: Not Elapsed:: *ms -Info 54 [16:01:49.000] Project '/user/username/projects/myproject/projects/project2/tsconfig.json' (Configured) -Info 55 [16:01:50.000] Files (4) +Info 50 [00:01:45.000] Running: /user/username/projects/myproject/projects/project2/tsconfig.json +Info 51 [00:01:46.000] Starting updateGraphWorker: Project: /user/username/projects/myproject/projects/project2/tsconfig.json +Info 52 [00:01:47.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/projects/project1/class3.d.ts 500 undefined WatchType: Closed Script info +Info 53 [00:01:48.000] Finishing updateGraphWorker: Project: /user/username/projects/myproject/projects/project2/tsconfig.json Version: 3 structureChanged: true structureIsReused:: Not Elapsed:: *ms +Info 54 [00:01:49.000] Project '/user/username/projects/myproject/projects/project2/tsconfig.json' (Configured) +Info 55 [00:01:50.000] Files (4) /a/lib/lib.d.ts /user/username/projects/myproject/projects/project1/class1.d.ts /user/username/projects/myproject/projects/project1/class3.d.ts @@ -286,24 +286,24 @@ Info 55 [16:01:50.000] Files (4) class2.ts Matched by default include pattern '**/*' -Info 56 [16:01:51.000] ----------------------------------------------- -Info 57 [16:01:52.000] Running: *ensureProjectForOpenFiles* -Info 58 [16:01:53.000] Before ensureProjectForOpenFiles: -Info 59 [16:01:54.000] Project '/user/username/projects/myproject/projects/project2/tsconfig.json' (Configured) -Info 59 [16:01:55.000] Files (4) - -Info 59 [16:01:56.000] ----------------------------------------------- -Info 59 [16:01:57.000] Open files: -Info 59 [16:01:58.000] FileName: /user/username/projects/myproject/projects/project2/class2.ts ProjectRootPath: undefined -Info 59 [16:01:59.000] Projects: /user/username/projects/myproject/projects/project2/tsconfig.json -Info 59 [16:02:00.000] After ensureProjectForOpenFiles: -Info 60 [16:02:01.000] Project '/user/username/projects/myproject/projects/project2/tsconfig.json' (Configured) -Info 60 [16:02:02.000] Files (4) - -Info 60 [16:02:03.000] ----------------------------------------------- -Info 60 [16:02:04.000] Open files: -Info 60 [16:02:05.000] FileName: /user/username/projects/myproject/projects/project2/class2.ts ProjectRootPath: undefined -Info 60 [16:02:06.000] Projects: /user/username/projects/myproject/projects/project2/tsconfig.json +Info 56 [00:01:51.000] ----------------------------------------------- +Info 57 [00:01:52.000] Running: *ensureProjectForOpenFiles* +Info 58 [00:01:53.000] Before ensureProjectForOpenFiles: +Info 59 [00:01:54.000] Project '/user/username/projects/myproject/projects/project2/tsconfig.json' (Configured) +Info 59 [00:01:55.000] Files (4) + +Info 59 [00:01:56.000] ----------------------------------------------- +Info 59 [00:01:57.000] Open files: +Info 59 [00:01:58.000] FileName: /user/username/projects/myproject/projects/project2/class2.ts ProjectRootPath: undefined +Info 59 [00:01:59.000] Projects: /user/username/projects/myproject/projects/project2/tsconfig.json +Info 59 [00:02:00.000] After ensureProjectForOpenFiles: +Info 60 [00:02:01.000] Project '/user/username/projects/myproject/projects/project2/tsconfig.json' (Configured) +Info 60 [00:02:02.000] Files (4) + +Info 60 [00:02:03.000] ----------------------------------------------- +Info 60 [00:02:04.000] Open files: +Info 60 [00:02:05.000] FileName: /user/username/projects/myproject/projects/project2/class2.ts ProjectRootPath: undefined +Info 60 [00:02:06.000] Projects: /user/username/projects/myproject/projects/project2/tsconfig.json After checking timeout queue length (2) and running PolledWatches:: @@ -332,12 +332,12 @@ FsWatchesRecursive:: /user/username/projects/myproject/projects/project1: {} -Info 60 [16:02:10.000] DirectoryWatcher:: Triggered with /user/username/projects/myproject/projects/project1/temp :: WatchInfo: /user/username/projects/myproject/projects/project1 1 undefined Config: /user/username/projects/myproject/projects/project1/tsconfig.json WatchType: Wild card directory -Info 61 [16:02:11.000] Project: /user/username/projects/myproject/projects/project1/tsconfig.json Detected excluded file: /user/username/projects/myproject/projects/project1/temp -Info 62 [16:02:12.000] Elapsed:: *ms DirectoryWatcher:: Triggered with /user/username/projects/myproject/projects/project1/temp :: WatchInfo: /user/username/projects/myproject/projects/project1 1 undefined Config: /user/username/projects/myproject/projects/project1/tsconfig.json WatchType: Wild card directory -Info 63 [16:02:14.000] DirectoryWatcher:: Triggered with /user/username/projects/myproject/projects/project1/temp/file.d.ts :: WatchInfo: /user/username/projects/myproject/projects/project1 1 undefined Config: /user/username/projects/myproject/projects/project1/tsconfig.json WatchType: Wild card directory -Info 64 [16:02:15.000] Project: /user/username/projects/myproject/projects/project1/tsconfig.json Detected excluded file: /user/username/projects/myproject/projects/project1/temp/file.d.ts -Info 65 [16:02:16.000] Elapsed:: *ms DirectoryWatcher:: Triggered with /user/username/projects/myproject/projects/project1/temp/file.d.ts :: WatchInfo: /user/username/projects/myproject/projects/project1 1 undefined Config: /user/username/projects/myproject/projects/project1/tsconfig.json WatchType: Wild card directory +Info 60 [00:02:10.000] DirectoryWatcher:: Triggered with /user/username/projects/myproject/projects/project1/temp :: WatchInfo: /user/username/projects/myproject/projects/project1 1 undefined Config: /user/username/projects/myproject/projects/project1/tsconfig.json WatchType: Wild card directory +Info 61 [00:02:11.000] Project: /user/username/projects/myproject/projects/project1/tsconfig.json Detected excluded file: /user/username/projects/myproject/projects/project1/temp +Info 62 [00:02:12.000] Elapsed:: *ms DirectoryWatcher:: Triggered with /user/username/projects/myproject/projects/project1/temp :: WatchInfo: /user/username/projects/myproject/projects/project1 1 undefined Config: /user/username/projects/myproject/projects/project1/tsconfig.json WatchType: Wild card directory +Info 63 [00:02:14.000] DirectoryWatcher:: Triggered with /user/username/projects/myproject/projects/project1/temp/file.d.ts :: WatchInfo: /user/username/projects/myproject/projects/project1 1 undefined Config: /user/username/projects/myproject/projects/project1/tsconfig.json WatchType: Wild card directory +Info 64 [00:02:15.000] Project: /user/username/projects/myproject/projects/project1/tsconfig.json Detected excluded file: /user/username/projects/myproject/projects/project1/temp/file.d.ts +Info 65 [00:02:16.000] Elapsed:: *ms DirectoryWatcher:: Triggered with /user/username/projects/myproject/projects/project1/temp/file.d.ts :: WatchInfo: /user/username/projects/myproject/projects/project1 1 undefined Config: /user/username/projects/myproject/projects/project1/tsconfig.json WatchType: Wild card directory Before checking timeout queue length (0) and running //// [/user/username/projects/myproject/projects/project1/temp/file.d.ts] declare class file {} @@ -397,14 +397,14 @@ FsWatchesRecursive:: /user/username/projects/myproject/projects/project1: {} -Info 66 [16:02:18.000] FileWatcher:: Triggered with /user/username/projects/myproject/projects/project1/class3.d.ts 2:: WatchInfo: /user/username/projects/myproject/projects/project1/class3.d.ts 500 undefined WatchType: Closed Script info -Info 67 [16:02:19.000] FileWatcher:: Close:: WatchInfo: /user/username/projects/myproject/projects/project1/class3.d.ts 500 undefined WatchType: Closed Script info -Info 68 [16:02:20.000] Scheduled: /user/username/projects/myproject/projects/project2/tsconfig.json -Info 69 [16:02:21.000] Scheduled: *ensureProjectForOpenFiles* -Info 70 [16:02:22.000] Elapsed:: *ms FileWatcher:: Triggered with /user/username/projects/myproject/projects/project1/class3.d.ts 2:: WatchInfo: /user/username/projects/myproject/projects/project1/class3.d.ts 500 undefined WatchType: Closed Script info -Info 71 [16:02:23.000] DirectoryWatcher:: Triggered with /user/username/projects/myproject/projects/project1/class3.d.ts :: WatchInfo: /user/username/projects/myproject/projects/project1 1 undefined Config: /user/username/projects/myproject/projects/project1/tsconfig.json WatchType: Wild card directory -Info 72 [16:02:24.000] Project: /user/username/projects/myproject/projects/project1/tsconfig.json Detected output file: /user/username/projects/myproject/projects/project1/class3.d.ts -Info 73 [16:02:25.000] Elapsed:: *ms DirectoryWatcher:: Triggered with /user/username/projects/myproject/projects/project1/class3.d.ts :: WatchInfo: /user/username/projects/myproject/projects/project1 1 undefined Config: /user/username/projects/myproject/projects/project1/tsconfig.json WatchType: Wild card directory +Info 66 [00:02:18.000] FileWatcher:: Triggered with /user/username/projects/myproject/projects/project1/class3.d.ts 2:: WatchInfo: /user/username/projects/myproject/projects/project1/class3.d.ts 500 undefined WatchType: Closed Script info +Info 67 [00:02:19.000] FileWatcher:: Close:: WatchInfo: /user/username/projects/myproject/projects/project1/class3.d.ts 500 undefined WatchType: Closed Script info +Info 68 [00:02:20.000] Scheduled: /user/username/projects/myproject/projects/project2/tsconfig.json +Info 69 [00:02:21.000] Scheduled: *ensureProjectForOpenFiles* +Info 70 [00:02:22.000] Elapsed:: *ms FileWatcher:: Triggered with /user/username/projects/myproject/projects/project1/class3.d.ts 2:: WatchInfo: /user/username/projects/myproject/projects/project1/class3.d.ts 500 undefined WatchType: Closed Script info +Info 71 [00:02:23.000] DirectoryWatcher:: Triggered with /user/username/projects/myproject/projects/project1/class3.d.ts :: WatchInfo: /user/username/projects/myproject/projects/project1 1 undefined Config: /user/username/projects/myproject/projects/project1/tsconfig.json WatchType: Wild card directory +Info 72 [00:02:24.000] Project: /user/username/projects/myproject/projects/project1/tsconfig.json Detected output file: /user/username/projects/myproject/projects/project1/class3.d.ts +Info 73 [00:02:25.000] Elapsed:: *ms DirectoryWatcher:: Triggered with /user/username/projects/myproject/projects/project1/class3.d.ts :: WatchInfo: /user/username/projects/myproject/projects/project1 1 undefined Config: /user/username/projects/myproject/projects/project1/tsconfig.json WatchType: Wild card directory Before checking timeout queue length (2) and running //// [/user/username/projects/myproject/projects/project1/class3.d.ts] deleted @@ -432,12 +432,12 @@ FsWatchesRecursive:: /user/username/projects/myproject/projects/project1: {} -Info 74 [16:02:26.000] Running: /user/username/projects/myproject/projects/project2/tsconfig.json -Info 75 [16:02:27.000] Starting updateGraphWorker: Project: /user/username/projects/myproject/projects/project2/tsconfig.json -Info 76 [16:02:28.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/projects/project1/class3.d.ts 500 undefined Project: /user/username/projects/myproject/projects/project2/tsconfig.json WatchType: Missing file -Info 77 [16:02:29.000] Finishing updateGraphWorker: Project: /user/username/projects/myproject/projects/project2/tsconfig.json Version: 4 structureChanged: true structureIsReused:: Not Elapsed:: *ms -Info 78 [16:02:30.000] Project '/user/username/projects/myproject/projects/project2/tsconfig.json' (Configured) -Info 79 [16:02:31.000] Files (3) +Info 74 [00:02:26.000] Running: /user/username/projects/myproject/projects/project2/tsconfig.json +Info 75 [00:02:27.000] Starting updateGraphWorker: Project: /user/username/projects/myproject/projects/project2/tsconfig.json +Info 76 [00:02:28.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/projects/project1/class3.d.ts 500 undefined Project: /user/username/projects/myproject/projects/project2/tsconfig.json WatchType: Missing file +Info 77 [00:02:29.000] Finishing updateGraphWorker: Project: /user/username/projects/myproject/projects/project2/tsconfig.json Version: 4 structureChanged: true structureIsReused:: Not Elapsed:: *ms +Info 78 [00:02:30.000] Project '/user/username/projects/myproject/projects/project2/tsconfig.json' (Configured) +Info 79 [00:02:31.000] Files (3) /a/lib/lib.d.ts /user/username/projects/myproject/projects/project1/class1.d.ts /user/username/projects/myproject/projects/project2/class2.ts @@ -450,24 +450,24 @@ Info 79 [16:02:31.000] Files (3) class2.ts Matched by default include pattern '**/*' -Info 80 [16:02:32.000] ----------------------------------------------- -Info 81 [16:02:33.000] Running: *ensureProjectForOpenFiles* -Info 82 [16:02:34.000] Before ensureProjectForOpenFiles: -Info 83 [16:02:35.000] Project '/user/username/projects/myproject/projects/project2/tsconfig.json' (Configured) -Info 83 [16:02:36.000] Files (3) - -Info 83 [16:02:37.000] ----------------------------------------------- -Info 83 [16:02:38.000] Open files: -Info 83 [16:02:39.000] FileName: /user/username/projects/myproject/projects/project2/class2.ts ProjectRootPath: undefined -Info 83 [16:02:40.000] Projects: /user/username/projects/myproject/projects/project2/tsconfig.json -Info 83 [16:02:41.000] After ensureProjectForOpenFiles: -Info 84 [16:02:42.000] Project '/user/username/projects/myproject/projects/project2/tsconfig.json' (Configured) -Info 84 [16:02:43.000] Files (3) - -Info 84 [16:02:44.000] ----------------------------------------------- -Info 84 [16:02:45.000] Open files: -Info 84 [16:02:46.000] FileName: /user/username/projects/myproject/projects/project2/class2.ts ProjectRootPath: undefined -Info 84 [16:02:47.000] Projects: /user/username/projects/myproject/projects/project2/tsconfig.json +Info 80 [00:02:32.000] ----------------------------------------------- +Info 81 [00:02:33.000] Running: *ensureProjectForOpenFiles* +Info 82 [00:02:34.000] Before ensureProjectForOpenFiles: +Info 83 [00:02:35.000] Project '/user/username/projects/myproject/projects/project2/tsconfig.json' (Configured) +Info 83 [00:02:36.000] Files (3) + +Info 83 [00:02:37.000] ----------------------------------------------- +Info 83 [00:02:38.000] Open files: +Info 83 [00:02:39.000] FileName: /user/username/projects/myproject/projects/project2/class2.ts ProjectRootPath: undefined +Info 83 [00:02:40.000] Projects: /user/username/projects/myproject/projects/project2/tsconfig.json +Info 83 [00:02:41.000] After ensureProjectForOpenFiles: +Info 84 [00:02:42.000] Project '/user/username/projects/myproject/projects/project2/tsconfig.json' (Configured) +Info 84 [00:02:43.000] Files (3) + +Info 84 [00:02:44.000] ----------------------------------------------- +Info 84 [00:02:45.000] Open files: +Info 84 [00:02:46.000] FileName: /user/username/projects/myproject/projects/project2/class2.ts ProjectRootPath: undefined +Info 84 [00:02:47.000] Projects: /user/username/projects/myproject/projects/project2/tsconfig.json After checking timeout queue length (2) and running PolledWatches:: @@ -496,14 +496,14 @@ FsWatchesRecursive:: /user/username/projects/myproject/projects/project1: {} -Info 84 [16:02:50.000] FileWatcher:: Triggered with /user/username/projects/myproject/projects/project1/class3.d.ts 0:: WatchInfo: /user/username/projects/myproject/projects/project1/class3.d.ts 500 undefined Project: /user/username/projects/myproject/projects/project2/tsconfig.json WatchType: Missing file -Info 85 [16:02:51.000] FileWatcher:: Close:: WatchInfo: /user/username/projects/myproject/projects/project1/class3.d.ts 500 undefined Project: /user/username/projects/myproject/projects/project2/tsconfig.json WatchType: Missing file -Info 86 [16:02:52.000] Scheduled: /user/username/projects/myproject/projects/project2/tsconfig.json -Info 87 [16:02:53.000] Scheduled: *ensureProjectForOpenFiles* -Info 88 [16:02:54.000] Elapsed:: *ms FileWatcher:: Triggered with /user/username/projects/myproject/projects/project1/class3.d.ts 0:: WatchInfo: /user/username/projects/myproject/projects/project1/class3.d.ts 500 undefined Project: /user/username/projects/myproject/projects/project2/tsconfig.json WatchType: Missing file -Info 89 [16:02:55.000] DirectoryWatcher:: Triggered with /user/username/projects/myproject/projects/project1/class3.d.ts :: WatchInfo: /user/username/projects/myproject/projects/project1 1 undefined Config: /user/username/projects/myproject/projects/project1/tsconfig.json WatchType: Wild card directory -Info 90 [16:02:56.000] Project: /user/username/projects/myproject/projects/project1/tsconfig.json Detected output file: /user/username/projects/myproject/projects/project1/class3.d.ts -Info 91 [16:02:57.000] Elapsed:: *ms DirectoryWatcher:: Triggered with /user/username/projects/myproject/projects/project1/class3.d.ts :: WatchInfo: /user/username/projects/myproject/projects/project1 1 undefined Config: /user/username/projects/myproject/projects/project1/tsconfig.json WatchType: Wild card directory +Info 84 [00:02:50.000] FileWatcher:: Triggered with /user/username/projects/myproject/projects/project1/class3.d.ts 0:: WatchInfo: /user/username/projects/myproject/projects/project1/class3.d.ts 500 undefined Project: /user/username/projects/myproject/projects/project2/tsconfig.json WatchType: Missing file +Info 85 [00:02:51.000] FileWatcher:: Close:: WatchInfo: /user/username/projects/myproject/projects/project1/class3.d.ts 500 undefined Project: /user/username/projects/myproject/projects/project2/tsconfig.json WatchType: Missing file +Info 86 [00:02:52.000] Scheduled: /user/username/projects/myproject/projects/project2/tsconfig.json +Info 87 [00:02:53.000] Scheduled: *ensureProjectForOpenFiles* +Info 88 [00:02:54.000] Elapsed:: *ms FileWatcher:: Triggered with /user/username/projects/myproject/projects/project1/class3.d.ts 0:: WatchInfo: /user/username/projects/myproject/projects/project1/class3.d.ts 500 undefined Project: /user/username/projects/myproject/projects/project2/tsconfig.json WatchType: Missing file +Info 89 [00:02:55.000] DirectoryWatcher:: Triggered with /user/username/projects/myproject/projects/project1/class3.d.ts :: WatchInfo: /user/username/projects/myproject/projects/project1 1 undefined Config: /user/username/projects/myproject/projects/project1/tsconfig.json WatchType: Wild card directory +Info 90 [00:02:56.000] Project: /user/username/projects/myproject/projects/project1/tsconfig.json Detected output file: /user/username/projects/myproject/projects/project1/class3.d.ts +Info 91 [00:02:57.000] Elapsed:: *ms DirectoryWatcher:: Triggered with /user/username/projects/myproject/projects/project1/class3.d.ts :: WatchInfo: /user/username/projects/myproject/projects/project1 1 undefined Config: /user/username/projects/myproject/projects/project1/tsconfig.json WatchType: Wild card directory Before checking timeout queue length (2) and running //// [/user/username/projects/myproject/projects/project1/class3.d.ts] declare class class3 {} @@ -533,12 +533,12 @@ FsWatchesRecursive:: /user/username/projects/myproject/projects/project1: {} -Info 92 [16:02:58.000] Running: /user/username/projects/myproject/projects/project2/tsconfig.json -Info 93 [16:02:59.000] Starting updateGraphWorker: Project: /user/username/projects/myproject/projects/project2/tsconfig.json -Info 94 [16:03:00.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/projects/project1/class3.d.ts 500 undefined WatchType: Closed Script info -Info 95 [16:03:01.000] Finishing updateGraphWorker: Project: /user/username/projects/myproject/projects/project2/tsconfig.json Version: 5 structureChanged: true structureIsReused:: Not Elapsed:: *ms -Info 96 [16:03:02.000] Project '/user/username/projects/myproject/projects/project2/tsconfig.json' (Configured) -Info 97 [16:03:03.000] Files (4) +Info 92 [00:02:58.000] Running: /user/username/projects/myproject/projects/project2/tsconfig.json +Info 93 [00:02:59.000] Starting updateGraphWorker: Project: /user/username/projects/myproject/projects/project2/tsconfig.json +Info 94 [00:03:00.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/projects/project1/class3.d.ts 500 undefined WatchType: Closed Script info +Info 95 [00:03:01.000] Finishing updateGraphWorker: Project: /user/username/projects/myproject/projects/project2/tsconfig.json Version: 5 structureChanged: true structureIsReused:: Not Elapsed:: *ms +Info 96 [00:03:02.000] Project '/user/username/projects/myproject/projects/project2/tsconfig.json' (Configured) +Info 97 [00:03:03.000] Files (4) /a/lib/lib.d.ts /user/username/projects/myproject/projects/project1/class1.d.ts /user/username/projects/myproject/projects/project1/class3.d.ts @@ -554,24 +554,24 @@ Info 97 [16:03:03.000] Files (4) class2.ts Matched by default include pattern '**/*' -Info 98 [16:03:04.000] ----------------------------------------------- -Info 99 [16:03:05.000] Running: *ensureProjectForOpenFiles* -Info 100 [16:03:06.000] Before ensureProjectForOpenFiles: -Info 101 [16:03:07.000] Project '/user/username/projects/myproject/projects/project2/tsconfig.json' (Configured) -Info 101 [16:03:08.000] Files (4) - -Info 101 [16:03:09.000] ----------------------------------------------- -Info 101 [16:03:10.000] Open files: -Info 101 [16:03:11.000] FileName: /user/username/projects/myproject/projects/project2/class2.ts ProjectRootPath: undefined -Info 101 [16:03:12.000] Projects: /user/username/projects/myproject/projects/project2/tsconfig.json -Info 101 [16:03:13.000] After ensureProjectForOpenFiles: -Info 102 [16:03:14.000] Project '/user/username/projects/myproject/projects/project2/tsconfig.json' (Configured) -Info 102 [16:03:15.000] Files (4) - -Info 102 [16:03:16.000] ----------------------------------------------- -Info 102 [16:03:17.000] Open files: -Info 102 [16:03:18.000] FileName: /user/username/projects/myproject/projects/project2/class2.ts ProjectRootPath: undefined -Info 102 [16:03:19.000] Projects: /user/username/projects/myproject/projects/project2/tsconfig.json +Info 98 [00:03:04.000] ----------------------------------------------- +Info 99 [00:03:05.000] Running: *ensureProjectForOpenFiles* +Info 100 [00:03:06.000] Before ensureProjectForOpenFiles: +Info 101 [00:03:07.000] Project '/user/username/projects/myproject/projects/project2/tsconfig.json' (Configured) +Info 101 [00:03:08.000] Files (4) + +Info 101 [00:03:09.000] ----------------------------------------------- +Info 101 [00:03:10.000] Open files: +Info 101 [00:03:11.000] FileName: /user/username/projects/myproject/projects/project2/class2.ts ProjectRootPath: undefined +Info 101 [00:03:12.000] Projects: /user/username/projects/myproject/projects/project2/tsconfig.json +Info 101 [00:03:13.000] After ensureProjectForOpenFiles: +Info 102 [00:03:14.000] Project '/user/username/projects/myproject/projects/project2/tsconfig.json' (Configured) +Info 102 [00:03:15.000] Files (4) + +Info 102 [00:03:16.000] ----------------------------------------------- +Info 102 [00:03:17.000] Open files: +Info 102 [00:03:18.000] FileName: /user/username/projects/myproject/projects/project2/class2.ts ProjectRootPath: undefined +Info 102 [00:03:19.000] Projects: /user/username/projects/myproject/projects/project2/tsconfig.json After checking timeout queue length (2) and running PolledWatches:: diff --git a/tests/baselines/reference/tsserver/projectReferences/new-file-is-added-to-the-referenced-project-when-referenced-project-is-not-open.js b/tests/baselines/reference/tsserver/projectReferences/new-file-is-added-to-the-referenced-project-when-referenced-project-is-not-open.js index 72a4d35244349..8e7b7b1d312e5 100644 --- a/tests/baselines/reference/tsserver/projectReferences/new-file-is-added-to-the-referenced-project-when-referenced-project-is-not-open.js +++ b/tests/baselines/reference/tsserver/projectReferences/new-file-is-added-to-the-referenced-project-when-referenced-project-is-not-open.js @@ -1,5 +1,5 @@ -Info 0 [16:00:33.000] Provided types map file "/a/lib/typesMap.json" doesn't exist -Info 1 [16:00:34.000] request: +Info 0 [00:00:33.000] Provided types map file "/a/lib/typesMap.json" doesn't exist +Info 1 [00:00:34.000] request: { "seq": 0, "type": "request", @@ -44,11 +44,11 @@ FsWatches:: FsWatchesRecursive:: -Info 2 [16:00:35.000] Search path: /user/username/projects/myproject/projects/project2 -Info 3 [16:00:36.000] For info: /user/username/projects/myproject/projects/project2/class2.ts :: Config file name: /user/username/projects/myproject/projects/project2/tsconfig.json -Info 4 [16:00:37.000] Creating configuration project /user/username/projects/myproject/projects/project2/tsconfig.json -Info 5 [16:00:38.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/projects/project2/tsconfig.json 2000 undefined Project: /user/username/projects/myproject/projects/project2/tsconfig.json WatchType: Config file -Info 6 [16:00:39.000] Config: /user/username/projects/myproject/projects/project2/tsconfig.json : { +Info 2 [00:00:35.000] Search path: /user/username/projects/myproject/projects/project2 +Info 3 [00:00:36.000] For info: /user/username/projects/myproject/projects/project2/class2.ts :: Config file name: /user/username/projects/myproject/projects/project2/tsconfig.json +Info 4 [00:00:37.000] Creating configuration project /user/username/projects/myproject/projects/project2/tsconfig.json +Info 5 [00:00:38.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/projects/project2/tsconfig.json 2000 undefined Project: /user/username/projects/myproject/projects/project2/tsconfig.json WatchType: Config file +Info 6 [00:00:39.000] Config: /user/username/projects/myproject/projects/project2/tsconfig.json : { "rootNames": [ "/user/username/projects/myproject/projects/project2/class2.ts" ], @@ -64,11 +64,11 @@ Info 6 [16:00:39.000] Config: /user/username/projects/myproject/projects/proj } ] } -Info 7 [16:00:40.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/projects/project2 1 undefined Config: /user/username/projects/myproject/projects/project2/tsconfig.json WatchType: Wild card directory -Info 8 [16:00:41.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/projects/project2 1 undefined Config: /user/username/projects/myproject/projects/project2/tsconfig.json WatchType: Wild card directory -Info 9 [16:00:42.000] Plugins were requested but not running in environment that supports 'require'. Nothing will be loaded -Info 10 [16:00:43.000] Starting updateGraphWorker: Project: /user/username/projects/myproject/projects/project2/tsconfig.json -Info 11 [16:00:44.000] Config: /user/username/projects/myproject/projects/project1/tsconfig.json : { +Info 7 [00:00:40.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/projects/project2 1 undefined Config: /user/username/projects/myproject/projects/project2/tsconfig.json WatchType: Wild card directory +Info 8 [00:00:41.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/projects/project2 1 undefined Config: /user/username/projects/myproject/projects/project2/tsconfig.json WatchType: Wild card directory +Info 9 [00:00:42.000] Plugins were requested but not running in environment that supports 'require'. Nothing will be loaded +Info 10 [00:00:43.000] Starting updateGraphWorker: Project: /user/username/projects/myproject/projects/project2/tsconfig.json +Info 11 [00:00:44.000] Config: /user/username/projects/myproject/projects/project1/tsconfig.json : { "rootNames": [ "/user/username/projects/myproject/projects/project1/class1.ts" ], @@ -78,20 +78,20 @@ Info 11 [16:00:44.000] Config: /user/username/projects/myproject/projects/proj "configFilePath": "/user/username/projects/myproject/projects/project1/tsconfig.json" } } -Info 12 [16:00:45.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/projects/project1/tsconfig.json 2000 undefined Project: /user/username/projects/myproject/projects/project2/tsconfig.json WatchType: Config file -Info 13 [16:00:46.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/projects/project1 1 undefined Config: /user/username/projects/myproject/projects/project1/tsconfig.json WatchType: Wild card directory -Info 14 [16:00:47.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/projects/project1 1 undefined Config: /user/username/projects/myproject/projects/project1/tsconfig.json WatchType: Wild card directory -Info 15 [16:00:48.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/projects/project1/class1.ts 500 undefined WatchType: Closed Script info -Info 16 [16:00:49.000] FileWatcher:: Added:: WatchInfo: /a/lib/lib.d.ts 500 undefined WatchType: Closed Script info -Info 17 [16:00:50.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/projects/project2/node_modules/@types 1 undefined Project: /user/username/projects/myproject/projects/project2/tsconfig.json WatchType: Type roots -Info 18 [16:00:51.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/projects/project2/node_modules/@types 1 undefined Project: /user/username/projects/myproject/projects/project2/tsconfig.json WatchType: Type roots -Info 19 [16:00:52.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/projects/node_modules/@types 1 undefined Project: /user/username/projects/myproject/projects/project2/tsconfig.json WatchType: Type roots -Info 20 [16:00:53.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/projects/node_modules/@types 1 undefined Project: /user/username/projects/myproject/projects/project2/tsconfig.json WatchType: Type roots -Info 21 [16:00:54.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/projects/project2/tsconfig.json WatchType: Type roots -Info 22 [16:00:55.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/projects/project2/tsconfig.json WatchType: Type roots -Info 23 [16:00:56.000] Finishing updateGraphWorker: Project: /user/username/projects/myproject/projects/project2/tsconfig.json Version: 1 structureChanged: true structureIsReused:: Not Elapsed:: *ms -Info 24 [16:00:57.000] Project '/user/username/projects/myproject/projects/project2/tsconfig.json' (Configured) -Info 25 [16:00:58.000] Files (3) +Info 12 [00:00:45.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/projects/project1/tsconfig.json 2000 undefined Project: /user/username/projects/myproject/projects/project2/tsconfig.json WatchType: Config file +Info 13 [00:00:46.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/projects/project1 1 undefined Config: /user/username/projects/myproject/projects/project1/tsconfig.json WatchType: Wild card directory +Info 14 [00:00:47.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/projects/project1 1 undefined Config: /user/username/projects/myproject/projects/project1/tsconfig.json WatchType: Wild card directory +Info 15 [00:00:48.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/projects/project1/class1.ts 500 undefined WatchType: Closed Script info +Info 16 [00:00:49.000] FileWatcher:: Added:: WatchInfo: /a/lib/lib.d.ts 500 undefined WatchType: Closed Script info +Info 17 [00:00:50.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/projects/project2/node_modules/@types 1 undefined Project: /user/username/projects/myproject/projects/project2/tsconfig.json WatchType: Type roots +Info 18 [00:00:51.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/projects/project2/node_modules/@types 1 undefined Project: /user/username/projects/myproject/projects/project2/tsconfig.json WatchType: Type roots +Info 19 [00:00:52.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/projects/node_modules/@types 1 undefined Project: /user/username/projects/myproject/projects/project2/tsconfig.json WatchType: Type roots +Info 20 [00:00:53.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/projects/node_modules/@types 1 undefined Project: /user/username/projects/myproject/projects/project2/tsconfig.json WatchType: Type roots +Info 21 [00:00:54.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/projects/project2/tsconfig.json WatchType: Type roots +Info 22 [00:00:55.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/projects/project2/tsconfig.json WatchType: Type roots +Info 23 [00:00:56.000] Finishing updateGraphWorker: Project: /user/username/projects/myproject/projects/project2/tsconfig.json Version: 1 structureChanged: true structureIsReused:: Not Elapsed:: *ms +Info 24 [00:00:57.000] Project '/user/username/projects/myproject/projects/project2/tsconfig.json' (Configured) +Info 25 [00:00:58.000] Files (3) /a/lib/lib.d.ts /user/username/projects/myproject/projects/project1/class1.ts /user/username/projects/myproject/projects/project2/class2.ts @@ -104,16 +104,16 @@ Info 25 [16:00:58.000] Files (3) class2.ts Matched by default include pattern '**/*' -Info 26 [16:00:59.000] ----------------------------------------------- -Info 27 [16:01:00.000] Search path: /user/username/projects/myproject/projects/project2 -Info 28 [16:01:01.000] For info: /user/username/projects/myproject/projects/project2/tsconfig.json :: No config files found. -Info 29 [16:01:02.000] Project '/user/username/projects/myproject/projects/project2/tsconfig.json' (Configured) -Info 29 [16:01:03.000] Files (3) +Info 26 [00:00:59.000] ----------------------------------------------- +Info 27 [00:01:00.000] Search path: /user/username/projects/myproject/projects/project2 +Info 28 [00:01:01.000] For info: /user/username/projects/myproject/projects/project2/tsconfig.json :: No config files found. +Info 29 [00:01:02.000] Project '/user/username/projects/myproject/projects/project2/tsconfig.json' (Configured) +Info 29 [00:01:03.000] Files (3) -Info 29 [16:01:04.000] ----------------------------------------------- -Info 29 [16:01:05.000] Open files: -Info 29 [16:01:06.000] FileName: /user/username/projects/myproject/projects/project2/class2.ts ProjectRootPath: undefined -Info 29 [16:01:07.000] Projects: /user/username/projects/myproject/projects/project2/tsconfig.json +Info 29 [00:01:04.000] ----------------------------------------------- +Info 29 [00:01:05.000] Open files: +Info 29 [00:01:06.000] FileName: /user/username/projects/myproject/projects/project2/class2.ts ProjectRootPath: undefined +Info 29 [00:01:07.000] Projects: /user/username/projects/myproject/projects/project2/tsconfig.json After request PolledWatches:: @@ -140,14 +140,14 @@ FsWatchesRecursive:: /user/username/projects/myproject/projects/project1: {} -Info 29 [16:01:08.000] response: +Info 29 [00:01:08.000] response: { "responseRequired": false } -Info 30 [16:01:11.000] DirectoryWatcher:: Triggered with /user/username/projects/myproject/projects/project1/class3.ts :: WatchInfo: /user/username/projects/myproject/projects/project1 1 undefined Config: /user/username/projects/myproject/projects/project1/tsconfig.json WatchType: Wild card directory -Info 31 [16:01:12.000] Scheduled: /user/username/projects/myproject/projects/project2/tsconfig.json -Info 32 [16:01:13.000] Scheduled: *ensureProjectForOpenFiles* -Info 33 [16:01:14.000] Elapsed:: *ms DirectoryWatcher:: Triggered with /user/username/projects/myproject/projects/project1/class3.ts :: WatchInfo: /user/username/projects/myproject/projects/project1 1 undefined Config: /user/username/projects/myproject/projects/project1/tsconfig.json WatchType: Wild card directory +Info 30 [00:01:11.000] DirectoryWatcher:: Triggered with /user/username/projects/myproject/projects/project1/class3.ts :: WatchInfo: /user/username/projects/myproject/projects/project1 1 undefined Config: /user/username/projects/myproject/projects/project1/tsconfig.json WatchType: Wild card directory +Info 31 [00:01:12.000] Scheduled: /user/username/projects/myproject/projects/project2/tsconfig.json +Info 32 [00:01:13.000] Scheduled: *ensureProjectForOpenFiles* +Info 33 [00:01:14.000] Elapsed:: *ms DirectoryWatcher:: Triggered with /user/username/projects/myproject/projects/project1/class3.ts :: WatchInfo: /user/username/projects/myproject/projects/project1 1 undefined Config: /user/username/projects/myproject/projects/project1/tsconfig.json WatchType: Wild card directory Before checking timeout queue length (2) and running //// [/user/username/projects/myproject/projects/project1/class3.ts] class class3 {} @@ -177,12 +177,12 @@ FsWatchesRecursive:: /user/username/projects/myproject/projects/project1: {} -Info 34 [16:01:15.000] Running: /user/username/projects/myproject/projects/project2/tsconfig.json -Info 35 [16:01:16.000] Starting updateGraphWorker: Project: /user/username/projects/myproject/projects/project2/tsconfig.json -Info 36 [16:01:17.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/projects/project1/class3.ts 500 undefined WatchType: Closed Script info -Info 37 [16:01:18.000] Finishing updateGraphWorker: Project: /user/username/projects/myproject/projects/project2/tsconfig.json Version: 2 structureChanged: true structureIsReused:: Not Elapsed:: *ms -Info 38 [16:01:19.000] Project '/user/username/projects/myproject/projects/project2/tsconfig.json' (Configured) -Info 39 [16:01:20.000] Files (4) +Info 34 [00:01:15.000] Running: /user/username/projects/myproject/projects/project2/tsconfig.json +Info 35 [00:01:16.000] Starting updateGraphWorker: Project: /user/username/projects/myproject/projects/project2/tsconfig.json +Info 36 [00:01:17.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/projects/project1/class3.ts 500 undefined WatchType: Closed Script info +Info 37 [00:01:18.000] Finishing updateGraphWorker: Project: /user/username/projects/myproject/projects/project2/tsconfig.json Version: 2 structureChanged: true structureIsReused:: Not Elapsed:: *ms +Info 38 [00:01:19.000] Project '/user/username/projects/myproject/projects/project2/tsconfig.json' (Configured) +Info 39 [00:01:20.000] Files (4) /a/lib/lib.d.ts /user/username/projects/myproject/projects/project1/class1.ts /user/username/projects/myproject/projects/project1/class3.ts @@ -198,24 +198,24 @@ Info 39 [16:01:20.000] Files (4) class2.ts Matched by default include pattern '**/*' -Info 40 [16:01:21.000] ----------------------------------------------- -Info 41 [16:01:22.000] Running: *ensureProjectForOpenFiles* -Info 42 [16:01:23.000] Before ensureProjectForOpenFiles: -Info 43 [16:01:24.000] Project '/user/username/projects/myproject/projects/project2/tsconfig.json' (Configured) -Info 43 [16:01:25.000] Files (4) - -Info 43 [16:01:26.000] ----------------------------------------------- -Info 43 [16:01:27.000] Open files: -Info 43 [16:01:28.000] FileName: /user/username/projects/myproject/projects/project2/class2.ts ProjectRootPath: undefined -Info 43 [16:01:29.000] Projects: /user/username/projects/myproject/projects/project2/tsconfig.json -Info 43 [16:01:30.000] After ensureProjectForOpenFiles: -Info 44 [16:01:31.000] Project '/user/username/projects/myproject/projects/project2/tsconfig.json' (Configured) -Info 44 [16:01:32.000] Files (4) - -Info 44 [16:01:33.000] ----------------------------------------------- -Info 44 [16:01:34.000] Open files: -Info 44 [16:01:35.000] FileName: /user/username/projects/myproject/projects/project2/class2.ts ProjectRootPath: undefined -Info 44 [16:01:36.000] Projects: /user/username/projects/myproject/projects/project2/tsconfig.json +Info 40 [00:01:21.000] ----------------------------------------------- +Info 41 [00:01:22.000] Running: *ensureProjectForOpenFiles* +Info 42 [00:01:23.000] Before ensureProjectForOpenFiles: +Info 43 [00:01:24.000] Project '/user/username/projects/myproject/projects/project2/tsconfig.json' (Configured) +Info 43 [00:01:25.000] Files (4) + +Info 43 [00:01:26.000] ----------------------------------------------- +Info 43 [00:01:27.000] Open files: +Info 43 [00:01:28.000] FileName: /user/username/projects/myproject/projects/project2/class2.ts ProjectRootPath: undefined +Info 43 [00:01:29.000] Projects: /user/username/projects/myproject/projects/project2/tsconfig.json +Info 43 [00:01:30.000] After ensureProjectForOpenFiles: +Info 44 [00:01:31.000] Project '/user/username/projects/myproject/projects/project2/tsconfig.json' (Configured) +Info 44 [00:01:32.000] Files (4) + +Info 44 [00:01:33.000] ----------------------------------------------- +Info 44 [00:01:34.000] Open files: +Info 44 [00:01:35.000] FileName: /user/username/projects/myproject/projects/project2/class2.ts ProjectRootPath: undefined +Info 44 [00:01:36.000] Projects: /user/username/projects/myproject/projects/project2/tsconfig.json After checking timeout queue length (2) and running PolledWatches:: @@ -244,12 +244,12 @@ FsWatchesRecursive:: /user/username/projects/myproject/projects/project1: {} -Info 44 [16:01:40.000] DirectoryWatcher:: Triggered with /user/username/projects/myproject/projects/project1/temp :: WatchInfo: /user/username/projects/myproject/projects/project1 1 undefined Config: /user/username/projects/myproject/projects/project1/tsconfig.json WatchType: Wild card directory -Info 45 [16:01:41.000] Project: /user/username/projects/myproject/projects/project1/tsconfig.json Detected excluded file: /user/username/projects/myproject/projects/project1/temp -Info 46 [16:01:42.000] Elapsed:: *ms DirectoryWatcher:: Triggered with /user/username/projects/myproject/projects/project1/temp :: WatchInfo: /user/username/projects/myproject/projects/project1 1 undefined Config: /user/username/projects/myproject/projects/project1/tsconfig.json WatchType: Wild card directory -Info 47 [16:01:44.000] DirectoryWatcher:: Triggered with /user/username/projects/myproject/projects/project1/temp/file.d.ts :: WatchInfo: /user/username/projects/myproject/projects/project1 1 undefined Config: /user/username/projects/myproject/projects/project1/tsconfig.json WatchType: Wild card directory -Info 48 [16:01:45.000] Project: /user/username/projects/myproject/projects/project1/tsconfig.json Detected excluded file: /user/username/projects/myproject/projects/project1/temp/file.d.ts -Info 49 [16:01:46.000] Elapsed:: *ms DirectoryWatcher:: Triggered with /user/username/projects/myproject/projects/project1/temp/file.d.ts :: WatchInfo: /user/username/projects/myproject/projects/project1 1 undefined Config: /user/username/projects/myproject/projects/project1/tsconfig.json WatchType: Wild card directory +Info 44 [00:01:40.000] DirectoryWatcher:: Triggered with /user/username/projects/myproject/projects/project1/temp :: WatchInfo: /user/username/projects/myproject/projects/project1 1 undefined Config: /user/username/projects/myproject/projects/project1/tsconfig.json WatchType: Wild card directory +Info 45 [00:01:41.000] Project: /user/username/projects/myproject/projects/project1/tsconfig.json Detected excluded file: /user/username/projects/myproject/projects/project1/temp +Info 46 [00:01:42.000] Elapsed:: *ms DirectoryWatcher:: Triggered with /user/username/projects/myproject/projects/project1/temp :: WatchInfo: /user/username/projects/myproject/projects/project1 1 undefined Config: /user/username/projects/myproject/projects/project1/tsconfig.json WatchType: Wild card directory +Info 47 [00:01:44.000] DirectoryWatcher:: Triggered with /user/username/projects/myproject/projects/project1/temp/file.d.ts :: WatchInfo: /user/username/projects/myproject/projects/project1 1 undefined Config: /user/username/projects/myproject/projects/project1/tsconfig.json WatchType: Wild card directory +Info 48 [00:01:45.000] Project: /user/username/projects/myproject/projects/project1/tsconfig.json Detected excluded file: /user/username/projects/myproject/projects/project1/temp/file.d.ts +Info 49 [00:01:46.000] Elapsed:: *ms DirectoryWatcher:: Triggered with /user/username/projects/myproject/projects/project1/temp/file.d.ts :: WatchInfo: /user/username/projects/myproject/projects/project1 1 undefined Config: /user/username/projects/myproject/projects/project1/tsconfig.json WatchType: Wild card directory Before checking timeout queue length (0) and running //// [/user/username/projects/myproject/projects/project1/temp/file.d.ts] declare class file {} @@ -309,9 +309,9 @@ FsWatchesRecursive:: /user/username/projects/myproject/projects/project1: {} -Info 50 [16:01:49.000] DirectoryWatcher:: Triggered with /user/username/projects/myproject/projects/project1/class3.d.ts :: WatchInfo: /user/username/projects/myproject/projects/project1 1 undefined Config: /user/username/projects/myproject/projects/project1/tsconfig.json WatchType: Wild card directory -Info 51 [16:01:50.000] Project: /user/username/projects/myproject/projects/project1/tsconfig.json Detected output file: /user/username/projects/myproject/projects/project1/class3.d.ts -Info 52 [16:01:51.000] Elapsed:: *ms DirectoryWatcher:: Triggered with /user/username/projects/myproject/projects/project1/class3.d.ts :: WatchInfo: /user/username/projects/myproject/projects/project1 1 undefined Config: /user/username/projects/myproject/projects/project1/tsconfig.json WatchType: Wild card directory +Info 50 [00:01:49.000] DirectoryWatcher:: Triggered with /user/username/projects/myproject/projects/project1/class3.d.ts :: WatchInfo: /user/username/projects/myproject/projects/project1 1 undefined Config: /user/username/projects/myproject/projects/project1/tsconfig.json WatchType: Wild card directory +Info 51 [00:01:50.000] Project: /user/username/projects/myproject/projects/project1/tsconfig.json Detected output file: /user/username/projects/myproject/projects/project1/class3.d.ts +Info 52 [00:01:51.000] Elapsed:: *ms DirectoryWatcher:: Triggered with /user/username/projects/myproject/projects/project1/class3.d.ts :: WatchInfo: /user/username/projects/myproject/projects/project1 1 undefined Config: /user/username/projects/myproject/projects/project1/tsconfig.json WatchType: Wild card directory Before checking timeout queue length (0) and running //// [/user/username/projects/myproject/projects/project1/class3.d.ts] declare class class3 {} 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 811d061085d56..0254915b21d31 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 @@ -1,5 +1,5 @@ -Info 0 [16:00:33.000] Provided types map file "/a/lib/typesMap.json" doesn't exist -Info 1 [16:00:34.000] request: +Info 0 [00:00:33.000] Provided types map file "/a/lib/typesMap.json" doesn't exist +Info 1 [00:00:34.000] request: { "seq": 0, "type": "request", @@ -44,11 +44,11 @@ FsWatches:: FsWatchesRecursive:: -Info 2 [16:00:35.000] Search path: /user/username/projects/myproject/projects/project2 -Info 3 [16:00:36.000] For info: /user/username/projects/myproject/projects/project2/class2.ts :: Config file name: /user/username/projects/myproject/projects/project2/tsconfig.json -Info 4 [16:00:37.000] Creating configuration project /user/username/projects/myproject/projects/project2/tsconfig.json -Info 5 [16:00:38.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/projects/project2/tsconfig.json 2000 undefined Project: /user/username/projects/myproject/projects/project2/tsconfig.json WatchType: Config file -Info 6 [16:00:39.000] Config: /user/username/projects/myproject/projects/project2/tsconfig.json : { +Info 2 [00:00:35.000] Search path: /user/username/projects/myproject/projects/project2 +Info 3 [00:00:36.000] For info: /user/username/projects/myproject/projects/project2/class2.ts :: Config file name: /user/username/projects/myproject/projects/project2/tsconfig.json +Info 4 [00:00:37.000] Creating configuration project /user/username/projects/myproject/projects/project2/tsconfig.json +Info 5 [00:00:38.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/projects/project2/tsconfig.json 2000 undefined Project: /user/username/projects/myproject/projects/project2/tsconfig.json WatchType: Config file +Info 6 [00:00:39.000] Config: /user/username/projects/myproject/projects/project2/tsconfig.json : { "rootNames": [ "/user/username/projects/myproject/projects/project2/class2.ts" ], @@ -65,11 +65,11 @@ Info 6 [16:00:39.000] Config: /user/username/projects/myproject/projects/proj } ] } -Info 7 [16:00:40.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/projects/project2 1 undefined Config: /user/username/projects/myproject/projects/project2/tsconfig.json WatchType: Wild card directory -Info 8 [16:00:41.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/projects/project2 1 undefined Config: /user/username/projects/myproject/projects/project2/tsconfig.json WatchType: Wild card directory -Info 9 [16:00:42.000] Plugins were requested but not running in environment that supports 'require'. Nothing will be loaded -Info 10 [16:00:43.000] Starting updateGraphWorker: Project: /user/username/projects/myproject/projects/project2/tsconfig.json -Info 11 [16:00:44.000] Config: /user/username/projects/myproject/projects/project1/tsconfig.json : { +Info 7 [00:00:40.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/projects/project2 1 undefined Config: /user/username/projects/myproject/projects/project2/tsconfig.json WatchType: Wild card directory +Info 8 [00:00:41.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/projects/project2 1 undefined Config: /user/username/projects/myproject/projects/project2/tsconfig.json WatchType: Wild card directory +Info 9 [00:00:42.000] Plugins were requested but not running in environment that supports 'require'. Nothing will be loaded +Info 10 [00:00:43.000] Starting updateGraphWorker: Project: /user/username/projects/myproject/projects/project2/tsconfig.json +Info 11 [00:00:44.000] Config: /user/username/projects/myproject/projects/project1/tsconfig.json : { "rootNames": [ "/user/username/projects/myproject/projects/project1/class1.ts" ], @@ -79,20 +79,20 @@ Info 11 [16:00:44.000] Config: /user/username/projects/myproject/projects/proj "configFilePath": "/user/username/projects/myproject/projects/project1/tsconfig.json" } } -Info 12 [16:00:45.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/projects/project1/tsconfig.json 2000 undefined Project: /user/username/projects/myproject/projects/project2/tsconfig.json WatchType: Config file -Info 13 [16:00:46.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/projects/project1 1 undefined Config: /user/username/projects/myproject/projects/project1/tsconfig.json WatchType: Wild card directory -Info 14 [16:00:47.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/projects/project1 1 undefined Config: /user/username/projects/myproject/projects/project1/tsconfig.json WatchType: Wild card directory -Info 15 [16:00:48.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/projects/project1/class1.d.ts 500 undefined WatchType: Closed Script info -Info 16 [16:00:49.000] FileWatcher:: Added:: WatchInfo: /a/lib/lib.d.ts 500 undefined WatchType: Closed Script info -Info 17 [16:00:50.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/projects/project2/node_modules/@types 1 undefined Project: /user/username/projects/myproject/projects/project2/tsconfig.json WatchType: Type roots -Info 18 [16:00:51.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/projects/project2/node_modules/@types 1 undefined Project: /user/username/projects/myproject/projects/project2/tsconfig.json WatchType: Type roots -Info 19 [16:00:52.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/projects/node_modules/@types 1 undefined Project: /user/username/projects/myproject/projects/project2/tsconfig.json WatchType: Type roots -Info 20 [16:00:53.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/projects/node_modules/@types 1 undefined Project: /user/username/projects/myproject/projects/project2/tsconfig.json WatchType: Type roots -Info 21 [16:00:54.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/projects/project2/tsconfig.json WatchType: Type roots -Info 22 [16:00:55.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/projects/project2/tsconfig.json WatchType: Type roots -Info 23 [16:00:56.000] Finishing updateGraphWorker: Project: /user/username/projects/myproject/projects/project2/tsconfig.json Version: 1 structureChanged: true structureIsReused:: Not Elapsed:: *ms -Info 24 [16:00:57.000] Project '/user/username/projects/myproject/projects/project2/tsconfig.json' (Configured) -Info 25 [16:00:58.000] Files (3) +Info 12 [00:00:45.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/projects/project1/tsconfig.json 2000 undefined Project: /user/username/projects/myproject/projects/project2/tsconfig.json WatchType: Config file +Info 13 [00:00:46.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/projects/project1 1 undefined Config: /user/username/projects/myproject/projects/project1/tsconfig.json WatchType: Wild card directory +Info 14 [00:00:47.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/projects/project1 1 undefined Config: /user/username/projects/myproject/projects/project1/tsconfig.json WatchType: Wild card directory +Info 15 [00:00:48.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/projects/project1/class1.d.ts 500 undefined WatchType: Closed Script info +Info 16 [00:00:49.000] FileWatcher:: Added:: WatchInfo: /a/lib/lib.d.ts 500 undefined WatchType: Closed Script info +Info 17 [00:00:50.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/projects/project2/node_modules/@types 1 undefined Project: /user/username/projects/myproject/projects/project2/tsconfig.json WatchType: Type roots +Info 18 [00:00:51.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/projects/project2/node_modules/@types 1 undefined Project: /user/username/projects/myproject/projects/project2/tsconfig.json WatchType: Type roots +Info 19 [00:00:52.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/projects/node_modules/@types 1 undefined Project: /user/username/projects/myproject/projects/project2/tsconfig.json WatchType: Type roots +Info 20 [00:00:53.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/projects/node_modules/@types 1 undefined Project: /user/username/projects/myproject/projects/project2/tsconfig.json WatchType: Type roots +Info 21 [00:00:54.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/projects/project2/tsconfig.json WatchType: Type roots +Info 22 [00:00:55.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/projects/project2/tsconfig.json WatchType: Type roots +Info 23 [00:00:56.000] Finishing updateGraphWorker: Project: /user/username/projects/myproject/projects/project2/tsconfig.json Version: 1 structureChanged: true structureIsReused:: Not Elapsed:: *ms +Info 24 [00:00:57.000] Project '/user/username/projects/myproject/projects/project2/tsconfig.json' (Configured) +Info 25 [00:00:58.000] Files (3) /a/lib/lib.d.ts /user/username/projects/myproject/projects/project1/class1.d.ts /user/username/projects/myproject/projects/project2/class2.ts @@ -105,16 +105,16 @@ Info 25 [16:00:58.000] Files (3) class2.ts Matched by default include pattern '**/*' -Info 26 [16:00:59.000] ----------------------------------------------- -Info 27 [16:01:00.000] Search path: /user/username/projects/myproject/projects/project2 -Info 28 [16:01:01.000] For info: /user/username/projects/myproject/projects/project2/tsconfig.json :: No config files found. -Info 29 [16:01:02.000] Project '/user/username/projects/myproject/projects/project2/tsconfig.json' (Configured) -Info 29 [16:01:03.000] Files (3) +Info 26 [00:00:59.000] ----------------------------------------------- +Info 27 [00:01:00.000] Search path: /user/username/projects/myproject/projects/project2 +Info 28 [00:01:01.000] For info: /user/username/projects/myproject/projects/project2/tsconfig.json :: No config files found. +Info 29 [00:01:02.000] Project '/user/username/projects/myproject/projects/project2/tsconfig.json' (Configured) +Info 29 [00:01:03.000] Files (3) -Info 29 [16:01:04.000] ----------------------------------------------- -Info 29 [16:01:05.000] Open files: -Info 29 [16:01:06.000] FileName: /user/username/projects/myproject/projects/project2/class2.ts ProjectRootPath: undefined -Info 29 [16:01:07.000] Projects: /user/username/projects/myproject/projects/project2/tsconfig.json +Info 29 [00:01:04.000] ----------------------------------------------- +Info 29 [00:01:05.000] Open files: +Info 29 [00:01:06.000] FileName: /user/username/projects/myproject/projects/project2/class2.ts ProjectRootPath: undefined +Info 29 [00:01:07.000] Projects: /user/username/projects/myproject/projects/project2/tsconfig.json After request PolledWatches:: @@ -141,11 +141,11 @@ FsWatchesRecursive:: /user/username/projects/myproject/projects/project1: {} -Info 29 [16:01:08.000] response: +Info 29 [00:01:08.000] response: { "responseRequired": false } -Info 30 [16:01:09.000] request: +Info 30 [00:01:09.000] request: { "seq": 0, "type": "request", @@ -180,20 +180,20 @@ FsWatchesRecursive:: /user/username/projects/myproject/projects/project1: {} -Info 31 [16:01:10.000] Search path: /user/username/projects/myproject/projects/project1 -Info 32 [16:01:11.000] For info: /user/username/projects/myproject/projects/project1/class1.ts :: Config file name: /user/username/projects/myproject/projects/project1/tsconfig.json -Info 33 [16:01:12.000] Creating configuration project /user/username/projects/myproject/projects/project1/tsconfig.json -Info 34 [16:01:13.000] Plugins were requested but not running in environment that supports 'require'. Nothing will be loaded -Info 35 [16:01:14.000] Starting updateGraphWorker: Project: /user/username/projects/myproject/projects/project1/tsconfig.json -Info 36 [16:01:15.000] 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 37 [16:01:16.000] 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 38 [16:01:17.000] 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 39 [16:01:18.000] 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 40 [16:01:19.000] 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 41 [16:01:20.000] 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 42 [16:01:21.000] Finishing updateGraphWorker: Project: /user/username/projects/myproject/projects/project1/tsconfig.json Version: 1 structureChanged: true structureIsReused:: Not Elapsed:: *ms -Info 43 [16:01:22.000] Project '/user/username/projects/myproject/projects/project1/tsconfig.json' (Configured) -Info 44 [16:01:23.000] Files (2) +Info 31 [00:01:10.000] Search path: /user/username/projects/myproject/projects/project1 +Info 32 [00:01:11.000] For info: /user/username/projects/myproject/projects/project1/class1.ts :: Config file name: /user/username/projects/myproject/projects/project1/tsconfig.json +Info 33 [00:01:12.000] Creating configuration project /user/username/projects/myproject/projects/project1/tsconfig.json +Info 34 [00:01:13.000] Plugins were requested but not running in environment that supports 'require'. Nothing will be loaded +Info 35 [00:01:14.000] Starting updateGraphWorker: Project: /user/username/projects/myproject/projects/project1/tsconfig.json +Info 36 [00:01:15.000] 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 37 [00:01:16.000] 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 38 [00:01:17.000] 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 39 [00:01:18.000] 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 40 [00:01:19.000] 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 41 [00:01:20.000] 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 42 [00:01:21.000] Finishing updateGraphWorker: Project: /user/username/projects/myproject/projects/project1/tsconfig.json Version: 1 structureChanged: true structureIsReused:: Not Elapsed:: *ms +Info 43 [00:01:22.000] Project '/user/username/projects/myproject/projects/project1/tsconfig.json' (Configured) +Info 44 [00:01:23.000] Files (2) /a/lib/lib.d.ts /user/username/projects/myproject/projects/project1/class1.ts @@ -203,22 +203,22 @@ Info 44 [16:01:23.000] Files (2) class1.ts Matched by default include pattern '**/*' -Info 45 [16:01:24.000] ----------------------------------------------- -Info 46 [16:01:25.000] Search path: /user/username/projects/myproject/projects/project1 -Info 47 [16:01:26.000] For info: /user/username/projects/myproject/projects/project1/tsconfig.json :: No config files found. -Info 48 [16:01:27.000] Project '/user/username/projects/myproject/projects/project2/tsconfig.json' (Configured) -Info 48 [16:01:28.000] Files (3) - -Info 48 [16:01:29.000] ----------------------------------------------- -Info 48 [16:01:30.000] Project '/user/username/projects/myproject/projects/project1/tsconfig.json' (Configured) -Info 48 [16:01:31.000] Files (2) - -Info 48 [16:01:32.000] ----------------------------------------------- -Info 48 [16:01:33.000] Open files: -Info 48 [16:01:34.000] FileName: /user/username/projects/myproject/projects/project2/class2.ts ProjectRootPath: undefined -Info 48 [16:01:35.000] Projects: /user/username/projects/myproject/projects/project2/tsconfig.json -Info 48 [16:01:36.000] FileName: /user/username/projects/myproject/projects/project1/class1.ts ProjectRootPath: undefined -Info 48 [16:01:37.000] Projects: /user/username/projects/myproject/projects/project1/tsconfig.json +Info 45 [00:01:24.000] ----------------------------------------------- +Info 46 [00:01:25.000] Search path: /user/username/projects/myproject/projects/project1 +Info 47 [00:01:26.000] For info: /user/username/projects/myproject/projects/project1/tsconfig.json :: No config files found. +Info 48 [00:01:27.000] Project '/user/username/projects/myproject/projects/project2/tsconfig.json' (Configured) +Info 48 [00:01:28.000] Files (3) + +Info 48 [00:01:29.000] ----------------------------------------------- +Info 48 [00:01:30.000] Project '/user/username/projects/myproject/projects/project1/tsconfig.json' (Configured) +Info 48 [00:01:31.000] Files (2) + +Info 48 [00:01:32.000] ----------------------------------------------- +Info 48 [00:01:33.000] Open files: +Info 48 [00:01:34.000] FileName: /user/username/projects/myproject/projects/project2/class2.ts ProjectRootPath: undefined +Info 48 [00:01:35.000] Projects: /user/username/projects/myproject/projects/project2/tsconfig.json +Info 48 [00:01:36.000] FileName: /user/username/projects/myproject/projects/project1/class1.ts ProjectRootPath: undefined +Info 48 [00:01:37.000] Projects: /user/username/projects/myproject/projects/project1/tsconfig.json After request PolledWatches:: @@ -247,16 +247,16 @@ FsWatchesRecursive:: /user/username/projects/myproject/projects/project1: {} -Info 48 [16:01:38.000] response: +Info 48 [00:01:38.000] response: { "responseRequired": false } -Info 49 [16:01:41.000] DirectoryWatcher:: Triggered with /user/username/projects/myproject/projects/project1/class3.ts :: WatchInfo: /user/username/projects/myproject/projects/project1 1 undefined Config: /user/username/projects/myproject/projects/project1/tsconfig.json WatchType: Wild card directory -Info 50 [16:01:42.000] Scheduled: /user/username/projects/myproject/projects/project2/tsconfig.json -Info 51 [16:01:43.000] Scheduled: *ensureProjectForOpenFiles* -Info 52 [16:01:44.000] Scheduled: /user/username/projects/myproject/projects/project1/tsconfig.json -Info 53 [16:01:45.000] Scheduled: *ensureProjectForOpenFiles*, Cancelled earlier one -Info 54 [16:01:46.000] Elapsed:: *ms DirectoryWatcher:: Triggered with /user/username/projects/myproject/projects/project1/class3.ts :: WatchInfo: /user/username/projects/myproject/projects/project1 1 undefined Config: /user/username/projects/myproject/projects/project1/tsconfig.json WatchType: Wild card directory +Info 49 [00:01:41.000] DirectoryWatcher:: Triggered with /user/username/projects/myproject/projects/project1/class3.ts :: WatchInfo: /user/username/projects/myproject/projects/project1 1 undefined Config: /user/username/projects/myproject/projects/project1/tsconfig.json WatchType: Wild card directory +Info 50 [00:01:42.000] Scheduled: /user/username/projects/myproject/projects/project2/tsconfig.json +Info 51 [00:01:43.000] Scheduled: *ensureProjectForOpenFiles* +Info 52 [00:01:44.000] Scheduled: /user/username/projects/myproject/projects/project1/tsconfig.json +Info 53 [00:01:45.000] Scheduled: *ensureProjectForOpenFiles*, Cancelled earlier one +Info 54 [00:01:46.000] Elapsed:: *ms DirectoryWatcher:: Triggered with /user/username/projects/myproject/projects/project1/class3.ts :: WatchInfo: /user/username/projects/myproject/projects/project1 1 undefined Config: /user/username/projects/myproject/projects/project1/tsconfig.json WatchType: Wild card directory Before checking timeout queue length (3) and running //// [/user/username/projects/myproject/projects/project1/class3.ts] class class3 {} @@ -288,17 +288,17 @@ FsWatchesRecursive:: /user/username/projects/myproject/projects/project1: {} -Info 55 [16:01:47.000] Running: /user/username/projects/myproject/projects/project2/tsconfig.json -Info 56 [16:01:48.000] Starting updateGraphWorker: Project: /user/username/projects/myproject/projects/project2/tsconfig.json -Info 57 [16:01:49.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/projects/project1/class3.d.ts 500 undefined Project: /user/username/projects/myproject/projects/project2/tsconfig.json WatchType: Missing file -Info 58 [16:01:50.000] Finishing updateGraphWorker: Project: /user/username/projects/myproject/projects/project2/tsconfig.json Version: 2 structureChanged: true structureIsReused:: Not Elapsed:: *ms -Info 59 [16:01:51.000] Different program with same set of files -Info 60 [16:01:52.000] Running: /user/username/projects/myproject/projects/project1/tsconfig.json -Info 61 [16:01:53.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/projects/project1/class3.ts 500 undefined WatchType: Closed Script info -Info 62 [16:01:54.000] Starting updateGraphWorker: Project: /user/username/projects/myproject/projects/project1/tsconfig.json -Info 63 [16:01:55.000] Finishing updateGraphWorker: Project: /user/username/projects/myproject/projects/project1/tsconfig.json Version: 2 structureChanged: true structureIsReused:: Not Elapsed:: *ms -Info 64 [16:01:56.000] Project '/user/username/projects/myproject/projects/project1/tsconfig.json' (Configured) -Info 65 [16:01:57.000] Files (3) +Info 55 [00:01:47.000] Running: /user/username/projects/myproject/projects/project2/tsconfig.json +Info 56 [00:01:48.000] Starting updateGraphWorker: Project: /user/username/projects/myproject/projects/project2/tsconfig.json +Info 57 [00:01:49.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/projects/project1/class3.d.ts 500 undefined Project: /user/username/projects/myproject/projects/project2/tsconfig.json WatchType: Missing file +Info 58 [00:01:50.000] Finishing updateGraphWorker: Project: /user/username/projects/myproject/projects/project2/tsconfig.json Version: 2 structureChanged: true structureIsReused:: Not Elapsed:: *ms +Info 59 [00:01:51.000] Different program with same set of files +Info 60 [00:01:52.000] Running: /user/username/projects/myproject/projects/project1/tsconfig.json +Info 61 [00:01:53.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/projects/project1/class3.ts 500 undefined WatchType: Closed Script info +Info 62 [00:01:54.000] Starting updateGraphWorker: Project: /user/username/projects/myproject/projects/project1/tsconfig.json +Info 63 [00:01:55.000] Finishing updateGraphWorker: Project: /user/username/projects/myproject/projects/project1/tsconfig.json Version: 2 structureChanged: true structureIsReused:: Not Elapsed:: *ms +Info 64 [00:01:56.000] Project '/user/username/projects/myproject/projects/project1/tsconfig.json' (Configured) +Info 65 [00:01:57.000] Files (3) /a/lib/lib.d.ts /user/username/projects/myproject/projects/project1/class1.ts /user/username/projects/myproject/projects/project1/class3.ts @@ -311,36 +311,36 @@ Info 65 [16:01:57.000] Files (3) class3.ts Matched by default include pattern '**/*' -Info 66 [16:01:58.000] ----------------------------------------------- -Info 67 [16:01:59.000] Running: *ensureProjectForOpenFiles* -Info 68 [16:02:00.000] Before ensureProjectForOpenFiles: -Info 69 [16:02:01.000] Project '/user/username/projects/myproject/projects/project2/tsconfig.json' (Configured) -Info 69 [16:02:02.000] Files (3) - -Info 69 [16:02:03.000] ----------------------------------------------- -Info 69 [16:02:04.000] Project '/user/username/projects/myproject/projects/project1/tsconfig.json' (Configured) -Info 69 [16:02:05.000] Files (3) - -Info 69 [16:02:06.000] ----------------------------------------------- -Info 69 [16:02:07.000] Open files: -Info 69 [16:02:08.000] FileName: /user/username/projects/myproject/projects/project2/class2.ts ProjectRootPath: undefined -Info 69 [16:02:09.000] Projects: /user/username/projects/myproject/projects/project2/tsconfig.json -Info 69 [16:02:10.000] FileName: /user/username/projects/myproject/projects/project1/class1.ts ProjectRootPath: undefined -Info 69 [16:02:11.000] Projects: /user/username/projects/myproject/projects/project1/tsconfig.json -Info 69 [16:02:12.000] After ensureProjectForOpenFiles: -Info 70 [16:02:13.000] Project '/user/username/projects/myproject/projects/project2/tsconfig.json' (Configured) -Info 70 [16:02:14.000] Files (3) - -Info 70 [16:02:15.000] ----------------------------------------------- -Info 70 [16:02:16.000] Project '/user/username/projects/myproject/projects/project1/tsconfig.json' (Configured) -Info 70 [16:02:17.000] Files (3) - -Info 70 [16:02:18.000] ----------------------------------------------- -Info 70 [16:02:19.000] Open files: -Info 70 [16:02:20.000] FileName: /user/username/projects/myproject/projects/project2/class2.ts ProjectRootPath: undefined -Info 70 [16:02:21.000] Projects: /user/username/projects/myproject/projects/project2/tsconfig.json -Info 70 [16:02:22.000] FileName: /user/username/projects/myproject/projects/project1/class1.ts ProjectRootPath: undefined -Info 70 [16:02:23.000] Projects: /user/username/projects/myproject/projects/project1/tsconfig.json +Info 66 [00:01:58.000] ----------------------------------------------- +Info 67 [00:01:59.000] Running: *ensureProjectForOpenFiles* +Info 68 [00:02:00.000] Before ensureProjectForOpenFiles: +Info 69 [00:02:01.000] Project '/user/username/projects/myproject/projects/project2/tsconfig.json' (Configured) +Info 69 [00:02:02.000] Files (3) + +Info 69 [00:02:03.000] ----------------------------------------------- +Info 69 [00:02:04.000] Project '/user/username/projects/myproject/projects/project1/tsconfig.json' (Configured) +Info 69 [00:02:05.000] Files (3) + +Info 69 [00:02:06.000] ----------------------------------------------- +Info 69 [00:02:07.000] Open files: +Info 69 [00:02:08.000] FileName: /user/username/projects/myproject/projects/project2/class2.ts ProjectRootPath: undefined +Info 69 [00:02:09.000] Projects: /user/username/projects/myproject/projects/project2/tsconfig.json +Info 69 [00:02:10.000] FileName: /user/username/projects/myproject/projects/project1/class1.ts ProjectRootPath: undefined +Info 69 [00:02:11.000] Projects: /user/username/projects/myproject/projects/project1/tsconfig.json +Info 69 [00:02:12.000] After ensureProjectForOpenFiles: +Info 70 [00:02:13.000] Project '/user/username/projects/myproject/projects/project2/tsconfig.json' (Configured) +Info 70 [00:02:14.000] Files (3) + +Info 70 [00:02:15.000] ----------------------------------------------- +Info 70 [00:02:16.000] Project '/user/username/projects/myproject/projects/project1/tsconfig.json' (Configured) +Info 70 [00:02:17.000] Files (3) + +Info 70 [00:02:18.000] ----------------------------------------------- +Info 70 [00:02:19.000] Open files: +Info 70 [00:02:20.000] FileName: /user/username/projects/myproject/projects/project2/class2.ts ProjectRootPath: undefined +Info 70 [00:02:21.000] Projects: /user/username/projects/myproject/projects/project2/tsconfig.json +Info 70 [00:02:22.000] FileName: /user/username/projects/myproject/projects/project1/class1.ts ProjectRootPath: undefined +Info 70 [00:02:23.000] Projects: /user/username/projects/myproject/projects/project1/tsconfig.json After checking timeout queue length (3) and running PolledWatches:: @@ -373,14 +373,14 @@ FsWatchesRecursive:: /user/username/projects/myproject/projects/project1: {} -Info 70 [16:02:26.000] FileWatcher:: Triggered with /user/username/projects/myproject/projects/project1/class3.d.ts 0:: WatchInfo: /user/username/projects/myproject/projects/project1/class3.d.ts 500 undefined Project: /user/username/projects/myproject/projects/project2/tsconfig.json WatchType: Missing file -Info 71 [16:02:27.000] FileWatcher:: Close:: WatchInfo: /user/username/projects/myproject/projects/project1/class3.d.ts 500 undefined Project: /user/username/projects/myproject/projects/project2/tsconfig.json WatchType: Missing file -Info 72 [16:02:28.000] Scheduled: /user/username/projects/myproject/projects/project2/tsconfig.json -Info 73 [16:02:29.000] Scheduled: *ensureProjectForOpenFiles* -Info 74 [16:02:30.000] Elapsed:: *ms FileWatcher:: Triggered with /user/username/projects/myproject/projects/project1/class3.d.ts 0:: WatchInfo: /user/username/projects/myproject/projects/project1/class3.d.ts 500 undefined Project: /user/username/projects/myproject/projects/project2/tsconfig.json WatchType: Missing file -Info 75 [16:02:31.000] DirectoryWatcher:: Triggered with /user/username/projects/myproject/projects/project1/class3.d.ts :: WatchInfo: /user/username/projects/myproject/projects/project1 1 undefined Config: /user/username/projects/myproject/projects/project1/tsconfig.json WatchType: Wild card directory -Info 76 [16:02:32.000] Project: /user/username/projects/myproject/projects/project1/tsconfig.json Detected output file: /user/username/projects/myproject/projects/project1/class3.d.ts -Info 77 [16:02:33.000] Elapsed:: *ms DirectoryWatcher:: Triggered with /user/username/projects/myproject/projects/project1/class3.d.ts :: WatchInfo: /user/username/projects/myproject/projects/project1 1 undefined Config: /user/username/projects/myproject/projects/project1/tsconfig.json WatchType: Wild card directory +Info 70 [00:02:26.000] FileWatcher:: Triggered with /user/username/projects/myproject/projects/project1/class3.d.ts 0:: WatchInfo: /user/username/projects/myproject/projects/project1/class3.d.ts 500 undefined Project: /user/username/projects/myproject/projects/project2/tsconfig.json WatchType: Missing file +Info 71 [00:02:27.000] FileWatcher:: Close:: WatchInfo: /user/username/projects/myproject/projects/project1/class3.d.ts 500 undefined Project: /user/username/projects/myproject/projects/project2/tsconfig.json WatchType: Missing file +Info 72 [00:02:28.000] Scheduled: /user/username/projects/myproject/projects/project2/tsconfig.json +Info 73 [00:02:29.000] Scheduled: *ensureProjectForOpenFiles* +Info 74 [00:02:30.000] Elapsed:: *ms FileWatcher:: Triggered with /user/username/projects/myproject/projects/project1/class3.d.ts 0:: WatchInfo: /user/username/projects/myproject/projects/project1/class3.d.ts 500 undefined Project: /user/username/projects/myproject/projects/project2/tsconfig.json WatchType: Missing file +Info 75 [00:02:31.000] DirectoryWatcher:: Triggered with /user/username/projects/myproject/projects/project1/class3.d.ts :: WatchInfo: /user/username/projects/myproject/projects/project1 1 undefined Config: /user/username/projects/myproject/projects/project1/tsconfig.json WatchType: Wild card directory +Info 76 [00:02:32.000] Project: /user/username/projects/myproject/projects/project1/tsconfig.json Detected output file: /user/username/projects/myproject/projects/project1/class3.d.ts +Info 77 [00:02:33.000] Elapsed:: *ms DirectoryWatcher:: Triggered with /user/username/projects/myproject/projects/project1/class3.d.ts :: WatchInfo: /user/username/projects/myproject/projects/project1 1 undefined Config: /user/username/projects/myproject/projects/project1/tsconfig.json WatchType: Wild card directory Before checking timeout queue length (2) and running //// [/user/username/projects/myproject/projects/project1/class3.d.ts] declare class class3 {} @@ -414,12 +414,12 @@ FsWatchesRecursive:: /user/username/projects/myproject/projects/project1: {} -Info 78 [16:02:34.000] Running: /user/username/projects/myproject/projects/project2/tsconfig.json -Info 79 [16:02:35.000] Starting updateGraphWorker: Project: /user/username/projects/myproject/projects/project2/tsconfig.json -Info 80 [16:02:36.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/projects/project1/class3.d.ts 500 undefined WatchType: Closed Script info -Info 81 [16:02:37.000] Finishing updateGraphWorker: Project: /user/username/projects/myproject/projects/project2/tsconfig.json Version: 3 structureChanged: true structureIsReused:: Not Elapsed:: *ms -Info 82 [16:02:38.000] Project '/user/username/projects/myproject/projects/project2/tsconfig.json' (Configured) -Info 83 [16:02:39.000] Files (4) +Info 78 [00:02:34.000] Running: /user/username/projects/myproject/projects/project2/tsconfig.json +Info 79 [00:02:35.000] Starting updateGraphWorker: Project: /user/username/projects/myproject/projects/project2/tsconfig.json +Info 80 [00:02:36.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/projects/project1/class3.d.ts 500 undefined WatchType: Closed Script info +Info 81 [00:02:37.000] Finishing updateGraphWorker: Project: /user/username/projects/myproject/projects/project2/tsconfig.json Version: 3 structureChanged: true structureIsReused:: Not Elapsed:: *ms +Info 82 [00:02:38.000] Project '/user/username/projects/myproject/projects/project2/tsconfig.json' (Configured) +Info 83 [00:02:39.000] Files (4) /a/lib/lib.d.ts /user/username/projects/myproject/projects/project1/class1.d.ts /user/username/projects/myproject/projects/project1/class3.d.ts @@ -435,36 +435,36 @@ Info 83 [16:02:39.000] Files (4) class2.ts Matched by default include pattern '**/*' -Info 84 [16:02:40.000] ----------------------------------------------- -Info 85 [16:02:41.000] Running: *ensureProjectForOpenFiles* -Info 86 [16:02:42.000] Before ensureProjectForOpenFiles: -Info 87 [16:02:43.000] Project '/user/username/projects/myproject/projects/project2/tsconfig.json' (Configured) -Info 87 [16:02:44.000] Files (4) - -Info 87 [16:02:45.000] ----------------------------------------------- -Info 87 [16:02:46.000] Project '/user/username/projects/myproject/projects/project1/tsconfig.json' (Configured) -Info 87 [16:02:47.000] Files (3) - -Info 87 [16:02:48.000] ----------------------------------------------- -Info 87 [16:02:49.000] Open files: -Info 87 [16:02:50.000] FileName: /user/username/projects/myproject/projects/project2/class2.ts ProjectRootPath: undefined -Info 87 [16:02:51.000] Projects: /user/username/projects/myproject/projects/project2/tsconfig.json -Info 87 [16:02:52.000] FileName: /user/username/projects/myproject/projects/project1/class1.ts ProjectRootPath: undefined -Info 87 [16:02:53.000] Projects: /user/username/projects/myproject/projects/project1/tsconfig.json -Info 87 [16:02:54.000] After ensureProjectForOpenFiles: -Info 88 [16:02:55.000] Project '/user/username/projects/myproject/projects/project2/tsconfig.json' (Configured) -Info 88 [16:02:56.000] Files (4) - -Info 88 [16:02:57.000] ----------------------------------------------- -Info 88 [16:02:58.000] Project '/user/username/projects/myproject/projects/project1/tsconfig.json' (Configured) -Info 88 [16:02:59.000] Files (3) - -Info 88 [16:03:00.000] ----------------------------------------------- -Info 88 [16:03:01.000] Open files: -Info 88 [16:03:02.000] FileName: /user/username/projects/myproject/projects/project2/class2.ts ProjectRootPath: undefined -Info 88 [16:03:03.000] Projects: /user/username/projects/myproject/projects/project2/tsconfig.json -Info 88 [16:03:04.000] FileName: /user/username/projects/myproject/projects/project1/class1.ts ProjectRootPath: undefined -Info 88 [16:03:05.000] Projects: /user/username/projects/myproject/projects/project1/tsconfig.json +Info 84 [00:02:40.000] ----------------------------------------------- +Info 85 [00:02:41.000] Running: *ensureProjectForOpenFiles* +Info 86 [00:02:42.000] Before ensureProjectForOpenFiles: +Info 87 [00:02:43.000] Project '/user/username/projects/myproject/projects/project2/tsconfig.json' (Configured) +Info 87 [00:02:44.000] Files (4) + +Info 87 [00:02:45.000] ----------------------------------------------- +Info 87 [00:02:46.000] Project '/user/username/projects/myproject/projects/project1/tsconfig.json' (Configured) +Info 87 [00:02:47.000] Files (3) + +Info 87 [00:02:48.000] ----------------------------------------------- +Info 87 [00:02:49.000] Open files: +Info 87 [00:02:50.000] FileName: /user/username/projects/myproject/projects/project2/class2.ts ProjectRootPath: undefined +Info 87 [00:02:51.000] Projects: /user/username/projects/myproject/projects/project2/tsconfig.json +Info 87 [00:02:52.000] FileName: /user/username/projects/myproject/projects/project1/class1.ts ProjectRootPath: undefined +Info 87 [00:02:53.000] Projects: /user/username/projects/myproject/projects/project1/tsconfig.json +Info 87 [00:02:54.000] After ensureProjectForOpenFiles: +Info 88 [00:02:55.000] Project '/user/username/projects/myproject/projects/project2/tsconfig.json' (Configured) +Info 88 [00:02:56.000] Files (4) + +Info 88 [00:02:57.000] ----------------------------------------------- +Info 88 [00:02:58.000] Project '/user/username/projects/myproject/projects/project1/tsconfig.json' (Configured) +Info 88 [00:02:59.000] Files (3) + +Info 88 [00:03:00.000] ----------------------------------------------- +Info 88 [00:03:01.000] Open files: +Info 88 [00:03:02.000] FileName: /user/username/projects/myproject/projects/project2/class2.ts ProjectRootPath: undefined +Info 88 [00:03:03.000] Projects: /user/username/projects/myproject/projects/project2/tsconfig.json +Info 88 [00:03:04.000] FileName: /user/username/projects/myproject/projects/project1/class1.ts ProjectRootPath: undefined +Info 88 [00:03:05.000] Projects: /user/username/projects/myproject/projects/project1/tsconfig.json After checking timeout queue length (2) and running PolledWatches:: @@ -497,12 +497,12 @@ FsWatchesRecursive:: /user/username/projects/myproject/projects/project1: {} -Info 88 [16:03:09.000] DirectoryWatcher:: Triggered with /user/username/projects/myproject/projects/project1/temp :: WatchInfo: /user/username/projects/myproject/projects/project1 1 undefined Config: /user/username/projects/myproject/projects/project1/tsconfig.json WatchType: Wild card directory -Info 89 [16:03:10.000] Project: /user/username/projects/myproject/projects/project1/tsconfig.json Detected excluded file: /user/username/projects/myproject/projects/project1/temp -Info 90 [16:03:11.000] Elapsed:: *ms DirectoryWatcher:: Triggered with /user/username/projects/myproject/projects/project1/temp :: WatchInfo: /user/username/projects/myproject/projects/project1 1 undefined Config: /user/username/projects/myproject/projects/project1/tsconfig.json WatchType: Wild card directory -Info 91 [16:03:13.000] DirectoryWatcher:: Triggered with /user/username/projects/myproject/projects/project1/temp/file.d.ts :: WatchInfo: /user/username/projects/myproject/projects/project1 1 undefined Config: /user/username/projects/myproject/projects/project1/tsconfig.json WatchType: Wild card directory -Info 92 [16:03:14.000] Project: /user/username/projects/myproject/projects/project1/tsconfig.json Detected excluded file: /user/username/projects/myproject/projects/project1/temp/file.d.ts -Info 93 [16:03:15.000] Elapsed:: *ms DirectoryWatcher:: Triggered with /user/username/projects/myproject/projects/project1/temp/file.d.ts :: WatchInfo: /user/username/projects/myproject/projects/project1 1 undefined Config: /user/username/projects/myproject/projects/project1/tsconfig.json WatchType: Wild card directory +Info 88 [00:03:09.000] DirectoryWatcher:: Triggered with /user/username/projects/myproject/projects/project1/temp :: WatchInfo: /user/username/projects/myproject/projects/project1 1 undefined Config: /user/username/projects/myproject/projects/project1/tsconfig.json WatchType: Wild card directory +Info 89 [00:03:10.000] Project: /user/username/projects/myproject/projects/project1/tsconfig.json Detected excluded file: /user/username/projects/myproject/projects/project1/temp +Info 90 [00:03:11.000] Elapsed:: *ms DirectoryWatcher:: Triggered with /user/username/projects/myproject/projects/project1/temp :: WatchInfo: /user/username/projects/myproject/projects/project1 1 undefined Config: /user/username/projects/myproject/projects/project1/tsconfig.json WatchType: Wild card directory +Info 91 [00:03:13.000] DirectoryWatcher:: Triggered with /user/username/projects/myproject/projects/project1/temp/file.d.ts :: WatchInfo: /user/username/projects/myproject/projects/project1 1 undefined Config: /user/username/projects/myproject/projects/project1/tsconfig.json WatchType: Wild card directory +Info 92 [00:03:14.000] Project: /user/username/projects/myproject/projects/project1/tsconfig.json Detected excluded file: /user/username/projects/myproject/projects/project1/temp/file.d.ts +Info 93 [00:03:15.000] Elapsed:: *ms DirectoryWatcher:: Triggered with /user/username/projects/myproject/projects/project1/temp/file.d.ts :: WatchInfo: /user/username/projects/myproject/projects/project1 1 undefined Config: /user/username/projects/myproject/projects/project1/tsconfig.json WatchType: Wild card directory Before checking timeout queue length (0) and running //// [/user/username/projects/myproject/projects/project1/temp/file.d.ts] declare class file {} @@ -570,14 +570,14 @@ FsWatchesRecursive:: /user/username/projects/myproject/projects/project1: {} -Info 94 [16:03:17.000] FileWatcher:: Triggered with /user/username/projects/myproject/projects/project1/class3.d.ts 2:: WatchInfo: /user/username/projects/myproject/projects/project1/class3.d.ts 500 undefined WatchType: Closed Script info -Info 95 [16:03:18.000] FileWatcher:: Close:: WatchInfo: /user/username/projects/myproject/projects/project1/class3.d.ts 500 undefined WatchType: Closed Script info -Info 96 [16:03:19.000] Scheduled: /user/username/projects/myproject/projects/project2/tsconfig.json -Info 97 [16:03:20.000] Scheduled: *ensureProjectForOpenFiles* -Info 98 [16:03:21.000] Elapsed:: *ms FileWatcher:: Triggered with /user/username/projects/myproject/projects/project1/class3.d.ts 2:: WatchInfo: /user/username/projects/myproject/projects/project1/class3.d.ts 500 undefined WatchType: Closed Script info -Info 99 [16:03:22.000] DirectoryWatcher:: Triggered with /user/username/projects/myproject/projects/project1/class3.d.ts :: WatchInfo: /user/username/projects/myproject/projects/project1 1 undefined Config: /user/username/projects/myproject/projects/project1/tsconfig.json WatchType: Wild card directory -Info 100 [16:03:23.000] Project: /user/username/projects/myproject/projects/project1/tsconfig.json Detected output file: /user/username/projects/myproject/projects/project1/class3.d.ts -Info 101 [16:03:24.000] Elapsed:: *ms DirectoryWatcher:: Triggered with /user/username/projects/myproject/projects/project1/class3.d.ts :: WatchInfo: /user/username/projects/myproject/projects/project1 1 undefined Config: /user/username/projects/myproject/projects/project1/tsconfig.json WatchType: Wild card directory +Info 94 [00:03:17.000] FileWatcher:: Triggered with /user/username/projects/myproject/projects/project1/class3.d.ts 2:: WatchInfo: /user/username/projects/myproject/projects/project1/class3.d.ts 500 undefined WatchType: Closed Script info +Info 95 [00:03:18.000] FileWatcher:: Close:: WatchInfo: /user/username/projects/myproject/projects/project1/class3.d.ts 500 undefined WatchType: Closed Script info +Info 96 [00:03:19.000] Scheduled: /user/username/projects/myproject/projects/project2/tsconfig.json +Info 97 [00:03:20.000] Scheduled: *ensureProjectForOpenFiles* +Info 98 [00:03:21.000] Elapsed:: *ms FileWatcher:: Triggered with /user/username/projects/myproject/projects/project1/class3.d.ts 2:: WatchInfo: /user/username/projects/myproject/projects/project1/class3.d.ts 500 undefined WatchType: Closed Script info +Info 99 [00:03:22.000] DirectoryWatcher:: Triggered with /user/username/projects/myproject/projects/project1/class3.d.ts :: WatchInfo: /user/username/projects/myproject/projects/project1 1 undefined Config: /user/username/projects/myproject/projects/project1/tsconfig.json WatchType: Wild card directory +Info 100 [00:03:23.000] Project: /user/username/projects/myproject/projects/project1/tsconfig.json Detected output file: /user/username/projects/myproject/projects/project1/class3.d.ts +Info 101 [00:03:24.000] Elapsed:: *ms DirectoryWatcher:: Triggered with /user/username/projects/myproject/projects/project1/class3.d.ts :: WatchInfo: /user/username/projects/myproject/projects/project1 1 undefined Config: /user/username/projects/myproject/projects/project1/tsconfig.json WatchType: Wild card directory Before checking timeout queue length (2) and running //// [/user/username/projects/myproject/projects/project1/class3.d.ts] deleted @@ -609,12 +609,12 @@ FsWatchesRecursive:: /user/username/projects/myproject/projects/project1: {} -Info 102 [16:03:25.000] Running: /user/username/projects/myproject/projects/project2/tsconfig.json -Info 103 [16:03:26.000] Starting updateGraphWorker: Project: /user/username/projects/myproject/projects/project2/tsconfig.json -Info 104 [16:03:27.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/projects/project1/class3.d.ts 500 undefined Project: /user/username/projects/myproject/projects/project2/tsconfig.json WatchType: Missing file -Info 105 [16:03:28.000] Finishing updateGraphWorker: Project: /user/username/projects/myproject/projects/project2/tsconfig.json Version: 4 structureChanged: true structureIsReused:: Not Elapsed:: *ms -Info 106 [16:03:29.000] Project '/user/username/projects/myproject/projects/project2/tsconfig.json' (Configured) -Info 107 [16:03:30.000] Files (3) +Info 102 [00:03:25.000] Running: /user/username/projects/myproject/projects/project2/tsconfig.json +Info 103 [00:03:26.000] Starting updateGraphWorker: Project: /user/username/projects/myproject/projects/project2/tsconfig.json +Info 104 [00:03:27.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/projects/project1/class3.d.ts 500 undefined Project: /user/username/projects/myproject/projects/project2/tsconfig.json WatchType: Missing file +Info 105 [00:03:28.000] Finishing updateGraphWorker: Project: /user/username/projects/myproject/projects/project2/tsconfig.json Version: 4 structureChanged: true structureIsReused:: Not Elapsed:: *ms +Info 106 [00:03:29.000] Project '/user/username/projects/myproject/projects/project2/tsconfig.json' (Configured) +Info 107 [00:03:30.000] Files (3) /a/lib/lib.d.ts /user/username/projects/myproject/projects/project1/class1.d.ts /user/username/projects/myproject/projects/project2/class2.ts @@ -627,36 +627,36 @@ Info 107 [16:03:30.000] Files (3) class2.ts Matched by default include pattern '**/*' -Info 108 [16:03:31.000] ----------------------------------------------- -Info 109 [16:03:32.000] Running: *ensureProjectForOpenFiles* -Info 110 [16:03:33.000] Before ensureProjectForOpenFiles: -Info 111 [16:03:34.000] Project '/user/username/projects/myproject/projects/project2/tsconfig.json' (Configured) -Info 111 [16:03:35.000] Files (3) - -Info 111 [16:03:36.000] ----------------------------------------------- -Info 111 [16:03:37.000] Project '/user/username/projects/myproject/projects/project1/tsconfig.json' (Configured) -Info 111 [16:03:38.000] Files (3) - -Info 111 [16:03:39.000] ----------------------------------------------- -Info 111 [16:03:40.000] Open files: -Info 111 [16:03:41.000] FileName: /user/username/projects/myproject/projects/project2/class2.ts ProjectRootPath: undefined -Info 111 [16:03:42.000] Projects: /user/username/projects/myproject/projects/project2/tsconfig.json -Info 111 [16:03:43.000] FileName: /user/username/projects/myproject/projects/project1/class1.ts ProjectRootPath: undefined -Info 111 [16:03:44.000] Projects: /user/username/projects/myproject/projects/project1/tsconfig.json -Info 111 [16:03:45.000] After ensureProjectForOpenFiles: -Info 112 [16:03:46.000] Project '/user/username/projects/myproject/projects/project2/tsconfig.json' (Configured) -Info 112 [16:03:47.000] Files (3) - -Info 112 [16:03:48.000] ----------------------------------------------- -Info 112 [16:03:49.000] Project '/user/username/projects/myproject/projects/project1/tsconfig.json' (Configured) -Info 112 [16:03:50.000] Files (3) - -Info 112 [16:03:51.000] ----------------------------------------------- -Info 112 [16:03:52.000] Open files: -Info 112 [16:03:53.000] FileName: /user/username/projects/myproject/projects/project2/class2.ts ProjectRootPath: undefined -Info 112 [16:03:54.000] Projects: /user/username/projects/myproject/projects/project2/tsconfig.json -Info 112 [16:03:55.000] FileName: /user/username/projects/myproject/projects/project1/class1.ts ProjectRootPath: undefined -Info 112 [16:03:56.000] Projects: /user/username/projects/myproject/projects/project1/tsconfig.json +Info 108 [00:03:31.000] ----------------------------------------------- +Info 109 [00:03:32.000] Running: *ensureProjectForOpenFiles* +Info 110 [00:03:33.000] Before ensureProjectForOpenFiles: +Info 111 [00:03:34.000] Project '/user/username/projects/myproject/projects/project2/tsconfig.json' (Configured) +Info 111 [00:03:35.000] Files (3) + +Info 111 [00:03:36.000] ----------------------------------------------- +Info 111 [00:03:37.000] Project '/user/username/projects/myproject/projects/project1/tsconfig.json' (Configured) +Info 111 [00:03:38.000] Files (3) + +Info 111 [00:03:39.000] ----------------------------------------------- +Info 111 [00:03:40.000] Open files: +Info 111 [00:03:41.000] FileName: /user/username/projects/myproject/projects/project2/class2.ts ProjectRootPath: undefined +Info 111 [00:03:42.000] Projects: /user/username/projects/myproject/projects/project2/tsconfig.json +Info 111 [00:03:43.000] FileName: /user/username/projects/myproject/projects/project1/class1.ts ProjectRootPath: undefined +Info 111 [00:03:44.000] Projects: /user/username/projects/myproject/projects/project1/tsconfig.json +Info 111 [00:03:45.000] After ensureProjectForOpenFiles: +Info 112 [00:03:46.000] Project '/user/username/projects/myproject/projects/project2/tsconfig.json' (Configured) +Info 112 [00:03:47.000] Files (3) + +Info 112 [00:03:48.000] ----------------------------------------------- +Info 112 [00:03:49.000] Project '/user/username/projects/myproject/projects/project1/tsconfig.json' (Configured) +Info 112 [00:03:50.000] Files (3) + +Info 112 [00:03:51.000] ----------------------------------------------- +Info 112 [00:03:52.000] Open files: +Info 112 [00:03:53.000] FileName: /user/username/projects/myproject/projects/project2/class2.ts ProjectRootPath: undefined +Info 112 [00:03:54.000] Projects: /user/username/projects/myproject/projects/project2/tsconfig.json +Info 112 [00:03:55.000] FileName: /user/username/projects/myproject/projects/project1/class1.ts ProjectRootPath: undefined +Info 112 [00:03:56.000] Projects: /user/username/projects/myproject/projects/project1/tsconfig.json After checking timeout queue length (2) and running PolledWatches:: @@ -689,14 +689,14 @@ FsWatchesRecursive:: /user/username/projects/myproject/projects/project1: {} -Info 112 [16:03:59.000] FileWatcher:: Triggered with /user/username/projects/myproject/projects/project1/class3.d.ts 0:: WatchInfo: /user/username/projects/myproject/projects/project1/class3.d.ts 500 undefined Project: /user/username/projects/myproject/projects/project2/tsconfig.json WatchType: Missing file -Info 113 [16:04:00.000] FileWatcher:: Close:: WatchInfo: /user/username/projects/myproject/projects/project1/class3.d.ts 500 undefined Project: /user/username/projects/myproject/projects/project2/tsconfig.json WatchType: Missing file -Info 114 [16:04:01.000] Scheduled: /user/username/projects/myproject/projects/project2/tsconfig.json -Info 115 [16:04:02.000] Scheduled: *ensureProjectForOpenFiles* -Info 116 [16:04:03.000] Elapsed:: *ms FileWatcher:: Triggered with /user/username/projects/myproject/projects/project1/class3.d.ts 0:: WatchInfo: /user/username/projects/myproject/projects/project1/class3.d.ts 500 undefined Project: /user/username/projects/myproject/projects/project2/tsconfig.json WatchType: Missing file -Info 117 [16:04:04.000] DirectoryWatcher:: Triggered with /user/username/projects/myproject/projects/project1/class3.d.ts :: WatchInfo: /user/username/projects/myproject/projects/project1 1 undefined Config: /user/username/projects/myproject/projects/project1/tsconfig.json WatchType: Wild card directory -Info 118 [16:04:05.000] Project: /user/username/projects/myproject/projects/project1/tsconfig.json Detected output file: /user/username/projects/myproject/projects/project1/class3.d.ts -Info 119 [16:04:06.000] Elapsed:: *ms DirectoryWatcher:: Triggered with /user/username/projects/myproject/projects/project1/class3.d.ts :: WatchInfo: /user/username/projects/myproject/projects/project1 1 undefined Config: /user/username/projects/myproject/projects/project1/tsconfig.json WatchType: Wild card directory +Info 112 [00:03:59.000] FileWatcher:: Triggered with /user/username/projects/myproject/projects/project1/class3.d.ts 0:: WatchInfo: /user/username/projects/myproject/projects/project1/class3.d.ts 500 undefined Project: /user/username/projects/myproject/projects/project2/tsconfig.json WatchType: Missing file +Info 113 [00:04:00.000] FileWatcher:: Close:: WatchInfo: /user/username/projects/myproject/projects/project1/class3.d.ts 500 undefined Project: /user/username/projects/myproject/projects/project2/tsconfig.json WatchType: Missing file +Info 114 [00:04:01.000] Scheduled: /user/username/projects/myproject/projects/project2/tsconfig.json +Info 115 [00:04:02.000] Scheduled: *ensureProjectForOpenFiles* +Info 116 [00:04:03.000] Elapsed:: *ms FileWatcher:: Triggered with /user/username/projects/myproject/projects/project1/class3.d.ts 0:: WatchInfo: /user/username/projects/myproject/projects/project1/class3.d.ts 500 undefined Project: /user/username/projects/myproject/projects/project2/tsconfig.json WatchType: Missing file +Info 117 [00:04:04.000] DirectoryWatcher:: Triggered with /user/username/projects/myproject/projects/project1/class3.d.ts :: WatchInfo: /user/username/projects/myproject/projects/project1 1 undefined Config: /user/username/projects/myproject/projects/project1/tsconfig.json WatchType: Wild card directory +Info 118 [00:04:05.000] Project: /user/username/projects/myproject/projects/project1/tsconfig.json Detected output file: /user/username/projects/myproject/projects/project1/class3.d.ts +Info 119 [00:04:06.000] Elapsed:: *ms DirectoryWatcher:: Triggered with /user/username/projects/myproject/projects/project1/class3.d.ts :: WatchInfo: /user/username/projects/myproject/projects/project1 1 undefined Config: /user/username/projects/myproject/projects/project1/tsconfig.json WatchType: Wild card directory Before checking timeout queue length (2) and running //// [/user/username/projects/myproject/projects/project1/class3.d.ts] declare class class3 {} @@ -730,12 +730,12 @@ FsWatchesRecursive:: /user/username/projects/myproject/projects/project1: {} -Info 120 [16:04:07.000] Running: /user/username/projects/myproject/projects/project2/tsconfig.json -Info 121 [16:04:08.000] Starting updateGraphWorker: Project: /user/username/projects/myproject/projects/project2/tsconfig.json -Info 122 [16:04:09.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/projects/project1/class3.d.ts 500 undefined WatchType: Closed Script info -Info 123 [16:04:10.000] Finishing updateGraphWorker: Project: /user/username/projects/myproject/projects/project2/tsconfig.json Version: 5 structureChanged: true structureIsReused:: Not Elapsed:: *ms -Info 124 [16:04:11.000] Project '/user/username/projects/myproject/projects/project2/tsconfig.json' (Configured) -Info 125 [16:04:12.000] Files (4) +Info 120 [00:04:07.000] Running: /user/username/projects/myproject/projects/project2/tsconfig.json +Info 121 [00:04:08.000] Starting updateGraphWorker: Project: /user/username/projects/myproject/projects/project2/tsconfig.json +Info 122 [00:04:09.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/projects/project1/class3.d.ts 500 undefined WatchType: Closed Script info +Info 123 [00:04:10.000] Finishing updateGraphWorker: Project: /user/username/projects/myproject/projects/project2/tsconfig.json Version: 5 structureChanged: true structureIsReused:: Not Elapsed:: *ms +Info 124 [00:04:11.000] Project '/user/username/projects/myproject/projects/project2/tsconfig.json' (Configured) +Info 125 [00:04:12.000] Files (4) /a/lib/lib.d.ts /user/username/projects/myproject/projects/project1/class1.d.ts /user/username/projects/myproject/projects/project1/class3.d.ts @@ -751,36 +751,36 @@ Info 125 [16:04:12.000] Files (4) class2.ts Matched by default include pattern '**/*' -Info 126 [16:04:13.000] ----------------------------------------------- -Info 127 [16:04:14.000] Running: *ensureProjectForOpenFiles* -Info 128 [16:04:15.000] Before ensureProjectForOpenFiles: -Info 129 [16:04:16.000] Project '/user/username/projects/myproject/projects/project2/tsconfig.json' (Configured) -Info 129 [16:04:17.000] Files (4) - -Info 129 [16:04:18.000] ----------------------------------------------- -Info 129 [16:04:19.000] Project '/user/username/projects/myproject/projects/project1/tsconfig.json' (Configured) -Info 129 [16:04:20.000] Files (3) - -Info 129 [16:04:21.000] ----------------------------------------------- -Info 129 [16:04:22.000] Open files: -Info 129 [16:04:23.000] FileName: /user/username/projects/myproject/projects/project2/class2.ts ProjectRootPath: undefined -Info 129 [16:04:24.000] Projects: /user/username/projects/myproject/projects/project2/tsconfig.json -Info 129 [16:04:25.000] FileName: /user/username/projects/myproject/projects/project1/class1.ts ProjectRootPath: undefined -Info 129 [16:04:26.000] Projects: /user/username/projects/myproject/projects/project1/tsconfig.json -Info 129 [16:04:27.000] After ensureProjectForOpenFiles: -Info 130 [16:04:28.000] Project '/user/username/projects/myproject/projects/project2/tsconfig.json' (Configured) -Info 130 [16:04:29.000] Files (4) - -Info 130 [16:04:30.000] ----------------------------------------------- -Info 130 [16:04:31.000] Project '/user/username/projects/myproject/projects/project1/tsconfig.json' (Configured) -Info 130 [16:04:32.000] Files (3) - -Info 130 [16:04:33.000] ----------------------------------------------- -Info 130 [16:04:34.000] Open files: -Info 130 [16:04:35.000] FileName: /user/username/projects/myproject/projects/project2/class2.ts ProjectRootPath: undefined -Info 130 [16:04:36.000] Projects: /user/username/projects/myproject/projects/project2/tsconfig.json -Info 130 [16:04:37.000] FileName: /user/username/projects/myproject/projects/project1/class1.ts ProjectRootPath: undefined -Info 130 [16:04:38.000] Projects: /user/username/projects/myproject/projects/project1/tsconfig.json +Info 126 [00:04:13.000] ----------------------------------------------- +Info 127 [00:04:14.000] Running: *ensureProjectForOpenFiles* +Info 128 [00:04:15.000] Before ensureProjectForOpenFiles: +Info 129 [00:04:16.000] Project '/user/username/projects/myproject/projects/project2/tsconfig.json' (Configured) +Info 129 [00:04:17.000] Files (4) + +Info 129 [00:04:18.000] ----------------------------------------------- +Info 129 [00:04:19.000] Project '/user/username/projects/myproject/projects/project1/tsconfig.json' (Configured) +Info 129 [00:04:20.000] Files (3) + +Info 129 [00:04:21.000] ----------------------------------------------- +Info 129 [00:04:22.000] Open files: +Info 129 [00:04:23.000] FileName: /user/username/projects/myproject/projects/project2/class2.ts ProjectRootPath: undefined +Info 129 [00:04:24.000] Projects: /user/username/projects/myproject/projects/project2/tsconfig.json +Info 129 [00:04:25.000] FileName: /user/username/projects/myproject/projects/project1/class1.ts ProjectRootPath: undefined +Info 129 [00:04:26.000] Projects: /user/username/projects/myproject/projects/project1/tsconfig.json +Info 129 [00:04:27.000] After ensureProjectForOpenFiles: +Info 130 [00:04:28.000] Project '/user/username/projects/myproject/projects/project2/tsconfig.json' (Configured) +Info 130 [00:04:29.000] Files (4) + +Info 130 [00:04:30.000] ----------------------------------------------- +Info 130 [00:04:31.000] Project '/user/username/projects/myproject/projects/project1/tsconfig.json' (Configured) +Info 130 [00:04:32.000] Files (3) + +Info 130 [00:04:33.000] ----------------------------------------------- +Info 130 [00:04:34.000] Open files: +Info 130 [00:04:35.000] FileName: /user/username/projects/myproject/projects/project2/class2.ts ProjectRootPath: undefined +Info 130 [00:04:36.000] Projects: /user/username/projects/myproject/projects/project2/tsconfig.json +Info 130 [00:04:37.000] FileName: /user/username/projects/myproject/projects/project1/class1.ts ProjectRootPath: undefined +Info 130 [00:04:38.000] Projects: /user/username/projects/myproject/projects/project1/tsconfig.json After checking timeout queue length (2) and running PolledWatches:: 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 e36bc19cd2573..457b9f61fa21b 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 @@ -1,5 +1,5 @@ -Info 0 [16:00:33.000] Provided types map file "/a/lib/typesMap.json" doesn't exist -Info 1 [16:00:34.000] request: +Info 0 [00:00:33.000] Provided types map file "/a/lib/typesMap.json" doesn't exist +Info 1 [00:00:34.000] request: { "seq": 0, "type": "request", @@ -44,11 +44,11 @@ FsWatches:: FsWatchesRecursive:: -Info 2 [16:00:35.000] Search path: /user/username/projects/myproject/projects/project2 -Info 3 [16:00:36.000] For info: /user/username/projects/myproject/projects/project2/class2.ts :: Config file name: /user/username/projects/myproject/projects/project2/tsconfig.json -Info 4 [16:00:37.000] Creating configuration project /user/username/projects/myproject/projects/project2/tsconfig.json -Info 5 [16:00:38.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/projects/project2/tsconfig.json 2000 undefined Project: /user/username/projects/myproject/projects/project2/tsconfig.json WatchType: Config file -Info 6 [16:00:39.000] Config: /user/username/projects/myproject/projects/project2/tsconfig.json : { +Info 2 [00:00:35.000] Search path: /user/username/projects/myproject/projects/project2 +Info 3 [00:00:36.000] For info: /user/username/projects/myproject/projects/project2/class2.ts :: Config file name: /user/username/projects/myproject/projects/project2/tsconfig.json +Info 4 [00:00:37.000] Creating configuration project /user/username/projects/myproject/projects/project2/tsconfig.json +Info 5 [00:00:38.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/projects/project2/tsconfig.json 2000 undefined Project: /user/username/projects/myproject/projects/project2/tsconfig.json WatchType: Config file +Info 6 [00:00:39.000] Config: /user/username/projects/myproject/projects/project2/tsconfig.json : { "rootNames": [ "/user/username/projects/myproject/projects/project2/class2.ts" ], @@ -64,11 +64,11 @@ Info 6 [16:00:39.000] Config: /user/username/projects/myproject/projects/proj } ] } -Info 7 [16:00:40.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/projects/project2 1 undefined Config: /user/username/projects/myproject/projects/project2/tsconfig.json WatchType: Wild card directory -Info 8 [16:00:41.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/projects/project2 1 undefined Config: /user/username/projects/myproject/projects/project2/tsconfig.json WatchType: Wild card directory -Info 9 [16:00:42.000] Plugins were requested but not running in environment that supports 'require'. Nothing will be loaded -Info 10 [16:00:43.000] Starting updateGraphWorker: Project: /user/username/projects/myproject/projects/project2/tsconfig.json -Info 11 [16:00:44.000] Config: /user/username/projects/myproject/projects/project1/tsconfig.json : { +Info 7 [00:00:40.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/projects/project2 1 undefined Config: /user/username/projects/myproject/projects/project2/tsconfig.json WatchType: Wild card directory +Info 8 [00:00:41.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/projects/project2 1 undefined Config: /user/username/projects/myproject/projects/project2/tsconfig.json WatchType: Wild card directory +Info 9 [00:00:42.000] Plugins were requested but not running in environment that supports 'require'. Nothing will be loaded +Info 10 [00:00:43.000] Starting updateGraphWorker: Project: /user/username/projects/myproject/projects/project2/tsconfig.json +Info 11 [00:00:44.000] Config: /user/username/projects/myproject/projects/project1/tsconfig.json : { "rootNames": [ "/user/username/projects/myproject/projects/project1/class1.ts" ], @@ -78,20 +78,20 @@ Info 11 [16:00:44.000] Config: /user/username/projects/myproject/projects/proj "configFilePath": "/user/username/projects/myproject/projects/project1/tsconfig.json" } } -Info 12 [16:00:45.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/projects/project1/tsconfig.json 2000 undefined Project: /user/username/projects/myproject/projects/project2/tsconfig.json WatchType: Config file -Info 13 [16:00:46.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/projects/project1 1 undefined Config: /user/username/projects/myproject/projects/project1/tsconfig.json WatchType: Wild card directory -Info 14 [16:00:47.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/projects/project1 1 undefined Config: /user/username/projects/myproject/projects/project1/tsconfig.json WatchType: Wild card directory -Info 15 [16:00:48.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/projects/project1/class1.ts 500 undefined WatchType: Closed Script info -Info 16 [16:00:49.000] FileWatcher:: Added:: WatchInfo: /a/lib/lib.d.ts 500 undefined WatchType: Closed Script info -Info 17 [16:00:50.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/projects/project2/node_modules/@types 1 undefined Project: /user/username/projects/myproject/projects/project2/tsconfig.json WatchType: Type roots -Info 18 [16:00:51.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/projects/project2/node_modules/@types 1 undefined Project: /user/username/projects/myproject/projects/project2/tsconfig.json WatchType: Type roots -Info 19 [16:00:52.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/projects/node_modules/@types 1 undefined Project: /user/username/projects/myproject/projects/project2/tsconfig.json WatchType: Type roots -Info 20 [16:00:53.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/projects/node_modules/@types 1 undefined Project: /user/username/projects/myproject/projects/project2/tsconfig.json WatchType: Type roots -Info 21 [16:00:54.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/projects/project2/tsconfig.json WatchType: Type roots -Info 22 [16:00:55.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/projects/project2/tsconfig.json WatchType: Type roots -Info 23 [16:00:56.000] Finishing updateGraphWorker: Project: /user/username/projects/myproject/projects/project2/tsconfig.json Version: 1 structureChanged: true structureIsReused:: Not Elapsed:: *ms -Info 24 [16:00:57.000] Project '/user/username/projects/myproject/projects/project2/tsconfig.json' (Configured) -Info 25 [16:00:58.000] Files (3) +Info 12 [00:00:45.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/projects/project1/tsconfig.json 2000 undefined Project: /user/username/projects/myproject/projects/project2/tsconfig.json WatchType: Config file +Info 13 [00:00:46.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/projects/project1 1 undefined Config: /user/username/projects/myproject/projects/project1/tsconfig.json WatchType: Wild card directory +Info 14 [00:00:47.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/projects/project1 1 undefined Config: /user/username/projects/myproject/projects/project1/tsconfig.json WatchType: Wild card directory +Info 15 [00:00:48.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/projects/project1/class1.ts 500 undefined WatchType: Closed Script info +Info 16 [00:00:49.000] FileWatcher:: Added:: WatchInfo: /a/lib/lib.d.ts 500 undefined WatchType: Closed Script info +Info 17 [00:00:50.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/projects/project2/node_modules/@types 1 undefined Project: /user/username/projects/myproject/projects/project2/tsconfig.json WatchType: Type roots +Info 18 [00:00:51.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/projects/project2/node_modules/@types 1 undefined Project: /user/username/projects/myproject/projects/project2/tsconfig.json WatchType: Type roots +Info 19 [00:00:52.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/projects/node_modules/@types 1 undefined Project: /user/username/projects/myproject/projects/project2/tsconfig.json WatchType: Type roots +Info 20 [00:00:53.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/projects/node_modules/@types 1 undefined Project: /user/username/projects/myproject/projects/project2/tsconfig.json WatchType: Type roots +Info 21 [00:00:54.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/projects/project2/tsconfig.json WatchType: Type roots +Info 22 [00:00:55.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/projects/project2/tsconfig.json WatchType: Type roots +Info 23 [00:00:56.000] Finishing updateGraphWorker: Project: /user/username/projects/myproject/projects/project2/tsconfig.json Version: 1 structureChanged: true structureIsReused:: Not Elapsed:: *ms +Info 24 [00:00:57.000] Project '/user/username/projects/myproject/projects/project2/tsconfig.json' (Configured) +Info 25 [00:00:58.000] Files (3) /a/lib/lib.d.ts /user/username/projects/myproject/projects/project1/class1.ts /user/username/projects/myproject/projects/project2/class2.ts @@ -104,16 +104,16 @@ Info 25 [16:00:58.000] Files (3) class2.ts Matched by default include pattern '**/*' -Info 26 [16:00:59.000] ----------------------------------------------- -Info 27 [16:01:00.000] Search path: /user/username/projects/myproject/projects/project2 -Info 28 [16:01:01.000] For info: /user/username/projects/myproject/projects/project2/tsconfig.json :: No config files found. -Info 29 [16:01:02.000] Project '/user/username/projects/myproject/projects/project2/tsconfig.json' (Configured) -Info 29 [16:01:03.000] Files (3) +Info 26 [00:00:59.000] ----------------------------------------------- +Info 27 [00:01:00.000] Search path: /user/username/projects/myproject/projects/project2 +Info 28 [00:01:01.000] For info: /user/username/projects/myproject/projects/project2/tsconfig.json :: No config files found. +Info 29 [00:01:02.000] Project '/user/username/projects/myproject/projects/project2/tsconfig.json' (Configured) +Info 29 [00:01:03.000] Files (3) -Info 29 [16:01:04.000] ----------------------------------------------- -Info 29 [16:01:05.000] Open files: -Info 29 [16:01:06.000] FileName: /user/username/projects/myproject/projects/project2/class2.ts ProjectRootPath: undefined -Info 29 [16:01:07.000] Projects: /user/username/projects/myproject/projects/project2/tsconfig.json +Info 29 [00:01:04.000] ----------------------------------------------- +Info 29 [00:01:05.000] Open files: +Info 29 [00:01:06.000] FileName: /user/username/projects/myproject/projects/project2/class2.ts ProjectRootPath: undefined +Info 29 [00:01:07.000] Projects: /user/username/projects/myproject/projects/project2/tsconfig.json After request PolledWatches:: @@ -140,11 +140,11 @@ FsWatchesRecursive:: /user/username/projects/myproject/projects/project1: {} -Info 29 [16:01:08.000] response: +Info 29 [00:01:08.000] response: { "responseRequired": false } -Info 30 [16:01:09.000] request: +Info 30 [00:01:09.000] request: { "seq": 0, "type": "request", @@ -179,21 +179,21 @@ FsWatchesRecursive:: /user/username/projects/myproject/projects/project1: {} -Info 31 [16:01:10.000] FileWatcher:: Close:: WatchInfo: /user/username/projects/myproject/projects/project1/class1.ts 500 undefined WatchType: Closed Script info -Info 32 [16:01:11.000] Search path: /user/username/projects/myproject/projects/project1 -Info 33 [16:01:12.000] For info: /user/username/projects/myproject/projects/project1/class1.ts :: Config file name: /user/username/projects/myproject/projects/project1/tsconfig.json -Info 34 [16:01:13.000] Creating configuration project /user/username/projects/myproject/projects/project1/tsconfig.json -Info 35 [16:01:14.000] Plugins were requested but not running in environment that supports 'require'. Nothing will be loaded -Info 36 [16:01:15.000] Starting updateGraphWorker: Project: /user/username/projects/myproject/projects/project1/tsconfig.json -Info 37 [16:01:16.000] 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 38 [16:01:17.000] 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 39 [16:01:18.000] 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 40 [16:01:19.000] 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 41 [16:01:20.000] 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 42 [16:01:21.000] 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 43 [16:01:22.000] Finishing updateGraphWorker: Project: /user/username/projects/myproject/projects/project1/tsconfig.json Version: 1 structureChanged: true structureIsReused:: Not Elapsed:: *ms -Info 44 [16:01:23.000] Project '/user/username/projects/myproject/projects/project1/tsconfig.json' (Configured) -Info 45 [16:01:24.000] Files (2) +Info 31 [00:01:10.000] FileWatcher:: Close:: WatchInfo: /user/username/projects/myproject/projects/project1/class1.ts 500 undefined WatchType: Closed Script info +Info 32 [00:01:11.000] Search path: /user/username/projects/myproject/projects/project1 +Info 33 [00:01:12.000] For info: /user/username/projects/myproject/projects/project1/class1.ts :: Config file name: /user/username/projects/myproject/projects/project1/tsconfig.json +Info 34 [00:01:13.000] Creating configuration project /user/username/projects/myproject/projects/project1/tsconfig.json +Info 35 [00:01:14.000] Plugins were requested but not running in environment that supports 'require'. Nothing will be loaded +Info 36 [00:01:15.000] Starting updateGraphWorker: Project: /user/username/projects/myproject/projects/project1/tsconfig.json +Info 37 [00:01:16.000] 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 38 [00:01:17.000] 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 39 [00:01:18.000] 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 40 [00:01:19.000] 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 41 [00:01:20.000] 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 42 [00:01:21.000] 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 43 [00:01:22.000] Finishing updateGraphWorker: Project: /user/username/projects/myproject/projects/project1/tsconfig.json Version: 1 structureChanged: true structureIsReused:: Not Elapsed:: *ms +Info 44 [00:01:23.000] Project '/user/username/projects/myproject/projects/project1/tsconfig.json' (Configured) +Info 45 [00:01:24.000] Files (2) /a/lib/lib.d.ts /user/username/projects/myproject/projects/project1/class1.ts @@ -203,22 +203,22 @@ Info 45 [16:01:24.000] Files (2) class1.ts Matched by default include pattern '**/*' -Info 46 [16:01:25.000] ----------------------------------------------- -Info 47 [16:01:26.000] Search path: /user/username/projects/myproject/projects/project1 -Info 48 [16:01:27.000] For info: /user/username/projects/myproject/projects/project1/tsconfig.json :: No config files found. -Info 49 [16:01:28.000] Project '/user/username/projects/myproject/projects/project2/tsconfig.json' (Configured) -Info 49 [16:01:29.000] Files (3) - -Info 49 [16:01:30.000] ----------------------------------------------- -Info 49 [16:01:31.000] Project '/user/username/projects/myproject/projects/project1/tsconfig.json' (Configured) -Info 49 [16:01:32.000] Files (2) - -Info 49 [16:01:33.000] ----------------------------------------------- -Info 49 [16:01:34.000] Open files: -Info 49 [16:01:35.000] FileName: /user/username/projects/myproject/projects/project2/class2.ts ProjectRootPath: undefined -Info 49 [16:01:36.000] Projects: /user/username/projects/myproject/projects/project2/tsconfig.json -Info 49 [16:01:37.000] FileName: /user/username/projects/myproject/projects/project1/class1.ts ProjectRootPath: undefined -Info 49 [16:01:38.000] Projects: /user/username/projects/myproject/projects/project2/tsconfig.json,/user/username/projects/myproject/projects/project1/tsconfig.json +Info 46 [00:01:25.000] ----------------------------------------------- +Info 47 [00:01:26.000] Search path: /user/username/projects/myproject/projects/project1 +Info 48 [00:01:27.000] For info: /user/username/projects/myproject/projects/project1/tsconfig.json :: No config files found. +Info 49 [00:01:28.000] Project '/user/username/projects/myproject/projects/project2/tsconfig.json' (Configured) +Info 49 [00:01:29.000] Files (3) + +Info 49 [00:01:30.000] ----------------------------------------------- +Info 49 [00:01:31.000] Project '/user/username/projects/myproject/projects/project1/tsconfig.json' (Configured) +Info 49 [00:01:32.000] Files (2) + +Info 49 [00:01:33.000] ----------------------------------------------- +Info 49 [00:01:34.000] Open files: +Info 49 [00:01:35.000] FileName: /user/username/projects/myproject/projects/project2/class2.ts ProjectRootPath: undefined +Info 49 [00:01:36.000] Projects: /user/username/projects/myproject/projects/project2/tsconfig.json +Info 49 [00:01:37.000] FileName: /user/username/projects/myproject/projects/project1/class1.ts ProjectRootPath: undefined +Info 49 [00:01:38.000] Projects: /user/username/projects/myproject/projects/project2/tsconfig.json,/user/username/projects/myproject/projects/project1/tsconfig.json After request PolledWatches:: @@ -245,16 +245,16 @@ FsWatchesRecursive:: /user/username/projects/myproject/projects/project1: {} -Info 49 [16:01:39.000] response: +Info 49 [00:01:39.000] response: { "responseRequired": false } -Info 50 [16:01:42.000] DirectoryWatcher:: Triggered with /user/username/projects/myproject/projects/project1/class3.ts :: WatchInfo: /user/username/projects/myproject/projects/project1 1 undefined Config: /user/username/projects/myproject/projects/project1/tsconfig.json WatchType: Wild card directory -Info 51 [16:01:43.000] Scheduled: /user/username/projects/myproject/projects/project2/tsconfig.json -Info 52 [16:01:44.000] Scheduled: *ensureProjectForOpenFiles* -Info 53 [16:01:45.000] Scheduled: /user/username/projects/myproject/projects/project1/tsconfig.json -Info 54 [16:01:46.000] Scheduled: *ensureProjectForOpenFiles*, Cancelled earlier one -Info 55 [16:01:47.000] Elapsed:: *ms DirectoryWatcher:: Triggered with /user/username/projects/myproject/projects/project1/class3.ts :: WatchInfo: /user/username/projects/myproject/projects/project1 1 undefined Config: /user/username/projects/myproject/projects/project1/tsconfig.json WatchType: Wild card directory +Info 50 [00:01:42.000] DirectoryWatcher:: Triggered with /user/username/projects/myproject/projects/project1/class3.ts :: WatchInfo: /user/username/projects/myproject/projects/project1 1 undefined Config: /user/username/projects/myproject/projects/project1/tsconfig.json WatchType: Wild card directory +Info 51 [00:01:43.000] Scheduled: /user/username/projects/myproject/projects/project2/tsconfig.json +Info 52 [00:01:44.000] Scheduled: *ensureProjectForOpenFiles* +Info 53 [00:01:45.000] Scheduled: /user/username/projects/myproject/projects/project1/tsconfig.json +Info 54 [00:01:46.000] Scheduled: *ensureProjectForOpenFiles*, Cancelled earlier one +Info 55 [00:01:47.000] Elapsed:: *ms DirectoryWatcher:: Triggered with /user/username/projects/myproject/projects/project1/class3.ts :: WatchInfo: /user/username/projects/myproject/projects/project1 1 undefined Config: /user/username/projects/myproject/projects/project1/tsconfig.json WatchType: Wild card directory Before checking timeout queue length (3) and running //// [/user/username/projects/myproject/projects/project1/class3.ts] class class3 {} @@ -284,12 +284,12 @@ FsWatchesRecursive:: /user/username/projects/myproject/projects/project1: {} -Info 56 [16:01:48.000] Running: /user/username/projects/myproject/projects/project2/tsconfig.json -Info 57 [16:01:49.000] Starting updateGraphWorker: Project: /user/username/projects/myproject/projects/project2/tsconfig.json -Info 58 [16:01:50.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/projects/project1/class3.ts 500 undefined WatchType: Closed Script info -Info 59 [16:01:51.000] Finishing updateGraphWorker: Project: /user/username/projects/myproject/projects/project2/tsconfig.json Version: 2 structureChanged: true structureIsReused:: Not Elapsed:: *ms -Info 60 [16:01:52.000] Project '/user/username/projects/myproject/projects/project2/tsconfig.json' (Configured) -Info 61 [16:01:53.000] Files (4) +Info 56 [00:01:48.000] Running: /user/username/projects/myproject/projects/project2/tsconfig.json +Info 57 [00:01:49.000] Starting updateGraphWorker: Project: /user/username/projects/myproject/projects/project2/tsconfig.json +Info 58 [00:01:50.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/projects/project1/class3.ts 500 undefined WatchType: Closed Script info +Info 59 [00:01:51.000] Finishing updateGraphWorker: Project: /user/username/projects/myproject/projects/project2/tsconfig.json Version: 2 structureChanged: true structureIsReused:: Not Elapsed:: *ms +Info 60 [00:01:52.000] Project '/user/username/projects/myproject/projects/project2/tsconfig.json' (Configured) +Info 61 [00:01:53.000] Files (4) /a/lib/lib.d.ts /user/username/projects/myproject/projects/project1/class1.ts /user/username/projects/myproject/projects/project1/class3.ts @@ -305,12 +305,12 @@ Info 61 [16:01:53.000] Files (4) class2.ts Matched by default include pattern '**/*' -Info 62 [16:01:54.000] ----------------------------------------------- -Info 63 [16:01:55.000] Running: /user/username/projects/myproject/projects/project1/tsconfig.json -Info 64 [16:01:56.000] Starting updateGraphWorker: Project: /user/username/projects/myproject/projects/project1/tsconfig.json -Info 65 [16:01:57.000] Finishing updateGraphWorker: Project: /user/username/projects/myproject/projects/project1/tsconfig.json Version: 2 structureChanged: true structureIsReused:: Not Elapsed:: *ms -Info 66 [16:01:58.000] Project '/user/username/projects/myproject/projects/project1/tsconfig.json' (Configured) -Info 67 [16:01:59.000] Files (3) +Info 62 [00:01:54.000] ----------------------------------------------- +Info 63 [00:01:55.000] Running: /user/username/projects/myproject/projects/project1/tsconfig.json +Info 64 [00:01:56.000] Starting updateGraphWorker: Project: /user/username/projects/myproject/projects/project1/tsconfig.json +Info 65 [00:01:57.000] Finishing updateGraphWorker: Project: /user/username/projects/myproject/projects/project1/tsconfig.json Version: 2 structureChanged: true structureIsReused:: Not Elapsed:: *ms +Info 66 [00:01:58.000] Project '/user/username/projects/myproject/projects/project1/tsconfig.json' (Configured) +Info 67 [00:01:59.000] Files (3) /a/lib/lib.d.ts /user/username/projects/myproject/projects/project1/class1.ts /user/username/projects/myproject/projects/project1/class3.ts @@ -323,36 +323,36 @@ Info 67 [16:01:59.000] Files (3) class3.ts Matched by default include pattern '**/*' -Info 68 [16:02:00.000] ----------------------------------------------- -Info 69 [16:02:01.000] Running: *ensureProjectForOpenFiles* -Info 70 [16:02:02.000] Before ensureProjectForOpenFiles: -Info 71 [16:02:03.000] Project '/user/username/projects/myproject/projects/project2/tsconfig.json' (Configured) -Info 71 [16:02:04.000] Files (4) - -Info 71 [16:02:05.000] ----------------------------------------------- -Info 71 [16:02:06.000] Project '/user/username/projects/myproject/projects/project1/tsconfig.json' (Configured) -Info 71 [16:02:07.000] Files (3) - -Info 71 [16:02:08.000] ----------------------------------------------- -Info 71 [16:02:09.000] Open files: -Info 71 [16:02:10.000] FileName: /user/username/projects/myproject/projects/project2/class2.ts ProjectRootPath: undefined -Info 71 [16:02:11.000] Projects: /user/username/projects/myproject/projects/project2/tsconfig.json -Info 71 [16:02:12.000] FileName: /user/username/projects/myproject/projects/project1/class1.ts ProjectRootPath: undefined -Info 71 [16:02:13.000] Projects: /user/username/projects/myproject/projects/project2/tsconfig.json,/user/username/projects/myproject/projects/project1/tsconfig.json -Info 71 [16:02:14.000] After ensureProjectForOpenFiles: -Info 72 [16:02:15.000] Project '/user/username/projects/myproject/projects/project2/tsconfig.json' (Configured) -Info 72 [16:02:16.000] Files (4) - -Info 72 [16:02:17.000] ----------------------------------------------- -Info 72 [16:02:18.000] Project '/user/username/projects/myproject/projects/project1/tsconfig.json' (Configured) -Info 72 [16:02:19.000] Files (3) - -Info 72 [16:02:20.000] ----------------------------------------------- -Info 72 [16:02:21.000] Open files: -Info 72 [16:02:22.000] FileName: /user/username/projects/myproject/projects/project2/class2.ts ProjectRootPath: undefined -Info 72 [16:02:23.000] Projects: /user/username/projects/myproject/projects/project2/tsconfig.json -Info 72 [16:02:24.000] FileName: /user/username/projects/myproject/projects/project1/class1.ts ProjectRootPath: undefined -Info 72 [16:02:25.000] Projects: /user/username/projects/myproject/projects/project2/tsconfig.json,/user/username/projects/myproject/projects/project1/tsconfig.json +Info 68 [00:02:00.000] ----------------------------------------------- +Info 69 [00:02:01.000] Running: *ensureProjectForOpenFiles* +Info 70 [00:02:02.000] Before ensureProjectForOpenFiles: +Info 71 [00:02:03.000] Project '/user/username/projects/myproject/projects/project2/tsconfig.json' (Configured) +Info 71 [00:02:04.000] Files (4) + +Info 71 [00:02:05.000] ----------------------------------------------- +Info 71 [00:02:06.000] Project '/user/username/projects/myproject/projects/project1/tsconfig.json' (Configured) +Info 71 [00:02:07.000] Files (3) + +Info 71 [00:02:08.000] ----------------------------------------------- +Info 71 [00:02:09.000] Open files: +Info 71 [00:02:10.000] FileName: /user/username/projects/myproject/projects/project2/class2.ts ProjectRootPath: undefined +Info 71 [00:02:11.000] Projects: /user/username/projects/myproject/projects/project2/tsconfig.json +Info 71 [00:02:12.000] FileName: /user/username/projects/myproject/projects/project1/class1.ts ProjectRootPath: undefined +Info 71 [00:02:13.000] Projects: /user/username/projects/myproject/projects/project2/tsconfig.json,/user/username/projects/myproject/projects/project1/tsconfig.json +Info 71 [00:02:14.000] After ensureProjectForOpenFiles: +Info 72 [00:02:15.000] Project '/user/username/projects/myproject/projects/project2/tsconfig.json' (Configured) +Info 72 [00:02:16.000] Files (4) + +Info 72 [00:02:17.000] ----------------------------------------------- +Info 72 [00:02:18.000] Project '/user/username/projects/myproject/projects/project1/tsconfig.json' (Configured) +Info 72 [00:02:19.000] Files (3) + +Info 72 [00:02:20.000] ----------------------------------------------- +Info 72 [00:02:21.000] Open files: +Info 72 [00:02:22.000] FileName: /user/username/projects/myproject/projects/project2/class2.ts ProjectRootPath: undefined +Info 72 [00:02:23.000] Projects: /user/username/projects/myproject/projects/project2/tsconfig.json +Info 72 [00:02:24.000] FileName: /user/username/projects/myproject/projects/project1/class1.ts ProjectRootPath: undefined +Info 72 [00:02:25.000] Projects: /user/username/projects/myproject/projects/project2/tsconfig.json,/user/username/projects/myproject/projects/project1/tsconfig.json After checking timeout queue length (3) and running PolledWatches:: @@ -381,12 +381,12 @@ FsWatchesRecursive:: /user/username/projects/myproject/projects/project1: {} -Info 72 [16:02:29.000] DirectoryWatcher:: Triggered with /user/username/projects/myproject/projects/project1/temp :: WatchInfo: /user/username/projects/myproject/projects/project1 1 undefined Config: /user/username/projects/myproject/projects/project1/tsconfig.json WatchType: Wild card directory -Info 73 [16:02:30.000] Project: /user/username/projects/myproject/projects/project1/tsconfig.json Detected excluded file: /user/username/projects/myproject/projects/project1/temp -Info 74 [16:02:31.000] Elapsed:: *ms DirectoryWatcher:: Triggered with /user/username/projects/myproject/projects/project1/temp :: WatchInfo: /user/username/projects/myproject/projects/project1 1 undefined Config: /user/username/projects/myproject/projects/project1/tsconfig.json WatchType: Wild card directory -Info 75 [16:02:33.000] DirectoryWatcher:: Triggered with /user/username/projects/myproject/projects/project1/temp/file.d.ts :: WatchInfo: /user/username/projects/myproject/projects/project1 1 undefined Config: /user/username/projects/myproject/projects/project1/tsconfig.json WatchType: Wild card directory -Info 76 [16:02:34.000] Project: /user/username/projects/myproject/projects/project1/tsconfig.json Detected excluded file: /user/username/projects/myproject/projects/project1/temp/file.d.ts -Info 77 [16:02:35.000] Elapsed:: *ms DirectoryWatcher:: Triggered with /user/username/projects/myproject/projects/project1/temp/file.d.ts :: WatchInfo: /user/username/projects/myproject/projects/project1 1 undefined Config: /user/username/projects/myproject/projects/project1/tsconfig.json WatchType: Wild card directory +Info 72 [00:02:29.000] DirectoryWatcher:: Triggered with /user/username/projects/myproject/projects/project1/temp :: WatchInfo: /user/username/projects/myproject/projects/project1 1 undefined Config: /user/username/projects/myproject/projects/project1/tsconfig.json WatchType: Wild card directory +Info 73 [00:02:30.000] Project: /user/username/projects/myproject/projects/project1/tsconfig.json Detected excluded file: /user/username/projects/myproject/projects/project1/temp +Info 74 [00:02:31.000] Elapsed:: *ms DirectoryWatcher:: Triggered with /user/username/projects/myproject/projects/project1/temp :: WatchInfo: /user/username/projects/myproject/projects/project1 1 undefined Config: /user/username/projects/myproject/projects/project1/tsconfig.json WatchType: Wild card directory +Info 75 [00:02:33.000] DirectoryWatcher:: Triggered with /user/username/projects/myproject/projects/project1/temp/file.d.ts :: WatchInfo: /user/username/projects/myproject/projects/project1 1 undefined Config: /user/username/projects/myproject/projects/project1/tsconfig.json WatchType: Wild card directory +Info 76 [00:02:34.000] Project: /user/username/projects/myproject/projects/project1/tsconfig.json Detected excluded file: /user/username/projects/myproject/projects/project1/temp/file.d.ts +Info 77 [00:02:35.000] Elapsed:: *ms DirectoryWatcher:: Triggered with /user/username/projects/myproject/projects/project1/temp/file.d.ts :: WatchInfo: /user/username/projects/myproject/projects/project1 1 undefined Config: /user/username/projects/myproject/projects/project1/tsconfig.json WatchType: Wild card directory Before checking timeout queue length (0) and running //// [/user/username/projects/myproject/projects/project1/temp/file.d.ts] declare class file {} @@ -446,9 +446,9 @@ FsWatchesRecursive:: /user/username/projects/myproject/projects/project1: {} -Info 78 [16:02:38.000] DirectoryWatcher:: Triggered with /user/username/projects/myproject/projects/project1/class3.d.ts :: WatchInfo: /user/username/projects/myproject/projects/project1 1 undefined Config: /user/username/projects/myproject/projects/project1/tsconfig.json WatchType: Wild card directory -Info 79 [16:02:39.000] Project: /user/username/projects/myproject/projects/project1/tsconfig.json Detected output file: /user/username/projects/myproject/projects/project1/class3.d.ts -Info 80 [16:02:40.000] Elapsed:: *ms DirectoryWatcher:: Triggered with /user/username/projects/myproject/projects/project1/class3.d.ts :: WatchInfo: /user/username/projects/myproject/projects/project1 1 undefined Config: /user/username/projects/myproject/projects/project1/tsconfig.json WatchType: Wild card directory +Info 78 [00:02:38.000] DirectoryWatcher:: Triggered with /user/username/projects/myproject/projects/project1/class3.d.ts :: WatchInfo: /user/username/projects/myproject/projects/project1 1 undefined Config: /user/username/projects/myproject/projects/project1/tsconfig.json WatchType: Wild card directory +Info 79 [00:02:39.000] Project: /user/username/projects/myproject/projects/project1/tsconfig.json Detected output file: /user/username/projects/myproject/projects/project1/class3.d.ts +Info 80 [00:02:40.000] Elapsed:: *ms DirectoryWatcher:: Triggered with /user/username/projects/myproject/projects/project1/class3.d.ts :: WatchInfo: /user/username/projects/myproject/projects/project1 1 undefined Config: /user/username/projects/myproject/projects/project1/tsconfig.json WatchType: Wild card directory Before checking timeout queue length (0) and running //// [/user/username/projects/myproject/projects/project1/class3.d.ts] declare class class3 {} 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 8aa8dbe9f976d..af2dd410b01f3 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 @@ -1,11 +1,11 @@ -Info 0 [16:00:53.000] Provided types map file "/a/lib/typesMap.json" doesn't exist -Info 1 [16:00:54.000] Search path: /user/username/projects/myproject/src -Info 2 [16:00:55.000] For info: /user/username/projects/myproject/src/main.ts :: Config file name: /user/username/projects/myproject/tsconfig.json -Info 3 [16:00:56.000] Creating configuration project /user/username/projects/myproject/tsconfig.json -Info 4 [16:00:57.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/tsconfig.json 2000 undefined Project: /user/username/projects/myproject/tsconfig.json WatchType: Config file -Info 5 [16:00:58.000] event: +Info 0 [00:00:53.000] Provided types map file "/a/lib/typesMap.json" doesn't exist +Info 1 [00:00:54.000] Search path: /user/username/projects/myproject/src +Info 2 [00:00:55.000] For info: /user/username/projects/myproject/src/main.ts :: Config file name: /user/username/projects/myproject/tsconfig.json +Info 3 [00:00:56.000] Creating configuration project /user/username/projects/myproject/tsconfig.json +Info 4 [00:00:57.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/tsconfig.json 2000 undefined Project: /user/username/projects/myproject/tsconfig.json WatchType: Config file +Info 5 [00:00:58.000] event: {"seq":0,"type":"event","event":"projectLoadingStart","body":{"projectName":"/user/username/projects/myproject/tsconfig.json","reason":"Creating possible configured project for /user/username/projects/myproject/src/main.ts to open"}} -Info 6 [16:00:59.000] Config: /user/username/projects/myproject/tsconfig.json : { +Info 6 [00:00:59.000] Config: /user/username/projects/myproject/tsconfig.json : { "rootNames": [], "options": { "configFilePath": "/user/username/projects/myproject/tsconfig.json" @@ -17,9 +17,9 @@ Info 6 [16:00:59.000] Config: /user/username/projects/myproject/tsconfig.json } ] } -Info 7 [16:01:00.000] Plugins were requested but not running in environment that supports 'require'. Nothing will be loaded -Info 8 [16:01:01.000] Starting updateGraphWorker: Project: /user/username/projects/myproject/tsconfig.json -Info 9 [16:01:02.000] Config: /user/username/projects/myproject/tsconfig-src.json : { +Info 7 [00:01:00.000] Plugins were requested but not running in environment that supports 'require'. Nothing will be loaded +Info 8 [00:01:01.000] Starting updateGraphWorker: Project: /user/username/projects/myproject/tsconfig.json +Info 9 [00:01:02.000] Config: /user/username/projects/myproject/tsconfig-src.json : { "rootNames": [ "/user/username/projects/myproject/src/main.ts", "/user/username/projects/myproject/src/helpers/functions.ts" @@ -31,29 +31,29 @@ Info 9 [16:01:02.000] Config: /user/username/projects/myproject/tsconfig-src. "configFilePath": "/user/username/projects/myproject/tsconfig-src.json" } } -Info 10 [16:01:03.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/tsconfig-src.json 2000 undefined Project: /user/username/projects/myproject/tsconfig.json WatchType: Config file -Info 11 [16:01:04.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/src 1 undefined Config: /user/username/projects/myproject/tsconfig-src.json WatchType: Wild card directory -Info 12 [16:01:05.000] 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 13 [16:01:06.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/tsconfig.json WatchType: Type roots -Info 14 [16:01:07.000] 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 15 [16:01:08.000] Finishing updateGraphWorker: Project: /user/username/projects/myproject/tsconfig.json Version: 1 structureChanged: true structureIsReused:: Not Elapsed:: *ms -Info 16 [16:01:09.000] Different program with same set of files -Info 17 [16:01:10.000] event: +Info 10 [00:01:03.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/tsconfig-src.json 2000 undefined Project: /user/username/projects/myproject/tsconfig.json WatchType: Config file +Info 11 [00:01:04.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/src 1 undefined Config: /user/username/projects/myproject/tsconfig-src.json WatchType: Wild card directory +Info 12 [00:01:05.000] 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 13 [00:01:06.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/tsconfig.json WatchType: Type roots +Info 14 [00:01:07.000] 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 15 [00:01:08.000] Finishing updateGraphWorker: Project: /user/username/projects/myproject/tsconfig.json Version: 1 structureChanged: true structureIsReused:: Not Elapsed:: *ms +Info 16 [00:01:09.000] Different program with same set of files +Info 17 [00:01:10.000] event: {"seq":0,"type":"event","event":"projectLoadingFinish","body":{"projectName":"/user/username/projects/myproject/tsconfig.json"}} -Info 18 [16:01:11.000] event: +Info 18 [00:01:11.000] event: {"seq":0,"type":"event","event":"telemetry","body":{"telemetryEventName":"projectInfo","payload":{"projectId":"4a33d78ee40d836c4f4e64c59aed976628aea0013be9585c5ff171dfc41baf98","fileStats":{"js":0,"jsSize":0,"jsx":0,"jsxSize":0,"ts":0,"tsSize":0,"tsx":0,"tsxSize":0,"dts":0,"dtsSize":0,"deferred":0,"deferredSize":0},"compilerOptions":{},"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 19 [16:01:12.000] Creating configuration project /user/username/projects/myproject/tsconfig-src.json -Info 20 [16:01:13.000] event: +Info 19 [00:01:12.000] Creating configuration project /user/username/projects/myproject/tsconfig-src.json +Info 20 [00:01:13.000] event: {"seq":0,"type":"event","event":"projectLoadingStart","body":{"projectName":"/user/username/projects/myproject/tsconfig-src.json","reason":"Creating project referenced in solution /user/username/projects/myproject/tsconfig.json to find possible configured project for /user/username/projects/myproject/src/main.ts to open"}} -Info 21 [16:01:14.000] Plugins were requested but not running in environment that supports 'require'. Nothing will be loaded -Info 22 [16:01:15.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/src/helpers/functions.ts 500 undefined WatchType: Closed Script info -Info 23 [16:01:16.000] Starting updateGraphWorker: Project: /user/username/projects/myproject/tsconfig-src.json -Info 24 [16:01:17.000] FileWatcher:: Added:: WatchInfo: /a/lib/lib.d.ts 500 undefined WatchType: Closed Script info -Info 25 [16:01:18.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/tsconfig-src.json WatchType: Type roots -Info 26 [16:01:19.000] 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 27 [16:01:20.000] Finishing updateGraphWorker: Project: /user/username/projects/myproject/tsconfig-src.json Version: 1 structureChanged: true structureIsReused:: Not Elapsed:: *ms -Info 28 [16:01:21.000] Project '/user/username/projects/myproject/tsconfig-src.json' (Configured) -Info 29 [16:01:22.000] Files (3) +Info 21 [00:01:14.000] Plugins were requested but not running in environment that supports 'require'. Nothing will be loaded +Info 22 [00:01:15.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/src/helpers/functions.ts 500 undefined WatchType: Closed Script info +Info 23 [00:01:16.000] Starting updateGraphWorker: Project: /user/username/projects/myproject/tsconfig-src.json +Info 24 [00:01:17.000] FileWatcher:: Added:: WatchInfo: /a/lib/lib.d.ts 500 undefined WatchType: Closed Script info +Info 25 [00:01:18.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/tsconfig-src.json WatchType: Type roots +Info 26 [00:01:19.000] 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 27 [00:01:20.000] Finishing updateGraphWorker: Project: /user/username/projects/myproject/tsconfig-src.json Version: 1 structureChanged: true structureIsReused:: Not Elapsed:: *ms +Info 28 [00:01:21.000] Project '/user/username/projects/myproject/tsconfig-src.json' (Configured) +Info 29 [00:01:22.000] Files (3) /a/lib/lib.d.ts /user/username/projects/myproject/src/helpers/functions.ts /user/username/projects/myproject/src/main.ts @@ -67,27 +67,27 @@ Info 29 [16:01:22.000] Files (3) src/main.ts Matched by include pattern './src/**/*' in 'tsconfig-src.json' -Info 30 [16:01:23.000] ----------------------------------------------- -Info 31 [16:01:24.000] event: +Info 30 [00:01:23.000] ----------------------------------------------- +Info 31 [00:01:24.000] event: {"seq":0,"type":"event","event":"projectLoadingFinish","body":{"projectName":"/user/username/projects/myproject/tsconfig-src.json"}} -Info 32 [16:01:25.000] event: +Info 32 [00:01:25.000] event: {"seq":0,"type":"event","event":"telemetry","body":{"telemetryEventName":"projectInfo","payload":{"projectId":"75d5ba36c0a162a329bf40235b10e96d2d129b95469e1f02c08da775fb38a2b4","fileStats":{"js":0,"jsSize":0,"jsx":0,"jsxSize":0,"ts":2,"tsSize":77,"tsx":0,"tsxSize":0,"dts":1,"dtsSize":334,"deferred":0,"deferredSize":0},"compilerOptions":{"composite":true,"outDir":"","baseUrl":""},"typeAcquisition":{"enable":false,"include":false,"exclude":false},"extends":false,"files":false,"include":true,"exclude":false,"compileOnSave":false,"configFileName":"other","projectType":"configured","languageServiceEnabled":true,"version":"FakeVersion"}}} -Info 33 [16:01:26.000] event: +Info 33 [00:01:26.000] event: {"seq":0,"type":"event","event":"configFileDiag","body":{"triggerFile":"/user/username/projects/myproject/src/main.ts","configFile":"/user/username/projects/myproject/tsconfig-src.json","diagnostics":[]}} -Info 34 [16:01:27.000] Project '/user/username/projects/myproject/tsconfig.json' (Configured) -Info 34 [16:01:28.000] Files (0) - -Info 34 [16:01:29.000] ----------------------------------------------- -Info 34 [16:01:30.000] Project '/user/username/projects/myproject/tsconfig-src.json' (Configured) -Info 34 [16:01:31.000] Files (3) - -Info 34 [16:01:32.000] ----------------------------------------------- -Info 34 [16:01:33.000] Open files: -Info 34 [16:01:34.000] FileName: /user/username/projects/myproject/src/main.ts ProjectRootPath: undefined -Info 34 [16:01:35.000] Projects: /user/username/projects/myproject/tsconfig-src.json -Info 34 [16:01:36.000] getDefaultProject for /user/username/projects/myproject/src/main.ts: /user/username/projects/myproject/tsconfig-src.json -Info 34 [16:01:37.000] findDefaultConfiguredProject for /user/username/projects/myproject/src/main.ts: /user/username/projects/myproject/tsconfig-src.json -Info 34 [16:01:38.000] request: +Info 34 [00:01:27.000] Project '/user/username/projects/myproject/tsconfig.json' (Configured) +Info 34 [00:01:28.000] Files (0) + +Info 34 [00:01:29.000] ----------------------------------------------- +Info 34 [00:01:30.000] Project '/user/username/projects/myproject/tsconfig-src.json' (Configured) +Info 34 [00:01:31.000] Files (3) + +Info 34 [00:01:32.000] ----------------------------------------------- +Info 34 [00:01:33.000] Open files: +Info 34 [00:01:34.000] FileName: /user/username/projects/myproject/src/main.ts ProjectRootPath: undefined +Info 34 [00:01:35.000] Projects: /user/username/projects/myproject/tsconfig-src.json +Info 34 [00:01:36.000] getDefaultProject for /user/username/projects/myproject/src/main.ts: /user/username/projects/myproject/tsconfig-src.json +Info 34 [00:01:37.000] findDefaultConfiguredProject for /user/username/projects/myproject/src/main.ts: /user/username/projects/myproject/tsconfig-src.json +Info 34 [00:01:38.000] request: { "command": "geterr", "arguments": { @@ -191,7 +191,7 @@ FsWatchesRecursive:: /user/username/projects/myproject/src: {} -Info 35 [16:01:39.000] response: +Info 35 [00:01:39.000] response: { "responseRequired": false } @@ -215,7 +215,7 @@ FsWatchesRecursive:: /user/username/projects/myproject/src: {} -Info 36 [16:01:40.000] event: +Info 36 [00:01:40.000] event: {"seq":0,"type":"event","event":"syntaxDiag","body":{"file":"/user/username/projects/myproject/src/main.ts","diagnostics":[]}} After checking timeout queue length (1) and running @@ -257,7 +257,7 @@ FsWatchesRecursive:: /user/username/projects/myproject/src: {} -Info 37 [16:01:41.000] event: +Info 37 [00:01:41.000] event: {"seq":0,"type":"event","event":"semanticDiag","body":{"file":"/user/username/projects/myproject/src/main.ts","diagnostics":[]}} Before running immediate callbacks and checking length (1) @@ -299,9 +299,9 @@ FsWatchesRecursive:: /user/username/projects/myproject/src: {} -Info 38 [16:01:42.000] event: +Info 38 [00:01:42.000] event: {"seq":0,"type":"event","event":"suggestionDiag","body":{"file":"/user/username/projects/myproject/src/main.ts","diagnostics":[]}} -Info 39 [16:01:43.000] event: +Info 39 [00:01:43.000] event: {"seq":0,"type":"event","event":"requestCompleted","body":{"request_seq":1}} Before running immediate callbacks and checking length (1) @@ -323,15 +323,15 @@ FsWatchesRecursive:: /user/username/projects/myproject/src: {} -Info 40 [16:01:44.000] Search path: /dummy -Info 41 [16:01:45.000] For info: /dummy/dummy.ts :: No config files found. -Info 42 [16:01:46.000] Plugins were requested but not running in environment that supports 'require'. Nothing will be loaded -Info 43 [16:01:47.000] Starting updateGraphWorker: Project: /dev/null/inferredProject1* -Info 44 [16:01:48.000] DirectoryWatcher:: Added:: WatchInfo: /dummy/node_modules/@types 1 undefined Project: /dev/null/inferredProject1* WatchType: Type roots -Info 45 [16:01:49.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /dummy/node_modules/@types 1 undefined Project: /dev/null/inferredProject1* WatchType: Type roots -Info 46 [16:01:50.000] Finishing updateGraphWorker: Project: /dev/null/inferredProject1* Version: 1 structureChanged: true structureIsReused:: Not Elapsed:: *ms -Info 47 [16:01:51.000] Project '/dev/null/inferredProject1*' (Inferred) -Info 48 [16:01:52.000] Files (2) +Info 40 [00:01:44.000] Search path: /dummy +Info 41 [00:01:45.000] For info: /dummy/dummy.ts :: No config files found. +Info 42 [00:01:46.000] Plugins were requested but not running in environment that supports 'require'. Nothing will be loaded +Info 43 [00:01:47.000] Starting updateGraphWorker: Project: /dev/null/inferredProject1* +Info 44 [00:01:48.000] DirectoryWatcher:: Added:: WatchInfo: /dummy/node_modules/@types 1 undefined Project: /dev/null/inferredProject1* WatchType: Type roots +Info 45 [00:01:49.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /dummy/node_modules/@types 1 undefined Project: /dev/null/inferredProject1* WatchType: Type roots +Info 46 [00:01:50.000] Finishing updateGraphWorker: Project: /dev/null/inferredProject1* Version: 1 structureChanged: true structureIsReused:: Not Elapsed:: *ms +Info 47 [00:01:51.000] Project '/dev/null/inferredProject1*' (Inferred) +Info 48 [00:01:52.000] Files (2) /a/lib/lib.d.ts /dummy/dummy.ts @@ -341,61 +341,61 @@ Info 48 [16:01:52.000] Files (2) dummy.ts Root file specified for compilation -Info 49 [16:01:53.000] ----------------------------------------------- -Info 50 [16:01:54.000] Project '/user/username/projects/myproject/tsconfig.json' (Configured) -Info 50 [16:01:55.000] Files (0) - -Info 50 [16:01:56.000] ----------------------------------------------- -Info 50 [16:01:57.000] Project '/user/username/projects/myproject/tsconfig-src.json' (Configured) -Info 50 [16:01:58.000] Files (3) - -Info 50 [16:01:59.000] ----------------------------------------------- -Info 50 [16:02:00.000] Project '/dev/null/inferredProject1*' (Inferred) -Info 50 [16:02:01.000] Files (2) - -Info 50 [16:02:02.000] ----------------------------------------------- -Info 50 [16:02:03.000] Open files: -Info 50 [16:02:04.000] FileName: /user/username/projects/myproject/src/main.ts ProjectRootPath: undefined -Info 50 [16:02:05.000] Projects: /user/username/projects/myproject/tsconfig-src.json -Info 50 [16:02:06.000] FileName: /dummy/dummy.ts ProjectRootPath: undefined -Info 50 [16:02:07.000] Projects: /dev/null/inferredProject1* -Info 50 [16:02:08.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/src/main.ts 500 undefined WatchType: Closed Script info -Info 51 [16:02:09.000] Project '/user/username/projects/myproject/tsconfig.json' (Configured) -Info 51 [16:02:10.000] Files (0) - -Info 51 [16:02:11.000] ----------------------------------------------- -Info 51 [16:02:12.000] Project '/user/username/projects/myproject/tsconfig-src.json' (Configured) -Info 51 [16:02:13.000] Files (3) - -Info 51 [16:02:14.000] ----------------------------------------------- -Info 51 [16:02:15.000] Project '/dev/null/inferredProject1*' (Inferred) -Info 51 [16:02:16.000] Files (2) - -Info 51 [16:02:17.000] ----------------------------------------------- -Info 51 [16:02:18.000] Open files: -Info 51 [16:02:19.000] FileName: /dummy/dummy.ts ProjectRootPath: undefined -Info 51 [16:02:20.000] Projects: /dev/null/inferredProject1* -Info 51 [16:02:21.000] FileWatcher:: Added:: WatchInfo: /dummy/dummy.ts 500 undefined WatchType: Closed Script info -Info 52 [16:02:22.000] Project '/user/username/projects/myproject/tsconfig.json' (Configured) -Info 52 [16:02:23.000] Files (0) - -Info 52 [16:02:24.000] ----------------------------------------------- -Info 52 [16:02:25.000] Project '/user/username/projects/myproject/tsconfig-src.json' (Configured) -Info 52 [16:02:26.000] Files (3) - -Info 52 [16:02:27.000] ----------------------------------------------- -Info 52 [16:02:28.000] Project '/dev/null/inferredProject1*' (Inferred) -Info 52 [16:02:29.000] Files (2) - -Info 52 [16:02:30.000] ----------------------------------------------- -Info 52 [16:02:31.000] Open files: -Info 52 [16:02:32.000] FileWatcher:: Close:: WatchInfo: /dummy/dummy.ts 500 undefined WatchType: Closed Script info -Info 53 [16:02:33.000] Search path: /dummy -Info 54 [16:02:34.000] For info: /dummy/dummy.ts :: No config files found. -Info 55 [16:02:35.000] Starting updateGraphWorker: Project: /dev/null/inferredProject1* -Info 56 [16:02:36.000] Finishing updateGraphWorker: Project: /dev/null/inferredProject1* Version: 2 structureChanged: false structureIsReused:: Not Elapsed:: *ms -Info 57 [16:02:37.000] Project '/dev/null/inferredProject1*' (Inferred) -Info 58 [16:02:38.000] Files (2) +Info 49 [00:01:53.000] ----------------------------------------------- +Info 50 [00:01:54.000] Project '/user/username/projects/myproject/tsconfig.json' (Configured) +Info 50 [00:01:55.000] Files (0) + +Info 50 [00:01:56.000] ----------------------------------------------- +Info 50 [00:01:57.000] Project '/user/username/projects/myproject/tsconfig-src.json' (Configured) +Info 50 [00:01:58.000] Files (3) + +Info 50 [00:01:59.000] ----------------------------------------------- +Info 50 [00:02:00.000] Project '/dev/null/inferredProject1*' (Inferred) +Info 50 [00:02:01.000] Files (2) + +Info 50 [00:02:02.000] ----------------------------------------------- +Info 50 [00:02:03.000] Open files: +Info 50 [00:02:04.000] FileName: /user/username/projects/myproject/src/main.ts ProjectRootPath: undefined +Info 50 [00:02:05.000] Projects: /user/username/projects/myproject/tsconfig-src.json +Info 50 [00:02:06.000] FileName: /dummy/dummy.ts ProjectRootPath: undefined +Info 50 [00:02:07.000] Projects: /dev/null/inferredProject1* +Info 50 [00:02:08.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/src/main.ts 500 undefined WatchType: Closed Script info +Info 51 [00:02:09.000] Project '/user/username/projects/myproject/tsconfig.json' (Configured) +Info 51 [00:02:10.000] Files (0) + +Info 51 [00:02:11.000] ----------------------------------------------- +Info 51 [00:02:12.000] Project '/user/username/projects/myproject/tsconfig-src.json' (Configured) +Info 51 [00:02:13.000] Files (3) + +Info 51 [00:02:14.000] ----------------------------------------------- +Info 51 [00:02:15.000] Project '/dev/null/inferredProject1*' (Inferred) +Info 51 [00:02:16.000] Files (2) + +Info 51 [00:02:17.000] ----------------------------------------------- +Info 51 [00:02:18.000] Open files: +Info 51 [00:02:19.000] FileName: /dummy/dummy.ts ProjectRootPath: undefined +Info 51 [00:02:20.000] Projects: /dev/null/inferredProject1* +Info 51 [00:02:21.000] FileWatcher:: Added:: WatchInfo: /dummy/dummy.ts 500 undefined WatchType: Closed Script info +Info 52 [00:02:22.000] Project '/user/username/projects/myproject/tsconfig.json' (Configured) +Info 52 [00:02:23.000] Files (0) + +Info 52 [00:02:24.000] ----------------------------------------------- +Info 52 [00:02:25.000] Project '/user/username/projects/myproject/tsconfig-src.json' (Configured) +Info 52 [00:02:26.000] Files (3) + +Info 52 [00:02:27.000] ----------------------------------------------- +Info 52 [00:02:28.000] Project '/dev/null/inferredProject1*' (Inferred) +Info 52 [00:02:29.000] Files (2) + +Info 52 [00:02:30.000] ----------------------------------------------- +Info 52 [00:02:31.000] Open files: +Info 52 [00:02:32.000] FileWatcher:: Close:: WatchInfo: /dummy/dummy.ts 500 undefined WatchType: Closed Script info +Info 53 [00:02:33.000] Search path: /dummy +Info 54 [00:02:34.000] For info: /dummy/dummy.ts :: No config files found. +Info 55 [00:02:35.000] Starting updateGraphWorker: Project: /dev/null/inferredProject1* +Info 56 [00:02:36.000] Finishing updateGraphWorker: Project: /dev/null/inferredProject1* Version: 2 structureChanged: false structureIsReused:: Not Elapsed:: *ms +Info 57 [00:02:37.000] Project '/dev/null/inferredProject1*' (Inferred) +Info 58 [00:02:38.000] Files (2) /a/lib/lib.d.ts /dummy/dummy.ts @@ -405,20 +405,20 @@ Info 58 [16:02:38.000] Files (2) dummy.ts Root file specified for compilation -Info 59 [16:02:39.000] ----------------------------------------------- -Info 60 [16:02:40.000] `remove Project:: -Info 61 [16:02:41.000] Project '/user/username/projects/myproject/tsconfig.json' (Configured) -Info 62 [16:02:42.000] Files (0) +Info 59 [00:02:39.000] ----------------------------------------------- +Info 60 [00:02:40.000] `remove Project:: +Info 61 [00:02:41.000] Project '/user/username/projects/myproject/tsconfig.json' (Configured) +Info 62 [00:02:42.000] Files (0) -Info 63 [16:02:43.000] ----------------------------------------------- -Info 64 [16:02:44.000] FileWatcher:: Close:: WatchInfo: /user/username/projects/myproject/tsconfig.json 2000 undefined Project: /user/username/projects/myproject/tsconfig.json WatchType: Config file -Info 65 [16:02:45.000] DirectoryWatcher:: Close:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/tsconfig.json WatchType: Type roots -Info 66 [16:02:46.000] 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 67 [16:02:47.000] `remove Project:: -Info 68 [16:02:48.000] Project '/user/username/projects/myproject/tsconfig-src.json' (Configured) -Info 69 [16:02:49.000] Files (3) +Info 63 [00:02:43.000] ----------------------------------------------- +Info 64 [00:02:44.000] FileWatcher:: Close:: WatchInfo: /user/username/projects/myproject/tsconfig.json 2000 undefined Project: /user/username/projects/myproject/tsconfig.json WatchType: Config file +Info 65 [00:02:45.000] DirectoryWatcher:: Close:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/tsconfig.json WatchType: Type roots +Info 66 [00:02:46.000] 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 67 [00:02:47.000] `remove Project:: +Info 68 [00:02:48.000] Project '/user/username/projects/myproject/tsconfig-src.json' (Configured) +Info 69 [00:02:49.000] Files (3) /a/lib/lib.d.ts /user/username/projects/myproject/src/helpers/functions.ts /user/username/projects/myproject/src/main.ts @@ -432,28 +432,28 @@ Info 69 [16:02:49.000] Files (3) src/main.ts Matched by include pattern './src/**/*' in 'tsconfig-src.json' -Info 70 [16:02:50.000] ----------------------------------------------- -Info 71 [16:02:51.000] DirectoryWatcher:: Close:: WatchInfo: /user/username/projects/myproject/src 1 undefined Config: /user/username/projects/myproject/tsconfig-src.json WatchType: Wild card directory -Info 72 [16:02:52.000] 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 73 [16:02:53.000] FileWatcher:: Close:: WatchInfo: /user/username/projects/myproject/tsconfig-src.json 2000 undefined Project: /user/username/projects/myproject/tsconfig.json WatchType: Config file -Info 74 [16:02:54.000] DirectoryWatcher:: Close:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/tsconfig-src.json WatchType: Type roots -Info 75 [16:02:55.000] 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 76 [16:02:56.000] FileWatcher:: Close:: WatchInfo: /user/username/projects/myproject/src/main.ts 500 undefined WatchType: Closed Script info -Info 77 [16:02:57.000] FileWatcher:: Close:: WatchInfo: /user/username/projects/myproject/src/helpers/functions.ts 500 undefined WatchType: Closed Script info -Info 78 [16:02:58.000] Project '/dev/null/inferredProject1*' (Inferred) -Info 78 [16:02:59.000] Files (2) - -Info 78 [16:03:00.000] ----------------------------------------------- -Info 78 [16:03:01.000] Open files: -Info 78 [16:03:02.000] FileName: /dummy/dummy.ts ProjectRootPath: undefined -Info 78 [16:03:03.000] Projects: /dev/null/inferredProject1* -Info 78 [16:03:04.000] Search path: /user/username/projects/myproject/src -Info 79 [16:03:05.000] For info: /user/username/projects/myproject/src/main.ts :: Config file name: /user/username/projects/myproject/tsconfig.json -Info 80 [16:03:06.000] Creating configuration project /user/username/projects/myproject/tsconfig.json -Info 81 [16:03:07.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/tsconfig.json 2000 undefined Project: /user/username/projects/myproject/tsconfig.json WatchType: Config file -Info 82 [16:03:08.000] event: +Info 70 [00:02:50.000] ----------------------------------------------- +Info 71 [00:02:51.000] DirectoryWatcher:: Close:: WatchInfo: /user/username/projects/myproject/src 1 undefined Config: /user/username/projects/myproject/tsconfig-src.json WatchType: Wild card directory +Info 72 [00:02:52.000] 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 73 [00:02:53.000] FileWatcher:: Close:: WatchInfo: /user/username/projects/myproject/tsconfig-src.json 2000 undefined Project: /user/username/projects/myproject/tsconfig.json WatchType: Config file +Info 74 [00:02:54.000] DirectoryWatcher:: Close:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/tsconfig-src.json WatchType: Type roots +Info 75 [00:02:55.000] 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 76 [00:02:56.000] FileWatcher:: Close:: WatchInfo: /user/username/projects/myproject/src/main.ts 500 undefined WatchType: Closed Script info +Info 77 [00:02:57.000] FileWatcher:: Close:: WatchInfo: /user/username/projects/myproject/src/helpers/functions.ts 500 undefined WatchType: Closed Script info +Info 78 [00:02:58.000] Project '/dev/null/inferredProject1*' (Inferred) +Info 78 [00:02:59.000] Files (2) + +Info 78 [00:03:00.000] ----------------------------------------------- +Info 78 [00:03:01.000] Open files: +Info 78 [00:03:02.000] FileName: /dummy/dummy.ts ProjectRootPath: undefined +Info 78 [00:03:03.000] Projects: /dev/null/inferredProject1* +Info 78 [00:03:04.000] Search path: /user/username/projects/myproject/src +Info 79 [00:03:05.000] For info: /user/username/projects/myproject/src/main.ts :: Config file name: /user/username/projects/myproject/tsconfig.json +Info 80 [00:03:06.000] Creating configuration project /user/username/projects/myproject/tsconfig.json +Info 81 [00:03:07.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/tsconfig.json 2000 undefined Project: /user/username/projects/myproject/tsconfig.json WatchType: Config file +Info 82 [00:03:08.000] event: {"seq":0,"type":"event","event":"projectLoadingStart","body":{"projectName":"/user/username/projects/myproject/tsconfig.json","reason":"Creating possible configured project for /user/username/projects/myproject/src/main.ts to open"}} -Info 83 [16:03:09.000] Config: /user/username/projects/myproject/tsconfig.json : { +Info 83 [00:03:09.000] Config: /user/username/projects/myproject/tsconfig.json : { "rootNames": [], "options": { "configFilePath": "/user/username/projects/myproject/tsconfig.json" @@ -465,9 +465,9 @@ Info 83 [16:03:09.000] Config: /user/username/projects/myproject/tsconfig.json } ] } -Info 84 [16:03:10.000] Plugins were requested but not running in environment that supports 'require'. Nothing will be loaded -Info 85 [16:03:11.000] Starting updateGraphWorker: Project: /user/username/projects/myproject/tsconfig.json -Info 86 [16:03:12.000] Config: /user/username/projects/myproject/tsconfig-src.json : { +Info 84 [00:03:10.000] Plugins were requested but not running in environment that supports 'require'. Nothing will be loaded +Info 85 [00:03:11.000] Starting updateGraphWorker: Project: /user/username/projects/myproject/tsconfig.json +Info 86 [00:03:12.000] Config: /user/username/projects/myproject/tsconfig-src.json : { "rootNames": [ "/user/username/projects/myproject/src/main.ts", "/user/username/projects/myproject/src/helpers/functions.ts" @@ -479,26 +479,26 @@ Info 86 [16:03:12.000] Config: /user/username/projects/myproject/tsconfig-src. "configFilePath": "/user/username/projects/myproject/tsconfig-src.json" } } -Info 87 [16:03:13.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/tsconfig-src.json 2000 undefined Project: /user/username/projects/myproject/tsconfig.json WatchType: Config file -Info 88 [16:03:14.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/src 1 undefined Config: /user/username/projects/myproject/tsconfig-src.json WatchType: Wild card directory -Info 89 [16:03:15.000] 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 90 [16:03:16.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/tsconfig.json WatchType: Type roots -Info 91 [16:03:17.000] 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 92 [16:03:18.000] Finishing updateGraphWorker: Project: /user/username/projects/myproject/tsconfig.json Version: 1 structureChanged: true structureIsReused:: Not Elapsed:: *ms -Info 93 [16:03:19.000] Different program with same set of files -Info 94 [16:03:20.000] event: +Info 87 [00:03:13.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/tsconfig-src.json 2000 undefined Project: /user/username/projects/myproject/tsconfig.json WatchType: Config file +Info 88 [00:03:14.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/src 1 undefined Config: /user/username/projects/myproject/tsconfig-src.json WatchType: Wild card directory +Info 89 [00:03:15.000] 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 90 [00:03:16.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/tsconfig.json WatchType: Type roots +Info 91 [00:03:17.000] 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 92 [00:03:18.000] Finishing updateGraphWorker: Project: /user/username/projects/myproject/tsconfig.json Version: 1 structureChanged: true structureIsReused:: Not Elapsed:: *ms +Info 93 [00:03:19.000] Different program with same set of files +Info 94 [00:03:20.000] event: {"seq":0,"type":"event","event":"projectLoadingFinish","body":{"projectName":"/user/username/projects/myproject/tsconfig.json"}} -Info 95 [16:03:21.000] Creating configuration project /user/username/projects/myproject/tsconfig-src.json -Info 96 [16:03:22.000] event: +Info 95 [00:03:21.000] Creating configuration project /user/username/projects/myproject/tsconfig-src.json +Info 96 [00:03:22.000] event: {"seq":0,"type":"event","event":"projectLoadingStart","body":{"projectName":"/user/username/projects/myproject/tsconfig-src.json","reason":"Creating project referenced in solution /user/username/projects/myproject/tsconfig.json to find possible configured project for /user/username/projects/myproject/src/main.ts to open"}} -Info 97 [16:03:23.000] Plugins were requested but not running in environment that supports 'require'. Nothing will be loaded -Info 98 [16:03:24.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/src/helpers/functions.ts 500 undefined WatchType: Closed Script info -Info 99 [16:03:25.000] Starting updateGraphWorker: Project: /user/username/projects/myproject/tsconfig-src.json -Info 100 [16:03:26.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/tsconfig-src.json WatchType: Type roots -Info 101 [16:03:27.000] 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 102 [16:03:28.000] Finishing updateGraphWorker: Project: /user/username/projects/myproject/tsconfig-src.json Version: 1 structureChanged: true structureIsReused:: Not Elapsed:: *ms -Info 103 [16:03:29.000] Project '/user/username/projects/myproject/tsconfig-src.json' (Configured) -Info 104 [16:03:30.000] Files (3) +Info 97 [00:03:23.000] Plugins were requested but not running in environment that supports 'require'. Nothing will be loaded +Info 98 [00:03:24.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/src/helpers/functions.ts 500 undefined WatchType: Closed Script info +Info 99 [00:03:25.000] Starting updateGraphWorker: Project: /user/username/projects/myproject/tsconfig-src.json +Info 100 [00:03:26.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/tsconfig-src.json WatchType: Type roots +Info 101 [00:03:27.000] 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 102 [00:03:28.000] Finishing updateGraphWorker: Project: /user/username/projects/myproject/tsconfig-src.json Version: 1 structureChanged: true structureIsReused:: Not Elapsed:: *ms +Info 103 [00:03:29.000] Project '/user/username/projects/myproject/tsconfig-src.json' (Configured) +Info 104 [00:03:30.000] Files (3) /a/lib/lib.d.ts /user/username/projects/myproject/src/helpers/functions.ts /user/username/projects/myproject/src/main.ts @@ -512,51 +512,51 @@ Info 104 [16:03:30.000] Files (3) src/main.ts Matched by include pattern './src/**/*' in 'tsconfig-src.json' -Info 105 [16:03:31.000] ----------------------------------------------- -Info 106 [16:03:32.000] event: +Info 105 [00:03:31.000] ----------------------------------------------- +Info 106 [00:03:32.000] event: {"seq":0,"type":"event","event":"projectLoadingFinish","body":{"projectName":"/user/username/projects/myproject/tsconfig-src.json"}} -Info 107 [16:03:33.000] event: +Info 107 [00:03:33.000] event: {"seq":0,"type":"event","event":"configFileDiag","body":{"triggerFile":"/user/username/projects/myproject/src/main.ts","configFile":"/user/username/projects/myproject/tsconfig-src.json","diagnostics":[]}} -Info 108 [16:03:34.000] Project '/user/username/projects/myproject/tsconfig.json' (Configured) -Info 108 [16:03:35.000] Files (0) - -Info 108 [16:03:36.000] ----------------------------------------------- -Info 108 [16:03:37.000] Project '/user/username/projects/myproject/tsconfig-src.json' (Configured) -Info 108 [16:03:38.000] Files (3) - -Info 108 [16:03:39.000] ----------------------------------------------- -Info 108 [16:03:40.000] Project '/dev/null/inferredProject1*' (Inferred) -Info 108 [16:03:41.000] Files (2) - -Info 108 [16:03:42.000] ----------------------------------------------- -Info 108 [16:03:43.000] Open files: -Info 108 [16:03:44.000] FileName: /dummy/dummy.ts ProjectRootPath: undefined -Info 108 [16:03:45.000] Projects: /dev/null/inferredProject1* -Info 108 [16:03:46.000] FileName: /user/username/projects/myproject/src/main.ts ProjectRootPath: undefined -Info 108 [16:03:47.000] Projects: /user/username/projects/myproject/tsconfig-src.json -Info 108 [16:03:48.000] FileWatcher:: Added:: WatchInfo: /dummy/dummy.ts 500 undefined WatchType: Closed Script info -Info 109 [16:03:49.000] Project '/user/username/projects/myproject/tsconfig.json' (Configured) -Info 109 [16:03:50.000] Files (0) - -Info 109 [16:03:51.000] ----------------------------------------------- -Info 109 [16:03:52.000] Project '/user/username/projects/myproject/tsconfig-src.json' (Configured) -Info 109 [16:03:53.000] Files (3) - -Info 109 [16:03:54.000] ----------------------------------------------- -Info 109 [16:03:55.000] Project '/dev/null/inferredProject1*' (Inferred) -Info 109 [16:03:56.000] Files (2) - -Info 109 [16:03:57.000] ----------------------------------------------- -Info 109 [16:03:58.000] Open files: -Info 109 [16:03:59.000] FileName: /user/username/projects/myproject/src/main.ts ProjectRootPath: undefined -Info 109 [16:04:00.000] Projects: /user/username/projects/myproject/tsconfig-src.json -Info 109 [16:04:01.000] FileWatcher:: Close:: WatchInfo: /dummy/dummy.ts 500 undefined WatchType: Closed Script info -Info 110 [16:04:02.000] Search path: /dummy -Info 111 [16:04:03.000] For info: /dummy/dummy.ts :: No config files found. -Info 112 [16:04:04.000] Starting updateGraphWorker: Project: /dev/null/inferredProject1* -Info 113 [16:04:05.000] Finishing updateGraphWorker: Project: /dev/null/inferredProject1* Version: 3 structureChanged: false structureIsReused:: Not Elapsed:: *ms -Info 114 [16:04:06.000] Project '/dev/null/inferredProject1*' (Inferred) -Info 115 [16:04:07.000] Files (2) +Info 108 [00:03:34.000] Project '/user/username/projects/myproject/tsconfig.json' (Configured) +Info 108 [00:03:35.000] Files (0) + +Info 108 [00:03:36.000] ----------------------------------------------- +Info 108 [00:03:37.000] Project '/user/username/projects/myproject/tsconfig-src.json' (Configured) +Info 108 [00:03:38.000] Files (3) + +Info 108 [00:03:39.000] ----------------------------------------------- +Info 108 [00:03:40.000] Project '/dev/null/inferredProject1*' (Inferred) +Info 108 [00:03:41.000] Files (2) + +Info 108 [00:03:42.000] ----------------------------------------------- +Info 108 [00:03:43.000] Open files: +Info 108 [00:03:44.000] FileName: /dummy/dummy.ts ProjectRootPath: undefined +Info 108 [00:03:45.000] Projects: /dev/null/inferredProject1* +Info 108 [00:03:46.000] FileName: /user/username/projects/myproject/src/main.ts ProjectRootPath: undefined +Info 108 [00:03:47.000] Projects: /user/username/projects/myproject/tsconfig-src.json +Info 108 [00:03:48.000] FileWatcher:: Added:: WatchInfo: /dummy/dummy.ts 500 undefined WatchType: Closed Script info +Info 109 [00:03:49.000] Project '/user/username/projects/myproject/tsconfig.json' (Configured) +Info 109 [00:03:50.000] Files (0) + +Info 109 [00:03:51.000] ----------------------------------------------- +Info 109 [00:03:52.000] Project '/user/username/projects/myproject/tsconfig-src.json' (Configured) +Info 109 [00:03:53.000] Files (3) + +Info 109 [00:03:54.000] ----------------------------------------------- +Info 109 [00:03:55.000] Project '/dev/null/inferredProject1*' (Inferred) +Info 109 [00:03:56.000] Files (2) + +Info 109 [00:03:57.000] ----------------------------------------------- +Info 109 [00:03:58.000] Open files: +Info 109 [00:03:59.000] FileName: /user/username/projects/myproject/src/main.ts ProjectRootPath: undefined +Info 109 [00:04:00.000] Projects: /user/username/projects/myproject/tsconfig-src.json +Info 109 [00:04:01.000] FileWatcher:: Close:: WatchInfo: /dummy/dummy.ts 500 undefined WatchType: Closed Script info +Info 110 [00:04:02.000] Search path: /dummy +Info 111 [00:04:03.000] For info: /dummy/dummy.ts :: No config files found. +Info 112 [00:04:04.000] Starting updateGraphWorker: Project: /dev/null/inferredProject1* +Info 113 [00:04:05.000] Finishing updateGraphWorker: Project: /dev/null/inferredProject1* Version: 3 structureChanged: false structureIsReused:: Not Elapsed:: *ms +Info 114 [00:04:06.000] Project '/dev/null/inferredProject1*' (Inferred) +Info 115 [00:04:07.000] Files (2) /a/lib/lib.d.ts /dummy/dummy.ts @@ -566,38 +566,38 @@ Info 115 [16:04:07.000] Files (2) dummy.ts Root file specified for compilation -Info 116 [16:04:08.000] ----------------------------------------------- -Info 117 [16:04:09.000] Project '/user/username/projects/myproject/tsconfig.json' (Configured) -Info 117 [16:04:10.000] Files (0) - -Info 117 [16:04:11.000] ----------------------------------------------- -Info 117 [16:04:12.000] Project '/user/username/projects/myproject/tsconfig-src.json' (Configured) -Info 117 [16:04:13.000] Files (3) - -Info 117 [16:04:14.000] ----------------------------------------------- -Info 117 [16:04:15.000] Project '/dev/null/inferredProject1*' (Inferred) -Info 117 [16:04:16.000] Files (2) - -Info 117 [16:04:17.000] ----------------------------------------------- -Info 117 [16:04:18.000] Open files: -Info 117 [16:04:19.000] FileName: /user/username/projects/myproject/src/main.ts ProjectRootPath: undefined -Info 117 [16:04:20.000] Projects: /user/username/projects/myproject/tsconfig-src.json -Info 117 [16:04:21.000] FileName: /dummy/dummy.ts ProjectRootPath: undefined -Info 117 [16:04:22.000] Projects: /dev/null/inferredProject1* -Info 117 [16:04:23.000] reload projects. -Info 118 [16:04:24.000] Scheduled: /dev/null/inferredProject1* -Info 119 [16:04:25.000] Scheduled: /user/username/projects/myproject/tsconfig-src.json -Info 120 [16:04:26.000] Scheduled: *ensureProjectForOpenFiles* -Info 121 [16:04:27.000] Scheduled: /user/username/projects/myproject/tsconfig-src.json, Cancelled earlier one -Info 122 [16:04:28.000] Scheduled: *ensureProjectForOpenFiles*, Cancelled earlier one -Info 123 [16:04:29.000] Search path: /user/username/projects/myproject/src -Info 124 [16:04:30.000] For info: /user/username/projects/myproject/src/main.ts :: Config file name: /user/username/projects/myproject/tsconfig.json -Info 125 [16:04:31.000] DirectoryWatcher:: Close:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/tsconfig.json WatchType: Type roots -Info 126 [16:04:32.000] 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 127 [16:04:33.000] Reloading configured project /user/username/projects/myproject/tsconfig.json -Info 128 [16:04:34.000] event: +Info 116 [00:04:08.000] ----------------------------------------------- +Info 117 [00:04:09.000] Project '/user/username/projects/myproject/tsconfig.json' (Configured) +Info 117 [00:04:10.000] Files (0) + +Info 117 [00:04:11.000] ----------------------------------------------- +Info 117 [00:04:12.000] Project '/user/username/projects/myproject/tsconfig-src.json' (Configured) +Info 117 [00:04:13.000] Files (3) + +Info 117 [00:04:14.000] ----------------------------------------------- +Info 117 [00:04:15.000] Project '/dev/null/inferredProject1*' (Inferred) +Info 117 [00:04:16.000] Files (2) + +Info 117 [00:04:17.000] ----------------------------------------------- +Info 117 [00:04:18.000] Open files: +Info 117 [00:04:19.000] FileName: /user/username/projects/myproject/src/main.ts ProjectRootPath: undefined +Info 117 [00:04:20.000] Projects: /user/username/projects/myproject/tsconfig-src.json +Info 117 [00:04:21.000] FileName: /dummy/dummy.ts ProjectRootPath: undefined +Info 117 [00:04:22.000] Projects: /dev/null/inferredProject1* +Info 117 [00:04:23.000] reload projects. +Info 118 [00:04:24.000] Scheduled: /dev/null/inferredProject1* +Info 119 [00:04:25.000] Scheduled: /user/username/projects/myproject/tsconfig-src.json +Info 120 [00:04:26.000] Scheduled: *ensureProjectForOpenFiles* +Info 121 [00:04:27.000] Scheduled: /user/username/projects/myproject/tsconfig-src.json, Cancelled earlier one +Info 122 [00:04:28.000] Scheduled: *ensureProjectForOpenFiles*, Cancelled earlier one +Info 123 [00:04:29.000] Search path: /user/username/projects/myproject/src +Info 124 [00:04:30.000] For info: /user/username/projects/myproject/src/main.ts :: Config file name: /user/username/projects/myproject/tsconfig.json +Info 125 [00:04:31.000] DirectoryWatcher:: Close:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/tsconfig.json WatchType: Type roots +Info 126 [00:04:32.000] 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 127 [00:04:33.000] Reloading configured project /user/username/projects/myproject/tsconfig.json +Info 128 [00:04:34.000] event: {"seq":0,"type":"event","event":"projectLoadingStart","body":{"projectName":"/user/username/projects/myproject/tsconfig.json","reason":"User requested reload projects"}} -Info 129 [16:04:35.000] Config: /user/username/projects/myproject/tsconfig.json : { +Info 129 [00:04:35.000] Config: /user/username/projects/myproject/tsconfig.json : { "rootNames": [], "options": { "configFilePath": "/user/username/projects/myproject/tsconfig.json" @@ -609,9 +609,9 @@ Info 129 [16:04:35.000] Config: /user/username/projects/myproject/tsconfig.json } ] } -Info 130 [16:04:36.000] Plugins were requested but not running in environment that supports 'require'. Nothing will be loaded -Info 131 [16:04:37.000] Starting updateGraphWorker: Project: /user/username/projects/myproject/tsconfig.json -Info 132 [16:04:38.000] Config: /user/username/projects/myproject/tsconfig-src.json : { +Info 130 [00:04:36.000] Plugins were requested but not running in environment that supports 'require'. Nothing will be loaded +Info 131 [00:04:37.000] Starting updateGraphWorker: Project: /user/username/projects/myproject/tsconfig.json +Info 132 [00:04:38.000] Config: /user/username/projects/myproject/tsconfig-src.json : { "rootNames": [ "/user/username/projects/myproject/src/main.ts", "/user/username/projects/myproject/src/helpers/functions.ts" @@ -623,75 +623,75 @@ Info 132 [16:04:38.000] Config: /user/username/projects/myproject/tsconfig-src. "configFilePath": "/user/username/projects/myproject/tsconfig-src.json" } } -Info 133 [16:04:39.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/tsconfig.json WatchType: Type roots -Info 134 [16:04:40.000] 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 135 [16:04:41.000] Finishing updateGraphWorker: Project: /user/username/projects/myproject/tsconfig.json Version: 2 structureChanged: true structureIsReused:: Not Elapsed:: *ms -Info 136 [16:04:42.000] Different program with same set of files -Info 137 [16:04:43.000] event: +Info 133 [00:04:39.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/tsconfig.json WatchType: Type roots +Info 134 [00:04:40.000] 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 135 [00:04:41.000] Finishing updateGraphWorker: Project: /user/username/projects/myproject/tsconfig.json Version: 2 structureChanged: true structureIsReused:: Not Elapsed:: *ms +Info 136 [00:04:42.000] Different program with same set of files +Info 137 [00:04:43.000] event: {"seq":0,"type":"event","event":"projectLoadingFinish","body":{"projectName":"/user/username/projects/myproject/tsconfig.json"}} -Info 138 [16:04:44.000] event: +Info 138 [00:04:44.000] event: {"seq":0,"type":"event","event":"configFileDiag","body":{"triggerFile":"/user/username/projects/myproject/tsconfig.json","configFile":"/user/username/projects/myproject/tsconfig.json","diagnostics":[]}} -Info 139 [16:04:45.000] DirectoryWatcher:: Close:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/tsconfig-src.json WatchType: Type roots -Info 140 [16:04:46.000] 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 141 [16:04:47.000] Reloading configured project /user/username/projects/myproject/tsconfig-src.json -Info 142 [16:04:48.000] event: +Info 139 [00:04:45.000] DirectoryWatcher:: Close:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/tsconfig-src.json WatchType: Type roots +Info 140 [00:04:46.000] 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 141 [00:04:47.000] Reloading configured project /user/username/projects/myproject/tsconfig-src.json +Info 142 [00:04:48.000] event: {"seq":0,"type":"event","event":"projectLoadingStart","body":{"projectName":"/user/username/projects/myproject/tsconfig-src.json","reason":"User requested reload projects"}} -Info 143 [16:04:49.000] Plugins were requested but not running in environment that supports 'require'. Nothing will be loaded -Info 144 [16:04:50.000] Starting updateGraphWorker: Project: /user/username/projects/myproject/tsconfig-src.json -Info 145 [16:04:51.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/tsconfig-src.json WatchType: Type roots -Info 146 [16:04:52.000] 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 147 [16:04:53.000] Finishing updateGraphWorker: Project: /user/username/projects/myproject/tsconfig-src.json Version: 2 structureChanged: true structureIsReused:: Not Elapsed:: *ms -Info 148 [16:04:54.000] Different program with same set of files -Info 149 [16:04:55.000] event: +Info 143 [00:04:49.000] Plugins were requested but not running in environment that supports 'require'. Nothing will be loaded +Info 144 [00:04:50.000] Starting updateGraphWorker: Project: /user/username/projects/myproject/tsconfig-src.json +Info 145 [00:04:51.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/tsconfig-src.json WatchType: Type roots +Info 146 [00:04:52.000] 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 147 [00:04:53.000] Finishing updateGraphWorker: Project: /user/username/projects/myproject/tsconfig-src.json Version: 2 structureChanged: true structureIsReused:: Not Elapsed:: *ms +Info 148 [00:04:54.000] Different program with same set of files +Info 149 [00:04:55.000] event: {"seq":0,"type":"event","event":"projectLoadingFinish","body":{"projectName":"/user/username/projects/myproject/tsconfig-src.json"}} -Info 150 [16:04:56.000] event: +Info 150 [00:04:56.000] event: {"seq":0,"type":"event","event":"configFileDiag","body":{"triggerFile":"/user/username/projects/myproject/tsconfig-src.json","configFile":"/user/username/projects/myproject/tsconfig-src.json","diagnostics":[]}} -Info 151 [16:04:57.000] Search path: /dummy -Info 152 [16:04:58.000] For info: /dummy/dummy.ts :: No config files found. -Info 153 [16:04:59.000] DirectoryWatcher:: Close:: WatchInfo: /dummy/node_modules/@types 1 undefined Project: /dev/null/inferredProject1* WatchType: Type roots -Info 154 [16:05:00.000] Elapsed:: *ms DirectoryWatcher:: Close:: WatchInfo: /dummy/node_modules/@types 1 undefined Project: /dev/null/inferredProject1* WatchType: Type roots -Info 155 [16:05:01.000] Before ensureProjectForOpenFiles: -Info 156 [16:05:02.000] Project '/user/username/projects/myproject/tsconfig.json' (Configured) -Info 156 [16:05:03.000] Files (0) - -Info 156 [16:05:04.000] ----------------------------------------------- -Info 156 [16:05:05.000] Project '/user/username/projects/myproject/tsconfig-src.json' (Configured) -Info 156 [16:05:06.000] Files (3) - -Info 156 [16:05:07.000] ----------------------------------------------- -Info 156 [16:05:08.000] Project '/dev/null/inferredProject1*' (Inferred) -Info 156 [16:05:09.000] Files (2) - -Info 156 [16:05:10.000] ----------------------------------------------- -Info 156 [16:05:11.000] Open files: -Info 156 [16:05:12.000] FileName: /user/username/projects/myproject/src/main.ts ProjectRootPath: undefined -Info 156 [16:05:13.000] Projects: /user/username/projects/myproject/tsconfig-src.json -Info 156 [16:05:14.000] FileName: /dummy/dummy.ts ProjectRootPath: undefined -Info 156 [16:05:15.000] Projects: /dev/null/inferredProject1* -Info 156 [16:05:16.000] Starting updateGraphWorker: Project: /dev/null/inferredProject1* -Info 157 [16:05:17.000] DirectoryWatcher:: Added:: WatchInfo: /dummy/node_modules/@types 1 undefined Project: /dev/null/inferredProject1* WatchType: Type roots -Info 158 [16:05:18.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /dummy/node_modules/@types 1 undefined Project: /dev/null/inferredProject1* WatchType: Type roots -Info 159 [16:05:19.000] Finishing updateGraphWorker: Project: /dev/null/inferredProject1* Version: 4 structureChanged: true structureIsReused:: Not Elapsed:: *ms -Info 160 [16:05:20.000] Different program with same set of files -Info 161 [16:05:21.000] After ensureProjectForOpenFiles: -Info 162 [16:05:22.000] Project '/user/username/projects/myproject/tsconfig.json' (Configured) -Info 162 [16:05:23.000] Files (0) - -Info 162 [16:05:24.000] ----------------------------------------------- -Info 162 [16:05:25.000] Project '/user/username/projects/myproject/tsconfig-src.json' (Configured) -Info 162 [16:05:26.000] Files (3) - -Info 162 [16:05:27.000] ----------------------------------------------- -Info 162 [16:05:28.000] Project '/dev/null/inferredProject1*' (Inferred) -Info 162 [16:05:29.000] Files (2) - -Info 162 [16:05:30.000] ----------------------------------------------- -Info 162 [16:05:31.000] Open files: -Info 162 [16:05:32.000] FileName: /user/username/projects/myproject/src/main.ts ProjectRootPath: undefined -Info 162 [16:05:33.000] Projects: /user/username/projects/myproject/tsconfig-src.json -Info 162 [16:05:34.000] FileName: /dummy/dummy.ts ProjectRootPath: undefined -Info 162 [16:05:35.000] Projects: /dev/null/inferredProject1* -Info 162 [16:05:36.000] request: +Info 151 [00:04:57.000] Search path: /dummy +Info 152 [00:04:58.000] For info: /dummy/dummy.ts :: No config files found. +Info 153 [00:04:59.000] DirectoryWatcher:: Close:: WatchInfo: /dummy/node_modules/@types 1 undefined Project: /dev/null/inferredProject1* WatchType: Type roots +Info 154 [00:05:00.000] Elapsed:: *ms DirectoryWatcher:: Close:: WatchInfo: /dummy/node_modules/@types 1 undefined Project: /dev/null/inferredProject1* WatchType: Type roots +Info 155 [00:05:01.000] Before ensureProjectForOpenFiles: +Info 156 [00:05:02.000] Project '/user/username/projects/myproject/tsconfig.json' (Configured) +Info 156 [00:05:03.000] Files (0) + +Info 156 [00:05:04.000] ----------------------------------------------- +Info 156 [00:05:05.000] Project '/user/username/projects/myproject/tsconfig-src.json' (Configured) +Info 156 [00:05:06.000] Files (3) + +Info 156 [00:05:07.000] ----------------------------------------------- +Info 156 [00:05:08.000] Project '/dev/null/inferredProject1*' (Inferred) +Info 156 [00:05:09.000] Files (2) + +Info 156 [00:05:10.000] ----------------------------------------------- +Info 156 [00:05:11.000] Open files: +Info 156 [00:05:12.000] FileName: /user/username/projects/myproject/src/main.ts ProjectRootPath: undefined +Info 156 [00:05:13.000] Projects: /user/username/projects/myproject/tsconfig-src.json +Info 156 [00:05:14.000] FileName: /dummy/dummy.ts ProjectRootPath: undefined +Info 156 [00:05:15.000] Projects: /dev/null/inferredProject1* +Info 156 [00:05:16.000] Starting updateGraphWorker: Project: /dev/null/inferredProject1* +Info 157 [00:05:17.000] DirectoryWatcher:: Added:: WatchInfo: /dummy/node_modules/@types 1 undefined Project: /dev/null/inferredProject1* WatchType: Type roots +Info 158 [00:05:18.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /dummy/node_modules/@types 1 undefined Project: /dev/null/inferredProject1* WatchType: Type roots +Info 159 [00:05:19.000] Finishing updateGraphWorker: Project: /dev/null/inferredProject1* Version: 4 structureChanged: true structureIsReused:: Not Elapsed:: *ms +Info 160 [00:05:20.000] Different program with same set of files +Info 161 [00:05:21.000] After ensureProjectForOpenFiles: +Info 162 [00:05:22.000] Project '/user/username/projects/myproject/tsconfig.json' (Configured) +Info 162 [00:05:23.000] Files (0) + +Info 162 [00:05:24.000] ----------------------------------------------- +Info 162 [00:05:25.000] Project '/user/username/projects/myproject/tsconfig-src.json' (Configured) +Info 162 [00:05:26.000] Files (3) + +Info 162 [00:05:27.000] ----------------------------------------------- +Info 162 [00:05:28.000] Project '/dev/null/inferredProject1*' (Inferred) +Info 162 [00:05:29.000] Files (2) + +Info 162 [00:05:30.000] ----------------------------------------------- +Info 162 [00:05:31.000] Open files: +Info 162 [00:05:32.000] FileName: /user/username/projects/myproject/src/main.ts ProjectRootPath: undefined +Info 162 [00:05:33.000] Projects: /user/username/projects/myproject/tsconfig-src.json +Info 162 [00:05:34.000] FileName: /dummy/dummy.ts ProjectRootPath: undefined +Info 162 [00:05:35.000] Projects: /dev/null/inferredProject1* +Info 162 [00:05:36.000] request: { "command": "references", "arguments": { @@ -724,9 +724,9 @@ FsWatchesRecursive:: /user/username/projects/myproject/src: {} -Info 163 [16:05:37.000] Finding references to /user/username/projects/myproject/src/main.ts position 50 in project /user/username/projects/myproject/tsconfig-src.json -Info 164 [16:05:38.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/target/src/helpers/functions.d.ts 500 undefined WatchType: Closed Script info -Info 165 [16:05:39.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/target/src/helpers/functions.d.ts.map 500 undefined WatchType: Closed Script info +Info 163 [00:05:37.000] Finding references to /user/username/projects/myproject/src/main.ts position 50 in project /user/username/projects/myproject/tsconfig-src.json +Info 164 [00:05:38.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/target/src/helpers/functions.d.ts 500 undefined WatchType: Closed Script info +Info 165 [00:05:39.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/target/src/helpers/functions.d.ts.map 500 undefined WatchType: Closed Script info After request PolledWatches:: @@ -753,7 +753,7 @@ FsWatchesRecursive:: /user/username/projects/myproject/src: {} -Info 166 [16:05:40.000] response: +Info 166 [00:05:40.000] response: { "response": { "refs": [ @@ -830,43 +830,43 @@ Info 166 [16:05:40.000] response: }, "responseRequired": true } -Info 167 [16:05:41.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/src/main.ts 500 undefined WatchType: Closed Script info -Info 168 [16:05:42.000] Project '/user/username/projects/myproject/tsconfig.json' (Configured) -Info 168 [16:05:43.000] Files (0) - -Info 168 [16:05:44.000] ----------------------------------------------- -Info 168 [16:05:45.000] Project '/user/username/projects/myproject/tsconfig-src.json' (Configured) -Info 168 [16:05:46.000] Files (3) - -Info 168 [16:05:47.000] ----------------------------------------------- -Info 168 [16:05:48.000] Project '/dev/null/inferredProject1*' (Inferred) -Info 168 [16:05:49.000] Files (2) - -Info 168 [16:05:50.000] ----------------------------------------------- -Info 168 [16:05:51.000] Open files: -Info 168 [16:05:52.000] FileName: /dummy/dummy.ts ProjectRootPath: undefined -Info 168 [16:05:53.000] Projects: /dev/null/inferredProject1* -Info 168 [16:05:54.000] FileWatcher:: Added:: WatchInfo: /dummy/dummy.ts 500 undefined WatchType: Closed Script info -Info 169 [16:05:55.000] Project '/user/username/projects/myproject/tsconfig.json' (Configured) -Info 169 [16:05:56.000] Files (0) - -Info 169 [16:05:57.000] ----------------------------------------------- -Info 169 [16:05:58.000] Project '/user/username/projects/myproject/tsconfig-src.json' (Configured) -Info 169 [16:05:59.000] Files (3) - -Info 169 [16:06:00.000] ----------------------------------------------- -Info 169 [16:06:01.000] Project '/dev/null/inferredProject1*' (Inferred) -Info 169 [16:06:02.000] Files (2) - -Info 169 [16:06:03.000] ----------------------------------------------- -Info 169 [16:06:04.000] Open files: -Info 169 [16:06:05.000] Search path: /user/username/projects/myproject/indirect3 -Info 170 [16:06:06.000] For info: /user/username/projects/myproject/indirect3/main.ts :: Config file name: /user/username/projects/myproject/indirect3/tsconfig.json -Info 171 [16:06:07.000] Creating configuration project /user/username/projects/myproject/indirect3/tsconfig.json -Info 172 [16:06:08.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/indirect3/tsconfig.json 2000 undefined Project: /user/username/projects/myproject/indirect3/tsconfig.json WatchType: Config file -Info 173 [16:06:09.000] event: +Info 167 [00:05:41.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/src/main.ts 500 undefined WatchType: Closed Script info +Info 168 [00:05:42.000] Project '/user/username/projects/myproject/tsconfig.json' (Configured) +Info 168 [00:05:43.000] Files (0) + +Info 168 [00:05:44.000] ----------------------------------------------- +Info 168 [00:05:45.000] Project '/user/username/projects/myproject/tsconfig-src.json' (Configured) +Info 168 [00:05:46.000] Files (3) + +Info 168 [00:05:47.000] ----------------------------------------------- +Info 168 [00:05:48.000] Project '/dev/null/inferredProject1*' (Inferred) +Info 168 [00:05:49.000] Files (2) + +Info 168 [00:05:50.000] ----------------------------------------------- +Info 168 [00:05:51.000] Open files: +Info 168 [00:05:52.000] FileName: /dummy/dummy.ts ProjectRootPath: undefined +Info 168 [00:05:53.000] Projects: /dev/null/inferredProject1* +Info 168 [00:05:54.000] FileWatcher:: Added:: WatchInfo: /dummy/dummy.ts 500 undefined WatchType: Closed Script info +Info 169 [00:05:55.000] Project '/user/username/projects/myproject/tsconfig.json' (Configured) +Info 169 [00:05:56.000] Files (0) + +Info 169 [00:05:57.000] ----------------------------------------------- +Info 169 [00:05:58.000] Project '/user/username/projects/myproject/tsconfig-src.json' (Configured) +Info 169 [00:05:59.000] Files (3) + +Info 169 [00:06:00.000] ----------------------------------------------- +Info 169 [00:06:01.000] Project '/dev/null/inferredProject1*' (Inferred) +Info 169 [00:06:02.000] Files (2) + +Info 169 [00:06:03.000] ----------------------------------------------- +Info 169 [00:06:04.000] Open files: +Info 169 [00:06:05.000] Search path: /user/username/projects/myproject/indirect3 +Info 170 [00:06:06.000] For info: /user/username/projects/myproject/indirect3/main.ts :: Config file name: /user/username/projects/myproject/indirect3/tsconfig.json +Info 171 [00:06:07.000] Creating configuration project /user/username/projects/myproject/indirect3/tsconfig.json +Info 172 [00:06:08.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/indirect3/tsconfig.json 2000 undefined Project: /user/username/projects/myproject/indirect3/tsconfig.json WatchType: Config file +Info 173 [00:06:09.000] event: {"seq":0,"type":"event","event":"projectLoadingStart","body":{"projectName":"/user/username/projects/myproject/indirect3/tsconfig.json","reason":"Creating possible configured project for /user/username/projects/myproject/indirect3/main.ts to open"}} -Info 174 [16:06:10.000] Config: /user/username/projects/myproject/indirect3/tsconfig.json : { +Info 174 [00:06:10.000] Config: /user/username/projects/myproject/indirect3/tsconfig.json : { "rootNames": [ "/user/username/projects/myproject/indirect3/main.ts" ], @@ -875,20 +875,20 @@ Info 174 [16:06:10.000] Config: /user/username/projects/myproject/indirect3/tsc "configFilePath": "/user/username/projects/myproject/indirect3/tsconfig.json" } } -Info 175 [16:06:11.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/indirect3 1 undefined Config: /user/username/projects/myproject/indirect3/tsconfig.json WatchType: Wild card directory -Info 176 [16:06:12.000] 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 177 [16:06:13.000] Plugins were requested but not running in environment that supports 'require'. Nothing will be loaded -Info 178 [16:06:14.000] Starting updateGraphWorker: Project: /user/username/projects/myproject/indirect3/tsconfig.json -Info 179 [16:06:15.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/target/src/main.d.ts 500 undefined WatchType: Closed Script info -Info 180 [16:06:16.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/target 1 undefined Project: /user/username/projects/myproject/indirect3/tsconfig.json WatchType: Failed Lookup Locations -Info 181 [16:06:17.000] 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 182 [16:06:18.000] 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 183 [16:06:19.000] 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 184 [16:06:20.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/indirect3/tsconfig.json WatchType: Type roots -Info 185 [16:06:21.000] 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 186 [16:06:22.000] Finishing updateGraphWorker: Project: /user/username/projects/myproject/indirect3/tsconfig.json Version: 1 structureChanged: true structureIsReused:: Not Elapsed:: *ms -Info 187 [16:06:23.000] Project '/user/username/projects/myproject/indirect3/tsconfig.json' (Configured) -Info 188 [16:06:24.000] Files (4) +Info 175 [00:06:11.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/indirect3 1 undefined Config: /user/username/projects/myproject/indirect3/tsconfig.json WatchType: Wild card directory +Info 176 [00:06:12.000] 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 177 [00:06:13.000] Plugins were requested but not running in environment that supports 'require'. Nothing will be loaded +Info 178 [00:06:14.000] Starting updateGraphWorker: Project: /user/username/projects/myproject/indirect3/tsconfig.json +Info 179 [00:06:15.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/target/src/main.d.ts 500 undefined WatchType: Closed Script info +Info 180 [00:06:16.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/target 1 undefined Project: /user/username/projects/myproject/indirect3/tsconfig.json WatchType: Failed Lookup Locations +Info 181 [00:06:17.000] 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 182 [00:06:18.000] 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 183 [00:06:19.000] 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 184 [00:06:20.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/indirect3/tsconfig.json WatchType: Type roots +Info 185 [00:06:21.000] 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 186 [00:06:22.000] Finishing updateGraphWorker: Project: /user/username/projects/myproject/indirect3/tsconfig.json Version: 1 structureChanged: true structureIsReused:: Not Elapsed:: *ms +Info 187 [00:06:23.000] Project '/user/username/projects/myproject/indirect3/tsconfig.json' (Configured) +Info 188 [00:06:24.000] Files (4) /a/lib/lib.d.ts /user/username/projects/myproject/target/src/helpers/functions.d.ts /user/username/projects/myproject/target/src/main.d.ts @@ -904,26 +904,26 @@ Info 188 [16:06:24.000] Files (4) main.ts Matched by default include pattern '**/*' -Info 189 [16:06:25.000] ----------------------------------------------- -Info 190 [16:06:26.000] event: +Info 189 [00:06:25.000] ----------------------------------------------- +Info 190 [00:06:26.000] event: {"seq":0,"type":"event","event":"projectLoadingFinish","body":{"projectName":"/user/username/projects/myproject/indirect3/tsconfig.json"}} -Info 191 [16:06:27.000] event: +Info 191 [00:06:27.000] event: {"seq":0,"type":"event","event":"telemetry","body":{"telemetryEventName":"projectInfo","payload":{"projectId":"5b0817f69b6871821661b976aa73f4f2533b37c5f4b920541094c2d727d0dc39","fileStats":{"js":0,"jsSize":0,"jsx":0,"jsxSize":0,"ts":1,"tsSize":57,"tsx":0,"tsxSize":0,"dts":3,"dtsSize":494,"deferred":0,"deferredSize":0},"compilerOptions":{"baseUrl":""},"typeAcquisition":{"enable":false,"include":false,"exclude":false},"extends":false,"files":false,"include":false,"exclude":false,"compileOnSave":false,"configFileName":"tsconfig.json","projectType":"configured","languageServiceEnabled":true,"version":"FakeVersion"}}} -Info 192 [16:06:28.000] event: +Info 192 [00:06:28.000] event: {"seq":0,"type":"event","event":"configFileDiag","body":{"triggerFile":"/user/username/projects/myproject/indirect3/main.ts","configFile":"/user/username/projects/myproject/indirect3/tsconfig.json","diagnostics":[]}} -Info 193 [16:06:29.000] `remove Project:: -Info 194 [16:06:30.000] Project '/user/username/projects/myproject/tsconfig.json' (Configured) -Info 195 [16:06:31.000] Files (0) +Info 193 [00:06:29.000] `remove Project:: +Info 194 [00:06:30.000] Project '/user/username/projects/myproject/tsconfig.json' (Configured) +Info 195 [00:06:31.000] Files (0) -Info 196 [16:06:32.000] ----------------------------------------------- -Info 197 [16:06:33.000] FileWatcher:: Close:: WatchInfo: /user/username/projects/myproject/tsconfig.json 2000 undefined Project: /user/username/projects/myproject/tsconfig.json WatchType: Config file -Info 198 [16:06:34.000] DirectoryWatcher:: Close:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/tsconfig.json WatchType: Type roots -Info 199 [16:06:35.000] 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 200 [16:06:36.000] `remove Project:: -Info 201 [16:06:37.000] Project '/user/username/projects/myproject/tsconfig-src.json' (Configured) -Info 202 [16:06:38.000] Files (3) +Info 196 [00:06:32.000] ----------------------------------------------- +Info 197 [00:06:33.000] FileWatcher:: Close:: WatchInfo: /user/username/projects/myproject/tsconfig.json 2000 undefined Project: /user/username/projects/myproject/tsconfig.json WatchType: Config file +Info 198 [00:06:34.000] DirectoryWatcher:: Close:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/tsconfig.json WatchType: Type roots +Info 199 [00:06:35.000] 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 200 [00:06:36.000] `remove Project:: +Info 201 [00:06:37.000] Project '/user/username/projects/myproject/tsconfig-src.json' (Configured) +Info 202 [00:06:38.000] Files (3) /a/lib/lib.d.ts /user/username/projects/myproject/src/helpers/functions.ts /user/username/projects/myproject/src/main.ts @@ -937,15 +937,15 @@ Info 202 [16:06:38.000] Files (3) src/main.ts Matched by include pattern './src/**/*' in 'tsconfig-src.json' -Info 203 [16:06:39.000] ----------------------------------------------- -Info 204 [16:06:40.000] DirectoryWatcher:: Close:: WatchInfo: /user/username/projects/myproject/src 1 undefined Config: /user/username/projects/myproject/tsconfig-src.json WatchType: Wild card directory -Info 205 [16:06:41.000] 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 206 [16:06:42.000] FileWatcher:: Close:: WatchInfo: /user/username/projects/myproject/tsconfig-src.json 2000 undefined Project: /user/username/projects/myproject/tsconfig.json WatchType: Config file -Info 207 [16:06:43.000] DirectoryWatcher:: Close:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/tsconfig-src.json WatchType: Type roots -Info 208 [16:06:44.000] 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 209 [16:06:45.000] `remove Project:: -Info 210 [16:06:46.000] Project '/dev/null/inferredProject1*' (Inferred) -Info 211 [16:06:47.000] Files (2) +Info 203 [00:06:39.000] ----------------------------------------------- +Info 204 [00:06:40.000] DirectoryWatcher:: Close:: WatchInfo: /user/username/projects/myproject/src 1 undefined Config: /user/username/projects/myproject/tsconfig-src.json WatchType: Wild card directory +Info 205 [00:06:41.000] 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 206 [00:06:42.000] FileWatcher:: Close:: WatchInfo: /user/username/projects/myproject/tsconfig-src.json 2000 undefined Project: /user/username/projects/myproject/tsconfig.json WatchType: Config file +Info 207 [00:06:43.000] DirectoryWatcher:: Close:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/tsconfig-src.json WatchType: Type roots +Info 208 [00:06:44.000] 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 209 [00:06:45.000] `remove Project:: +Info 210 [00:06:46.000] Project '/dev/null/inferredProject1*' (Inferred) +Info 211 [00:06:47.000] Files (2) /a/lib/lib.d.ts /dummy/dummy.ts @@ -955,19 +955,19 @@ Info 211 [16:06:47.000] Files (2) dummy.ts Root file specified for compilation -Info 212 [16:06:48.000] ----------------------------------------------- -Info 213 [16:06:49.000] DirectoryWatcher:: Close:: WatchInfo: /dummy/node_modules/@types 1 undefined Project: /dev/null/inferredProject1* WatchType: Type roots -Info 214 [16:06:50.000] Elapsed:: *ms DirectoryWatcher:: Close:: WatchInfo: /dummy/node_modules/@types 1 undefined Project: /dev/null/inferredProject1* WatchType: Type roots -Info 215 [16:06:51.000] FileWatcher:: Close:: WatchInfo: /dummy/dummy.ts 500 undefined WatchType: Closed Script info -Info 216 [16:06:52.000] FileWatcher:: Close:: WatchInfo: /user/username/projects/myproject/src/main.ts 500 undefined WatchType: Closed Script info -Info 217 [16:06:53.000] Project '/user/username/projects/myproject/indirect3/tsconfig.json' (Configured) -Info 217 [16:06:54.000] Files (4) - -Info 217 [16:06:55.000] ----------------------------------------------- -Info 217 [16:06:56.000] Open files: -Info 217 [16:06:57.000] FileName: /user/username/projects/myproject/indirect3/main.ts ProjectRootPath: undefined -Info 217 [16:06:58.000] Projects: /user/username/projects/myproject/indirect3/tsconfig.json -Info 217 [16:06:59.000] request: +Info 212 [00:06:48.000] ----------------------------------------------- +Info 213 [00:06:49.000] DirectoryWatcher:: Close:: WatchInfo: /dummy/node_modules/@types 1 undefined Project: /dev/null/inferredProject1* WatchType: Type roots +Info 214 [00:06:50.000] Elapsed:: *ms DirectoryWatcher:: Close:: WatchInfo: /dummy/node_modules/@types 1 undefined Project: /dev/null/inferredProject1* WatchType: Type roots +Info 215 [00:06:51.000] FileWatcher:: Close:: WatchInfo: /dummy/dummy.ts 500 undefined WatchType: Closed Script info +Info 216 [00:06:52.000] FileWatcher:: Close:: WatchInfo: /user/username/projects/myproject/src/main.ts 500 undefined WatchType: Closed Script info +Info 217 [00:06:53.000] Project '/user/username/projects/myproject/indirect3/tsconfig.json' (Configured) +Info 217 [00:06:54.000] Files (4) + +Info 217 [00:06:55.000] ----------------------------------------------- +Info 217 [00:06:56.000] Open files: +Info 217 [00:06:57.000] FileName: /user/username/projects/myproject/indirect3/main.ts ProjectRootPath: undefined +Info 217 [00:06:58.000] Projects: /user/username/projects/myproject/indirect3/tsconfig.json +Info 217 [00:06:59.000] request: { "command": "references", "arguments": { @@ -1006,16 +1006,16 @@ FsWatchesRecursive:: /user/username/projects/myproject/target: {} -Info 218 [16:07:00.000] Finding references to /user/username/projects/myproject/indirect3/main.ts position 9 in project /user/username/projects/myproject/indirect3/tsconfig.json -Info 219 [16:07:01.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/target/src/main.d.ts.map 500 undefined WatchType: Closed Script info -Info 220 [16:07:02.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/src/main.ts 500 undefined WatchType: Closed Script info -Info 221 [16:07:03.000] Search path: /user/username/projects/myproject/src -Info 222 [16:07:04.000] For info: /user/username/projects/myproject/src/main.ts :: Config file name: /user/username/projects/myproject/tsconfig.json -Info 223 [16:07:05.000] Creating configuration project /user/username/projects/myproject/tsconfig.json -Info 224 [16:07:06.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/tsconfig.json 2000 undefined Project: /user/username/projects/myproject/tsconfig.json WatchType: Config file -Info 225 [16:07:07.000] event: +Info 218 [00:07:00.000] Finding references to /user/username/projects/myproject/indirect3/main.ts position 9 in project /user/username/projects/myproject/indirect3/tsconfig.json +Info 219 [00:07:01.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/target/src/main.d.ts.map 500 undefined WatchType: Closed Script info +Info 220 [00:07:02.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/src/main.ts 500 undefined WatchType: Closed Script info +Info 221 [00:07:03.000] Search path: /user/username/projects/myproject/src +Info 222 [00:07:04.000] For info: /user/username/projects/myproject/src/main.ts :: Config file name: /user/username/projects/myproject/tsconfig.json +Info 223 [00:07:05.000] Creating configuration project /user/username/projects/myproject/tsconfig.json +Info 224 [00:07:06.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/tsconfig.json 2000 undefined Project: /user/username/projects/myproject/tsconfig.json WatchType: Config file +Info 225 [00:07:07.000] event: {"seq":0,"type":"event","event":"projectLoadingStart","body":{"projectName":"/user/username/projects/myproject/tsconfig.json","reason":"Creating project for original file: /user/username/projects/myproject/src/main.ts for location: /user/username/projects/myproject/target/src/main.d.ts"}} -Info 226 [16:07:08.000] Config: /user/username/projects/myproject/tsconfig.json : { +Info 226 [00:07:08.000] Config: /user/username/projects/myproject/tsconfig.json : { "rootNames": [], "options": { "configFilePath": "/user/username/projects/myproject/tsconfig.json" @@ -1027,9 +1027,9 @@ Info 226 [16:07:08.000] Config: /user/username/projects/myproject/tsconfig.json } ] } -Info 227 [16:07:09.000] Plugins were requested but not running in environment that supports 'require'. Nothing will be loaded -Info 228 [16:07:10.000] Starting updateGraphWorker: Project: /user/username/projects/myproject/tsconfig.json -Info 229 [16:07:11.000] Config: /user/username/projects/myproject/tsconfig-src.json : { +Info 227 [00:07:09.000] Plugins were requested but not running in environment that supports 'require'. Nothing will be loaded +Info 228 [00:07:10.000] Starting updateGraphWorker: Project: /user/username/projects/myproject/tsconfig.json +Info 229 [00:07:11.000] Config: /user/username/projects/myproject/tsconfig-src.json : { "rootNames": [ "/user/username/projects/myproject/src/main.ts", "/user/username/projects/myproject/src/helpers/functions.ts" @@ -1041,25 +1041,25 @@ Info 229 [16:07:11.000] Config: /user/username/projects/myproject/tsconfig-src. "configFilePath": "/user/username/projects/myproject/tsconfig-src.json" } } -Info 230 [16:07:12.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/tsconfig-src.json 2000 undefined Project: /user/username/projects/myproject/tsconfig.json WatchType: Config file -Info 231 [16:07:13.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/src 1 undefined Config: /user/username/projects/myproject/tsconfig-src.json WatchType: Wild card directory -Info 232 [16:07:14.000] 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 233 [16:07:15.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/tsconfig.json WatchType: Type roots -Info 234 [16:07:16.000] 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 235 [16:07:17.000] Finishing updateGraphWorker: Project: /user/username/projects/myproject/tsconfig.json Version: 1 structureChanged: true structureIsReused:: Not Elapsed:: *ms -Info 236 [16:07:18.000] Different program with same set of files -Info 237 [16:07:19.000] event: +Info 230 [00:07:12.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/tsconfig-src.json 2000 undefined Project: /user/username/projects/myproject/tsconfig.json WatchType: Config file +Info 231 [00:07:13.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/src 1 undefined Config: /user/username/projects/myproject/tsconfig-src.json WatchType: Wild card directory +Info 232 [00:07:14.000] 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 233 [00:07:15.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/tsconfig.json WatchType: Type roots +Info 234 [00:07:16.000] 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 235 [00:07:17.000] Finishing updateGraphWorker: Project: /user/username/projects/myproject/tsconfig.json Version: 1 structureChanged: true structureIsReused:: Not Elapsed:: *ms +Info 236 [00:07:18.000] Different program with same set of files +Info 237 [00:07:19.000] event: {"seq":0,"type":"event","event":"projectLoadingFinish","body":{"projectName":"/user/username/projects/myproject/tsconfig.json"}} -Info 238 [16:07:20.000] Creating configuration project /user/username/projects/myproject/tsconfig-src.json -Info 239 [16:07:21.000] event: +Info 238 [00:07:20.000] Creating configuration project /user/username/projects/myproject/tsconfig-src.json +Info 239 [00:07:21.000] event: {"seq":0,"type":"event","event":"projectLoadingStart","body":{"projectName":"/user/username/projects/myproject/tsconfig-src.json","reason":"Creating project referenced in solution /user/username/projects/myproject/tsconfig.json to find possible configured project for original file: /user/username/projects/myproject/src/main.ts for location: /user/username/projects/myproject/target/src/main.d.ts"}} -Info 240 [16:07:22.000] Plugins were requested but not running in environment that supports 'require'. Nothing will be loaded -Info 241 [16:07:23.000] Starting updateGraphWorker: Project: /user/username/projects/myproject/tsconfig-src.json -Info 242 [16:07:24.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/tsconfig-src.json WatchType: Type roots -Info 243 [16:07:25.000] 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 244 [16:07:26.000] Finishing updateGraphWorker: Project: /user/username/projects/myproject/tsconfig-src.json Version: 1 structureChanged: true structureIsReused:: Not Elapsed:: *ms -Info 245 [16:07:27.000] Project '/user/username/projects/myproject/tsconfig-src.json' (Configured) -Info 246 [16:07:28.000] Files (3) +Info 240 [00:07:22.000] Plugins were requested but not running in environment that supports 'require'. Nothing will be loaded +Info 241 [00:07:23.000] Starting updateGraphWorker: Project: /user/username/projects/myproject/tsconfig-src.json +Info 242 [00:07:24.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/tsconfig-src.json WatchType: Type roots +Info 243 [00:07:25.000] 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 244 [00:07:26.000] Finishing updateGraphWorker: Project: /user/username/projects/myproject/tsconfig-src.json Version: 1 structureChanged: true structureIsReused:: Not Elapsed:: *ms +Info 245 [00:07:27.000] Project '/user/username/projects/myproject/tsconfig-src.json' (Configured) +Info 246 [00:07:28.000] Files (3) /a/lib/lib.d.ts /user/username/projects/myproject/src/helpers/functions.ts /user/username/projects/myproject/src/main.ts @@ -1073,18 +1073,18 @@ Info 246 [16:07:28.000] Files (3) src/main.ts Matched by include pattern './src/**/*' in 'tsconfig-src.json' -Info 247 [16:07:29.000] ----------------------------------------------- -Info 248 [16:07:30.000] event: +Info 247 [00:07:29.000] ----------------------------------------------- +Info 248 [00:07:30.000] event: {"seq":0,"type":"event","event":"projectLoadingFinish","body":{"projectName":"/user/username/projects/myproject/tsconfig-src.json"}} -Info 249 [16:07:31.000] Search path: /user/username/projects/myproject/src -Info 250 [16:07:32.000] For info: /user/username/projects/myproject/src/main.ts :: Config file name: /user/username/projects/myproject/tsconfig.json -Info 251 [16:07:33.000] Search path: /user/username/projects/myproject/src -Info 252 [16:07:34.000] For info: /user/username/projects/myproject/src/main.ts :: Config file name: /user/username/projects/myproject/tsconfig.json -Info 253 [16:07:35.000] Search path: /user/username/projects/myproject/src/helpers -Info 254 [16:07:36.000] For info: /user/username/projects/myproject/src/helpers/functions.ts :: Config file name: /user/username/projects/myproject/tsconfig.json -Info 255 [16:07:37.000] Search path: /user/username/projects/myproject/src/helpers -Info 256 [16:07:38.000] For info: /user/username/projects/myproject/src/helpers/functions.ts :: Config file name: /user/username/projects/myproject/tsconfig.json -Info 257 [16:07:39.000] Finding references to /user/username/projects/myproject/src/main.ts position 9 in project /user/username/projects/myproject/tsconfig-src.json +Info 249 [00:07:31.000] Search path: /user/username/projects/myproject/src +Info 250 [00:07:32.000] For info: /user/username/projects/myproject/src/main.ts :: Config file name: /user/username/projects/myproject/tsconfig.json +Info 251 [00:07:33.000] Search path: /user/username/projects/myproject/src +Info 252 [00:07:34.000] For info: /user/username/projects/myproject/src/main.ts :: Config file name: /user/username/projects/myproject/tsconfig.json +Info 253 [00:07:35.000] Search path: /user/username/projects/myproject/src/helpers +Info 254 [00:07:36.000] For info: /user/username/projects/myproject/src/helpers/functions.ts :: Config file name: /user/username/projects/myproject/tsconfig.json +Info 255 [00:07:37.000] Search path: /user/username/projects/myproject/src/helpers +Info 256 [00:07:38.000] For info: /user/username/projects/myproject/src/helpers/functions.ts :: Config file name: /user/username/projects/myproject/tsconfig.json +Info 257 [00:07:39.000] Finding references to /user/username/projects/myproject/src/main.ts position 9 in project /user/username/projects/myproject/tsconfig-src.json After request PolledWatches:: @@ -1123,7 +1123,7 @@ FsWatchesRecursive:: /user/username/projects/myproject/src: {} -Info 258 [16:07:40.000] response: +Info 258 [00:07:40.000] response: { "response": { "refs": [ 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 c69dfd15bd11a..cfa0db7195982 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 @@ -1,11 +1,11 @@ -Info 0 [16:01:05.000] Provided types map file "/a/lib/typesMap.json" doesn't exist -Info 1 [16:01:06.000] Search path: /user/username/projects/myproject/src -Info 2 [16:01:07.000] For info: /user/username/projects/myproject/src/main.ts :: Config file name: /user/username/projects/myproject/tsconfig.json -Info 3 [16:01:08.000] Creating configuration project /user/username/projects/myproject/tsconfig.json -Info 4 [16:01:09.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/tsconfig.json 2000 undefined Project: /user/username/projects/myproject/tsconfig.json WatchType: Config file -Info 5 [16:01:10.000] event: +Info 0 [00:01:05.000] Provided types map file "/a/lib/typesMap.json" doesn't exist +Info 1 [00:01:06.000] Search path: /user/username/projects/myproject/src +Info 2 [00:01:07.000] For info: /user/username/projects/myproject/src/main.ts :: Config file name: /user/username/projects/myproject/tsconfig.json +Info 3 [00:01:08.000] Creating configuration project /user/username/projects/myproject/tsconfig.json +Info 4 [00:01:09.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/tsconfig.json 2000 undefined Project: /user/username/projects/myproject/tsconfig.json WatchType: Config file +Info 5 [00:01:10.000] event: {"seq":0,"type":"event","event":"projectLoadingStart","body":{"projectName":"/user/username/projects/myproject/tsconfig.json","reason":"Creating possible configured project for /user/username/projects/myproject/src/main.ts to open"}} -Info 6 [16:01:11.000] Config: /user/username/projects/myproject/tsconfig.json : { +Info 6 [00:01:11.000] Config: /user/username/projects/myproject/tsconfig.json : { "rootNames": [], "options": { "configFilePath": "/user/username/projects/myproject/tsconfig.json" @@ -21,9 +21,9 @@ Info 6 [16:01:11.000] Config: /user/username/projects/myproject/tsconfig.json } ] } -Info 7 [16:01:12.000] Plugins were requested but not running in environment that supports 'require'. Nothing will be loaded -Info 8 [16:01:13.000] Starting updateGraphWorker: Project: /user/username/projects/myproject/tsconfig.json -Info 9 [16:01:14.000] Config: /user/username/projects/myproject/tsconfig-indirect1.json : { +Info 7 [00:01:12.000] Plugins were requested but not running in environment that supports 'require'. Nothing will be loaded +Info 8 [00:01:13.000] Starting updateGraphWorker: Project: /user/username/projects/myproject/tsconfig.json +Info 9 [00:01:14.000] Config: /user/username/projects/myproject/tsconfig-indirect1.json : { "rootNames": [ "/user/username/projects/myproject/indirect1/main.ts" ], @@ -40,8 +40,8 @@ Info 9 [16:01:14.000] Config: /user/username/projects/myproject/tsconfig-indi } ] } -Info 10 [16:01:15.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/tsconfig-indirect1.json 2000 undefined Project: /user/username/projects/myproject/tsconfig.json WatchType: Config file -Info 11 [16:01:16.000] Config: /user/username/projects/myproject/tsconfig-src.json : { +Info 10 [00:01:15.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/tsconfig-indirect1.json 2000 undefined Project: /user/username/projects/myproject/tsconfig.json WatchType: Config file +Info 11 [00:01:16.000] Config: /user/username/projects/myproject/tsconfig-src.json : { "rootNames": [ "/user/username/projects/myproject/src/main.ts", "/user/username/projects/myproject/src/helpers/functions.ts" @@ -53,10 +53,10 @@ Info 11 [16:01:16.000] Config: /user/username/projects/myproject/tsconfig-src. "configFilePath": "/user/username/projects/myproject/tsconfig-src.json" } } -Info 12 [16:01:17.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/tsconfig-src.json 2000 undefined Project: /user/username/projects/myproject/tsconfig.json WatchType: Config file -Info 13 [16:01:18.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/src 1 undefined Config: /user/username/projects/myproject/tsconfig-src.json WatchType: Wild card directory -Info 14 [16:01:19.000] 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 15 [16:01:20.000] Config: /user/username/projects/myproject/tsconfig-indirect2.json : { +Info 12 [00:01:17.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/tsconfig-src.json 2000 undefined Project: /user/username/projects/myproject/tsconfig.json WatchType: Config file +Info 13 [00:01:18.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/src 1 undefined Config: /user/username/projects/myproject/tsconfig-src.json WatchType: Wild card directory +Info 14 [00:01:19.000] 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 15 [00:01:20.000] Config: /user/username/projects/myproject/tsconfig-indirect2.json : { "rootNames": [ "/user/username/projects/myproject/indirect2/main.ts" ], @@ -73,27 +73,27 @@ Info 15 [16:01:20.000] Config: /user/username/projects/myproject/tsconfig-indi } ] } -Info 16 [16:01:21.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/tsconfig-indirect2.json 2000 undefined Project: /user/username/projects/myproject/tsconfig.json WatchType: Config file -Info 17 [16:01:22.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/tsconfig.json WatchType: Type roots -Info 18 [16:01:23.000] 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 19 [16:01:24.000] Finishing updateGraphWorker: Project: /user/username/projects/myproject/tsconfig.json Version: 1 structureChanged: true structureIsReused:: Not Elapsed:: *ms -Info 20 [16:01:25.000] Different program with same set of files -Info 21 [16:01:26.000] event: +Info 16 [00:01:21.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/tsconfig-indirect2.json 2000 undefined Project: /user/username/projects/myproject/tsconfig.json WatchType: Config file +Info 17 [00:01:22.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/tsconfig.json WatchType: Type roots +Info 18 [00:01:23.000] 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 19 [00:01:24.000] Finishing updateGraphWorker: Project: /user/username/projects/myproject/tsconfig.json Version: 1 structureChanged: true structureIsReused:: Not Elapsed:: *ms +Info 20 [00:01:25.000] Different program with same set of files +Info 21 [00:01:26.000] event: {"seq":0,"type":"event","event":"projectLoadingFinish","body":{"projectName":"/user/username/projects/myproject/tsconfig.json"}} -Info 22 [16:01:27.000] event: +Info 22 [00:01:27.000] event: {"seq":0,"type":"event","event":"telemetry","body":{"telemetryEventName":"projectInfo","payload":{"projectId":"4a33d78ee40d836c4f4e64c59aed976628aea0013be9585c5ff171dfc41baf98","fileStats":{"js":0,"jsSize":0,"jsx":0,"jsxSize":0,"ts":0,"tsSize":0,"tsx":0,"tsxSize":0,"dts":0,"dtsSize":0,"deferred":0,"deferredSize":0},"compilerOptions":{},"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 23 [16:01:28.000] Creating configuration project /user/username/projects/myproject/tsconfig-src.json -Info 24 [16:01:29.000] event: +Info 23 [00:01:28.000] Creating configuration project /user/username/projects/myproject/tsconfig-src.json +Info 24 [00:01:29.000] event: {"seq":0,"type":"event","event":"projectLoadingStart","body":{"projectName":"/user/username/projects/myproject/tsconfig-src.json","reason":"Creating project referenced in solution /user/username/projects/myproject/tsconfig.json to find possible configured project for /user/username/projects/myproject/src/main.ts to open"}} -Info 25 [16:01:30.000] Plugins were requested but not running in environment that supports 'require'. Nothing will be loaded -Info 26 [16:01:31.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/src/helpers/functions.ts 500 undefined WatchType: Closed Script info -Info 27 [16:01:32.000] Starting updateGraphWorker: Project: /user/username/projects/myproject/tsconfig-src.json -Info 28 [16:01:33.000] FileWatcher:: Added:: WatchInfo: /a/lib/lib.d.ts 500 undefined WatchType: Closed Script info -Info 29 [16:01:34.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/tsconfig-src.json WatchType: Type roots -Info 30 [16:01:35.000] 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 31 [16:01:36.000] Finishing updateGraphWorker: Project: /user/username/projects/myproject/tsconfig-src.json Version: 1 structureChanged: true structureIsReused:: Not Elapsed:: *ms -Info 32 [16:01:37.000] Project '/user/username/projects/myproject/tsconfig-src.json' (Configured) -Info 33 [16:01:38.000] Files (3) +Info 25 [00:01:30.000] Plugins were requested but not running in environment that supports 'require'. Nothing will be loaded +Info 26 [00:01:31.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/src/helpers/functions.ts 500 undefined WatchType: Closed Script info +Info 27 [00:01:32.000] Starting updateGraphWorker: Project: /user/username/projects/myproject/tsconfig-src.json +Info 28 [00:01:33.000] FileWatcher:: Added:: WatchInfo: /a/lib/lib.d.ts 500 undefined WatchType: Closed Script info +Info 29 [00:01:34.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/tsconfig-src.json WatchType: Type roots +Info 30 [00:01:35.000] 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 31 [00:01:36.000] Finishing updateGraphWorker: Project: /user/username/projects/myproject/tsconfig-src.json Version: 1 structureChanged: true structureIsReused:: Not Elapsed:: *ms +Info 32 [00:01:37.000] Project '/user/username/projects/myproject/tsconfig-src.json' (Configured) +Info 33 [00:01:38.000] Files (3) /a/lib/lib.d.ts /user/username/projects/myproject/src/helpers/functions.ts /user/username/projects/myproject/src/main.ts @@ -107,27 +107,27 @@ Info 33 [16:01:38.000] Files (3) src/main.ts Matched by include pattern './src/**/*' in 'tsconfig-src.json' -Info 34 [16:01:39.000] ----------------------------------------------- -Info 35 [16:01:40.000] event: +Info 34 [00:01:39.000] ----------------------------------------------- +Info 35 [00:01:40.000] event: {"seq":0,"type":"event","event":"projectLoadingFinish","body":{"projectName":"/user/username/projects/myproject/tsconfig-src.json"}} -Info 36 [16:01:41.000] event: +Info 36 [00:01:41.000] event: {"seq":0,"type":"event","event":"telemetry","body":{"telemetryEventName":"projectInfo","payload":{"projectId":"75d5ba36c0a162a329bf40235b10e96d2d129b95469e1f02c08da775fb38a2b4","fileStats":{"js":0,"jsSize":0,"jsx":0,"jsxSize":0,"ts":2,"tsSize":77,"tsx":0,"tsxSize":0,"dts":1,"dtsSize":334,"deferred":0,"deferredSize":0},"compilerOptions":{"composite":true,"outDir":"","baseUrl":""},"typeAcquisition":{"enable":false,"include":false,"exclude":false},"extends":false,"files":false,"include":true,"exclude":false,"compileOnSave":false,"configFileName":"other","projectType":"configured","languageServiceEnabled":true,"version":"FakeVersion"}}} -Info 37 [16:01:42.000] event: +Info 37 [00:01:42.000] event: {"seq":0,"type":"event","event":"configFileDiag","body":{"triggerFile":"/user/username/projects/myproject/src/main.ts","configFile":"/user/username/projects/myproject/tsconfig-src.json","diagnostics":[]}} -Info 38 [16:01:43.000] Project '/user/username/projects/myproject/tsconfig.json' (Configured) -Info 38 [16:01:44.000] Files (0) - -Info 38 [16:01:45.000] ----------------------------------------------- -Info 38 [16:01:46.000] Project '/user/username/projects/myproject/tsconfig-src.json' (Configured) -Info 38 [16:01:47.000] Files (3) - -Info 38 [16:01:48.000] ----------------------------------------------- -Info 38 [16:01:49.000] Open files: -Info 38 [16:01:50.000] FileName: /user/username/projects/myproject/src/main.ts ProjectRootPath: undefined -Info 38 [16:01:51.000] Projects: /user/username/projects/myproject/tsconfig-src.json -Info 38 [16:01:52.000] getDefaultProject for /user/username/projects/myproject/src/main.ts: /user/username/projects/myproject/tsconfig-src.json -Info 38 [16:01:53.000] findDefaultConfiguredProject for /user/username/projects/myproject/src/main.ts: /user/username/projects/myproject/tsconfig-src.json -Info 38 [16:01:54.000] request: +Info 38 [00:01:43.000] Project '/user/username/projects/myproject/tsconfig.json' (Configured) +Info 38 [00:01:44.000] Files (0) + +Info 38 [00:01:45.000] ----------------------------------------------- +Info 38 [00:01:46.000] Project '/user/username/projects/myproject/tsconfig-src.json' (Configured) +Info 38 [00:01:47.000] Files (3) + +Info 38 [00:01:48.000] ----------------------------------------------- +Info 38 [00:01:49.000] Open files: +Info 38 [00:01:50.000] FileName: /user/username/projects/myproject/src/main.ts ProjectRootPath: undefined +Info 38 [00:01:51.000] Projects: /user/username/projects/myproject/tsconfig-src.json +Info 38 [00:01:52.000] getDefaultProject for /user/username/projects/myproject/src/main.ts: /user/username/projects/myproject/tsconfig-src.json +Info 38 [00:01:53.000] findDefaultConfiguredProject for /user/username/projects/myproject/src/main.ts: /user/username/projects/myproject/tsconfig-src.json +Info 38 [00:01:54.000] request: { "command": "geterr", "arguments": { @@ -255,7 +255,7 @@ FsWatchesRecursive:: /user/username/projects/myproject/src: {} -Info 39 [16:01:55.000] response: +Info 39 [00:01:55.000] response: { "responseRequired": false } @@ -283,7 +283,7 @@ FsWatchesRecursive:: /user/username/projects/myproject/src: {} -Info 40 [16:01:56.000] event: +Info 40 [00:01:56.000] event: {"seq":0,"type":"event","event":"syntaxDiag","body":{"file":"/user/username/projects/myproject/src/main.ts","diagnostics":[]}} After checking timeout queue length (1) and running @@ -333,7 +333,7 @@ FsWatchesRecursive:: /user/username/projects/myproject/src: {} -Info 41 [16:01:57.000] event: +Info 41 [00:01:57.000] event: {"seq":0,"type":"event","event":"semanticDiag","body":{"file":"/user/username/projects/myproject/src/main.ts","diagnostics":[]}} Before running immediate callbacks and checking length (1) @@ -383,9 +383,9 @@ FsWatchesRecursive:: /user/username/projects/myproject/src: {} -Info 42 [16:01:58.000] event: +Info 42 [00:01:58.000] event: {"seq":0,"type":"event","event":"suggestionDiag","body":{"file":"/user/username/projects/myproject/src/main.ts","diagnostics":[]}} -Info 43 [16:01:59.000] event: +Info 43 [00:01:59.000] event: {"seq":0,"type":"event","event":"requestCompleted","body":{"request_seq":1}} Before running immediate callbacks and checking length (1) @@ -411,15 +411,15 @@ FsWatchesRecursive:: /user/username/projects/myproject/src: {} -Info 44 [16:02:00.000] Search path: /dummy -Info 45 [16:02:01.000] For info: /dummy/dummy.ts :: No config files found. -Info 46 [16:02:02.000] Plugins were requested but not running in environment that supports 'require'. Nothing will be loaded -Info 47 [16:02:03.000] Starting updateGraphWorker: Project: /dev/null/inferredProject1* -Info 48 [16:02:04.000] DirectoryWatcher:: Added:: WatchInfo: /dummy/node_modules/@types 1 undefined Project: /dev/null/inferredProject1* WatchType: Type roots -Info 49 [16:02:05.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /dummy/node_modules/@types 1 undefined Project: /dev/null/inferredProject1* WatchType: Type roots -Info 50 [16:02:06.000] Finishing updateGraphWorker: Project: /dev/null/inferredProject1* Version: 1 structureChanged: true structureIsReused:: Not Elapsed:: *ms -Info 51 [16:02:07.000] Project '/dev/null/inferredProject1*' (Inferred) -Info 52 [16:02:08.000] Files (2) +Info 44 [00:02:00.000] Search path: /dummy +Info 45 [00:02:01.000] For info: /dummy/dummy.ts :: No config files found. +Info 46 [00:02:02.000] Plugins were requested but not running in environment that supports 'require'. Nothing will be loaded +Info 47 [00:02:03.000] Starting updateGraphWorker: Project: /dev/null/inferredProject1* +Info 48 [00:02:04.000] DirectoryWatcher:: Added:: WatchInfo: /dummy/node_modules/@types 1 undefined Project: /dev/null/inferredProject1* WatchType: Type roots +Info 49 [00:02:05.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /dummy/node_modules/@types 1 undefined Project: /dev/null/inferredProject1* WatchType: Type roots +Info 50 [00:02:06.000] Finishing updateGraphWorker: Project: /dev/null/inferredProject1* Version: 1 structureChanged: true structureIsReused:: Not Elapsed:: *ms +Info 51 [00:02:07.000] Project '/dev/null/inferredProject1*' (Inferred) +Info 52 [00:02:08.000] Files (2) /a/lib/lib.d.ts /dummy/dummy.ts @@ -429,61 +429,61 @@ Info 52 [16:02:08.000] Files (2) dummy.ts Root file specified for compilation -Info 53 [16:02:09.000] ----------------------------------------------- -Info 54 [16:02:10.000] Project '/user/username/projects/myproject/tsconfig.json' (Configured) -Info 54 [16:02:11.000] Files (0) - -Info 54 [16:02:12.000] ----------------------------------------------- -Info 54 [16:02:13.000] Project '/user/username/projects/myproject/tsconfig-src.json' (Configured) -Info 54 [16:02:14.000] Files (3) - -Info 54 [16:02:15.000] ----------------------------------------------- -Info 54 [16:02:16.000] Project '/dev/null/inferredProject1*' (Inferred) -Info 54 [16:02:17.000] Files (2) - -Info 54 [16:02:18.000] ----------------------------------------------- -Info 54 [16:02:19.000] Open files: -Info 54 [16:02:20.000] FileName: /user/username/projects/myproject/src/main.ts ProjectRootPath: undefined -Info 54 [16:02:21.000] Projects: /user/username/projects/myproject/tsconfig-src.json -Info 54 [16:02:22.000] FileName: /dummy/dummy.ts ProjectRootPath: undefined -Info 54 [16:02:23.000] Projects: /dev/null/inferredProject1* -Info 54 [16:02:24.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/src/main.ts 500 undefined WatchType: Closed Script info -Info 55 [16:02:25.000] Project '/user/username/projects/myproject/tsconfig.json' (Configured) -Info 55 [16:02:26.000] Files (0) - -Info 55 [16:02:27.000] ----------------------------------------------- -Info 55 [16:02:28.000] Project '/user/username/projects/myproject/tsconfig-src.json' (Configured) -Info 55 [16:02:29.000] Files (3) - -Info 55 [16:02:30.000] ----------------------------------------------- -Info 55 [16:02:31.000] Project '/dev/null/inferredProject1*' (Inferred) -Info 55 [16:02:32.000] Files (2) - -Info 55 [16:02:33.000] ----------------------------------------------- -Info 55 [16:02:34.000] Open files: -Info 55 [16:02:35.000] FileName: /dummy/dummy.ts ProjectRootPath: undefined -Info 55 [16:02:36.000] Projects: /dev/null/inferredProject1* -Info 55 [16:02:37.000] FileWatcher:: Added:: WatchInfo: /dummy/dummy.ts 500 undefined WatchType: Closed Script info -Info 56 [16:02:38.000] Project '/user/username/projects/myproject/tsconfig.json' (Configured) -Info 56 [16:02:39.000] Files (0) - -Info 56 [16:02:40.000] ----------------------------------------------- -Info 56 [16:02:41.000] Project '/user/username/projects/myproject/tsconfig-src.json' (Configured) -Info 56 [16:02:42.000] Files (3) - -Info 56 [16:02:43.000] ----------------------------------------------- -Info 56 [16:02:44.000] Project '/dev/null/inferredProject1*' (Inferred) -Info 56 [16:02:45.000] Files (2) - -Info 56 [16:02:46.000] ----------------------------------------------- -Info 56 [16:02:47.000] Open files: -Info 56 [16:02:48.000] FileWatcher:: Close:: WatchInfo: /dummy/dummy.ts 500 undefined WatchType: Closed Script info -Info 57 [16:02:49.000] Search path: /dummy -Info 58 [16:02:50.000] For info: /dummy/dummy.ts :: No config files found. -Info 59 [16:02:51.000] Starting updateGraphWorker: Project: /dev/null/inferredProject1* -Info 60 [16:02:52.000] Finishing updateGraphWorker: Project: /dev/null/inferredProject1* Version: 2 structureChanged: false structureIsReused:: Not Elapsed:: *ms -Info 61 [16:02:53.000] Project '/dev/null/inferredProject1*' (Inferred) -Info 62 [16:02:54.000] Files (2) +Info 53 [00:02:09.000] ----------------------------------------------- +Info 54 [00:02:10.000] Project '/user/username/projects/myproject/tsconfig.json' (Configured) +Info 54 [00:02:11.000] Files (0) + +Info 54 [00:02:12.000] ----------------------------------------------- +Info 54 [00:02:13.000] Project '/user/username/projects/myproject/tsconfig-src.json' (Configured) +Info 54 [00:02:14.000] Files (3) + +Info 54 [00:02:15.000] ----------------------------------------------- +Info 54 [00:02:16.000] Project '/dev/null/inferredProject1*' (Inferred) +Info 54 [00:02:17.000] Files (2) + +Info 54 [00:02:18.000] ----------------------------------------------- +Info 54 [00:02:19.000] Open files: +Info 54 [00:02:20.000] FileName: /user/username/projects/myproject/src/main.ts ProjectRootPath: undefined +Info 54 [00:02:21.000] Projects: /user/username/projects/myproject/tsconfig-src.json +Info 54 [00:02:22.000] FileName: /dummy/dummy.ts ProjectRootPath: undefined +Info 54 [00:02:23.000] Projects: /dev/null/inferredProject1* +Info 54 [00:02:24.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/src/main.ts 500 undefined WatchType: Closed Script info +Info 55 [00:02:25.000] Project '/user/username/projects/myproject/tsconfig.json' (Configured) +Info 55 [00:02:26.000] Files (0) + +Info 55 [00:02:27.000] ----------------------------------------------- +Info 55 [00:02:28.000] Project '/user/username/projects/myproject/tsconfig-src.json' (Configured) +Info 55 [00:02:29.000] Files (3) + +Info 55 [00:02:30.000] ----------------------------------------------- +Info 55 [00:02:31.000] Project '/dev/null/inferredProject1*' (Inferred) +Info 55 [00:02:32.000] Files (2) + +Info 55 [00:02:33.000] ----------------------------------------------- +Info 55 [00:02:34.000] Open files: +Info 55 [00:02:35.000] FileName: /dummy/dummy.ts ProjectRootPath: undefined +Info 55 [00:02:36.000] Projects: /dev/null/inferredProject1* +Info 55 [00:02:37.000] FileWatcher:: Added:: WatchInfo: /dummy/dummy.ts 500 undefined WatchType: Closed Script info +Info 56 [00:02:38.000] Project '/user/username/projects/myproject/tsconfig.json' (Configured) +Info 56 [00:02:39.000] Files (0) + +Info 56 [00:02:40.000] ----------------------------------------------- +Info 56 [00:02:41.000] Project '/user/username/projects/myproject/tsconfig-src.json' (Configured) +Info 56 [00:02:42.000] Files (3) + +Info 56 [00:02:43.000] ----------------------------------------------- +Info 56 [00:02:44.000] Project '/dev/null/inferredProject1*' (Inferred) +Info 56 [00:02:45.000] Files (2) + +Info 56 [00:02:46.000] ----------------------------------------------- +Info 56 [00:02:47.000] Open files: +Info 56 [00:02:48.000] FileWatcher:: Close:: WatchInfo: /dummy/dummy.ts 500 undefined WatchType: Closed Script info +Info 57 [00:02:49.000] Search path: /dummy +Info 58 [00:02:50.000] For info: /dummy/dummy.ts :: No config files found. +Info 59 [00:02:51.000] Starting updateGraphWorker: Project: /dev/null/inferredProject1* +Info 60 [00:02:52.000] Finishing updateGraphWorker: Project: /dev/null/inferredProject1* Version: 2 structureChanged: false structureIsReused:: Not Elapsed:: *ms +Info 61 [00:02:53.000] Project '/dev/null/inferredProject1*' (Inferred) +Info 62 [00:02:54.000] Files (2) /a/lib/lib.d.ts /dummy/dummy.ts @@ -493,22 +493,22 @@ Info 62 [16:02:54.000] Files (2) dummy.ts Root file specified for compilation -Info 63 [16:02:55.000] ----------------------------------------------- -Info 64 [16:02:56.000] `remove Project:: -Info 65 [16:02:57.000] Project '/user/username/projects/myproject/tsconfig.json' (Configured) -Info 66 [16:02:58.000] Files (0) +Info 63 [00:02:55.000] ----------------------------------------------- +Info 64 [00:02:56.000] `remove Project:: +Info 65 [00:02:57.000] Project '/user/username/projects/myproject/tsconfig.json' (Configured) +Info 66 [00:02:58.000] Files (0) -Info 67 [16:02:59.000] ----------------------------------------------- -Info 68 [16:03:00.000] FileWatcher:: Close:: WatchInfo: /user/username/projects/myproject/tsconfig.json 2000 undefined Project: /user/username/projects/myproject/tsconfig.json WatchType: Config file -Info 69 [16:03:01.000] FileWatcher:: Close:: WatchInfo: /user/username/projects/myproject/tsconfig-indirect1.json 2000 undefined Project: /user/username/projects/myproject/tsconfig.json WatchType: Config file -Info 70 [16:03:02.000] FileWatcher:: Close:: WatchInfo: /user/username/projects/myproject/tsconfig-indirect2.json 2000 undefined Project: /user/username/projects/myproject/tsconfig.json WatchType: Config file -Info 71 [16:03:03.000] DirectoryWatcher:: Close:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/tsconfig.json WatchType: Type roots -Info 72 [16:03:04.000] 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 73 [16:03:05.000] `remove Project:: -Info 74 [16:03:06.000] Project '/user/username/projects/myproject/tsconfig-src.json' (Configured) -Info 75 [16:03:07.000] Files (3) +Info 67 [00:02:59.000] ----------------------------------------------- +Info 68 [00:03:00.000] FileWatcher:: Close:: WatchInfo: /user/username/projects/myproject/tsconfig.json 2000 undefined Project: /user/username/projects/myproject/tsconfig.json WatchType: Config file +Info 69 [00:03:01.000] FileWatcher:: Close:: WatchInfo: /user/username/projects/myproject/tsconfig-indirect1.json 2000 undefined Project: /user/username/projects/myproject/tsconfig.json WatchType: Config file +Info 70 [00:03:02.000] FileWatcher:: Close:: WatchInfo: /user/username/projects/myproject/tsconfig-indirect2.json 2000 undefined Project: /user/username/projects/myproject/tsconfig.json WatchType: Config file +Info 71 [00:03:03.000] DirectoryWatcher:: Close:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/tsconfig.json WatchType: Type roots +Info 72 [00:03:04.000] 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 73 [00:03:05.000] `remove Project:: +Info 74 [00:03:06.000] Project '/user/username/projects/myproject/tsconfig-src.json' (Configured) +Info 75 [00:03:07.000] Files (3) /a/lib/lib.d.ts /user/username/projects/myproject/src/helpers/functions.ts /user/username/projects/myproject/src/main.ts @@ -522,28 +522,28 @@ Info 75 [16:03:07.000] Files (3) src/main.ts Matched by include pattern './src/**/*' in 'tsconfig-src.json' -Info 76 [16:03:08.000] ----------------------------------------------- -Info 77 [16:03:09.000] DirectoryWatcher:: Close:: WatchInfo: /user/username/projects/myproject/src 1 undefined Config: /user/username/projects/myproject/tsconfig-src.json WatchType: Wild card directory -Info 78 [16:03:10.000] 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 79 [16:03:11.000] FileWatcher:: Close:: WatchInfo: /user/username/projects/myproject/tsconfig-src.json 2000 undefined Project: /user/username/projects/myproject/tsconfig.json WatchType: Config file -Info 80 [16:03:12.000] DirectoryWatcher:: Close:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/tsconfig-src.json WatchType: Type roots -Info 81 [16:03:13.000] 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 82 [16:03:14.000] FileWatcher:: Close:: WatchInfo: /user/username/projects/myproject/src/main.ts 500 undefined WatchType: Closed Script info -Info 83 [16:03:15.000] FileWatcher:: Close:: WatchInfo: /user/username/projects/myproject/src/helpers/functions.ts 500 undefined WatchType: Closed Script info -Info 84 [16:03:16.000] Project '/dev/null/inferredProject1*' (Inferred) -Info 84 [16:03:17.000] Files (2) - -Info 84 [16:03:18.000] ----------------------------------------------- -Info 84 [16:03:19.000] Open files: -Info 84 [16:03:20.000] FileName: /dummy/dummy.ts ProjectRootPath: undefined -Info 84 [16:03:21.000] Projects: /dev/null/inferredProject1* -Info 84 [16:03:22.000] Search path: /user/username/projects/myproject/src -Info 85 [16:03:23.000] For info: /user/username/projects/myproject/src/main.ts :: Config file name: /user/username/projects/myproject/tsconfig.json -Info 86 [16:03:24.000] Creating configuration project /user/username/projects/myproject/tsconfig.json -Info 87 [16:03:25.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/tsconfig.json 2000 undefined Project: /user/username/projects/myproject/tsconfig.json WatchType: Config file -Info 88 [16:03:26.000] event: +Info 76 [00:03:08.000] ----------------------------------------------- +Info 77 [00:03:09.000] DirectoryWatcher:: Close:: WatchInfo: /user/username/projects/myproject/src 1 undefined Config: /user/username/projects/myproject/tsconfig-src.json WatchType: Wild card directory +Info 78 [00:03:10.000] 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 79 [00:03:11.000] FileWatcher:: Close:: WatchInfo: /user/username/projects/myproject/tsconfig-src.json 2000 undefined Project: /user/username/projects/myproject/tsconfig.json WatchType: Config file +Info 80 [00:03:12.000] DirectoryWatcher:: Close:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/tsconfig-src.json WatchType: Type roots +Info 81 [00:03:13.000] 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 82 [00:03:14.000] FileWatcher:: Close:: WatchInfo: /user/username/projects/myproject/src/main.ts 500 undefined WatchType: Closed Script info +Info 83 [00:03:15.000] FileWatcher:: Close:: WatchInfo: /user/username/projects/myproject/src/helpers/functions.ts 500 undefined WatchType: Closed Script info +Info 84 [00:03:16.000] Project '/dev/null/inferredProject1*' (Inferred) +Info 84 [00:03:17.000] Files (2) + +Info 84 [00:03:18.000] ----------------------------------------------- +Info 84 [00:03:19.000] Open files: +Info 84 [00:03:20.000] FileName: /dummy/dummy.ts ProjectRootPath: undefined +Info 84 [00:03:21.000] Projects: /dev/null/inferredProject1* +Info 84 [00:03:22.000] Search path: /user/username/projects/myproject/src +Info 85 [00:03:23.000] For info: /user/username/projects/myproject/src/main.ts :: Config file name: /user/username/projects/myproject/tsconfig.json +Info 86 [00:03:24.000] Creating configuration project /user/username/projects/myproject/tsconfig.json +Info 87 [00:03:25.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/tsconfig.json 2000 undefined Project: /user/username/projects/myproject/tsconfig.json WatchType: Config file +Info 88 [00:03:26.000] event: {"seq":0,"type":"event","event":"projectLoadingStart","body":{"projectName":"/user/username/projects/myproject/tsconfig.json","reason":"Creating possible configured project for /user/username/projects/myproject/src/main.ts to open"}} -Info 89 [16:03:27.000] Config: /user/username/projects/myproject/tsconfig.json : { +Info 89 [00:03:27.000] Config: /user/username/projects/myproject/tsconfig.json : { "rootNames": [], "options": { "configFilePath": "/user/username/projects/myproject/tsconfig.json" @@ -559,9 +559,9 @@ Info 89 [16:03:27.000] Config: /user/username/projects/myproject/tsconfig.json } ] } -Info 90 [16:03:28.000] Plugins were requested but not running in environment that supports 'require'. Nothing will be loaded -Info 91 [16:03:29.000] Starting updateGraphWorker: Project: /user/username/projects/myproject/tsconfig.json -Info 92 [16:03:30.000] Config: /user/username/projects/myproject/tsconfig-indirect1.json : { +Info 90 [00:03:28.000] Plugins were requested but not running in environment that supports 'require'. Nothing will be loaded +Info 91 [00:03:29.000] Starting updateGraphWorker: Project: /user/username/projects/myproject/tsconfig.json +Info 92 [00:03:30.000] Config: /user/username/projects/myproject/tsconfig-indirect1.json : { "rootNames": [ "/user/username/projects/myproject/indirect1/main.ts" ], @@ -578,8 +578,8 @@ Info 92 [16:03:30.000] Config: /user/username/projects/myproject/tsconfig-indi } ] } -Info 93 [16:03:31.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/tsconfig-indirect1.json 2000 undefined Project: /user/username/projects/myproject/tsconfig.json WatchType: Config file -Info 94 [16:03:32.000] Config: /user/username/projects/myproject/tsconfig-src.json : { +Info 93 [00:03:31.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/tsconfig-indirect1.json 2000 undefined Project: /user/username/projects/myproject/tsconfig.json WatchType: Config file +Info 94 [00:03:32.000] Config: /user/username/projects/myproject/tsconfig-src.json : { "rootNames": [ "/user/username/projects/myproject/src/main.ts", "/user/username/projects/myproject/src/helpers/functions.ts" @@ -591,10 +591,10 @@ Info 94 [16:03:32.000] Config: /user/username/projects/myproject/tsconfig-src. "configFilePath": "/user/username/projects/myproject/tsconfig-src.json" } } -Info 95 [16:03:33.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/tsconfig-src.json 2000 undefined Project: /user/username/projects/myproject/tsconfig.json WatchType: Config file -Info 96 [16:03:34.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/src 1 undefined Config: /user/username/projects/myproject/tsconfig-src.json WatchType: Wild card directory -Info 97 [16:03:35.000] 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 98 [16:03:36.000] Config: /user/username/projects/myproject/tsconfig-indirect2.json : { +Info 95 [00:03:33.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/tsconfig-src.json 2000 undefined Project: /user/username/projects/myproject/tsconfig.json WatchType: Config file +Info 96 [00:03:34.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/src 1 undefined Config: /user/username/projects/myproject/tsconfig-src.json WatchType: Wild card directory +Info 97 [00:03:35.000] 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 98 [00:03:36.000] Config: /user/username/projects/myproject/tsconfig-indirect2.json : { "rootNames": [ "/user/username/projects/myproject/indirect2/main.ts" ], @@ -611,24 +611,24 @@ Info 98 [16:03:36.000] Config: /user/username/projects/myproject/tsconfig-indi } ] } -Info 99 [16:03:37.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/tsconfig-indirect2.json 2000 undefined Project: /user/username/projects/myproject/tsconfig.json WatchType: Config file -Info 100 [16:03:38.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/tsconfig.json WatchType: Type roots -Info 101 [16:03:39.000] 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 102 [16:03:40.000] Finishing updateGraphWorker: Project: /user/username/projects/myproject/tsconfig.json Version: 1 structureChanged: true structureIsReused:: Not Elapsed:: *ms -Info 103 [16:03:41.000] Different program with same set of files -Info 104 [16:03:42.000] event: +Info 99 [00:03:37.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/tsconfig-indirect2.json 2000 undefined Project: /user/username/projects/myproject/tsconfig.json WatchType: Config file +Info 100 [00:03:38.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/tsconfig.json WatchType: Type roots +Info 101 [00:03:39.000] 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 102 [00:03:40.000] Finishing updateGraphWorker: Project: /user/username/projects/myproject/tsconfig.json Version: 1 structureChanged: true structureIsReused:: Not Elapsed:: *ms +Info 103 [00:03:41.000] Different program with same set of files +Info 104 [00:03:42.000] event: {"seq":0,"type":"event","event":"projectLoadingFinish","body":{"projectName":"/user/username/projects/myproject/tsconfig.json"}} -Info 105 [16:03:43.000] Creating configuration project /user/username/projects/myproject/tsconfig-src.json -Info 106 [16:03:44.000] event: +Info 105 [00:03:43.000] Creating configuration project /user/username/projects/myproject/tsconfig-src.json +Info 106 [00:03:44.000] event: {"seq":0,"type":"event","event":"projectLoadingStart","body":{"projectName":"/user/username/projects/myproject/tsconfig-src.json","reason":"Creating project referenced in solution /user/username/projects/myproject/tsconfig.json to find possible configured project for /user/username/projects/myproject/src/main.ts to open"}} -Info 107 [16:03:45.000] Plugins were requested but not running in environment that supports 'require'. Nothing will be loaded -Info 108 [16:03:46.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/src/helpers/functions.ts 500 undefined WatchType: Closed Script info -Info 109 [16:03:47.000] Starting updateGraphWorker: Project: /user/username/projects/myproject/tsconfig-src.json -Info 110 [16:03:48.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/tsconfig-src.json WatchType: Type roots -Info 111 [16:03:49.000] 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 112 [16:03:50.000] Finishing updateGraphWorker: Project: /user/username/projects/myproject/tsconfig-src.json Version: 1 structureChanged: true structureIsReused:: Not Elapsed:: *ms -Info 113 [16:03:51.000] Project '/user/username/projects/myproject/tsconfig-src.json' (Configured) -Info 114 [16:03:52.000] Files (3) +Info 107 [00:03:45.000] Plugins were requested but not running in environment that supports 'require'. Nothing will be loaded +Info 108 [00:03:46.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/src/helpers/functions.ts 500 undefined WatchType: Closed Script info +Info 109 [00:03:47.000] Starting updateGraphWorker: Project: /user/username/projects/myproject/tsconfig-src.json +Info 110 [00:03:48.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/tsconfig-src.json WatchType: Type roots +Info 111 [00:03:49.000] 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 112 [00:03:50.000] Finishing updateGraphWorker: Project: /user/username/projects/myproject/tsconfig-src.json Version: 1 structureChanged: true structureIsReused:: Not Elapsed:: *ms +Info 113 [00:03:51.000] Project '/user/username/projects/myproject/tsconfig-src.json' (Configured) +Info 114 [00:03:52.000] Files (3) /a/lib/lib.d.ts /user/username/projects/myproject/src/helpers/functions.ts /user/username/projects/myproject/src/main.ts @@ -642,51 +642,51 @@ Info 114 [16:03:52.000] Files (3) src/main.ts Matched by include pattern './src/**/*' in 'tsconfig-src.json' -Info 115 [16:03:53.000] ----------------------------------------------- -Info 116 [16:03:54.000] event: +Info 115 [00:03:53.000] ----------------------------------------------- +Info 116 [00:03:54.000] event: {"seq":0,"type":"event","event":"projectLoadingFinish","body":{"projectName":"/user/username/projects/myproject/tsconfig-src.json"}} -Info 117 [16:03:55.000] event: +Info 117 [00:03:55.000] event: {"seq":0,"type":"event","event":"configFileDiag","body":{"triggerFile":"/user/username/projects/myproject/src/main.ts","configFile":"/user/username/projects/myproject/tsconfig-src.json","diagnostics":[]}} -Info 118 [16:03:56.000] Project '/user/username/projects/myproject/tsconfig.json' (Configured) -Info 118 [16:03:57.000] Files (0) - -Info 118 [16:03:58.000] ----------------------------------------------- -Info 118 [16:03:59.000] Project '/user/username/projects/myproject/tsconfig-src.json' (Configured) -Info 118 [16:04:00.000] Files (3) - -Info 118 [16:04:01.000] ----------------------------------------------- -Info 118 [16:04:02.000] Project '/dev/null/inferredProject1*' (Inferred) -Info 118 [16:04:03.000] Files (2) - -Info 118 [16:04:04.000] ----------------------------------------------- -Info 118 [16:04:05.000] Open files: -Info 118 [16:04:06.000] FileName: /dummy/dummy.ts ProjectRootPath: undefined -Info 118 [16:04:07.000] Projects: /dev/null/inferredProject1* -Info 118 [16:04:08.000] FileName: /user/username/projects/myproject/src/main.ts ProjectRootPath: undefined -Info 118 [16:04:09.000] Projects: /user/username/projects/myproject/tsconfig-src.json -Info 118 [16:04:10.000] FileWatcher:: Added:: WatchInfo: /dummy/dummy.ts 500 undefined WatchType: Closed Script info -Info 119 [16:04:11.000] Project '/user/username/projects/myproject/tsconfig.json' (Configured) -Info 119 [16:04:12.000] Files (0) - -Info 119 [16:04:13.000] ----------------------------------------------- -Info 119 [16:04:14.000] Project '/user/username/projects/myproject/tsconfig-src.json' (Configured) -Info 119 [16:04:15.000] Files (3) - -Info 119 [16:04:16.000] ----------------------------------------------- -Info 119 [16:04:17.000] Project '/dev/null/inferredProject1*' (Inferred) -Info 119 [16:04:18.000] Files (2) - -Info 119 [16:04:19.000] ----------------------------------------------- -Info 119 [16:04:20.000] Open files: -Info 119 [16:04:21.000] FileName: /user/username/projects/myproject/src/main.ts ProjectRootPath: undefined -Info 119 [16:04:22.000] Projects: /user/username/projects/myproject/tsconfig-src.json -Info 119 [16:04:23.000] FileWatcher:: Close:: WatchInfo: /dummy/dummy.ts 500 undefined WatchType: Closed Script info -Info 120 [16:04:24.000] Search path: /dummy -Info 121 [16:04:25.000] For info: /dummy/dummy.ts :: No config files found. -Info 122 [16:04:26.000] Starting updateGraphWorker: Project: /dev/null/inferredProject1* -Info 123 [16:04:27.000] Finishing updateGraphWorker: Project: /dev/null/inferredProject1* Version: 3 structureChanged: false structureIsReused:: Not Elapsed:: *ms -Info 124 [16:04:28.000] Project '/dev/null/inferredProject1*' (Inferred) -Info 125 [16:04:29.000] Files (2) +Info 118 [00:03:56.000] Project '/user/username/projects/myproject/tsconfig.json' (Configured) +Info 118 [00:03:57.000] Files (0) + +Info 118 [00:03:58.000] ----------------------------------------------- +Info 118 [00:03:59.000] Project '/user/username/projects/myproject/tsconfig-src.json' (Configured) +Info 118 [00:04:00.000] Files (3) + +Info 118 [00:04:01.000] ----------------------------------------------- +Info 118 [00:04:02.000] Project '/dev/null/inferredProject1*' (Inferred) +Info 118 [00:04:03.000] Files (2) + +Info 118 [00:04:04.000] ----------------------------------------------- +Info 118 [00:04:05.000] Open files: +Info 118 [00:04:06.000] FileName: /dummy/dummy.ts ProjectRootPath: undefined +Info 118 [00:04:07.000] Projects: /dev/null/inferredProject1* +Info 118 [00:04:08.000] FileName: /user/username/projects/myproject/src/main.ts ProjectRootPath: undefined +Info 118 [00:04:09.000] Projects: /user/username/projects/myproject/tsconfig-src.json +Info 118 [00:04:10.000] FileWatcher:: Added:: WatchInfo: /dummy/dummy.ts 500 undefined WatchType: Closed Script info +Info 119 [00:04:11.000] Project '/user/username/projects/myproject/tsconfig.json' (Configured) +Info 119 [00:04:12.000] Files (0) + +Info 119 [00:04:13.000] ----------------------------------------------- +Info 119 [00:04:14.000] Project '/user/username/projects/myproject/tsconfig-src.json' (Configured) +Info 119 [00:04:15.000] Files (3) + +Info 119 [00:04:16.000] ----------------------------------------------- +Info 119 [00:04:17.000] Project '/dev/null/inferredProject1*' (Inferred) +Info 119 [00:04:18.000] Files (2) + +Info 119 [00:04:19.000] ----------------------------------------------- +Info 119 [00:04:20.000] Open files: +Info 119 [00:04:21.000] FileName: /user/username/projects/myproject/src/main.ts ProjectRootPath: undefined +Info 119 [00:04:22.000] Projects: /user/username/projects/myproject/tsconfig-src.json +Info 119 [00:04:23.000] FileWatcher:: Close:: WatchInfo: /dummy/dummy.ts 500 undefined WatchType: Closed Script info +Info 120 [00:04:24.000] Search path: /dummy +Info 121 [00:04:25.000] For info: /dummy/dummy.ts :: No config files found. +Info 122 [00:04:26.000] Starting updateGraphWorker: Project: /dev/null/inferredProject1* +Info 123 [00:04:27.000] Finishing updateGraphWorker: Project: /dev/null/inferredProject1* Version: 3 structureChanged: false structureIsReused:: Not Elapsed:: *ms +Info 124 [00:04:28.000] Project '/dev/null/inferredProject1*' (Inferred) +Info 125 [00:04:29.000] Files (2) /a/lib/lib.d.ts /dummy/dummy.ts @@ -696,38 +696,38 @@ Info 125 [16:04:29.000] Files (2) dummy.ts Root file specified for compilation -Info 126 [16:04:30.000] ----------------------------------------------- -Info 127 [16:04:31.000] Project '/user/username/projects/myproject/tsconfig.json' (Configured) -Info 127 [16:04:32.000] Files (0) - -Info 127 [16:04:33.000] ----------------------------------------------- -Info 127 [16:04:34.000] Project '/user/username/projects/myproject/tsconfig-src.json' (Configured) -Info 127 [16:04:35.000] Files (3) - -Info 127 [16:04:36.000] ----------------------------------------------- -Info 127 [16:04:37.000] Project '/dev/null/inferredProject1*' (Inferred) -Info 127 [16:04:38.000] Files (2) - -Info 127 [16:04:39.000] ----------------------------------------------- -Info 127 [16:04:40.000] Open files: -Info 127 [16:04:41.000] FileName: /user/username/projects/myproject/src/main.ts ProjectRootPath: undefined -Info 127 [16:04:42.000] Projects: /user/username/projects/myproject/tsconfig-src.json -Info 127 [16:04:43.000] FileName: /dummy/dummy.ts ProjectRootPath: undefined -Info 127 [16:04:44.000] Projects: /dev/null/inferredProject1* -Info 127 [16:04:45.000] reload projects. -Info 128 [16:04:46.000] Scheduled: /dev/null/inferredProject1* -Info 129 [16:04:47.000] Scheduled: /user/username/projects/myproject/tsconfig-src.json -Info 130 [16:04:48.000] Scheduled: *ensureProjectForOpenFiles* -Info 131 [16:04:49.000] Scheduled: /user/username/projects/myproject/tsconfig-src.json, Cancelled earlier one -Info 132 [16:04:50.000] Scheduled: *ensureProjectForOpenFiles*, Cancelled earlier one -Info 133 [16:04:51.000] Search path: /user/username/projects/myproject/src -Info 134 [16:04:52.000] For info: /user/username/projects/myproject/src/main.ts :: Config file name: /user/username/projects/myproject/tsconfig.json -Info 135 [16:04:53.000] DirectoryWatcher:: Close:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/tsconfig.json WatchType: Type roots -Info 136 [16:04:54.000] 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 137 [16:04:55.000] Reloading configured project /user/username/projects/myproject/tsconfig.json -Info 138 [16:04:56.000] event: +Info 126 [00:04:30.000] ----------------------------------------------- +Info 127 [00:04:31.000] Project '/user/username/projects/myproject/tsconfig.json' (Configured) +Info 127 [00:04:32.000] Files (0) + +Info 127 [00:04:33.000] ----------------------------------------------- +Info 127 [00:04:34.000] Project '/user/username/projects/myproject/tsconfig-src.json' (Configured) +Info 127 [00:04:35.000] Files (3) + +Info 127 [00:04:36.000] ----------------------------------------------- +Info 127 [00:04:37.000] Project '/dev/null/inferredProject1*' (Inferred) +Info 127 [00:04:38.000] Files (2) + +Info 127 [00:04:39.000] ----------------------------------------------- +Info 127 [00:04:40.000] Open files: +Info 127 [00:04:41.000] FileName: /user/username/projects/myproject/src/main.ts ProjectRootPath: undefined +Info 127 [00:04:42.000] Projects: /user/username/projects/myproject/tsconfig-src.json +Info 127 [00:04:43.000] FileName: /dummy/dummy.ts ProjectRootPath: undefined +Info 127 [00:04:44.000] Projects: /dev/null/inferredProject1* +Info 127 [00:04:45.000] reload projects. +Info 128 [00:04:46.000] Scheduled: /dev/null/inferredProject1* +Info 129 [00:04:47.000] Scheduled: /user/username/projects/myproject/tsconfig-src.json +Info 130 [00:04:48.000] Scheduled: *ensureProjectForOpenFiles* +Info 131 [00:04:49.000] Scheduled: /user/username/projects/myproject/tsconfig-src.json, Cancelled earlier one +Info 132 [00:04:50.000] Scheduled: *ensureProjectForOpenFiles*, Cancelled earlier one +Info 133 [00:04:51.000] Search path: /user/username/projects/myproject/src +Info 134 [00:04:52.000] For info: /user/username/projects/myproject/src/main.ts :: Config file name: /user/username/projects/myproject/tsconfig.json +Info 135 [00:04:53.000] DirectoryWatcher:: Close:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/tsconfig.json WatchType: Type roots +Info 136 [00:04:54.000] 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 137 [00:04:55.000] Reloading configured project /user/username/projects/myproject/tsconfig.json +Info 138 [00:04:56.000] event: {"seq":0,"type":"event","event":"projectLoadingStart","body":{"projectName":"/user/username/projects/myproject/tsconfig.json","reason":"User requested reload projects"}} -Info 139 [16:04:57.000] Config: /user/username/projects/myproject/tsconfig.json : { +Info 139 [00:04:57.000] Config: /user/username/projects/myproject/tsconfig.json : { "rootNames": [], "options": { "configFilePath": "/user/username/projects/myproject/tsconfig.json" @@ -743,9 +743,9 @@ Info 139 [16:04:57.000] Config: /user/username/projects/myproject/tsconfig.json } ] } -Info 140 [16:04:58.000] Plugins were requested but not running in environment that supports 'require'. Nothing will be loaded -Info 141 [16:04:59.000] Starting updateGraphWorker: Project: /user/username/projects/myproject/tsconfig.json -Info 142 [16:05:00.000] Config: /user/username/projects/myproject/tsconfig-indirect1.json : { +Info 140 [00:04:58.000] Plugins were requested but not running in environment that supports 'require'. Nothing will be loaded +Info 141 [00:04:59.000] Starting updateGraphWorker: Project: /user/username/projects/myproject/tsconfig.json +Info 142 [00:05:00.000] Config: /user/username/projects/myproject/tsconfig-indirect1.json : { "rootNames": [ "/user/username/projects/myproject/indirect1/main.ts" ], @@ -762,7 +762,7 @@ Info 142 [16:05:00.000] Config: /user/username/projects/myproject/tsconfig-indi } ] } -Info 143 [16:05:01.000] Config: /user/username/projects/myproject/tsconfig-src.json : { +Info 143 [00:05:01.000] Config: /user/username/projects/myproject/tsconfig-src.json : { "rootNames": [ "/user/username/projects/myproject/src/main.ts", "/user/username/projects/myproject/src/helpers/functions.ts" @@ -774,7 +774,7 @@ Info 143 [16:05:01.000] Config: /user/username/projects/myproject/tsconfig-src. "configFilePath": "/user/username/projects/myproject/tsconfig-src.json" } } -Info 144 [16:05:02.000] Config: /user/username/projects/myproject/tsconfig-indirect2.json : { +Info 144 [00:05:02.000] Config: /user/username/projects/myproject/tsconfig-indirect2.json : { "rootNames": [ "/user/username/projects/myproject/indirect2/main.ts" ], @@ -791,75 +791,75 @@ Info 144 [16:05:02.000] Config: /user/username/projects/myproject/tsconfig-indi } ] } -Info 145 [16:05:03.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/tsconfig.json WatchType: Type roots -Info 146 [16:05:04.000] 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 147 [16:05:05.000] Finishing updateGraphWorker: Project: /user/username/projects/myproject/tsconfig.json Version: 2 structureChanged: true structureIsReused:: Not Elapsed:: *ms -Info 148 [16:05:06.000] Different program with same set of files -Info 149 [16:05:07.000] event: +Info 145 [00:05:03.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/tsconfig.json WatchType: Type roots +Info 146 [00:05:04.000] 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 147 [00:05:05.000] Finishing updateGraphWorker: Project: /user/username/projects/myproject/tsconfig.json Version: 2 structureChanged: true structureIsReused:: Not Elapsed:: *ms +Info 148 [00:05:06.000] Different program with same set of files +Info 149 [00:05:07.000] event: {"seq":0,"type":"event","event":"projectLoadingFinish","body":{"projectName":"/user/username/projects/myproject/tsconfig.json"}} -Info 150 [16:05:08.000] event: +Info 150 [00:05:08.000] event: {"seq":0,"type":"event","event":"configFileDiag","body":{"triggerFile":"/user/username/projects/myproject/tsconfig.json","configFile":"/user/username/projects/myproject/tsconfig.json","diagnostics":[]}} -Info 151 [16:05:09.000] DirectoryWatcher:: Close:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/tsconfig-src.json WatchType: Type roots -Info 152 [16:05:10.000] 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 153 [16:05:11.000] Reloading configured project /user/username/projects/myproject/tsconfig-src.json -Info 154 [16:05:12.000] event: +Info 151 [00:05:09.000] DirectoryWatcher:: Close:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/tsconfig-src.json WatchType: Type roots +Info 152 [00:05:10.000] 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 153 [00:05:11.000] Reloading configured project /user/username/projects/myproject/tsconfig-src.json +Info 154 [00:05:12.000] event: {"seq":0,"type":"event","event":"projectLoadingStart","body":{"projectName":"/user/username/projects/myproject/tsconfig-src.json","reason":"User requested reload projects"}} -Info 155 [16:05:13.000] Plugins were requested but not running in environment that supports 'require'. Nothing will be loaded -Info 156 [16:05:14.000] Starting updateGraphWorker: Project: /user/username/projects/myproject/tsconfig-src.json -Info 157 [16:05:15.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/tsconfig-src.json WatchType: Type roots -Info 158 [16:05:16.000] 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 159 [16:05:17.000] Finishing updateGraphWorker: Project: /user/username/projects/myproject/tsconfig-src.json Version: 2 structureChanged: true structureIsReused:: Not Elapsed:: *ms -Info 160 [16:05:18.000] Different program with same set of files -Info 161 [16:05:19.000] event: +Info 155 [00:05:13.000] Plugins were requested but not running in environment that supports 'require'. Nothing will be loaded +Info 156 [00:05:14.000] Starting updateGraphWorker: Project: /user/username/projects/myproject/tsconfig-src.json +Info 157 [00:05:15.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/tsconfig-src.json WatchType: Type roots +Info 158 [00:05:16.000] 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 159 [00:05:17.000] Finishing updateGraphWorker: Project: /user/username/projects/myproject/tsconfig-src.json Version: 2 structureChanged: true structureIsReused:: Not Elapsed:: *ms +Info 160 [00:05:18.000] Different program with same set of files +Info 161 [00:05:19.000] event: {"seq":0,"type":"event","event":"projectLoadingFinish","body":{"projectName":"/user/username/projects/myproject/tsconfig-src.json"}} -Info 162 [16:05:20.000] event: +Info 162 [00:05:20.000] event: {"seq":0,"type":"event","event":"configFileDiag","body":{"triggerFile":"/user/username/projects/myproject/tsconfig-src.json","configFile":"/user/username/projects/myproject/tsconfig-src.json","diagnostics":[]}} -Info 163 [16:05:21.000] Search path: /dummy -Info 164 [16:05:22.000] For info: /dummy/dummy.ts :: No config files found. -Info 165 [16:05:23.000] DirectoryWatcher:: Close:: WatchInfo: /dummy/node_modules/@types 1 undefined Project: /dev/null/inferredProject1* WatchType: Type roots -Info 166 [16:05:24.000] Elapsed:: *ms DirectoryWatcher:: Close:: WatchInfo: /dummy/node_modules/@types 1 undefined Project: /dev/null/inferredProject1* WatchType: Type roots -Info 167 [16:05:25.000] Before ensureProjectForOpenFiles: -Info 168 [16:05:26.000] Project '/user/username/projects/myproject/tsconfig.json' (Configured) -Info 168 [16:05:27.000] Files (0) - -Info 168 [16:05:28.000] ----------------------------------------------- -Info 168 [16:05:29.000] Project '/user/username/projects/myproject/tsconfig-src.json' (Configured) -Info 168 [16:05:30.000] Files (3) - -Info 168 [16:05:31.000] ----------------------------------------------- -Info 168 [16:05:32.000] Project '/dev/null/inferredProject1*' (Inferred) -Info 168 [16:05:33.000] Files (2) - -Info 168 [16:05:34.000] ----------------------------------------------- -Info 168 [16:05:35.000] Open files: -Info 168 [16:05:36.000] FileName: /user/username/projects/myproject/src/main.ts ProjectRootPath: undefined -Info 168 [16:05:37.000] Projects: /user/username/projects/myproject/tsconfig-src.json -Info 168 [16:05:38.000] FileName: /dummy/dummy.ts ProjectRootPath: undefined -Info 168 [16:05:39.000] Projects: /dev/null/inferredProject1* -Info 168 [16:05:40.000] Starting updateGraphWorker: Project: /dev/null/inferredProject1* -Info 169 [16:05:41.000] DirectoryWatcher:: Added:: WatchInfo: /dummy/node_modules/@types 1 undefined Project: /dev/null/inferredProject1* WatchType: Type roots -Info 170 [16:05:42.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /dummy/node_modules/@types 1 undefined Project: /dev/null/inferredProject1* WatchType: Type roots -Info 171 [16:05:43.000] Finishing updateGraphWorker: Project: /dev/null/inferredProject1* Version: 4 structureChanged: true structureIsReused:: Not Elapsed:: *ms -Info 172 [16:05:44.000] Different program with same set of files -Info 173 [16:05:45.000] After ensureProjectForOpenFiles: -Info 174 [16:05:46.000] Project '/user/username/projects/myproject/tsconfig.json' (Configured) -Info 174 [16:05:47.000] Files (0) - -Info 174 [16:05:48.000] ----------------------------------------------- -Info 174 [16:05:49.000] Project '/user/username/projects/myproject/tsconfig-src.json' (Configured) -Info 174 [16:05:50.000] Files (3) - -Info 174 [16:05:51.000] ----------------------------------------------- -Info 174 [16:05:52.000] Project '/dev/null/inferredProject1*' (Inferred) -Info 174 [16:05:53.000] Files (2) - -Info 174 [16:05:54.000] ----------------------------------------------- -Info 174 [16:05:55.000] Open files: -Info 174 [16:05:56.000] FileName: /user/username/projects/myproject/src/main.ts ProjectRootPath: undefined -Info 174 [16:05:57.000] Projects: /user/username/projects/myproject/tsconfig-src.json -Info 174 [16:05:58.000] FileName: /dummy/dummy.ts ProjectRootPath: undefined -Info 174 [16:05:59.000] Projects: /dev/null/inferredProject1* -Info 174 [16:06:00.000] request: +Info 163 [00:05:21.000] Search path: /dummy +Info 164 [00:05:22.000] For info: /dummy/dummy.ts :: No config files found. +Info 165 [00:05:23.000] DirectoryWatcher:: Close:: WatchInfo: /dummy/node_modules/@types 1 undefined Project: /dev/null/inferredProject1* WatchType: Type roots +Info 166 [00:05:24.000] Elapsed:: *ms DirectoryWatcher:: Close:: WatchInfo: /dummy/node_modules/@types 1 undefined Project: /dev/null/inferredProject1* WatchType: Type roots +Info 167 [00:05:25.000] Before ensureProjectForOpenFiles: +Info 168 [00:05:26.000] Project '/user/username/projects/myproject/tsconfig.json' (Configured) +Info 168 [00:05:27.000] Files (0) + +Info 168 [00:05:28.000] ----------------------------------------------- +Info 168 [00:05:29.000] Project '/user/username/projects/myproject/tsconfig-src.json' (Configured) +Info 168 [00:05:30.000] Files (3) + +Info 168 [00:05:31.000] ----------------------------------------------- +Info 168 [00:05:32.000] Project '/dev/null/inferredProject1*' (Inferred) +Info 168 [00:05:33.000] Files (2) + +Info 168 [00:05:34.000] ----------------------------------------------- +Info 168 [00:05:35.000] Open files: +Info 168 [00:05:36.000] FileName: /user/username/projects/myproject/src/main.ts ProjectRootPath: undefined +Info 168 [00:05:37.000] Projects: /user/username/projects/myproject/tsconfig-src.json +Info 168 [00:05:38.000] FileName: /dummy/dummy.ts ProjectRootPath: undefined +Info 168 [00:05:39.000] Projects: /dev/null/inferredProject1* +Info 168 [00:05:40.000] Starting updateGraphWorker: Project: /dev/null/inferredProject1* +Info 169 [00:05:41.000] DirectoryWatcher:: Added:: WatchInfo: /dummy/node_modules/@types 1 undefined Project: /dev/null/inferredProject1* WatchType: Type roots +Info 170 [00:05:42.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /dummy/node_modules/@types 1 undefined Project: /dev/null/inferredProject1* WatchType: Type roots +Info 171 [00:05:43.000] Finishing updateGraphWorker: Project: /dev/null/inferredProject1* Version: 4 structureChanged: true structureIsReused:: Not Elapsed:: *ms +Info 172 [00:05:44.000] Different program with same set of files +Info 173 [00:05:45.000] After ensureProjectForOpenFiles: +Info 174 [00:05:46.000] Project '/user/username/projects/myproject/tsconfig.json' (Configured) +Info 174 [00:05:47.000] Files (0) + +Info 174 [00:05:48.000] ----------------------------------------------- +Info 174 [00:05:49.000] Project '/user/username/projects/myproject/tsconfig-src.json' (Configured) +Info 174 [00:05:50.000] Files (3) + +Info 174 [00:05:51.000] ----------------------------------------------- +Info 174 [00:05:52.000] Project '/dev/null/inferredProject1*' (Inferred) +Info 174 [00:05:53.000] Files (2) + +Info 174 [00:05:54.000] ----------------------------------------------- +Info 174 [00:05:55.000] Open files: +Info 174 [00:05:56.000] FileName: /user/username/projects/myproject/src/main.ts ProjectRootPath: undefined +Info 174 [00:05:57.000] Projects: /user/username/projects/myproject/tsconfig-src.json +Info 174 [00:05:58.000] FileName: /dummy/dummy.ts ProjectRootPath: undefined +Info 174 [00:05:59.000] Projects: /dev/null/inferredProject1* +Info 174 [00:06:00.000] request: { "command": "references", "arguments": { @@ -896,18 +896,18 @@ FsWatchesRecursive:: /user/username/projects/myproject/src: {} -Info 175 [16:06:01.000] Finding references to /user/username/projects/myproject/src/main.ts position 50 in project /user/username/projects/myproject/tsconfig-src.json -Info 176 [16:06:02.000] Creating configuration project /user/username/projects/myproject/tsconfig-indirect1.json -Info 177 [16:06:03.000] event: +Info 175 [00:06:01.000] Finding references to /user/username/projects/myproject/src/main.ts position 50 in project /user/username/projects/myproject/tsconfig-src.json +Info 176 [00:06:02.000] Creating configuration project /user/username/projects/myproject/tsconfig-indirect1.json +Info 177 [00:06:03.000] event: {"seq":0,"type":"event","event":"projectLoadingStart","body":{"projectName":"/user/username/projects/myproject/tsconfig-indirect1.json","reason":"Creating project referenced by : /user/username/projects/myproject/tsconfig.json as it references project /user/username/projects/myproject/tsconfig-src.json"}} -Info 178 [16:06:04.000] Plugins were requested but not running in environment that supports 'require'. Nothing will be loaded -Info 179 [16:06:05.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/indirect1/main.ts 500 undefined WatchType: Closed Script info -Info 180 [16:06:06.000] Starting updateGraphWorker: Project: /user/username/projects/myproject/tsconfig-indirect1.json -Info 181 [16:06:07.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/tsconfig-indirect1.json WatchType: Type roots -Info 182 [16:06:08.000] 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 183 [16:06:09.000] Finishing updateGraphWorker: Project: /user/username/projects/myproject/tsconfig-indirect1.json Version: 1 structureChanged: true structureIsReused:: Not Elapsed:: *ms -Info 184 [16:06:10.000] Project '/user/username/projects/myproject/tsconfig-indirect1.json' (Configured) -Info 185 [16:06:11.000] Files (4) +Info 178 [00:06:04.000] Plugins were requested but not running in environment that supports 'require'. Nothing will be loaded +Info 179 [00:06:05.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/indirect1/main.ts 500 undefined WatchType: Closed Script info +Info 180 [00:06:06.000] Starting updateGraphWorker: Project: /user/username/projects/myproject/tsconfig-indirect1.json +Info 181 [00:06:07.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/tsconfig-indirect1.json WatchType: Type roots +Info 182 [00:06:08.000] 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 183 [00:06:09.000] Finishing updateGraphWorker: Project: /user/username/projects/myproject/tsconfig-indirect1.json Version: 1 structureChanged: true structureIsReused:: Not Elapsed:: *ms +Info 184 [00:06:10.000] Project '/user/username/projects/myproject/tsconfig-indirect1.json' (Configured) +Info 185 [00:06:11.000] Files (4) /a/lib/lib.d.ts /user/username/projects/myproject/src/helpers/functions.ts /user/username/projects/myproject/src/main.ts @@ -923,22 +923,22 @@ Info 185 [16:06:11.000] Files (4) indirect1/main.ts Part of 'files' list in tsconfig.json -Info 186 [16:06:12.000] ----------------------------------------------- -Info 187 [16:06:13.000] event: +Info 186 [00:06:12.000] ----------------------------------------------- +Info 187 [00:06:13.000] event: {"seq":0,"type":"event","event":"projectLoadingFinish","body":{"projectName":"/user/username/projects/myproject/tsconfig-indirect1.json"}} -Info 188 [16:06:14.000] event: +Info 188 [00:06:14.000] event: {"seq":0,"type":"event","event":"telemetry","body":{"telemetryEventName":"projectInfo","payload":{"projectId":"9ccc3aed1af08832ccb25ea453f7b771199f56af238b53cc428549dbd2d59246","fileStats":{"js":0,"jsSize":0,"jsx":0,"jsxSize":0,"ts":3,"tsSize":134,"tsx":0,"tsxSize":0,"dts":1,"dtsSize":334,"deferred":0,"deferredSize":0},"compilerOptions":{"composite":true,"outDir":"","baseUrl":""},"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 189 [16:06:15.000] Creating configuration project /user/username/projects/myproject/tsconfig-indirect2.json -Info 190 [16:06:16.000] event: +Info 189 [00:06:15.000] Creating configuration project /user/username/projects/myproject/tsconfig-indirect2.json +Info 190 [00:06:16.000] event: {"seq":0,"type":"event","event":"projectLoadingStart","body":{"projectName":"/user/username/projects/myproject/tsconfig-indirect2.json","reason":"Creating project referenced by : /user/username/projects/myproject/tsconfig.json as it references project /user/username/projects/myproject/tsconfig-src.json"}} -Info 191 [16:06:17.000] Plugins were requested but not running in environment that supports 'require'. Nothing will be loaded -Info 192 [16:06:18.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/indirect2/main.ts 500 undefined WatchType: Closed Script info -Info 193 [16:06:19.000] Starting updateGraphWorker: Project: /user/username/projects/myproject/tsconfig-indirect2.json -Info 194 [16:06:20.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/tsconfig-indirect2.json WatchType: Type roots -Info 195 [16:06:21.000] 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 196 [16:06:22.000] Finishing updateGraphWorker: Project: /user/username/projects/myproject/tsconfig-indirect2.json Version: 1 structureChanged: true structureIsReused:: Not Elapsed:: *ms -Info 197 [16:06:23.000] Project '/user/username/projects/myproject/tsconfig-indirect2.json' (Configured) -Info 198 [16:06:24.000] Files (4) +Info 191 [00:06:17.000] Plugins were requested but not running in environment that supports 'require'. Nothing will be loaded +Info 192 [00:06:18.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/indirect2/main.ts 500 undefined WatchType: Closed Script info +Info 193 [00:06:19.000] Starting updateGraphWorker: Project: /user/username/projects/myproject/tsconfig-indirect2.json +Info 194 [00:06:20.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/tsconfig-indirect2.json WatchType: Type roots +Info 195 [00:06:21.000] 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 196 [00:06:22.000] Finishing updateGraphWorker: Project: /user/username/projects/myproject/tsconfig-indirect2.json Version: 1 structureChanged: true structureIsReused:: Not Elapsed:: *ms +Info 197 [00:06:23.000] Project '/user/username/projects/myproject/tsconfig-indirect2.json' (Configured) +Info 198 [00:06:24.000] Files (4) /a/lib/lib.d.ts /user/username/projects/myproject/src/helpers/functions.ts /user/username/projects/myproject/src/main.ts @@ -954,35 +954,35 @@ Info 198 [16:06:24.000] Files (4) indirect2/main.ts Part of 'files' list in tsconfig.json -Info 199 [16:06:25.000] ----------------------------------------------- -Info 200 [16:06:26.000] event: +Info 199 [00:06:25.000] ----------------------------------------------- +Info 200 [00:06:26.000] event: {"seq":0,"type":"event","event":"projectLoadingFinish","body":{"projectName":"/user/username/projects/myproject/tsconfig-indirect2.json"}} -Info 201 [16:06:27.000] event: +Info 201 [00:06:27.000] event: {"seq":0,"type":"event","event":"telemetry","body":{"telemetryEventName":"projectInfo","payload":{"projectId":"d9a040bddd6b85b85abd507a988a4b809b1515b5e61257ea3f8263da59589565","fileStats":{"js":0,"jsSize":0,"jsx":0,"jsxSize":0,"ts":3,"tsSize":134,"tsx":0,"tsxSize":0,"dts":1,"dtsSize":334,"deferred":0,"deferredSize":0},"compilerOptions":{"composite":true,"outDir":"","baseUrl":""},"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 202 [16:06:28.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/target/src/helpers/functions.d.ts 500 undefined WatchType: Closed Script info -Info 203 [16:06:29.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/target/src/helpers/functions.d.ts.map 500 undefined WatchType: Closed Script info -Info 204 [16:06:30.000] Finding references to /user/username/projects/myproject/src/helpers/functions.ts position 13 in project /user/username/projects/myproject/tsconfig-indirect1.json -Info 205 [16:06:31.000] Search path: /user/username/projects/myproject/src/helpers -Info 206 [16:06:32.000] For info: /user/username/projects/myproject/src/helpers/functions.ts :: Config file name: /user/username/projects/myproject/tsconfig.json -Info 207 [16:06:33.000] Search path: /user/username/projects/myproject/src/helpers -Info 208 [16:06:34.000] For info: /user/username/projects/myproject/src/helpers/functions.ts :: Config file name: /user/username/projects/myproject/tsconfig.json -Info 209 [16:06:35.000] Search path: /user/username/projects/myproject/src -Info 210 [16:06:36.000] For info: /user/username/projects/myproject/src/main.ts :: Config file name: /user/username/projects/myproject/tsconfig.json -Info 211 [16:06:37.000] Search path: /user/username/projects/myproject/src -Info 212 [16:06:38.000] For info: /user/username/projects/myproject/src/main.ts :: Config file name: /user/username/projects/myproject/tsconfig.json -Info 213 [16:06:39.000] Search path: /user/username/projects/myproject/src -Info 214 [16:06:40.000] For info: /user/username/projects/myproject/src/main.ts :: Config file name: /user/username/projects/myproject/tsconfig.json -Info 215 [16:06:41.000] Finding references to /user/username/projects/myproject/src/helpers/functions.ts position 13 in project /user/username/projects/myproject/tsconfig-indirect2.json -Info 216 [16:06:42.000] Search path: /user/username/projects/myproject/src/helpers -Info 217 [16:06:43.000] For info: /user/username/projects/myproject/src/helpers/functions.ts :: Config file name: /user/username/projects/myproject/tsconfig.json -Info 218 [16:06:44.000] Search path: /user/username/projects/myproject/src/helpers -Info 219 [16:06:45.000] For info: /user/username/projects/myproject/src/helpers/functions.ts :: Config file name: /user/username/projects/myproject/tsconfig.json -Info 220 [16:06:46.000] Search path: /user/username/projects/myproject/src -Info 221 [16:06:47.000] For info: /user/username/projects/myproject/src/main.ts :: Config file name: /user/username/projects/myproject/tsconfig.json -Info 222 [16:06:48.000] Search path: /user/username/projects/myproject/src -Info 223 [16:06:49.000] For info: /user/username/projects/myproject/src/main.ts :: Config file name: /user/username/projects/myproject/tsconfig.json -Info 224 [16:06:50.000] Search path: /user/username/projects/myproject/src -Info 225 [16:06:51.000] For info: /user/username/projects/myproject/src/main.ts :: Config file name: /user/username/projects/myproject/tsconfig.json +Info 202 [00:06:28.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/target/src/helpers/functions.d.ts 500 undefined WatchType: Closed Script info +Info 203 [00:06:29.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/target/src/helpers/functions.d.ts.map 500 undefined WatchType: Closed Script info +Info 204 [00:06:30.000] Finding references to /user/username/projects/myproject/src/helpers/functions.ts position 13 in project /user/username/projects/myproject/tsconfig-indirect1.json +Info 205 [00:06:31.000] Search path: /user/username/projects/myproject/src/helpers +Info 206 [00:06:32.000] For info: /user/username/projects/myproject/src/helpers/functions.ts :: Config file name: /user/username/projects/myproject/tsconfig.json +Info 207 [00:06:33.000] Search path: /user/username/projects/myproject/src/helpers +Info 208 [00:06:34.000] For info: /user/username/projects/myproject/src/helpers/functions.ts :: Config file name: /user/username/projects/myproject/tsconfig.json +Info 209 [00:06:35.000] Search path: /user/username/projects/myproject/src +Info 210 [00:06:36.000] For info: /user/username/projects/myproject/src/main.ts :: Config file name: /user/username/projects/myproject/tsconfig.json +Info 211 [00:06:37.000] Search path: /user/username/projects/myproject/src +Info 212 [00:06:38.000] For info: /user/username/projects/myproject/src/main.ts :: Config file name: /user/username/projects/myproject/tsconfig.json +Info 213 [00:06:39.000] Search path: /user/username/projects/myproject/src +Info 214 [00:06:40.000] For info: /user/username/projects/myproject/src/main.ts :: Config file name: /user/username/projects/myproject/tsconfig.json +Info 215 [00:06:41.000] Finding references to /user/username/projects/myproject/src/helpers/functions.ts position 13 in project /user/username/projects/myproject/tsconfig-indirect2.json +Info 216 [00:06:42.000] Search path: /user/username/projects/myproject/src/helpers +Info 217 [00:06:43.000] For info: /user/username/projects/myproject/src/helpers/functions.ts :: Config file name: /user/username/projects/myproject/tsconfig.json +Info 218 [00:06:44.000] Search path: /user/username/projects/myproject/src/helpers +Info 219 [00:06:45.000] For info: /user/username/projects/myproject/src/helpers/functions.ts :: Config file name: /user/username/projects/myproject/tsconfig.json +Info 220 [00:06:46.000] Search path: /user/username/projects/myproject/src +Info 221 [00:06:47.000] For info: /user/username/projects/myproject/src/main.ts :: Config file name: /user/username/projects/myproject/tsconfig.json +Info 222 [00:06:48.000] Search path: /user/username/projects/myproject/src +Info 223 [00:06:49.000] For info: /user/username/projects/myproject/src/main.ts :: Config file name: /user/username/projects/myproject/tsconfig.json +Info 224 [00:06:50.000] Search path: /user/username/projects/myproject/src +Info 225 [00:06:51.000] For info: /user/username/projects/myproject/src/main.ts :: Config file name: /user/username/projects/myproject/tsconfig.json After request PolledWatches:: @@ -1017,7 +1017,7 @@ FsWatchesRecursive:: /user/username/projects/myproject/src: {} -Info 226 [16:06:52.000] response: +Info 226 [00:06:52.000] response: { "response": { "refs": [ @@ -1166,59 +1166,59 @@ Info 226 [16:06:52.000] response: }, "responseRequired": true } -Info 227 [16:06:53.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/src/main.ts 500 undefined WatchType: Closed Script info -Info 228 [16:06:54.000] Project '/user/username/projects/myproject/tsconfig.json' (Configured) -Info 228 [16:06:55.000] Files (0) - -Info 228 [16:06:56.000] ----------------------------------------------- -Info 228 [16:06:57.000] Project '/user/username/projects/myproject/tsconfig-src.json' (Configured) -Info 228 [16:06:58.000] Files (3) - -Info 228 [16:06:59.000] ----------------------------------------------- -Info 228 [16:07:00.000] Project '/user/username/projects/myproject/tsconfig-indirect1.json' (Configured) -Info 228 [16:07:01.000] Files (4) - -Info 228 [16:07:02.000] ----------------------------------------------- -Info 228 [16:07:03.000] Project '/user/username/projects/myproject/tsconfig-indirect2.json' (Configured) -Info 228 [16:07:04.000] Files (4) - -Info 228 [16:07:05.000] ----------------------------------------------- -Info 228 [16:07:06.000] Project '/dev/null/inferredProject1*' (Inferred) -Info 228 [16:07:07.000] Files (2) - -Info 228 [16:07:08.000] ----------------------------------------------- -Info 228 [16:07:09.000] Open files: -Info 228 [16:07:10.000] FileName: /dummy/dummy.ts ProjectRootPath: undefined -Info 228 [16:07:11.000] Projects: /dev/null/inferredProject1* -Info 228 [16:07:12.000] FileWatcher:: Added:: WatchInfo: /dummy/dummy.ts 500 undefined WatchType: Closed Script info -Info 229 [16:07:13.000] Project '/user/username/projects/myproject/tsconfig.json' (Configured) -Info 229 [16:07:14.000] Files (0) - -Info 229 [16:07:15.000] ----------------------------------------------- -Info 229 [16:07:16.000] Project '/user/username/projects/myproject/tsconfig-src.json' (Configured) -Info 229 [16:07:17.000] Files (3) - -Info 229 [16:07:18.000] ----------------------------------------------- -Info 229 [16:07:19.000] Project '/user/username/projects/myproject/tsconfig-indirect1.json' (Configured) -Info 229 [16:07:20.000] Files (4) - -Info 229 [16:07:21.000] ----------------------------------------------- -Info 229 [16:07:22.000] Project '/user/username/projects/myproject/tsconfig-indirect2.json' (Configured) -Info 229 [16:07:23.000] Files (4) - -Info 229 [16:07:24.000] ----------------------------------------------- -Info 229 [16:07:25.000] Project '/dev/null/inferredProject1*' (Inferred) -Info 229 [16:07:26.000] Files (2) - -Info 229 [16:07:27.000] ----------------------------------------------- -Info 229 [16:07:28.000] Open files: -Info 229 [16:07:29.000] Search path: /user/username/projects/myproject/indirect3 -Info 230 [16:07:30.000] For info: /user/username/projects/myproject/indirect3/main.ts :: Config file name: /user/username/projects/myproject/indirect3/tsconfig.json -Info 231 [16:07:31.000] Creating configuration project /user/username/projects/myproject/indirect3/tsconfig.json -Info 232 [16:07:32.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/indirect3/tsconfig.json 2000 undefined Project: /user/username/projects/myproject/indirect3/tsconfig.json WatchType: Config file -Info 233 [16:07:33.000] event: +Info 227 [00:06:53.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/src/main.ts 500 undefined WatchType: Closed Script info +Info 228 [00:06:54.000] Project '/user/username/projects/myproject/tsconfig.json' (Configured) +Info 228 [00:06:55.000] Files (0) + +Info 228 [00:06:56.000] ----------------------------------------------- +Info 228 [00:06:57.000] Project '/user/username/projects/myproject/tsconfig-src.json' (Configured) +Info 228 [00:06:58.000] Files (3) + +Info 228 [00:06:59.000] ----------------------------------------------- +Info 228 [00:07:00.000] Project '/user/username/projects/myproject/tsconfig-indirect1.json' (Configured) +Info 228 [00:07:01.000] Files (4) + +Info 228 [00:07:02.000] ----------------------------------------------- +Info 228 [00:07:03.000] Project '/user/username/projects/myproject/tsconfig-indirect2.json' (Configured) +Info 228 [00:07:04.000] Files (4) + +Info 228 [00:07:05.000] ----------------------------------------------- +Info 228 [00:07:06.000] Project '/dev/null/inferredProject1*' (Inferred) +Info 228 [00:07:07.000] Files (2) + +Info 228 [00:07:08.000] ----------------------------------------------- +Info 228 [00:07:09.000] Open files: +Info 228 [00:07:10.000] FileName: /dummy/dummy.ts ProjectRootPath: undefined +Info 228 [00:07:11.000] Projects: /dev/null/inferredProject1* +Info 228 [00:07:12.000] FileWatcher:: Added:: WatchInfo: /dummy/dummy.ts 500 undefined WatchType: Closed Script info +Info 229 [00:07:13.000] Project '/user/username/projects/myproject/tsconfig.json' (Configured) +Info 229 [00:07:14.000] Files (0) + +Info 229 [00:07:15.000] ----------------------------------------------- +Info 229 [00:07:16.000] Project '/user/username/projects/myproject/tsconfig-src.json' (Configured) +Info 229 [00:07:17.000] Files (3) + +Info 229 [00:07:18.000] ----------------------------------------------- +Info 229 [00:07:19.000] Project '/user/username/projects/myproject/tsconfig-indirect1.json' (Configured) +Info 229 [00:07:20.000] Files (4) + +Info 229 [00:07:21.000] ----------------------------------------------- +Info 229 [00:07:22.000] Project '/user/username/projects/myproject/tsconfig-indirect2.json' (Configured) +Info 229 [00:07:23.000] Files (4) + +Info 229 [00:07:24.000] ----------------------------------------------- +Info 229 [00:07:25.000] Project '/dev/null/inferredProject1*' (Inferred) +Info 229 [00:07:26.000] Files (2) + +Info 229 [00:07:27.000] ----------------------------------------------- +Info 229 [00:07:28.000] Open files: +Info 229 [00:07:29.000] Search path: /user/username/projects/myproject/indirect3 +Info 230 [00:07:30.000] For info: /user/username/projects/myproject/indirect3/main.ts :: Config file name: /user/username/projects/myproject/indirect3/tsconfig.json +Info 231 [00:07:31.000] Creating configuration project /user/username/projects/myproject/indirect3/tsconfig.json +Info 232 [00:07:32.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/indirect3/tsconfig.json 2000 undefined Project: /user/username/projects/myproject/indirect3/tsconfig.json WatchType: Config file +Info 233 [00:07:33.000] event: {"seq":0,"type":"event","event":"projectLoadingStart","body":{"projectName":"/user/username/projects/myproject/indirect3/tsconfig.json","reason":"Creating possible configured project for /user/username/projects/myproject/indirect3/main.ts to open"}} -Info 234 [16:07:34.000] Config: /user/username/projects/myproject/indirect3/tsconfig.json : { +Info 234 [00:07:34.000] Config: /user/username/projects/myproject/indirect3/tsconfig.json : { "rootNames": [ "/user/username/projects/myproject/indirect3/main.ts" ], @@ -1227,20 +1227,20 @@ Info 234 [16:07:34.000] Config: /user/username/projects/myproject/indirect3/tsc "configFilePath": "/user/username/projects/myproject/indirect3/tsconfig.json" } } -Info 235 [16:07:35.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/indirect3 1 undefined Config: /user/username/projects/myproject/indirect3/tsconfig.json WatchType: Wild card directory -Info 236 [16:07:36.000] 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 237 [16:07:37.000] Plugins were requested but not running in environment that supports 'require'. Nothing will be loaded -Info 238 [16:07:38.000] Starting updateGraphWorker: Project: /user/username/projects/myproject/indirect3/tsconfig.json -Info 239 [16:07:39.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/target/src/main.d.ts 500 undefined WatchType: Closed Script info -Info 240 [16:07:40.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/target 1 undefined Project: /user/username/projects/myproject/indirect3/tsconfig.json WatchType: Failed Lookup Locations -Info 241 [16:07:41.000] 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 242 [16:07:42.000] 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 243 [16:07:43.000] 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 244 [16:07:44.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/indirect3/tsconfig.json WatchType: Type roots -Info 245 [16:07:45.000] 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 246 [16:07:46.000] Finishing updateGraphWorker: Project: /user/username/projects/myproject/indirect3/tsconfig.json Version: 1 structureChanged: true structureIsReused:: Not Elapsed:: *ms -Info 247 [16:07:47.000] Project '/user/username/projects/myproject/indirect3/tsconfig.json' (Configured) -Info 248 [16:07:48.000] Files (4) +Info 235 [00:07:35.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/indirect3 1 undefined Config: /user/username/projects/myproject/indirect3/tsconfig.json WatchType: Wild card directory +Info 236 [00:07:36.000] 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 237 [00:07:37.000] Plugins were requested but not running in environment that supports 'require'. Nothing will be loaded +Info 238 [00:07:38.000] Starting updateGraphWorker: Project: /user/username/projects/myproject/indirect3/tsconfig.json +Info 239 [00:07:39.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/target/src/main.d.ts 500 undefined WatchType: Closed Script info +Info 240 [00:07:40.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/target 1 undefined Project: /user/username/projects/myproject/indirect3/tsconfig.json WatchType: Failed Lookup Locations +Info 241 [00:07:41.000] 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 242 [00:07:42.000] 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 243 [00:07:43.000] 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 244 [00:07:44.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/indirect3/tsconfig.json WatchType: Type roots +Info 245 [00:07:45.000] 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 246 [00:07:46.000] Finishing updateGraphWorker: Project: /user/username/projects/myproject/indirect3/tsconfig.json Version: 1 structureChanged: true structureIsReused:: Not Elapsed:: *ms +Info 247 [00:07:47.000] Project '/user/username/projects/myproject/indirect3/tsconfig.json' (Configured) +Info 248 [00:07:48.000] Files (4) /a/lib/lib.d.ts /user/username/projects/myproject/target/src/helpers/functions.d.ts /user/username/projects/myproject/target/src/main.d.ts @@ -1256,26 +1256,26 @@ Info 248 [16:07:48.000] Files (4) main.ts Matched by default include pattern '**/*' -Info 249 [16:07:49.000] ----------------------------------------------- -Info 250 [16:07:50.000] event: +Info 249 [00:07:49.000] ----------------------------------------------- +Info 250 [00:07:50.000] event: {"seq":0,"type":"event","event":"projectLoadingFinish","body":{"projectName":"/user/username/projects/myproject/indirect3/tsconfig.json"}} -Info 251 [16:07:51.000] event: +Info 251 [00:07:51.000] event: {"seq":0,"type":"event","event":"telemetry","body":{"telemetryEventName":"projectInfo","payload":{"projectId":"5b0817f69b6871821661b976aa73f4f2533b37c5f4b920541094c2d727d0dc39","fileStats":{"js":0,"jsSize":0,"jsx":0,"jsxSize":0,"ts":1,"tsSize":57,"tsx":0,"tsxSize":0,"dts":3,"dtsSize":494,"deferred":0,"deferredSize":0},"compilerOptions":{"baseUrl":""},"typeAcquisition":{"enable":false,"include":false,"exclude":false},"extends":false,"files":false,"include":false,"exclude":false,"compileOnSave":false,"configFileName":"tsconfig.json","projectType":"configured","languageServiceEnabled":true,"version":"FakeVersion"}}} -Info 252 [16:07:52.000] event: +Info 252 [00:07:52.000] event: {"seq":0,"type":"event","event":"configFileDiag","body":{"triggerFile":"/user/username/projects/myproject/indirect3/main.ts","configFile":"/user/username/projects/myproject/indirect3/tsconfig.json","diagnostics":[]}} -Info 253 [16:07:53.000] `remove Project:: -Info 254 [16:07:54.000] Project '/user/username/projects/myproject/tsconfig.json' (Configured) -Info 255 [16:07:55.000] Files (0) +Info 253 [00:07:53.000] `remove Project:: +Info 254 [00:07:54.000] Project '/user/username/projects/myproject/tsconfig.json' (Configured) +Info 255 [00:07:55.000] Files (0) -Info 256 [16:07:56.000] ----------------------------------------------- -Info 257 [16:07:57.000] FileWatcher:: Close:: WatchInfo: /user/username/projects/myproject/tsconfig.json 2000 undefined Project: /user/username/projects/myproject/tsconfig.json WatchType: Config file -Info 258 [16:07:58.000] DirectoryWatcher:: Close:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/tsconfig.json WatchType: Type roots -Info 259 [16:07:59.000] 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 260 [16:08:00.000] `remove Project:: -Info 261 [16:08:01.000] Project '/user/username/projects/myproject/tsconfig-src.json' (Configured) -Info 262 [16:08:02.000] Files (3) +Info 256 [00:07:56.000] ----------------------------------------------- +Info 257 [00:07:57.000] FileWatcher:: Close:: WatchInfo: /user/username/projects/myproject/tsconfig.json 2000 undefined Project: /user/username/projects/myproject/tsconfig.json WatchType: Config file +Info 258 [00:07:58.000] DirectoryWatcher:: Close:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/tsconfig.json WatchType: Type roots +Info 259 [00:07:59.000] 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 260 [00:08:00.000] `remove Project:: +Info 261 [00:08:01.000] Project '/user/username/projects/myproject/tsconfig-src.json' (Configured) +Info 262 [00:08:02.000] Files (3) /a/lib/lib.d.ts /user/username/projects/myproject/src/helpers/functions.ts /user/username/projects/myproject/src/main.ts @@ -1289,12 +1289,12 @@ Info 262 [16:08:02.000] Files (3) src/main.ts Matched by include pattern './src/**/*' in 'tsconfig-src.json' -Info 263 [16:08:03.000] ----------------------------------------------- -Info 264 [16:08:04.000] DirectoryWatcher:: Close:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/tsconfig-src.json WatchType: Type roots -Info 265 [16:08:05.000] 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 266 [16:08:06.000] `remove Project:: -Info 267 [16:08:07.000] Project '/user/username/projects/myproject/tsconfig-indirect1.json' (Configured) -Info 268 [16:08:08.000] Files (4) +Info 263 [00:08:03.000] ----------------------------------------------- +Info 264 [00:08:04.000] DirectoryWatcher:: Close:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/tsconfig-src.json WatchType: Type roots +Info 265 [00:08:05.000] 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 266 [00:08:06.000] `remove Project:: +Info 267 [00:08:07.000] Project '/user/username/projects/myproject/tsconfig-indirect1.json' (Configured) +Info 268 [00:08:08.000] Files (4) /a/lib/lib.d.ts /user/username/projects/myproject/src/helpers/functions.ts /user/username/projects/myproject/src/main.ts @@ -1310,13 +1310,13 @@ Info 268 [16:08:08.000] Files (4) indirect1/main.ts Part of 'files' list in tsconfig.json -Info 269 [16:08:09.000] ----------------------------------------------- -Info 270 [16:08:10.000] FileWatcher:: Close:: WatchInfo: /user/username/projects/myproject/tsconfig-indirect1.json 2000 undefined Project: /user/username/projects/myproject/tsconfig.json WatchType: Config file -Info 271 [16:08:11.000] DirectoryWatcher:: Close:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/tsconfig-indirect1.json WatchType: Type roots -Info 272 [16:08:12.000] 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 273 [16:08:13.000] `remove Project:: -Info 274 [16:08:14.000] Project '/user/username/projects/myproject/tsconfig-indirect2.json' (Configured) -Info 275 [16:08:15.000] Files (4) +Info 269 [00:08:09.000] ----------------------------------------------- +Info 270 [00:08:10.000] FileWatcher:: Close:: WatchInfo: /user/username/projects/myproject/tsconfig-indirect1.json 2000 undefined Project: /user/username/projects/myproject/tsconfig.json WatchType: Config file +Info 271 [00:08:11.000] DirectoryWatcher:: Close:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/tsconfig-indirect1.json WatchType: Type roots +Info 272 [00:08:12.000] 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 273 [00:08:13.000] `remove Project:: +Info 274 [00:08:14.000] Project '/user/username/projects/myproject/tsconfig-indirect2.json' (Configured) +Info 275 [00:08:15.000] Files (4) /a/lib/lib.d.ts /user/username/projects/myproject/src/helpers/functions.ts /user/username/projects/myproject/src/main.ts @@ -1332,16 +1332,16 @@ Info 275 [16:08:15.000] Files (4) indirect2/main.ts Part of 'files' list in tsconfig.json -Info 276 [16:08:16.000] ----------------------------------------------- -Info 277 [16:08:17.000] DirectoryWatcher:: Close:: WatchInfo: /user/username/projects/myproject/src 1 undefined Config: /user/username/projects/myproject/tsconfig-src.json WatchType: Wild card directory -Info 278 [16:08:18.000] 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 279 [16:08:19.000] FileWatcher:: Close:: WatchInfo: /user/username/projects/myproject/tsconfig-src.json 2000 undefined Project: /user/username/projects/myproject/tsconfig.json WatchType: Config file -Info 280 [16:08:20.000] FileWatcher:: Close:: WatchInfo: /user/username/projects/myproject/tsconfig-indirect2.json 2000 undefined Project: /user/username/projects/myproject/tsconfig.json WatchType: Config file -Info 281 [16:08:21.000] DirectoryWatcher:: Close:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/tsconfig-indirect2.json WatchType: Type roots -Info 282 [16:08:22.000] 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 283 [16:08:23.000] `remove Project:: -Info 284 [16:08:24.000] Project '/dev/null/inferredProject1*' (Inferred) -Info 285 [16:08:25.000] Files (2) +Info 276 [00:08:16.000] ----------------------------------------------- +Info 277 [00:08:17.000] DirectoryWatcher:: Close:: WatchInfo: /user/username/projects/myproject/src 1 undefined Config: /user/username/projects/myproject/tsconfig-src.json WatchType: Wild card directory +Info 278 [00:08:18.000] 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 279 [00:08:19.000] FileWatcher:: Close:: WatchInfo: /user/username/projects/myproject/tsconfig-src.json 2000 undefined Project: /user/username/projects/myproject/tsconfig.json WatchType: Config file +Info 280 [00:08:20.000] FileWatcher:: Close:: WatchInfo: /user/username/projects/myproject/tsconfig-indirect2.json 2000 undefined Project: /user/username/projects/myproject/tsconfig.json WatchType: Config file +Info 281 [00:08:21.000] DirectoryWatcher:: Close:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/tsconfig-indirect2.json WatchType: Type roots +Info 282 [00:08:22.000] 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 283 [00:08:23.000] `remove Project:: +Info 284 [00:08:24.000] Project '/dev/null/inferredProject1*' (Inferred) +Info 285 [00:08:25.000] Files (2) /a/lib/lib.d.ts /dummy/dummy.ts @@ -1351,21 +1351,21 @@ Info 285 [16:08:25.000] Files (2) dummy.ts Root file specified for compilation -Info 286 [16:08:26.000] ----------------------------------------------- -Info 287 [16:08:27.000] DirectoryWatcher:: Close:: WatchInfo: /dummy/node_modules/@types 1 undefined Project: /dev/null/inferredProject1* WatchType: Type roots -Info 288 [16:08:28.000] Elapsed:: *ms DirectoryWatcher:: Close:: WatchInfo: /dummy/node_modules/@types 1 undefined Project: /dev/null/inferredProject1* WatchType: Type roots -Info 289 [16:08:29.000] FileWatcher:: Close:: WatchInfo: /dummy/dummy.ts 500 undefined WatchType: Closed Script info -Info 290 [16:08:30.000] FileWatcher:: Close:: WatchInfo: /user/username/projects/myproject/src/main.ts 500 undefined WatchType: Closed Script info -Info 291 [16:08:31.000] FileWatcher:: Close:: WatchInfo: /user/username/projects/myproject/indirect1/main.ts 500 undefined WatchType: Closed Script info -Info 292 [16:08:32.000] FileWatcher:: Close:: WatchInfo: /user/username/projects/myproject/indirect2/main.ts 500 undefined WatchType: Closed Script info -Info 293 [16:08:33.000] Project '/user/username/projects/myproject/indirect3/tsconfig.json' (Configured) -Info 293 [16:08:34.000] Files (4) - -Info 293 [16:08:35.000] ----------------------------------------------- -Info 293 [16:08:36.000] Open files: -Info 293 [16:08:37.000] FileName: /user/username/projects/myproject/indirect3/main.ts ProjectRootPath: undefined -Info 293 [16:08:38.000] Projects: /user/username/projects/myproject/indirect3/tsconfig.json -Info 293 [16:08:39.000] request: +Info 286 [00:08:26.000] ----------------------------------------------- +Info 287 [00:08:27.000] DirectoryWatcher:: Close:: WatchInfo: /dummy/node_modules/@types 1 undefined Project: /dev/null/inferredProject1* WatchType: Type roots +Info 288 [00:08:28.000] Elapsed:: *ms DirectoryWatcher:: Close:: WatchInfo: /dummy/node_modules/@types 1 undefined Project: /dev/null/inferredProject1* WatchType: Type roots +Info 289 [00:08:29.000] FileWatcher:: Close:: WatchInfo: /dummy/dummy.ts 500 undefined WatchType: Closed Script info +Info 290 [00:08:30.000] FileWatcher:: Close:: WatchInfo: /user/username/projects/myproject/src/main.ts 500 undefined WatchType: Closed Script info +Info 291 [00:08:31.000] FileWatcher:: Close:: WatchInfo: /user/username/projects/myproject/indirect1/main.ts 500 undefined WatchType: Closed Script info +Info 292 [00:08:32.000] FileWatcher:: Close:: WatchInfo: /user/username/projects/myproject/indirect2/main.ts 500 undefined WatchType: Closed Script info +Info 293 [00:08:33.000] Project '/user/username/projects/myproject/indirect3/tsconfig.json' (Configured) +Info 293 [00:08:34.000] Files (4) + +Info 293 [00:08:35.000] ----------------------------------------------- +Info 293 [00:08:36.000] Open files: +Info 293 [00:08:37.000] FileName: /user/username/projects/myproject/indirect3/main.ts ProjectRootPath: undefined +Info 293 [00:08:38.000] Projects: /user/username/projects/myproject/indirect3/tsconfig.json +Info 293 [00:08:39.000] request: { "command": "references", "arguments": { @@ -1404,16 +1404,16 @@ FsWatchesRecursive:: /user/username/projects/myproject/target: {} -Info 294 [16:08:40.000] Finding references to /user/username/projects/myproject/indirect3/main.ts position 9 in project /user/username/projects/myproject/indirect3/tsconfig.json -Info 295 [16:08:41.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/target/src/main.d.ts.map 500 undefined WatchType: Closed Script info -Info 296 [16:08:42.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/src/main.ts 500 undefined WatchType: Closed Script info -Info 297 [16:08:43.000] Search path: /user/username/projects/myproject/src -Info 298 [16:08:44.000] For info: /user/username/projects/myproject/src/main.ts :: Config file name: /user/username/projects/myproject/tsconfig.json -Info 299 [16:08:45.000] Creating configuration project /user/username/projects/myproject/tsconfig.json -Info 300 [16:08:46.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/tsconfig.json 2000 undefined Project: /user/username/projects/myproject/tsconfig.json WatchType: Config file -Info 301 [16:08:47.000] event: +Info 294 [00:08:40.000] Finding references to /user/username/projects/myproject/indirect3/main.ts position 9 in project /user/username/projects/myproject/indirect3/tsconfig.json +Info 295 [00:08:41.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/target/src/main.d.ts.map 500 undefined WatchType: Closed Script info +Info 296 [00:08:42.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/src/main.ts 500 undefined WatchType: Closed Script info +Info 297 [00:08:43.000] Search path: /user/username/projects/myproject/src +Info 298 [00:08:44.000] For info: /user/username/projects/myproject/src/main.ts :: Config file name: /user/username/projects/myproject/tsconfig.json +Info 299 [00:08:45.000] Creating configuration project /user/username/projects/myproject/tsconfig.json +Info 300 [00:08:46.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/tsconfig.json 2000 undefined Project: /user/username/projects/myproject/tsconfig.json WatchType: Config file +Info 301 [00:08:47.000] event: {"seq":0,"type":"event","event":"projectLoadingStart","body":{"projectName":"/user/username/projects/myproject/tsconfig.json","reason":"Creating project for original file: /user/username/projects/myproject/src/main.ts for location: /user/username/projects/myproject/target/src/main.d.ts"}} -Info 302 [16:08:48.000] Config: /user/username/projects/myproject/tsconfig.json : { +Info 302 [00:08:48.000] Config: /user/username/projects/myproject/tsconfig.json : { "rootNames": [], "options": { "configFilePath": "/user/username/projects/myproject/tsconfig.json" @@ -1429,9 +1429,9 @@ Info 302 [16:08:48.000] Config: /user/username/projects/myproject/tsconfig.json } ] } -Info 303 [16:08:49.000] Plugins were requested but not running in environment that supports 'require'. Nothing will be loaded -Info 304 [16:08:50.000] Starting updateGraphWorker: Project: /user/username/projects/myproject/tsconfig.json -Info 305 [16:08:51.000] Config: /user/username/projects/myproject/tsconfig-indirect1.json : { +Info 303 [00:08:49.000] Plugins were requested but not running in environment that supports 'require'. Nothing will be loaded +Info 304 [00:08:50.000] Starting updateGraphWorker: Project: /user/username/projects/myproject/tsconfig.json +Info 305 [00:08:51.000] Config: /user/username/projects/myproject/tsconfig-indirect1.json : { "rootNames": [ "/user/username/projects/myproject/indirect1/main.ts" ], @@ -1448,8 +1448,8 @@ Info 305 [16:08:51.000] Config: /user/username/projects/myproject/tsconfig-indi } ] } -Info 306 [16:08:52.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/tsconfig-indirect1.json 2000 undefined Project: /user/username/projects/myproject/tsconfig.json WatchType: Config file -Info 307 [16:08:53.000] Config: /user/username/projects/myproject/tsconfig-src.json : { +Info 306 [00:08:52.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/tsconfig-indirect1.json 2000 undefined Project: /user/username/projects/myproject/tsconfig.json WatchType: Config file +Info 307 [00:08:53.000] Config: /user/username/projects/myproject/tsconfig-src.json : { "rootNames": [ "/user/username/projects/myproject/src/main.ts", "/user/username/projects/myproject/src/helpers/functions.ts" @@ -1461,10 +1461,10 @@ Info 307 [16:08:53.000] Config: /user/username/projects/myproject/tsconfig-src. "configFilePath": "/user/username/projects/myproject/tsconfig-src.json" } } -Info 308 [16:08:54.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/tsconfig-src.json 2000 undefined Project: /user/username/projects/myproject/tsconfig.json WatchType: Config file -Info 309 [16:08:55.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/src 1 undefined Config: /user/username/projects/myproject/tsconfig-src.json WatchType: Wild card directory -Info 310 [16:08:56.000] 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 311 [16:08:57.000] Config: /user/username/projects/myproject/tsconfig-indirect2.json : { +Info 308 [00:08:54.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/tsconfig-src.json 2000 undefined Project: /user/username/projects/myproject/tsconfig.json WatchType: Config file +Info 309 [00:08:55.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/src 1 undefined Config: /user/username/projects/myproject/tsconfig-src.json WatchType: Wild card directory +Info 310 [00:08:56.000] 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 311 [00:08:57.000] Config: /user/username/projects/myproject/tsconfig-indirect2.json : { "rootNames": [ "/user/username/projects/myproject/indirect2/main.ts" ], @@ -1481,23 +1481,23 @@ Info 311 [16:08:57.000] Config: /user/username/projects/myproject/tsconfig-indi } ] } -Info 312 [16:08:58.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/tsconfig-indirect2.json 2000 undefined Project: /user/username/projects/myproject/tsconfig.json WatchType: Config file -Info 313 [16:08:59.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/tsconfig.json WatchType: Type roots -Info 314 [16:09:00.000] 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 315 [16:09:01.000] Finishing updateGraphWorker: Project: /user/username/projects/myproject/tsconfig.json Version: 1 structureChanged: true structureIsReused:: Not Elapsed:: *ms -Info 316 [16:09:02.000] Different program with same set of files -Info 317 [16:09:03.000] event: +Info 312 [00:08:58.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/tsconfig-indirect2.json 2000 undefined Project: /user/username/projects/myproject/tsconfig.json WatchType: Config file +Info 313 [00:08:59.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/tsconfig.json WatchType: Type roots +Info 314 [00:09:00.000] 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 315 [00:09:01.000] Finishing updateGraphWorker: Project: /user/username/projects/myproject/tsconfig.json Version: 1 structureChanged: true structureIsReused:: Not Elapsed:: *ms +Info 316 [00:09:02.000] Different program with same set of files +Info 317 [00:09:03.000] event: {"seq":0,"type":"event","event":"projectLoadingFinish","body":{"projectName":"/user/username/projects/myproject/tsconfig.json"}} -Info 318 [16:09:04.000] Creating configuration project /user/username/projects/myproject/tsconfig-src.json -Info 319 [16:09:05.000] event: +Info 318 [00:09:04.000] Creating configuration project /user/username/projects/myproject/tsconfig-src.json +Info 319 [00:09:05.000] event: {"seq":0,"type":"event","event":"projectLoadingStart","body":{"projectName":"/user/username/projects/myproject/tsconfig-src.json","reason":"Creating project referenced in solution /user/username/projects/myproject/tsconfig.json to find possible configured project for original file: /user/username/projects/myproject/src/main.ts for location: /user/username/projects/myproject/target/src/main.d.ts"}} -Info 320 [16:09:06.000] Plugins were requested but not running in environment that supports 'require'. Nothing will be loaded -Info 321 [16:09:07.000] Starting updateGraphWorker: Project: /user/username/projects/myproject/tsconfig-src.json -Info 322 [16:09:08.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/tsconfig-src.json WatchType: Type roots -Info 323 [16:09:09.000] 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 324 [16:09:10.000] Finishing updateGraphWorker: Project: /user/username/projects/myproject/tsconfig-src.json Version: 1 structureChanged: true structureIsReused:: Not Elapsed:: *ms -Info 325 [16:09:11.000] Project '/user/username/projects/myproject/tsconfig-src.json' (Configured) -Info 326 [16:09:12.000] Files (3) +Info 320 [00:09:06.000] Plugins were requested but not running in environment that supports 'require'. Nothing will be loaded +Info 321 [00:09:07.000] Starting updateGraphWorker: Project: /user/username/projects/myproject/tsconfig-src.json +Info 322 [00:09:08.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/tsconfig-src.json WatchType: Type roots +Info 323 [00:09:09.000] 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 324 [00:09:10.000] Finishing updateGraphWorker: Project: /user/username/projects/myproject/tsconfig-src.json Version: 1 structureChanged: true structureIsReused:: Not Elapsed:: *ms +Info 325 [00:09:11.000] Project '/user/username/projects/myproject/tsconfig-src.json' (Configured) +Info 326 [00:09:12.000] Files (3) /a/lib/lib.d.ts /user/username/projects/myproject/src/helpers/functions.ts /user/username/projects/myproject/src/main.ts @@ -1511,29 +1511,29 @@ Info 326 [16:09:12.000] Files (3) src/main.ts Matched by include pattern './src/**/*' in 'tsconfig-src.json' -Info 327 [16:09:13.000] ----------------------------------------------- -Info 328 [16:09:14.000] event: +Info 327 [00:09:13.000] ----------------------------------------------- +Info 328 [00:09:14.000] event: {"seq":0,"type":"event","event":"projectLoadingFinish","body":{"projectName":"/user/username/projects/myproject/tsconfig-src.json"}} -Info 329 [16:09:15.000] Search path: /user/username/projects/myproject/src -Info 330 [16:09:16.000] For info: /user/username/projects/myproject/src/main.ts :: Config file name: /user/username/projects/myproject/tsconfig.json -Info 331 [16:09:17.000] Search path: /user/username/projects/myproject/src -Info 332 [16:09:18.000] For info: /user/username/projects/myproject/src/main.ts :: Config file name: /user/username/projects/myproject/tsconfig.json -Info 333 [16:09:19.000] Search path: /user/username/projects/myproject/src/helpers -Info 334 [16:09:20.000] For info: /user/username/projects/myproject/src/helpers/functions.ts :: Config file name: /user/username/projects/myproject/tsconfig.json -Info 335 [16:09:21.000] Search path: /user/username/projects/myproject/src/helpers -Info 336 [16:09:22.000] For info: /user/username/projects/myproject/src/helpers/functions.ts :: Config file name: /user/username/projects/myproject/tsconfig.json -Info 337 [16:09:23.000] Finding references to /user/username/projects/myproject/src/main.ts position 9 in project /user/username/projects/myproject/tsconfig-src.json -Info 338 [16:09:24.000] Creating configuration project /user/username/projects/myproject/tsconfig-indirect1.json -Info 339 [16:09:25.000] event: +Info 329 [00:09:15.000] Search path: /user/username/projects/myproject/src +Info 330 [00:09:16.000] For info: /user/username/projects/myproject/src/main.ts :: Config file name: /user/username/projects/myproject/tsconfig.json +Info 331 [00:09:17.000] Search path: /user/username/projects/myproject/src +Info 332 [00:09:18.000] For info: /user/username/projects/myproject/src/main.ts :: Config file name: /user/username/projects/myproject/tsconfig.json +Info 333 [00:09:19.000] Search path: /user/username/projects/myproject/src/helpers +Info 334 [00:09:20.000] For info: /user/username/projects/myproject/src/helpers/functions.ts :: Config file name: /user/username/projects/myproject/tsconfig.json +Info 335 [00:09:21.000] Search path: /user/username/projects/myproject/src/helpers +Info 336 [00:09:22.000] For info: /user/username/projects/myproject/src/helpers/functions.ts :: Config file name: /user/username/projects/myproject/tsconfig.json +Info 337 [00:09:23.000] Finding references to /user/username/projects/myproject/src/main.ts position 9 in project /user/username/projects/myproject/tsconfig-src.json +Info 338 [00:09:24.000] Creating configuration project /user/username/projects/myproject/tsconfig-indirect1.json +Info 339 [00:09:25.000] event: {"seq":0,"type":"event","event":"projectLoadingStart","body":{"projectName":"/user/username/projects/myproject/tsconfig-indirect1.json","reason":"Creating project referenced by : /user/username/projects/myproject/tsconfig.json as it references project /user/username/projects/myproject/tsconfig-src.json"}} -Info 340 [16:09:26.000] Plugins were requested but not running in environment that supports 'require'. Nothing will be loaded -Info 341 [16:09:27.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/indirect1/main.ts 500 undefined WatchType: Closed Script info -Info 342 [16:09:28.000] Starting updateGraphWorker: Project: /user/username/projects/myproject/tsconfig-indirect1.json -Info 343 [16:09:29.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/tsconfig-indirect1.json WatchType: Type roots -Info 344 [16:09:30.000] 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 345 [16:09:31.000] Finishing updateGraphWorker: Project: /user/username/projects/myproject/tsconfig-indirect1.json Version: 1 structureChanged: true structureIsReused:: Not Elapsed:: *ms -Info 346 [16:09:32.000] Project '/user/username/projects/myproject/tsconfig-indirect1.json' (Configured) -Info 347 [16:09:33.000] Files (4) +Info 340 [00:09:26.000] Plugins were requested but not running in environment that supports 'require'. Nothing will be loaded +Info 341 [00:09:27.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/indirect1/main.ts 500 undefined WatchType: Closed Script info +Info 342 [00:09:28.000] Starting updateGraphWorker: Project: /user/username/projects/myproject/tsconfig-indirect1.json +Info 343 [00:09:29.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/tsconfig-indirect1.json WatchType: Type roots +Info 344 [00:09:30.000] 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 345 [00:09:31.000] Finishing updateGraphWorker: Project: /user/username/projects/myproject/tsconfig-indirect1.json Version: 1 structureChanged: true structureIsReused:: Not Elapsed:: *ms +Info 346 [00:09:32.000] Project '/user/username/projects/myproject/tsconfig-indirect1.json' (Configured) +Info 347 [00:09:33.000] Files (4) /a/lib/lib.d.ts /user/username/projects/myproject/src/helpers/functions.ts /user/username/projects/myproject/src/main.ts @@ -1549,20 +1549,20 @@ Info 347 [16:09:33.000] Files (4) indirect1/main.ts Part of 'files' list in tsconfig.json -Info 348 [16:09:34.000] ----------------------------------------------- -Info 349 [16:09:35.000] event: +Info 348 [00:09:34.000] ----------------------------------------------- +Info 349 [00:09:35.000] event: {"seq":0,"type":"event","event":"projectLoadingFinish","body":{"projectName":"/user/username/projects/myproject/tsconfig-indirect1.json"}} -Info 350 [16:09:36.000] Creating configuration project /user/username/projects/myproject/tsconfig-indirect2.json -Info 351 [16:09:37.000] event: +Info 350 [00:09:36.000] Creating configuration project /user/username/projects/myproject/tsconfig-indirect2.json +Info 351 [00:09:37.000] event: {"seq":0,"type":"event","event":"projectLoadingStart","body":{"projectName":"/user/username/projects/myproject/tsconfig-indirect2.json","reason":"Creating project referenced by : /user/username/projects/myproject/tsconfig.json as it references project /user/username/projects/myproject/tsconfig-src.json"}} -Info 352 [16:09:38.000] Plugins were requested but not running in environment that supports 'require'. Nothing will be loaded -Info 353 [16:09:39.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/indirect2/main.ts 500 undefined WatchType: Closed Script info -Info 354 [16:09:40.000] Starting updateGraphWorker: Project: /user/username/projects/myproject/tsconfig-indirect2.json -Info 355 [16:09:41.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/tsconfig-indirect2.json WatchType: Type roots -Info 356 [16:09:42.000] 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 357 [16:09:43.000] Finishing updateGraphWorker: Project: /user/username/projects/myproject/tsconfig-indirect2.json Version: 1 structureChanged: true structureIsReused:: Not Elapsed:: *ms -Info 358 [16:09:44.000] Project '/user/username/projects/myproject/tsconfig-indirect2.json' (Configured) -Info 359 [16:09:45.000] Files (4) +Info 352 [00:09:38.000] Plugins were requested but not running in environment that supports 'require'. Nothing will be loaded +Info 353 [00:09:39.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/indirect2/main.ts 500 undefined WatchType: Closed Script info +Info 354 [00:09:40.000] Starting updateGraphWorker: Project: /user/username/projects/myproject/tsconfig-indirect2.json +Info 355 [00:09:41.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/tsconfig-indirect2.json WatchType: Type roots +Info 356 [00:09:42.000] 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 357 [00:09:43.000] Finishing updateGraphWorker: Project: /user/username/projects/myproject/tsconfig-indirect2.json Version: 1 structureChanged: true structureIsReused:: Not Elapsed:: *ms +Info 358 [00:09:44.000] Project '/user/username/projects/myproject/tsconfig-indirect2.json' (Configured) +Info 359 [00:09:45.000] Files (4) /a/lib/lib.d.ts /user/username/projects/myproject/src/helpers/functions.ts /user/username/projects/myproject/src/main.ts @@ -1578,31 +1578,31 @@ Info 359 [16:09:45.000] Files (4) indirect2/main.ts Part of 'files' list in tsconfig.json -Info 360 [16:09:46.000] ----------------------------------------------- -Info 361 [16:09:47.000] event: +Info 360 [00:09:46.000] ----------------------------------------------- +Info 361 [00:09:47.000] event: {"seq":0,"type":"event","event":"projectLoadingFinish","body":{"projectName":"/user/username/projects/myproject/tsconfig-indirect2.json"}} -Info 362 [16:09:48.000] Finding references to /user/username/projects/myproject/src/helpers/functions.ts position 13 in project /user/username/projects/myproject/tsconfig-indirect1.json -Info 363 [16:09:49.000] Search path: /user/username/projects/myproject/src/helpers -Info 364 [16:09:50.000] For info: /user/username/projects/myproject/src/helpers/functions.ts :: Config file name: /user/username/projects/myproject/tsconfig.json -Info 365 [16:09:51.000] Search path: /user/username/projects/myproject/src/helpers -Info 366 [16:09:52.000] For info: /user/username/projects/myproject/src/helpers/functions.ts :: Config file name: /user/username/projects/myproject/tsconfig.json -Info 367 [16:09:53.000] Search path: /user/username/projects/myproject/src -Info 368 [16:09:54.000] For info: /user/username/projects/myproject/src/main.ts :: Config file name: /user/username/projects/myproject/tsconfig.json -Info 369 [16:09:55.000] Search path: /user/username/projects/myproject/src -Info 370 [16:09:56.000] For info: /user/username/projects/myproject/src/main.ts :: Config file name: /user/username/projects/myproject/tsconfig.json -Info 371 [16:09:57.000] Search path: /user/username/projects/myproject/src -Info 372 [16:09:58.000] For info: /user/username/projects/myproject/src/main.ts :: Config file name: /user/username/projects/myproject/tsconfig.json -Info 373 [16:09:59.000] Finding references to /user/username/projects/myproject/src/helpers/functions.ts position 13 in project /user/username/projects/myproject/tsconfig-indirect2.json -Info 374 [16:10:00.000] Search path: /user/username/projects/myproject/src/helpers -Info 375 [16:10:01.000] For info: /user/username/projects/myproject/src/helpers/functions.ts :: Config file name: /user/username/projects/myproject/tsconfig.json -Info 376 [16:10:02.000] Search path: /user/username/projects/myproject/src/helpers -Info 377 [16:10:03.000] For info: /user/username/projects/myproject/src/helpers/functions.ts :: Config file name: /user/username/projects/myproject/tsconfig.json -Info 378 [16:10:04.000] Search path: /user/username/projects/myproject/src -Info 379 [16:10:05.000] For info: /user/username/projects/myproject/src/main.ts :: Config file name: /user/username/projects/myproject/tsconfig.json -Info 380 [16:10:06.000] Search path: /user/username/projects/myproject/src -Info 381 [16:10:07.000] For info: /user/username/projects/myproject/src/main.ts :: Config file name: /user/username/projects/myproject/tsconfig.json -Info 382 [16:10:08.000] Search path: /user/username/projects/myproject/src -Info 383 [16:10:09.000] For info: /user/username/projects/myproject/src/main.ts :: Config file name: /user/username/projects/myproject/tsconfig.json +Info 362 [00:09:48.000] Finding references to /user/username/projects/myproject/src/helpers/functions.ts position 13 in project /user/username/projects/myproject/tsconfig-indirect1.json +Info 363 [00:09:49.000] Search path: /user/username/projects/myproject/src/helpers +Info 364 [00:09:50.000] For info: /user/username/projects/myproject/src/helpers/functions.ts :: Config file name: /user/username/projects/myproject/tsconfig.json +Info 365 [00:09:51.000] Search path: /user/username/projects/myproject/src/helpers +Info 366 [00:09:52.000] For info: /user/username/projects/myproject/src/helpers/functions.ts :: Config file name: /user/username/projects/myproject/tsconfig.json +Info 367 [00:09:53.000] Search path: /user/username/projects/myproject/src +Info 368 [00:09:54.000] For info: /user/username/projects/myproject/src/main.ts :: Config file name: /user/username/projects/myproject/tsconfig.json +Info 369 [00:09:55.000] Search path: /user/username/projects/myproject/src +Info 370 [00:09:56.000] For info: /user/username/projects/myproject/src/main.ts :: Config file name: /user/username/projects/myproject/tsconfig.json +Info 371 [00:09:57.000] Search path: /user/username/projects/myproject/src +Info 372 [00:09:58.000] For info: /user/username/projects/myproject/src/main.ts :: Config file name: /user/username/projects/myproject/tsconfig.json +Info 373 [00:09:59.000] Finding references to /user/username/projects/myproject/src/helpers/functions.ts position 13 in project /user/username/projects/myproject/tsconfig-indirect2.json +Info 374 [00:10:00.000] Search path: /user/username/projects/myproject/src/helpers +Info 375 [00:10:01.000] For info: /user/username/projects/myproject/src/helpers/functions.ts :: Config file name: /user/username/projects/myproject/tsconfig.json +Info 376 [00:10:02.000] Search path: /user/username/projects/myproject/src/helpers +Info 377 [00:10:03.000] For info: /user/username/projects/myproject/src/helpers/functions.ts :: Config file name: /user/username/projects/myproject/tsconfig.json +Info 378 [00:10:04.000] Search path: /user/username/projects/myproject/src +Info 379 [00:10:05.000] For info: /user/username/projects/myproject/src/main.ts :: Config file name: /user/username/projects/myproject/tsconfig.json +Info 380 [00:10:06.000] Search path: /user/username/projects/myproject/src +Info 381 [00:10:07.000] For info: /user/username/projects/myproject/src/main.ts :: Config file name: /user/username/projects/myproject/tsconfig.json +Info 382 [00:10:08.000] Search path: /user/username/projects/myproject/src +Info 383 [00:10:09.000] For info: /user/username/projects/myproject/src/main.ts :: Config file name: /user/username/projects/myproject/tsconfig.json After request PolledWatches:: @@ -1649,7 +1649,7 @@ FsWatchesRecursive:: /user/username/projects/myproject/src: {} -Info 384 [16:10:10.000] response: +Info 384 [00:10:10.000] response: { "response": { "refs": [ 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 ce244d5c59a74..8dc2b67c4a7d7 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 @@ -1,5 +1,5 @@ -Info 0 [16:01:17.000] Provided types map file "/a/lib/typesMap.json" doesn't exist -Info 1 [16:01:18.000] request: +Info 0 [00:01:17.000] Provided types map file "/a/lib/typesMap.json" doesn't exist +Info 1 [00:01:18.000] request: { "seq": 0, "type": "request", @@ -233,11 +233,11 @@ FsWatches:: FsWatchesRecursive:: -Info 2 [16:01:19.000] Search path: /user/username/projects/project/src/common/input -Info 3 [16:01:20.000] For info: /user/username/projects/project/src/common/input/keyboard.ts :: Config file name: /user/username/projects/project/src/common/tsconfig.json -Info 4 [16:01:21.000] Creating configuration project /user/username/projects/project/src/common/tsconfig.json -Info 5 [16:01:22.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/project/src/common/tsconfig.json 2000 undefined Project: /user/username/projects/project/src/common/tsconfig.json WatchType: Config file -Info 6 [16:01:23.000] Config: /user/username/projects/project/src/common/tsconfig.json : { +Info 2 [00:01:19.000] Search path: /user/username/projects/project/src/common/input +Info 3 [00:01:20.000] For info: /user/username/projects/project/src/common/input/keyboard.ts :: Config file name: /user/username/projects/project/src/common/tsconfig.json +Info 4 [00:01:21.000] Creating configuration project /user/username/projects/project/src/common/tsconfig.json +Info 5 [00:01:22.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/project/src/common/tsconfig.json 2000 undefined Project: /user/username/projects/project/src/common/tsconfig.json WatchType: Config file +Info 6 [00:01:23.000] Config: /user/username/projects/project/src/common/tsconfig.json : { "rootNames": [ "/user/username/projects/project/src/common/input/keyboard.test.ts", "/user/username/projects/project/src/common/input/keyboard.ts" @@ -251,21 +251,21 @@ Info 6 [16:01:23.000] Config: /user/username/projects/project/src/common/tsco "configFilePath": "/user/username/projects/project/src/common/tsconfig.json" } } -Info 7 [16:01:24.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/project/src/common 1 undefined Config: /user/username/projects/project/src/common/tsconfig.json WatchType: Wild card directory -Info 8 [16:01:25.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/project/src/common 1 undefined Config: /user/username/projects/project/src/common/tsconfig.json WatchType: Wild card directory -Info 9 [16:01:26.000] Plugins were requested but not running in environment that supports 'require'. Nothing will be loaded -Info 10 [16:01:27.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/project/src/common/input/keyboard.test.ts 500 undefined WatchType: Closed Script info -Info 11 [16:01:28.000] Starting updateGraphWorker: Project: /user/username/projects/project/src/common/tsconfig.json -Info 12 [16:01:29.000] FileWatcher:: Added:: WatchInfo: /a/lib/lib.d.ts 500 undefined WatchType: Closed Script info -Info 13 [16:01:30.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/project/src/common/node_modules/@types 1 undefined Project: /user/username/projects/project/src/common/tsconfig.json WatchType: Type roots -Info 14 [16:01:31.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/project/src/common/node_modules/@types 1 undefined Project: /user/username/projects/project/src/common/tsconfig.json WatchType: Type roots -Info 15 [16:01:32.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/project/src/node_modules/@types 1 undefined Project: /user/username/projects/project/src/common/tsconfig.json WatchType: Type roots -Info 16 [16:01:33.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/project/src/node_modules/@types 1 undefined Project: /user/username/projects/project/src/common/tsconfig.json WatchType: Type roots -Info 17 [16:01:34.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/project/node_modules/@types 1 undefined Project: /user/username/projects/project/src/common/tsconfig.json WatchType: Type roots -Info 18 [16:01:35.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/project/node_modules/@types 1 undefined Project: /user/username/projects/project/src/common/tsconfig.json WatchType: Type roots -Info 19 [16:01:36.000] Finishing updateGraphWorker: Project: /user/username/projects/project/src/common/tsconfig.json Version: 1 structureChanged: true structureIsReused:: Not Elapsed:: *ms -Info 20 [16:01:37.000] Project '/user/username/projects/project/src/common/tsconfig.json' (Configured) -Info 21 [16:01:38.000] Files (3) +Info 7 [00:01:24.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/project/src/common 1 undefined Config: /user/username/projects/project/src/common/tsconfig.json WatchType: Wild card directory +Info 8 [00:01:25.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/project/src/common 1 undefined Config: /user/username/projects/project/src/common/tsconfig.json WatchType: Wild card directory +Info 9 [00:01:26.000] Plugins were requested but not running in environment that supports 'require'. Nothing will be loaded +Info 10 [00:01:27.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/project/src/common/input/keyboard.test.ts 500 undefined WatchType: Closed Script info +Info 11 [00:01:28.000] Starting updateGraphWorker: Project: /user/username/projects/project/src/common/tsconfig.json +Info 12 [00:01:29.000] FileWatcher:: Added:: WatchInfo: /a/lib/lib.d.ts 500 undefined WatchType: Closed Script info +Info 13 [00:01:30.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/project/src/common/node_modules/@types 1 undefined Project: /user/username/projects/project/src/common/tsconfig.json WatchType: Type roots +Info 14 [00:01:31.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/project/src/common/node_modules/@types 1 undefined Project: /user/username/projects/project/src/common/tsconfig.json WatchType: Type roots +Info 15 [00:01:32.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/project/src/node_modules/@types 1 undefined Project: /user/username/projects/project/src/common/tsconfig.json WatchType: Type roots +Info 16 [00:01:33.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/project/src/node_modules/@types 1 undefined Project: /user/username/projects/project/src/common/tsconfig.json WatchType: Type roots +Info 17 [00:01:34.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/project/node_modules/@types 1 undefined Project: /user/username/projects/project/src/common/tsconfig.json WatchType: Type roots +Info 18 [00:01:35.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/project/node_modules/@types 1 undefined Project: /user/username/projects/project/src/common/tsconfig.json WatchType: Type roots +Info 19 [00:01:36.000] Finishing updateGraphWorker: Project: /user/username/projects/project/src/common/tsconfig.json Version: 1 structureChanged: true structureIsReused:: Not Elapsed:: *ms +Info 20 [00:01:37.000] Project '/user/username/projects/project/src/common/tsconfig.json' (Configured) +Info 21 [00:01:38.000] Files (3) /a/lib/lib.d.ts /user/username/projects/project/src/common/input/keyboard.ts /user/username/projects/project/src/common/input/keyboard.test.ts @@ -279,24 +279,24 @@ Info 21 [16:01:38.000] Files (3) input/keyboard.test.ts Matched by include pattern './**/*' in 'tsconfig.json' -Info 22 [16:01:39.000] ----------------------------------------------- -Info 23 [16:01:40.000] Search path: /user/username/projects/project/src/common -Info 24 [16:01:41.000] For info: /user/username/projects/project/src/common/tsconfig.json :: Config file name: /user/username/projects/project/src/tsconfig.json -Info 25 [16:01:42.000] Creating configuration project /user/username/projects/project/src/tsconfig.json -Info 26 [16:01:43.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/project/src/tsconfig.json 2000 undefined Project: /user/username/projects/project/src/tsconfig.json WatchType: Config file -Info 27 [16:01:44.000] Search path: /user/username/projects/project/src -Info 28 [16:01:45.000] For info: /user/username/projects/project/src/tsconfig.json :: No config files found. -Info 29 [16:01:46.000] Project '/user/username/projects/project/src/common/tsconfig.json' (Configured) -Info 29 [16:01:47.000] Files (3) - -Info 29 [16:01:48.000] ----------------------------------------------- -Info 29 [16:01:49.000] Project '/user/username/projects/project/src/tsconfig.json' (Configured) -Info 29 [16:01:50.000] Files (0) InitialLoadPending - -Info 29 [16:01:51.000] ----------------------------------------------- -Info 29 [16:01:52.000] Open files: -Info 29 [16:01:53.000] FileName: /user/username/projects/project/src/common/input/keyboard.ts ProjectRootPath: undefined -Info 29 [16:01:54.000] Projects: /user/username/projects/project/src/common/tsconfig.json +Info 22 [00:01:39.000] ----------------------------------------------- +Info 23 [00:01:40.000] Search path: /user/username/projects/project/src/common +Info 24 [00:01:41.000] For info: /user/username/projects/project/src/common/tsconfig.json :: Config file name: /user/username/projects/project/src/tsconfig.json +Info 25 [00:01:42.000] Creating configuration project /user/username/projects/project/src/tsconfig.json +Info 26 [00:01:43.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/project/src/tsconfig.json 2000 undefined Project: /user/username/projects/project/src/tsconfig.json WatchType: Config file +Info 27 [00:01:44.000] Search path: /user/username/projects/project/src +Info 28 [00:01:45.000] For info: /user/username/projects/project/src/tsconfig.json :: No config files found. +Info 29 [00:01:46.000] Project '/user/username/projects/project/src/common/tsconfig.json' (Configured) +Info 29 [00:01:47.000] Files (3) + +Info 29 [00:01:48.000] ----------------------------------------------- +Info 29 [00:01:49.000] Project '/user/username/projects/project/src/tsconfig.json' (Configured) +Info 29 [00:01:50.000] Files (0) InitialLoadPending + +Info 29 [00:01:51.000] ----------------------------------------------- +Info 29 [00:01:52.000] Open files: +Info 29 [00:01:53.000] FileName: /user/username/projects/project/src/common/input/keyboard.ts ProjectRootPath: undefined +Info 29 [00:01:54.000] Projects: /user/username/projects/project/src/common/tsconfig.json After request PolledWatches:: @@ -321,11 +321,11 @@ FsWatchesRecursive:: /user/username/projects/project/src/common: {} -Info 29 [16:01:55.000] response: +Info 29 [00:01:55.000] response: { "responseRequired": false } -Info 30 [16:01:56.000] request: +Info 30 [00:01:56.000] request: { "seq": 0, "type": "request", @@ -358,10 +358,10 @@ FsWatchesRecursive:: /user/username/projects/project/src/common: {} -Info 31 [16:01:57.000] Search path: /user/username/projects/project/src -Info 32 [16:01:58.000] For info: /user/username/projects/project/src/terminal.ts :: Config file name: /user/username/projects/project/src/tsconfig.json -Info 33 [16:01:59.000] Loading configured project /user/username/projects/project/src/tsconfig.json -Info 34 [16:02:00.000] Config: /user/username/projects/project/src/tsconfig.json : { +Info 31 [00:01:57.000] Search path: /user/username/projects/project/src +Info 32 [00:01:58.000] For info: /user/username/projects/project/src/terminal.ts :: Config file name: /user/username/projects/project/src/tsconfig.json +Info 33 [00:01:59.000] Loading configured project /user/username/projects/project/src/tsconfig.json +Info 34 [00:02:00.000] Config: /user/username/projects/project/src/tsconfig.json : { "rootNames": [ "/user/username/projects/project/src/terminal.ts", "/user/username/projects/project/src/common/input/keyboard.test.ts", @@ -389,18 +389,18 @@ Info 34 [16:02:00.000] Config: /user/username/projects/project/src/tsconfig.js } ] } -Info 35 [16:02:01.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/project/src 1 undefined Config: /user/username/projects/project/src/tsconfig.json WatchType: Wild card directory -Info 36 [16:02:02.000] 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 37 [16:02:03.000] Plugins were requested but not running in environment that supports 'require'. Nothing will be loaded -Info 38 [16:02:04.000] Starting updateGraphWorker: Project: /user/username/projects/project/src/tsconfig.json -Info 39 [16:02:05.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/project/out/input/keyboard.d.ts 500 undefined WatchType: Closed Script info -Info 40 [16:02:06.000] 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 41 [16:02:07.000] 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 42 [16:02:08.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/project/node_modules/@types 1 undefined Project: /user/username/projects/project/src/tsconfig.json WatchType: Type roots -Info 43 [16:02:09.000] 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 44 [16:02:10.000] Finishing updateGraphWorker: Project: /user/username/projects/project/src/tsconfig.json Version: 1 structureChanged: true structureIsReused:: Not Elapsed:: *ms -Info 45 [16:02:11.000] Project '/user/username/projects/project/src/tsconfig.json' (Configured) -Info 46 [16:02:12.000] Files (4) +Info 35 [00:02:01.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/project/src 1 undefined Config: /user/username/projects/project/src/tsconfig.json WatchType: Wild card directory +Info 36 [00:02:02.000] 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 37 [00:02:03.000] Plugins were requested but not running in environment that supports 'require'. Nothing will be loaded +Info 38 [00:02:04.000] Starting updateGraphWorker: Project: /user/username/projects/project/src/tsconfig.json +Info 39 [00:02:05.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/project/out/input/keyboard.d.ts 500 undefined WatchType: Closed Script info +Info 40 [00:02:06.000] 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 41 [00:02:07.000] 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 42 [00:02:08.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/project/node_modules/@types 1 undefined Project: /user/username/projects/project/src/tsconfig.json WatchType: Type roots +Info 43 [00:02:09.000] 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 44 [00:02:10.000] Finishing updateGraphWorker: Project: /user/username/projects/project/src/tsconfig.json Version: 1 structureChanged: true structureIsReused:: Not Elapsed:: *ms +Info 45 [00:02:11.000] Project '/user/username/projects/project/src/tsconfig.json' (Configured) +Info 46 [00:02:12.000] Files (4) /a/lib/lib.d.ts /user/username/projects/project/out/input/keyboard.d.ts /user/username/projects/project/src/terminal.ts @@ -419,22 +419,22 @@ Info 46 [16:02:12.000] Files (4) common/input/keyboard.test.ts Matched by include pattern './**/*' in 'tsconfig.json' -Info 47 [16:02:13.000] ----------------------------------------------- -Info 48 [16:02:14.000] Search path: /user/username/projects/project/src -Info 49 [16:02:15.000] For info: /user/username/projects/project/src/tsconfig.json :: No config files found. -Info 50 [16:02:16.000] Project '/user/username/projects/project/src/common/tsconfig.json' (Configured) -Info 50 [16:02:17.000] Files (3) - -Info 50 [16:02:18.000] ----------------------------------------------- -Info 50 [16:02:19.000] Project '/user/username/projects/project/src/tsconfig.json' (Configured) -Info 50 [16:02:20.000] Files (4) - -Info 50 [16:02:21.000] ----------------------------------------------- -Info 50 [16:02:22.000] Open files: -Info 50 [16:02:23.000] FileName: /user/username/projects/project/src/common/input/keyboard.ts ProjectRootPath: undefined -Info 50 [16:02:24.000] Projects: /user/username/projects/project/src/common/tsconfig.json,/user/username/projects/project/src/tsconfig.json -Info 50 [16:02:25.000] FileName: /user/username/projects/project/src/terminal.ts ProjectRootPath: undefined -Info 50 [16:02:26.000] Projects: /user/username/projects/project/src/tsconfig.json +Info 47 [00:02:13.000] ----------------------------------------------- +Info 48 [00:02:14.000] Search path: /user/username/projects/project/src +Info 49 [00:02:15.000] For info: /user/username/projects/project/src/tsconfig.json :: No config files found. +Info 50 [00:02:16.000] Project '/user/username/projects/project/src/common/tsconfig.json' (Configured) +Info 50 [00:02:17.000] Files (3) + +Info 50 [00:02:18.000] ----------------------------------------------- +Info 50 [00:02:19.000] Project '/user/username/projects/project/src/tsconfig.json' (Configured) +Info 50 [00:02:20.000] Files (4) + +Info 50 [00:02:21.000] ----------------------------------------------- +Info 50 [00:02:22.000] Open files: +Info 50 [00:02:23.000] FileName: /user/username/projects/project/src/common/input/keyboard.ts ProjectRootPath: undefined +Info 50 [00:02:24.000] Projects: /user/username/projects/project/src/common/tsconfig.json,/user/username/projects/project/src/tsconfig.json +Info 50 [00:02:25.000] FileName: /user/username/projects/project/src/terminal.ts ProjectRootPath: undefined +Info 50 [00:02:26.000] Projects: /user/username/projects/project/src/tsconfig.json After request PolledWatches:: @@ -463,11 +463,11 @@ FsWatchesRecursive:: /user/username/projects/project/src: {} -Info 50 [16:02:27.000] response: +Info 50 [00:02:27.000] response: { "responseRequired": false } -Info 51 [16:02:28.000] request: +Info 51 [00:02:28.000] request: { "command": "references", "arguments": { @@ -506,13 +506,13 @@ FsWatchesRecursive:: /user/username/projects/project/src: {} -Info 52 [16:02:29.000] Finding references to /user/username/projects/project/src/common/input/keyboard.ts position 99 in project /user/username/projects/project/src/common/tsconfig.json -Info 53 [16:02:30.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/project/out/input/keyboard.d.ts.map 500 undefined WatchType: Closed Script info -Info 54 [16:02:31.000] Finding references to /user/username/projects/project/out/input/keyboard.d.ts position 24 in project /user/username/projects/project/src/tsconfig.json -Info 55 [16:02:32.000] Search path: /user/username/projects/project/src/common/input -Info 56 [16:02:33.000] For info: /user/username/projects/project/src/common/input/keyboard.ts :: Config file name: /user/username/projects/project/src/common/tsconfig.json -Info 57 [16:02:34.000] Search path: /user/username/projects/project/src/common/input -Info 58 [16:02:35.000] For info: /user/username/projects/project/src/common/input/keyboard.ts :: Config file name: /user/username/projects/project/src/common/tsconfig.json +Info 52 [00:02:29.000] Finding references to /user/username/projects/project/src/common/input/keyboard.ts position 99 in project /user/username/projects/project/src/common/tsconfig.json +Info 53 [00:02:30.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/project/out/input/keyboard.d.ts.map 500 undefined WatchType: Closed Script info +Info 54 [00:02:31.000] Finding references to /user/username/projects/project/out/input/keyboard.d.ts position 24 in project /user/username/projects/project/src/tsconfig.json +Info 55 [00:02:32.000] Search path: /user/username/projects/project/src/common/input +Info 56 [00:02:33.000] For info: /user/username/projects/project/src/common/input/keyboard.ts :: Config file name: /user/username/projects/project/src/common/tsconfig.json +Info 57 [00:02:34.000] Search path: /user/username/projects/project/src/common/input +Info 58 [00:02:35.000] For info: /user/username/projects/project/src/common/input/keyboard.ts :: Config file name: /user/username/projects/project/src/common/tsconfig.json After request PolledWatches:: @@ -543,7 +543,7 @@ FsWatchesRecursive:: /user/username/projects/project/src: {} -Info 59 [16:02:36.000] response: +Info 59 [00:02:36.000] response: { "response": { "refs": [ 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 a23bfcc255536..ff84443dc1b43 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 @@ -1,5 +1,5 @@ -Info 0 [16:01:17.000] Provided types map file "/a/lib/typesMap.json" doesn't exist -Info 1 [16:01:18.000] request: +Info 0 [00:01:17.000] Provided types map file "/a/lib/typesMap.json" doesn't exist +Info 1 [00:01:18.000] request: { "seq": 0, "type": "request", @@ -233,11 +233,11 @@ FsWatches:: FsWatchesRecursive:: -Info 2 [16:01:19.000] Search path: /user/username/projects/project/src/common/input -Info 3 [16:01:20.000] For info: /user/username/projects/project/src/common/input/keyboard.ts :: Config file name: /user/username/projects/project/src/common/tsconfig.json -Info 4 [16:01:21.000] Creating configuration project /user/username/projects/project/src/common/tsconfig.json -Info 5 [16:01:22.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/project/src/common/tsconfig.json 2000 undefined Project: /user/username/projects/project/src/common/tsconfig.json WatchType: Config file -Info 6 [16:01:23.000] Config: /user/username/projects/project/src/common/tsconfig.json : { +Info 2 [00:01:19.000] Search path: /user/username/projects/project/src/common/input +Info 3 [00:01:20.000] For info: /user/username/projects/project/src/common/input/keyboard.ts :: Config file name: /user/username/projects/project/src/common/tsconfig.json +Info 4 [00:01:21.000] Creating configuration project /user/username/projects/project/src/common/tsconfig.json +Info 5 [00:01:22.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/project/src/common/tsconfig.json 2000 undefined Project: /user/username/projects/project/src/common/tsconfig.json WatchType: Config file +Info 6 [00:01:23.000] Config: /user/username/projects/project/src/common/tsconfig.json : { "rootNames": [ "/user/username/projects/project/src/common/input/keyboard.test.ts", "/user/username/projects/project/src/common/input/keyboard.ts" @@ -251,21 +251,21 @@ Info 6 [16:01:23.000] Config: /user/username/projects/project/src/common/tsco "configFilePath": "/user/username/projects/project/src/common/tsconfig.json" } } -Info 7 [16:01:24.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/project/src/common 1 undefined Config: /user/username/projects/project/src/common/tsconfig.json WatchType: Wild card directory -Info 8 [16:01:25.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/project/src/common 1 undefined Config: /user/username/projects/project/src/common/tsconfig.json WatchType: Wild card directory -Info 9 [16:01:26.000] Plugins were requested but not running in environment that supports 'require'. Nothing will be loaded -Info 10 [16:01:27.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/project/src/common/input/keyboard.test.ts 500 undefined WatchType: Closed Script info -Info 11 [16:01:28.000] Starting updateGraphWorker: Project: /user/username/projects/project/src/common/tsconfig.json -Info 12 [16:01:29.000] FileWatcher:: Added:: WatchInfo: /a/lib/lib.d.ts 500 undefined WatchType: Closed Script info -Info 13 [16:01:30.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/project/src/common/node_modules/@types 1 undefined Project: /user/username/projects/project/src/common/tsconfig.json WatchType: Type roots -Info 14 [16:01:31.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/project/src/common/node_modules/@types 1 undefined Project: /user/username/projects/project/src/common/tsconfig.json WatchType: Type roots -Info 15 [16:01:32.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/project/src/node_modules/@types 1 undefined Project: /user/username/projects/project/src/common/tsconfig.json WatchType: Type roots -Info 16 [16:01:33.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/project/src/node_modules/@types 1 undefined Project: /user/username/projects/project/src/common/tsconfig.json WatchType: Type roots -Info 17 [16:01:34.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/project/node_modules/@types 1 undefined Project: /user/username/projects/project/src/common/tsconfig.json WatchType: Type roots -Info 18 [16:01:35.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/project/node_modules/@types 1 undefined Project: /user/username/projects/project/src/common/tsconfig.json WatchType: Type roots -Info 19 [16:01:36.000] Finishing updateGraphWorker: Project: /user/username/projects/project/src/common/tsconfig.json Version: 1 structureChanged: true structureIsReused:: Not Elapsed:: *ms -Info 20 [16:01:37.000] Project '/user/username/projects/project/src/common/tsconfig.json' (Configured) -Info 21 [16:01:38.000] Files (3) +Info 7 [00:01:24.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/project/src/common 1 undefined Config: /user/username/projects/project/src/common/tsconfig.json WatchType: Wild card directory +Info 8 [00:01:25.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/project/src/common 1 undefined Config: /user/username/projects/project/src/common/tsconfig.json WatchType: Wild card directory +Info 9 [00:01:26.000] Plugins were requested but not running in environment that supports 'require'. Nothing will be loaded +Info 10 [00:01:27.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/project/src/common/input/keyboard.test.ts 500 undefined WatchType: Closed Script info +Info 11 [00:01:28.000] Starting updateGraphWorker: Project: /user/username/projects/project/src/common/tsconfig.json +Info 12 [00:01:29.000] FileWatcher:: Added:: WatchInfo: /a/lib/lib.d.ts 500 undefined WatchType: Closed Script info +Info 13 [00:01:30.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/project/src/common/node_modules/@types 1 undefined Project: /user/username/projects/project/src/common/tsconfig.json WatchType: Type roots +Info 14 [00:01:31.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/project/src/common/node_modules/@types 1 undefined Project: /user/username/projects/project/src/common/tsconfig.json WatchType: Type roots +Info 15 [00:01:32.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/project/src/node_modules/@types 1 undefined Project: /user/username/projects/project/src/common/tsconfig.json WatchType: Type roots +Info 16 [00:01:33.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/project/src/node_modules/@types 1 undefined Project: /user/username/projects/project/src/common/tsconfig.json WatchType: Type roots +Info 17 [00:01:34.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/project/node_modules/@types 1 undefined Project: /user/username/projects/project/src/common/tsconfig.json WatchType: Type roots +Info 18 [00:01:35.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/project/node_modules/@types 1 undefined Project: /user/username/projects/project/src/common/tsconfig.json WatchType: Type roots +Info 19 [00:01:36.000] Finishing updateGraphWorker: Project: /user/username/projects/project/src/common/tsconfig.json Version: 1 structureChanged: true structureIsReused:: Not Elapsed:: *ms +Info 20 [00:01:37.000] Project '/user/username/projects/project/src/common/tsconfig.json' (Configured) +Info 21 [00:01:38.000] Files (3) /a/lib/lib.d.ts /user/username/projects/project/src/common/input/keyboard.ts /user/username/projects/project/src/common/input/keyboard.test.ts @@ -279,24 +279,24 @@ Info 21 [16:01:38.000] Files (3) input/keyboard.test.ts Matched by include pattern './**/*' in 'tsconfig.json' -Info 22 [16:01:39.000] ----------------------------------------------- -Info 23 [16:01:40.000] Search path: /user/username/projects/project/src/common -Info 24 [16:01:41.000] For info: /user/username/projects/project/src/common/tsconfig.json :: Config file name: /user/username/projects/project/src/tsconfig.json -Info 25 [16:01:42.000] Creating configuration project /user/username/projects/project/src/tsconfig.json -Info 26 [16:01:43.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/project/src/tsconfig.json 2000 undefined Project: /user/username/projects/project/src/tsconfig.json WatchType: Config file -Info 27 [16:01:44.000] Search path: /user/username/projects/project/src -Info 28 [16:01:45.000] For info: /user/username/projects/project/src/tsconfig.json :: No config files found. -Info 29 [16:01:46.000] Project '/user/username/projects/project/src/common/tsconfig.json' (Configured) -Info 29 [16:01:47.000] Files (3) - -Info 29 [16:01:48.000] ----------------------------------------------- -Info 29 [16:01:49.000] Project '/user/username/projects/project/src/tsconfig.json' (Configured) -Info 29 [16:01:50.000] Files (0) InitialLoadPending - -Info 29 [16:01:51.000] ----------------------------------------------- -Info 29 [16:01:52.000] Open files: -Info 29 [16:01:53.000] FileName: /user/username/projects/project/src/common/input/keyboard.ts ProjectRootPath: undefined -Info 29 [16:01:54.000] Projects: /user/username/projects/project/src/common/tsconfig.json +Info 22 [00:01:39.000] ----------------------------------------------- +Info 23 [00:01:40.000] Search path: /user/username/projects/project/src/common +Info 24 [00:01:41.000] For info: /user/username/projects/project/src/common/tsconfig.json :: Config file name: /user/username/projects/project/src/tsconfig.json +Info 25 [00:01:42.000] Creating configuration project /user/username/projects/project/src/tsconfig.json +Info 26 [00:01:43.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/project/src/tsconfig.json 2000 undefined Project: /user/username/projects/project/src/tsconfig.json WatchType: Config file +Info 27 [00:01:44.000] Search path: /user/username/projects/project/src +Info 28 [00:01:45.000] For info: /user/username/projects/project/src/tsconfig.json :: No config files found. +Info 29 [00:01:46.000] Project '/user/username/projects/project/src/common/tsconfig.json' (Configured) +Info 29 [00:01:47.000] Files (3) + +Info 29 [00:01:48.000] ----------------------------------------------- +Info 29 [00:01:49.000] Project '/user/username/projects/project/src/tsconfig.json' (Configured) +Info 29 [00:01:50.000] Files (0) InitialLoadPending + +Info 29 [00:01:51.000] ----------------------------------------------- +Info 29 [00:01:52.000] Open files: +Info 29 [00:01:53.000] FileName: /user/username/projects/project/src/common/input/keyboard.ts ProjectRootPath: undefined +Info 29 [00:01:54.000] Projects: /user/username/projects/project/src/common/tsconfig.json After request PolledWatches:: @@ -321,11 +321,11 @@ FsWatchesRecursive:: /user/username/projects/project/src/common: {} -Info 29 [16:01:55.000] response: +Info 29 [00:01:55.000] response: { "responseRequired": false } -Info 30 [16:01:56.000] request: +Info 30 [00:01:56.000] request: { "seq": 0, "type": "request", @@ -358,10 +358,10 @@ FsWatchesRecursive:: /user/username/projects/project/src/common: {} -Info 31 [16:01:57.000] Search path: /user/username/projects/project/src -Info 32 [16:01:58.000] For info: /user/username/projects/project/src/terminal.ts :: Config file name: /user/username/projects/project/src/tsconfig.json -Info 33 [16:01:59.000] Loading configured project /user/username/projects/project/src/tsconfig.json -Info 34 [16:02:00.000] Config: /user/username/projects/project/src/tsconfig.json : { +Info 31 [00:01:57.000] Search path: /user/username/projects/project/src +Info 32 [00:01:58.000] For info: /user/username/projects/project/src/terminal.ts :: Config file name: /user/username/projects/project/src/tsconfig.json +Info 33 [00:01:59.000] Loading configured project /user/username/projects/project/src/tsconfig.json +Info 34 [00:02:00.000] Config: /user/username/projects/project/src/tsconfig.json : { "rootNames": [ "/user/username/projects/project/src/terminal.ts", "/user/username/projects/project/src/common/input/keyboard.test.ts", @@ -389,17 +389,17 @@ Info 34 [16:02:00.000] Config: /user/username/projects/project/src/tsconfig.js } ] } -Info 35 [16:02:01.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/project/src 1 undefined Config: /user/username/projects/project/src/tsconfig.json WatchType: Wild card directory -Info 36 [16:02:02.000] 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 37 [16:02:03.000] Plugins were requested but not running in environment that supports 'require'. Nothing will be loaded -Info 38 [16:02:04.000] Starting updateGraphWorker: Project: /user/username/projects/project/src/tsconfig.json -Info 39 [16:02:05.000] 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 40 [16:02:06.000] 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 41 [16:02:07.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/project/node_modules/@types 1 undefined Project: /user/username/projects/project/src/tsconfig.json WatchType: Type roots -Info 42 [16:02:08.000] 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 43 [16:02:09.000] Finishing updateGraphWorker: Project: /user/username/projects/project/src/tsconfig.json Version: 1 structureChanged: true structureIsReused:: Not Elapsed:: *ms -Info 44 [16:02:10.000] Project '/user/username/projects/project/src/tsconfig.json' (Configured) -Info 45 [16:02:11.000] Files (4) +Info 35 [00:02:01.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/project/src 1 undefined Config: /user/username/projects/project/src/tsconfig.json WatchType: Wild card directory +Info 36 [00:02:02.000] 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 37 [00:02:03.000] Plugins were requested but not running in environment that supports 'require'. Nothing will be loaded +Info 38 [00:02:04.000] Starting updateGraphWorker: Project: /user/username/projects/project/src/tsconfig.json +Info 39 [00:02:05.000] 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 40 [00:02:06.000] 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 41 [00:02:07.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/project/node_modules/@types 1 undefined Project: /user/username/projects/project/src/tsconfig.json WatchType: Type roots +Info 42 [00:02:08.000] 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 43 [00:02:09.000] Finishing updateGraphWorker: Project: /user/username/projects/project/src/tsconfig.json Version: 1 structureChanged: true structureIsReused:: Not Elapsed:: *ms +Info 44 [00:02:10.000] Project '/user/username/projects/project/src/tsconfig.json' (Configured) +Info 45 [00:02:11.000] Files (4) /a/lib/lib.d.ts /user/username/projects/project/src/common/input/keyboard.ts /user/username/projects/project/src/terminal.ts @@ -417,22 +417,22 @@ Info 45 [16:02:11.000] Files (4) common/input/keyboard.test.ts Matched by include pattern './**/*' in 'tsconfig.json' -Info 46 [16:02:12.000] ----------------------------------------------- -Info 47 [16:02:13.000] Search path: /user/username/projects/project/src -Info 48 [16:02:14.000] For info: /user/username/projects/project/src/tsconfig.json :: No config files found. -Info 49 [16:02:15.000] Project '/user/username/projects/project/src/common/tsconfig.json' (Configured) -Info 49 [16:02:16.000] Files (3) - -Info 49 [16:02:17.000] ----------------------------------------------- -Info 49 [16:02:18.000] Project '/user/username/projects/project/src/tsconfig.json' (Configured) -Info 49 [16:02:19.000] Files (4) - -Info 49 [16:02:20.000] ----------------------------------------------- -Info 49 [16:02:21.000] Open files: -Info 49 [16:02:22.000] FileName: /user/username/projects/project/src/common/input/keyboard.ts ProjectRootPath: undefined -Info 49 [16:02:23.000] Projects: /user/username/projects/project/src/common/tsconfig.json,/user/username/projects/project/src/tsconfig.json -Info 49 [16:02:24.000] FileName: /user/username/projects/project/src/terminal.ts ProjectRootPath: undefined -Info 49 [16:02:25.000] Projects: /user/username/projects/project/src/tsconfig.json +Info 46 [00:02:12.000] ----------------------------------------------- +Info 47 [00:02:13.000] Search path: /user/username/projects/project/src +Info 48 [00:02:14.000] For info: /user/username/projects/project/src/tsconfig.json :: No config files found. +Info 49 [00:02:15.000] Project '/user/username/projects/project/src/common/tsconfig.json' (Configured) +Info 49 [00:02:16.000] Files (3) + +Info 49 [00:02:17.000] ----------------------------------------------- +Info 49 [00:02:18.000] Project '/user/username/projects/project/src/tsconfig.json' (Configured) +Info 49 [00:02:19.000] Files (4) + +Info 49 [00:02:20.000] ----------------------------------------------- +Info 49 [00:02:21.000] Open files: +Info 49 [00:02:22.000] FileName: /user/username/projects/project/src/common/input/keyboard.ts ProjectRootPath: undefined +Info 49 [00:02:23.000] Projects: /user/username/projects/project/src/common/tsconfig.json,/user/username/projects/project/src/tsconfig.json +Info 49 [00:02:24.000] FileName: /user/username/projects/project/src/terminal.ts ProjectRootPath: undefined +Info 49 [00:02:25.000] Projects: /user/username/projects/project/src/tsconfig.json After request PolledWatches:: @@ -459,11 +459,11 @@ FsWatchesRecursive:: /user/username/projects/project/src: {} -Info 49 [16:02:26.000] response: +Info 49 [00:02:26.000] response: { "responseRequired": false } -Info 50 [16:02:27.000] request: +Info 50 [00:02:27.000] request: { "command": "references", "arguments": { @@ -500,18 +500,18 @@ FsWatchesRecursive:: /user/username/projects/project/src: {} -Info 51 [16:02:28.000] Finding references to /user/username/projects/project/src/common/input/keyboard.ts position 99 in project /user/username/projects/project/src/common/tsconfig.json -Info 52 [16:02:29.000] Finding references to /user/username/projects/project/src/common/input/keyboard.ts position 99 in project /user/username/projects/project/src/tsconfig.json -Info 53 [16:02:30.000] Search path: /user/username/projects/project/src/common/input -Info 54 [16:02:31.000] For info: /user/username/projects/project/src/common/input/keyboard.ts :: Config file name: /user/username/projects/project/src/common/tsconfig.json -Info 55 [16:02:32.000] Search path: /user/username/projects/project/src/common/input -Info 56 [16:02:33.000] For info: /user/username/projects/project/src/common/input/keyboard.ts :: Config file name: /user/username/projects/project/src/common/tsconfig.json -Info 57 [16:02:34.000] Search path: /user/username/projects/project/src/common/input -Info 58 [16:02:35.000] For info: /user/username/projects/project/src/common/input/keyboard.test.ts :: Config file name: /user/username/projects/project/src/common/tsconfig.json -Info 59 [16:02:36.000] Search path: /user/username/projects/project/src/common/input -Info 60 [16:02:37.000] For info: /user/username/projects/project/src/common/input/keyboard.test.ts :: Config file name: /user/username/projects/project/src/common/tsconfig.json -Info 61 [16:02:38.000] Search path: /user/username/projects/project/src/common/input -Info 62 [16:02:39.000] For info: /user/username/projects/project/src/common/input/keyboard.test.ts :: Config file name: /user/username/projects/project/src/common/tsconfig.json +Info 51 [00:02:28.000] Finding references to /user/username/projects/project/src/common/input/keyboard.ts position 99 in project /user/username/projects/project/src/common/tsconfig.json +Info 52 [00:02:29.000] Finding references to /user/username/projects/project/src/common/input/keyboard.ts position 99 in project /user/username/projects/project/src/tsconfig.json +Info 53 [00:02:30.000] Search path: /user/username/projects/project/src/common/input +Info 54 [00:02:31.000] For info: /user/username/projects/project/src/common/input/keyboard.ts :: Config file name: /user/username/projects/project/src/common/tsconfig.json +Info 55 [00:02:32.000] Search path: /user/username/projects/project/src/common/input +Info 56 [00:02:33.000] For info: /user/username/projects/project/src/common/input/keyboard.ts :: Config file name: /user/username/projects/project/src/common/tsconfig.json +Info 57 [00:02:34.000] Search path: /user/username/projects/project/src/common/input +Info 58 [00:02:35.000] For info: /user/username/projects/project/src/common/input/keyboard.test.ts :: Config file name: /user/username/projects/project/src/common/tsconfig.json +Info 59 [00:02:36.000] Search path: /user/username/projects/project/src/common/input +Info 60 [00:02:37.000] For info: /user/username/projects/project/src/common/input/keyboard.test.ts :: Config file name: /user/username/projects/project/src/common/tsconfig.json +Info 61 [00:02:38.000] Search path: /user/username/projects/project/src/common/input +Info 62 [00:02:39.000] For info: /user/username/projects/project/src/common/input/keyboard.test.ts :: Config file name: /user/username/projects/project/src/common/tsconfig.json After request PolledWatches:: @@ -538,7 +538,7 @@ FsWatchesRecursive:: /user/username/projects/project/src: {} -Info 63 [16:02:40.000] response: +Info 63 [00:02:40.000] response: { "response": { "refs": [ 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 aa44e23b828bd..283da3ced8652 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 @@ -1,11 +1,11 @@ -Info 0 [16:01:09.000] Provided types map file "/a/lib/typesMap.json" doesn't exist -Info 1 [16:01:10.000] Search path: /user/username/projects/myproject/src -Info 2 [16:01:11.000] For info: /user/username/projects/myproject/src/main.ts :: Config file name: /user/username/projects/myproject/tsconfig.json -Info 3 [16:01:12.000] Creating configuration project /user/username/projects/myproject/tsconfig.json -Info 4 [16:01:13.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/tsconfig.json 2000 undefined Project: /user/username/projects/myproject/tsconfig.json WatchType: Config file -Info 5 [16:01:14.000] event: +Info 0 [00:01:09.000] Provided types map file "/a/lib/typesMap.json" doesn't exist +Info 1 [00:01:10.000] Search path: /user/username/projects/myproject/src +Info 2 [00:01:11.000] For info: /user/username/projects/myproject/src/main.ts :: Config file name: /user/username/projects/myproject/tsconfig.json +Info 3 [00:01:12.000] Creating configuration project /user/username/projects/myproject/tsconfig.json +Info 4 [00:01:13.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/tsconfig.json 2000 undefined Project: /user/username/projects/myproject/tsconfig.json WatchType: Config file +Info 5 [00:01:14.000] event: {"seq":0,"type":"event","event":"projectLoadingStart","body":{"projectName":"/user/username/projects/myproject/tsconfig.json","reason":"Creating possible configured project for /user/username/projects/myproject/src/main.ts to open"}} -Info 6 [16:01:15.000] Config: /user/username/projects/myproject/tsconfig.json : { +Info 6 [00:01:15.000] Config: /user/username/projects/myproject/tsconfig.json : { "rootNames": [ "/user/username/projects/myproject/own/main.ts" ], @@ -25,10 +25,10 @@ Info 6 [16:01:15.000] Config: /user/username/projects/myproject/tsconfig.json } ] } -Info 7 [16:01:16.000] Plugins were requested but not running in environment that supports 'require'. Nothing will be loaded -Info 8 [16:01:17.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/own/main.ts 500 undefined WatchType: Closed Script info -Info 9 [16:01:18.000] Starting updateGraphWorker: Project: /user/username/projects/myproject/tsconfig.json -Info 10 [16:01:19.000] Config: /user/username/projects/myproject/tsconfig-indirect1.json : { +Info 7 [00:01:16.000] Plugins were requested but not running in environment that supports 'require'. Nothing will be loaded +Info 8 [00:01:17.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/own/main.ts 500 undefined WatchType: Closed Script info +Info 9 [00:01:18.000] Starting updateGraphWorker: Project: /user/username/projects/myproject/tsconfig.json +Info 10 [00:01:19.000] Config: /user/username/projects/myproject/tsconfig-indirect1.json : { "rootNames": [ "/user/username/projects/myproject/indirect1/main.ts" ], @@ -46,8 +46,8 @@ Info 10 [16:01:19.000] Config: /user/username/projects/myproject/tsconfig-indi } ] } -Info 11 [16:01:20.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/tsconfig-indirect1.json 2000 undefined Project: /user/username/projects/myproject/tsconfig.json WatchType: Config file -Info 12 [16:01:21.000] Config: /user/username/projects/myproject/tsconfig-src.json : { +Info 11 [00:01:20.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/tsconfig-indirect1.json 2000 undefined Project: /user/username/projects/myproject/tsconfig.json WatchType: Config file +Info 12 [00:01:21.000] Config: /user/username/projects/myproject/tsconfig-src.json : { "rootNames": [ "/user/username/projects/myproject/src/main.ts", "/user/username/projects/myproject/src/helpers/functions.ts" @@ -59,10 +59,10 @@ Info 12 [16:01:21.000] Config: /user/username/projects/myproject/tsconfig-src. "configFilePath": "/user/username/projects/myproject/tsconfig-src.json" } } -Info 13 [16:01:22.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/tsconfig-src.json 2000 undefined Project: /user/username/projects/myproject/tsconfig.json WatchType: Config file -Info 14 [16:01:23.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/src 1 undefined Config: /user/username/projects/myproject/tsconfig-src.json WatchType: Wild card directory -Info 15 [16:01:24.000] 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 16 [16:01:25.000] Config: /user/username/projects/myproject/tsconfig-indirect2.json : { +Info 13 [00:01:22.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/tsconfig-src.json 2000 undefined Project: /user/username/projects/myproject/tsconfig.json WatchType: Config file +Info 14 [00:01:23.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/src 1 undefined Config: /user/username/projects/myproject/tsconfig-src.json WatchType: Wild card directory +Info 15 [00:01:24.000] 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 16 [00:01:25.000] Config: /user/username/projects/myproject/tsconfig-indirect2.json : { "rootNames": [ "/user/username/projects/myproject/indirect2/main.ts" ], @@ -79,15 +79,15 @@ Info 16 [16:01:25.000] Config: /user/username/projects/myproject/tsconfig-indi } ] } -Info 17 [16:01:26.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/tsconfig-indirect2.json 2000 undefined Project: /user/username/projects/myproject/tsconfig.json WatchType: Config file -Info 18 [16:01:27.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/indirect1/main.ts 500 undefined WatchType: Closed Script info -Info 19 [16:01:28.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/src/helpers/functions.ts 500 undefined WatchType: Closed Script info -Info 20 [16:01:29.000] FileWatcher:: Added:: WatchInfo: /a/lib/lib.d.ts 500 undefined WatchType: Closed Script info -Info 21 [16:01:30.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/tsconfig.json WatchType: Type roots -Info 22 [16:01:31.000] 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 23 [16:01:32.000] Finishing updateGraphWorker: Project: /user/username/projects/myproject/tsconfig.json Version: 1 structureChanged: true structureIsReused:: Not Elapsed:: *ms -Info 24 [16:01:33.000] Project '/user/username/projects/myproject/tsconfig.json' (Configured) -Info 25 [16:01:34.000] Files (5) +Info 17 [00:01:26.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/tsconfig-indirect2.json 2000 undefined Project: /user/username/projects/myproject/tsconfig.json WatchType: Config file +Info 18 [00:01:27.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/indirect1/main.ts 500 undefined WatchType: Closed Script info +Info 19 [00:01:28.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/src/helpers/functions.ts 500 undefined WatchType: Closed Script info +Info 20 [00:01:29.000] FileWatcher:: Added:: WatchInfo: /a/lib/lib.d.ts 500 undefined WatchType: Closed Script info +Info 21 [00:01:30.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/tsconfig.json WatchType: Type roots +Info 22 [00:01:31.000] 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 23 [00:01:32.000] Finishing updateGraphWorker: Project: /user/username/projects/myproject/tsconfig.json Version: 1 structureChanged: true structureIsReused:: Not Elapsed:: *ms +Info 24 [00:01:33.000] Project '/user/username/projects/myproject/tsconfig.json' (Configured) +Info 25 [00:01:34.000] Files (5) /a/lib/lib.d.ts /user/username/projects/myproject/src/helpers/functions.ts /user/username/projects/myproject/src/main.ts @@ -106,21 +106,21 @@ Info 25 [16:01:34.000] Files (5) own/main.ts Part of 'files' list in tsconfig.json -Info 26 [16:01:35.000] ----------------------------------------------- -Info 27 [16:01:36.000] event: +Info 26 [00:01:35.000] ----------------------------------------------- +Info 27 [00:01:36.000] event: {"seq":0,"type":"event","event":"projectLoadingFinish","body":{"projectName":"/user/username/projects/myproject/tsconfig.json"}} -Info 28 [16:01:37.000] event: +Info 28 [00:01:37.000] event: {"seq":0,"type":"event","event":"telemetry","body":{"telemetryEventName":"projectInfo","payload":{"projectId":"4a33d78ee40d836c4f4e64c59aed976628aea0013be9585c5ff171dfc41baf98","fileStats":{"js":0,"jsSize":0,"jsx":0,"jsxSize":0,"ts":4,"tsSize":166,"tsx":0,"tsxSize":0,"dts":1,"dtsSize":334,"deferred":0,"deferredSize":0},"compilerOptions":{"outDir":"","baseUrl":""},"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 29 [16:01:38.000] Creating configuration project /user/username/projects/myproject/tsconfig-src.json -Info 30 [16:01:39.000] event: +Info 29 [00:01:38.000] Creating configuration project /user/username/projects/myproject/tsconfig-src.json +Info 30 [00:01:39.000] event: {"seq":0,"type":"event","event":"projectLoadingStart","body":{"projectName":"/user/username/projects/myproject/tsconfig-src.json","reason":"Creating project referenced in solution /user/username/projects/myproject/tsconfig.json to find possible configured project for /user/username/projects/myproject/src/main.ts to open"}} -Info 31 [16:01:40.000] Plugins were requested but not running in environment that supports 'require'. Nothing will be loaded -Info 32 [16:01:41.000] Starting updateGraphWorker: Project: /user/username/projects/myproject/tsconfig-src.json -Info 33 [16:01:42.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/tsconfig-src.json WatchType: Type roots -Info 34 [16:01:43.000] 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 35 [16:01:44.000] Finishing updateGraphWorker: Project: /user/username/projects/myproject/tsconfig-src.json Version: 1 structureChanged: true structureIsReused:: Not Elapsed:: *ms -Info 36 [16:01:45.000] Project '/user/username/projects/myproject/tsconfig-src.json' (Configured) -Info 37 [16:01:46.000] Files (3) +Info 31 [00:01:40.000] Plugins were requested but not running in environment that supports 'require'. Nothing will be loaded +Info 32 [00:01:41.000] Starting updateGraphWorker: Project: /user/username/projects/myproject/tsconfig-src.json +Info 33 [00:01:42.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/tsconfig-src.json WatchType: Type roots +Info 34 [00:01:43.000] 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 35 [00:01:44.000] Finishing updateGraphWorker: Project: /user/username/projects/myproject/tsconfig-src.json Version: 1 structureChanged: true structureIsReused:: Not Elapsed:: *ms +Info 36 [00:01:45.000] Project '/user/username/projects/myproject/tsconfig-src.json' (Configured) +Info 37 [00:01:46.000] Files (3) /a/lib/lib.d.ts /user/username/projects/myproject/src/helpers/functions.ts /user/username/projects/myproject/src/main.ts @@ -134,35 +134,35 @@ Info 37 [16:01:46.000] Files (3) src/main.ts Matched by include pattern './src/**/*' in 'tsconfig-src.json' -Info 38 [16:01:47.000] ----------------------------------------------- -Info 39 [16:01:48.000] event: +Info 38 [00:01:47.000] ----------------------------------------------- +Info 39 [00:01:48.000] event: {"seq":0,"type":"event","event":"projectLoadingFinish","body":{"projectName":"/user/username/projects/myproject/tsconfig-src.json"}} -Info 40 [16:01:49.000] event: +Info 40 [00:01:49.000] event: {"seq":0,"type":"event","event":"telemetry","body":{"telemetryEventName":"projectInfo","payload":{"projectId":"75d5ba36c0a162a329bf40235b10e96d2d129b95469e1f02c08da775fb38a2b4","fileStats":{"js":0,"jsSize":0,"jsx":0,"jsxSize":0,"ts":2,"tsSize":77,"tsx":0,"tsxSize":0,"dts":1,"dtsSize":334,"deferred":0,"deferredSize":0},"compilerOptions":{"composite":true,"outDir":"","baseUrl":""},"typeAcquisition":{"enable":false,"include":false,"exclude":false},"extends":false,"files":false,"include":true,"exclude":false,"compileOnSave":false,"configFileName":"other","projectType":"configured","languageServiceEnabled":true,"version":"FakeVersion"}}} -Info 41 [16:01:50.000] event: +Info 41 [00:01:50.000] event: {"seq":0,"type":"event","event":"configFileDiag","body":{"triggerFile":"/user/username/projects/myproject/src/main.ts","configFile":"/user/username/projects/myproject/tsconfig-src.json","diagnostics":[]}} -Info 42 [16:01:51.000] Project '/user/username/projects/myproject/tsconfig.json' (Configured) -Info 42 [16:01:52.000] Files (5) +Info 42 [00:01:51.000] Project '/user/username/projects/myproject/tsconfig.json' (Configured) +Info 42 [00:01:52.000] Files (5) -Info 42 [16:01:53.000] ----------------------------------------------- -Info 42 [16:01:54.000] Project '/user/username/projects/myproject/tsconfig-src.json' (Configured) -Info 42 [16:01:55.000] Files (3) +Info 42 [00:01:53.000] ----------------------------------------------- +Info 42 [00:01:54.000] Project '/user/username/projects/myproject/tsconfig-src.json' (Configured) +Info 42 [00:01:55.000] Files (3) -Info 42 [16:01:56.000] ----------------------------------------------- -Info 42 [16:01:57.000] Open files: -Info 42 [16:01:58.000] FileName: /user/username/projects/myproject/src/main.ts ProjectRootPath: undefined -Info 42 [16:01:59.000] Projects: /user/username/projects/myproject/tsconfig.json,/user/username/projects/myproject/tsconfig-src.json -Info 42 [16:02:00.000] getDefaultProject for /user/username/projects/myproject/src/main.ts: /user/username/projects/myproject/tsconfig-src.json -Info 42 [16:02:01.000] findDefaultConfiguredProject for /user/username/projects/myproject/src/main.ts: /user/username/projects/myproject/tsconfig-src.json -Info 42 [16:02:02.000] Search path: /dummy -Info 43 [16:02:03.000] For info: /dummy/dummy.ts :: No config files found. -Info 44 [16:02:04.000] Plugins were requested but not running in environment that supports 'require'. Nothing will be loaded -Info 45 [16:02:05.000] Starting updateGraphWorker: Project: /dev/null/inferredProject1* -Info 46 [16:02:06.000] DirectoryWatcher:: Added:: WatchInfo: /dummy/node_modules/@types 1 undefined Project: /dev/null/inferredProject1* WatchType: Type roots -Info 47 [16:02:07.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /dummy/node_modules/@types 1 undefined Project: /dev/null/inferredProject1* WatchType: Type roots -Info 48 [16:02:08.000] Finishing updateGraphWorker: Project: /dev/null/inferredProject1* Version: 1 structureChanged: true structureIsReused:: Not Elapsed:: *ms -Info 49 [16:02:09.000] Project '/dev/null/inferredProject1*' (Inferred) -Info 50 [16:02:10.000] Files (2) +Info 42 [00:01:56.000] ----------------------------------------------- +Info 42 [00:01:57.000] Open files: +Info 42 [00:01:58.000] FileName: /user/username/projects/myproject/src/main.ts ProjectRootPath: undefined +Info 42 [00:01:59.000] Projects: /user/username/projects/myproject/tsconfig.json,/user/username/projects/myproject/tsconfig-src.json +Info 42 [00:02:00.000] getDefaultProject for /user/username/projects/myproject/src/main.ts: /user/username/projects/myproject/tsconfig-src.json +Info 42 [00:02:01.000] findDefaultConfiguredProject for /user/username/projects/myproject/src/main.ts: /user/username/projects/myproject/tsconfig-src.json +Info 42 [00:02:02.000] Search path: /dummy +Info 43 [00:02:03.000] For info: /dummy/dummy.ts :: No config files found. +Info 44 [00:02:04.000] Plugins were requested but not running in environment that supports 'require'. Nothing will be loaded +Info 45 [00:02:05.000] Starting updateGraphWorker: Project: /dev/null/inferredProject1* +Info 46 [00:02:06.000] DirectoryWatcher:: Added:: WatchInfo: /dummy/node_modules/@types 1 undefined Project: /dev/null/inferredProject1* WatchType: Type roots +Info 47 [00:02:07.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /dummy/node_modules/@types 1 undefined Project: /dev/null/inferredProject1* WatchType: Type roots +Info 48 [00:02:08.000] Finishing updateGraphWorker: Project: /dev/null/inferredProject1* Version: 1 structureChanged: true structureIsReused:: Not Elapsed:: *ms +Info 49 [00:02:09.000] Project '/dev/null/inferredProject1*' (Inferred) +Info 50 [00:02:10.000] Files (2) /a/lib/lib.d.ts /dummy/dummy.ts @@ -172,61 +172,61 @@ Info 50 [16:02:10.000] Files (2) dummy.ts Root file specified for compilation -Info 51 [16:02:11.000] ----------------------------------------------- -Info 52 [16:02:12.000] Project '/user/username/projects/myproject/tsconfig.json' (Configured) -Info 52 [16:02:13.000] Files (5) +Info 51 [00:02:11.000] ----------------------------------------------- +Info 52 [00:02:12.000] Project '/user/username/projects/myproject/tsconfig.json' (Configured) +Info 52 [00:02:13.000] Files (5) -Info 52 [16:02:14.000] ----------------------------------------------- -Info 52 [16:02:15.000] Project '/user/username/projects/myproject/tsconfig-src.json' (Configured) -Info 52 [16:02:16.000] Files (3) +Info 52 [00:02:14.000] ----------------------------------------------- +Info 52 [00:02:15.000] Project '/user/username/projects/myproject/tsconfig-src.json' (Configured) +Info 52 [00:02:16.000] Files (3) -Info 52 [16:02:17.000] ----------------------------------------------- -Info 52 [16:02:18.000] Project '/dev/null/inferredProject1*' (Inferred) -Info 52 [16:02:19.000] Files (2) +Info 52 [00:02:17.000] ----------------------------------------------- +Info 52 [00:02:18.000] Project '/dev/null/inferredProject1*' (Inferred) +Info 52 [00:02:19.000] Files (2) -Info 52 [16:02:20.000] ----------------------------------------------- -Info 52 [16:02:21.000] Open files: -Info 52 [16:02:22.000] FileName: /user/username/projects/myproject/src/main.ts ProjectRootPath: undefined -Info 52 [16:02:23.000] Projects: /user/username/projects/myproject/tsconfig.json,/user/username/projects/myproject/tsconfig-src.json -Info 52 [16:02:24.000] FileName: /dummy/dummy.ts ProjectRootPath: undefined -Info 52 [16:02:25.000] Projects: /dev/null/inferredProject1* -Info 52 [16:02:26.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/src/main.ts 500 undefined WatchType: Closed Script info -Info 53 [16:02:27.000] Project '/user/username/projects/myproject/tsconfig.json' (Configured) -Info 53 [16:02:28.000] Files (5) +Info 52 [00:02:20.000] ----------------------------------------------- +Info 52 [00:02:21.000] Open files: +Info 52 [00:02:22.000] FileName: /user/username/projects/myproject/src/main.ts ProjectRootPath: undefined +Info 52 [00:02:23.000] Projects: /user/username/projects/myproject/tsconfig.json,/user/username/projects/myproject/tsconfig-src.json +Info 52 [00:02:24.000] FileName: /dummy/dummy.ts ProjectRootPath: undefined +Info 52 [00:02:25.000] Projects: /dev/null/inferredProject1* +Info 52 [00:02:26.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/src/main.ts 500 undefined WatchType: Closed Script info +Info 53 [00:02:27.000] Project '/user/username/projects/myproject/tsconfig.json' (Configured) +Info 53 [00:02:28.000] Files (5) -Info 53 [16:02:29.000] ----------------------------------------------- -Info 53 [16:02:30.000] Project '/user/username/projects/myproject/tsconfig-src.json' (Configured) -Info 53 [16:02:31.000] Files (3) +Info 53 [00:02:29.000] ----------------------------------------------- +Info 53 [00:02:30.000] Project '/user/username/projects/myproject/tsconfig-src.json' (Configured) +Info 53 [00:02:31.000] Files (3) -Info 53 [16:02:32.000] ----------------------------------------------- -Info 53 [16:02:33.000] Project '/dev/null/inferredProject1*' (Inferred) -Info 53 [16:02:34.000] Files (2) +Info 53 [00:02:32.000] ----------------------------------------------- +Info 53 [00:02:33.000] Project '/dev/null/inferredProject1*' (Inferred) +Info 53 [00:02:34.000] Files (2) -Info 53 [16:02:35.000] ----------------------------------------------- -Info 53 [16:02:36.000] Open files: -Info 53 [16:02:37.000] FileName: /dummy/dummy.ts ProjectRootPath: undefined -Info 53 [16:02:38.000] Projects: /dev/null/inferredProject1* -Info 53 [16:02:39.000] FileWatcher:: Added:: WatchInfo: /dummy/dummy.ts 500 undefined WatchType: Closed Script info -Info 54 [16:02:40.000] Project '/user/username/projects/myproject/tsconfig.json' (Configured) -Info 54 [16:02:41.000] Files (5) +Info 53 [00:02:35.000] ----------------------------------------------- +Info 53 [00:02:36.000] Open files: +Info 53 [00:02:37.000] FileName: /dummy/dummy.ts ProjectRootPath: undefined +Info 53 [00:02:38.000] Projects: /dev/null/inferredProject1* +Info 53 [00:02:39.000] FileWatcher:: Added:: WatchInfo: /dummy/dummy.ts 500 undefined WatchType: Closed Script info +Info 54 [00:02:40.000] Project '/user/username/projects/myproject/tsconfig.json' (Configured) +Info 54 [00:02:41.000] Files (5) -Info 54 [16:02:42.000] ----------------------------------------------- -Info 54 [16:02:43.000] Project '/user/username/projects/myproject/tsconfig-src.json' (Configured) -Info 54 [16:02:44.000] Files (3) +Info 54 [00:02:42.000] ----------------------------------------------- +Info 54 [00:02:43.000] Project '/user/username/projects/myproject/tsconfig-src.json' (Configured) +Info 54 [00:02:44.000] Files (3) -Info 54 [16:02:45.000] ----------------------------------------------- -Info 54 [16:02:46.000] Project '/dev/null/inferredProject1*' (Inferred) -Info 54 [16:02:47.000] Files (2) +Info 54 [00:02:45.000] ----------------------------------------------- +Info 54 [00:02:46.000] Project '/dev/null/inferredProject1*' (Inferred) +Info 54 [00:02:47.000] Files (2) -Info 54 [16:02:48.000] ----------------------------------------------- -Info 54 [16:02:49.000] Open files: -Info 54 [16:02:50.000] FileWatcher:: Close:: WatchInfo: /dummy/dummy.ts 500 undefined WatchType: Closed Script info -Info 55 [16:02:51.000] Search path: /dummy -Info 56 [16:02:52.000] For info: /dummy/dummy.ts :: No config files found. -Info 57 [16:02:53.000] Starting updateGraphWorker: Project: /dev/null/inferredProject1* -Info 58 [16:02:54.000] Finishing updateGraphWorker: Project: /dev/null/inferredProject1* Version: 2 structureChanged: false structureIsReused:: Not Elapsed:: *ms -Info 59 [16:02:55.000] Project '/dev/null/inferredProject1*' (Inferred) -Info 60 [16:02:56.000] Files (2) +Info 54 [00:02:48.000] ----------------------------------------------- +Info 54 [00:02:49.000] Open files: +Info 54 [00:02:50.000] FileWatcher:: Close:: WatchInfo: /dummy/dummy.ts 500 undefined WatchType: Closed Script info +Info 55 [00:02:51.000] Search path: /dummy +Info 56 [00:02:52.000] For info: /dummy/dummy.ts :: No config files found. +Info 57 [00:02:53.000] Starting updateGraphWorker: Project: /dev/null/inferredProject1* +Info 58 [00:02:54.000] Finishing updateGraphWorker: Project: /dev/null/inferredProject1* Version: 2 structureChanged: false structureIsReused:: Not Elapsed:: *ms +Info 59 [00:02:55.000] Project '/dev/null/inferredProject1*' (Inferred) +Info 60 [00:02:56.000] Files (2) /a/lib/lib.d.ts /dummy/dummy.ts @@ -236,10 +236,10 @@ Info 60 [16:02:56.000] Files (2) dummy.ts Root file specified for compilation -Info 61 [16:02:57.000] ----------------------------------------------- -Info 62 [16:02:58.000] `remove Project:: -Info 63 [16:02:59.000] Project '/user/username/projects/myproject/tsconfig.json' (Configured) -Info 64 [16:03:00.000] Files (5) +Info 61 [00:02:57.000] ----------------------------------------------- +Info 62 [00:02:58.000] `remove Project:: +Info 63 [00:02:59.000] Project '/user/username/projects/myproject/tsconfig.json' (Configured) +Info 64 [00:03:00.000] Files (5) /a/lib/lib.d.ts /user/username/projects/myproject/src/helpers/functions.ts /user/username/projects/myproject/src/main.ts @@ -258,15 +258,15 @@ Info 64 [16:03:00.000] Files (5) own/main.ts Part of 'files' list in tsconfig.json -Info 65 [16:03:01.000] ----------------------------------------------- -Info 66 [16:03:02.000] FileWatcher:: Close:: WatchInfo: /user/username/projects/myproject/tsconfig.json 2000 undefined Project: /user/username/projects/myproject/tsconfig.json WatchType: Config file -Info 67 [16:03:03.000] FileWatcher:: Close:: WatchInfo: /user/username/projects/myproject/tsconfig-indirect1.json 2000 undefined Project: /user/username/projects/myproject/tsconfig.json WatchType: Config file -Info 68 [16:03:04.000] FileWatcher:: Close:: WatchInfo: /user/username/projects/myproject/tsconfig-indirect2.json 2000 undefined Project: /user/username/projects/myproject/tsconfig.json WatchType: Config file -Info 69 [16:03:05.000] DirectoryWatcher:: Close:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/tsconfig.json WatchType: Type roots -Info 70 [16:03:06.000] 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 71 [16:03:07.000] `remove Project:: -Info 72 [16:03:08.000] Project '/user/username/projects/myproject/tsconfig-src.json' (Configured) -Info 73 [16:03:09.000] Files (3) +Info 65 [00:03:01.000] ----------------------------------------------- +Info 66 [00:03:02.000] FileWatcher:: Close:: WatchInfo: /user/username/projects/myproject/tsconfig.json 2000 undefined Project: /user/username/projects/myproject/tsconfig.json WatchType: Config file +Info 67 [00:03:03.000] FileWatcher:: Close:: WatchInfo: /user/username/projects/myproject/tsconfig-indirect1.json 2000 undefined Project: /user/username/projects/myproject/tsconfig.json WatchType: Config file +Info 68 [00:03:04.000] FileWatcher:: Close:: WatchInfo: /user/username/projects/myproject/tsconfig-indirect2.json 2000 undefined Project: /user/username/projects/myproject/tsconfig.json WatchType: Config file +Info 69 [00:03:05.000] DirectoryWatcher:: Close:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/tsconfig.json WatchType: Type roots +Info 70 [00:03:06.000] 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 71 [00:03:07.000] `remove Project:: +Info 72 [00:03:08.000] Project '/user/username/projects/myproject/tsconfig-src.json' (Configured) +Info 73 [00:03:09.000] Files (3) /a/lib/lib.d.ts /user/username/projects/myproject/src/helpers/functions.ts /user/username/projects/myproject/src/main.ts @@ -280,30 +280,30 @@ Info 73 [16:03:09.000] Files (3) src/main.ts Matched by include pattern './src/**/*' in 'tsconfig-src.json' -Info 74 [16:03:10.000] ----------------------------------------------- -Info 75 [16:03:11.000] DirectoryWatcher:: Close:: WatchInfo: /user/username/projects/myproject/src 1 undefined Config: /user/username/projects/myproject/tsconfig-src.json WatchType: Wild card directory -Info 76 [16:03:12.000] 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 77 [16:03:13.000] FileWatcher:: Close:: WatchInfo: /user/username/projects/myproject/tsconfig-src.json 2000 undefined Project: /user/username/projects/myproject/tsconfig.json WatchType: Config file -Info 78 [16:03:14.000] DirectoryWatcher:: Close:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/tsconfig-src.json WatchType: Type roots -Info 79 [16:03:15.000] 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 80 [16:03:16.000] FileWatcher:: Close:: WatchInfo: /user/username/projects/myproject/src/main.ts 500 undefined WatchType: Closed Script info -Info 81 [16:03:17.000] FileWatcher:: Close:: WatchInfo: /user/username/projects/myproject/own/main.ts 500 undefined WatchType: Closed Script info -Info 82 [16:03:18.000] FileWatcher:: Close:: WatchInfo: /user/username/projects/myproject/indirect1/main.ts 500 undefined WatchType: Closed Script info -Info 83 [16:03:19.000] FileWatcher:: Close:: WatchInfo: /user/username/projects/myproject/src/helpers/functions.ts 500 undefined WatchType: Closed Script info -Info 84 [16:03:20.000] Project '/dev/null/inferredProject1*' (Inferred) -Info 84 [16:03:21.000] Files (2) +Info 74 [00:03:10.000] ----------------------------------------------- +Info 75 [00:03:11.000] DirectoryWatcher:: Close:: WatchInfo: /user/username/projects/myproject/src 1 undefined Config: /user/username/projects/myproject/tsconfig-src.json WatchType: Wild card directory +Info 76 [00:03:12.000] 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 77 [00:03:13.000] FileWatcher:: Close:: WatchInfo: /user/username/projects/myproject/tsconfig-src.json 2000 undefined Project: /user/username/projects/myproject/tsconfig.json WatchType: Config file +Info 78 [00:03:14.000] DirectoryWatcher:: Close:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/tsconfig-src.json WatchType: Type roots +Info 79 [00:03:15.000] 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 80 [00:03:16.000] FileWatcher:: Close:: WatchInfo: /user/username/projects/myproject/src/main.ts 500 undefined WatchType: Closed Script info +Info 81 [00:03:17.000] FileWatcher:: Close:: WatchInfo: /user/username/projects/myproject/own/main.ts 500 undefined WatchType: Closed Script info +Info 82 [00:03:18.000] FileWatcher:: Close:: WatchInfo: /user/username/projects/myproject/indirect1/main.ts 500 undefined WatchType: Closed Script info +Info 83 [00:03:19.000] FileWatcher:: Close:: WatchInfo: /user/username/projects/myproject/src/helpers/functions.ts 500 undefined WatchType: Closed Script info +Info 84 [00:03:20.000] Project '/dev/null/inferredProject1*' (Inferred) +Info 84 [00:03:21.000] Files (2) -Info 84 [16:03:22.000] ----------------------------------------------- -Info 84 [16:03:23.000] Open files: -Info 84 [16:03:24.000] FileName: /dummy/dummy.ts ProjectRootPath: undefined -Info 84 [16:03:25.000] Projects: /dev/null/inferredProject1* -Info 84 [16:03:26.000] Search path: /user/username/projects/myproject/src -Info 85 [16:03:27.000] For info: /user/username/projects/myproject/src/main.ts :: Config file name: /user/username/projects/myproject/tsconfig.json -Info 86 [16:03:28.000] Creating configuration project /user/username/projects/myproject/tsconfig.json -Info 87 [16:03:29.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/tsconfig.json 2000 undefined Project: /user/username/projects/myproject/tsconfig.json WatchType: Config file -Info 88 [16:03:30.000] event: +Info 84 [00:03:22.000] ----------------------------------------------- +Info 84 [00:03:23.000] Open files: +Info 84 [00:03:24.000] FileName: /dummy/dummy.ts ProjectRootPath: undefined +Info 84 [00:03:25.000] Projects: /dev/null/inferredProject1* +Info 84 [00:03:26.000] Search path: /user/username/projects/myproject/src +Info 85 [00:03:27.000] For info: /user/username/projects/myproject/src/main.ts :: Config file name: /user/username/projects/myproject/tsconfig.json +Info 86 [00:03:28.000] Creating configuration project /user/username/projects/myproject/tsconfig.json +Info 87 [00:03:29.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/tsconfig.json 2000 undefined Project: /user/username/projects/myproject/tsconfig.json WatchType: Config file +Info 88 [00:03:30.000] event: {"seq":0,"type":"event","event":"projectLoadingStart","body":{"projectName":"/user/username/projects/myproject/tsconfig.json","reason":"Creating possible configured project for /user/username/projects/myproject/src/main.ts to open"}} -Info 89 [16:03:31.000] Config: /user/username/projects/myproject/tsconfig.json : { +Info 89 [00:03:31.000] Config: /user/username/projects/myproject/tsconfig.json : { "rootNames": [ "/user/username/projects/myproject/own/main.ts" ], @@ -323,10 +323,10 @@ Info 89 [16:03:31.000] Config: /user/username/projects/myproject/tsconfig.json } ] } -Info 90 [16:03:32.000] Plugins were requested but not running in environment that supports 'require'. Nothing will be loaded -Info 91 [16:03:33.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/own/main.ts 500 undefined WatchType: Closed Script info -Info 92 [16:03:34.000] Starting updateGraphWorker: Project: /user/username/projects/myproject/tsconfig.json -Info 93 [16:03:35.000] Config: /user/username/projects/myproject/tsconfig-indirect1.json : { +Info 90 [00:03:32.000] Plugins were requested but not running in environment that supports 'require'. Nothing will be loaded +Info 91 [00:03:33.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/own/main.ts 500 undefined WatchType: Closed Script info +Info 92 [00:03:34.000] Starting updateGraphWorker: Project: /user/username/projects/myproject/tsconfig.json +Info 93 [00:03:35.000] Config: /user/username/projects/myproject/tsconfig-indirect1.json : { "rootNames": [ "/user/username/projects/myproject/indirect1/main.ts" ], @@ -344,8 +344,8 @@ Info 93 [16:03:35.000] Config: /user/username/projects/myproject/tsconfig-indi } ] } -Info 94 [16:03:36.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/tsconfig-indirect1.json 2000 undefined Project: /user/username/projects/myproject/tsconfig.json WatchType: Config file -Info 95 [16:03:37.000] Config: /user/username/projects/myproject/tsconfig-src.json : { +Info 94 [00:03:36.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/tsconfig-indirect1.json 2000 undefined Project: /user/username/projects/myproject/tsconfig.json WatchType: Config file +Info 95 [00:03:37.000] Config: /user/username/projects/myproject/tsconfig-src.json : { "rootNames": [ "/user/username/projects/myproject/src/main.ts", "/user/username/projects/myproject/src/helpers/functions.ts" @@ -357,10 +357,10 @@ Info 95 [16:03:37.000] Config: /user/username/projects/myproject/tsconfig-src. "configFilePath": "/user/username/projects/myproject/tsconfig-src.json" } } -Info 96 [16:03:38.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/tsconfig-src.json 2000 undefined Project: /user/username/projects/myproject/tsconfig.json WatchType: Config file -Info 97 [16:03:39.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/src 1 undefined Config: /user/username/projects/myproject/tsconfig-src.json WatchType: Wild card directory -Info 98 [16:03:40.000] 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 99 [16:03:41.000] Config: /user/username/projects/myproject/tsconfig-indirect2.json : { +Info 96 [00:03:38.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/tsconfig-src.json 2000 undefined Project: /user/username/projects/myproject/tsconfig.json WatchType: Config file +Info 97 [00:03:39.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/src 1 undefined Config: /user/username/projects/myproject/tsconfig-src.json WatchType: Wild card directory +Info 98 [00:03:40.000] 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 99 [00:03:41.000] Config: /user/username/projects/myproject/tsconfig-indirect2.json : { "rootNames": [ "/user/username/projects/myproject/indirect2/main.ts" ], @@ -377,14 +377,14 @@ Info 99 [16:03:41.000] Config: /user/username/projects/myproject/tsconfig-indi } ] } -Info 100 [16:03:42.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/tsconfig-indirect2.json 2000 undefined Project: /user/username/projects/myproject/tsconfig.json WatchType: Config file -Info 101 [16:03:43.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/indirect1/main.ts 500 undefined WatchType: Closed Script info -Info 102 [16:03:44.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/src/helpers/functions.ts 500 undefined WatchType: Closed Script info -Info 103 [16:03:45.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/tsconfig.json WatchType: Type roots -Info 104 [16:03:46.000] 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 105 [16:03:47.000] Finishing updateGraphWorker: Project: /user/username/projects/myproject/tsconfig.json Version: 1 structureChanged: true structureIsReused:: Not Elapsed:: *ms -Info 106 [16:03:48.000] Project '/user/username/projects/myproject/tsconfig.json' (Configured) -Info 107 [16:03:49.000] Files (5) +Info 100 [00:03:42.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/tsconfig-indirect2.json 2000 undefined Project: /user/username/projects/myproject/tsconfig.json WatchType: Config file +Info 101 [00:03:43.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/indirect1/main.ts 500 undefined WatchType: Closed Script info +Info 102 [00:03:44.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/src/helpers/functions.ts 500 undefined WatchType: Closed Script info +Info 103 [00:03:45.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/tsconfig.json WatchType: Type roots +Info 104 [00:03:46.000] 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 105 [00:03:47.000] Finishing updateGraphWorker: Project: /user/username/projects/myproject/tsconfig.json Version: 1 structureChanged: true structureIsReused:: Not Elapsed:: *ms +Info 106 [00:03:48.000] Project '/user/username/projects/myproject/tsconfig.json' (Configured) +Info 107 [00:03:49.000] Files (5) /a/lib/lib.d.ts /user/username/projects/myproject/src/helpers/functions.ts /user/username/projects/myproject/src/main.ts @@ -403,19 +403,19 @@ Info 107 [16:03:49.000] Files (5) own/main.ts Part of 'files' list in tsconfig.json -Info 108 [16:03:50.000] ----------------------------------------------- -Info 109 [16:03:51.000] event: +Info 108 [00:03:50.000] ----------------------------------------------- +Info 109 [00:03:51.000] event: {"seq":0,"type":"event","event":"projectLoadingFinish","body":{"projectName":"/user/username/projects/myproject/tsconfig.json"}} -Info 110 [16:03:52.000] Creating configuration project /user/username/projects/myproject/tsconfig-src.json -Info 111 [16:03:53.000] event: +Info 110 [00:03:52.000] Creating configuration project /user/username/projects/myproject/tsconfig-src.json +Info 111 [00:03:53.000] event: {"seq":0,"type":"event","event":"projectLoadingStart","body":{"projectName":"/user/username/projects/myproject/tsconfig-src.json","reason":"Creating project referenced in solution /user/username/projects/myproject/tsconfig.json to find possible configured project for /user/username/projects/myproject/src/main.ts to open"}} -Info 112 [16:03:54.000] Plugins were requested but not running in environment that supports 'require'. Nothing will be loaded -Info 113 [16:03:55.000] Starting updateGraphWorker: Project: /user/username/projects/myproject/tsconfig-src.json -Info 114 [16:03:56.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/tsconfig-src.json WatchType: Type roots -Info 115 [16:03:57.000] 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 116 [16:03:58.000] Finishing updateGraphWorker: Project: /user/username/projects/myproject/tsconfig-src.json Version: 1 structureChanged: true structureIsReused:: Not Elapsed:: *ms -Info 117 [16:03:59.000] Project '/user/username/projects/myproject/tsconfig-src.json' (Configured) -Info 118 [16:04:00.000] Files (3) +Info 112 [00:03:54.000] Plugins were requested but not running in environment that supports 'require'. Nothing will be loaded +Info 113 [00:03:55.000] Starting updateGraphWorker: Project: /user/username/projects/myproject/tsconfig-src.json +Info 114 [00:03:56.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/tsconfig-src.json WatchType: Type roots +Info 115 [00:03:57.000] 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 116 [00:03:58.000] Finishing updateGraphWorker: Project: /user/username/projects/myproject/tsconfig-src.json Version: 1 structureChanged: true structureIsReused:: Not Elapsed:: *ms +Info 117 [00:03:59.000] Project '/user/username/projects/myproject/tsconfig-src.json' (Configured) +Info 118 [00:04:00.000] Files (3) /a/lib/lib.d.ts /user/username/projects/myproject/src/helpers/functions.ts /user/username/projects/myproject/src/main.ts @@ -429,50 +429,50 @@ Info 118 [16:04:00.000] Files (3) src/main.ts Matched by include pattern './src/**/*' in 'tsconfig-src.json' -Info 119 [16:04:01.000] ----------------------------------------------- -Info 120 [16:04:02.000] event: +Info 119 [00:04:01.000] ----------------------------------------------- +Info 120 [00:04:02.000] event: {"seq":0,"type":"event","event":"projectLoadingFinish","body":{"projectName":"/user/username/projects/myproject/tsconfig-src.json"}} -Info 121 [16:04:03.000] event: +Info 121 [00:04:03.000] event: {"seq":0,"type":"event","event":"configFileDiag","body":{"triggerFile":"/user/username/projects/myproject/src/main.ts","configFile":"/user/username/projects/myproject/tsconfig-src.json","diagnostics":[]}} -Info 122 [16:04:04.000] Project '/user/username/projects/myproject/tsconfig.json' (Configured) -Info 122 [16:04:05.000] Files (5) +Info 122 [00:04:04.000] Project '/user/username/projects/myproject/tsconfig.json' (Configured) +Info 122 [00:04:05.000] Files (5) -Info 122 [16:04:06.000] ----------------------------------------------- -Info 122 [16:04:07.000] Project '/user/username/projects/myproject/tsconfig-src.json' (Configured) -Info 122 [16:04:08.000] Files (3) +Info 122 [00:04:06.000] ----------------------------------------------- +Info 122 [00:04:07.000] Project '/user/username/projects/myproject/tsconfig-src.json' (Configured) +Info 122 [00:04:08.000] Files (3) -Info 122 [16:04:09.000] ----------------------------------------------- -Info 122 [16:04:10.000] Project '/dev/null/inferredProject1*' (Inferred) -Info 122 [16:04:11.000] Files (2) +Info 122 [00:04:09.000] ----------------------------------------------- +Info 122 [00:04:10.000] Project '/dev/null/inferredProject1*' (Inferred) +Info 122 [00:04:11.000] Files (2) -Info 122 [16:04:12.000] ----------------------------------------------- -Info 122 [16:04:13.000] Open files: -Info 122 [16:04:14.000] FileName: /dummy/dummy.ts ProjectRootPath: undefined -Info 122 [16:04:15.000] Projects: /dev/null/inferredProject1* -Info 122 [16:04:16.000] FileName: /user/username/projects/myproject/src/main.ts ProjectRootPath: undefined -Info 122 [16:04:17.000] Projects: /user/username/projects/myproject/tsconfig.json,/user/username/projects/myproject/tsconfig-src.json -Info 122 [16:04:18.000] reload projects. -Info 123 [16:04:19.000] Scheduled: /dev/null/inferredProject1* -Info 124 [16:04:20.000] Scheduled: /user/username/projects/myproject/tsconfig.json -Info 125 [16:04:21.000] Scheduled: /user/username/projects/myproject/tsconfig-src.json -Info 126 [16:04:22.000] Scheduled: *ensureProjectForOpenFiles* -Info 127 [16:04:23.000] Scheduled: /user/username/projects/myproject/tsconfig.json, Cancelled earlier one -Info 128 [16:04:24.000] Scheduled: *ensureProjectForOpenFiles*, Cancelled earlier one -Info 129 [16:04:25.000] Scheduled: /user/username/projects/myproject/tsconfig.json, Cancelled earlier one -Info 130 [16:04:26.000] Scheduled: *ensureProjectForOpenFiles*, Cancelled earlier one -Info 131 [16:04:27.000] Scheduled: /user/username/projects/myproject/tsconfig.json, Cancelled earlier one -Info 132 [16:04:28.000] Scheduled: /user/username/projects/myproject/tsconfig-src.json, Cancelled earlier one -Info 133 [16:04:29.000] Scheduled: *ensureProjectForOpenFiles*, Cancelled earlier one -Info 134 [16:04:30.000] Search path: /dummy -Info 135 [16:04:31.000] For info: /dummy/dummy.ts :: No config files found. -Info 136 [16:04:32.000] Search path: /user/username/projects/myproject/src -Info 137 [16:04:33.000] For info: /user/username/projects/myproject/src/main.ts :: Config file name: /user/username/projects/myproject/tsconfig.json -Info 138 [16:04:34.000] DirectoryWatcher:: Close:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/tsconfig.json WatchType: Type roots -Info 139 [16:04:35.000] 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 140 [16:04:36.000] Reloading configured project /user/username/projects/myproject/tsconfig.json -Info 141 [16:04:37.000] event: +Info 122 [00:04:12.000] ----------------------------------------------- +Info 122 [00:04:13.000] Open files: +Info 122 [00:04:14.000] FileName: /dummy/dummy.ts ProjectRootPath: undefined +Info 122 [00:04:15.000] Projects: /dev/null/inferredProject1* +Info 122 [00:04:16.000] FileName: /user/username/projects/myproject/src/main.ts ProjectRootPath: undefined +Info 122 [00:04:17.000] Projects: /user/username/projects/myproject/tsconfig.json,/user/username/projects/myproject/tsconfig-src.json +Info 122 [00:04:18.000] reload projects. +Info 123 [00:04:19.000] Scheduled: /dev/null/inferredProject1* +Info 124 [00:04:20.000] Scheduled: /user/username/projects/myproject/tsconfig.json +Info 125 [00:04:21.000] Scheduled: /user/username/projects/myproject/tsconfig-src.json +Info 126 [00:04:22.000] Scheduled: *ensureProjectForOpenFiles* +Info 127 [00:04:23.000] Scheduled: /user/username/projects/myproject/tsconfig.json, Cancelled earlier one +Info 128 [00:04:24.000] Scheduled: *ensureProjectForOpenFiles*, Cancelled earlier one +Info 129 [00:04:25.000] Scheduled: /user/username/projects/myproject/tsconfig.json, Cancelled earlier one +Info 130 [00:04:26.000] Scheduled: *ensureProjectForOpenFiles*, Cancelled earlier one +Info 131 [00:04:27.000] Scheduled: /user/username/projects/myproject/tsconfig.json, Cancelled earlier one +Info 132 [00:04:28.000] Scheduled: /user/username/projects/myproject/tsconfig-src.json, Cancelled earlier one +Info 133 [00:04:29.000] Scheduled: *ensureProjectForOpenFiles*, Cancelled earlier one +Info 134 [00:04:30.000] Search path: /dummy +Info 135 [00:04:31.000] For info: /dummy/dummy.ts :: No config files found. +Info 136 [00:04:32.000] Search path: /user/username/projects/myproject/src +Info 137 [00:04:33.000] For info: /user/username/projects/myproject/src/main.ts :: Config file name: /user/username/projects/myproject/tsconfig.json +Info 138 [00:04:34.000] DirectoryWatcher:: Close:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/tsconfig.json WatchType: Type roots +Info 139 [00:04:35.000] 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 140 [00:04:36.000] Reloading configured project /user/username/projects/myproject/tsconfig.json +Info 141 [00:04:37.000] event: {"seq":0,"type":"event","event":"projectLoadingStart","body":{"projectName":"/user/username/projects/myproject/tsconfig.json","reason":"User requested reload projects"}} -Info 142 [16:04:38.000] Config: /user/username/projects/myproject/tsconfig.json : { +Info 142 [00:04:38.000] Config: /user/username/projects/myproject/tsconfig.json : { "rootNames": [ "/user/username/projects/myproject/own/main.ts" ], @@ -492,9 +492,9 @@ Info 142 [16:04:38.000] Config: /user/username/projects/myproject/tsconfig.json } ] } -Info 143 [16:04:39.000] Plugins were requested but not running in environment that supports 'require'. Nothing will be loaded -Info 144 [16:04:40.000] Starting updateGraphWorker: Project: /user/username/projects/myproject/tsconfig.json -Info 145 [16:04:41.000] Config: /user/username/projects/myproject/tsconfig-indirect1.json : { +Info 143 [00:04:39.000] Plugins were requested but not running in environment that supports 'require'. Nothing will be loaded +Info 144 [00:04:40.000] Starting updateGraphWorker: Project: /user/username/projects/myproject/tsconfig.json +Info 145 [00:04:41.000] Config: /user/username/projects/myproject/tsconfig-indirect1.json : { "rootNames": [ "/user/username/projects/myproject/indirect1/main.ts" ], @@ -512,7 +512,7 @@ Info 145 [16:04:41.000] Config: /user/username/projects/myproject/tsconfig-indi } ] } -Info 146 [16:04:42.000] Config: /user/username/projects/myproject/tsconfig-src.json : { +Info 146 [00:04:42.000] Config: /user/username/projects/myproject/tsconfig-src.json : { "rootNames": [ "/user/username/projects/myproject/src/main.ts", "/user/username/projects/myproject/src/helpers/functions.ts" @@ -524,7 +524,7 @@ Info 146 [16:04:42.000] Config: /user/username/projects/myproject/tsconfig-src. "configFilePath": "/user/username/projects/myproject/tsconfig-src.json" } } -Info 147 [16:04:43.000] Config: /user/username/projects/myproject/tsconfig-indirect2.json : { +Info 147 [00:04:43.000] Config: /user/username/projects/myproject/tsconfig-indirect2.json : { "rootNames": [ "/user/username/projects/myproject/indirect2/main.ts" ], @@ -541,69 +541,69 @@ Info 147 [16:04:43.000] Config: /user/username/projects/myproject/tsconfig-indi } ] } -Info 148 [16:04:44.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/tsconfig.json WatchType: Type roots -Info 149 [16:04:45.000] 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 150 [16:04:46.000] Finishing updateGraphWorker: Project: /user/username/projects/myproject/tsconfig.json Version: 2 structureChanged: true structureIsReused:: Not Elapsed:: *ms -Info 151 [16:04:47.000] Different program with same set of files -Info 152 [16:04:48.000] event: +Info 148 [00:04:44.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/tsconfig.json WatchType: Type roots +Info 149 [00:04:45.000] 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 150 [00:04:46.000] Finishing updateGraphWorker: Project: /user/username/projects/myproject/tsconfig.json Version: 2 structureChanged: true structureIsReused:: Not Elapsed:: *ms +Info 151 [00:04:47.000] Different program with same set of files +Info 152 [00:04:48.000] event: {"seq":0,"type":"event","event":"projectLoadingFinish","body":{"projectName":"/user/username/projects/myproject/tsconfig.json"}} -Info 153 [16:04:49.000] event: +Info 153 [00:04:49.000] event: {"seq":0,"type":"event","event":"configFileDiag","body":{"triggerFile":"/user/username/projects/myproject/tsconfig.json","configFile":"/user/username/projects/myproject/tsconfig.json","diagnostics":[]}} -Info 154 [16:04:50.000] DirectoryWatcher:: Close:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/tsconfig-src.json WatchType: Type roots -Info 155 [16:04:51.000] 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 156 [16:04:52.000] Reloading configured project /user/username/projects/myproject/tsconfig-src.json -Info 157 [16:04:53.000] event: +Info 154 [00:04:50.000] DirectoryWatcher:: Close:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/tsconfig-src.json WatchType: Type roots +Info 155 [00:04:51.000] 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 156 [00:04:52.000] Reloading configured project /user/username/projects/myproject/tsconfig-src.json +Info 157 [00:04:53.000] event: {"seq":0,"type":"event","event":"projectLoadingStart","body":{"projectName":"/user/username/projects/myproject/tsconfig-src.json","reason":"User requested reload projects"}} -Info 158 [16:04:54.000] Plugins were requested but not running in environment that supports 'require'. Nothing will be loaded -Info 159 [16:04:55.000] Starting updateGraphWorker: Project: /user/username/projects/myproject/tsconfig-src.json -Info 160 [16:04:56.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/tsconfig-src.json WatchType: Type roots -Info 161 [16:04:57.000] 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 162 [16:04:58.000] Finishing updateGraphWorker: Project: /user/username/projects/myproject/tsconfig-src.json Version: 2 structureChanged: true structureIsReused:: Not Elapsed:: *ms -Info 163 [16:04:59.000] Different program with same set of files -Info 164 [16:05:00.000] event: +Info 158 [00:04:54.000] Plugins were requested but not running in environment that supports 'require'. Nothing will be loaded +Info 159 [00:04:55.000] Starting updateGraphWorker: Project: /user/username/projects/myproject/tsconfig-src.json +Info 160 [00:04:56.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/tsconfig-src.json WatchType: Type roots +Info 161 [00:04:57.000] 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 162 [00:04:58.000] Finishing updateGraphWorker: Project: /user/username/projects/myproject/tsconfig-src.json Version: 2 structureChanged: true structureIsReused:: Not Elapsed:: *ms +Info 163 [00:04:59.000] Different program with same set of files +Info 164 [00:05:00.000] event: {"seq":0,"type":"event","event":"projectLoadingFinish","body":{"projectName":"/user/username/projects/myproject/tsconfig-src.json"}} -Info 165 [16:05:01.000] event: +Info 165 [00:05:01.000] event: {"seq":0,"type":"event","event":"configFileDiag","body":{"triggerFile":"/user/username/projects/myproject/tsconfig-src.json","configFile":"/user/username/projects/myproject/tsconfig-src.json","diagnostics":[]}} -Info 166 [16:05:02.000] DirectoryWatcher:: Close:: WatchInfo: /dummy/node_modules/@types 1 undefined Project: /dev/null/inferredProject1* WatchType: Type roots -Info 167 [16:05:03.000] Elapsed:: *ms DirectoryWatcher:: Close:: WatchInfo: /dummy/node_modules/@types 1 undefined Project: /dev/null/inferredProject1* WatchType: Type roots -Info 168 [16:05:04.000] Before ensureProjectForOpenFiles: -Info 169 [16:05:05.000] Project '/user/username/projects/myproject/tsconfig.json' (Configured) -Info 169 [16:05:06.000] Files (5) +Info 166 [00:05:02.000] DirectoryWatcher:: Close:: WatchInfo: /dummy/node_modules/@types 1 undefined Project: /dev/null/inferredProject1* WatchType: Type roots +Info 167 [00:05:03.000] Elapsed:: *ms DirectoryWatcher:: Close:: WatchInfo: /dummy/node_modules/@types 1 undefined Project: /dev/null/inferredProject1* WatchType: Type roots +Info 168 [00:05:04.000] Before ensureProjectForOpenFiles: +Info 169 [00:05:05.000] Project '/user/username/projects/myproject/tsconfig.json' (Configured) +Info 169 [00:05:06.000] Files (5) -Info 169 [16:05:07.000] ----------------------------------------------- -Info 169 [16:05:08.000] Project '/user/username/projects/myproject/tsconfig-src.json' (Configured) -Info 169 [16:05:09.000] Files (3) +Info 169 [00:05:07.000] ----------------------------------------------- +Info 169 [00:05:08.000] Project '/user/username/projects/myproject/tsconfig-src.json' (Configured) +Info 169 [00:05:09.000] Files (3) -Info 169 [16:05:10.000] ----------------------------------------------- -Info 169 [16:05:11.000] Project '/dev/null/inferredProject1*' (Inferred) -Info 169 [16:05:12.000] Files (2) +Info 169 [00:05:10.000] ----------------------------------------------- +Info 169 [00:05:11.000] Project '/dev/null/inferredProject1*' (Inferred) +Info 169 [00:05:12.000] Files (2) -Info 169 [16:05:13.000] ----------------------------------------------- -Info 169 [16:05:14.000] Open files: -Info 169 [16:05:15.000] FileName: /dummy/dummy.ts ProjectRootPath: undefined -Info 169 [16:05:16.000] Projects: /dev/null/inferredProject1* -Info 169 [16:05:17.000] FileName: /user/username/projects/myproject/src/main.ts ProjectRootPath: undefined -Info 169 [16:05:18.000] Projects: /user/username/projects/myproject/tsconfig.json,/user/username/projects/myproject/tsconfig-src.json -Info 169 [16:05:19.000] Starting updateGraphWorker: Project: /dev/null/inferredProject1* -Info 170 [16:05:20.000] DirectoryWatcher:: Added:: WatchInfo: /dummy/node_modules/@types 1 undefined Project: /dev/null/inferredProject1* WatchType: Type roots -Info 171 [16:05:21.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /dummy/node_modules/@types 1 undefined Project: /dev/null/inferredProject1* WatchType: Type roots -Info 172 [16:05:22.000] Finishing updateGraphWorker: Project: /dev/null/inferredProject1* Version: 3 structureChanged: true structureIsReused:: Not Elapsed:: *ms -Info 173 [16:05:23.000] Different program with same set of files -Info 174 [16:05:24.000] After ensureProjectForOpenFiles: -Info 175 [16:05:25.000] Project '/user/username/projects/myproject/tsconfig.json' (Configured) -Info 175 [16:05:26.000] Files (5) +Info 169 [00:05:13.000] ----------------------------------------------- +Info 169 [00:05:14.000] Open files: +Info 169 [00:05:15.000] FileName: /dummy/dummy.ts ProjectRootPath: undefined +Info 169 [00:05:16.000] Projects: /dev/null/inferredProject1* +Info 169 [00:05:17.000] FileName: /user/username/projects/myproject/src/main.ts ProjectRootPath: undefined +Info 169 [00:05:18.000] Projects: /user/username/projects/myproject/tsconfig.json,/user/username/projects/myproject/tsconfig-src.json +Info 169 [00:05:19.000] Starting updateGraphWorker: Project: /dev/null/inferredProject1* +Info 170 [00:05:20.000] DirectoryWatcher:: Added:: WatchInfo: /dummy/node_modules/@types 1 undefined Project: /dev/null/inferredProject1* WatchType: Type roots +Info 171 [00:05:21.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /dummy/node_modules/@types 1 undefined Project: /dev/null/inferredProject1* WatchType: Type roots +Info 172 [00:05:22.000] Finishing updateGraphWorker: Project: /dev/null/inferredProject1* Version: 3 structureChanged: true structureIsReused:: Not Elapsed:: *ms +Info 173 [00:05:23.000] Different program with same set of files +Info 174 [00:05:24.000] After ensureProjectForOpenFiles: +Info 175 [00:05:25.000] Project '/user/username/projects/myproject/tsconfig.json' (Configured) +Info 175 [00:05:26.000] Files (5) -Info 175 [16:05:27.000] ----------------------------------------------- -Info 175 [16:05:28.000] Project '/user/username/projects/myproject/tsconfig-src.json' (Configured) -Info 175 [16:05:29.000] Files (3) +Info 175 [00:05:27.000] ----------------------------------------------- +Info 175 [00:05:28.000] Project '/user/username/projects/myproject/tsconfig-src.json' (Configured) +Info 175 [00:05:29.000] Files (3) -Info 175 [16:05:30.000] ----------------------------------------------- -Info 175 [16:05:31.000] Project '/dev/null/inferredProject1*' (Inferred) -Info 175 [16:05:32.000] Files (2) +Info 175 [00:05:30.000] ----------------------------------------------- +Info 175 [00:05:31.000] Project '/dev/null/inferredProject1*' (Inferred) +Info 175 [00:05:32.000] Files (2) -Info 175 [16:05:33.000] ----------------------------------------------- -Info 175 [16:05:34.000] Open files: -Info 175 [16:05:35.000] FileName: /dummy/dummy.ts ProjectRootPath: undefined -Info 175 [16:05:36.000] Projects: /dev/null/inferredProject1* -Info 175 [16:05:37.000] FileName: /user/username/projects/myproject/src/main.ts ProjectRootPath: undefined -Info 175 [16:05:38.000] Projects: /user/username/projects/myproject/tsconfig.json,/user/username/projects/myproject/tsconfig-src.json \ No newline at end of file +Info 175 [00:05:33.000] ----------------------------------------------- +Info 175 [00:05:34.000] Open files: +Info 175 [00:05:35.000] FileName: /dummy/dummy.ts ProjectRootPath: undefined +Info 175 [00:05:36.000] Projects: /dev/null/inferredProject1* +Info 175 [00:05:37.000] FileName: /user/username/projects/myproject/src/main.ts ProjectRootPath: undefined +Info 175 [00:05:38.000] Projects: /user/username/projects/myproject/tsconfig.json,/user/username/projects/myproject/tsconfig-src.json \ No newline at end of file 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-indirect-project.js b/tests/baselines/reference/tsserver/projectReferences/solution-with-its-own-files-and-disables-looking-into-the-child-project-if-disableReferencedProjectLoad-is-set-in-indirect-project.js index dcb02df265903..ad1297cb3c257 100644 --- a/tests/baselines/reference/tsserver/projectReferences/solution-with-its-own-files-and-disables-looking-into-the-child-project-if-disableReferencedProjectLoad-is-set-in-indirect-project.js +++ b/tests/baselines/reference/tsserver/projectReferences/solution-with-its-own-files-and-disables-looking-into-the-child-project-if-disableReferencedProjectLoad-is-set-in-indirect-project.js @@ -1,11 +1,11 @@ -Info 0 [16:01:03.000] Provided types map file "/a/lib/typesMap.json" doesn't exist -Info 1 [16:01:04.000] Search path: /user/username/projects/myproject/src -Info 2 [16:01:05.000] For info: /user/username/projects/myproject/src/main.ts :: Config file name: /user/username/projects/myproject/tsconfig.json -Info 3 [16:01:06.000] Creating configuration project /user/username/projects/myproject/tsconfig.json -Info 4 [16:01:07.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/tsconfig.json 2000 undefined Project: /user/username/projects/myproject/tsconfig.json WatchType: Config file -Info 5 [16:01:08.000] event: +Info 0 [00:01:03.000] Provided types map file "/a/lib/typesMap.json" doesn't exist +Info 1 [00:01:04.000] Search path: /user/username/projects/myproject/src +Info 2 [00:01:05.000] For info: /user/username/projects/myproject/src/main.ts :: Config file name: /user/username/projects/myproject/tsconfig.json +Info 3 [00:01:06.000] Creating configuration project /user/username/projects/myproject/tsconfig.json +Info 4 [00:01:07.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/tsconfig.json 2000 undefined Project: /user/username/projects/myproject/tsconfig.json WatchType: Config file +Info 5 [00:01:08.000] event: {"seq":0,"type":"event","event":"projectLoadingStart","body":{"projectName":"/user/username/projects/myproject/tsconfig.json","reason":"Creating possible configured project for /user/username/projects/myproject/src/main.ts to open"}} -Info 6 [16:01:09.000] Config: /user/username/projects/myproject/tsconfig.json : { +Info 6 [00:01:09.000] Config: /user/username/projects/myproject/tsconfig.json : { "rootNames": [ "/user/username/projects/myproject/own/main.ts" ], @@ -21,10 +21,10 @@ Info 6 [16:01:09.000] Config: /user/username/projects/myproject/tsconfig.json } ] } -Info 7 [16:01:10.000] Plugins were requested but not running in environment that supports 'require'. Nothing will be loaded -Info 8 [16:01:11.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/own/main.ts 500 undefined WatchType: Closed Script info -Info 9 [16:01:12.000] Starting updateGraphWorker: Project: /user/username/projects/myproject/tsconfig.json -Info 10 [16:01:13.000] Config: /user/username/projects/myproject/tsconfig-indirect1.json : { +Info 7 [00:01:10.000] Plugins were requested but not running in environment that supports 'require'. Nothing will be loaded +Info 8 [00:01:11.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/own/main.ts 500 undefined WatchType: Closed Script info +Info 9 [00:01:12.000] Starting updateGraphWorker: Project: /user/username/projects/myproject/tsconfig.json +Info 10 [00:01:13.000] Config: /user/username/projects/myproject/tsconfig-indirect1.json : { "rootNames": [ "/user/username/projects/myproject/indirect1/main.ts" ], @@ -42,8 +42,8 @@ Info 10 [16:01:13.000] Config: /user/username/projects/myproject/tsconfig-indi } ] } -Info 11 [16:01:14.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/tsconfig-indirect1.json 2000 undefined Project: /user/username/projects/myproject/tsconfig.json WatchType: Config file -Info 12 [16:01:15.000] Config: /user/username/projects/myproject/tsconfig-src.json : { +Info 11 [00:01:14.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/tsconfig-indirect1.json 2000 undefined Project: /user/username/projects/myproject/tsconfig.json WatchType: Config file +Info 12 [00:01:15.000] Config: /user/username/projects/myproject/tsconfig-src.json : { "rootNames": [ "/user/username/projects/myproject/src/main.ts", "/user/username/projects/myproject/src/helpers/functions.ts" @@ -55,17 +55,17 @@ Info 12 [16:01:15.000] Config: /user/username/projects/myproject/tsconfig-src. "configFilePath": "/user/username/projects/myproject/tsconfig-src.json" } } -Info 13 [16:01:16.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/tsconfig-src.json 2000 undefined Project: /user/username/projects/myproject/tsconfig.json WatchType: Config file -Info 14 [16:01:17.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/src 1 undefined Config: /user/username/projects/myproject/tsconfig-src.json WatchType: Wild card directory -Info 15 [16:01:18.000] 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 16 [16:01:19.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/indirect1/main.ts 500 undefined WatchType: Closed Script info -Info 17 [16:01:20.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/src/helpers/functions.ts 500 undefined WatchType: Closed Script info -Info 18 [16:01:21.000] FileWatcher:: Added:: WatchInfo: /a/lib/lib.d.ts 500 undefined WatchType: Closed Script info -Info 19 [16:01:22.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/tsconfig.json WatchType: Type roots -Info 20 [16:01:23.000] 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 21 [16:01:24.000] Finishing updateGraphWorker: Project: /user/username/projects/myproject/tsconfig.json Version: 1 structureChanged: true structureIsReused:: Not Elapsed:: *ms -Info 22 [16:01:25.000] Project '/user/username/projects/myproject/tsconfig.json' (Configured) -Info 23 [16:01:26.000] Files (5) +Info 13 [00:01:16.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/tsconfig-src.json 2000 undefined Project: /user/username/projects/myproject/tsconfig.json WatchType: Config file +Info 14 [00:01:17.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/src 1 undefined Config: /user/username/projects/myproject/tsconfig-src.json WatchType: Wild card directory +Info 15 [00:01:18.000] 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 16 [00:01:19.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/indirect1/main.ts 500 undefined WatchType: Closed Script info +Info 17 [00:01:20.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/src/helpers/functions.ts 500 undefined WatchType: Closed Script info +Info 18 [00:01:21.000] FileWatcher:: Added:: WatchInfo: /a/lib/lib.d.ts 500 undefined WatchType: Closed Script info +Info 19 [00:01:22.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/tsconfig.json WatchType: Type roots +Info 20 [00:01:23.000] 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 21 [00:01:24.000] Finishing updateGraphWorker: Project: /user/username/projects/myproject/tsconfig.json Version: 1 structureChanged: true structureIsReused:: Not Elapsed:: *ms +Info 22 [00:01:25.000] Project '/user/username/projects/myproject/tsconfig.json' (Configured) +Info 23 [00:01:26.000] Files (5) /a/lib/lib.d.ts /user/username/projects/myproject/src/helpers/functions.ts /user/username/projects/myproject/src/main.ts @@ -84,21 +84,21 @@ Info 23 [16:01:26.000] Files (5) own/main.ts Part of 'files' list in tsconfig.json -Info 24 [16:01:27.000] ----------------------------------------------- -Info 25 [16:01:28.000] event: +Info 24 [00:01:27.000] ----------------------------------------------- +Info 25 [00:01:28.000] event: {"seq":0,"type":"event","event":"projectLoadingFinish","body":{"projectName":"/user/username/projects/myproject/tsconfig.json"}} -Info 26 [16:01:29.000] event: +Info 26 [00:01:29.000] event: {"seq":0,"type":"event","event":"telemetry","body":{"telemetryEventName":"projectInfo","payload":{"projectId":"4a33d78ee40d836c4f4e64c59aed976628aea0013be9585c5ff171dfc41baf98","fileStats":{"js":0,"jsSize":0,"jsx":0,"jsxSize":0,"ts":4,"tsSize":166,"tsx":0,"tsxSize":0,"dts":1,"dtsSize":334,"deferred":0,"deferredSize":0},"compilerOptions":{"outDir":"","baseUrl":""},"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 27 [16:01:30.000] Creating configuration project /user/username/projects/myproject/tsconfig-indirect1.json -Info 28 [16:01:31.000] event: +Info 27 [00:01:30.000] Creating configuration project /user/username/projects/myproject/tsconfig-indirect1.json +Info 28 [00:01:31.000] event: {"seq":0,"type":"event","event":"projectLoadingStart","body":{"projectName":"/user/username/projects/myproject/tsconfig-indirect1.json","reason":"Creating project referenced in solution /user/username/projects/myproject/tsconfig.json to find possible configured project for /user/username/projects/myproject/src/main.ts to open"}} -Info 29 [16:01:32.000] Plugins were requested but not running in environment that supports 'require'. Nothing will be loaded -Info 30 [16:01:33.000] Starting updateGraphWorker: Project: /user/username/projects/myproject/tsconfig-indirect1.json -Info 31 [16:01:34.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/tsconfig-indirect1.json WatchType: Type roots -Info 32 [16:01:35.000] 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 33 [16:01:36.000] Finishing updateGraphWorker: Project: /user/username/projects/myproject/tsconfig-indirect1.json Version: 1 structureChanged: true structureIsReused:: Not Elapsed:: *ms -Info 34 [16:01:37.000] Project '/user/username/projects/myproject/tsconfig-indirect1.json' (Configured) -Info 35 [16:01:38.000] Files (4) +Info 29 [00:01:32.000] Plugins were requested but not running in environment that supports 'require'. Nothing will be loaded +Info 30 [00:01:33.000] Starting updateGraphWorker: Project: /user/username/projects/myproject/tsconfig-indirect1.json +Info 31 [00:01:34.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/tsconfig-indirect1.json WatchType: Type roots +Info 32 [00:01:35.000] 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 33 [00:01:36.000] Finishing updateGraphWorker: Project: /user/username/projects/myproject/tsconfig-indirect1.json Version: 1 structureChanged: true structureIsReused:: Not Elapsed:: *ms +Info 34 [00:01:37.000] Project '/user/username/projects/myproject/tsconfig-indirect1.json' (Configured) +Info 35 [00:01:38.000] Files (4) /a/lib/lib.d.ts /user/username/projects/myproject/src/helpers/functions.ts /user/username/projects/myproject/src/main.ts @@ -114,35 +114,35 @@ Info 35 [16:01:38.000] Files (4) indirect1/main.ts Part of 'files' list in tsconfig.json -Info 36 [16:01:39.000] ----------------------------------------------- -Info 37 [16:01:40.000] event: +Info 36 [00:01:39.000] ----------------------------------------------- +Info 37 [00:01:40.000] event: {"seq":0,"type":"event","event":"projectLoadingFinish","body":{"projectName":"/user/username/projects/myproject/tsconfig-indirect1.json"}} -Info 38 [16:01:41.000] event: +Info 38 [00:01:41.000] event: {"seq":0,"type":"event","event":"telemetry","body":{"telemetryEventName":"projectInfo","payload":{"projectId":"9ccc3aed1af08832ccb25ea453f7b771199f56af238b53cc428549dbd2d59246","fileStats":{"js":0,"jsSize":0,"jsx":0,"jsxSize":0,"ts":3,"tsSize":134,"tsx":0,"tsxSize":0,"dts":1,"dtsSize":334,"deferred":0,"deferredSize":0},"compilerOptions":{"composite":true,"outDir":"","baseUrl":"","disableReferencedProjectLoad":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 39 [16:01:42.000] event: +Info 39 [00:01:42.000] event: {"seq":0,"type":"event","event":"configFileDiag","body":{"triggerFile":"/user/username/projects/myproject/src/main.ts","configFile":"/user/username/projects/myproject/tsconfig.json","diagnostics":[]}} -Info 40 [16:01:43.000] Project '/user/username/projects/myproject/tsconfig.json' (Configured) -Info 40 [16:01:44.000] Files (5) +Info 40 [00:01:43.000] Project '/user/username/projects/myproject/tsconfig.json' (Configured) +Info 40 [00:01:44.000] Files (5) -Info 40 [16:01:45.000] ----------------------------------------------- -Info 40 [16:01:46.000] Project '/user/username/projects/myproject/tsconfig-indirect1.json' (Configured) -Info 40 [16:01:47.000] Files (4) +Info 40 [00:01:45.000] ----------------------------------------------- +Info 40 [00:01:46.000] Project '/user/username/projects/myproject/tsconfig-indirect1.json' (Configured) +Info 40 [00:01:47.000] Files (4) -Info 40 [16:01:48.000] ----------------------------------------------- -Info 40 [16:01:49.000] Open files: -Info 40 [16:01:50.000] FileName: /user/username/projects/myproject/src/main.ts ProjectRootPath: undefined -Info 40 [16:01:51.000] Projects: /user/username/projects/myproject/tsconfig.json,/user/username/projects/myproject/tsconfig-indirect1.json -Info 40 [16:01:52.000] getDefaultProject for /user/username/projects/myproject/src/main.ts: /user/username/projects/myproject/tsconfig.json -Info 40 [16:01:53.000] findDefaultConfiguredProject for /user/username/projects/myproject/src/main.ts: undefined -Info 40 [16:01:54.000] Search path: /dummy -Info 41 [16:01:55.000] For info: /dummy/dummy.ts :: No config files found. -Info 42 [16:01:56.000] Plugins were requested but not running in environment that supports 'require'. Nothing will be loaded -Info 43 [16:01:57.000] Starting updateGraphWorker: Project: /dev/null/inferredProject1* -Info 44 [16:01:58.000] DirectoryWatcher:: Added:: WatchInfo: /dummy/node_modules/@types 1 undefined Project: /dev/null/inferredProject1* WatchType: Type roots -Info 45 [16:01:59.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /dummy/node_modules/@types 1 undefined Project: /dev/null/inferredProject1* WatchType: Type roots -Info 46 [16:02:00.000] Finishing updateGraphWorker: Project: /dev/null/inferredProject1* Version: 1 structureChanged: true structureIsReused:: Not Elapsed:: *ms -Info 47 [16:02:01.000] Project '/dev/null/inferredProject1*' (Inferred) -Info 48 [16:02:02.000] Files (2) +Info 40 [00:01:48.000] ----------------------------------------------- +Info 40 [00:01:49.000] Open files: +Info 40 [00:01:50.000] FileName: /user/username/projects/myproject/src/main.ts ProjectRootPath: undefined +Info 40 [00:01:51.000] Projects: /user/username/projects/myproject/tsconfig.json,/user/username/projects/myproject/tsconfig-indirect1.json +Info 40 [00:01:52.000] getDefaultProject for /user/username/projects/myproject/src/main.ts: /user/username/projects/myproject/tsconfig.json +Info 40 [00:01:53.000] findDefaultConfiguredProject for /user/username/projects/myproject/src/main.ts: undefined +Info 40 [00:01:54.000] Search path: /dummy +Info 41 [00:01:55.000] For info: /dummy/dummy.ts :: No config files found. +Info 42 [00:01:56.000] Plugins were requested but not running in environment that supports 'require'. Nothing will be loaded +Info 43 [00:01:57.000] Starting updateGraphWorker: Project: /dev/null/inferredProject1* +Info 44 [00:01:58.000] DirectoryWatcher:: Added:: WatchInfo: /dummy/node_modules/@types 1 undefined Project: /dev/null/inferredProject1* WatchType: Type roots +Info 45 [00:01:59.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /dummy/node_modules/@types 1 undefined Project: /dev/null/inferredProject1* WatchType: Type roots +Info 46 [00:02:00.000] Finishing updateGraphWorker: Project: /dev/null/inferredProject1* Version: 1 structureChanged: true structureIsReused:: Not Elapsed:: *ms +Info 47 [00:02:01.000] Project '/dev/null/inferredProject1*' (Inferred) +Info 48 [00:02:02.000] Files (2) /a/lib/lib.d.ts /dummy/dummy.ts @@ -152,61 +152,61 @@ Info 48 [16:02:02.000] Files (2) dummy.ts Root file specified for compilation -Info 49 [16:02:03.000] ----------------------------------------------- -Info 50 [16:02:04.000] Project '/user/username/projects/myproject/tsconfig.json' (Configured) -Info 50 [16:02:05.000] Files (5) +Info 49 [00:02:03.000] ----------------------------------------------- +Info 50 [00:02:04.000] Project '/user/username/projects/myproject/tsconfig.json' (Configured) +Info 50 [00:02:05.000] Files (5) -Info 50 [16:02:06.000] ----------------------------------------------- -Info 50 [16:02:07.000] Project '/user/username/projects/myproject/tsconfig-indirect1.json' (Configured) -Info 50 [16:02:08.000] Files (4) +Info 50 [00:02:06.000] ----------------------------------------------- +Info 50 [00:02:07.000] Project '/user/username/projects/myproject/tsconfig-indirect1.json' (Configured) +Info 50 [00:02:08.000] Files (4) -Info 50 [16:02:09.000] ----------------------------------------------- -Info 50 [16:02:10.000] Project '/dev/null/inferredProject1*' (Inferred) -Info 50 [16:02:11.000] Files (2) +Info 50 [00:02:09.000] ----------------------------------------------- +Info 50 [00:02:10.000] Project '/dev/null/inferredProject1*' (Inferred) +Info 50 [00:02:11.000] Files (2) -Info 50 [16:02:12.000] ----------------------------------------------- -Info 50 [16:02:13.000] Open files: -Info 50 [16:02:14.000] FileName: /user/username/projects/myproject/src/main.ts ProjectRootPath: undefined -Info 50 [16:02:15.000] Projects: /user/username/projects/myproject/tsconfig.json,/user/username/projects/myproject/tsconfig-indirect1.json -Info 50 [16:02:16.000] FileName: /dummy/dummy.ts ProjectRootPath: undefined -Info 50 [16:02:17.000] Projects: /dev/null/inferredProject1* -Info 50 [16:02:18.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/src/main.ts 500 undefined WatchType: Closed Script info -Info 51 [16:02:19.000] Project '/user/username/projects/myproject/tsconfig.json' (Configured) -Info 51 [16:02:20.000] Files (5) +Info 50 [00:02:12.000] ----------------------------------------------- +Info 50 [00:02:13.000] Open files: +Info 50 [00:02:14.000] FileName: /user/username/projects/myproject/src/main.ts ProjectRootPath: undefined +Info 50 [00:02:15.000] Projects: /user/username/projects/myproject/tsconfig.json,/user/username/projects/myproject/tsconfig-indirect1.json +Info 50 [00:02:16.000] FileName: /dummy/dummy.ts ProjectRootPath: undefined +Info 50 [00:02:17.000] Projects: /dev/null/inferredProject1* +Info 50 [00:02:18.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/src/main.ts 500 undefined WatchType: Closed Script info +Info 51 [00:02:19.000] Project '/user/username/projects/myproject/tsconfig.json' (Configured) +Info 51 [00:02:20.000] Files (5) -Info 51 [16:02:21.000] ----------------------------------------------- -Info 51 [16:02:22.000] Project '/user/username/projects/myproject/tsconfig-indirect1.json' (Configured) -Info 51 [16:02:23.000] Files (4) +Info 51 [00:02:21.000] ----------------------------------------------- +Info 51 [00:02:22.000] Project '/user/username/projects/myproject/tsconfig-indirect1.json' (Configured) +Info 51 [00:02:23.000] Files (4) -Info 51 [16:02:24.000] ----------------------------------------------- -Info 51 [16:02:25.000] Project '/dev/null/inferredProject1*' (Inferred) -Info 51 [16:02:26.000] Files (2) +Info 51 [00:02:24.000] ----------------------------------------------- +Info 51 [00:02:25.000] Project '/dev/null/inferredProject1*' (Inferred) +Info 51 [00:02:26.000] Files (2) -Info 51 [16:02:27.000] ----------------------------------------------- -Info 51 [16:02:28.000] Open files: -Info 51 [16:02:29.000] FileName: /dummy/dummy.ts ProjectRootPath: undefined -Info 51 [16:02:30.000] Projects: /dev/null/inferredProject1* -Info 51 [16:02:31.000] FileWatcher:: Added:: WatchInfo: /dummy/dummy.ts 500 undefined WatchType: Closed Script info -Info 52 [16:02:32.000] Project '/user/username/projects/myproject/tsconfig.json' (Configured) -Info 52 [16:02:33.000] Files (5) +Info 51 [00:02:27.000] ----------------------------------------------- +Info 51 [00:02:28.000] Open files: +Info 51 [00:02:29.000] FileName: /dummy/dummy.ts ProjectRootPath: undefined +Info 51 [00:02:30.000] Projects: /dev/null/inferredProject1* +Info 51 [00:02:31.000] FileWatcher:: Added:: WatchInfo: /dummy/dummy.ts 500 undefined WatchType: Closed Script info +Info 52 [00:02:32.000] Project '/user/username/projects/myproject/tsconfig.json' (Configured) +Info 52 [00:02:33.000] Files (5) -Info 52 [16:02:34.000] ----------------------------------------------- -Info 52 [16:02:35.000] Project '/user/username/projects/myproject/tsconfig-indirect1.json' (Configured) -Info 52 [16:02:36.000] Files (4) +Info 52 [00:02:34.000] ----------------------------------------------- +Info 52 [00:02:35.000] Project '/user/username/projects/myproject/tsconfig-indirect1.json' (Configured) +Info 52 [00:02:36.000] Files (4) -Info 52 [16:02:37.000] ----------------------------------------------- -Info 52 [16:02:38.000] Project '/dev/null/inferredProject1*' (Inferred) -Info 52 [16:02:39.000] Files (2) +Info 52 [00:02:37.000] ----------------------------------------------- +Info 52 [00:02:38.000] Project '/dev/null/inferredProject1*' (Inferred) +Info 52 [00:02:39.000] Files (2) -Info 52 [16:02:40.000] ----------------------------------------------- -Info 52 [16:02:41.000] Open files: -Info 52 [16:02:42.000] FileWatcher:: Close:: WatchInfo: /dummy/dummy.ts 500 undefined WatchType: Closed Script info -Info 53 [16:02:43.000] Search path: /dummy -Info 54 [16:02:44.000] For info: /dummy/dummy.ts :: No config files found. -Info 55 [16:02:45.000] Starting updateGraphWorker: Project: /dev/null/inferredProject1* -Info 56 [16:02:46.000] Finishing updateGraphWorker: Project: /dev/null/inferredProject1* Version: 2 structureChanged: false structureIsReused:: Not Elapsed:: *ms -Info 57 [16:02:47.000] Project '/dev/null/inferredProject1*' (Inferred) -Info 58 [16:02:48.000] Files (2) +Info 52 [00:02:40.000] ----------------------------------------------- +Info 52 [00:02:41.000] Open files: +Info 52 [00:02:42.000] FileWatcher:: Close:: WatchInfo: /dummy/dummy.ts 500 undefined WatchType: Closed Script info +Info 53 [00:02:43.000] Search path: /dummy +Info 54 [00:02:44.000] For info: /dummy/dummy.ts :: No config files found. +Info 55 [00:02:45.000] Starting updateGraphWorker: Project: /dev/null/inferredProject1* +Info 56 [00:02:46.000] Finishing updateGraphWorker: Project: /dev/null/inferredProject1* Version: 2 structureChanged: false structureIsReused:: Not Elapsed:: *ms +Info 57 [00:02:47.000] Project '/dev/null/inferredProject1*' (Inferred) +Info 58 [00:02:48.000] Files (2) /a/lib/lib.d.ts /dummy/dummy.ts @@ -216,10 +216,10 @@ Info 58 [16:02:48.000] Files (2) dummy.ts Root file specified for compilation -Info 59 [16:02:49.000] ----------------------------------------------- -Info 60 [16:02:50.000] `remove Project:: -Info 61 [16:02:51.000] Project '/user/username/projects/myproject/tsconfig.json' (Configured) -Info 62 [16:02:52.000] Files (5) +Info 59 [00:02:49.000] ----------------------------------------------- +Info 60 [00:02:50.000] `remove Project:: +Info 61 [00:02:51.000] Project '/user/username/projects/myproject/tsconfig.json' (Configured) +Info 62 [00:02:52.000] Files (5) /a/lib/lib.d.ts /user/username/projects/myproject/src/helpers/functions.ts /user/username/projects/myproject/src/main.ts @@ -238,13 +238,13 @@ Info 62 [16:02:52.000] Files (5) own/main.ts Part of 'files' list in tsconfig.json -Info 63 [16:02:53.000] ----------------------------------------------- -Info 64 [16:02:54.000] FileWatcher:: Close:: WatchInfo: /user/username/projects/myproject/tsconfig.json 2000 undefined Project: /user/username/projects/myproject/tsconfig.json WatchType: Config file -Info 65 [16:02:55.000] DirectoryWatcher:: Close:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/tsconfig.json WatchType: Type roots -Info 66 [16:02:56.000] 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 67 [16:02:57.000] `remove Project:: -Info 68 [16:02:58.000] Project '/user/username/projects/myproject/tsconfig-indirect1.json' (Configured) -Info 69 [16:02:59.000] Files (4) +Info 63 [00:02:53.000] ----------------------------------------------- +Info 64 [00:02:54.000] FileWatcher:: Close:: WatchInfo: /user/username/projects/myproject/tsconfig.json 2000 undefined Project: /user/username/projects/myproject/tsconfig.json WatchType: Config file +Info 65 [00:02:55.000] DirectoryWatcher:: Close:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/tsconfig.json WatchType: Type roots +Info 66 [00:02:56.000] 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 67 [00:02:57.000] `remove Project:: +Info 68 [00:02:58.000] Project '/user/username/projects/myproject/tsconfig-indirect1.json' (Configured) +Info 69 [00:02:59.000] Files (4) /a/lib/lib.d.ts /user/username/projects/myproject/src/helpers/functions.ts /user/username/projects/myproject/src/main.ts @@ -260,31 +260,31 @@ Info 69 [16:02:59.000] Files (4) indirect1/main.ts Part of 'files' list in tsconfig.json -Info 70 [16:03:00.000] ----------------------------------------------- -Info 71 [16:03:01.000] FileWatcher:: Close:: WatchInfo: /user/username/projects/myproject/tsconfig-indirect1.json 2000 undefined Project: /user/username/projects/myproject/tsconfig.json WatchType: Config file -Info 72 [16:03:02.000] DirectoryWatcher:: Close:: WatchInfo: /user/username/projects/myproject/src 1 undefined Config: /user/username/projects/myproject/tsconfig-src.json WatchType: Wild card directory -Info 73 [16:03:03.000] 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 74 [16:03:04.000] FileWatcher:: Close:: WatchInfo: /user/username/projects/myproject/tsconfig-src.json 2000 undefined Project: /user/username/projects/myproject/tsconfig.json WatchType: Config file -Info 75 [16:03:05.000] DirectoryWatcher:: Close:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/tsconfig-indirect1.json WatchType: Type roots -Info 76 [16:03:06.000] 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 77 [16:03:07.000] FileWatcher:: Close:: WatchInfo: /user/username/projects/myproject/src/main.ts 500 undefined WatchType: Closed Script info -Info 78 [16:03:08.000] FileWatcher:: Close:: WatchInfo: /user/username/projects/myproject/own/main.ts 500 undefined WatchType: Closed Script info -Info 79 [16:03:09.000] FileWatcher:: Close:: WatchInfo: /user/username/projects/myproject/indirect1/main.ts 500 undefined WatchType: Closed Script info -Info 80 [16:03:10.000] FileWatcher:: Close:: WatchInfo: /user/username/projects/myproject/src/helpers/functions.ts 500 undefined WatchType: Closed Script info -Info 81 [16:03:11.000] Project '/dev/null/inferredProject1*' (Inferred) -Info 81 [16:03:12.000] Files (2) +Info 70 [00:03:00.000] ----------------------------------------------- +Info 71 [00:03:01.000] FileWatcher:: Close:: WatchInfo: /user/username/projects/myproject/tsconfig-indirect1.json 2000 undefined Project: /user/username/projects/myproject/tsconfig.json WatchType: Config file +Info 72 [00:03:02.000] DirectoryWatcher:: Close:: WatchInfo: /user/username/projects/myproject/src 1 undefined Config: /user/username/projects/myproject/tsconfig-src.json WatchType: Wild card directory +Info 73 [00:03:03.000] 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 74 [00:03:04.000] FileWatcher:: Close:: WatchInfo: /user/username/projects/myproject/tsconfig-src.json 2000 undefined Project: /user/username/projects/myproject/tsconfig.json WatchType: Config file +Info 75 [00:03:05.000] DirectoryWatcher:: Close:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/tsconfig-indirect1.json WatchType: Type roots +Info 76 [00:03:06.000] 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 77 [00:03:07.000] FileWatcher:: Close:: WatchInfo: /user/username/projects/myproject/src/main.ts 500 undefined WatchType: Closed Script info +Info 78 [00:03:08.000] FileWatcher:: Close:: WatchInfo: /user/username/projects/myproject/own/main.ts 500 undefined WatchType: Closed Script info +Info 79 [00:03:09.000] FileWatcher:: Close:: WatchInfo: /user/username/projects/myproject/indirect1/main.ts 500 undefined WatchType: Closed Script info +Info 80 [00:03:10.000] FileWatcher:: Close:: WatchInfo: /user/username/projects/myproject/src/helpers/functions.ts 500 undefined WatchType: Closed Script info +Info 81 [00:03:11.000] Project '/dev/null/inferredProject1*' (Inferred) +Info 81 [00:03:12.000] Files (2) -Info 81 [16:03:13.000] ----------------------------------------------- -Info 81 [16:03:14.000] Open files: -Info 81 [16:03:15.000] FileName: /dummy/dummy.ts ProjectRootPath: undefined -Info 81 [16:03:16.000] Projects: /dev/null/inferredProject1* -Info 81 [16:03:17.000] Search path: /user/username/projects/myproject/src -Info 82 [16:03:18.000] For info: /user/username/projects/myproject/src/main.ts :: Config file name: /user/username/projects/myproject/tsconfig.json -Info 83 [16:03:19.000] Creating configuration project /user/username/projects/myproject/tsconfig.json -Info 84 [16:03:20.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/tsconfig.json 2000 undefined Project: /user/username/projects/myproject/tsconfig.json WatchType: Config file -Info 85 [16:03:21.000] event: +Info 81 [00:03:13.000] ----------------------------------------------- +Info 81 [00:03:14.000] Open files: +Info 81 [00:03:15.000] FileName: /dummy/dummy.ts ProjectRootPath: undefined +Info 81 [00:03:16.000] Projects: /dev/null/inferredProject1* +Info 81 [00:03:17.000] Search path: /user/username/projects/myproject/src +Info 82 [00:03:18.000] For info: /user/username/projects/myproject/src/main.ts :: Config file name: /user/username/projects/myproject/tsconfig.json +Info 83 [00:03:19.000] Creating configuration project /user/username/projects/myproject/tsconfig.json +Info 84 [00:03:20.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/tsconfig.json 2000 undefined Project: /user/username/projects/myproject/tsconfig.json WatchType: Config file +Info 85 [00:03:21.000] event: {"seq":0,"type":"event","event":"projectLoadingStart","body":{"projectName":"/user/username/projects/myproject/tsconfig.json","reason":"Creating possible configured project for /user/username/projects/myproject/src/main.ts to open"}} -Info 86 [16:03:22.000] Config: /user/username/projects/myproject/tsconfig.json : { +Info 86 [00:03:22.000] Config: /user/username/projects/myproject/tsconfig.json : { "rootNames": [ "/user/username/projects/myproject/own/main.ts" ], @@ -300,10 +300,10 @@ Info 86 [16:03:22.000] Config: /user/username/projects/myproject/tsconfig.json } ] } -Info 87 [16:03:23.000] Plugins were requested but not running in environment that supports 'require'. Nothing will be loaded -Info 88 [16:03:24.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/own/main.ts 500 undefined WatchType: Closed Script info -Info 89 [16:03:25.000] Starting updateGraphWorker: Project: /user/username/projects/myproject/tsconfig.json -Info 90 [16:03:26.000] Config: /user/username/projects/myproject/tsconfig-indirect1.json : { +Info 87 [00:03:23.000] Plugins were requested but not running in environment that supports 'require'. Nothing will be loaded +Info 88 [00:03:24.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/own/main.ts 500 undefined WatchType: Closed Script info +Info 89 [00:03:25.000] Starting updateGraphWorker: Project: /user/username/projects/myproject/tsconfig.json +Info 90 [00:03:26.000] Config: /user/username/projects/myproject/tsconfig-indirect1.json : { "rootNames": [ "/user/username/projects/myproject/indirect1/main.ts" ], @@ -321,8 +321,8 @@ Info 90 [16:03:26.000] Config: /user/username/projects/myproject/tsconfig-indi } ] } -Info 91 [16:03:27.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/tsconfig-indirect1.json 2000 undefined Project: /user/username/projects/myproject/tsconfig.json WatchType: Config file -Info 92 [16:03:28.000] Config: /user/username/projects/myproject/tsconfig-src.json : { +Info 91 [00:03:27.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/tsconfig-indirect1.json 2000 undefined Project: /user/username/projects/myproject/tsconfig.json WatchType: Config file +Info 92 [00:03:28.000] Config: /user/username/projects/myproject/tsconfig-src.json : { "rootNames": [ "/user/username/projects/myproject/src/main.ts", "/user/username/projects/myproject/src/helpers/functions.ts" @@ -334,16 +334,16 @@ Info 92 [16:03:28.000] Config: /user/username/projects/myproject/tsconfig-src. "configFilePath": "/user/username/projects/myproject/tsconfig-src.json" } } -Info 93 [16:03:29.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/tsconfig-src.json 2000 undefined Project: /user/username/projects/myproject/tsconfig.json WatchType: Config file -Info 94 [16:03:30.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/src 1 undefined Config: /user/username/projects/myproject/tsconfig-src.json WatchType: Wild card directory -Info 95 [16:03:31.000] 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 96 [16:03:32.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/indirect1/main.ts 500 undefined WatchType: Closed Script info -Info 97 [16:03:33.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/src/helpers/functions.ts 500 undefined WatchType: Closed Script info -Info 98 [16:03:34.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/tsconfig.json WatchType: Type roots -Info 99 [16:03:35.000] 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 100 [16:03:36.000] Finishing updateGraphWorker: Project: /user/username/projects/myproject/tsconfig.json Version: 1 structureChanged: true structureIsReused:: Not Elapsed:: *ms -Info 101 [16:03:37.000] Project '/user/username/projects/myproject/tsconfig.json' (Configured) -Info 102 [16:03:38.000] Files (5) +Info 93 [00:03:29.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/tsconfig-src.json 2000 undefined Project: /user/username/projects/myproject/tsconfig.json WatchType: Config file +Info 94 [00:03:30.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/src 1 undefined Config: /user/username/projects/myproject/tsconfig-src.json WatchType: Wild card directory +Info 95 [00:03:31.000] 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 96 [00:03:32.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/indirect1/main.ts 500 undefined WatchType: Closed Script info +Info 97 [00:03:33.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/src/helpers/functions.ts 500 undefined WatchType: Closed Script info +Info 98 [00:03:34.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/tsconfig.json WatchType: Type roots +Info 99 [00:03:35.000] 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 100 [00:03:36.000] Finishing updateGraphWorker: Project: /user/username/projects/myproject/tsconfig.json Version: 1 structureChanged: true structureIsReused:: Not Elapsed:: *ms +Info 101 [00:03:37.000] Project '/user/username/projects/myproject/tsconfig.json' (Configured) +Info 102 [00:03:38.000] Files (5) /a/lib/lib.d.ts /user/username/projects/myproject/src/helpers/functions.ts /user/username/projects/myproject/src/main.ts @@ -362,19 +362,19 @@ Info 102 [16:03:38.000] Files (5) own/main.ts Part of 'files' list in tsconfig.json -Info 103 [16:03:39.000] ----------------------------------------------- -Info 104 [16:03:40.000] event: +Info 103 [00:03:39.000] ----------------------------------------------- +Info 104 [00:03:40.000] event: {"seq":0,"type":"event","event":"projectLoadingFinish","body":{"projectName":"/user/username/projects/myproject/tsconfig.json"}} -Info 105 [16:03:41.000] Creating configuration project /user/username/projects/myproject/tsconfig-indirect1.json -Info 106 [16:03:42.000] event: +Info 105 [00:03:41.000] Creating configuration project /user/username/projects/myproject/tsconfig-indirect1.json +Info 106 [00:03:42.000] event: {"seq":0,"type":"event","event":"projectLoadingStart","body":{"projectName":"/user/username/projects/myproject/tsconfig-indirect1.json","reason":"Creating project referenced in solution /user/username/projects/myproject/tsconfig.json to find possible configured project for /user/username/projects/myproject/src/main.ts to open"}} -Info 107 [16:03:43.000] Plugins were requested but not running in environment that supports 'require'. Nothing will be loaded -Info 108 [16:03:44.000] Starting updateGraphWorker: Project: /user/username/projects/myproject/tsconfig-indirect1.json -Info 109 [16:03:45.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/tsconfig-indirect1.json WatchType: Type roots -Info 110 [16:03:46.000] 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 111 [16:03:47.000] Finishing updateGraphWorker: Project: /user/username/projects/myproject/tsconfig-indirect1.json Version: 1 structureChanged: true structureIsReused:: Not Elapsed:: *ms -Info 112 [16:03:48.000] Project '/user/username/projects/myproject/tsconfig-indirect1.json' (Configured) -Info 113 [16:03:49.000] Files (4) +Info 107 [00:03:43.000] Plugins were requested but not running in environment that supports 'require'. Nothing will be loaded +Info 108 [00:03:44.000] Starting updateGraphWorker: Project: /user/username/projects/myproject/tsconfig-indirect1.json +Info 109 [00:03:45.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/tsconfig-indirect1.json WatchType: Type roots +Info 110 [00:03:46.000] 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 111 [00:03:47.000] Finishing updateGraphWorker: Project: /user/username/projects/myproject/tsconfig-indirect1.json Version: 1 structureChanged: true structureIsReused:: Not Elapsed:: *ms +Info 112 [00:03:48.000] Project '/user/username/projects/myproject/tsconfig-indirect1.json' (Configured) +Info 113 [00:03:49.000] Files (4) /a/lib/lib.d.ts /user/username/projects/myproject/src/helpers/functions.ts /user/username/projects/myproject/src/main.ts @@ -390,51 +390,51 @@ Info 113 [16:03:49.000] Files (4) indirect1/main.ts Part of 'files' list in tsconfig.json -Info 114 [16:03:50.000] ----------------------------------------------- -Info 115 [16:03:51.000] event: +Info 114 [00:03:50.000] ----------------------------------------------- +Info 115 [00:03:51.000] event: {"seq":0,"type":"event","event":"projectLoadingFinish","body":{"projectName":"/user/username/projects/myproject/tsconfig-indirect1.json"}} -Info 116 [16:03:52.000] event: +Info 116 [00:03:52.000] event: {"seq":0,"type":"event","event":"configFileDiag","body":{"triggerFile":"/user/username/projects/myproject/src/main.ts","configFile":"/user/username/projects/myproject/tsconfig.json","diagnostics":[]}} -Info 117 [16:03:53.000] Project '/user/username/projects/myproject/tsconfig.json' (Configured) -Info 117 [16:03:54.000] Files (5) +Info 117 [00:03:53.000] Project '/user/username/projects/myproject/tsconfig.json' (Configured) +Info 117 [00:03:54.000] Files (5) -Info 117 [16:03:55.000] ----------------------------------------------- -Info 117 [16:03:56.000] Project '/user/username/projects/myproject/tsconfig-indirect1.json' (Configured) -Info 117 [16:03:57.000] Files (4) +Info 117 [00:03:55.000] ----------------------------------------------- +Info 117 [00:03:56.000] Project '/user/username/projects/myproject/tsconfig-indirect1.json' (Configured) +Info 117 [00:03:57.000] Files (4) -Info 117 [16:03:58.000] ----------------------------------------------- -Info 117 [16:03:59.000] Project '/dev/null/inferredProject1*' (Inferred) -Info 117 [16:04:00.000] Files (2) +Info 117 [00:03:58.000] ----------------------------------------------- +Info 117 [00:03:59.000] Project '/dev/null/inferredProject1*' (Inferred) +Info 117 [00:04:00.000] Files (2) -Info 117 [16:04:01.000] ----------------------------------------------- -Info 117 [16:04:02.000] Open files: -Info 117 [16:04:03.000] FileName: /dummy/dummy.ts ProjectRootPath: undefined -Info 117 [16:04:04.000] Projects: /dev/null/inferredProject1* -Info 117 [16:04:05.000] FileName: /user/username/projects/myproject/src/main.ts ProjectRootPath: undefined -Info 117 [16:04:06.000] Projects: /user/username/projects/myproject/tsconfig.json,/user/username/projects/myproject/tsconfig-indirect1.json -Info 117 [16:04:07.000] reload projects. -Info 118 [16:04:08.000] Scheduled: /dev/null/inferredProject1* -Info 119 [16:04:09.000] Scheduled: /user/username/projects/myproject/tsconfig.json -Info 120 [16:04:10.000] Scheduled: /user/username/projects/myproject/tsconfig-indirect1.json -Info 121 [16:04:11.000] Scheduled: *ensureProjectForOpenFiles* -Info 122 [16:04:12.000] Scheduled: /user/username/projects/myproject/tsconfig.json, Cancelled earlier one -Info 123 [16:04:13.000] Scheduled: *ensureProjectForOpenFiles*, Cancelled earlier one -Info 124 [16:04:14.000] Scheduled: /user/username/projects/myproject/tsconfig.json, Cancelled earlier one -Info 125 [16:04:15.000] Scheduled: /user/username/projects/myproject/tsconfig-indirect1.json, Cancelled earlier one -Info 126 [16:04:16.000] Scheduled: *ensureProjectForOpenFiles*, Cancelled earlier one -Info 127 [16:04:17.000] Scheduled: /user/username/projects/myproject/tsconfig.json, Cancelled earlier one -Info 128 [16:04:18.000] Scheduled: /user/username/projects/myproject/tsconfig-indirect1.json, Cancelled earlier one -Info 129 [16:04:19.000] Scheduled: *ensureProjectForOpenFiles*, Cancelled earlier one -Info 130 [16:04:20.000] Search path: /dummy -Info 131 [16:04:21.000] For info: /dummy/dummy.ts :: No config files found. -Info 132 [16:04:22.000] Search path: /user/username/projects/myproject/src -Info 133 [16:04:23.000] For info: /user/username/projects/myproject/src/main.ts :: Config file name: /user/username/projects/myproject/tsconfig.json -Info 134 [16:04:24.000] DirectoryWatcher:: Close:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/tsconfig.json WatchType: Type roots -Info 135 [16:04:25.000] 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 136 [16:04:26.000] Reloading configured project /user/username/projects/myproject/tsconfig.json -Info 137 [16:04:27.000] event: +Info 117 [00:04:01.000] ----------------------------------------------- +Info 117 [00:04:02.000] Open files: +Info 117 [00:04:03.000] FileName: /dummy/dummy.ts ProjectRootPath: undefined +Info 117 [00:04:04.000] Projects: /dev/null/inferredProject1* +Info 117 [00:04:05.000] FileName: /user/username/projects/myproject/src/main.ts ProjectRootPath: undefined +Info 117 [00:04:06.000] Projects: /user/username/projects/myproject/tsconfig.json,/user/username/projects/myproject/tsconfig-indirect1.json +Info 117 [00:04:07.000] reload projects. +Info 118 [00:04:08.000] Scheduled: /dev/null/inferredProject1* +Info 119 [00:04:09.000] Scheduled: /user/username/projects/myproject/tsconfig.json +Info 120 [00:04:10.000] Scheduled: /user/username/projects/myproject/tsconfig-indirect1.json +Info 121 [00:04:11.000] Scheduled: *ensureProjectForOpenFiles* +Info 122 [00:04:12.000] Scheduled: /user/username/projects/myproject/tsconfig.json, Cancelled earlier one +Info 123 [00:04:13.000] Scheduled: *ensureProjectForOpenFiles*, Cancelled earlier one +Info 124 [00:04:14.000] Scheduled: /user/username/projects/myproject/tsconfig.json, Cancelled earlier one +Info 125 [00:04:15.000] Scheduled: /user/username/projects/myproject/tsconfig-indirect1.json, Cancelled earlier one +Info 126 [00:04:16.000] Scheduled: *ensureProjectForOpenFiles*, Cancelled earlier one +Info 127 [00:04:17.000] Scheduled: /user/username/projects/myproject/tsconfig.json, Cancelled earlier one +Info 128 [00:04:18.000] Scheduled: /user/username/projects/myproject/tsconfig-indirect1.json, Cancelled earlier one +Info 129 [00:04:19.000] Scheduled: *ensureProjectForOpenFiles*, Cancelled earlier one +Info 130 [00:04:20.000] Search path: /dummy +Info 131 [00:04:21.000] For info: /dummy/dummy.ts :: No config files found. +Info 132 [00:04:22.000] Search path: /user/username/projects/myproject/src +Info 133 [00:04:23.000] For info: /user/username/projects/myproject/src/main.ts :: Config file name: /user/username/projects/myproject/tsconfig.json +Info 134 [00:04:24.000] DirectoryWatcher:: Close:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/tsconfig.json WatchType: Type roots +Info 135 [00:04:25.000] 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 136 [00:04:26.000] Reloading configured project /user/username/projects/myproject/tsconfig.json +Info 137 [00:04:27.000] event: {"seq":0,"type":"event","event":"projectLoadingStart","body":{"projectName":"/user/username/projects/myproject/tsconfig.json","reason":"User requested reload projects"}} -Info 138 [16:04:28.000] Config: /user/username/projects/myproject/tsconfig.json : { +Info 138 [00:04:28.000] Config: /user/username/projects/myproject/tsconfig.json : { "rootNames": [ "/user/username/projects/myproject/own/main.ts" ], @@ -450,9 +450,9 @@ Info 138 [16:04:28.000] Config: /user/username/projects/myproject/tsconfig.json } ] } -Info 139 [16:04:29.000] Plugins were requested but not running in environment that supports 'require'. Nothing will be loaded -Info 140 [16:04:30.000] Starting updateGraphWorker: Project: /user/username/projects/myproject/tsconfig.json -Info 141 [16:04:31.000] Config: /user/username/projects/myproject/tsconfig-indirect1.json : { +Info 139 [00:04:29.000] Plugins were requested but not running in environment that supports 'require'. Nothing will be loaded +Info 140 [00:04:30.000] Starting updateGraphWorker: Project: /user/username/projects/myproject/tsconfig.json +Info 141 [00:04:31.000] Config: /user/username/projects/myproject/tsconfig-indirect1.json : { "rootNames": [ "/user/username/projects/myproject/indirect1/main.ts" ], @@ -470,7 +470,7 @@ Info 141 [16:04:31.000] Config: /user/username/projects/myproject/tsconfig-indi } ] } -Info 142 [16:04:32.000] Config: /user/username/projects/myproject/tsconfig-src.json : { +Info 142 [00:04:32.000] Config: /user/username/projects/myproject/tsconfig-src.json : { "rootNames": [ "/user/username/projects/myproject/src/main.ts", "/user/username/projects/myproject/src/helpers/functions.ts" @@ -482,69 +482,69 @@ Info 142 [16:04:32.000] Config: /user/username/projects/myproject/tsconfig-src. "configFilePath": "/user/username/projects/myproject/tsconfig-src.json" } } -Info 143 [16:04:33.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/tsconfig.json WatchType: Type roots -Info 144 [16:04:34.000] 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 145 [16:04:35.000] Finishing updateGraphWorker: Project: /user/username/projects/myproject/tsconfig.json Version: 2 structureChanged: true structureIsReused:: Not Elapsed:: *ms -Info 146 [16:04:36.000] Different program with same set of files -Info 147 [16:04:37.000] event: +Info 143 [00:04:33.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/tsconfig.json WatchType: Type roots +Info 144 [00:04:34.000] 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 145 [00:04:35.000] Finishing updateGraphWorker: Project: /user/username/projects/myproject/tsconfig.json Version: 2 structureChanged: true structureIsReused:: Not Elapsed:: *ms +Info 146 [00:04:36.000] Different program with same set of files +Info 147 [00:04:37.000] event: {"seq":0,"type":"event","event":"projectLoadingFinish","body":{"projectName":"/user/username/projects/myproject/tsconfig.json"}} -Info 148 [16:04:38.000] event: +Info 148 [00:04:38.000] event: {"seq":0,"type":"event","event":"configFileDiag","body":{"triggerFile":"/user/username/projects/myproject/tsconfig.json","configFile":"/user/username/projects/myproject/tsconfig.json","diagnostics":[]}} -Info 149 [16:04:39.000] DirectoryWatcher:: Close:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/tsconfig-indirect1.json WatchType: Type roots -Info 150 [16:04:40.000] 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 151 [16:04:41.000] Reloading configured project /user/username/projects/myproject/tsconfig-indirect1.json -Info 152 [16:04:42.000] event: +Info 149 [00:04:39.000] DirectoryWatcher:: Close:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/tsconfig-indirect1.json WatchType: Type roots +Info 150 [00:04:40.000] 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 151 [00:04:41.000] Reloading configured project /user/username/projects/myproject/tsconfig-indirect1.json +Info 152 [00:04:42.000] event: {"seq":0,"type":"event","event":"projectLoadingStart","body":{"projectName":"/user/username/projects/myproject/tsconfig-indirect1.json","reason":"User requested reload projects"}} -Info 153 [16:04:43.000] Plugins were requested but not running in environment that supports 'require'. Nothing will be loaded -Info 154 [16:04:44.000] Starting updateGraphWorker: Project: /user/username/projects/myproject/tsconfig-indirect1.json -Info 155 [16:04:45.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/tsconfig-indirect1.json WatchType: Type roots -Info 156 [16:04:46.000] 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 157 [16:04:47.000] Finishing updateGraphWorker: Project: /user/username/projects/myproject/tsconfig-indirect1.json Version: 2 structureChanged: true structureIsReused:: Not Elapsed:: *ms -Info 158 [16:04:48.000] Different program with same set of files -Info 159 [16:04:49.000] event: +Info 153 [00:04:43.000] Plugins were requested but not running in environment that supports 'require'. Nothing will be loaded +Info 154 [00:04:44.000] Starting updateGraphWorker: Project: /user/username/projects/myproject/tsconfig-indirect1.json +Info 155 [00:04:45.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/tsconfig-indirect1.json WatchType: Type roots +Info 156 [00:04:46.000] 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 157 [00:04:47.000] Finishing updateGraphWorker: Project: /user/username/projects/myproject/tsconfig-indirect1.json Version: 2 structureChanged: true structureIsReused:: Not Elapsed:: *ms +Info 158 [00:04:48.000] Different program with same set of files +Info 159 [00:04:49.000] event: {"seq":0,"type":"event","event":"projectLoadingFinish","body":{"projectName":"/user/username/projects/myproject/tsconfig-indirect1.json"}} -Info 160 [16:04:50.000] event: +Info 160 [00:04:50.000] event: {"seq":0,"type":"event","event":"configFileDiag","body":{"triggerFile":"/user/username/projects/myproject/tsconfig-indirect1.json","configFile":"/user/username/projects/myproject/tsconfig-indirect1.json","diagnostics":[]}} -Info 161 [16:04:51.000] DirectoryWatcher:: Close:: WatchInfo: /dummy/node_modules/@types 1 undefined Project: /dev/null/inferredProject1* WatchType: Type roots -Info 162 [16:04:52.000] Elapsed:: *ms DirectoryWatcher:: Close:: WatchInfo: /dummy/node_modules/@types 1 undefined Project: /dev/null/inferredProject1* WatchType: Type roots -Info 163 [16:04:53.000] Before ensureProjectForOpenFiles: -Info 164 [16:04:54.000] Project '/user/username/projects/myproject/tsconfig.json' (Configured) -Info 164 [16:04:55.000] Files (5) +Info 161 [00:04:51.000] DirectoryWatcher:: Close:: WatchInfo: /dummy/node_modules/@types 1 undefined Project: /dev/null/inferredProject1* WatchType: Type roots +Info 162 [00:04:52.000] Elapsed:: *ms DirectoryWatcher:: Close:: WatchInfo: /dummy/node_modules/@types 1 undefined Project: /dev/null/inferredProject1* WatchType: Type roots +Info 163 [00:04:53.000] Before ensureProjectForOpenFiles: +Info 164 [00:04:54.000] Project '/user/username/projects/myproject/tsconfig.json' (Configured) +Info 164 [00:04:55.000] Files (5) -Info 164 [16:04:56.000] ----------------------------------------------- -Info 164 [16:04:57.000] Project '/user/username/projects/myproject/tsconfig-indirect1.json' (Configured) -Info 164 [16:04:58.000] Files (4) +Info 164 [00:04:56.000] ----------------------------------------------- +Info 164 [00:04:57.000] Project '/user/username/projects/myproject/tsconfig-indirect1.json' (Configured) +Info 164 [00:04:58.000] Files (4) -Info 164 [16:04:59.000] ----------------------------------------------- -Info 164 [16:05:00.000] Project '/dev/null/inferredProject1*' (Inferred) -Info 164 [16:05:01.000] Files (2) +Info 164 [00:04:59.000] ----------------------------------------------- +Info 164 [00:05:00.000] Project '/dev/null/inferredProject1*' (Inferred) +Info 164 [00:05:01.000] Files (2) -Info 164 [16:05:02.000] ----------------------------------------------- -Info 164 [16:05:03.000] Open files: -Info 164 [16:05:04.000] FileName: /dummy/dummy.ts ProjectRootPath: undefined -Info 164 [16:05:05.000] Projects: /dev/null/inferredProject1* -Info 164 [16:05:06.000] FileName: /user/username/projects/myproject/src/main.ts ProjectRootPath: undefined -Info 164 [16:05:07.000] Projects: /user/username/projects/myproject/tsconfig.json,/user/username/projects/myproject/tsconfig-indirect1.json -Info 164 [16:05:08.000] Starting updateGraphWorker: Project: /dev/null/inferredProject1* -Info 165 [16:05:09.000] DirectoryWatcher:: Added:: WatchInfo: /dummy/node_modules/@types 1 undefined Project: /dev/null/inferredProject1* WatchType: Type roots -Info 166 [16:05:10.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /dummy/node_modules/@types 1 undefined Project: /dev/null/inferredProject1* WatchType: Type roots -Info 167 [16:05:11.000] Finishing updateGraphWorker: Project: /dev/null/inferredProject1* Version: 3 structureChanged: true structureIsReused:: Not Elapsed:: *ms -Info 168 [16:05:12.000] Different program with same set of files -Info 169 [16:05:13.000] After ensureProjectForOpenFiles: -Info 170 [16:05:14.000] Project '/user/username/projects/myproject/tsconfig.json' (Configured) -Info 170 [16:05:15.000] Files (5) +Info 164 [00:05:02.000] ----------------------------------------------- +Info 164 [00:05:03.000] Open files: +Info 164 [00:05:04.000] FileName: /dummy/dummy.ts ProjectRootPath: undefined +Info 164 [00:05:05.000] Projects: /dev/null/inferredProject1* +Info 164 [00:05:06.000] FileName: /user/username/projects/myproject/src/main.ts ProjectRootPath: undefined +Info 164 [00:05:07.000] Projects: /user/username/projects/myproject/tsconfig.json,/user/username/projects/myproject/tsconfig-indirect1.json +Info 164 [00:05:08.000] Starting updateGraphWorker: Project: /dev/null/inferredProject1* +Info 165 [00:05:09.000] DirectoryWatcher:: Added:: WatchInfo: /dummy/node_modules/@types 1 undefined Project: /dev/null/inferredProject1* WatchType: Type roots +Info 166 [00:05:10.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /dummy/node_modules/@types 1 undefined Project: /dev/null/inferredProject1* WatchType: Type roots +Info 167 [00:05:11.000] Finishing updateGraphWorker: Project: /dev/null/inferredProject1* Version: 3 structureChanged: true structureIsReused:: Not Elapsed:: *ms +Info 168 [00:05:12.000] Different program with same set of files +Info 169 [00:05:13.000] After ensureProjectForOpenFiles: +Info 170 [00:05:14.000] Project '/user/username/projects/myproject/tsconfig.json' (Configured) +Info 170 [00:05:15.000] Files (5) -Info 170 [16:05:16.000] ----------------------------------------------- -Info 170 [16:05:17.000] Project '/user/username/projects/myproject/tsconfig-indirect1.json' (Configured) -Info 170 [16:05:18.000] Files (4) +Info 170 [00:05:16.000] ----------------------------------------------- +Info 170 [00:05:17.000] Project '/user/username/projects/myproject/tsconfig-indirect1.json' (Configured) +Info 170 [00:05:18.000] Files (4) -Info 170 [16:05:19.000] ----------------------------------------------- -Info 170 [16:05:20.000] Project '/dev/null/inferredProject1*' (Inferred) -Info 170 [16:05:21.000] Files (2) +Info 170 [00:05:19.000] ----------------------------------------------- +Info 170 [00:05:20.000] Project '/dev/null/inferredProject1*' (Inferred) +Info 170 [00:05:21.000] Files (2) -Info 170 [16:05:22.000] ----------------------------------------------- -Info 170 [16:05:23.000] Open files: -Info 170 [16:05:24.000] FileName: /dummy/dummy.ts ProjectRootPath: undefined -Info 170 [16:05:25.000] Projects: /dev/null/inferredProject1* -Info 170 [16:05:26.000] FileName: /user/username/projects/myproject/src/main.ts ProjectRootPath: undefined -Info 170 [16:05:27.000] Projects: /user/username/projects/myproject/tsconfig.json,/user/username/projects/myproject/tsconfig-indirect1.json \ No newline at end of file +Info 170 [00:05:22.000] ----------------------------------------------- +Info 170 [00:05:23.000] Open files: +Info 170 [00:05:24.000] FileName: /dummy/dummy.ts ProjectRootPath: undefined +Info 170 [00:05:25.000] Projects: /dev/null/inferredProject1* +Info 170 [00:05:26.000] FileName: /user/username/projects/myproject/src/main.ts ProjectRootPath: undefined +Info 170 [00:05:27.000] Projects: /user/username/projects/myproject/tsconfig.json,/user/username/projects/myproject/tsconfig-indirect1.json \ No newline at end of file diff --git a/tests/baselines/reference/tsserver/projectReferences/solution-with-its-own-files-and-disables-looking-into-the-child-project-if-disableReferencedProjectLoad-is-set.js b/tests/baselines/reference/tsserver/projectReferences/solution-with-its-own-files-and-disables-looking-into-the-child-project-if-disableReferencedProjectLoad-is-set.js index c8b14a152e54a..a5e90397e1222 100644 --- a/tests/baselines/reference/tsserver/projectReferences/solution-with-its-own-files-and-disables-looking-into-the-child-project-if-disableReferencedProjectLoad-is-set.js +++ b/tests/baselines/reference/tsserver/projectReferences/solution-with-its-own-files-and-disables-looking-into-the-child-project-if-disableReferencedProjectLoad-is-set.js @@ -1,11 +1,11 @@ -Info 0 [16:00:57.000] Provided types map file "/a/lib/typesMap.json" doesn't exist -Info 1 [16:00:58.000] Search path: /user/username/projects/myproject/src -Info 2 [16:00:59.000] For info: /user/username/projects/myproject/src/main.ts :: Config file name: /user/username/projects/myproject/tsconfig.json -Info 3 [16:01:00.000] Creating configuration project /user/username/projects/myproject/tsconfig.json -Info 4 [16:01:01.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/tsconfig.json 2000 undefined Project: /user/username/projects/myproject/tsconfig.json WatchType: Config file -Info 5 [16:01:02.000] event: +Info 0 [00:00:57.000] Provided types map file "/a/lib/typesMap.json" doesn't exist +Info 1 [00:00:58.000] Search path: /user/username/projects/myproject/src +Info 2 [00:00:59.000] For info: /user/username/projects/myproject/src/main.ts :: Config file name: /user/username/projects/myproject/tsconfig.json +Info 3 [00:01:00.000] Creating configuration project /user/username/projects/myproject/tsconfig.json +Info 4 [00:01:01.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/tsconfig.json 2000 undefined Project: /user/username/projects/myproject/tsconfig.json WatchType: Config file +Info 5 [00:01:02.000] event: {"seq":0,"type":"event","event":"projectLoadingStart","body":{"projectName":"/user/username/projects/myproject/tsconfig.json","reason":"Creating possible configured project for /user/username/projects/myproject/src/main.ts to open"}} -Info 6 [16:01:03.000] Config: /user/username/projects/myproject/tsconfig.json : { +Info 6 [00:01:03.000] Config: /user/username/projects/myproject/tsconfig.json : { "rootNames": [ "/user/username/projects/myproject/own/main.ts" ], @@ -22,10 +22,10 @@ Info 6 [16:01:03.000] Config: /user/username/projects/myproject/tsconfig.json } ] } -Info 7 [16:01:04.000] Plugins were requested but not running in environment that supports 'require'. Nothing will be loaded -Info 8 [16:01:05.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/own/main.ts 500 undefined WatchType: Closed Script info -Info 9 [16:01:06.000] Starting updateGraphWorker: Project: /user/username/projects/myproject/tsconfig.json -Info 10 [16:01:07.000] Config: /user/username/projects/myproject/tsconfig-src.json : { +Info 7 [00:01:04.000] Plugins were requested but not running in environment that supports 'require'. Nothing will be loaded +Info 8 [00:01:05.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/own/main.ts 500 undefined WatchType: Closed Script info +Info 9 [00:01:06.000] Starting updateGraphWorker: Project: /user/username/projects/myproject/tsconfig.json +Info 10 [00:01:07.000] Config: /user/username/projects/myproject/tsconfig-src.json : { "rootNames": [ "/user/username/projects/myproject/src/main.ts", "/user/username/projects/myproject/src/helpers/functions.ts" @@ -37,16 +37,16 @@ Info 10 [16:01:07.000] Config: /user/username/projects/myproject/tsconfig-src. "configFilePath": "/user/username/projects/myproject/tsconfig-src.json" } } -Info 11 [16:01:08.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/tsconfig-src.json 2000 undefined Project: /user/username/projects/myproject/tsconfig.json WatchType: Config file -Info 12 [16:01:09.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/src 1 undefined Config: /user/username/projects/myproject/tsconfig-src.json WatchType: Wild card directory -Info 13 [16:01:10.000] 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 14 [16:01:11.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/src/helpers/functions.ts 500 undefined WatchType: Closed Script info -Info 15 [16:01:12.000] FileWatcher:: Added:: WatchInfo: /a/lib/lib.d.ts 500 undefined WatchType: Closed Script info -Info 16 [16:01:13.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/tsconfig.json WatchType: Type roots -Info 17 [16:01:14.000] 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 18 [16:01:15.000] Finishing updateGraphWorker: Project: /user/username/projects/myproject/tsconfig.json Version: 1 structureChanged: true structureIsReused:: Not Elapsed:: *ms -Info 19 [16:01:16.000] Project '/user/username/projects/myproject/tsconfig.json' (Configured) -Info 20 [16:01:17.000] Files (4) +Info 11 [00:01:08.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/tsconfig-src.json 2000 undefined Project: /user/username/projects/myproject/tsconfig.json WatchType: Config file +Info 12 [00:01:09.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/src 1 undefined Config: /user/username/projects/myproject/tsconfig-src.json WatchType: Wild card directory +Info 13 [00:01:10.000] 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 14 [00:01:11.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/src/helpers/functions.ts 500 undefined WatchType: Closed Script info +Info 15 [00:01:12.000] FileWatcher:: Added:: WatchInfo: /a/lib/lib.d.ts 500 undefined WatchType: Closed Script info +Info 16 [00:01:13.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/tsconfig.json WatchType: Type roots +Info 17 [00:01:14.000] 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 18 [00:01:15.000] Finishing updateGraphWorker: Project: /user/username/projects/myproject/tsconfig.json Version: 1 structureChanged: true structureIsReused:: Not Elapsed:: *ms +Info 19 [00:01:16.000] Project '/user/username/projects/myproject/tsconfig.json' (Configured) +Info 20 [00:01:17.000] Files (4) /a/lib/lib.d.ts /user/username/projects/myproject/src/helpers/functions.ts /user/username/projects/myproject/src/main.ts @@ -62,31 +62,31 @@ Info 20 [16:01:17.000] Files (4) own/main.ts Part of 'files' list in tsconfig.json -Info 21 [16:01:18.000] ----------------------------------------------- -Info 22 [16:01:19.000] event: +Info 21 [00:01:18.000] ----------------------------------------------- +Info 22 [00:01:19.000] event: {"seq":0,"type":"event","event":"projectLoadingFinish","body":{"projectName":"/user/username/projects/myproject/tsconfig.json"}} -Info 23 [16:01:20.000] event: +Info 23 [00:01:20.000] event: {"seq":0,"type":"event","event":"telemetry","body":{"telemetryEventName":"projectInfo","payload":{"projectId":"4a33d78ee40d836c4f4e64c59aed976628aea0013be9585c5ff171dfc41baf98","fileStats":{"js":0,"jsSize":0,"jsx":0,"jsxSize":0,"ts":3,"tsSize":134,"tsx":0,"tsxSize":0,"dts":1,"dtsSize":334,"deferred":0,"deferredSize":0},"compilerOptions":{"outDir":"","baseUrl":"","disableReferencedProjectLoad":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 24 [16:01:21.000] event: +Info 24 [00:01:21.000] event: {"seq":0,"type":"event","event":"configFileDiag","body":{"triggerFile":"/user/username/projects/myproject/src/main.ts","configFile":"/user/username/projects/myproject/tsconfig.json","diagnostics":[]}} -Info 25 [16:01:22.000] Project '/user/username/projects/myproject/tsconfig.json' (Configured) -Info 25 [16:01:23.000] Files (4) +Info 25 [00:01:22.000] Project '/user/username/projects/myproject/tsconfig.json' (Configured) +Info 25 [00:01:23.000] Files (4) -Info 25 [16:01:24.000] ----------------------------------------------- -Info 25 [16:01:25.000] Open files: -Info 25 [16:01:26.000] FileName: /user/username/projects/myproject/src/main.ts ProjectRootPath: undefined -Info 25 [16:01:27.000] Projects: /user/username/projects/myproject/tsconfig.json -Info 25 [16:01:28.000] getDefaultProject for /user/username/projects/myproject/src/main.ts: /user/username/projects/myproject/tsconfig.json -Info 25 [16:01:29.000] findDefaultConfiguredProject for /user/username/projects/myproject/src/main.ts: undefined -Info 25 [16:01:30.000] Search path: /dummy -Info 26 [16:01:31.000] For info: /dummy/dummy.ts :: No config files found. -Info 27 [16:01:32.000] Plugins were requested but not running in environment that supports 'require'. Nothing will be loaded -Info 28 [16:01:33.000] Starting updateGraphWorker: Project: /dev/null/inferredProject1* -Info 29 [16:01:34.000] DirectoryWatcher:: Added:: WatchInfo: /dummy/node_modules/@types 1 undefined Project: /dev/null/inferredProject1* WatchType: Type roots -Info 30 [16:01:35.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /dummy/node_modules/@types 1 undefined Project: /dev/null/inferredProject1* WatchType: Type roots -Info 31 [16:01:36.000] Finishing updateGraphWorker: Project: /dev/null/inferredProject1* Version: 1 structureChanged: true structureIsReused:: Not Elapsed:: *ms -Info 32 [16:01:37.000] Project '/dev/null/inferredProject1*' (Inferred) -Info 33 [16:01:38.000] Files (2) +Info 25 [00:01:24.000] ----------------------------------------------- +Info 25 [00:01:25.000] Open files: +Info 25 [00:01:26.000] FileName: /user/username/projects/myproject/src/main.ts ProjectRootPath: undefined +Info 25 [00:01:27.000] Projects: /user/username/projects/myproject/tsconfig.json +Info 25 [00:01:28.000] getDefaultProject for /user/username/projects/myproject/src/main.ts: /user/username/projects/myproject/tsconfig.json +Info 25 [00:01:29.000] findDefaultConfiguredProject for /user/username/projects/myproject/src/main.ts: undefined +Info 25 [00:01:30.000] Search path: /dummy +Info 26 [00:01:31.000] For info: /dummy/dummy.ts :: No config files found. +Info 27 [00:01:32.000] Plugins were requested but not running in environment that supports 'require'. Nothing will be loaded +Info 28 [00:01:33.000] Starting updateGraphWorker: Project: /dev/null/inferredProject1* +Info 29 [00:01:34.000] DirectoryWatcher:: Added:: WatchInfo: /dummy/node_modules/@types 1 undefined Project: /dev/null/inferredProject1* WatchType: Type roots +Info 30 [00:01:35.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /dummy/node_modules/@types 1 undefined Project: /dev/null/inferredProject1* WatchType: Type roots +Info 31 [00:01:36.000] Finishing updateGraphWorker: Project: /dev/null/inferredProject1* Version: 1 structureChanged: true structureIsReused:: Not Elapsed:: *ms +Info 32 [00:01:37.000] Project '/dev/null/inferredProject1*' (Inferred) +Info 33 [00:01:38.000] Files (2) /a/lib/lib.d.ts /dummy/dummy.ts @@ -96,49 +96,49 @@ Info 33 [16:01:38.000] Files (2) dummy.ts Root file specified for compilation -Info 34 [16:01:39.000] ----------------------------------------------- -Info 35 [16:01:40.000] Project '/user/username/projects/myproject/tsconfig.json' (Configured) -Info 35 [16:01:41.000] Files (4) +Info 34 [00:01:39.000] ----------------------------------------------- +Info 35 [00:01:40.000] Project '/user/username/projects/myproject/tsconfig.json' (Configured) +Info 35 [00:01:41.000] Files (4) -Info 35 [16:01:42.000] ----------------------------------------------- -Info 35 [16:01:43.000] Project '/dev/null/inferredProject1*' (Inferred) -Info 35 [16:01:44.000] Files (2) +Info 35 [00:01:42.000] ----------------------------------------------- +Info 35 [00:01:43.000] Project '/dev/null/inferredProject1*' (Inferred) +Info 35 [00:01:44.000] Files (2) -Info 35 [16:01:45.000] ----------------------------------------------- -Info 35 [16:01:46.000] Open files: -Info 35 [16:01:47.000] FileName: /user/username/projects/myproject/src/main.ts ProjectRootPath: undefined -Info 35 [16:01:48.000] Projects: /user/username/projects/myproject/tsconfig.json -Info 35 [16:01:49.000] FileName: /dummy/dummy.ts ProjectRootPath: undefined -Info 35 [16:01:50.000] Projects: /dev/null/inferredProject1* -Info 35 [16:01:51.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/src/main.ts 500 undefined WatchType: Closed Script info -Info 36 [16:01:52.000] Project '/user/username/projects/myproject/tsconfig.json' (Configured) -Info 36 [16:01:53.000] Files (4) +Info 35 [00:01:45.000] ----------------------------------------------- +Info 35 [00:01:46.000] Open files: +Info 35 [00:01:47.000] FileName: /user/username/projects/myproject/src/main.ts ProjectRootPath: undefined +Info 35 [00:01:48.000] Projects: /user/username/projects/myproject/tsconfig.json +Info 35 [00:01:49.000] FileName: /dummy/dummy.ts ProjectRootPath: undefined +Info 35 [00:01:50.000] Projects: /dev/null/inferredProject1* +Info 35 [00:01:51.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/src/main.ts 500 undefined WatchType: Closed Script info +Info 36 [00:01:52.000] Project '/user/username/projects/myproject/tsconfig.json' (Configured) +Info 36 [00:01:53.000] Files (4) -Info 36 [16:01:54.000] ----------------------------------------------- -Info 36 [16:01:55.000] Project '/dev/null/inferredProject1*' (Inferred) -Info 36 [16:01:56.000] Files (2) +Info 36 [00:01:54.000] ----------------------------------------------- +Info 36 [00:01:55.000] Project '/dev/null/inferredProject1*' (Inferred) +Info 36 [00:01:56.000] Files (2) -Info 36 [16:01:57.000] ----------------------------------------------- -Info 36 [16:01:58.000] Open files: -Info 36 [16:01:59.000] FileName: /dummy/dummy.ts ProjectRootPath: undefined -Info 36 [16:02:00.000] Projects: /dev/null/inferredProject1* -Info 36 [16:02:01.000] FileWatcher:: Added:: WatchInfo: /dummy/dummy.ts 500 undefined WatchType: Closed Script info -Info 37 [16:02:02.000] Project '/user/username/projects/myproject/tsconfig.json' (Configured) -Info 37 [16:02:03.000] Files (4) +Info 36 [00:01:57.000] ----------------------------------------------- +Info 36 [00:01:58.000] Open files: +Info 36 [00:01:59.000] FileName: /dummy/dummy.ts ProjectRootPath: undefined +Info 36 [00:02:00.000] Projects: /dev/null/inferredProject1* +Info 36 [00:02:01.000] FileWatcher:: Added:: WatchInfo: /dummy/dummy.ts 500 undefined WatchType: Closed Script info +Info 37 [00:02:02.000] Project '/user/username/projects/myproject/tsconfig.json' (Configured) +Info 37 [00:02:03.000] Files (4) -Info 37 [16:02:04.000] ----------------------------------------------- -Info 37 [16:02:05.000] Project '/dev/null/inferredProject1*' (Inferred) -Info 37 [16:02:06.000] Files (2) +Info 37 [00:02:04.000] ----------------------------------------------- +Info 37 [00:02:05.000] Project '/dev/null/inferredProject1*' (Inferred) +Info 37 [00:02:06.000] Files (2) -Info 37 [16:02:07.000] ----------------------------------------------- -Info 37 [16:02:08.000] Open files: -Info 37 [16:02:09.000] FileWatcher:: Close:: WatchInfo: /dummy/dummy.ts 500 undefined WatchType: Closed Script info -Info 38 [16:02:10.000] Search path: /dummy -Info 39 [16:02:11.000] For info: /dummy/dummy.ts :: No config files found. -Info 40 [16:02:12.000] Starting updateGraphWorker: Project: /dev/null/inferredProject1* -Info 41 [16:02:13.000] Finishing updateGraphWorker: Project: /dev/null/inferredProject1* Version: 2 structureChanged: false structureIsReused:: Not Elapsed:: *ms -Info 42 [16:02:14.000] Project '/dev/null/inferredProject1*' (Inferred) -Info 43 [16:02:15.000] Files (2) +Info 37 [00:02:07.000] ----------------------------------------------- +Info 37 [00:02:08.000] Open files: +Info 37 [00:02:09.000] FileWatcher:: Close:: WatchInfo: /dummy/dummy.ts 500 undefined WatchType: Closed Script info +Info 38 [00:02:10.000] Search path: /dummy +Info 39 [00:02:11.000] For info: /dummy/dummy.ts :: No config files found. +Info 40 [00:02:12.000] Starting updateGraphWorker: Project: /dev/null/inferredProject1* +Info 41 [00:02:13.000] Finishing updateGraphWorker: Project: /dev/null/inferredProject1* Version: 2 structureChanged: false structureIsReused:: Not Elapsed:: *ms +Info 42 [00:02:14.000] Project '/dev/null/inferredProject1*' (Inferred) +Info 43 [00:02:15.000] Files (2) /a/lib/lib.d.ts /dummy/dummy.ts @@ -148,10 +148,10 @@ Info 43 [16:02:15.000] Files (2) dummy.ts Root file specified for compilation -Info 44 [16:02:16.000] ----------------------------------------------- -Info 45 [16:02:17.000] `remove Project:: -Info 46 [16:02:18.000] Project '/user/username/projects/myproject/tsconfig.json' (Configured) -Info 47 [16:02:19.000] Files (4) +Info 44 [00:02:16.000] ----------------------------------------------- +Info 45 [00:02:17.000] `remove Project:: +Info 46 [00:02:18.000] Project '/user/username/projects/myproject/tsconfig.json' (Configured) +Info 47 [00:02:19.000] Files (4) /a/lib/lib.d.ts /user/username/projects/myproject/src/helpers/functions.ts /user/username/projects/myproject/src/main.ts @@ -167,30 +167,30 @@ Info 47 [16:02:19.000] Files (4) own/main.ts Part of 'files' list in tsconfig.json -Info 48 [16:02:20.000] ----------------------------------------------- -Info 49 [16:02:21.000] FileWatcher:: Close:: WatchInfo: /user/username/projects/myproject/tsconfig.json 2000 undefined Project: /user/username/projects/myproject/tsconfig.json WatchType: Config file -Info 50 [16:02:22.000] DirectoryWatcher:: Close:: WatchInfo: /user/username/projects/myproject/src 1 undefined Config: /user/username/projects/myproject/tsconfig-src.json WatchType: Wild card directory -Info 51 [16:02:23.000] 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 52 [16:02:24.000] FileWatcher:: Close:: WatchInfo: /user/username/projects/myproject/tsconfig-src.json 2000 undefined Project: /user/username/projects/myproject/tsconfig.json WatchType: Config file -Info 53 [16:02:25.000] DirectoryWatcher:: Close:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/tsconfig.json WatchType: Type roots -Info 54 [16:02:26.000] 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 55 [16:02:27.000] FileWatcher:: Close:: WatchInfo: /user/username/projects/myproject/src/main.ts 500 undefined WatchType: Closed Script info -Info 56 [16:02:28.000] FileWatcher:: Close:: WatchInfo: /user/username/projects/myproject/own/main.ts 500 undefined WatchType: Closed Script info -Info 57 [16:02:29.000] FileWatcher:: Close:: WatchInfo: /user/username/projects/myproject/src/helpers/functions.ts 500 undefined WatchType: Closed Script info -Info 58 [16:02:30.000] Project '/dev/null/inferredProject1*' (Inferred) -Info 58 [16:02:31.000] Files (2) +Info 48 [00:02:20.000] ----------------------------------------------- +Info 49 [00:02:21.000] FileWatcher:: Close:: WatchInfo: /user/username/projects/myproject/tsconfig.json 2000 undefined Project: /user/username/projects/myproject/tsconfig.json WatchType: Config file +Info 50 [00:02:22.000] DirectoryWatcher:: Close:: WatchInfo: /user/username/projects/myproject/src 1 undefined Config: /user/username/projects/myproject/tsconfig-src.json WatchType: Wild card directory +Info 51 [00:02:23.000] 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 52 [00:02:24.000] FileWatcher:: Close:: WatchInfo: /user/username/projects/myproject/tsconfig-src.json 2000 undefined Project: /user/username/projects/myproject/tsconfig.json WatchType: Config file +Info 53 [00:02:25.000] DirectoryWatcher:: Close:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/tsconfig.json WatchType: Type roots +Info 54 [00:02:26.000] 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 55 [00:02:27.000] FileWatcher:: Close:: WatchInfo: /user/username/projects/myproject/src/main.ts 500 undefined WatchType: Closed Script info +Info 56 [00:02:28.000] FileWatcher:: Close:: WatchInfo: /user/username/projects/myproject/own/main.ts 500 undefined WatchType: Closed Script info +Info 57 [00:02:29.000] FileWatcher:: Close:: WatchInfo: /user/username/projects/myproject/src/helpers/functions.ts 500 undefined WatchType: Closed Script info +Info 58 [00:02:30.000] Project '/dev/null/inferredProject1*' (Inferred) +Info 58 [00:02:31.000] Files (2) -Info 58 [16:02:32.000] ----------------------------------------------- -Info 58 [16:02:33.000] Open files: -Info 58 [16:02:34.000] FileName: /dummy/dummy.ts ProjectRootPath: undefined -Info 58 [16:02:35.000] Projects: /dev/null/inferredProject1* -Info 58 [16:02:36.000] Search path: /user/username/projects/myproject/src -Info 59 [16:02:37.000] For info: /user/username/projects/myproject/src/main.ts :: Config file name: /user/username/projects/myproject/tsconfig.json -Info 60 [16:02:38.000] Creating configuration project /user/username/projects/myproject/tsconfig.json -Info 61 [16:02:39.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/tsconfig.json 2000 undefined Project: /user/username/projects/myproject/tsconfig.json WatchType: Config file -Info 62 [16:02:40.000] event: +Info 58 [00:02:32.000] ----------------------------------------------- +Info 58 [00:02:33.000] Open files: +Info 58 [00:02:34.000] FileName: /dummy/dummy.ts ProjectRootPath: undefined +Info 58 [00:02:35.000] Projects: /dev/null/inferredProject1* +Info 58 [00:02:36.000] Search path: /user/username/projects/myproject/src +Info 59 [00:02:37.000] For info: /user/username/projects/myproject/src/main.ts :: Config file name: /user/username/projects/myproject/tsconfig.json +Info 60 [00:02:38.000] Creating configuration project /user/username/projects/myproject/tsconfig.json +Info 61 [00:02:39.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/tsconfig.json 2000 undefined Project: /user/username/projects/myproject/tsconfig.json WatchType: Config file +Info 62 [00:02:40.000] event: {"seq":0,"type":"event","event":"projectLoadingStart","body":{"projectName":"/user/username/projects/myproject/tsconfig.json","reason":"Creating possible configured project for /user/username/projects/myproject/src/main.ts to open"}} -Info 63 [16:02:41.000] Config: /user/username/projects/myproject/tsconfig.json : { +Info 63 [00:02:41.000] Config: /user/username/projects/myproject/tsconfig.json : { "rootNames": [ "/user/username/projects/myproject/own/main.ts" ], @@ -207,10 +207,10 @@ Info 63 [16:02:41.000] Config: /user/username/projects/myproject/tsconfig.json } ] } -Info 64 [16:02:42.000] Plugins were requested but not running in environment that supports 'require'. Nothing will be loaded -Info 65 [16:02:43.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/own/main.ts 500 undefined WatchType: Closed Script info -Info 66 [16:02:44.000] Starting updateGraphWorker: Project: /user/username/projects/myproject/tsconfig.json -Info 67 [16:02:45.000] Config: /user/username/projects/myproject/tsconfig-src.json : { +Info 64 [00:02:42.000] Plugins were requested but not running in environment that supports 'require'. Nothing will be loaded +Info 65 [00:02:43.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/own/main.ts 500 undefined WatchType: Closed Script info +Info 66 [00:02:44.000] Starting updateGraphWorker: Project: /user/username/projects/myproject/tsconfig.json +Info 67 [00:02:45.000] Config: /user/username/projects/myproject/tsconfig-src.json : { "rootNames": [ "/user/username/projects/myproject/src/main.ts", "/user/username/projects/myproject/src/helpers/functions.ts" @@ -222,15 +222,15 @@ Info 67 [16:02:45.000] Config: /user/username/projects/myproject/tsconfig-src. "configFilePath": "/user/username/projects/myproject/tsconfig-src.json" } } -Info 68 [16:02:46.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/tsconfig-src.json 2000 undefined Project: /user/username/projects/myproject/tsconfig.json WatchType: Config file -Info 69 [16:02:47.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/src 1 undefined Config: /user/username/projects/myproject/tsconfig-src.json WatchType: Wild card directory -Info 70 [16:02:48.000] 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 71 [16:02:49.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/src/helpers/functions.ts 500 undefined WatchType: Closed Script info -Info 72 [16:02:50.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/tsconfig.json WatchType: Type roots -Info 73 [16:02:51.000] 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 74 [16:02:52.000] Finishing updateGraphWorker: Project: /user/username/projects/myproject/tsconfig.json Version: 1 structureChanged: true structureIsReused:: Not Elapsed:: *ms -Info 75 [16:02:53.000] Project '/user/username/projects/myproject/tsconfig.json' (Configured) -Info 76 [16:02:54.000] Files (4) +Info 68 [00:02:46.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/tsconfig-src.json 2000 undefined Project: /user/username/projects/myproject/tsconfig.json WatchType: Config file +Info 69 [00:02:47.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/src 1 undefined Config: /user/username/projects/myproject/tsconfig-src.json WatchType: Wild card directory +Info 70 [00:02:48.000] 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 71 [00:02:49.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/src/helpers/functions.ts 500 undefined WatchType: Closed Script info +Info 72 [00:02:50.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/tsconfig.json WatchType: Type roots +Info 73 [00:02:51.000] 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 74 [00:02:52.000] Finishing updateGraphWorker: Project: /user/username/projects/myproject/tsconfig.json Version: 1 structureChanged: true structureIsReused:: Not Elapsed:: *ms +Info 75 [00:02:53.000] Project '/user/username/projects/myproject/tsconfig.json' (Configured) +Info 76 [00:02:54.000] Files (4) /a/lib/lib.d.ts /user/username/projects/myproject/src/helpers/functions.ts /user/username/projects/myproject/src/main.ts @@ -246,42 +246,42 @@ Info 76 [16:02:54.000] Files (4) own/main.ts Part of 'files' list in tsconfig.json -Info 77 [16:02:55.000] ----------------------------------------------- -Info 78 [16:02:56.000] event: +Info 77 [00:02:55.000] ----------------------------------------------- +Info 78 [00:02:56.000] event: {"seq":0,"type":"event","event":"projectLoadingFinish","body":{"projectName":"/user/username/projects/myproject/tsconfig.json"}} -Info 79 [16:02:57.000] event: +Info 79 [00:02:57.000] event: {"seq":0,"type":"event","event":"configFileDiag","body":{"triggerFile":"/user/username/projects/myproject/src/main.ts","configFile":"/user/username/projects/myproject/tsconfig.json","diagnostics":[]}} -Info 80 [16:02:58.000] Project '/user/username/projects/myproject/tsconfig.json' (Configured) -Info 80 [16:02:59.000] Files (4) +Info 80 [00:02:58.000] Project '/user/username/projects/myproject/tsconfig.json' (Configured) +Info 80 [00:02:59.000] Files (4) -Info 80 [16:03:00.000] ----------------------------------------------- -Info 80 [16:03:01.000] Project '/dev/null/inferredProject1*' (Inferred) -Info 80 [16:03:02.000] Files (2) +Info 80 [00:03:00.000] ----------------------------------------------- +Info 80 [00:03:01.000] Project '/dev/null/inferredProject1*' (Inferred) +Info 80 [00:03:02.000] Files (2) -Info 80 [16:03:03.000] ----------------------------------------------- -Info 80 [16:03:04.000] Open files: -Info 80 [16:03:05.000] FileName: /dummy/dummy.ts ProjectRootPath: undefined -Info 80 [16:03:06.000] Projects: /dev/null/inferredProject1* -Info 80 [16:03:07.000] FileName: /user/username/projects/myproject/src/main.ts ProjectRootPath: undefined -Info 80 [16:03:08.000] Projects: /user/username/projects/myproject/tsconfig.json -Info 80 [16:03:09.000] reload projects. -Info 81 [16:03:10.000] Scheduled: /dev/null/inferredProject1* -Info 82 [16:03:11.000] Scheduled: /user/username/projects/myproject/tsconfig.json -Info 83 [16:03:12.000] Scheduled: *ensureProjectForOpenFiles* -Info 84 [16:03:13.000] Scheduled: /user/username/projects/myproject/tsconfig.json, Cancelled earlier one -Info 85 [16:03:14.000] Scheduled: *ensureProjectForOpenFiles*, Cancelled earlier one -Info 86 [16:03:15.000] Scheduled: /user/username/projects/myproject/tsconfig.json, Cancelled earlier one -Info 87 [16:03:16.000] Scheduled: *ensureProjectForOpenFiles*, Cancelled earlier one -Info 88 [16:03:17.000] Search path: /dummy -Info 89 [16:03:18.000] For info: /dummy/dummy.ts :: No config files found. -Info 90 [16:03:19.000] Search path: /user/username/projects/myproject/src -Info 91 [16:03:20.000] For info: /user/username/projects/myproject/src/main.ts :: Config file name: /user/username/projects/myproject/tsconfig.json -Info 92 [16:03:21.000] DirectoryWatcher:: Close:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/tsconfig.json WatchType: Type roots -Info 93 [16:03:22.000] 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 94 [16:03:23.000] Reloading configured project /user/username/projects/myproject/tsconfig.json -Info 95 [16:03:24.000] event: +Info 80 [00:03:03.000] ----------------------------------------------- +Info 80 [00:03:04.000] Open files: +Info 80 [00:03:05.000] FileName: /dummy/dummy.ts ProjectRootPath: undefined +Info 80 [00:03:06.000] Projects: /dev/null/inferredProject1* +Info 80 [00:03:07.000] FileName: /user/username/projects/myproject/src/main.ts ProjectRootPath: undefined +Info 80 [00:03:08.000] Projects: /user/username/projects/myproject/tsconfig.json +Info 80 [00:03:09.000] reload projects. +Info 81 [00:03:10.000] Scheduled: /dev/null/inferredProject1* +Info 82 [00:03:11.000] Scheduled: /user/username/projects/myproject/tsconfig.json +Info 83 [00:03:12.000] Scheduled: *ensureProjectForOpenFiles* +Info 84 [00:03:13.000] Scheduled: /user/username/projects/myproject/tsconfig.json, Cancelled earlier one +Info 85 [00:03:14.000] Scheduled: *ensureProjectForOpenFiles*, Cancelled earlier one +Info 86 [00:03:15.000] Scheduled: /user/username/projects/myproject/tsconfig.json, Cancelled earlier one +Info 87 [00:03:16.000] Scheduled: *ensureProjectForOpenFiles*, Cancelled earlier one +Info 88 [00:03:17.000] Search path: /dummy +Info 89 [00:03:18.000] For info: /dummy/dummy.ts :: No config files found. +Info 90 [00:03:19.000] Search path: /user/username/projects/myproject/src +Info 91 [00:03:20.000] For info: /user/username/projects/myproject/src/main.ts :: Config file name: /user/username/projects/myproject/tsconfig.json +Info 92 [00:03:21.000] DirectoryWatcher:: Close:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/tsconfig.json WatchType: Type roots +Info 93 [00:03:22.000] 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 94 [00:03:23.000] Reloading configured project /user/username/projects/myproject/tsconfig.json +Info 95 [00:03:24.000] event: {"seq":0,"type":"event","event":"projectLoadingStart","body":{"projectName":"/user/username/projects/myproject/tsconfig.json","reason":"User requested reload projects"}} -Info 96 [16:03:25.000] Config: /user/username/projects/myproject/tsconfig.json : { +Info 96 [00:03:25.000] Config: /user/username/projects/myproject/tsconfig.json : { "rootNames": [ "/user/username/projects/myproject/own/main.ts" ], @@ -298,9 +298,9 @@ Info 96 [16:03:25.000] Config: /user/username/projects/myproject/tsconfig.json } ] } -Info 97 [16:03:26.000] Plugins were requested but not running in environment that supports 'require'. Nothing will be loaded -Info 98 [16:03:27.000] Starting updateGraphWorker: Project: /user/username/projects/myproject/tsconfig.json -Info 99 [16:03:28.000] Config: /user/username/projects/myproject/tsconfig-src.json : { +Info 97 [00:03:26.000] Plugins were requested but not running in environment that supports 'require'. Nothing will be loaded +Info 98 [00:03:27.000] Starting updateGraphWorker: Project: /user/username/projects/myproject/tsconfig.json +Info 99 [00:03:28.000] Config: /user/username/projects/myproject/tsconfig-src.json : { "rootNames": [ "/user/username/projects/myproject/src/main.ts", "/user/username/projects/myproject/src/helpers/functions.ts" @@ -312,46 +312,46 @@ Info 99 [16:03:28.000] Config: /user/username/projects/myproject/tsconfig-src. "configFilePath": "/user/username/projects/myproject/tsconfig-src.json" } } -Info 100 [16:03:29.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/tsconfig.json WatchType: Type roots -Info 101 [16:03:30.000] 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 102 [16:03:31.000] Finishing updateGraphWorker: Project: /user/username/projects/myproject/tsconfig.json Version: 2 structureChanged: true structureIsReused:: Not Elapsed:: *ms -Info 103 [16:03:32.000] Different program with same set of files -Info 104 [16:03:33.000] event: +Info 100 [00:03:29.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/tsconfig.json WatchType: Type roots +Info 101 [00:03:30.000] 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 102 [00:03:31.000] Finishing updateGraphWorker: Project: /user/username/projects/myproject/tsconfig.json Version: 2 structureChanged: true structureIsReused:: Not Elapsed:: *ms +Info 103 [00:03:32.000] Different program with same set of files +Info 104 [00:03:33.000] event: {"seq":0,"type":"event","event":"projectLoadingFinish","body":{"projectName":"/user/username/projects/myproject/tsconfig.json"}} -Info 105 [16:03:34.000] event: +Info 105 [00:03:34.000] event: {"seq":0,"type":"event","event":"configFileDiag","body":{"triggerFile":"/user/username/projects/myproject/tsconfig.json","configFile":"/user/username/projects/myproject/tsconfig.json","diagnostics":[]}} -Info 106 [16:03:35.000] DirectoryWatcher:: Close:: WatchInfo: /dummy/node_modules/@types 1 undefined Project: /dev/null/inferredProject1* WatchType: Type roots -Info 107 [16:03:36.000] Elapsed:: *ms DirectoryWatcher:: Close:: WatchInfo: /dummy/node_modules/@types 1 undefined Project: /dev/null/inferredProject1* WatchType: Type roots -Info 108 [16:03:37.000] Before ensureProjectForOpenFiles: -Info 109 [16:03:38.000] Project '/user/username/projects/myproject/tsconfig.json' (Configured) -Info 109 [16:03:39.000] Files (4) +Info 106 [00:03:35.000] DirectoryWatcher:: Close:: WatchInfo: /dummy/node_modules/@types 1 undefined Project: /dev/null/inferredProject1* WatchType: Type roots +Info 107 [00:03:36.000] Elapsed:: *ms DirectoryWatcher:: Close:: WatchInfo: /dummy/node_modules/@types 1 undefined Project: /dev/null/inferredProject1* WatchType: Type roots +Info 108 [00:03:37.000] Before ensureProjectForOpenFiles: +Info 109 [00:03:38.000] Project '/user/username/projects/myproject/tsconfig.json' (Configured) +Info 109 [00:03:39.000] Files (4) -Info 109 [16:03:40.000] ----------------------------------------------- -Info 109 [16:03:41.000] Project '/dev/null/inferredProject1*' (Inferred) -Info 109 [16:03:42.000] Files (2) +Info 109 [00:03:40.000] ----------------------------------------------- +Info 109 [00:03:41.000] Project '/dev/null/inferredProject1*' (Inferred) +Info 109 [00:03:42.000] Files (2) -Info 109 [16:03:43.000] ----------------------------------------------- -Info 109 [16:03:44.000] Open files: -Info 109 [16:03:45.000] FileName: /dummy/dummy.ts ProjectRootPath: undefined -Info 109 [16:03:46.000] Projects: /dev/null/inferredProject1* -Info 109 [16:03:47.000] FileName: /user/username/projects/myproject/src/main.ts ProjectRootPath: undefined -Info 109 [16:03:48.000] Projects: /user/username/projects/myproject/tsconfig.json -Info 109 [16:03:49.000] Starting updateGraphWorker: Project: /dev/null/inferredProject1* -Info 110 [16:03:50.000] DirectoryWatcher:: Added:: WatchInfo: /dummy/node_modules/@types 1 undefined Project: /dev/null/inferredProject1* WatchType: Type roots -Info 111 [16:03:51.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /dummy/node_modules/@types 1 undefined Project: /dev/null/inferredProject1* WatchType: Type roots -Info 112 [16:03:52.000] Finishing updateGraphWorker: Project: /dev/null/inferredProject1* Version: 3 structureChanged: true structureIsReused:: Not Elapsed:: *ms -Info 113 [16:03:53.000] Different program with same set of files -Info 114 [16:03:54.000] After ensureProjectForOpenFiles: -Info 115 [16:03:55.000] Project '/user/username/projects/myproject/tsconfig.json' (Configured) -Info 115 [16:03:56.000] Files (4) +Info 109 [00:03:43.000] ----------------------------------------------- +Info 109 [00:03:44.000] Open files: +Info 109 [00:03:45.000] FileName: /dummy/dummy.ts ProjectRootPath: undefined +Info 109 [00:03:46.000] Projects: /dev/null/inferredProject1* +Info 109 [00:03:47.000] FileName: /user/username/projects/myproject/src/main.ts ProjectRootPath: undefined +Info 109 [00:03:48.000] Projects: /user/username/projects/myproject/tsconfig.json +Info 109 [00:03:49.000] Starting updateGraphWorker: Project: /dev/null/inferredProject1* +Info 110 [00:03:50.000] DirectoryWatcher:: Added:: WatchInfo: /dummy/node_modules/@types 1 undefined Project: /dev/null/inferredProject1* WatchType: Type roots +Info 111 [00:03:51.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /dummy/node_modules/@types 1 undefined Project: /dev/null/inferredProject1* WatchType: Type roots +Info 112 [00:03:52.000] Finishing updateGraphWorker: Project: /dev/null/inferredProject1* Version: 3 structureChanged: true structureIsReused:: Not Elapsed:: *ms +Info 113 [00:03:53.000] Different program with same set of files +Info 114 [00:03:54.000] After ensureProjectForOpenFiles: +Info 115 [00:03:55.000] Project '/user/username/projects/myproject/tsconfig.json' (Configured) +Info 115 [00:03:56.000] Files (4) -Info 115 [16:03:57.000] ----------------------------------------------- -Info 115 [16:03:58.000] Project '/dev/null/inferredProject1*' (Inferred) -Info 115 [16:03:59.000] Files (2) +Info 115 [00:03:57.000] ----------------------------------------------- +Info 115 [00:03:58.000] Project '/dev/null/inferredProject1*' (Inferred) +Info 115 [00:03:59.000] Files (2) -Info 115 [16:04:00.000] ----------------------------------------------- -Info 115 [16:04:01.000] Open files: -Info 115 [16:04:02.000] FileName: /dummy/dummy.ts ProjectRootPath: undefined -Info 115 [16:04:03.000] Projects: /dev/null/inferredProject1* -Info 115 [16:04:04.000] FileName: /user/username/projects/myproject/src/main.ts ProjectRootPath: undefined -Info 115 [16:04:05.000] Projects: /user/username/projects/myproject/tsconfig.json \ No newline at end of file +Info 115 [00:04:00.000] ----------------------------------------------- +Info 115 [00:04:01.000] Open files: +Info 115 [00:04:02.000] FileName: /dummy/dummy.ts ProjectRootPath: undefined +Info 115 [00:04:03.000] Projects: /dev/null/inferredProject1* +Info 115 [00:04:04.000] FileName: /user/username/projects/myproject/src/main.ts ProjectRootPath: undefined +Info 115 [00:04:05.000] Projects: /user/username/projects/myproject/tsconfig.json \ No newline at end of file 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 584ccfaa6a31f..6cb6df7b2f8f6 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 @@ -1,11 +1,11 @@ -Info 0 [16:00:57.000] Provided types map file "/a/lib/typesMap.json" doesn't exist -Info 1 [16:00:58.000] Search path: /user/username/projects/myproject/src -Info 2 [16:00:59.000] For info: /user/username/projects/myproject/src/main.ts :: Config file name: /user/username/projects/myproject/tsconfig.json -Info 3 [16:01:00.000] Creating configuration project /user/username/projects/myproject/tsconfig.json -Info 4 [16:01:01.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/tsconfig.json 2000 undefined Project: /user/username/projects/myproject/tsconfig.json WatchType: Config file -Info 5 [16:01:02.000] event: +Info 0 [00:00:57.000] Provided types map file "/a/lib/typesMap.json" doesn't exist +Info 1 [00:00:58.000] Search path: /user/username/projects/myproject/src +Info 2 [00:00:59.000] For info: /user/username/projects/myproject/src/main.ts :: Config file name: /user/username/projects/myproject/tsconfig.json +Info 3 [00:01:00.000] Creating configuration project /user/username/projects/myproject/tsconfig.json +Info 4 [00:01:01.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/tsconfig.json 2000 undefined Project: /user/username/projects/myproject/tsconfig.json WatchType: Config file +Info 5 [00:01:02.000] event: {"seq":0,"type":"event","event":"projectLoadingStart","body":{"projectName":"/user/username/projects/myproject/tsconfig.json","reason":"Creating possible configured project for /user/username/projects/myproject/src/main.ts to open"}} -Info 6 [16:01:03.000] Config: /user/username/projects/myproject/tsconfig.json : { +Info 6 [00:01:03.000] Config: /user/username/projects/myproject/tsconfig.json : { "rootNames": [ "/user/username/projects/myproject/own/main.ts" ], @@ -21,10 +21,10 @@ Info 6 [16:01:03.000] Config: /user/username/projects/myproject/tsconfig.json } ] } -Info 7 [16:01:04.000] Plugins were requested but not running in environment that supports 'require'. Nothing will be loaded -Info 8 [16:01:05.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/own/main.ts 500 undefined WatchType: Closed Script info -Info 9 [16:01:06.000] Starting updateGraphWorker: Project: /user/username/projects/myproject/tsconfig.json -Info 10 [16:01:07.000] Config: /user/username/projects/myproject/tsconfig-src.json : { +Info 7 [00:01:04.000] Plugins were requested but not running in environment that supports 'require'. Nothing will be loaded +Info 8 [00:01:05.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/own/main.ts 500 undefined WatchType: Closed Script info +Info 9 [00:01:06.000] Starting updateGraphWorker: Project: /user/username/projects/myproject/tsconfig.json +Info 10 [00:01:07.000] Config: /user/username/projects/myproject/tsconfig-src.json : { "rootNames": [ "/user/username/projects/myproject/src/main.ts", "/user/username/projects/myproject/src/helpers/functions.ts" @@ -36,16 +36,16 @@ Info 10 [16:01:07.000] Config: /user/username/projects/myproject/tsconfig-src. "configFilePath": "/user/username/projects/myproject/tsconfig-src.json" } } -Info 11 [16:01:08.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/tsconfig-src.json 2000 undefined Project: /user/username/projects/myproject/tsconfig.json WatchType: Config file -Info 12 [16:01:09.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/src 1 undefined Config: /user/username/projects/myproject/tsconfig-src.json WatchType: Wild card directory -Info 13 [16:01:10.000] 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 14 [16:01:11.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/src/helpers/functions.ts 500 undefined WatchType: Closed Script info -Info 15 [16:01:12.000] FileWatcher:: Added:: WatchInfo: /a/lib/lib.d.ts 500 undefined WatchType: Closed Script info -Info 16 [16:01:13.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/tsconfig.json WatchType: Type roots -Info 17 [16:01:14.000] 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 18 [16:01:15.000] Finishing updateGraphWorker: Project: /user/username/projects/myproject/tsconfig.json Version: 1 structureChanged: true structureIsReused:: Not Elapsed:: *ms -Info 19 [16:01:16.000] Project '/user/username/projects/myproject/tsconfig.json' (Configured) -Info 20 [16:01:17.000] Files (4) +Info 11 [00:01:08.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/tsconfig-src.json 2000 undefined Project: /user/username/projects/myproject/tsconfig.json WatchType: Config file +Info 12 [00:01:09.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/src 1 undefined Config: /user/username/projects/myproject/tsconfig-src.json WatchType: Wild card directory +Info 13 [00:01:10.000] 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 14 [00:01:11.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/src/helpers/functions.ts 500 undefined WatchType: Closed Script info +Info 15 [00:01:12.000] FileWatcher:: Added:: WatchInfo: /a/lib/lib.d.ts 500 undefined WatchType: Closed Script info +Info 16 [00:01:13.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/tsconfig.json WatchType: Type roots +Info 17 [00:01:14.000] 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 18 [00:01:15.000] Finishing updateGraphWorker: Project: /user/username/projects/myproject/tsconfig.json Version: 1 structureChanged: true structureIsReused:: Not Elapsed:: *ms +Info 19 [00:01:16.000] Project '/user/username/projects/myproject/tsconfig.json' (Configured) +Info 20 [00:01:17.000] Files (4) /a/lib/lib.d.ts /user/username/projects/myproject/src/helpers/functions.ts /user/username/projects/myproject/src/main.ts @@ -61,21 +61,21 @@ Info 20 [16:01:17.000] Files (4) own/main.ts Part of 'files' list in tsconfig.json -Info 21 [16:01:18.000] ----------------------------------------------- -Info 22 [16:01:19.000] event: +Info 21 [00:01:18.000] ----------------------------------------------- +Info 22 [00:01:19.000] event: {"seq":0,"type":"event","event":"projectLoadingFinish","body":{"projectName":"/user/username/projects/myproject/tsconfig.json"}} -Info 23 [16:01:20.000] event: +Info 23 [00:01:20.000] event: {"seq":0,"type":"event","event":"telemetry","body":{"telemetryEventName":"projectInfo","payload":{"projectId":"4a33d78ee40d836c4f4e64c59aed976628aea0013be9585c5ff171dfc41baf98","fileStats":{"js":0,"jsSize":0,"jsx":0,"jsxSize":0,"ts":3,"tsSize":134,"tsx":0,"tsxSize":0,"dts":1,"dtsSize":334,"deferred":0,"deferredSize":0},"compilerOptions":{"outDir":"","baseUrl":""},"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 24 [16:01:21.000] Creating configuration project /user/username/projects/myproject/tsconfig-src.json -Info 25 [16:01:22.000] event: +Info 24 [00:01:21.000] Creating configuration project /user/username/projects/myproject/tsconfig-src.json +Info 25 [00:01:22.000] event: {"seq":0,"type":"event","event":"projectLoadingStart","body":{"projectName":"/user/username/projects/myproject/tsconfig-src.json","reason":"Creating project referenced in solution /user/username/projects/myproject/tsconfig.json to find possible configured project for /user/username/projects/myproject/src/main.ts to open"}} -Info 26 [16:01:23.000] Plugins were requested but not running in environment that supports 'require'. Nothing will be loaded -Info 27 [16:01:24.000] Starting updateGraphWorker: Project: /user/username/projects/myproject/tsconfig-src.json -Info 28 [16:01:25.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/tsconfig-src.json WatchType: Type roots -Info 29 [16:01:26.000] 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 30 [16:01:27.000] Finishing updateGraphWorker: Project: /user/username/projects/myproject/tsconfig-src.json Version: 1 structureChanged: true structureIsReused:: Not Elapsed:: *ms -Info 31 [16:01:28.000] Project '/user/username/projects/myproject/tsconfig-src.json' (Configured) -Info 32 [16:01:29.000] Files (3) +Info 26 [00:01:23.000] Plugins were requested but not running in environment that supports 'require'. Nothing will be loaded +Info 27 [00:01:24.000] Starting updateGraphWorker: Project: /user/username/projects/myproject/tsconfig-src.json +Info 28 [00:01:25.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/tsconfig-src.json WatchType: Type roots +Info 29 [00:01:26.000] 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 30 [00:01:27.000] Finishing updateGraphWorker: Project: /user/username/projects/myproject/tsconfig-src.json Version: 1 structureChanged: true structureIsReused:: Not Elapsed:: *ms +Info 31 [00:01:28.000] Project '/user/username/projects/myproject/tsconfig-src.json' (Configured) +Info 32 [00:01:29.000] Files (3) /a/lib/lib.d.ts /user/username/projects/myproject/src/helpers/functions.ts /user/username/projects/myproject/src/main.ts @@ -89,27 +89,27 @@ Info 32 [16:01:29.000] Files (3) src/main.ts Matched by include pattern './src/**/*' in 'tsconfig-src.json' -Info 33 [16:01:30.000] ----------------------------------------------- -Info 34 [16:01:31.000] event: +Info 33 [00:01:30.000] ----------------------------------------------- +Info 34 [00:01:31.000] event: {"seq":0,"type":"event","event":"projectLoadingFinish","body":{"projectName":"/user/username/projects/myproject/tsconfig-src.json"}} -Info 35 [16:01:32.000] event: +Info 35 [00:01:32.000] event: {"seq":0,"type":"event","event":"telemetry","body":{"telemetryEventName":"projectInfo","payload":{"projectId":"75d5ba36c0a162a329bf40235b10e96d2d129b95469e1f02c08da775fb38a2b4","fileStats":{"js":0,"jsSize":0,"jsx":0,"jsxSize":0,"ts":2,"tsSize":77,"tsx":0,"tsxSize":0,"dts":1,"dtsSize":334,"deferred":0,"deferredSize":0},"compilerOptions":{"composite":true,"outDir":"","baseUrl":""},"typeAcquisition":{"enable":false,"include":false,"exclude":false},"extends":false,"files":false,"include":true,"exclude":false,"compileOnSave":false,"configFileName":"other","projectType":"configured","languageServiceEnabled":true,"version":"FakeVersion"}}} -Info 36 [16:01:33.000] event: +Info 36 [00:01:33.000] event: {"seq":0,"type":"event","event":"configFileDiag","body":{"triggerFile":"/user/username/projects/myproject/src/main.ts","configFile":"/user/username/projects/myproject/tsconfig-src.json","diagnostics":[]}} -Info 37 [16:01:34.000] Project '/user/username/projects/myproject/tsconfig.json' (Configured) -Info 37 [16:01:35.000] Files (4) - -Info 37 [16:01:36.000] ----------------------------------------------- -Info 37 [16:01:37.000] Project '/user/username/projects/myproject/tsconfig-src.json' (Configured) -Info 37 [16:01:38.000] Files (3) - -Info 37 [16:01:39.000] ----------------------------------------------- -Info 37 [16:01:40.000] Open files: -Info 37 [16:01:41.000] FileName: /user/username/projects/myproject/src/main.ts ProjectRootPath: undefined -Info 37 [16:01:42.000] Projects: /user/username/projects/myproject/tsconfig.json,/user/username/projects/myproject/tsconfig-src.json -Info 37 [16:01:43.000] getDefaultProject for /user/username/projects/myproject/src/main.ts: /user/username/projects/myproject/tsconfig-src.json -Info 37 [16:01:44.000] findDefaultConfiguredProject for /user/username/projects/myproject/src/main.ts: /user/username/projects/myproject/tsconfig-src.json -Info 37 [16:01:45.000] request: +Info 37 [00:01:34.000] Project '/user/username/projects/myproject/tsconfig.json' (Configured) +Info 37 [00:01:35.000] Files (4) + +Info 37 [00:01:36.000] ----------------------------------------------- +Info 37 [00:01:37.000] Project '/user/username/projects/myproject/tsconfig-src.json' (Configured) +Info 37 [00:01:38.000] Files (3) + +Info 37 [00:01:39.000] ----------------------------------------------- +Info 37 [00:01:40.000] Open files: +Info 37 [00:01:41.000] FileName: /user/username/projects/myproject/src/main.ts ProjectRootPath: undefined +Info 37 [00:01:42.000] Projects: /user/username/projects/myproject/tsconfig.json,/user/username/projects/myproject/tsconfig-src.json +Info 37 [00:01:43.000] getDefaultProject for /user/username/projects/myproject/src/main.ts: /user/username/projects/myproject/tsconfig-src.json +Info 37 [00:01:44.000] findDefaultConfiguredProject for /user/username/projects/myproject/src/main.ts: /user/username/projects/myproject/tsconfig-src.json +Info 37 [00:01:45.000] request: { "command": "geterr", "arguments": { @@ -222,7 +222,7 @@ FsWatchesRecursive:: /user/username/projects/myproject/src: {} -Info 38 [16:01:46.000] response: +Info 38 [00:01:46.000] response: { "responseRequired": false } @@ -248,7 +248,7 @@ FsWatchesRecursive:: /user/username/projects/myproject/src: {} -Info 39 [16:01:47.000] event: +Info 39 [00:01:47.000] event: {"seq":0,"type":"event","event":"syntaxDiag","body":{"file":"/user/username/projects/myproject/src/main.ts","diagnostics":[]}} After checking timeout queue length (1) and running @@ -294,7 +294,7 @@ FsWatchesRecursive:: /user/username/projects/myproject/src: {} -Info 40 [16:01:48.000] event: +Info 40 [00:01:48.000] event: {"seq":0,"type":"event","event":"semanticDiag","body":{"file":"/user/username/projects/myproject/src/main.ts","diagnostics":[]}} Before running immediate callbacks and checking length (1) @@ -340,9 +340,9 @@ FsWatchesRecursive:: /user/username/projects/myproject/src: {} -Info 41 [16:01:49.000] event: +Info 41 [00:01:49.000] event: {"seq":0,"type":"event","event":"suggestionDiag","body":{"file":"/user/username/projects/myproject/src/main.ts","diagnostics":[]}} -Info 42 [16:01:50.000] event: +Info 42 [00:01:50.000] event: {"seq":0,"type":"event","event":"requestCompleted","body":{"request_seq":1}} Before running immediate callbacks and checking length (1) @@ -366,15 +366,15 @@ FsWatchesRecursive:: /user/username/projects/myproject/src: {} -Info 43 [16:01:51.000] Search path: /dummy -Info 44 [16:01:52.000] For info: /dummy/dummy.ts :: No config files found. -Info 45 [16:01:53.000] Plugins were requested but not running in environment that supports 'require'. Nothing will be loaded -Info 46 [16:01:54.000] Starting updateGraphWorker: Project: /dev/null/inferredProject1* -Info 47 [16:01:55.000] DirectoryWatcher:: Added:: WatchInfo: /dummy/node_modules/@types 1 undefined Project: /dev/null/inferredProject1* WatchType: Type roots -Info 48 [16:01:56.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /dummy/node_modules/@types 1 undefined Project: /dev/null/inferredProject1* WatchType: Type roots -Info 49 [16:01:57.000] Finishing updateGraphWorker: Project: /dev/null/inferredProject1* Version: 1 structureChanged: true structureIsReused:: Not Elapsed:: *ms -Info 50 [16:01:58.000] Project '/dev/null/inferredProject1*' (Inferred) -Info 51 [16:01:59.000] Files (2) +Info 43 [00:01:51.000] Search path: /dummy +Info 44 [00:01:52.000] For info: /dummy/dummy.ts :: No config files found. +Info 45 [00:01:53.000] Plugins were requested but not running in environment that supports 'require'. Nothing will be loaded +Info 46 [00:01:54.000] Starting updateGraphWorker: Project: /dev/null/inferredProject1* +Info 47 [00:01:55.000] DirectoryWatcher:: Added:: WatchInfo: /dummy/node_modules/@types 1 undefined Project: /dev/null/inferredProject1* WatchType: Type roots +Info 48 [00:01:56.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /dummy/node_modules/@types 1 undefined Project: /dev/null/inferredProject1* WatchType: Type roots +Info 49 [00:01:57.000] Finishing updateGraphWorker: Project: /dev/null/inferredProject1* Version: 1 structureChanged: true structureIsReused:: Not Elapsed:: *ms +Info 50 [00:01:58.000] Project '/dev/null/inferredProject1*' (Inferred) +Info 51 [00:01:59.000] Files (2) /a/lib/lib.d.ts /dummy/dummy.ts @@ -384,61 +384,61 @@ Info 51 [16:01:59.000] Files (2) dummy.ts Root file specified for compilation -Info 52 [16:02:00.000] ----------------------------------------------- -Info 53 [16:02:01.000] Project '/user/username/projects/myproject/tsconfig.json' (Configured) -Info 53 [16:02:02.000] Files (4) - -Info 53 [16:02:03.000] ----------------------------------------------- -Info 53 [16:02:04.000] Project '/user/username/projects/myproject/tsconfig-src.json' (Configured) -Info 53 [16:02:05.000] Files (3) - -Info 53 [16:02:06.000] ----------------------------------------------- -Info 53 [16:02:07.000] Project '/dev/null/inferredProject1*' (Inferred) -Info 53 [16:02:08.000] Files (2) - -Info 53 [16:02:09.000] ----------------------------------------------- -Info 53 [16:02:10.000] Open files: -Info 53 [16:02:11.000] FileName: /user/username/projects/myproject/src/main.ts ProjectRootPath: undefined -Info 53 [16:02:12.000] Projects: /user/username/projects/myproject/tsconfig.json,/user/username/projects/myproject/tsconfig-src.json -Info 53 [16:02:13.000] FileName: /dummy/dummy.ts ProjectRootPath: undefined -Info 53 [16:02:14.000] Projects: /dev/null/inferredProject1* -Info 53 [16:02:15.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/src/main.ts 500 undefined WatchType: Closed Script info -Info 54 [16:02:16.000] Project '/user/username/projects/myproject/tsconfig.json' (Configured) -Info 54 [16:02:17.000] Files (4) - -Info 54 [16:02:18.000] ----------------------------------------------- -Info 54 [16:02:19.000] Project '/user/username/projects/myproject/tsconfig-src.json' (Configured) -Info 54 [16:02:20.000] Files (3) - -Info 54 [16:02:21.000] ----------------------------------------------- -Info 54 [16:02:22.000] Project '/dev/null/inferredProject1*' (Inferred) -Info 54 [16:02:23.000] Files (2) - -Info 54 [16:02:24.000] ----------------------------------------------- -Info 54 [16:02:25.000] Open files: -Info 54 [16:02:26.000] FileName: /dummy/dummy.ts ProjectRootPath: undefined -Info 54 [16:02:27.000] Projects: /dev/null/inferredProject1* -Info 54 [16:02:28.000] FileWatcher:: Added:: WatchInfo: /dummy/dummy.ts 500 undefined WatchType: Closed Script info -Info 55 [16:02:29.000] Project '/user/username/projects/myproject/tsconfig.json' (Configured) -Info 55 [16:02:30.000] Files (4) - -Info 55 [16:02:31.000] ----------------------------------------------- -Info 55 [16:02:32.000] Project '/user/username/projects/myproject/tsconfig-src.json' (Configured) -Info 55 [16:02:33.000] Files (3) - -Info 55 [16:02:34.000] ----------------------------------------------- -Info 55 [16:02:35.000] Project '/dev/null/inferredProject1*' (Inferred) -Info 55 [16:02:36.000] Files (2) - -Info 55 [16:02:37.000] ----------------------------------------------- -Info 55 [16:02:38.000] Open files: -Info 55 [16:02:39.000] FileWatcher:: Close:: WatchInfo: /dummy/dummy.ts 500 undefined WatchType: Closed Script info -Info 56 [16:02:40.000] Search path: /dummy -Info 57 [16:02:41.000] For info: /dummy/dummy.ts :: No config files found. -Info 58 [16:02:42.000] Starting updateGraphWorker: Project: /dev/null/inferredProject1* -Info 59 [16:02:43.000] Finishing updateGraphWorker: Project: /dev/null/inferredProject1* Version: 2 structureChanged: false structureIsReused:: Not Elapsed:: *ms -Info 60 [16:02:44.000] Project '/dev/null/inferredProject1*' (Inferred) -Info 61 [16:02:45.000] Files (2) +Info 52 [00:02:00.000] ----------------------------------------------- +Info 53 [00:02:01.000] Project '/user/username/projects/myproject/tsconfig.json' (Configured) +Info 53 [00:02:02.000] Files (4) + +Info 53 [00:02:03.000] ----------------------------------------------- +Info 53 [00:02:04.000] Project '/user/username/projects/myproject/tsconfig-src.json' (Configured) +Info 53 [00:02:05.000] Files (3) + +Info 53 [00:02:06.000] ----------------------------------------------- +Info 53 [00:02:07.000] Project '/dev/null/inferredProject1*' (Inferred) +Info 53 [00:02:08.000] Files (2) + +Info 53 [00:02:09.000] ----------------------------------------------- +Info 53 [00:02:10.000] Open files: +Info 53 [00:02:11.000] FileName: /user/username/projects/myproject/src/main.ts ProjectRootPath: undefined +Info 53 [00:02:12.000] Projects: /user/username/projects/myproject/tsconfig.json,/user/username/projects/myproject/tsconfig-src.json +Info 53 [00:02:13.000] FileName: /dummy/dummy.ts ProjectRootPath: undefined +Info 53 [00:02:14.000] Projects: /dev/null/inferredProject1* +Info 53 [00:02:15.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/src/main.ts 500 undefined WatchType: Closed Script info +Info 54 [00:02:16.000] Project '/user/username/projects/myproject/tsconfig.json' (Configured) +Info 54 [00:02:17.000] Files (4) + +Info 54 [00:02:18.000] ----------------------------------------------- +Info 54 [00:02:19.000] Project '/user/username/projects/myproject/tsconfig-src.json' (Configured) +Info 54 [00:02:20.000] Files (3) + +Info 54 [00:02:21.000] ----------------------------------------------- +Info 54 [00:02:22.000] Project '/dev/null/inferredProject1*' (Inferred) +Info 54 [00:02:23.000] Files (2) + +Info 54 [00:02:24.000] ----------------------------------------------- +Info 54 [00:02:25.000] Open files: +Info 54 [00:02:26.000] FileName: /dummy/dummy.ts ProjectRootPath: undefined +Info 54 [00:02:27.000] Projects: /dev/null/inferredProject1* +Info 54 [00:02:28.000] FileWatcher:: Added:: WatchInfo: /dummy/dummy.ts 500 undefined WatchType: Closed Script info +Info 55 [00:02:29.000] Project '/user/username/projects/myproject/tsconfig.json' (Configured) +Info 55 [00:02:30.000] Files (4) + +Info 55 [00:02:31.000] ----------------------------------------------- +Info 55 [00:02:32.000] Project '/user/username/projects/myproject/tsconfig-src.json' (Configured) +Info 55 [00:02:33.000] Files (3) + +Info 55 [00:02:34.000] ----------------------------------------------- +Info 55 [00:02:35.000] Project '/dev/null/inferredProject1*' (Inferred) +Info 55 [00:02:36.000] Files (2) + +Info 55 [00:02:37.000] ----------------------------------------------- +Info 55 [00:02:38.000] Open files: +Info 55 [00:02:39.000] FileWatcher:: Close:: WatchInfo: /dummy/dummy.ts 500 undefined WatchType: Closed Script info +Info 56 [00:02:40.000] Search path: /dummy +Info 57 [00:02:41.000] For info: /dummy/dummy.ts :: No config files found. +Info 58 [00:02:42.000] Starting updateGraphWorker: Project: /dev/null/inferredProject1* +Info 59 [00:02:43.000] Finishing updateGraphWorker: Project: /dev/null/inferredProject1* Version: 2 structureChanged: false structureIsReused:: Not Elapsed:: *ms +Info 60 [00:02:44.000] Project '/dev/null/inferredProject1*' (Inferred) +Info 61 [00:02:45.000] Files (2) /a/lib/lib.d.ts /dummy/dummy.ts @@ -448,10 +448,10 @@ Info 61 [16:02:45.000] Files (2) dummy.ts Root file specified for compilation -Info 62 [16:02:46.000] ----------------------------------------------- -Info 63 [16:02:47.000] `remove Project:: -Info 64 [16:02:48.000] Project '/user/username/projects/myproject/tsconfig.json' (Configured) -Info 65 [16:02:49.000] Files (4) +Info 62 [00:02:46.000] ----------------------------------------------- +Info 63 [00:02:47.000] `remove Project:: +Info 64 [00:02:48.000] Project '/user/username/projects/myproject/tsconfig.json' (Configured) +Info 65 [00:02:49.000] Files (4) /a/lib/lib.d.ts /user/username/projects/myproject/src/helpers/functions.ts /user/username/projects/myproject/src/main.ts @@ -467,13 +467,13 @@ Info 65 [16:02:49.000] Files (4) own/main.ts Part of 'files' list in tsconfig.json -Info 66 [16:02:50.000] ----------------------------------------------- -Info 67 [16:02:51.000] FileWatcher:: Close:: WatchInfo: /user/username/projects/myproject/tsconfig.json 2000 undefined Project: /user/username/projects/myproject/tsconfig.json WatchType: Config file -Info 68 [16:02:52.000] DirectoryWatcher:: Close:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/tsconfig.json WatchType: Type roots -Info 69 [16:02:53.000] 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 70 [16:02:54.000] `remove Project:: -Info 71 [16:02:55.000] Project '/user/username/projects/myproject/tsconfig-src.json' (Configured) -Info 72 [16:02:56.000] Files (3) +Info 66 [00:02:50.000] ----------------------------------------------- +Info 67 [00:02:51.000] FileWatcher:: Close:: WatchInfo: /user/username/projects/myproject/tsconfig.json 2000 undefined Project: /user/username/projects/myproject/tsconfig.json WatchType: Config file +Info 68 [00:02:52.000] DirectoryWatcher:: Close:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/tsconfig.json WatchType: Type roots +Info 69 [00:02:53.000] 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 70 [00:02:54.000] `remove Project:: +Info 71 [00:02:55.000] Project '/user/username/projects/myproject/tsconfig-src.json' (Configured) +Info 72 [00:02:56.000] Files (3) /a/lib/lib.d.ts /user/username/projects/myproject/src/helpers/functions.ts /user/username/projects/myproject/src/main.ts @@ -487,29 +487,29 @@ Info 72 [16:02:56.000] Files (3) src/main.ts Matched by include pattern './src/**/*' in 'tsconfig-src.json' -Info 73 [16:02:57.000] ----------------------------------------------- -Info 74 [16:02:58.000] DirectoryWatcher:: Close:: WatchInfo: /user/username/projects/myproject/src 1 undefined Config: /user/username/projects/myproject/tsconfig-src.json WatchType: Wild card directory -Info 75 [16:02:59.000] 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 76 [16:03:00.000] FileWatcher:: Close:: WatchInfo: /user/username/projects/myproject/tsconfig-src.json 2000 undefined Project: /user/username/projects/myproject/tsconfig.json WatchType: Config file -Info 77 [16:03:01.000] DirectoryWatcher:: Close:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/tsconfig-src.json WatchType: Type roots -Info 78 [16:03:02.000] 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 79 [16:03:03.000] FileWatcher:: Close:: WatchInfo: /user/username/projects/myproject/src/main.ts 500 undefined WatchType: Closed Script info -Info 80 [16:03:04.000] FileWatcher:: Close:: WatchInfo: /user/username/projects/myproject/own/main.ts 500 undefined WatchType: Closed Script info -Info 81 [16:03:05.000] FileWatcher:: Close:: WatchInfo: /user/username/projects/myproject/src/helpers/functions.ts 500 undefined WatchType: Closed Script info -Info 82 [16:03:06.000] Project '/dev/null/inferredProject1*' (Inferred) -Info 82 [16:03:07.000] Files (2) - -Info 82 [16:03:08.000] ----------------------------------------------- -Info 82 [16:03:09.000] Open files: -Info 82 [16:03:10.000] FileName: /dummy/dummy.ts ProjectRootPath: undefined -Info 82 [16:03:11.000] Projects: /dev/null/inferredProject1* -Info 82 [16:03:12.000] Search path: /user/username/projects/myproject/src -Info 83 [16:03:13.000] For info: /user/username/projects/myproject/src/main.ts :: Config file name: /user/username/projects/myproject/tsconfig.json -Info 84 [16:03:14.000] Creating configuration project /user/username/projects/myproject/tsconfig.json -Info 85 [16:03:15.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/tsconfig.json 2000 undefined Project: /user/username/projects/myproject/tsconfig.json WatchType: Config file -Info 86 [16:03:16.000] event: +Info 73 [00:02:57.000] ----------------------------------------------- +Info 74 [00:02:58.000] DirectoryWatcher:: Close:: WatchInfo: /user/username/projects/myproject/src 1 undefined Config: /user/username/projects/myproject/tsconfig-src.json WatchType: Wild card directory +Info 75 [00:02:59.000] 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 76 [00:03:00.000] FileWatcher:: Close:: WatchInfo: /user/username/projects/myproject/tsconfig-src.json 2000 undefined Project: /user/username/projects/myproject/tsconfig.json WatchType: Config file +Info 77 [00:03:01.000] DirectoryWatcher:: Close:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/tsconfig-src.json WatchType: Type roots +Info 78 [00:03:02.000] 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 79 [00:03:03.000] FileWatcher:: Close:: WatchInfo: /user/username/projects/myproject/src/main.ts 500 undefined WatchType: Closed Script info +Info 80 [00:03:04.000] FileWatcher:: Close:: WatchInfo: /user/username/projects/myproject/own/main.ts 500 undefined WatchType: Closed Script info +Info 81 [00:03:05.000] FileWatcher:: Close:: WatchInfo: /user/username/projects/myproject/src/helpers/functions.ts 500 undefined WatchType: Closed Script info +Info 82 [00:03:06.000] Project '/dev/null/inferredProject1*' (Inferred) +Info 82 [00:03:07.000] Files (2) + +Info 82 [00:03:08.000] ----------------------------------------------- +Info 82 [00:03:09.000] Open files: +Info 82 [00:03:10.000] FileName: /dummy/dummy.ts ProjectRootPath: undefined +Info 82 [00:03:11.000] Projects: /dev/null/inferredProject1* +Info 82 [00:03:12.000] Search path: /user/username/projects/myproject/src +Info 83 [00:03:13.000] For info: /user/username/projects/myproject/src/main.ts :: Config file name: /user/username/projects/myproject/tsconfig.json +Info 84 [00:03:14.000] Creating configuration project /user/username/projects/myproject/tsconfig.json +Info 85 [00:03:15.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/tsconfig.json 2000 undefined Project: /user/username/projects/myproject/tsconfig.json WatchType: Config file +Info 86 [00:03:16.000] event: {"seq":0,"type":"event","event":"projectLoadingStart","body":{"projectName":"/user/username/projects/myproject/tsconfig.json","reason":"Creating possible configured project for /user/username/projects/myproject/src/main.ts to open"}} -Info 87 [16:03:17.000] Config: /user/username/projects/myproject/tsconfig.json : { +Info 87 [00:03:17.000] Config: /user/username/projects/myproject/tsconfig.json : { "rootNames": [ "/user/username/projects/myproject/own/main.ts" ], @@ -525,10 +525,10 @@ Info 87 [16:03:17.000] Config: /user/username/projects/myproject/tsconfig.json } ] } -Info 88 [16:03:18.000] Plugins were requested but not running in environment that supports 'require'. Nothing will be loaded -Info 89 [16:03:19.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/own/main.ts 500 undefined WatchType: Closed Script info -Info 90 [16:03:20.000] Starting updateGraphWorker: Project: /user/username/projects/myproject/tsconfig.json -Info 91 [16:03:21.000] Config: /user/username/projects/myproject/tsconfig-src.json : { +Info 88 [00:03:18.000] Plugins were requested but not running in environment that supports 'require'. Nothing will be loaded +Info 89 [00:03:19.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/own/main.ts 500 undefined WatchType: Closed Script info +Info 90 [00:03:20.000] Starting updateGraphWorker: Project: /user/username/projects/myproject/tsconfig.json +Info 91 [00:03:21.000] Config: /user/username/projects/myproject/tsconfig-src.json : { "rootNames": [ "/user/username/projects/myproject/src/main.ts", "/user/username/projects/myproject/src/helpers/functions.ts" @@ -540,15 +540,15 @@ Info 91 [16:03:21.000] Config: /user/username/projects/myproject/tsconfig-src. "configFilePath": "/user/username/projects/myproject/tsconfig-src.json" } } -Info 92 [16:03:22.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/tsconfig-src.json 2000 undefined Project: /user/username/projects/myproject/tsconfig.json WatchType: Config file -Info 93 [16:03:23.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/src 1 undefined Config: /user/username/projects/myproject/tsconfig-src.json WatchType: Wild card directory -Info 94 [16:03:24.000] 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 95 [16:03:25.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/src/helpers/functions.ts 500 undefined WatchType: Closed Script info -Info 96 [16:03:26.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/tsconfig.json WatchType: Type roots -Info 97 [16:03:27.000] 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 98 [16:03:28.000] Finishing updateGraphWorker: Project: /user/username/projects/myproject/tsconfig.json Version: 1 structureChanged: true structureIsReused:: Not Elapsed:: *ms -Info 99 [16:03:29.000] Project '/user/username/projects/myproject/tsconfig.json' (Configured) -Info 100 [16:03:30.000] Files (4) +Info 92 [00:03:22.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/tsconfig-src.json 2000 undefined Project: /user/username/projects/myproject/tsconfig.json WatchType: Config file +Info 93 [00:03:23.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/src 1 undefined Config: /user/username/projects/myproject/tsconfig-src.json WatchType: Wild card directory +Info 94 [00:03:24.000] 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 95 [00:03:25.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/src/helpers/functions.ts 500 undefined WatchType: Closed Script info +Info 96 [00:03:26.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/tsconfig.json WatchType: Type roots +Info 97 [00:03:27.000] 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 98 [00:03:28.000] Finishing updateGraphWorker: Project: /user/username/projects/myproject/tsconfig.json Version: 1 structureChanged: true structureIsReused:: Not Elapsed:: *ms +Info 99 [00:03:29.000] Project '/user/username/projects/myproject/tsconfig.json' (Configured) +Info 100 [00:03:30.000] Files (4) /a/lib/lib.d.ts /user/username/projects/myproject/src/helpers/functions.ts /user/username/projects/myproject/src/main.ts @@ -564,19 +564,19 @@ Info 100 [16:03:30.000] Files (4) own/main.ts Part of 'files' list in tsconfig.json -Info 101 [16:03:31.000] ----------------------------------------------- -Info 102 [16:03:32.000] event: +Info 101 [00:03:31.000] ----------------------------------------------- +Info 102 [00:03:32.000] event: {"seq":0,"type":"event","event":"projectLoadingFinish","body":{"projectName":"/user/username/projects/myproject/tsconfig.json"}} -Info 103 [16:03:33.000] Creating configuration project /user/username/projects/myproject/tsconfig-src.json -Info 104 [16:03:34.000] event: +Info 103 [00:03:33.000] Creating configuration project /user/username/projects/myproject/tsconfig-src.json +Info 104 [00:03:34.000] event: {"seq":0,"type":"event","event":"projectLoadingStart","body":{"projectName":"/user/username/projects/myproject/tsconfig-src.json","reason":"Creating project referenced in solution /user/username/projects/myproject/tsconfig.json to find possible configured project for /user/username/projects/myproject/src/main.ts to open"}} -Info 105 [16:03:35.000] Plugins were requested but not running in environment that supports 'require'. Nothing will be loaded -Info 106 [16:03:36.000] Starting updateGraphWorker: Project: /user/username/projects/myproject/tsconfig-src.json -Info 107 [16:03:37.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/tsconfig-src.json WatchType: Type roots -Info 108 [16:03:38.000] 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 109 [16:03:39.000] Finishing updateGraphWorker: Project: /user/username/projects/myproject/tsconfig-src.json Version: 1 structureChanged: true structureIsReused:: Not Elapsed:: *ms -Info 110 [16:03:40.000] Project '/user/username/projects/myproject/tsconfig-src.json' (Configured) -Info 111 [16:03:41.000] Files (3) +Info 105 [00:03:35.000] Plugins were requested but not running in environment that supports 'require'. Nothing will be loaded +Info 106 [00:03:36.000] Starting updateGraphWorker: Project: /user/username/projects/myproject/tsconfig-src.json +Info 107 [00:03:37.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/tsconfig-src.json WatchType: Type roots +Info 108 [00:03:38.000] 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 109 [00:03:39.000] Finishing updateGraphWorker: Project: /user/username/projects/myproject/tsconfig-src.json Version: 1 structureChanged: true structureIsReused:: Not Elapsed:: *ms +Info 110 [00:03:40.000] Project '/user/username/projects/myproject/tsconfig-src.json' (Configured) +Info 111 [00:03:41.000] Files (3) /a/lib/lib.d.ts /user/username/projects/myproject/src/helpers/functions.ts /user/username/projects/myproject/src/main.ts @@ -590,51 +590,51 @@ Info 111 [16:03:41.000] Files (3) src/main.ts Matched by include pattern './src/**/*' in 'tsconfig-src.json' -Info 112 [16:03:42.000] ----------------------------------------------- -Info 113 [16:03:43.000] event: +Info 112 [00:03:42.000] ----------------------------------------------- +Info 113 [00:03:43.000] event: {"seq":0,"type":"event","event":"projectLoadingFinish","body":{"projectName":"/user/username/projects/myproject/tsconfig-src.json"}} -Info 114 [16:03:44.000] event: +Info 114 [00:03:44.000] event: {"seq":0,"type":"event","event":"configFileDiag","body":{"triggerFile":"/user/username/projects/myproject/src/main.ts","configFile":"/user/username/projects/myproject/tsconfig-src.json","diagnostics":[]}} -Info 115 [16:03:45.000] Project '/user/username/projects/myproject/tsconfig.json' (Configured) -Info 115 [16:03:46.000] Files (4) - -Info 115 [16:03:47.000] ----------------------------------------------- -Info 115 [16:03:48.000] Project '/user/username/projects/myproject/tsconfig-src.json' (Configured) -Info 115 [16:03:49.000] Files (3) - -Info 115 [16:03:50.000] ----------------------------------------------- -Info 115 [16:03:51.000] Project '/dev/null/inferredProject1*' (Inferred) -Info 115 [16:03:52.000] Files (2) - -Info 115 [16:03:53.000] ----------------------------------------------- -Info 115 [16:03:54.000] Open files: -Info 115 [16:03:55.000] FileName: /dummy/dummy.ts ProjectRootPath: undefined -Info 115 [16:03:56.000] Projects: /dev/null/inferredProject1* -Info 115 [16:03:57.000] FileName: /user/username/projects/myproject/src/main.ts ProjectRootPath: undefined -Info 115 [16:03:58.000] Projects: /user/username/projects/myproject/tsconfig.json,/user/username/projects/myproject/tsconfig-src.json -Info 115 [16:03:59.000] FileWatcher:: Added:: WatchInfo: /dummy/dummy.ts 500 undefined WatchType: Closed Script info -Info 116 [16:04:00.000] Project '/user/username/projects/myproject/tsconfig.json' (Configured) -Info 116 [16:04:01.000] Files (4) - -Info 116 [16:04:02.000] ----------------------------------------------- -Info 116 [16:04:03.000] Project '/user/username/projects/myproject/tsconfig-src.json' (Configured) -Info 116 [16:04:04.000] Files (3) - -Info 116 [16:04:05.000] ----------------------------------------------- -Info 116 [16:04:06.000] Project '/dev/null/inferredProject1*' (Inferred) -Info 116 [16:04:07.000] Files (2) - -Info 116 [16:04:08.000] ----------------------------------------------- -Info 116 [16:04:09.000] Open files: -Info 116 [16:04:10.000] FileName: /user/username/projects/myproject/src/main.ts ProjectRootPath: undefined -Info 116 [16:04:11.000] Projects: /user/username/projects/myproject/tsconfig.json,/user/username/projects/myproject/tsconfig-src.json -Info 116 [16:04:12.000] FileWatcher:: Close:: WatchInfo: /dummy/dummy.ts 500 undefined WatchType: Closed Script info -Info 117 [16:04:13.000] Search path: /dummy -Info 118 [16:04:14.000] For info: /dummy/dummy.ts :: No config files found. -Info 119 [16:04:15.000] Starting updateGraphWorker: Project: /dev/null/inferredProject1* -Info 120 [16:04:16.000] Finishing updateGraphWorker: Project: /dev/null/inferredProject1* Version: 3 structureChanged: false structureIsReused:: Not Elapsed:: *ms -Info 121 [16:04:17.000] Project '/dev/null/inferredProject1*' (Inferred) -Info 122 [16:04:18.000] Files (2) +Info 115 [00:03:45.000] Project '/user/username/projects/myproject/tsconfig.json' (Configured) +Info 115 [00:03:46.000] Files (4) + +Info 115 [00:03:47.000] ----------------------------------------------- +Info 115 [00:03:48.000] Project '/user/username/projects/myproject/tsconfig-src.json' (Configured) +Info 115 [00:03:49.000] Files (3) + +Info 115 [00:03:50.000] ----------------------------------------------- +Info 115 [00:03:51.000] Project '/dev/null/inferredProject1*' (Inferred) +Info 115 [00:03:52.000] Files (2) + +Info 115 [00:03:53.000] ----------------------------------------------- +Info 115 [00:03:54.000] Open files: +Info 115 [00:03:55.000] FileName: /dummy/dummy.ts ProjectRootPath: undefined +Info 115 [00:03:56.000] Projects: /dev/null/inferredProject1* +Info 115 [00:03:57.000] FileName: /user/username/projects/myproject/src/main.ts ProjectRootPath: undefined +Info 115 [00:03:58.000] Projects: /user/username/projects/myproject/tsconfig.json,/user/username/projects/myproject/tsconfig-src.json +Info 115 [00:03:59.000] FileWatcher:: Added:: WatchInfo: /dummy/dummy.ts 500 undefined WatchType: Closed Script info +Info 116 [00:04:00.000] Project '/user/username/projects/myproject/tsconfig.json' (Configured) +Info 116 [00:04:01.000] Files (4) + +Info 116 [00:04:02.000] ----------------------------------------------- +Info 116 [00:04:03.000] Project '/user/username/projects/myproject/tsconfig-src.json' (Configured) +Info 116 [00:04:04.000] Files (3) + +Info 116 [00:04:05.000] ----------------------------------------------- +Info 116 [00:04:06.000] Project '/dev/null/inferredProject1*' (Inferred) +Info 116 [00:04:07.000] Files (2) + +Info 116 [00:04:08.000] ----------------------------------------------- +Info 116 [00:04:09.000] Open files: +Info 116 [00:04:10.000] FileName: /user/username/projects/myproject/src/main.ts ProjectRootPath: undefined +Info 116 [00:04:11.000] Projects: /user/username/projects/myproject/tsconfig.json,/user/username/projects/myproject/tsconfig-src.json +Info 116 [00:04:12.000] FileWatcher:: Close:: WatchInfo: /dummy/dummy.ts 500 undefined WatchType: Closed Script info +Info 117 [00:04:13.000] Search path: /dummy +Info 118 [00:04:14.000] For info: /dummy/dummy.ts :: No config files found. +Info 119 [00:04:15.000] Starting updateGraphWorker: Project: /dev/null/inferredProject1* +Info 120 [00:04:16.000] Finishing updateGraphWorker: Project: /dev/null/inferredProject1* Version: 3 structureChanged: false structureIsReused:: Not Elapsed:: *ms +Info 121 [00:04:17.000] Project '/dev/null/inferredProject1*' (Inferred) +Info 122 [00:04:18.000] Files (2) /a/lib/lib.d.ts /dummy/dummy.ts @@ -644,42 +644,42 @@ Info 122 [16:04:18.000] Files (2) dummy.ts Root file specified for compilation -Info 123 [16:04:19.000] ----------------------------------------------- -Info 124 [16:04:20.000] Project '/user/username/projects/myproject/tsconfig.json' (Configured) -Info 124 [16:04:21.000] Files (4) - -Info 124 [16:04:22.000] ----------------------------------------------- -Info 124 [16:04:23.000] Project '/user/username/projects/myproject/tsconfig-src.json' (Configured) -Info 124 [16:04:24.000] Files (3) - -Info 124 [16:04:25.000] ----------------------------------------------- -Info 124 [16:04:26.000] Project '/dev/null/inferredProject1*' (Inferred) -Info 124 [16:04:27.000] Files (2) - -Info 124 [16:04:28.000] ----------------------------------------------- -Info 124 [16:04:29.000] Open files: -Info 124 [16:04:30.000] FileName: /user/username/projects/myproject/src/main.ts ProjectRootPath: undefined -Info 124 [16:04:31.000] Projects: /user/username/projects/myproject/tsconfig.json,/user/username/projects/myproject/tsconfig-src.json -Info 124 [16:04:32.000] FileName: /dummy/dummy.ts ProjectRootPath: undefined -Info 124 [16:04:33.000] Projects: /dev/null/inferredProject1* -Info 124 [16:04:34.000] reload projects. -Info 125 [16:04:35.000] Scheduled: /dev/null/inferredProject1* -Info 126 [16:04:36.000] Scheduled: /user/username/projects/myproject/tsconfig.json -Info 127 [16:04:37.000] Scheduled: /user/username/projects/myproject/tsconfig-src.json -Info 128 [16:04:38.000] Scheduled: *ensureProjectForOpenFiles* -Info 129 [16:04:39.000] Scheduled: /user/username/projects/myproject/tsconfig.json, Cancelled earlier one -Info 130 [16:04:40.000] Scheduled: *ensureProjectForOpenFiles*, Cancelled earlier one -Info 131 [16:04:41.000] Scheduled: /user/username/projects/myproject/tsconfig.json, Cancelled earlier one -Info 132 [16:04:42.000] Scheduled: /user/username/projects/myproject/tsconfig-src.json, Cancelled earlier one -Info 133 [16:04:43.000] Scheduled: *ensureProjectForOpenFiles*, Cancelled earlier one -Info 134 [16:04:44.000] Search path: /user/username/projects/myproject/src -Info 135 [16:04:45.000] For info: /user/username/projects/myproject/src/main.ts :: Config file name: /user/username/projects/myproject/tsconfig.json -Info 136 [16:04:46.000] DirectoryWatcher:: Close:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/tsconfig.json WatchType: Type roots -Info 137 [16:04:47.000] 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 138 [16:04:48.000] Reloading configured project /user/username/projects/myproject/tsconfig.json -Info 139 [16:04:49.000] event: +Info 123 [00:04:19.000] ----------------------------------------------- +Info 124 [00:04:20.000] Project '/user/username/projects/myproject/tsconfig.json' (Configured) +Info 124 [00:04:21.000] Files (4) + +Info 124 [00:04:22.000] ----------------------------------------------- +Info 124 [00:04:23.000] Project '/user/username/projects/myproject/tsconfig-src.json' (Configured) +Info 124 [00:04:24.000] Files (3) + +Info 124 [00:04:25.000] ----------------------------------------------- +Info 124 [00:04:26.000] Project '/dev/null/inferredProject1*' (Inferred) +Info 124 [00:04:27.000] Files (2) + +Info 124 [00:04:28.000] ----------------------------------------------- +Info 124 [00:04:29.000] Open files: +Info 124 [00:04:30.000] FileName: /user/username/projects/myproject/src/main.ts ProjectRootPath: undefined +Info 124 [00:04:31.000] Projects: /user/username/projects/myproject/tsconfig.json,/user/username/projects/myproject/tsconfig-src.json +Info 124 [00:04:32.000] FileName: /dummy/dummy.ts ProjectRootPath: undefined +Info 124 [00:04:33.000] Projects: /dev/null/inferredProject1* +Info 124 [00:04:34.000] reload projects. +Info 125 [00:04:35.000] Scheduled: /dev/null/inferredProject1* +Info 126 [00:04:36.000] Scheduled: /user/username/projects/myproject/tsconfig.json +Info 127 [00:04:37.000] Scheduled: /user/username/projects/myproject/tsconfig-src.json +Info 128 [00:04:38.000] Scheduled: *ensureProjectForOpenFiles* +Info 129 [00:04:39.000] Scheduled: /user/username/projects/myproject/tsconfig.json, Cancelled earlier one +Info 130 [00:04:40.000] Scheduled: *ensureProjectForOpenFiles*, Cancelled earlier one +Info 131 [00:04:41.000] Scheduled: /user/username/projects/myproject/tsconfig.json, Cancelled earlier one +Info 132 [00:04:42.000] Scheduled: /user/username/projects/myproject/tsconfig-src.json, Cancelled earlier one +Info 133 [00:04:43.000] Scheduled: *ensureProjectForOpenFiles*, Cancelled earlier one +Info 134 [00:04:44.000] Search path: /user/username/projects/myproject/src +Info 135 [00:04:45.000] For info: /user/username/projects/myproject/src/main.ts :: Config file name: /user/username/projects/myproject/tsconfig.json +Info 136 [00:04:46.000] DirectoryWatcher:: Close:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/tsconfig.json WatchType: Type roots +Info 137 [00:04:47.000] 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 138 [00:04:48.000] Reloading configured project /user/username/projects/myproject/tsconfig.json +Info 139 [00:04:49.000] event: {"seq":0,"type":"event","event":"projectLoadingStart","body":{"projectName":"/user/username/projects/myproject/tsconfig.json","reason":"User requested reload projects"}} -Info 140 [16:04:50.000] Config: /user/username/projects/myproject/tsconfig.json : { +Info 140 [00:04:50.000] Config: /user/username/projects/myproject/tsconfig.json : { "rootNames": [ "/user/username/projects/myproject/own/main.ts" ], @@ -695,9 +695,9 @@ Info 140 [16:04:50.000] Config: /user/username/projects/myproject/tsconfig.json } ] } -Info 141 [16:04:51.000] Plugins were requested but not running in environment that supports 'require'. Nothing will be loaded -Info 142 [16:04:52.000] Starting updateGraphWorker: Project: /user/username/projects/myproject/tsconfig.json -Info 143 [16:04:53.000] Config: /user/username/projects/myproject/tsconfig-src.json : { +Info 141 [00:04:51.000] Plugins were requested but not running in environment that supports 'require'. Nothing will be loaded +Info 142 [00:04:52.000] Starting updateGraphWorker: Project: /user/username/projects/myproject/tsconfig.json +Info 143 [00:04:53.000] Config: /user/username/projects/myproject/tsconfig-src.json : { "rootNames": [ "/user/username/projects/myproject/src/main.ts", "/user/username/projects/myproject/src/helpers/functions.ts" @@ -709,75 +709,75 @@ Info 143 [16:04:53.000] Config: /user/username/projects/myproject/tsconfig-src. "configFilePath": "/user/username/projects/myproject/tsconfig-src.json" } } -Info 144 [16:04:54.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/tsconfig.json WatchType: Type roots -Info 145 [16:04:55.000] 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 146 [16:04:56.000] Finishing updateGraphWorker: Project: /user/username/projects/myproject/tsconfig.json Version: 2 structureChanged: true structureIsReused:: Not Elapsed:: *ms -Info 147 [16:04:57.000] Different program with same set of files -Info 148 [16:04:58.000] event: +Info 144 [00:04:54.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/tsconfig.json WatchType: Type roots +Info 145 [00:04:55.000] 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 146 [00:04:56.000] Finishing updateGraphWorker: Project: /user/username/projects/myproject/tsconfig.json Version: 2 structureChanged: true structureIsReused:: Not Elapsed:: *ms +Info 147 [00:04:57.000] Different program with same set of files +Info 148 [00:04:58.000] event: {"seq":0,"type":"event","event":"projectLoadingFinish","body":{"projectName":"/user/username/projects/myproject/tsconfig.json"}} -Info 149 [16:04:59.000] event: +Info 149 [00:04:59.000] event: {"seq":0,"type":"event","event":"configFileDiag","body":{"triggerFile":"/user/username/projects/myproject/tsconfig.json","configFile":"/user/username/projects/myproject/tsconfig.json","diagnostics":[]}} -Info 150 [16:05:00.000] DirectoryWatcher:: Close:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/tsconfig-src.json WatchType: Type roots -Info 151 [16:05:01.000] 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 152 [16:05:02.000] Reloading configured project /user/username/projects/myproject/tsconfig-src.json -Info 153 [16:05:03.000] event: +Info 150 [00:05:00.000] DirectoryWatcher:: Close:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/tsconfig-src.json WatchType: Type roots +Info 151 [00:05:01.000] 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 152 [00:05:02.000] Reloading configured project /user/username/projects/myproject/tsconfig-src.json +Info 153 [00:05:03.000] event: {"seq":0,"type":"event","event":"projectLoadingStart","body":{"projectName":"/user/username/projects/myproject/tsconfig-src.json","reason":"User requested reload projects"}} -Info 154 [16:05:04.000] Plugins were requested but not running in environment that supports 'require'. Nothing will be loaded -Info 155 [16:05:05.000] Starting updateGraphWorker: Project: /user/username/projects/myproject/tsconfig-src.json -Info 156 [16:05:06.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/tsconfig-src.json WatchType: Type roots -Info 157 [16:05:07.000] 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 158 [16:05:08.000] Finishing updateGraphWorker: Project: /user/username/projects/myproject/tsconfig-src.json Version: 2 structureChanged: true structureIsReused:: Not Elapsed:: *ms -Info 159 [16:05:09.000] Different program with same set of files -Info 160 [16:05:10.000] event: +Info 154 [00:05:04.000] Plugins were requested but not running in environment that supports 'require'. Nothing will be loaded +Info 155 [00:05:05.000] Starting updateGraphWorker: Project: /user/username/projects/myproject/tsconfig-src.json +Info 156 [00:05:06.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/tsconfig-src.json WatchType: Type roots +Info 157 [00:05:07.000] 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 158 [00:05:08.000] Finishing updateGraphWorker: Project: /user/username/projects/myproject/tsconfig-src.json Version: 2 structureChanged: true structureIsReused:: Not Elapsed:: *ms +Info 159 [00:05:09.000] Different program with same set of files +Info 160 [00:05:10.000] event: {"seq":0,"type":"event","event":"projectLoadingFinish","body":{"projectName":"/user/username/projects/myproject/tsconfig-src.json"}} -Info 161 [16:05:11.000] event: +Info 161 [00:05:11.000] event: {"seq":0,"type":"event","event":"configFileDiag","body":{"triggerFile":"/user/username/projects/myproject/tsconfig-src.json","configFile":"/user/username/projects/myproject/tsconfig-src.json","diagnostics":[]}} -Info 162 [16:05:12.000] Search path: /dummy -Info 163 [16:05:13.000] For info: /dummy/dummy.ts :: No config files found. -Info 164 [16:05:14.000] DirectoryWatcher:: Close:: WatchInfo: /dummy/node_modules/@types 1 undefined Project: /dev/null/inferredProject1* WatchType: Type roots -Info 165 [16:05:15.000] Elapsed:: *ms DirectoryWatcher:: Close:: WatchInfo: /dummy/node_modules/@types 1 undefined Project: /dev/null/inferredProject1* WatchType: Type roots -Info 166 [16:05:16.000] Before ensureProjectForOpenFiles: -Info 167 [16:05:17.000] Project '/user/username/projects/myproject/tsconfig.json' (Configured) -Info 167 [16:05:18.000] Files (4) - -Info 167 [16:05:19.000] ----------------------------------------------- -Info 167 [16:05:20.000] Project '/user/username/projects/myproject/tsconfig-src.json' (Configured) -Info 167 [16:05:21.000] Files (3) - -Info 167 [16:05:22.000] ----------------------------------------------- -Info 167 [16:05:23.000] Project '/dev/null/inferredProject1*' (Inferred) -Info 167 [16:05:24.000] Files (2) - -Info 167 [16:05:25.000] ----------------------------------------------- -Info 167 [16:05:26.000] Open files: -Info 167 [16:05:27.000] FileName: /user/username/projects/myproject/src/main.ts ProjectRootPath: undefined -Info 167 [16:05:28.000] Projects: /user/username/projects/myproject/tsconfig.json,/user/username/projects/myproject/tsconfig-src.json -Info 167 [16:05:29.000] FileName: /dummy/dummy.ts ProjectRootPath: undefined -Info 167 [16:05:30.000] Projects: /dev/null/inferredProject1* -Info 167 [16:05:31.000] Starting updateGraphWorker: Project: /dev/null/inferredProject1* -Info 168 [16:05:32.000] DirectoryWatcher:: Added:: WatchInfo: /dummy/node_modules/@types 1 undefined Project: /dev/null/inferredProject1* WatchType: Type roots -Info 169 [16:05:33.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /dummy/node_modules/@types 1 undefined Project: /dev/null/inferredProject1* WatchType: Type roots -Info 170 [16:05:34.000] Finishing updateGraphWorker: Project: /dev/null/inferredProject1* Version: 4 structureChanged: true structureIsReused:: Not Elapsed:: *ms -Info 171 [16:05:35.000] Different program with same set of files -Info 172 [16:05:36.000] After ensureProjectForOpenFiles: -Info 173 [16:05:37.000] Project '/user/username/projects/myproject/tsconfig.json' (Configured) -Info 173 [16:05:38.000] Files (4) - -Info 173 [16:05:39.000] ----------------------------------------------- -Info 173 [16:05:40.000] Project '/user/username/projects/myproject/tsconfig-src.json' (Configured) -Info 173 [16:05:41.000] Files (3) - -Info 173 [16:05:42.000] ----------------------------------------------- -Info 173 [16:05:43.000] Project '/dev/null/inferredProject1*' (Inferred) -Info 173 [16:05:44.000] Files (2) - -Info 173 [16:05:45.000] ----------------------------------------------- -Info 173 [16:05:46.000] Open files: -Info 173 [16:05:47.000] FileName: /user/username/projects/myproject/src/main.ts ProjectRootPath: undefined -Info 173 [16:05:48.000] Projects: /user/username/projects/myproject/tsconfig.json,/user/username/projects/myproject/tsconfig-src.json -Info 173 [16:05:49.000] FileName: /dummy/dummy.ts ProjectRootPath: undefined -Info 173 [16:05:50.000] Projects: /dev/null/inferredProject1* -Info 173 [16:05:51.000] request: +Info 162 [00:05:12.000] Search path: /dummy +Info 163 [00:05:13.000] For info: /dummy/dummy.ts :: No config files found. +Info 164 [00:05:14.000] DirectoryWatcher:: Close:: WatchInfo: /dummy/node_modules/@types 1 undefined Project: /dev/null/inferredProject1* WatchType: Type roots +Info 165 [00:05:15.000] Elapsed:: *ms DirectoryWatcher:: Close:: WatchInfo: /dummy/node_modules/@types 1 undefined Project: /dev/null/inferredProject1* WatchType: Type roots +Info 166 [00:05:16.000] Before ensureProjectForOpenFiles: +Info 167 [00:05:17.000] Project '/user/username/projects/myproject/tsconfig.json' (Configured) +Info 167 [00:05:18.000] Files (4) + +Info 167 [00:05:19.000] ----------------------------------------------- +Info 167 [00:05:20.000] Project '/user/username/projects/myproject/tsconfig-src.json' (Configured) +Info 167 [00:05:21.000] Files (3) + +Info 167 [00:05:22.000] ----------------------------------------------- +Info 167 [00:05:23.000] Project '/dev/null/inferredProject1*' (Inferred) +Info 167 [00:05:24.000] Files (2) + +Info 167 [00:05:25.000] ----------------------------------------------- +Info 167 [00:05:26.000] Open files: +Info 167 [00:05:27.000] FileName: /user/username/projects/myproject/src/main.ts ProjectRootPath: undefined +Info 167 [00:05:28.000] Projects: /user/username/projects/myproject/tsconfig.json,/user/username/projects/myproject/tsconfig-src.json +Info 167 [00:05:29.000] FileName: /dummy/dummy.ts ProjectRootPath: undefined +Info 167 [00:05:30.000] Projects: /dev/null/inferredProject1* +Info 167 [00:05:31.000] Starting updateGraphWorker: Project: /dev/null/inferredProject1* +Info 168 [00:05:32.000] DirectoryWatcher:: Added:: WatchInfo: /dummy/node_modules/@types 1 undefined Project: /dev/null/inferredProject1* WatchType: Type roots +Info 169 [00:05:33.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /dummy/node_modules/@types 1 undefined Project: /dev/null/inferredProject1* WatchType: Type roots +Info 170 [00:05:34.000] Finishing updateGraphWorker: Project: /dev/null/inferredProject1* Version: 4 structureChanged: true structureIsReused:: Not Elapsed:: *ms +Info 171 [00:05:35.000] Different program with same set of files +Info 172 [00:05:36.000] After ensureProjectForOpenFiles: +Info 173 [00:05:37.000] Project '/user/username/projects/myproject/tsconfig.json' (Configured) +Info 173 [00:05:38.000] Files (4) + +Info 173 [00:05:39.000] ----------------------------------------------- +Info 173 [00:05:40.000] Project '/user/username/projects/myproject/tsconfig-src.json' (Configured) +Info 173 [00:05:41.000] Files (3) + +Info 173 [00:05:42.000] ----------------------------------------------- +Info 173 [00:05:43.000] Project '/dev/null/inferredProject1*' (Inferred) +Info 173 [00:05:44.000] Files (2) + +Info 173 [00:05:45.000] ----------------------------------------------- +Info 173 [00:05:46.000] Open files: +Info 173 [00:05:47.000] FileName: /user/username/projects/myproject/src/main.ts ProjectRootPath: undefined +Info 173 [00:05:48.000] Projects: /user/username/projects/myproject/tsconfig.json,/user/username/projects/myproject/tsconfig-src.json +Info 173 [00:05:49.000] FileName: /dummy/dummy.ts ProjectRootPath: undefined +Info 173 [00:05:50.000] Projects: /dev/null/inferredProject1* +Info 173 [00:05:51.000] request: { "command": "references", "arguments": { @@ -812,20 +812,20 @@ FsWatchesRecursive:: /user/username/projects/myproject/src: {} -Info 174 [16:05:52.000] Finding references to /user/username/projects/myproject/src/main.ts position 50 in project /user/username/projects/myproject/tsconfig-src.json -Info 175 [16:05:53.000] Finding references to /user/username/projects/myproject/src/main.ts position 50 in project /user/username/projects/myproject/tsconfig.json -Info 176 [16:05:54.000] Search path: /user/username/projects/myproject/src -Info 177 [16:05:55.000] For info: /user/username/projects/myproject/src/main.ts :: Config file name: /user/username/projects/myproject/tsconfig.json -Info 178 [16:05:56.000] Search path: /user/username/projects/myproject/src -Info 179 [16:05:57.000] For info: /user/username/projects/myproject/src/main.ts :: Config file name: /user/username/projects/myproject/tsconfig.json -Info 180 [16:05:58.000] Search path: /user/username/projects/myproject/src -Info 181 [16:05:59.000] For info: /user/username/projects/myproject/src/main.ts :: Config file name: /user/username/projects/myproject/tsconfig.json -Info 182 [16:06:00.000] Search path: /user/username/projects/myproject/src/helpers -Info 183 [16:06:01.000] For info: /user/username/projects/myproject/src/helpers/functions.ts :: Config file name: /user/username/projects/myproject/tsconfig.json -Info 184 [16:06:02.000] Search path: /user/username/projects/myproject/src/helpers -Info 185 [16:06:03.000] For info: /user/username/projects/myproject/src/helpers/functions.ts :: Config file name: /user/username/projects/myproject/tsconfig.json -Info 186 [16:06:04.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/target/src/helpers/functions.d.ts 500 undefined WatchType: Closed Script info -Info 187 [16:06:05.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/target/src/helpers/functions.d.ts.map 500 undefined WatchType: Closed Script info +Info 174 [00:05:52.000] Finding references to /user/username/projects/myproject/src/main.ts position 50 in project /user/username/projects/myproject/tsconfig-src.json +Info 175 [00:05:53.000] Finding references to /user/username/projects/myproject/src/main.ts position 50 in project /user/username/projects/myproject/tsconfig.json +Info 176 [00:05:54.000] Search path: /user/username/projects/myproject/src +Info 177 [00:05:55.000] For info: /user/username/projects/myproject/src/main.ts :: Config file name: /user/username/projects/myproject/tsconfig.json +Info 178 [00:05:56.000] Search path: /user/username/projects/myproject/src +Info 179 [00:05:57.000] For info: /user/username/projects/myproject/src/main.ts :: Config file name: /user/username/projects/myproject/tsconfig.json +Info 180 [00:05:58.000] Search path: /user/username/projects/myproject/src +Info 181 [00:05:59.000] For info: /user/username/projects/myproject/src/main.ts :: Config file name: /user/username/projects/myproject/tsconfig.json +Info 182 [00:06:00.000] Search path: /user/username/projects/myproject/src/helpers +Info 183 [00:06:01.000] For info: /user/username/projects/myproject/src/helpers/functions.ts :: Config file name: /user/username/projects/myproject/tsconfig.json +Info 184 [00:06:02.000] Search path: /user/username/projects/myproject/src/helpers +Info 185 [00:06:03.000] For info: /user/username/projects/myproject/src/helpers/functions.ts :: Config file name: /user/username/projects/myproject/tsconfig.json +Info 186 [00:06:04.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/target/src/helpers/functions.d.ts 500 undefined WatchType: Closed Script info +Info 187 [00:06:05.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/target/src/helpers/functions.d.ts.map 500 undefined WatchType: Closed Script info After request PolledWatches:: @@ -854,7 +854,7 @@ FsWatchesRecursive:: /user/username/projects/myproject/src: {} -Info 188 [16:06:06.000] response: +Info 188 [00:06:06.000] response: { "response": { "refs": [ @@ -967,43 +967,43 @@ Info 188 [16:06:06.000] response: }, "responseRequired": true } -Info 189 [16:06:07.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/src/main.ts 500 undefined WatchType: Closed Script info -Info 190 [16:06:08.000] Project '/user/username/projects/myproject/tsconfig.json' (Configured) -Info 190 [16:06:09.000] Files (4) - -Info 190 [16:06:10.000] ----------------------------------------------- -Info 190 [16:06:11.000] Project '/user/username/projects/myproject/tsconfig-src.json' (Configured) -Info 190 [16:06:12.000] Files (3) - -Info 190 [16:06:13.000] ----------------------------------------------- -Info 190 [16:06:14.000] Project '/dev/null/inferredProject1*' (Inferred) -Info 190 [16:06:15.000] Files (2) - -Info 190 [16:06:16.000] ----------------------------------------------- -Info 190 [16:06:17.000] Open files: -Info 190 [16:06:18.000] FileName: /dummy/dummy.ts ProjectRootPath: undefined -Info 190 [16:06:19.000] Projects: /dev/null/inferredProject1* -Info 190 [16:06:20.000] FileWatcher:: Added:: WatchInfo: /dummy/dummy.ts 500 undefined WatchType: Closed Script info -Info 191 [16:06:21.000] Project '/user/username/projects/myproject/tsconfig.json' (Configured) -Info 191 [16:06:22.000] Files (4) - -Info 191 [16:06:23.000] ----------------------------------------------- -Info 191 [16:06:24.000] Project '/user/username/projects/myproject/tsconfig-src.json' (Configured) -Info 191 [16:06:25.000] Files (3) - -Info 191 [16:06:26.000] ----------------------------------------------- -Info 191 [16:06:27.000] Project '/dev/null/inferredProject1*' (Inferred) -Info 191 [16:06:28.000] Files (2) - -Info 191 [16:06:29.000] ----------------------------------------------- -Info 191 [16:06:30.000] Open files: -Info 191 [16:06:31.000] Search path: /user/username/projects/myproject/indirect3 -Info 192 [16:06:32.000] For info: /user/username/projects/myproject/indirect3/main.ts :: Config file name: /user/username/projects/myproject/indirect3/tsconfig.json -Info 193 [16:06:33.000] Creating configuration project /user/username/projects/myproject/indirect3/tsconfig.json -Info 194 [16:06:34.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/indirect3/tsconfig.json 2000 undefined Project: /user/username/projects/myproject/indirect3/tsconfig.json WatchType: Config file -Info 195 [16:06:35.000] event: +Info 189 [00:06:07.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/src/main.ts 500 undefined WatchType: Closed Script info +Info 190 [00:06:08.000] Project '/user/username/projects/myproject/tsconfig.json' (Configured) +Info 190 [00:06:09.000] Files (4) + +Info 190 [00:06:10.000] ----------------------------------------------- +Info 190 [00:06:11.000] Project '/user/username/projects/myproject/tsconfig-src.json' (Configured) +Info 190 [00:06:12.000] Files (3) + +Info 190 [00:06:13.000] ----------------------------------------------- +Info 190 [00:06:14.000] Project '/dev/null/inferredProject1*' (Inferred) +Info 190 [00:06:15.000] Files (2) + +Info 190 [00:06:16.000] ----------------------------------------------- +Info 190 [00:06:17.000] Open files: +Info 190 [00:06:18.000] FileName: /dummy/dummy.ts ProjectRootPath: undefined +Info 190 [00:06:19.000] Projects: /dev/null/inferredProject1* +Info 190 [00:06:20.000] FileWatcher:: Added:: WatchInfo: /dummy/dummy.ts 500 undefined WatchType: Closed Script info +Info 191 [00:06:21.000] Project '/user/username/projects/myproject/tsconfig.json' (Configured) +Info 191 [00:06:22.000] Files (4) + +Info 191 [00:06:23.000] ----------------------------------------------- +Info 191 [00:06:24.000] Project '/user/username/projects/myproject/tsconfig-src.json' (Configured) +Info 191 [00:06:25.000] Files (3) + +Info 191 [00:06:26.000] ----------------------------------------------- +Info 191 [00:06:27.000] Project '/dev/null/inferredProject1*' (Inferred) +Info 191 [00:06:28.000] Files (2) + +Info 191 [00:06:29.000] ----------------------------------------------- +Info 191 [00:06:30.000] Open files: +Info 191 [00:06:31.000] Search path: /user/username/projects/myproject/indirect3 +Info 192 [00:06:32.000] For info: /user/username/projects/myproject/indirect3/main.ts :: Config file name: /user/username/projects/myproject/indirect3/tsconfig.json +Info 193 [00:06:33.000] Creating configuration project /user/username/projects/myproject/indirect3/tsconfig.json +Info 194 [00:06:34.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/indirect3/tsconfig.json 2000 undefined Project: /user/username/projects/myproject/indirect3/tsconfig.json WatchType: Config file +Info 195 [00:06:35.000] event: {"seq":0,"type":"event","event":"projectLoadingStart","body":{"projectName":"/user/username/projects/myproject/indirect3/tsconfig.json","reason":"Creating possible configured project for /user/username/projects/myproject/indirect3/main.ts to open"}} -Info 196 [16:06:36.000] Config: /user/username/projects/myproject/indirect3/tsconfig.json : { +Info 196 [00:06:36.000] Config: /user/username/projects/myproject/indirect3/tsconfig.json : { "rootNames": [ "/user/username/projects/myproject/indirect3/main.ts" ], @@ -1012,20 +1012,20 @@ Info 196 [16:06:36.000] Config: /user/username/projects/myproject/indirect3/tsc "configFilePath": "/user/username/projects/myproject/indirect3/tsconfig.json" } } -Info 197 [16:06:37.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/indirect3 1 undefined Config: /user/username/projects/myproject/indirect3/tsconfig.json WatchType: Wild card directory -Info 198 [16:06:38.000] 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 199 [16:06:39.000] Plugins were requested but not running in environment that supports 'require'. Nothing will be loaded -Info 200 [16:06:40.000] Starting updateGraphWorker: Project: /user/username/projects/myproject/indirect3/tsconfig.json -Info 201 [16:06:41.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/target/src/main.d.ts 500 undefined WatchType: Closed Script info -Info 202 [16:06:42.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/target 1 undefined Project: /user/username/projects/myproject/indirect3/tsconfig.json WatchType: Failed Lookup Locations -Info 203 [16:06:43.000] 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 204 [16:06:44.000] 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 205 [16:06:45.000] 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 206 [16:06:46.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/indirect3/tsconfig.json WatchType: Type roots -Info 207 [16:06:47.000] 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 208 [16:06:48.000] Finishing updateGraphWorker: Project: /user/username/projects/myproject/indirect3/tsconfig.json Version: 1 structureChanged: true structureIsReused:: Not Elapsed:: *ms -Info 209 [16:06:49.000] Project '/user/username/projects/myproject/indirect3/tsconfig.json' (Configured) -Info 210 [16:06:50.000] Files (4) +Info 197 [00:06:37.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/indirect3 1 undefined Config: /user/username/projects/myproject/indirect3/tsconfig.json WatchType: Wild card directory +Info 198 [00:06:38.000] 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 199 [00:06:39.000] Plugins were requested but not running in environment that supports 'require'. Nothing will be loaded +Info 200 [00:06:40.000] Starting updateGraphWorker: Project: /user/username/projects/myproject/indirect3/tsconfig.json +Info 201 [00:06:41.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/target/src/main.d.ts 500 undefined WatchType: Closed Script info +Info 202 [00:06:42.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/target 1 undefined Project: /user/username/projects/myproject/indirect3/tsconfig.json WatchType: Failed Lookup Locations +Info 203 [00:06:43.000] 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 204 [00:06:44.000] 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 205 [00:06:45.000] 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 206 [00:06:46.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/indirect3/tsconfig.json WatchType: Type roots +Info 207 [00:06:47.000] 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 208 [00:06:48.000] Finishing updateGraphWorker: Project: /user/username/projects/myproject/indirect3/tsconfig.json Version: 1 structureChanged: true structureIsReused:: Not Elapsed:: *ms +Info 209 [00:06:49.000] Project '/user/username/projects/myproject/indirect3/tsconfig.json' (Configured) +Info 210 [00:06:50.000] Files (4) /a/lib/lib.d.ts /user/username/projects/myproject/target/src/helpers/functions.d.ts /user/username/projects/myproject/target/src/main.d.ts @@ -1041,16 +1041,16 @@ Info 210 [16:06:50.000] Files (4) main.ts Matched by default include pattern '**/*' -Info 211 [16:06:51.000] ----------------------------------------------- -Info 212 [16:06:52.000] event: +Info 211 [00:06:51.000] ----------------------------------------------- +Info 212 [00:06:52.000] event: {"seq":0,"type":"event","event":"projectLoadingFinish","body":{"projectName":"/user/username/projects/myproject/indirect3/tsconfig.json"}} -Info 213 [16:06:53.000] event: +Info 213 [00:06:53.000] event: {"seq":0,"type":"event","event":"telemetry","body":{"telemetryEventName":"projectInfo","payload":{"projectId":"5b0817f69b6871821661b976aa73f4f2533b37c5f4b920541094c2d727d0dc39","fileStats":{"js":0,"jsSize":0,"jsx":0,"jsxSize":0,"ts":1,"tsSize":57,"tsx":0,"tsxSize":0,"dts":3,"dtsSize":494,"deferred":0,"deferredSize":0},"compilerOptions":{"baseUrl":""},"typeAcquisition":{"enable":false,"include":false,"exclude":false},"extends":false,"files":false,"include":false,"exclude":false,"compileOnSave":false,"configFileName":"tsconfig.json","projectType":"configured","languageServiceEnabled":true,"version":"FakeVersion"}}} -Info 214 [16:06:54.000] event: +Info 214 [00:06:54.000] event: {"seq":0,"type":"event","event":"configFileDiag","body":{"triggerFile":"/user/username/projects/myproject/indirect3/main.ts","configFile":"/user/username/projects/myproject/indirect3/tsconfig.json","diagnostics":[]}} -Info 215 [16:06:55.000] `remove Project:: -Info 216 [16:06:56.000] Project '/user/username/projects/myproject/tsconfig.json' (Configured) -Info 217 [16:06:57.000] Files (4) +Info 215 [00:06:55.000] `remove Project:: +Info 216 [00:06:56.000] Project '/user/username/projects/myproject/tsconfig.json' (Configured) +Info 217 [00:06:57.000] Files (4) /a/lib/lib.d.ts /user/username/projects/myproject/src/helpers/functions.ts /user/username/projects/myproject/src/main.ts @@ -1066,13 +1066,13 @@ Info 217 [16:06:57.000] Files (4) own/main.ts Part of 'files' list in tsconfig.json -Info 218 [16:06:58.000] ----------------------------------------------- -Info 219 [16:06:59.000] FileWatcher:: Close:: WatchInfo: /user/username/projects/myproject/tsconfig.json 2000 undefined Project: /user/username/projects/myproject/tsconfig.json WatchType: Config file -Info 220 [16:07:00.000] DirectoryWatcher:: Close:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/tsconfig.json WatchType: Type roots -Info 221 [16:07:01.000] 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 222 [16:07:02.000] `remove Project:: -Info 223 [16:07:03.000] Project '/user/username/projects/myproject/tsconfig-src.json' (Configured) -Info 224 [16:07:04.000] Files (3) +Info 218 [00:06:58.000] ----------------------------------------------- +Info 219 [00:06:59.000] FileWatcher:: Close:: WatchInfo: /user/username/projects/myproject/tsconfig.json 2000 undefined Project: /user/username/projects/myproject/tsconfig.json WatchType: Config file +Info 220 [00:07:00.000] DirectoryWatcher:: Close:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/tsconfig.json WatchType: Type roots +Info 221 [00:07:01.000] 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 222 [00:07:02.000] `remove Project:: +Info 223 [00:07:03.000] Project '/user/username/projects/myproject/tsconfig-src.json' (Configured) +Info 224 [00:07:04.000] Files (3) /a/lib/lib.d.ts /user/username/projects/myproject/src/helpers/functions.ts /user/username/projects/myproject/src/main.ts @@ -1086,15 +1086,15 @@ Info 224 [16:07:04.000] Files (3) src/main.ts Matched by include pattern './src/**/*' in 'tsconfig-src.json' -Info 225 [16:07:05.000] ----------------------------------------------- -Info 226 [16:07:06.000] DirectoryWatcher:: Close:: WatchInfo: /user/username/projects/myproject/src 1 undefined Config: /user/username/projects/myproject/tsconfig-src.json WatchType: Wild card directory -Info 227 [16:07:07.000] 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 228 [16:07:08.000] FileWatcher:: Close:: WatchInfo: /user/username/projects/myproject/tsconfig-src.json 2000 undefined Project: /user/username/projects/myproject/tsconfig.json WatchType: Config file -Info 229 [16:07:09.000] DirectoryWatcher:: Close:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/tsconfig-src.json WatchType: Type roots -Info 230 [16:07:10.000] 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 231 [16:07:11.000] `remove Project:: -Info 232 [16:07:12.000] Project '/dev/null/inferredProject1*' (Inferred) -Info 233 [16:07:13.000] Files (2) +Info 225 [00:07:05.000] ----------------------------------------------- +Info 226 [00:07:06.000] DirectoryWatcher:: Close:: WatchInfo: /user/username/projects/myproject/src 1 undefined Config: /user/username/projects/myproject/tsconfig-src.json WatchType: Wild card directory +Info 227 [00:07:07.000] 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 228 [00:07:08.000] FileWatcher:: Close:: WatchInfo: /user/username/projects/myproject/tsconfig-src.json 2000 undefined Project: /user/username/projects/myproject/tsconfig.json WatchType: Config file +Info 229 [00:07:09.000] DirectoryWatcher:: Close:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/tsconfig-src.json WatchType: Type roots +Info 230 [00:07:10.000] 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 231 [00:07:11.000] `remove Project:: +Info 232 [00:07:12.000] Project '/dev/null/inferredProject1*' (Inferred) +Info 233 [00:07:13.000] Files (2) /a/lib/lib.d.ts /dummy/dummy.ts @@ -1104,20 +1104,20 @@ Info 233 [16:07:13.000] Files (2) dummy.ts Root file specified for compilation -Info 234 [16:07:14.000] ----------------------------------------------- -Info 235 [16:07:15.000] DirectoryWatcher:: Close:: WatchInfo: /dummy/node_modules/@types 1 undefined Project: /dev/null/inferredProject1* WatchType: Type roots -Info 236 [16:07:16.000] Elapsed:: *ms DirectoryWatcher:: Close:: WatchInfo: /dummy/node_modules/@types 1 undefined Project: /dev/null/inferredProject1* WatchType: Type roots -Info 237 [16:07:17.000] FileWatcher:: Close:: WatchInfo: /dummy/dummy.ts 500 undefined WatchType: Closed Script info -Info 238 [16:07:18.000] FileWatcher:: Close:: WatchInfo: /user/username/projects/myproject/src/main.ts 500 undefined WatchType: Closed Script info -Info 239 [16:07:19.000] FileWatcher:: Close:: WatchInfo: /user/username/projects/myproject/own/main.ts 500 undefined WatchType: Closed Script info -Info 240 [16:07:20.000] Project '/user/username/projects/myproject/indirect3/tsconfig.json' (Configured) -Info 240 [16:07:21.000] Files (4) - -Info 240 [16:07:22.000] ----------------------------------------------- -Info 240 [16:07:23.000] Open files: -Info 240 [16:07:24.000] FileName: /user/username/projects/myproject/indirect3/main.ts ProjectRootPath: undefined -Info 240 [16:07:25.000] Projects: /user/username/projects/myproject/indirect3/tsconfig.json -Info 240 [16:07:26.000] request: +Info 234 [00:07:14.000] ----------------------------------------------- +Info 235 [00:07:15.000] DirectoryWatcher:: Close:: WatchInfo: /dummy/node_modules/@types 1 undefined Project: /dev/null/inferredProject1* WatchType: Type roots +Info 236 [00:07:16.000] Elapsed:: *ms DirectoryWatcher:: Close:: WatchInfo: /dummy/node_modules/@types 1 undefined Project: /dev/null/inferredProject1* WatchType: Type roots +Info 237 [00:07:17.000] FileWatcher:: Close:: WatchInfo: /dummy/dummy.ts 500 undefined WatchType: Closed Script info +Info 238 [00:07:18.000] FileWatcher:: Close:: WatchInfo: /user/username/projects/myproject/src/main.ts 500 undefined WatchType: Closed Script info +Info 239 [00:07:19.000] FileWatcher:: Close:: WatchInfo: /user/username/projects/myproject/own/main.ts 500 undefined WatchType: Closed Script info +Info 240 [00:07:20.000] Project '/user/username/projects/myproject/indirect3/tsconfig.json' (Configured) +Info 240 [00:07:21.000] Files (4) + +Info 240 [00:07:22.000] ----------------------------------------------- +Info 240 [00:07:23.000] Open files: +Info 240 [00:07:24.000] FileName: /user/username/projects/myproject/indirect3/main.ts ProjectRootPath: undefined +Info 240 [00:07:25.000] Projects: /user/username/projects/myproject/indirect3/tsconfig.json +Info 240 [00:07:26.000] request: { "command": "references", "arguments": { @@ -1156,16 +1156,16 @@ FsWatchesRecursive:: /user/username/projects/myproject/target: {} -Info 241 [16:07:27.000] Finding references to /user/username/projects/myproject/indirect3/main.ts position 9 in project /user/username/projects/myproject/indirect3/tsconfig.json -Info 242 [16:07:28.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/target/src/main.d.ts.map 500 undefined WatchType: Closed Script info -Info 243 [16:07:29.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/src/main.ts 500 undefined WatchType: Closed Script info -Info 244 [16:07:30.000] Search path: /user/username/projects/myproject/src -Info 245 [16:07:31.000] For info: /user/username/projects/myproject/src/main.ts :: Config file name: /user/username/projects/myproject/tsconfig.json -Info 246 [16:07:32.000] Creating configuration project /user/username/projects/myproject/tsconfig.json -Info 247 [16:07:33.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/tsconfig.json 2000 undefined Project: /user/username/projects/myproject/tsconfig.json WatchType: Config file -Info 248 [16:07:34.000] event: +Info 241 [00:07:27.000] Finding references to /user/username/projects/myproject/indirect3/main.ts position 9 in project /user/username/projects/myproject/indirect3/tsconfig.json +Info 242 [00:07:28.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/target/src/main.d.ts.map 500 undefined WatchType: Closed Script info +Info 243 [00:07:29.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/src/main.ts 500 undefined WatchType: Closed Script info +Info 244 [00:07:30.000] Search path: /user/username/projects/myproject/src +Info 245 [00:07:31.000] For info: /user/username/projects/myproject/src/main.ts :: Config file name: /user/username/projects/myproject/tsconfig.json +Info 246 [00:07:32.000] Creating configuration project /user/username/projects/myproject/tsconfig.json +Info 247 [00:07:33.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/tsconfig.json 2000 undefined Project: /user/username/projects/myproject/tsconfig.json WatchType: Config file +Info 248 [00:07:34.000] event: {"seq":0,"type":"event","event":"projectLoadingStart","body":{"projectName":"/user/username/projects/myproject/tsconfig.json","reason":"Creating project for original file: /user/username/projects/myproject/src/main.ts for location: /user/username/projects/myproject/target/src/main.d.ts"}} -Info 249 [16:07:35.000] Config: /user/username/projects/myproject/tsconfig.json : { +Info 249 [00:07:35.000] Config: /user/username/projects/myproject/tsconfig.json : { "rootNames": [ "/user/username/projects/myproject/own/main.ts" ], @@ -1181,10 +1181,10 @@ Info 249 [16:07:35.000] Config: /user/username/projects/myproject/tsconfig.json } ] } -Info 250 [16:07:36.000] Plugins were requested but not running in environment that supports 'require'. Nothing will be loaded -Info 251 [16:07:37.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/own/main.ts 500 undefined WatchType: Closed Script info -Info 252 [16:07:38.000] Starting updateGraphWorker: Project: /user/username/projects/myproject/tsconfig.json -Info 253 [16:07:39.000] Config: /user/username/projects/myproject/tsconfig-src.json : { +Info 250 [00:07:36.000] Plugins were requested but not running in environment that supports 'require'. Nothing will be loaded +Info 251 [00:07:37.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/own/main.ts 500 undefined WatchType: Closed Script info +Info 252 [00:07:38.000] Starting updateGraphWorker: Project: /user/username/projects/myproject/tsconfig.json +Info 253 [00:07:39.000] Config: /user/username/projects/myproject/tsconfig-src.json : { "rootNames": [ "/user/username/projects/myproject/src/main.ts", "/user/username/projects/myproject/src/helpers/functions.ts" @@ -1196,14 +1196,14 @@ Info 253 [16:07:39.000] Config: /user/username/projects/myproject/tsconfig-src. "configFilePath": "/user/username/projects/myproject/tsconfig-src.json" } } -Info 254 [16:07:40.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/tsconfig-src.json 2000 undefined Project: /user/username/projects/myproject/tsconfig.json WatchType: Config file -Info 255 [16:07:41.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/src 1 undefined Config: /user/username/projects/myproject/tsconfig-src.json WatchType: Wild card directory -Info 256 [16:07:42.000] 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 257 [16:07:43.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/tsconfig.json WatchType: Type roots -Info 258 [16:07:44.000] 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 259 [16:07:45.000] Finishing updateGraphWorker: Project: /user/username/projects/myproject/tsconfig.json Version: 1 structureChanged: true structureIsReused:: Not Elapsed:: *ms -Info 260 [16:07:46.000] Project '/user/username/projects/myproject/tsconfig.json' (Configured) -Info 261 [16:07:47.000] Files (4) +Info 254 [00:07:40.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/tsconfig-src.json 2000 undefined Project: /user/username/projects/myproject/tsconfig.json WatchType: Config file +Info 255 [00:07:41.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/src 1 undefined Config: /user/username/projects/myproject/tsconfig-src.json WatchType: Wild card directory +Info 256 [00:07:42.000] 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 257 [00:07:43.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/tsconfig.json WatchType: Type roots +Info 258 [00:07:44.000] 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 259 [00:07:45.000] Finishing updateGraphWorker: Project: /user/username/projects/myproject/tsconfig.json Version: 1 structureChanged: true structureIsReused:: Not Elapsed:: *ms +Info 260 [00:07:46.000] Project '/user/username/projects/myproject/tsconfig.json' (Configured) +Info 261 [00:07:47.000] Files (4) /a/lib/lib.d.ts /user/username/projects/myproject/src/helpers/functions.ts /user/username/projects/myproject/src/main.ts @@ -1219,19 +1219,19 @@ Info 261 [16:07:47.000] Files (4) own/main.ts Part of 'files' list in tsconfig.json -Info 262 [16:07:48.000] ----------------------------------------------- -Info 263 [16:07:49.000] event: +Info 262 [00:07:48.000] ----------------------------------------------- +Info 263 [00:07:49.000] event: {"seq":0,"type":"event","event":"projectLoadingFinish","body":{"projectName":"/user/username/projects/myproject/tsconfig.json"}} -Info 264 [16:07:50.000] Creating configuration project /user/username/projects/myproject/tsconfig-src.json -Info 265 [16:07:51.000] event: +Info 264 [00:07:50.000] Creating configuration project /user/username/projects/myproject/tsconfig-src.json +Info 265 [00:07:51.000] event: {"seq":0,"type":"event","event":"projectLoadingStart","body":{"projectName":"/user/username/projects/myproject/tsconfig-src.json","reason":"Creating project referenced in solution /user/username/projects/myproject/tsconfig.json to find possible configured project for original file: /user/username/projects/myproject/src/main.ts for location: /user/username/projects/myproject/target/src/main.d.ts"}} -Info 266 [16:07:52.000] Plugins were requested but not running in environment that supports 'require'. Nothing will be loaded -Info 267 [16:07:53.000] Starting updateGraphWorker: Project: /user/username/projects/myproject/tsconfig-src.json -Info 268 [16:07:54.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/tsconfig-src.json WatchType: Type roots -Info 269 [16:07:55.000] 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 270 [16:07:56.000] Finishing updateGraphWorker: Project: /user/username/projects/myproject/tsconfig-src.json Version: 1 structureChanged: true structureIsReused:: Not Elapsed:: *ms -Info 271 [16:07:57.000] Project '/user/username/projects/myproject/tsconfig-src.json' (Configured) -Info 272 [16:07:58.000] Files (3) +Info 266 [00:07:52.000] Plugins were requested but not running in environment that supports 'require'. Nothing will be loaded +Info 267 [00:07:53.000] Starting updateGraphWorker: Project: /user/username/projects/myproject/tsconfig-src.json +Info 268 [00:07:54.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/tsconfig-src.json WatchType: Type roots +Info 269 [00:07:55.000] 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 270 [00:07:56.000] Finishing updateGraphWorker: Project: /user/username/projects/myproject/tsconfig-src.json Version: 1 structureChanged: true structureIsReused:: Not Elapsed:: *ms +Info 271 [00:07:57.000] Project '/user/username/projects/myproject/tsconfig-src.json' (Configured) +Info 272 [00:07:58.000] Files (3) /a/lib/lib.d.ts /user/username/projects/myproject/src/helpers/functions.ts /user/username/projects/myproject/src/main.ts @@ -1245,29 +1245,29 @@ Info 272 [16:07:58.000] Files (3) src/main.ts Matched by include pattern './src/**/*' in 'tsconfig-src.json' -Info 273 [16:07:59.000] ----------------------------------------------- -Info 274 [16:08:00.000] event: +Info 273 [00:07:59.000] ----------------------------------------------- +Info 274 [00:08:00.000] event: {"seq":0,"type":"event","event":"projectLoadingFinish","body":{"projectName":"/user/username/projects/myproject/tsconfig-src.json"}} -Info 275 [16:08:01.000] Search path: /user/username/projects/myproject/src -Info 276 [16:08:02.000] For info: /user/username/projects/myproject/src/main.ts :: Config file name: /user/username/projects/myproject/tsconfig.json -Info 277 [16:08:03.000] Search path: /user/username/projects/myproject/src -Info 278 [16:08:04.000] For info: /user/username/projects/myproject/src/main.ts :: Config file name: /user/username/projects/myproject/tsconfig.json -Info 279 [16:08:05.000] Search path: /user/username/projects/myproject/src/helpers -Info 280 [16:08:06.000] For info: /user/username/projects/myproject/src/helpers/functions.ts :: Config file name: /user/username/projects/myproject/tsconfig.json -Info 281 [16:08:07.000] Search path: /user/username/projects/myproject/src/helpers -Info 282 [16:08:08.000] For info: /user/username/projects/myproject/src/helpers/functions.ts :: Config file name: /user/username/projects/myproject/tsconfig.json -Info 283 [16:08:09.000] Finding references to /user/username/projects/myproject/src/main.ts position 9 in project /user/username/projects/myproject/tsconfig.json -Info 284 [16:08:10.000] Search path: /user/username/projects/myproject/src -Info 285 [16:08:11.000] For info: /user/username/projects/myproject/src/main.ts :: Config file name: /user/username/projects/myproject/tsconfig.json -Info 286 [16:08:12.000] Search path: /user/username/projects/myproject/src -Info 287 [16:08:13.000] For info: /user/username/projects/myproject/src/main.ts :: Config file name: /user/username/projects/myproject/tsconfig.json -Info 288 [16:08:14.000] Search path: /user/username/projects/myproject/src -Info 289 [16:08:15.000] For info: /user/username/projects/myproject/src/main.ts :: Config file name: /user/username/projects/myproject/tsconfig.json -Info 290 [16:08:16.000] Search path: /user/username/projects/myproject/src/helpers -Info 291 [16:08:17.000] For info: /user/username/projects/myproject/src/helpers/functions.ts :: Config file name: /user/username/projects/myproject/tsconfig.json -Info 292 [16:08:18.000] Search path: /user/username/projects/myproject/src/helpers -Info 293 [16:08:19.000] For info: /user/username/projects/myproject/src/helpers/functions.ts :: Config file name: /user/username/projects/myproject/tsconfig.json -Info 294 [16:08:20.000] Finding references to /user/username/projects/myproject/src/main.ts position 9 in project /user/username/projects/myproject/tsconfig-src.json +Info 275 [00:08:01.000] Search path: /user/username/projects/myproject/src +Info 276 [00:08:02.000] For info: /user/username/projects/myproject/src/main.ts :: Config file name: /user/username/projects/myproject/tsconfig.json +Info 277 [00:08:03.000] Search path: /user/username/projects/myproject/src +Info 278 [00:08:04.000] For info: /user/username/projects/myproject/src/main.ts :: Config file name: /user/username/projects/myproject/tsconfig.json +Info 279 [00:08:05.000] Search path: /user/username/projects/myproject/src/helpers +Info 280 [00:08:06.000] For info: /user/username/projects/myproject/src/helpers/functions.ts :: Config file name: /user/username/projects/myproject/tsconfig.json +Info 281 [00:08:07.000] Search path: /user/username/projects/myproject/src/helpers +Info 282 [00:08:08.000] For info: /user/username/projects/myproject/src/helpers/functions.ts :: Config file name: /user/username/projects/myproject/tsconfig.json +Info 283 [00:08:09.000] Finding references to /user/username/projects/myproject/src/main.ts position 9 in project /user/username/projects/myproject/tsconfig.json +Info 284 [00:08:10.000] Search path: /user/username/projects/myproject/src +Info 285 [00:08:11.000] For info: /user/username/projects/myproject/src/main.ts :: Config file name: /user/username/projects/myproject/tsconfig.json +Info 286 [00:08:12.000] Search path: /user/username/projects/myproject/src +Info 287 [00:08:13.000] For info: /user/username/projects/myproject/src/main.ts :: Config file name: /user/username/projects/myproject/tsconfig.json +Info 288 [00:08:14.000] Search path: /user/username/projects/myproject/src +Info 289 [00:08:15.000] For info: /user/username/projects/myproject/src/main.ts :: Config file name: /user/username/projects/myproject/tsconfig.json +Info 290 [00:08:16.000] Search path: /user/username/projects/myproject/src/helpers +Info 291 [00:08:17.000] For info: /user/username/projects/myproject/src/helpers/functions.ts :: Config file name: /user/username/projects/myproject/tsconfig.json +Info 292 [00:08:18.000] Search path: /user/username/projects/myproject/src/helpers +Info 293 [00:08:19.000] For info: /user/username/projects/myproject/src/helpers/functions.ts :: Config file name: /user/username/projects/myproject/tsconfig.json +Info 294 [00:08:20.000] Finding references to /user/username/projects/myproject/src/main.ts position 9 in project /user/username/projects/myproject/tsconfig-src.json After request PolledWatches:: @@ -1308,7 +1308,7 @@ FsWatchesRecursive:: /user/username/projects/myproject/src: {} -Info 295 [16:08:21.000] response: +Info 295 [00:08:21.000] response: { "response": { "refs": [ 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 ee5f61ff02f46..6d40ee56680c6 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 @@ -1,11 +1,11 @@ -Info 0 [16:01:09.000] Provided types map file "/a/lib/typesMap.json" doesn't exist -Info 1 [16:01:10.000] Search path: /user/username/projects/myproject/src -Info 2 [16:01:11.000] For info: /user/username/projects/myproject/src/main.ts :: Config file name: /user/username/projects/myproject/tsconfig.json -Info 3 [16:01:12.000] Creating configuration project /user/username/projects/myproject/tsconfig.json -Info 4 [16:01:13.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/tsconfig.json 2000 undefined Project: /user/username/projects/myproject/tsconfig.json WatchType: Config file -Info 5 [16:01:14.000] event: +Info 0 [00:01:09.000] Provided types map file "/a/lib/typesMap.json" doesn't exist +Info 1 [00:01:10.000] Search path: /user/username/projects/myproject/src +Info 2 [00:01:11.000] For info: /user/username/projects/myproject/src/main.ts :: Config file name: /user/username/projects/myproject/tsconfig.json +Info 3 [00:01:12.000] Creating configuration project /user/username/projects/myproject/tsconfig.json +Info 4 [00:01:13.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/tsconfig.json 2000 undefined Project: /user/username/projects/myproject/tsconfig.json WatchType: Config file +Info 5 [00:01:14.000] event: {"seq":0,"type":"event","event":"projectLoadingStart","body":{"projectName":"/user/username/projects/myproject/tsconfig.json","reason":"Creating possible configured project for /user/username/projects/myproject/src/main.ts to open"}} -Info 6 [16:01:15.000] Config: /user/username/projects/myproject/tsconfig.json : { +Info 6 [00:01:15.000] Config: /user/username/projects/myproject/tsconfig.json : { "rootNames": [ "/user/username/projects/myproject/own/main.ts" ], @@ -25,10 +25,10 @@ Info 6 [16:01:15.000] Config: /user/username/projects/myproject/tsconfig.json } ] } -Info 7 [16:01:16.000] Plugins were requested but not running in environment that supports 'require'. Nothing will be loaded -Info 8 [16:01:17.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/own/main.ts 500 undefined WatchType: Closed Script info -Info 9 [16:01:18.000] Starting updateGraphWorker: Project: /user/username/projects/myproject/tsconfig.json -Info 10 [16:01:19.000] Config: /user/username/projects/myproject/tsconfig-indirect1.json : { +Info 7 [00:01:16.000] Plugins were requested but not running in environment that supports 'require'. Nothing will be loaded +Info 8 [00:01:17.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/own/main.ts 500 undefined WatchType: Closed Script info +Info 9 [00:01:18.000] Starting updateGraphWorker: Project: /user/username/projects/myproject/tsconfig.json +Info 10 [00:01:19.000] Config: /user/username/projects/myproject/tsconfig-indirect1.json : { "rootNames": [ "/user/username/projects/myproject/indirect1/main.ts" ], @@ -45,8 +45,8 @@ Info 10 [16:01:19.000] Config: /user/username/projects/myproject/tsconfig-indi } ] } -Info 11 [16:01:20.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/tsconfig-indirect1.json 2000 undefined Project: /user/username/projects/myproject/tsconfig.json WatchType: Config file -Info 12 [16:01:21.000] Config: /user/username/projects/myproject/tsconfig-src.json : { +Info 11 [00:01:20.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/tsconfig-indirect1.json 2000 undefined Project: /user/username/projects/myproject/tsconfig.json WatchType: Config file +Info 12 [00:01:21.000] Config: /user/username/projects/myproject/tsconfig-src.json : { "rootNames": [ "/user/username/projects/myproject/src/main.ts", "/user/username/projects/myproject/src/helpers/functions.ts" @@ -58,10 +58,10 @@ Info 12 [16:01:21.000] Config: /user/username/projects/myproject/tsconfig-src. "configFilePath": "/user/username/projects/myproject/tsconfig-src.json" } } -Info 13 [16:01:22.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/tsconfig-src.json 2000 undefined Project: /user/username/projects/myproject/tsconfig.json WatchType: Config file -Info 14 [16:01:23.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/src 1 undefined Config: /user/username/projects/myproject/tsconfig-src.json WatchType: Wild card directory -Info 15 [16:01:24.000] 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 16 [16:01:25.000] Config: /user/username/projects/myproject/tsconfig-indirect2.json : { +Info 13 [00:01:22.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/tsconfig-src.json 2000 undefined Project: /user/username/projects/myproject/tsconfig.json WatchType: Config file +Info 14 [00:01:23.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/src 1 undefined Config: /user/username/projects/myproject/tsconfig-src.json WatchType: Wild card directory +Info 15 [00:01:24.000] 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 16 [00:01:25.000] Config: /user/username/projects/myproject/tsconfig-indirect2.json : { "rootNames": [ "/user/username/projects/myproject/indirect2/main.ts" ], @@ -78,15 +78,15 @@ Info 16 [16:01:25.000] Config: /user/username/projects/myproject/tsconfig-indi } ] } -Info 17 [16:01:26.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/tsconfig-indirect2.json 2000 undefined Project: /user/username/projects/myproject/tsconfig.json WatchType: Config file -Info 18 [16:01:27.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/indirect1/main.ts 500 undefined WatchType: Closed Script info -Info 19 [16:01:28.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/src/helpers/functions.ts 500 undefined WatchType: Closed Script info -Info 20 [16:01:29.000] FileWatcher:: Added:: WatchInfo: /a/lib/lib.d.ts 500 undefined WatchType: Closed Script info -Info 21 [16:01:30.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/tsconfig.json WatchType: Type roots -Info 22 [16:01:31.000] 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 23 [16:01:32.000] Finishing updateGraphWorker: Project: /user/username/projects/myproject/tsconfig.json Version: 1 structureChanged: true structureIsReused:: Not Elapsed:: *ms -Info 24 [16:01:33.000] Project '/user/username/projects/myproject/tsconfig.json' (Configured) -Info 25 [16:01:34.000] Files (5) +Info 17 [00:01:26.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/tsconfig-indirect2.json 2000 undefined Project: /user/username/projects/myproject/tsconfig.json WatchType: Config file +Info 18 [00:01:27.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/indirect1/main.ts 500 undefined WatchType: Closed Script info +Info 19 [00:01:28.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/src/helpers/functions.ts 500 undefined WatchType: Closed Script info +Info 20 [00:01:29.000] FileWatcher:: Added:: WatchInfo: /a/lib/lib.d.ts 500 undefined WatchType: Closed Script info +Info 21 [00:01:30.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/tsconfig.json WatchType: Type roots +Info 22 [00:01:31.000] 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 23 [00:01:32.000] Finishing updateGraphWorker: Project: /user/username/projects/myproject/tsconfig.json Version: 1 structureChanged: true structureIsReused:: Not Elapsed:: *ms +Info 24 [00:01:33.000] Project '/user/username/projects/myproject/tsconfig.json' (Configured) +Info 25 [00:01:34.000] Files (5) /a/lib/lib.d.ts /user/username/projects/myproject/src/helpers/functions.ts /user/username/projects/myproject/src/main.ts @@ -105,21 +105,21 @@ Info 25 [16:01:34.000] Files (5) own/main.ts Part of 'files' list in tsconfig.json -Info 26 [16:01:35.000] ----------------------------------------------- -Info 27 [16:01:36.000] event: +Info 26 [00:01:35.000] ----------------------------------------------- +Info 27 [00:01:36.000] event: {"seq":0,"type":"event","event":"projectLoadingFinish","body":{"projectName":"/user/username/projects/myproject/tsconfig.json"}} -Info 28 [16:01:37.000] event: +Info 28 [00:01:37.000] event: {"seq":0,"type":"event","event":"telemetry","body":{"telemetryEventName":"projectInfo","payload":{"projectId":"4a33d78ee40d836c4f4e64c59aed976628aea0013be9585c5ff171dfc41baf98","fileStats":{"js":0,"jsSize":0,"jsx":0,"jsxSize":0,"ts":4,"tsSize":166,"tsx":0,"tsxSize":0,"dts":1,"dtsSize":334,"deferred":0,"deferredSize":0},"compilerOptions":{"outDir":"","baseUrl":""},"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 29 [16:01:38.000] Creating configuration project /user/username/projects/myproject/tsconfig-src.json -Info 30 [16:01:39.000] event: +Info 29 [00:01:38.000] Creating configuration project /user/username/projects/myproject/tsconfig-src.json +Info 30 [00:01:39.000] event: {"seq":0,"type":"event","event":"projectLoadingStart","body":{"projectName":"/user/username/projects/myproject/tsconfig-src.json","reason":"Creating project referenced in solution /user/username/projects/myproject/tsconfig.json to find possible configured project for /user/username/projects/myproject/src/main.ts to open"}} -Info 31 [16:01:40.000] Plugins were requested but not running in environment that supports 'require'. Nothing will be loaded -Info 32 [16:01:41.000] Starting updateGraphWorker: Project: /user/username/projects/myproject/tsconfig-src.json -Info 33 [16:01:42.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/tsconfig-src.json WatchType: Type roots -Info 34 [16:01:43.000] 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 35 [16:01:44.000] Finishing updateGraphWorker: Project: /user/username/projects/myproject/tsconfig-src.json Version: 1 structureChanged: true structureIsReused:: Not Elapsed:: *ms -Info 36 [16:01:45.000] Project '/user/username/projects/myproject/tsconfig-src.json' (Configured) -Info 37 [16:01:46.000] Files (3) +Info 31 [00:01:40.000] Plugins were requested but not running in environment that supports 'require'. Nothing will be loaded +Info 32 [00:01:41.000] Starting updateGraphWorker: Project: /user/username/projects/myproject/tsconfig-src.json +Info 33 [00:01:42.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/tsconfig-src.json WatchType: Type roots +Info 34 [00:01:43.000] 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 35 [00:01:44.000] Finishing updateGraphWorker: Project: /user/username/projects/myproject/tsconfig-src.json Version: 1 structureChanged: true structureIsReused:: Not Elapsed:: *ms +Info 36 [00:01:45.000] Project '/user/username/projects/myproject/tsconfig-src.json' (Configured) +Info 37 [00:01:46.000] Files (3) /a/lib/lib.d.ts /user/username/projects/myproject/src/helpers/functions.ts /user/username/projects/myproject/src/main.ts @@ -133,27 +133,27 @@ Info 37 [16:01:46.000] Files (3) src/main.ts Matched by include pattern './src/**/*' in 'tsconfig-src.json' -Info 38 [16:01:47.000] ----------------------------------------------- -Info 39 [16:01:48.000] event: +Info 38 [00:01:47.000] ----------------------------------------------- +Info 39 [00:01:48.000] event: {"seq":0,"type":"event","event":"projectLoadingFinish","body":{"projectName":"/user/username/projects/myproject/tsconfig-src.json"}} -Info 40 [16:01:49.000] event: +Info 40 [00:01:49.000] event: {"seq":0,"type":"event","event":"telemetry","body":{"telemetryEventName":"projectInfo","payload":{"projectId":"75d5ba36c0a162a329bf40235b10e96d2d129b95469e1f02c08da775fb38a2b4","fileStats":{"js":0,"jsSize":0,"jsx":0,"jsxSize":0,"ts":2,"tsSize":77,"tsx":0,"tsxSize":0,"dts":1,"dtsSize":334,"deferred":0,"deferredSize":0},"compilerOptions":{"composite":true,"outDir":"","baseUrl":""},"typeAcquisition":{"enable":false,"include":false,"exclude":false},"extends":false,"files":false,"include":true,"exclude":false,"compileOnSave":false,"configFileName":"other","projectType":"configured","languageServiceEnabled":true,"version":"FakeVersion"}}} -Info 41 [16:01:50.000] event: +Info 41 [00:01:50.000] event: {"seq":0,"type":"event","event":"configFileDiag","body":{"triggerFile":"/user/username/projects/myproject/src/main.ts","configFile":"/user/username/projects/myproject/tsconfig-src.json","diagnostics":[]}} -Info 42 [16:01:51.000] Project '/user/username/projects/myproject/tsconfig.json' (Configured) -Info 42 [16:01:52.000] Files (5) - -Info 42 [16:01:53.000] ----------------------------------------------- -Info 42 [16:01:54.000] Project '/user/username/projects/myproject/tsconfig-src.json' (Configured) -Info 42 [16:01:55.000] Files (3) - -Info 42 [16:01:56.000] ----------------------------------------------- -Info 42 [16:01:57.000] Open files: -Info 42 [16:01:58.000] FileName: /user/username/projects/myproject/src/main.ts ProjectRootPath: undefined -Info 42 [16:01:59.000] Projects: /user/username/projects/myproject/tsconfig.json,/user/username/projects/myproject/tsconfig-src.json -Info 42 [16:02:00.000] getDefaultProject for /user/username/projects/myproject/src/main.ts: /user/username/projects/myproject/tsconfig-src.json -Info 42 [16:02:01.000] findDefaultConfiguredProject for /user/username/projects/myproject/src/main.ts: /user/username/projects/myproject/tsconfig-src.json -Info 42 [16:02:02.000] request: +Info 42 [00:01:51.000] Project '/user/username/projects/myproject/tsconfig.json' (Configured) +Info 42 [00:01:52.000] Files (5) + +Info 42 [00:01:53.000] ----------------------------------------------- +Info 42 [00:01:54.000] Project '/user/username/projects/myproject/tsconfig-src.json' (Configured) +Info 42 [00:01:55.000] Files (3) + +Info 42 [00:01:56.000] ----------------------------------------------- +Info 42 [00:01:57.000] Open files: +Info 42 [00:01:58.000] FileName: /user/username/projects/myproject/src/main.ts ProjectRootPath: undefined +Info 42 [00:01:59.000] Projects: /user/username/projects/myproject/tsconfig.json,/user/username/projects/myproject/tsconfig-src.json +Info 42 [00:02:00.000] getDefaultProject for /user/username/projects/myproject/src/main.ts: /user/username/projects/myproject/tsconfig-src.json +Info 42 [00:02:01.000] findDefaultConfiguredProject for /user/username/projects/myproject/src/main.ts: /user/username/projects/myproject/tsconfig-src.json +Info 42 [00:02:02.000] request: { "command": "geterr", "arguments": { @@ -293,7 +293,7 @@ FsWatchesRecursive:: /user/username/projects/myproject/src: {} -Info 43 [16:02:03.000] response: +Info 43 [00:02:03.000] response: { "responseRequired": false } @@ -325,7 +325,7 @@ FsWatchesRecursive:: /user/username/projects/myproject/src: {} -Info 44 [16:02:04.000] event: +Info 44 [00:02:04.000] event: {"seq":0,"type":"event","event":"syntaxDiag","body":{"file":"/user/username/projects/myproject/src/main.ts","diagnostics":[]}} After checking timeout queue length (1) and running @@ -383,7 +383,7 @@ FsWatchesRecursive:: /user/username/projects/myproject/src: {} -Info 45 [16:02:05.000] event: +Info 45 [00:02:05.000] event: {"seq":0,"type":"event","event":"semanticDiag","body":{"file":"/user/username/projects/myproject/src/main.ts","diagnostics":[]}} Before running immediate callbacks and checking length (1) @@ -441,9 +441,9 @@ FsWatchesRecursive:: /user/username/projects/myproject/src: {} -Info 46 [16:02:06.000] event: +Info 46 [00:02:06.000] event: {"seq":0,"type":"event","event":"suggestionDiag","body":{"file":"/user/username/projects/myproject/src/main.ts","diagnostics":[]}} -Info 47 [16:02:07.000] event: +Info 47 [00:02:07.000] event: {"seq":0,"type":"event","event":"requestCompleted","body":{"request_seq":1}} Before running immediate callbacks and checking length (1) @@ -473,15 +473,15 @@ FsWatchesRecursive:: /user/username/projects/myproject/src: {} -Info 48 [16:02:08.000] Search path: /dummy -Info 49 [16:02:09.000] For info: /dummy/dummy.ts :: No config files found. -Info 50 [16:02:10.000] Plugins were requested but not running in environment that supports 'require'. Nothing will be loaded -Info 51 [16:02:11.000] Starting updateGraphWorker: Project: /dev/null/inferredProject1* -Info 52 [16:02:12.000] DirectoryWatcher:: Added:: WatchInfo: /dummy/node_modules/@types 1 undefined Project: /dev/null/inferredProject1* WatchType: Type roots -Info 53 [16:02:13.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /dummy/node_modules/@types 1 undefined Project: /dev/null/inferredProject1* WatchType: Type roots -Info 54 [16:02:14.000] Finishing updateGraphWorker: Project: /dev/null/inferredProject1* Version: 1 structureChanged: true structureIsReused:: Not Elapsed:: *ms -Info 55 [16:02:15.000] Project '/dev/null/inferredProject1*' (Inferred) -Info 56 [16:02:16.000] Files (2) +Info 48 [00:02:08.000] Search path: /dummy +Info 49 [00:02:09.000] For info: /dummy/dummy.ts :: No config files found. +Info 50 [00:02:10.000] Plugins were requested but not running in environment that supports 'require'. Nothing will be loaded +Info 51 [00:02:11.000] Starting updateGraphWorker: Project: /dev/null/inferredProject1* +Info 52 [00:02:12.000] DirectoryWatcher:: Added:: WatchInfo: /dummy/node_modules/@types 1 undefined Project: /dev/null/inferredProject1* WatchType: Type roots +Info 53 [00:02:13.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /dummy/node_modules/@types 1 undefined Project: /dev/null/inferredProject1* WatchType: Type roots +Info 54 [00:02:14.000] Finishing updateGraphWorker: Project: /dev/null/inferredProject1* Version: 1 structureChanged: true structureIsReused:: Not Elapsed:: *ms +Info 55 [00:02:15.000] Project '/dev/null/inferredProject1*' (Inferred) +Info 56 [00:02:16.000] Files (2) /a/lib/lib.d.ts /dummy/dummy.ts @@ -491,61 +491,61 @@ Info 56 [16:02:16.000] Files (2) dummy.ts Root file specified for compilation -Info 57 [16:02:17.000] ----------------------------------------------- -Info 58 [16:02:18.000] Project '/user/username/projects/myproject/tsconfig.json' (Configured) -Info 58 [16:02:19.000] Files (5) - -Info 58 [16:02:20.000] ----------------------------------------------- -Info 58 [16:02:21.000] Project '/user/username/projects/myproject/tsconfig-src.json' (Configured) -Info 58 [16:02:22.000] Files (3) - -Info 58 [16:02:23.000] ----------------------------------------------- -Info 58 [16:02:24.000] Project '/dev/null/inferredProject1*' (Inferred) -Info 58 [16:02:25.000] Files (2) - -Info 58 [16:02:26.000] ----------------------------------------------- -Info 58 [16:02:27.000] Open files: -Info 58 [16:02:28.000] FileName: /user/username/projects/myproject/src/main.ts ProjectRootPath: undefined -Info 58 [16:02:29.000] Projects: /user/username/projects/myproject/tsconfig.json,/user/username/projects/myproject/tsconfig-src.json -Info 58 [16:02:30.000] FileName: /dummy/dummy.ts ProjectRootPath: undefined -Info 58 [16:02:31.000] Projects: /dev/null/inferredProject1* -Info 58 [16:02:32.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/src/main.ts 500 undefined WatchType: Closed Script info -Info 59 [16:02:33.000] Project '/user/username/projects/myproject/tsconfig.json' (Configured) -Info 59 [16:02:34.000] Files (5) - -Info 59 [16:02:35.000] ----------------------------------------------- -Info 59 [16:02:36.000] Project '/user/username/projects/myproject/tsconfig-src.json' (Configured) -Info 59 [16:02:37.000] Files (3) - -Info 59 [16:02:38.000] ----------------------------------------------- -Info 59 [16:02:39.000] Project '/dev/null/inferredProject1*' (Inferred) -Info 59 [16:02:40.000] Files (2) - -Info 59 [16:02:41.000] ----------------------------------------------- -Info 59 [16:02:42.000] Open files: -Info 59 [16:02:43.000] FileName: /dummy/dummy.ts ProjectRootPath: undefined -Info 59 [16:02:44.000] Projects: /dev/null/inferredProject1* -Info 59 [16:02:45.000] FileWatcher:: Added:: WatchInfo: /dummy/dummy.ts 500 undefined WatchType: Closed Script info -Info 60 [16:02:46.000] Project '/user/username/projects/myproject/tsconfig.json' (Configured) -Info 60 [16:02:47.000] Files (5) - -Info 60 [16:02:48.000] ----------------------------------------------- -Info 60 [16:02:49.000] Project '/user/username/projects/myproject/tsconfig-src.json' (Configured) -Info 60 [16:02:50.000] Files (3) - -Info 60 [16:02:51.000] ----------------------------------------------- -Info 60 [16:02:52.000] Project '/dev/null/inferredProject1*' (Inferred) -Info 60 [16:02:53.000] Files (2) - -Info 60 [16:02:54.000] ----------------------------------------------- -Info 60 [16:02:55.000] Open files: -Info 60 [16:02:56.000] FileWatcher:: Close:: WatchInfo: /dummy/dummy.ts 500 undefined WatchType: Closed Script info -Info 61 [16:02:57.000] Search path: /dummy -Info 62 [16:02:58.000] For info: /dummy/dummy.ts :: No config files found. -Info 63 [16:02:59.000] Starting updateGraphWorker: Project: /dev/null/inferredProject1* -Info 64 [16:03:00.000] Finishing updateGraphWorker: Project: /dev/null/inferredProject1* Version: 2 structureChanged: false structureIsReused:: Not Elapsed:: *ms -Info 65 [16:03:01.000] Project '/dev/null/inferredProject1*' (Inferred) -Info 66 [16:03:02.000] Files (2) +Info 57 [00:02:17.000] ----------------------------------------------- +Info 58 [00:02:18.000] Project '/user/username/projects/myproject/tsconfig.json' (Configured) +Info 58 [00:02:19.000] Files (5) + +Info 58 [00:02:20.000] ----------------------------------------------- +Info 58 [00:02:21.000] Project '/user/username/projects/myproject/tsconfig-src.json' (Configured) +Info 58 [00:02:22.000] Files (3) + +Info 58 [00:02:23.000] ----------------------------------------------- +Info 58 [00:02:24.000] Project '/dev/null/inferredProject1*' (Inferred) +Info 58 [00:02:25.000] Files (2) + +Info 58 [00:02:26.000] ----------------------------------------------- +Info 58 [00:02:27.000] Open files: +Info 58 [00:02:28.000] FileName: /user/username/projects/myproject/src/main.ts ProjectRootPath: undefined +Info 58 [00:02:29.000] Projects: /user/username/projects/myproject/tsconfig.json,/user/username/projects/myproject/tsconfig-src.json +Info 58 [00:02:30.000] FileName: /dummy/dummy.ts ProjectRootPath: undefined +Info 58 [00:02:31.000] Projects: /dev/null/inferredProject1* +Info 58 [00:02:32.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/src/main.ts 500 undefined WatchType: Closed Script info +Info 59 [00:02:33.000] Project '/user/username/projects/myproject/tsconfig.json' (Configured) +Info 59 [00:02:34.000] Files (5) + +Info 59 [00:02:35.000] ----------------------------------------------- +Info 59 [00:02:36.000] Project '/user/username/projects/myproject/tsconfig-src.json' (Configured) +Info 59 [00:02:37.000] Files (3) + +Info 59 [00:02:38.000] ----------------------------------------------- +Info 59 [00:02:39.000] Project '/dev/null/inferredProject1*' (Inferred) +Info 59 [00:02:40.000] Files (2) + +Info 59 [00:02:41.000] ----------------------------------------------- +Info 59 [00:02:42.000] Open files: +Info 59 [00:02:43.000] FileName: /dummy/dummy.ts ProjectRootPath: undefined +Info 59 [00:02:44.000] Projects: /dev/null/inferredProject1* +Info 59 [00:02:45.000] FileWatcher:: Added:: WatchInfo: /dummy/dummy.ts 500 undefined WatchType: Closed Script info +Info 60 [00:02:46.000] Project '/user/username/projects/myproject/tsconfig.json' (Configured) +Info 60 [00:02:47.000] Files (5) + +Info 60 [00:02:48.000] ----------------------------------------------- +Info 60 [00:02:49.000] Project '/user/username/projects/myproject/tsconfig-src.json' (Configured) +Info 60 [00:02:50.000] Files (3) + +Info 60 [00:02:51.000] ----------------------------------------------- +Info 60 [00:02:52.000] Project '/dev/null/inferredProject1*' (Inferred) +Info 60 [00:02:53.000] Files (2) + +Info 60 [00:02:54.000] ----------------------------------------------- +Info 60 [00:02:55.000] Open files: +Info 60 [00:02:56.000] FileWatcher:: Close:: WatchInfo: /dummy/dummy.ts 500 undefined WatchType: Closed Script info +Info 61 [00:02:57.000] Search path: /dummy +Info 62 [00:02:58.000] For info: /dummy/dummy.ts :: No config files found. +Info 63 [00:02:59.000] Starting updateGraphWorker: Project: /dev/null/inferredProject1* +Info 64 [00:03:00.000] Finishing updateGraphWorker: Project: /dev/null/inferredProject1* Version: 2 structureChanged: false structureIsReused:: Not Elapsed:: *ms +Info 65 [00:03:01.000] Project '/dev/null/inferredProject1*' (Inferred) +Info 66 [00:03:02.000] Files (2) /a/lib/lib.d.ts /dummy/dummy.ts @@ -555,10 +555,10 @@ Info 66 [16:03:02.000] Files (2) dummy.ts Root file specified for compilation -Info 67 [16:03:03.000] ----------------------------------------------- -Info 68 [16:03:04.000] `remove Project:: -Info 69 [16:03:05.000] Project '/user/username/projects/myproject/tsconfig.json' (Configured) -Info 70 [16:03:06.000] Files (5) +Info 67 [00:03:03.000] ----------------------------------------------- +Info 68 [00:03:04.000] `remove Project:: +Info 69 [00:03:05.000] Project '/user/username/projects/myproject/tsconfig.json' (Configured) +Info 70 [00:03:06.000] Files (5) /a/lib/lib.d.ts /user/username/projects/myproject/src/helpers/functions.ts /user/username/projects/myproject/src/main.ts @@ -577,15 +577,15 @@ Info 70 [16:03:06.000] Files (5) own/main.ts Part of 'files' list in tsconfig.json -Info 71 [16:03:07.000] ----------------------------------------------- -Info 72 [16:03:08.000] FileWatcher:: Close:: WatchInfo: /user/username/projects/myproject/tsconfig.json 2000 undefined Project: /user/username/projects/myproject/tsconfig.json WatchType: Config file -Info 73 [16:03:09.000] FileWatcher:: Close:: WatchInfo: /user/username/projects/myproject/tsconfig-indirect1.json 2000 undefined Project: /user/username/projects/myproject/tsconfig.json WatchType: Config file -Info 74 [16:03:10.000] FileWatcher:: Close:: WatchInfo: /user/username/projects/myproject/tsconfig-indirect2.json 2000 undefined Project: /user/username/projects/myproject/tsconfig.json WatchType: Config file -Info 75 [16:03:11.000] DirectoryWatcher:: Close:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/tsconfig.json WatchType: Type roots -Info 76 [16:03:12.000] 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 77 [16:03:13.000] `remove Project:: -Info 78 [16:03:14.000] Project '/user/username/projects/myproject/tsconfig-src.json' (Configured) -Info 79 [16:03:15.000] Files (3) +Info 71 [00:03:07.000] ----------------------------------------------- +Info 72 [00:03:08.000] FileWatcher:: Close:: WatchInfo: /user/username/projects/myproject/tsconfig.json 2000 undefined Project: /user/username/projects/myproject/tsconfig.json WatchType: Config file +Info 73 [00:03:09.000] FileWatcher:: Close:: WatchInfo: /user/username/projects/myproject/tsconfig-indirect1.json 2000 undefined Project: /user/username/projects/myproject/tsconfig.json WatchType: Config file +Info 74 [00:03:10.000] FileWatcher:: Close:: WatchInfo: /user/username/projects/myproject/tsconfig-indirect2.json 2000 undefined Project: /user/username/projects/myproject/tsconfig.json WatchType: Config file +Info 75 [00:03:11.000] DirectoryWatcher:: Close:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/tsconfig.json WatchType: Type roots +Info 76 [00:03:12.000] 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 77 [00:03:13.000] `remove Project:: +Info 78 [00:03:14.000] Project '/user/username/projects/myproject/tsconfig-src.json' (Configured) +Info 79 [00:03:15.000] Files (3) /a/lib/lib.d.ts /user/username/projects/myproject/src/helpers/functions.ts /user/username/projects/myproject/src/main.ts @@ -599,30 +599,30 @@ Info 79 [16:03:15.000] Files (3) src/main.ts Matched by include pattern './src/**/*' in 'tsconfig-src.json' -Info 80 [16:03:16.000] ----------------------------------------------- -Info 81 [16:03:17.000] DirectoryWatcher:: Close:: WatchInfo: /user/username/projects/myproject/src 1 undefined Config: /user/username/projects/myproject/tsconfig-src.json WatchType: Wild card directory -Info 82 [16:03:18.000] 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 83 [16:03:19.000] FileWatcher:: Close:: WatchInfo: /user/username/projects/myproject/tsconfig-src.json 2000 undefined Project: /user/username/projects/myproject/tsconfig.json WatchType: Config file -Info 84 [16:03:20.000] DirectoryWatcher:: Close:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/tsconfig-src.json WatchType: Type roots -Info 85 [16:03:21.000] 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 86 [16:03:22.000] FileWatcher:: Close:: WatchInfo: /user/username/projects/myproject/src/main.ts 500 undefined WatchType: Closed Script info -Info 87 [16:03:23.000] FileWatcher:: Close:: WatchInfo: /user/username/projects/myproject/own/main.ts 500 undefined WatchType: Closed Script info -Info 88 [16:03:24.000] FileWatcher:: Close:: WatchInfo: /user/username/projects/myproject/indirect1/main.ts 500 undefined WatchType: Closed Script info -Info 89 [16:03:25.000] FileWatcher:: Close:: WatchInfo: /user/username/projects/myproject/src/helpers/functions.ts 500 undefined WatchType: Closed Script info -Info 90 [16:03:26.000] Project '/dev/null/inferredProject1*' (Inferred) -Info 90 [16:03:27.000] Files (2) - -Info 90 [16:03:28.000] ----------------------------------------------- -Info 90 [16:03:29.000] Open files: -Info 90 [16:03:30.000] FileName: /dummy/dummy.ts ProjectRootPath: undefined -Info 90 [16:03:31.000] Projects: /dev/null/inferredProject1* -Info 90 [16:03:32.000] Search path: /user/username/projects/myproject/src -Info 91 [16:03:33.000] For info: /user/username/projects/myproject/src/main.ts :: Config file name: /user/username/projects/myproject/tsconfig.json -Info 92 [16:03:34.000] Creating configuration project /user/username/projects/myproject/tsconfig.json -Info 93 [16:03:35.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/tsconfig.json 2000 undefined Project: /user/username/projects/myproject/tsconfig.json WatchType: Config file -Info 94 [16:03:36.000] event: +Info 80 [00:03:16.000] ----------------------------------------------- +Info 81 [00:03:17.000] DirectoryWatcher:: Close:: WatchInfo: /user/username/projects/myproject/src 1 undefined Config: /user/username/projects/myproject/tsconfig-src.json WatchType: Wild card directory +Info 82 [00:03:18.000] 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 83 [00:03:19.000] FileWatcher:: Close:: WatchInfo: /user/username/projects/myproject/tsconfig-src.json 2000 undefined Project: /user/username/projects/myproject/tsconfig.json WatchType: Config file +Info 84 [00:03:20.000] DirectoryWatcher:: Close:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/tsconfig-src.json WatchType: Type roots +Info 85 [00:03:21.000] 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 86 [00:03:22.000] FileWatcher:: Close:: WatchInfo: /user/username/projects/myproject/src/main.ts 500 undefined WatchType: Closed Script info +Info 87 [00:03:23.000] FileWatcher:: Close:: WatchInfo: /user/username/projects/myproject/own/main.ts 500 undefined WatchType: Closed Script info +Info 88 [00:03:24.000] FileWatcher:: Close:: WatchInfo: /user/username/projects/myproject/indirect1/main.ts 500 undefined WatchType: Closed Script info +Info 89 [00:03:25.000] FileWatcher:: Close:: WatchInfo: /user/username/projects/myproject/src/helpers/functions.ts 500 undefined WatchType: Closed Script info +Info 90 [00:03:26.000] Project '/dev/null/inferredProject1*' (Inferred) +Info 90 [00:03:27.000] Files (2) + +Info 90 [00:03:28.000] ----------------------------------------------- +Info 90 [00:03:29.000] Open files: +Info 90 [00:03:30.000] FileName: /dummy/dummy.ts ProjectRootPath: undefined +Info 90 [00:03:31.000] Projects: /dev/null/inferredProject1* +Info 90 [00:03:32.000] Search path: /user/username/projects/myproject/src +Info 91 [00:03:33.000] For info: /user/username/projects/myproject/src/main.ts :: Config file name: /user/username/projects/myproject/tsconfig.json +Info 92 [00:03:34.000] Creating configuration project /user/username/projects/myproject/tsconfig.json +Info 93 [00:03:35.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/tsconfig.json 2000 undefined Project: /user/username/projects/myproject/tsconfig.json WatchType: Config file +Info 94 [00:03:36.000] event: {"seq":0,"type":"event","event":"projectLoadingStart","body":{"projectName":"/user/username/projects/myproject/tsconfig.json","reason":"Creating possible configured project for /user/username/projects/myproject/src/main.ts to open"}} -Info 95 [16:03:37.000] Config: /user/username/projects/myproject/tsconfig.json : { +Info 95 [00:03:37.000] Config: /user/username/projects/myproject/tsconfig.json : { "rootNames": [ "/user/username/projects/myproject/own/main.ts" ], @@ -642,10 +642,10 @@ Info 95 [16:03:37.000] Config: /user/username/projects/myproject/tsconfig.json } ] } -Info 96 [16:03:38.000] Plugins were requested but not running in environment that supports 'require'. Nothing will be loaded -Info 97 [16:03:39.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/own/main.ts 500 undefined WatchType: Closed Script info -Info 98 [16:03:40.000] Starting updateGraphWorker: Project: /user/username/projects/myproject/tsconfig.json -Info 99 [16:03:41.000] Config: /user/username/projects/myproject/tsconfig-indirect1.json : { +Info 96 [00:03:38.000] Plugins were requested but not running in environment that supports 'require'. Nothing will be loaded +Info 97 [00:03:39.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/own/main.ts 500 undefined WatchType: Closed Script info +Info 98 [00:03:40.000] Starting updateGraphWorker: Project: /user/username/projects/myproject/tsconfig.json +Info 99 [00:03:41.000] Config: /user/username/projects/myproject/tsconfig-indirect1.json : { "rootNames": [ "/user/username/projects/myproject/indirect1/main.ts" ], @@ -662,8 +662,8 @@ Info 99 [16:03:41.000] Config: /user/username/projects/myproject/tsconfig-indi } ] } -Info 100 [16:03:42.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/tsconfig-indirect1.json 2000 undefined Project: /user/username/projects/myproject/tsconfig.json WatchType: Config file -Info 101 [16:03:43.000] Config: /user/username/projects/myproject/tsconfig-src.json : { +Info 100 [00:03:42.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/tsconfig-indirect1.json 2000 undefined Project: /user/username/projects/myproject/tsconfig.json WatchType: Config file +Info 101 [00:03:43.000] Config: /user/username/projects/myproject/tsconfig-src.json : { "rootNames": [ "/user/username/projects/myproject/src/main.ts", "/user/username/projects/myproject/src/helpers/functions.ts" @@ -675,10 +675,10 @@ Info 101 [16:03:43.000] Config: /user/username/projects/myproject/tsconfig-src. "configFilePath": "/user/username/projects/myproject/tsconfig-src.json" } } -Info 102 [16:03:44.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/tsconfig-src.json 2000 undefined Project: /user/username/projects/myproject/tsconfig.json WatchType: Config file -Info 103 [16:03:45.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/src 1 undefined Config: /user/username/projects/myproject/tsconfig-src.json WatchType: Wild card directory -Info 104 [16:03:46.000] 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 105 [16:03:47.000] Config: /user/username/projects/myproject/tsconfig-indirect2.json : { +Info 102 [00:03:44.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/tsconfig-src.json 2000 undefined Project: /user/username/projects/myproject/tsconfig.json WatchType: Config file +Info 103 [00:03:45.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/src 1 undefined Config: /user/username/projects/myproject/tsconfig-src.json WatchType: Wild card directory +Info 104 [00:03:46.000] 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 105 [00:03:47.000] Config: /user/username/projects/myproject/tsconfig-indirect2.json : { "rootNames": [ "/user/username/projects/myproject/indirect2/main.ts" ], @@ -695,14 +695,14 @@ Info 105 [16:03:47.000] Config: /user/username/projects/myproject/tsconfig-indi } ] } -Info 106 [16:03:48.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/tsconfig-indirect2.json 2000 undefined Project: /user/username/projects/myproject/tsconfig.json WatchType: Config file -Info 107 [16:03:49.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/indirect1/main.ts 500 undefined WatchType: Closed Script info -Info 108 [16:03:50.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/src/helpers/functions.ts 500 undefined WatchType: Closed Script info -Info 109 [16:03:51.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/tsconfig.json WatchType: Type roots -Info 110 [16:03:52.000] 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 111 [16:03:53.000] Finishing updateGraphWorker: Project: /user/username/projects/myproject/tsconfig.json Version: 1 structureChanged: true structureIsReused:: Not Elapsed:: *ms -Info 112 [16:03:54.000] Project '/user/username/projects/myproject/tsconfig.json' (Configured) -Info 113 [16:03:55.000] Files (5) +Info 106 [00:03:48.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/tsconfig-indirect2.json 2000 undefined Project: /user/username/projects/myproject/tsconfig.json WatchType: Config file +Info 107 [00:03:49.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/indirect1/main.ts 500 undefined WatchType: Closed Script info +Info 108 [00:03:50.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/src/helpers/functions.ts 500 undefined WatchType: Closed Script info +Info 109 [00:03:51.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/tsconfig.json WatchType: Type roots +Info 110 [00:03:52.000] 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 111 [00:03:53.000] Finishing updateGraphWorker: Project: /user/username/projects/myproject/tsconfig.json Version: 1 structureChanged: true structureIsReused:: Not Elapsed:: *ms +Info 112 [00:03:54.000] Project '/user/username/projects/myproject/tsconfig.json' (Configured) +Info 113 [00:03:55.000] Files (5) /a/lib/lib.d.ts /user/username/projects/myproject/src/helpers/functions.ts /user/username/projects/myproject/src/main.ts @@ -721,19 +721,19 @@ Info 113 [16:03:55.000] Files (5) own/main.ts Part of 'files' list in tsconfig.json -Info 114 [16:03:56.000] ----------------------------------------------- -Info 115 [16:03:57.000] event: +Info 114 [00:03:56.000] ----------------------------------------------- +Info 115 [00:03:57.000] event: {"seq":0,"type":"event","event":"projectLoadingFinish","body":{"projectName":"/user/username/projects/myproject/tsconfig.json"}} -Info 116 [16:03:58.000] Creating configuration project /user/username/projects/myproject/tsconfig-src.json -Info 117 [16:03:59.000] event: +Info 116 [00:03:58.000] Creating configuration project /user/username/projects/myproject/tsconfig-src.json +Info 117 [00:03:59.000] event: {"seq":0,"type":"event","event":"projectLoadingStart","body":{"projectName":"/user/username/projects/myproject/tsconfig-src.json","reason":"Creating project referenced in solution /user/username/projects/myproject/tsconfig.json to find possible configured project for /user/username/projects/myproject/src/main.ts to open"}} -Info 118 [16:04:00.000] Plugins were requested but not running in environment that supports 'require'. Nothing will be loaded -Info 119 [16:04:01.000] Starting updateGraphWorker: Project: /user/username/projects/myproject/tsconfig-src.json -Info 120 [16:04:02.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/tsconfig-src.json WatchType: Type roots -Info 121 [16:04:03.000] 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 122 [16:04:04.000] Finishing updateGraphWorker: Project: /user/username/projects/myproject/tsconfig-src.json Version: 1 structureChanged: true structureIsReused:: Not Elapsed:: *ms -Info 123 [16:04:05.000] Project '/user/username/projects/myproject/tsconfig-src.json' (Configured) -Info 124 [16:04:06.000] Files (3) +Info 118 [00:04:00.000] Plugins were requested but not running in environment that supports 'require'. Nothing will be loaded +Info 119 [00:04:01.000] Starting updateGraphWorker: Project: /user/username/projects/myproject/tsconfig-src.json +Info 120 [00:04:02.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/tsconfig-src.json WatchType: Type roots +Info 121 [00:04:03.000] 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 122 [00:04:04.000] Finishing updateGraphWorker: Project: /user/username/projects/myproject/tsconfig-src.json Version: 1 structureChanged: true structureIsReused:: Not Elapsed:: *ms +Info 123 [00:04:05.000] Project '/user/username/projects/myproject/tsconfig-src.json' (Configured) +Info 124 [00:04:06.000] Files (3) /a/lib/lib.d.ts /user/username/projects/myproject/src/helpers/functions.ts /user/username/projects/myproject/src/main.ts @@ -747,51 +747,51 @@ Info 124 [16:04:06.000] Files (3) src/main.ts Matched by include pattern './src/**/*' in 'tsconfig-src.json' -Info 125 [16:04:07.000] ----------------------------------------------- -Info 126 [16:04:08.000] event: +Info 125 [00:04:07.000] ----------------------------------------------- +Info 126 [00:04:08.000] event: {"seq":0,"type":"event","event":"projectLoadingFinish","body":{"projectName":"/user/username/projects/myproject/tsconfig-src.json"}} -Info 127 [16:04:09.000] event: +Info 127 [00:04:09.000] event: {"seq":0,"type":"event","event":"configFileDiag","body":{"triggerFile":"/user/username/projects/myproject/src/main.ts","configFile":"/user/username/projects/myproject/tsconfig-src.json","diagnostics":[]}} -Info 128 [16:04:10.000] Project '/user/username/projects/myproject/tsconfig.json' (Configured) -Info 128 [16:04:11.000] Files (5) - -Info 128 [16:04:12.000] ----------------------------------------------- -Info 128 [16:04:13.000] Project '/user/username/projects/myproject/tsconfig-src.json' (Configured) -Info 128 [16:04:14.000] Files (3) - -Info 128 [16:04:15.000] ----------------------------------------------- -Info 128 [16:04:16.000] Project '/dev/null/inferredProject1*' (Inferred) -Info 128 [16:04:17.000] Files (2) - -Info 128 [16:04:18.000] ----------------------------------------------- -Info 128 [16:04:19.000] Open files: -Info 128 [16:04:20.000] FileName: /dummy/dummy.ts ProjectRootPath: undefined -Info 128 [16:04:21.000] Projects: /dev/null/inferredProject1* -Info 128 [16:04:22.000] FileName: /user/username/projects/myproject/src/main.ts ProjectRootPath: undefined -Info 128 [16:04:23.000] Projects: /user/username/projects/myproject/tsconfig.json,/user/username/projects/myproject/tsconfig-src.json -Info 128 [16:04:24.000] FileWatcher:: Added:: WatchInfo: /dummy/dummy.ts 500 undefined WatchType: Closed Script info -Info 129 [16:04:25.000] Project '/user/username/projects/myproject/tsconfig.json' (Configured) -Info 129 [16:04:26.000] Files (5) - -Info 129 [16:04:27.000] ----------------------------------------------- -Info 129 [16:04:28.000] Project '/user/username/projects/myproject/tsconfig-src.json' (Configured) -Info 129 [16:04:29.000] Files (3) - -Info 129 [16:04:30.000] ----------------------------------------------- -Info 129 [16:04:31.000] Project '/dev/null/inferredProject1*' (Inferred) -Info 129 [16:04:32.000] Files (2) - -Info 129 [16:04:33.000] ----------------------------------------------- -Info 129 [16:04:34.000] Open files: -Info 129 [16:04:35.000] FileName: /user/username/projects/myproject/src/main.ts ProjectRootPath: undefined -Info 129 [16:04:36.000] Projects: /user/username/projects/myproject/tsconfig.json,/user/username/projects/myproject/tsconfig-src.json -Info 129 [16:04:37.000] FileWatcher:: Close:: WatchInfo: /dummy/dummy.ts 500 undefined WatchType: Closed Script info -Info 130 [16:04:38.000] Search path: /dummy -Info 131 [16:04:39.000] For info: /dummy/dummy.ts :: No config files found. -Info 132 [16:04:40.000] Starting updateGraphWorker: Project: /dev/null/inferredProject1* -Info 133 [16:04:41.000] Finishing updateGraphWorker: Project: /dev/null/inferredProject1* Version: 3 structureChanged: false structureIsReused:: Not Elapsed:: *ms -Info 134 [16:04:42.000] Project '/dev/null/inferredProject1*' (Inferred) -Info 135 [16:04:43.000] Files (2) +Info 128 [00:04:10.000] Project '/user/username/projects/myproject/tsconfig.json' (Configured) +Info 128 [00:04:11.000] Files (5) + +Info 128 [00:04:12.000] ----------------------------------------------- +Info 128 [00:04:13.000] Project '/user/username/projects/myproject/tsconfig-src.json' (Configured) +Info 128 [00:04:14.000] Files (3) + +Info 128 [00:04:15.000] ----------------------------------------------- +Info 128 [00:04:16.000] Project '/dev/null/inferredProject1*' (Inferred) +Info 128 [00:04:17.000] Files (2) + +Info 128 [00:04:18.000] ----------------------------------------------- +Info 128 [00:04:19.000] Open files: +Info 128 [00:04:20.000] FileName: /dummy/dummy.ts ProjectRootPath: undefined +Info 128 [00:04:21.000] Projects: /dev/null/inferredProject1* +Info 128 [00:04:22.000] FileName: /user/username/projects/myproject/src/main.ts ProjectRootPath: undefined +Info 128 [00:04:23.000] Projects: /user/username/projects/myproject/tsconfig.json,/user/username/projects/myproject/tsconfig-src.json +Info 128 [00:04:24.000] FileWatcher:: Added:: WatchInfo: /dummy/dummy.ts 500 undefined WatchType: Closed Script info +Info 129 [00:04:25.000] Project '/user/username/projects/myproject/tsconfig.json' (Configured) +Info 129 [00:04:26.000] Files (5) + +Info 129 [00:04:27.000] ----------------------------------------------- +Info 129 [00:04:28.000] Project '/user/username/projects/myproject/tsconfig-src.json' (Configured) +Info 129 [00:04:29.000] Files (3) + +Info 129 [00:04:30.000] ----------------------------------------------- +Info 129 [00:04:31.000] Project '/dev/null/inferredProject1*' (Inferred) +Info 129 [00:04:32.000] Files (2) + +Info 129 [00:04:33.000] ----------------------------------------------- +Info 129 [00:04:34.000] Open files: +Info 129 [00:04:35.000] FileName: /user/username/projects/myproject/src/main.ts ProjectRootPath: undefined +Info 129 [00:04:36.000] Projects: /user/username/projects/myproject/tsconfig.json,/user/username/projects/myproject/tsconfig-src.json +Info 129 [00:04:37.000] FileWatcher:: Close:: WatchInfo: /dummy/dummy.ts 500 undefined WatchType: Closed Script info +Info 130 [00:04:38.000] Search path: /dummy +Info 131 [00:04:39.000] For info: /dummy/dummy.ts :: No config files found. +Info 132 [00:04:40.000] Starting updateGraphWorker: Project: /dev/null/inferredProject1* +Info 133 [00:04:41.000] Finishing updateGraphWorker: Project: /dev/null/inferredProject1* Version: 3 structureChanged: false structureIsReused:: Not Elapsed:: *ms +Info 134 [00:04:42.000] Project '/dev/null/inferredProject1*' (Inferred) +Info 135 [00:04:43.000] Files (2) /a/lib/lib.d.ts /dummy/dummy.ts @@ -801,44 +801,44 @@ Info 135 [16:04:43.000] Files (2) dummy.ts Root file specified for compilation -Info 136 [16:04:44.000] ----------------------------------------------- -Info 137 [16:04:45.000] Project '/user/username/projects/myproject/tsconfig.json' (Configured) -Info 137 [16:04:46.000] Files (5) - -Info 137 [16:04:47.000] ----------------------------------------------- -Info 137 [16:04:48.000] Project '/user/username/projects/myproject/tsconfig-src.json' (Configured) -Info 137 [16:04:49.000] Files (3) - -Info 137 [16:04:50.000] ----------------------------------------------- -Info 137 [16:04:51.000] Project '/dev/null/inferredProject1*' (Inferred) -Info 137 [16:04:52.000] Files (2) - -Info 137 [16:04:53.000] ----------------------------------------------- -Info 137 [16:04:54.000] Open files: -Info 137 [16:04:55.000] FileName: /user/username/projects/myproject/src/main.ts ProjectRootPath: undefined -Info 137 [16:04:56.000] Projects: /user/username/projects/myproject/tsconfig.json,/user/username/projects/myproject/tsconfig-src.json -Info 137 [16:04:57.000] FileName: /dummy/dummy.ts ProjectRootPath: undefined -Info 137 [16:04:58.000] Projects: /dev/null/inferredProject1* -Info 137 [16:04:59.000] reload projects. -Info 138 [16:05:00.000] Scheduled: /dev/null/inferredProject1* -Info 139 [16:05:01.000] Scheduled: /user/username/projects/myproject/tsconfig.json -Info 140 [16:05:02.000] Scheduled: /user/username/projects/myproject/tsconfig-src.json -Info 141 [16:05:03.000] Scheduled: *ensureProjectForOpenFiles* -Info 142 [16:05:04.000] Scheduled: /user/username/projects/myproject/tsconfig.json, Cancelled earlier one -Info 143 [16:05:05.000] Scheduled: *ensureProjectForOpenFiles*, Cancelled earlier one -Info 144 [16:05:06.000] Scheduled: /user/username/projects/myproject/tsconfig.json, Cancelled earlier one -Info 145 [16:05:07.000] Scheduled: *ensureProjectForOpenFiles*, Cancelled earlier one -Info 146 [16:05:08.000] Scheduled: /user/username/projects/myproject/tsconfig.json, Cancelled earlier one -Info 147 [16:05:09.000] Scheduled: /user/username/projects/myproject/tsconfig-src.json, Cancelled earlier one -Info 148 [16:05:10.000] Scheduled: *ensureProjectForOpenFiles*, Cancelled earlier one -Info 149 [16:05:11.000] Search path: /user/username/projects/myproject/src -Info 150 [16:05:12.000] For info: /user/username/projects/myproject/src/main.ts :: Config file name: /user/username/projects/myproject/tsconfig.json -Info 151 [16:05:13.000] DirectoryWatcher:: Close:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/tsconfig.json WatchType: Type roots -Info 152 [16:05:14.000] 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 153 [16:05:15.000] Reloading configured project /user/username/projects/myproject/tsconfig.json -Info 154 [16:05:16.000] event: +Info 136 [00:04:44.000] ----------------------------------------------- +Info 137 [00:04:45.000] Project '/user/username/projects/myproject/tsconfig.json' (Configured) +Info 137 [00:04:46.000] Files (5) + +Info 137 [00:04:47.000] ----------------------------------------------- +Info 137 [00:04:48.000] Project '/user/username/projects/myproject/tsconfig-src.json' (Configured) +Info 137 [00:04:49.000] Files (3) + +Info 137 [00:04:50.000] ----------------------------------------------- +Info 137 [00:04:51.000] Project '/dev/null/inferredProject1*' (Inferred) +Info 137 [00:04:52.000] Files (2) + +Info 137 [00:04:53.000] ----------------------------------------------- +Info 137 [00:04:54.000] Open files: +Info 137 [00:04:55.000] FileName: /user/username/projects/myproject/src/main.ts ProjectRootPath: undefined +Info 137 [00:04:56.000] Projects: /user/username/projects/myproject/tsconfig.json,/user/username/projects/myproject/tsconfig-src.json +Info 137 [00:04:57.000] FileName: /dummy/dummy.ts ProjectRootPath: undefined +Info 137 [00:04:58.000] Projects: /dev/null/inferredProject1* +Info 137 [00:04:59.000] reload projects. +Info 138 [00:05:00.000] Scheduled: /dev/null/inferredProject1* +Info 139 [00:05:01.000] Scheduled: /user/username/projects/myproject/tsconfig.json +Info 140 [00:05:02.000] Scheduled: /user/username/projects/myproject/tsconfig-src.json +Info 141 [00:05:03.000] Scheduled: *ensureProjectForOpenFiles* +Info 142 [00:05:04.000] Scheduled: /user/username/projects/myproject/tsconfig.json, Cancelled earlier one +Info 143 [00:05:05.000] Scheduled: *ensureProjectForOpenFiles*, Cancelled earlier one +Info 144 [00:05:06.000] Scheduled: /user/username/projects/myproject/tsconfig.json, Cancelled earlier one +Info 145 [00:05:07.000] Scheduled: *ensureProjectForOpenFiles*, Cancelled earlier one +Info 146 [00:05:08.000] Scheduled: /user/username/projects/myproject/tsconfig.json, Cancelled earlier one +Info 147 [00:05:09.000] Scheduled: /user/username/projects/myproject/tsconfig-src.json, Cancelled earlier one +Info 148 [00:05:10.000] Scheduled: *ensureProjectForOpenFiles*, Cancelled earlier one +Info 149 [00:05:11.000] Search path: /user/username/projects/myproject/src +Info 150 [00:05:12.000] For info: /user/username/projects/myproject/src/main.ts :: Config file name: /user/username/projects/myproject/tsconfig.json +Info 151 [00:05:13.000] DirectoryWatcher:: Close:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/tsconfig.json WatchType: Type roots +Info 152 [00:05:14.000] 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 153 [00:05:15.000] Reloading configured project /user/username/projects/myproject/tsconfig.json +Info 154 [00:05:16.000] event: {"seq":0,"type":"event","event":"projectLoadingStart","body":{"projectName":"/user/username/projects/myproject/tsconfig.json","reason":"User requested reload projects"}} -Info 155 [16:05:17.000] Config: /user/username/projects/myproject/tsconfig.json : { +Info 155 [00:05:17.000] Config: /user/username/projects/myproject/tsconfig.json : { "rootNames": [ "/user/username/projects/myproject/own/main.ts" ], @@ -858,9 +858,9 @@ Info 155 [16:05:17.000] Config: /user/username/projects/myproject/tsconfig.json } ] } -Info 156 [16:05:18.000] Plugins were requested but not running in environment that supports 'require'. Nothing will be loaded -Info 157 [16:05:19.000] Starting updateGraphWorker: Project: /user/username/projects/myproject/tsconfig.json -Info 158 [16:05:20.000] Config: /user/username/projects/myproject/tsconfig-indirect1.json : { +Info 156 [00:05:18.000] Plugins were requested but not running in environment that supports 'require'. Nothing will be loaded +Info 157 [00:05:19.000] Starting updateGraphWorker: Project: /user/username/projects/myproject/tsconfig.json +Info 158 [00:05:20.000] Config: /user/username/projects/myproject/tsconfig-indirect1.json : { "rootNames": [ "/user/username/projects/myproject/indirect1/main.ts" ], @@ -877,7 +877,7 @@ Info 158 [16:05:20.000] Config: /user/username/projects/myproject/tsconfig-indi } ] } -Info 159 [16:05:21.000] Config: /user/username/projects/myproject/tsconfig-src.json : { +Info 159 [00:05:21.000] Config: /user/username/projects/myproject/tsconfig-src.json : { "rootNames": [ "/user/username/projects/myproject/src/main.ts", "/user/username/projects/myproject/src/helpers/functions.ts" @@ -889,7 +889,7 @@ Info 159 [16:05:21.000] Config: /user/username/projects/myproject/tsconfig-src. "configFilePath": "/user/username/projects/myproject/tsconfig-src.json" } } -Info 160 [16:05:22.000] Config: /user/username/projects/myproject/tsconfig-indirect2.json : { +Info 160 [00:05:22.000] Config: /user/username/projects/myproject/tsconfig-indirect2.json : { "rootNames": [ "/user/username/projects/myproject/indirect2/main.ts" ], @@ -906,75 +906,75 @@ Info 160 [16:05:22.000] Config: /user/username/projects/myproject/tsconfig-indi } ] } -Info 161 [16:05:23.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/tsconfig.json WatchType: Type roots -Info 162 [16:05:24.000] 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 163 [16:05:25.000] Finishing updateGraphWorker: Project: /user/username/projects/myproject/tsconfig.json Version: 2 structureChanged: true structureIsReused:: Not Elapsed:: *ms -Info 164 [16:05:26.000] Different program with same set of files -Info 165 [16:05:27.000] event: +Info 161 [00:05:23.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/tsconfig.json WatchType: Type roots +Info 162 [00:05:24.000] 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 163 [00:05:25.000] Finishing updateGraphWorker: Project: /user/username/projects/myproject/tsconfig.json Version: 2 structureChanged: true structureIsReused:: Not Elapsed:: *ms +Info 164 [00:05:26.000] Different program with same set of files +Info 165 [00:05:27.000] event: {"seq":0,"type":"event","event":"projectLoadingFinish","body":{"projectName":"/user/username/projects/myproject/tsconfig.json"}} -Info 166 [16:05:28.000] event: +Info 166 [00:05:28.000] event: {"seq":0,"type":"event","event":"configFileDiag","body":{"triggerFile":"/user/username/projects/myproject/tsconfig.json","configFile":"/user/username/projects/myproject/tsconfig.json","diagnostics":[]}} -Info 167 [16:05:29.000] DirectoryWatcher:: Close:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/tsconfig-src.json WatchType: Type roots -Info 168 [16:05:30.000] 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 169 [16:05:31.000] Reloading configured project /user/username/projects/myproject/tsconfig-src.json -Info 170 [16:05:32.000] event: +Info 167 [00:05:29.000] DirectoryWatcher:: Close:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/tsconfig-src.json WatchType: Type roots +Info 168 [00:05:30.000] 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 169 [00:05:31.000] Reloading configured project /user/username/projects/myproject/tsconfig-src.json +Info 170 [00:05:32.000] event: {"seq":0,"type":"event","event":"projectLoadingStart","body":{"projectName":"/user/username/projects/myproject/tsconfig-src.json","reason":"User requested reload projects"}} -Info 171 [16:05:33.000] Plugins were requested but not running in environment that supports 'require'. Nothing will be loaded -Info 172 [16:05:34.000] Starting updateGraphWorker: Project: /user/username/projects/myproject/tsconfig-src.json -Info 173 [16:05:35.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/tsconfig-src.json WatchType: Type roots -Info 174 [16:05:36.000] 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 175 [16:05:37.000] Finishing updateGraphWorker: Project: /user/username/projects/myproject/tsconfig-src.json Version: 2 structureChanged: true structureIsReused:: Not Elapsed:: *ms -Info 176 [16:05:38.000] Different program with same set of files -Info 177 [16:05:39.000] event: +Info 171 [00:05:33.000] Plugins were requested but not running in environment that supports 'require'. Nothing will be loaded +Info 172 [00:05:34.000] Starting updateGraphWorker: Project: /user/username/projects/myproject/tsconfig-src.json +Info 173 [00:05:35.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/tsconfig-src.json WatchType: Type roots +Info 174 [00:05:36.000] 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 175 [00:05:37.000] Finishing updateGraphWorker: Project: /user/username/projects/myproject/tsconfig-src.json Version: 2 structureChanged: true structureIsReused:: Not Elapsed:: *ms +Info 176 [00:05:38.000] Different program with same set of files +Info 177 [00:05:39.000] event: {"seq":0,"type":"event","event":"projectLoadingFinish","body":{"projectName":"/user/username/projects/myproject/tsconfig-src.json"}} -Info 178 [16:05:40.000] event: +Info 178 [00:05:40.000] event: {"seq":0,"type":"event","event":"configFileDiag","body":{"triggerFile":"/user/username/projects/myproject/tsconfig-src.json","configFile":"/user/username/projects/myproject/tsconfig-src.json","diagnostics":[]}} -Info 179 [16:05:41.000] Search path: /dummy -Info 180 [16:05:42.000] For info: /dummy/dummy.ts :: No config files found. -Info 181 [16:05:43.000] DirectoryWatcher:: Close:: WatchInfo: /dummy/node_modules/@types 1 undefined Project: /dev/null/inferredProject1* WatchType: Type roots -Info 182 [16:05:44.000] Elapsed:: *ms DirectoryWatcher:: Close:: WatchInfo: /dummy/node_modules/@types 1 undefined Project: /dev/null/inferredProject1* WatchType: Type roots -Info 183 [16:05:45.000] Before ensureProjectForOpenFiles: -Info 184 [16:05:46.000] Project '/user/username/projects/myproject/tsconfig.json' (Configured) -Info 184 [16:05:47.000] Files (5) - -Info 184 [16:05:48.000] ----------------------------------------------- -Info 184 [16:05:49.000] Project '/user/username/projects/myproject/tsconfig-src.json' (Configured) -Info 184 [16:05:50.000] Files (3) - -Info 184 [16:05:51.000] ----------------------------------------------- -Info 184 [16:05:52.000] Project '/dev/null/inferredProject1*' (Inferred) -Info 184 [16:05:53.000] Files (2) - -Info 184 [16:05:54.000] ----------------------------------------------- -Info 184 [16:05:55.000] Open files: -Info 184 [16:05:56.000] FileName: /user/username/projects/myproject/src/main.ts ProjectRootPath: undefined -Info 184 [16:05:57.000] Projects: /user/username/projects/myproject/tsconfig.json,/user/username/projects/myproject/tsconfig-src.json -Info 184 [16:05:58.000] FileName: /dummy/dummy.ts ProjectRootPath: undefined -Info 184 [16:05:59.000] Projects: /dev/null/inferredProject1* -Info 184 [16:06:00.000] Starting updateGraphWorker: Project: /dev/null/inferredProject1* -Info 185 [16:06:01.000] DirectoryWatcher:: Added:: WatchInfo: /dummy/node_modules/@types 1 undefined Project: /dev/null/inferredProject1* WatchType: Type roots -Info 186 [16:06:02.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /dummy/node_modules/@types 1 undefined Project: /dev/null/inferredProject1* WatchType: Type roots -Info 187 [16:06:03.000] Finishing updateGraphWorker: Project: /dev/null/inferredProject1* Version: 4 structureChanged: true structureIsReused:: Not Elapsed:: *ms -Info 188 [16:06:04.000] Different program with same set of files -Info 189 [16:06:05.000] After ensureProjectForOpenFiles: -Info 190 [16:06:06.000] Project '/user/username/projects/myproject/tsconfig.json' (Configured) -Info 190 [16:06:07.000] Files (5) - -Info 190 [16:06:08.000] ----------------------------------------------- -Info 190 [16:06:09.000] Project '/user/username/projects/myproject/tsconfig-src.json' (Configured) -Info 190 [16:06:10.000] Files (3) - -Info 190 [16:06:11.000] ----------------------------------------------- -Info 190 [16:06:12.000] Project '/dev/null/inferredProject1*' (Inferred) -Info 190 [16:06:13.000] Files (2) - -Info 190 [16:06:14.000] ----------------------------------------------- -Info 190 [16:06:15.000] Open files: -Info 190 [16:06:16.000] FileName: /user/username/projects/myproject/src/main.ts ProjectRootPath: undefined -Info 190 [16:06:17.000] Projects: /user/username/projects/myproject/tsconfig.json,/user/username/projects/myproject/tsconfig-src.json -Info 190 [16:06:18.000] FileName: /dummy/dummy.ts ProjectRootPath: undefined -Info 190 [16:06:19.000] Projects: /dev/null/inferredProject1* -Info 190 [16:06:20.000] request: +Info 179 [00:05:41.000] Search path: /dummy +Info 180 [00:05:42.000] For info: /dummy/dummy.ts :: No config files found. +Info 181 [00:05:43.000] DirectoryWatcher:: Close:: WatchInfo: /dummy/node_modules/@types 1 undefined Project: /dev/null/inferredProject1* WatchType: Type roots +Info 182 [00:05:44.000] Elapsed:: *ms DirectoryWatcher:: Close:: WatchInfo: /dummy/node_modules/@types 1 undefined Project: /dev/null/inferredProject1* WatchType: Type roots +Info 183 [00:05:45.000] Before ensureProjectForOpenFiles: +Info 184 [00:05:46.000] Project '/user/username/projects/myproject/tsconfig.json' (Configured) +Info 184 [00:05:47.000] Files (5) + +Info 184 [00:05:48.000] ----------------------------------------------- +Info 184 [00:05:49.000] Project '/user/username/projects/myproject/tsconfig-src.json' (Configured) +Info 184 [00:05:50.000] Files (3) + +Info 184 [00:05:51.000] ----------------------------------------------- +Info 184 [00:05:52.000] Project '/dev/null/inferredProject1*' (Inferred) +Info 184 [00:05:53.000] Files (2) + +Info 184 [00:05:54.000] ----------------------------------------------- +Info 184 [00:05:55.000] Open files: +Info 184 [00:05:56.000] FileName: /user/username/projects/myproject/src/main.ts ProjectRootPath: undefined +Info 184 [00:05:57.000] Projects: /user/username/projects/myproject/tsconfig.json,/user/username/projects/myproject/tsconfig-src.json +Info 184 [00:05:58.000] FileName: /dummy/dummy.ts ProjectRootPath: undefined +Info 184 [00:05:59.000] Projects: /dev/null/inferredProject1* +Info 184 [00:06:00.000] Starting updateGraphWorker: Project: /dev/null/inferredProject1* +Info 185 [00:06:01.000] DirectoryWatcher:: Added:: WatchInfo: /dummy/node_modules/@types 1 undefined Project: /dev/null/inferredProject1* WatchType: Type roots +Info 186 [00:06:02.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /dummy/node_modules/@types 1 undefined Project: /dev/null/inferredProject1* WatchType: Type roots +Info 187 [00:06:03.000] Finishing updateGraphWorker: Project: /dev/null/inferredProject1* Version: 4 structureChanged: true structureIsReused:: Not Elapsed:: *ms +Info 188 [00:06:04.000] Different program with same set of files +Info 189 [00:06:05.000] After ensureProjectForOpenFiles: +Info 190 [00:06:06.000] Project '/user/username/projects/myproject/tsconfig.json' (Configured) +Info 190 [00:06:07.000] Files (5) + +Info 190 [00:06:08.000] ----------------------------------------------- +Info 190 [00:06:09.000] Project '/user/username/projects/myproject/tsconfig-src.json' (Configured) +Info 190 [00:06:10.000] Files (3) + +Info 190 [00:06:11.000] ----------------------------------------------- +Info 190 [00:06:12.000] Project '/dev/null/inferredProject1*' (Inferred) +Info 190 [00:06:13.000] Files (2) + +Info 190 [00:06:14.000] ----------------------------------------------- +Info 190 [00:06:15.000] Open files: +Info 190 [00:06:16.000] FileName: /user/username/projects/myproject/src/main.ts ProjectRootPath: undefined +Info 190 [00:06:17.000] Projects: /user/username/projects/myproject/tsconfig.json,/user/username/projects/myproject/tsconfig-src.json +Info 190 [00:06:18.000] FileName: /dummy/dummy.ts ProjectRootPath: undefined +Info 190 [00:06:19.000] Projects: /dev/null/inferredProject1* +Info 190 [00:06:20.000] request: { "command": "references", "arguments": { @@ -1015,30 +1015,30 @@ FsWatchesRecursive:: /user/username/projects/myproject/src: {} -Info 191 [16:06:21.000] Finding references to /user/username/projects/myproject/src/main.ts position 50 in project /user/username/projects/myproject/tsconfig-src.json -Info 192 [16:06:22.000] Finding references to /user/username/projects/myproject/src/main.ts position 50 in project /user/username/projects/myproject/tsconfig.json -Info 193 [16:06:23.000] Search path: /user/username/projects/myproject/src -Info 194 [16:06:24.000] For info: /user/username/projects/myproject/src/main.ts :: Config file name: /user/username/projects/myproject/tsconfig.json -Info 195 [16:06:25.000] Search path: /user/username/projects/myproject/src -Info 196 [16:06:26.000] For info: /user/username/projects/myproject/src/main.ts :: Config file name: /user/username/projects/myproject/tsconfig.json -Info 197 [16:06:27.000] Search path: /user/username/projects/myproject/src -Info 198 [16:06:28.000] For info: /user/username/projects/myproject/src/main.ts :: Config file name: /user/username/projects/myproject/tsconfig.json -Info 199 [16:06:29.000] Search path: /user/username/projects/myproject/src/helpers -Info 200 [16:06:30.000] For info: /user/username/projects/myproject/src/helpers/functions.ts :: Config file name: /user/username/projects/myproject/tsconfig.json -Info 201 [16:06:31.000] Search path: /user/username/projects/myproject/src/helpers -Info 202 [16:06:32.000] For info: /user/username/projects/myproject/src/helpers/functions.ts :: Config file name: /user/username/projects/myproject/tsconfig.json -Info 203 [16:06:33.000] Search path: /user/username/projects/myproject/indirect1 -Info 204 [16:06:34.000] For info: /user/username/projects/myproject/indirect1/main.ts :: Config file name: /user/username/projects/myproject/tsconfig.json -Info 205 [16:06:35.000] Creating configuration project /user/username/projects/myproject/tsconfig-indirect1.json -Info 206 [16:06:36.000] event: +Info 191 [00:06:21.000] Finding references to /user/username/projects/myproject/src/main.ts position 50 in project /user/username/projects/myproject/tsconfig-src.json +Info 192 [00:06:22.000] Finding references to /user/username/projects/myproject/src/main.ts position 50 in project /user/username/projects/myproject/tsconfig.json +Info 193 [00:06:23.000] Search path: /user/username/projects/myproject/src +Info 194 [00:06:24.000] For info: /user/username/projects/myproject/src/main.ts :: Config file name: /user/username/projects/myproject/tsconfig.json +Info 195 [00:06:25.000] Search path: /user/username/projects/myproject/src +Info 196 [00:06:26.000] For info: /user/username/projects/myproject/src/main.ts :: Config file name: /user/username/projects/myproject/tsconfig.json +Info 197 [00:06:27.000] Search path: /user/username/projects/myproject/src +Info 198 [00:06:28.000] For info: /user/username/projects/myproject/src/main.ts :: Config file name: /user/username/projects/myproject/tsconfig.json +Info 199 [00:06:29.000] Search path: /user/username/projects/myproject/src/helpers +Info 200 [00:06:30.000] For info: /user/username/projects/myproject/src/helpers/functions.ts :: Config file name: /user/username/projects/myproject/tsconfig.json +Info 201 [00:06:31.000] Search path: /user/username/projects/myproject/src/helpers +Info 202 [00:06:32.000] For info: /user/username/projects/myproject/src/helpers/functions.ts :: Config file name: /user/username/projects/myproject/tsconfig.json +Info 203 [00:06:33.000] Search path: /user/username/projects/myproject/indirect1 +Info 204 [00:06:34.000] For info: /user/username/projects/myproject/indirect1/main.ts :: Config file name: /user/username/projects/myproject/tsconfig.json +Info 205 [00:06:35.000] Creating configuration project /user/username/projects/myproject/tsconfig-indirect1.json +Info 206 [00:06:36.000] event: {"seq":0,"type":"event","event":"projectLoadingStart","body":{"projectName":"/user/username/projects/myproject/tsconfig-indirect1.json","reason":"Creating project referenced in solution /user/username/projects/myproject/tsconfig.json to find possible configured project for original file: /user/username/projects/myproject/indirect1/main.ts"}} -Info 207 [16:06:37.000] Plugins were requested but not running in environment that supports 'require'. Nothing will be loaded -Info 208 [16:06:38.000] Starting updateGraphWorker: Project: /user/username/projects/myproject/tsconfig-indirect1.json -Info 209 [16:06:39.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/tsconfig-indirect1.json WatchType: Type roots -Info 210 [16:06:40.000] 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 211 [16:06:41.000] Finishing updateGraphWorker: Project: /user/username/projects/myproject/tsconfig-indirect1.json Version: 1 structureChanged: true structureIsReused:: Not Elapsed:: *ms -Info 212 [16:06:42.000] Project '/user/username/projects/myproject/tsconfig-indirect1.json' (Configured) -Info 213 [16:06:43.000] Files (4) +Info 207 [00:06:37.000] Plugins were requested but not running in environment that supports 'require'. Nothing will be loaded +Info 208 [00:06:38.000] Starting updateGraphWorker: Project: /user/username/projects/myproject/tsconfig-indirect1.json +Info 209 [00:06:39.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/tsconfig-indirect1.json WatchType: Type roots +Info 210 [00:06:40.000] 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 211 [00:06:41.000] Finishing updateGraphWorker: Project: /user/username/projects/myproject/tsconfig-indirect1.json Version: 1 structureChanged: true structureIsReused:: Not Elapsed:: *ms +Info 212 [00:06:42.000] Project '/user/username/projects/myproject/tsconfig-indirect1.json' (Configured) +Info 213 [00:06:43.000] Files (4) /a/lib/lib.d.ts /user/username/projects/myproject/src/helpers/functions.ts /user/username/projects/myproject/src/main.ts @@ -1054,37 +1054,37 @@ Info 213 [16:06:43.000] Files (4) indirect1/main.ts Part of 'files' list in tsconfig.json -Info 214 [16:06:44.000] ----------------------------------------------- -Info 215 [16:06:45.000] event: +Info 214 [00:06:44.000] ----------------------------------------------- +Info 215 [00:06:45.000] event: {"seq":0,"type":"event","event":"projectLoadingFinish","body":{"projectName":"/user/username/projects/myproject/tsconfig-indirect1.json"}} -Info 216 [16:06:46.000] event: +Info 216 [00:06:46.000] event: {"seq":0,"type":"event","event":"telemetry","body":{"telemetryEventName":"projectInfo","payload":{"projectId":"9ccc3aed1af08832ccb25ea453f7b771199f56af238b53cc428549dbd2d59246","fileStats":{"js":0,"jsSize":0,"jsx":0,"jsxSize":0,"ts":3,"tsSize":134,"tsx":0,"tsxSize":0,"dts":1,"dtsSize":334,"deferred":0,"deferredSize":0},"compilerOptions":{"composite":true,"outDir":"","baseUrl":""},"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 217 [16:06:47.000] Search path: /user/username/projects/myproject/indirect1 -Info 218 [16:06:48.000] For info: /user/username/projects/myproject/indirect1/main.ts :: Config file name: /user/username/projects/myproject/tsconfig.json -Info 219 [16:06:49.000] Search path: /user/username/projects/myproject/indirect1 -Info 220 [16:06:50.000] For info: /user/username/projects/myproject/indirect1/main.ts :: Config file name: /user/username/projects/myproject/tsconfig.json -Info 221 [16:06:51.000] Finding references to /user/username/projects/myproject/indirect1/main.ts position 9 in project /user/username/projects/myproject/tsconfig-indirect1.json -Info 222 [16:06:52.000] Search path: /user/username/projects/myproject/src -Info 223 [16:06:53.000] For info: /user/username/projects/myproject/src/main.ts :: Config file name: /user/username/projects/myproject/tsconfig.json -Info 224 [16:06:54.000] Search path: /user/username/projects/myproject/src -Info 225 [16:06:55.000] For info: /user/username/projects/myproject/src/main.ts :: Config file name: /user/username/projects/myproject/tsconfig.json -Info 226 [16:06:56.000] Search path: /user/username/projects/myproject/src -Info 227 [16:06:57.000] For info: /user/username/projects/myproject/src/main.ts :: Config file name: /user/username/projects/myproject/tsconfig.json -Info 228 [16:06:58.000] Search path: /user/username/projects/myproject/src/helpers -Info 229 [16:06:59.000] For info: /user/username/projects/myproject/src/helpers/functions.ts :: Config file name: /user/username/projects/myproject/tsconfig.json -Info 230 [16:07:00.000] Search path: /user/username/projects/myproject/src/helpers -Info 231 [16:07:01.000] For info: /user/username/projects/myproject/src/helpers/functions.ts :: Config file name: /user/username/projects/myproject/tsconfig.json -Info 232 [16:07:02.000] Creating configuration project /user/username/projects/myproject/tsconfig-indirect2.json -Info 233 [16:07:03.000] event: +Info 217 [00:06:47.000] Search path: /user/username/projects/myproject/indirect1 +Info 218 [00:06:48.000] For info: /user/username/projects/myproject/indirect1/main.ts :: Config file name: /user/username/projects/myproject/tsconfig.json +Info 219 [00:06:49.000] Search path: /user/username/projects/myproject/indirect1 +Info 220 [00:06:50.000] For info: /user/username/projects/myproject/indirect1/main.ts :: Config file name: /user/username/projects/myproject/tsconfig.json +Info 221 [00:06:51.000] Finding references to /user/username/projects/myproject/indirect1/main.ts position 9 in project /user/username/projects/myproject/tsconfig-indirect1.json +Info 222 [00:06:52.000] Search path: /user/username/projects/myproject/src +Info 223 [00:06:53.000] For info: /user/username/projects/myproject/src/main.ts :: Config file name: /user/username/projects/myproject/tsconfig.json +Info 224 [00:06:54.000] Search path: /user/username/projects/myproject/src +Info 225 [00:06:55.000] For info: /user/username/projects/myproject/src/main.ts :: Config file name: /user/username/projects/myproject/tsconfig.json +Info 226 [00:06:56.000] Search path: /user/username/projects/myproject/src +Info 227 [00:06:57.000] For info: /user/username/projects/myproject/src/main.ts :: Config file name: /user/username/projects/myproject/tsconfig.json +Info 228 [00:06:58.000] Search path: /user/username/projects/myproject/src/helpers +Info 229 [00:06:59.000] For info: /user/username/projects/myproject/src/helpers/functions.ts :: Config file name: /user/username/projects/myproject/tsconfig.json +Info 230 [00:07:00.000] Search path: /user/username/projects/myproject/src/helpers +Info 231 [00:07:01.000] For info: /user/username/projects/myproject/src/helpers/functions.ts :: Config file name: /user/username/projects/myproject/tsconfig.json +Info 232 [00:07:02.000] Creating configuration project /user/username/projects/myproject/tsconfig-indirect2.json +Info 233 [00:07:03.000] event: {"seq":0,"type":"event","event":"projectLoadingStart","body":{"projectName":"/user/username/projects/myproject/tsconfig-indirect2.json","reason":"Creating project referenced by : /user/username/projects/myproject/tsconfig.json as it references project /user/username/projects/myproject/tsconfig-src.json"}} -Info 234 [16:07:04.000] Plugins were requested but not running in environment that supports 'require'. Nothing will be loaded -Info 235 [16:07:05.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/indirect2/main.ts 500 undefined WatchType: Closed Script info -Info 236 [16:07:06.000] Starting updateGraphWorker: Project: /user/username/projects/myproject/tsconfig-indirect2.json -Info 237 [16:07:07.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/tsconfig-indirect2.json WatchType: Type roots -Info 238 [16:07:08.000] 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 239 [16:07:09.000] Finishing updateGraphWorker: Project: /user/username/projects/myproject/tsconfig-indirect2.json Version: 1 structureChanged: true structureIsReused:: Not Elapsed:: *ms -Info 240 [16:07:10.000] Project '/user/username/projects/myproject/tsconfig-indirect2.json' (Configured) -Info 241 [16:07:11.000] Files (4) +Info 234 [00:07:04.000] Plugins were requested but not running in environment that supports 'require'. Nothing will be loaded +Info 235 [00:07:05.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/indirect2/main.ts 500 undefined WatchType: Closed Script info +Info 236 [00:07:06.000] Starting updateGraphWorker: Project: /user/username/projects/myproject/tsconfig-indirect2.json +Info 237 [00:07:07.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/tsconfig-indirect2.json WatchType: Type roots +Info 238 [00:07:08.000] 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 239 [00:07:09.000] Finishing updateGraphWorker: Project: /user/username/projects/myproject/tsconfig-indirect2.json Version: 1 structureChanged: true structureIsReused:: Not Elapsed:: *ms +Info 240 [00:07:10.000] Project '/user/username/projects/myproject/tsconfig-indirect2.json' (Configured) +Info 241 [00:07:11.000] Files (4) /a/lib/lib.d.ts /user/username/projects/myproject/src/helpers/functions.ts /user/username/projects/myproject/src/main.ts @@ -1100,24 +1100,24 @@ Info 241 [16:07:11.000] Files (4) indirect2/main.ts Part of 'files' list in tsconfig.json -Info 242 [16:07:12.000] ----------------------------------------------- -Info 243 [16:07:13.000] event: +Info 242 [00:07:12.000] ----------------------------------------------- +Info 243 [00:07:13.000] event: {"seq":0,"type":"event","event":"projectLoadingFinish","body":{"projectName":"/user/username/projects/myproject/tsconfig-indirect2.json"}} -Info 244 [16:07:14.000] event: +Info 244 [00:07:14.000] event: {"seq":0,"type":"event","event":"telemetry","body":{"telemetryEventName":"projectInfo","payload":{"projectId":"d9a040bddd6b85b85abd507a988a4b809b1515b5e61257ea3f8263da59589565","fileStats":{"js":0,"jsSize":0,"jsx":0,"jsxSize":0,"ts":3,"tsSize":134,"tsx":0,"tsxSize":0,"dts":1,"dtsSize":334,"deferred":0,"deferredSize":0},"compilerOptions":{"composite":true,"outDir":"","baseUrl":""},"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 245 [16:07:15.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/target/src/helpers/functions.d.ts 500 undefined WatchType: Closed Script info -Info 246 [16:07:16.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/target/src/helpers/functions.d.ts.map 500 undefined WatchType: Closed Script info -Info 247 [16:07:17.000] Finding references to /user/username/projects/myproject/src/helpers/functions.ts position 13 in project /user/username/projects/myproject/tsconfig-indirect2.json -Info 248 [16:07:18.000] Search path: /user/username/projects/myproject/src/helpers -Info 249 [16:07:19.000] For info: /user/username/projects/myproject/src/helpers/functions.ts :: Config file name: /user/username/projects/myproject/tsconfig.json -Info 250 [16:07:20.000] Search path: /user/username/projects/myproject/src/helpers -Info 251 [16:07:21.000] For info: /user/username/projects/myproject/src/helpers/functions.ts :: Config file name: /user/username/projects/myproject/tsconfig.json -Info 252 [16:07:22.000] Search path: /user/username/projects/myproject/src -Info 253 [16:07:23.000] For info: /user/username/projects/myproject/src/main.ts :: Config file name: /user/username/projects/myproject/tsconfig.json -Info 254 [16:07:24.000] Search path: /user/username/projects/myproject/src -Info 255 [16:07:25.000] For info: /user/username/projects/myproject/src/main.ts :: Config file name: /user/username/projects/myproject/tsconfig.json -Info 256 [16:07:26.000] Search path: /user/username/projects/myproject/src -Info 257 [16:07:27.000] For info: /user/username/projects/myproject/src/main.ts :: Config file name: /user/username/projects/myproject/tsconfig.json +Info 245 [00:07:15.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/target/src/helpers/functions.d.ts 500 undefined WatchType: Closed Script info +Info 246 [00:07:16.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/target/src/helpers/functions.d.ts.map 500 undefined WatchType: Closed Script info +Info 247 [00:07:17.000] Finding references to /user/username/projects/myproject/src/helpers/functions.ts position 13 in project /user/username/projects/myproject/tsconfig-indirect2.json +Info 248 [00:07:18.000] Search path: /user/username/projects/myproject/src/helpers +Info 249 [00:07:19.000] For info: /user/username/projects/myproject/src/helpers/functions.ts :: Config file name: /user/username/projects/myproject/tsconfig.json +Info 250 [00:07:20.000] Search path: /user/username/projects/myproject/src/helpers +Info 251 [00:07:21.000] For info: /user/username/projects/myproject/src/helpers/functions.ts :: Config file name: /user/username/projects/myproject/tsconfig.json +Info 252 [00:07:22.000] Search path: /user/username/projects/myproject/src +Info 253 [00:07:23.000] For info: /user/username/projects/myproject/src/main.ts :: Config file name: /user/username/projects/myproject/tsconfig.json +Info 254 [00:07:24.000] Search path: /user/username/projects/myproject/src +Info 255 [00:07:25.000] For info: /user/username/projects/myproject/src/main.ts :: Config file name: /user/username/projects/myproject/tsconfig.json +Info 256 [00:07:26.000] Search path: /user/username/projects/myproject/src +Info 257 [00:07:27.000] For info: /user/username/projects/myproject/src/main.ts :: Config file name: /user/username/projects/myproject/tsconfig.json After request PolledWatches:: @@ -1154,7 +1154,7 @@ FsWatchesRecursive:: /user/username/projects/myproject/src: {} -Info 258 [16:07:28.000] response: +Info 258 [00:07:28.000] response: { "response": { "refs": [ @@ -1303,59 +1303,59 @@ Info 258 [16:07:28.000] response: }, "responseRequired": true } -Info 259 [16:07:29.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/src/main.ts 500 undefined WatchType: Closed Script info -Info 260 [16:07:30.000] Project '/user/username/projects/myproject/tsconfig.json' (Configured) -Info 260 [16:07:31.000] Files (5) - -Info 260 [16:07:32.000] ----------------------------------------------- -Info 260 [16:07:33.000] Project '/user/username/projects/myproject/tsconfig-src.json' (Configured) -Info 260 [16:07:34.000] Files (3) - -Info 260 [16:07:35.000] ----------------------------------------------- -Info 260 [16:07:36.000] Project '/user/username/projects/myproject/tsconfig-indirect1.json' (Configured) -Info 260 [16:07:37.000] Files (4) - -Info 260 [16:07:38.000] ----------------------------------------------- -Info 260 [16:07:39.000] Project '/user/username/projects/myproject/tsconfig-indirect2.json' (Configured) -Info 260 [16:07:40.000] Files (4) - -Info 260 [16:07:41.000] ----------------------------------------------- -Info 260 [16:07:42.000] Project '/dev/null/inferredProject1*' (Inferred) -Info 260 [16:07:43.000] Files (2) - -Info 260 [16:07:44.000] ----------------------------------------------- -Info 260 [16:07:45.000] Open files: -Info 260 [16:07:46.000] FileName: /dummy/dummy.ts ProjectRootPath: undefined -Info 260 [16:07:47.000] Projects: /dev/null/inferredProject1* -Info 260 [16:07:48.000] FileWatcher:: Added:: WatchInfo: /dummy/dummy.ts 500 undefined WatchType: Closed Script info -Info 261 [16:07:49.000] Project '/user/username/projects/myproject/tsconfig.json' (Configured) -Info 261 [16:07:50.000] Files (5) - -Info 261 [16:07:51.000] ----------------------------------------------- -Info 261 [16:07:52.000] Project '/user/username/projects/myproject/tsconfig-src.json' (Configured) -Info 261 [16:07:53.000] Files (3) - -Info 261 [16:07:54.000] ----------------------------------------------- -Info 261 [16:07:55.000] Project '/user/username/projects/myproject/tsconfig-indirect1.json' (Configured) -Info 261 [16:07:56.000] Files (4) - -Info 261 [16:07:57.000] ----------------------------------------------- -Info 261 [16:07:58.000] Project '/user/username/projects/myproject/tsconfig-indirect2.json' (Configured) -Info 261 [16:07:59.000] Files (4) - -Info 261 [16:08:00.000] ----------------------------------------------- -Info 261 [16:08:01.000] Project '/dev/null/inferredProject1*' (Inferred) -Info 261 [16:08:02.000] Files (2) - -Info 261 [16:08:03.000] ----------------------------------------------- -Info 261 [16:08:04.000] Open files: -Info 261 [16:08:05.000] Search path: /user/username/projects/myproject/indirect3 -Info 262 [16:08:06.000] For info: /user/username/projects/myproject/indirect3/main.ts :: Config file name: /user/username/projects/myproject/indirect3/tsconfig.json -Info 263 [16:08:07.000] Creating configuration project /user/username/projects/myproject/indirect3/tsconfig.json -Info 264 [16:08:08.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/indirect3/tsconfig.json 2000 undefined Project: /user/username/projects/myproject/indirect3/tsconfig.json WatchType: Config file -Info 265 [16:08:09.000] event: +Info 259 [00:07:29.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/src/main.ts 500 undefined WatchType: Closed Script info +Info 260 [00:07:30.000] Project '/user/username/projects/myproject/tsconfig.json' (Configured) +Info 260 [00:07:31.000] Files (5) + +Info 260 [00:07:32.000] ----------------------------------------------- +Info 260 [00:07:33.000] Project '/user/username/projects/myproject/tsconfig-src.json' (Configured) +Info 260 [00:07:34.000] Files (3) + +Info 260 [00:07:35.000] ----------------------------------------------- +Info 260 [00:07:36.000] Project '/user/username/projects/myproject/tsconfig-indirect1.json' (Configured) +Info 260 [00:07:37.000] Files (4) + +Info 260 [00:07:38.000] ----------------------------------------------- +Info 260 [00:07:39.000] Project '/user/username/projects/myproject/tsconfig-indirect2.json' (Configured) +Info 260 [00:07:40.000] Files (4) + +Info 260 [00:07:41.000] ----------------------------------------------- +Info 260 [00:07:42.000] Project '/dev/null/inferredProject1*' (Inferred) +Info 260 [00:07:43.000] Files (2) + +Info 260 [00:07:44.000] ----------------------------------------------- +Info 260 [00:07:45.000] Open files: +Info 260 [00:07:46.000] FileName: /dummy/dummy.ts ProjectRootPath: undefined +Info 260 [00:07:47.000] Projects: /dev/null/inferredProject1* +Info 260 [00:07:48.000] FileWatcher:: Added:: WatchInfo: /dummy/dummy.ts 500 undefined WatchType: Closed Script info +Info 261 [00:07:49.000] Project '/user/username/projects/myproject/tsconfig.json' (Configured) +Info 261 [00:07:50.000] Files (5) + +Info 261 [00:07:51.000] ----------------------------------------------- +Info 261 [00:07:52.000] Project '/user/username/projects/myproject/tsconfig-src.json' (Configured) +Info 261 [00:07:53.000] Files (3) + +Info 261 [00:07:54.000] ----------------------------------------------- +Info 261 [00:07:55.000] Project '/user/username/projects/myproject/tsconfig-indirect1.json' (Configured) +Info 261 [00:07:56.000] Files (4) + +Info 261 [00:07:57.000] ----------------------------------------------- +Info 261 [00:07:58.000] Project '/user/username/projects/myproject/tsconfig-indirect2.json' (Configured) +Info 261 [00:07:59.000] Files (4) + +Info 261 [00:08:00.000] ----------------------------------------------- +Info 261 [00:08:01.000] Project '/dev/null/inferredProject1*' (Inferred) +Info 261 [00:08:02.000] Files (2) + +Info 261 [00:08:03.000] ----------------------------------------------- +Info 261 [00:08:04.000] Open files: +Info 261 [00:08:05.000] Search path: /user/username/projects/myproject/indirect3 +Info 262 [00:08:06.000] For info: /user/username/projects/myproject/indirect3/main.ts :: Config file name: /user/username/projects/myproject/indirect3/tsconfig.json +Info 263 [00:08:07.000] Creating configuration project /user/username/projects/myproject/indirect3/tsconfig.json +Info 264 [00:08:08.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/indirect3/tsconfig.json 2000 undefined Project: /user/username/projects/myproject/indirect3/tsconfig.json WatchType: Config file +Info 265 [00:08:09.000] event: {"seq":0,"type":"event","event":"projectLoadingStart","body":{"projectName":"/user/username/projects/myproject/indirect3/tsconfig.json","reason":"Creating possible configured project for /user/username/projects/myproject/indirect3/main.ts to open"}} -Info 266 [16:08:10.000] Config: /user/username/projects/myproject/indirect3/tsconfig.json : { +Info 266 [00:08:10.000] Config: /user/username/projects/myproject/indirect3/tsconfig.json : { "rootNames": [ "/user/username/projects/myproject/indirect3/main.ts" ], @@ -1364,20 +1364,20 @@ Info 266 [16:08:10.000] Config: /user/username/projects/myproject/indirect3/tsc "configFilePath": "/user/username/projects/myproject/indirect3/tsconfig.json" } } -Info 267 [16:08:11.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/indirect3 1 undefined Config: /user/username/projects/myproject/indirect3/tsconfig.json WatchType: Wild card directory -Info 268 [16:08:12.000] 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 269 [16:08:13.000] Plugins were requested but not running in environment that supports 'require'. Nothing will be loaded -Info 270 [16:08:14.000] Starting updateGraphWorker: Project: /user/username/projects/myproject/indirect3/tsconfig.json -Info 271 [16:08:15.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/target/src/main.d.ts 500 undefined WatchType: Closed Script info -Info 272 [16:08:16.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/target 1 undefined Project: /user/username/projects/myproject/indirect3/tsconfig.json WatchType: Failed Lookup Locations -Info 273 [16:08:17.000] 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 274 [16:08:18.000] 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 275 [16:08:19.000] 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 276 [16:08:20.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/indirect3/tsconfig.json WatchType: Type roots -Info 277 [16:08:21.000] 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 278 [16:08:22.000] Finishing updateGraphWorker: Project: /user/username/projects/myproject/indirect3/tsconfig.json Version: 1 structureChanged: true structureIsReused:: Not Elapsed:: *ms -Info 279 [16:08:23.000] Project '/user/username/projects/myproject/indirect3/tsconfig.json' (Configured) -Info 280 [16:08:24.000] Files (4) +Info 267 [00:08:11.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/indirect3 1 undefined Config: /user/username/projects/myproject/indirect3/tsconfig.json WatchType: Wild card directory +Info 268 [00:08:12.000] 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 269 [00:08:13.000] Plugins were requested but not running in environment that supports 'require'. Nothing will be loaded +Info 270 [00:08:14.000] Starting updateGraphWorker: Project: /user/username/projects/myproject/indirect3/tsconfig.json +Info 271 [00:08:15.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/target/src/main.d.ts 500 undefined WatchType: Closed Script info +Info 272 [00:08:16.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/target 1 undefined Project: /user/username/projects/myproject/indirect3/tsconfig.json WatchType: Failed Lookup Locations +Info 273 [00:08:17.000] 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 274 [00:08:18.000] 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 275 [00:08:19.000] 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 276 [00:08:20.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/indirect3/tsconfig.json WatchType: Type roots +Info 277 [00:08:21.000] 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 278 [00:08:22.000] Finishing updateGraphWorker: Project: /user/username/projects/myproject/indirect3/tsconfig.json Version: 1 structureChanged: true structureIsReused:: Not Elapsed:: *ms +Info 279 [00:08:23.000] Project '/user/username/projects/myproject/indirect3/tsconfig.json' (Configured) +Info 280 [00:08:24.000] Files (4) /a/lib/lib.d.ts /user/username/projects/myproject/target/src/helpers/functions.d.ts /user/username/projects/myproject/target/src/main.d.ts @@ -1393,16 +1393,16 @@ Info 280 [16:08:24.000] Files (4) main.ts Matched by default include pattern '**/*' -Info 281 [16:08:25.000] ----------------------------------------------- -Info 282 [16:08:26.000] event: +Info 281 [00:08:25.000] ----------------------------------------------- +Info 282 [00:08:26.000] event: {"seq":0,"type":"event","event":"projectLoadingFinish","body":{"projectName":"/user/username/projects/myproject/indirect3/tsconfig.json"}} -Info 283 [16:08:27.000] event: +Info 283 [00:08:27.000] event: {"seq":0,"type":"event","event":"telemetry","body":{"telemetryEventName":"projectInfo","payload":{"projectId":"5b0817f69b6871821661b976aa73f4f2533b37c5f4b920541094c2d727d0dc39","fileStats":{"js":0,"jsSize":0,"jsx":0,"jsxSize":0,"ts":1,"tsSize":57,"tsx":0,"tsxSize":0,"dts":3,"dtsSize":494,"deferred":0,"deferredSize":0},"compilerOptions":{"baseUrl":""},"typeAcquisition":{"enable":false,"include":false,"exclude":false},"extends":false,"files":false,"include":false,"exclude":false,"compileOnSave":false,"configFileName":"tsconfig.json","projectType":"configured","languageServiceEnabled":true,"version":"FakeVersion"}}} -Info 284 [16:08:28.000] event: +Info 284 [00:08:28.000] event: {"seq":0,"type":"event","event":"configFileDiag","body":{"triggerFile":"/user/username/projects/myproject/indirect3/main.ts","configFile":"/user/username/projects/myproject/indirect3/tsconfig.json","diagnostics":[]}} -Info 285 [16:08:29.000] `remove Project:: -Info 286 [16:08:30.000] Project '/user/username/projects/myproject/tsconfig.json' (Configured) -Info 287 [16:08:31.000] Files (5) +Info 285 [00:08:29.000] `remove Project:: +Info 286 [00:08:30.000] Project '/user/username/projects/myproject/tsconfig.json' (Configured) +Info 287 [00:08:31.000] Files (5) /a/lib/lib.d.ts /user/username/projects/myproject/src/helpers/functions.ts /user/username/projects/myproject/src/main.ts @@ -1421,13 +1421,13 @@ Info 287 [16:08:31.000] Files (5) own/main.ts Part of 'files' list in tsconfig.json -Info 288 [16:08:32.000] ----------------------------------------------- -Info 289 [16:08:33.000] FileWatcher:: Close:: WatchInfo: /user/username/projects/myproject/tsconfig.json 2000 undefined Project: /user/username/projects/myproject/tsconfig.json WatchType: Config file -Info 290 [16:08:34.000] DirectoryWatcher:: Close:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/tsconfig.json WatchType: Type roots -Info 291 [16:08:35.000] 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 292 [16:08:36.000] `remove Project:: -Info 293 [16:08:37.000] Project '/user/username/projects/myproject/tsconfig-src.json' (Configured) -Info 294 [16:08:38.000] Files (3) +Info 288 [00:08:32.000] ----------------------------------------------- +Info 289 [00:08:33.000] FileWatcher:: Close:: WatchInfo: /user/username/projects/myproject/tsconfig.json 2000 undefined Project: /user/username/projects/myproject/tsconfig.json WatchType: Config file +Info 290 [00:08:34.000] DirectoryWatcher:: Close:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/tsconfig.json WatchType: Type roots +Info 291 [00:08:35.000] 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 292 [00:08:36.000] `remove Project:: +Info 293 [00:08:37.000] Project '/user/username/projects/myproject/tsconfig-src.json' (Configured) +Info 294 [00:08:38.000] Files (3) /a/lib/lib.d.ts /user/username/projects/myproject/src/helpers/functions.ts /user/username/projects/myproject/src/main.ts @@ -1441,12 +1441,12 @@ Info 294 [16:08:38.000] Files (3) src/main.ts Matched by include pattern './src/**/*' in 'tsconfig-src.json' -Info 295 [16:08:39.000] ----------------------------------------------- -Info 296 [16:08:40.000] DirectoryWatcher:: Close:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/tsconfig-src.json WatchType: Type roots -Info 297 [16:08:41.000] 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 298 [16:08:42.000] `remove Project:: -Info 299 [16:08:43.000] Project '/user/username/projects/myproject/tsconfig-indirect1.json' (Configured) -Info 300 [16:08:44.000] Files (4) +Info 295 [00:08:39.000] ----------------------------------------------- +Info 296 [00:08:40.000] DirectoryWatcher:: Close:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/tsconfig-src.json WatchType: Type roots +Info 297 [00:08:41.000] 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 298 [00:08:42.000] `remove Project:: +Info 299 [00:08:43.000] Project '/user/username/projects/myproject/tsconfig-indirect1.json' (Configured) +Info 300 [00:08:44.000] Files (4) /a/lib/lib.d.ts /user/username/projects/myproject/src/helpers/functions.ts /user/username/projects/myproject/src/main.ts @@ -1462,13 +1462,13 @@ Info 300 [16:08:44.000] Files (4) indirect1/main.ts Part of 'files' list in tsconfig.json -Info 301 [16:08:45.000] ----------------------------------------------- -Info 302 [16:08:46.000] FileWatcher:: Close:: WatchInfo: /user/username/projects/myproject/tsconfig-indirect1.json 2000 undefined Project: /user/username/projects/myproject/tsconfig.json WatchType: Config file -Info 303 [16:08:47.000] DirectoryWatcher:: Close:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/tsconfig-indirect1.json WatchType: Type roots -Info 304 [16:08:48.000] 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 305 [16:08:49.000] `remove Project:: -Info 306 [16:08:50.000] Project '/user/username/projects/myproject/tsconfig-indirect2.json' (Configured) -Info 307 [16:08:51.000] Files (4) +Info 301 [00:08:45.000] ----------------------------------------------- +Info 302 [00:08:46.000] FileWatcher:: Close:: WatchInfo: /user/username/projects/myproject/tsconfig-indirect1.json 2000 undefined Project: /user/username/projects/myproject/tsconfig.json WatchType: Config file +Info 303 [00:08:47.000] DirectoryWatcher:: Close:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/tsconfig-indirect1.json WatchType: Type roots +Info 304 [00:08:48.000] 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 305 [00:08:49.000] `remove Project:: +Info 306 [00:08:50.000] Project '/user/username/projects/myproject/tsconfig-indirect2.json' (Configured) +Info 307 [00:08:51.000] Files (4) /a/lib/lib.d.ts /user/username/projects/myproject/src/helpers/functions.ts /user/username/projects/myproject/src/main.ts @@ -1484,16 +1484,16 @@ Info 307 [16:08:51.000] Files (4) indirect2/main.ts Part of 'files' list in tsconfig.json -Info 308 [16:08:52.000] ----------------------------------------------- -Info 309 [16:08:53.000] DirectoryWatcher:: Close:: WatchInfo: /user/username/projects/myproject/src 1 undefined Config: /user/username/projects/myproject/tsconfig-src.json WatchType: Wild card directory -Info 310 [16:08:54.000] 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 311 [16:08:55.000] FileWatcher:: Close:: WatchInfo: /user/username/projects/myproject/tsconfig-src.json 2000 undefined Project: /user/username/projects/myproject/tsconfig.json WatchType: Config file -Info 312 [16:08:56.000] FileWatcher:: Close:: WatchInfo: /user/username/projects/myproject/tsconfig-indirect2.json 2000 undefined Project: /user/username/projects/myproject/tsconfig.json WatchType: Config file -Info 313 [16:08:57.000] DirectoryWatcher:: Close:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/tsconfig-indirect2.json WatchType: Type roots -Info 314 [16:08:58.000] 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 315 [16:08:59.000] `remove Project:: -Info 316 [16:09:00.000] Project '/dev/null/inferredProject1*' (Inferred) -Info 317 [16:09:01.000] Files (2) +Info 308 [00:08:52.000] ----------------------------------------------- +Info 309 [00:08:53.000] DirectoryWatcher:: Close:: WatchInfo: /user/username/projects/myproject/src 1 undefined Config: /user/username/projects/myproject/tsconfig-src.json WatchType: Wild card directory +Info 310 [00:08:54.000] 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 311 [00:08:55.000] FileWatcher:: Close:: WatchInfo: /user/username/projects/myproject/tsconfig-src.json 2000 undefined Project: /user/username/projects/myproject/tsconfig.json WatchType: Config file +Info 312 [00:08:56.000] FileWatcher:: Close:: WatchInfo: /user/username/projects/myproject/tsconfig-indirect2.json 2000 undefined Project: /user/username/projects/myproject/tsconfig.json WatchType: Config file +Info 313 [00:08:57.000] DirectoryWatcher:: Close:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/tsconfig-indirect2.json WatchType: Type roots +Info 314 [00:08:58.000] 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 315 [00:08:59.000] `remove Project:: +Info 316 [00:09:00.000] Project '/dev/null/inferredProject1*' (Inferred) +Info 317 [00:09:01.000] Files (2) /a/lib/lib.d.ts /dummy/dummy.ts @@ -1503,22 +1503,22 @@ Info 317 [16:09:01.000] Files (2) dummy.ts Root file specified for compilation -Info 318 [16:09:02.000] ----------------------------------------------- -Info 319 [16:09:03.000] DirectoryWatcher:: Close:: WatchInfo: /dummy/node_modules/@types 1 undefined Project: /dev/null/inferredProject1* WatchType: Type roots -Info 320 [16:09:04.000] Elapsed:: *ms DirectoryWatcher:: Close:: WatchInfo: /dummy/node_modules/@types 1 undefined Project: /dev/null/inferredProject1* WatchType: Type roots -Info 321 [16:09:05.000] FileWatcher:: Close:: WatchInfo: /dummy/dummy.ts 500 undefined WatchType: Closed Script info -Info 322 [16:09:06.000] FileWatcher:: Close:: WatchInfo: /user/username/projects/myproject/src/main.ts 500 undefined WatchType: Closed Script info -Info 323 [16:09:07.000] FileWatcher:: Close:: WatchInfo: /user/username/projects/myproject/own/main.ts 500 undefined WatchType: Closed Script info -Info 324 [16:09:08.000] FileWatcher:: Close:: WatchInfo: /user/username/projects/myproject/indirect1/main.ts 500 undefined WatchType: Closed Script info -Info 325 [16:09:09.000] FileWatcher:: Close:: WatchInfo: /user/username/projects/myproject/indirect2/main.ts 500 undefined WatchType: Closed Script info -Info 326 [16:09:10.000] Project '/user/username/projects/myproject/indirect3/tsconfig.json' (Configured) -Info 326 [16:09:11.000] Files (4) - -Info 326 [16:09:12.000] ----------------------------------------------- -Info 326 [16:09:13.000] Open files: -Info 326 [16:09:14.000] FileName: /user/username/projects/myproject/indirect3/main.ts ProjectRootPath: undefined -Info 326 [16:09:15.000] Projects: /user/username/projects/myproject/indirect3/tsconfig.json -Info 326 [16:09:16.000] request: +Info 318 [00:09:02.000] ----------------------------------------------- +Info 319 [00:09:03.000] DirectoryWatcher:: Close:: WatchInfo: /dummy/node_modules/@types 1 undefined Project: /dev/null/inferredProject1* WatchType: Type roots +Info 320 [00:09:04.000] Elapsed:: *ms DirectoryWatcher:: Close:: WatchInfo: /dummy/node_modules/@types 1 undefined Project: /dev/null/inferredProject1* WatchType: Type roots +Info 321 [00:09:05.000] FileWatcher:: Close:: WatchInfo: /dummy/dummy.ts 500 undefined WatchType: Closed Script info +Info 322 [00:09:06.000] FileWatcher:: Close:: WatchInfo: /user/username/projects/myproject/src/main.ts 500 undefined WatchType: Closed Script info +Info 323 [00:09:07.000] FileWatcher:: Close:: WatchInfo: /user/username/projects/myproject/own/main.ts 500 undefined WatchType: Closed Script info +Info 324 [00:09:08.000] FileWatcher:: Close:: WatchInfo: /user/username/projects/myproject/indirect1/main.ts 500 undefined WatchType: Closed Script info +Info 325 [00:09:09.000] FileWatcher:: Close:: WatchInfo: /user/username/projects/myproject/indirect2/main.ts 500 undefined WatchType: Closed Script info +Info 326 [00:09:10.000] Project '/user/username/projects/myproject/indirect3/tsconfig.json' (Configured) +Info 326 [00:09:11.000] Files (4) + +Info 326 [00:09:12.000] ----------------------------------------------- +Info 326 [00:09:13.000] Open files: +Info 326 [00:09:14.000] FileName: /user/username/projects/myproject/indirect3/main.ts ProjectRootPath: undefined +Info 326 [00:09:15.000] Projects: /user/username/projects/myproject/indirect3/tsconfig.json +Info 326 [00:09:16.000] request: { "command": "references", "arguments": { @@ -1557,16 +1557,16 @@ FsWatchesRecursive:: /user/username/projects/myproject/target: {} -Info 327 [16:09:17.000] Finding references to /user/username/projects/myproject/indirect3/main.ts position 9 in project /user/username/projects/myproject/indirect3/tsconfig.json -Info 328 [16:09:18.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/target/src/main.d.ts.map 500 undefined WatchType: Closed Script info -Info 329 [16:09:19.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/src/main.ts 500 undefined WatchType: Closed Script info -Info 330 [16:09:20.000] Search path: /user/username/projects/myproject/src -Info 331 [16:09:21.000] For info: /user/username/projects/myproject/src/main.ts :: Config file name: /user/username/projects/myproject/tsconfig.json -Info 332 [16:09:22.000] Creating configuration project /user/username/projects/myproject/tsconfig.json -Info 333 [16:09:23.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/tsconfig.json 2000 undefined Project: /user/username/projects/myproject/tsconfig.json WatchType: Config file -Info 334 [16:09:24.000] event: +Info 327 [00:09:17.000] Finding references to /user/username/projects/myproject/indirect3/main.ts position 9 in project /user/username/projects/myproject/indirect3/tsconfig.json +Info 328 [00:09:18.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/target/src/main.d.ts.map 500 undefined WatchType: Closed Script info +Info 329 [00:09:19.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/src/main.ts 500 undefined WatchType: Closed Script info +Info 330 [00:09:20.000] Search path: /user/username/projects/myproject/src +Info 331 [00:09:21.000] For info: /user/username/projects/myproject/src/main.ts :: Config file name: /user/username/projects/myproject/tsconfig.json +Info 332 [00:09:22.000] Creating configuration project /user/username/projects/myproject/tsconfig.json +Info 333 [00:09:23.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/tsconfig.json 2000 undefined Project: /user/username/projects/myproject/tsconfig.json WatchType: Config file +Info 334 [00:09:24.000] event: {"seq":0,"type":"event","event":"projectLoadingStart","body":{"projectName":"/user/username/projects/myproject/tsconfig.json","reason":"Creating project for original file: /user/username/projects/myproject/src/main.ts for location: /user/username/projects/myproject/target/src/main.d.ts"}} -Info 335 [16:09:25.000] Config: /user/username/projects/myproject/tsconfig.json : { +Info 335 [00:09:25.000] Config: /user/username/projects/myproject/tsconfig.json : { "rootNames": [ "/user/username/projects/myproject/own/main.ts" ], @@ -1586,10 +1586,10 @@ Info 335 [16:09:25.000] Config: /user/username/projects/myproject/tsconfig.json } ] } -Info 336 [16:09:26.000] Plugins were requested but not running in environment that supports 'require'. Nothing will be loaded -Info 337 [16:09:27.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/own/main.ts 500 undefined WatchType: Closed Script info -Info 338 [16:09:28.000] Starting updateGraphWorker: Project: /user/username/projects/myproject/tsconfig.json -Info 339 [16:09:29.000] Config: /user/username/projects/myproject/tsconfig-indirect1.json : { +Info 336 [00:09:26.000] Plugins were requested but not running in environment that supports 'require'. Nothing will be loaded +Info 337 [00:09:27.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/own/main.ts 500 undefined WatchType: Closed Script info +Info 338 [00:09:28.000] Starting updateGraphWorker: Project: /user/username/projects/myproject/tsconfig.json +Info 339 [00:09:29.000] Config: /user/username/projects/myproject/tsconfig-indirect1.json : { "rootNames": [ "/user/username/projects/myproject/indirect1/main.ts" ], @@ -1606,8 +1606,8 @@ Info 339 [16:09:29.000] Config: /user/username/projects/myproject/tsconfig-indi } ] } -Info 340 [16:09:30.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/tsconfig-indirect1.json 2000 undefined Project: /user/username/projects/myproject/tsconfig.json WatchType: Config file -Info 341 [16:09:31.000] Config: /user/username/projects/myproject/tsconfig-src.json : { +Info 340 [00:09:30.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/tsconfig-indirect1.json 2000 undefined Project: /user/username/projects/myproject/tsconfig.json WatchType: Config file +Info 341 [00:09:31.000] Config: /user/username/projects/myproject/tsconfig-src.json : { "rootNames": [ "/user/username/projects/myproject/src/main.ts", "/user/username/projects/myproject/src/helpers/functions.ts" @@ -1619,10 +1619,10 @@ Info 341 [16:09:31.000] Config: /user/username/projects/myproject/tsconfig-src. "configFilePath": "/user/username/projects/myproject/tsconfig-src.json" } } -Info 342 [16:09:32.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/tsconfig-src.json 2000 undefined Project: /user/username/projects/myproject/tsconfig.json WatchType: Config file -Info 343 [16:09:33.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/src 1 undefined Config: /user/username/projects/myproject/tsconfig-src.json WatchType: Wild card directory -Info 344 [16:09:34.000] 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 345 [16:09:35.000] Config: /user/username/projects/myproject/tsconfig-indirect2.json : { +Info 342 [00:09:32.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/tsconfig-src.json 2000 undefined Project: /user/username/projects/myproject/tsconfig.json WatchType: Config file +Info 343 [00:09:33.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/src 1 undefined Config: /user/username/projects/myproject/tsconfig-src.json WatchType: Wild card directory +Info 344 [00:09:34.000] 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 345 [00:09:35.000] Config: /user/username/projects/myproject/tsconfig-indirect2.json : { "rootNames": [ "/user/username/projects/myproject/indirect2/main.ts" ], @@ -1639,13 +1639,13 @@ Info 345 [16:09:35.000] Config: /user/username/projects/myproject/tsconfig-indi } ] } -Info 346 [16:09:36.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/tsconfig-indirect2.json 2000 undefined Project: /user/username/projects/myproject/tsconfig.json WatchType: Config file -Info 347 [16:09:37.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/indirect1/main.ts 500 undefined WatchType: Closed Script info -Info 348 [16:09:38.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/tsconfig.json WatchType: Type roots -Info 349 [16:09:39.000] 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 350 [16:09:40.000] Finishing updateGraphWorker: Project: /user/username/projects/myproject/tsconfig.json Version: 1 structureChanged: true structureIsReused:: Not Elapsed:: *ms -Info 351 [16:09:41.000] Project '/user/username/projects/myproject/tsconfig.json' (Configured) -Info 352 [16:09:42.000] Files (5) +Info 346 [00:09:36.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/tsconfig-indirect2.json 2000 undefined Project: /user/username/projects/myproject/tsconfig.json WatchType: Config file +Info 347 [00:09:37.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/indirect1/main.ts 500 undefined WatchType: Closed Script info +Info 348 [00:09:38.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/tsconfig.json WatchType: Type roots +Info 349 [00:09:39.000] 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 350 [00:09:40.000] Finishing updateGraphWorker: Project: /user/username/projects/myproject/tsconfig.json Version: 1 structureChanged: true structureIsReused:: Not Elapsed:: *ms +Info 351 [00:09:41.000] Project '/user/username/projects/myproject/tsconfig.json' (Configured) +Info 352 [00:09:42.000] Files (5) /a/lib/lib.d.ts /user/username/projects/myproject/src/helpers/functions.ts /user/username/projects/myproject/src/main.ts @@ -1664,19 +1664,19 @@ Info 352 [16:09:42.000] Files (5) own/main.ts Part of 'files' list in tsconfig.json -Info 353 [16:09:43.000] ----------------------------------------------- -Info 354 [16:09:44.000] event: +Info 353 [00:09:43.000] ----------------------------------------------- +Info 354 [00:09:44.000] event: {"seq":0,"type":"event","event":"projectLoadingFinish","body":{"projectName":"/user/username/projects/myproject/tsconfig.json"}} -Info 355 [16:09:45.000] Creating configuration project /user/username/projects/myproject/tsconfig-src.json -Info 356 [16:09:46.000] event: +Info 355 [00:09:45.000] Creating configuration project /user/username/projects/myproject/tsconfig-src.json +Info 356 [00:09:46.000] event: {"seq":0,"type":"event","event":"projectLoadingStart","body":{"projectName":"/user/username/projects/myproject/tsconfig-src.json","reason":"Creating project referenced in solution /user/username/projects/myproject/tsconfig.json to find possible configured project for original file: /user/username/projects/myproject/src/main.ts for location: /user/username/projects/myproject/target/src/main.d.ts"}} -Info 357 [16:09:47.000] Plugins were requested but not running in environment that supports 'require'. Nothing will be loaded -Info 358 [16:09:48.000] Starting updateGraphWorker: Project: /user/username/projects/myproject/tsconfig-src.json -Info 359 [16:09:49.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/tsconfig-src.json WatchType: Type roots -Info 360 [16:09:50.000] 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 361 [16:09:51.000] Finishing updateGraphWorker: Project: /user/username/projects/myproject/tsconfig-src.json Version: 1 structureChanged: true structureIsReused:: Not Elapsed:: *ms -Info 362 [16:09:52.000] Project '/user/username/projects/myproject/tsconfig-src.json' (Configured) -Info 363 [16:09:53.000] Files (3) +Info 357 [00:09:47.000] Plugins were requested but not running in environment that supports 'require'. Nothing will be loaded +Info 358 [00:09:48.000] Starting updateGraphWorker: Project: /user/username/projects/myproject/tsconfig-src.json +Info 359 [00:09:49.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/tsconfig-src.json WatchType: Type roots +Info 360 [00:09:50.000] 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 361 [00:09:51.000] Finishing updateGraphWorker: Project: /user/username/projects/myproject/tsconfig-src.json Version: 1 structureChanged: true structureIsReused:: Not Elapsed:: *ms +Info 362 [00:09:52.000] Project '/user/username/projects/myproject/tsconfig-src.json' (Configured) +Info 363 [00:09:53.000] Files (3) /a/lib/lib.d.ts /user/username/projects/myproject/src/helpers/functions.ts /user/username/projects/myproject/src/main.ts @@ -1690,40 +1690,40 @@ Info 363 [16:09:53.000] Files (3) src/main.ts Matched by include pattern './src/**/*' in 'tsconfig-src.json' -Info 364 [16:09:54.000] ----------------------------------------------- -Info 365 [16:09:55.000] event: +Info 364 [00:09:54.000] ----------------------------------------------- +Info 365 [00:09:55.000] event: {"seq":0,"type":"event","event":"projectLoadingFinish","body":{"projectName":"/user/username/projects/myproject/tsconfig-src.json"}} -Info 366 [16:09:56.000] Search path: /user/username/projects/myproject/src -Info 367 [16:09:57.000] For info: /user/username/projects/myproject/src/main.ts :: Config file name: /user/username/projects/myproject/tsconfig.json -Info 368 [16:09:58.000] Search path: /user/username/projects/myproject/src -Info 369 [16:09:59.000] For info: /user/username/projects/myproject/src/main.ts :: Config file name: /user/username/projects/myproject/tsconfig.json -Info 370 [16:10:00.000] Search path: /user/username/projects/myproject/src/helpers -Info 371 [16:10:01.000] For info: /user/username/projects/myproject/src/helpers/functions.ts :: Config file name: /user/username/projects/myproject/tsconfig.json -Info 372 [16:10:02.000] Search path: /user/username/projects/myproject/src/helpers -Info 373 [16:10:03.000] For info: /user/username/projects/myproject/src/helpers/functions.ts :: Config file name: /user/username/projects/myproject/tsconfig.json -Info 374 [16:10:04.000] Finding references to /user/username/projects/myproject/src/main.ts position 9 in project /user/username/projects/myproject/tsconfig.json -Info 375 [16:10:05.000] Search path: /user/username/projects/myproject/src -Info 376 [16:10:06.000] For info: /user/username/projects/myproject/src/main.ts :: Config file name: /user/username/projects/myproject/tsconfig.json -Info 377 [16:10:07.000] Search path: /user/username/projects/myproject/src -Info 378 [16:10:08.000] For info: /user/username/projects/myproject/src/main.ts :: Config file name: /user/username/projects/myproject/tsconfig.json -Info 379 [16:10:09.000] Search path: /user/username/projects/myproject/src -Info 380 [16:10:10.000] For info: /user/username/projects/myproject/src/main.ts :: Config file name: /user/username/projects/myproject/tsconfig.json -Info 381 [16:10:11.000] Search path: /user/username/projects/myproject/src/helpers -Info 382 [16:10:12.000] For info: /user/username/projects/myproject/src/helpers/functions.ts :: Config file name: /user/username/projects/myproject/tsconfig.json -Info 383 [16:10:13.000] Search path: /user/username/projects/myproject/src/helpers -Info 384 [16:10:14.000] For info: /user/username/projects/myproject/src/helpers/functions.ts :: Config file name: /user/username/projects/myproject/tsconfig.json -Info 385 [16:10:15.000] Search path: /user/username/projects/myproject/indirect1 -Info 386 [16:10:16.000] For info: /user/username/projects/myproject/indirect1/main.ts :: Config file name: /user/username/projects/myproject/tsconfig.json -Info 387 [16:10:17.000] Creating configuration project /user/username/projects/myproject/tsconfig-indirect1.json -Info 388 [16:10:18.000] event: +Info 366 [00:09:56.000] Search path: /user/username/projects/myproject/src +Info 367 [00:09:57.000] For info: /user/username/projects/myproject/src/main.ts :: Config file name: /user/username/projects/myproject/tsconfig.json +Info 368 [00:09:58.000] Search path: /user/username/projects/myproject/src +Info 369 [00:09:59.000] For info: /user/username/projects/myproject/src/main.ts :: Config file name: /user/username/projects/myproject/tsconfig.json +Info 370 [00:10:00.000] Search path: /user/username/projects/myproject/src/helpers +Info 371 [00:10:01.000] For info: /user/username/projects/myproject/src/helpers/functions.ts :: Config file name: /user/username/projects/myproject/tsconfig.json +Info 372 [00:10:02.000] Search path: /user/username/projects/myproject/src/helpers +Info 373 [00:10:03.000] For info: /user/username/projects/myproject/src/helpers/functions.ts :: Config file name: /user/username/projects/myproject/tsconfig.json +Info 374 [00:10:04.000] Finding references to /user/username/projects/myproject/src/main.ts position 9 in project /user/username/projects/myproject/tsconfig.json +Info 375 [00:10:05.000] Search path: /user/username/projects/myproject/src +Info 376 [00:10:06.000] For info: /user/username/projects/myproject/src/main.ts :: Config file name: /user/username/projects/myproject/tsconfig.json +Info 377 [00:10:07.000] Search path: /user/username/projects/myproject/src +Info 378 [00:10:08.000] For info: /user/username/projects/myproject/src/main.ts :: Config file name: /user/username/projects/myproject/tsconfig.json +Info 379 [00:10:09.000] Search path: /user/username/projects/myproject/src +Info 380 [00:10:10.000] For info: /user/username/projects/myproject/src/main.ts :: Config file name: /user/username/projects/myproject/tsconfig.json +Info 381 [00:10:11.000] Search path: /user/username/projects/myproject/src/helpers +Info 382 [00:10:12.000] For info: /user/username/projects/myproject/src/helpers/functions.ts :: Config file name: /user/username/projects/myproject/tsconfig.json +Info 383 [00:10:13.000] Search path: /user/username/projects/myproject/src/helpers +Info 384 [00:10:14.000] For info: /user/username/projects/myproject/src/helpers/functions.ts :: Config file name: /user/username/projects/myproject/tsconfig.json +Info 385 [00:10:15.000] Search path: /user/username/projects/myproject/indirect1 +Info 386 [00:10:16.000] For info: /user/username/projects/myproject/indirect1/main.ts :: Config file name: /user/username/projects/myproject/tsconfig.json +Info 387 [00:10:17.000] Creating configuration project /user/username/projects/myproject/tsconfig-indirect1.json +Info 388 [00:10:18.000] event: {"seq":0,"type":"event","event":"projectLoadingStart","body":{"projectName":"/user/username/projects/myproject/tsconfig-indirect1.json","reason":"Creating project referenced in solution /user/username/projects/myproject/tsconfig.json to find possible configured project for original file: /user/username/projects/myproject/indirect1/main.ts"}} -Info 389 [16:10:19.000] Plugins were requested but not running in environment that supports 'require'. Nothing will be loaded -Info 390 [16:10:20.000] Starting updateGraphWorker: Project: /user/username/projects/myproject/tsconfig-indirect1.json -Info 391 [16:10:21.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/tsconfig-indirect1.json WatchType: Type roots -Info 392 [16:10:22.000] 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 393 [16:10:23.000] Finishing updateGraphWorker: Project: /user/username/projects/myproject/tsconfig-indirect1.json Version: 1 structureChanged: true structureIsReused:: Not Elapsed:: *ms -Info 394 [16:10:24.000] Project '/user/username/projects/myproject/tsconfig-indirect1.json' (Configured) -Info 395 [16:10:25.000] Files (4) +Info 389 [00:10:19.000] Plugins were requested but not running in environment that supports 'require'. Nothing will be loaded +Info 390 [00:10:20.000] Starting updateGraphWorker: Project: /user/username/projects/myproject/tsconfig-indirect1.json +Info 391 [00:10:21.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/tsconfig-indirect1.json WatchType: Type roots +Info 392 [00:10:22.000] 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 393 [00:10:23.000] Finishing updateGraphWorker: Project: /user/username/projects/myproject/tsconfig-indirect1.json Version: 1 structureChanged: true structureIsReused:: Not Elapsed:: *ms +Info 394 [00:10:24.000] Project '/user/username/projects/myproject/tsconfig-indirect1.json' (Configured) +Info 395 [00:10:25.000] Files (4) /a/lib/lib.d.ts /user/username/projects/myproject/src/helpers/functions.ts /user/username/projects/myproject/src/main.ts @@ -1739,36 +1739,36 @@ Info 395 [16:10:25.000] Files (4) indirect1/main.ts Part of 'files' list in tsconfig.json -Info 396 [16:10:26.000] ----------------------------------------------- -Info 397 [16:10:27.000] event: +Info 396 [00:10:26.000] ----------------------------------------------- +Info 397 [00:10:27.000] event: {"seq":0,"type":"event","event":"projectLoadingFinish","body":{"projectName":"/user/username/projects/myproject/tsconfig-indirect1.json"}} -Info 398 [16:10:28.000] Search path: /user/username/projects/myproject/indirect1 -Info 399 [16:10:29.000] For info: /user/username/projects/myproject/indirect1/main.ts :: Config file name: /user/username/projects/myproject/tsconfig.json -Info 400 [16:10:30.000] Search path: /user/username/projects/myproject/indirect1 -Info 401 [16:10:31.000] For info: /user/username/projects/myproject/indirect1/main.ts :: Config file name: /user/username/projects/myproject/tsconfig.json -Info 402 [16:10:32.000] Finding references to /user/username/projects/myproject/src/main.ts position 9 in project /user/username/projects/myproject/tsconfig-src.json -Info 403 [16:10:33.000] Finding references to /user/username/projects/myproject/indirect1/main.ts position 9 in project /user/username/projects/myproject/tsconfig-indirect1.json -Info 404 [16:10:34.000] Search path: /user/username/projects/myproject/src -Info 405 [16:10:35.000] For info: /user/username/projects/myproject/src/main.ts :: Config file name: /user/username/projects/myproject/tsconfig.json -Info 406 [16:10:36.000] Search path: /user/username/projects/myproject/src -Info 407 [16:10:37.000] For info: /user/username/projects/myproject/src/main.ts :: Config file name: /user/username/projects/myproject/tsconfig.json -Info 408 [16:10:38.000] Search path: /user/username/projects/myproject/src -Info 409 [16:10:39.000] For info: /user/username/projects/myproject/src/main.ts :: Config file name: /user/username/projects/myproject/tsconfig.json -Info 410 [16:10:40.000] Search path: /user/username/projects/myproject/src/helpers -Info 411 [16:10:41.000] For info: /user/username/projects/myproject/src/helpers/functions.ts :: Config file name: /user/username/projects/myproject/tsconfig.json -Info 412 [16:10:42.000] Search path: /user/username/projects/myproject/src/helpers -Info 413 [16:10:43.000] For info: /user/username/projects/myproject/src/helpers/functions.ts :: Config file name: /user/username/projects/myproject/tsconfig.json -Info 414 [16:10:44.000] Creating configuration project /user/username/projects/myproject/tsconfig-indirect2.json -Info 415 [16:10:45.000] event: +Info 398 [00:10:28.000] Search path: /user/username/projects/myproject/indirect1 +Info 399 [00:10:29.000] For info: /user/username/projects/myproject/indirect1/main.ts :: Config file name: /user/username/projects/myproject/tsconfig.json +Info 400 [00:10:30.000] Search path: /user/username/projects/myproject/indirect1 +Info 401 [00:10:31.000] For info: /user/username/projects/myproject/indirect1/main.ts :: Config file name: /user/username/projects/myproject/tsconfig.json +Info 402 [00:10:32.000] Finding references to /user/username/projects/myproject/src/main.ts position 9 in project /user/username/projects/myproject/tsconfig-src.json +Info 403 [00:10:33.000] Finding references to /user/username/projects/myproject/indirect1/main.ts position 9 in project /user/username/projects/myproject/tsconfig-indirect1.json +Info 404 [00:10:34.000] Search path: /user/username/projects/myproject/src +Info 405 [00:10:35.000] For info: /user/username/projects/myproject/src/main.ts :: Config file name: /user/username/projects/myproject/tsconfig.json +Info 406 [00:10:36.000] Search path: /user/username/projects/myproject/src +Info 407 [00:10:37.000] For info: /user/username/projects/myproject/src/main.ts :: Config file name: /user/username/projects/myproject/tsconfig.json +Info 408 [00:10:38.000] Search path: /user/username/projects/myproject/src +Info 409 [00:10:39.000] For info: /user/username/projects/myproject/src/main.ts :: Config file name: /user/username/projects/myproject/tsconfig.json +Info 410 [00:10:40.000] Search path: /user/username/projects/myproject/src/helpers +Info 411 [00:10:41.000] For info: /user/username/projects/myproject/src/helpers/functions.ts :: Config file name: /user/username/projects/myproject/tsconfig.json +Info 412 [00:10:42.000] Search path: /user/username/projects/myproject/src/helpers +Info 413 [00:10:43.000] For info: /user/username/projects/myproject/src/helpers/functions.ts :: Config file name: /user/username/projects/myproject/tsconfig.json +Info 414 [00:10:44.000] Creating configuration project /user/username/projects/myproject/tsconfig-indirect2.json +Info 415 [00:10:45.000] event: {"seq":0,"type":"event","event":"projectLoadingStart","body":{"projectName":"/user/username/projects/myproject/tsconfig-indirect2.json","reason":"Creating project referenced by : /user/username/projects/myproject/tsconfig.json as it references project /user/username/projects/myproject/tsconfig-src.json"}} -Info 416 [16:10:46.000] Plugins were requested but not running in environment that supports 'require'. Nothing will be loaded -Info 417 [16:10:47.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/indirect2/main.ts 500 undefined WatchType: Closed Script info -Info 418 [16:10:48.000] Starting updateGraphWorker: Project: /user/username/projects/myproject/tsconfig-indirect2.json -Info 419 [16:10:49.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/tsconfig-indirect2.json WatchType: Type roots -Info 420 [16:10:50.000] 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 421 [16:10:51.000] Finishing updateGraphWorker: Project: /user/username/projects/myproject/tsconfig-indirect2.json Version: 1 structureChanged: true structureIsReused:: Not Elapsed:: *ms -Info 422 [16:10:52.000] Project '/user/username/projects/myproject/tsconfig-indirect2.json' (Configured) -Info 423 [16:10:53.000] Files (4) +Info 416 [00:10:46.000] Plugins were requested but not running in environment that supports 'require'. Nothing will be loaded +Info 417 [00:10:47.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/indirect2/main.ts 500 undefined WatchType: Closed Script info +Info 418 [00:10:48.000] Starting updateGraphWorker: Project: /user/username/projects/myproject/tsconfig-indirect2.json +Info 419 [00:10:49.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/tsconfig-indirect2.json WatchType: Type roots +Info 420 [00:10:50.000] 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 421 [00:10:51.000] Finishing updateGraphWorker: Project: /user/username/projects/myproject/tsconfig-indirect2.json Version: 1 structureChanged: true structureIsReused:: Not Elapsed:: *ms +Info 422 [00:10:52.000] Project '/user/username/projects/myproject/tsconfig-indirect2.json' (Configured) +Info 423 [00:10:53.000] Files (4) /a/lib/lib.d.ts /user/username/projects/myproject/src/helpers/functions.ts /user/username/projects/myproject/src/main.ts @@ -1784,20 +1784,20 @@ Info 423 [16:10:53.000] Files (4) indirect2/main.ts Part of 'files' list in tsconfig.json -Info 424 [16:10:54.000] ----------------------------------------------- -Info 425 [16:10:55.000] event: +Info 424 [00:10:54.000] ----------------------------------------------- +Info 425 [00:10:55.000] event: {"seq":0,"type":"event","event":"projectLoadingFinish","body":{"projectName":"/user/username/projects/myproject/tsconfig-indirect2.json"}} -Info 426 [16:10:56.000] Finding references to /user/username/projects/myproject/src/helpers/functions.ts position 13 in project /user/username/projects/myproject/tsconfig-indirect2.json -Info 427 [16:10:57.000] Search path: /user/username/projects/myproject/src/helpers -Info 428 [16:10:58.000] For info: /user/username/projects/myproject/src/helpers/functions.ts :: Config file name: /user/username/projects/myproject/tsconfig.json -Info 429 [16:10:59.000] Search path: /user/username/projects/myproject/src/helpers -Info 430 [16:11:00.000] For info: /user/username/projects/myproject/src/helpers/functions.ts :: Config file name: /user/username/projects/myproject/tsconfig.json -Info 431 [16:11:01.000] Search path: /user/username/projects/myproject/src -Info 432 [16:11:02.000] For info: /user/username/projects/myproject/src/main.ts :: Config file name: /user/username/projects/myproject/tsconfig.json -Info 433 [16:11:03.000] Search path: /user/username/projects/myproject/src -Info 434 [16:11:04.000] For info: /user/username/projects/myproject/src/main.ts :: Config file name: /user/username/projects/myproject/tsconfig.json -Info 435 [16:11:05.000] Search path: /user/username/projects/myproject/src -Info 436 [16:11:06.000] For info: /user/username/projects/myproject/src/main.ts :: Config file name: /user/username/projects/myproject/tsconfig.json +Info 426 [00:10:56.000] Finding references to /user/username/projects/myproject/src/helpers/functions.ts position 13 in project /user/username/projects/myproject/tsconfig-indirect2.json +Info 427 [00:10:57.000] Search path: /user/username/projects/myproject/src/helpers +Info 428 [00:10:58.000] For info: /user/username/projects/myproject/src/helpers/functions.ts :: Config file name: /user/username/projects/myproject/tsconfig.json +Info 429 [00:10:59.000] Search path: /user/username/projects/myproject/src/helpers +Info 430 [00:11:00.000] For info: /user/username/projects/myproject/src/helpers/functions.ts :: Config file name: /user/username/projects/myproject/tsconfig.json +Info 431 [00:11:01.000] Search path: /user/username/projects/myproject/src +Info 432 [00:11:02.000] For info: /user/username/projects/myproject/src/main.ts :: Config file name: /user/username/projects/myproject/tsconfig.json +Info 433 [00:11:03.000] Search path: /user/username/projects/myproject/src +Info 434 [00:11:04.000] For info: /user/username/projects/myproject/src/main.ts :: Config file name: /user/username/projects/myproject/tsconfig.json +Info 435 [00:11:05.000] Search path: /user/username/projects/myproject/src +Info 436 [00:11:06.000] For info: /user/username/projects/myproject/src/main.ts :: Config file name: /user/username/projects/myproject/tsconfig.json After request PolledWatches:: @@ -1846,7 +1846,7 @@ FsWatchesRecursive:: /user/username/projects/myproject/src: {} -Info 437 [16:11:07.000] response: +Info 437 [00:11:07.000] response: { "response": { "refs": [ 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 4073ef301887d..ca4d75663870c 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 @@ -1,5 +1,5 @@ -Info 0 [16:00:44.000] Provided types map file "/a/lib/typesMap.json" doesn't exist -Info 1 [16:00:45.000] request: +Info 0 [00:00:44.000] Provided types map file "/a/lib/typesMap.json" doesn't exist +Info 1 [00:00:45.000] request: { "seq": 0, "type": "request", @@ -52,11 +52,11 @@ FsWatches:: FsWatchesRecursive:: -Info 2 [16:00:46.000] Search path: /user/username/projects/solution/api/src -Info 3 [16:00:47.000] For info: /user/username/projects/solution/api/src/server.ts :: Config file name: /user/username/projects/solution/api/tsconfig.json -Info 4 [16:00:48.000] Creating configuration project /user/username/projects/solution/api/tsconfig.json -Info 5 [16:00:49.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/solution/api/tsconfig.json 2000 undefined Project: /user/username/projects/solution/api/tsconfig.json WatchType: Config file -Info 6 [16:00:50.000] Config: /user/username/projects/solution/api/tsconfig.json : { +Info 2 [00:00:46.000] Search path: /user/username/projects/solution/api/src +Info 3 [00:00:47.000] For info: /user/username/projects/solution/api/src/server.ts :: Config file name: /user/username/projects/solution/api/tsconfig.json +Info 4 [00:00:48.000] Creating configuration project /user/username/projects/solution/api/tsconfig.json +Info 5 [00:00:49.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/solution/api/tsconfig.json 2000 undefined Project: /user/username/projects/solution/api/tsconfig.json WatchType: Config file +Info 6 [00:00:50.000] Config: /user/username/projects/solution/api/tsconfig.json : { "rootNames": [ "/user/username/projects/solution/api/src/server.ts" ], @@ -73,11 +73,11 @@ Info 6 [16:00:50.000] Config: /user/username/projects/solution/api/tsconfig.j } ] } -Info 7 [16:00:51.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/solution/api/src 1 undefined Config: /user/username/projects/solution/api/tsconfig.json WatchType: Wild card directory -Info 8 [16:00:52.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/solution/api/src 1 undefined Config: /user/username/projects/solution/api/tsconfig.json WatchType: Wild card directory -Info 9 [16:00:53.000] Plugins were requested but not running in environment that supports 'require'. Nothing will be loaded -Info 10 [16:00:54.000] Starting updateGraphWorker: Project: /user/username/projects/solution/api/tsconfig.json -Info 11 [16:00:55.000] Config: /user/username/projects/solution/shared/tsconfig.json : { +Info 7 [00:00:51.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/solution/api/src 1 undefined Config: /user/username/projects/solution/api/tsconfig.json WatchType: Wild card directory +Info 8 [00:00:52.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/solution/api/src 1 undefined Config: /user/username/projects/solution/api/tsconfig.json WatchType: Wild card directory +Info 9 [00:00:53.000] Plugins were requested but not running in environment that supports 'require'. Nothing will be loaded +Info 10 [00:00:54.000] Starting updateGraphWorker: Project: /user/username/projects/solution/api/tsconfig.json +Info 11 [00:00:55.000] Config: /user/username/projects/solution/shared/tsconfig.json : { "rootNames": [ "/user/username/projects/solution/shared/src/index.ts" ], @@ -88,20 +88,20 @@ Info 11 [16:00:55.000] Config: /user/username/projects/solution/shared/tsconfi "configFilePath": "/user/username/projects/solution/shared/tsconfig.json" } } -Info 12 [16:00:56.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/solution/shared/tsconfig.json 2000 undefined Project: /user/username/projects/solution/api/tsconfig.json WatchType: Config file -Info 13 [16:00:57.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/solution/shared/src 1 undefined Config: /user/username/projects/solution/shared/tsconfig.json WatchType: Wild card directory -Info 14 [16:00:58.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/solution/shared/src 1 undefined Config: /user/username/projects/solution/shared/tsconfig.json WatchType: Wild card directory -Info 15 [16:00:59.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/solution/shared 1 undefined Project: /user/username/projects/solution/api/tsconfig.json WatchType: Failed Lookup Locations -Info 16 [16:01:00.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/solution/shared 1 undefined Project: /user/username/projects/solution/api/tsconfig.json WatchType: Failed Lookup Locations -Info 17 [16:01:01.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/solution/shared/src/index.ts 500 undefined WatchType: Closed Script info -Info 18 [16:01:02.000] FileWatcher:: Added:: WatchInfo: /a/lib/lib.d.ts 500 undefined WatchType: Closed Script info -Info 19 [16:01:03.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/solution/api/node_modules/@types 1 undefined Project: /user/username/projects/solution/api/tsconfig.json WatchType: Type roots -Info 20 [16:01:04.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/solution/api/node_modules/@types 1 undefined Project: /user/username/projects/solution/api/tsconfig.json WatchType: Type roots -Info 21 [16:01:05.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/solution/node_modules/@types 1 undefined Project: /user/username/projects/solution/api/tsconfig.json WatchType: Type roots -Info 22 [16:01:06.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/solution/node_modules/@types 1 undefined Project: /user/username/projects/solution/api/tsconfig.json WatchType: Type roots -Info 23 [16:01:07.000] Finishing updateGraphWorker: Project: /user/username/projects/solution/api/tsconfig.json Version: 1 structureChanged: true structureIsReused:: Not Elapsed:: *ms -Info 24 [16:01:08.000] Project '/user/username/projects/solution/api/tsconfig.json' (Configured) -Info 25 [16:01:09.000] Files (3) +Info 12 [00:00:56.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/solution/shared/tsconfig.json 2000 undefined Project: /user/username/projects/solution/api/tsconfig.json WatchType: Config file +Info 13 [00:00:57.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/solution/shared/src 1 undefined Config: /user/username/projects/solution/shared/tsconfig.json WatchType: Wild card directory +Info 14 [00:00:58.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/solution/shared/src 1 undefined Config: /user/username/projects/solution/shared/tsconfig.json WatchType: Wild card directory +Info 15 [00:00:59.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/solution/shared 1 undefined Project: /user/username/projects/solution/api/tsconfig.json WatchType: Failed Lookup Locations +Info 16 [00:01:00.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/solution/shared 1 undefined Project: /user/username/projects/solution/api/tsconfig.json WatchType: Failed Lookup Locations +Info 17 [00:01:01.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/solution/shared/src/index.ts 500 undefined WatchType: Closed Script info +Info 18 [00:01:02.000] FileWatcher:: Added:: WatchInfo: /a/lib/lib.d.ts 500 undefined WatchType: Closed Script info +Info 19 [00:01:03.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/solution/api/node_modules/@types 1 undefined Project: /user/username/projects/solution/api/tsconfig.json WatchType: Type roots +Info 20 [00:01:04.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/solution/api/node_modules/@types 1 undefined Project: /user/username/projects/solution/api/tsconfig.json WatchType: Type roots +Info 21 [00:01:05.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/solution/node_modules/@types 1 undefined Project: /user/username/projects/solution/api/tsconfig.json WatchType: Type roots +Info 22 [00:01:06.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/solution/node_modules/@types 1 undefined Project: /user/username/projects/solution/api/tsconfig.json WatchType: Type roots +Info 23 [00:01:07.000] Finishing updateGraphWorker: Project: /user/username/projects/solution/api/tsconfig.json Version: 1 structureChanged: true structureIsReused:: Not Elapsed:: *ms +Info 24 [00:01:08.000] Project '/user/username/projects/solution/api/tsconfig.json' (Configured) +Info 25 [00:01:09.000] Files (3) /a/lib/lib.d.ts /user/username/projects/solution/shared/src/index.ts /user/username/projects/solution/api/src/server.ts @@ -114,24 +114,24 @@ Info 25 [16:01:09.000] Files (3) src/server.ts Matched by include pattern 'src' in 'tsconfig.json' -Info 26 [16:01:10.000] ----------------------------------------------- -Info 27 [16:01:11.000] Search path: /user/username/projects/solution/api -Info 28 [16:01:12.000] For info: /user/username/projects/solution/api/tsconfig.json :: Config file name: /user/username/projects/solution/tsconfig.json -Info 29 [16:01:13.000] Creating configuration project /user/username/projects/solution/tsconfig.json -Info 30 [16:01:14.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/solution/tsconfig.json 2000 undefined Project: /user/username/projects/solution/tsconfig.json WatchType: Config file -Info 31 [16:01:15.000] Search path: /user/username/projects/solution -Info 32 [16:01:16.000] For info: /user/username/projects/solution/tsconfig.json :: No config files found. -Info 33 [16:01:17.000] Project '/user/username/projects/solution/api/tsconfig.json' (Configured) -Info 33 [16:01:18.000] Files (3) +Info 26 [00:01:10.000] ----------------------------------------------- +Info 27 [00:01:11.000] Search path: /user/username/projects/solution/api +Info 28 [00:01:12.000] For info: /user/username/projects/solution/api/tsconfig.json :: Config file name: /user/username/projects/solution/tsconfig.json +Info 29 [00:01:13.000] Creating configuration project /user/username/projects/solution/tsconfig.json +Info 30 [00:01:14.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/solution/tsconfig.json 2000 undefined Project: /user/username/projects/solution/tsconfig.json WatchType: Config file +Info 31 [00:01:15.000] Search path: /user/username/projects/solution +Info 32 [00:01:16.000] For info: /user/username/projects/solution/tsconfig.json :: No config files found. +Info 33 [00:01:17.000] Project '/user/username/projects/solution/api/tsconfig.json' (Configured) +Info 33 [00:01:18.000] Files (3) -Info 33 [16:01:19.000] ----------------------------------------------- -Info 33 [16:01:20.000] Project '/user/username/projects/solution/tsconfig.json' (Configured) -Info 33 [16:01:21.000] Files (0) InitialLoadPending +Info 33 [00:01:19.000] ----------------------------------------------- +Info 33 [00:01:20.000] Project '/user/username/projects/solution/tsconfig.json' (Configured) +Info 33 [00:01:21.000] Files (0) InitialLoadPending -Info 33 [16:01:22.000] ----------------------------------------------- -Info 33 [16:01:23.000] Open files: -Info 33 [16:01:24.000] FileName: /user/username/projects/solution/api/src/server.ts ProjectRootPath: undefined -Info 33 [16:01:25.000] Projects: /user/username/projects/solution/api/tsconfig.json +Info 33 [00:01:22.000] ----------------------------------------------- +Info 33 [00:01:23.000] Open files: +Info 33 [00:01:24.000] FileName: /user/username/projects/solution/api/src/server.ts ProjectRootPath: undefined +Info 33 [00:01:25.000] Projects: /user/username/projects/solution/api/tsconfig.json After request PolledWatches:: @@ -160,11 +160,11 @@ FsWatchesRecursive:: /user/username/projects/solution/shared: {} -Info 33 [16:01:26.000] response: +Info 33 [00:01:26.000] response: { "responseRequired": false } -Info 34 [16:01:27.000] request: +Info 34 [00:01:27.000] request: { "command": "references", "arguments": { @@ -203,19 +203,19 @@ FsWatchesRecursive:: /user/username/projects/solution/shared: {} -Info 35 [16:01:28.000] Finding references to /user/username/projects/solution/api/src/server.ts position 56 in project /user/username/projects/solution/api/tsconfig.json -Info 36 [16:01:29.000] Search path: /user/username/projects/solution/shared/src -Info 37 [16:01:30.000] For info: /user/username/projects/solution/shared/src/index.ts :: Config file name: /user/username/projects/solution/shared/tsconfig.json -Info 38 [16:01:31.000] Creating configuration project /user/username/projects/solution/shared/tsconfig.json -Info 39 [16:01:32.000] Plugins were requested but not running in environment that supports 'require'. Nothing will be loaded -Info 40 [16:01:33.000] Starting updateGraphWorker: Project: /user/username/projects/solution/shared/tsconfig.json -Info 41 [16:01:34.000] 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 42 [16:01:35.000] 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 43 [16:01:36.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/solution/node_modules/@types 1 undefined Project: /user/username/projects/solution/shared/tsconfig.json WatchType: Type roots -Info 44 [16:01:37.000] 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 45 [16:01:38.000] Finishing updateGraphWorker: Project: /user/username/projects/solution/shared/tsconfig.json Version: 1 structureChanged: true structureIsReused:: Not Elapsed:: *ms -Info 46 [16:01:39.000] Project '/user/username/projects/solution/shared/tsconfig.json' (Configured) -Info 47 [16:01:40.000] Files (2) +Info 35 [00:01:28.000] Finding references to /user/username/projects/solution/api/src/server.ts position 56 in project /user/username/projects/solution/api/tsconfig.json +Info 36 [00:01:29.000] Search path: /user/username/projects/solution/shared/src +Info 37 [00:01:30.000] For info: /user/username/projects/solution/shared/src/index.ts :: Config file name: /user/username/projects/solution/shared/tsconfig.json +Info 38 [00:01:31.000] Creating configuration project /user/username/projects/solution/shared/tsconfig.json +Info 39 [00:01:32.000] Plugins were requested but not running in environment that supports 'require'. Nothing will be loaded +Info 40 [00:01:33.000] Starting updateGraphWorker: Project: /user/username/projects/solution/shared/tsconfig.json +Info 41 [00:01:34.000] 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 42 [00:01:35.000] 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 43 [00:01:36.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/solution/node_modules/@types 1 undefined Project: /user/username/projects/solution/shared/tsconfig.json WatchType: Type roots +Info 44 [00:01:37.000] 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 45 [00:01:38.000] Finishing updateGraphWorker: Project: /user/username/projects/solution/shared/tsconfig.json Version: 1 structureChanged: true structureIsReused:: Not Elapsed:: *ms +Info 46 [00:01:39.000] Project '/user/username/projects/solution/shared/tsconfig.json' (Configured) +Info 47 [00:01:40.000] Files (2) /a/lib/lib.d.ts /user/username/projects/solution/shared/src/index.ts @@ -225,12 +225,12 @@ Info 47 [16:01:40.000] Files (2) src/index.ts Matched by include pattern 'src' in 'tsconfig.json' -Info 48 [16:01:41.000] ----------------------------------------------- -Info 49 [16:01:42.000] Search path: /user/username/projects/solution/shared/src -Info 50 [16:01:43.000] For info: /user/username/projects/solution/shared/src/index.ts :: Config file name: /user/username/projects/solution/shared/tsconfig.json -Info 51 [16:01:44.000] Finding references to /user/username/projects/solution/shared/src/index.ts position 21 in project /user/username/projects/solution/shared/tsconfig.json -Info 52 [16:01:45.000] Loading configured project /user/username/projects/solution/tsconfig.json -Info 53 [16:01:46.000] Config: /user/username/projects/solution/tsconfig.json : { +Info 48 [00:01:41.000] ----------------------------------------------- +Info 49 [00:01:42.000] Search path: /user/username/projects/solution/shared/src +Info 50 [00:01:43.000] For info: /user/username/projects/solution/shared/src/index.ts :: Config file name: /user/username/projects/solution/shared/tsconfig.json +Info 51 [00:01:44.000] Finding references to /user/username/projects/solution/shared/src/index.ts position 21 in project /user/username/projects/solution/shared/tsconfig.json +Info 52 [00:01:45.000] Loading configured project /user/username/projects/solution/tsconfig.json +Info 53 [00:01:46.000] Config: /user/username/projects/solution/tsconfig.json : { "rootNames": [], "options": { "configFilePath": "/user/username/projects/solution/tsconfig.json" @@ -246,9 +246,9 @@ Info 53 [16:01:46.000] Config: /user/username/projects/solution/tsconfig.json } ] } -Info 54 [16:01:47.000] Plugins were requested but not running in environment that supports 'require'. Nothing will be loaded -Info 55 [16:01:48.000] Starting updateGraphWorker: Project: /user/username/projects/solution/tsconfig.json -Info 56 [16:01:49.000] Config: /user/username/projects/solution/app/tsconfig.json : { +Info 54 [00:01:47.000] Plugins were requested but not running in environment that supports 'require'. Nothing will be loaded +Info 55 [00:01:48.000] Starting updateGraphWorker: Project: /user/username/projects/solution/tsconfig.json +Info 56 [00:01:49.000] Config: /user/username/projects/solution/app/tsconfig.json : { "rootNames": [ "/user/username/projects/solution/app/src/app.ts" ], @@ -265,26 +265,26 @@ Info 56 [16:01:49.000] Config: /user/username/projects/solution/app/tsconfig.j } ] } -Info 57 [16:01:50.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/solution/app/tsconfig.json 2000 undefined Project: /user/username/projects/solution/tsconfig.json WatchType: Config file -Info 58 [16:01:51.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/solution/app/src 1 undefined Config: /user/username/projects/solution/app/tsconfig.json WatchType: Wild card directory -Info 59 [16:01:52.000] 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 60 [16:01:53.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/solution/node_modules/@types 1 undefined Project: /user/username/projects/solution/tsconfig.json WatchType: Type roots -Info 61 [16:01:54.000] 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 62 [16:01:55.000] Finishing updateGraphWorker: Project: /user/username/projects/solution/tsconfig.json Version: 1 structureChanged: true structureIsReused:: Not Elapsed:: *ms -Info 63 [16:01:56.000] Different program with same set of files -Info 64 [16:01:57.000] Creating configuration project /user/username/projects/solution/app/tsconfig.json -Info 65 [16:01:58.000] Plugins were requested but not running in environment that supports 'require'. Nothing will be loaded -Info 66 [16:01:59.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/solution/app/src/app.ts 500 undefined WatchType: Closed Script info -Info 67 [16:02:00.000] Starting updateGraphWorker: Project: /user/username/projects/solution/app/tsconfig.json -Info 68 [16:02:01.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/solution/shared 1 undefined Project: /user/username/projects/solution/app/tsconfig.json WatchType: Failed Lookup Locations -Info 69 [16:02:02.000] 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 70 [16:02:03.000] 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 71 [16:02:04.000] 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 72 [16:02:05.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/solution/node_modules/@types 1 undefined Project: /user/username/projects/solution/app/tsconfig.json WatchType: Type roots -Info 73 [16:02:06.000] 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 74 [16:02:07.000] Finishing updateGraphWorker: Project: /user/username/projects/solution/app/tsconfig.json Version: 1 structureChanged: true structureIsReused:: Not Elapsed:: *ms -Info 75 [16:02:08.000] Project '/user/username/projects/solution/app/tsconfig.json' (Configured) -Info 76 [16:02:09.000] Files (3) +Info 57 [00:01:50.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/solution/app/tsconfig.json 2000 undefined Project: /user/username/projects/solution/tsconfig.json WatchType: Config file +Info 58 [00:01:51.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/solution/app/src 1 undefined Config: /user/username/projects/solution/app/tsconfig.json WatchType: Wild card directory +Info 59 [00:01:52.000] 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 60 [00:01:53.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/solution/node_modules/@types 1 undefined Project: /user/username/projects/solution/tsconfig.json WatchType: Type roots +Info 61 [00:01:54.000] 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 62 [00:01:55.000] Finishing updateGraphWorker: Project: /user/username/projects/solution/tsconfig.json Version: 1 structureChanged: true structureIsReused:: Not Elapsed:: *ms +Info 63 [00:01:56.000] Different program with same set of files +Info 64 [00:01:57.000] Creating configuration project /user/username/projects/solution/app/tsconfig.json +Info 65 [00:01:58.000] Plugins were requested but not running in environment that supports 'require'. Nothing will be loaded +Info 66 [00:01:59.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/solution/app/src/app.ts 500 undefined WatchType: Closed Script info +Info 67 [00:02:00.000] Starting updateGraphWorker: Project: /user/username/projects/solution/app/tsconfig.json +Info 68 [00:02:01.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/solution/shared 1 undefined Project: /user/username/projects/solution/app/tsconfig.json WatchType: Failed Lookup Locations +Info 69 [00:02:02.000] 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 70 [00:02:03.000] 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 71 [00:02:04.000] 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 72 [00:02:05.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/solution/node_modules/@types 1 undefined Project: /user/username/projects/solution/app/tsconfig.json WatchType: Type roots +Info 73 [00:02:06.000] 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 74 [00:02:07.000] Finishing updateGraphWorker: Project: /user/username/projects/solution/app/tsconfig.json Version: 1 structureChanged: true structureIsReused:: Not Elapsed:: *ms +Info 75 [00:02:08.000] Project '/user/username/projects/solution/app/tsconfig.json' (Configured) +Info 76 [00:02:09.000] Files (3) /a/lib/lib.d.ts /user/username/projects/solution/shared/src/index.ts /user/username/projects/solution/app/src/app.ts @@ -297,12 +297,12 @@ Info 76 [16:02:09.000] Files (3) src/app.ts Matched by include pattern 'src' in 'tsconfig.json' -Info 77 [16:02:10.000] ----------------------------------------------- -Info 78 [16:02:11.000] Finding references to /user/username/projects/solution/shared/src/index.ts position 21 in project /user/username/projects/solution/app/tsconfig.json -Info 79 [16:02:12.000] Search path: /user/username/projects/solution/shared/src -Info 80 [16:02:13.000] For info: /user/username/projects/solution/shared/src/index.ts :: Config file name: /user/username/projects/solution/shared/tsconfig.json -Info 81 [16:02:14.000] Search path: /user/username/projects/solution/shared/src -Info 82 [16:02:15.000] For info: /user/username/projects/solution/shared/src/index.ts :: Config file name: /user/username/projects/solution/shared/tsconfig.json +Info 77 [00:02:10.000] ----------------------------------------------- +Info 78 [00:02:11.000] Finding references to /user/username/projects/solution/shared/src/index.ts position 21 in project /user/username/projects/solution/app/tsconfig.json +Info 79 [00:02:12.000] Search path: /user/username/projects/solution/shared/src +Info 80 [00:02:13.000] For info: /user/username/projects/solution/shared/src/index.ts :: Config file name: /user/username/projects/solution/shared/tsconfig.json +Info 81 [00:02:14.000] Search path: /user/username/projects/solution/shared/src +Info 82 [00:02:15.000] For info: /user/username/projects/solution/shared/src/index.ts :: Config file name: /user/username/projects/solution/shared/tsconfig.json After request PolledWatches:: @@ -341,7 +341,7 @@ FsWatchesRecursive:: /user/username/projects/solution/app/src: {} -Info 83 [16:02:16.000] response: +Info 83 [00:02:16.000] response: { "response": { "refs": [ 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 041429fadce74..22769bbc224ae 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 @@ -1,5 +1,5 @@ -Info 0 [16:00:44.000] Provided types map file "/a/lib/typesMap.json" doesn't exist -Info 1 [16:00:45.000] request: +Info 0 [00:00:44.000] Provided types map file "/a/lib/typesMap.json" doesn't exist +Info 1 [00:00:45.000] request: { "seq": 0, "type": "request", @@ -53,11 +53,11 @@ FsWatches:: FsWatchesRecursive:: -Info 2 [16:00:46.000] Search path: /user/username/projects/solution/api/src -Info 3 [16:00:47.000] For info: /user/username/projects/solution/api/src/server.ts :: Config file name: /user/username/projects/solution/api/tsconfig.json -Info 4 [16:00:48.000] Creating configuration project /user/username/projects/solution/api/tsconfig.json -Info 5 [16:00:49.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/solution/api/tsconfig.json 2000 undefined Project: /user/username/projects/solution/api/tsconfig.json WatchType: Config file -Info 6 [16:00:50.000] Config: /user/username/projects/solution/api/tsconfig.json : { +Info 2 [00:00:46.000] Search path: /user/username/projects/solution/api/src +Info 3 [00:00:47.000] For info: /user/username/projects/solution/api/src/server.ts :: Config file name: /user/username/projects/solution/api/tsconfig.json +Info 4 [00:00:48.000] Creating configuration project /user/username/projects/solution/api/tsconfig.json +Info 5 [00:00:49.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/solution/api/tsconfig.json 2000 undefined Project: /user/username/projects/solution/api/tsconfig.json WatchType: Config file +Info 6 [00:00:50.000] Config: /user/username/projects/solution/api/tsconfig.json : { "rootNames": [ "/user/username/projects/solution/api/src/server.ts" ], @@ -74,11 +74,11 @@ Info 6 [16:00:50.000] Config: /user/username/projects/solution/api/tsconfig.j } ] } -Info 7 [16:00:51.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/solution/api/src 1 undefined Config: /user/username/projects/solution/api/tsconfig.json WatchType: Wild card directory -Info 8 [16:00:52.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/solution/api/src 1 undefined Config: /user/username/projects/solution/api/tsconfig.json WatchType: Wild card directory -Info 9 [16:00:53.000] Plugins were requested but not running in environment that supports 'require'. Nothing will be loaded -Info 10 [16:00:54.000] Starting updateGraphWorker: Project: /user/username/projects/solution/api/tsconfig.json -Info 11 [16:00:55.000] Config: /user/username/projects/solution/shared/tsconfig.json : { +Info 7 [00:00:51.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/solution/api/src 1 undefined Config: /user/username/projects/solution/api/tsconfig.json WatchType: Wild card directory +Info 8 [00:00:52.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/solution/api/src 1 undefined Config: /user/username/projects/solution/api/tsconfig.json WatchType: Wild card directory +Info 9 [00:00:53.000] Plugins were requested but not running in environment that supports 'require'. Nothing will be loaded +Info 10 [00:00:54.000] Starting updateGraphWorker: Project: /user/username/projects/solution/api/tsconfig.json +Info 11 [00:00:55.000] Config: /user/username/projects/solution/shared/tsconfig.json : { "rootNames": [ "/user/username/projects/solution/shared/src/index.ts" ], @@ -89,20 +89,20 @@ Info 11 [16:00:55.000] Config: /user/username/projects/solution/shared/tsconfi "configFilePath": "/user/username/projects/solution/shared/tsconfig.json" } } -Info 12 [16:00:56.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/solution/shared/tsconfig.json 2000 undefined Project: /user/username/projects/solution/api/tsconfig.json WatchType: Config file -Info 13 [16:00:57.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/solution/shared/src 1 undefined Config: /user/username/projects/solution/shared/tsconfig.json WatchType: Wild card directory -Info 14 [16:00:58.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/solution/shared/src 1 undefined Config: /user/username/projects/solution/shared/tsconfig.json WatchType: Wild card directory -Info 15 [16:00:59.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/solution/shared 1 undefined Project: /user/username/projects/solution/api/tsconfig.json WatchType: Failed Lookup Locations -Info 16 [16:01:00.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/solution/shared 1 undefined Project: /user/username/projects/solution/api/tsconfig.json WatchType: Failed Lookup Locations -Info 17 [16:01:01.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/solution/shared/src/index.ts 500 undefined WatchType: Closed Script info -Info 18 [16:01:02.000] FileWatcher:: Added:: WatchInfo: /a/lib/lib.d.ts 500 undefined WatchType: Closed Script info -Info 19 [16:01:03.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/solution/api/node_modules/@types 1 undefined Project: /user/username/projects/solution/api/tsconfig.json WatchType: Type roots -Info 20 [16:01:04.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/solution/api/node_modules/@types 1 undefined Project: /user/username/projects/solution/api/tsconfig.json WatchType: Type roots -Info 21 [16:01:05.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/solution/node_modules/@types 1 undefined Project: /user/username/projects/solution/api/tsconfig.json WatchType: Type roots -Info 22 [16:01:06.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/solution/node_modules/@types 1 undefined Project: /user/username/projects/solution/api/tsconfig.json WatchType: Type roots -Info 23 [16:01:07.000] Finishing updateGraphWorker: Project: /user/username/projects/solution/api/tsconfig.json Version: 1 structureChanged: true structureIsReused:: Not Elapsed:: *ms -Info 24 [16:01:08.000] Project '/user/username/projects/solution/api/tsconfig.json' (Configured) -Info 25 [16:01:09.000] Files (3) +Info 12 [00:00:56.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/solution/shared/tsconfig.json 2000 undefined Project: /user/username/projects/solution/api/tsconfig.json WatchType: Config file +Info 13 [00:00:57.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/solution/shared/src 1 undefined Config: /user/username/projects/solution/shared/tsconfig.json WatchType: Wild card directory +Info 14 [00:00:58.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/solution/shared/src 1 undefined Config: /user/username/projects/solution/shared/tsconfig.json WatchType: Wild card directory +Info 15 [00:00:59.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/solution/shared 1 undefined Project: /user/username/projects/solution/api/tsconfig.json WatchType: Failed Lookup Locations +Info 16 [00:01:00.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/solution/shared 1 undefined Project: /user/username/projects/solution/api/tsconfig.json WatchType: Failed Lookup Locations +Info 17 [00:01:01.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/solution/shared/src/index.ts 500 undefined WatchType: Closed Script info +Info 18 [00:01:02.000] FileWatcher:: Added:: WatchInfo: /a/lib/lib.d.ts 500 undefined WatchType: Closed Script info +Info 19 [00:01:03.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/solution/api/node_modules/@types 1 undefined Project: /user/username/projects/solution/api/tsconfig.json WatchType: Type roots +Info 20 [00:01:04.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/solution/api/node_modules/@types 1 undefined Project: /user/username/projects/solution/api/tsconfig.json WatchType: Type roots +Info 21 [00:01:05.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/solution/node_modules/@types 1 undefined Project: /user/username/projects/solution/api/tsconfig.json WatchType: Type roots +Info 22 [00:01:06.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/solution/node_modules/@types 1 undefined Project: /user/username/projects/solution/api/tsconfig.json WatchType: Type roots +Info 23 [00:01:07.000] Finishing updateGraphWorker: Project: /user/username/projects/solution/api/tsconfig.json Version: 1 structureChanged: true structureIsReused:: Not Elapsed:: *ms +Info 24 [00:01:08.000] Project '/user/username/projects/solution/api/tsconfig.json' (Configured) +Info 25 [00:01:09.000] Files (3) /a/lib/lib.d.ts /user/username/projects/solution/shared/src/index.ts /user/username/projects/solution/api/src/server.ts @@ -115,24 +115,24 @@ Info 25 [16:01:09.000] Files (3) src/server.ts Matched by include pattern 'src' in 'tsconfig.json' -Info 26 [16:01:10.000] ----------------------------------------------- -Info 27 [16:01:11.000] Search path: /user/username/projects/solution/api -Info 28 [16:01:12.000] For info: /user/username/projects/solution/api/tsconfig.json :: Config file name: /user/username/projects/solution/tsconfig.json -Info 29 [16:01:13.000] Creating configuration project /user/username/projects/solution/tsconfig.json -Info 30 [16:01:14.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/solution/tsconfig.json 2000 undefined Project: /user/username/projects/solution/tsconfig.json WatchType: Config file -Info 31 [16:01:15.000] Search path: /user/username/projects/solution -Info 32 [16:01:16.000] For info: /user/username/projects/solution/tsconfig.json :: No config files found. -Info 33 [16:01:17.000] Project '/user/username/projects/solution/api/tsconfig.json' (Configured) -Info 33 [16:01:18.000] Files (3) +Info 26 [00:01:10.000] ----------------------------------------------- +Info 27 [00:01:11.000] Search path: /user/username/projects/solution/api +Info 28 [00:01:12.000] For info: /user/username/projects/solution/api/tsconfig.json :: Config file name: /user/username/projects/solution/tsconfig.json +Info 29 [00:01:13.000] Creating configuration project /user/username/projects/solution/tsconfig.json +Info 30 [00:01:14.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/solution/tsconfig.json 2000 undefined Project: /user/username/projects/solution/tsconfig.json WatchType: Config file +Info 31 [00:01:15.000] Search path: /user/username/projects/solution +Info 32 [00:01:16.000] For info: /user/username/projects/solution/tsconfig.json :: No config files found. +Info 33 [00:01:17.000] Project '/user/username/projects/solution/api/tsconfig.json' (Configured) +Info 33 [00:01:18.000] Files (3) -Info 33 [16:01:19.000] ----------------------------------------------- -Info 33 [16:01:20.000] Project '/user/username/projects/solution/tsconfig.json' (Configured) -Info 33 [16:01:21.000] Files (0) InitialLoadPending +Info 33 [00:01:19.000] ----------------------------------------------- +Info 33 [00:01:20.000] Project '/user/username/projects/solution/tsconfig.json' (Configured) +Info 33 [00:01:21.000] Files (0) InitialLoadPending -Info 33 [16:01:22.000] ----------------------------------------------- -Info 33 [16:01:23.000] Open files: -Info 33 [16:01:24.000] FileName: /user/username/projects/solution/api/src/server.ts ProjectRootPath: undefined -Info 33 [16:01:25.000] Projects: /user/username/projects/solution/api/tsconfig.json +Info 33 [00:01:22.000] ----------------------------------------------- +Info 33 [00:01:23.000] Open files: +Info 33 [00:01:24.000] FileName: /user/username/projects/solution/api/src/server.ts ProjectRootPath: undefined +Info 33 [00:01:25.000] Projects: /user/username/projects/solution/api/tsconfig.json After request PolledWatches:: @@ -161,11 +161,11 @@ FsWatchesRecursive:: /user/username/projects/solution/shared: {} -Info 33 [16:01:26.000] response: +Info 33 [00:01:26.000] response: { "responseRequired": false } -Info 34 [16:01:27.000] request: +Info 34 [00:01:27.000] request: { "command": "references", "arguments": { @@ -204,19 +204,19 @@ FsWatchesRecursive:: /user/username/projects/solution/shared: {} -Info 35 [16:01:28.000] Finding references to /user/username/projects/solution/api/src/server.ts position 56 in project /user/username/projects/solution/api/tsconfig.json -Info 36 [16:01:29.000] Search path: /user/username/projects/solution/shared/src -Info 37 [16:01:30.000] For info: /user/username/projects/solution/shared/src/index.ts :: Config file name: /user/username/projects/solution/shared/tsconfig.json -Info 38 [16:01:31.000] Creating configuration project /user/username/projects/solution/shared/tsconfig.json -Info 39 [16:01:32.000] Plugins were requested but not running in environment that supports 'require'. Nothing will be loaded -Info 40 [16:01:33.000] Starting updateGraphWorker: Project: /user/username/projects/solution/shared/tsconfig.json -Info 41 [16:01:34.000] 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 42 [16:01:35.000] 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 43 [16:01:36.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/solution/node_modules/@types 1 undefined Project: /user/username/projects/solution/shared/tsconfig.json WatchType: Type roots -Info 44 [16:01:37.000] 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 45 [16:01:38.000] Finishing updateGraphWorker: Project: /user/username/projects/solution/shared/tsconfig.json Version: 1 structureChanged: true structureIsReused:: Not Elapsed:: *ms -Info 46 [16:01:39.000] Project '/user/username/projects/solution/shared/tsconfig.json' (Configured) -Info 47 [16:01:40.000] Files (2) +Info 35 [00:01:28.000] Finding references to /user/username/projects/solution/api/src/server.ts position 56 in project /user/username/projects/solution/api/tsconfig.json +Info 36 [00:01:29.000] Search path: /user/username/projects/solution/shared/src +Info 37 [00:01:30.000] For info: /user/username/projects/solution/shared/src/index.ts :: Config file name: /user/username/projects/solution/shared/tsconfig.json +Info 38 [00:01:31.000] Creating configuration project /user/username/projects/solution/shared/tsconfig.json +Info 39 [00:01:32.000] Plugins were requested but not running in environment that supports 'require'. Nothing will be loaded +Info 40 [00:01:33.000] Starting updateGraphWorker: Project: /user/username/projects/solution/shared/tsconfig.json +Info 41 [00:01:34.000] 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 42 [00:01:35.000] 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 43 [00:01:36.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/solution/node_modules/@types 1 undefined Project: /user/username/projects/solution/shared/tsconfig.json WatchType: Type roots +Info 44 [00:01:37.000] 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 45 [00:01:38.000] Finishing updateGraphWorker: Project: /user/username/projects/solution/shared/tsconfig.json Version: 1 structureChanged: true structureIsReused:: Not Elapsed:: *ms +Info 46 [00:01:39.000] Project '/user/username/projects/solution/shared/tsconfig.json' (Configured) +Info 47 [00:01:40.000] Files (2) /a/lib/lib.d.ts /user/username/projects/solution/shared/src/index.ts @@ -226,10 +226,10 @@ Info 47 [16:01:40.000] Files (2) src/index.ts Matched by include pattern 'src' in 'tsconfig.json' -Info 48 [16:01:41.000] ----------------------------------------------- -Info 49 [16:01:42.000] Search path: /user/username/projects/solution/shared/src -Info 50 [16:01:43.000] For info: /user/username/projects/solution/shared/src/index.ts :: Config file name: /user/username/projects/solution/shared/tsconfig.json -Info 51 [16:01:44.000] Finding references to /user/username/projects/solution/shared/src/index.ts position 16 in project /user/username/projects/solution/shared/tsconfig.json +Info 48 [00:01:41.000] ----------------------------------------------- +Info 49 [00:01:42.000] Search path: /user/username/projects/solution/shared/src +Info 50 [00:01:43.000] For info: /user/username/projects/solution/shared/src/index.ts :: Config file name: /user/username/projects/solution/shared/tsconfig.json +Info 51 [00:01:44.000] Finding references to /user/username/projects/solution/shared/src/index.ts position 16 in project /user/username/projects/solution/shared/tsconfig.json After request PolledWatches:: @@ -260,7 +260,7 @@ FsWatchesRecursive:: /user/username/projects/solution/shared: {} -Info 52 [16:01:45.000] response: +Info 52 [00:01:45.000] response: { "response": { "refs": [ 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 e4f85a8a19bbb..a3dd14df9498b 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 @@ -1,5 +1,5 @@ -Info 0 [16:00:44.000] Provided types map file "/a/lib/typesMap.json" doesn't exist -Info 1 [16:00:45.000] request: +Info 0 [00:00:44.000] Provided types map file "/a/lib/typesMap.json" doesn't exist +Info 1 [00:00:45.000] request: { "seq": 0, "type": "request", @@ -52,11 +52,11 @@ FsWatches:: FsWatchesRecursive:: -Info 2 [16:00:46.000] Search path: /user/username/projects/solution/api/src -Info 3 [16:00:47.000] For info: /user/username/projects/solution/api/src/server.ts :: Config file name: /user/username/projects/solution/api/tsconfig.json -Info 4 [16:00:48.000] Creating configuration project /user/username/projects/solution/api/tsconfig.json -Info 5 [16:00:49.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/solution/api/tsconfig.json 2000 undefined Project: /user/username/projects/solution/api/tsconfig.json WatchType: Config file -Info 6 [16:00:50.000] Config: /user/username/projects/solution/api/tsconfig.json : { +Info 2 [00:00:46.000] Search path: /user/username/projects/solution/api/src +Info 3 [00:00:47.000] For info: /user/username/projects/solution/api/src/server.ts :: Config file name: /user/username/projects/solution/api/tsconfig.json +Info 4 [00:00:48.000] Creating configuration project /user/username/projects/solution/api/tsconfig.json +Info 5 [00:00:49.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/solution/api/tsconfig.json 2000 undefined Project: /user/username/projects/solution/api/tsconfig.json WatchType: Config file +Info 6 [00:00:50.000] Config: /user/username/projects/solution/api/tsconfig.json : { "rootNames": [ "/user/username/projects/solution/api/src/server.ts" ], @@ -73,11 +73,11 @@ Info 6 [16:00:50.000] Config: /user/username/projects/solution/api/tsconfig.j } ] } -Info 7 [16:00:51.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/solution/api/src 1 undefined Config: /user/username/projects/solution/api/tsconfig.json WatchType: Wild card directory -Info 8 [16:00:52.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/solution/api/src 1 undefined Config: /user/username/projects/solution/api/tsconfig.json WatchType: Wild card directory -Info 9 [16:00:53.000] Plugins were requested but not running in environment that supports 'require'. Nothing will be loaded -Info 10 [16:00:54.000] Starting updateGraphWorker: Project: /user/username/projects/solution/api/tsconfig.json -Info 11 [16:00:55.000] Config: /user/username/projects/solution/shared/tsconfig.json : { +Info 7 [00:00:51.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/solution/api/src 1 undefined Config: /user/username/projects/solution/api/tsconfig.json WatchType: Wild card directory +Info 8 [00:00:52.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/solution/api/src 1 undefined Config: /user/username/projects/solution/api/tsconfig.json WatchType: Wild card directory +Info 9 [00:00:53.000] Plugins were requested but not running in environment that supports 'require'. Nothing will be loaded +Info 10 [00:00:54.000] Starting updateGraphWorker: Project: /user/username/projects/solution/api/tsconfig.json +Info 11 [00:00:55.000] Config: /user/username/projects/solution/shared/tsconfig.json : { "rootNames": [ "/user/username/projects/solution/shared/src/index.ts" ], @@ -88,20 +88,20 @@ Info 11 [16:00:55.000] Config: /user/username/projects/solution/shared/tsconfi "configFilePath": "/user/username/projects/solution/shared/tsconfig.json" } } -Info 12 [16:00:56.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/solution/shared/tsconfig.json 2000 undefined Project: /user/username/projects/solution/api/tsconfig.json WatchType: Config file -Info 13 [16:00:57.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/solution/shared/src 1 undefined Config: /user/username/projects/solution/shared/tsconfig.json WatchType: Wild card directory -Info 14 [16:00:58.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/solution/shared/src 1 undefined Config: /user/username/projects/solution/shared/tsconfig.json WatchType: Wild card directory -Info 15 [16:00:59.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/solution/shared 1 undefined Project: /user/username/projects/solution/api/tsconfig.json WatchType: Failed Lookup Locations -Info 16 [16:01:00.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/solution/shared 1 undefined Project: /user/username/projects/solution/api/tsconfig.json WatchType: Failed Lookup Locations -Info 17 [16:01:01.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/solution/shared/src/index.ts 500 undefined WatchType: Closed Script info -Info 18 [16:01:02.000] FileWatcher:: Added:: WatchInfo: /a/lib/lib.d.ts 500 undefined WatchType: Closed Script info -Info 19 [16:01:03.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/solution/api/node_modules/@types 1 undefined Project: /user/username/projects/solution/api/tsconfig.json WatchType: Type roots -Info 20 [16:01:04.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/solution/api/node_modules/@types 1 undefined Project: /user/username/projects/solution/api/tsconfig.json WatchType: Type roots -Info 21 [16:01:05.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/solution/node_modules/@types 1 undefined Project: /user/username/projects/solution/api/tsconfig.json WatchType: Type roots -Info 22 [16:01:06.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/solution/node_modules/@types 1 undefined Project: /user/username/projects/solution/api/tsconfig.json WatchType: Type roots -Info 23 [16:01:07.000] Finishing updateGraphWorker: Project: /user/username/projects/solution/api/tsconfig.json Version: 1 structureChanged: true structureIsReused:: Not Elapsed:: *ms -Info 24 [16:01:08.000] Project '/user/username/projects/solution/api/tsconfig.json' (Configured) -Info 25 [16:01:09.000] Files (3) +Info 12 [00:00:56.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/solution/shared/tsconfig.json 2000 undefined Project: /user/username/projects/solution/api/tsconfig.json WatchType: Config file +Info 13 [00:00:57.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/solution/shared/src 1 undefined Config: /user/username/projects/solution/shared/tsconfig.json WatchType: Wild card directory +Info 14 [00:00:58.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/solution/shared/src 1 undefined Config: /user/username/projects/solution/shared/tsconfig.json WatchType: Wild card directory +Info 15 [00:00:59.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/solution/shared 1 undefined Project: /user/username/projects/solution/api/tsconfig.json WatchType: Failed Lookup Locations +Info 16 [00:01:00.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/solution/shared 1 undefined Project: /user/username/projects/solution/api/tsconfig.json WatchType: Failed Lookup Locations +Info 17 [00:01:01.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/solution/shared/src/index.ts 500 undefined WatchType: Closed Script info +Info 18 [00:01:02.000] FileWatcher:: Added:: WatchInfo: /a/lib/lib.d.ts 500 undefined WatchType: Closed Script info +Info 19 [00:01:03.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/solution/api/node_modules/@types 1 undefined Project: /user/username/projects/solution/api/tsconfig.json WatchType: Type roots +Info 20 [00:01:04.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/solution/api/node_modules/@types 1 undefined Project: /user/username/projects/solution/api/tsconfig.json WatchType: Type roots +Info 21 [00:01:05.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/solution/node_modules/@types 1 undefined Project: /user/username/projects/solution/api/tsconfig.json WatchType: Type roots +Info 22 [00:01:06.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/solution/node_modules/@types 1 undefined Project: /user/username/projects/solution/api/tsconfig.json WatchType: Type roots +Info 23 [00:01:07.000] Finishing updateGraphWorker: Project: /user/username/projects/solution/api/tsconfig.json Version: 1 structureChanged: true structureIsReused:: Not Elapsed:: *ms +Info 24 [00:01:08.000] Project '/user/username/projects/solution/api/tsconfig.json' (Configured) +Info 25 [00:01:09.000] Files (3) /a/lib/lib.d.ts /user/username/projects/solution/shared/src/index.ts /user/username/projects/solution/api/src/server.ts @@ -114,24 +114,24 @@ Info 25 [16:01:09.000] Files (3) src/server.ts Matched by include pattern 'src' in 'tsconfig.json' -Info 26 [16:01:10.000] ----------------------------------------------- -Info 27 [16:01:11.000] Search path: /user/username/projects/solution/api -Info 28 [16:01:12.000] For info: /user/username/projects/solution/api/tsconfig.json :: Config file name: /user/username/projects/solution/tsconfig.json -Info 29 [16:01:13.000] Creating configuration project /user/username/projects/solution/tsconfig.json -Info 30 [16:01:14.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/solution/tsconfig.json 2000 undefined Project: /user/username/projects/solution/tsconfig.json WatchType: Config file -Info 31 [16:01:15.000] Search path: /user/username/projects/solution -Info 32 [16:01:16.000] For info: /user/username/projects/solution/tsconfig.json :: No config files found. -Info 33 [16:01:17.000] Project '/user/username/projects/solution/api/tsconfig.json' (Configured) -Info 33 [16:01:18.000] Files (3) +Info 26 [00:01:10.000] ----------------------------------------------- +Info 27 [00:01:11.000] Search path: /user/username/projects/solution/api +Info 28 [00:01:12.000] For info: /user/username/projects/solution/api/tsconfig.json :: Config file name: /user/username/projects/solution/tsconfig.json +Info 29 [00:01:13.000] Creating configuration project /user/username/projects/solution/tsconfig.json +Info 30 [00:01:14.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/solution/tsconfig.json 2000 undefined Project: /user/username/projects/solution/tsconfig.json WatchType: Config file +Info 31 [00:01:15.000] Search path: /user/username/projects/solution +Info 32 [00:01:16.000] For info: /user/username/projects/solution/tsconfig.json :: No config files found. +Info 33 [00:01:17.000] Project '/user/username/projects/solution/api/tsconfig.json' (Configured) +Info 33 [00:01:18.000] Files (3) -Info 33 [16:01:19.000] ----------------------------------------------- -Info 33 [16:01:20.000] Project '/user/username/projects/solution/tsconfig.json' (Configured) -Info 33 [16:01:21.000] Files (0) InitialLoadPending +Info 33 [00:01:19.000] ----------------------------------------------- +Info 33 [00:01:20.000] Project '/user/username/projects/solution/tsconfig.json' (Configured) +Info 33 [00:01:21.000] Files (0) InitialLoadPending -Info 33 [16:01:22.000] ----------------------------------------------- -Info 33 [16:01:23.000] Open files: -Info 33 [16:01:24.000] FileName: /user/username/projects/solution/api/src/server.ts ProjectRootPath: undefined -Info 33 [16:01:25.000] Projects: /user/username/projects/solution/api/tsconfig.json +Info 33 [00:01:22.000] ----------------------------------------------- +Info 33 [00:01:23.000] Open files: +Info 33 [00:01:24.000] FileName: /user/username/projects/solution/api/src/server.ts ProjectRootPath: undefined +Info 33 [00:01:25.000] Projects: /user/username/projects/solution/api/tsconfig.json After request PolledWatches:: @@ -160,11 +160,11 @@ FsWatchesRecursive:: /user/username/projects/solution/shared: {} -Info 33 [16:01:26.000] response: +Info 33 [00:01:26.000] response: { "responseRequired": false } -Info 34 [16:01:27.000] request: +Info 34 [00:01:27.000] request: { "command": "references", "arguments": { @@ -203,19 +203,19 @@ FsWatchesRecursive:: /user/username/projects/solution/shared: {} -Info 35 [16:01:28.000] Finding references to /user/username/projects/solution/api/src/server.ts position 52 in project /user/username/projects/solution/api/tsconfig.json -Info 36 [16:01:29.000] Search path: /user/username/projects/solution/shared/src -Info 37 [16:01:30.000] For info: /user/username/projects/solution/shared/src/index.ts :: Config file name: /user/username/projects/solution/shared/tsconfig.json -Info 38 [16:01:31.000] Creating configuration project /user/username/projects/solution/shared/tsconfig.json -Info 39 [16:01:32.000] Plugins were requested but not running in environment that supports 'require'. Nothing will be loaded -Info 40 [16:01:33.000] Starting updateGraphWorker: Project: /user/username/projects/solution/shared/tsconfig.json -Info 41 [16:01:34.000] 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 42 [16:01:35.000] 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 43 [16:01:36.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/solution/node_modules/@types 1 undefined Project: /user/username/projects/solution/shared/tsconfig.json WatchType: Type roots -Info 44 [16:01:37.000] 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 45 [16:01:38.000] Finishing updateGraphWorker: Project: /user/username/projects/solution/shared/tsconfig.json Version: 1 structureChanged: true structureIsReused:: Not Elapsed:: *ms -Info 46 [16:01:39.000] Project '/user/username/projects/solution/shared/tsconfig.json' (Configured) -Info 47 [16:01:40.000] Files (2) +Info 35 [00:01:28.000] Finding references to /user/username/projects/solution/api/src/server.ts position 52 in project /user/username/projects/solution/api/tsconfig.json +Info 36 [00:01:29.000] Search path: /user/username/projects/solution/shared/src +Info 37 [00:01:30.000] For info: /user/username/projects/solution/shared/src/index.ts :: Config file name: /user/username/projects/solution/shared/tsconfig.json +Info 38 [00:01:31.000] Creating configuration project /user/username/projects/solution/shared/tsconfig.json +Info 39 [00:01:32.000] Plugins were requested but not running in environment that supports 'require'. Nothing will be loaded +Info 40 [00:01:33.000] Starting updateGraphWorker: Project: /user/username/projects/solution/shared/tsconfig.json +Info 41 [00:01:34.000] 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 42 [00:01:35.000] 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 43 [00:01:36.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/solution/node_modules/@types 1 undefined Project: /user/username/projects/solution/shared/tsconfig.json WatchType: Type roots +Info 44 [00:01:37.000] 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 45 [00:01:38.000] Finishing updateGraphWorker: Project: /user/username/projects/solution/shared/tsconfig.json Version: 1 structureChanged: true structureIsReused:: Not Elapsed:: *ms +Info 46 [00:01:39.000] Project '/user/username/projects/solution/shared/tsconfig.json' (Configured) +Info 47 [00:01:40.000] Files (2) /a/lib/lib.d.ts /user/username/projects/solution/shared/src/index.ts @@ -225,12 +225,12 @@ Info 47 [16:01:40.000] Files (2) src/index.ts Matched by include pattern 'src' in 'tsconfig.json' -Info 48 [16:01:41.000] ----------------------------------------------- -Info 49 [16:01:42.000] Search path: /user/username/projects/solution/shared/src -Info 50 [16:01:43.000] For info: /user/username/projects/solution/shared/src/index.ts :: Config file name: /user/username/projects/solution/shared/tsconfig.json -Info 51 [16:01:44.000] Finding references to /user/username/projects/solution/shared/src/index.ts position 13 in project /user/username/projects/solution/shared/tsconfig.json -Info 52 [16:01:45.000] Loading configured project /user/username/projects/solution/tsconfig.json -Info 53 [16:01:46.000] Config: /user/username/projects/solution/tsconfig.json : { +Info 48 [00:01:41.000] ----------------------------------------------- +Info 49 [00:01:42.000] Search path: /user/username/projects/solution/shared/src +Info 50 [00:01:43.000] For info: /user/username/projects/solution/shared/src/index.ts :: Config file name: /user/username/projects/solution/shared/tsconfig.json +Info 51 [00:01:44.000] Finding references to /user/username/projects/solution/shared/src/index.ts position 13 in project /user/username/projects/solution/shared/tsconfig.json +Info 52 [00:01:45.000] Loading configured project /user/username/projects/solution/tsconfig.json +Info 53 [00:01:46.000] Config: /user/username/projects/solution/tsconfig.json : { "rootNames": [], "options": { "configFilePath": "/user/username/projects/solution/tsconfig.json" @@ -246,9 +246,9 @@ Info 53 [16:01:46.000] Config: /user/username/projects/solution/tsconfig.json } ] } -Info 54 [16:01:47.000] Plugins were requested but not running in environment that supports 'require'. Nothing will be loaded -Info 55 [16:01:48.000] Starting updateGraphWorker: Project: /user/username/projects/solution/tsconfig.json -Info 56 [16:01:49.000] Config: /user/username/projects/solution/app/tsconfig.json : { +Info 54 [00:01:47.000] Plugins were requested but not running in environment that supports 'require'. Nothing will be loaded +Info 55 [00:01:48.000] Starting updateGraphWorker: Project: /user/username/projects/solution/tsconfig.json +Info 56 [00:01:49.000] Config: /user/username/projects/solution/app/tsconfig.json : { "rootNames": [ "/user/username/projects/solution/app/src/app.ts" ], @@ -265,26 +265,26 @@ Info 56 [16:01:49.000] Config: /user/username/projects/solution/app/tsconfig.j } ] } -Info 57 [16:01:50.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/solution/app/tsconfig.json 2000 undefined Project: /user/username/projects/solution/tsconfig.json WatchType: Config file -Info 58 [16:01:51.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/solution/app/src 1 undefined Config: /user/username/projects/solution/app/tsconfig.json WatchType: Wild card directory -Info 59 [16:01:52.000] 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 60 [16:01:53.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/solution/node_modules/@types 1 undefined Project: /user/username/projects/solution/tsconfig.json WatchType: Type roots -Info 61 [16:01:54.000] 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 62 [16:01:55.000] Finishing updateGraphWorker: Project: /user/username/projects/solution/tsconfig.json Version: 1 structureChanged: true structureIsReused:: Not Elapsed:: *ms -Info 63 [16:01:56.000] Different program with same set of files -Info 64 [16:01:57.000] Creating configuration project /user/username/projects/solution/app/tsconfig.json -Info 65 [16:01:58.000] Plugins were requested but not running in environment that supports 'require'. Nothing will be loaded -Info 66 [16:01:59.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/solution/app/src/app.ts 500 undefined WatchType: Closed Script info -Info 67 [16:02:00.000] Starting updateGraphWorker: Project: /user/username/projects/solution/app/tsconfig.json -Info 68 [16:02:01.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/solution/shared 1 undefined Project: /user/username/projects/solution/app/tsconfig.json WatchType: Failed Lookup Locations -Info 69 [16:02:02.000] 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 70 [16:02:03.000] 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 71 [16:02:04.000] 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 72 [16:02:05.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/solution/node_modules/@types 1 undefined Project: /user/username/projects/solution/app/tsconfig.json WatchType: Type roots -Info 73 [16:02:06.000] 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 74 [16:02:07.000] Finishing updateGraphWorker: Project: /user/username/projects/solution/app/tsconfig.json Version: 1 structureChanged: true structureIsReused:: Not Elapsed:: *ms -Info 75 [16:02:08.000] Project '/user/username/projects/solution/app/tsconfig.json' (Configured) -Info 76 [16:02:09.000] Files (3) +Info 57 [00:01:50.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/solution/app/tsconfig.json 2000 undefined Project: /user/username/projects/solution/tsconfig.json WatchType: Config file +Info 58 [00:01:51.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/solution/app/src 1 undefined Config: /user/username/projects/solution/app/tsconfig.json WatchType: Wild card directory +Info 59 [00:01:52.000] 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 60 [00:01:53.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/solution/node_modules/@types 1 undefined Project: /user/username/projects/solution/tsconfig.json WatchType: Type roots +Info 61 [00:01:54.000] 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 62 [00:01:55.000] Finishing updateGraphWorker: Project: /user/username/projects/solution/tsconfig.json Version: 1 structureChanged: true structureIsReused:: Not Elapsed:: *ms +Info 63 [00:01:56.000] Different program with same set of files +Info 64 [00:01:57.000] Creating configuration project /user/username/projects/solution/app/tsconfig.json +Info 65 [00:01:58.000] Plugins were requested but not running in environment that supports 'require'. Nothing will be loaded +Info 66 [00:01:59.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/solution/app/src/app.ts 500 undefined WatchType: Closed Script info +Info 67 [00:02:00.000] Starting updateGraphWorker: Project: /user/username/projects/solution/app/tsconfig.json +Info 68 [00:02:01.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/solution/shared 1 undefined Project: /user/username/projects/solution/app/tsconfig.json WatchType: Failed Lookup Locations +Info 69 [00:02:02.000] 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 70 [00:02:03.000] 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 71 [00:02:04.000] 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 72 [00:02:05.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/solution/node_modules/@types 1 undefined Project: /user/username/projects/solution/app/tsconfig.json WatchType: Type roots +Info 73 [00:02:06.000] 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 74 [00:02:07.000] Finishing updateGraphWorker: Project: /user/username/projects/solution/app/tsconfig.json Version: 1 structureChanged: true structureIsReused:: Not Elapsed:: *ms +Info 75 [00:02:08.000] Project '/user/username/projects/solution/app/tsconfig.json' (Configured) +Info 76 [00:02:09.000] Files (3) /a/lib/lib.d.ts /user/username/projects/solution/shared/src/index.ts /user/username/projects/solution/app/src/app.ts @@ -297,12 +297,12 @@ Info 76 [16:02:09.000] Files (3) src/app.ts Matched by include pattern 'src' in 'tsconfig.json' -Info 77 [16:02:10.000] ----------------------------------------------- -Info 78 [16:02:11.000] Finding references to /user/username/projects/solution/shared/src/index.ts position 13 in project /user/username/projects/solution/app/tsconfig.json -Info 79 [16:02:12.000] Search path: /user/username/projects/solution/shared/src -Info 80 [16:02:13.000] For info: /user/username/projects/solution/shared/src/index.ts :: Config file name: /user/username/projects/solution/shared/tsconfig.json -Info 81 [16:02:14.000] Search path: /user/username/projects/solution/shared/src -Info 82 [16:02:15.000] For info: /user/username/projects/solution/shared/src/index.ts :: Config file name: /user/username/projects/solution/shared/tsconfig.json +Info 77 [00:02:10.000] ----------------------------------------------- +Info 78 [00:02:11.000] Finding references to /user/username/projects/solution/shared/src/index.ts position 13 in project /user/username/projects/solution/app/tsconfig.json +Info 79 [00:02:12.000] Search path: /user/username/projects/solution/shared/src +Info 80 [00:02:13.000] For info: /user/username/projects/solution/shared/src/index.ts :: Config file name: /user/username/projects/solution/shared/tsconfig.json +Info 81 [00:02:14.000] Search path: /user/username/projects/solution/shared/src +Info 82 [00:02:15.000] For info: /user/username/projects/solution/shared/src/index.ts :: Config file name: /user/username/projects/solution/shared/tsconfig.json After request PolledWatches:: @@ -341,7 +341,7 @@ FsWatchesRecursive:: /user/username/projects/solution/app/src: {} -Info 83 [16:02:16.000] response: +Info 83 [00:02:16.000] response: { "response": { "refs": [ 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 f1755b12f5027..f3a144530fe66 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 @@ -1,5 +1,5 @@ -Info 0 [16:00:44.000] Provided types map file "/a/lib/typesMap.json" doesn't exist -Info 1 [16:00:45.000] request: +Info 0 [00:00:44.000] Provided types map file "/a/lib/typesMap.json" doesn't exist +Info 1 [00:00:45.000] request: { "seq": 0, "type": "request", @@ -54,11 +54,11 @@ FsWatches:: FsWatchesRecursive:: -Info 2 [16:00:46.000] Search path: /user/username/projects/solution/api/src -Info 3 [16:00:47.000] For info: /user/username/projects/solution/api/src/server.ts :: Config file name: /user/username/projects/solution/api/tsconfig.json -Info 4 [16:00:48.000] Creating configuration project /user/username/projects/solution/api/tsconfig.json -Info 5 [16:00:49.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/solution/api/tsconfig.json 2000 undefined Project: /user/username/projects/solution/api/tsconfig.json WatchType: Config file -Info 6 [16:00:50.000] Config: /user/username/projects/solution/api/tsconfig.json : { +Info 2 [00:00:46.000] Search path: /user/username/projects/solution/api/src +Info 3 [00:00:47.000] For info: /user/username/projects/solution/api/src/server.ts :: Config file name: /user/username/projects/solution/api/tsconfig.json +Info 4 [00:00:48.000] Creating configuration project /user/username/projects/solution/api/tsconfig.json +Info 5 [00:00:49.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/solution/api/tsconfig.json 2000 undefined Project: /user/username/projects/solution/api/tsconfig.json WatchType: Config file +Info 6 [00:00:50.000] Config: /user/username/projects/solution/api/tsconfig.json : { "rootNames": [ "/user/username/projects/solution/api/src/server.ts" ], @@ -75,11 +75,11 @@ Info 6 [16:00:50.000] Config: /user/username/projects/solution/api/tsconfig.j } ] } -Info 7 [16:00:51.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/solution/api/src 1 undefined Config: /user/username/projects/solution/api/tsconfig.json WatchType: Wild card directory -Info 8 [16:00:52.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/solution/api/src 1 undefined Config: /user/username/projects/solution/api/tsconfig.json WatchType: Wild card directory -Info 9 [16:00:53.000] Plugins were requested but not running in environment that supports 'require'. Nothing will be loaded -Info 10 [16:00:54.000] Starting updateGraphWorker: Project: /user/username/projects/solution/api/tsconfig.json -Info 11 [16:00:55.000] Config: /user/username/projects/solution/shared/tsconfig.json : { +Info 7 [00:00:51.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/solution/api/src 1 undefined Config: /user/username/projects/solution/api/tsconfig.json WatchType: Wild card directory +Info 8 [00:00:52.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/solution/api/src 1 undefined Config: /user/username/projects/solution/api/tsconfig.json WatchType: Wild card directory +Info 9 [00:00:53.000] Plugins were requested but not running in environment that supports 'require'. Nothing will be loaded +Info 10 [00:00:54.000] Starting updateGraphWorker: Project: /user/username/projects/solution/api/tsconfig.json +Info 11 [00:00:55.000] Config: /user/username/projects/solution/shared/tsconfig.json : { "rootNames": [ "/user/username/projects/solution/shared/src/index.ts" ], @@ -90,20 +90,20 @@ Info 11 [16:00:55.000] Config: /user/username/projects/solution/shared/tsconfi "configFilePath": "/user/username/projects/solution/shared/tsconfig.json" } } -Info 12 [16:00:56.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/solution/shared/tsconfig.json 2000 undefined Project: /user/username/projects/solution/api/tsconfig.json WatchType: Config file -Info 13 [16:00:57.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/solution/shared/src 1 undefined Config: /user/username/projects/solution/shared/tsconfig.json WatchType: Wild card directory -Info 14 [16:00:58.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/solution/shared/src 1 undefined Config: /user/username/projects/solution/shared/tsconfig.json WatchType: Wild card directory -Info 15 [16:00:59.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/solution/shared 1 undefined Project: /user/username/projects/solution/api/tsconfig.json WatchType: Failed Lookup Locations -Info 16 [16:01:00.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/solution/shared 1 undefined Project: /user/username/projects/solution/api/tsconfig.json WatchType: Failed Lookup Locations -Info 17 [16:01:01.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/solution/shared/src/index.ts 500 undefined WatchType: Closed Script info -Info 18 [16:01:02.000] FileWatcher:: Added:: WatchInfo: /a/lib/lib.d.ts 500 undefined WatchType: Closed Script info -Info 19 [16:01:03.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/solution/api/node_modules/@types 1 undefined Project: /user/username/projects/solution/api/tsconfig.json WatchType: Type roots -Info 20 [16:01:04.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/solution/api/node_modules/@types 1 undefined Project: /user/username/projects/solution/api/tsconfig.json WatchType: Type roots -Info 21 [16:01:05.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/solution/node_modules/@types 1 undefined Project: /user/username/projects/solution/api/tsconfig.json WatchType: Type roots -Info 22 [16:01:06.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/solution/node_modules/@types 1 undefined Project: /user/username/projects/solution/api/tsconfig.json WatchType: Type roots -Info 23 [16:01:07.000] Finishing updateGraphWorker: Project: /user/username/projects/solution/api/tsconfig.json Version: 1 structureChanged: true structureIsReused:: Not Elapsed:: *ms -Info 24 [16:01:08.000] Project '/user/username/projects/solution/api/tsconfig.json' (Configured) -Info 25 [16:01:09.000] Files (3) +Info 12 [00:00:56.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/solution/shared/tsconfig.json 2000 undefined Project: /user/username/projects/solution/api/tsconfig.json WatchType: Config file +Info 13 [00:00:57.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/solution/shared/src 1 undefined Config: /user/username/projects/solution/shared/tsconfig.json WatchType: Wild card directory +Info 14 [00:00:58.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/solution/shared/src 1 undefined Config: /user/username/projects/solution/shared/tsconfig.json WatchType: Wild card directory +Info 15 [00:00:59.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/solution/shared 1 undefined Project: /user/username/projects/solution/api/tsconfig.json WatchType: Failed Lookup Locations +Info 16 [00:01:00.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/solution/shared 1 undefined Project: /user/username/projects/solution/api/tsconfig.json WatchType: Failed Lookup Locations +Info 17 [00:01:01.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/solution/shared/src/index.ts 500 undefined WatchType: Closed Script info +Info 18 [00:01:02.000] FileWatcher:: Added:: WatchInfo: /a/lib/lib.d.ts 500 undefined WatchType: Closed Script info +Info 19 [00:01:03.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/solution/api/node_modules/@types 1 undefined Project: /user/username/projects/solution/api/tsconfig.json WatchType: Type roots +Info 20 [00:01:04.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/solution/api/node_modules/@types 1 undefined Project: /user/username/projects/solution/api/tsconfig.json WatchType: Type roots +Info 21 [00:01:05.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/solution/node_modules/@types 1 undefined Project: /user/username/projects/solution/api/tsconfig.json WatchType: Type roots +Info 22 [00:01:06.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/solution/node_modules/@types 1 undefined Project: /user/username/projects/solution/api/tsconfig.json WatchType: Type roots +Info 23 [00:01:07.000] Finishing updateGraphWorker: Project: /user/username/projects/solution/api/tsconfig.json Version: 1 structureChanged: true structureIsReused:: Not Elapsed:: *ms +Info 24 [00:01:08.000] Project '/user/username/projects/solution/api/tsconfig.json' (Configured) +Info 25 [00:01:09.000] Files (3) /a/lib/lib.d.ts /user/username/projects/solution/shared/src/index.ts /user/username/projects/solution/api/src/server.ts @@ -116,24 +116,24 @@ Info 25 [16:01:09.000] Files (3) src/server.ts Matched by include pattern 'src' in 'tsconfig.json' -Info 26 [16:01:10.000] ----------------------------------------------- -Info 27 [16:01:11.000] Search path: /user/username/projects/solution/api -Info 28 [16:01:12.000] For info: /user/username/projects/solution/api/tsconfig.json :: Config file name: /user/username/projects/solution/tsconfig.json -Info 29 [16:01:13.000] Creating configuration project /user/username/projects/solution/tsconfig.json -Info 30 [16:01:14.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/solution/tsconfig.json 2000 undefined Project: /user/username/projects/solution/tsconfig.json WatchType: Config file -Info 31 [16:01:15.000] Search path: /user/username/projects/solution -Info 32 [16:01:16.000] For info: /user/username/projects/solution/tsconfig.json :: No config files found. -Info 33 [16:01:17.000] Project '/user/username/projects/solution/api/tsconfig.json' (Configured) -Info 33 [16:01:18.000] Files (3) +Info 26 [00:01:10.000] ----------------------------------------------- +Info 27 [00:01:11.000] Search path: /user/username/projects/solution/api +Info 28 [00:01:12.000] For info: /user/username/projects/solution/api/tsconfig.json :: Config file name: /user/username/projects/solution/tsconfig.json +Info 29 [00:01:13.000] Creating configuration project /user/username/projects/solution/tsconfig.json +Info 30 [00:01:14.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/solution/tsconfig.json 2000 undefined Project: /user/username/projects/solution/tsconfig.json WatchType: Config file +Info 31 [00:01:15.000] Search path: /user/username/projects/solution +Info 32 [00:01:16.000] For info: /user/username/projects/solution/tsconfig.json :: No config files found. +Info 33 [00:01:17.000] Project '/user/username/projects/solution/api/tsconfig.json' (Configured) +Info 33 [00:01:18.000] Files (3) -Info 33 [16:01:19.000] ----------------------------------------------- -Info 33 [16:01:20.000] Project '/user/username/projects/solution/tsconfig.json' (Configured) -Info 33 [16:01:21.000] Files (0) InitialLoadPending +Info 33 [00:01:19.000] ----------------------------------------------- +Info 33 [00:01:20.000] Project '/user/username/projects/solution/tsconfig.json' (Configured) +Info 33 [00:01:21.000] Files (0) InitialLoadPending -Info 33 [16:01:22.000] ----------------------------------------------- -Info 33 [16:01:23.000] Open files: -Info 33 [16:01:24.000] FileName: /user/username/projects/solution/api/src/server.ts ProjectRootPath: undefined -Info 33 [16:01:25.000] Projects: /user/username/projects/solution/api/tsconfig.json +Info 33 [00:01:22.000] ----------------------------------------------- +Info 33 [00:01:23.000] Open files: +Info 33 [00:01:24.000] FileName: /user/username/projects/solution/api/src/server.ts ProjectRootPath: undefined +Info 33 [00:01:25.000] Projects: /user/username/projects/solution/api/tsconfig.json After request PolledWatches:: @@ -162,11 +162,11 @@ FsWatchesRecursive:: /user/username/projects/solution/shared: {} -Info 33 [16:01:26.000] response: +Info 33 [00:01:26.000] response: { "responseRequired": false } -Info 34 [16:01:27.000] request: +Info 34 [00:01:27.000] request: { "command": "references", "arguments": { @@ -205,19 +205,19 @@ FsWatchesRecursive:: /user/username/projects/solution/shared: {} -Info 35 [16:01:28.000] Finding references to /user/username/projects/solution/api/src/server.ts position 89 in project /user/username/projects/solution/api/tsconfig.json -Info 36 [16:01:29.000] Search path: /user/username/projects/solution/shared/src -Info 37 [16:01:30.000] For info: /user/username/projects/solution/shared/src/index.ts :: Config file name: /user/username/projects/solution/shared/tsconfig.json -Info 38 [16:01:31.000] Creating configuration project /user/username/projects/solution/shared/tsconfig.json -Info 39 [16:01:32.000] Plugins were requested but not running in environment that supports 'require'. Nothing will be loaded -Info 40 [16:01:33.000] Starting updateGraphWorker: Project: /user/username/projects/solution/shared/tsconfig.json -Info 41 [16:01:34.000] 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 42 [16:01:35.000] 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 43 [16:01:36.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/solution/node_modules/@types 1 undefined Project: /user/username/projects/solution/shared/tsconfig.json WatchType: Type roots -Info 44 [16:01:37.000] 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 45 [16:01:38.000] Finishing updateGraphWorker: Project: /user/username/projects/solution/shared/tsconfig.json Version: 1 structureChanged: true structureIsReused:: Not Elapsed:: *ms -Info 46 [16:01:39.000] Project '/user/username/projects/solution/shared/tsconfig.json' (Configured) -Info 47 [16:01:40.000] Files (2) +Info 35 [00:01:28.000] Finding references to /user/username/projects/solution/api/src/server.ts position 89 in project /user/username/projects/solution/api/tsconfig.json +Info 36 [00:01:29.000] Search path: /user/username/projects/solution/shared/src +Info 37 [00:01:30.000] For info: /user/username/projects/solution/shared/src/index.ts :: Config file name: /user/username/projects/solution/shared/tsconfig.json +Info 38 [00:01:31.000] Creating configuration project /user/username/projects/solution/shared/tsconfig.json +Info 39 [00:01:32.000] Plugins were requested but not running in environment that supports 'require'. Nothing will be loaded +Info 40 [00:01:33.000] Starting updateGraphWorker: Project: /user/username/projects/solution/shared/tsconfig.json +Info 41 [00:01:34.000] 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 42 [00:01:35.000] 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 43 [00:01:36.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/solution/node_modules/@types 1 undefined Project: /user/username/projects/solution/shared/tsconfig.json WatchType: Type roots +Info 44 [00:01:37.000] 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 45 [00:01:38.000] Finishing updateGraphWorker: Project: /user/username/projects/solution/shared/tsconfig.json Version: 1 structureChanged: true structureIsReused:: Not Elapsed:: *ms +Info 46 [00:01:39.000] Project '/user/username/projects/solution/shared/tsconfig.json' (Configured) +Info 47 [00:01:40.000] Files (2) /a/lib/lib.d.ts /user/username/projects/solution/shared/src/index.ts @@ -227,12 +227,12 @@ Info 47 [16:01:40.000] Files (2) src/index.ts Matched by include pattern 'src' in 'tsconfig.json' -Info 48 [16:01:41.000] ----------------------------------------------- -Info 49 [16:01:42.000] Search path: /user/username/projects/solution/shared/src -Info 50 [16:01:43.000] For info: /user/username/projects/solution/shared/src/index.ts :: Config file name: /user/username/projects/solution/shared/tsconfig.json -Info 51 [16:01:44.000] Finding references to /user/username/projects/solution/shared/src/index.ts position 27 in project /user/username/projects/solution/shared/tsconfig.json -Info 52 [16:01:45.000] Loading configured project /user/username/projects/solution/tsconfig.json -Info 53 [16:01:46.000] Config: /user/username/projects/solution/tsconfig.json : { +Info 48 [00:01:41.000] ----------------------------------------------- +Info 49 [00:01:42.000] Search path: /user/username/projects/solution/shared/src +Info 50 [00:01:43.000] For info: /user/username/projects/solution/shared/src/index.ts :: Config file name: /user/username/projects/solution/shared/tsconfig.json +Info 51 [00:01:44.000] Finding references to /user/username/projects/solution/shared/src/index.ts position 27 in project /user/username/projects/solution/shared/tsconfig.json +Info 52 [00:01:45.000] Loading configured project /user/username/projects/solution/tsconfig.json +Info 53 [00:01:46.000] Config: /user/username/projects/solution/tsconfig.json : { "rootNames": [], "options": { "configFilePath": "/user/username/projects/solution/tsconfig.json" @@ -248,9 +248,9 @@ Info 53 [16:01:46.000] Config: /user/username/projects/solution/tsconfig.json } ] } -Info 54 [16:01:47.000] Plugins were requested but not running in environment that supports 'require'. Nothing will be loaded -Info 55 [16:01:48.000] Starting updateGraphWorker: Project: /user/username/projects/solution/tsconfig.json -Info 56 [16:01:49.000] Config: /user/username/projects/solution/app/tsconfig.json : { +Info 54 [00:01:47.000] Plugins were requested but not running in environment that supports 'require'. Nothing will be loaded +Info 55 [00:01:48.000] Starting updateGraphWorker: Project: /user/username/projects/solution/tsconfig.json +Info 56 [00:01:49.000] Config: /user/username/projects/solution/app/tsconfig.json : { "rootNames": [ "/user/username/projects/solution/app/src/app.ts" ], @@ -267,26 +267,26 @@ Info 56 [16:01:49.000] Config: /user/username/projects/solution/app/tsconfig.j } ] } -Info 57 [16:01:50.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/solution/app/tsconfig.json 2000 undefined Project: /user/username/projects/solution/tsconfig.json WatchType: Config file -Info 58 [16:01:51.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/solution/app/src 1 undefined Config: /user/username/projects/solution/app/tsconfig.json WatchType: Wild card directory -Info 59 [16:01:52.000] 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 60 [16:01:53.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/solution/node_modules/@types 1 undefined Project: /user/username/projects/solution/tsconfig.json WatchType: Type roots -Info 61 [16:01:54.000] 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 62 [16:01:55.000] Finishing updateGraphWorker: Project: /user/username/projects/solution/tsconfig.json Version: 1 structureChanged: true structureIsReused:: Not Elapsed:: *ms -Info 63 [16:01:56.000] Different program with same set of files -Info 64 [16:01:57.000] Creating configuration project /user/username/projects/solution/app/tsconfig.json -Info 65 [16:01:58.000] Plugins were requested but not running in environment that supports 'require'. Nothing will be loaded -Info 66 [16:01:59.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/solution/app/src/app.ts 500 undefined WatchType: Closed Script info -Info 67 [16:02:00.000] Starting updateGraphWorker: Project: /user/username/projects/solution/app/tsconfig.json -Info 68 [16:02:01.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/solution/shared 1 undefined Project: /user/username/projects/solution/app/tsconfig.json WatchType: Failed Lookup Locations -Info 69 [16:02:02.000] 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 70 [16:02:03.000] 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 71 [16:02:04.000] 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 72 [16:02:05.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/solution/node_modules/@types 1 undefined Project: /user/username/projects/solution/app/tsconfig.json WatchType: Type roots -Info 73 [16:02:06.000] 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 74 [16:02:07.000] Finishing updateGraphWorker: Project: /user/username/projects/solution/app/tsconfig.json Version: 1 structureChanged: true structureIsReused:: Not Elapsed:: *ms -Info 75 [16:02:08.000] Project '/user/username/projects/solution/app/tsconfig.json' (Configured) -Info 76 [16:02:09.000] Files (3) +Info 57 [00:01:50.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/solution/app/tsconfig.json 2000 undefined Project: /user/username/projects/solution/tsconfig.json WatchType: Config file +Info 58 [00:01:51.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/solution/app/src 1 undefined Config: /user/username/projects/solution/app/tsconfig.json WatchType: Wild card directory +Info 59 [00:01:52.000] 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 60 [00:01:53.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/solution/node_modules/@types 1 undefined Project: /user/username/projects/solution/tsconfig.json WatchType: Type roots +Info 61 [00:01:54.000] 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 62 [00:01:55.000] Finishing updateGraphWorker: Project: /user/username/projects/solution/tsconfig.json Version: 1 structureChanged: true structureIsReused:: Not Elapsed:: *ms +Info 63 [00:01:56.000] Different program with same set of files +Info 64 [00:01:57.000] Creating configuration project /user/username/projects/solution/app/tsconfig.json +Info 65 [00:01:58.000] Plugins were requested but not running in environment that supports 'require'. Nothing will be loaded +Info 66 [00:01:59.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/solution/app/src/app.ts 500 undefined WatchType: Closed Script info +Info 67 [00:02:00.000] Starting updateGraphWorker: Project: /user/username/projects/solution/app/tsconfig.json +Info 68 [00:02:01.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/solution/shared 1 undefined Project: /user/username/projects/solution/app/tsconfig.json WatchType: Failed Lookup Locations +Info 69 [00:02:02.000] 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 70 [00:02:03.000] 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 71 [00:02:04.000] 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 72 [00:02:05.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/solution/node_modules/@types 1 undefined Project: /user/username/projects/solution/app/tsconfig.json WatchType: Type roots +Info 73 [00:02:06.000] 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 74 [00:02:07.000] Finishing updateGraphWorker: Project: /user/username/projects/solution/app/tsconfig.json Version: 1 structureChanged: true structureIsReused:: Not Elapsed:: *ms +Info 75 [00:02:08.000] Project '/user/username/projects/solution/app/tsconfig.json' (Configured) +Info 76 [00:02:09.000] Files (3) /a/lib/lib.d.ts /user/username/projects/solution/shared/src/index.ts /user/username/projects/solution/app/src/app.ts @@ -299,12 +299,12 @@ Info 76 [16:02:09.000] Files (3) src/app.ts Matched by include pattern 'src' in 'tsconfig.json' -Info 77 [16:02:10.000] ----------------------------------------------- -Info 78 [16:02:11.000] Finding references to /user/username/projects/solution/shared/src/index.ts position 27 in project /user/username/projects/solution/app/tsconfig.json -Info 79 [16:02:12.000] Search path: /user/username/projects/solution/shared/src -Info 80 [16:02:13.000] For info: /user/username/projects/solution/shared/src/index.ts :: Config file name: /user/username/projects/solution/shared/tsconfig.json -Info 81 [16:02:14.000] Search path: /user/username/projects/solution/shared/src -Info 82 [16:02:15.000] For info: /user/username/projects/solution/shared/src/index.ts :: Config file name: /user/username/projects/solution/shared/tsconfig.json +Info 77 [00:02:10.000] ----------------------------------------------- +Info 78 [00:02:11.000] Finding references to /user/username/projects/solution/shared/src/index.ts position 27 in project /user/username/projects/solution/app/tsconfig.json +Info 79 [00:02:12.000] Search path: /user/username/projects/solution/shared/src +Info 80 [00:02:13.000] For info: /user/username/projects/solution/shared/src/index.ts :: Config file name: /user/username/projects/solution/shared/tsconfig.json +Info 81 [00:02:14.000] Search path: /user/username/projects/solution/shared/src +Info 82 [00:02:15.000] For info: /user/username/projects/solution/shared/src/index.ts :: Config file name: /user/username/projects/solution/shared/tsconfig.json After request PolledWatches:: @@ -343,7 +343,7 @@ FsWatchesRecursive:: /user/username/projects/solution/app/src: {} -Info 83 [16:02:16.000] response: +Info 83 [00:02:16.000] response: { "response": { "refs": [ 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 111c5fc457b0d..8925bbf32ff77 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 @@ -1,5 +1,5 @@ -Info 0 [16:00:44.000] Provided types map file "/a/lib/typesMap.json" doesn't exist -Info 1 [16:00:45.000] request: +Info 0 [00:00:44.000] Provided types map file "/a/lib/typesMap.json" doesn't exist +Info 1 [00:00:45.000] request: { "seq": 0, "type": "request", @@ -52,11 +52,11 @@ FsWatches:: FsWatchesRecursive:: -Info 2 [16:00:46.000] Search path: /user/username/projects/solution/api/src -Info 3 [16:00:47.000] For info: /user/username/projects/solution/api/src/server.ts :: Config file name: /user/username/projects/solution/api/tsconfig.json -Info 4 [16:00:48.000] Creating configuration project /user/username/projects/solution/api/tsconfig.json -Info 5 [16:00:49.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/solution/api/tsconfig.json 2000 undefined Project: /user/username/projects/solution/api/tsconfig.json WatchType: Config file -Info 6 [16:00:50.000] Config: /user/username/projects/solution/api/tsconfig.json : { +Info 2 [00:00:46.000] Search path: /user/username/projects/solution/api/src +Info 3 [00:00:47.000] For info: /user/username/projects/solution/api/src/server.ts :: Config file name: /user/username/projects/solution/api/tsconfig.json +Info 4 [00:00:48.000] Creating configuration project /user/username/projects/solution/api/tsconfig.json +Info 5 [00:00:49.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/solution/api/tsconfig.json 2000 undefined Project: /user/username/projects/solution/api/tsconfig.json WatchType: Config file +Info 6 [00:00:50.000] Config: /user/username/projects/solution/api/tsconfig.json : { "rootNames": [ "/user/username/projects/solution/api/src/server.ts" ], @@ -73,11 +73,11 @@ Info 6 [16:00:50.000] Config: /user/username/projects/solution/api/tsconfig.j } ] } -Info 7 [16:00:51.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/solution/api/src 1 undefined Config: /user/username/projects/solution/api/tsconfig.json WatchType: Wild card directory -Info 8 [16:00:52.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/solution/api/src 1 undefined Config: /user/username/projects/solution/api/tsconfig.json WatchType: Wild card directory -Info 9 [16:00:53.000] Plugins were requested but not running in environment that supports 'require'. Nothing will be loaded -Info 10 [16:00:54.000] Starting updateGraphWorker: Project: /user/username/projects/solution/api/tsconfig.json -Info 11 [16:00:55.000] Config: /user/username/projects/solution/shared/tsconfig.json : { +Info 7 [00:00:51.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/solution/api/src 1 undefined Config: /user/username/projects/solution/api/tsconfig.json WatchType: Wild card directory +Info 8 [00:00:52.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/solution/api/src 1 undefined Config: /user/username/projects/solution/api/tsconfig.json WatchType: Wild card directory +Info 9 [00:00:53.000] Plugins were requested but not running in environment that supports 'require'. Nothing will be loaded +Info 10 [00:00:54.000] Starting updateGraphWorker: Project: /user/username/projects/solution/api/tsconfig.json +Info 11 [00:00:55.000] Config: /user/username/projects/solution/shared/tsconfig.json : { "rootNames": [ "/user/username/projects/solution/shared/src/index.ts" ], @@ -88,20 +88,20 @@ Info 11 [16:00:55.000] Config: /user/username/projects/solution/shared/tsconfi "configFilePath": "/user/username/projects/solution/shared/tsconfig.json" } } -Info 12 [16:00:56.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/solution/shared/tsconfig.json 2000 undefined Project: /user/username/projects/solution/api/tsconfig.json WatchType: Config file -Info 13 [16:00:57.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/solution/shared/src 1 undefined Config: /user/username/projects/solution/shared/tsconfig.json WatchType: Wild card directory -Info 14 [16:00:58.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/solution/shared/src 1 undefined Config: /user/username/projects/solution/shared/tsconfig.json WatchType: Wild card directory -Info 15 [16:00:59.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/solution/shared 1 undefined Project: /user/username/projects/solution/api/tsconfig.json WatchType: Failed Lookup Locations -Info 16 [16:01:00.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/solution/shared 1 undefined Project: /user/username/projects/solution/api/tsconfig.json WatchType: Failed Lookup Locations -Info 17 [16:01:01.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/solution/shared/src/index.ts 500 undefined WatchType: Closed Script info -Info 18 [16:01:02.000] FileWatcher:: Added:: WatchInfo: /a/lib/lib.d.ts 500 undefined WatchType: Closed Script info -Info 19 [16:01:03.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/solution/api/node_modules/@types 1 undefined Project: /user/username/projects/solution/api/tsconfig.json WatchType: Type roots -Info 20 [16:01:04.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/solution/api/node_modules/@types 1 undefined Project: /user/username/projects/solution/api/tsconfig.json WatchType: Type roots -Info 21 [16:01:05.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/solution/node_modules/@types 1 undefined Project: /user/username/projects/solution/api/tsconfig.json WatchType: Type roots -Info 22 [16:01:06.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/solution/node_modules/@types 1 undefined Project: /user/username/projects/solution/api/tsconfig.json WatchType: Type roots -Info 23 [16:01:07.000] Finishing updateGraphWorker: Project: /user/username/projects/solution/api/tsconfig.json Version: 1 structureChanged: true structureIsReused:: Not Elapsed:: *ms -Info 24 [16:01:08.000] Project '/user/username/projects/solution/api/tsconfig.json' (Configured) -Info 25 [16:01:09.000] Files (3) +Info 12 [00:00:56.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/solution/shared/tsconfig.json 2000 undefined Project: /user/username/projects/solution/api/tsconfig.json WatchType: Config file +Info 13 [00:00:57.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/solution/shared/src 1 undefined Config: /user/username/projects/solution/shared/tsconfig.json WatchType: Wild card directory +Info 14 [00:00:58.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/solution/shared/src 1 undefined Config: /user/username/projects/solution/shared/tsconfig.json WatchType: Wild card directory +Info 15 [00:00:59.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/solution/shared 1 undefined Project: /user/username/projects/solution/api/tsconfig.json WatchType: Failed Lookup Locations +Info 16 [00:01:00.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/solution/shared 1 undefined Project: /user/username/projects/solution/api/tsconfig.json WatchType: Failed Lookup Locations +Info 17 [00:01:01.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/solution/shared/src/index.ts 500 undefined WatchType: Closed Script info +Info 18 [00:01:02.000] FileWatcher:: Added:: WatchInfo: /a/lib/lib.d.ts 500 undefined WatchType: Closed Script info +Info 19 [00:01:03.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/solution/api/node_modules/@types 1 undefined Project: /user/username/projects/solution/api/tsconfig.json WatchType: Type roots +Info 20 [00:01:04.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/solution/api/node_modules/@types 1 undefined Project: /user/username/projects/solution/api/tsconfig.json WatchType: Type roots +Info 21 [00:01:05.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/solution/node_modules/@types 1 undefined Project: /user/username/projects/solution/api/tsconfig.json WatchType: Type roots +Info 22 [00:01:06.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/solution/node_modules/@types 1 undefined Project: /user/username/projects/solution/api/tsconfig.json WatchType: Type roots +Info 23 [00:01:07.000] Finishing updateGraphWorker: Project: /user/username/projects/solution/api/tsconfig.json Version: 1 structureChanged: true structureIsReused:: Not Elapsed:: *ms +Info 24 [00:01:08.000] Project '/user/username/projects/solution/api/tsconfig.json' (Configured) +Info 25 [00:01:09.000] Files (3) /a/lib/lib.d.ts /user/username/projects/solution/shared/src/index.ts /user/username/projects/solution/api/src/server.ts @@ -114,24 +114,24 @@ Info 25 [16:01:09.000] Files (3) src/server.ts Matched by include pattern 'src' in 'tsconfig.json' -Info 26 [16:01:10.000] ----------------------------------------------- -Info 27 [16:01:11.000] Search path: /user/username/projects/solution/api -Info 28 [16:01:12.000] For info: /user/username/projects/solution/api/tsconfig.json :: Config file name: /user/username/projects/solution/tsconfig.json -Info 29 [16:01:13.000] Creating configuration project /user/username/projects/solution/tsconfig.json -Info 30 [16:01:14.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/solution/tsconfig.json 2000 undefined Project: /user/username/projects/solution/tsconfig.json WatchType: Config file -Info 31 [16:01:15.000] Search path: /user/username/projects/solution -Info 32 [16:01:16.000] For info: /user/username/projects/solution/tsconfig.json :: No config files found. -Info 33 [16:01:17.000] Project '/user/username/projects/solution/api/tsconfig.json' (Configured) -Info 33 [16:01:18.000] Files (3) +Info 26 [00:01:10.000] ----------------------------------------------- +Info 27 [00:01:11.000] Search path: /user/username/projects/solution/api +Info 28 [00:01:12.000] For info: /user/username/projects/solution/api/tsconfig.json :: Config file name: /user/username/projects/solution/tsconfig.json +Info 29 [00:01:13.000] Creating configuration project /user/username/projects/solution/tsconfig.json +Info 30 [00:01:14.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/solution/tsconfig.json 2000 undefined Project: /user/username/projects/solution/tsconfig.json WatchType: Config file +Info 31 [00:01:15.000] Search path: /user/username/projects/solution +Info 32 [00:01:16.000] For info: /user/username/projects/solution/tsconfig.json :: No config files found. +Info 33 [00:01:17.000] Project '/user/username/projects/solution/api/tsconfig.json' (Configured) +Info 33 [00:01:18.000] Files (3) -Info 33 [16:01:19.000] ----------------------------------------------- -Info 33 [16:01:20.000] Project '/user/username/projects/solution/tsconfig.json' (Configured) -Info 33 [16:01:21.000] Files (0) InitialLoadPending +Info 33 [00:01:19.000] ----------------------------------------------- +Info 33 [00:01:20.000] Project '/user/username/projects/solution/tsconfig.json' (Configured) +Info 33 [00:01:21.000] Files (0) InitialLoadPending -Info 33 [16:01:22.000] ----------------------------------------------- -Info 33 [16:01:23.000] Open files: -Info 33 [16:01:24.000] FileName: /user/username/projects/solution/api/src/server.ts ProjectRootPath: undefined -Info 33 [16:01:25.000] Projects: /user/username/projects/solution/api/tsconfig.json +Info 33 [00:01:22.000] ----------------------------------------------- +Info 33 [00:01:23.000] Open files: +Info 33 [00:01:24.000] FileName: /user/username/projects/solution/api/src/server.ts ProjectRootPath: undefined +Info 33 [00:01:25.000] Projects: /user/username/projects/solution/api/tsconfig.json After request PolledWatches:: @@ -160,11 +160,11 @@ FsWatchesRecursive:: /user/username/projects/solution/shared: {} -Info 33 [16:01:26.000] response: +Info 33 [00:01:26.000] response: { "responseRequired": false } -Info 34 [16:01:27.000] request: +Info 34 [00:01:27.000] request: { "command": "references", "arguments": { @@ -203,19 +203,19 @@ FsWatchesRecursive:: /user/username/projects/solution/shared: {} -Info 35 [16:01:28.000] Finding references to /user/username/projects/solution/api/src/server.ts position 56 in project /user/username/projects/solution/api/tsconfig.json -Info 36 [16:01:29.000] Search path: /user/username/projects/solution/shared/src -Info 37 [16:01:30.000] For info: /user/username/projects/solution/shared/src/index.ts :: Config file name: /user/username/projects/solution/shared/tsconfig.json -Info 38 [16:01:31.000] Creating configuration project /user/username/projects/solution/shared/tsconfig.json -Info 39 [16:01:32.000] Plugins were requested but not running in environment that supports 'require'. Nothing will be loaded -Info 40 [16:01:33.000] Starting updateGraphWorker: Project: /user/username/projects/solution/shared/tsconfig.json -Info 41 [16:01:34.000] 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 42 [16:01:35.000] 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 43 [16:01:36.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/solution/node_modules/@types 1 undefined Project: /user/username/projects/solution/shared/tsconfig.json WatchType: Type roots -Info 44 [16:01:37.000] 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 45 [16:01:38.000] Finishing updateGraphWorker: Project: /user/username/projects/solution/shared/tsconfig.json Version: 1 structureChanged: true structureIsReused:: Not Elapsed:: *ms -Info 46 [16:01:39.000] Project '/user/username/projects/solution/shared/tsconfig.json' (Configured) -Info 47 [16:01:40.000] Files (2) +Info 35 [00:01:28.000] Finding references to /user/username/projects/solution/api/src/server.ts position 56 in project /user/username/projects/solution/api/tsconfig.json +Info 36 [00:01:29.000] Search path: /user/username/projects/solution/shared/src +Info 37 [00:01:30.000] For info: /user/username/projects/solution/shared/src/index.ts :: Config file name: /user/username/projects/solution/shared/tsconfig.json +Info 38 [00:01:31.000] Creating configuration project /user/username/projects/solution/shared/tsconfig.json +Info 39 [00:01:32.000] Plugins were requested but not running in environment that supports 'require'. Nothing will be loaded +Info 40 [00:01:33.000] Starting updateGraphWorker: Project: /user/username/projects/solution/shared/tsconfig.json +Info 41 [00:01:34.000] 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 42 [00:01:35.000] 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 43 [00:01:36.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/solution/node_modules/@types 1 undefined Project: /user/username/projects/solution/shared/tsconfig.json WatchType: Type roots +Info 44 [00:01:37.000] 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 45 [00:01:38.000] Finishing updateGraphWorker: Project: /user/username/projects/solution/shared/tsconfig.json Version: 1 structureChanged: true structureIsReused:: Not Elapsed:: *ms +Info 46 [00:01:39.000] Project '/user/username/projects/solution/shared/tsconfig.json' (Configured) +Info 47 [00:01:40.000] Files (2) /a/lib/lib.d.ts /user/username/projects/solution/shared/src/index.ts @@ -225,12 +225,12 @@ Info 47 [16:01:40.000] Files (2) src/index.ts Matched by include pattern 'src' in 'tsconfig.json' -Info 48 [16:01:41.000] ----------------------------------------------- -Info 49 [16:01:42.000] Search path: /user/username/projects/solution/shared/src -Info 50 [16:01:43.000] For info: /user/username/projects/solution/shared/src/index.ts :: Config file name: /user/username/projects/solution/shared/tsconfig.json -Info 51 [16:01:44.000] Finding references to /user/username/projects/solution/shared/src/index.ts position 22 in project /user/username/projects/solution/shared/tsconfig.json -Info 52 [16:01:45.000] Loading configured project /user/username/projects/solution/tsconfig.json -Info 53 [16:01:46.000] Config: /user/username/projects/solution/tsconfig.json : { +Info 48 [00:01:41.000] ----------------------------------------------- +Info 49 [00:01:42.000] Search path: /user/username/projects/solution/shared/src +Info 50 [00:01:43.000] For info: /user/username/projects/solution/shared/src/index.ts :: Config file name: /user/username/projects/solution/shared/tsconfig.json +Info 51 [00:01:44.000] Finding references to /user/username/projects/solution/shared/src/index.ts position 22 in project /user/username/projects/solution/shared/tsconfig.json +Info 52 [00:01:45.000] Loading configured project /user/username/projects/solution/tsconfig.json +Info 53 [00:01:46.000] Config: /user/username/projects/solution/tsconfig.json : { "rootNames": [], "options": { "configFilePath": "/user/username/projects/solution/tsconfig.json" @@ -246,9 +246,9 @@ Info 53 [16:01:46.000] Config: /user/username/projects/solution/tsconfig.json } ] } -Info 54 [16:01:47.000] Plugins were requested but not running in environment that supports 'require'. Nothing will be loaded -Info 55 [16:01:48.000] Starting updateGraphWorker: Project: /user/username/projects/solution/tsconfig.json -Info 56 [16:01:49.000] Config: /user/username/projects/solution/app/tsconfig.json : { +Info 54 [00:01:47.000] Plugins were requested but not running in environment that supports 'require'. Nothing will be loaded +Info 55 [00:01:48.000] Starting updateGraphWorker: Project: /user/username/projects/solution/tsconfig.json +Info 56 [00:01:49.000] Config: /user/username/projects/solution/app/tsconfig.json : { "rootNames": [ "/user/username/projects/solution/app/src/app.ts" ], @@ -265,26 +265,26 @@ Info 56 [16:01:49.000] Config: /user/username/projects/solution/app/tsconfig.j } ] } -Info 57 [16:01:50.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/solution/app/tsconfig.json 2000 undefined Project: /user/username/projects/solution/tsconfig.json WatchType: Config file -Info 58 [16:01:51.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/solution/app/src 1 undefined Config: /user/username/projects/solution/app/tsconfig.json WatchType: Wild card directory -Info 59 [16:01:52.000] 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 60 [16:01:53.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/solution/node_modules/@types 1 undefined Project: /user/username/projects/solution/tsconfig.json WatchType: Type roots -Info 61 [16:01:54.000] 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 62 [16:01:55.000] Finishing updateGraphWorker: Project: /user/username/projects/solution/tsconfig.json Version: 1 structureChanged: true structureIsReused:: Not Elapsed:: *ms -Info 63 [16:01:56.000] Different program with same set of files -Info 64 [16:01:57.000] Creating configuration project /user/username/projects/solution/app/tsconfig.json -Info 65 [16:01:58.000] Plugins were requested but not running in environment that supports 'require'. Nothing will be loaded -Info 66 [16:01:59.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/solution/app/src/app.ts 500 undefined WatchType: Closed Script info -Info 67 [16:02:00.000] Starting updateGraphWorker: Project: /user/username/projects/solution/app/tsconfig.json -Info 68 [16:02:01.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/solution/shared 1 undefined Project: /user/username/projects/solution/app/tsconfig.json WatchType: Failed Lookup Locations -Info 69 [16:02:02.000] 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 70 [16:02:03.000] 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 71 [16:02:04.000] 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 72 [16:02:05.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/solution/node_modules/@types 1 undefined Project: /user/username/projects/solution/app/tsconfig.json WatchType: Type roots -Info 73 [16:02:06.000] 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 74 [16:02:07.000] Finishing updateGraphWorker: Project: /user/username/projects/solution/app/tsconfig.json Version: 1 structureChanged: true structureIsReused:: Not Elapsed:: *ms -Info 75 [16:02:08.000] Project '/user/username/projects/solution/app/tsconfig.json' (Configured) -Info 76 [16:02:09.000] Files (3) +Info 57 [00:01:50.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/solution/app/tsconfig.json 2000 undefined Project: /user/username/projects/solution/tsconfig.json WatchType: Config file +Info 58 [00:01:51.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/solution/app/src 1 undefined Config: /user/username/projects/solution/app/tsconfig.json WatchType: Wild card directory +Info 59 [00:01:52.000] 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 60 [00:01:53.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/solution/node_modules/@types 1 undefined Project: /user/username/projects/solution/tsconfig.json WatchType: Type roots +Info 61 [00:01:54.000] 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 62 [00:01:55.000] Finishing updateGraphWorker: Project: /user/username/projects/solution/tsconfig.json Version: 1 structureChanged: true structureIsReused:: Not Elapsed:: *ms +Info 63 [00:01:56.000] Different program with same set of files +Info 64 [00:01:57.000] Creating configuration project /user/username/projects/solution/app/tsconfig.json +Info 65 [00:01:58.000] Plugins were requested but not running in environment that supports 'require'. Nothing will be loaded +Info 66 [00:01:59.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/solution/app/src/app.ts 500 undefined WatchType: Closed Script info +Info 67 [00:02:00.000] Starting updateGraphWorker: Project: /user/username/projects/solution/app/tsconfig.json +Info 68 [00:02:01.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/solution/shared 1 undefined Project: /user/username/projects/solution/app/tsconfig.json WatchType: Failed Lookup Locations +Info 69 [00:02:02.000] 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 70 [00:02:03.000] 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 71 [00:02:04.000] 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 72 [00:02:05.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/solution/node_modules/@types 1 undefined Project: /user/username/projects/solution/app/tsconfig.json WatchType: Type roots +Info 73 [00:02:06.000] 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 74 [00:02:07.000] Finishing updateGraphWorker: Project: /user/username/projects/solution/app/tsconfig.json Version: 1 structureChanged: true structureIsReused:: Not Elapsed:: *ms +Info 75 [00:02:08.000] Project '/user/username/projects/solution/app/tsconfig.json' (Configured) +Info 76 [00:02:09.000] Files (3) /a/lib/lib.d.ts /user/username/projects/solution/shared/src/index.ts /user/username/projects/solution/app/src/app.ts @@ -297,12 +297,12 @@ Info 76 [16:02:09.000] Files (3) src/app.ts Matched by include pattern 'src' in 'tsconfig.json' -Info 77 [16:02:10.000] ----------------------------------------------- -Info 78 [16:02:11.000] Finding references to /user/username/projects/solution/shared/src/index.ts position 22 in project /user/username/projects/solution/app/tsconfig.json -Info 79 [16:02:12.000] Search path: /user/username/projects/solution/shared/src -Info 80 [16:02:13.000] For info: /user/username/projects/solution/shared/src/index.ts :: Config file name: /user/username/projects/solution/shared/tsconfig.json -Info 81 [16:02:14.000] Search path: /user/username/projects/solution/shared/src -Info 82 [16:02:15.000] For info: /user/username/projects/solution/shared/src/index.ts :: Config file name: /user/username/projects/solution/shared/tsconfig.json +Info 77 [00:02:10.000] ----------------------------------------------- +Info 78 [00:02:11.000] Finding references to /user/username/projects/solution/shared/src/index.ts position 22 in project /user/username/projects/solution/app/tsconfig.json +Info 79 [00:02:12.000] Search path: /user/username/projects/solution/shared/src +Info 80 [00:02:13.000] For info: /user/username/projects/solution/shared/src/index.ts :: Config file name: /user/username/projects/solution/shared/tsconfig.json +Info 81 [00:02:14.000] Search path: /user/username/projects/solution/shared/src +Info 82 [00:02:15.000] For info: /user/username/projects/solution/shared/src/index.ts :: Config file name: /user/username/projects/solution/shared/tsconfig.json After request PolledWatches:: @@ -341,7 +341,7 @@ FsWatchesRecursive:: /user/username/projects/solution/app/src: {} -Info 83 [16:02:16.000] response: +Info 83 [00:02:16.000] response: { "response": { "refs": [ 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 a12d6877e02da..0f7ec68069535 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 @@ -1,5 +1,5 @@ -Info 0 [16:01:53.000] Provided types map file "/a/lib/typesMap.json" doesn't exist -Info 1 [16:01:54.000] request: +Info 0 [00:01:53.000] Provided types map file "/a/lib/typesMap.json" doesn't exist +Info 1 [00:01:54.000] request: { "seq": 0, "type": "request", @@ -101,11 +101,11 @@ FsWatches:: FsWatchesRecursive:: -Info 2 [16:01:55.000] Search path: /user/username/projects/myproject/main/src -Info 3 [16:01:56.000] For info: /user/username/projects/myproject/main/src/file1.ts :: Config file name: /user/username/projects/myproject/main/tsconfig.json -Info 4 [16:01:57.000] Creating configuration project /user/username/projects/myproject/main/tsconfig.json -Info 5 [16:01:58.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/main/tsconfig.json 2000 undefined Project: /user/username/projects/myproject/main/tsconfig.json WatchType: Config file -Info 6 [16:01:59.000] Config: /user/username/projects/myproject/main/tsconfig.json : { +Info 2 [00:01:55.000] Search path: /user/username/projects/myproject/main/src +Info 3 [00:01:56.000] For info: /user/username/projects/myproject/main/src/file1.ts :: Config file name: /user/username/projects/myproject/main/tsconfig.json +Info 4 [00:01:57.000] Creating configuration project /user/username/projects/myproject/main/tsconfig.json +Info 5 [00:01:58.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/main/tsconfig.json 2000 undefined Project: /user/username/projects/myproject/main/tsconfig.json WatchType: Config file +Info 6 [00:01:59.000] Config: /user/username/projects/myproject/main/tsconfig.json : { "rootNames": [ "/user/username/projects/myproject/main/src/file1.ts" ], @@ -144,11 +144,11 @@ Info 6 [16:01:59.000] Config: /user/username/projects/myproject/main/tsconfig } ] } -Info 7 [16:02:00.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/main 1 undefined Config: /user/username/projects/myproject/main/tsconfig.json WatchType: Wild card directory -Info 8 [16:02:01.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/main 1 undefined Config: /user/username/projects/myproject/main/tsconfig.json WatchType: Wild card directory -Info 9 [16:02:02.000] Plugins were requested but not running in environment that supports 'require'. Nothing will be loaded -Info 10 [16:02:03.000] Starting updateGraphWorker: Project: /user/username/projects/myproject/main/tsconfig.json -Info 11 [16:02:04.000] Config: /user/username/projects/myproject/core/tsconfig.json : { +Info 7 [00:02:00.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/main 1 undefined Config: /user/username/projects/myproject/main/tsconfig.json WatchType: Wild card directory +Info 8 [00:02:01.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/main 1 undefined Config: /user/username/projects/myproject/main/tsconfig.json WatchType: Wild card directory +Info 9 [00:02:02.000] Plugins were requested but not running in environment that supports 'require'. Nothing will be loaded +Info 10 [00:02:03.000] Starting updateGraphWorker: Project: /user/username/projects/myproject/main/tsconfig.json +Info 11 [00:02:04.000] Config: /user/username/projects/myproject/core/tsconfig.json : { "rootNames": [ "/user/username/projects/myproject/core/src/file1.ts" ], @@ -157,10 +157,10 @@ Info 11 [16:02:04.000] Config: /user/username/projects/myproject/core/tsconfig "configFilePath": "/user/username/projects/myproject/core/tsconfig.json" } } -Info 12 [16:02:05.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/core/tsconfig.json 2000 undefined Project: /user/username/projects/myproject/main/tsconfig.json WatchType: Config file -Info 13 [16:02:06.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/core 1 undefined Config: /user/username/projects/myproject/core/tsconfig.json WatchType: Wild card directory -Info 14 [16:02:07.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/core 1 undefined Config: /user/username/projects/myproject/core/tsconfig.json WatchType: Wild card directory -Info 15 [16:02:08.000] Config: /user/username/projects/myproject/indirect/tsconfig.json : { +Info 12 [00:02:05.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/core/tsconfig.json 2000 undefined Project: /user/username/projects/myproject/main/tsconfig.json WatchType: Config file +Info 13 [00:02:06.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/core 1 undefined Config: /user/username/projects/myproject/core/tsconfig.json WatchType: Wild card directory +Info 14 [00:02:07.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/core 1 undefined Config: /user/username/projects/myproject/core/tsconfig.json WatchType: Wild card directory +Info 15 [00:02:08.000] Config: /user/username/projects/myproject/indirect/tsconfig.json : { "rootNames": [ "/user/username/projects/myproject/indirect/src/file1.ts" ], @@ -175,10 +175,10 @@ Info 15 [16:02:08.000] Config: /user/username/projects/myproject/indirect/tsco } ] } -Info 16 [16:02:09.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/indirect/tsconfig.json 2000 undefined Project: /user/username/projects/myproject/main/tsconfig.json WatchType: Config file -Info 17 [16:02:10.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/indirect 1 undefined Config: /user/username/projects/myproject/indirect/tsconfig.json WatchType: Wild card directory -Info 18 [16:02:11.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/indirect 1 undefined Config: /user/username/projects/myproject/indirect/tsconfig.json WatchType: Wild card directory -Info 19 [16:02:12.000] Config: /user/username/projects/myproject/coreRef1/tsconfig.json : { +Info 16 [00:02:09.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/indirect/tsconfig.json 2000 undefined Project: /user/username/projects/myproject/main/tsconfig.json WatchType: Config file +Info 17 [00:02:10.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/indirect 1 undefined Config: /user/username/projects/myproject/indirect/tsconfig.json WatchType: Wild card directory +Info 18 [00:02:11.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/indirect 1 undefined Config: /user/username/projects/myproject/indirect/tsconfig.json WatchType: Wild card directory +Info 19 [00:02:12.000] Config: /user/username/projects/myproject/coreRef1/tsconfig.json : { "rootNames": [ "/user/username/projects/myproject/coreRef1/src/file1.ts" ], @@ -193,10 +193,10 @@ Info 19 [16:02:12.000] Config: /user/username/projects/myproject/coreRef1/tsco } ] } -Info 20 [16:02:13.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/coreRef1/tsconfig.json 2000 undefined Project: /user/username/projects/myproject/main/tsconfig.json WatchType: Config file -Info 21 [16:02:14.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/coreRef1 1 undefined Config: /user/username/projects/myproject/coreRef1/tsconfig.json WatchType: Wild card directory -Info 22 [16:02:15.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/coreRef1 1 undefined Config: /user/username/projects/myproject/coreRef1/tsconfig.json WatchType: Wild card directory -Info 23 [16:02:16.000] Config: /user/username/projects/myproject/noCoreRef1/tsconfig.json : { +Info 20 [00:02:13.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/coreRef1/tsconfig.json 2000 undefined Project: /user/username/projects/myproject/main/tsconfig.json WatchType: Config file +Info 21 [00:02:14.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/coreRef1 1 undefined Config: /user/username/projects/myproject/coreRef1/tsconfig.json WatchType: Wild card directory +Info 22 [00:02:15.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/coreRef1 1 undefined Config: /user/username/projects/myproject/coreRef1/tsconfig.json WatchType: Wild card directory +Info 23 [00:02:16.000] Config: /user/username/projects/myproject/noCoreRef1/tsconfig.json : { "rootNames": [ "/user/username/projects/myproject/noCoreRef1/src/file1.ts" ], @@ -205,10 +205,10 @@ Info 23 [16:02:16.000] Config: /user/username/projects/myproject/noCoreRef1/ts "configFilePath": "/user/username/projects/myproject/noCoreRef1/tsconfig.json" } } -Info 24 [16:02:17.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/noCoreRef1/tsconfig.json 2000 undefined Project: /user/username/projects/myproject/main/tsconfig.json WatchType: Config file -Info 25 [16:02:18.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/noCoreRef1 1 undefined Config: /user/username/projects/myproject/noCoreRef1/tsconfig.json WatchType: Wild card directory -Info 26 [16:02:19.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/noCoreRef1 1 undefined Config: /user/username/projects/myproject/noCoreRef1/tsconfig.json WatchType: Wild card directory -Info 27 [16:02:20.000] Config: /user/username/projects/myproject/indirectDisabledChildLoad1/tsconfig.json : { +Info 24 [00:02:17.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/noCoreRef1/tsconfig.json 2000 undefined Project: /user/username/projects/myproject/main/tsconfig.json WatchType: Config file +Info 25 [00:02:18.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/noCoreRef1 1 undefined Config: /user/username/projects/myproject/noCoreRef1/tsconfig.json WatchType: Wild card directory +Info 26 [00:02:19.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/noCoreRef1 1 undefined Config: /user/username/projects/myproject/noCoreRef1/tsconfig.json WatchType: Wild card directory +Info 27 [00:02:20.000] Config: /user/username/projects/myproject/indirectDisabledChildLoad1/tsconfig.json : { "rootNames": [ "/user/username/projects/myproject/indirectDisabledChildLoad1/src/file1.ts" ], @@ -224,10 +224,10 @@ Info 27 [16:02:20.000] Config: /user/username/projects/myproject/indirectDisab } ] } -Info 28 [16:02:21.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/indirectDisabledChildLoad1/tsconfig.json 2000 undefined Project: /user/username/projects/myproject/main/tsconfig.json WatchType: Config file -Info 29 [16:02:22.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/indirectDisabledChildLoad1 1 undefined Config: /user/username/projects/myproject/indirectDisabledChildLoad1/tsconfig.json WatchType: Wild card directory -Info 30 [16:02:23.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/indirectDisabledChildLoad1 1 undefined Config: /user/username/projects/myproject/indirectDisabledChildLoad1/tsconfig.json WatchType: Wild card directory -Info 31 [16:02:24.000] Config: /user/username/projects/myproject/coreRef2/tsconfig.json : { +Info 28 [00:02:21.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/indirectDisabledChildLoad1/tsconfig.json 2000 undefined Project: /user/username/projects/myproject/main/tsconfig.json WatchType: Config file +Info 29 [00:02:22.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/indirectDisabledChildLoad1 1 undefined Config: /user/username/projects/myproject/indirectDisabledChildLoad1/tsconfig.json WatchType: Wild card directory +Info 30 [00:02:23.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/indirectDisabledChildLoad1 1 undefined Config: /user/username/projects/myproject/indirectDisabledChildLoad1/tsconfig.json WatchType: Wild card directory +Info 31 [00:02:24.000] Config: /user/username/projects/myproject/coreRef2/tsconfig.json : { "rootNames": [ "/user/username/projects/myproject/coreRef2/src/file1.ts" ], @@ -242,10 +242,10 @@ Info 31 [16:02:24.000] Config: /user/username/projects/myproject/coreRef2/tsco } ] } -Info 32 [16:02:25.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/coreRef2/tsconfig.json 2000 undefined Project: /user/username/projects/myproject/main/tsconfig.json WatchType: Config file -Info 33 [16:02:26.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/coreRef2 1 undefined Config: /user/username/projects/myproject/coreRef2/tsconfig.json WatchType: Wild card directory -Info 34 [16:02:27.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/coreRef2 1 undefined Config: /user/username/projects/myproject/coreRef2/tsconfig.json WatchType: Wild card directory -Info 35 [16:02:28.000] Config: /user/username/projects/myproject/indirectDisabledChildLoad2/tsconfig.json : { +Info 32 [00:02:25.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/coreRef2/tsconfig.json 2000 undefined Project: /user/username/projects/myproject/main/tsconfig.json WatchType: Config file +Info 33 [00:02:26.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/coreRef2 1 undefined Config: /user/username/projects/myproject/coreRef2/tsconfig.json WatchType: Wild card directory +Info 34 [00:02:27.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/coreRef2 1 undefined Config: /user/username/projects/myproject/coreRef2/tsconfig.json WatchType: Wild card directory +Info 35 [00:02:28.000] Config: /user/username/projects/myproject/indirectDisabledChildLoad2/tsconfig.json : { "rootNames": [ "/user/username/projects/myproject/indirectDisabledChildLoad2/src/file1.ts" ], @@ -261,10 +261,10 @@ Info 35 [16:02:28.000] Config: /user/username/projects/myproject/indirectDisab } ] } -Info 36 [16:02:29.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/indirectDisabledChildLoad2/tsconfig.json 2000 undefined Project: /user/username/projects/myproject/main/tsconfig.json WatchType: Config file -Info 37 [16:02:30.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/indirectDisabledChildLoad2 1 undefined Config: /user/username/projects/myproject/indirectDisabledChildLoad2/tsconfig.json WatchType: Wild card directory -Info 38 [16:02:31.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/indirectDisabledChildLoad2 1 undefined Config: /user/username/projects/myproject/indirectDisabledChildLoad2/tsconfig.json WatchType: Wild card directory -Info 39 [16:02:32.000] Config: /user/username/projects/myproject/coreRef3/tsconfig.json : { +Info 36 [00:02:29.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/indirectDisabledChildLoad2/tsconfig.json 2000 undefined Project: /user/username/projects/myproject/main/tsconfig.json WatchType: Config file +Info 37 [00:02:30.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/indirectDisabledChildLoad2 1 undefined Config: /user/username/projects/myproject/indirectDisabledChildLoad2/tsconfig.json WatchType: Wild card directory +Info 38 [00:02:31.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/indirectDisabledChildLoad2 1 undefined Config: /user/username/projects/myproject/indirectDisabledChildLoad2/tsconfig.json WatchType: Wild card directory +Info 39 [00:02:32.000] Config: /user/username/projects/myproject/coreRef3/tsconfig.json : { "rootNames": [ "/user/username/projects/myproject/coreRef3/src/file1.ts" ], @@ -279,10 +279,10 @@ Info 39 [16:02:32.000] Config: /user/username/projects/myproject/coreRef3/tsco } ] } -Info 40 [16:02:33.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/coreRef3/tsconfig.json 2000 undefined Project: /user/username/projects/myproject/main/tsconfig.json WatchType: Config file -Info 41 [16:02:34.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/coreRef3 1 undefined Config: /user/username/projects/myproject/coreRef3/tsconfig.json WatchType: Wild card directory -Info 42 [16:02:35.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/coreRef3 1 undefined Config: /user/username/projects/myproject/coreRef3/tsconfig.json WatchType: Wild card directory -Info 43 [16:02:36.000] Config: /user/username/projects/myproject/refToCoreRef3/tsconfig.json : { +Info 40 [00:02:33.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/coreRef3/tsconfig.json 2000 undefined Project: /user/username/projects/myproject/main/tsconfig.json WatchType: Config file +Info 41 [00:02:34.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/coreRef3 1 undefined Config: /user/username/projects/myproject/coreRef3/tsconfig.json WatchType: Wild card directory +Info 42 [00:02:35.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/coreRef3 1 undefined Config: /user/username/projects/myproject/coreRef3/tsconfig.json WatchType: Wild card directory +Info 43 [00:02:36.000] Config: /user/username/projects/myproject/refToCoreRef3/tsconfig.json : { "rootNames": [ "/user/username/projects/myproject/refToCoreRef3/src/file1.ts" ], @@ -297,10 +297,10 @@ Info 43 [16:02:36.000] Config: /user/username/projects/myproject/refToCoreRef3 } ] } -Info 44 [16:02:37.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/refToCoreRef3/tsconfig.json 2000 undefined Project: /user/username/projects/myproject/main/tsconfig.json WatchType: Config file -Info 45 [16:02:38.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/refToCoreRef3 1 undefined Config: /user/username/projects/myproject/refToCoreRef3/tsconfig.json WatchType: Wild card directory -Info 46 [16:02:39.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/refToCoreRef3 1 undefined Config: /user/username/projects/myproject/refToCoreRef3/tsconfig.json WatchType: Wild card directory -Info 47 [16:02:40.000] Config: /user/username/projects/myproject/indirectNoCoreRef/tsconfig.json : { +Info 44 [00:02:37.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/refToCoreRef3/tsconfig.json 2000 undefined Project: /user/username/projects/myproject/main/tsconfig.json WatchType: Config file +Info 45 [00:02:38.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/refToCoreRef3 1 undefined Config: /user/username/projects/myproject/refToCoreRef3/tsconfig.json WatchType: Wild card directory +Info 46 [00:02:39.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/refToCoreRef3 1 undefined Config: /user/username/projects/myproject/refToCoreRef3/tsconfig.json WatchType: Wild card directory +Info 47 [00:02:40.000] Config: /user/username/projects/myproject/indirectNoCoreRef/tsconfig.json : { "rootNames": [ "/user/username/projects/myproject/indirectNoCoreRef/src/file1.ts" ], @@ -315,10 +315,10 @@ Info 47 [16:02:40.000] Config: /user/username/projects/myproject/indirectNoCor } ] } -Info 48 [16:02:41.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/indirectNoCoreRef/tsconfig.json 2000 undefined Project: /user/username/projects/myproject/main/tsconfig.json WatchType: Config file -Info 49 [16:02:42.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/indirectNoCoreRef 1 undefined Config: /user/username/projects/myproject/indirectNoCoreRef/tsconfig.json WatchType: Wild card directory -Info 50 [16:02:43.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/indirectNoCoreRef 1 undefined Config: /user/username/projects/myproject/indirectNoCoreRef/tsconfig.json WatchType: Wild card directory -Info 51 [16:02:44.000] Config: /user/username/projects/myproject/noCoreRef2/tsconfig.json : { +Info 48 [00:02:41.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/indirectNoCoreRef/tsconfig.json 2000 undefined Project: /user/username/projects/myproject/main/tsconfig.json WatchType: Config file +Info 49 [00:02:42.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/indirectNoCoreRef 1 undefined Config: /user/username/projects/myproject/indirectNoCoreRef/tsconfig.json WatchType: Wild card directory +Info 50 [00:02:43.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/indirectNoCoreRef 1 undefined Config: /user/username/projects/myproject/indirectNoCoreRef/tsconfig.json WatchType: Wild card directory +Info 51 [00:02:44.000] Config: /user/username/projects/myproject/noCoreRef2/tsconfig.json : { "rootNames": [ "/user/username/projects/myproject/noCoreRef2/src/file1.ts" ], @@ -327,17 +327,17 @@ Info 51 [16:02:44.000] Config: /user/username/projects/myproject/noCoreRef2/ts "configFilePath": "/user/username/projects/myproject/noCoreRef2/tsconfig.json" } } -Info 52 [16:02:45.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/noCoreRef2/tsconfig.json 2000 undefined Project: /user/username/projects/myproject/main/tsconfig.json WatchType: Config file -Info 53 [16:02:46.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/noCoreRef2 1 undefined Config: /user/username/projects/myproject/noCoreRef2/tsconfig.json WatchType: Wild card directory -Info 54 [16:02:47.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/noCoreRef2 1 undefined Config: /user/username/projects/myproject/noCoreRef2/tsconfig.json WatchType: Wild card directory -Info 55 [16:02:48.000] FileWatcher:: Added:: WatchInfo: /a/lib/lib.d.ts 500 undefined WatchType: Closed Script info -Info 56 [16:02:49.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/main/node_modules/@types 1 undefined Project: /user/username/projects/myproject/main/tsconfig.json WatchType: Type roots -Info 57 [16:02:50.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/main/node_modules/@types 1 undefined Project: /user/username/projects/myproject/main/tsconfig.json WatchType: Type roots -Info 58 [16:02:51.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/main/tsconfig.json WatchType: Type roots -Info 59 [16:02:52.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/main/tsconfig.json WatchType: Type roots -Info 60 [16:02:53.000] Finishing updateGraphWorker: Project: /user/username/projects/myproject/main/tsconfig.json Version: 1 structureChanged: true structureIsReused:: Not Elapsed:: *ms -Info 61 [16:02:54.000] Project '/user/username/projects/myproject/main/tsconfig.json' (Configured) -Info 62 [16:02:55.000] Files (2) +Info 52 [00:02:45.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/noCoreRef2/tsconfig.json 2000 undefined Project: /user/username/projects/myproject/main/tsconfig.json WatchType: Config file +Info 53 [00:02:46.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/noCoreRef2 1 undefined Config: /user/username/projects/myproject/noCoreRef2/tsconfig.json WatchType: Wild card directory +Info 54 [00:02:47.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/noCoreRef2 1 undefined Config: /user/username/projects/myproject/noCoreRef2/tsconfig.json WatchType: Wild card directory +Info 55 [00:02:48.000] FileWatcher:: Added:: WatchInfo: /a/lib/lib.d.ts 500 undefined WatchType: Closed Script info +Info 56 [00:02:49.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/main/node_modules/@types 1 undefined Project: /user/username/projects/myproject/main/tsconfig.json WatchType: Type roots +Info 57 [00:02:50.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/main/node_modules/@types 1 undefined Project: /user/username/projects/myproject/main/tsconfig.json WatchType: Type roots +Info 58 [00:02:51.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/main/tsconfig.json WatchType: Type roots +Info 59 [00:02:52.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/main/tsconfig.json WatchType: Type roots +Info 60 [00:02:53.000] Finishing updateGraphWorker: Project: /user/username/projects/myproject/main/tsconfig.json Version: 1 structureChanged: true structureIsReused:: Not Elapsed:: *ms +Info 61 [00:02:54.000] Project '/user/username/projects/myproject/main/tsconfig.json' (Configured) +Info 62 [00:02:55.000] Files (2) /a/lib/lib.d.ts /user/username/projects/myproject/main/src/file1.ts @@ -347,16 +347,16 @@ Info 62 [16:02:55.000] Files (2) src/file1.ts Matched by default include pattern '**/*' -Info 63 [16:02:56.000] ----------------------------------------------- -Info 64 [16:02:57.000] Search path: /user/username/projects/myproject/main -Info 65 [16:02:58.000] For info: /user/username/projects/myproject/main/tsconfig.json :: No config files found. -Info 66 [16:02:59.000] Project '/user/username/projects/myproject/main/tsconfig.json' (Configured) -Info 66 [16:03:00.000] Files (2) +Info 63 [00:02:56.000] ----------------------------------------------- +Info 64 [00:02:57.000] Search path: /user/username/projects/myproject/main +Info 65 [00:02:58.000] For info: /user/username/projects/myproject/main/tsconfig.json :: No config files found. +Info 66 [00:02:59.000] Project '/user/username/projects/myproject/main/tsconfig.json' (Configured) +Info 66 [00:03:00.000] Files (2) -Info 66 [16:03:01.000] ----------------------------------------------- -Info 66 [16:03:02.000] Open files: -Info 66 [16:03:03.000] FileName: /user/username/projects/myproject/main/src/file1.ts ProjectRootPath: undefined -Info 66 [16:03:04.000] Projects: /user/username/projects/myproject/main/tsconfig.json +Info 66 [00:03:01.000] ----------------------------------------------- +Info 66 [00:03:02.000] Open files: +Info 66 [00:03:03.000] FileName: /user/username/projects/myproject/main/src/file1.ts ProjectRootPath: undefined +Info 66 [00:03:04.000] Projects: /user/username/projects/myproject/main/tsconfig.json After request PolledWatches:: @@ -419,11 +419,11 @@ FsWatchesRecursive:: /user/username/projects/myproject/noCoreRef2: {} -Info 66 [16:03:05.000] response: +Info 66 [00:03:05.000] response: { "responseRequired": false } -Info 67 [16:03:06.000] request: +Info 67 [00:03:06.000] request: { "seq": 0, "type": "request", @@ -494,18 +494,18 @@ FsWatchesRecursive:: /user/username/projects/myproject/noCoreRef2: {} -Info 68 [16:03:07.000] Search path: /user/username/projects/myproject/core/src -Info 69 [16:03:08.000] For info: /user/username/projects/myproject/core/src/file1.ts :: Config file name: /user/username/projects/myproject/core/tsconfig.json -Info 70 [16:03:09.000] Creating configuration project /user/username/projects/myproject/core/tsconfig.json -Info 71 [16:03:10.000] Plugins were requested but not running in environment that supports 'require'. Nothing will be loaded -Info 72 [16:03:11.000] Starting updateGraphWorker: Project: /user/username/projects/myproject/core/tsconfig.json -Info 73 [16:03:12.000] 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 74 [16:03:13.000] 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 75 [16:03:14.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/core/tsconfig.json WatchType: Type roots -Info 76 [16:03:15.000] 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 77 [16:03:16.000] Finishing updateGraphWorker: Project: /user/username/projects/myproject/core/tsconfig.json Version: 1 structureChanged: true structureIsReused:: Not Elapsed:: *ms -Info 78 [16:03:17.000] Project '/user/username/projects/myproject/core/tsconfig.json' (Configured) -Info 79 [16:03:18.000] Files (2) +Info 68 [00:03:07.000] Search path: /user/username/projects/myproject/core/src +Info 69 [00:03:08.000] For info: /user/username/projects/myproject/core/src/file1.ts :: Config file name: /user/username/projects/myproject/core/tsconfig.json +Info 70 [00:03:09.000] Creating configuration project /user/username/projects/myproject/core/tsconfig.json +Info 71 [00:03:10.000] Plugins were requested but not running in environment that supports 'require'. Nothing will be loaded +Info 72 [00:03:11.000] Starting updateGraphWorker: Project: /user/username/projects/myproject/core/tsconfig.json +Info 73 [00:03:12.000] 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 74 [00:03:13.000] 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 75 [00:03:14.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/core/tsconfig.json WatchType: Type roots +Info 76 [00:03:15.000] 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 77 [00:03:16.000] Finishing updateGraphWorker: Project: /user/username/projects/myproject/core/tsconfig.json Version: 1 structureChanged: true structureIsReused:: Not Elapsed:: *ms +Info 78 [00:03:17.000] Project '/user/username/projects/myproject/core/tsconfig.json' (Configured) +Info 79 [00:03:18.000] Files (2) /a/lib/lib.d.ts /user/username/projects/myproject/core/src/file1.ts @@ -515,22 +515,22 @@ Info 79 [16:03:18.000] Files (2) src/file1.ts Matched by default include pattern '**/*' -Info 80 [16:03:19.000] ----------------------------------------------- -Info 81 [16:03:20.000] Search path: /user/username/projects/myproject/core -Info 82 [16:03:21.000] For info: /user/username/projects/myproject/core/tsconfig.json :: No config files found. -Info 83 [16:03:22.000] Project '/user/username/projects/myproject/main/tsconfig.json' (Configured) -Info 83 [16:03:23.000] Files (2) - -Info 83 [16:03:24.000] ----------------------------------------------- -Info 83 [16:03:25.000] Project '/user/username/projects/myproject/core/tsconfig.json' (Configured) -Info 83 [16:03:26.000] Files (2) - -Info 83 [16:03:27.000] ----------------------------------------------- -Info 83 [16:03:28.000] Open files: -Info 83 [16:03:29.000] FileName: /user/username/projects/myproject/main/src/file1.ts ProjectRootPath: undefined -Info 83 [16:03:30.000] Projects: /user/username/projects/myproject/main/tsconfig.json -Info 83 [16:03:31.000] FileName: /user/username/projects/myproject/core/src/file1.ts ProjectRootPath: undefined -Info 83 [16:03:32.000] Projects: /user/username/projects/myproject/core/tsconfig.json +Info 80 [00:03:19.000] ----------------------------------------------- +Info 81 [00:03:20.000] Search path: /user/username/projects/myproject/core +Info 82 [00:03:21.000] For info: /user/username/projects/myproject/core/tsconfig.json :: No config files found. +Info 83 [00:03:22.000] Project '/user/username/projects/myproject/main/tsconfig.json' (Configured) +Info 83 [00:03:23.000] Files (2) + +Info 83 [00:03:24.000] ----------------------------------------------- +Info 83 [00:03:25.000] Project '/user/username/projects/myproject/core/tsconfig.json' (Configured) +Info 83 [00:03:26.000] Files (2) + +Info 83 [00:03:27.000] ----------------------------------------------- +Info 83 [00:03:28.000] Open files: +Info 83 [00:03:29.000] FileName: /user/username/projects/myproject/main/src/file1.ts ProjectRootPath: undefined +Info 83 [00:03:30.000] Projects: /user/username/projects/myproject/main/tsconfig.json +Info 83 [00:03:31.000] FileName: /user/username/projects/myproject/core/src/file1.ts ProjectRootPath: undefined +Info 83 [00:03:32.000] Projects: /user/username/projects/myproject/core/tsconfig.json After request PolledWatches:: @@ -595,11 +595,11 @@ FsWatchesRecursive:: /user/username/projects/myproject/noCoreRef2: {} -Info 83 [16:03:33.000] response: +Info 83 [00:03:33.000] response: { "responseRequired": false } -Info 84 [16:03:34.000] request: +Info 84 [00:03:34.000] request: { "command": "references", "arguments": { @@ -674,18 +674,18 @@ FsWatchesRecursive:: /user/username/projects/myproject/noCoreRef2: {} -Info 85 [16:03:35.000] Finding references to /user/username/projects/myproject/core/src/file1.ts position 13 in project /user/username/projects/myproject/core/tsconfig.json -Info 86 [16:03:36.000] Creating configuration project /user/username/projects/myproject/indirect/tsconfig.json -Info 87 [16:03:37.000] Plugins were requested but not running in environment that supports 'require'. Nothing will be loaded -Info 88 [16:03:38.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/indirect/src/file1.ts 500 undefined WatchType: Closed Script info -Info 89 [16:03:39.000] Starting updateGraphWorker: Project: /user/username/projects/myproject/indirect/tsconfig.json -Info 90 [16:03:40.000] 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 91 [16:03:41.000] 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 92 [16:03:42.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/indirect/tsconfig.json WatchType: Type roots -Info 93 [16:03:43.000] 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 94 [16:03:44.000] Finishing updateGraphWorker: Project: /user/username/projects/myproject/indirect/tsconfig.json Version: 1 structureChanged: true structureIsReused:: Not Elapsed:: *ms -Info 95 [16:03:45.000] Project '/user/username/projects/myproject/indirect/tsconfig.json' (Configured) -Info 96 [16:03:46.000] Files (2) +Info 85 [00:03:35.000] Finding references to /user/username/projects/myproject/core/src/file1.ts position 13 in project /user/username/projects/myproject/core/tsconfig.json +Info 86 [00:03:36.000] Creating configuration project /user/username/projects/myproject/indirect/tsconfig.json +Info 87 [00:03:37.000] Plugins were requested but not running in environment that supports 'require'. Nothing will be loaded +Info 88 [00:03:38.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/indirect/src/file1.ts 500 undefined WatchType: Closed Script info +Info 89 [00:03:39.000] Starting updateGraphWorker: Project: /user/username/projects/myproject/indirect/tsconfig.json +Info 90 [00:03:40.000] 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 91 [00:03:41.000] 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 92 [00:03:42.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/indirect/tsconfig.json WatchType: Type roots +Info 93 [00:03:43.000] 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 94 [00:03:44.000] Finishing updateGraphWorker: Project: /user/username/projects/myproject/indirect/tsconfig.json Version: 1 structureChanged: true structureIsReused:: Not Elapsed:: *ms +Info 95 [00:03:45.000] Project '/user/username/projects/myproject/indirect/tsconfig.json' (Configured) +Info 96 [00:03:46.000] Files (2) /a/lib/lib.d.ts /user/username/projects/myproject/indirect/src/file1.ts @@ -695,18 +695,18 @@ Info 96 [16:03:46.000] Files (2) src/file1.ts Matched by default include pattern '**/*' -Info 97 [16:03:47.000] ----------------------------------------------- -Info 98 [16:03:48.000] Creating configuration project /user/username/projects/myproject/coreRef1/tsconfig.json -Info 99 [16:03:49.000] Plugins were requested but not running in environment that supports 'require'. Nothing will be loaded -Info 100 [16:03:50.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/coreRef1/src/file1.ts 500 undefined WatchType: Closed Script info -Info 101 [16:03:51.000] Starting updateGraphWorker: Project: /user/username/projects/myproject/coreRef1/tsconfig.json -Info 102 [16:03:52.000] 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 103 [16:03:53.000] 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 104 [16:03:54.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/coreRef1/tsconfig.json WatchType: Type roots -Info 105 [16:03:55.000] 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 106 [16:03:56.000] Finishing updateGraphWorker: Project: /user/username/projects/myproject/coreRef1/tsconfig.json Version: 1 structureChanged: true structureIsReused:: Not Elapsed:: *ms -Info 107 [16:03:57.000] Project '/user/username/projects/myproject/coreRef1/tsconfig.json' (Configured) -Info 108 [16:03:58.000] Files (2) +Info 97 [00:03:47.000] ----------------------------------------------- +Info 98 [00:03:48.000] Creating configuration project /user/username/projects/myproject/coreRef1/tsconfig.json +Info 99 [00:03:49.000] Plugins were requested but not running in environment that supports 'require'. Nothing will be loaded +Info 100 [00:03:50.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/coreRef1/src/file1.ts 500 undefined WatchType: Closed Script info +Info 101 [00:03:51.000] Starting updateGraphWorker: Project: /user/username/projects/myproject/coreRef1/tsconfig.json +Info 102 [00:03:52.000] 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 103 [00:03:53.000] 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 104 [00:03:54.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/coreRef1/tsconfig.json WatchType: Type roots +Info 105 [00:03:55.000] 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 106 [00:03:56.000] Finishing updateGraphWorker: Project: /user/username/projects/myproject/coreRef1/tsconfig.json Version: 1 structureChanged: true structureIsReused:: Not Elapsed:: *ms +Info 107 [00:03:57.000] Project '/user/username/projects/myproject/coreRef1/tsconfig.json' (Configured) +Info 108 [00:03:58.000] Files (2) /a/lib/lib.d.ts /user/username/projects/myproject/coreRef1/src/file1.ts @@ -716,18 +716,18 @@ Info 108 [16:03:58.000] Files (2) src/file1.ts Matched by default include pattern '**/*' -Info 109 [16:03:59.000] ----------------------------------------------- -Info 110 [16:04:00.000] Creating configuration project /user/username/projects/myproject/indirectDisabledChildLoad1/tsconfig.json -Info 111 [16:04:01.000] Plugins were requested but not running in environment that supports 'require'. Nothing will be loaded -Info 112 [16:04:02.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/indirectDisabledChildLoad1/src/file1.ts 500 undefined WatchType: Closed Script info -Info 113 [16:04:03.000] Starting updateGraphWorker: Project: /user/username/projects/myproject/indirectDisabledChildLoad1/tsconfig.json -Info 114 [16:04:04.000] 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 115 [16:04:05.000] 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 116 [16:04:06.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/indirectDisabledChildLoad1/tsconfig.json WatchType: Type roots -Info 117 [16:04:07.000] 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 118 [16:04:08.000] Finishing updateGraphWorker: Project: /user/username/projects/myproject/indirectDisabledChildLoad1/tsconfig.json Version: 1 structureChanged: true structureIsReused:: Not Elapsed:: *ms -Info 119 [16:04:09.000] Project '/user/username/projects/myproject/indirectDisabledChildLoad1/tsconfig.json' (Configured) -Info 120 [16:04:10.000] Files (2) +Info 109 [00:03:59.000] ----------------------------------------------- +Info 110 [00:04:00.000] Creating configuration project /user/username/projects/myproject/indirectDisabledChildLoad1/tsconfig.json +Info 111 [00:04:01.000] Plugins were requested but not running in environment that supports 'require'. Nothing will be loaded +Info 112 [00:04:02.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/indirectDisabledChildLoad1/src/file1.ts 500 undefined WatchType: Closed Script info +Info 113 [00:04:03.000] Starting updateGraphWorker: Project: /user/username/projects/myproject/indirectDisabledChildLoad1/tsconfig.json +Info 114 [00:04:04.000] 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 115 [00:04:05.000] 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 116 [00:04:06.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/indirectDisabledChildLoad1/tsconfig.json WatchType: Type roots +Info 117 [00:04:07.000] 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 118 [00:04:08.000] Finishing updateGraphWorker: Project: /user/username/projects/myproject/indirectDisabledChildLoad1/tsconfig.json Version: 1 structureChanged: true structureIsReused:: Not Elapsed:: *ms +Info 119 [00:04:09.000] Project '/user/username/projects/myproject/indirectDisabledChildLoad1/tsconfig.json' (Configured) +Info 120 [00:04:10.000] Files (2) /a/lib/lib.d.ts /user/username/projects/myproject/indirectDisabledChildLoad1/src/file1.ts @@ -737,18 +737,18 @@ Info 120 [16:04:10.000] Files (2) src/file1.ts Matched by default include pattern '**/*' -Info 121 [16:04:11.000] ----------------------------------------------- -Info 122 [16:04:12.000] Creating configuration project /user/username/projects/myproject/indirectDisabledChildLoad2/tsconfig.json -Info 123 [16:04:13.000] Plugins were requested but not running in environment that supports 'require'. Nothing will be loaded -Info 124 [16:04:14.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/indirectDisabledChildLoad2/src/file1.ts 500 undefined WatchType: Closed Script info -Info 125 [16:04:15.000] Starting updateGraphWorker: Project: /user/username/projects/myproject/indirectDisabledChildLoad2/tsconfig.json -Info 126 [16:04:16.000] 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 127 [16:04:17.000] 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 128 [16:04:18.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/indirectDisabledChildLoad2/tsconfig.json WatchType: Type roots -Info 129 [16:04:19.000] 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 130 [16:04:20.000] Finishing updateGraphWorker: Project: /user/username/projects/myproject/indirectDisabledChildLoad2/tsconfig.json Version: 1 structureChanged: true structureIsReused:: Not Elapsed:: *ms -Info 131 [16:04:21.000] Project '/user/username/projects/myproject/indirectDisabledChildLoad2/tsconfig.json' (Configured) -Info 132 [16:04:22.000] Files (2) +Info 121 [00:04:11.000] ----------------------------------------------- +Info 122 [00:04:12.000] Creating configuration project /user/username/projects/myproject/indirectDisabledChildLoad2/tsconfig.json +Info 123 [00:04:13.000] Plugins were requested but not running in environment that supports 'require'. Nothing will be loaded +Info 124 [00:04:14.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/indirectDisabledChildLoad2/src/file1.ts 500 undefined WatchType: Closed Script info +Info 125 [00:04:15.000] Starting updateGraphWorker: Project: /user/username/projects/myproject/indirectDisabledChildLoad2/tsconfig.json +Info 126 [00:04:16.000] 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 127 [00:04:17.000] 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 128 [00:04:18.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/indirectDisabledChildLoad2/tsconfig.json WatchType: Type roots +Info 129 [00:04:19.000] 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 130 [00:04:20.000] Finishing updateGraphWorker: Project: /user/username/projects/myproject/indirectDisabledChildLoad2/tsconfig.json Version: 1 structureChanged: true structureIsReused:: Not Elapsed:: *ms +Info 131 [00:04:21.000] Project '/user/username/projects/myproject/indirectDisabledChildLoad2/tsconfig.json' (Configured) +Info 132 [00:04:22.000] Files (2) /a/lib/lib.d.ts /user/username/projects/myproject/indirectDisabledChildLoad2/src/file1.ts @@ -758,18 +758,18 @@ Info 132 [16:04:22.000] Files (2) src/file1.ts Matched by default include pattern '**/*' -Info 133 [16:04:23.000] ----------------------------------------------- -Info 134 [16:04:24.000] Creating configuration project /user/username/projects/myproject/refToCoreRef3/tsconfig.json -Info 135 [16:04:25.000] Plugins were requested but not running in environment that supports 'require'. Nothing will be loaded -Info 136 [16:04:26.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/refToCoreRef3/src/file1.ts 500 undefined WatchType: Closed Script info -Info 137 [16:04:27.000] Starting updateGraphWorker: Project: /user/username/projects/myproject/refToCoreRef3/tsconfig.json -Info 138 [16:04:28.000] 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 139 [16:04:29.000] 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 140 [16:04:30.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/refToCoreRef3/tsconfig.json WatchType: Type roots -Info 141 [16:04:31.000] 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 142 [16:04:32.000] Finishing updateGraphWorker: Project: /user/username/projects/myproject/refToCoreRef3/tsconfig.json Version: 1 structureChanged: true structureIsReused:: Not Elapsed:: *ms -Info 143 [16:04:33.000] Project '/user/username/projects/myproject/refToCoreRef3/tsconfig.json' (Configured) -Info 144 [16:04:34.000] Files (2) +Info 133 [00:04:23.000] ----------------------------------------------- +Info 134 [00:04:24.000] Creating configuration project /user/username/projects/myproject/refToCoreRef3/tsconfig.json +Info 135 [00:04:25.000] Plugins were requested but not running in environment that supports 'require'. Nothing will be loaded +Info 136 [00:04:26.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/refToCoreRef3/src/file1.ts 500 undefined WatchType: Closed Script info +Info 137 [00:04:27.000] Starting updateGraphWorker: Project: /user/username/projects/myproject/refToCoreRef3/tsconfig.json +Info 138 [00:04:28.000] 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 139 [00:04:29.000] 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 140 [00:04:30.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/refToCoreRef3/tsconfig.json WatchType: Type roots +Info 141 [00:04:31.000] 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 142 [00:04:32.000] Finishing updateGraphWorker: Project: /user/username/projects/myproject/refToCoreRef3/tsconfig.json Version: 1 structureChanged: true structureIsReused:: Not Elapsed:: *ms +Info 143 [00:04:33.000] Project '/user/username/projects/myproject/refToCoreRef3/tsconfig.json' (Configured) +Info 144 [00:04:34.000] Files (2) /a/lib/lib.d.ts /user/username/projects/myproject/refToCoreRef3/src/file1.ts @@ -779,18 +779,18 @@ Info 144 [16:04:34.000] Files (2) src/file1.ts Matched by default include pattern '**/*' -Info 145 [16:04:35.000] ----------------------------------------------- -Info 146 [16:04:36.000] Creating configuration project /user/username/projects/myproject/coreRef3/tsconfig.json -Info 147 [16:04:37.000] Plugins were requested but not running in environment that supports 'require'. Nothing will be loaded -Info 148 [16:04:38.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/coreRef3/src/file1.ts 500 undefined WatchType: Closed Script info -Info 149 [16:04:39.000] Starting updateGraphWorker: Project: /user/username/projects/myproject/coreRef3/tsconfig.json -Info 150 [16:04:40.000] 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 151 [16:04:41.000] 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 152 [16:04:42.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/coreRef3/tsconfig.json WatchType: Type roots -Info 153 [16:04:43.000] 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 154 [16:04:44.000] Finishing updateGraphWorker: Project: /user/username/projects/myproject/coreRef3/tsconfig.json Version: 1 structureChanged: true structureIsReused:: Not Elapsed:: *ms -Info 155 [16:04:45.000] Project '/user/username/projects/myproject/coreRef3/tsconfig.json' (Configured) -Info 156 [16:04:46.000] Files (2) +Info 145 [00:04:35.000] ----------------------------------------------- +Info 146 [00:04:36.000] Creating configuration project /user/username/projects/myproject/coreRef3/tsconfig.json +Info 147 [00:04:37.000] Plugins were requested but not running in environment that supports 'require'. Nothing will be loaded +Info 148 [00:04:38.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/coreRef3/src/file1.ts 500 undefined WatchType: Closed Script info +Info 149 [00:04:39.000] Starting updateGraphWorker: Project: /user/username/projects/myproject/coreRef3/tsconfig.json +Info 150 [00:04:40.000] 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 151 [00:04:41.000] 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 152 [00:04:42.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/coreRef3/tsconfig.json WatchType: Type roots +Info 153 [00:04:43.000] 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 154 [00:04:44.000] Finishing updateGraphWorker: Project: /user/username/projects/myproject/coreRef3/tsconfig.json Version: 1 structureChanged: true structureIsReused:: Not Elapsed:: *ms +Info 155 [00:04:45.000] Project '/user/username/projects/myproject/coreRef3/tsconfig.json' (Configured) +Info 156 [00:04:46.000] Files (2) /a/lib/lib.d.ts /user/username/projects/myproject/coreRef3/src/file1.ts @@ -800,8 +800,8 @@ Info 156 [16:04:46.000] Files (2) src/file1.ts Matched by default include pattern '**/*' -Info 157 [16:04:47.000] ----------------------------------------------- -Info 158 [16:04:48.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/core/src/file1.d.ts 2000 undefined Project: /user/username/projects/myproject/core/tsconfig.json WatchType: Missing generated file +Info 157 [00:04:47.000] ----------------------------------------------- +Info 158 [00:04:48.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/core/src/file1.d.ts 2000 undefined Project: /user/username/projects/myproject/core/tsconfig.json WatchType: Missing generated file After request PolledWatches:: @@ -892,7 +892,7 @@ FsWatchesRecursive:: /user/username/projects/myproject/noCoreRef2: {} -Info 159 [16:04:49.000] response: +Info 159 [00:04:49.000] response: { "response": { "refs": [ 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 830bf1dae7759..4741d34fe0e40 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 @@ -1,5 +1,5 @@ -Info 0 [16:00:43.000] Provided types map file "/a/lib/typesMap.json" doesn't exist -Info 1 [16:00:44.000] request: +Info 0 [00:00:43.000] Provided types map file "/a/lib/typesMap.json" doesn't exist +Info 1 [00:00:44.000] request: { "seq": 0, "type": "request", @@ -60,13 +60,13 @@ FsWatches:: FsWatchesRecursive:: -Info 2 [16:00:45.000] Search path: /user/username/projects/myproject/packages/consumer/src -Info 3 [16:00:46.000] For info: /user/username/projects/myproject/packages/consumer/src/index.ts :: Config file name: /user/username/projects/myproject/packages/consumer/tsconfig.json -Info 4 [16:00:47.000] Creating configuration project /user/username/projects/myproject/packages/consumer/tsconfig.json -Info 5 [16:00:48.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/packages/consumer/tsconfig.json 2000 undefined Project: /user/username/projects/myproject/packages/consumer/tsconfig.json WatchType: Config file -Info 6 [16:00:49.000] event: +Info 2 [00:00:45.000] Search path: /user/username/projects/myproject/packages/consumer/src +Info 3 [00:00:46.000] For info: /user/username/projects/myproject/packages/consumer/src/index.ts :: Config file name: /user/username/projects/myproject/packages/consumer/tsconfig.json +Info 4 [00:00:47.000] Creating configuration project /user/username/projects/myproject/packages/consumer/tsconfig.json +Info 5 [00:00:48.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/packages/consumer/tsconfig.json 2000 undefined Project: /user/username/projects/myproject/packages/consumer/tsconfig.json WatchType: Config file +Info 6 [00:00:49.000] event: {"seq":0,"type":"event","event":"projectLoadingStart","body":{"projectName":"/user/username/projects/myproject/packages/consumer/tsconfig.json","reason":"Creating possible configured project for /user/username/projects/myproject/packages/consumer/src/index.ts to open"}} -Info 7 [16:00:50.000] Config: /user/username/projects/myproject/packages/consumer/tsconfig.json : { +Info 7 [00:00:50.000] Config: /user/username/projects/myproject/packages/consumer/tsconfig.json : { "rootNames": [ "/user/username/projects/myproject/packages/consumer/src/index.ts" ], @@ -80,11 +80,11 @@ Info 7 [16:00:50.000] Config: /user/username/projects/myproject/packages/cons } ] } -Info 8 [16:00:51.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/packages/consumer/src 1 undefined Config: /user/username/projects/myproject/packages/consumer/tsconfig.json WatchType: Wild card directory -Info 9 [16:00:52.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/packages/consumer/src 1 undefined Config: /user/username/projects/myproject/packages/consumer/tsconfig.json WatchType: Wild card directory -Info 10 [16:00:53.000] Plugins were requested but not running in environment that supports 'require'. Nothing will be loaded -Info 11 [16:00:54.000] Starting updateGraphWorker: Project: /user/username/projects/myproject/packages/consumer/tsconfig.json -Info 12 [16:00:55.000] Config: /user/username/projects/myproject/packages/emit-composite/tsconfig.json : { +Info 8 [00:00:51.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/packages/consumer/src 1 undefined Config: /user/username/projects/myproject/packages/consumer/tsconfig.json WatchType: Wild card directory +Info 9 [00:00:52.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/packages/consumer/src 1 undefined Config: /user/username/projects/myproject/packages/consumer/tsconfig.json WatchType: Wild card directory +Info 10 [00:00:53.000] Plugins were requested but not running in environment that supports 'require'. Nothing will be loaded +Info 11 [00:00:54.000] Starting updateGraphWorker: Project: /user/username/projects/myproject/packages/consumer/tsconfig.json +Info 12 [00:00:55.000] Config: /user/username/projects/myproject/packages/emit-composite/tsconfig.json : { "rootNames": [ "/user/username/projects/myproject/packages/emit-composite/src/index.js", "/user/username/projects/myproject/packages/emit-composite/src/testModule.js" @@ -98,32 +98,32 @@ Info 12 [16:00:55.000] Config: /user/username/projects/myproject/packages/emit "configFilePath": "/user/username/projects/myproject/packages/emit-composite/tsconfig.json" } } -Info 13 [16:00:56.000] 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 14 [16:00:57.000] 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 15 [16:00:58.000] 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 16 [16:00:59.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/packages/emit-composite/src/index.js 500 undefined WatchType: Closed Script info -Info 17 [16:01:00.000] 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 18 [16:01:01.000] 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 19 [16:01:02.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/packages/emit-composite/src/testModule.js 500 undefined WatchType: Closed Script info -Info 20 [16:01:03.000] FileWatcher:: Added:: WatchInfo: /a/lib/lib.d.ts 500 undefined WatchType: Closed Script info -Info 21 [16:01:04.000] 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 22 [16:01:05.000] 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 23 [16:01:06.000] 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 -Info 24 [16:01:07.000] Elapsed:: *ms 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 -Info 25 [16:01:08.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/packages/node_modules 1 undefined Project: /user/username/projects/myproject/packages/consumer/tsconfig.json WatchType: Failed Lookup Locations -Info 26 [16:01:09.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/packages/node_modules 1 undefined Project: /user/username/projects/myproject/packages/consumer/tsconfig.json WatchType: Failed Lookup Locations -Info 27 [16:01:10.000] 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 28 [16:01:11.000] 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 29 [16:01:12.000] 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 30 [16:01:13.000] 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 31 [16:01:14.000] 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 32 [16:01:15.000] 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 -Info 33 [16:01:16.000] Elapsed:: *ms 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 -Info 34 [16:01:17.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/packages/consumer/tsconfig.json WatchType: Type roots -Info 35 [16:01:18.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/packages/consumer/tsconfig.json WatchType: Type roots -Info 36 [16:01:19.000] Finishing updateGraphWorker: Project: /user/username/projects/myproject/packages/consumer/tsconfig.json Version: 1 structureChanged: true structureIsReused:: Not Elapsed:: *ms -Info 37 [16:01:20.000] Project '/user/username/projects/myproject/packages/consumer/tsconfig.json' (Configured) -Info 38 [16:01:21.000] Files (4) +Info 13 [00:00:56.000] 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 14 [00:00:57.000] 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 15 [00:00:58.000] 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 16 [00:00:59.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/packages/emit-composite/src/index.js 500 undefined WatchType: Closed Script info +Info 17 [00:01:00.000] 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 18 [00:01:01.000] 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 19 [00:01:02.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/packages/emit-composite/src/testModule.js 500 undefined WatchType: Closed Script info +Info 20 [00:01:03.000] FileWatcher:: Added:: WatchInfo: /a/lib/lib.d.ts 500 undefined WatchType: Closed Script info +Info 21 [00:01:04.000] 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 22 [00:01:05.000] 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 23 [00:01:06.000] 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 +Info 24 [00:01:07.000] Elapsed:: *ms 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 +Info 25 [00:01:08.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/packages/node_modules 1 undefined Project: /user/username/projects/myproject/packages/consumer/tsconfig.json WatchType: Failed Lookup Locations +Info 26 [00:01:09.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/packages/node_modules 1 undefined Project: /user/username/projects/myproject/packages/consumer/tsconfig.json WatchType: Failed Lookup Locations +Info 27 [00:01:10.000] 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 28 [00:01:11.000] 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 29 [00:01:12.000] 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 30 [00:01:13.000] 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 31 [00:01:14.000] 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 32 [00:01:15.000] 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 +Info 33 [00:01:16.000] Elapsed:: *ms 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 +Info 34 [00:01:17.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/packages/consumer/tsconfig.json WatchType: Type roots +Info 35 [00:01:18.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/packages/consumer/tsconfig.json WatchType: Type roots +Info 36 [00:01:19.000] Finishing updateGraphWorker: Project: /user/username/projects/myproject/packages/consumer/tsconfig.json Version: 1 structureChanged: true structureIsReused:: Not Elapsed:: *ms +Info 37 [00:01:20.000] Project '/user/username/projects/myproject/packages/consumer/tsconfig.json' (Configured) +Info 38 [00:01:21.000] Files (4) /a/lib/lib.d.ts /user/username/projects/myproject/packages/emit-composite/src/testModule.js /user/username/projects/myproject/packages/emit-composite/src/index.js @@ -139,20 +139,20 @@ Info 38 [16:01:21.000] Files (4) src/index.ts Matched by include pattern 'src' in 'tsconfig.json' -Info 39 [16:01:22.000] ----------------------------------------------- -Info 40 [16:01:23.000] event: +Info 39 [00:01:22.000] ----------------------------------------------- +Info 40 [00:01:23.000] event: {"seq":0,"type":"event","event":"projectLoadingFinish","body":{"projectName":"/user/username/projects/myproject/packages/consumer/tsconfig.json"}} -Info 41 [16:01:24.000] event: +Info 41 [00:01:24.000] event: {"seq":0,"type":"event","event":"telemetry","body":{"telemetryEventName":"projectInfo","payload":{"projectId":"f6f890b868ee990140855d3b392e7be25cc511c224e307bfaf73c9f27a024a79","fileStats":{"js":2,"jsSize":203,"jsx":0,"jsxSize":0,"ts":1,"tsSize":143,"tsx":0,"tsxSize":0,"dts":1,"dtsSize":334,"deferred":0,"deferredSize":0},"compilerOptions":{},"typeAcquisition":{"enable":false,"include":false,"exclude":false},"extends":false,"files":false,"include":true,"exclude":false,"compileOnSave":false,"configFileName":"tsconfig.json","projectType":"configured","languageServiceEnabled":true,"version":"FakeVersion"}}} -Info 42 [16:01:25.000] event: +Info 42 [00:01:25.000] event: {"seq":0,"type":"event","event":"configFileDiag","body":{"triggerFile":"/user/username/projects/myproject/packages/consumer/src/index.ts","configFile":"/user/username/projects/myproject/packages/consumer/tsconfig.json","diagnostics":[]}} -Info 43 [16:01:26.000] Project '/user/username/projects/myproject/packages/consumer/tsconfig.json' (Configured) -Info 43 [16:01:27.000] Files (4) +Info 43 [00:01:26.000] Project '/user/username/projects/myproject/packages/consumer/tsconfig.json' (Configured) +Info 43 [00:01:27.000] Files (4) -Info 43 [16:01:28.000] ----------------------------------------------- -Info 43 [16:01:29.000] Open files: -Info 43 [16:01:30.000] FileName: /user/username/projects/myproject/packages/consumer/src/index.ts ProjectRootPath: undefined -Info 43 [16:01:31.000] Projects: /user/username/projects/myproject/packages/consumer/tsconfig.json +Info 43 [00:01:28.000] ----------------------------------------------- +Info 43 [00:01:29.000] Open files: +Info 43 [00:01:30.000] FileName: /user/username/projects/myproject/packages/consumer/src/index.ts ProjectRootPath: undefined +Info 43 [00:01:31.000] Projects: /user/username/projects/myproject/packages/consumer/tsconfig.json After request PolledWatches:: @@ -191,11 +191,11 @@ FsWatchesRecursive:: /user/username/projects/myproject/node_modules: {} -Info 43 [16:01:32.000] response: +Info 43 [00:01:32.000] response: { "responseRequired": false } -Info 44 [16:01:33.000] request: +Info 44 [00:01:33.000] request: { "command": "geterr", "arguments": { @@ -283,7 +283,7 @@ FsWatchesRecursive:: /user/username/projects/myproject/node_modules: {} -Info 45 [16:01:34.000] response: +Info 45 [00:01:34.000] response: { "responseRequired": false } @@ -325,7 +325,7 @@ FsWatchesRecursive:: /user/username/projects/myproject/node_modules: {} -Info 46 [16:01:35.000] event: +Info 46 [00:01:35.000] event: {"seq":0,"type":"event","event":"syntaxDiag","body":{"file":"/user/username/projects/myproject/packages/consumer/src/index.ts","diagnostics":[]}} After checking timeout queue length (1) and running @@ -403,7 +403,7 @@ FsWatchesRecursive:: /user/username/projects/myproject/node_modules: {} -Info 47 [16:01:36.000] event: +Info 47 [00:01:36.000] event: {"seq":0,"type":"event","event":"semanticDiag","body":{"file":"/user/username/projects/myproject/packages/consumer/src/index.ts","diagnostics":[{"start":{"line":3,"offset":42},"end":{"line":3,"offset":44},"text":"Expected 1 arguments, but got 2.","code":2554,"category":"error"}]}} Before running immediate callbacks and checking length (1) @@ -481,9 +481,9 @@ FsWatchesRecursive:: /user/username/projects/myproject/node_modules: {} -Info 48 [16:01:37.000] event: +Info 48 [00:01:37.000] event: {"seq":0,"type":"event","event":"suggestionDiag","body":{"file":"/user/username/projects/myproject/packages/consumer/src/index.ts","diagnostics":[]}} -Info 49 [16:01:38.000] event: +Info 49 [00:01:38.000] event: {"seq":0,"type":"event","event":"requestCompleted","body":{"request_seq":1}} Before running immediate callbacks and checking length (1) diff --git a/tests/baselines/reference/tsserver/projectReferences/with-disableSolutionSearching-solution-and-siblings-are-not-loaded.js b/tests/baselines/reference/tsserver/projectReferences/with-disableSolutionSearching-solution-and-siblings-are-not-loaded.js index edbdcab572d76..b99fcf63d35f4 100644 --- a/tests/baselines/reference/tsserver/projectReferences/with-disableSolutionSearching-solution-and-siblings-are-not-loaded.js +++ b/tests/baselines/reference/tsserver/projectReferences/with-disableSolutionSearching-solution-and-siblings-are-not-loaded.js @@ -1,5 +1,5 @@ -Info 0 [16:00:34.000] Provided types map file "/a/lib/typesMap.json" doesn't exist -Info 1 [16:00:35.000] request: +Info 0 [00:00:34.000] Provided types map file "/a/lib/typesMap.json" doesn't exist +Info 1 [00:00:35.000] request: { "seq": 0, "type": "request", @@ -61,11 +61,11 @@ FsWatches:: FsWatchesRecursive:: -Info 2 [16:00:36.000] Search path: /user/username/projects/solution/compiler -Info 3 [16:00:37.000] For info: /user/username/projects/solution/compiler/program.ts :: Config file name: /user/username/projects/solution/compiler/tsconfig.json -Info 4 [16:00:38.000] Creating configuration project /user/username/projects/solution/compiler/tsconfig.json -Info 5 [16:00:39.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/solution/compiler/tsconfig.json 2000 undefined Project: /user/username/projects/solution/compiler/tsconfig.json WatchType: Config file -Info 6 [16:00:40.000] Config: /user/username/projects/solution/compiler/tsconfig.json : { +Info 2 [00:00:36.000] Search path: /user/username/projects/solution/compiler +Info 3 [00:00:37.000] For info: /user/username/projects/solution/compiler/program.ts :: Config file name: /user/username/projects/solution/compiler/tsconfig.json +Info 4 [00:00:38.000] Creating configuration project /user/username/projects/solution/compiler/tsconfig.json +Info 5 [00:00:39.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/solution/compiler/tsconfig.json 2000 undefined Project: /user/username/projects/solution/compiler/tsconfig.json WatchType: Config file +Info 6 [00:00:40.000] Config: /user/username/projects/solution/compiler/tsconfig.json : { "rootNames": [ "/user/username/projects/solution/compiler/types.ts", "/user/username/projects/solution/compiler/program.ts" @@ -77,17 +77,17 @@ Info 6 [16:00:40.000] Config: /user/username/projects/solution/compiler/tscon "configFilePath": "/user/username/projects/solution/compiler/tsconfig.json" } } -Info 7 [16:00:41.000] Plugins were requested but not running in environment that supports 'require'. Nothing will be loaded -Info 8 [16:00:42.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/solution/compiler/types.ts 500 undefined WatchType: Closed Script info -Info 9 [16:00:43.000] Starting updateGraphWorker: Project: /user/username/projects/solution/compiler/tsconfig.json -Info 10 [16:00:44.000] FileWatcher:: Added:: WatchInfo: /a/lib/lib.d.ts 500 undefined WatchType: Closed Script info -Info 11 [16:00:45.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/solution/compiler/node_modules/@types 1 undefined Project: /user/username/projects/solution/compiler/tsconfig.json WatchType: Type roots -Info 12 [16:00:46.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/solution/compiler/node_modules/@types 1 undefined Project: /user/username/projects/solution/compiler/tsconfig.json WatchType: Type roots -Info 13 [16:00:47.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/solution/node_modules/@types 1 undefined Project: /user/username/projects/solution/compiler/tsconfig.json WatchType: Type roots -Info 14 [16:00:48.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/solution/node_modules/@types 1 undefined Project: /user/username/projects/solution/compiler/tsconfig.json WatchType: Type roots -Info 15 [16:00:49.000] Finishing updateGraphWorker: Project: /user/username/projects/solution/compiler/tsconfig.json Version: 1 structureChanged: true structureIsReused:: Not Elapsed:: *ms -Info 16 [16:00:50.000] Project '/user/username/projects/solution/compiler/tsconfig.json' (Configured) -Info 17 [16:00:51.000] Files (3) +Info 7 [00:00:41.000] Plugins were requested but not running in environment that supports 'require'. Nothing will be loaded +Info 8 [00:00:42.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/solution/compiler/types.ts 500 undefined WatchType: Closed Script info +Info 9 [00:00:43.000] Starting updateGraphWorker: Project: /user/username/projects/solution/compiler/tsconfig.json +Info 10 [00:00:44.000] FileWatcher:: Added:: WatchInfo: /a/lib/lib.d.ts 500 undefined WatchType: Closed Script info +Info 11 [00:00:45.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/solution/compiler/node_modules/@types 1 undefined Project: /user/username/projects/solution/compiler/tsconfig.json WatchType: Type roots +Info 12 [00:00:46.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/solution/compiler/node_modules/@types 1 undefined Project: /user/username/projects/solution/compiler/tsconfig.json WatchType: Type roots +Info 13 [00:00:47.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/solution/node_modules/@types 1 undefined Project: /user/username/projects/solution/compiler/tsconfig.json WatchType: Type roots +Info 14 [00:00:48.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/solution/node_modules/@types 1 undefined Project: /user/username/projects/solution/compiler/tsconfig.json WatchType: Type roots +Info 15 [00:00:49.000] Finishing updateGraphWorker: Project: /user/username/projects/solution/compiler/tsconfig.json Version: 1 structureChanged: true structureIsReused:: Not Elapsed:: *ms +Info 16 [00:00:50.000] Project '/user/username/projects/solution/compiler/tsconfig.json' (Configured) +Info 17 [00:00:51.000] Files (3) /a/lib/lib.d.ts /user/username/projects/solution/compiler/types.ts /user/username/projects/solution/compiler/program.ts @@ -100,14 +100,14 @@ Info 17 [16:00:51.000] Files (3) program.ts Part of 'files' list in tsconfig.json -Info 18 [16:00:52.000] ----------------------------------------------- -Info 19 [16:00:53.000] Project '/user/username/projects/solution/compiler/tsconfig.json' (Configured) -Info 19 [16:00:54.000] Files (3) +Info 18 [00:00:52.000] ----------------------------------------------- +Info 19 [00:00:53.000] Project '/user/username/projects/solution/compiler/tsconfig.json' (Configured) +Info 19 [00:00:54.000] Files (3) -Info 19 [16:00:55.000] ----------------------------------------------- -Info 19 [16:00:56.000] Open files: -Info 19 [16:00:57.000] FileName: /user/username/projects/solution/compiler/program.ts ProjectRootPath: undefined -Info 19 [16:00:58.000] Projects: /user/username/projects/solution/compiler/tsconfig.json +Info 19 [00:00:55.000] ----------------------------------------------- +Info 19 [00:00:56.000] Open files: +Info 19 [00:00:57.000] FileName: /user/username/projects/solution/compiler/program.ts ProjectRootPath: undefined +Info 19 [00:00:58.000] Projects: /user/username/projects/solution/compiler/tsconfig.json After request PolledWatches:: @@ -126,11 +126,11 @@ FsWatches:: FsWatchesRecursive:: -Info 19 [16:00:59.000] response: +Info 19 [00:00:59.000] response: { "responseRequired": false } -Info 20 [16:01:00.000] request: +Info 20 [00:01:00.000] request: { "command": "references", "arguments": { @@ -159,7 +159,7 @@ FsWatches:: FsWatchesRecursive:: -Info 21 [16:01:01.000] Finding references to /user/username/projects/solution/compiler/program.ts position 110 in project /user/username/projects/solution/compiler/tsconfig.json +Info 21 [00:01:01.000] Finding references to /user/username/projects/solution/compiler/program.ts position 110 in project /user/username/projects/solution/compiler/tsconfig.json After request PolledWatches:: @@ -178,7 +178,7 @@ FsWatches:: FsWatchesRecursive:: -Info 22 [16:01:02.000] response: +Info 22 [00:01:02.000] response: { "response": { "refs": [ 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 5230c924cf249..9c4fae357ff26 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 @@ -1,5 +1,5 @@ -Info 0 [16:01:03.000] Provided types map file "/a/lib/typesMap.json" doesn't exist -Info 1 [16:01:04.000] request: +Info 0 [00:01:03.000] Provided types map file "/a/lib/typesMap.json" doesn't exist +Info 1 [00:01:04.000] request: { "seq": 0, "type": "request", @@ -200,11 +200,11 @@ FsWatches:: FsWatchesRecursive:: -Info 2 [16:01:05.000] Search path: /user/username/projects/myproject/dependency -Info 3 [16:01:06.000] For info: /user/username/projects/myproject/dependency/FnS.ts :: Config file name: /user/username/projects/myproject/dependency/tsconfig.json -Info 4 [16:01:07.000] Creating configuration project /user/username/projects/myproject/dependency/tsconfig.json -Info 5 [16:01:08.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/dependency/tsconfig.json 2000 undefined Project: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Config file -Info 6 [16:01:09.000] Config: /user/username/projects/myproject/dependency/tsconfig.json : { +Info 2 [00:01:05.000] Search path: /user/username/projects/myproject/dependency +Info 3 [00:01:06.000] For info: /user/username/projects/myproject/dependency/FnS.ts :: Config file name: /user/username/projects/myproject/dependency/tsconfig.json +Info 4 [00:01:07.000] Creating configuration project /user/username/projects/myproject/dependency/tsconfig.json +Info 5 [00:01:08.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/dependency/tsconfig.json 2000 undefined Project: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Config file +Info 6 [00:01:09.000] Config: /user/username/projects/myproject/dependency/tsconfig.json : { "rootNames": [ "/user/username/projects/myproject/dependency/FnS.ts" ], @@ -215,18 +215,18 @@ Info 6 [16:01:09.000] Config: /user/username/projects/myproject/dependency/ts "configFilePath": "/user/username/projects/myproject/dependency/tsconfig.json" } } -Info 7 [16:01:10.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/dependency 1 undefined Config: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Wild card directory -Info 8 [16:01:11.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/dependency 1 undefined Config: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Wild card directory -Info 9 [16:01:12.000] Plugins were requested but not running in environment that supports 'require'. Nothing will be loaded -Info 10 [16:01:13.000] Starting updateGraphWorker: Project: /user/username/projects/myproject/dependency/tsconfig.json -Info 11 [16:01:14.000] FileWatcher:: Added:: WatchInfo: /a/lib/lib.d.ts 500 undefined WatchType: Closed Script info -Info 12 [16:01:15.000] 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 13 [16:01:16.000] 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 14 [16:01:17.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Type roots -Info 15 [16:01:18.000] 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 16 [16:01:19.000] Finishing updateGraphWorker: Project: /user/username/projects/myproject/dependency/tsconfig.json Version: 1 structureChanged: true structureIsReused:: Not Elapsed:: *ms -Info 17 [16:01:20.000] Project '/user/username/projects/myproject/dependency/tsconfig.json' (Configured) -Info 18 [16:01:21.000] Files (2) +Info 7 [00:01:10.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/dependency 1 undefined Config: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Wild card directory +Info 8 [00:01:11.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/dependency 1 undefined Config: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Wild card directory +Info 9 [00:01:12.000] Plugins were requested but not running in environment that supports 'require'. Nothing will be loaded +Info 10 [00:01:13.000] Starting updateGraphWorker: Project: /user/username/projects/myproject/dependency/tsconfig.json +Info 11 [00:01:14.000] FileWatcher:: Added:: WatchInfo: /a/lib/lib.d.ts 500 undefined WatchType: Closed Script info +Info 12 [00:01:15.000] 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 13 [00:01:16.000] 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 14 [00:01:17.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Type roots +Info 15 [00:01:18.000] 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 16 [00:01:19.000] Finishing updateGraphWorker: Project: /user/username/projects/myproject/dependency/tsconfig.json Version: 1 structureChanged: true structureIsReused:: Not Elapsed:: *ms +Info 17 [00:01:20.000] Project '/user/username/projects/myproject/dependency/tsconfig.json' (Configured) +Info 18 [00:01:21.000] Files (2) /a/lib/lib.d.ts /user/username/projects/myproject/dependency/FnS.ts @@ -236,16 +236,16 @@ Info 18 [16:01:21.000] Files (2) FnS.ts Matched by default include pattern '**/*' -Info 19 [16:01:22.000] ----------------------------------------------- -Info 20 [16:01:23.000] Search path: /user/username/projects/myproject/dependency -Info 21 [16:01:24.000] For info: /user/username/projects/myproject/dependency/tsconfig.json :: No config files found. -Info 22 [16:01:25.000] Project '/user/username/projects/myproject/dependency/tsconfig.json' (Configured) -Info 22 [16:01:26.000] Files (2) +Info 19 [00:01:22.000] ----------------------------------------------- +Info 20 [00:01:23.000] Search path: /user/username/projects/myproject/dependency +Info 21 [00:01:24.000] For info: /user/username/projects/myproject/dependency/tsconfig.json :: No config files found. +Info 22 [00:01:25.000] Project '/user/username/projects/myproject/dependency/tsconfig.json' (Configured) +Info 22 [00:01:26.000] Files (2) -Info 22 [16:01:27.000] ----------------------------------------------- -Info 22 [16:01:28.000] Open files: -Info 22 [16:01:29.000] FileName: /user/username/projects/myproject/dependency/FnS.ts ProjectRootPath: undefined -Info 22 [16:01:30.000] Projects: /user/username/projects/myproject/dependency/tsconfig.json +Info 22 [00:01:27.000] ----------------------------------------------- +Info 22 [00:01:28.000] Open files: +Info 22 [00:01:29.000] FileName: /user/username/projects/myproject/dependency/FnS.ts ProjectRootPath: undefined +Info 22 [00:01:30.000] Projects: /user/username/projects/myproject/dependency/tsconfig.json After request PolledWatches:: @@ -264,11 +264,11 @@ FsWatchesRecursive:: /user/username/projects/myproject/dependency: {} -Info 22 [16:01:31.000] response: +Info 22 [00:01:31.000] response: { "responseRequired": false } -Info 23 [16:01:32.000] request: +Info 23 [00:01:32.000] request: { "seq": 0, "type": "request", @@ -295,11 +295,11 @@ FsWatchesRecursive:: /user/username/projects/myproject/dependency: {} -Info 24 [16:01:33.000] Search path: /user/username/projects/myproject/random -Info 25 [16:01:34.000] For info: /user/username/projects/myproject/random/random.ts :: Config file name: /user/username/projects/myproject/random/tsconfig.json -Info 26 [16:01:35.000] Creating configuration project /user/username/projects/myproject/random/tsconfig.json -Info 27 [16:01:36.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/random/tsconfig.json 2000 undefined Project: /user/username/projects/myproject/random/tsconfig.json WatchType: Config file -Info 28 [16:01:37.000] Config: /user/username/projects/myproject/random/tsconfig.json : { +Info 24 [00:01:33.000] Search path: /user/username/projects/myproject/random +Info 25 [00:01:34.000] For info: /user/username/projects/myproject/random/random.ts :: Config file name: /user/username/projects/myproject/random/tsconfig.json +Info 26 [00:01:35.000] Creating configuration project /user/username/projects/myproject/random/tsconfig.json +Info 27 [00:01:36.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/random/tsconfig.json 2000 undefined Project: /user/username/projects/myproject/random/tsconfig.json WatchType: Config file +Info 28 [00:01:37.000] Config: /user/username/projects/myproject/random/tsconfig.json : { "rootNames": [ "/user/username/projects/myproject/random/random.ts" ], @@ -307,17 +307,17 @@ Info 28 [16:01:37.000] Config: /user/username/projects/myproject/random/tsconf "configFilePath": "/user/username/projects/myproject/random/tsconfig.json" } } -Info 29 [16:01:38.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/random 1 undefined Config: /user/username/projects/myproject/random/tsconfig.json WatchType: Wild card directory -Info 30 [16:01:39.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/random 1 undefined Config: /user/username/projects/myproject/random/tsconfig.json WatchType: Wild card directory -Info 31 [16:01:40.000] Plugins were requested but not running in environment that supports 'require'. Nothing will be loaded -Info 32 [16:01:41.000] Starting updateGraphWorker: Project: /user/username/projects/myproject/random/tsconfig.json -Info 33 [16:01:42.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/random/node_modules/@types 1 undefined Project: /user/username/projects/myproject/random/tsconfig.json WatchType: Type roots -Info 34 [16:01:43.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/random/node_modules/@types 1 undefined Project: /user/username/projects/myproject/random/tsconfig.json WatchType: Type roots -Info 35 [16:01:44.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/random/tsconfig.json WatchType: Type roots -Info 36 [16:01:45.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/random/tsconfig.json WatchType: Type roots -Info 37 [16:01:46.000] Finishing updateGraphWorker: Project: /user/username/projects/myproject/random/tsconfig.json Version: 1 structureChanged: true structureIsReused:: Not Elapsed:: *ms -Info 38 [16:01:47.000] Project '/user/username/projects/myproject/random/tsconfig.json' (Configured) -Info 39 [16:01:48.000] Files (2) +Info 29 [00:01:38.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/random 1 undefined Config: /user/username/projects/myproject/random/tsconfig.json WatchType: Wild card directory +Info 30 [00:01:39.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/random 1 undefined Config: /user/username/projects/myproject/random/tsconfig.json WatchType: Wild card directory +Info 31 [00:01:40.000] Plugins were requested but not running in environment that supports 'require'. Nothing will be loaded +Info 32 [00:01:41.000] Starting updateGraphWorker: Project: /user/username/projects/myproject/random/tsconfig.json +Info 33 [00:01:42.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/random/node_modules/@types 1 undefined Project: /user/username/projects/myproject/random/tsconfig.json WatchType: Type roots +Info 34 [00:01:43.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/random/node_modules/@types 1 undefined Project: /user/username/projects/myproject/random/tsconfig.json WatchType: Type roots +Info 35 [00:01:44.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/random/tsconfig.json WatchType: Type roots +Info 36 [00:01:45.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/random/tsconfig.json WatchType: Type roots +Info 37 [00:01:46.000] Finishing updateGraphWorker: Project: /user/username/projects/myproject/random/tsconfig.json Version: 1 structureChanged: true structureIsReused:: Not Elapsed:: *ms +Info 38 [00:01:47.000] Project '/user/username/projects/myproject/random/tsconfig.json' (Configured) +Info 39 [00:01:48.000] Files (2) /a/lib/lib.d.ts /user/username/projects/myproject/random/random.ts @@ -327,20 +327,20 @@ Info 39 [16:01:48.000] Files (2) random.ts Matched by default include pattern '**/*' -Info 40 [16:01:49.000] ----------------------------------------------- -Info 41 [16:01:50.000] Project '/user/username/projects/myproject/dependency/tsconfig.json' (Configured) -Info 41 [16:01:51.000] Files (2) +Info 40 [00:01:49.000] ----------------------------------------------- +Info 41 [00:01:50.000] Project '/user/username/projects/myproject/dependency/tsconfig.json' (Configured) +Info 41 [00:01:51.000] Files (2) -Info 41 [16:01:52.000] ----------------------------------------------- -Info 41 [16:01:53.000] Project '/user/username/projects/myproject/random/tsconfig.json' (Configured) -Info 41 [16:01:54.000] Files (2) +Info 41 [00:01:52.000] ----------------------------------------------- +Info 41 [00:01:53.000] Project '/user/username/projects/myproject/random/tsconfig.json' (Configured) +Info 41 [00:01:54.000] Files (2) -Info 41 [16:01:55.000] ----------------------------------------------- -Info 41 [16:01:56.000] Open files: -Info 41 [16:01:57.000] FileName: /user/username/projects/myproject/dependency/FnS.ts ProjectRootPath: undefined -Info 41 [16:01:58.000] Projects: /user/username/projects/myproject/dependency/tsconfig.json -Info 41 [16:01:59.000] FileName: /user/username/projects/myproject/random/random.ts ProjectRootPath: undefined -Info 41 [16:02:00.000] Projects: /user/username/projects/myproject/random/tsconfig.json +Info 41 [00:01:55.000] ----------------------------------------------- +Info 41 [00:01:56.000] Open files: +Info 41 [00:01:57.000] FileName: /user/username/projects/myproject/dependency/FnS.ts ProjectRootPath: undefined +Info 41 [00:01:58.000] Projects: /user/username/projects/myproject/dependency/tsconfig.json +Info 41 [00:01:59.000] FileName: /user/username/projects/myproject/random/random.ts ProjectRootPath: undefined +Info 41 [00:02:00.000] Projects: /user/username/projects/myproject/random/tsconfig.json After request PolledWatches:: @@ -365,11 +365,11 @@ FsWatchesRecursive:: /user/username/projects/myproject/random: {} -Info 41 [16:02:01.000] response: +Info 41 [00:02:01.000] response: { "responseRequired": false } -Info 42 [16:02:02.000] request: +Info 42 [00:02:02.000] request: { "command": "rename", "arguments": { @@ -404,8 +404,8 @@ FsWatchesRecursive:: /user/username/projects/myproject/random: {} -Info 43 [16:02:03.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/decls/FnS.d.ts 500 undefined WatchType: Closed Script info -Info 44 [16:02:04.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/decls/FnS.d.ts.map 500 undefined WatchType: Closed Script info +Info 43 [00:02:03.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/decls/FnS.d.ts 500 undefined WatchType: Closed Script info +Info 44 [00:02:04.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/decls/FnS.d.ts.map 500 undefined WatchType: Closed Script info After request PolledWatches:: @@ -434,7 +434,7 @@ FsWatchesRecursive:: /user/username/projects/myproject/random: {} -Info 45 [16:02:05.000] response: +Info 45 [00:02:05.000] response: { "response": { "info": { @@ -482,10 +482,10 @@ Info 45 [16:02:05.000] response: }, "responseRequired": true } -Info 46 [16:02:09.000] FileWatcher:: Triggered with /user/username/projects/myproject/decls/FnS.d.ts 1:: WatchInfo: /user/username/projects/myproject/decls/FnS.d.ts 500 undefined WatchType: Closed Script info -Info 47 [16:02:10.000] Scheduled: /user/username/projects/myproject/dependency/tsconfig.json -Info 48 [16:02:11.000] Scheduled: *ensureProjectForOpenFiles* -Info 49 [16:02:12.000] Elapsed:: *ms FileWatcher:: Triggered with /user/username/projects/myproject/decls/FnS.d.ts 1:: WatchInfo: /user/username/projects/myproject/decls/FnS.d.ts 500 undefined WatchType: Closed Script info +Info 46 [00:02:09.000] FileWatcher:: Triggered with /user/username/projects/myproject/decls/FnS.d.ts 1:: WatchInfo: /user/username/projects/myproject/decls/FnS.d.ts 500 undefined WatchType: Closed Script info +Info 47 [00:02:10.000] Scheduled: /user/username/projects/myproject/dependency/tsconfig.json +Info 48 [00:02:11.000] Scheduled: *ensureProjectForOpenFiles* +Info 49 [00:02:12.000] Elapsed:: *ms FileWatcher:: Triggered with /user/username/projects/myproject/decls/FnS.d.ts 1:: WatchInfo: /user/username/projects/myproject/decls/FnS.d.ts 500 undefined WatchType: Closed Script info Before running timeout callbacks //// [/user/username/projects/myproject/decls/FnS.d.ts] export declare function fn1(): void; @@ -523,38 +523,38 @@ FsWatchesRecursive:: /user/username/projects/myproject/random: {} -Info 50 [16:02:13.000] Running: /user/username/projects/myproject/dependency/tsconfig.json -Info 51 [16:02:14.000] Starting updateGraphWorker: Project: /user/username/projects/myproject/dependency/tsconfig.json -Info 52 [16:02:15.000] Finishing updateGraphWorker: Project: /user/username/projects/myproject/dependency/tsconfig.json Version: 2 structureChanged: false structureIsReused:: Not Elapsed:: *ms -Info 53 [16:02:16.000] Running: *ensureProjectForOpenFiles* -Info 54 [16:02:17.000] Before ensureProjectForOpenFiles: -Info 55 [16:02:18.000] Project '/user/username/projects/myproject/dependency/tsconfig.json' (Configured) -Info 55 [16:02:19.000] Files (2) - -Info 55 [16:02:20.000] ----------------------------------------------- -Info 55 [16:02:21.000] Project '/user/username/projects/myproject/random/tsconfig.json' (Configured) -Info 55 [16:02:22.000] Files (2) - -Info 55 [16:02:23.000] ----------------------------------------------- -Info 55 [16:02:24.000] Open files: -Info 55 [16:02:25.000] FileName: /user/username/projects/myproject/dependency/FnS.ts ProjectRootPath: undefined -Info 55 [16:02:26.000] Projects: /user/username/projects/myproject/dependency/tsconfig.json -Info 55 [16:02:27.000] FileName: /user/username/projects/myproject/random/random.ts ProjectRootPath: undefined -Info 55 [16:02:28.000] Projects: /user/username/projects/myproject/random/tsconfig.json -Info 55 [16:02:29.000] After ensureProjectForOpenFiles: -Info 56 [16:02:30.000] Project '/user/username/projects/myproject/dependency/tsconfig.json' (Configured) -Info 56 [16:02:31.000] Files (2) - -Info 56 [16:02:32.000] ----------------------------------------------- -Info 56 [16:02:33.000] Project '/user/username/projects/myproject/random/tsconfig.json' (Configured) -Info 56 [16:02:34.000] Files (2) - -Info 56 [16:02:35.000] ----------------------------------------------- -Info 56 [16:02:36.000] Open files: -Info 56 [16:02:37.000] FileName: /user/username/projects/myproject/dependency/FnS.ts ProjectRootPath: undefined -Info 56 [16:02:38.000] Projects: /user/username/projects/myproject/dependency/tsconfig.json -Info 56 [16:02:39.000] FileName: /user/username/projects/myproject/random/random.ts ProjectRootPath: undefined -Info 56 [16:02:40.000] Projects: /user/username/projects/myproject/random/tsconfig.json +Info 50 [00:02:13.000] Running: /user/username/projects/myproject/dependency/tsconfig.json +Info 51 [00:02:14.000] Starting updateGraphWorker: Project: /user/username/projects/myproject/dependency/tsconfig.json +Info 52 [00:02:15.000] Finishing updateGraphWorker: Project: /user/username/projects/myproject/dependency/tsconfig.json Version: 2 structureChanged: false structureIsReused:: Not Elapsed:: *ms +Info 53 [00:02:16.000] Running: *ensureProjectForOpenFiles* +Info 54 [00:02:17.000] Before ensureProjectForOpenFiles: +Info 55 [00:02:18.000] Project '/user/username/projects/myproject/dependency/tsconfig.json' (Configured) +Info 55 [00:02:19.000] Files (2) + +Info 55 [00:02:20.000] ----------------------------------------------- +Info 55 [00:02:21.000] Project '/user/username/projects/myproject/random/tsconfig.json' (Configured) +Info 55 [00:02:22.000] Files (2) + +Info 55 [00:02:23.000] ----------------------------------------------- +Info 55 [00:02:24.000] Open files: +Info 55 [00:02:25.000] FileName: /user/username/projects/myproject/dependency/FnS.ts ProjectRootPath: undefined +Info 55 [00:02:26.000] Projects: /user/username/projects/myproject/dependency/tsconfig.json +Info 55 [00:02:27.000] FileName: /user/username/projects/myproject/random/random.ts ProjectRootPath: undefined +Info 55 [00:02:28.000] Projects: /user/username/projects/myproject/random/tsconfig.json +Info 55 [00:02:29.000] After ensureProjectForOpenFiles: +Info 56 [00:02:30.000] Project '/user/username/projects/myproject/dependency/tsconfig.json' (Configured) +Info 56 [00:02:31.000] Files (2) + +Info 56 [00:02:32.000] ----------------------------------------------- +Info 56 [00:02:33.000] Project '/user/username/projects/myproject/random/tsconfig.json' (Configured) +Info 56 [00:02:34.000] Files (2) + +Info 56 [00:02:35.000] ----------------------------------------------- +Info 56 [00:02:36.000] Open files: +Info 56 [00:02:37.000] FileName: /user/username/projects/myproject/dependency/FnS.ts ProjectRootPath: undefined +Info 56 [00:02:38.000] Projects: /user/username/projects/myproject/dependency/tsconfig.json +Info 56 [00:02:39.000] FileName: /user/username/projects/myproject/random/random.ts ProjectRootPath: undefined +Info 56 [00:02:40.000] Projects: /user/username/projects/myproject/random/tsconfig.json After running timeout callbacks PolledWatches:: @@ -583,7 +583,7 @@ FsWatchesRecursive:: /user/username/projects/myproject/random: {} -Info 56 [16:02:41.000] request: +Info 56 [00:02:41.000] request: { "command": "rename", "arguments": { @@ -650,7 +650,7 @@ FsWatchesRecursive:: /user/username/projects/myproject/random: {} -Info 57 [16:02:42.000] response: +Info 57 [00:02:42.000] response: { "response": { "info": { @@ -698,7 +698,7 @@ Info 57 [16:02:42.000] response: }, "responseRequired": true } -Info 58 [16:02:43.000] request: +Info 58 [00:02:43.000] request: { "command": "rename", "arguments": { @@ -765,7 +765,7 @@ FsWatchesRecursive:: /user/username/projects/myproject/random: {} -Info 59 [16:02:44.000] response: +Info 59 [00:02:44.000] response: { "response": { "info": { @@ -813,7 +813,7 @@ Info 59 [16:02:44.000] response: }, "responseRequired": true } -Info 60 [16:02:45.000] request: +Info 60 [00:02:45.000] request: { "command": "rename", "arguments": { @@ -880,7 +880,7 @@ FsWatchesRecursive:: /user/username/projects/myproject/random: {} -Info 61 [16:02:46.000] response: +Info 61 [00:02:46.000] response: { "response": { "info": { @@ -928,7 +928,7 @@ Info 61 [16:02:46.000] response: }, "responseRequired": true } -Info 62 [16:02:47.000] request: +Info 62 [00:02:47.000] request: { "command": "rename", "arguments": { @@ -995,7 +995,7 @@ FsWatchesRecursive:: /user/username/projects/myproject/random: {} -Info 63 [16:02:48.000] response: +Info 63 [00:02:48.000] response: { "response": { "info": { @@ -1043,7 +1043,7 @@ Info 63 [16:02:48.000] response: }, "responseRequired": true } -Info 64 [16:02:49.000] request: +Info 64 [00:02:49.000] request: { "command": "rename", "arguments": { @@ -1110,7 +1110,7 @@ FsWatchesRecursive:: /user/username/projects/myproject/random: {} -Info 65 [16:02:50.000] response: +Info 65 [00:02:50.000] response: { "response": { "info": { 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 ef804743f4e5b..90816eaaad72a 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 @@ -1,5 +1,5 @@ -Info 0 [16:01:03.000] Provided types map file "/a/lib/typesMap.json" doesn't exist -Info 1 [16:01:04.000] request: +Info 0 [00:01:03.000] Provided types map file "/a/lib/typesMap.json" doesn't exist +Info 1 [00:01:04.000] request: { "seq": 0, "type": "request", @@ -200,11 +200,11 @@ FsWatches:: FsWatchesRecursive:: -Info 2 [16:01:05.000] Search path: /user/username/projects/myproject/dependency -Info 3 [16:01:06.000] For info: /user/username/projects/myproject/dependency/FnS.ts :: Config file name: /user/username/projects/myproject/dependency/tsconfig.json -Info 4 [16:01:07.000] Creating configuration project /user/username/projects/myproject/dependency/tsconfig.json -Info 5 [16:01:08.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/dependency/tsconfig.json 2000 undefined Project: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Config file -Info 6 [16:01:09.000] Config: /user/username/projects/myproject/dependency/tsconfig.json : { +Info 2 [00:01:05.000] Search path: /user/username/projects/myproject/dependency +Info 3 [00:01:06.000] For info: /user/username/projects/myproject/dependency/FnS.ts :: Config file name: /user/username/projects/myproject/dependency/tsconfig.json +Info 4 [00:01:07.000] Creating configuration project /user/username/projects/myproject/dependency/tsconfig.json +Info 5 [00:01:08.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/dependency/tsconfig.json 2000 undefined Project: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Config file +Info 6 [00:01:09.000] Config: /user/username/projects/myproject/dependency/tsconfig.json : { "rootNames": [ "/user/username/projects/myproject/dependency/FnS.ts" ], @@ -215,18 +215,18 @@ Info 6 [16:01:09.000] Config: /user/username/projects/myproject/dependency/ts "configFilePath": "/user/username/projects/myproject/dependency/tsconfig.json" } } -Info 7 [16:01:10.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/dependency 1 undefined Config: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Wild card directory -Info 8 [16:01:11.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/dependency 1 undefined Config: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Wild card directory -Info 9 [16:01:12.000] Plugins were requested but not running in environment that supports 'require'. Nothing will be loaded -Info 10 [16:01:13.000] Starting updateGraphWorker: Project: /user/username/projects/myproject/dependency/tsconfig.json -Info 11 [16:01:14.000] FileWatcher:: Added:: WatchInfo: /a/lib/lib.d.ts 500 undefined WatchType: Closed Script info -Info 12 [16:01:15.000] 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 13 [16:01:16.000] 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 14 [16:01:17.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Type roots -Info 15 [16:01:18.000] 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 16 [16:01:19.000] Finishing updateGraphWorker: Project: /user/username/projects/myproject/dependency/tsconfig.json Version: 1 structureChanged: true structureIsReused:: Not Elapsed:: *ms -Info 17 [16:01:20.000] Project '/user/username/projects/myproject/dependency/tsconfig.json' (Configured) -Info 18 [16:01:21.000] Files (2) +Info 7 [00:01:10.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/dependency 1 undefined Config: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Wild card directory +Info 8 [00:01:11.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/dependency 1 undefined Config: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Wild card directory +Info 9 [00:01:12.000] Plugins were requested but not running in environment that supports 'require'. Nothing will be loaded +Info 10 [00:01:13.000] Starting updateGraphWorker: Project: /user/username/projects/myproject/dependency/tsconfig.json +Info 11 [00:01:14.000] FileWatcher:: Added:: WatchInfo: /a/lib/lib.d.ts 500 undefined WatchType: Closed Script info +Info 12 [00:01:15.000] 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 13 [00:01:16.000] 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 14 [00:01:17.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Type roots +Info 15 [00:01:18.000] 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 16 [00:01:19.000] Finishing updateGraphWorker: Project: /user/username/projects/myproject/dependency/tsconfig.json Version: 1 structureChanged: true structureIsReused:: Not Elapsed:: *ms +Info 17 [00:01:20.000] Project '/user/username/projects/myproject/dependency/tsconfig.json' (Configured) +Info 18 [00:01:21.000] Files (2) /a/lib/lib.d.ts /user/username/projects/myproject/dependency/FnS.ts @@ -236,16 +236,16 @@ Info 18 [16:01:21.000] Files (2) FnS.ts Matched by default include pattern '**/*' -Info 19 [16:01:22.000] ----------------------------------------------- -Info 20 [16:01:23.000] Search path: /user/username/projects/myproject/dependency -Info 21 [16:01:24.000] For info: /user/username/projects/myproject/dependency/tsconfig.json :: No config files found. -Info 22 [16:01:25.000] Project '/user/username/projects/myproject/dependency/tsconfig.json' (Configured) -Info 22 [16:01:26.000] Files (2) +Info 19 [00:01:22.000] ----------------------------------------------- +Info 20 [00:01:23.000] Search path: /user/username/projects/myproject/dependency +Info 21 [00:01:24.000] For info: /user/username/projects/myproject/dependency/tsconfig.json :: No config files found. +Info 22 [00:01:25.000] Project '/user/username/projects/myproject/dependency/tsconfig.json' (Configured) +Info 22 [00:01:26.000] Files (2) -Info 22 [16:01:27.000] ----------------------------------------------- -Info 22 [16:01:28.000] Open files: -Info 22 [16:01:29.000] FileName: /user/username/projects/myproject/dependency/FnS.ts ProjectRootPath: undefined -Info 22 [16:01:30.000] Projects: /user/username/projects/myproject/dependency/tsconfig.json +Info 22 [00:01:27.000] ----------------------------------------------- +Info 22 [00:01:28.000] Open files: +Info 22 [00:01:29.000] FileName: /user/username/projects/myproject/dependency/FnS.ts ProjectRootPath: undefined +Info 22 [00:01:30.000] Projects: /user/username/projects/myproject/dependency/tsconfig.json After request PolledWatches:: @@ -264,11 +264,11 @@ FsWatchesRecursive:: /user/username/projects/myproject/dependency: {} -Info 22 [16:01:31.000] response: +Info 22 [00:01:31.000] response: { "responseRequired": false } -Info 23 [16:01:32.000] request: +Info 23 [00:01:32.000] request: { "seq": 0, "type": "request", @@ -295,11 +295,11 @@ FsWatchesRecursive:: /user/username/projects/myproject/dependency: {} -Info 24 [16:01:33.000] Search path: /user/username/projects/myproject/random -Info 25 [16:01:34.000] For info: /user/username/projects/myproject/random/random.ts :: Config file name: /user/username/projects/myproject/random/tsconfig.json -Info 26 [16:01:35.000] Creating configuration project /user/username/projects/myproject/random/tsconfig.json -Info 27 [16:01:36.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/random/tsconfig.json 2000 undefined Project: /user/username/projects/myproject/random/tsconfig.json WatchType: Config file -Info 28 [16:01:37.000] Config: /user/username/projects/myproject/random/tsconfig.json : { +Info 24 [00:01:33.000] Search path: /user/username/projects/myproject/random +Info 25 [00:01:34.000] For info: /user/username/projects/myproject/random/random.ts :: Config file name: /user/username/projects/myproject/random/tsconfig.json +Info 26 [00:01:35.000] Creating configuration project /user/username/projects/myproject/random/tsconfig.json +Info 27 [00:01:36.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/random/tsconfig.json 2000 undefined Project: /user/username/projects/myproject/random/tsconfig.json WatchType: Config file +Info 28 [00:01:37.000] Config: /user/username/projects/myproject/random/tsconfig.json : { "rootNames": [ "/user/username/projects/myproject/random/random.ts" ], @@ -307,17 +307,17 @@ Info 28 [16:01:37.000] Config: /user/username/projects/myproject/random/tsconf "configFilePath": "/user/username/projects/myproject/random/tsconfig.json" } } -Info 29 [16:01:38.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/random 1 undefined Config: /user/username/projects/myproject/random/tsconfig.json WatchType: Wild card directory -Info 30 [16:01:39.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/random 1 undefined Config: /user/username/projects/myproject/random/tsconfig.json WatchType: Wild card directory -Info 31 [16:01:40.000] Plugins were requested but not running in environment that supports 'require'. Nothing will be loaded -Info 32 [16:01:41.000] Starting updateGraphWorker: Project: /user/username/projects/myproject/random/tsconfig.json -Info 33 [16:01:42.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/random/node_modules/@types 1 undefined Project: /user/username/projects/myproject/random/tsconfig.json WatchType: Type roots -Info 34 [16:01:43.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/random/node_modules/@types 1 undefined Project: /user/username/projects/myproject/random/tsconfig.json WatchType: Type roots -Info 35 [16:01:44.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/random/tsconfig.json WatchType: Type roots -Info 36 [16:01:45.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/random/tsconfig.json WatchType: Type roots -Info 37 [16:01:46.000] Finishing updateGraphWorker: Project: /user/username/projects/myproject/random/tsconfig.json Version: 1 structureChanged: true structureIsReused:: Not Elapsed:: *ms -Info 38 [16:01:47.000] Project '/user/username/projects/myproject/random/tsconfig.json' (Configured) -Info 39 [16:01:48.000] Files (2) +Info 29 [00:01:38.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/random 1 undefined Config: /user/username/projects/myproject/random/tsconfig.json WatchType: Wild card directory +Info 30 [00:01:39.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/random 1 undefined Config: /user/username/projects/myproject/random/tsconfig.json WatchType: Wild card directory +Info 31 [00:01:40.000] Plugins were requested but not running in environment that supports 'require'. Nothing will be loaded +Info 32 [00:01:41.000] Starting updateGraphWorker: Project: /user/username/projects/myproject/random/tsconfig.json +Info 33 [00:01:42.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/random/node_modules/@types 1 undefined Project: /user/username/projects/myproject/random/tsconfig.json WatchType: Type roots +Info 34 [00:01:43.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/random/node_modules/@types 1 undefined Project: /user/username/projects/myproject/random/tsconfig.json WatchType: Type roots +Info 35 [00:01:44.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/random/tsconfig.json WatchType: Type roots +Info 36 [00:01:45.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/random/tsconfig.json WatchType: Type roots +Info 37 [00:01:46.000] Finishing updateGraphWorker: Project: /user/username/projects/myproject/random/tsconfig.json Version: 1 structureChanged: true structureIsReused:: Not Elapsed:: *ms +Info 38 [00:01:47.000] Project '/user/username/projects/myproject/random/tsconfig.json' (Configured) +Info 39 [00:01:48.000] Files (2) /a/lib/lib.d.ts /user/username/projects/myproject/random/random.ts @@ -327,20 +327,20 @@ Info 39 [16:01:48.000] Files (2) random.ts Matched by default include pattern '**/*' -Info 40 [16:01:49.000] ----------------------------------------------- -Info 41 [16:01:50.000] Project '/user/username/projects/myproject/dependency/tsconfig.json' (Configured) -Info 41 [16:01:51.000] Files (2) +Info 40 [00:01:49.000] ----------------------------------------------- +Info 41 [00:01:50.000] Project '/user/username/projects/myproject/dependency/tsconfig.json' (Configured) +Info 41 [00:01:51.000] Files (2) -Info 41 [16:01:52.000] ----------------------------------------------- -Info 41 [16:01:53.000] Project '/user/username/projects/myproject/random/tsconfig.json' (Configured) -Info 41 [16:01:54.000] Files (2) +Info 41 [00:01:52.000] ----------------------------------------------- +Info 41 [00:01:53.000] Project '/user/username/projects/myproject/random/tsconfig.json' (Configured) +Info 41 [00:01:54.000] Files (2) -Info 41 [16:01:55.000] ----------------------------------------------- -Info 41 [16:01:56.000] Open files: -Info 41 [16:01:57.000] FileName: /user/username/projects/myproject/dependency/FnS.ts ProjectRootPath: undefined -Info 41 [16:01:58.000] Projects: /user/username/projects/myproject/dependency/tsconfig.json -Info 41 [16:01:59.000] FileName: /user/username/projects/myproject/random/random.ts ProjectRootPath: undefined -Info 41 [16:02:00.000] Projects: /user/username/projects/myproject/random/tsconfig.json +Info 41 [00:01:55.000] ----------------------------------------------- +Info 41 [00:01:56.000] Open files: +Info 41 [00:01:57.000] FileName: /user/username/projects/myproject/dependency/FnS.ts ProjectRootPath: undefined +Info 41 [00:01:58.000] Projects: /user/username/projects/myproject/dependency/tsconfig.json +Info 41 [00:01:59.000] FileName: /user/username/projects/myproject/random/random.ts ProjectRootPath: undefined +Info 41 [00:02:00.000] Projects: /user/username/projects/myproject/random/tsconfig.json After request PolledWatches:: @@ -365,11 +365,11 @@ FsWatchesRecursive:: /user/username/projects/myproject/random: {} -Info 41 [16:02:01.000] response: +Info 41 [00:02:01.000] response: { "responseRequired": false } -Info 42 [16:02:02.000] request: +Info 42 [00:02:02.000] request: { "command": "rename", "arguments": { @@ -404,8 +404,8 @@ FsWatchesRecursive:: /user/username/projects/myproject/random: {} -Info 43 [16:02:03.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/decls/FnS.d.ts 500 undefined WatchType: Closed Script info -Info 44 [16:02:04.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/decls/FnS.d.ts.map 500 undefined WatchType: Closed Script info +Info 43 [00:02:03.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/decls/FnS.d.ts 500 undefined WatchType: Closed Script info +Info 44 [00:02:04.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/decls/FnS.d.ts.map 500 undefined WatchType: Closed Script info After request PolledWatches:: @@ -434,7 +434,7 @@ FsWatchesRecursive:: /user/username/projects/myproject/random: {} -Info 45 [16:02:05.000] response: +Info 45 [00:02:05.000] response: { "response": { "info": { @@ -482,11 +482,11 @@ Info 45 [16:02:05.000] response: }, "responseRequired": true } -Info 46 [16:02:09.000] FileWatcher:: Triggered with /user/username/projects/myproject/decls/FnS.d.ts 1:: WatchInfo: /user/username/projects/myproject/decls/FnS.d.ts 500 undefined WatchType: Closed Script info -Info 47 [16:02:10.000] Scheduled: /user/username/projects/myproject/dependency/tsconfig.json -Info 48 [16:02:11.000] Scheduled: *ensureProjectForOpenFiles* -Info 49 [16:02:12.000] Elapsed:: *ms FileWatcher:: Triggered with /user/username/projects/myproject/decls/FnS.d.ts 1:: WatchInfo: /user/username/projects/myproject/decls/FnS.d.ts 500 undefined WatchType: Closed Script info -Info 50 [16:02:13.000] request: +Info 46 [00:02:09.000] FileWatcher:: Triggered with /user/username/projects/myproject/decls/FnS.d.ts 1:: WatchInfo: /user/username/projects/myproject/decls/FnS.d.ts 500 undefined WatchType: Closed Script info +Info 47 [00:02:10.000] Scheduled: /user/username/projects/myproject/dependency/tsconfig.json +Info 48 [00:02:11.000] Scheduled: *ensureProjectForOpenFiles* +Info 49 [00:02:12.000] Elapsed:: *ms FileWatcher:: Triggered with /user/username/projects/myproject/decls/FnS.d.ts 1:: WatchInfo: /user/username/projects/myproject/decls/FnS.d.ts 500 undefined WatchType: Closed Script info +Info 50 [00:02:13.000] request: { "command": "rename", "arguments": { @@ -534,8 +534,8 @@ FsWatchesRecursive:: /user/username/projects/myproject/random: {} -Info 51 [16:02:14.000] Starting updateGraphWorker: Project: /user/username/projects/myproject/dependency/tsconfig.json -Info 52 [16:02:15.000] Finishing updateGraphWorker: Project: /user/username/projects/myproject/dependency/tsconfig.json Version: 2 structureChanged: false structureIsReused:: Not Elapsed:: *ms +Info 51 [00:02:14.000] Starting updateGraphWorker: Project: /user/username/projects/myproject/dependency/tsconfig.json +Info 52 [00:02:15.000] Finishing updateGraphWorker: Project: /user/username/projects/myproject/dependency/tsconfig.json Version: 2 structureChanged: false structureIsReused:: Not Elapsed:: *ms After request PolledWatches:: @@ -564,7 +564,7 @@ FsWatchesRecursive:: /user/username/projects/myproject/random: {} -Info 53 [16:02:16.000] response: +Info 53 [00:02:16.000] response: { "response": { "info": { @@ -612,7 +612,7 @@ Info 53 [16:02:16.000] response: }, "responseRequired": true } -Info 54 [16:02:17.000] request: +Info 54 [00:02:17.000] request: { "command": "rename", "arguments": { @@ -679,7 +679,7 @@ FsWatchesRecursive:: /user/username/projects/myproject/random: {} -Info 55 [16:02:18.000] response: +Info 55 [00:02:18.000] response: { "response": { "info": { @@ -727,7 +727,7 @@ Info 55 [16:02:18.000] response: }, "responseRequired": true } -Info 56 [16:02:19.000] request: +Info 56 [00:02:19.000] request: { "command": "rename", "arguments": { @@ -794,7 +794,7 @@ FsWatchesRecursive:: /user/username/projects/myproject/random: {} -Info 57 [16:02:20.000] response: +Info 57 [00:02:20.000] response: { "response": { "info": { @@ -842,7 +842,7 @@ Info 57 [16:02:20.000] response: }, "responseRequired": true } -Info 58 [16:02:21.000] request: +Info 58 [00:02:21.000] request: { "command": "rename", "arguments": { @@ -909,7 +909,7 @@ FsWatchesRecursive:: /user/username/projects/myproject/random: {} -Info 59 [16:02:22.000] response: +Info 59 [00:02:22.000] response: { "response": { "info": { @@ -957,7 +957,7 @@ Info 59 [16:02:22.000] response: }, "responseRequired": true } -Info 60 [16:02:23.000] request: +Info 60 [00:02:23.000] request: { "command": "rename", "arguments": { @@ -1024,7 +1024,7 @@ FsWatchesRecursive:: /user/username/projects/myproject/random: {} -Info 61 [16:02:24.000] response: +Info 61 [00:02:24.000] response: { "response": { "info": { 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 9042ef1f82eff..ced1eb819bbfe 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 @@ -1,5 +1,5 @@ -Info 0 [16:01:04.000] Provided types map file "/a/lib/typesMap.json" doesn't exist -Info 1 [16:01:05.000] request: +Info 0 [00:01:04.000] Provided types map file "/a/lib/typesMap.json" doesn't exist +Info 1 [00:01:05.000] request: { "seq": 0, "type": "request", @@ -192,11 +192,11 @@ FsWatches:: FsWatchesRecursive:: -Info 2 [16:01:06.000] Search path: /user/username/projects/myproject/dependency -Info 3 [16:01:07.000] For info: /user/username/projects/myproject/dependency/FnS.ts :: Config file name: /user/username/projects/myproject/dependency/tsconfig.json -Info 4 [16:01:08.000] Creating configuration project /user/username/projects/myproject/dependency/tsconfig.json -Info 5 [16:01:09.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/dependency/tsconfig.json 2000 undefined Project: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Config file -Info 6 [16:01:10.000] Config: /user/username/projects/myproject/dependency/tsconfig.json : { +Info 2 [00:01:06.000] Search path: /user/username/projects/myproject/dependency +Info 3 [00:01:07.000] For info: /user/username/projects/myproject/dependency/FnS.ts :: Config file name: /user/username/projects/myproject/dependency/tsconfig.json +Info 4 [00:01:08.000] Creating configuration project /user/username/projects/myproject/dependency/tsconfig.json +Info 5 [00:01:09.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/dependency/tsconfig.json 2000 undefined Project: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Config file +Info 6 [00:01:10.000] Config: /user/username/projects/myproject/dependency/tsconfig.json : { "rootNames": [ "/user/username/projects/myproject/dependency/FnS.ts" ], @@ -207,18 +207,18 @@ Info 6 [16:01:10.000] Config: /user/username/projects/myproject/dependency/ts "configFilePath": "/user/username/projects/myproject/dependency/tsconfig.json" } } -Info 7 [16:01:11.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/dependency 1 undefined Config: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Wild card directory -Info 8 [16:01:12.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/dependency 1 undefined Config: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Wild card directory -Info 9 [16:01:13.000] Plugins were requested but not running in environment that supports 'require'. Nothing will be loaded -Info 10 [16:01:14.000] Starting updateGraphWorker: Project: /user/username/projects/myproject/dependency/tsconfig.json -Info 11 [16:01:15.000] FileWatcher:: Added:: WatchInfo: /a/lib/lib.d.ts 500 undefined WatchType: Closed Script info -Info 12 [16:01:16.000] 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 13 [16:01:17.000] 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 14 [16:01:18.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Type roots -Info 15 [16:01:19.000] 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 16 [16:01:20.000] Finishing updateGraphWorker: Project: /user/username/projects/myproject/dependency/tsconfig.json Version: 1 structureChanged: true structureIsReused:: Not Elapsed:: *ms -Info 17 [16:01:21.000] Project '/user/username/projects/myproject/dependency/tsconfig.json' (Configured) -Info 18 [16:01:22.000] Files (2) +Info 7 [00:01:11.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/dependency 1 undefined Config: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Wild card directory +Info 8 [00:01:12.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/dependency 1 undefined Config: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Wild card directory +Info 9 [00:01:13.000] Plugins were requested but not running in environment that supports 'require'. Nothing will be loaded +Info 10 [00:01:14.000] Starting updateGraphWorker: Project: /user/username/projects/myproject/dependency/tsconfig.json +Info 11 [00:01:15.000] FileWatcher:: Added:: WatchInfo: /a/lib/lib.d.ts 500 undefined WatchType: Closed Script info +Info 12 [00:01:16.000] 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 13 [00:01:17.000] 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 14 [00:01:18.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Type roots +Info 15 [00:01:19.000] 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 16 [00:01:20.000] Finishing updateGraphWorker: Project: /user/username/projects/myproject/dependency/tsconfig.json Version: 1 structureChanged: true structureIsReused:: Not Elapsed:: *ms +Info 17 [00:01:21.000] Project '/user/username/projects/myproject/dependency/tsconfig.json' (Configured) +Info 18 [00:01:22.000] Files (2) /a/lib/lib.d.ts /user/username/projects/myproject/dependency/FnS.ts @@ -228,16 +228,16 @@ Info 18 [16:01:22.000] Files (2) FnS.ts Matched by default include pattern '**/*' -Info 19 [16:01:23.000] ----------------------------------------------- -Info 20 [16:01:24.000] Search path: /user/username/projects/myproject/dependency -Info 21 [16:01:25.000] For info: /user/username/projects/myproject/dependency/tsconfig.json :: No config files found. -Info 22 [16:01:26.000] Project '/user/username/projects/myproject/dependency/tsconfig.json' (Configured) -Info 22 [16:01:27.000] Files (2) +Info 19 [00:01:23.000] ----------------------------------------------- +Info 20 [00:01:24.000] Search path: /user/username/projects/myproject/dependency +Info 21 [00:01:25.000] For info: /user/username/projects/myproject/dependency/tsconfig.json :: No config files found. +Info 22 [00:01:26.000] Project '/user/username/projects/myproject/dependency/tsconfig.json' (Configured) +Info 22 [00:01:27.000] Files (2) -Info 22 [16:01:28.000] ----------------------------------------------- -Info 22 [16:01:29.000] Open files: -Info 22 [16:01:30.000] FileName: /user/username/projects/myproject/dependency/FnS.ts ProjectRootPath: undefined -Info 22 [16:01:31.000] Projects: /user/username/projects/myproject/dependency/tsconfig.json +Info 22 [00:01:28.000] ----------------------------------------------- +Info 22 [00:01:29.000] Open files: +Info 22 [00:01:30.000] FileName: /user/username/projects/myproject/dependency/FnS.ts ProjectRootPath: undefined +Info 22 [00:01:31.000] Projects: /user/username/projects/myproject/dependency/tsconfig.json After request PolledWatches:: @@ -256,11 +256,11 @@ FsWatchesRecursive:: /user/username/projects/myproject/dependency: {} -Info 22 [16:01:32.000] response: +Info 22 [00:01:32.000] response: { "responseRequired": false } -Info 23 [16:01:33.000] request: +Info 23 [00:01:33.000] request: { "seq": 0, "type": "request", @@ -287,11 +287,11 @@ FsWatchesRecursive:: /user/username/projects/myproject/dependency: {} -Info 24 [16:01:34.000] Search path: /user/username/projects/myproject/random -Info 25 [16:01:35.000] For info: /user/username/projects/myproject/random/random.ts :: Config file name: /user/username/projects/myproject/random/tsconfig.json -Info 26 [16:01:36.000] Creating configuration project /user/username/projects/myproject/random/tsconfig.json -Info 27 [16:01:37.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/random/tsconfig.json 2000 undefined Project: /user/username/projects/myproject/random/tsconfig.json WatchType: Config file -Info 28 [16:01:38.000] Config: /user/username/projects/myproject/random/tsconfig.json : { +Info 24 [00:01:34.000] Search path: /user/username/projects/myproject/random +Info 25 [00:01:35.000] For info: /user/username/projects/myproject/random/random.ts :: Config file name: /user/username/projects/myproject/random/tsconfig.json +Info 26 [00:01:36.000] Creating configuration project /user/username/projects/myproject/random/tsconfig.json +Info 27 [00:01:37.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/random/tsconfig.json 2000 undefined Project: /user/username/projects/myproject/random/tsconfig.json WatchType: Config file +Info 28 [00:01:38.000] Config: /user/username/projects/myproject/random/tsconfig.json : { "rootNames": [ "/user/username/projects/myproject/random/random.ts" ], @@ -299,17 +299,17 @@ Info 28 [16:01:38.000] Config: /user/username/projects/myproject/random/tsconf "configFilePath": "/user/username/projects/myproject/random/tsconfig.json" } } -Info 29 [16:01:39.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/random 1 undefined Config: /user/username/projects/myproject/random/tsconfig.json WatchType: Wild card directory -Info 30 [16:01:40.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/random 1 undefined Config: /user/username/projects/myproject/random/tsconfig.json WatchType: Wild card directory -Info 31 [16:01:41.000] Plugins were requested but not running in environment that supports 'require'. Nothing will be loaded -Info 32 [16:01:42.000] Starting updateGraphWorker: Project: /user/username/projects/myproject/random/tsconfig.json -Info 33 [16:01:43.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/random/node_modules/@types 1 undefined Project: /user/username/projects/myproject/random/tsconfig.json WatchType: Type roots -Info 34 [16:01:44.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/random/node_modules/@types 1 undefined Project: /user/username/projects/myproject/random/tsconfig.json WatchType: Type roots -Info 35 [16:01:45.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/random/tsconfig.json WatchType: Type roots -Info 36 [16:01:46.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/random/tsconfig.json WatchType: Type roots -Info 37 [16:01:47.000] Finishing updateGraphWorker: Project: /user/username/projects/myproject/random/tsconfig.json Version: 1 structureChanged: true structureIsReused:: Not Elapsed:: *ms -Info 38 [16:01:48.000] Project '/user/username/projects/myproject/random/tsconfig.json' (Configured) -Info 39 [16:01:49.000] Files (2) +Info 29 [00:01:39.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/random 1 undefined Config: /user/username/projects/myproject/random/tsconfig.json WatchType: Wild card directory +Info 30 [00:01:40.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/random 1 undefined Config: /user/username/projects/myproject/random/tsconfig.json WatchType: Wild card directory +Info 31 [00:01:41.000] Plugins were requested but not running in environment that supports 'require'. Nothing will be loaded +Info 32 [00:01:42.000] Starting updateGraphWorker: Project: /user/username/projects/myproject/random/tsconfig.json +Info 33 [00:01:43.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/random/node_modules/@types 1 undefined Project: /user/username/projects/myproject/random/tsconfig.json WatchType: Type roots +Info 34 [00:01:44.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/random/node_modules/@types 1 undefined Project: /user/username/projects/myproject/random/tsconfig.json WatchType: Type roots +Info 35 [00:01:45.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/random/tsconfig.json WatchType: Type roots +Info 36 [00:01:46.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/random/tsconfig.json WatchType: Type roots +Info 37 [00:01:47.000] Finishing updateGraphWorker: Project: /user/username/projects/myproject/random/tsconfig.json Version: 1 structureChanged: true structureIsReused:: Not Elapsed:: *ms +Info 38 [00:01:48.000] Project '/user/username/projects/myproject/random/tsconfig.json' (Configured) +Info 39 [00:01:49.000] Files (2) /a/lib/lib.d.ts /user/username/projects/myproject/random/random.ts @@ -319,20 +319,20 @@ Info 39 [16:01:49.000] Files (2) random.ts Matched by default include pattern '**/*' -Info 40 [16:01:50.000] ----------------------------------------------- -Info 41 [16:01:51.000] Project '/user/username/projects/myproject/dependency/tsconfig.json' (Configured) -Info 41 [16:01:52.000] Files (2) +Info 40 [00:01:50.000] ----------------------------------------------- +Info 41 [00:01:51.000] Project '/user/username/projects/myproject/dependency/tsconfig.json' (Configured) +Info 41 [00:01:52.000] Files (2) -Info 41 [16:01:53.000] ----------------------------------------------- -Info 41 [16:01:54.000] Project '/user/username/projects/myproject/random/tsconfig.json' (Configured) -Info 41 [16:01:55.000] Files (2) +Info 41 [00:01:53.000] ----------------------------------------------- +Info 41 [00:01:54.000] Project '/user/username/projects/myproject/random/tsconfig.json' (Configured) +Info 41 [00:01:55.000] Files (2) -Info 41 [16:01:56.000] ----------------------------------------------- -Info 41 [16:01:57.000] Open files: -Info 41 [16:01:58.000] FileName: /user/username/projects/myproject/dependency/FnS.ts ProjectRootPath: undefined -Info 41 [16:01:59.000] Projects: /user/username/projects/myproject/dependency/tsconfig.json -Info 41 [16:02:00.000] FileName: /user/username/projects/myproject/random/random.ts ProjectRootPath: undefined -Info 41 [16:02:01.000] Projects: /user/username/projects/myproject/random/tsconfig.json +Info 41 [00:01:56.000] ----------------------------------------------- +Info 41 [00:01:57.000] Open files: +Info 41 [00:01:58.000] FileName: /user/username/projects/myproject/dependency/FnS.ts ProjectRootPath: undefined +Info 41 [00:01:59.000] Projects: /user/username/projects/myproject/dependency/tsconfig.json +Info 41 [00:02:00.000] FileName: /user/username/projects/myproject/random/random.ts ProjectRootPath: undefined +Info 41 [00:02:01.000] Projects: /user/username/projects/myproject/random/tsconfig.json After request PolledWatches:: @@ -357,11 +357,11 @@ FsWatchesRecursive:: /user/username/projects/myproject/random: {} -Info 41 [16:02:02.000] response: +Info 41 [00:02:02.000] response: { "responseRequired": false } -Info 42 [16:02:03.000] request: +Info 42 [00:02:03.000] request: { "command": "rename", "arguments": { @@ -396,7 +396,7 @@ FsWatchesRecursive:: /user/username/projects/myproject/random: {} -Info 43 [16:02:04.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/decls/FnS.d.ts 2000 undefined Project: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Missing generated file +Info 43 [00:02:04.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/decls/FnS.d.ts 2000 undefined Project: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Missing generated file After request PolledWatches:: @@ -423,7 +423,7 @@ FsWatchesRecursive:: /user/username/projects/myproject/random: {} -Info 44 [16:02:05.000] response: +Info 44 [00:02:05.000] response: { "response": { "info": { @@ -471,15 +471,15 @@ Info 44 [16:02:05.000] response: }, "responseRequired": true } -Info 45 [16:02:08.000] FileWatcher:: Triggered with /user/username/projects/myproject/decls/FnS.d.ts 0:: WatchInfo: /user/username/projects/myproject/decls/FnS.d.ts 2000 undefined Project: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Missing generated file -Info 46 [16:02:09.000] Scheduled: /user/username/projects/myproject/dependency/tsconfig.json -Info 47 [16:02:10.000] Scheduled: *ensureProjectForOpenFiles* -Info 48 [16:02:11.000] Elapsed:: *ms FileWatcher:: Triggered with /user/username/projects/myproject/decls/FnS.d.ts 0:: WatchInfo: /user/username/projects/myproject/decls/FnS.d.ts 2000 undefined Project: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Missing generated file -Info 49 [16:02:12.000] FileWatcher:: Triggered with /user/username/projects/myproject/decls/FnS.d.ts 0:: WatchInfo: /user/username/projects/myproject/decls/FnS.d.ts 2000 undefined Project: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Missing generated file -Info 50 [16:02:13.000] Scheduled: /user/username/projects/myproject/dependency/tsconfig.json, Cancelled earlier one -Info 51 [16:02:14.000] Scheduled: *ensureProjectForOpenFiles*, Cancelled earlier one -Info 52 [16:02:15.000] Elapsed:: *ms FileWatcher:: Triggered with /user/username/projects/myproject/decls/FnS.d.ts 0:: WatchInfo: /user/username/projects/myproject/decls/FnS.d.ts 2000 undefined Project: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Missing generated file -Info 53 [16:02:16.000] request: +Info 45 [00:02:08.000] FileWatcher:: Triggered with /user/username/projects/myproject/decls/FnS.d.ts 0:: WatchInfo: /user/username/projects/myproject/decls/FnS.d.ts 2000 undefined Project: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Missing generated file +Info 46 [00:02:09.000] Scheduled: /user/username/projects/myproject/dependency/tsconfig.json +Info 47 [00:02:10.000] Scheduled: *ensureProjectForOpenFiles* +Info 48 [00:02:11.000] Elapsed:: *ms FileWatcher:: Triggered with /user/username/projects/myproject/decls/FnS.d.ts 0:: WatchInfo: /user/username/projects/myproject/decls/FnS.d.ts 2000 undefined Project: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Missing generated file +Info 49 [00:02:12.000] FileWatcher:: Triggered with /user/username/projects/myproject/decls/FnS.d.ts 0:: WatchInfo: /user/username/projects/myproject/decls/FnS.d.ts 2000 undefined Project: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Missing generated file +Info 50 [00:02:13.000] Scheduled: /user/username/projects/myproject/dependency/tsconfig.json, Cancelled earlier one +Info 51 [00:02:14.000] Scheduled: *ensureProjectForOpenFiles*, Cancelled earlier one +Info 52 [00:02:15.000] Elapsed:: *ms FileWatcher:: Triggered with /user/username/projects/myproject/decls/FnS.d.ts 0:: WatchInfo: /user/username/projects/myproject/decls/FnS.d.ts 2000 undefined Project: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Missing generated file +Info 53 [00:02:16.000] request: { "command": "rename", "arguments": { @@ -524,10 +524,10 @@ FsWatchesRecursive:: /user/username/projects/myproject/random: {} -Info 54 [16:02:17.000] Starting updateGraphWorker: Project: /user/username/projects/myproject/dependency/tsconfig.json -Info 55 [16:02:18.000] Finishing updateGraphWorker: Project: /user/username/projects/myproject/dependency/tsconfig.json Version: 2 structureChanged: false structureIsReused:: Not Elapsed:: *ms -Info 56 [16:02:19.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/decls/FnS.d.ts 500 undefined WatchType: Closed Script info -Info 57 [16:02:20.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/decls/FnS.d.ts.map 500 undefined WatchType: Closed Script info +Info 54 [00:02:17.000] Starting updateGraphWorker: Project: /user/username/projects/myproject/dependency/tsconfig.json +Info 55 [00:02:18.000] Finishing updateGraphWorker: Project: /user/username/projects/myproject/dependency/tsconfig.json Version: 2 structureChanged: false structureIsReused:: Not Elapsed:: *ms +Info 56 [00:02:19.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/decls/FnS.d.ts 500 undefined WatchType: Closed Script info +Info 57 [00:02:20.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/decls/FnS.d.ts.map 500 undefined WatchType: Closed Script info After request PolledWatches:: @@ -556,7 +556,7 @@ FsWatchesRecursive:: /user/username/projects/myproject/random: {} -Info 58 [16:02:21.000] response: +Info 58 [00:02:21.000] response: { "response": { "info": { @@ -604,7 +604,7 @@ Info 58 [16:02:21.000] response: }, "responseRequired": true } -Info 59 [16:02:22.000] request: +Info 59 [00:02:22.000] request: { "command": "rename", "arguments": { @@ -671,7 +671,7 @@ FsWatchesRecursive:: /user/username/projects/myproject/random: {} -Info 60 [16:02:23.000] response: +Info 60 [00:02:23.000] response: { "response": { "info": { @@ -719,7 +719,7 @@ Info 60 [16:02:23.000] response: }, "responseRequired": true } -Info 61 [16:02:24.000] request: +Info 61 [00:02:24.000] request: { "command": "rename", "arguments": { @@ -786,7 +786,7 @@ FsWatchesRecursive:: /user/username/projects/myproject/random: {} -Info 62 [16:02:25.000] response: +Info 62 [00:02:25.000] response: { "response": { "info": { @@ -834,7 +834,7 @@ Info 62 [16:02:25.000] response: }, "responseRequired": true } -Info 63 [16:02:26.000] request: +Info 63 [00:02:26.000] request: { "command": "rename", "arguments": { @@ -901,7 +901,7 @@ FsWatchesRecursive:: /user/username/projects/myproject/random: {} -Info 64 [16:02:27.000] response: +Info 64 [00:02:27.000] response: { "response": { "info": { @@ -949,7 +949,7 @@ Info 64 [16:02:27.000] response: }, "responseRequired": true } -Info 65 [16:02:28.000] request: +Info 65 [00:02:28.000] request: { "command": "rename", "arguments": { @@ -1016,7 +1016,7 @@ FsWatchesRecursive:: /user/username/projects/myproject/random: {} -Info 66 [16:02:29.000] response: +Info 66 [00:02:29.000] response: { "response": { "info": { @@ -1064,7 +1064,7 @@ Info 66 [16:02:29.000] response: }, "responseRequired": true } -Info 67 [16:02:30.000] request: +Info 67 [00:02:30.000] request: { "seq": 0, "type": "request", @@ -1101,18 +1101,18 @@ FsWatchesRecursive:: /user/username/projects/myproject/random: {} -Info 68 [16:02:31.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/random/random.ts 500 undefined WatchType: Closed Script info -Info 69 [16:02:32.000] Project '/user/username/projects/myproject/dependency/tsconfig.json' (Configured) -Info 69 [16:02:33.000] Files (2) +Info 68 [00:02:31.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/random/random.ts 500 undefined WatchType: Closed Script info +Info 69 [00:02:32.000] Project '/user/username/projects/myproject/dependency/tsconfig.json' (Configured) +Info 69 [00:02:33.000] Files (2) -Info 69 [16:02:34.000] ----------------------------------------------- -Info 69 [16:02:35.000] Project '/user/username/projects/myproject/random/tsconfig.json' (Configured) -Info 69 [16:02:36.000] Files (2) +Info 69 [00:02:34.000] ----------------------------------------------- +Info 69 [00:02:35.000] Project '/user/username/projects/myproject/random/tsconfig.json' (Configured) +Info 69 [00:02:36.000] Files (2) -Info 69 [16:02:37.000] ----------------------------------------------- -Info 69 [16:02:38.000] Open files: -Info 69 [16:02:39.000] FileName: /user/username/projects/myproject/dependency/FnS.ts ProjectRootPath: undefined -Info 69 [16:02:40.000] Projects: /user/username/projects/myproject/dependency/tsconfig.json +Info 69 [00:02:37.000] ----------------------------------------------- +Info 69 [00:02:38.000] Open files: +Info 69 [00:02:39.000] FileName: /user/username/projects/myproject/dependency/FnS.ts ProjectRootPath: undefined +Info 69 [00:02:40.000] Projects: /user/username/projects/myproject/dependency/tsconfig.json After request PolledWatches:: @@ -1143,11 +1143,11 @@ FsWatchesRecursive:: /user/username/projects/myproject/random: {} -Info 69 [16:02:41.000] response: +Info 69 [00:02:41.000] response: { "responseRequired": false } -Info 70 [16:02:42.000] request: +Info 70 [00:02:42.000] request: { "seq": 0, "type": "request", @@ -1186,22 +1186,22 @@ FsWatchesRecursive:: /user/username/projects/myproject/random: {} -Info 71 [16:02:43.000] FileWatcher:: Close:: WatchInfo: /user/username/projects/myproject/random/random.ts 500 undefined WatchType: Closed Script info -Info 72 [16:02:44.000] Search path: /user/username/projects/myproject/random -Info 73 [16:02:45.000] For info: /user/username/projects/myproject/random/random.ts :: Config file name: /user/username/projects/myproject/random/tsconfig.json -Info 74 [16:02:46.000] Project '/user/username/projects/myproject/dependency/tsconfig.json' (Configured) -Info 74 [16:02:47.000] Files (2) +Info 71 [00:02:43.000] FileWatcher:: Close:: WatchInfo: /user/username/projects/myproject/random/random.ts 500 undefined WatchType: Closed Script info +Info 72 [00:02:44.000] Search path: /user/username/projects/myproject/random +Info 73 [00:02:45.000] For info: /user/username/projects/myproject/random/random.ts :: Config file name: /user/username/projects/myproject/random/tsconfig.json +Info 74 [00:02:46.000] Project '/user/username/projects/myproject/dependency/tsconfig.json' (Configured) +Info 74 [00:02:47.000] Files (2) -Info 74 [16:02:48.000] ----------------------------------------------- -Info 74 [16:02:49.000] Project '/user/username/projects/myproject/random/tsconfig.json' (Configured) -Info 74 [16:02:50.000] Files (2) +Info 74 [00:02:48.000] ----------------------------------------------- +Info 74 [00:02:49.000] Project '/user/username/projects/myproject/random/tsconfig.json' (Configured) +Info 74 [00:02:50.000] Files (2) -Info 74 [16:02:51.000] ----------------------------------------------- -Info 74 [16:02:52.000] Open files: -Info 74 [16:02:53.000] FileName: /user/username/projects/myproject/dependency/FnS.ts ProjectRootPath: undefined -Info 74 [16:02:54.000] Projects: /user/username/projects/myproject/dependency/tsconfig.json -Info 74 [16:02:55.000] FileName: /user/username/projects/myproject/random/random.ts ProjectRootPath: undefined -Info 74 [16:02:56.000] Projects: /user/username/projects/myproject/random/tsconfig.json +Info 74 [00:02:51.000] ----------------------------------------------- +Info 74 [00:02:52.000] Open files: +Info 74 [00:02:53.000] FileName: /user/username/projects/myproject/dependency/FnS.ts ProjectRootPath: undefined +Info 74 [00:02:54.000] Projects: /user/username/projects/myproject/dependency/tsconfig.json +Info 74 [00:02:55.000] FileName: /user/username/projects/myproject/random/random.ts ProjectRootPath: undefined +Info 74 [00:02:56.000] Projects: /user/username/projects/myproject/random/tsconfig.json After request PolledWatches:: @@ -1230,11 +1230,11 @@ FsWatchesRecursive:: /user/username/projects/myproject/random: {} -Info 74 [16:02:57.000] response: +Info 74 [00:02:57.000] response: { "responseRequired": false } -Info 75 [16:02:58.000] request: +Info 75 [00:02:58.000] request: { "seq": 0, "type": "request", @@ -1271,18 +1271,18 @@ FsWatchesRecursive:: /user/username/projects/myproject/random: {} -Info 76 [16:02:59.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/dependency/FnS.ts 500 undefined WatchType: Closed Script info -Info 77 [16:03:00.000] Project '/user/username/projects/myproject/dependency/tsconfig.json' (Configured) -Info 77 [16:03:01.000] Files (2) +Info 76 [00:02:59.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/dependency/FnS.ts 500 undefined WatchType: Closed Script info +Info 77 [00:03:00.000] Project '/user/username/projects/myproject/dependency/tsconfig.json' (Configured) +Info 77 [00:03:01.000] Files (2) -Info 77 [16:03:02.000] ----------------------------------------------- -Info 77 [16:03:03.000] Project '/user/username/projects/myproject/random/tsconfig.json' (Configured) -Info 77 [16:03:04.000] Files (2) +Info 77 [00:03:02.000] ----------------------------------------------- +Info 77 [00:03:03.000] Project '/user/username/projects/myproject/random/tsconfig.json' (Configured) +Info 77 [00:03:04.000] Files (2) -Info 77 [16:03:05.000] ----------------------------------------------- -Info 77 [16:03:06.000] Open files: -Info 77 [16:03:07.000] FileName: /user/username/projects/myproject/random/random.ts ProjectRootPath: undefined -Info 77 [16:03:08.000] Projects: /user/username/projects/myproject/random/tsconfig.json +Info 77 [00:03:05.000] ----------------------------------------------- +Info 77 [00:03:06.000] Open files: +Info 77 [00:03:07.000] FileName: /user/username/projects/myproject/random/random.ts ProjectRootPath: undefined +Info 77 [00:03:08.000] Projects: /user/username/projects/myproject/random/tsconfig.json After request PolledWatches:: @@ -1313,11 +1313,11 @@ FsWatchesRecursive:: /user/username/projects/myproject/random: {} -Info 77 [16:03:09.000] response: +Info 77 [00:03:09.000] response: { "responseRequired": false } -Info 78 [16:03:10.000] request: +Info 78 [00:03:10.000] request: { "seq": 0, "type": "request", @@ -1356,16 +1356,16 @@ FsWatchesRecursive:: /user/username/projects/myproject/random: {} -Info 79 [16:03:11.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/random/random.ts 500 undefined WatchType: Closed Script info -Info 80 [16:03:12.000] Project '/user/username/projects/myproject/dependency/tsconfig.json' (Configured) -Info 80 [16:03:13.000] Files (2) +Info 79 [00:03:11.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/random/random.ts 500 undefined WatchType: Closed Script info +Info 80 [00:03:12.000] Project '/user/username/projects/myproject/dependency/tsconfig.json' (Configured) +Info 80 [00:03:13.000] Files (2) -Info 80 [16:03:14.000] ----------------------------------------------- -Info 80 [16:03:15.000] Project '/user/username/projects/myproject/random/tsconfig.json' (Configured) -Info 80 [16:03:16.000] Files (2) +Info 80 [00:03:14.000] ----------------------------------------------- +Info 80 [00:03:15.000] Project '/user/username/projects/myproject/random/tsconfig.json' (Configured) +Info 80 [00:03:16.000] Files (2) -Info 80 [16:03:17.000] ----------------------------------------------- -Info 80 [16:03:18.000] Open files: +Info 80 [00:03:17.000] ----------------------------------------------- +Info 80 [00:03:18.000] Open files: After request PolledWatches:: @@ -1398,11 +1398,11 @@ FsWatchesRecursive:: /user/username/projects/myproject/random: {} -Info 80 [16:03:19.000] response: +Info 80 [00:03:19.000] response: { "responseRequired": false } -Info 81 [16:03:20.000] request: +Info 81 [00:03:20.000] request: { "seq": 0, "type": "request", @@ -1443,12 +1443,12 @@ FsWatchesRecursive:: /user/username/projects/myproject/random: {} -Info 82 [16:03:21.000] FileWatcher:: Close:: WatchInfo: /user/username/projects/myproject/random/random.ts 500 undefined WatchType: Closed Script info -Info 83 [16:03:22.000] Search path: /user/username/projects/myproject/random -Info 84 [16:03:23.000] For info: /user/username/projects/myproject/random/random.ts :: Config file name: /user/username/projects/myproject/random/tsconfig.json -Info 85 [16:03:24.000] `remove Project:: -Info 86 [16:03:25.000] Project '/user/username/projects/myproject/dependency/tsconfig.json' (Configured) -Info 87 [16:03:26.000] Files (2) +Info 82 [00:03:21.000] FileWatcher:: Close:: WatchInfo: /user/username/projects/myproject/random/random.ts 500 undefined WatchType: Closed Script info +Info 83 [00:03:22.000] Search path: /user/username/projects/myproject/random +Info 84 [00:03:23.000] For info: /user/username/projects/myproject/random/random.ts :: Config file name: /user/username/projects/myproject/random/tsconfig.json +Info 85 [00:03:24.000] `remove Project:: +Info 86 [00:03:25.000] Project '/user/username/projects/myproject/dependency/tsconfig.json' (Configured) +Info 87 [00:03:26.000] Files (2) /a/lib/lib.d.ts /user/username/projects/myproject/dependency/FnS.ts @@ -1458,25 +1458,25 @@ Info 87 [16:03:26.000] Files (2) FnS.ts Matched by default include pattern '**/*' -Info 88 [16:03:27.000] ----------------------------------------------- -Info 89 [16:03:28.000] DirectoryWatcher:: Close:: WatchInfo: /user/username/projects/myproject/dependency 1 undefined Config: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Wild card directory -Info 90 [16:03:29.000] 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 91 [16:03:30.000] FileWatcher:: Close:: WatchInfo: /user/username/projects/myproject/dependency/tsconfig.json 2000 undefined Project: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Config file -Info 92 [16:03:31.000] 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 93 [16:03:32.000] 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 94 [16:03:33.000] DirectoryWatcher:: Close:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Type roots -Info 95 [16:03:34.000] 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 96 [16:03:35.000] 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 97 [16:03:36.000] FileWatcher:: Close:: WatchInfo: /user/username/projects/myproject/dependency/FnS.ts 500 undefined WatchType: Closed Script info -Info 98 [16:03:37.000] FileWatcher:: Close:: WatchInfo: /user/username/projects/myproject/decls/FnS.d.ts 500 undefined WatchType: Closed Script info -Info 99 [16:03:38.000] FileWatcher:: Close:: WatchInfo: /user/username/projects/myproject/decls/FnS.d.ts.map 500 undefined WatchType: Closed Script info -Info 100 [16:03:39.000] Project '/user/username/projects/myproject/random/tsconfig.json' (Configured) -Info 100 [16:03:40.000] Files (2) - -Info 100 [16:03:41.000] ----------------------------------------------- -Info 100 [16:03:42.000] Open files: -Info 100 [16:03:43.000] FileName: /user/username/projects/myproject/random/random.ts ProjectRootPath: undefined -Info 100 [16:03:44.000] Projects: /user/username/projects/myproject/random/tsconfig.json +Info 88 [00:03:27.000] ----------------------------------------------- +Info 89 [00:03:28.000] DirectoryWatcher:: Close:: WatchInfo: /user/username/projects/myproject/dependency 1 undefined Config: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Wild card directory +Info 90 [00:03:29.000] 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 91 [00:03:30.000] FileWatcher:: Close:: WatchInfo: /user/username/projects/myproject/dependency/tsconfig.json 2000 undefined Project: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Config file +Info 92 [00:03:31.000] 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 93 [00:03:32.000] 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 94 [00:03:33.000] DirectoryWatcher:: Close:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Type roots +Info 95 [00:03:34.000] 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 96 [00:03:35.000] 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 97 [00:03:36.000] FileWatcher:: Close:: WatchInfo: /user/username/projects/myproject/dependency/FnS.ts 500 undefined WatchType: Closed Script info +Info 98 [00:03:37.000] FileWatcher:: Close:: WatchInfo: /user/username/projects/myproject/decls/FnS.d.ts 500 undefined WatchType: Closed Script info +Info 99 [00:03:38.000] FileWatcher:: Close:: WatchInfo: /user/username/projects/myproject/decls/FnS.d.ts.map 500 undefined WatchType: Closed Script info +Info 100 [00:03:39.000] Project '/user/username/projects/myproject/random/tsconfig.json' (Configured) +Info 100 [00:03:40.000] Files (2) + +Info 100 [00:03:41.000] ----------------------------------------------- +Info 100 [00:03:42.000] Open files: +Info 100 [00:03:43.000] FileName: /user/username/projects/myproject/random/random.ts ProjectRootPath: undefined +Info 100 [00:03:44.000] Projects: /user/username/projects/myproject/random/tsconfig.json After request PolledWatches:: @@ -1495,7 +1495,7 @@ FsWatchesRecursive:: /user/username/projects/myproject/random: {} -Info 100 [16:03:45.000] response: +Info 100 [00:03:45.000] response: { "responseRequired": false } \ No newline at end of file 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 b989e3a045c3d..6ed3893c58692 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 @@ -1,5 +1,5 @@ -Info 0 [16:01:03.000] Provided types map file "/a/lib/typesMap.json" doesn't exist -Info 1 [16:01:04.000] request: +Info 0 [00:01:03.000] Provided types map file "/a/lib/typesMap.json" doesn't exist +Info 1 [00:01:04.000] request: { "seq": 0, "type": "request", @@ -200,11 +200,11 @@ FsWatches:: FsWatchesRecursive:: -Info 2 [16:01:05.000] Search path: /user/username/projects/myproject/dependency -Info 3 [16:01:06.000] For info: /user/username/projects/myproject/dependency/FnS.ts :: Config file name: /user/username/projects/myproject/dependency/tsconfig.json -Info 4 [16:01:07.000] Creating configuration project /user/username/projects/myproject/dependency/tsconfig.json -Info 5 [16:01:08.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/dependency/tsconfig.json 2000 undefined Project: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Config file -Info 6 [16:01:09.000] Config: /user/username/projects/myproject/dependency/tsconfig.json : { +Info 2 [00:01:05.000] Search path: /user/username/projects/myproject/dependency +Info 3 [00:01:06.000] For info: /user/username/projects/myproject/dependency/FnS.ts :: Config file name: /user/username/projects/myproject/dependency/tsconfig.json +Info 4 [00:01:07.000] Creating configuration project /user/username/projects/myproject/dependency/tsconfig.json +Info 5 [00:01:08.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/dependency/tsconfig.json 2000 undefined Project: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Config file +Info 6 [00:01:09.000] Config: /user/username/projects/myproject/dependency/tsconfig.json : { "rootNames": [ "/user/username/projects/myproject/dependency/FnS.ts" ], @@ -215,18 +215,18 @@ Info 6 [16:01:09.000] Config: /user/username/projects/myproject/dependency/ts "configFilePath": "/user/username/projects/myproject/dependency/tsconfig.json" } } -Info 7 [16:01:10.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/dependency 1 undefined Config: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Wild card directory -Info 8 [16:01:11.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/dependency 1 undefined Config: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Wild card directory -Info 9 [16:01:12.000] Plugins were requested but not running in environment that supports 'require'. Nothing will be loaded -Info 10 [16:01:13.000] Starting updateGraphWorker: Project: /user/username/projects/myproject/dependency/tsconfig.json -Info 11 [16:01:14.000] FileWatcher:: Added:: WatchInfo: /a/lib/lib.d.ts 500 undefined WatchType: Closed Script info -Info 12 [16:01:15.000] 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 13 [16:01:16.000] 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 14 [16:01:17.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Type roots -Info 15 [16:01:18.000] 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 16 [16:01:19.000] Finishing updateGraphWorker: Project: /user/username/projects/myproject/dependency/tsconfig.json Version: 1 structureChanged: true structureIsReused:: Not Elapsed:: *ms -Info 17 [16:01:20.000] Project '/user/username/projects/myproject/dependency/tsconfig.json' (Configured) -Info 18 [16:01:21.000] Files (2) +Info 7 [00:01:10.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/dependency 1 undefined Config: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Wild card directory +Info 8 [00:01:11.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/dependency 1 undefined Config: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Wild card directory +Info 9 [00:01:12.000] Plugins were requested but not running in environment that supports 'require'. Nothing will be loaded +Info 10 [00:01:13.000] Starting updateGraphWorker: Project: /user/username/projects/myproject/dependency/tsconfig.json +Info 11 [00:01:14.000] FileWatcher:: Added:: WatchInfo: /a/lib/lib.d.ts 500 undefined WatchType: Closed Script info +Info 12 [00:01:15.000] 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 13 [00:01:16.000] 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 14 [00:01:17.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Type roots +Info 15 [00:01:18.000] 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 16 [00:01:19.000] Finishing updateGraphWorker: Project: /user/username/projects/myproject/dependency/tsconfig.json Version: 1 structureChanged: true structureIsReused:: Not Elapsed:: *ms +Info 17 [00:01:20.000] Project '/user/username/projects/myproject/dependency/tsconfig.json' (Configured) +Info 18 [00:01:21.000] Files (2) /a/lib/lib.d.ts /user/username/projects/myproject/dependency/FnS.ts @@ -236,16 +236,16 @@ Info 18 [16:01:21.000] Files (2) FnS.ts Matched by default include pattern '**/*' -Info 19 [16:01:22.000] ----------------------------------------------- -Info 20 [16:01:23.000] Search path: /user/username/projects/myproject/dependency -Info 21 [16:01:24.000] For info: /user/username/projects/myproject/dependency/tsconfig.json :: No config files found. -Info 22 [16:01:25.000] Project '/user/username/projects/myproject/dependency/tsconfig.json' (Configured) -Info 22 [16:01:26.000] Files (2) +Info 19 [00:01:22.000] ----------------------------------------------- +Info 20 [00:01:23.000] Search path: /user/username/projects/myproject/dependency +Info 21 [00:01:24.000] For info: /user/username/projects/myproject/dependency/tsconfig.json :: No config files found. +Info 22 [00:01:25.000] Project '/user/username/projects/myproject/dependency/tsconfig.json' (Configured) +Info 22 [00:01:26.000] Files (2) -Info 22 [16:01:27.000] ----------------------------------------------- -Info 22 [16:01:28.000] Open files: -Info 22 [16:01:29.000] FileName: /user/username/projects/myproject/dependency/FnS.ts ProjectRootPath: undefined -Info 22 [16:01:30.000] Projects: /user/username/projects/myproject/dependency/tsconfig.json +Info 22 [00:01:27.000] ----------------------------------------------- +Info 22 [00:01:28.000] Open files: +Info 22 [00:01:29.000] FileName: /user/username/projects/myproject/dependency/FnS.ts ProjectRootPath: undefined +Info 22 [00:01:30.000] Projects: /user/username/projects/myproject/dependency/tsconfig.json After request PolledWatches:: @@ -264,11 +264,11 @@ FsWatchesRecursive:: /user/username/projects/myproject/dependency: {} -Info 22 [16:01:31.000] response: +Info 22 [00:01:31.000] response: { "responseRequired": false } -Info 23 [16:01:32.000] request: +Info 23 [00:01:32.000] request: { "seq": 0, "type": "request", @@ -295,11 +295,11 @@ FsWatchesRecursive:: /user/username/projects/myproject/dependency: {} -Info 24 [16:01:33.000] Search path: /user/username/projects/myproject/random -Info 25 [16:01:34.000] For info: /user/username/projects/myproject/random/random.ts :: Config file name: /user/username/projects/myproject/random/tsconfig.json -Info 26 [16:01:35.000] Creating configuration project /user/username/projects/myproject/random/tsconfig.json -Info 27 [16:01:36.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/random/tsconfig.json 2000 undefined Project: /user/username/projects/myproject/random/tsconfig.json WatchType: Config file -Info 28 [16:01:37.000] Config: /user/username/projects/myproject/random/tsconfig.json : { +Info 24 [00:01:33.000] Search path: /user/username/projects/myproject/random +Info 25 [00:01:34.000] For info: /user/username/projects/myproject/random/random.ts :: Config file name: /user/username/projects/myproject/random/tsconfig.json +Info 26 [00:01:35.000] Creating configuration project /user/username/projects/myproject/random/tsconfig.json +Info 27 [00:01:36.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/random/tsconfig.json 2000 undefined Project: /user/username/projects/myproject/random/tsconfig.json WatchType: Config file +Info 28 [00:01:37.000] Config: /user/username/projects/myproject/random/tsconfig.json : { "rootNames": [ "/user/username/projects/myproject/random/random.ts" ], @@ -307,17 +307,17 @@ Info 28 [16:01:37.000] Config: /user/username/projects/myproject/random/tsconf "configFilePath": "/user/username/projects/myproject/random/tsconfig.json" } } -Info 29 [16:01:38.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/random 1 undefined Config: /user/username/projects/myproject/random/tsconfig.json WatchType: Wild card directory -Info 30 [16:01:39.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/random 1 undefined Config: /user/username/projects/myproject/random/tsconfig.json WatchType: Wild card directory -Info 31 [16:01:40.000] Plugins were requested but not running in environment that supports 'require'. Nothing will be loaded -Info 32 [16:01:41.000] Starting updateGraphWorker: Project: /user/username/projects/myproject/random/tsconfig.json -Info 33 [16:01:42.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/random/node_modules/@types 1 undefined Project: /user/username/projects/myproject/random/tsconfig.json WatchType: Type roots -Info 34 [16:01:43.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/random/node_modules/@types 1 undefined Project: /user/username/projects/myproject/random/tsconfig.json WatchType: Type roots -Info 35 [16:01:44.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/random/tsconfig.json WatchType: Type roots -Info 36 [16:01:45.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/random/tsconfig.json WatchType: Type roots -Info 37 [16:01:46.000] Finishing updateGraphWorker: Project: /user/username/projects/myproject/random/tsconfig.json Version: 1 structureChanged: true structureIsReused:: Not Elapsed:: *ms -Info 38 [16:01:47.000] Project '/user/username/projects/myproject/random/tsconfig.json' (Configured) -Info 39 [16:01:48.000] Files (2) +Info 29 [00:01:38.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/random 1 undefined Config: /user/username/projects/myproject/random/tsconfig.json WatchType: Wild card directory +Info 30 [00:01:39.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/random 1 undefined Config: /user/username/projects/myproject/random/tsconfig.json WatchType: Wild card directory +Info 31 [00:01:40.000] Plugins were requested but not running in environment that supports 'require'. Nothing will be loaded +Info 32 [00:01:41.000] Starting updateGraphWorker: Project: /user/username/projects/myproject/random/tsconfig.json +Info 33 [00:01:42.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/random/node_modules/@types 1 undefined Project: /user/username/projects/myproject/random/tsconfig.json WatchType: Type roots +Info 34 [00:01:43.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/random/node_modules/@types 1 undefined Project: /user/username/projects/myproject/random/tsconfig.json WatchType: Type roots +Info 35 [00:01:44.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/random/tsconfig.json WatchType: Type roots +Info 36 [00:01:45.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/random/tsconfig.json WatchType: Type roots +Info 37 [00:01:46.000] Finishing updateGraphWorker: Project: /user/username/projects/myproject/random/tsconfig.json Version: 1 structureChanged: true structureIsReused:: Not Elapsed:: *ms +Info 38 [00:01:47.000] Project '/user/username/projects/myproject/random/tsconfig.json' (Configured) +Info 39 [00:01:48.000] Files (2) /a/lib/lib.d.ts /user/username/projects/myproject/random/random.ts @@ -327,20 +327,20 @@ Info 39 [16:01:48.000] Files (2) random.ts Matched by default include pattern '**/*' -Info 40 [16:01:49.000] ----------------------------------------------- -Info 41 [16:01:50.000] Project '/user/username/projects/myproject/dependency/tsconfig.json' (Configured) -Info 41 [16:01:51.000] Files (2) +Info 40 [00:01:49.000] ----------------------------------------------- +Info 41 [00:01:50.000] Project '/user/username/projects/myproject/dependency/tsconfig.json' (Configured) +Info 41 [00:01:51.000] Files (2) -Info 41 [16:01:52.000] ----------------------------------------------- -Info 41 [16:01:53.000] Project '/user/username/projects/myproject/random/tsconfig.json' (Configured) -Info 41 [16:01:54.000] Files (2) +Info 41 [00:01:52.000] ----------------------------------------------- +Info 41 [00:01:53.000] Project '/user/username/projects/myproject/random/tsconfig.json' (Configured) +Info 41 [00:01:54.000] Files (2) -Info 41 [16:01:55.000] ----------------------------------------------- -Info 41 [16:01:56.000] Open files: -Info 41 [16:01:57.000] FileName: /user/username/projects/myproject/dependency/FnS.ts ProjectRootPath: undefined -Info 41 [16:01:58.000] Projects: /user/username/projects/myproject/dependency/tsconfig.json -Info 41 [16:01:59.000] FileName: /user/username/projects/myproject/random/random.ts ProjectRootPath: undefined -Info 41 [16:02:00.000] Projects: /user/username/projects/myproject/random/tsconfig.json +Info 41 [00:01:55.000] ----------------------------------------------- +Info 41 [00:01:56.000] Open files: +Info 41 [00:01:57.000] FileName: /user/username/projects/myproject/dependency/FnS.ts ProjectRootPath: undefined +Info 41 [00:01:58.000] Projects: /user/username/projects/myproject/dependency/tsconfig.json +Info 41 [00:01:59.000] FileName: /user/username/projects/myproject/random/random.ts ProjectRootPath: undefined +Info 41 [00:02:00.000] Projects: /user/username/projects/myproject/random/tsconfig.json After request PolledWatches:: @@ -365,11 +365,11 @@ FsWatchesRecursive:: /user/username/projects/myproject/random: {} -Info 41 [16:02:01.000] response: +Info 41 [00:02:01.000] response: { "responseRequired": false } -Info 42 [16:02:02.000] request: +Info 42 [00:02:02.000] request: { "command": "rename", "arguments": { @@ -404,8 +404,8 @@ FsWatchesRecursive:: /user/username/projects/myproject/random: {} -Info 43 [16:02:03.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/decls/FnS.d.ts 500 undefined WatchType: Closed Script info -Info 44 [16:02:04.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/decls/FnS.d.ts.map 500 undefined WatchType: Closed Script info +Info 43 [00:02:03.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/decls/FnS.d.ts 500 undefined WatchType: Closed Script info +Info 44 [00:02:04.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/decls/FnS.d.ts.map 500 undefined WatchType: Closed Script info After request PolledWatches:: @@ -434,7 +434,7 @@ FsWatchesRecursive:: /user/username/projects/myproject/random: {} -Info 45 [16:02:05.000] response: +Info 45 [00:02:05.000] response: { "response": { "info": { @@ -482,12 +482,12 @@ Info 45 [16:02:05.000] response: }, "responseRequired": true } -Info 46 [16:02:07.000] FileWatcher:: Triggered with /user/username/projects/myproject/decls/FnS.d.ts 2:: WatchInfo: /user/username/projects/myproject/decls/FnS.d.ts 500 undefined WatchType: Closed Script info -Info 47 [16:02:08.000] FileWatcher:: Close:: WatchInfo: /user/username/projects/myproject/decls/FnS.d.ts 500 undefined WatchType: Closed Script info -Info 48 [16:02:09.000] Scheduled: /user/username/projects/myproject/dependency/tsconfig.json -Info 49 [16:02:10.000] Scheduled: *ensureProjectForOpenFiles* -Info 50 [16:02:11.000] Elapsed:: *ms FileWatcher:: Triggered with /user/username/projects/myproject/decls/FnS.d.ts 2:: WatchInfo: /user/username/projects/myproject/decls/FnS.d.ts 500 undefined WatchType: Closed Script info -Info 51 [16:02:12.000] request: +Info 46 [00:02:07.000] FileWatcher:: Triggered with /user/username/projects/myproject/decls/FnS.d.ts 2:: WatchInfo: /user/username/projects/myproject/decls/FnS.d.ts 500 undefined WatchType: Closed Script info +Info 47 [00:02:08.000] FileWatcher:: Close:: WatchInfo: /user/username/projects/myproject/decls/FnS.d.ts 500 undefined WatchType: Closed Script info +Info 48 [00:02:09.000] Scheduled: /user/username/projects/myproject/dependency/tsconfig.json +Info 49 [00:02:10.000] Scheduled: *ensureProjectForOpenFiles* +Info 50 [00:02:11.000] Elapsed:: *ms FileWatcher:: Triggered with /user/username/projects/myproject/decls/FnS.d.ts 2:: WatchInfo: /user/username/projects/myproject/decls/FnS.d.ts 500 undefined WatchType: Closed Script info +Info 51 [00:02:12.000] request: { "command": "rename", "arguments": { @@ -525,9 +525,9 @@ FsWatchesRecursive:: /user/username/projects/myproject/random: {} -Info 52 [16:02:13.000] Starting updateGraphWorker: Project: /user/username/projects/myproject/dependency/tsconfig.json -Info 53 [16:02:14.000] Finishing updateGraphWorker: Project: /user/username/projects/myproject/dependency/tsconfig.json Version: 2 structureChanged: false structureIsReused:: Not Elapsed:: *ms -Info 54 [16:02:15.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/decls/FnS.d.ts 2000 undefined Project: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Missing generated file +Info 52 [00:02:13.000] Starting updateGraphWorker: Project: /user/username/projects/myproject/dependency/tsconfig.json +Info 53 [00:02:14.000] Finishing updateGraphWorker: Project: /user/username/projects/myproject/dependency/tsconfig.json Version: 2 structureChanged: false structureIsReused:: Not Elapsed:: *ms +Info 54 [00:02:15.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/decls/FnS.d.ts 2000 undefined Project: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Missing generated file After request PolledWatches:: @@ -556,7 +556,7 @@ FsWatchesRecursive:: /user/username/projects/myproject/random: {} -Info 55 [16:02:16.000] response: +Info 55 [00:02:16.000] response: { "response": { "info": { @@ -604,7 +604,7 @@ Info 55 [16:02:16.000] response: }, "responseRequired": true } -Info 56 [16:02:17.000] request: +Info 56 [00:02:17.000] request: { "command": "rename", "arguments": { @@ -671,7 +671,7 @@ FsWatchesRecursive:: /user/username/projects/myproject/random: {} -Info 57 [16:02:18.000] response: +Info 57 [00:02:18.000] response: { "response": { "info": { @@ -719,7 +719,7 @@ Info 57 [16:02:18.000] response: }, "responseRequired": true } -Info 58 [16:02:19.000] request: +Info 58 [00:02:19.000] request: { "command": "rename", "arguments": { @@ -786,7 +786,7 @@ FsWatchesRecursive:: /user/username/projects/myproject/random: {} -Info 59 [16:02:20.000] response: +Info 59 [00:02:20.000] response: { "response": { "info": { @@ -834,7 +834,7 @@ Info 59 [16:02:20.000] response: }, "responseRequired": true } -Info 60 [16:02:21.000] request: +Info 60 [00:02:21.000] request: { "command": "rename", "arguments": { @@ -901,7 +901,7 @@ FsWatchesRecursive:: /user/username/projects/myproject/random: {} -Info 61 [16:02:22.000] response: +Info 61 [00:02:22.000] response: { "response": { "info": { @@ -949,7 +949,7 @@ Info 61 [16:02:22.000] response: }, "responseRequired": true } -Info 62 [16:02:23.000] request: +Info 62 [00:02:23.000] request: { "command": "rename", "arguments": { @@ -1016,7 +1016,7 @@ FsWatchesRecursive:: /user/username/projects/myproject/random: {} -Info 63 [16:02:24.000] response: +Info 63 [00:02:24.000] response: { "response": { "info": { @@ -1064,7 +1064,7 @@ Info 63 [16:02:24.000] response: }, "responseRequired": true } -Info 64 [16:02:25.000] request: +Info 64 [00:02:25.000] request: { "seq": 0, "type": "request", @@ -1101,18 +1101,18 @@ FsWatchesRecursive:: /user/username/projects/myproject/random: {} -Info 65 [16:02:26.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/random/random.ts 500 undefined WatchType: Closed Script info -Info 66 [16:02:27.000] Project '/user/username/projects/myproject/dependency/tsconfig.json' (Configured) -Info 66 [16:02:28.000] Files (2) +Info 65 [00:02:26.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/random/random.ts 500 undefined WatchType: Closed Script info +Info 66 [00:02:27.000] Project '/user/username/projects/myproject/dependency/tsconfig.json' (Configured) +Info 66 [00:02:28.000] Files (2) -Info 66 [16:02:29.000] ----------------------------------------------- -Info 66 [16:02:30.000] Project '/user/username/projects/myproject/random/tsconfig.json' (Configured) -Info 66 [16:02:31.000] Files (2) +Info 66 [00:02:29.000] ----------------------------------------------- +Info 66 [00:02:30.000] Project '/user/username/projects/myproject/random/tsconfig.json' (Configured) +Info 66 [00:02:31.000] Files (2) -Info 66 [16:02:32.000] ----------------------------------------------- -Info 66 [16:02:33.000] Open files: -Info 66 [16:02:34.000] FileName: /user/username/projects/myproject/dependency/FnS.ts ProjectRootPath: undefined -Info 66 [16:02:35.000] Projects: /user/username/projects/myproject/dependency/tsconfig.json +Info 66 [00:02:32.000] ----------------------------------------------- +Info 66 [00:02:33.000] Open files: +Info 66 [00:02:34.000] FileName: /user/username/projects/myproject/dependency/FnS.ts ProjectRootPath: undefined +Info 66 [00:02:35.000] Projects: /user/username/projects/myproject/dependency/tsconfig.json After request PolledWatches:: @@ -1143,11 +1143,11 @@ FsWatchesRecursive:: /user/username/projects/myproject/random: {} -Info 66 [16:02:36.000] response: +Info 66 [00:02:36.000] response: { "responseRequired": false } -Info 67 [16:02:37.000] request: +Info 67 [00:02:37.000] request: { "seq": 0, "type": "request", @@ -1186,23 +1186,23 @@ FsWatchesRecursive:: /user/username/projects/myproject/random: {} -Info 68 [16:02:38.000] FileWatcher:: Close:: WatchInfo: /user/username/projects/myproject/random/random.ts 500 undefined WatchType: Closed Script info -Info 69 [16:02:39.000] Search path: /user/username/projects/myproject/random -Info 70 [16:02:40.000] For info: /user/username/projects/myproject/random/random.ts :: Config file name: /user/username/projects/myproject/random/tsconfig.json -Info 71 [16:02:41.000] FileWatcher:: Close:: WatchInfo: /user/username/projects/myproject/decls/FnS.d.ts.map 500 undefined WatchType: Closed Script info -Info 72 [16:02:42.000] Project '/user/username/projects/myproject/dependency/tsconfig.json' (Configured) -Info 72 [16:02:43.000] Files (2) +Info 68 [00:02:38.000] FileWatcher:: Close:: WatchInfo: /user/username/projects/myproject/random/random.ts 500 undefined WatchType: Closed Script info +Info 69 [00:02:39.000] Search path: /user/username/projects/myproject/random +Info 70 [00:02:40.000] For info: /user/username/projects/myproject/random/random.ts :: Config file name: /user/username/projects/myproject/random/tsconfig.json +Info 71 [00:02:41.000] FileWatcher:: Close:: WatchInfo: /user/username/projects/myproject/decls/FnS.d.ts.map 500 undefined WatchType: Closed Script info +Info 72 [00:02:42.000] Project '/user/username/projects/myproject/dependency/tsconfig.json' (Configured) +Info 72 [00:02:43.000] Files (2) -Info 72 [16:02:44.000] ----------------------------------------------- -Info 72 [16:02:45.000] Project '/user/username/projects/myproject/random/tsconfig.json' (Configured) -Info 72 [16:02:46.000] Files (2) +Info 72 [00:02:44.000] ----------------------------------------------- +Info 72 [00:02:45.000] Project '/user/username/projects/myproject/random/tsconfig.json' (Configured) +Info 72 [00:02:46.000] Files (2) -Info 72 [16:02:47.000] ----------------------------------------------- -Info 72 [16:02:48.000] Open files: -Info 72 [16:02:49.000] FileName: /user/username/projects/myproject/dependency/FnS.ts ProjectRootPath: undefined -Info 72 [16:02:50.000] Projects: /user/username/projects/myproject/dependency/tsconfig.json -Info 72 [16:02:51.000] FileName: /user/username/projects/myproject/random/random.ts ProjectRootPath: undefined -Info 72 [16:02:52.000] Projects: /user/username/projects/myproject/random/tsconfig.json +Info 72 [00:02:47.000] ----------------------------------------------- +Info 72 [00:02:48.000] Open files: +Info 72 [00:02:49.000] FileName: /user/username/projects/myproject/dependency/FnS.ts ProjectRootPath: undefined +Info 72 [00:02:50.000] Projects: /user/username/projects/myproject/dependency/tsconfig.json +Info 72 [00:02:51.000] FileName: /user/username/projects/myproject/random/random.ts ProjectRootPath: undefined +Info 72 [00:02:52.000] Projects: /user/username/projects/myproject/random/tsconfig.json After request PolledWatches:: @@ -1229,11 +1229,11 @@ FsWatchesRecursive:: /user/username/projects/myproject/random: {} -Info 72 [16:02:53.000] response: +Info 72 [00:02:53.000] response: { "responseRequired": false } -Info 73 [16:02:54.000] request: +Info 73 [00:02:54.000] request: { "seq": 0, "type": "request", @@ -1268,18 +1268,18 @@ FsWatchesRecursive:: /user/username/projects/myproject/random: {} -Info 74 [16:02:55.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/dependency/FnS.ts 500 undefined WatchType: Closed Script info -Info 75 [16:02:56.000] Project '/user/username/projects/myproject/dependency/tsconfig.json' (Configured) -Info 75 [16:02:57.000] Files (2) +Info 74 [00:02:55.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/dependency/FnS.ts 500 undefined WatchType: Closed Script info +Info 75 [00:02:56.000] Project '/user/username/projects/myproject/dependency/tsconfig.json' (Configured) +Info 75 [00:02:57.000] Files (2) -Info 75 [16:02:58.000] ----------------------------------------------- -Info 75 [16:02:59.000] Project '/user/username/projects/myproject/random/tsconfig.json' (Configured) -Info 75 [16:03:00.000] Files (2) +Info 75 [00:02:58.000] ----------------------------------------------- +Info 75 [00:02:59.000] Project '/user/username/projects/myproject/random/tsconfig.json' (Configured) +Info 75 [00:03:00.000] Files (2) -Info 75 [16:03:01.000] ----------------------------------------------- -Info 75 [16:03:02.000] Open files: -Info 75 [16:03:03.000] FileName: /user/username/projects/myproject/random/random.ts ProjectRootPath: undefined -Info 75 [16:03:04.000] Projects: /user/username/projects/myproject/random/tsconfig.json +Info 75 [00:03:01.000] ----------------------------------------------- +Info 75 [00:03:02.000] Open files: +Info 75 [00:03:03.000] FileName: /user/username/projects/myproject/random/random.ts ProjectRootPath: undefined +Info 75 [00:03:04.000] Projects: /user/username/projects/myproject/random/tsconfig.json After request PolledWatches:: @@ -1308,11 +1308,11 @@ FsWatchesRecursive:: /user/username/projects/myproject/random: {} -Info 75 [16:03:05.000] response: +Info 75 [00:03:05.000] response: { "responseRequired": false } -Info 76 [16:03:06.000] request: +Info 76 [00:03:06.000] request: { "seq": 0, "type": "request", @@ -1349,16 +1349,16 @@ FsWatchesRecursive:: /user/username/projects/myproject/random: {} -Info 77 [16:03:07.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/random/random.ts 500 undefined WatchType: Closed Script info -Info 78 [16:03:08.000] Project '/user/username/projects/myproject/dependency/tsconfig.json' (Configured) -Info 78 [16:03:09.000] Files (2) +Info 77 [00:03:07.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/random/random.ts 500 undefined WatchType: Closed Script info +Info 78 [00:03:08.000] Project '/user/username/projects/myproject/dependency/tsconfig.json' (Configured) +Info 78 [00:03:09.000] Files (2) -Info 78 [16:03:10.000] ----------------------------------------------- -Info 78 [16:03:11.000] Project '/user/username/projects/myproject/random/tsconfig.json' (Configured) -Info 78 [16:03:12.000] Files (2) +Info 78 [00:03:10.000] ----------------------------------------------- +Info 78 [00:03:11.000] Project '/user/username/projects/myproject/random/tsconfig.json' (Configured) +Info 78 [00:03:12.000] Files (2) -Info 78 [16:03:13.000] ----------------------------------------------- -Info 78 [16:03:14.000] Open files: +Info 78 [00:03:13.000] ----------------------------------------------- +Info 78 [00:03:14.000] Open files: After request PolledWatches:: @@ -1389,11 +1389,11 @@ FsWatchesRecursive:: /user/username/projects/myproject/random: {} -Info 78 [16:03:15.000] response: +Info 78 [00:03:15.000] response: { "responseRequired": false } -Info 79 [16:03:16.000] request: +Info 79 [00:03:16.000] request: { "seq": 0, "type": "request", @@ -1432,12 +1432,12 @@ FsWatchesRecursive:: /user/username/projects/myproject/random: {} -Info 80 [16:03:17.000] FileWatcher:: Close:: WatchInfo: /user/username/projects/myproject/random/random.ts 500 undefined WatchType: Closed Script info -Info 81 [16:03:18.000] Search path: /user/username/projects/myproject/random -Info 82 [16:03:19.000] For info: /user/username/projects/myproject/random/random.ts :: Config file name: /user/username/projects/myproject/random/tsconfig.json -Info 83 [16:03:20.000] `remove Project:: -Info 84 [16:03:21.000] Project '/user/username/projects/myproject/dependency/tsconfig.json' (Configured) -Info 85 [16:03:22.000] Files (2) +Info 80 [00:03:17.000] FileWatcher:: Close:: WatchInfo: /user/username/projects/myproject/random/random.ts 500 undefined WatchType: Closed Script info +Info 81 [00:03:18.000] Search path: /user/username/projects/myproject/random +Info 82 [00:03:19.000] For info: /user/username/projects/myproject/random/random.ts :: Config file name: /user/username/projects/myproject/random/tsconfig.json +Info 83 [00:03:20.000] `remove Project:: +Info 84 [00:03:21.000] Project '/user/username/projects/myproject/dependency/tsconfig.json' (Configured) +Info 85 [00:03:22.000] Files (2) /a/lib/lib.d.ts /user/username/projects/myproject/dependency/FnS.ts @@ -1447,23 +1447,23 @@ Info 85 [16:03:22.000] Files (2) FnS.ts Matched by default include pattern '**/*' -Info 86 [16:03:23.000] ----------------------------------------------- -Info 87 [16:03:24.000] DirectoryWatcher:: Close:: WatchInfo: /user/username/projects/myproject/dependency 1 undefined Config: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Wild card directory -Info 88 [16:03:25.000] 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 89 [16:03:26.000] FileWatcher:: Close:: WatchInfo: /user/username/projects/myproject/dependency/tsconfig.json 2000 undefined Project: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Config file -Info 90 [16:03:27.000] 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 91 [16:03:28.000] 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 92 [16:03:29.000] DirectoryWatcher:: Close:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Type roots -Info 93 [16:03:30.000] 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 94 [16:03:31.000] 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 95 [16:03:32.000] FileWatcher:: Close:: WatchInfo: /user/username/projects/myproject/dependency/FnS.ts 500 undefined WatchType: Closed Script info -Info 96 [16:03:33.000] Project '/user/username/projects/myproject/random/tsconfig.json' (Configured) -Info 96 [16:03:34.000] Files (2) - -Info 96 [16:03:35.000] ----------------------------------------------- -Info 96 [16:03:36.000] Open files: -Info 96 [16:03:37.000] FileName: /user/username/projects/myproject/random/random.ts ProjectRootPath: undefined -Info 96 [16:03:38.000] Projects: /user/username/projects/myproject/random/tsconfig.json +Info 86 [00:03:23.000] ----------------------------------------------- +Info 87 [00:03:24.000] DirectoryWatcher:: Close:: WatchInfo: /user/username/projects/myproject/dependency 1 undefined Config: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Wild card directory +Info 88 [00:03:25.000] 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 89 [00:03:26.000] FileWatcher:: Close:: WatchInfo: /user/username/projects/myproject/dependency/tsconfig.json 2000 undefined Project: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Config file +Info 90 [00:03:27.000] 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 91 [00:03:28.000] 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 92 [00:03:29.000] DirectoryWatcher:: Close:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Type roots +Info 93 [00:03:30.000] 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 94 [00:03:31.000] 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 95 [00:03:32.000] FileWatcher:: Close:: WatchInfo: /user/username/projects/myproject/dependency/FnS.ts 500 undefined WatchType: Closed Script info +Info 96 [00:03:33.000] Project '/user/username/projects/myproject/random/tsconfig.json' (Configured) +Info 96 [00:03:34.000] Files (2) + +Info 96 [00:03:35.000] ----------------------------------------------- +Info 96 [00:03:36.000] Open files: +Info 96 [00:03:37.000] FileName: /user/username/projects/myproject/random/random.ts ProjectRootPath: undefined +Info 96 [00:03:38.000] Projects: /user/username/projects/myproject/random/tsconfig.json After request PolledWatches:: @@ -1482,7 +1482,7 @@ FsWatchesRecursive:: /user/username/projects/myproject/random: {} -Info 96 [16:03:39.000] response: +Info 96 [00:03:39.000] response: { "responseRequired": false } \ No newline at end of file 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 e0a0de5a8f60a..e0ebde7a96242 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 @@ -1,5 +1,5 @@ -Info 0 [16:01:04.000] Provided types map file "/a/lib/typesMap.json" doesn't exist -Info 1 [16:01:05.000] request: +Info 0 [00:01:04.000] Provided types map file "/a/lib/typesMap.json" doesn't exist +Info 1 [00:01:05.000] request: { "seq": 0, "type": "request", @@ -192,11 +192,11 @@ FsWatches:: FsWatchesRecursive:: -Info 2 [16:01:06.000] Search path: /user/username/projects/myproject/dependency -Info 3 [16:01:07.000] For info: /user/username/projects/myproject/dependency/FnS.ts :: Config file name: /user/username/projects/myproject/dependency/tsconfig.json -Info 4 [16:01:08.000] Creating configuration project /user/username/projects/myproject/dependency/tsconfig.json -Info 5 [16:01:09.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/dependency/tsconfig.json 2000 undefined Project: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Config file -Info 6 [16:01:10.000] Config: /user/username/projects/myproject/dependency/tsconfig.json : { +Info 2 [00:01:06.000] Search path: /user/username/projects/myproject/dependency +Info 3 [00:01:07.000] For info: /user/username/projects/myproject/dependency/FnS.ts :: Config file name: /user/username/projects/myproject/dependency/tsconfig.json +Info 4 [00:01:08.000] Creating configuration project /user/username/projects/myproject/dependency/tsconfig.json +Info 5 [00:01:09.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/dependency/tsconfig.json 2000 undefined Project: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Config file +Info 6 [00:01:10.000] Config: /user/username/projects/myproject/dependency/tsconfig.json : { "rootNames": [ "/user/username/projects/myproject/dependency/FnS.ts" ], @@ -207,18 +207,18 @@ Info 6 [16:01:10.000] Config: /user/username/projects/myproject/dependency/ts "configFilePath": "/user/username/projects/myproject/dependency/tsconfig.json" } } -Info 7 [16:01:11.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/dependency 1 undefined Config: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Wild card directory -Info 8 [16:01:12.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/dependency 1 undefined Config: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Wild card directory -Info 9 [16:01:13.000] Plugins were requested but not running in environment that supports 'require'. Nothing will be loaded -Info 10 [16:01:14.000] Starting updateGraphWorker: Project: /user/username/projects/myproject/dependency/tsconfig.json -Info 11 [16:01:15.000] FileWatcher:: Added:: WatchInfo: /a/lib/lib.d.ts 500 undefined WatchType: Closed Script info -Info 12 [16:01:16.000] 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 13 [16:01:17.000] 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 14 [16:01:18.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Type roots -Info 15 [16:01:19.000] 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 16 [16:01:20.000] Finishing updateGraphWorker: Project: /user/username/projects/myproject/dependency/tsconfig.json Version: 1 structureChanged: true structureIsReused:: Not Elapsed:: *ms -Info 17 [16:01:21.000] Project '/user/username/projects/myproject/dependency/tsconfig.json' (Configured) -Info 18 [16:01:22.000] Files (2) +Info 7 [00:01:11.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/dependency 1 undefined Config: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Wild card directory +Info 8 [00:01:12.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/dependency 1 undefined Config: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Wild card directory +Info 9 [00:01:13.000] Plugins were requested but not running in environment that supports 'require'. Nothing will be loaded +Info 10 [00:01:14.000] Starting updateGraphWorker: Project: /user/username/projects/myproject/dependency/tsconfig.json +Info 11 [00:01:15.000] FileWatcher:: Added:: WatchInfo: /a/lib/lib.d.ts 500 undefined WatchType: Closed Script info +Info 12 [00:01:16.000] 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 13 [00:01:17.000] 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 14 [00:01:18.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Type roots +Info 15 [00:01:19.000] 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 16 [00:01:20.000] Finishing updateGraphWorker: Project: /user/username/projects/myproject/dependency/tsconfig.json Version: 1 structureChanged: true structureIsReused:: Not Elapsed:: *ms +Info 17 [00:01:21.000] Project '/user/username/projects/myproject/dependency/tsconfig.json' (Configured) +Info 18 [00:01:22.000] Files (2) /a/lib/lib.d.ts /user/username/projects/myproject/dependency/FnS.ts @@ -228,16 +228,16 @@ Info 18 [16:01:22.000] Files (2) FnS.ts Matched by default include pattern '**/*' -Info 19 [16:01:23.000] ----------------------------------------------- -Info 20 [16:01:24.000] Search path: /user/username/projects/myproject/dependency -Info 21 [16:01:25.000] For info: /user/username/projects/myproject/dependency/tsconfig.json :: No config files found. -Info 22 [16:01:26.000] Project '/user/username/projects/myproject/dependency/tsconfig.json' (Configured) -Info 22 [16:01:27.000] Files (2) +Info 19 [00:01:23.000] ----------------------------------------------- +Info 20 [00:01:24.000] Search path: /user/username/projects/myproject/dependency +Info 21 [00:01:25.000] For info: /user/username/projects/myproject/dependency/tsconfig.json :: No config files found. +Info 22 [00:01:26.000] Project '/user/username/projects/myproject/dependency/tsconfig.json' (Configured) +Info 22 [00:01:27.000] Files (2) -Info 22 [16:01:28.000] ----------------------------------------------- -Info 22 [16:01:29.000] Open files: -Info 22 [16:01:30.000] FileName: /user/username/projects/myproject/dependency/FnS.ts ProjectRootPath: undefined -Info 22 [16:01:31.000] Projects: /user/username/projects/myproject/dependency/tsconfig.json +Info 22 [00:01:28.000] ----------------------------------------------- +Info 22 [00:01:29.000] Open files: +Info 22 [00:01:30.000] FileName: /user/username/projects/myproject/dependency/FnS.ts ProjectRootPath: undefined +Info 22 [00:01:31.000] Projects: /user/username/projects/myproject/dependency/tsconfig.json After request PolledWatches:: @@ -256,11 +256,11 @@ FsWatchesRecursive:: /user/username/projects/myproject/dependency: {} -Info 22 [16:01:32.000] response: +Info 22 [00:01:32.000] response: { "responseRequired": false } -Info 23 [16:01:33.000] request: +Info 23 [00:01:33.000] request: { "seq": 0, "type": "request", @@ -287,11 +287,11 @@ FsWatchesRecursive:: /user/username/projects/myproject/dependency: {} -Info 24 [16:01:34.000] Search path: /user/username/projects/myproject/random -Info 25 [16:01:35.000] For info: /user/username/projects/myproject/random/random.ts :: Config file name: /user/username/projects/myproject/random/tsconfig.json -Info 26 [16:01:36.000] Creating configuration project /user/username/projects/myproject/random/tsconfig.json -Info 27 [16:01:37.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/random/tsconfig.json 2000 undefined Project: /user/username/projects/myproject/random/tsconfig.json WatchType: Config file -Info 28 [16:01:38.000] Config: /user/username/projects/myproject/random/tsconfig.json : { +Info 24 [00:01:34.000] Search path: /user/username/projects/myproject/random +Info 25 [00:01:35.000] For info: /user/username/projects/myproject/random/random.ts :: Config file name: /user/username/projects/myproject/random/tsconfig.json +Info 26 [00:01:36.000] Creating configuration project /user/username/projects/myproject/random/tsconfig.json +Info 27 [00:01:37.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/random/tsconfig.json 2000 undefined Project: /user/username/projects/myproject/random/tsconfig.json WatchType: Config file +Info 28 [00:01:38.000] Config: /user/username/projects/myproject/random/tsconfig.json : { "rootNames": [ "/user/username/projects/myproject/random/random.ts" ], @@ -299,17 +299,17 @@ Info 28 [16:01:38.000] Config: /user/username/projects/myproject/random/tsconf "configFilePath": "/user/username/projects/myproject/random/tsconfig.json" } } -Info 29 [16:01:39.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/random 1 undefined Config: /user/username/projects/myproject/random/tsconfig.json WatchType: Wild card directory -Info 30 [16:01:40.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/random 1 undefined Config: /user/username/projects/myproject/random/tsconfig.json WatchType: Wild card directory -Info 31 [16:01:41.000] Plugins were requested but not running in environment that supports 'require'. Nothing will be loaded -Info 32 [16:01:42.000] Starting updateGraphWorker: Project: /user/username/projects/myproject/random/tsconfig.json -Info 33 [16:01:43.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/random/node_modules/@types 1 undefined Project: /user/username/projects/myproject/random/tsconfig.json WatchType: Type roots -Info 34 [16:01:44.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/random/node_modules/@types 1 undefined Project: /user/username/projects/myproject/random/tsconfig.json WatchType: Type roots -Info 35 [16:01:45.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/random/tsconfig.json WatchType: Type roots -Info 36 [16:01:46.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/random/tsconfig.json WatchType: Type roots -Info 37 [16:01:47.000] Finishing updateGraphWorker: Project: /user/username/projects/myproject/random/tsconfig.json Version: 1 structureChanged: true structureIsReused:: Not Elapsed:: *ms -Info 38 [16:01:48.000] Project '/user/username/projects/myproject/random/tsconfig.json' (Configured) -Info 39 [16:01:49.000] Files (2) +Info 29 [00:01:39.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/random 1 undefined Config: /user/username/projects/myproject/random/tsconfig.json WatchType: Wild card directory +Info 30 [00:01:40.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/random 1 undefined Config: /user/username/projects/myproject/random/tsconfig.json WatchType: Wild card directory +Info 31 [00:01:41.000] Plugins were requested but not running in environment that supports 'require'. Nothing will be loaded +Info 32 [00:01:42.000] Starting updateGraphWorker: Project: /user/username/projects/myproject/random/tsconfig.json +Info 33 [00:01:43.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/random/node_modules/@types 1 undefined Project: /user/username/projects/myproject/random/tsconfig.json WatchType: Type roots +Info 34 [00:01:44.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/random/node_modules/@types 1 undefined Project: /user/username/projects/myproject/random/tsconfig.json WatchType: Type roots +Info 35 [00:01:45.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/random/tsconfig.json WatchType: Type roots +Info 36 [00:01:46.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/random/tsconfig.json WatchType: Type roots +Info 37 [00:01:47.000] Finishing updateGraphWorker: Project: /user/username/projects/myproject/random/tsconfig.json Version: 1 structureChanged: true structureIsReused:: Not Elapsed:: *ms +Info 38 [00:01:48.000] Project '/user/username/projects/myproject/random/tsconfig.json' (Configured) +Info 39 [00:01:49.000] Files (2) /a/lib/lib.d.ts /user/username/projects/myproject/random/random.ts @@ -319,20 +319,20 @@ Info 39 [16:01:49.000] Files (2) random.ts Matched by default include pattern '**/*' -Info 40 [16:01:50.000] ----------------------------------------------- -Info 41 [16:01:51.000] Project '/user/username/projects/myproject/dependency/tsconfig.json' (Configured) -Info 41 [16:01:52.000] Files (2) +Info 40 [00:01:50.000] ----------------------------------------------- +Info 41 [00:01:51.000] Project '/user/username/projects/myproject/dependency/tsconfig.json' (Configured) +Info 41 [00:01:52.000] Files (2) -Info 41 [16:01:53.000] ----------------------------------------------- -Info 41 [16:01:54.000] Project '/user/username/projects/myproject/random/tsconfig.json' (Configured) -Info 41 [16:01:55.000] Files (2) +Info 41 [00:01:53.000] ----------------------------------------------- +Info 41 [00:01:54.000] Project '/user/username/projects/myproject/random/tsconfig.json' (Configured) +Info 41 [00:01:55.000] Files (2) -Info 41 [16:01:56.000] ----------------------------------------------- -Info 41 [16:01:57.000] Open files: -Info 41 [16:01:58.000] FileName: /user/username/projects/myproject/dependency/FnS.ts ProjectRootPath: undefined -Info 41 [16:01:59.000] Projects: /user/username/projects/myproject/dependency/tsconfig.json -Info 41 [16:02:00.000] FileName: /user/username/projects/myproject/random/random.ts ProjectRootPath: undefined -Info 41 [16:02:01.000] Projects: /user/username/projects/myproject/random/tsconfig.json +Info 41 [00:01:56.000] ----------------------------------------------- +Info 41 [00:01:57.000] Open files: +Info 41 [00:01:58.000] FileName: /user/username/projects/myproject/dependency/FnS.ts ProjectRootPath: undefined +Info 41 [00:01:59.000] Projects: /user/username/projects/myproject/dependency/tsconfig.json +Info 41 [00:02:00.000] FileName: /user/username/projects/myproject/random/random.ts ProjectRootPath: undefined +Info 41 [00:02:01.000] Projects: /user/username/projects/myproject/random/tsconfig.json After request PolledWatches:: @@ -357,11 +357,11 @@ FsWatchesRecursive:: /user/username/projects/myproject/random: {} -Info 41 [16:02:02.000] response: +Info 41 [00:02:02.000] response: { "responseRequired": false } -Info 42 [16:02:03.000] request: +Info 42 [00:02:03.000] request: { "command": "rename", "arguments": { @@ -396,7 +396,7 @@ FsWatchesRecursive:: /user/username/projects/myproject/random: {} -Info 43 [16:02:04.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/decls/FnS.d.ts 2000 undefined Project: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Missing generated file +Info 43 [00:02:04.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/decls/FnS.d.ts 2000 undefined Project: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Missing generated file After request PolledWatches:: @@ -423,7 +423,7 @@ FsWatchesRecursive:: /user/username/projects/myproject/random: {} -Info 44 [16:02:05.000] response: +Info 44 [00:02:05.000] response: { "response": { "info": { @@ -471,7 +471,7 @@ Info 44 [16:02:05.000] response: }, "responseRequired": true } -Info 45 [16:02:06.000] request: +Info 45 [00:02:06.000] request: { "command": "rename", "arguments": { @@ -534,7 +534,7 @@ FsWatchesRecursive:: /user/username/projects/myproject/random: {} -Info 46 [16:02:07.000] response: +Info 46 [00:02:07.000] response: { "response": { "info": { @@ -582,7 +582,7 @@ Info 46 [16:02:07.000] response: }, "responseRequired": true } -Info 47 [16:02:08.000] request: +Info 47 [00:02:08.000] request: { "command": "rename", "arguments": { @@ -645,7 +645,7 @@ FsWatchesRecursive:: /user/username/projects/myproject/random: {} -Info 48 [16:02:09.000] response: +Info 48 [00:02:09.000] response: { "response": { "info": { @@ -693,7 +693,7 @@ Info 48 [16:02:09.000] response: }, "responseRequired": true } -Info 49 [16:02:10.000] request: +Info 49 [00:02:10.000] request: { "command": "rename", "arguments": { @@ -756,7 +756,7 @@ FsWatchesRecursive:: /user/username/projects/myproject/random: {} -Info 50 [16:02:11.000] response: +Info 50 [00:02:11.000] response: { "response": { "info": { @@ -804,7 +804,7 @@ Info 50 [16:02:11.000] response: }, "responseRequired": true } -Info 51 [16:02:12.000] request: +Info 51 [00:02:12.000] request: { "command": "rename", "arguments": { @@ -867,7 +867,7 @@ FsWatchesRecursive:: /user/username/projects/myproject/random: {} -Info 52 [16:02:13.000] response: +Info 52 [00:02:13.000] response: { "response": { "info": { @@ -915,7 +915,7 @@ Info 52 [16:02:13.000] response: }, "responseRequired": true } -Info 53 [16:02:14.000] request: +Info 53 [00:02:14.000] request: { "seq": 0, "type": "request", @@ -950,18 +950,18 @@ FsWatchesRecursive:: /user/username/projects/myproject/random: {} -Info 54 [16:02:15.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/random/random.ts 500 undefined WatchType: Closed Script info -Info 55 [16:02:16.000] Project '/user/username/projects/myproject/dependency/tsconfig.json' (Configured) -Info 55 [16:02:17.000] Files (2) +Info 54 [00:02:15.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/random/random.ts 500 undefined WatchType: Closed Script info +Info 55 [00:02:16.000] Project '/user/username/projects/myproject/dependency/tsconfig.json' (Configured) +Info 55 [00:02:17.000] Files (2) -Info 55 [16:02:18.000] ----------------------------------------------- -Info 55 [16:02:19.000] Project '/user/username/projects/myproject/random/tsconfig.json' (Configured) -Info 55 [16:02:20.000] Files (2) +Info 55 [00:02:18.000] ----------------------------------------------- +Info 55 [00:02:19.000] Project '/user/username/projects/myproject/random/tsconfig.json' (Configured) +Info 55 [00:02:20.000] Files (2) -Info 55 [16:02:21.000] ----------------------------------------------- -Info 55 [16:02:22.000] Open files: -Info 55 [16:02:23.000] FileName: /user/username/projects/myproject/dependency/FnS.ts ProjectRootPath: undefined -Info 55 [16:02:24.000] Projects: /user/username/projects/myproject/dependency/tsconfig.json +Info 55 [00:02:21.000] ----------------------------------------------- +Info 55 [00:02:22.000] Open files: +Info 55 [00:02:23.000] FileName: /user/username/projects/myproject/dependency/FnS.ts ProjectRootPath: undefined +Info 55 [00:02:24.000] Projects: /user/username/projects/myproject/dependency/tsconfig.json After request PolledWatches:: @@ -990,11 +990,11 @@ FsWatchesRecursive:: /user/username/projects/myproject/random: {} -Info 55 [16:02:25.000] response: +Info 55 [00:02:25.000] response: { "responseRequired": false } -Info 56 [16:02:26.000] request: +Info 56 [00:02:26.000] request: { "seq": 0, "type": "request", @@ -1031,22 +1031,22 @@ FsWatchesRecursive:: /user/username/projects/myproject/random: {} -Info 57 [16:02:27.000] FileWatcher:: Close:: WatchInfo: /user/username/projects/myproject/random/random.ts 500 undefined WatchType: Closed Script info -Info 58 [16:02:28.000] Search path: /user/username/projects/myproject/random -Info 59 [16:02:29.000] For info: /user/username/projects/myproject/random/random.ts :: Config file name: /user/username/projects/myproject/random/tsconfig.json -Info 60 [16:02:30.000] Project '/user/username/projects/myproject/dependency/tsconfig.json' (Configured) -Info 60 [16:02:31.000] Files (2) +Info 57 [00:02:27.000] FileWatcher:: Close:: WatchInfo: /user/username/projects/myproject/random/random.ts 500 undefined WatchType: Closed Script info +Info 58 [00:02:28.000] Search path: /user/username/projects/myproject/random +Info 59 [00:02:29.000] For info: /user/username/projects/myproject/random/random.ts :: Config file name: /user/username/projects/myproject/random/tsconfig.json +Info 60 [00:02:30.000] Project '/user/username/projects/myproject/dependency/tsconfig.json' (Configured) +Info 60 [00:02:31.000] Files (2) -Info 60 [16:02:32.000] ----------------------------------------------- -Info 60 [16:02:33.000] Project '/user/username/projects/myproject/random/tsconfig.json' (Configured) -Info 60 [16:02:34.000] Files (2) +Info 60 [00:02:32.000] ----------------------------------------------- +Info 60 [00:02:33.000] Project '/user/username/projects/myproject/random/tsconfig.json' (Configured) +Info 60 [00:02:34.000] Files (2) -Info 60 [16:02:35.000] ----------------------------------------------- -Info 60 [16:02:36.000] Open files: -Info 60 [16:02:37.000] FileName: /user/username/projects/myproject/dependency/FnS.ts ProjectRootPath: undefined -Info 60 [16:02:38.000] Projects: /user/username/projects/myproject/dependency/tsconfig.json -Info 60 [16:02:39.000] FileName: /user/username/projects/myproject/random/random.ts ProjectRootPath: undefined -Info 60 [16:02:40.000] Projects: /user/username/projects/myproject/random/tsconfig.json +Info 60 [00:02:35.000] ----------------------------------------------- +Info 60 [00:02:36.000] Open files: +Info 60 [00:02:37.000] FileName: /user/username/projects/myproject/dependency/FnS.ts ProjectRootPath: undefined +Info 60 [00:02:38.000] Projects: /user/username/projects/myproject/dependency/tsconfig.json +Info 60 [00:02:39.000] FileName: /user/username/projects/myproject/random/random.ts ProjectRootPath: undefined +Info 60 [00:02:40.000] Projects: /user/username/projects/myproject/random/tsconfig.json After request PolledWatches:: @@ -1073,11 +1073,11 @@ FsWatchesRecursive:: /user/username/projects/myproject/random: {} -Info 60 [16:02:41.000] response: +Info 60 [00:02:41.000] response: { "responseRequired": false } -Info 61 [16:02:42.000] request: +Info 61 [00:02:42.000] request: { "seq": 0, "type": "request", @@ -1112,18 +1112,18 @@ FsWatchesRecursive:: /user/username/projects/myproject/random: {} -Info 62 [16:02:43.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/dependency/FnS.ts 500 undefined WatchType: Closed Script info -Info 63 [16:02:44.000] Project '/user/username/projects/myproject/dependency/tsconfig.json' (Configured) -Info 63 [16:02:45.000] Files (2) +Info 62 [00:02:43.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/dependency/FnS.ts 500 undefined WatchType: Closed Script info +Info 63 [00:02:44.000] Project '/user/username/projects/myproject/dependency/tsconfig.json' (Configured) +Info 63 [00:02:45.000] Files (2) -Info 63 [16:02:46.000] ----------------------------------------------- -Info 63 [16:02:47.000] Project '/user/username/projects/myproject/random/tsconfig.json' (Configured) -Info 63 [16:02:48.000] Files (2) +Info 63 [00:02:46.000] ----------------------------------------------- +Info 63 [00:02:47.000] Project '/user/username/projects/myproject/random/tsconfig.json' (Configured) +Info 63 [00:02:48.000] Files (2) -Info 63 [16:02:49.000] ----------------------------------------------- -Info 63 [16:02:50.000] Open files: -Info 63 [16:02:51.000] FileName: /user/username/projects/myproject/random/random.ts ProjectRootPath: undefined -Info 63 [16:02:52.000] Projects: /user/username/projects/myproject/random/tsconfig.json +Info 63 [00:02:49.000] ----------------------------------------------- +Info 63 [00:02:50.000] Open files: +Info 63 [00:02:51.000] FileName: /user/username/projects/myproject/random/random.ts ProjectRootPath: undefined +Info 63 [00:02:52.000] Projects: /user/username/projects/myproject/random/tsconfig.json After request PolledWatches:: @@ -1152,11 +1152,11 @@ FsWatchesRecursive:: /user/username/projects/myproject/random: {} -Info 63 [16:02:53.000] response: +Info 63 [00:02:53.000] response: { "responseRequired": false } -Info 64 [16:02:54.000] request: +Info 64 [00:02:54.000] request: { "seq": 0, "type": "request", @@ -1193,16 +1193,16 @@ FsWatchesRecursive:: /user/username/projects/myproject/random: {} -Info 65 [16:02:55.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/random/random.ts 500 undefined WatchType: Closed Script info -Info 66 [16:02:56.000] Project '/user/username/projects/myproject/dependency/tsconfig.json' (Configured) -Info 66 [16:02:57.000] Files (2) +Info 65 [00:02:55.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/random/random.ts 500 undefined WatchType: Closed Script info +Info 66 [00:02:56.000] Project '/user/username/projects/myproject/dependency/tsconfig.json' (Configured) +Info 66 [00:02:57.000] Files (2) -Info 66 [16:02:58.000] ----------------------------------------------- -Info 66 [16:02:59.000] Project '/user/username/projects/myproject/random/tsconfig.json' (Configured) -Info 66 [16:03:00.000] Files (2) +Info 66 [00:02:58.000] ----------------------------------------------- +Info 66 [00:02:59.000] Project '/user/username/projects/myproject/random/tsconfig.json' (Configured) +Info 66 [00:03:00.000] Files (2) -Info 66 [16:03:01.000] ----------------------------------------------- -Info 66 [16:03:02.000] Open files: +Info 66 [00:03:01.000] ----------------------------------------------- +Info 66 [00:03:02.000] Open files: After request PolledWatches:: @@ -1233,11 +1233,11 @@ FsWatchesRecursive:: /user/username/projects/myproject/random: {} -Info 66 [16:03:03.000] response: +Info 66 [00:03:03.000] response: { "responseRequired": false } -Info 67 [16:03:04.000] request: +Info 67 [00:03:04.000] request: { "seq": 0, "type": "request", @@ -1276,12 +1276,12 @@ FsWatchesRecursive:: /user/username/projects/myproject/random: {} -Info 68 [16:03:05.000] FileWatcher:: Close:: WatchInfo: /user/username/projects/myproject/random/random.ts 500 undefined WatchType: Closed Script info -Info 69 [16:03:06.000] Search path: /user/username/projects/myproject/random -Info 70 [16:03:07.000] For info: /user/username/projects/myproject/random/random.ts :: Config file name: /user/username/projects/myproject/random/tsconfig.json -Info 71 [16:03:08.000] `remove Project:: -Info 72 [16:03:09.000] Project '/user/username/projects/myproject/dependency/tsconfig.json' (Configured) -Info 73 [16:03:10.000] Files (2) +Info 68 [00:03:05.000] FileWatcher:: Close:: WatchInfo: /user/username/projects/myproject/random/random.ts 500 undefined WatchType: Closed Script info +Info 69 [00:03:06.000] Search path: /user/username/projects/myproject/random +Info 70 [00:03:07.000] For info: /user/username/projects/myproject/random/random.ts :: Config file name: /user/username/projects/myproject/random/tsconfig.json +Info 71 [00:03:08.000] `remove Project:: +Info 72 [00:03:09.000] Project '/user/username/projects/myproject/dependency/tsconfig.json' (Configured) +Info 73 [00:03:10.000] Files (2) /a/lib/lib.d.ts /user/username/projects/myproject/dependency/FnS.ts @@ -1291,23 +1291,23 @@ Info 73 [16:03:10.000] Files (2) FnS.ts Matched by default include pattern '**/*' -Info 74 [16:03:11.000] ----------------------------------------------- -Info 75 [16:03:12.000] DirectoryWatcher:: Close:: WatchInfo: /user/username/projects/myproject/dependency 1 undefined Config: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Wild card directory -Info 76 [16:03:13.000] 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 77 [16:03:14.000] FileWatcher:: Close:: WatchInfo: /user/username/projects/myproject/dependency/tsconfig.json 2000 undefined Project: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Config file -Info 78 [16:03:15.000] 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 79 [16:03:16.000] 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 80 [16:03:17.000] DirectoryWatcher:: Close:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Type roots -Info 81 [16:03:18.000] 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 82 [16:03:19.000] 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 83 [16:03:20.000] FileWatcher:: Close:: WatchInfo: /user/username/projects/myproject/dependency/FnS.ts 500 undefined WatchType: Closed Script info -Info 84 [16:03:21.000] Project '/user/username/projects/myproject/random/tsconfig.json' (Configured) -Info 84 [16:03:22.000] Files (2) - -Info 84 [16:03:23.000] ----------------------------------------------- -Info 84 [16:03:24.000] Open files: -Info 84 [16:03:25.000] FileName: /user/username/projects/myproject/random/random.ts ProjectRootPath: undefined -Info 84 [16:03:26.000] Projects: /user/username/projects/myproject/random/tsconfig.json +Info 74 [00:03:11.000] ----------------------------------------------- +Info 75 [00:03:12.000] DirectoryWatcher:: Close:: WatchInfo: /user/username/projects/myproject/dependency 1 undefined Config: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Wild card directory +Info 76 [00:03:13.000] 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 77 [00:03:14.000] FileWatcher:: Close:: WatchInfo: /user/username/projects/myproject/dependency/tsconfig.json 2000 undefined Project: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Config file +Info 78 [00:03:15.000] 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 79 [00:03:16.000] 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 80 [00:03:17.000] DirectoryWatcher:: Close:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Type roots +Info 81 [00:03:18.000] 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 82 [00:03:19.000] 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 83 [00:03:20.000] FileWatcher:: Close:: WatchInfo: /user/username/projects/myproject/dependency/FnS.ts 500 undefined WatchType: Closed Script info +Info 84 [00:03:21.000] Project '/user/username/projects/myproject/random/tsconfig.json' (Configured) +Info 84 [00:03:22.000] Files (2) + +Info 84 [00:03:23.000] ----------------------------------------------- +Info 84 [00:03:24.000] Open files: +Info 84 [00:03:25.000] FileName: /user/username/projects/myproject/random/random.ts ProjectRootPath: undefined +Info 84 [00:03:26.000] Projects: /user/username/projects/myproject/random/tsconfig.json After request PolledWatches:: @@ -1326,7 +1326,7 @@ FsWatchesRecursive:: /user/username/projects/myproject/random: {} -Info 84 [16:03:27.000] response: +Info 84 [00:03:27.000] response: { "responseRequired": false } \ No newline at end of file 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 32022d04c45ef..07c9d152d8704 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 @@ -1,5 +1,5 @@ -Info 0 [16:01:03.000] Provided types map file "/a/lib/typesMap.json" doesn't exist -Info 1 [16:01:04.000] request: +Info 0 [00:01:03.000] Provided types map file "/a/lib/typesMap.json" doesn't exist +Info 1 [00:01:04.000] request: { "seq": 0, "type": "request", @@ -200,11 +200,11 @@ FsWatches:: FsWatchesRecursive:: -Info 2 [16:01:05.000] Search path: /user/username/projects/myproject/dependency -Info 3 [16:01:06.000] For info: /user/username/projects/myproject/dependency/FnS.ts :: Config file name: /user/username/projects/myproject/dependency/tsconfig.json -Info 4 [16:01:07.000] Creating configuration project /user/username/projects/myproject/dependency/tsconfig.json -Info 5 [16:01:08.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/dependency/tsconfig.json 2000 undefined Project: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Config file -Info 6 [16:01:09.000] Config: /user/username/projects/myproject/dependency/tsconfig.json : { +Info 2 [00:01:05.000] Search path: /user/username/projects/myproject/dependency +Info 3 [00:01:06.000] For info: /user/username/projects/myproject/dependency/FnS.ts :: Config file name: /user/username/projects/myproject/dependency/tsconfig.json +Info 4 [00:01:07.000] Creating configuration project /user/username/projects/myproject/dependency/tsconfig.json +Info 5 [00:01:08.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/dependency/tsconfig.json 2000 undefined Project: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Config file +Info 6 [00:01:09.000] Config: /user/username/projects/myproject/dependency/tsconfig.json : { "rootNames": [ "/user/username/projects/myproject/dependency/FnS.ts" ], @@ -215,18 +215,18 @@ Info 6 [16:01:09.000] Config: /user/username/projects/myproject/dependency/ts "configFilePath": "/user/username/projects/myproject/dependency/tsconfig.json" } } -Info 7 [16:01:10.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/dependency 1 undefined Config: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Wild card directory -Info 8 [16:01:11.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/dependency 1 undefined Config: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Wild card directory -Info 9 [16:01:12.000] Plugins were requested but not running in environment that supports 'require'. Nothing will be loaded -Info 10 [16:01:13.000] Starting updateGraphWorker: Project: /user/username/projects/myproject/dependency/tsconfig.json -Info 11 [16:01:14.000] FileWatcher:: Added:: WatchInfo: /a/lib/lib.d.ts 500 undefined WatchType: Closed Script info -Info 12 [16:01:15.000] 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 13 [16:01:16.000] 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 14 [16:01:17.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Type roots -Info 15 [16:01:18.000] 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 16 [16:01:19.000] Finishing updateGraphWorker: Project: /user/username/projects/myproject/dependency/tsconfig.json Version: 1 structureChanged: true structureIsReused:: Not Elapsed:: *ms -Info 17 [16:01:20.000] Project '/user/username/projects/myproject/dependency/tsconfig.json' (Configured) -Info 18 [16:01:21.000] Files (2) +Info 7 [00:01:10.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/dependency 1 undefined Config: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Wild card directory +Info 8 [00:01:11.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/dependency 1 undefined Config: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Wild card directory +Info 9 [00:01:12.000] Plugins were requested but not running in environment that supports 'require'. Nothing will be loaded +Info 10 [00:01:13.000] Starting updateGraphWorker: Project: /user/username/projects/myproject/dependency/tsconfig.json +Info 11 [00:01:14.000] FileWatcher:: Added:: WatchInfo: /a/lib/lib.d.ts 500 undefined WatchType: Closed Script info +Info 12 [00:01:15.000] 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 13 [00:01:16.000] 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 14 [00:01:17.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Type roots +Info 15 [00:01:18.000] 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 16 [00:01:19.000] Finishing updateGraphWorker: Project: /user/username/projects/myproject/dependency/tsconfig.json Version: 1 structureChanged: true structureIsReused:: Not Elapsed:: *ms +Info 17 [00:01:20.000] Project '/user/username/projects/myproject/dependency/tsconfig.json' (Configured) +Info 18 [00:01:21.000] Files (2) /a/lib/lib.d.ts /user/username/projects/myproject/dependency/FnS.ts @@ -236,16 +236,16 @@ Info 18 [16:01:21.000] Files (2) FnS.ts Matched by default include pattern '**/*' -Info 19 [16:01:22.000] ----------------------------------------------- -Info 20 [16:01:23.000] Search path: /user/username/projects/myproject/dependency -Info 21 [16:01:24.000] For info: /user/username/projects/myproject/dependency/tsconfig.json :: No config files found. -Info 22 [16:01:25.000] Project '/user/username/projects/myproject/dependency/tsconfig.json' (Configured) -Info 22 [16:01:26.000] Files (2) +Info 19 [00:01:22.000] ----------------------------------------------- +Info 20 [00:01:23.000] Search path: /user/username/projects/myproject/dependency +Info 21 [00:01:24.000] For info: /user/username/projects/myproject/dependency/tsconfig.json :: No config files found. +Info 22 [00:01:25.000] Project '/user/username/projects/myproject/dependency/tsconfig.json' (Configured) +Info 22 [00:01:26.000] Files (2) -Info 22 [16:01:27.000] ----------------------------------------------- -Info 22 [16:01:28.000] Open files: -Info 22 [16:01:29.000] FileName: /user/username/projects/myproject/dependency/FnS.ts ProjectRootPath: undefined -Info 22 [16:01:30.000] Projects: /user/username/projects/myproject/dependency/tsconfig.json +Info 22 [00:01:27.000] ----------------------------------------------- +Info 22 [00:01:28.000] Open files: +Info 22 [00:01:29.000] FileName: /user/username/projects/myproject/dependency/FnS.ts ProjectRootPath: undefined +Info 22 [00:01:30.000] Projects: /user/username/projects/myproject/dependency/tsconfig.json After request PolledWatches:: @@ -264,11 +264,11 @@ FsWatchesRecursive:: /user/username/projects/myproject/dependency: {} -Info 22 [16:01:31.000] response: +Info 22 [00:01:31.000] response: { "responseRequired": false } -Info 23 [16:01:32.000] request: +Info 23 [00:01:32.000] request: { "seq": 0, "type": "request", @@ -295,11 +295,11 @@ FsWatchesRecursive:: /user/username/projects/myproject/dependency: {} -Info 24 [16:01:33.000] Search path: /user/username/projects/myproject/random -Info 25 [16:01:34.000] For info: /user/username/projects/myproject/random/random.ts :: Config file name: /user/username/projects/myproject/random/tsconfig.json -Info 26 [16:01:35.000] Creating configuration project /user/username/projects/myproject/random/tsconfig.json -Info 27 [16:01:36.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/random/tsconfig.json 2000 undefined Project: /user/username/projects/myproject/random/tsconfig.json WatchType: Config file -Info 28 [16:01:37.000] Config: /user/username/projects/myproject/random/tsconfig.json : { +Info 24 [00:01:33.000] Search path: /user/username/projects/myproject/random +Info 25 [00:01:34.000] For info: /user/username/projects/myproject/random/random.ts :: Config file name: /user/username/projects/myproject/random/tsconfig.json +Info 26 [00:01:35.000] Creating configuration project /user/username/projects/myproject/random/tsconfig.json +Info 27 [00:01:36.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/random/tsconfig.json 2000 undefined Project: /user/username/projects/myproject/random/tsconfig.json WatchType: Config file +Info 28 [00:01:37.000] Config: /user/username/projects/myproject/random/tsconfig.json : { "rootNames": [ "/user/username/projects/myproject/random/random.ts" ], @@ -307,17 +307,17 @@ Info 28 [16:01:37.000] Config: /user/username/projects/myproject/random/tsconf "configFilePath": "/user/username/projects/myproject/random/tsconfig.json" } } -Info 29 [16:01:38.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/random 1 undefined Config: /user/username/projects/myproject/random/tsconfig.json WatchType: Wild card directory -Info 30 [16:01:39.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/random 1 undefined Config: /user/username/projects/myproject/random/tsconfig.json WatchType: Wild card directory -Info 31 [16:01:40.000] Plugins were requested but not running in environment that supports 'require'. Nothing will be loaded -Info 32 [16:01:41.000] Starting updateGraphWorker: Project: /user/username/projects/myproject/random/tsconfig.json -Info 33 [16:01:42.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/random/node_modules/@types 1 undefined Project: /user/username/projects/myproject/random/tsconfig.json WatchType: Type roots -Info 34 [16:01:43.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/random/node_modules/@types 1 undefined Project: /user/username/projects/myproject/random/tsconfig.json WatchType: Type roots -Info 35 [16:01:44.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/random/tsconfig.json WatchType: Type roots -Info 36 [16:01:45.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/random/tsconfig.json WatchType: Type roots -Info 37 [16:01:46.000] Finishing updateGraphWorker: Project: /user/username/projects/myproject/random/tsconfig.json Version: 1 structureChanged: true structureIsReused:: Not Elapsed:: *ms -Info 38 [16:01:47.000] Project '/user/username/projects/myproject/random/tsconfig.json' (Configured) -Info 39 [16:01:48.000] Files (2) +Info 29 [00:01:38.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/random 1 undefined Config: /user/username/projects/myproject/random/tsconfig.json WatchType: Wild card directory +Info 30 [00:01:39.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/random 1 undefined Config: /user/username/projects/myproject/random/tsconfig.json WatchType: Wild card directory +Info 31 [00:01:40.000] Plugins were requested but not running in environment that supports 'require'. Nothing will be loaded +Info 32 [00:01:41.000] Starting updateGraphWorker: Project: /user/username/projects/myproject/random/tsconfig.json +Info 33 [00:01:42.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/random/node_modules/@types 1 undefined Project: /user/username/projects/myproject/random/tsconfig.json WatchType: Type roots +Info 34 [00:01:43.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/random/node_modules/@types 1 undefined Project: /user/username/projects/myproject/random/tsconfig.json WatchType: Type roots +Info 35 [00:01:44.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/random/tsconfig.json WatchType: Type roots +Info 36 [00:01:45.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/random/tsconfig.json WatchType: Type roots +Info 37 [00:01:46.000] Finishing updateGraphWorker: Project: /user/username/projects/myproject/random/tsconfig.json Version: 1 structureChanged: true structureIsReused:: Not Elapsed:: *ms +Info 38 [00:01:47.000] Project '/user/username/projects/myproject/random/tsconfig.json' (Configured) +Info 39 [00:01:48.000] Files (2) /a/lib/lib.d.ts /user/username/projects/myproject/random/random.ts @@ -327,20 +327,20 @@ Info 39 [16:01:48.000] Files (2) random.ts Matched by default include pattern '**/*' -Info 40 [16:01:49.000] ----------------------------------------------- -Info 41 [16:01:50.000] Project '/user/username/projects/myproject/dependency/tsconfig.json' (Configured) -Info 41 [16:01:51.000] Files (2) +Info 40 [00:01:49.000] ----------------------------------------------- +Info 41 [00:01:50.000] Project '/user/username/projects/myproject/dependency/tsconfig.json' (Configured) +Info 41 [00:01:51.000] Files (2) -Info 41 [16:01:52.000] ----------------------------------------------- -Info 41 [16:01:53.000] Project '/user/username/projects/myproject/random/tsconfig.json' (Configured) -Info 41 [16:01:54.000] Files (2) +Info 41 [00:01:52.000] ----------------------------------------------- +Info 41 [00:01:53.000] Project '/user/username/projects/myproject/random/tsconfig.json' (Configured) +Info 41 [00:01:54.000] Files (2) -Info 41 [16:01:55.000] ----------------------------------------------- -Info 41 [16:01:56.000] Open files: -Info 41 [16:01:57.000] FileName: /user/username/projects/myproject/dependency/FnS.ts ProjectRootPath: undefined -Info 41 [16:01:58.000] Projects: /user/username/projects/myproject/dependency/tsconfig.json -Info 41 [16:01:59.000] FileName: /user/username/projects/myproject/random/random.ts ProjectRootPath: undefined -Info 41 [16:02:00.000] Projects: /user/username/projects/myproject/random/tsconfig.json +Info 41 [00:01:55.000] ----------------------------------------------- +Info 41 [00:01:56.000] Open files: +Info 41 [00:01:57.000] FileName: /user/username/projects/myproject/dependency/FnS.ts ProjectRootPath: undefined +Info 41 [00:01:58.000] Projects: /user/username/projects/myproject/dependency/tsconfig.json +Info 41 [00:01:59.000] FileName: /user/username/projects/myproject/random/random.ts ProjectRootPath: undefined +Info 41 [00:02:00.000] Projects: /user/username/projects/myproject/random/tsconfig.json After request PolledWatches:: @@ -365,11 +365,11 @@ FsWatchesRecursive:: /user/username/projects/myproject/random: {} -Info 41 [16:02:01.000] response: +Info 41 [00:02:01.000] response: { "responseRequired": false } -Info 42 [16:02:02.000] request: +Info 42 [00:02:02.000] request: { "command": "rename", "arguments": { @@ -404,8 +404,8 @@ FsWatchesRecursive:: /user/username/projects/myproject/random: {} -Info 43 [16:02:03.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/decls/FnS.d.ts 500 undefined WatchType: Closed Script info -Info 44 [16:02:04.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/decls/FnS.d.ts.map 500 undefined WatchType: Closed Script info +Info 43 [00:02:03.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/decls/FnS.d.ts 500 undefined WatchType: Closed Script info +Info 44 [00:02:04.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/decls/FnS.d.ts.map 500 undefined WatchType: Closed Script info After request PolledWatches:: @@ -434,7 +434,7 @@ FsWatchesRecursive:: /user/username/projects/myproject/random: {} -Info 45 [16:02:05.000] response: +Info 45 [00:02:05.000] response: { "response": { "info": { @@ -482,10 +482,10 @@ Info 45 [16:02:05.000] response: }, "responseRequired": true } -Info 46 [16:02:09.000] FileWatcher:: Triggered with /user/username/projects/myproject/decls/FnS.d.ts.map 1:: WatchInfo: /user/username/projects/myproject/decls/FnS.d.ts.map 500 undefined WatchType: Closed Script info -Info 47 [16:02:10.000] Scheduled: /user/username/projects/myproject/dependency/tsconfig.json -Info 48 [16:02:11.000] Scheduled: *ensureProjectForOpenFiles* -Info 49 [16:02:12.000] Elapsed:: *ms FileWatcher:: Triggered with /user/username/projects/myproject/decls/FnS.d.ts.map 1:: WatchInfo: /user/username/projects/myproject/decls/FnS.d.ts.map 500 undefined WatchType: Closed Script info +Info 46 [00:02:09.000] FileWatcher:: Triggered with /user/username/projects/myproject/decls/FnS.d.ts.map 1:: WatchInfo: /user/username/projects/myproject/decls/FnS.d.ts.map 500 undefined WatchType: Closed Script info +Info 47 [00:02:10.000] Scheduled: /user/username/projects/myproject/dependency/tsconfig.json +Info 48 [00:02:11.000] Scheduled: *ensureProjectForOpenFiles* +Info 49 [00:02:12.000] Elapsed:: *ms FileWatcher:: Triggered with /user/username/projects/myproject/decls/FnS.d.ts.map 1:: WatchInfo: /user/username/projects/myproject/decls/FnS.d.ts.map 500 undefined WatchType: Closed Script info Before running timeout callbacks //// [/user/username/projects/myproject/decls/FnS.d.ts.map] {"version":3,"file":"FnS.d.ts","sourceRoot":"","sources":["../dependency/FnS.ts"],"names":[],"mappings":"AAAA,wBAAgB,GAAG,SAAM;AACzB,wBAAgB,GAAG,SAAM;AACzB,wBAAgB,GAAG,SAAM;AACzB,wBAAgB,GAAG,SAAM;AACzB,wBAAgB,GAAG,SAAM;AACzB,eAAO,MAAM,CAAC,KAAK,CAAC"} @@ -517,38 +517,38 @@ FsWatchesRecursive:: /user/username/projects/myproject/random: {} -Info 50 [16:02:13.000] Running: /user/username/projects/myproject/dependency/tsconfig.json -Info 51 [16:02:14.000] Starting updateGraphWorker: Project: /user/username/projects/myproject/dependency/tsconfig.json -Info 52 [16:02:15.000] Finishing updateGraphWorker: Project: /user/username/projects/myproject/dependency/tsconfig.json Version: 2 structureChanged: false structureIsReused:: Not Elapsed:: *ms -Info 53 [16:02:16.000] Running: *ensureProjectForOpenFiles* -Info 54 [16:02:17.000] Before ensureProjectForOpenFiles: -Info 55 [16:02:18.000] Project '/user/username/projects/myproject/dependency/tsconfig.json' (Configured) -Info 55 [16:02:19.000] Files (2) - -Info 55 [16:02:20.000] ----------------------------------------------- -Info 55 [16:02:21.000] Project '/user/username/projects/myproject/random/tsconfig.json' (Configured) -Info 55 [16:02:22.000] Files (2) - -Info 55 [16:02:23.000] ----------------------------------------------- -Info 55 [16:02:24.000] Open files: -Info 55 [16:02:25.000] FileName: /user/username/projects/myproject/dependency/FnS.ts ProjectRootPath: undefined -Info 55 [16:02:26.000] Projects: /user/username/projects/myproject/dependency/tsconfig.json -Info 55 [16:02:27.000] FileName: /user/username/projects/myproject/random/random.ts ProjectRootPath: undefined -Info 55 [16:02:28.000] Projects: /user/username/projects/myproject/random/tsconfig.json -Info 55 [16:02:29.000] After ensureProjectForOpenFiles: -Info 56 [16:02:30.000] Project '/user/username/projects/myproject/dependency/tsconfig.json' (Configured) -Info 56 [16:02:31.000] Files (2) - -Info 56 [16:02:32.000] ----------------------------------------------- -Info 56 [16:02:33.000] Project '/user/username/projects/myproject/random/tsconfig.json' (Configured) -Info 56 [16:02:34.000] Files (2) - -Info 56 [16:02:35.000] ----------------------------------------------- -Info 56 [16:02:36.000] Open files: -Info 56 [16:02:37.000] FileName: /user/username/projects/myproject/dependency/FnS.ts ProjectRootPath: undefined -Info 56 [16:02:38.000] Projects: /user/username/projects/myproject/dependency/tsconfig.json -Info 56 [16:02:39.000] FileName: /user/username/projects/myproject/random/random.ts ProjectRootPath: undefined -Info 56 [16:02:40.000] Projects: /user/username/projects/myproject/random/tsconfig.json +Info 50 [00:02:13.000] Running: /user/username/projects/myproject/dependency/tsconfig.json +Info 51 [00:02:14.000] Starting updateGraphWorker: Project: /user/username/projects/myproject/dependency/tsconfig.json +Info 52 [00:02:15.000] Finishing updateGraphWorker: Project: /user/username/projects/myproject/dependency/tsconfig.json Version: 2 structureChanged: false structureIsReused:: Not Elapsed:: *ms +Info 53 [00:02:16.000] Running: *ensureProjectForOpenFiles* +Info 54 [00:02:17.000] Before ensureProjectForOpenFiles: +Info 55 [00:02:18.000] Project '/user/username/projects/myproject/dependency/tsconfig.json' (Configured) +Info 55 [00:02:19.000] Files (2) + +Info 55 [00:02:20.000] ----------------------------------------------- +Info 55 [00:02:21.000] Project '/user/username/projects/myproject/random/tsconfig.json' (Configured) +Info 55 [00:02:22.000] Files (2) + +Info 55 [00:02:23.000] ----------------------------------------------- +Info 55 [00:02:24.000] Open files: +Info 55 [00:02:25.000] FileName: /user/username/projects/myproject/dependency/FnS.ts ProjectRootPath: undefined +Info 55 [00:02:26.000] Projects: /user/username/projects/myproject/dependency/tsconfig.json +Info 55 [00:02:27.000] FileName: /user/username/projects/myproject/random/random.ts ProjectRootPath: undefined +Info 55 [00:02:28.000] Projects: /user/username/projects/myproject/random/tsconfig.json +Info 55 [00:02:29.000] After ensureProjectForOpenFiles: +Info 56 [00:02:30.000] Project '/user/username/projects/myproject/dependency/tsconfig.json' (Configured) +Info 56 [00:02:31.000] Files (2) + +Info 56 [00:02:32.000] ----------------------------------------------- +Info 56 [00:02:33.000] Project '/user/username/projects/myproject/random/tsconfig.json' (Configured) +Info 56 [00:02:34.000] Files (2) + +Info 56 [00:02:35.000] ----------------------------------------------- +Info 56 [00:02:36.000] Open files: +Info 56 [00:02:37.000] FileName: /user/username/projects/myproject/dependency/FnS.ts ProjectRootPath: undefined +Info 56 [00:02:38.000] Projects: /user/username/projects/myproject/dependency/tsconfig.json +Info 56 [00:02:39.000] FileName: /user/username/projects/myproject/random/random.ts ProjectRootPath: undefined +Info 56 [00:02:40.000] Projects: /user/username/projects/myproject/random/tsconfig.json After running timeout callbacks PolledWatches:: @@ -577,7 +577,7 @@ FsWatchesRecursive:: /user/username/projects/myproject/random: {} -Info 56 [16:02:41.000] request: +Info 56 [00:02:41.000] request: { "command": "rename", "arguments": { @@ -644,7 +644,7 @@ FsWatchesRecursive:: /user/username/projects/myproject/random: {} -Info 57 [16:02:42.000] response: +Info 57 [00:02:42.000] response: { "response": { "info": { @@ -692,7 +692,7 @@ Info 57 [16:02:42.000] response: }, "responseRequired": true } -Info 58 [16:02:43.000] request: +Info 58 [00:02:43.000] request: { "command": "rename", "arguments": { @@ -759,7 +759,7 @@ FsWatchesRecursive:: /user/username/projects/myproject/random: {} -Info 59 [16:02:44.000] response: +Info 59 [00:02:44.000] response: { "response": { "info": { @@ -807,7 +807,7 @@ Info 59 [16:02:44.000] response: }, "responseRequired": true } -Info 60 [16:02:45.000] request: +Info 60 [00:02:45.000] request: { "command": "rename", "arguments": { @@ -874,7 +874,7 @@ FsWatchesRecursive:: /user/username/projects/myproject/random: {} -Info 61 [16:02:46.000] response: +Info 61 [00:02:46.000] response: { "response": { "info": { @@ -922,7 +922,7 @@ Info 61 [16:02:46.000] response: }, "responseRequired": true } -Info 62 [16:02:47.000] request: +Info 62 [00:02:47.000] request: { "command": "rename", "arguments": { @@ -989,7 +989,7 @@ FsWatchesRecursive:: /user/username/projects/myproject/random: {} -Info 63 [16:02:48.000] response: +Info 63 [00:02:48.000] response: { "response": { "info": { @@ -1037,7 +1037,7 @@ Info 63 [16:02:48.000] response: }, "responseRequired": true } -Info 64 [16:02:49.000] request: +Info 64 [00:02:49.000] request: { "command": "rename", "arguments": { @@ -1104,7 +1104,7 @@ FsWatchesRecursive:: /user/username/projects/myproject/random: {} -Info 65 [16:02:50.000] response: +Info 65 [00:02:50.000] response: { "response": { "info": { 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 3b326eb382f3b..b0ee3d5bf0f76 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 @@ -1,5 +1,5 @@ -Info 0 [16:01:03.000] Provided types map file "/a/lib/typesMap.json" doesn't exist -Info 1 [16:01:04.000] request: +Info 0 [00:01:03.000] Provided types map file "/a/lib/typesMap.json" doesn't exist +Info 1 [00:01:04.000] request: { "seq": 0, "type": "request", @@ -200,11 +200,11 @@ FsWatches:: FsWatchesRecursive:: -Info 2 [16:01:05.000] Search path: /user/username/projects/myproject/dependency -Info 3 [16:01:06.000] For info: /user/username/projects/myproject/dependency/FnS.ts :: Config file name: /user/username/projects/myproject/dependency/tsconfig.json -Info 4 [16:01:07.000] Creating configuration project /user/username/projects/myproject/dependency/tsconfig.json -Info 5 [16:01:08.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/dependency/tsconfig.json 2000 undefined Project: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Config file -Info 6 [16:01:09.000] Config: /user/username/projects/myproject/dependency/tsconfig.json : { +Info 2 [00:01:05.000] Search path: /user/username/projects/myproject/dependency +Info 3 [00:01:06.000] For info: /user/username/projects/myproject/dependency/FnS.ts :: Config file name: /user/username/projects/myproject/dependency/tsconfig.json +Info 4 [00:01:07.000] Creating configuration project /user/username/projects/myproject/dependency/tsconfig.json +Info 5 [00:01:08.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/dependency/tsconfig.json 2000 undefined Project: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Config file +Info 6 [00:01:09.000] Config: /user/username/projects/myproject/dependency/tsconfig.json : { "rootNames": [ "/user/username/projects/myproject/dependency/FnS.ts" ], @@ -215,18 +215,18 @@ Info 6 [16:01:09.000] Config: /user/username/projects/myproject/dependency/ts "configFilePath": "/user/username/projects/myproject/dependency/tsconfig.json" } } -Info 7 [16:01:10.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/dependency 1 undefined Config: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Wild card directory -Info 8 [16:01:11.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/dependency 1 undefined Config: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Wild card directory -Info 9 [16:01:12.000] Plugins were requested but not running in environment that supports 'require'. Nothing will be loaded -Info 10 [16:01:13.000] Starting updateGraphWorker: Project: /user/username/projects/myproject/dependency/tsconfig.json -Info 11 [16:01:14.000] FileWatcher:: Added:: WatchInfo: /a/lib/lib.d.ts 500 undefined WatchType: Closed Script info -Info 12 [16:01:15.000] 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 13 [16:01:16.000] 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 14 [16:01:17.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Type roots -Info 15 [16:01:18.000] 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 16 [16:01:19.000] Finishing updateGraphWorker: Project: /user/username/projects/myproject/dependency/tsconfig.json Version: 1 structureChanged: true structureIsReused:: Not Elapsed:: *ms -Info 17 [16:01:20.000] Project '/user/username/projects/myproject/dependency/tsconfig.json' (Configured) -Info 18 [16:01:21.000] Files (2) +Info 7 [00:01:10.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/dependency 1 undefined Config: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Wild card directory +Info 8 [00:01:11.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/dependency 1 undefined Config: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Wild card directory +Info 9 [00:01:12.000] Plugins were requested but not running in environment that supports 'require'. Nothing will be loaded +Info 10 [00:01:13.000] Starting updateGraphWorker: Project: /user/username/projects/myproject/dependency/tsconfig.json +Info 11 [00:01:14.000] FileWatcher:: Added:: WatchInfo: /a/lib/lib.d.ts 500 undefined WatchType: Closed Script info +Info 12 [00:01:15.000] 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 13 [00:01:16.000] 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 14 [00:01:17.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Type roots +Info 15 [00:01:18.000] 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 16 [00:01:19.000] Finishing updateGraphWorker: Project: /user/username/projects/myproject/dependency/tsconfig.json Version: 1 structureChanged: true structureIsReused:: Not Elapsed:: *ms +Info 17 [00:01:20.000] Project '/user/username/projects/myproject/dependency/tsconfig.json' (Configured) +Info 18 [00:01:21.000] Files (2) /a/lib/lib.d.ts /user/username/projects/myproject/dependency/FnS.ts @@ -236,16 +236,16 @@ Info 18 [16:01:21.000] Files (2) FnS.ts Matched by default include pattern '**/*' -Info 19 [16:01:22.000] ----------------------------------------------- -Info 20 [16:01:23.000] Search path: /user/username/projects/myproject/dependency -Info 21 [16:01:24.000] For info: /user/username/projects/myproject/dependency/tsconfig.json :: No config files found. -Info 22 [16:01:25.000] Project '/user/username/projects/myproject/dependency/tsconfig.json' (Configured) -Info 22 [16:01:26.000] Files (2) +Info 19 [00:01:22.000] ----------------------------------------------- +Info 20 [00:01:23.000] Search path: /user/username/projects/myproject/dependency +Info 21 [00:01:24.000] For info: /user/username/projects/myproject/dependency/tsconfig.json :: No config files found. +Info 22 [00:01:25.000] Project '/user/username/projects/myproject/dependency/tsconfig.json' (Configured) +Info 22 [00:01:26.000] Files (2) -Info 22 [16:01:27.000] ----------------------------------------------- -Info 22 [16:01:28.000] Open files: -Info 22 [16:01:29.000] FileName: /user/username/projects/myproject/dependency/FnS.ts ProjectRootPath: undefined -Info 22 [16:01:30.000] Projects: /user/username/projects/myproject/dependency/tsconfig.json +Info 22 [00:01:27.000] ----------------------------------------------- +Info 22 [00:01:28.000] Open files: +Info 22 [00:01:29.000] FileName: /user/username/projects/myproject/dependency/FnS.ts ProjectRootPath: undefined +Info 22 [00:01:30.000] Projects: /user/username/projects/myproject/dependency/tsconfig.json After request PolledWatches:: @@ -264,11 +264,11 @@ FsWatchesRecursive:: /user/username/projects/myproject/dependency: {} -Info 22 [16:01:31.000] response: +Info 22 [00:01:31.000] response: { "responseRequired": false } -Info 23 [16:01:32.000] request: +Info 23 [00:01:32.000] request: { "seq": 0, "type": "request", @@ -295,11 +295,11 @@ FsWatchesRecursive:: /user/username/projects/myproject/dependency: {} -Info 24 [16:01:33.000] Search path: /user/username/projects/myproject/random -Info 25 [16:01:34.000] For info: /user/username/projects/myproject/random/random.ts :: Config file name: /user/username/projects/myproject/random/tsconfig.json -Info 26 [16:01:35.000] Creating configuration project /user/username/projects/myproject/random/tsconfig.json -Info 27 [16:01:36.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/random/tsconfig.json 2000 undefined Project: /user/username/projects/myproject/random/tsconfig.json WatchType: Config file -Info 28 [16:01:37.000] Config: /user/username/projects/myproject/random/tsconfig.json : { +Info 24 [00:01:33.000] Search path: /user/username/projects/myproject/random +Info 25 [00:01:34.000] For info: /user/username/projects/myproject/random/random.ts :: Config file name: /user/username/projects/myproject/random/tsconfig.json +Info 26 [00:01:35.000] Creating configuration project /user/username/projects/myproject/random/tsconfig.json +Info 27 [00:01:36.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/random/tsconfig.json 2000 undefined Project: /user/username/projects/myproject/random/tsconfig.json WatchType: Config file +Info 28 [00:01:37.000] Config: /user/username/projects/myproject/random/tsconfig.json : { "rootNames": [ "/user/username/projects/myproject/random/random.ts" ], @@ -307,17 +307,17 @@ Info 28 [16:01:37.000] Config: /user/username/projects/myproject/random/tsconf "configFilePath": "/user/username/projects/myproject/random/tsconfig.json" } } -Info 29 [16:01:38.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/random 1 undefined Config: /user/username/projects/myproject/random/tsconfig.json WatchType: Wild card directory -Info 30 [16:01:39.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/random 1 undefined Config: /user/username/projects/myproject/random/tsconfig.json WatchType: Wild card directory -Info 31 [16:01:40.000] Plugins were requested but not running in environment that supports 'require'. Nothing will be loaded -Info 32 [16:01:41.000] Starting updateGraphWorker: Project: /user/username/projects/myproject/random/tsconfig.json -Info 33 [16:01:42.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/random/node_modules/@types 1 undefined Project: /user/username/projects/myproject/random/tsconfig.json WatchType: Type roots -Info 34 [16:01:43.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/random/node_modules/@types 1 undefined Project: /user/username/projects/myproject/random/tsconfig.json WatchType: Type roots -Info 35 [16:01:44.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/random/tsconfig.json WatchType: Type roots -Info 36 [16:01:45.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/random/tsconfig.json WatchType: Type roots -Info 37 [16:01:46.000] Finishing updateGraphWorker: Project: /user/username/projects/myproject/random/tsconfig.json Version: 1 structureChanged: true structureIsReused:: Not Elapsed:: *ms -Info 38 [16:01:47.000] Project '/user/username/projects/myproject/random/tsconfig.json' (Configured) -Info 39 [16:01:48.000] Files (2) +Info 29 [00:01:38.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/random 1 undefined Config: /user/username/projects/myproject/random/tsconfig.json WatchType: Wild card directory +Info 30 [00:01:39.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/random 1 undefined Config: /user/username/projects/myproject/random/tsconfig.json WatchType: Wild card directory +Info 31 [00:01:40.000] Plugins were requested but not running in environment that supports 'require'. Nothing will be loaded +Info 32 [00:01:41.000] Starting updateGraphWorker: Project: /user/username/projects/myproject/random/tsconfig.json +Info 33 [00:01:42.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/random/node_modules/@types 1 undefined Project: /user/username/projects/myproject/random/tsconfig.json WatchType: Type roots +Info 34 [00:01:43.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/random/node_modules/@types 1 undefined Project: /user/username/projects/myproject/random/tsconfig.json WatchType: Type roots +Info 35 [00:01:44.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/random/tsconfig.json WatchType: Type roots +Info 36 [00:01:45.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/random/tsconfig.json WatchType: Type roots +Info 37 [00:01:46.000] Finishing updateGraphWorker: Project: /user/username/projects/myproject/random/tsconfig.json Version: 1 structureChanged: true structureIsReused:: Not Elapsed:: *ms +Info 38 [00:01:47.000] Project '/user/username/projects/myproject/random/tsconfig.json' (Configured) +Info 39 [00:01:48.000] Files (2) /a/lib/lib.d.ts /user/username/projects/myproject/random/random.ts @@ -327,20 +327,20 @@ Info 39 [16:01:48.000] Files (2) random.ts Matched by default include pattern '**/*' -Info 40 [16:01:49.000] ----------------------------------------------- -Info 41 [16:01:50.000] Project '/user/username/projects/myproject/dependency/tsconfig.json' (Configured) -Info 41 [16:01:51.000] Files (2) +Info 40 [00:01:49.000] ----------------------------------------------- +Info 41 [00:01:50.000] Project '/user/username/projects/myproject/dependency/tsconfig.json' (Configured) +Info 41 [00:01:51.000] Files (2) -Info 41 [16:01:52.000] ----------------------------------------------- -Info 41 [16:01:53.000] Project '/user/username/projects/myproject/random/tsconfig.json' (Configured) -Info 41 [16:01:54.000] Files (2) +Info 41 [00:01:52.000] ----------------------------------------------- +Info 41 [00:01:53.000] Project '/user/username/projects/myproject/random/tsconfig.json' (Configured) +Info 41 [00:01:54.000] Files (2) -Info 41 [16:01:55.000] ----------------------------------------------- -Info 41 [16:01:56.000] Open files: -Info 41 [16:01:57.000] FileName: /user/username/projects/myproject/dependency/FnS.ts ProjectRootPath: undefined -Info 41 [16:01:58.000] Projects: /user/username/projects/myproject/dependency/tsconfig.json -Info 41 [16:01:59.000] FileName: /user/username/projects/myproject/random/random.ts ProjectRootPath: undefined -Info 41 [16:02:00.000] Projects: /user/username/projects/myproject/random/tsconfig.json +Info 41 [00:01:55.000] ----------------------------------------------- +Info 41 [00:01:56.000] Open files: +Info 41 [00:01:57.000] FileName: /user/username/projects/myproject/dependency/FnS.ts ProjectRootPath: undefined +Info 41 [00:01:58.000] Projects: /user/username/projects/myproject/dependency/tsconfig.json +Info 41 [00:01:59.000] FileName: /user/username/projects/myproject/random/random.ts ProjectRootPath: undefined +Info 41 [00:02:00.000] Projects: /user/username/projects/myproject/random/tsconfig.json After request PolledWatches:: @@ -365,11 +365,11 @@ FsWatchesRecursive:: /user/username/projects/myproject/random: {} -Info 41 [16:02:01.000] response: +Info 41 [00:02:01.000] response: { "responseRequired": false } -Info 42 [16:02:02.000] request: +Info 42 [00:02:02.000] request: { "command": "rename", "arguments": { @@ -404,8 +404,8 @@ FsWatchesRecursive:: /user/username/projects/myproject/random: {} -Info 43 [16:02:03.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/decls/FnS.d.ts 500 undefined WatchType: Closed Script info -Info 44 [16:02:04.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/decls/FnS.d.ts.map 500 undefined WatchType: Closed Script info +Info 43 [00:02:03.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/decls/FnS.d.ts 500 undefined WatchType: Closed Script info +Info 44 [00:02:04.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/decls/FnS.d.ts.map 500 undefined WatchType: Closed Script info After request PolledWatches:: @@ -434,7 +434,7 @@ FsWatchesRecursive:: /user/username/projects/myproject/random: {} -Info 45 [16:02:05.000] response: +Info 45 [00:02:05.000] response: { "response": { "info": { @@ -482,11 +482,11 @@ Info 45 [16:02:05.000] response: }, "responseRequired": true } -Info 46 [16:02:09.000] FileWatcher:: Triggered with /user/username/projects/myproject/decls/FnS.d.ts.map 1:: WatchInfo: /user/username/projects/myproject/decls/FnS.d.ts.map 500 undefined WatchType: Closed Script info -Info 47 [16:02:10.000] Scheduled: /user/username/projects/myproject/dependency/tsconfig.json -Info 48 [16:02:11.000] Scheduled: *ensureProjectForOpenFiles* -Info 49 [16:02:12.000] Elapsed:: *ms FileWatcher:: Triggered with /user/username/projects/myproject/decls/FnS.d.ts.map 1:: WatchInfo: /user/username/projects/myproject/decls/FnS.d.ts.map 500 undefined WatchType: Closed Script info -Info 50 [16:02:13.000] request: +Info 46 [00:02:09.000] FileWatcher:: Triggered with /user/username/projects/myproject/decls/FnS.d.ts.map 1:: WatchInfo: /user/username/projects/myproject/decls/FnS.d.ts.map 500 undefined WatchType: Closed Script info +Info 47 [00:02:10.000] Scheduled: /user/username/projects/myproject/dependency/tsconfig.json +Info 48 [00:02:11.000] Scheduled: *ensureProjectForOpenFiles* +Info 49 [00:02:12.000] Elapsed:: *ms FileWatcher:: Triggered with /user/username/projects/myproject/decls/FnS.d.ts.map 1:: WatchInfo: /user/username/projects/myproject/decls/FnS.d.ts.map 500 undefined WatchType: Closed Script info +Info 50 [00:02:13.000] request: { "command": "rename", "arguments": { @@ -528,8 +528,8 @@ FsWatchesRecursive:: /user/username/projects/myproject/random: {} -Info 51 [16:02:14.000] Starting updateGraphWorker: Project: /user/username/projects/myproject/dependency/tsconfig.json -Info 52 [16:02:15.000] Finishing updateGraphWorker: Project: /user/username/projects/myproject/dependency/tsconfig.json Version: 2 structureChanged: false structureIsReused:: Not Elapsed:: *ms +Info 51 [00:02:14.000] Starting updateGraphWorker: Project: /user/username/projects/myproject/dependency/tsconfig.json +Info 52 [00:02:15.000] Finishing updateGraphWorker: Project: /user/username/projects/myproject/dependency/tsconfig.json Version: 2 structureChanged: false structureIsReused:: Not Elapsed:: *ms After request PolledWatches:: @@ -558,7 +558,7 @@ FsWatchesRecursive:: /user/username/projects/myproject/random: {} -Info 53 [16:02:16.000] response: +Info 53 [00:02:16.000] response: { "response": { "info": { @@ -606,7 +606,7 @@ Info 53 [16:02:16.000] response: }, "responseRequired": true } -Info 54 [16:02:17.000] request: +Info 54 [00:02:17.000] request: { "command": "rename", "arguments": { @@ -673,7 +673,7 @@ FsWatchesRecursive:: /user/username/projects/myproject/random: {} -Info 55 [16:02:18.000] response: +Info 55 [00:02:18.000] response: { "response": { "info": { @@ -721,7 +721,7 @@ Info 55 [16:02:18.000] response: }, "responseRequired": true } -Info 56 [16:02:19.000] request: +Info 56 [00:02:19.000] request: { "command": "rename", "arguments": { @@ -788,7 +788,7 @@ FsWatchesRecursive:: /user/username/projects/myproject/random: {} -Info 57 [16:02:20.000] response: +Info 57 [00:02:20.000] response: { "response": { "info": { @@ -836,7 +836,7 @@ Info 57 [16:02:20.000] response: }, "responseRequired": true } -Info 58 [16:02:21.000] request: +Info 58 [00:02:21.000] request: { "command": "rename", "arguments": { @@ -903,7 +903,7 @@ FsWatchesRecursive:: /user/username/projects/myproject/random: {} -Info 59 [16:02:22.000] response: +Info 59 [00:02:22.000] response: { "response": { "info": { @@ -951,7 +951,7 @@ Info 59 [16:02:22.000] response: }, "responseRequired": true } -Info 60 [16:02:23.000] request: +Info 60 [00:02:23.000] request: { "command": "rename", "arguments": { @@ -1018,7 +1018,7 @@ FsWatchesRecursive:: /user/username/projects/myproject/random: {} -Info 61 [16:02:24.000] response: +Info 61 [00:02:24.000] response: { "response": { "info": { 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 1b67716d35267..897a61360997a 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 @@ -1,5 +1,5 @@ -Info 0 [16:01:04.000] Provided types map file "/a/lib/typesMap.json" doesn't exist -Info 1 [16:01:05.000] request: +Info 0 [00:01:04.000] Provided types map file "/a/lib/typesMap.json" doesn't exist +Info 1 [00:01:05.000] request: { "seq": 0, "type": "request", @@ -197,11 +197,11 @@ FsWatches:: FsWatchesRecursive:: -Info 2 [16:01:06.000] Search path: /user/username/projects/myproject/dependency -Info 3 [16:01:07.000] For info: /user/username/projects/myproject/dependency/FnS.ts :: Config file name: /user/username/projects/myproject/dependency/tsconfig.json -Info 4 [16:01:08.000] Creating configuration project /user/username/projects/myproject/dependency/tsconfig.json -Info 5 [16:01:09.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/dependency/tsconfig.json 2000 undefined Project: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Config file -Info 6 [16:01:10.000] Config: /user/username/projects/myproject/dependency/tsconfig.json : { +Info 2 [00:01:06.000] Search path: /user/username/projects/myproject/dependency +Info 3 [00:01:07.000] For info: /user/username/projects/myproject/dependency/FnS.ts :: Config file name: /user/username/projects/myproject/dependency/tsconfig.json +Info 4 [00:01:08.000] Creating configuration project /user/username/projects/myproject/dependency/tsconfig.json +Info 5 [00:01:09.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/dependency/tsconfig.json 2000 undefined Project: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Config file +Info 6 [00:01:10.000] Config: /user/username/projects/myproject/dependency/tsconfig.json : { "rootNames": [ "/user/username/projects/myproject/dependency/FnS.ts" ], @@ -212,18 +212,18 @@ Info 6 [16:01:10.000] Config: /user/username/projects/myproject/dependency/ts "configFilePath": "/user/username/projects/myproject/dependency/tsconfig.json" } } -Info 7 [16:01:11.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/dependency 1 undefined Config: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Wild card directory -Info 8 [16:01:12.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/dependency 1 undefined Config: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Wild card directory -Info 9 [16:01:13.000] Plugins were requested but not running in environment that supports 'require'. Nothing will be loaded -Info 10 [16:01:14.000] Starting updateGraphWorker: Project: /user/username/projects/myproject/dependency/tsconfig.json -Info 11 [16:01:15.000] FileWatcher:: Added:: WatchInfo: /a/lib/lib.d.ts 500 undefined WatchType: Closed Script info -Info 12 [16:01:16.000] 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 13 [16:01:17.000] 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 14 [16:01:18.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Type roots -Info 15 [16:01:19.000] 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 16 [16:01:20.000] Finishing updateGraphWorker: Project: /user/username/projects/myproject/dependency/tsconfig.json Version: 1 structureChanged: true structureIsReused:: Not Elapsed:: *ms -Info 17 [16:01:21.000] Project '/user/username/projects/myproject/dependency/tsconfig.json' (Configured) -Info 18 [16:01:22.000] Files (2) +Info 7 [00:01:11.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/dependency 1 undefined Config: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Wild card directory +Info 8 [00:01:12.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/dependency 1 undefined Config: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Wild card directory +Info 9 [00:01:13.000] Plugins were requested but not running in environment that supports 'require'. Nothing will be loaded +Info 10 [00:01:14.000] Starting updateGraphWorker: Project: /user/username/projects/myproject/dependency/tsconfig.json +Info 11 [00:01:15.000] FileWatcher:: Added:: WatchInfo: /a/lib/lib.d.ts 500 undefined WatchType: Closed Script info +Info 12 [00:01:16.000] 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 13 [00:01:17.000] 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 14 [00:01:18.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Type roots +Info 15 [00:01:19.000] 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 16 [00:01:20.000] Finishing updateGraphWorker: Project: /user/username/projects/myproject/dependency/tsconfig.json Version: 1 structureChanged: true structureIsReused:: Not Elapsed:: *ms +Info 17 [00:01:21.000] Project '/user/username/projects/myproject/dependency/tsconfig.json' (Configured) +Info 18 [00:01:22.000] Files (2) /a/lib/lib.d.ts /user/username/projects/myproject/dependency/FnS.ts @@ -233,16 +233,16 @@ Info 18 [16:01:22.000] Files (2) FnS.ts Matched by default include pattern '**/*' -Info 19 [16:01:23.000] ----------------------------------------------- -Info 20 [16:01:24.000] Search path: /user/username/projects/myproject/dependency -Info 21 [16:01:25.000] For info: /user/username/projects/myproject/dependency/tsconfig.json :: No config files found. -Info 22 [16:01:26.000] Project '/user/username/projects/myproject/dependency/tsconfig.json' (Configured) -Info 22 [16:01:27.000] Files (2) +Info 19 [00:01:23.000] ----------------------------------------------- +Info 20 [00:01:24.000] Search path: /user/username/projects/myproject/dependency +Info 21 [00:01:25.000] For info: /user/username/projects/myproject/dependency/tsconfig.json :: No config files found. +Info 22 [00:01:26.000] Project '/user/username/projects/myproject/dependency/tsconfig.json' (Configured) +Info 22 [00:01:27.000] Files (2) -Info 22 [16:01:28.000] ----------------------------------------------- -Info 22 [16:01:29.000] Open files: -Info 22 [16:01:30.000] FileName: /user/username/projects/myproject/dependency/FnS.ts ProjectRootPath: undefined -Info 22 [16:01:31.000] Projects: /user/username/projects/myproject/dependency/tsconfig.json +Info 22 [00:01:28.000] ----------------------------------------------- +Info 22 [00:01:29.000] Open files: +Info 22 [00:01:30.000] FileName: /user/username/projects/myproject/dependency/FnS.ts ProjectRootPath: undefined +Info 22 [00:01:31.000] Projects: /user/username/projects/myproject/dependency/tsconfig.json After request PolledWatches:: @@ -261,11 +261,11 @@ FsWatchesRecursive:: /user/username/projects/myproject/dependency: {} -Info 22 [16:01:32.000] response: +Info 22 [00:01:32.000] response: { "responseRequired": false } -Info 23 [16:01:33.000] request: +Info 23 [00:01:33.000] request: { "seq": 0, "type": "request", @@ -292,11 +292,11 @@ FsWatchesRecursive:: /user/username/projects/myproject/dependency: {} -Info 24 [16:01:34.000] Search path: /user/username/projects/myproject/random -Info 25 [16:01:35.000] For info: /user/username/projects/myproject/random/random.ts :: Config file name: /user/username/projects/myproject/random/tsconfig.json -Info 26 [16:01:36.000] Creating configuration project /user/username/projects/myproject/random/tsconfig.json -Info 27 [16:01:37.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/random/tsconfig.json 2000 undefined Project: /user/username/projects/myproject/random/tsconfig.json WatchType: Config file -Info 28 [16:01:38.000] Config: /user/username/projects/myproject/random/tsconfig.json : { +Info 24 [00:01:34.000] Search path: /user/username/projects/myproject/random +Info 25 [00:01:35.000] For info: /user/username/projects/myproject/random/random.ts :: Config file name: /user/username/projects/myproject/random/tsconfig.json +Info 26 [00:01:36.000] Creating configuration project /user/username/projects/myproject/random/tsconfig.json +Info 27 [00:01:37.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/random/tsconfig.json 2000 undefined Project: /user/username/projects/myproject/random/tsconfig.json WatchType: Config file +Info 28 [00:01:38.000] Config: /user/username/projects/myproject/random/tsconfig.json : { "rootNames": [ "/user/username/projects/myproject/random/random.ts" ], @@ -304,17 +304,17 @@ Info 28 [16:01:38.000] Config: /user/username/projects/myproject/random/tsconf "configFilePath": "/user/username/projects/myproject/random/tsconfig.json" } } -Info 29 [16:01:39.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/random 1 undefined Config: /user/username/projects/myproject/random/tsconfig.json WatchType: Wild card directory -Info 30 [16:01:40.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/random 1 undefined Config: /user/username/projects/myproject/random/tsconfig.json WatchType: Wild card directory -Info 31 [16:01:41.000] Plugins were requested but not running in environment that supports 'require'. Nothing will be loaded -Info 32 [16:01:42.000] Starting updateGraphWorker: Project: /user/username/projects/myproject/random/tsconfig.json -Info 33 [16:01:43.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/random/node_modules/@types 1 undefined Project: /user/username/projects/myproject/random/tsconfig.json WatchType: Type roots -Info 34 [16:01:44.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/random/node_modules/@types 1 undefined Project: /user/username/projects/myproject/random/tsconfig.json WatchType: Type roots -Info 35 [16:01:45.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/random/tsconfig.json WatchType: Type roots -Info 36 [16:01:46.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/random/tsconfig.json WatchType: Type roots -Info 37 [16:01:47.000] Finishing updateGraphWorker: Project: /user/username/projects/myproject/random/tsconfig.json Version: 1 structureChanged: true structureIsReused:: Not Elapsed:: *ms -Info 38 [16:01:48.000] Project '/user/username/projects/myproject/random/tsconfig.json' (Configured) -Info 39 [16:01:49.000] Files (2) +Info 29 [00:01:39.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/random 1 undefined Config: /user/username/projects/myproject/random/tsconfig.json WatchType: Wild card directory +Info 30 [00:01:40.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/random 1 undefined Config: /user/username/projects/myproject/random/tsconfig.json WatchType: Wild card directory +Info 31 [00:01:41.000] Plugins were requested but not running in environment that supports 'require'. Nothing will be loaded +Info 32 [00:01:42.000] Starting updateGraphWorker: Project: /user/username/projects/myproject/random/tsconfig.json +Info 33 [00:01:43.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/random/node_modules/@types 1 undefined Project: /user/username/projects/myproject/random/tsconfig.json WatchType: Type roots +Info 34 [00:01:44.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/random/node_modules/@types 1 undefined Project: /user/username/projects/myproject/random/tsconfig.json WatchType: Type roots +Info 35 [00:01:45.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/random/tsconfig.json WatchType: Type roots +Info 36 [00:01:46.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/random/tsconfig.json WatchType: Type roots +Info 37 [00:01:47.000] Finishing updateGraphWorker: Project: /user/username/projects/myproject/random/tsconfig.json Version: 1 structureChanged: true structureIsReused:: Not Elapsed:: *ms +Info 38 [00:01:48.000] Project '/user/username/projects/myproject/random/tsconfig.json' (Configured) +Info 39 [00:01:49.000] Files (2) /a/lib/lib.d.ts /user/username/projects/myproject/random/random.ts @@ -324,20 +324,20 @@ Info 39 [16:01:49.000] Files (2) random.ts Matched by default include pattern '**/*' -Info 40 [16:01:50.000] ----------------------------------------------- -Info 41 [16:01:51.000] Project '/user/username/projects/myproject/dependency/tsconfig.json' (Configured) -Info 41 [16:01:52.000] Files (2) +Info 40 [00:01:50.000] ----------------------------------------------- +Info 41 [00:01:51.000] Project '/user/username/projects/myproject/dependency/tsconfig.json' (Configured) +Info 41 [00:01:52.000] Files (2) -Info 41 [16:01:53.000] ----------------------------------------------- -Info 41 [16:01:54.000] Project '/user/username/projects/myproject/random/tsconfig.json' (Configured) -Info 41 [16:01:55.000] Files (2) +Info 41 [00:01:53.000] ----------------------------------------------- +Info 41 [00:01:54.000] Project '/user/username/projects/myproject/random/tsconfig.json' (Configured) +Info 41 [00:01:55.000] Files (2) -Info 41 [16:01:56.000] ----------------------------------------------- -Info 41 [16:01:57.000] Open files: -Info 41 [16:01:58.000] FileName: /user/username/projects/myproject/dependency/FnS.ts ProjectRootPath: undefined -Info 41 [16:01:59.000] Projects: /user/username/projects/myproject/dependency/tsconfig.json -Info 41 [16:02:00.000] FileName: /user/username/projects/myproject/random/random.ts ProjectRootPath: undefined -Info 41 [16:02:01.000] Projects: /user/username/projects/myproject/random/tsconfig.json +Info 41 [00:01:56.000] ----------------------------------------------- +Info 41 [00:01:57.000] Open files: +Info 41 [00:01:58.000] FileName: /user/username/projects/myproject/dependency/FnS.ts ProjectRootPath: undefined +Info 41 [00:01:59.000] Projects: /user/username/projects/myproject/dependency/tsconfig.json +Info 41 [00:02:00.000] FileName: /user/username/projects/myproject/random/random.ts ProjectRootPath: undefined +Info 41 [00:02:01.000] Projects: /user/username/projects/myproject/random/tsconfig.json After request PolledWatches:: @@ -362,11 +362,11 @@ FsWatchesRecursive:: /user/username/projects/myproject/random: {} -Info 41 [16:02:02.000] response: +Info 41 [00:02:02.000] response: { "responseRequired": false } -Info 42 [16:02:03.000] request: +Info 42 [00:02:03.000] request: { "command": "rename", "arguments": { @@ -401,8 +401,8 @@ FsWatchesRecursive:: /user/username/projects/myproject/random: {} -Info 43 [16:02:04.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/decls/FnS.d.ts 500 undefined WatchType: Closed Script info -Info 44 [16:02:05.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/decls/FnS.d.ts.map 2000 undefined WatchType: Missing source map file +Info 43 [00:02:04.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/decls/FnS.d.ts 500 undefined WatchType: Closed Script info +Info 44 [00:02:05.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/decls/FnS.d.ts.map 2000 undefined WatchType: Missing source map file After request PolledWatches:: @@ -431,7 +431,7 @@ FsWatchesRecursive:: /user/username/projects/myproject/random: {} -Info 45 [16:02:06.000] response: +Info 45 [00:02:06.000] response: { "response": { "info": { @@ -479,12 +479,12 @@ Info 45 [16:02:06.000] response: }, "responseRequired": true } -Info 46 [16:02:09.000] FileWatcher:: Triggered with /user/username/projects/myproject/decls/FnS.d.ts.map 0:: WatchInfo: /user/username/projects/myproject/decls/FnS.d.ts.map 2000 undefined WatchType: Missing source map file -Info 47 [16:02:10.000] Scheduled: /user/username/projects/myproject/dependency/tsconfig.json -Info 48 [16:02:11.000] Scheduled: *ensureProjectForOpenFiles* -Info 49 [16:02:12.000] FileWatcher:: Close:: WatchInfo: /user/username/projects/myproject/decls/FnS.d.ts.map 2000 undefined WatchType: Missing source map file -Info 50 [16:02:13.000] Elapsed:: *ms FileWatcher:: Triggered with /user/username/projects/myproject/decls/FnS.d.ts.map 0:: WatchInfo: /user/username/projects/myproject/decls/FnS.d.ts.map 2000 undefined WatchType: Missing source map file -Info 51 [16:02:14.000] request: +Info 46 [00:02:09.000] FileWatcher:: Triggered with /user/username/projects/myproject/decls/FnS.d.ts.map 0:: WatchInfo: /user/username/projects/myproject/decls/FnS.d.ts.map 2000 undefined WatchType: Missing source map file +Info 47 [00:02:10.000] Scheduled: /user/username/projects/myproject/dependency/tsconfig.json +Info 48 [00:02:11.000] Scheduled: *ensureProjectForOpenFiles* +Info 49 [00:02:12.000] FileWatcher:: Close:: WatchInfo: /user/username/projects/myproject/decls/FnS.d.ts.map 2000 undefined WatchType: Missing source map file +Info 50 [00:02:13.000] Elapsed:: *ms FileWatcher:: Triggered with /user/username/projects/myproject/decls/FnS.d.ts.map 0:: WatchInfo: /user/username/projects/myproject/decls/FnS.d.ts.map 2000 undefined WatchType: Missing source map file +Info 51 [00:02:14.000] request: { "command": "rename", "arguments": { @@ -524,9 +524,9 @@ FsWatchesRecursive:: /user/username/projects/myproject/random: {} -Info 52 [16:02:15.000] Starting updateGraphWorker: Project: /user/username/projects/myproject/dependency/tsconfig.json -Info 53 [16:02:16.000] Finishing updateGraphWorker: Project: /user/username/projects/myproject/dependency/tsconfig.json Version: 2 structureChanged: false structureIsReused:: Not Elapsed:: *ms -Info 54 [16:02:17.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/decls/FnS.d.ts.map 500 undefined WatchType: Closed Script info +Info 52 [00:02:15.000] Starting updateGraphWorker: Project: /user/username/projects/myproject/dependency/tsconfig.json +Info 53 [00:02:16.000] Finishing updateGraphWorker: Project: /user/username/projects/myproject/dependency/tsconfig.json Version: 2 structureChanged: false structureIsReused:: Not Elapsed:: *ms +Info 54 [00:02:17.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/decls/FnS.d.ts.map 500 undefined WatchType: Closed Script info After request PolledWatches:: @@ -555,7 +555,7 @@ FsWatchesRecursive:: /user/username/projects/myproject/random: {} -Info 55 [16:02:18.000] response: +Info 55 [00:02:18.000] response: { "response": { "info": { @@ -603,7 +603,7 @@ Info 55 [16:02:18.000] response: }, "responseRequired": true } -Info 56 [16:02:19.000] request: +Info 56 [00:02:19.000] request: { "command": "rename", "arguments": { @@ -670,7 +670,7 @@ FsWatchesRecursive:: /user/username/projects/myproject/random: {} -Info 57 [16:02:20.000] response: +Info 57 [00:02:20.000] response: { "response": { "info": { @@ -718,7 +718,7 @@ Info 57 [16:02:20.000] response: }, "responseRequired": true } -Info 58 [16:02:21.000] request: +Info 58 [00:02:21.000] request: { "command": "rename", "arguments": { @@ -785,7 +785,7 @@ FsWatchesRecursive:: /user/username/projects/myproject/random: {} -Info 59 [16:02:22.000] response: +Info 59 [00:02:22.000] response: { "response": { "info": { @@ -833,7 +833,7 @@ Info 59 [16:02:22.000] response: }, "responseRequired": true } -Info 60 [16:02:23.000] request: +Info 60 [00:02:23.000] request: { "command": "rename", "arguments": { @@ -900,7 +900,7 @@ FsWatchesRecursive:: /user/username/projects/myproject/random: {} -Info 61 [16:02:24.000] response: +Info 61 [00:02:24.000] response: { "response": { "info": { @@ -948,7 +948,7 @@ Info 61 [16:02:24.000] response: }, "responseRequired": true } -Info 62 [16:02:25.000] request: +Info 62 [00:02:25.000] request: { "command": "rename", "arguments": { @@ -1015,7 +1015,7 @@ FsWatchesRecursive:: /user/username/projects/myproject/random: {} -Info 63 [16:02:26.000] response: +Info 63 [00:02:26.000] response: { "response": { "info": { @@ -1063,7 +1063,7 @@ Info 63 [16:02:26.000] response: }, "responseRequired": true } -Info 64 [16:02:27.000] request: +Info 64 [00:02:27.000] request: { "seq": 0, "type": "request", @@ -1100,18 +1100,18 @@ FsWatchesRecursive:: /user/username/projects/myproject/random: {} -Info 65 [16:02:28.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/random/random.ts 500 undefined WatchType: Closed Script info -Info 66 [16:02:29.000] Project '/user/username/projects/myproject/dependency/tsconfig.json' (Configured) -Info 66 [16:02:30.000] Files (2) +Info 65 [00:02:28.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/random/random.ts 500 undefined WatchType: Closed Script info +Info 66 [00:02:29.000] Project '/user/username/projects/myproject/dependency/tsconfig.json' (Configured) +Info 66 [00:02:30.000] Files (2) -Info 66 [16:02:31.000] ----------------------------------------------- -Info 66 [16:02:32.000] Project '/user/username/projects/myproject/random/tsconfig.json' (Configured) -Info 66 [16:02:33.000] Files (2) +Info 66 [00:02:31.000] ----------------------------------------------- +Info 66 [00:02:32.000] Project '/user/username/projects/myproject/random/tsconfig.json' (Configured) +Info 66 [00:02:33.000] Files (2) -Info 66 [16:02:34.000] ----------------------------------------------- -Info 66 [16:02:35.000] Open files: -Info 66 [16:02:36.000] FileName: /user/username/projects/myproject/dependency/FnS.ts ProjectRootPath: undefined -Info 66 [16:02:37.000] Projects: /user/username/projects/myproject/dependency/tsconfig.json +Info 66 [00:02:34.000] ----------------------------------------------- +Info 66 [00:02:35.000] Open files: +Info 66 [00:02:36.000] FileName: /user/username/projects/myproject/dependency/FnS.ts ProjectRootPath: undefined +Info 66 [00:02:37.000] Projects: /user/username/projects/myproject/dependency/tsconfig.json After request PolledWatches:: @@ -1142,11 +1142,11 @@ FsWatchesRecursive:: /user/username/projects/myproject/random: {} -Info 66 [16:02:38.000] response: +Info 66 [00:02:38.000] response: { "responseRequired": false } -Info 67 [16:02:39.000] request: +Info 67 [00:02:39.000] request: { "seq": 0, "type": "request", @@ -1185,22 +1185,22 @@ FsWatchesRecursive:: /user/username/projects/myproject/random: {} -Info 68 [16:02:40.000] FileWatcher:: Close:: WatchInfo: /user/username/projects/myproject/random/random.ts 500 undefined WatchType: Closed Script info -Info 69 [16:02:41.000] Search path: /user/username/projects/myproject/random -Info 70 [16:02:42.000] For info: /user/username/projects/myproject/random/random.ts :: Config file name: /user/username/projects/myproject/random/tsconfig.json -Info 71 [16:02:43.000] Project '/user/username/projects/myproject/dependency/tsconfig.json' (Configured) -Info 71 [16:02:44.000] Files (2) +Info 68 [00:02:40.000] FileWatcher:: Close:: WatchInfo: /user/username/projects/myproject/random/random.ts 500 undefined WatchType: Closed Script info +Info 69 [00:02:41.000] Search path: /user/username/projects/myproject/random +Info 70 [00:02:42.000] For info: /user/username/projects/myproject/random/random.ts :: Config file name: /user/username/projects/myproject/random/tsconfig.json +Info 71 [00:02:43.000] Project '/user/username/projects/myproject/dependency/tsconfig.json' (Configured) +Info 71 [00:02:44.000] Files (2) -Info 71 [16:02:45.000] ----------------------------------------------- -Info 71 [16:02:46.000] Project '/user/username/projects/myproject/random/tsconfig.json' (Configured) -Info 71 [16:02:47.000] Files (2) +Info 71 [00:02:45.000] ----------------------------------------------- +Info 71 [00:02:46.000] Project '/user/username/projects/myproject/random/tsconfig.json' (Configured) +Info 71 [00:02:47.000] Files (2) -Info 71 [16:02:48.000] ----------------------------------------------- -Info 71 [16:02:49.000] Open files: -Info 71 [16:02:50.000] FileName: /user/username/projects/myproject/dependency/FnS.ts ProjectRootPath: undefined -Info 71 [16:02:51.000] Projects: /user/username/projects/myproject/dependency/tsconfig.json -Info 71 [16:02:52.000] FileName: /user/username/projects/myproject/random/random.ts ProjectRootPath: undefined -Info 71 [16:02:53.000] Projects: /user/username/projects/myproject/random/tsconfig.json +Info 71 [00:02:48.000] ----------------------------------------------- +Info 71 [00:02:49.000] Open files: +Info 71 [00:02:50.000] FileName: /user/username/projects/myproject/dependency/FnS.ts ProjectRootPath: undefined +Info 71 [00:02:51.000] Projects: /user/username/projects/myproject/dependency/tsconfig.json +Info 71 [00:02:52.000] FileName: /user/username/projects/myproject/random/random.ts ProjectRootPath: undefined +Info 71 [00:02:53.000] Projects: /user/username/projects/myproject/random/tsconfig.json After request PolledWatches:: @@ -1229,11 +1229,11 @@ FsWatchesRecursive:: /user/username/projects/myproject/random: {} -Info 71 [16:02:54.000] response: +Info 71 [00:02:54.000] response: { "responseRequired": false } -Info 72 [16:02:55.000] request: +Info 72 [00:02:55.000] request: { "seq": 0, "type": "request", @@ -1270,18 +1270,18 @@ FsWatchesRecursive:: /user/username/projects/myproject/random: {} -Info 73 [16:02:56.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/dependency/FnS.ts 500 undefined WatchType: Closed Script info -Info 74 [16:02:57.000] Project '/user/username/projects/myproject/dependency/tsconfig.json' (Configured) -Info 74 [16:02:58.000] Files (2) +Info 73 [00:02:56.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/dependency/FnS.ts 500 undefined WatchType: Closed Script info +Info 74 [00:02:57.000] Project '/user/username/projects/myproject/dependency/tsconfig.json' (Configured) +Info 74 [00:02:58.000] Files (2) -Info 74 [16:02:59.000] ----------------------------------------------- -Info 74 [16:03:00.000] Project '/user/username/projects/myproject/random/tsconfig.json' (Configured) -Info 74 [16:03:01.000] Files (2) +Info 74 [00:02:59.000] ----------------------------------------------- +Info 74 [00:03:00.000] Project '/user/username/projects/myproject/random/tsconfig.json' (Configured) +Info 74 [00:03:01.000] Files (2) -Info 74 [16:03:02.000] ----------------------------------------------- -Info 74 [16:03:03.000] Open files: -Info 74 [16:03:04.000] FileName: /user/username/projects/myproject/random/random.ts ProjectRootPath: undefined -Info 74 [16:03:05.000] Projects: /user/username/projects/myproject/random/tsconfig.json +Info 74 [00:03:02.000] ----------------------------------------------- +Info 74 [00:03:03.000] Open files: +Info 74 [00:03:04.000] FileName: /user/username/projects/myproject/random/random.ts ProjectRootPath: undefined +Info 74 [00:03:05.000] Projects: /user/username/projects/myproject/random/tsconfig.json After request PolledWatches:: @@ -1312,11 +1312,11 @@ FsWatchesRecursive:: /user/username/projects/myproject/random: {} -Info 74 [16:03:06.000] response: +Info 74 [00:03:06.000] response: { "responseRequired": false } -Info 75 [16:03:07.000] request: +Info 75 [00:03:07.000] request: { "seq": 0, "type": "request", @@ -1355,16 +1355,16 @@ FsWatchesRecursive:: /user/username/projects/myproject/random: {} -Info 76 [16:03:08.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/random/random.ts 500 undefined WatchType: Closed Script info -Info 77 [16:03:09.000] Project '/user/username/projects/myproject/dependency/tsconfig.json' (Configured) -Info 77 [16:03:10.000] Files (2) +Info 76 [00:03:08.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/random/random.ts 500 undefined WatchType: Closed Script info +Info 77 [00:03:09.000] Project '/user/username/projects/myproject/dependency/tsconfig.json' (Configured) +Info 77 [00:03:10.000] Files (2) -Info 77 [16:03:11.000] ----------------------------------------------- -Info 77 [16:03:12.000] Project '/user/username/projects/myproject/random/tsconfig.json' (Configured) -Info 77 [16:03:13.000] Files (2) +Info 77 [00:03:11.000] ----------------------------------------------- +Info 77 [00:03:12.000] Project '/user/username/projects/myproject/random/tsconfig.json' (Configured) +Info 77 [00:03:13.000] Files (2) -Info 77 [16:03:14.000] ----------------------------------------------- -Info 77 [16:03:15.000] Open files: +Info 77 [00:03:14.000] ----------------------------------------------- +Info 77 [00:03:15.000] Open files: After request PolledWatches:: @@ -1397,11 +1397,11 @@ FsWatchesRecursive:: /user/username/projects/myproject/random: {} -Info 77 [16:03:16.000] response: +Info 77 [00:03:16.000] response: { "responseRequired": false } -Info 78 [16:03:17.000] request: +Info 78 [00:03:17.000] request: { "seq": 0, "type": "request", @@ -1442,12 +1442,12 @@ FsWatchesRecursive:: /user/username/projects/myproject/random: {} -Info 79 [16:03:18.000] FileWatcher:: Close:: WatchInfo: /user/username/projects/myproject/random/random.ts 500 undefined WatchType: Closed Script info -Info 80 [16:03:19.000] Search path: /user/username/projects/myproject/random -Info 81 [16:03:20.000] For info: /user/username/projects/myproject/random/random.ts :: Config file name: /user/username/projects/myproject/random/tsconfig.json -Info 82 [16:03:21.000] `remove Project:: -Info 83 [16:03:22.000] Project '/user/username/projects/myproject/dependency/tsconfig.json' (Configured) -Info 84 [16:03:23.000] Files (2) +Info 79 [00:03:18.000] FileWatcher:: Close:: WatchInfo: /user/username/projects/myproject/random/random.ts 500 undefined WatchType: Closed Script info +Info 80 [00:03:19.000] Search path: /user/username/projects/myproject/random +Info 81 [00:03:20.000] For info: /user/username/projects/myproject/random/random.ts :: Config file name: /user/username/projects/myproject/random/tsconfig.json +Info 82 [00:03:21.000] `remove Project:: +Info 83 [00:03:22.000] Project '/user/username/projects/myproject/dependency/tsconfig.json' (Configured) +Info 84 [00:03:23.000] Files (2) /a/lib/lib.d.ts /user/username/projects/myproject/dependency/FnS.ts @@ -1457,24 +1457,24 @@ Info 84 [16:03:23.000] Files (2) FnS.ts Matched by default include pattern '**/*' -Info 85 [16:03:24.000] ----------------------------------------------- -Info 86 [16:03:25.000] DirectoryWatcher:: Close:: WatchInfo: /user/username/projects/myproject/dependency 1 undefined Config: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Wild card directory -Info 87 [16:03:26.000] 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 88 [16:03:27.000] FileWatcher:: Close:: WatchInfo: /user/username/projects/myproject/dependency/tsconfig.json 2000 undefined Project: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Config file -Info 89 [16:03:28.000] 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 90 [16:03:29.000] 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 91 [16:03:30.000] DirectoryWatcher:: Close:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Type roots -Info 92 [16:03:31.000] 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 93 [16:03:32.000] FileWatcher:: Close:: WatchInfo: /user/username/projects/myproject/dependency/FnS.ts 500 undefined WatchType: Closed Script info -Info 94 [16:03:33.000] FileWatcher:: Close:: WatchInfo: /user/username/projects/myproject/decls/FnS.d.ts 500 undefined WatchType: Closed Script info -Info 95 [16:03:34.000] FileWatcher:: Close:: WatchInfo: /user/username/projects/myproject/decls/FnS.d.ts.map 500 undefined WatchType: Closed Script info -Info 96 [16:03:35.000] Project '/user/username/projects/myproject/random/tsconfig.json' (Configured) -Info 96 [16:03:36.000] Files (2) - -Info 96 [16:03:37.000] ----------------------------------------------- -Info 96 [16:03:38.000] Open files: -Info 96 [16:03:39.000] FileName: /user/username/projects/myproject/random/random.ts ProjectRootPath: undefined -Info 96 [16:03:40.000] Projects: /user/username/projects/myproject/random/tsconfig.json +Info 85 [00:03:24.000] ----------------------------------------------- +Info 86 [00:03:25.000] DirectoryWatcher:: Close:: WatchInfo: /user/username/projects/myproject/dependency 1 undefined Config: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Wild card directory +Info 87 [00:03:26.000] 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 88 [00:03:27.000] FileWatcher:: Close:: WatchInfo: /user/username/projects/myproject/dependency/tsconfig.json 2000 undefined Project: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Config file +Info 89 [00:03:28.000] 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 90 [00:03:29.000] 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 91 [00:03:30.000] DirectoryWatcher:: Close:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Type roots +Info 92 [00:03:31.000] 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 93 [00:03:32.000] FileWatcher:: Close:: WatchInfo: /user/username/projects/myproject/dependency/FnS.ts 500 undefined WatchType: Closed Script info +Info 94 [00:03:33.000] FileWatcher:: Close:: WatchInfo: /user/username/projects/myproject/decls/FnS.d.ts 500 undefined WatchType: Closed Script info +Info 95 [00:03:34.000] FileWatcher:: Close:: WatchInfo: /user/username/projects/myproject/decls/FnS.d.ts.map 500 undefined WatchType: Closed Script info +Info 96 [00:03:35.000] Project '/user/username/projects/myproject/random/tsconfig.json' (Configured) +Info 96 [00:03:36.000] Files (2) + +Info 96 [00:03:37.000] ----------------------------------------------- +Info 96 [00:03:38.000] Open files: +Info 96 [00:03:39.000] FileName: /user/username/projects/myproject/random/random.ts ProjectRootPath: undefined +Info 96 [00:03:40.000] Projects: /user/username/projects/myproject/random/tsconfig.json After request PolledWatches:: @@ -1493,7 +1493,7 @@ FsWatchesRecursive:: /user/username/projects/myproject/random: {} -Info 96 [16:03:41.000] response: +Info 96 [00:03:41.000] response: { "responseRequired": false } \ No newline at end of file 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 f30cef96439ec..001bbd12905ac 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 @@ -1,5 +1,5 @@ -Info 0 [16:01:03.000] Provided types map file "/a/lib/typesMap.json" doesn't exist -Info 1 [16:01:04.000] request: +Info 0 [00:01:03.000] Provided types map file "/a/lib/typesMap.json" doesn't exist +Info 1 [00:01:04.000] request: { "seq": 0, "type": "request", @@ -200,11 +200,11 @@ FsWatches:: FsWatchesRecursive:: -Info 2 [16:01:05.000] Search path: /user/username/projects/myproject/dependency -Info 3 [16:01:06.000] For info: /user/username/projects/myproject/dependency/FnS.ts :: Config file name: /user/username/projects/myproject/dependency/tsconfig.json -Info 4 [16:01:07.000] Creating configuration project /user/username/projects/myproject/dependency/tsconfig.json -Info 5 [16:01:08.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/dependency/tsconfig.json 2000 undefined Project: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Config file -Info 6 [16:01:09.000] Config: /user/username/projects/myproject/dependency/tsconfig.json : { +Info 2 [00:01:05.000] Search path: /user/username/projects/myproject/dependency +Info 3 [00:01:06.000] For info: /user/username/projects/myproject/dependency/FnS.ts :: Config file name: /user/username/projects/myproject/dependency/tsconfig.json +Info 4 [00:01:07.000] Creating configuration project /user/username/projects/myproject/dependency/tsconfig.json +Info 5 [00:01:08.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/dependency/tsconfig.json 2000 undefined Project: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Config file +Info 6 [00:01:09.000] Config: /user/username/projects/myproject/dependency/tsconfig.json : { "rootNames": [ "/user/username/projects/myproject/dependency/FnS.ts" ], @@ -215,18 +215,18 @@ Info 6 [16:01:09.000] Config: /user/username/projects/myproject/dependency/ts "configFilePath": "/user/username/projects/myproject/dependency/tsconfig.json" } } -Info 7 [16:01:10.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/dependency 1 undefined Config: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Wild card directory -Info 8 [16:01:11.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/dependency 1 undefined Config: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Wild card directory -Info 9 [16:01:12.000] Plugins were requested but not running in environment that supports 'require'. Nothing will be loaded -Info 10 [16:01:13.000] Starting updateGraphWorker: Project: /user/username/projects/myproject/dependency/tsconfig.json -Info 11 [16:01:14.000] FileWatcher:: Added:: WatchInfo: /a/lib/lib.d.ts 500 undefined WatchType: Closed Script info -Info 12 [16:01:15.000] 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 13 [16:01:16.000] 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 14 [16:01:17.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Type roots -Info 15 [16:01:18.000] 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 16 [16:01:19.000] Finishing updateGraphWorker: Project: /user/username/projects/myproject/dependency/tsconfig.json Version: 1 structureChanged: true structureIsReused:: Not Elapsed:: *ms -Info 17 [16:01:20.000] Project '/user/username/projects/myproject/dependency/tsconfig.json' (Configured) -Info 18 [16:01:21.000] Files (2) +Info 7 [00:01:10.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/dependency 1 undefined Config: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Wild card directory +Info 8 [00:01:11.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/dependency 1 undefined Config: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Wild card directory +Info 9 [00:01:12.000] Plugins were requested but not running in environment that supports 'require'. Nothing will be loaded +Info 10 [00:01:13.000] Starting updateGraphWorker: Project: /user/username/projects/myproject/dependency/tsconfig.json +Info 11 [00:01:14.000] FileWatcher:: Added:: WatchInfo: /a/lib/lib.d.ts 500 undefined WatchType: Closed Script info +Info 12 [00:01:15.000] 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 13 [00:01:16.000] 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 14 [00:01:17.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Type roots +Info 15 [00:01:18.000] 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 16 [00:01:19.000] Finishing updateGraphWorker: Project: /user/username/projects/myproject/dependency/tsconfig.json Version: 1 structureChanged: true structureIsReused:: Not Elapsed:: *ms +Info 17 [00:01:20.000] Project '/user/username/projects/myproject/dependency/tsconfig.json' (Configured) +Info 18 [00:01:21.000] Files (2) /a/lib/lib.d.ts /user/username/projects/myproject/dependency/FnS.ts @@ -236,16 +236,16 @@ Info 18 [16:01:21.000] Files (2) FnS.ts Matched by default include pattern '**/*' -Info 19 [16:01:22.000] ----------------------------------------------- -Info 20 [16:01:23.000] Search path: /user/username/projects/myproject/dependency -Info 21 [16:01:24.000] For info: /user/username/projects/myproject/dependency/tsconfig.json :: No config files found. -Info 22 [16:01:25.000] Project '/user/username/projects/myproject/dependency/tsconfig.json' (Configured) -Info 22 [16:01:26.000] Files (2) +Info 19 [00:01:22.000] ----------------------------------------------- +Info 20 [00:01:23.000] Search path: /user/username/projects/myproject/dependency +Info 21 [00:01:24.000] For info: /user/username/projects/myproject/dependency/tsconfig.json :: No config files found. +Info 22 [00:01:25.000] Project '/user/username/projects/myproject/dependency/tsconfig.json' (Configured) +Info 22 [00:01:26.000] Files (2) -Info 22 [16:01:27.000] ----------------------------------------------- -Info 22 [16:01:28.000] Open files: -Info 22 [16:01:29.000] FileName: /user/username/projects/myproject/dependency/FnS.ts ProjectRootPath: undefined -Info 22 [16:01:30.000] Projects: /user/username/projects/myproject/dependency/tsconfig.json +Info 22 [00:01:27.000] ----------------------------------------------- +Info 22 [00:01:28.000] Open files: +Info 22 [00:01:29.000] FileName: /user/username/projects/myproject/dependency/FnS.ts ProjectRootPath: undefined +Info 22 [00:01:30.000] Projects: /user/username/projects/myproject/dependency/tsconfig.json After request PolledWatches:: @@ -264,11 +264,11 @@ FsWatchesRecursive:: /user/username/projects/myproject/dependency: {} -Info 22 [16:01:31.000] response: +Info 22 [00:01:31.000] response: { "responseRequired": false } -Info 23 [16:01:32.000] request: +Info 23 [00:01:32.000] request: { "seq": 0, "type": "request", @@ -295,11 +295,11 @@ FsWatchesRecursive:: /user/username/projects/myproject/dependency: {} -Info 24 [16:01:33.000] Search path: /user/username/projects/myproject/random -Info 25 [16:01:34.000] For info: /user/username/projects/myproject/random/random.ts :: Config file name: /user/username/projects/myproject/random/tsconfig.json -Info 26 [16:01:35.000] Creating configuration project /user/username/projects/myproject/random/tsconfig.json -Info 27 [16:01:36.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/random/tsconfig.json 2000 undefined Project: /user/username/projects/myproject/random/tsconfig.json WatchType: Config file -Info 28 [16:01:37.000] Config: /user/username/projects/myproject/random/tsconfig.json : { +Info 24 [00:01:33.000] Search path: /user/username/projects/myproject/random +Info 25 [00:01:34.000] For info: /user/username/projects/myproject/random/random.ts :: Config file name: /user/username/projects/myproject/random/tsconfig.json +Info 26 [00:01:35.000] Creating configuration project /user/username/projects/myproject/random/tsconfig.json +Info 27 [00:01:36.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/random/tsconfig.json 2000 undefined Project: /user/username/projects/myproject/random/tsconfig.json WatchType: Config file +Info 28 [00:01:37.000] Config: /user/username/projects/myproject/random/tsconfig.json : { "rootNames": [ "/user/username/projects/myproject/random/random.ts" ], @@ -307,17 +307,17 @@ Info 28 [16:01:37.000] Config: /user/username/projects/myproject/random/tsconf "configFilePath": "/user/username/projects/myproject/random/tsconfig.json" } } -Info 29 [16:01:38.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/random 1 undefined Config: /user/username/projects/myproject/random/tsconfig.json WatchType: Wild card directory -Info 30 [16:01:39.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/random 1 undefined Config: /user/username/projects/myproject/random/tsconfig.json WatchType: Wild card directory -Info 31 [16:01:40.000] Plugins were requested but not running in environment that supports 'require'. Nothing will be loaded -Info 32 [16:01:41.000] Starting updateGraphWorker: Project: /user/username/projects/myproject/random/tsconfig.json -Info 33 [16:01:42.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/random/node_modules/@types 1 undefined Project: /user/username/projects/myproject/random/tsconfig.json WatchType: Type roots -Info 34 [16:01:43.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/random/node_modules/@types 1 undefined Project: /user/username/projects/myproject/random/tsconfig.json WatchType: Type roots -Info 35 [16:01:44.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/random/tsconfig.json WatchType: Type roots -Info 36 [16:01:45.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/random/tsconfig.json WatchType: Type roots -Info 37 [16:01:46.000] Finishing updateGraphWorker: Project: /user/username/projects/myproject/random/tsconfig.json Version: 1 structureChanged: true structureIsReused:: Not Elapsed:: *ms -Info 38 [16:01:47.000] Project '/user/username/projects/myproject/random/tsconfig.json' (Configured) -Info 39 [16:01:48.000] Files (2) +Info 29 [00:01:38.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/random 1 undefined Config: /user/username/projects/myproject/random/tsconfig.json WatchType: Wild card directory +Info 30 [00:01:39.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/random 1 undefined Config: /user/username/projects/myproject/random/tsconfig.json WatchType: Wild card directory +Info 31 [00:01:40.000] Plugins were requested but not running in environment that supports 'require'. Nothing will be loaded +Info 32 [00:01:41.000] Starting updateGraphWorker: Project: /user/username/projects/myproject/random/tsconfig.json +Info 33 [00:01:42.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/random/node_modules/@types 1 undefined Project: /user/username/projects/myproject/random/tsconfig.json WatchType: Type roots +Info 34 [00:01:43.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/random/node_modules/@types 1 undefined Project: /user/username/projects/myproject/random/tsconfig.json WatchType: Type roots +Info 35 [00:01:44.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/random/tsconfig.json WatchType: Type roots +Info 36 [00:01:45.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/random/tsconfig.json WatchType: Type roots +Info 37 [00:01:46.000] Finishing updateGraphWorker: Project: /user/username/projects/myproject/random/tsconfig.json Version: 1 structureChanged: true structureIsReused:: Not Elapsed:: *ms +Info 38 [00:01:47.000] Project '/user/username/projects/myproject/random/tsconfig.json' (Configured) +Info 39 [00:01:48.000] Files (2) /a/lib/lib.d.ts /user/username/projects/myproject/random/random.ts @@ -327,20 +327,20 @@ Info 39 [16:01:48.000] Files (2) random.ts Matched by default include pattern '**/*' -Info 40 [16:01:49.000] ----------------------------------------------- -Info 41 [16:01:50.000] Project '/user/username/projects/myproject/dependency/tsconfig.json' (Configured) -Info 41 [16:01:51.000] Files (2) +Info 40 [00:01:49.000] ----------------------------------------------- +Info 41 [00:01:50.000] Project '/user/username/projects/myproject/dependency/tsconfig.json' (Configured) +Info 41 [00:01:51.000] Files (2) -Info 41 [16:01:52.000] ----------------------------------------------- -Info 41 [16:01:53.000] Project '/user/username/projects/myproject/random/tsconfig.json' (Configured) -Info 41 [16:01:54.000] Files (2) +Info 41 [00:01:52.000] ----------------------------------------------- +Info 41 [00:01:53.000] Project '/user/username/projects/myproject/random/tsconfig.json' (Configured) +Info 41 [00:01:54.000] Files (2) -Info 41 [16:01:55.000] ----------------------------------------------- -Info 41 [16:01:56.000] Open files: -Info 41 [16:01:57.000] FileName: /user/username/projects/myproject/dependency/FnS.ts ProjectRootPath: undefined -Info 41 [16:01:58.000] Projects: /user/username/projects/myproject/dependency/tsconfig.json -Info 41 [16:01:59.000] FileName: /user/username/projects/myproject/random/random.ts ProjectRootPath: undefined -Info 41 [16:02:00.000] Projects: /user/username/projects/myproject/random/tsconfig.json +Info 41 [00:01:55.000] ----------------------------------------------- +Info 41 [00:01:56.000] Open files: +Info 41 [00:01:57.000] FileName: /user/username/projects/myproject/dependency/FnS.ts ProjectRootPath: undefined +Info 41 [00:01:58.000] Projects: /user/username/projects/myproject/dependency/tsconfig.json +Info 41 [00:01:59.000] FileName: /user/username/projects/myproject/random/random.ts ProjectRootPath: undefined +Info 41 [00:02:00.000] Projects: /user/username/projects/myproject/random/tsconfig.json After request PolledWatches:: @@ -365,11 +365,11 @@ FsWatchesRecursive:: /user/username/projects/myproject/random: {} -Info 41 [16:02:01.000] response: +Info 41 [00:02:01.000] response: { "responseRequired": false } -Info 42 [16:02:02.000] request: +Info 42 [00:02:02.000] request: { "command": "rename", "arguments": { @@ -404,8 +404,8 @@ FsWatchesRecursive:: /user/username/projects/myproject/random: {} -Info 43 [16:02:03.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/decls/FnS.d.ts 500 undefined WatchType: Closed Script info -Info 44 [16:02:04.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/decls/FnS.d.ts.map 500 undefined WatchType: Closed Script info +Info 43 [00:02:03.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/decls/FnS.d.ts 500 undefined WatchType: Closed Script info +Info 44 [00:02:04.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/decls/FnS.d.ts.map 500 undefined WatchType: Closed Script info After request PolledWatches:: @@ -434,7 +434,7 @@ FsWatchesRecursive:: /user/username/projects/myproject/random: {} -Info 45 [16:02:05.000] response: +Info 45 [00:02:05.000] response: { "response": { "info": { @@ -482,12 +482,12 @@ Info 45 [16:02:05.000] response: }, "responseRequired": true } -Info 46 [16:02:07.000] FileWatcher:: Triggered with /user/username/projects/myproject/decls/FnS.d.ts.map 2:: WatchInfo: /user/username/projects/myproject/decls/FnS.d.ts.map 500 undefined WatchType: Closed Script info -Info 47 [16:02:08.000] FileWatcher:: Close:: WatchInfo: /user/username/projects/myproject/decls/FnS.d.ts.map 500 undefined WatchType: Closed Script info -Info 48 [16:02:09.000] Scheduled: /user/username/projects/myproject/dependency/tsconfig.json -Info 49 [16:02:10.000] Scheduled: *ensureProjectForOpenFiles* -Info 50 [16:02:11.000] Elapsed:: *ms FileWatcher:: Triggered with /user/username/projects/myproject/decls/FnS.d.ts.map 2:: WatchInfo: /user/username/projects/myproject/decls/FnS.d.ts.map 500 undefined WatchType: Closed Script info -Info 51 [16:02:12.000] request: +Info 46 [00:02:07.000] FileWatcher:: Triggered with /user/username/projects/myproject/decls/FnS.d.ts.map 2:: WatchInfo: /user/username/projects/myproject/decls/FnS.d.ts.map 500 undefined WatchType: Closed Script info +Info 47 [00:02:08.000] FileWatcher:: Close:: WatchInfo: /user/username/projects/myproject/decls/FnS.d.ts.map 500 undefined WatchType: Closed Script info +Info 48 [00:02:09.000] Scheduled: /user/username/projects/myproject/dependency/tsconfig.json +Info 49 [00:02:10.000] Scheduled: *ensureProjectForOpenFiles* +Info 50 [00:02:11.000] Elapsed:: *ms FileWatcher:: Triggered with /user/username/projects/myproject/decls/FnS.d.ts.map 2:: WatchInfo: /user/username/projects/myproject/decls/FnS.d.ts.map 500 undefined WatchType: Closed Script info +Info 51 [00:02:12.000] request: { "command": "rename", "arguments": { @@ -525,9 +525,9 @@ FsWatchesRecursive:: /user/username/projects/myproject/random: {} -Info 52 [16:02:13.000] Starting updateGraphWorker: Project: /user/username/projects/myproject/dependency/tsconfig.json -Info 53 [16:02:14.000] Finishing updateGraphWorker: Project: /user/username/projects/myproject/dependency/tsconfig.json Version: 2 structureChanged: false structureIsReused:: Not Elapsed:: *ms -Info 54 [16:02:15.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/decls/FnS.d.ts.map 2000 undefined WatchType: Missing source map file +Info 52 [00:02:13.000] Starting updateGraphWorker: Project: /user/username/projects/myproject/dependency/tsconfig.json +Info 53 [00:02:14.000] Finishing updateGraphWorker: Project: /user/username/projects/myproject/dependency/tsconfig.json Version: 2 structureChanged: false structureIsReused:: Not Elapsed:: *ms +Info 54 [00:02:15.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/decls/FnS.d.ts.map 2000 undefined WatchType: Missing source map file After request PolledWatches:: @@ -556,7 +556,7 @@ FsWatchesRecursive:: /user/username/projects/myproject/random: {} -Info 55 [16:02:16.000] response: +Info 55 [00:02:16.000] response: { "response": { "info": { @@ -604,7 +604,7 @@ Info 55 [16:02:16.000] response: }, "responseRequired": true } -Info 56 [16:02:17.000] request: +Info 56 [00:02:17.000] request: { "command": "rename", "arguments": { @@ -671,7 +671,7 @@ FsWatchesRecursive:: /user/username/projects/myproject/random: {} -Info 57 [16:02:18.000] response: +Info 57 [00:02:18.000] response: { "response": { "info": { @@ -719,7 +719,7 @@ Info 57 [16:02:18.000] response: }, "responseRequired": true } -Info 58 [16:02:19.000] request: +Info 58 [00:02:19.000] request: { "command": "rename", "arguments": { @@ -786,7 +786,7 @@ FsWatchesRecursive:: /user/username/projects/myproject/random: {} -Info 59 [16:02:20.000] response: +Info 59 [00:02:20.000] response: { "response": { "info": { @@ -834,7 +834,7 @@ Info 59 [16:02:20.000] response: }, "responseRequired": true } -Info 60 [16:02:21.000] request: +Info 60 [00:02:21.000] request: { "command": "rename", "arguments": { @@ -901,7 +901,7 @@ FsWatchesRecursive:: /user/username/projects/myproject/random: {} -Info 61 [16:02:22.000] response: +Info 61 [00:02:22.000] response: { "response": { "info": { @@ -949,7 +949,7 @@ Info 61 [16:02:22.000] response: }, "responseRequired": true } -Info 62 [16:02:23.000] request: +Info 62 [00:02:23.000] request: { "command": "rename", "arguments": { @@ -1016,7 +1016,7 @@ FsWatchesRecursive:: /user/username/projects/myproject/random: {} -Info 63 [16:02:24.000] response: +Info 63 [00:02:24.000] response: { "response": { "info": { @@ -1064,7 +1064,7 @@ Info 63 [16:02:24.000] response: }, "responseRequired": true } -Info 64 [16:02:25.000] request: +Info 64 [00:02:25.000] request: { "seq": 0, "type": "request", @@ -1101,18 +1101,18 @@ FsWatchesRecursive:: /user/username/projects/myproject/random: {} -Info 65 [16:02:26.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/random/random.ts 500 undefined WatchType: Closed Script info -Info 66 [16:02:27.000] Project '/user/username/projects/myproject/dependency/tsconfig.json' (Configured) -Info 66 [16:02:28.000] Files (2) +Info 65 [00:02:26.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/random/random.ts 500 undefined WatchType: Closed Script info +Info 66 [00:02:27.000] Project '/user/username/projects/myproject/dependency/tsconfig.json' (Configured) +Info 66 [00:02:28.000] Files (2) -Info 66 [16:02:29.000] ----------------------------------------------- -Info 66 [16:02:30.000] Project '/user/username/projects/myproject/random/tsconfig.json' (Configured) -Info 66 [16:02:31.000] Files (2) +Info 66 [00:02:29.000] ----------------------------------------------- +Info 66 [00:02:30.000] Project '/user/username/projects/myproject/random/tsconfig.json' (Configured) +Info 66 [00:02:31.000] Files (2) -Info 66 [16:02:32.000] ----------------------------------------------- -Info 66 [16:02:33.000] Open files: -Info 66 [16:02:34.000] FileName: /user/username/projects/myproject/dependency/FnS.ts ProjectRootPath: undefined -Info 66 [16:02:35.000] Projects: /user/username/projects/myproject/dependency/tsconfig.json +Info 66 [00:02:32.000] ----------------------------------------------- +Info 66 [00:02:33.000] Open files: +Info 66 [00:02:34.000] FileName: /user/username/projects/myproject/dependency/FnS.ts ProjectRootPath: undefined +Info 66 [00:02:35.000] Projects: /user/username/projects/myproject/dependency/tsconfig.json After request PolledWatches:: @@ -1143,11 +1143,11 @@ FsWatchesRecursive:: /user/username/projects/myproject/random: {} -Info 66 [16:02:36.000] response: +Info 66 [00:02:36.000] response: { "responseRequired": false } -Info 67 [16:02:37.000] request: +Info 67 [00:02:37.000] request: { "seq": 0, "type": "request", @@ -1186,22 +1186,22 @@ FsWatchesRecursive:: /user/username/projects/myproject/random: {} -Info 68 [16:02:38.000] FileWatcher:: Close:: WatchInfo: /user/username/projects/myproject/random/random.ts 500 undefined WatchType: Closed Script info -Info 69 [16:02:39.000] Search path: /user/username/projects/myproject/random -Info 70 [16:02:40.000] For info: /user/username/projects/myproject/random/random.ts :: Config file name: /user/username/projects/myproject/random/tsconfig.json -Info 71 [16:02:41.000] Project '/user/username/projects/myproject/dependency/tsconfig.json' (Configured) -Info 71 [16:02:42.000] Files (2) +Info 68 [00:02:38.000] FileWatcher:: Close:: WatchInfo: /user/username/projects/myproject/random/random.ts 500 undefined WatchType: Closed Script info +Info 69 [00:02:39.000] Search path: /user/username/projects/myproject/random +Info 70 [00:02:40.000] For info: /user/username/projects/myproject/random/random.ts :: Config file name: /user/username/projects/myproject/random/tsconfig.json +Info 71 [00:02:41.000] Project '/user/username/projects/myproject/dependency/tsconfig.json' (Configured) +Info 71 [00:02:42.000] Files (2) -Info 71 [16:02:43.000] ----------------------------------------------- -Info 71 [16:02:44.000] Project '/user/username/projects/myproject/random/tsconfig.json' (Configured) -Info 71 [16:02:45.000] Files (2) +Info 71 [00:02:43.000] ----------------------------------------------- +Info 71 [00:02:44.000] Project '/user/username/projects/myproject/random/tsconfig.json' (Configured) +Info 71 [00:02:45.000] Files (2) -Info 71 [16:02:46.000] ----------------------------------------------- -Info 71 [16:02:47.000] Open files: -Info 71 [16:02:48.000] FileName: /user/username/projects/myproject/dependency/FnS.ts ProjectRootPath: undefined -Info 71 [16:02:49.000] Projects: /user/username/projects/myproject/dependency/tsconfig.json -Info 71 [16:02:50.000] FileName: /user/username/projects/myproject/random/random.ts ProjectRootPath: undefined -Info 71 [16:02:51.000] Projects: /user/username/projects/myproject/random/tsconfig.json +Info 71 [00:02:46.000] ----------------------------------------------- +Info 71 [00:02:47.000] Open files: +Info 71 [00:02:48.000] FileName: /user/username/projects/myproject/dependency/FnS.ts ProjectRootPath: undefined +Info 71 [00:02:49.000] Projects: /user/username/projects/myproject/dependency/tsconfig.json +Info 71 [00:02:50.000] FileName: /user/username/projects/myproject/random/random.ts ProjectRootPath: undefined +Info 71 [00:02:51.000] Projects: /user/username/projects/myproject/random/tsconfig.json After request PolledWatches:: @@ -1230,11 +1230,11 @@ FsWatchesRecursive:: /user/username/projects/myproject/random: {} -Info 71 [16:02:52.000] response: +Info 71 [00:02:52.000] response: { "responseRequired": false } -Info 72 [16:02:53.000] request: +Info 72 [00:02:53.000] request: { "seq": 0, "type": "request", @@ -1271,18 +1271,18 @@ FsWatchesRecursive:: /user/username/projects/myproject/random: {} -Info 73 [16:02:54.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/dependency/FnS.ts 500 undefined WatchType: Closed Script info -Info 74 [16:02:55.000] Project '/user/username/projects/myproject/dependency/tsconfig.json' (Configured) -Info 74 [16:02:56.000] Files (2) +Info 73 [00:02:54.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/dependency/FnS.ts 500 undefined WatchType: Closed Script info +Info 74 [00:02:55.000] Project '/user/username/projects/myproject/dependency/tsconfig.json' (Configured) +Info 74 [00:02:56.000] Files (2) -Info 74 [16:02:57.000] ----------------------------------------------- -Info 74 [16:02:58.000] Project '/user/username/projects/myproject/random/tsconfig.json' (Configured) -Info 74 [16:02:59.000] Files (2) +Info 74 [00:02:57.000] ----------------------------------------------- +Info 74 [00:02:58.000] Project '/user/username/projects/myproject/random/tsconfig.json' (Configured) +Info 74 [00:02:59.000] Files (2) -Info 74 [16:03:00.000] ----------------------------------------------- -Info 74 [16:03:01.000] Open files: -Info 74 [16:03:02.000] FileName: /user/username/projects/myproject/random/random.ts ProjectRootPath: undefined -Info 74 [16:03:03.000] Projects: /user/username/projects/myproject/random/tsconfig.json +Info 74 [00:03:00.000] ----------------------------------------------- +Info 74 [00:03:01.000] Open files: +Info 74 [00:03:02.000] FileName: /user/username/projects/myproject/random/random.ts ProjectRootPath: undefined +Info 74 [00:03:03.000] Projects: /user/username/projects/myproject/random/tsconfig.json After request PolledWatches:: @@ -1313,11 +1313,11 @@ FsWatchesRecursive:: /user/username/projects/myproject/random: {} -Info 74 [16:03:04.000] response: +Info 74 [00:03:04.000] response: { "responseRequired": false } -Info 75 [16:03:05.000] request: +Info 75 [00:03:05.000] request: { "seq": 0, "type": "request", @@ -1356,16 +1356,16 @@ FsWatchesRecursive:: /user/username/projects/myproject/random: {} -Info 76 [16:03:06.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/random/random.ts 500 undefined WatchType: Closed Script info -Info 77 [16:03:07.000] Project '/user/username/projects/myproject/dependency/tsconfig.json' (Configured) -Info 77 [16:03:08.000] Files (2) +Info 76 [00:03:06.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/random/random.ts 500 undefined WatchType: Closed Script info +Info 77 [00:03:07.000] Project '/user/username/projects/myproject/dependency/tsconfig.json' (Configured) +Info 77 [00:03:08.000] Files (2) -Info 77 [16:03:09.000] ----------------------------------------------- -Info 77 [16:03:10.000] Project '/user/username/projects/myproject/random/tsconfig.json' (Configured) -Info 77 [16:03:11.000] Files (2) +Info 77 [00:03:09.000] ----------------------------------------------- +Info 77 [00:03:10.000] Project '/user/username/projects/myproject/random/tsconfig.json' (Configured) +Info 77 [00:03:11.000] Files (2) -Info 77 [16:03:12.000] ----------------------------------------------- -Info 77 [16:03:13.000] Open files: +Info 77 [00:03:12.000] ----------------------------------------------- +Info 77 [00:03:13.000] Open files: After request PolledWatches:: @@ -1398,11 +1398,11 @@ FsWatchesRecursive:: /user/username/projects/myproject/random: {} -Info 77 [16:03:14.000] response: +Info 77 [00:03:14.000] response: { "responseRequired": false } -Info 78 [16:03:15.000] request: +Info 78 [00:03:15.000] request: { "seq": 0, "type": "request", @@ -1443,12 +1443,12 @@ FsWatchesRecursive:: /user/username/projects/myproject/random: {} -Info 79 [16:03:16.000] FileWatcher:: Close:: WatchInfo: /user/username/projects/myproject/random/random.ts 500 undefined WatchType: Closed Script info -Info 80 [16:03:17.000] Search path: /user/username/projects/myproject/random -Info 81 [16:03:18.000] For info: /user/username/projects/myproject/random/random.ts :: Config file name: /user/username/projects/myproject/random/tsconfig.json -Info 82 [16:03:19.000] `remove Project:: -Info 83 [16:03:20.000] Project '/user/username/projects/myproject/dependency/tsconfig.json' (Configured) -Info 84 [16:03:21.000] Files (2) +Info 79 [00:03:16.000] FileWatcher:: Close:: WatchInfo: /user/username/projects/myproject/random/random.ts 500 undefined WatchType: Closed Script info +Info 80 [00:03:17.000] Search path: /user/username/projects/myproject/random +Info 81 [00:03:18.000] For info: /user/username/projects/myproject/random/random.ts :: Config file name: /user/username/projects/myproject/random/tsconfig.json +Info 82 [00:03:19.000] `remove Project:: +Info 83 [00:03:20.000] Project '/user/username/projects/myproject/dependency/tsconfig.json' (Configured) +Info 84 [00:03:21.000] Files (2) /a/lib/lib.d.ts /user/username/projects/myproject/dependency/FnS.ts @@ -1458,24 +1458,24 @@ Info 84 [16:03:21.000] Files (2) FnS.ts Matched by default include pattern '**/*' -Info 85 [16:03:22.000] ----------------------------------------------- -Info 86 [16:03:23.000] DirectoryWatcher:: Close:: WatchInfo: /user/username/projects/myproject/dependency 1 undefined Config: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Wild card directory -Info 87 [16:03:24.000] 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 88 [16:03:25.000] FileWatcher:: Close:: WatchInfo: /user/username/projects/myproject/dependency/tsconfig.json 2000 undefined Project: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Config file -Info 89 [16:03:26.000] 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 90 [16:03:27.000] 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 91 [16:03:28.000] DirectoryWatcher:: Close:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Type roots -Info 92 [16:03:29.000] 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 93 [16:03:30.000] FileWatcher:: Close:: WatchInfo: /user/username/projects/myproject/dependency/FnS.ts 500 undefined WatchType: Closed Script info -Info 94 [16:03:31.000] FileWatcher:: Close:: WatchInfo: /user/username/projects/myproject/decls/FnS.d.ts 500 undefined WatchType: Closed Script info -Info 95 [16:03:32.000] FileWatcher:: Close:: WatchInfo: /user/username/projects/myproject/decls/FnS.d.ts.map 2000 undefined WatchType: Missing source map file -Info 96 [16:03:33.000] Project '/user/username/projects/myproject/random/tsconfig.json' (Configured) -Info 96 [16:03:34.000] Files (2) - -Info 96 [16:03:35.000] ----------------------------------------------- -Info 96 [16:03:36.000] Open files: -Info 96 [16:03:37.000] FileName: /user/username/projects/myproject/random/random.ts ProjectRootPath: undefined -Info 96 [16:03:38.000] Projects: /user/username/projects/myproject/random/tsconfig.json +Info 85 [00:03:22.000] ----------------------------------------------- +Info 86 [00:03:23.000] DirectoryWatcher:: Close:: WatchInfo: /user/username/projects/myproject/dependency 1 undefined Config: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Wild card directory +Info 87 [00:03:24.000] 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 88 [00:03:25.000] FileWatcher:: Close:: WatchInfo: /user/username/projects/myproject/dependency/tsconfig.json 2000 undefined Project: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Config file +Info 89 [00:03:26.000] 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 90 [00:03:27.000] 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 91 [00:03:28.000] DirectoryWatcher:: Close:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Type roots +Info 92 [00:03:29.000] 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 93 [00:03:30.000] FileWatcher:: Close:: WatchInfo: /user/username/projects/myproject/dependency/FnS.ts 500 undefined WatchType: Closed Script info +Info 94 [00:03:31.000] FileWatcher:: Close:: WatchInfo: /user/username/projects/myproject/decls/FnS.d.ts 500 undefined WatchType: Closed Script info +Info 95 [00:03:32.000] FileWatcher:: Close:: WatchInfo: /user/username/projects/myproject/decls/FnS.d.ts.map 2000 undefined WatchType: Missing source map file +Info 96 [00:03:33.000] Project '/user/username/projects/myproject/random/tsconfig.json' (Configured) +Info 96 [00:03:34.000] Files (2) + +Info 96 [00:03:35.000] ----------------------------------------------- +Info 96 [00:03:36.000] Open files: +Info 96 [00:03:37.000] FileName: /user/username/projects/myproject/random/random.ts ProjectRootPath: undefined +Info 96 [00:03:38.000] Projects: /user/username/projects/myproject/random/tsconfig.json After request PolledWatches:: @@ -1494,7 +1494,7 @@ FsWatchesRecursive:: /user/username/projects/myproject/random: {} -Info 96 [16:03:39.000] response: +Info 96 [00:03:39.000] response: { "responseRequired": false } \ No newline at end of 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 c4eb428790cd0..ecf0bf9531a23 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 @@ -1,5 +1,5 @@ -Info 0 [16:01:04.000] Provided types map file "/a/lib/typesMap.json" doesn't exist -Info 1 [16:01:05.000] request: +Info 0 [00:01:04.000] Provided types map file "/a/lib/typesMap.json" doesn't exist +Info 1 [00:01:05.000] request: { "seq": 0, "type": "request", @@ -197,11 +197,11 @@ FsWatches:: FsWatchesRecursive:: -Info 2 [16:01:06.000] Search path: /user/username/projects/myproject/dependency -Info 3 [16:01:07.000] For info: /user/username/projects/myproject/dependency/FnS.ts :: Config file name: /user/username/projects/myproject/dependency/tsconfig.json -Info 4 [16:01:08.000] Creating configuration project /user/username/projects/myproject/dependency/tsconfig.json -Info 5 [16:01:09.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/dependency/tsconfig.json 2000 undefined Project: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Config file -Info 6 [16:01:10.000] Config: /user/username/projects/myproject/dependency/tsconfig.json : { +Info 2 [00:01:06.000] Search path: /user/username/projects/myproject/dependency +Info 3 [00:01:07.000] For info: /user/username/projects/myproject/dependency/FnS.ts :: Config file name: /user/username/projects/myproject/dependency/tsconfig.json +Info 4 [00:01:08.000] Creating configuration project /user/username/projects/myproject/dependency/tsconfig.json +Info 5 [00:01:09.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/dependency/tsconfig.json 2000 undefined Project: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Config file +Info 6 [00:01:10.000] Config: /user/username/projects/myproject/dependency/tsconfig.json : { "rootNames": [ "/user/username/projects/myproject/dependency/FnS.ts" ], @@ -212,18 +212,18 @@ Info 6 [16:01:10.000] Config: /user/username/projects/myproject/dependency/ts "configFilePath": "/user/username/projects/myproject/dependency/tsconfig.json" } } -Info 7 [16:01:11.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/dependency 1 undefined Config: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Wild card directory -Info 8 [16:01:12.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/dependency 1 undefined Config: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Wild card directory -Info 9 [16:01:13.000] Plugins were requested but not running in environment that supports 'require'. Nothing will be loaded -Info 10 [16:01:14.000] Starting updateGraphWorker: Project: /user/username/projects/myproject/dependency/tsconfig.json -Info 11 [16:01:15.000] FileWatcher:: Added:: WatchInfo: /a/lib/lib.d.ts 500 undefined WatchType: Closed Script info -Info 12 [16:01:16.000] 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 13 [16:01:17.000] 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 14 [16:01:18.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Type roots -Info 15 [16:01:19.000] 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 16 [16:01:20.000] Finishing updateGraphWorker: Project: /user/username/projects/myproject/dependency/tsconfig.json Version: 1 structureChanged: true structureIsReused:: Not Elapsed:: *ms -Info 17 [16:01:21.000] Project '/user/username/projects/myproject/dependency/tsconfig.json' (Configured) -Info 18 [16:01:22.000] Files (2) +Info 7 [00:01:11.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/dependency 1 undefined Config: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Wild card directory +Info 8 [00:01:12.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/dependency 1 undefined Config: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Wild card directory +Info 9 [00:01:13.000] Plugins were requested but not running in environment that supports 'require'. Nothing will be loaded +Info 10 [00:01:14.000] Starting updateGraphWorker: Project: /user/username/projects/myproject/dependency/tsconfig.json +Info 11 [00:01:15.000] FileWatcher:: Added:: WatchInfo: /a/lib/lib.d.ts 500 undefined WatchType: Closed Script info +Info 12 [00:01:16.000] 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 13 [00:01:17.000] 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 14 [00:01:18.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Type roots +Info 15 [00:01:19.000] 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 16 [00:01:20.000] Finishing updateGraphWorker: Project: /user/username/projects/myproject/dependency/tsconfig.json Version: 1 structureChanged: true structureIsReused:: Not Elapsed:: *ms +Info 17 [00:01:21.000] Project '/user/username/projects/myproject/dependency/tsconfig.json' (Configured) +Info 18 [00:01:22.000] Files (2) /a/lib/lib.d.ts /user/username/projects/myproject/dependency/FnS.ts @@ -233,16 +233,16 @@ Info 18 [16:01:22.000] Files (2) FnS.ts Matched by default include pattern '**/*' -Info 19 [16:01:23.000] ----------------------------------------------- -Info 20 [16:01:24.000] Search path: /user/username/projects/myproject/dependency -Info 21 [16:01:25.000] For info: /user/username/projects/myproject/dependency/tsconfig.json :: No config files found. -Info 22 [16:01:26.000] Project '/user/username/projects/myproject/dependency/tsconfig.json' (Configured) -Info 22 [16:01:27.000] Files (2) +Info 19 [00:01:23.000] ----------------------------------------------- +Info 20 [00:01:24.000] Search path: /user/username/projects/myproject/dependency +Info 21 [00:01:25.000] For info: /user/username/projects/myproject/dependency/tsconfig.json :: No config files found. +Info 22 [00:01:26.000] Project '/user/username/projects/myproject/dependency/tsconfig.json' (Configured) +Info 22 [00:01:27.000] Files (2) -Info 22 [16:01:28.000] ----------------------------------------------- -Info 22 [16:01:29.000] Open files: -Info 22 [16:01:30.000] FileName: /user/username/projects/myproject/dependency/FnS.ts ProjectRootPath: undefined -Info 22 [16:01:31.000] Projects: /user/username/projects/myproject/dependency/tsconfig.json +Info 22 [00:01:28.000] ----------------------------------------------- +Info 22 [00:01:29.000] Open files: +Info 22 [00:01:30.000] FileName: /user/username/projects/myproject/dependency/FnS.ts ProjectRootPath: undefined +Info 22 [00:01:31.000] Projects: /user/username/projects/myproject/dependency/tsconfig.json After request PolledWatches:: @@ -261,11 +261,11 @@ FsWatchesRecursive:: /user/username/projects/myproject/dependency: {} -Info 22 [16:01:32.000] response: +Info 22 [00:01:32.000] response: { "responseRequired": false } -Info 23 [16:01:33.000] request: +Info 23 [00:01:33.000] request: { "seq": 0, "type": "request", @@ -292,11 +292,11 @@ FsWatchesRecursive:: /user/username/projects/myproject/dependency: {} -Info 24 [16:01:34.000] Search path: /user/username/projects/myproject/random -Info 25 [16:01:35.000] For info: /user/username/projects/myproject/random/random.ts :: Config file name: /user/username/projects/myproject/random/tsconfig.json -Info 26 [16:01:36.000] Creating configuration project /user/username/projects/myproject/random/tsconfig.json -Info 27 [16:01:37.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/random/tsconfig.json 2000 undefined Project: /user/username/projects/myproject/random/tsconfig.json WatchType: Config file -Info 28 [16:01:38.000] Config: /user/username/projects/myproject/random/tsconfig.json : { +Info 24 [00:01:34.000] Search path: /user/username/projects/myproject/random +Info 25 [00:01:35.000] For info: /user/username/projects/myproject/random/random.ts :: Config file name: /user/username/projects/myproject/random/tsconfig.json +Info 26 [00:01:36.000] Creating configuration project /user/username/projects/myproject/random/tsconfig.json +Info 27 [00:01:37.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/random/tsconfig.json 2000 undefined Project: /user/username/projects/myproject/random/tsconfig.json WatchType: Config file +Info 28 [00:01:38.000] Config: /user/username/projects/myproject/random/tsconfig.json : { "rootNames": [ "/user/username/projects/myproject/random/random.ts" ], @@ -304,17 +304,17 @@ Info 28 [16:01:38.000] Config: /user/username/projects/myproject/random/tsconf "configFilePath": "/user/username/projects/myproject/random/tsconfig.json" } } -Info 29 [16:01:39.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/random 1 undefined Config: /user/username/projects/myproject/random/tsconfig.json WatchType: Wild card directory -Info 30 [16:01:40.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/random 1 undefined Config: /user/username/projects/myproject/random/tsconfig.json WatchType: Wild card directory -Info 31 [16:01:41.000] Plugins were requested but not running in environment that supports 'require'. Nothing will be loaded -Info 32 [16:01:42.000] Starting updateGraphWorker: Project: /user/username/projects/myproject/random/tsconfig.json -Info 33 [16:01:43.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/random/node_modules/@types 1 undefined Project: /user/username/projects/myproject/random/tsconfig.json WatchType: Type roots -Info 34 [16:01:44.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/random/node_modules/@types 1 undefined Project: /user/username/projects/myproject/random/tsconfig.json WatchType: Type roots -Info 35 [16:01:45.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/random/tsconfig.json WatchType: Type roots -Info 36 [16:01:46.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/random/tsconfig.json WatchType: Type roots -Info 37 [16:01:47.000] Finishing updateGraphWorker: Project: /user/username/projects/myproject/random/tsconfig.json Version: 1 structureChanged: true structureIsReused:: Not Elapsed:: *ms -Info 38 [16:01:48.000] Project '/user/username/projects/myproject/random/tsconfig.json' (Configured) -Info 39 [16:01:49.000] Files (2) +Info 29 [00:01:39.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/random 1 undefined Config: /user/username/projects/myproject/random/tsconfig.json WatchType: Wild card directory +Info 30 [00:01:40.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/random 1 undefined Config: /user/username/projects/myproject/random/tsconfig.json WatchType: Wild card directory +Info 31 [00:01:41.000] Plugins were requested but not running in environment that supports 'require'. Nothing will be loaded +Info 32 [00:01:42.000] Starting updateGraphWorker: Project: /user/username/projects/myproject/random/tsconfig.json +Info 33 [00:01:43.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/random/node_modules/@types 1 undefined Project: /user/username/projects/myproject/random/tsconfig.json WatchType: Type roots +Info 34 [00:01:44.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/random/node_modules/@types 1 undefined Project: /user/username/projects/myproject/random/tsconfig.json WatchType: Type roots +Info 35 [00:01:45.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/random/tsconfig.json WatchType: Type roots +Info 36 [00:01:46.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/random/tsconfig.json WatchType: Type roots +Info 37 [00:01:47.000] Finishing updateGraphWorker: Project: /user/username/projects/myproject/random/tsconfig.json Version: 1 structureChanged: true structureIsReused:: Not Elapsed:: *ms +Info 38 [00:01:48.000] Project '/user/username/projects/myproject/random/tsconfig.json' (Configured) +Info 39 [00:01:49.000] Files (2) /a/lib/lib.d.ts /user/username/projects/myproject/random/random.ts @@ -324,20 +324,20 @@ Info 39 [16:01:49.000] Files (2) random.ts Matched by default include pattern '**/*' -Info 40 [16:01:50.000] ----------------------------------------------- -Info 41 [16:01:51.000] Project '/user/username/projects/myproject/dependency/tsconfig.json' (Configured) -Info 41 [16:01:52.000] Files (2) +Info 40 [00:01:50.000] ----------------------------------------------- +Info 41 [00:01:51.000] Project '/user/username/projects/myproject/dependency/tsconfig.json' (Configured) +Info 41 [00:01:52.000] Files (2) -Info 41 [16:01:53.000] ----------------------------------------------- -Info 41 [16:01:54.000] Project '/user/username/projects/myproject/random/tsconfig.json' (Configured) -Info 41 [16:01:55.000] Files (2) +Info 41 [00:01:53.000] ----------------------------------------------- +Info 41 [00:01:54.000] Project '/user/username/projects/myproject/random/tsconfig.json' (Configured) +Info 41 [00:01:55.000] Files (2) -Info 41 [16:01:56.000] ----------------------------------------------- -Info 41 [16:01:57.000] Open files: -Info 41 [16:01:58.000] FileName: /user/username/projects/myproject/dependency/FnS.ts ProjectRootPath: undefined -Info 41 [16:01:59.000] Projects: /user/username/projects/myproject/dependency/tsconfig.json -Info 41 [16:02:00.000] FileName: /user/username/projects/myproject/random/random.ts ProjectRootPath: undefined -Info 41 [16:02:01.000] Projects: /user/username/projects/myproject/random/tsconfig.json +Info 41 [00:01:56.000] ----------------------------------------------- +Info 41 [00:01:57.000] Open files: +Info 41 [00:01:58.000] FileName: /user/username/projects/myproject/dependency/FnS.ts ProjectRootPath: undefined +Info 41 [00:01:59.000] Projects: /user/username/projects/myproject/dependency/tsconfig.json +Info 41 [00:02:00.000] FileName: /user/username/projects/myproject/random/random.ts ProjectRootPath: undefined +Info 41 [00:02:01.000] Projects: /user/username/projects/myproject/random/tsconfig.json After request PolledWatches:: @@ -362,11 +362,11 @@ FsWatchesRecursive:: /user/username/projects/myproject/random: {} -Info 41 [16:02:02.000] response: +Info 41 [00:02:02.000] response: { "responseRequired": false } -Info 42 [16:02:03.000] request: +Info 42 [00:02:03.000] request: { "command": "rename", "arguments": { @@ -401,8 +401,8 @@ FsWatchesRecursive:: /user/username/projects/myproject/random: {} -Info 43 [16:02:04.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/decls/FnS.d.ts 500 undefined WatchType: Closed Script info -Info 44 [16:02:05.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/decls/FnS.d.ts.map 2000 undefined WatchType: Missing source map file +Info 43 [00:02:04.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/decls/FnS.d.ts 500 undefined WatchType: Closed Script info +Info 44 [00:02:05.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/decls/FnS.d.ts.map 2000 undefined WatchType: Missing source map file After request PolledWatches:: @@ -431,7 +431,7 @@ FsWatchesRecursive:: /user/username/projects/myproject/random: {} -Info 45 [16:02:06.000] response: +Info 45 [00:02:06.000] response: { "response": { "info": { @@ -479,7 +479,7 @@ Info 45 [16:02:06.000] response: }, "responseRequired": true } -Info 46 [16:02:07.000] request: +Info 46 [00:02:07.000] request: { "command": "rename", "arguments": { @@ -546,7 +546,7 @@ FsWatchesRecursive:: /user/username/projects/myproject/random: {} -Info 47 [16:02:08.000] response: +Info 47 [00:02:08.000] response: { "response": { "info": { @@ -594,7 +594,7 @@ Info 47 [16:02:08.000] response: }, "responseRequired": true } -Info 48 [16:02:09.000] request: +Info 48 [00:02:09.000] request: { "command": "rename", "arguments": { @@ -661,7 +661,7 @@ FsWatchesRecursive:: /user/username/projects/myproject/random: {} -Info 49 [16:02:10.000] response: +Info 49 [00:02:10.000] response: { "response": { "info": { @@ -709,7 +709,7 @@ Info 49 [16:02:10.000] response: }, "responseRequired": true } -Info 50 [16:02:11.000] request: +Info 50 [00:02:11.000] request: { "command": "rename", "arguments": { @@ -776,7 +776,7 @@ FsWatchesRecursive:: /user/username/projects/myproject/random: {} -Info 51 [16:02:12.000] response: +Info 51 [00:02:12.000] response: { "response": { "info": { @@ -824,7 +824,7 @@ Info 51 [16:02:12.000] response: }, "responseRequired": true } -Info 52 [16:02:13.000] request: +Info 52 [00:02:13.000] request: { "command": "rename", "arguments": { @@ -891,7 +891,7 @@ FsWatchesRecursive:: /user/username/projects/myproject/random: {} -Info 53 [16:02:14.000] response: +Info 53 [00:02:14.000] response: { "response": { "info": { @@ -939,7 +939,7 @@ Info 53 [16:02:14.000] response: }, "responseRequired": true } -Info 54 [16:02:15.000] request: +Info 54 [00:02:15.000] request: { "seq": 0, "type": "request", @@ -976,18 +976,18 @@ FsWatchesRecursive:: /user/username/projects/myproject/random: {} -Info 55 [16:02:16.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/random/random.ts 500 undefined WatchType: Closed Script info -Info 56 [16:02:17.000] Project '/user/username/projects/myproject/dependency/tsconfig.json' (Configured) -Info 56 [16:02:18.000] Files (2) +Info 55 [00:02:16.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/random/random.ts 500 undefined WatchType: Closed Script info +Info 56 [00:02:17.000] Project '/user/username/projects/myproject/dependency/tsconfig.json' (Configured) +Info 56 [00:02:18.000] Files (2) -Info 56 [16:02:19.000] ----------------------------------------------- -Info 56 [16:02:20.000] Project '/user/username/projects/myproject/random/tsconfig.json' (Configured) -Info 56 [16:02:21.000] Files (2) +Info 56 [00:02:19.000] ----------------------------------------------- +Info 56 [00:02:20.000] Project '/user/username/projects/myproject/random/tsconfig.json' (Configured) +Info 56 [00:02:21.000] Files (2) -Info 56 [16:02:22.000] ----------------------------------------------- -Info 56 [16:02:23.000] Open files: -Info 56 [16:02:24.000] FileName: /user/username/projects/myproject/dependency/FnS.ts ProjectRootPath: undefined -Info 56 [16:02:25.000] Projects: /user/username/projects/myproject/dependency/tsconfig.json +Info 56 [00:02:22.000] ----------------------------------------------- +Info 56 [00:02:23.000] Open files: +Info 56 [00:02:24.000] FileName: /user/username/projects/myproject/dependency/FnS.ts ProjectRootPath: undefined +Info 56 [00:02:25.000] Projects: /user/username/projects/myproject/dependency/tsconfig.json After request PolledWatches:: @@ -1018,11 +1018,11 @@ FsWatchesRecursive:: /user/username/projects/myproject/random: {} -Info 56 [16:02:26.000] response: +Info 56 [00:02:26.000] response: { "responseRequired": false } -Info 57 [16:02:27.000] request: +Info 57 [00:02:27.000] request: { "seq": 0, "type": "request", @@ -1061,22 +1061,22 @@ FsWatchesRecursive:: /user/username/projects/myproject/random: {} -Info 58 [16:02:28.000] FileWatcher:: Close:: WatchInfo: /user/username/projects/myproject/random/random.ts 500 undefined WatchType: Closed Script info -Info 59 [16:02:29.000] Search path: /user/username/projects/myproject/random -Info 60 [16:02:30.000] For info: /user/username/projects/myproject/random/random.ts :: Config file name: /user/username/projects/myproject/random/tsconfig.json -Info 61 [16:02:31.000] Project '/user/username/projects/myproject/dependency/tsconfig.json' (Configured) -Info 61 [16:02:32.000] Files (2) +Info 58 [00:02:28.000] FileWatcher:: Close:: WatchInfo: /user/username/projects/myproject/random/random.ts 500 undefined WatchType: Closed Script info +Info 59 [00:02:29.000] Search path: /user/username/projects/myproject/random +Info 60 [00:02:30.000] For info: /user/username/projects/myproject/random/random.ts :: Config file name: /user/username/projects/myproject/random/tsconfig.json +Info 61 [00:02:31.000] Project '/user/username/projects/myproject/dependency/tsconfig.json' (Configured) +Info 61 [00:02:32.000] Files (2) -Info 61 [16:02:33.000] ----------------------------------------------- -Info 61 [16:02:34.000] Project '/user/username/projects/myproject/random/tsconfig.json' (Configured) -Info 61 [16:02:35.000] Files (2) +Info 61 [00:02:33.000] ----------------------------------------------- +Info 61 [00:02:34.000] Project '/user/username/projects/myproject/random/tsconfig.json' (Configured) +Info 61 [00:02:35.000] Files (2) -Info 61 [16:02:36.000] ----------------------------------------------- -Info 61 [16:02:37.000] Open files: -Info 61 [16:02:38.000] FileName: /user/username/projects/myproject/dependency/FnS.ts ProjectRootPath: undefined -Info 61 [16:02:39.000] Projects: /user/username/projects/myproject/dependency/tsconfig.json -Info 61 [16:02:40.000] FileName: /user/username/projects/myproject/random/random.ts ProjectRootPath: undefined -Info 61 [16:02:41.000] Projects: /user/username/projects/myproject/random/tsconfig.json +Info 61 [00:02:36.000] ----------------------------------------------- +Info 61 [00:02:37.000] Open files: +Info 61 [00:02:38.000] FileName: /user/username/projects/myproject/dependency/FnS.ts ProjectRootPath: undefined +Info 61 [00:02:39.000] Projects: /user/username/projects/myproject/dependency/tsconfig.json +Info 61 [00:02:40.000] FileName: /user/username/projects/myproject/random/random.ts ProjectRootPath: undefined +Info 61 [00:02:41.000] Projects: /user/username/projects/myproject/random/tsconfig.json After request PolledWatches:: @@ -1105,11 +1105,11 @@ FsWatchesRecursive:: /user/username/projects/myproject/random: {} -Info 61 [16:02:42.000] response: +Info 61 [00:02:42.000] response: { "responseRequired": false } -Info 62 [16:02:43.000] request: +Info 62 [00:02:43.000] request: { "seq": 0, "type": "request", @@ -1146,18 +1146,18 @@ FsWatchesRecursive:: /user/username/projects/myproject/random: {} -Info 63 [16:02:44.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/dependency/FnS.ts 500 undefined WatchType: Closed Script info -Info 64 [16:02:45.000] Project '/user/username/projects/myproject/dependency/tsconfig.json' (Configured) -Info 64 [16:02:46.000] Files (2) +Info 63 [00:02:44.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/dependency/FnS.ts 500 undefined WatchType: Closed Script info +Info 64 [00:02:45.000] Project '/user/username/projects/myproject/dependency/tsconfig.json' (Configured) +Info 64 [00:02:46.000] Files (2) -Info 64 [16:02:47.000] ----------------------------------------------- -Info 64 [16:02:48.000] Project '/user/username/projects/myproject/random/tsconfig.json' (Configured) -Info 64 [16:02:49.000] Files (2) +Info 64 [00:02:47.000] ----------------------------------------------- +Info 64 [00:02:48.000] Project '/user/username/projects/myproject/random/tsconfig.json' (Configured) +Info 64 [00:02:49.000] Files (2) -Info 64 [16:02:50.000] ----------------------------------------------- -Info 64 [16:02:51.000] Open files: -Info 64 [16:02:52.000] FileName: /user/username/projects/myproject/random/random.ts ProjectRootPath: undefined -Info 64 [16:02:53.000] Projects: /user/username/projects/myproject/random/tsconfig.json +Info 64 [00:02:50.000] ----------------------------------------------- +Info 64 [00:02:51.000] Open files: +Info 64 [00:02:52.000] FileName: /user/username/projects/myproject/random/random.ts ProjectRootPath: undefined +Info 64 [00:02:53.000] Projects: /user/username/projects/myproject/random/tsconfig.json After request PolledWatches:: @@ -1188,11 +1188,11 @@ FsWatchesRecursive:: /user/username/projects/myproject/random: {} -Info 64 [16:02:54.000] response: +Info 64 [00:02:54.000] response: { "responseRequired": false } -Info 65 [16:02:55.000] request: +Info 65 [00:02:55.000] request: { "seq": 0, "type": "request", @@ -1231,16 +1231,16 @@ FsWatchesRecursive:: /user/username/projects/myproject/random: {} -Info 66 [16:02:56.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/random/random.ts 500 undefined WatchType: Closed Script info -Info 67 [16:02:57.000] Project '/user/username/projects/myproject/dependency/tsconfig.json' (Configured) -Info 67 [16:02:58.000] Files (2) +Info 66 [00:02:56.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/random/random.ts 500 undefined WatchType: Closed Script info +Info 67 [00:02:57.000] Project '/user/username/projects/myproject/dependency/tsconfig.json' (Configured) +Info 67 [00:02:58.000] Files (2) -Info 67 [16:02:59.000] ----------------------------------------------- -Info 67 [16:03:00.000] Project '/user/username/projects/myproject/random/tsconfig.json' (Configured) -Info 67 [16:03:01.000] Files (2) +Info 67 [00:02:59.000] ----------------------------------------------- +Info 67 [00:03:00.000] Project '/user/username/projects/myproject/random/tsconfig.json' (Configured) +Info 67 [00:03:01.000] Files (2) -Info 67 [16:03:02.000] ----------------------------------------------- -Info 67 [16:03:03.000] Open files: +Info 67 [00:03:02.000] ----------------------------------------------- +Info 67 [00:03:03.000] Open files: After request PolledWatches:: @@ -1273,11 +1273,11 @@ FsWatchesRecursive:: /user/username/projects/myproject/random: {} -Info 67 [16:03:04.000] response: +Info 67 [00:03:04.000] response: { "responseRequired": false } -Info 68 [16:03:05.000] request: +Info 68 [00:03:05.000] request: { "seq": 0, "type": "request", @@ -1318,12 +1318,12 @@ FsWatchesRecursive:: /user/username/projects/myproject/random: {} -Info 69 [16:03:06.000] FileWatcher:: Close:: WatchInfo: /user/username/projects/myproject/random/random.ts 500 undefined WatchType: Closed Script info -Info 70 [16:03:07.000] Search path: /user/username/projects/myproject/random -Info 71 [16:03:08.000] For info: /user/username/projects/myproject/random/random.ts :: Config file name: /user/username/projects/myproject/random/tsconfig.json -Info 72 [16:03:09.000] `remove Project:: -Info 73 [16:03:10.000] Project '/user/username/projects/myproject/dependency/tsconfig.json' (Configured) -Info 74 [16:03:11.000] Files (2) +Info 69 [00:03:06.000] FileWatcher:: Close:: WatchInfo: /user/username/projects/myproject/random/random.ts 500 undefined WatchType: Closed Script info +Info 70 [00:03:07.000] Search path: /user/username/projects/myproject/random +Info 71 [00:03:08.000] For info: /user/username/projects/myproject/random/random.ts :: Config file name: /user/username/projects/myproject/random/tsconfig.json +Info 72 [00:03:09.000] `remove Project:: +Info 73 [00:03:10.000] Project '/user/username/projects/myproject/dependency/tsconfig.json' (Configured) +Info 74 [00:03:11.000] Files (2) /a/lib/lib.d.ts /user/username/projects/myproject/dependency/FnS.ts @@ -1333,24 +1333,24 @@ Info 74 [16:03:11.000] Files (2) FnS.ts Matched by default include pattern '**/*' -Info 75 [16:03:12.000] ----------------------------------------------- -Info 76 [16:03:13.000] DirectoryWatcher:: Close:: WatchInfo: /user/username/projects/myproject/dependency 1 undefined Config: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Wild card directory -Info 77 [16:03:14.000] 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 78 [16:03:15.000] FileWatcher:: Close:: WatchInfo: /user/username/projects/myproject/dependency/tsconfig.json 2000 undefined Project: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Config file -Info 79 [16:03:16.000] 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 80 [16:03:17.000] 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 81 [16:03:18.000] DirectoryWatcher:: Close:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Type roots -Info 82 [16:03:19.000] 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 83 [16:03:20.000] FileWatcher:: Close:: WatchInfo: /user/username/projects/myproject/dependency/FnS.ts 500 undefined WatchType: Closed Script info -Info 84 [16:03:21.000] FileWatcher:: Close:: WatchInfo: /user/username/projects/myproject/decls/FnS.d.ts 500 undefined WatchType: Closed Script info -Info 85 [16:03:22.000] FileWatcher:: Close:: WatchInfo: /user/username/projects/myproject/decls/FnS.d.ts.map 2000 undefined WatchType: Missing source map file -Info 86 [16:03:23.000] Project '/user/username/projects/myproject/random/tsconfig.json' (Configured) -Info 86 [16:03:24.000] Files (2) - -Info 86 [16:03:25.000] ----------------------------------------------- -Info 86 [16:03:26.000] Open files: -Info 86 [16:03:27.000] FileName: /user/username/projects/myproject/random/random.ts ProjectRootPath: undefined -Info 86 [16:03:28.000] Projects: /user/username/projects/myproject/random/tsconfig.json +Info 75 [00:03:12.000] ----------------------------------------------- +Info 76 [00:03:13.000] DirectoryWatcher:: Close:: WatchInfo: /user/username/projects/myproject/dependency 1 undefined Config: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Wild card directory +Info 77 [00:03:14.000] 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 78 [00:03:15.000] FileWatcher:: Close:: WatchInfo: /user/username/projects/myproject/dependency/tsconfig.json 2000 undefined Project: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Config file +Info 79 [00:03:16.000] 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 80 [00:03:17.000] 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 81 [00:03:18.000] DirectoryWatcher:: Close:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Type roots +Info 82 [00:03:19.000] 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 83 [00:03:20.000] FileWatcher:: Close:: WatchInfo: /user/username/projects/myproject/dependency/FnS.ts 500 undefined WatchType: Closed Script info +Info 84 [00:03:21.000] FileWatcher:: Close:: WatchInfo: /user/username/projects/myproject/decls/FnS.d.ts 500 undefined WatchType: Closed Script info +Info 85 [00:03:22.000] FileWatcher:: Close:: WatchInfo: /user/username/projects/myproject/decls/FnS.d.ts.map 2000 undefined WatchType: Missing source map file +Info 86 [00:03:23.000] Project '/user/username/projects/myproject/random/tsconfig.json' (Configured) +Info 86 [00:03:24.000] Files (2) + +Info 86 [00:03:25.000] ----------------------------------------------- +Info 86 [00:03:26.000] Open files: +Info 86 [00:03:27.000] FileName: /user/username/projects/myproject/random/random.ts ProjectRootPath: undefined +Info 86 [00:03:28.000] Projects: /user/username/projects/myproject/random/tsconfig.json After request PolledWatches:: @@ -1369,7 +1369,7 @@ FsWatchesRecursive:: /user/username/projects/myproject/random: {} -Info 86 [16:03:29.000] response: +Info 86 [00:03:29.000] response: { "responseRequired": false } \ No newline at end of file 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 be27039acc2af..5c2e5e935b912 100644 --- a/tests/baselines/reference/tsserver/projectReferencesSourcemap/dependency/configHasNoReference/rename-locations.js +++ b/tests/baselines/reference/tsserver/projectReferencesSourcemap/dependency/configHasNoReference/rename-locations.js @@ -1,5 +1,5 @@ -Info 0 [16:01:03.000] Provided types map file "/a/lib/typesMap.json" doesn't exist -Info 1 [16:01:04.000] request: +Info 0 [00:01:03.000] Provided types map file "/a/lib/typesMap.json" doesn't exist +Info 1 [00:01:04.000] request: { "seq": 0, "type": "request", @@ -200,11 +200,11 @@ FsWatches:: FsWatchesRecursive:: -Info 2 [16:01:05.000] Search path: /user/username/projects/myproject/dependency -Info 3 [16:01:06.000] For info: /user/username/projects/myproject/dependency/FnS.ts :: Config file name: /user/username/projects/myproject/dependency/tsconfig.json -Info 4 [16:01:07.000] Creating configuration project /user/username/projects/myproject/dependency/tsconfig.json -Info 5 [16:01:08.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/dependency/tsconfig.json 2000 undefined Project: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Config file -Info 6 [16:01:09.000] Config: /user/username/projects/myproject/dependency/tsconfig.json : { +Info 2 [00:01:05.000] Search path: /user/username/projects/myproject/dependency +Info 3 [00:01:06.000] For info: /user/username/projects/myproject/dependency/FnS.ts :: Config file name: /user/username/projects/myproject/dependency/tsconfig.json +Info 4 [00:01:07.000] Creating configuration project /user/username/projects/myproject/dependency/tsconfig.json +Info 5 [00:01:08.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/dependency/tsconfig.json 2000 undefined Project: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Config file +Info 6 [00:01:09.000] Config: /user/username/projects/myproject/dependency/tsconfig.json : { "rootNames": [ "/user/username/projects/myproject/dependency/FnS.ts" ], @@ -215,18 +215,18 @@ Info 6 [16:01:09.000] Config: /user/username/projects/myproject/dependency/ts "configFilePath": "/user/username/projects/myproject/dependency/tsconfig.json" } } -Info 7 [16:01:10.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/dependency 1 undefined Config: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Wild card directory -Info 8 [16:01:11.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/dependency 1 undefined Config: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Wild card directory -Info 9 [16:01:12.000] Plugins were requested but not running in environment that supports 'require'. Nothing will be loaded -Info 10 [16:01:13.000] Starting updateGraphWorker: Project: /user/username/projects/myproject/dependency/tsconfig.json -Info 11 [16:01:14.000] FileWatcher:: Added:: WatchInfo: /a/lib/lib.d.ts 500 undefined WatchType: Closed Script info -Info 12 [16:01:15.000] 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 13 [16:01:16.000] 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 14 [16:01:17.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Type roots -Info 15 [16:01:18.000] 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 16 [16:01:19.000] Finishing updateGraphWorker: Project: /user/username/projects/myproject/dependency/tsconfig.json Version: 1 structureChanged: true structureIsReused:: Not Elapsed:: *ms -Info 17 [16:01:20.000] Project '/user/username/projects/myproject/dependency/tsconfig.json' (Configured) -Info 18 [16:01:21.000] Files (2) +Info 7 [00:01:10.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/dependency 1 undefined Config: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Wild card directory +Info 8 [00:01:11.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/dependency 1 undefined Config: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Wild card directory +Info 9 [00:01:12.000] Plugins were requested but not running in environment that supports 'require'. Nothing will be loaded +Info 10 [00:01:13.000] Starting updateGraphWorker: Project: /user/username/projects/myproject/dependency/tsconfig.json +Info 11 [00:01:14.000] FileWatcher:: Added:: WatchInfo: /a/lib/lib.d.ts 500 undefined WatchType: Closed Script info +Info 12 [00:01:15.000] 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 13 [00:01:16.000] 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 14 [00:01:17.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Type roots +Info 15 [00:01:18.000] 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 16 [00:01:19.000] Finishing updateGraphWorker: Project: /user/username/projects/myproject/dependency/tsconfig.json Version: 1 structureChanged: true structureIsReused:: Not Elapsed:: *ms +Info 17 [00:01:20.000] Project '/user/username/projects/myproject/dependency/tsconfig.json' (Configured) +Info 18 [00:01:21.000] Files (2) /a/lib/lib.d.ts /user/username/projects/myproject/dependency/FnS.ts @@ -236,16 +236,16 @@ Info 18 [16:01:21.000] Files (2) FnS.ts Matched by default include pattern '**/*' -Info 19 [16:01:22.000] ----------------------------------------------- -Info 20 [16:01:23.000] Search path: /user/username/projects/myproject/dependency -Info 21 [16:01:24.000] For info: /user/username/projects/myproject/dependency/tsconfig.json :: No config files found. -Info 22 [16:01:25.000] Project '/user/username/projects/myproject/dependency/tsconfig.json' (Configured) -Info 22 [16:01:26.000] Files (2) +Info 19 [00:01:22.000] ----------------------------------------------- +Info 20 [00:01:23.000] Search path: /user/username/projects/myproject/dependency +Info 21 [00:01:24.000] For info: /user/username/projects/myproject/dependency/tsconfig.json :: No config files found. +Info 22 [00:01:25.000] Project '/user/username/projects/myproject/dependency/tsconfig.json' (Configured) +Info 22 [00:01:26.000] Files (2) -Info 22 [16:01:27.000] ----------------------------------------------- -Info 22 [16:01:28.000] Open files: -Info 22 [16:01:29.000] FileName: /user/username/projects/myproject/dependency/FnS.ts ProjectRootPath: undefined -Info 22 [16:01:30.000] Projects: /user/username/projects/myproject/dependency/tsconfig.json +Info 22 [00:01:27.000] ----------------------------------------------- +Info 22 [00:01:28.000] Open files: +Info 22 [00:01:29.000] FileName: /user/username/projects/myproject/dependency/FnS.ts ProjectRootPath: undefined +Info 22 [00:01:30.000] Projects: /user/username/projects/myproject/dependency/tsconfig.json After request PolledWatches:: @@ -264,11 +264,11 @@ FsWatchesRecursive:: /user/username/projects/myproject/dependency: {} -Info 22 [16:01:31.000] response: +Info 22 [00:01:31.000] response: { "responseRequired": false } -Info 23 [16:01:32.000] request: +Info 23 [00:01:32.000] request: { "seq": 0, "type": "request", @@ -295,11 +295,11 @@ FsWatchesRecursive:: /user/username/projects/myproject/dependency: {} -Info 24 [16:01:33.000] Search path: /user/username/projects/myproject/random -Info 25 [16:01:34.000] For info: /user/username/projects/myproject/random/random.ts :: Config file name: /user/username/projects/myproject/random/tsconfig.json -Info 26 [16:01:35.000] Creating configuration project /user/username/projects/myproject/random/tsconfig.json -Info 27 [16:01:36.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/random/tsconfig.json 2000 undefined Project: /user/username/projects/myproject/random/tsconfig.json WatchType: Config file -Info 28 [16:01:37.000] Config: /user/username/projects/myproject/random/tsconfig.json : { +Info 24 [00:01:33.000] Search path: /user/username/projects/myproject/random +Info 25 [00:01:34.000] For info: /user/username/projects/myproject/random/random.ts :: Config file name: /user/username/projects/myproject/random/tsconfig.json +Info 26 [00:01:35.000] Creating configuration project /user/username/projects/myproject/random/tsconfig.json +Info 27 [00:01:36.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/random/tsconfig.json 2000 undefined Project: /user/username/projects/myproject/random/tsconfig.json WatchType: Config file +Info 28 [00:01:37.000] Config: /user/username/projects/myproject/random/tsconfig.json : { "rootNames": [ "/user/username/projects/myproject/random/random.ts" ], @@ -307,17 +307,17 @@ Info 28 [16:01:37.000] Config: /user/username/projects/myproject/random/tsconf "configFilePath": "/user/username/projects/myproject/random/tsconfig.json" } } -Info 29 [16:01:38.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/random 1 undefined Config: /user/username/projects/myproject/random/tsconfig.json WatchType: Wild card directory -Info 30 [16:01:39.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/random 1 undefined Config: /user/username/projects/myproject/random/tsconfig.json WatchType: Wild card directory -Info 31 [16:01:40.000] Plugins were requested but not running in environment that supports 'require'. Nothing will be loaded -Info 32 [16:01:41.000] Starting updateGraphWorker: Project: /user/username/projects/myproject/random/tsconfig.json -Info 33 [16:01:42.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/random/node_modules/@types 1 undefined Project: /user/username/projects/myproject/random/tsconfig.json WatchType: Type roots -Info 34 [16:01:43.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/random/node_modules/@types 1 undefined Project: /user/username/projects/myproject/random/tsconfig.json WatchType: Type roots -Info 35 [16:01:44.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/random/tsconfig.json WatchType: Type roots -Info 36 [16:01:45.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/random/tsconfig.json WatchType: Type roots -Info 37 [16:01:46.000] Finishing updateGraphWorker: Project: /user/username/projects/myproject/random/tsconfig.json Version: 1 structureChanged: true structureIsReused:: Not Elapsed:: *ms -Info 38 [16:01:47.000] Project '/user/username/projects/myproject/random/tsconfig.json' (Configured) -Info 39 [16:01:48.000] Files (2) +Info 29 [00:01:38.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/random 1 undefined Config: /user/username/projects/myproject/random/tsconfig.json WatchType: Wild card directory +Info 30 [00:01:39.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/random 1 undefined Config: /user/username/projects/myproject/random/tsconfig.json WatchType: Wild card directory +Info 31 [00:01:40.000] Plugins were requested but not running in environment that supports 'require'. Nothing will be loaded +Info 32 [00:01:41.000] Starting updateGraphWorker: Project: /user/username/projects/myproject/random/tsconfig.json +Info 33 [00:01:42.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/random/node_modules/@types 1 undefined Project: /user/username/projects/myproject/random/tsconfig.json WatchType: Type roots +Info 34 [00:01:43.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/random/node_modules/@types 1 undefined Project: /user/username/projects/myproject/random/tsconfig.json WatchType: Type roots +Info 35 [00:01:44.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/random/tsconfig.json WatchType: Type roots +Info 36 [00:01:45.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/random/tsconfig.json WatchType: Type roots +Info 37 [00:01:46.000] Finishing updateGraphWorker: Project: /user/username/projects/myproject/random/tsconfig.json Version: 1 structureChanged: true structureIsReused:: Not Elapsed:: *ms +Info 38 [00:01:47.000] Project '/user/username/projects/myproject/random/tsconfig.json' (Configured) +Info 39 [00:01:48.000] Files (2) /a/lib/lib.d.ts /user/username/projects/myproject/random/random.ts @@ -327,20 +327,20 @@ Info 39 [16:01:48.000] Files (2) random.ts Matched by default include pattern '**/*' -Info 40 [16:01:49.000] ----------------------------------------------- -Info 41 [16:01:50.000] Project '/user/username/projects/myproject/dependency/tsconfig.json' (Configured) -Info 41 [16:01:51.000] Files (2) +Info 40 [00:01:49.000] ----------------------------------------------- +Info 41 [00:01:50.000] Project '/user/username/projects/myproject/dependency/tsconfig.json' (Configured) +Info 41 [00:01:51.000] Files (2) -Info 41 [16:01:52.000] ----------------------------------------------- -Info 41 [16:01:53.000] Project '/user/username/projects/myproject/random/tsconfig.json' (Configured) -Info 41 [16:01:54.000] Files (2) +Info 41 [00:01:52.000] ----------------------------------------------- +Info 41 [00:01:53.000] Project '/user/username/projects/myproject/random/tsconfig.json' (Configured) +Info 41 [00:01:54.000] Files (2) -Info 41 [16:01:55.000] ----------------------------------------------- -Info 41 [16:01:56.000] Open files: -Info 41 [16:01:57.000] FileName: /user/username/projects/myproject/dependency/FnS.ts ProjectRootPath: undefined -Info 41 [16:01:58.000] Projects: /user/username/projects/myproject/dependency/tsconfig.json -Info 41 [16:01:59.000] FileName: /user/username/projects/myproject/random/random.ts ProjectRootPath: undefined -Info 41 [16:02:00.000] Projects: /user/username/projects/myproject/random/tsconfig.json +Info 41 [00:01:55.000] ----------------------------------------------- +Info 41 [00:01:56.000] Open files: +Info 41 [00:01:57.000] FileName: /user/username/projects/myproject/dependency/FnS.ts ProjectRootPath: undefined +Info 41 [00:01:58.000] Projects: /user/username/projects/myproject/dependency/tsconfig.json +Info 41 [00:01:59.000] FileName: /user/username/projects/myproject/random/random.ts ProjectRootPath: undefined +Info 41 [00:02:00.000] Projects: /user/username/projects/myproject/random/tsconfig.json After request PolledWatches:: @@ -365,11 +365,11 @@ FsWatchesRecursive:: /user/username/projects/myproject/random: {} -Info 41 [16:02:01.000] response: +Info 41 [00:02:01.000] response: { "responseRequired": false } -Info 42 [16:02:02.000] request: +Info 42 [00:02:02.000] request: { "command": "rename", "arguments": { @@ -404,8 +404,8 @@ FsWatchesRecursive:: /user/username/projects/myproject/random: {} -Info 43 [16:02:03.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/decls/FnS.d.ts 500 undefined WatchType: Closed Script info -Info 44 [16:02:04.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/decls/FnS.d.ts.map 500 undefined WatchType: Closed Script info +Info 43 [00:02:03.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/decls/FnS.d.ts 500 undefined WatchType: Closed Script info +Info 44 [00:02:04.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/decls/FnS.d.ts.map 500 undefined WatchType: Closed Script info After request PolledWatches:: @@ -434,7 +434,7 @@ FsWatchesRecursive:: /user/username/projects/myproject/random: {} -Info 45 [16:02:05.000] response: +Info 45 [00:02:05.000] response: { "response": { "info": { @@ -482,7 +482,7 @@ Info 45 [16:02:05.000] response: }, "responseRequired": true } -Info 46 [16:02:06.000] request: +Info 46 [00:02:06.000] request: { "command": "rename", "arguments": { @@ -549,7 +549,7 @@ FsWatchesRecursive:: /user/username/projects/myproject/random: {} -Info 47 [16:02:07.000] response: +Info 47 [00:02:07.000] response: { "response": { "info": { @@ -597,7 +597,7 @@ Info 47 [16:02:07.000] response: }, "responseRequired": true } -Info 48 [16:02:08.000] request: +Info 48 [00:02:08.000] request: { "command": "rename", "arguments": { @@ -664,7 +664,7 @@ FsWatchesRecursive:: /user/username/projects/myproject/random: {} -Info 49 [16:02:09.000] response: +Info 49 [00:02:09.000] response: { "response": { "info": { @@ -712,7 +712,7 @@ Info 49 [16:02:09.000] response: }, "responseRequired": true } -Info 50 [16:02:10.000] request: +Info 50 [00:02:10.000] request: { "command": "rename", "arguments": { @@ -779,7 +779,7 @@ FsWatchesRecursive:: /user/username/projects/myproject/random: {} -Info 51 [16:02:11.000] response: +Info 51 [00:02:11.000] response: { "response": { "info": { @@ -827,7 +827,7 @@ Info 51 [16:02:11.000] response: }, "responseRequired": true } -Info 52 [16:02:12.000] request: +Info 52 [00:02:12.000] request: { "command": "rename", "arguments": { @@ -894,7 +894,7 @@ FsWatchesRecursive:: /user/username/projects/myproject/random: {} -Info 53 [16:02:13.000] response: +Info 53 [00:02:13.000] response: { "response": { "info": { @@ -942,7 +942,7 @@ Info 53 [16:02:13.000] response: }, "responseRequired": true } -Info 54 [16:02:14.000] request: +Info 54 [00:02:14.000] request: { "seq": 0, "type": "request", @@ -979,18 +979,18 @@ FsWatchesRecursive:: /user/username/projects/myproject/random: {} -Info 55 [16:02:15.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/random/random.ts 500 undefined WatchType: Closed Script info -Info 56 [16:02:16.000] Project '/user/username/projects/myproject/dependency/tsconfig.json' (Configured) -Info 56 [16:02:17.000] Files (2) +Info 55 [00:02:15.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/random/random.ts 500 undefined WatchType: Closed Script info +Info 56 [00:02:16.000] Project '/user/username/projects/myproject/dependency/tsconfig.json' (Configured) +Info 56 [00:02:17.000] Files (2) -Info 56 [16:02:18.000] ----------------------------------------------- -Info 56 [16:02:19.000] Project '/user/username/projects/myproject/random/tsconfig.json' (Configured) -Info 56 [16:02:20.000] Files (2) +Info 56 [00:02:18.000] ----------------------------------------------- +Info 56 [00:02:19.000] Project '/user/username/projects/myproject/random/tsconfig.json' (Configured) +Info 56 [00:02:20.000] Files (2) -Info 56 [16:02:21.000] ----------------------------------------------- -Info 56 [16:02:22.000] Open files: -Info 56 [16:02:23.000] FileName: /user/username/projects/myproject/dependency/FnS.ts ProjectRootPath: undefined -Info 56 [16:02:24.000] Projects: /user/username/projects/myproject/dependency/tsconfig.json +Info 56 [00:02:21.000] ----------------------------------------------- +Info 56 [00:02:22.000] Open files: +Info 56 [00:02:23.000] FileName: /user/username/projects/myproject/dependency/FnS.ts ProjectRootPath: undefined +Info 56 [00:02:24.000] Projects: /user/username/projects/myproject/dependency/tsconfig.json After request PolledWatches:: @@ -1021,11 +1021,11 @@ FsWatchesRecursive:: /user/username/projects/myproject/random: {} -Info 56 [16:02:25.000] response: +Info 56 [00:02:25.000] response: { "responseRequired": false } -Info 57 [16:02:26.000] request: +Info 57 [00:02:26.000] request: { "seq": 0, "type": "request", @@ -1064,22 +1064,22 @@ FsWatchesRecursive:: /user/username/projects/myproject/random: {} -Info 58 [16:02:27.000] FileWatcher:: Close:: WatchInfo: /user/username/projects/myproject/random/random.ts 500 undefined WatchType: Closed Script info -Info 59 [16:02:28.000] Search path: /user/username/projects/myproject/random -Info 60 [16:02:29.000] For info: /user/username/projects/myproject/random/random.ts :: Config file name: /user/username/projects/myproject/random/tsconfig.json -Info 61 [16:02:30.000] Project '/user/username/projects/myproject/dependency/tsconfig.json' (Configured) -Info 61 [16:02:31.000] Files (2) +Info 58 [00:02:27.000] FileWatcher:: Close:: WatchInfo: /user/username/projects/myproject/random/random.ts 500 undefined WatchType: Closed Script info +Info 59 [00:02:28.000] Search path: /user/username/projects/myproject/random +Info 60 [00:02:29.000] For info: /user/username/projects/myproject/random/random.ts :: Config file name: /user/username/projects/myproject/random/tsconfig.json +Info 61 [00:02:30.000] Project '/user/username/projects/myproject/dependency/tsconfig.json' (Configured) +Info 61 [00:02:31.000] Files (2) -Info 61 [16:02:32.000] ----------------------------------------------- -Info 61 [16:02:33.000] Project '/user/username/projects/myproject/random/tsconfig.json' (Configured) -Info 61 [16:02:34.000] Files (2) +Info 61 [00:02:32.000] ----------------------------------------------- +Info 61 [00:02:33.000] Project '/user/username/projects/myproject/random/tsconfig.json' (Configured) +Info 61 [00:02:34.000] Files (2) -Info 61 [16:02:35.000] ----------------------------------------------- -Info 61 [16:02:36.000] Open files: -Info 61 [16:02:37.000] FileName: /user/username/projects/myproject/dependency/FnS.ts ProjectRootPath: undefined -Info 61 [16:02:38.000] Projects: /user/username/projects/myproject/dependency/tsconfig.json -Info 61 [16:02:39.000] FileName: /user/username/projects/myproject/random/random.ts ProjectRootPath: undefined -Info 61 [16:02:40.000] Projects: /user/username/projects/myproject/random/tsconfig.json +Info 61 [00:02:35.000] ----------------------------------------------- +Info 61 [00:02:36.000] Open files: +Info 61 [00:02:37.000] FileName: /user/username/projects/myproject/dependency/FnS.ts ProjectRootPath: undefined +Info 61 [00:02:38.000] Projects: /user/username/projects/myproject/dependency/tsconfig.json +Info 61 [00:02:39.000] FileName: /user/username/projects/myproject/random/random.ts ProjectRootPath: undefined +Info 61 [00:02:40.000] Projects: /user/username/projects/myproject/random/tsconfig.json After request PolledWatches:: @@ -1108,11 +1108,11 @@ FsWatchesRecursive:: /user/username/projects/myproject/random: {} -Info 61 [16:02:41.000] response: +Info 61 [00:02:41.000] response: { "responseRequired": false } -Info 62 [16:02:42.000] request: +Info 62 [00:02:42.000] request: { "seq": 0, "type": "request", @@ -1149,18 +1149,18 @@ FsWatchesRecursive:: /user/username/projects/myproject/random: {} -Info 63 [16:02:43.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/dependency/FnS.ts 500 undefined WatchType: Closed Script info -Info 64 [16:02:44.000] Project '/user/username/projects/myproject/dependency/tsconfig.json' (Configured) -Info 64 [16:02:45.000] Files (2) +Info 63 [00:02:43.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/dependency/FnS.ts 500 undefined WatchType: Closed Script info +Info 64 [00:02:44.000] Project '/user/username/projects/myproject/dependency/tsconfig.json' (Configured) +Info 64 [00:02:45.000] Files (2) -Info 64 [16:02:46.000] ----------------------------------------------- -Info 64 [16:02:47.000] Project '/user/username/projects/myproject/random/tsconfig.json' (Configured) -Info 64 [16:02:48.000] Files (2) +Info 64 [00:02:46.000] ----------------------------------------------- +Info 64 [00:02:47.000] Project '/user/username/projects/myproject/random/tsconfig.json' (Configured) +Info 64 [00:02:48.000] Files (2) -Info 64 [16:02:49.000] ----------------------------------------------- -Info 64 [16:02:50.000] Open files: -Info 64 [16:02:51.000] FileName: /user/username/projects/myproject/random/random.ts ProjectRootPath: undefined -Info 64 [16:02:52.000] Projects: /user/username/projects/myproject/random/tsconfig.json +Info 64 [00:02:49.000] ----------------------------------------------- +Info 64 [00:02:50.000] Open files: +Info 64 [00:02:51.000] FileName: /user/username/projects/myproject/random/random.ts ProjectRootPath: undefined +Info 64 [00:02:52.000] Projects: /user/username/projects/myproject/random/tsconfig.json After request PolledWatches:: @@ -1191,11 +1191,11 @@ FsWatchesRecursive:: /user/username/projects/myproject/random: {} -Info 64 [16:02:53.000] response: +Info 64 [00:02:53.000] response: { "responseRequired": false } -Info 65 [16:02:54.000] request: +Info 65 [00:02:54.000] request: { "seq": 0, "type": "request", @@ -1234,16 +1234,16 @@ FsWatchesRecursive:: /user/username/projects/myproject/random: {} -Info 66 [16:02:55.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/random/random.ts 500 undefined WatchType: Closed Script info -Info 67 [16:02:56.000] Project '/user/username/projects/myproject/dependency/tsconfig.json' (Configured) -Info 67 [16:02:57.000] Files (2) +Info 66 [00:02:55.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/random/random.ts 500 undefined WatchType: Closed Script info +Info 67 [00:02:56.000] Project '/user/username/projects/myproject/dependency/tsconfig.json' (Configured) +Info 67 [00:02:57.000] Files (2) -Info 67 [16:02:58.000] ----------------------------------------------- -Info 67 [16:02:59.000] Project '/user/username/projects/myproject/random/tsconfig.json' (Configured) -Info 67 [16:03:00.000] Files (2) +Info 67 [00:02:58.000] ----------------------------------------------- +Info 67 [00:02:59.000] Project '/user/username/projects/myproject/random/tsconfig.json' (Configured) +Info 67 [00:03:00.000] Files (2) -Info 67 [16:03:01.000] ----------------------------------------------- -Info 67 [16:03:02.000] Open files: +Info 67 [00:03:01.000] ----------------------------------------------- +Info 67 [00:03:02.000] Open files: After request PolledWatches:: @@ -1276,11 +1276,11 @@ FsWatchesRecursive:: /user/username/projects/myproject/random: {} -Info 67 [16:03:03.000] response: +Info 67 [00:03:03.000] response: { "responseRequired": false } -Info 68 [16:03:04.000] request: +Info 68 [00:03:04.000] request: { "seq": 0, "type": "request", @@ -1321,12 +1321,12 @@ FsWatchesRecursive:: /user/username/projects/myproject/random: {} -Info 69 [16:03:05.000] FileWatcher:: Close:: WatchInfo: /user/username/projects/myproject/random/random.ts 500 undefined WatchType: Closed Script info -Info 70 [16:03:06.000] Search path: /user/username/projects/myproject/random -Info 71 [16:03:07.000] For info: /user/username/projects/myproject/random/random.ts :: Config file name: /user/username/projects/myproject/random/tsconfig.json -Info 72 [16:03:08.000] `remove Project:: -Info 73 [16:03:09.000] Project '/user/username/projects/myproject/dependency/tsconfig.json' (Configured) -Info 74 [16:03:10.000] Files (2) +Info 69 [00:03:05.000] FileWatcher:: Close:: WatchInfo: /user/username/projects/myproject/random/random.ts 500 undefined WatchType: Closed Script info +Info 70 [00:03:06.000] Search path: /user/username/projects/myproject/random +Info 71 [00:03:07.000] For info: /user/username/projects/myproject/random/random.ts :: Config file name: /user/username/projects/myproject/random/tsconfig.json +Info 72 [00:03:08.000] `remove Project:: +Info 73 [00:03:09.000] Project '/user/username/projects/myproject/dependency/tsconfig.json' (Configured) +Info 74 [00:03:10.000] Files (2) /a/lib/lib.d.ts /user/username/projects/myproject/dependency/FnS.ts @@ -1336,24 +1336,24 @@ Info 74 [16:03:10.000] Files (2) FnS.ts Matched by default include pattern '**/*' -Info 75 [16:03:11.000] ----------------------------------------------- -Info 76 [16:03:12.000] DirectoryWatcher:: Close:: WatchInfo: /user/username/projects/myproject/dependency 1 undefined Config: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Wild card directory -Info 77 [16:03:13.000] 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 78 [16:03:14.000] FileWatcher:: Close:: WatchInfo: /user/username/projects/myproject/dependency/tsconfig.json 2000 undefined Project: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Config file -Info 79 [16:03:15.000] 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 80 [16:03:16.000] 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 81 [16:03:17.000] DirectoryWatcher:: Close:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Type roots -Info 82 [16:03:18.000] 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 83 [16:03:19.000] FileWatcher:: Close:: WatchInfo: /user/username/projects/myproject/dependency/FnS.ts 500 undefined WatchType: Closed Script info -Info 84 [16:03:20.000] FileWatcher:: Close:: WatchInfo: /user/username/projects/myproject/decls/FnS.d.ts 500 undefined WatchType: Closed Script info -Info 85 [16:03:21.000] FileWatcher:: Close:: WatchInfo: /user/username/projects/myproject/decls/FnS.d.ts.map 500 undefined WatchType: Closed Script info -Info 86 [16:03:22.000] Project '/user/username/projects/myproject/random/tsconfig.json' (Configured) -Info 86 [16:03:23.000] Files (2) - -Info 86 [16:03:24.000] ----------------------------------------------- -Info 86 [16:03:25.000] Open files: -Info 86 [16:03:26.000] FileName: /user/username/projects/myproject/random/random.ts ProjectRootPath: undefined -Info 86 [16:03:27.000] Projects: /user/username/projects/myproject/random/tsconfig.json +Info 75 [00:03:11.000] ----------------------------------------------- +Info 76 [00:03:12.000] DirectoryWatcher:: Close:: WatchInfo: /user/username/projects/myproject/dependency 1 undefined Config: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Wild card directory +Info 77 [00:03:13.000] 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 78 [00:03:14.000] FileWatcher:: Close:: WatchInfo: /user/username/projects/myproject/dependency/tsconfig.json 2000 undefined Project: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Config file +Info 79 [00:03:15.000] 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 80 [00:03:16.000] 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 81 [00:03:17.000] DirectoryWatcher:: Close:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Type roots +Info 82 [00:03:18.000] 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 83 [00:03:19.000] FileWatcher:: Close:: WatchInfo: /user/username/projects/myproject/dependency/FnS.ts 500 undefined WatchType: Closed Script info +Info 84 [00:03:20.000] FileWatcher:: Close:: WatchInfo: /user/username/projects/myproject/decls/FnS.d.ts 500 undefined WatchType: Closed Script info +Info 85 [00:03:21.000] FileWatcher:: Close:: WatchInfo: /user/username/projects/myproject/decls/FnS.d.ts.map 500 undefined WatchType: Closed Script info +Info 86 [00:03:22.000] Project '/user/username/projects/myproject/random/tsconfig.json' (Configured) +Info 86 [00:03:23.000] Files (2) + +Info 86 [00:03:24.000] ----------------------------------------------- +Info 86 [00:03:25.000] Open files: +Info 86 [00:03:26.000] FileName: /user/username/projects/myproject/random/random.ts ProjectRootPath: undefined +Info 86 [00:03:27.000] Projects: /user/username/projects/myproject/random/tsconfig.json After request PolledWatches:: @@ -1372,7 +1372,7 @@ FsWatchesRecursive:: /user/username/projects/myproject/random: {} -Info 86 [16:03:28.000] response: +Info 86 [00:03:28.000] response: { "responseRequired": false } \ No newline at end of file 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 6826710a0cab4..f167dd0af9c7c 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 @@ -1,5 +1,5 @@ -Info 0 [16:01:03.000] Provided types map file "/a/lib/typesMap.json" doesn't exist -Info 1 [16:01:04.000] request: +Info 0 [00:01:03.000] Provided types map file "/a/lib/typesMap.json" doesn't exist +Info 1 [00:01:04.000] request: { "seq": 0, "type": "request", @@ -200,11 +200,11 @@ FsWatches:: FsWatchesRecursive:: -Info 2 [16:01:05.000] Search path: /user/username/projects/myproject/dependency -Info 3 [16:01:06.000] For info: /user/username/projects/myproject/dependency/FnS.ts :: Config file name: /user/username/projects/myproject/dependency/tsconfig.json -Info 4 [16:01:07.000] Creating configuration project /user/username/projects/myproject/dependency/tsconfig.json -Info 5 [16:01:08.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/dependency/tsconfig.json 2000 undefined Project: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Config file -Info 6 [16:01:09.000] Config: /user/username/projects/myproject/dependency/tsconfig.json : { +Info 2 [00:01:05.000] Search path: /user/username/projects/myproject/dependency +Info 3 [00:01:06.000] For info: /user/username/projects/myproject/dependency/FnS.ts :: Config file name: /user/username/projects/myproject/dependency/tsconfig.json +Info 4 [00:01:07.000] Creating configuration project /user/username/projects/myproject/dependency/tsconfig.json +Info 5 [00:01:08.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/dependency/tsconfig.json 2000 undefined Project: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Config file +Info 6 [00:01:09.000] Config: /user/username/projects/myproject/dependency/tsconfig.json : { "rootNames": [ "/user/username/projects/myproject/dependency/FnS.ts" ], @@ -215,18 +215,18 @@ Info 6 [16:01:09.000] Config: /user/username/projects/myproject/dependency/ts "configFilePath": "/user/username/projects/myproject/dependency/tsconfig.json" } } -Info 7 [16:01:10.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/dependency 1 undefined Config: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Wild card directory -Info 8 [16:01:11.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/dependency 1 undefined Config: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Wild card directory -Info 9 [16:01:12.000] Plugins were requested but not running in environment that supports 'require'. Nothing will be loaded -Info 10 [16:01:13.000] Starting updateGraphWorker: Project: /user/username/projects/myproject/dependency/tsconfig.json -Info 11 [16:01:14.000] FileWatcher:: Added:: WatchInfo: /a/lib/lib.d.ts 500 undefined WatchType: Closed Script info -Info 12 [16:01:15.000] 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 13 [16:01:16.000] 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 14 [16:01:17.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Type roots -Info 15 [16:01:18.000] 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 16 [16:01:19.000] Finishing updateGraphWorker: Project: /user/username/projects/myproject/dependency/tsconfig.json Version: 1 structureChanged: true structureIsReused:: Not Elapsed:: *ms -Info 17 [16:01:20.000] Project '/user/username/projects/myproject/dependency/tsconfig.json' (Configured) -Info 18 [16:01:21.000] Files (2) +Info 7 [00:01:10.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/dependency 1 undefined Config: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Wild card directory +Info 8 [00:01:11.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/dependency 1 undefined Config: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Wild card directory +Info 9 [00:01:12.000] Plugins were requested but not running in environment that supports 'require'. Nothing will be loaded +Info 10 [00:01:13.000] Starting updateGraphWorker: Project: /user/username/projects/myproject/dependency/tsconfig.json +Info 11 [00:01:14.000] FileWatcher:: Added:: WatchInfo: /a/lib/lib.d.ts 500 undefined WatchType: Closed Script info +Info 12 [00:01:15.000] 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 13 [00:01:16.000] 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 14 [00:01:17.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Type roots +Info 15 [00:01:18.000] 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 16 [00:01:19.000] Finishing updateGraphWorker: Project: /user/username/projects/myproject/dependency/tsconfig.json Version: 1 structureChanged: true structureIsReused:: Not Elapsed:: *ms +Info 17 [00:01:20.000] Project '/user/username/projects/myproject/dependency/tsconfig.json' (Configured) +Info 18 [00:01:21.000] Files (2) /a/lib/lib.d.ts /user/username/projects/myproject/dependency/FnS.ts @@ -236,16 +236,16 @@ Info 18 [16:01:21.000] Files (2) FnS.ts Matched by default include pattern '**/*' -Info 19 [16:01:22.000] ----------------------------------------------- -Info 20 [16:01:23.000] Search path: /user/username/projects/myproject/dependency -Info 21 [16:01:24.000] For info: /user/username/projects/myproject/dependency/tsconfig.json :: No config files found. -Info 22 [16:01:25.000] Project '/user/username/projects/myproject/dependency/tsconfig.json' (Configured) -Info 22 [16:01:26.000] Files (2) +Info 19 [00:01:22.000] ----------------------------------------------- +Info 20 [00:01:23.000] Search path: /user/username/projects/myproject/dependency +Info 21 [00:01:24.000] For info: /user/username/projects/myproject/dependency/tsconfig.json :: No config files found. +Info 22 [00:01:25.000] Project '/user/username/projects/myproject/dependency/tsconfig.json' (Configured) +Info 22 [00:01:26.000] Files (2) -Info 22 [16:01:27.000] ----------------------------------------------- -Info 22 [16:01:28.000] Open files: -Info 22 [16:01:29.000] FileName: /user/username/projects/myproject/dependency/FnS.ts ProjectRootPath: undefined -Info 22 [16:01:30.000] Projects: /user/username/projects/myproject/dependency/tsconfig.json +Info 22 [00:01:27.000] ----------------------------------------------- +Info 22 [00:01:28.000] Open files: +Info 22 [00:01:29.000] FileName: /user/username/projects/myproject/dependency/FnS.ts ProjectRootPath: undefined +Info 22 [00:01:30.000] Projects: /user/username/projects/myproject/dependency/tsconfig.json After request PolledWatches:: @@ -264,11 +264,11 @@ FsWatchesRecursive:: /user/username/projects/myproject/dependency: {} -Info 22 [16:01:31.000] response: +Info 22 [00:01:31.000] response: { "responseRequired": false } -Info 23 [16:01:32.000] request: +Info 23 [00:01:32.000] request: { "seq": 0, "type": "request", @@ -295,11 +295,11 @@ FsWatchesRecursive:: /user/username/projects/myproject/dependency: {} -Info 24 [16:01:33.000] Search path: /user/username/projects/myproject/random -Info 25 [16:01:34.000] For info: /user/username/projects/myproject/random/random.ts :: Config file name: /user/username/projects/myproject/random/tsconfig.json -Info 26 [16:01:35.000] Creating configuration project /user/username/projects/myproject/random/tsconfig.json -Info 27 [16:01:36.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/random/tsconfig.json 2000 undefined Project: /user/username/projects/myproject/random/tsconfig.json WatchType: Config file -Info 28 [16:01:37.000] Config: /user/username/projects/myproject/random/tsconfig.json : { +Info 24 [00:01:33.000] Search path: /user/username/projects/myproject/random +Info 25 [00:01:34.000] For info: /user/username/projects/myproject/random/random.ts :: Config file name: /user/username/projects/myproject/random/tsconfig.json +Info 26 [00:01:35.000] Creating configuration project /user/username/projects/myproject/random/tsconfig.json +Info 27 [00:01:36.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/random/tsconfig.json 2000 undefined Project: /user/username/projects/myproject/random/tsconfig.json WatchType: Config file +Info 28 [00:01:37.000] Config: /user/username/projects/myproject/random/tsconfig.json : { "rootNames": [ "/user/username/projects/myproject/random/random.ts" ], @@ -307,17 +307,17 @@ Info 28 [16:01:37.000] Config: /user/username/projects/myproject/random/tsconf "configFilePath": "/user/username/projects/myproject/random/tsconfig.json" } } -Info 29 [16:01:38.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/random 1 undefined Config: /user/username/projects/myproject/random/tsconfig.json WatchType: Wild card directory -Info 30 [16:01:39.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/random 1 undefined Config: /user/username/projects/myproject/random/tsconfig.json WatchType: Wild card directory -Info 31 [16:01:40.000] Plugins were requested but not running in environment that supports 'require'. Nothing will be loaded -Info 32 [16:01:41.000] Starting updateGraphWorker: Project: /user/username/projects/myproject/random/tsconfig.json -Info 33 [16:01:42.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/random/node_modules/@types 1 undefined Project: /user/username/projects/myproject/random/tsconfig.json WatchType: Type roots -Info 34 [16:01:43.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/random/node_modules/@types 1 undefined Project: /user/username/projects/myproject/random/tsconfig.json WatchType: Type roots -Info 35 [16:01:44.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/random/tsconfig.json WatchType: Type roots -Info 36 [16:01:45.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/random/tsconfig.json WatchType: Type roots -Info 37 [16:01:46.000] Finishing updateGraphWorker: Project: /user/username/projects/myproject/random/tsconfig.json Version: 1 structureChanged: true structureIsReused:: Not Elapsed:: *ms -Info 38 [16:01:47.000] Project '/user/username/projects/myproject/random/tsconfig.json' (Configured) -Info 39 [16:01:48.000] Files (2) +Info 29 [00:01:38.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/random 1 undefined Config: /user/username/projects/myproject/random/tsconfig.json WatchType: Wild card directory +Info 30 [00:01:39.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/random 1 undefined Config: /user/username/projects/myproject/random/tsconfig.json WatchType: Wild card directory +Info 31 [00:01:40.000] Plugins were requested but not running in environment that supports 'require'. Nothing will be loaded +Info 32 [00:01:41.000] Starting updateGraphWorker: Project: /user/username/projects/myproject/random/tsconfig.json +Info 33 [00:01:42.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/random/node_modules/@types 1 undefined Project: /user/username/projects/myproject/random/tsconfig.json WatchType: Type roots +Info 34 [00:01:43.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/random/node_modules/@types 1 undefined Project: /user/username/projects/myproject/random/tsconfig.json WatchType: Type roots +Info 35 [00:01:44.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/random/tsconfig.json WatchType: Type roots +Info 36 [00:01:45.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/random/tsconfig.json WatchType: Type roots +Info 37 [00:01:46.000] Finishing updateGraphWorker: Project: /user/username/projects/myproject/random/tsconfig.json Version: 1 structureChanged: true structureIsReused:: Not Elapsed:: *ms +Info 38 [00:01:47.000] Project '/user/username/projects/myproject/random/tsconfig.json' (Configured) +Info 39 [00:01:48.000] Files (2) /a/lib/lib.d.ts /user/username/projects/myproject/random/random.ts @@ -327,20 +327,20 @@ Info 39 [16:01:48.000] Files (2) random.ts Matched by default include pattern '**/*' -Info 40 [16:01:49.000] ----------------------------------------------- -Info 41 [16:01:50.000] Project '/user/username/projects/myproject/dependency/tsconfig.json' (Configured) -Info 41 [16:01:51.000] Files (2) +Info 40 [00:01:49.000] ----------------------------------------------- +Info 41 [00:01:50.000] Project '/user/username/projects/myproject/dependency/tsconfig.json' (Configured) +Info 41 [00:01:51.000] Files (2) -Info 41 [16:01:52.000] ----------------------------------------------- -Info 41 [16:01:53.000] Project '/user/username/projects/myproject/random/tsconfig.json' (Configured) -Info 41 [16:01:54.000] Files (2) +Info 41 [00:01:52.000] ----------------------------------------------- +Info 41 [00:01:53.000] Project '/user/username/projects/myproject/random/tsconfig.json' (Configured) +Info 41 [00:01:54.000] Files (2) -Info 41 [16:01:55.000] ----------------------------------------------- -Info 41 [16:01:56.000] Open files: -Info 41 [16:01:57.000] FileName: /user/username/projects/myproject/dependency/FnS.ts ProjectRootPath: undefined -Info 41 [16:01:58.000] Projects: /user/username/projects/myproject/dependency/tsconfig.json -Info 41 [16:01:59.000] FileName: /user/username/projects/myproject/random/random.ts ProjectRootPath: undefined -Info 41 [16:02:00.000] Projects: /user/username/projects/myproject/random/tsconfig.json +Info 41 [00:01:55.000] ----------------------------------------------- +Info 41 [00:01:56.000] Open files: +Info 41 [00:01:57.000] FileName: /user/username/projects/myproject/dependency/FnS.ts ProjectRootPath: undefined +Info 41 [00:01:58.000] Projects: /user/username/projects/myproject/dependency/tsconfig.json +Info 41 [00:01:59.000] FileName: /user/username/projects/myproject/random/random.ts ProjectRootPath: undefined +Info 41 [00:02:00.000] Projects: /user/username/projects/myproject/random/tsconfig.json After request PolledWatches:: @@ -365,11 +365,11 @@ FsWatchesRecursive:: /user/username/projects/myproject/random: {} -Info 41 [16:02:01.000] response: +Info 41 [00:02:01.000] response: { "responseRequired": false } -Info 42 [16:02:02.000] request: +Info 42 [00:02:02.000] request: { "command": "rename", "arguments": { @@ -404,8 +404,8 @@ FsWatchesRecursive:: /user/username/projects/myproject/random: {} -Info 43 [16:02:03.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/decls/FnS.d.ts 500 undefined WatchType: Closed Script info -Info 44 [16:02:04.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/decls/FnS.d.ts.map 500 undefined WatchType: Closed Script info +Info 43 [00:02:03.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/decls/FnS.d.ts 500 undefined WatchType: Closed Script info +Info 44 [00:02:04.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/decls/FnS.d.ts.map 500 undefined WatchType: Closed Script info After request PolledWatches:: @@ -434,7 +434,7 @@ FsWatchesRecursive:: /user/username/projects/myproject/random: {} -Info 45 [16:02:05.000] response: +Info 45 [00:02:05.000] response: { "response": { "info": { @@ -482,7 +482,7 @@ Info 45 [16:02:05.000] response: }, "responseRequired": true } -Info 46 [16:02:06.000] request: +Info 46 [00:02:06.000] request: { "command": "change", "arguments": { @@ -552,7 +552,7 @@ FsWatchesRecursive:: /user/username/projects/myproject/random: {} -Info 47 [16:02:07.000] response: +Info 47 [00:02:07.000] response: { "responseRequired": false } @@ -612,7 +612,7 @@ FsWatchesRecursive:: /user/username/projects/myproject/random: {} -Info 48 [16:02:08.000] request: +Info 48 [00:02:08.000] request: { "command": "rename", "arguments": { @@ -651,9 +651,9 @@ FsWatchesRecursive:: /user/username/projects/myproject/random: {} -Info 49 [16:02:09.000] Starting updateGraphWorker: Project: /user/username/projects/myproject/dependency/tsconfig.json -Info 50 [16:02:10.000] Finishing updateGraphWorker: Project: /user/username/projects/myproject/dependency/tsconfig.json Version: 2 structureChanged: false structureIsReused:: Completely Elapsed:: *ms -Info 51 [16:02:11.000] Different program with same set of files +Info 49 [00:02:09.000] Starting updateGraphWorker: Project: /user/username/projects/myproject/dependency/tsconfig.json +Info 50 [00:02:10.000] Finishing updateGraphWorker: Project: /user/username/projects/myproject/dependency/tsconfig.json Version: 2 structureChanged: false structureIsReused:: Completely Elapsed:: *ms +Info 51 [00:02:11.000] Different program with same set of files After request PolledWatches:: @@ -682,7 +682,7 @@ FsWatchesRecursive:: /user/username/projects/myproject/random: {} -Info 52 [16:02:12.000] response: +Info 52 [00:02:12.000] response: { "response": { "info": { @@ -730,7 +730,7 @@ Info 52 [16:02:12.000] response: }, "responseRequired": true } -Info 53 [16:02:13.000] request: +Info 53 [00:02:13.000] request: { "command": "rename", "arguments": { @@ -797,7 +797,7 @@ FsWatchesRecursive:: /user/username/projects/myproject/random: {} -Info 54 [16:02:14.000] response: +Info 54 [00:02:14.000] response: { "response": { "info": { @@ -845,7 +845,7 @@ Info 54 [16:02:14.000] response: }, "responseRequired": true } -Info 55 [16:02:15.000] request: +Info 55 [00:02:15.000] request: { "command": "rename", "arguments": { @@ -912,7 +912,7 @@ FsWatchesRecursive:: /user/username/projects/myproject/random: {} -Info 56 [16:02:16.000] response: +Info 56 [00:02:16.000] response: { "response": { "info": { @@ -960,7 +960,7 @@ Info 56 [16:02:16.000] response: }, "responseRequired": true } -Info 57 [16:02:17.000] request: +Info 57 [00:02:17.000] request: { "command": "rename", "arguments": { @@ -1027,7 +1027,7 @@ FsWatchesRecursive:: /user/username/projects/myproject/random: {} -Info 58 [16:02:18.000] response: +Info 58 [00:02:18.000] response: { "response": { "info": { @@ -1075,7 +1075,7 @@ Info 58 [16:02:18.000] response: }, "responseRequired": true } -Info 59 [16:02:19.000] request: +Info 59 [00:02:19.000] request: { "command": "rename", "arguments": { @@ -1142,7 +1142,7 @@ FsWatchesRecursive:: /user/username/projects/myproject/random: {} -Info 60 [16:02:20.000] response: +Info 60 [00:02:20.000] response: { "response": { "info": { 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 a08e9172bb382..be2f9ea3482e2 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 @@ -1,5 +1,5 @@ -Info 0 [16:01:03.000] Provided types map file "/a/lib/typesMap.json" doesn't exist -Info 1 [16:01:04.000] request: +Info 0 [00:01:03.000] Provided types map file "/a/lib/typesMap.json" doesn't exist +Info 1 [00:01:04.000] request: { "seq": 0, "type": "request", @@ -200,11 +200,11 @@ FsWatches:: FsWatchesRecursive:: -Info 2 [16:01:05.000] Search path: /user/username/projects/myproject/dependency -Info 3 [16:01:06.000] For info: /user/username/projects/myproject/dependency/FnS.ts :: Config file name: /user/username/projects/myproject/dependency/tsconfig.json -Info 4 [16:01:07.000] Creating configuration project /user/username/projects/myproject/dependency/tsconfig.json -Info 5 [16:01:08.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/dependency/tsconfig.json 2000 undefined Project: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Config file -Info 6 [16:01:09.000] Config: /user/username/projects/myproject/dependency/tsconfig.json : { +Info 2 [00:01:05.000] Search path: /user/username/projects/myproject/dependency +Info 3 [00:01:06.000] For info: /user/username/projects/myproject/dependency/FnS.ts :: Config file name: /user/username/projects/myproject/dependency/tsconfig.json +Info 4 [00:01:07.000] Creating configuration project /user/username/projects/myproject/dependency/tsconfig.json +Info 5 [00:01:08.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/dependency/tsconfig.json 2000 undefined Project: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Config file +Info 6 [00:01:09.000] Config: /user/username/projects/myproject/dependency/tsconfig.json : { "rootNames": [ "/user/username/projects/myproject/dependency/FnS.ts" ], @@ -215,18 +215,18 @@ Info 6 [16:01:09.000] Config: /user/username/projects/myproject/dependency/ts "configFilePath": "/user/username/projects/myproject/dependency/tsconfig.json" } } -Info 7 [16:01:10.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/dependency 1 undefined Config: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Wild card directory -Info 8 [16:01:11.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/dependency 1 undefined Config: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Wild card directory -Info 9 [16:01:12.000] Plugins were requested but not running in environment that supports 'require'. Nothing will be loaded -Info 10 [16:01:13.000] Starting updateGraphWorker: Project: /user/username/projects/myproject/dependency/tsconfig.json -Info 11 [16:01:14.000] FileWatcher:: Added:: WatchInfo: /a/lib/lib.d.ts 500 undefined WatchType: Closed Script info -Info 12 [16:01:15.000] 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 13 [16:01:16.000] 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 14 [16:01:17.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Type roots -Info 15 [16:01:18.000] 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 16 [16:01:19.000] Finishing updateGraphWorker: Project: /user/username/projects/myproject/dependency/tsconfig.json Version: 1 structureChanged: true structureIsReused:: Not Elapsed:: *ms -Info 17 [16:01:20.000] Project '/user/username/projects/myproject/dependency/tsconfig.json' (Configured) -Info 18 [16:01:21.000] Files (2) +Info 7 [00:01:10.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/dependency 1 undefined Config: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Wild card directory +Info 8 [00:01:11.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/dependency 1 undefined Config: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Wild card directory +Info 9 [00:01:12.000] Plugins were requested but not running in environment that supports 'require'. Nothing will be loaded +Info 10 [00:01:13.000] Starting updateGraphWorker: Project: /user/username/projects/myproject/dependency/tsconfig.json +Info 11 [00:01:14.000] FileWatcher:: Added:: WatchInfo: /a/lib/lib.d.ts 500 undefined WatchType: Closed Script info +Info 12 [00:01:15.000] 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 13 [00:01:16.000] 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 14 [00:01:17.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Type roots +Info 15 [00:01:18.000] 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 16 [00:01:19.000] Finishing updateGraphWorker: Project: /user/username/projects/myproject/dependency/tsconfig.json Version: 1 structureChanged: true structureIsReused:: Not Elapsed:: *ms +Info 17 [00:01:20.000] Project '/user/username/projects/myproject/dependency/tsconfig.json' (Configured) +Info 18 [00:01:21.000] Files (2) /a/lib/lib.d.ts /user/username/projects/myproject/dependency/FnS.ts @@ -236,16 +236,16 @@ Info 18 [16:01:21.000] Files (2) FnS.ts Matched by default include pattern '**/*' -Info 19 [16:01:22.000] ----------------------------------------------- -Info 20 [16:01:23.000] Search path: /user/username/projects/myproject/dependency -Info 21 [16:01:24.000] For info: /user/username/projects/myproject/dependency/tsconfig.json :: No config files found. -Info 22 [16:01:25.000] Project '/user/username/projects/myproject/dependency/tsconfig.json' (Configured) -Info 22 [16:01:26.000] Files (2) +Info 19 [00:01:22.000] ----------------------------------------------- +Info 20 [00:01:23.000] Search path: /user/username/projects/myproject/dependency +Info 21 [00:01:24.000] For info: /user/username/projects/myproject/dependency/tsconfig.json :: No config files found. +Info 22 [00:01:25.000] Project '/user/username/projects/myproject/dependency/tsconfig.json' (Configured) +Info 22 [00:01:26.000] Files (2) -Info 22 [16:01:27.000] ----------------------------------------------- -Info 22 [16:01:28.000] Open files: -Info 22 [16:01:29.000] FileName: /user/username/projects/myproject/dependency/FnS.ts ProjectRootPath: undefined -Info 22 [16:01:30.000] Projects: /user/username/projects/myproject/dependency/tsconfig.json +Info 22 [00:01:27.000] ----------------------------------------------- +Info 22 [00:01:28.000] Open files: +Info 22 [00:01:29.000] FileName: /user/username/projects/myproject/dependency/FnS.ts ProjectRootPath: undefined +Info 22 [00:01:30.000] Projects: /user/username/projects/myproject/dependency/tsconfig.json After request PolledWatches:: @@ -264,11 +264,11 @@ FsWatchesRecursive:: /user/username/projects/myproject/dependency: {} -Info 22 [16:01:31.000] response: +Info 22 [00:01:31.000] response: { "responseRequired": false } -Info 23 [16:01:32.000] request: +Info 23 [00:01:32.000] request: { "seq": 0, "type": "request", @@ -295,11 +295,11 @@ FsWatchesRecursive:: /user/username/projects/myproject/dependency: {} -Info 24 [16:01:33.000] Search path: /user/username/projects/myproject/random -Info 25 [16:01:34.000] For info: /user/username/projects/myproject/random/random.ts :: Config file name: /user/username/projects/myproject/random/tsconfig.json -Info 26 [16:01:35.000] Creating configuration project /user/username/projects/myproject/random/tsconfig.json -Info 27 [16:01:36.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/random/tsconfig.json 2000 undefined Project: /user/username/projects/myproject/random/tsconfig.json WatchType: Config file -Info 28 [16:01:37.000] Config: /user/username/projects/myproject/random/tsconfig.json : { +Info 24 [00:01:33.000] Search path: /user/username/projects/myproject/random +Info 25 [00:01:34.000] For info: /user/username/projects/myproject/random/random.ts :: Config file name: /user/username/projects/myproject/random/tsconfig.json +Info 26 [00:01:35.000] Creating configuration project /user/username/projects/myproject/random/tsconfig.json +Info 27 [00:01:36.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/random/tsconfig.json 2000 undefined Project: /user/username/projects/myproject/random/tsconfig.json WatchType: Config file +Info 28 [00:01:37.000] Config: /user/username/projects/myproject/random/tsconfig.json : { "rootNames": [ "/user/username/projects/myproject/random/random.ts" ], @@ -307,17 +307,17 @@ Info 28 [16:01:37.000] Config: /user/username/projects/myproject/random/tsconf "configFilePath": "/user/username/projects/myproject/random/tsconfig.json" } } -Info 29 [16:01:38.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/random 1 undefined Config: /user/username/projects/myproject/random/tsconfig.json WatchType: Wild card directory -Info 30 [16:01:39.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/random 1 undefined Config: /user/username/projects/myproject/random/tsconfig.json WatchType: Wild card directory -Info 31 [16:01:40.000] Plugins were requested but not running in environment that supports 'require'. Nothing will be loaded -Info 32 [16:01:41.000] Starting updateGraphWorker: Project: /user/username/projects/myproject/random/tsconfig.json -Info 33 [16:01:42.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/random/node_modules/@types 1 undefined Project: /user/username/projects/myproject/random/tsconfig.json WatchType: Type roots -Info 34 [16:01:43.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/random/node_modules/@types 1 undefined Project: /user/username/projects/myproject/random/tsconfig.json WatchType: Type roots -Info 35 [16:01:44.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/random/tsconfig.json WatchType: Type roots -Info 36 [16:01:45.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/random/tsconfig.json WatchType: Type roots -Info 37 [16:01:46.000] Finishing updateGraphWorker: Project: /user/username/projects/myproject/random/tsconfig.json Version: 1 structureChanged: true structureIsReused:: Not Elapsed:: *ms -Info 38 [16:01:47.000] Project '/user/username/projects/myproject/random/tsconfig.json' (Configured) -Info 39 [16:01:48.000] Files (2) +Info 29 [00:01:38.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/random 1 undefined Config: /user/username/projects/myproject/random/tsconfig.json WatchType: Wild card directory +Info 30 [00:01:39.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/random 1 undefined Config: /user/username/projects/myproject/random/tsconfig.json WatchType: Wild card directory +Info 31 [00:01:40.000] Plugins were requested but not running in environment that supports 'require'. Nothing will be loaded +Info 32 [00:01:41.000] Starting updateGraphWorker: Project: /user/username/projects/myproject/random/tsconfig.json +Info 33 [00:01:42.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/random/node_modules/@types 1 undefined Project: /user/username/projects/myproject/random/tsconfig.json WatchType: Type roots +Info 34 [00:01:43.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/random/node_modules/@types 1 undefined Project: /user/username/projects/myproject/random/tsconfig.json WatchType: Type roots +Info 35 [00:01:44.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/random/tsconfig.json WatchType: Type roots +Info 36 [00:01:45.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/random/tsconfig.json WatchType: Type roots +Info 37 [00:01:46.000] Finishing updateGraphWorker: Project: /user/username/projects/myproject/random/tsconfig.json Version: 1 structureChanged: true structureIsReused:: Not Elapsed:: *ms +Info 38 [00:01:47.000] Project '/user/username/projects/myproject/random/tsconfig.json' (Configured) +Info 39 [00:01:48.000] Files (2) /a/lib/lib.d.ts /user/username/projects/myproject/random/random.ts @@ -327,20 +327,20 @@ Info 39 [16:01:48.000] Files (2) random.ts Matched by default include pattern '**/*' -Info 40 [16:01:49.000] ----------------------------------------------- -Info 41 [16:01:50.000] Project '/user/username/projects/myproject/dependency/tsconfig.json' (Configured) -Info 41 [16:01:51.000] Files (2) +Info 40 [00:01:49.000] ----------------------------------------------- +Info 41 [00:01:50.000] Project '/user/username/projects/myproject/dependency/tsconfig.json' (Configured) +Info 41 [00:01:51.000] Files (2) -Info 41 [16:01:52.000] ----------------------------------------------- -Info 41 [16:01:53.000] Project '/user/username/projects/myproject/random/tsconfig.json' (Configured) -Info 41 [16:01:54.000] Files (2) +Info 41 [00:01:52.000] ----------------------------------------------- +Info 41 [00:01:53.000] Project '/user/username/projects/myproject/random/tsconfig.json' (Configured) +Info 41 [00:01:54.000] Files (2) -Info 41 [16:01:55.000] ----------------------------------------------- -Info 41 [16:01:56.000] Open files: -Info 41 [16:01:57.000] FileName: /user/username/projects/myproject/dependency/FnS.ts ProjectRootPath: undefined -Info 41 [16:01:58.000] Projects: /user/username/projects/myproject/dependency/tsconfig.json -Info 41 [16:01:59.000] FileName: /user/username/projects/myproject/random/random.ts ProjectRootPath: undefined -Info 41 [16:02:00.000] Projects: /user/username/projects/myproject/random/tsconfig.json +Info 41 [00:01:55.000] ----------------------------------------------- +Info 41 [00:01:56.000] Open files: +Info 41 [00:01:57.000] FileName: /user/username/projects/myproject/dependency/FnS.ts ProjectRootPath: undefined +Info 41 [00:01:58.000] Projects: /user/username/projects/myproject/dependency/tsconfig.json +Info 41 [00:01:59.000] FileName: /user/username/projects/myproject/random/random.ts ProjectRootPath: undefined +Info 41 [00:02:00.000] Projects: /user/username/projects/myproject/random/tsconfig.json After request PolledWatches:: @@ -365,11 +365,11 @@ FsWatchesRecursive:: /user/username/projects/myproject/random: {} -Info 41 [16:02:01.000] response: +Info 41 [00:02:01.000] response: { "responseRequired": false } -Info 42 [16:02:02.000] request: +Info 42 [00:02:02.000] request: { "command": "rename", "arguments": { @@ -404,8 +404,8 @@ FsWatchesRecursive:: /user/username/projects/myproject/random: {} -Info 43 [16:02:03.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/decls/FnS.d.ts 500 undefined WatchType: Closed Script info -Info 44 [16:02:04.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/decls/FnS.d.ts.map 500 undefined WatchType: Closed Script info +Info 43 [00:02:03.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/decls/FnS.d.ts 500 undefined WatchType: Closed Script info +Info 44 [00:02:04.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/decls/FnS.d.ts.map 500 undefined WatchType: Closed Script info After request PolledWatches:: @@ -434,7 +434,7 @@ FsWatchesRecursive:: /user/username/projects/myproject/random: {} -Info 45 [16:02:05.000] response: +Info 45 [00:02:05.000] response: { "response": { "info": { @@ -482,7 +482,7 @@ Info 45 [16:02:05.000] response: }, "responseRequired": true } -Info 46 [16:02:06.000] request: +Info 46 [00:02:06.000] request: { "command": "change", "arguments": { @@ -552,11 +552,11 @@ FsWatchesRecursive:: /user/username/projects/myproject/random: {} -Info 47 [16:02:07.000] response: +Info 47 [00:02:07.000] response: { "responseRequired": false } -Info 48 [16:02:08.000] request: +Info 48 [00:02:08.000] request: { "command": "rename", "arguments": { @@ -595,9 +595,9 @@ FsWatchesRecursive:: /user/username/projects/myproject/random: {} -Info 49 [16:02:09.000] Starting updateGraphWorker: Project: /user/username/projects/myproject/dependency/tsconfig.json -Info 50 [16:02:10.000] Finishing updateGraphWorker: Project: /user/username/projects/myproject/dependency/tsconfig.json Version: 2 structureChanged: false structureIsReused:: Completely Elapsed:: *ms -Info 51 [16:02:11.000] Different program with same set of files +Info 49 [00:02:09.000] Starting updateGraphWorker: Project: /user/username/projects/myproject/dependency/tsconfig.json +Info 50 [00:02:10.000] Finishing updateGraphWorker: Project: /user/username/projects/myproject/dependency/tsconfig.json Version: 2 structureChanged: false structureIsReused:: Completely Elapsed:: *ms +Info 51 [00:02:11.000] Different program with same set of files After request PolledWatches:: @@ -626,7 +626,7 @@ FsWatchesRecursive:: /user/username/projects/myproject/random: {} -Info 52 [16:02:12.000] response: +Info 52 [00:02:12.000] response: { "response": { "info": { @@ -674,7 +674,7 @@ Info 52 [16:02:12.000] response: }, "responseRequired": true } -Info 53 [16:02:13.000] request: +Info 53 [00:02:13.000] request: { "command": "rename", "arguments": { @@ -741,7 +741,7 @@ FsWatchesRecursive:: /user/username/projects/myproject/random: {} -Info 54 [16:02:14.000] response: +Info 54 [00:02:14.000] response: { "response": { "info": { @@ -789,7 +789,7 @@ Info 54 [16:02:14.000] response: }, "responseRequired": true } -Info 55 [16:02:15.000] request: +Info 55 [00:02:15.000] request: { "command": "rename", "arguments": { @@ -856,7 +856,7 @@ FsWatchesRecursive:: /user/username/projects/myproject/random: {} -Info 56 [16:02:16.000] response: +Info 56 [00:02:16.000] response: { "response": { "info": { @@ -904,7 +904,7 @@ Info 56 [16:02:16.000] response: }, "responseRequired": true } -Info 57 [16:02:17.000] request: +Info 57 [00:02:17.000] request: { "command": "rename", "arguments": { @@ -971,7 +971,7 @@ FsWatchesRecursive:: /user/username/projects/myproject/random: {} -Info 58 [16:02:18.000] response: +Info 58 [00:02:18.000] response: { "response": { "info": { @@ -1019,7 +1019,7 @@ Info 58 [16:02:18.000] response: }, "responseRequired": true } -Info 59 [16:02:19.000] request: +Info 59 [00:02:19.000] request: { "command": "rename", "arguments": { @@ -1086,7 +1086,7 @@ FsWatchesRecursive:: /user/username/projects/myproject/random: {} -Info 60 [16:02:20.000] response: +Info 60 [00:02:20.000] response: { "response": { "info": { 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 9075e89eb9f25..7f37250dbbf1d 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 @@ -1,5 +1,5 @@ -Info 0 [16:01:00.000] Provided types map file "/a/lib/typesMap.json" doesn't exist -Info 1 [16:01:01.000] request: +Info 0 [00:01:00.000] Provided types map file "/a/lib/typesMap.json" doesn't exist +Info 1 [00:01:01.000] request: { "seq": 0, "type": "request", @@ -200,11 +200,11 @@ FsWatches:: FsWatchesRecursive:: -Info 2 [16:01:02.000] Search path: /user/username/projects/myproject/dependency -Info 3 [16:01:03.000] For info: /user/username/projects/myproject/dependency/FnS.ts :: Config file name: /user/username/projects/myproject/dependency/tsconfig.json -Info 4 [16:01:04.000] Creating configuration project /user/username/projects/myproject/dependency/tsconfig.json -Info 5 [16:01:05.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/dependency/tsconfig.json 2000 undefined Project: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Config file -Info 6 [16:01:06.000] Config: /user/username/projects/myproject/dependency/tsconfig.json : { +Info 2 [00:01:02.000] Search path: /user/username/projects/myproject/dependency +Info 3 [00:01:03.000] For info: /user/username/projects/myproject/dependency/FnS.ts :: Config file name: /user/username/projects/myproject/dependency/tsconfig.json +Info 4 [00:01:04.000] Creating configuration project /user/username/projects/myproject/dependency/tsconfig.json +Info 5 [00:01:05.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/dependency/tsconfig.json 2000 undefined Project: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Config file +Info 6 [00:01:06.000] Config: /user/username/projects/myproject/dependency/tsconfig.json : { "rootNames": [ "/user/username/projects/myproject/dependency/FnS.ts" ], @@ -215,18 +215,18 @@ Info 6 [16:01:06.000] Config: /user/username/projects/myproject/dependency/ts "configFilePath": "/user/username/projects/myproject/dependency/tsconfig.json" } } -Info 7 [16:01:07.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/dependency 1 undefined Config: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Wild card directory -Info 8 [16:01:08.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/dependency 1 undefined Config: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Wild card directory -Info 9 [16:01:09.000] Plugins were requested but not running in environment that supports 'require'. Nothing will be loaded -Info 10 [16:01:10.000] Starting updateGraphWorker: Project: /user/username/projects/myproject/dependency/tsconfig.json -Info 11 [16:01:11.000] FileWatcher:: Added:: WatchInfo: /a/lib/lib.d.ts 500 undefined WatchType: Closed Script info -Info 12 [16:01:12.000] 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 13 [16:01:13.000] 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 14 [16:01:14.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Type roots -Info 15 [16:01:15.000] 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 16 [16:01:16.000] Finishing updateGraphWorker: Project: /user/username/projects/myproject/dependency/tsconfig.json Version: 1 structureChanged: true structureIsReused:: Not Elapsed:: *ms -Info 17 [16:01:17.000] Project '/user/username/projects/myproject/dependency/tsconfig.json' (Configured) -Info 18 [16:01:18.000] Files (2) +Info 7 [00:01:07.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/dependency 1 undefined Config: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Wild card directory +Info 8 [00:01:08.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/dependency 1 undefined Config: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Wild card directory +Info 9 [00:01:09.000] Plugins were requested but not running in environment that supports 'require'. Nothing will be loaded +Info 10 [00:01:10.000] Starting updateGraphWorker: Project: /user/username/projects/myproject/dependency/tsconfig.json +Info 11 [00:01:11.000] FileWatcher:: Added:: WatchInfo: /a/lib/lib.d.ts 500 undefined WatchType: Closed Script info +Info 12 [00:01:12.000] 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 13 [00:01:13.000] 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 14 [00:01:14.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Type roots +Info 15 [00:01:15.000] 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 16 [00:01:16.000] Finishing updateGraphWorker: Project: /user/username/projects/myproject/dependency/tsconfig.json Version: 1 structureChanged: true structureIsReused:: Not Elapsed:: *ms +Info 17 [00:01:17.000] Project '/user/username/projects/myproject/dependency/tsconfig.json' (Configured) +Info 18 [00:01:18.000] Files (2) /a/lib/lib.d.ts /user/username/projects/myproject/dependency/FnS.ts @@ -236,16 +236,16 @@ Info 18 [16:01:18.000] Files (2) FnS.ts Matched by default include pattern '**/*' -Info 19 [16:01:19.000] ----------------------------------------------- -Info 20 [16:01:20.000] Search path: /user/username/projects/myproject/dependency -Info 21 [16:01:21.000] For info: /user/username/projects/myproject/dependency/tsconfig.json :: No config files found. -Info 22 [16:01:22.000] Project '/user/username/projects/myproject/dependency/tsconfig.json' (Configured) -Info 22 [16:01:23.000] Files (2) +Info 19 [00:01:19.000] ----------------------------------------------- +Info 20 [00:01:20.000] Search path: /user/username/projects/myproject/dependency +Info 21 [00:01:21.000] For info: /user/username/projects/myproject/dependency/tsconfig.json :: No config files found. +Info 22 [00:01:22.000] Project '/user/username/projects/myproject/dependency/tsconfig.json' (Configured) +Info 22 [00:01:23.000] Files (2) -Info 22 [16:01:24.000] ----------------------------------------------- -Info 22 [16:01:25.000] Open files: -Info 22 [16:01:26.000] FileName: /user/username/projects/myproject/dependency/FnS.ts ProjectRootPath: undefined -Info 22 [16:01:27.000] Projects: /user/username/projects/myproject/dependency/tsconfig.json +Info 22 [00:01:24.000] ----------------------------------------------- +Info 22 [00:01:25.000] Open files: +Info 22 [00:01:26.000] FileName: /user/username/projects/myproject/dependency/FnS.ts ProjectRootPath: undefined +Info 22 [00:01:27.000] Projects: /user/username/projects/myproject/dependency/tsconfig.json After request PolledWatches:: @@ -264,11 +264,11 @@ FsWatchesRecursive:: /user/username/projects/myproject/dependency: {} -Info 22 [16:01:28.000] response: +Info 22 [00:01:28.000] response: { "responseRequired": false } -Info 23 [16:01:29.000] request: +Info 23 [00:01:29.000] request: { "seq": 0, "type": "request", @@ -295,11 +295,11 @@ FsWatchesRecursive:: /user/username/projects/myproject/dependency: {} -Info 24 [16:01:30.000] Search path: /user/username/projects/myproject/random -Info 25 [16:01:31.000] For info: /user/username/projects/myproject/random/random.ts :: Config file name: /user/username/projects/myproject/random/tsconfig.json -Info 26 [16:01:32.000] Creating configuration project /user/username/projects/myproject/random/tsconfig.json -Info 27 [16:01:33.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/random/tsconfig.json 2000 undefined Project: /user/username/projects/myproject/random/tsconfig.json WatchType: Config file -Info 28 [16:01:34.000] Config: /user/username/projects/myproject/random/tsconfig.json : { +Info 24 [00:01:30.000] Search path: /user/username/projects/myproject/random +Info 25 [00:01:31.000] For info: /user/username/projects/myproject/random/random.ts :: Config file name: /user/username/projects/myproject/random/tsconfig.json +Info 26 [00:01:32.000] Creating configuration project /user/username/projects/myproject/random/tsconfig.json +Info 27 [00:01:33.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/random/tsconfig.json 2000 undefined Project: /user/username/projects/myproject/random/tsconfig.json WatchType: Config file +Info 28 [00:01:34.000] Config: /user/username/projects/myproject/random/tsconfig.json : { "rootNames": [ "/user/username/projects/myproject/random/random.ts" ], @@ -307,17 +307,17 @@ Info 28 [16:01:34.000] Config: /user/username/projects/myproject/random/tsconf "configFilePath": "/user/username/projects/myproject/random/tsconfig.json" } } -Info 29 [16:01:35.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/random 1 undefined Config: /user/username/projects/myproject/random/tsconfig.json WatchType: Wild card directory -Info 30 [16:01:36.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/random 1 undefined Config: /user/username/projects/myproject/random/tsconfig.json WatchType: Wild card directory -Info 31 [16:01:37.000] Plugins were requested but not running in environment that supports 'require'. Nothing will be loaded -Info 32 [16:01:38.000] Starting updateGraphWorker: Project: /user/username/projects/myproject/random/tsconfig.json -Info 33 [16:01:39.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/random/node_modules/@types 1 undefined Project: /user/username/projects/myproject/random/tsconfig.json WatchType: Type roots -Info 34 [16:01:40.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/random/node_modules/@types 1 undefined Project: /user/username/projects/myproject/random/tsconfig.json WatchType: Type roots -Info 35 [16:01:41.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/random/tsconfig.json WatchType: Type roots -Info 36 [16:01:42.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/random/tsconfig.json WatchType: Type roots -Info 37 [16:01:43.000] Finishing updateGraphWorker: Project: /user/username/projects/myproject/random/tsconfig.json Version: 1 structureChanged: true structureIsReused:: Not Elapsed:: *ms -Info 38 [16:01:44.000] Project '/user/username/projects/myproject/random/tsconfig.json' (Configured) -Info 39 [16:01:45.000] Files (2) +Info 29 [00:01:35.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/random 1 undefined Config: /user/username/projects/myproject/random/tsconfig.json WatchType: Wild card directory +Info 30 [00:01:36.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/random 1 undefined Config: /user/username/projects/myproject/random/tsconfig.json WatchType: Wild card directory +Info 31 [00:01:37.000] Plugins were requested but not running in environment that supports 'require'. Nothing will be loaded +Info 32 [00:01:38.000] Starting updateGraphWorker: Project: /user/username/projects/myproject/random/tsconfig.json +Info 33 [00:01:39.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/random/node_modules/@types 1 undefined Project: /user/username/projects/myproject/random/tsconfig.json WatchType: Type roots +Info 34 [00:01:40.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/random/node_modules/@types 1 undefined Project: /user/username/projects/myproject/random/tsconfig.json WatchType: Type roots +Info 35 [00:01:41.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/random/tsconfig.json WatchType: Type roots +Info 36 [00:01:42.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/random/tsconfig.json WatchType: Type roots +Info 37 [00:01:43.000] Finishing updateGraphWorker: Project: /user/username/projects/myproject/random/tsconfig.json Version: 1 structureChanged: true structureIsReused:: Not Elapsed:: *ms +Info 38 [00:01:44.000] Project '/user/username/projects/myproject/random/tsconfig.json' (Configured) +Info 39 [00:01:45.000] Files (2) /a/lib/lib.d.ts /user/username/projects/myproject/random/random.ts @@ -327,20 +327,20 @@ Info 39 [16:01:45.000] Files (2) random.ts Matched by default include pattern '**/*' -Info 40 [16:01:46.000] ----------------------------------------------- -Info 41 [16:01:47.000] Project '/user/username/projects/myproject/dependency/tsconfig.json' (Configured) -Info 41 [16:01:48.000] Files (2) +Info 40 [00:01:46.000] ----------------------------------------------- +Info 41 [00:01:47.000] Project '/user/username/projects/myproject/dependency/tsconfig.json' (Configured) +Info 41 [00:01:48.000] Files (2) -Info 41 [16:01:49.000] ----------------------------------------------- -Info 41 [16:01:50.000] Project '/user/username/projects/myproject/random/tsconfig.json' (Configured) -Info 41 [16:01:51.000] Files (2) +Info 41 [00:01:49.000] ----------------------------------------------- +Info 41 [00:01:50.000] Project '/user/username/projects/myproject/random/tsconfig.json' (Configured) +Info 41 [00:01:51.000] Files (2) -Info 41 [16:01:52.000] ----------------------------------------------- -Info 41 [16:01:53.000] Open files: -Info 41 [16:01:54.000] FileName: /user/username/projects/myproject/dependency/FnS.ts ProjectRootPath: undefined -Info 41 [16:01:55.000] Projects: /user/username/projects/myproject/dependency/tsconfig.json -Info 41 [16:01:56.000] FileName: /user/username/projects/myproject/random/random.ts ProjectRootPath: undefined -Info 41 [16:01:57.000] Projects: /user/username/projects/myproject/random/tsconfig.json +Info 41 [00:01:52.000] ----------------------------------------------- +Info 41 [00:01:53.000] Open files: +Info 41 [00:01:54.000] FileName: /user/username/projects/myproject/dependency/FnS.ts ProjectRootPath: undefined +Info 41 [00:01:55.000] Projects: /user/username/projects/myproject/dependency/tsconfig.json +Info 41 [00:01:56.000] FileName: /user/username/projects/myproject/random/random.ts ProjectRootPath: undefined +Info 41 [00:01:57.000] Projects: /user/username/projects/myproject/random/tsconfig.json After request PolledWatches:: @@ -365,11 +365,11 @@ FsWatchesRecursive:: /user/username/projects/myproject/random: {} -Info 41 [16:01:58.000] response: +Info 41 [00:01:58.000] response: { "responseRequired": false } -Info 42 [16:01:59.000] request: +Info 42 [00:01:59.000] request: { "command": "rename", "arguments": { @@ -404,8 +404,8 @@ FsWatchesRecursive:: /user/username/projects/myproject/random: {} -Info 43 [16:02:00.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/decls/FnS.d.ts 500 undefined WatchType: Closed Script info -Info 44 [16:02:01.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/decls/FnS.d.ts.map 500 undefined WatchType: Closed Script info +Info 43 [00:02:00.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/decls/FnS.d.ts 500 undefined WatchType: Closed Script info +Info 44 [00:02:01.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/decls/FnS.d.ts.map 500 undefined WatchType: Closed Script info After request PolledWatches:: @@ -434,7 +434,7 @@ FsWatchesRecursive:: /user/username/projects/myproject/random: {} -Info 45 [16:02:02.000] response: +Info 45 [00:02:02.000] response: { "response": { "info": { @@ -482,10 +482,10 @@ Info 45 [16:02:02.000] response: }, "responseRequired": true } -Info 46 [16:02:06.000] FileWatcher:: Triggered with /user/username/projects/myproject/decls/FnS.d.ts 1:: WatchInfo: /user/username/projects/myproject/decls/FnS.d.ts 500 undefined WatchType: Closed Script info -Info 47 [16:02:07.000] Scheduled: /user/username/projects/myproject/dependency/tsconfig.json -Info 48 [16:02:08.000] Scheduled: *ensureProjectForOpenFiles* -Info 49 [16:02:09.000] Elapsed:: *ms FileWatcher:: Triggered with /user/username/projects/myproject/decls/FnS.d.ts 1:: WatchInfo: /user/username/projects/myproject/decls/FnS.d.ts 500 undefined WatchType: Closed Script info +Info 46 [00:02:06.000] FileWatcher:: Triggered with /user/username/projects/myproject/decls/FnS.d.ts 1:: WatchInfo: /user/username/projects/myproject/decls/FnS.d.ts 500 undefined WatchType: Closed Script info +Info 47 [00:02:07.000] Scheduled: /user/username/projects/myproject/dependency/tsconfig.json +Info 48 [00:02:08.000] Scheduled: *ensureProjectForOpenFiles* +Info 49 [00:02:09.000] Elapsed:: *ms FileWatcher:: Triggered with /user/username/projects/myproject/decls/FnS.d.ts 1:: WatchInfo: /user/username/projects/myproject/decls/FnS.d.ts 500 undefined WatchType: Closed Script info Before running timeout callbacks //// [/user/username/projects/myproject/decls/FnS.d.ts] export declare function fn1(): void; @@ -523,38 +523,38 @@ FsWatchesRecursive:: /user/username/projects/myproject/random: {} -Info 50 [16:02:10.000] Running: /user/username/projects/myproject/dependency/tsconfig.json -Info 51 [16:02:11.000] Starting updateGraphWorker: Project: /user/username/projects/myproject/dependency/tsconfig.json -Info 52 [16:02:12.000] Finishing updateGraphWorker: Project: /user/username/projects/myproject/dependency/tsconfig.json Version: 2 structureChanged: false structureIsReused:: Not Elapsed:: *ms -Info 53 [16:02:13.000] Running: *ensureProjectForOpenFiles* -Info 54 [16:02:14.000] Before ensureProjectForOpenFiles: -Info 55 [16:02:15.000] Project '/user/username/projects/myproject/dependency/tsconfig.json' (Configured) -Info 55 [16:02:16.000] Files (2) - -Info 55 [16:02:17.000] ----------------------------------------------- -Info 55 [16:02:18.000] Project '/user/username/projects/myproject/random/tsconfig.json' (Configured) -Info 55 [16:02:19.000] Files (2) - -Info 55 [16:02:20.000] ----------------------------------------------- -Info 55 [16:02:21.000] Open files: -Info 55 [16:02:22.000] FileName: /user/username/projects/myproject/dependency/FnS.ts ProjectRootPath: undefined -Info 55 [16:02:23.000] Projects: /user/username/projects/myproject/dependency/tsconfig.json -Info 55 [16:02:24.000] FileName: /user/username/projects/myproject/random/random.ts ProjectRootPath: undefined -Info 55 [16:02:25.000] Projects: /user/username/projects/myproject/random/tsconfig.json -Info 55 [16:02:26.000] After ensureProjectForOpenFiles: -Info 56 [16:02:27.000] Project '/user/username/projects/myproject/dependency/tsconfig.json' (Configured) -Info 56 [16:02:28.000] Files (2) - -Info 56 [16:02:29.000] ----------------------------------------------- -Info 56 [16:02:30.000] Project '/user/username/projects/myproject/random/tsconfig.json' (Configured) -Info 56 [16:02:31.000] Files (2) - -Info 56 [16:02:32.000] ----------------------------------------------- -Info 56 [16:02:33.000] Open files: -Info 56 [16:02:34.000] FileName: /user/username/projects/myproject/dependency/FnS.ts ProjectRootPath: undefined -Info 56 [16:02:35.000] Projects: /user/username/projects/myproject/dependency/tsconfig.json -Info 56 [16:02:36.000] FileName: /user/username/projects/myproject/random/random.ts ProjectRootPath: undefined -Info 56 [16:02:37.000] Projects: /user/username/projects/myproject/random/tsconfig.json +Info 50 [00:02:10.000] Running: /user/username/projects/myproject/dependency/tsconfig.json +Info 51 [00:02:11.000] Starting updateGraphWorker: Project: /user/username/projects/myproject/dependency/tsconfig.json +Info 52 [00:02:12.000] Finishing updateGraphWorker: Project: /user/username/projects/myproject/dependency/tsconfig.json Version: 2 structureChanged: false structureIsReused:: Not Elapsed:: *ms +Info 53 [00:02:13.000] Running: *ensureProjectForOpenFiles* +Info 54 [00:02:14.000] Before ensureProjectForOpenFiles: +Info 55 [00:02:15.000] Project '/user/username/projects/myproject/dependency/tsconfig.json' (Configured) +Info 55 [00:02:16.000] Files (2) + +Info 55 [00:02:17.000] ----------------------------------------------- +Info 55 [00:02:18.000] Project '/user/username/projects/myproject/random/tsconfig.json' (Configured) +Info 55 [00:02:19.000] Files (2) + +Info 55 [00:02:20.000] ----------------------------------------------- +Info 55 [00:02:21.000] Open files: +Info 55 [00:02:22.000] FileName: /user/username/projects/myproject/dependency/FnS.ts ProjectRootPath: undefined +Info 55 [00:02:23.000] Projects: /user/username/projects/myproject/dependency/tsconfig.json +Info 55 [00:02:24.000] FileName: /user/username/projects/myproject/random/random.ts ProjectRootPath: undefined +Info 55 [00:02:25.000] Projects: /user/username/projects/myproject/random/tsconfig.json +Info 55 [00:02:26.000] After ensureProjectForOpenFiles: +Info 56 [00:02:27.000] Project '/user/username/projects/myproject/dependency/tsconfig.json' (Configured) +Info 56 [00:02:28.000] Files (2) + +Info 56 [00:02:29.000] ----------------------------------------------- +Info 56 [00:02:30.000] Project '/user/username/projects/myproject/random/tsconfig.json' (Configured) +Info 56 [00:02:31.000] Files (2) + +Info 56 [00:02:32.000] ----------------------------------------------- +Info 56 [00:02:33.000] Open files: +Info 56 [00:02:34.000] FileName: /user/username/projects/myproject/dependency/FnS.ts ProjectRootPath: undefined +Info 56 [00:02:35.000] Projects: /user/username/projects/myproject/dependency/tsconfig.json +Info 56 [00:02:36.000] FileName: /user/username/projects/myproject/random/random.ts ProjectRootPath: undefined +Info 56 [00:02:37.000] Projects: /user/username/projects/myproject/random/tsconfig.json After running timeout callbacks PolledWatches:: @@ -583,7 +583,7 @@ FsWatchesRecursive:: /user/username/projects/myproject/random: {} -Info 56 [16:02:38.000] request: +Info 56 [00:02:38.000] request: { "command": "rename", "arguments": { @@ -650,7 +650,7 @@ FsWatchesRecursive:: /user/username/projects/myproject/random: {} -Info 57 [16:02:39.000] response: +Info 57 [00:02:39.000] response: { "response": { "info": { @@ -698,7 +698,7 @@ Info 57 [16:02:39.000] response: }, "responseRequired": true } -Info 58 [16:02:40.000] request: +Info 58 [00:02:40.000] request: { "command": "rename", "arguments": { @@ -765,7 +765,7 @@ FsWatchesRecursive:: /user/username/projects/myproject/random: {} -Info 59 [16:02:41.000] response: +Info 59 [00:02:41.000] response: { "response": { "info": { @@ -813,7 +813,7 @@ Info 59 [16:02:41.000] response: }, "responseRequired": true } -Info 60 [16:02:42.000] request: +Info 60 [00:02:42.000] request: { "command": "rename", "arguments": { @@ -880,7 +880,7 @@ FsWatchesRecursive:: /user/username/projects/myproject/random: {} -Info 61 [16:02:43.000] response: +Info 61 [00:02:43.000] response: { "response": { "info": { @@ -928,7 +928,7 @@ Info 61 [16:02:43.000] response: }, "responseRequired": true } -Info 62 [16:02:44.000] request: +Info 62 [00:02:44.000] request: { "command": "rename", "arguments": { @@ -995,7 +995,7 @@ FsWatchesRecursive:: /user/username/projects/myproject/random: {} -Info 63 [16:02:45.000] response: +Info 63 [00:02:45.000] response: { "response": { "info": { @@ -1043,7 +1043,7 @@ Info 63 [16:02:45.000] response: }, "responseRequired": true } -Info 64 [16:02:46.000] request: +Info 64 [00:02:46.000] request: { "command": "rename", "arguments": { @@ -1110,7 +1110,7 @@ FsWatchesRecursive:: /user/username/projects/myproject/random: {} -Info 65 [16:02:47.000] response: +Info 65 [00:02:47.000] response: { "response": { "info": { 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 e3b86dc12151a..3d3b2bd9327e9 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 @@ -1,5 +1,5 @@ -Info 0 [16:01:00.000] Provided types map file "/a/lib/typesMap.json" doesn't exist -Info 1 [16:01:01.000] request: +Info 0 [00:01:00.000] Provided types map file "/a/lib/typesMap.json" doesn't exist +Info 1 [00:01:01.000] request: { "seq": 0, "type": "request", @@ -200,11 +200,11 @@ FsWatches:: FsWatchesRecursive:: -Info 2 [16:01:02.000] Search path: /user/username/projects/myproject/dependency -Info 3 [16:01:03.000] For info: /user/username/projects/myproject/dependency/FnS.ts :: Config file name: /user/username/projects/myproject/dependency/tsconfig.json -Info 4 [16:01:04.000] Creating configuration project /user/username/projects/myproject/dependency/tsconfig.json -Info 5 [16:01:05.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/dependency/tsconfig.json 2000 undefined Project: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Config file -Info 6 [16:01:06.000] Config: /user/username/projects/myproject/dependency/tsconfig.json : { +Info 2 [00:01:02.000] Search path: /user/username/projects/myproject/dependency +Info 3 [00:01:03.000] For info: /user/username/projects/myproject/dependency/FnS.ts :: Config file name: /user/username/projects/myproject/dependency/tsconfig.json +Info 4 [00:01:04.000] Creating configuration project /user/username/projects/myproject/dependency/tsconfig.json +Info 5 [00:01:05.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/dependency/tsconfig.json 2000 undefined Project: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Config file +Info 6 [00:01:06.000] Config: /user/username/projects/myproject/dependency/tsconfig.json : { "rootNames": [ "/user/username/projects/myproject/dependency/FnS.ts" ], @@ -215,18 +215,18 @@ Info 6 [16:01:06.000] Config: /user/username/projects/myproject/dependency/ts "configFilePath": "/user/username/projects/myproject/dependency/tsconfig.json" } } -Info 7 [16:01:07.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/dependency 1 undefined Config: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Wild card directory -Info 8 [16:01:08.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/dependency 1 undefined Config: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Wild card directory -Info 9 [16:01:09.000] Plugins were requested but not running in environment that supports 'require'. Nothing will be loaded -Info 10 [16:01:10.000] Starting updateGraphWorker: Project: /user/username/projects/myproject/dependency/tsconfig.json -Info 11 [16:01:11.000] FileWatcher:: Added:: WatchInfo: /a/lib/lib.d.ts 500 undefined WatchType: Closed Script info -Info 12 [16:01:12.000] 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 13 [16:01:13.000] 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 14 [16:01:14.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Type roots -Info 15 [16:01:15.000] 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 16 [16:01:16.000] Finishing updateGraphWorker: Project: /user/username/projects/myproject/dependency/tsconfig.json Version: 1 structureChanged: true structureIsReused:: Not Elapsed:: *ms -Info 17 [16:01:17.000] Project '/user/username/projects/myproject/dependency/tsconfig.json' (Configured) -Info 18 [16:01:18.000] Files (2) +Info 7 [00:01:07.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/dependency 1 undefined Config: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Wild card directory +Info 8 [00:01:08.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/dependency 1 undefined Config: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Wild card directory +Info 9 [00:01:09.000] Plugins were requested but not running in environment that supports 'require'. Nothing will be loaded +Info 10 [00:01:10.000] Starting updateGraphWorker: Project: /user/username/projects/myproject/dependency/tsconfig.json +Info 11 [00:01:11.000] FileWatcher:: Added:: WatchInfo: /a/lib/lib.d.ts 500 undefined WatchType: Closed Script info +Info 12 [00:01:12.000] 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 13 [00:01:13.000] 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 14 [00:01:14.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Type roots +Info 15 [00:01:15.000] 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 16 [00:01:16.000] Finishing updateGraphWorker: Project: /user/username/projects/myproject/dependency/tsconfig.json Version: 1 structureChanged: true structureIsReused:: Not Elapsed:: *ms +Info 17 [00:01:17.000] Project '/user/username/projects/myproject/dependency/tsconfig.json' (Configured) +Info 18 [00:01:18.000] Files (2) /a/lib/lib.d.ts /user/username/projects/myproject/dependency/FnS.ts @@ -236,16 +236,16 @@ Info 18 [16:01:18.000] Files (2) FnS.ts Matched by default include pattern '**/*' -Info 19 [16:01:19.000] ----------------------------------------------- -Info 20 [16:01:20.000] Search path: /user/username/projects/myproject/dependency -Info 21 [16:01:21.000] For info: /user/username/projects/myproject/dependency/tsconfig.json :: No config files found. -Info 22 [16:01:22.000] Project '/user/username/projects/myproject/dependency/tsconfig.json' (Configured) -Info 22 [16:01:23.000] Files (2) +Info 19 [00:01:19.000] ----------------------------------------------- +Info 20 [00:01:20.000] Search path: /user/username/projects/myproject/dependency +Info 21 [00:01:21.000] For info: /user/username/projects/myproject/dependency/tsconfig.json :: No config files found. +Info 22 [00:01:22.000] Project '/user/username/projects/myproject/dependency/tsconfig.json' (Configured) +Info 22 [00:01:23.000] Files (2) -Info 22 [16:01:24.000] ----------------------------------------------- -Info 22 [16:01:25.000] Open files: -Info 22 [16:01:26.000] FileName: /user/username/projects/myproject/dependency/FnS.ts ProjectRootPath: undefined -Info 22 [16:01:27.000] Projects: /user/username/projects/myproject/dependency/tsconfig.json +Info 22 [00:01:24.000] ----------------------------------------------- +Info 22 [00:01:25.000] Open files: +Info 22 [00:01:26.000] FileName: /user/username/projects/myproject/dependency/FnS.ts ProjectRootPath: undefined +Info 22 [00:01:27.000] Projects: /user/username/projects/myproject/dependency/tsconfig.json After request PolledWatches:: @@ -264,11 +264,11 @@ FsWatchesRecursive:: /user/username/projects/myproject/dependency: {} -Info 22 [16:01:28.000] response: +Info 22 [00:01:28.000] response: { "responseRequired": false } -Info 23 [16:01:29.000] request: +Info 23 [00:01:29.000] request: { "seq": 0, "type": "request", @@ -295,11 +295,11 @@ FsWatchesRecursive:: /user/username/projects/myproject/dependency: {} -Info 24 [16:01:30.000] Search path: /user/username/projects/myproject/random -Info 25 [16:01:31.000] For info: /user/username/projects/myproject/random/random.ts :: Config file name: /user/username/projects/myproject/random/tsconfig.json -Info 26 [16:01:32.000] Creating configuration project /user/username/projects/myproject/random/tsconfig.json -Info 27 [16:01:33.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/random/tsconfig.json 2000 undefined Project: /user/username/projects/myproject/random/tsconfig.json WatchType: Config file -Info 28 [16:01:34.000] Config: /user/username/projects/myproject/random/tsconfig.json : { +Info 24 [00:01:30.000] Search path: /user/username/projects/myproject/random +Info 25 [00:01:31.000] For info: /user/username/projects/myproject/random/random.ts :: Config file name: /user/username/projects/myproject/random/tsconfig.json +Info 26 [00:01:32.000] Creating configuration project /user/username/projects/myproject/random/tsconfig.json +Info 27 [00:01:33.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/random/tsconfig.json 2000 undefined Project: /user/username/projects/myproject/random/tsconfig.json WatchType: Config file +Info 28 [00:01:34.000] Config: /user/username/projects/myproject/random/tsconfig.json : { "rootNames": [ "/user/username/projects/myproject/random/random.ts" ], @@ -307,17 +307,17 @@ Info 28 [16:01:34.000] Config: /user/username/projects/myproject/random/tsconf "configFilePath": "/user/username/projects/myproject/random/tsconfig.json" } } -Info 29 [16:01:35.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/random 1 undefined Config: /user/username/projects/myproject/random/tsconfig.json WatchType: Wild card directory -Info 30 [16:01:36.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/random 1 undefined Config: /user/username/projects/myproject/random/tsconfig.json WatchType: Wild card directory -Info 31 [16:01:37.000] Plugins were requested but not running in environment that supports 'require'. Nothing will be loaded -Info 32 [16:01:38.000] Starting updateGraphWorker: Project: /user/username/projects/myproject/random/tsconfig.json -Info 33 [16:01:39.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/random/node_modules/@types 1 undefined Project: /user/username/projects/myproject/random/tsconfig.json WatchType: Type roots -Info 34 [16:01:40.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/random/node_modules/@types 1 undefined Project: /user/username/projects/myproject/random/tsconfig.json WatchType: Type roots -Info 35 [16:01:41.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/random/tsconfig.json WatchType: Type roots -Info 36 [16:01:42.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/random/tsconfig.json WatchType: Type roots -Info 37 [16:01:43.000] Finishing updateGraphWorker: Project: /user/username/projects/myproject/random/tsconfig.json Version: 1 structureChanged: true structureIsReused:: Not Elapsed:: *ms -Info 38 [16:01:44.000] Project '/user/username/projects/myproject/random/tsconfig.json' (Configured) -Info 39 [16:01:45.000] Files (2) +Info 29 [00:01:35.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/random 1 undefined Config: /user/username/projects/myproject/random/tsconfig.json WatchType: Wild card directory +Info 30 [00:01:36.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/random 1 undefined Config: /user/username/projects/myproject/random/tsconfig.json WatchType: Wild card directory +Info 31 [00:01:37.000] Plugins were requested but not running in environment that supports 'require'. Nothing will be loaded +Info 32 [00:01:38.000] Starting updateGraphWorker: Project: /user/username/projects/myproject/random/tsconfig.json +Info 33 [00:01:39.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/random/node_modules/@types 1 undefined Project: /user/username/projects/myproject/random/tsconfig.json WatchType: Type roots +Info 34 [00:01:40.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/random/node_modules/@types 1 undefined Project: /user/username/projects/myproject/random/tsconfig.json WatchType: Type roots +Info 35 [00:01:41.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/random/tsconfig.json WatchType: Type roots +Info 36 [00:01:42.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/random/tsconfig.json WatchType: Type roots +Info 37 [00:01:43.000] Finishing updateGraphWorker: Project: /user/username/projects/myproject/random/tsconfig.json Version: 1 structureChanged: true structureIsReused:: Not Elapsed:: *ms +Info 38 [00:01:44.000] Project '/user/username/projects/myproject/random/tsconfig.json' (Configured) +Info 39 [00:01:45.000] Files (2) /a/lib/lib.d.ts /user/username/projects/myproject/random/random.ts @@ -327,20 +327,20 @@ Info 39 [16:01:45.000] Files (2) random.ts Matched by default include pattern '**/*' -Info 40 [16:01:46.000] ----------------------------------------------- -Info 41 [16:01:47.000] Project '/user/username/projects/myproject/dependency/tsconfig.json' (Configured) -Info 41 [16:01:48.000] Files (2) +Info 40 [00:01:46.000] ----------------------------------------------- +Info 41 [00:01:47.000] Project '/user/username/projects/myproject/dependency/tsconfig.json' (Configured) +Info 41 [00:01:48.000] Files (2) -Info 41 [16:01:49.000] ----------------------------------------------- -Info 41 [16:01:50.000] Project '/user/username/projects/myproject/random/tsconfig.json' (Configured) -Info 41 [16:01:51.000] Files (2) +Info 41 [00:01:49.000] ----------------------------------------------- +Info 41 [00:01:50.000] Project '/user/username/projects/myproject/random/tsconfig.json' (Configured) +Info 41 [00:01:51.000] Files (2) -Info 41 [16:01:52.000] ----------------------------------------------- -Info 41 [16:01:53.000] Open files: -Info 41 [16:01:54.000] FileName: /user/username/projects/myproject/dependency/FnS.ts ProjectRootPath: undefined -Info 41 [16:01:55.000] Projects: /user/username/projects/myproject/dependency/tsconfig.json -Info 41 [16:01:56.000] FileName: /user/username/projects/myproject/random/random.ts ProjectRootPath: undefined -Info 41 [16:01:57.000] Projects: /user/username/projects/myproject/random/tsconfig.json +Info 41 [00:01:52.000] ----------------------------------------------- +Info 41 [00:01:53.000] Open files: +Info 41 [00:01:54.000] FileName: /user/username/projects/myproject/dependency/FnS.ts ProjectRootPath: undefined +Info 41 [00:01:55.000] Projects: /user/username/projects/myproject/dependency/tsconfig.json +Info 41 [00:01:56.000] FileName: /user/username/projects/myproject/random/random.ts ProjectRootPath: undefined +Info 41 [00:01:57.000] Projects: /user/username/projects/myproject/random/tsconfig.json After request PolledWatches:: @@ -365,11 +365,11 @@ FsWatchesRecursive:: /user/username/projects/myproject/random: {} -Info 41 [16:01:58.000] response: +Info 41 [00:01:58.000] response: { "responseRequired": false } -Info 42 [16:01:59.000] request: +Info 42 [00:01:59.000] request: { "command": "rename", "arguments": { @@ -404,8 +404,8 @@ FsWatchesRecursive:: /user/username/projects/myproject/random: {} -Info 43 [16:02:00.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/decls/FnS.d.ts 500 undefined WatchType: Closed Script info -Info 44 [16:02:01.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/decls/FnS.d.ts.map 500 undefined WatchType: Closed Script info +Info 43 [00:02:00.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/decls/FnS.d.ts 500 undefined WatchType: Closed Script info +Info 44 [00:02:01.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/decls/FnS.d.ts.map 500 undefined WatchType: Closed Script info After request PolledWatches:: @@ -434,7 +434,7 @@ FsWatchesRecursive:: /user/username/projects/myproject/random: {} -Info 45 [16:02:02.000] response: +Info 45 [00:02:02.000] response: { "response": { "info": { @@ -482,11 +482,11 @@ Info 45 [16:02:02.000] response: }, "responseRequired": true } -Info 46 [16:02:06.000] FileWatcher:: Triggered with /user/username/projects/myproject/decls/FnS.d.ts 1:: WatchInfo: /user/username/projects/myproject/decls/FnS.d.ts 500 undefined WatchType: Closed Script info -Info 47 [16:02:07.000] Scheduled: /user/username/projects/myproject/dependency/tsconfig.json -Info 48 [16:02:08.000] Scheduled: *ensureProjectForOpenFiles* -Info 49 [16:02:09.000] Elapsed:: *ms FileWatcher:: Triggered with /user/username/projects/myproject/decls/FnS.d.ts 1:: WatchInfo: /user/username/projects/myproject/decls/FnS.d.ts 500 undefined WatchType: Closed Script info -Info 50 [16:02:10.000] request: +Info 46 [00:02:06.000] FileWatcher:: Triggered with /user/username/projects/myproject/decls/FnS.d.ts 1:: WatchInfo: /user/username/projects/myproject/decls/FnS.d.ts 500 undefined WatchType: Closed Script info +Info 47 [00:02:07.000] Scheduled: /user/username/projects/myproject/dependency/tsconfig.json +Info 48 [00:02:08.000] Scheduled: *ensureProjectForOpenFiles* +Info 49 [00:02:09.000] Elapsed:: *ms FileWatcher:: Triggered with /user/username/projects/myproject/decls/FnS.d.ts 1:: WatchInfo: /user/username/projects/myproject/decls/FnS.d.ts 500 undefined WatchType: Closed Script info +Info 50 [00:02:10.000] request: { "command": "rename", "arguments": { @@ -534,8 +534,8 @@ FsWatchesRecursive:: /user/username/projects/myproject/random: {} -Info 51 [16:02:11.000] Starting updateGraphWorker: Project: /user/username/projects/myproject/dependency/tsconfig.json -Info 52 [16:02:12.000] Finishing updateGraphWorker: Project: /user/username/projects/myproject/dependency/tsconfig.json Version: 2 structureChanged: false structureIsReused:: Not Elapsed:: *ms +Info 51 [00:02:11.000] Starting updateGraphWorker: Project: /user/username/projects/myproject/dependency/tsconfig.json +Info 52 [00:02:12.000] Finishing updateGraphWorker: Project: /user/username/projects/myproject/dependency/tsconfig.json Version: 2 structureChanged: false structureIsReused:: Not Elapsed:: *ms After request PolledWatches:: @@ -564,7 +564,7 @@ FsWatchesRecursive:: /user/username/projects/myproject/random: {} -Info 53 [16:02:13.000] response: +Info 53 [00:02:13.000] response: { "response": { "info": { @@ -612,7 +612,7 @@ Info 53 [16:02:13.000] response: }, "responseRequired": true } -Info 54 [16:02:14.000] request: +Info 54 [00:02:14.000] request: { "command": "rename", "arguments": { @@ -679,7 +679,7 @@ FsWatchesRecursive:: /user/username/projects/myproject/random: {} -Info 55 [16:02:15.000] response: +Info 55 [00:02:15.000] response: { "response": { "info": { @@ -727,7 +727,7 @@ Info 55 [16:02:15.000] response: }, "responseRequired": true } -Info 56 [16:02:16.000] request: +Info 56 [00:02:16.000] request: { "command": "rename", "arguments": { @@ -794,7 +794,7 @@ FsWatchesRecursive:: /user/username/projects/myproject/random: {} -Info 57 [16:02:17.000] response: +Info 57 [00:02:17.000] response: { "response": { "info": { @@ -842,7 +842,7 @@ Info 57 [16:02:17.000] response: }, "responseRequired": true } -Info 58 [16:02:18.000] request: +Info 58 [00:02:18.000] request: { "command": "rename", "arguments": { @@ -909,7 +909,7 @@ FsWatchesRecursive:: /user/username/projects/myproject/random: {} -Info 59 [16:02:19.000] response: +Info 59 [00:02:19.000] response: { "response": { "info": { @@ -957,7 +957,7 @@ Info 59 [16:02:19.000] response: }, "responseRequired": true } -Info 60 [16:02:20.000] request: +Info 60 [00:02:20.000] request: { "command": "rename", "arguments": { @@ -1024,7 +1024,7 @@ FsWatchesRecursive:: /user/username/projects/myproject/random: {} -Info 61 [16:02:21.000] response: +Info 61 [00:02:21.000] response: { "response": { "info": { 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 bf7048414d337..000dcbfc09dde 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 @@ -1,5 +1,5 @@ -Info 0 [16:01:01.000] Provided types map file "/a/lib/typesMap.json" doesn't exist -Info 1 [16:01:02.000] request: +Info 0 [00:01:01.000] Provided types map file "/a/lib/typesMap.json" doesn't exist +Info 1 [00:01:02.000] request: { "seq": 0, "type": "request", @@ -192,11 +192,11 @@ FsWatches:: FsWatchesRecursive:: -Info 2 [16:01:03.000] Search path: /user/username/projects/myproject/dependency -Info 3 [16:01:04.000] For info: /user/username/projects/myproject/dependency/FnS.ts :: Config file name: /user/username/projects/myproject/dependency/tsconfig.json -Info 4 [16:01:05.000] Creating configuration project /user/username/projects/myproject/dependency/tsconfig.json -Info 5 [16:01:06.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/dependency/tsconfig.json 2000 undefined Project: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Config file -Info 6 [16:01:07.000] Config: /user/username/projects/myproject/dependency/tsconfig.json : { +Info 2 [00:01:03.000] Search path: /user/username/projects/myproject/dependency +Info 3 [00:01:04.000] For info: /user/username/projects/myproject/dependency/FnS.ts :: Config file name: /user/username/projects/myproject/dependency/tsconfig.json +Info 4 [00:01:05.000] Creating configuration project /user/username/projects/myproject/dependency/tsconfig.json +Info 5 [00:01:06.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/dependency/tsconfig.json 2000 undefined Project: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Config file +Info 6 [00:01:07.000] Config: /user/username/projects/myproject/dependency/tsconfig.json : { "rootNames": [ "/user/username/projects/myproject/dependency/FnS.ts" ], @@ -207,18 +207,18 @@ Info 6 [16:01:07.000] Config: /user/username/projects/myproject/dependency/ts "configFilePath": "/user/username/projects/myproject/dependency/tsconfig.json" } } -Info 7 [16:01:08.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/dependency 1 undefined Config: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Wild card directory -Info 8 [16:01:09.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/dependency 1 undefined Config: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Wild card directory -Info 9 [16:01:10.000] Plugins were requested but not running in environment that supports 'require'. Nothing will be loaded -Info 10 [16:01:11.000] Starting updateGraphWorker: Project: /user/username/projects/myproject/dependency/tsconfig.json -Info 11 [16:01:12.000] FileWatcher:: Added:: WatchInfo: /a/lib/lib.d.ts 500 undefined WatchType: Closed Script info -Info 12 [16:01:13.000] 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 13 [16:01:14.000] 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 14 [16:01:15.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Type roots -Info 15 [16:01:16.000] 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 16 [16:01:17.000] Finishing updateGraphWorker: Project: /user/username/projects/myproject/dependency/tsconfig.json Version: 1 structureChanged: true structureIsReused:: Not Elapsed:: *ms -Info 17 [16:01:18.000] Project '/user/username/projects/myproject/dependency/tsconfig.json' (Configured) -Info 18 [16:01:19.000] Files (2) +Info 7 [00:01:08.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/dependency 1 undefined Config: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Wild card directory +Info 8 [00:01:09.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/dependency 1 undefined Config: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Wild card directory +Info 9 [00:01:10.000] Plugins were requested but not running in environment that supports 'require'. Nothing will be loaded +Info 10 [00:01:11.000] Starting updateGraphWorker: Project: /user/username/projects/myproject/dependency/tsconfig.json +Info 11 [00:01:12.000] FileWatcher:: Added:: WatchInfo: /a/lib/lib.d.ts 500 undefined WatchType: Closed Script info +Info 12 [00:01:13.000] 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 13 [00:01:14.000] 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 14 [00:01:15.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Type roots +Info 15 [00:01:16.000] 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 16 [00:01:17.000] Finishing updateGraphWorker: Project: /user/username/projects/myproject/dependency/tsconfig.json Version: 1 structureChanged: true structureIsReused:: Not Elapsed:: *ms +Info 17 [00:01:18.000] Project '/user/username/projects/myproject/dependency/tsconfig.json' (Configured) +Info 18 [00:01:19.000] Files (2) /a/lib/lib.d.ts /user/username/projects/myproject/dependency/FnS.ts @@ -228,16 +228,16 @@ Info 18 [16:01:19.000] Files (2) FnS.ts Matched by default include pattern '**/*' -Info 19 [16:01:20.000] ----------------------------------------------- -Info 20 [16:01:21.000] Search path: /user/username/projects/myproject/dependency -Info 21 [16:01:22.000] For info: /user/username/projects/myproject/dependency/tsconfig.json :: No config files found. -Info 22 [16:01:23.000] Project '/user/username/projects/myproject/dependency/tsconfig.json' (Configured) -Info 22 [16:01:24.000] Files (2) +Info 19 [00:01:20.000] ----------------------------------------------- +Info 20 [00:01:21.000] Search path: /user/username/projects/myproject/dependency +Info 21 [00:01:22.000] For info: /user/username/projects/myproject/dependency/tsconfig.json :: No config files found. +Info 22 [00:01:23.000] Project '/user/username/projects/myproject/dependency/tsconfig.json' (Configured) +Info 22 [00:01:24.000] Files (2) -Info 22 [16:01:25.000] ----------------------------------------------- -Info 22 [16:01:26.000] Open files: -Info 22 [16:01:27.000] FileName: /user/username/projects/myproject/dependency/FnS.ts ProjectRootPath: undefined -Info 22 [16:01:28.000] Projects: /user/username/projects/myproject/dependency/tsconfig.json +Info 22 [00:01:25.000] ----------------------------------------------- +Info 22 [00:01:26.000] Open files: +Info 22 [00:01:27.000] FileName: /user/username/projects/myproject/dependency/FnS.ts ProjectRootPath: undefined +Info 22 [00:01:28.000] Projects: /user/username/projects/myproject/dependency/tsconfig.json After request PolledWatches:: @@ -256,11 +256,11 @@ FsWatchesRecursive:: /user/username/projects/myproject/dependency: {} -Info 22 [16:01:29.000] response: +Info 22 [00:01:29.000] response: { "responseRequired": false } -Info 23 [16:01:30.000] request: +Info 23 [00:01:30.000] request: { "seq": 0, "type": "request", @@ -287,11 +287,11 @@ FsWatchesRecursive:: /user/username/projects/myproject/dependency: {} -Info 24 [16:01:31.000] Search path: /user/username/projects/myproject/random -Info 25 [16:01:32.000] For info: /user/username/projects/myproject/random/random.ts :: Config file name: /user/username/projects/myproject/random/tsconfig.json -Info 26 [16:01:33.000] Creating configuration project /user/username/projects/myproject/random/tsconfig.json -Info 27 [16:01:34.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/random/tsconfig.json 2000 undefined Project: /user/username/projects/myproject/random/tsconfig.json WatchType: Config file -Info 28 [16:01:35.000] Config: /user/username/projects/myproject/random/tsconfig.json : { +Info 24 [00:01:31.000] Search path: /user/username/projects/myproject/random +Info 25 [00:01:32.000] For info: /user/username/projects/myproject/random/random.ts :: Config file name: /user/username/projects/myproject/random/tsconfig.json +Info 26 [00:01:33.000] Creating configuration project /user/username/projects/myproject/random/tsconfig.json +Info 27 [00:01:34.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/random/tsconfig.json 2000 undefined Project: /user/username/projects/myproject/random/tsconfig.json WatchType: Config file +Info 28 [00:01:35.000] Config: /user/username/projects/myproject/random/tsconfig.json : { "rootNames": [ "/user/username/projects/myproject/random/random.ts" ], @@ -299,17 +299,17 @@ Info 28 [16:01:35.000] Config: /user/username/projects/myproject/random/tsconf "configFilePath": "/user/username/projects/myproject/random/tsconfig.json" } } -Info 29 [16:01:36.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/random 1 undefined Config: /user/username/projects/myproject/random/tsconfig.json WatchType: Wild card directory -Info 30 [16:01:37.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/random 1 undefined Config: /user/username/projects/myproject/random/tsconfig.json WatchType: Wild card directory -Info 31 [16:01:38.000] Plugins were requested but not running in environment that supports 'require'. Nothing will be loaded -Info 32 [16:01:39.000] Starting updateGraphWorker: Project: /user/username/projects/myproject/random/tsconfig.json -Info 33 [16:01:40.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/random/node_modules/@types 1 undefined Project: /user/username/projects/myproject/random/tsconfig.json WatchType: Type roots -Info 34 [16:01:41.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/random/node_modules/@types 1 undefined Project: /user/username/projects/myproject/random/tsconfig.json WatchType: Type roots -Info 35 [16:01:42.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/random/tsconfig.json WatchType: Type roots -Info 36 [16:01:43.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/random/tsconfig.json WatchType: Type roots -Info 37 [16:01:44.000] Finishing updateGraphWorker: Project: /user/username/projects/myproject/random/tsconfig.json Version: 1 structureChanged: true structureIsReused:: Not Elapsed:: *ms -Info 38 [16:01:45.000] Project '/user/username/projects/myproject/random/tsconfig.json' (Configured) -Info 39 [16:01:46.000] Files (2) +Info 29 [00:01:36.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/random 1 undefined Config: /user/username/projects/myproject/random/tsconfig.json WatchType: Wild card directory +Info 30 [00:01:37.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/random 1 undefined Config: /user/username/projects/myproject/random/tsconfig.json WatchType: Wild card directory +Info 31 [00:01:38.000] Plugins were requested but not running in environment that supports 'require'. Nothing will be loaded +Info 32 [00:01:39.000] Starting updateGraphWorker: Project: /user/username/projects/myproject/random/tsconfig.json +Info 33 [00:01:40.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/random/node_modules/@types 1 undefined Project: /user/username/projects/myproject/random/tsconfig.json WatchType: Type roots +Info 34 [00:01:41.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/random/node_modules/@types 1 undefined Project: /user/username/projects/myproject/random/tsconfig.json WatchType: Type roots +Info 35 [00:01:42.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/random/tsconfig.json WatchType: Type roots +Info 36 [00:01:43.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/random/tsconfig.json WatchType: Type roots +Info 37 [00:01:44.000] Finishing updateGraphWorker: Project: /user/username/projects/myproject/random/tsconfig.json Version: 1 structureChanged: true structureIsReused:: Not Elapsed:: *ms +Info 38 [00:01:45.000] Project '/user/username/projects/myproject/random/tsconfig.json' (Configured) +Info 39 [00:01:46.000] Files (2) /a/lib/lib.d.ts /user/username/projects/myproject/random/random.ts @@ -319,20 +319,20 @@ Info 39 [16:01:46.000] Files (2) random.ts Matched by default include pattern '**/*' -Info 40 [16:01:47.000] ----------------------------------------------- -Info 41 [16:01:48.000] Project '/user/username/projects/myproject/dependency/tsconfig.json' (Configured) -Info 41 [16:01:49.000] Files (2) +Info 40 [00:01:47.000] ----------------------------------------------- +Info 41 [00:01:48.000] Project '/user/username/projects/myproject/dependency/tsconfig.json' (Configured) +Info 41 [00:01:49.000] Files (2) -Info 41 [16:01:50.000] ----------------------------------------------- -Info 41 [16:01:51.000] Project '/user/username/projects/myproject/random/tsconfig.json' (Configured) -Info 41 [16:01:52.000] Files (2) +Info 41 [00:01:50.000] ----------------------------------------------- +Info 41 [00:01:51.000] Project '/user/username/projects/myproject/random/tsconfig.json' (Configured) +Info 41 [00:01:52.000] Files (2) -Info 41 [16:01:53.000] ----------------------------------------------- -Info 41 [16:01:54.000] Open files: -Info 41 [16:01:55.000] FileName: /user/username/projects/myproject/dependency/FnS.ts ProjectRootPath: undefined -Info 41 [16:01:56.000] Projects: /user/username/projects/myproject/dependency/tsconfig.json -Info 41 [16:01:57.000] FileName: /user/username/projects/myproject/random/random.ts ProjectRootPath: undefined -Info 41 [16:01:58.000] Projects: /user/username/projects/myproject/random/tsconfig.json +Info 41 [00:01:53.000] ----------------------------------------------- +Info 41 [00:01:54.000] Open files: +Info 41 [00:01:55.000] FileName: /user/username/projects/myproject/dependency/FnS.ts ProjectRootPath: undefined +Info 41 [00:01:56.000] Projects: /user/username/projects/myproject/dependency/tsconfig.json +Info 41 [00:01:57.000] FileName: /user/username/projects/myproject/random/random.ts ProjectRootPath: undefined +Info 41 [00:01:58.000] Projects: /user/username/projects/myproject/random/tsconfig.json After request PolledWatches:: @@ -357,11 +357,11 @@ FsWatchesRecursive:: /user/username/projects/myproject/random: {} -Info 41 [16:01:59.000] response: +Info 41 [00:01:59.000] response: { "responseRequired": false } -Info 42 [16:02:00.000] request: +Info 42 [00:02:00.000] request: { "command": "rename", "arguments": { @@ -396,7 +396,7 @@ FsWatchesRecursive:: /user/username/projects/myproject/random: {} -Info 43 [16:02:01.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/decls/FnS.d.ts 2000 undefined Project: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Missing generated file +Info 43 [00:02:01.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/decls/FnS.d.ts 2000 undefined Project: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Missing generated file After request PolledWatches:: @@ -423,7 +423,7 @@ FsWatchesRecursive:: /user/username/projects/myproject/random: {} -Info 44 [16:02:02.000] response: +Info 44 [00:02:02.000] response: { "response": { "info": { @@ -471,15 +471,15 @@ Info 44 [16:02:02.000] response: }, "responseRequired": true } -Info 45 [16:02:05.000] FileWatcher:: Triggered with /user/username/projects/myproject/decls/FnS.d.ts 0:: WatchInfo: /user/username/projects/myproject/decls/FnS.d.ts 2000 undefined Project: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Missing generated file -Info 46 [16:02:06.000] Scheduled: /user/username/projects/myproject/dependency/tsconfig.json -Info 47 [16:02:07.000] Scheduled: *ensureProjectForOpenFiles* -Info 48 [16:02:08.000] Elapsed:: *ms FileWatcher:: Triggered with /user/username/projects/myproject/decls/FnS.d.ts 0:: WatchInfo: /user/username/projects/myproject/decls/FnS.d.ts 2000 undefined Project: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Missing generated file -Info 49 [16:02:09.000] FileWatcher:: Triggered with /user/username/projects/myproject/decls/FnS.d.ts 0:: WatchInfo: /user/username/projects/myproject/decls/FnS.d.ts 2000 undefined Project: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Missing generated file -Info 50 [16:02:10.000] Scheduled: /user/username/projects/myproject/dependency/tsconfig.json, Cancelled earlier one -Info 51 [16:02:11.000] Scheduled: *ensureProjectForOpenFiles*, Cancelled earlier one -Info 52 [16:02:12.000] Elapsed:: *ms FileWatcher:: Triggered with /user/username/projects/myproject/decls/FnS.d.ts 0:: WatchInfo: /user/username/projects/myproject/decls/FnS.d.ts 2000 undefined Project: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Missing generated file -Info 53 [16:02:13.000] request: +Info 45 [00:02:05.000] FileWatcher:: Triggered with /user/username/projects/myproject/decls/FnS.d.ts 0:: WatchInfo: /user/username/projects/myproject/decls/FnS.d.ts 2000 undefined Project: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Missing generated file +Info 46 [00:02:06.000] Scheduled: /user/username/projects/myproject/dependency/tsconfig.json +Info 47 [00:02:07.000] Scheduled: *ensureProjectForOpenFiles* +Info 48 [00:02:08.000] Elapsed:: *ms FileWatcher:: Triggered with /user/username/projects/myproject/decls/FnS.d.ts 0:: WatchInfo: /user/username/projects/myproject/decls/FnS.d.ts 2000 undefined Project: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Missing generated file +Info 49 [00:02:09.000] FileWatcher:: Triggered with /user/username/projects/myproject/decls/FnS.d.ts 0:: WatchInfo: /user/username/projects/myproject/decls/FnS.d.ts 2000 undefined Project: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Missing generated file +Info 50 [00:02:10.000] Scheduled: /user/username/projects/myproject/dependency/tsconfig.json, Cancelled earlier one +Info 51 [00:02:11.000] Scheduled: *ensureProjectForOpenFiles*, Cancelled earlier one +Info 52 [00:02:12.000] Elapsed:: *ms FileWatcher:: Triggered with /user/username/projects/myproject/decls/FnS.d.ts 0:: WatchInfo: /user/username/projects/myproject/decls/FnS.d.ts 2000 undefined Project: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Missing generated file +Info 53 [00:02:13.000] request: { "command": "rename", "arguments": { @@ -524,10 +524,10 @@ FsWatchesRecursive:: /user/username/projects/myproject/random: {} -Info 54 [16:02:14.000] Starting updateGraphWorker: Project: /user/username/projects/myproject/dependency/tsconfig.json -Info 55 [16:02:15.000] Finishing updateGraphWorker: Project: /user/username/projects/myproject/dependency/tsconfig.json Version: 2 structureChanged: false structureIsReused:: Not Elapsed:: *ms -Info 56 [16:02:16.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/decls/FnS.d.ts 500 undefined WatchType: Closed Script info -Info 57 [16:02:17.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/decls/FnS.d.ts.map 500 undefined WatchType: Closed Script info +Info 54 [00:02:14.000] Starting updateGraphWorker: Project: /user/username/projects/myproject/dependency/tsconfig.json +Info 55 [00:02:15.000] Finishing updateGraphWorker: Project: /user/username/projects/myproject/dependency/tsconfig.json Version: 2 structureChanged: false structureIsReused:: Not Elapsed:: *ms +Info 56 [00:02:16.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/decls/FnS.d.ts 500 undefined WatchType: Closed Script info +Info 57 [00:02:17.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/decls/FnS.d.ts.map 500 undefined WatchType: Closed Script info After request PolledWatches:: @@ -556,7 +556,7 @@ FsWatchesRecursive:: /user/username/projects/myproject/random: {} -Info 58 [16:02:18.000] response: +Info 58 [00:02:18.000] response: { "response": { "info": { @@ -604,7 +604,7 @@ Info 58 [16:02:18.000] response: }, "responseRequired": true } -Info 59 [16:02:19.000] request: +Info 59 [00:02:19.000] request: { "command": "rename", "arguments": { @@ -671,7 +671,7 @@ FsWatchesRecursive:: /user/username/projects/myproject/random: {} -Info 60 [16:02:20.000] response: +Info 60 [00:02:20.000] response: { "response": { "info": { @@ -719,7 +719,7 @@ Info 60 [16:02:20.000] response: }, "responseRequired": true } -Info 61 [16:02:21.000] request: +Info 61 [00:02:21.000] request: { "command": "rename", "arguments": { @@ -786,7 +786,7 @@ FsWatchesRecursive:: /user/username/projects/myproject/random: {} -Info 62 [16:02:22.000] response: +Info 62 [00:02:22.000] response: { "response": { "info": { @@ -834,7 +834,7 @@ Info 62 [16:02:22.000] response: }, "responseRequired": true } -Info 63 [16:02:23.000] request: +Info 63 [00:02:23.000] request: { "command": "rename", "arguments": { @@ -901,7 +901,7 @@ FsWatchesRecursive:: /user/username/projects/myproject/random: {} -Info 64 [16:02:24.000] response: +Info 64 [00:02:24.000] response: { "response": { "info": { @@ -949,7 +949,7 @@ Info 64 [16:02:24.000] response: }, "responseRequired": true } -Info 65 [16:02:25.000] request: +Info 65 [00:02:25.000] request: { "command": "rename", "arguments": { @@ -1016,7 +1016,7 @@ FsWatchesRecursive:: /user/username/projects/myproject/random: {} -Info 66 [16:02:26.000] response: +Info 66 [00:02:26.000] response: { "response": { "info": { @@ -1064,7 +1064,7 @@ Info 66 [16:02:26.000] response: }, "responseRequired": true } -Info 67 [16:02:27.000] request: +Info 67 [00:02:27.000] request: { "seq": 0, "type": "request", @@ -1101,18 +1101,18 @@ FsWatchesRecursive:: /user/username/projects/myproject/random: {} -Info 68 [16:02:28.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/random/random.ts 500 undefined WatchType: Closed Script info -Info 69 [16:02:29.000] Project '/user/username/projects/myproject/dependency/tsconfig.json' (Configured) -Info 69 [16:02:30.000] Files (2) +Info 68 [00:02:28.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/random/random.ts 500 undefined WatchType: Closed Script info +Info 69 [00:02:29.000] Project '/user/username/projects/myproject/dependency/tsconfig.json' (Configured) +Info 69 [00:02:30.000] Files (2) -Info 69 [16:02:31.000] ----------------------------------------------- -Info 69 [16:02:32.000] Project '/user/username/projects/myproject/random/tsconfig.json' (Configured) -Info 69 [16:02:33.000] Files (2) +Info 69 [00:02:31.000] ----------------------------------------------- +Info 69 [00:02:32.000] Project '/user/username/projects/myproject/random/tsconfig.json' (Configured) +Info 69 [00:02:33.000] Files (2) -Info 69 [16:02:34.000] ----------------------------------------------- -Info 69 [16:02:35.000] Open files: -Info 69 [16:02:36.000] FileName: /user/username/projects/myproject/dependency/FnS.ts ProjectRootPath: undefined -Info 69 [16:02:37.000] Projects: /user/username/projects/myproject/dependency/tsconfig.json +Info 69 [00:02:34.000] ----------------------------------------------- +Info 69 [00:02:35.000] Open files: +Info 69 [00:02:36.000] FileName: /user/username/projects/myproject/dependency/FnS.ts ProjectRootPath: undefined +Info 69 [00:02:37.000] Projects: /user/username/projects/myproject/dependency/tsconfig.json After request PolledWatches:: @@ -1143,11 +1143,11 @@ FsWatchesRecursive:: /user/username/projects/myproject/random: {} -Info 69 [16:02:38.000] response: +Info 69 [00:02:38.000] response: { "responseRequired": false } -Info 70 [16:02:39.000] request: +Info 70 [00:02:39.000] request: { "seq": 0, "type": "request", @@ -1186,22 +1186,22 @@ FsWatchesRecursive:: /user/username/projects/myproject/random: {} -Info 71 [16:02:40.000] FileWatcher:: Close:: WatchInfo: /user/username/projects/myproject/random/random.ts 500 undefined WatchType: Closed Script info -Info 72 [16:02:41.000] Search path: /user/username/projects/myproject/random -Info 73 [16:02:42.000] For info: /user/username/projects/myproject/random/random.ts :: Config file name: /user/username/projects/myproject/random/tsconfig.json -Info 74 [16:02:43.000] Project '/user/username/projects/myproject/dependency/tsconfig.json' (Configured) -Info 74 [16:02:44.000] Files (2) +Info 71 [00:02:40.000] FileWatcher:: Close:: WatchInfo: /user/username/projects/myproject/random/random.ts 500 undefined WatchType: Closed Script info +Info 72 [00:02:41.000] Search path: /user/username/projects/myproject/random +Info 73 [00:02:42.000] For info: /user/username/projects/myproject/random/random.ts :: Config file name: /user/username/projects/myproject/random/tsconfig.json +Info 74 [00:02:43.000] Project '/user/username/projects/myproject/dependency/tsconfig.json' (Configured) +Info 74 [00:02:44.000] Files (2) -Info 74 [16:02:45.000] ----------------------------------------------- -Info 74 [16:02:46.000] Project '/user/username/projects/myproject/random/tsconfig.json' (Configured) -Info 74 [16:02:47.000] Files (2) +Info 74 [00:02:45.000] ----------------------------------------------- +Info 74 [00:02:46.000] Project '/user/username/projects/myproject/random/tsconfig.json' (Configured) +Info 74 [00:02:47.000] Files (2) -Info 74 [16:02:48.000] ----------------------------------------------- -Info 74 [16:02:49.000] Open files: -Info 74 [16:02:50.000] FileName: /user/username/projects/myproject/dependency/FnS.ts ProjectRootPath: undefined -Info 74 [16:02:51.000] Projects: /user/username/projects/myproject/dependency/tsconfig.json -Info 74 [16:02:52.000] FileName: /user/username/projects/myproject/random/random.ts ProjectRootPath: undefined -Info 74 [16:02:53.000] Projects: /user/username/projects/myproject/random/tsconfig.json +Info 74 [00:02:48.000] ----------------------------------------------- +Info 74 [00:02:49.000] Open files: +Info 74 [00:02:50.000] FileName: /user/username/projects/myproject/dependency/FnS.ts ProjectRootPath: undefined +Info 74 [00:02:51.000] Projects: /user/username/projects/myproject/dependency/tsconfig.json +Info 74 [00:02:52.000] FileName: /user/username/projects/myproject/random/random.ts ProjectRootPath: undefined +Info 74 [00:02:53.000] Projects: /user/username/projects/myproject/random/tsconfig.json After request PolledWatches:: @@ -1230,11 +1230,11 @@ FsWatchesRecursive:: /user/username/projects/myproject/random: {} -Info 74 [16:02:54.000] response: +Info 74 [00:02:54.000] response: { "responseRequired": false } -Info 75 [16:02:55.000] request: +Info 75 [00:02:55.000] request: { "seq": 0, "type": "request", @@ -1271,18 +1271,18 @@ FsWatchesRecursive:: /user/username/projects/myproject/random: {} -Info 76 [16:02:56.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/dependency/FnS.ts 500 undefined WatchType: Closed Script info -Info 77 [16:02:57.000] Project '/user/username/projects/myproject/dependency/tsconfig.json' (Configured) -Info 77 [16:02:58.000] Files (2) +Info 76 [00:02:56.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/dependency/FnS.ts 500 undefined WatchType: Closed Script info +Info 77 [00:02:57.000] Project '/user/username/projects/myproject/dependency/tsconfig.json' (Configured) +Info 77 [00:02:58.000] Files (2) -Info 77 [16:02:59.000] ----------------------------------------------- -Info 77 [16:03:00.000] Project '/user/username/projects/myproject/random/tsconfig.json' (Configured) -Info 77 [16:03:01.000] Files (2) +Info 77 [00:02:59.000] ----------------------------------------------- +Info 77 [00:03:00.000] Project '/user/username/projects/myproject/random/tsconfig.json' (Configured) +Info 77 [00:03:01.000] Files (2) -Info 77 [16:03:02.000] ----------------------------------------------- -Info 77 [16:03:03.000] Open files: -Info 77 [16:03:04.000] FileName: /user/username/projects/myproject/random/random.ts ProjectRootPath: undefined -Info 77 [16:03:05.000] Projects: /user/username/projects/myproject/random/tsconfig.json +Info 77 [00:03:02.000] ----------------------------------------------- +Info 77 [00:03:03.000] Open files: +Info 77 [00:03:04.000] FileName: /user/username/projects/myproject/random/random.ts ProjectRootPath: undefined +Info 77 [00:03:05.000] Projects: /user/username/projects/myproject/random/tsconfig.json After request PolledWatches:: @@ -1313,11 +1313,11 @@ FsWatchesRecursive:: /user/username/projects/myproject/random: {} -Info 77 [16:03:06.000] response: +Info 77 [00:03:06.000] response: { "responseRequired": false } -Info 78 [16:03:07.000] request: +Info 78 [00:03:07.000] request: { "seq": 0, "type": "request", @@ -1356,16 +1356,16 @@ FsWatchesRecursive:: /user/username/projects/myproject/random: {} -Info 79 [16:03:08.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/random/random.ts 500 undefined WatchType: Closed Script info -Info 80 [16:03:09.000] Project '/user/username/projects/myproject/dependency/tsconfig.json' (Configured) -Info 80 [16:03:10.000] Files (2) +Info 79 [00:03:08.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/random/random.ts 500 undefined WatchType: Closed Script info +Info 80 [00:03:09.000] Project '/user/username/projects/myproject/dependency/tsconfig.json' (Configured) +Info 80 [00:03:10.000] Files (2) -Info 80 [16:03:11.000] ----------------------------------------------- -Info 80 [16:03:12.000] Project '/user/username/projects/myproject/random/tsconfig.json' (Configured) -Info 80 [16:03:13.000] Files (2) +Info 80 [00:03:11.000] ----------------------------------------------- +Info 80 [00:03:12.000] Project '/user/username/projects/myproject/random/tsconfig.json' (Configured) +Info 80 [00:03:13.000] Files (2) -Info 80 [16:03:14.000] ----------------------------------------------- -Info 80 [16:03:15.000] Open files: +Info 80 [00:03:14.000] ----------------------------------------------- +Info 80 [00:03:15.000] Open files: After request PolledWatches:: @@ -1398,11 +1398,11 @@ FsWatchesRecursive:: /user/username/projects/myproject/random: {} -Info 80 [16:03:16.000] response: +Info 80 [00:03:16.000] response: { "responseRequired": false } -Info 81 [16:03:17.000] request: +Info 81 [00:03:17.000] request: { "seq": 0, "type": "request", @@ -1443,12 +1443,12 @@ FsWatchesRecursive:: /user/username/projects/myproject/random: {} -Info 82 [16:03:18.000] FileWatcher:: Close:: WatchInfo: /user/username/projects/myproject/random/random.ts 500 undefined WatchType: Closed Script info -Info 83 [16:03:19.000] Search path: /user/username/projects/myproject/random -Info 84 [16:03:20.000] For info: /user/username/projects/myproject/random/random.ts :: Config file name: /user/username/projects/myproject/random/tsconfig.json -Info 85 [16:03:21.000] `remove Project:: -Info 86 [16:03:22.000] Project '/user/username/projects/myproject/dependency/tsconfig.json' (Configured) -Info 87 [16:03:23.000] Files (2) +Info 82 [00:03:18.000] FileWatcher:: Close:: WatchInfo: /user/username/projects/myproject/random/random.ts 500 undefined WatchType: Closed Script info +Info 83 [00:03:19.000] Search path: /user/username/projects/myproject/random +Info 84 [00:03:20.000] For info: /user/username/projects/myproject/random/random.ts :: Config file name: /user/username/projects/myproject/random/tsconfig.json +Info 85 [00:03:21.000] `remove Project:: +Info 86 [00:03:22.000] Project '/user/username/projects/myproject/dependency/tsconfig.json' (Configured) +Info 87 [00:03:23.000] Files (2) /a/lib/lib.d.ts /user/username/projects/myproject/dependency/FnS.ts @@ -1458,25 +1458,25 @@ Info 87 [16:03:23.000] Files (2) FnS.ts Matched by default include pattern '**/*' -Info 88 [16:03:24.000] ----------------------------------------------- -Info 89 [16:03:25.000] DirectoryWatcher:: Close:: WatchInfo: /user/username/projects/myproject/dependency 1 undefined Config: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Wild card directory -Info 90 [16:03:26.000] 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 91 [16:03:27.000] FileWatcher:: Close:: WatchInfo: /user/username/projects/myproject/dependency/tsconfig.json 2000 undefined Project: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Config file -Info 92 [16:03:28.000] 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 93 [16:03:29.000] 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 94 [16:03:30.000] DirectoryWatcher:: Close:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Type roots -Info 95 [16:03:31.000] 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 96 [16:03:32.000] 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 97 [16:03:33.000] FileWatcher:: Close:: WatchInfo: /user/username/projects/myproject/dependency/FnS.ts 500 undefined WatchType: Closed Script info -Info 98 [16:03:34.000] FileWatcher:: Close:: WatchInfo: /user/username/projects/myproject/decls/FnS.d.ts 500 undefined WatchType: Closed Script info -Info 99 [16:03:35.000] FileWatcher:: Close:: WatchInfo: /user/username/projects/myproject/decls/FnS.d.ts.map 500 undefined WatchType: Closed Script info -Info 100 [16:03:36.000] Project '/user/username/projects/myproject/random/tsconfig.json' (Configured) -Info 100 [16:03:37.000] Files (2) - -Info 100 [16:03:38.000] ----------------------------------------------- -Info 100 [16:03:39.000] Open files: -Info 100 [16:03:40.000] FileName: /user/username/projects/myproject/random/random.ts ProjectRootPath: undefined -Info 100 [16:03:41.000] Projects: /user/username/projects/myproject/random/tsconfig.json +Info 88 [00:03:24.000] ----------------------------------------------- +Info 89 [00:03:25.000] DirectoryWatcher:: Close:: WatchInfo: /user/username/projects/myproject/dependency 1 undefined Config: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Wild card directory +Info 90 [00:03:26.000] 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 91 [00:03:27.000] FileWatcher:: Close:: WatchInfo: /user/username/projects/myproject/dependency/tsconfig.json 2000 undefined Project: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Config file +Info 92 [00:03:28.000] 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 93 [00:03:29.000] 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 94 [00:03:30.000] DirectoryWatcher:: Close:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Type roots +Info 95 [00:03:31.000] 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 96 [00:03:32.000] 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 97 [00:03:33.000] FileWatcher:: Close:: WatchInfo: /user/username/projects/myproject/dependency/FnS.ts 500 undefined WatchType: Closed Script info +Info 98 [00:03:34.000] FileWatcher:: Close:: WatchInfo: /user/username/projects/myproject/decls/FnS.d.ts 500 undefined WatchType: Closed Script info +Info 99 [00:03:35.000] FileWatcher:: Close:: WatchInfo: /user/username/projects/myproject/decls/FnS.d.ts.map 500 undefined WatchType: Closed Script info +Info 100 [00:03:36.000] Project '/user/username/projects/myproject/random/tsconfig.json' (Configured) +Info 100 [00:03:37.000] Files (2) + +Info 100 [00:03:38.000] ----------------------------------------------- +Info 100 [00:03:39.000] Open files: +Info 100 [00:03:40.000] FileName: /user/username/projects/myproject/random/random.ts ProjectRootPath: undefined +Info 100 [00:03:41.000] Projects: /user/username/projects/myproject/random/tsconfig.json After request PolledWatches:: @@ -1495,7 +1495,7 @@ FsWatchesRecursive:: /user/username/projects/myproject/random: {} -Info 100 [16:03:42.000] response: +Info 100 [00:03:42.000] response: { "responseRequired": false } \ No newline at end of file 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 565ad63cabef2..bbce4629d4a5f 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 @@ -1,5 +1,5 @@ -Info 0 [16:01:00.000] Provided types map file "/a/lib/typesMap.json" doesn't exist -Info 1 [16:01:01.000] request: +Info 0 [00:01:00.000] Provided types map file "/a/lib/typesMap.json" doesn't exist +Info 1 [00:01:01.000] request: { "seq": 0, "type": "request", @@ -200,11 +200,11 @@ FsWatches:: FsWatchesRecursive:: -Info 2 [16:01:02.000] Search path: /user/username/projects/myproject/dependency -Info 3 [16:01:03.000] For info: /user/username/projects/myproject/dependency/FnS.ts :: Config file name: /user/username/projects/myproject/dependency/tsconfig.json -Info 4 [16:01:04.000] Creating configuration project /user/username/projects/myproject/dependency/tsconfig.json -Info 5 [16:01:05.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/dependency/tsconfig.json 2000 undefined Project: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Config file -Info 6 [16:01:06.000] Config: /user/username/projects/myproject/dependency/tsconfig.json : { +Info 2 [00:01:02.000] Search path: /user/username/projects/myproject/dependency +Info 3 [00:01:03.000] For info: /user/username/projects/myproject/dependency/FnS.ts :: Config file name: /user/username/projects/myproject/dependency/tsconfig.json +Info 4 [00:01:04.000] Creating configuration project /user/username/projects/myproject/dependency/tsconfig.json +Info 5 [00:01:05.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/dependency/tsconfig.json 2000 undefined Project: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Config file +Info 6 [00:01:06.000] Config: /user/username/projects/myproject/dependency/tsconfig.json : { "rootNames": [ "/user/username/projects/myproject/dependency/FnS.ts" ], @@ -215,18 +215,18 @@ Info 6 [16:01:06.000] Config: /user/username/projects/myproject/dependency/ts "configFilePath": "/user/username/projects/myproject/dependency/tsconfig.json" } } -Info 7 [16:01:07.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/dependency 1 undefined Config: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Wild card directory -Info 8 [16:01:08.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/dependency 1 undefined Config: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Wild card directory -Info 9 [16:01:09.000] Plugins were requested but not running in environment that supports 'require'. Nothing will be loaded -Info 10 [16:01:10.000] Starting updateGraphWorker: Project: /user/username/projects/myproject/dependency/tsconfig.json -Info 11 [16:01:11.000] FileWatcher:: Added:: WatchInfo: /a/lib/lib.d.ts 500 undefined WatchType: Closed Script info -Info 12 [16:01:12.000] 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 13 [16:01:13.000] 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 14 [16:01:14.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Type roots -Info 15 [16:01:15.000] 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 16 [16:01:16.000] Finishing updateGraphWorker: Project: /user/username/projects/myproject/dependency/tsconfig.json Version: 1 structureChanged: true structureIsReused:: Not Elapsed:: *ms -Info 17 [16:01:17.000] Project '/user/username/projects/myproject/dependency/tsconfig.json' (Configured) -Info 18 [16:01:18.000] Files (2) +Info 7 [00:01:07.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/dependency 1 undefined Config: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Wild card directory +Info 8 [00:01:08.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/dependency 1 undefined Config: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Wild card directory +Info 9 [00:01:09.000] Plugins were requested but not running in environment that supports 'require'. Nothing will be loaded +Info 10 [00:01:10.000] Starting updateGraphWorker: Project: /user/username/projects/myproject/dependency/tsconfig.json +Info 11 [00:01:11.000] FileWatcher:: Added:: WatchInfo: /a/lib/lib.d.ts 500 undefined WatchType: Closed Script info +Info 12 [00:01:12.000] 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 13 [00:01:13.000] 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 14 [00:01:14.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Type roots +Info 15 [00:01:15.000] 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 16 [00:01:16.000] Finishing updateGraphWorker: Project: /user/username/projects/myproject/dependency/tsconfig.json Version: 1 structureChanged: true structureIsReused:: Not Elapsed:: *ms +Info 17 [00:01:17.000] Project '/user/username/projects/myproject/dependency/tsconfig.json' (Configured) +Info 18 [00:01:18.000] Files (2) /a/lib/lib.d.ts /user/username/projects/myproject/dependency/FnS.ts @@ -236,16 +236,16 @@ Info 18 [16:01:18.000] Files (2) FnS.ts Matched by default include pattern '**/*' -Info 19 [16:01:19.000] ----------------------------------------------- -Info 20 [16:01:20.000] Search path: /user/username/projects/myproject/dependency -Info 21 [16:01:21.000] For info: /user/username/projects/myproject/dependency/tsconfig.json :: No config files found. -Info 22 [16:01:22.000] Project '/user/username/projects/myproject/dependency/tsconfig.json' (Configured) -Info 22 [16:01:23.000] Files (2) +Info 19 [00:01:19.000] ----------------------------------------------- +Info 20 [00:01:20.000] Search path: /user/username/projects/myproject/dependency +Info 21 [00:01:21.000] For info: /user/username/projects/myproject/dependency/tsconfig.json :: No config files found. +Info 22 [00:01:22.000] Project '/user/username/projects/myproject/dependency/tsconfig.json' (Configured) +Info 22 [00:01:23.000] Files (2) -Info 22 [16:01:24.000] ----------------------------------------------- -Info 22 [16:01:25.000] Open files: -Info 22 [16:01:26.000] FileName: /user/username/projects/myproject/dependency/FnS.ts ProjectRootPath: undefined -Info 22 [16:01:27.000] Projects: /user/username/projects/myproject/dependency/tsconfig.json +Info 22 [00:01:24.000] ----------------------------------------------- +Info 22 [00:01:25.000] Open files: +Info 22 [00:01:26.000] FileName: /user/username/projects/myproject/dependency/FnS.ts ProjectRootPath: undefined +Info 22 [00:01:27.000] Projects: /user/username/projects/myproject/dependency/tsconfig.json After request PolledWatches:: @@ -264,11 +264,11 @@ FsWatchesRecursive:: /user/username/projects/myproject/dependency: {} -Info 22 [16:01:28.000] response: +Info 22 [00:01:28.000] response: { "responseRequired": false } -Info 23 [16:01:29.000] request: +Info 23 [00:01:29.000] request: { "seq": 0, "type": "request", @@ -295,11 +295,11 @@ FsWatchesRecursive:: /user/username/projects/myproject/dependency: {} -Info 24 [16:01:30.000] Search path: /user/username/projects/myproject/random -Info 25 [16:01:31.000] For info: /user/username/projects/myproject/random/random.ts :: Config file name: /user/username/projects/myproject/random/tsconfig.json -Info 26 [16:01:32.000] Creating configuration project /user/username/projects/myproject/random/tsconfig.json -Info 27 [16:01:33.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/random/tsconfig.json 2000 undefined Project: /user/username/projects/myproject/random/tsconfig.json WatchType: Config file -Info 28 [16:01:34.000] Config: /user/username/projects/myproject/random/tsconfig.json : { +Info 24 [00:01:30.000] Search path: /user/username/projects/myproject/random +Info 25 [00:01:31.000] For info: /user/username/projects/myproject/random/random.ts :: Config file name: /user/username/projects/myproject/random/tsconfig.json +Info 26 [00:01:32.000] Creating configuration project /user/username/projects/myproject/random/tsconfig.json +Info 27 [00:01:33.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/random/tsconfig.json 2000 undefined Project: /user/username/projects/myproject/random/tsconfig.json WatchType: Config file +Info 28 [00:01:34.000] Config: /user/username/projects/myproject/random/tsconfig.json : { "rootNames": [ "/user/username/projects/myproject/random/random.ts" ], @@ -307,17 +307,17 @@ Info 28 [16:01:34.000] Config: /user/username/projects/myproject/random/tsconf "configFilePath": "/user/username/projects/myproject/random/tsconfig.json" } } -Info 29 [16:01:35.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/random 1 undefined Config: /user/username/projects/myproject/random/tsconfig.json WatchType: Wild card directory -Info 30 [16:01:36.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/random 1 undefined Config: /user/username/projects/myproject/random/tsconfig.json WatchType: Wild card directory -Info 31 [16:01:37.000] Plugins were requested but not running in environment that supports 'require'. Nothing will be loaded -Info 32 [16:01:38.000] Starting updateGraphWorker: Project: /user/username/projects/myproject/random/tsconfig.json -Info 33 [16:01:39.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/random/node_modules/@types 1 undefined Project: /user/username/projects/myproject/random/tsconfig.json WatchType: Type roots -Info 34 [16:01:40.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/random/node_modules/@types 1 undefined Project: /user/username/projects/myproject/random/tsconfig.json WatchType: Type roots -Info 35 [16:01:41.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/random/tsconfig.json WatchType: Type roots -Info 36 [16:01:42.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/random/tsconfig.json WatchType: Type roots -Info 37 [16:01:43.000] Finishing updateGraphWorker: Project: /user/username/projects/myproject/random/tsconfig.json Version: 1 structureChanged: true structureIsReused:: Not Elapsed:: *ms -Info 38 [16:01:44.000] Project '/user/username/projects/myproject/random/tsconfig.json' (Configured) -Info 39 [16:01:45.000] Files (2) +Info 29 [00:01:35.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/random 1 undefined Config: /user/username/projects/myproject/random/tsconfig.json WatchType: Wild card directory +Info 30 [00:01:36.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/random 1 undefined Config: /user/username/projects/myproject/random/tsconfig.json WatchType: Wild card directory +Info 31 [00:01:37.000] Plugins were requested but not running in environment that supports 'require'. Nothing will be loaded +Info 32 [00:01:38.000] Starting updateGraphWorker: Project: /user/username/projects/myproject/random/tsconfig.json +Info 33 [00:01:39.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/random/node_modules/@types 1 undefined Project: /user/username/projects/myproject/random/tsconfig.json WatchType: Type roots +Info 34 [00:01:40.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/random/node_modules/@types 1 undefined Project: /user/username/projects/myproject/random/tsconfig.json WatchType: Type roots +Info 35 [00:01:41.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/random/tsconfig.json WatchType: Type roots +Info 36 [00:01:42.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/random/tsconfig.json WatchType: Type roots +Info 37 [00:01:43.000] Finishing updateGraphWorker: Project: /user/username/projects/myproject/random/tsconfig.json Version: 1 structureChanged: true structureIsReused:: Not Elapsed:: *ms +Info 38 [00:01:44.000] Project '/user/username/projects/myproject/random/tsconfig.json' (Configured) +Info 39 [00:01:45.000] Files (2) /a/lib/lib.d.ts /user/username/projects/myproject/random/random.ts @@ -327,20 +327,20 @@ Info 39 [16:01:45.000] Files (2) random.ts Matched by default include pattern '**/*' -Info 40 [16:01:46.000] ----------------------------------------------- -Info 41 [16:01:47.000] Project '/user/username/projects/myproject/dependency/tsconfig.json' (Configured) -Info 41 [16:01:48.000] Files (2) +Info 40 [00:01:46.000] ----------------------------------------------- +Info 41 [00:01:47.000] Project '/user/username/projects/myproject/dependency/tsconfig.json' (Configured) +Info 41 [00:01:48.000] Files (2) -Info 41 [16:01:49.000] ----------------------------------------------- -Info 41 [16:01:50.000] Project '/user/username/projects/myproject/random/tsconfig.json' (Configured) -Info 41 [16:01:51.000] Files (2) +Info 41 [00:01:49.000] ----------------------------------------------- +Info 41 [00:01:50.000] Project '/user/username/projects/myproject/random/tsconfig.json' (Configured) +Info 41 [00:01:51.000] Files (2) -Info 41 [16:01:52.000] ----------------------------------------------- -Info 41 [16:01:53.000] Open files: -Info 41 [16:01:54.000] FileName: /user/username/projects/myproject/dependency/FnS.ts ProjectRootPath: undefined -Info 41 [16:01:55.000] Projects: /user/username/projects/myproject/dependency/tsconfig.json -Info 41 [16:01:56.000] FileName: /user/username/projects/myproject/random/random.ts ProjectRootPath: undefined -Info 41 [16:01:57.000] Projects: /user/username/projects/myproject/random/tsconfig.json +Info 41 [00:01:52.000] ----------------------------------------------- +Info 41 [00:01:53.000] Open files: +Info 41 [00:01:54.000] FileName: /user/username/projects/myproject/dependency/FnS.ts ProjectRootPath: undefined +Info 41 [00:01:55.000] Projects: /user/username/projects/myproject/dependency/tsconfig.json +Info 41 [00:01:56.000] FileName: /user/username/projects/myproject/random/random.ts ProjectRootPath: undefined +Info 41 [00:01:57.000] Projects: /user/username/projects/myproject/random/tsconfig.json After request PolledWatches:: @@ -365,11 +365,11 @@ FsWatchesRecursive:: /user/username/projects/myproject/random: {} -Info 41 [16:01:58.000] response: +Info 41 [00:01:58.000] response: { "responseRequired": false } -Info 42 [16:01:59.000] request: +Info 42 [00:01:59.000] request: { "command": "rename", "arguments": { @@ -404,8 +404,8 @@ FsWatchesRecursive:: /user/username/projects/myproject/random: {} -Info 43 [16:02:00.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/decls/FnS.d.ts 500 undefined WatchType: Closed Script info -Info 44 [16:02:01.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/decls/FnS.d.ts.map 500 undefined WatchType: Closed Script info +Info 43 [00:02:00.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/decls/FnS.d.ts 500 undefined WatchType: Closed Script info +Info 44 [00:02:01.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/decls/FnS.d.ts.map 500 undefined WatchType: Closed Script info After request PolledWatches:: @@ -434,7 +434,7 @@ FsWatchesRecursive:: /user/username/projects/myproject/random: {} -Info 45 [16:02:02.000] response: +Info 45 [00:02:02.000] response: { "response": { "info": { @@ -482,12 +482,12 @@ Info 45 [16:02:02.000] response: }, "responseRequired": true } -Info 46 [16:02:04.000] FileWatcher:: Triggered with /user/username/projects/myproject/decls/FnS.d.ts 2:: WatchInfo: /user/username/projects/myproject/decls/FnS.d.ts 500 undefined WatchType: Closed Script info -Info 47 [16:02:05.000] FileWatcher:: Close:: WatchInfo: /user/username/projects/myproject/decls/FnS.d.ts 500 undefined WatchType: Closed Script info -Info 48 [16:02:06.000] Scheduled: /user/username/projects/myproject/dependency/tsconfig.json -Info 49 [16:02:07.000] Scheduled: *ensureProjectForOpenFiles* -Info 50 [16:02:08.000] Elapsed:: *ms FileWatcher:: Triggered with /user/username/projects/myproject/decls/FnS.d.ts 2:: WatchInfo: /user/username/projects/myproject/decls/FnS.d.ts 500 undefined WatchType: Closed Script info -Info 51 [16:02:09.000] request: +Info 46 [00:02:04.000] FileWatcher:: Triggered with /user/username/projects/myproject/decls/FnS.d.ts 2:: WatchInfo: /user/username/projects/myproject/decls/FnS.d.ts 500 undefined WatchType: Closed Script info +Info 47 [00:02:05.000] FileWatcher:: Close:: WatchInfo: /user/username/projects/myproject/decls/FnS.d.ts 500 undefined WatchType: Closed Script info +Info 48 [00:02:06.000] Scheduled: /user/username/projects/myproject/dependency/tsconfig.json +Info 49 [00:02:07.000] Scheduled: *ensureProjectForOpenFiles* +Info 50 [00:02:08.000] Elapsed:: *ms FileWatcher:: Triggered with /user/username/projects/myproject/decls/FnS.d.ts 2:: WatchInfo: /user/username/projects/myproject/decls/FnS.d.ts 500 undefined WatchType: Closed Script info +Info 51 [00:02:09.000] request: { "command": "rename", "arguments": { @@ -525,9 +525,9 @@ FsWatchesRecursive:: /user/username/projects/myproject/random: {} -Info 52 [16:02:10.000] Starting updateGraphWorker: Project: /user/username/projects/myproject/dependency/tsconfig.json -Info 53 [16:02:11.000] Finishing updateGraphWorker: Project: /user/username/projects/myproject/dependency/tsconfig.json Version: 2 structureChanged: false structureIsReused:: Not Elapsed:: *ms -Info 54 [16:02:12.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/decls/FnS.d.ts 2000 undefined Project: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Missing generated file +Info 52 [00:02:10.000] Starting updateGraphWorker: Project: /user/username/projects/myproject/dependency/tsconfig.json +Info 53 [00:02:11.000] Finishing updateGraphWorker: Project: /user/username/projects/myproject/dependency/tsconfig.json Version: 2 structureChanged: false structureIsReused:: Not Elapsed:: *ms +Info 54 [00:02:12.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/decls/FnS.d.ts 2000 undefined Project: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Missing generated file After request PolledWatches:: @@ -556,7 +556,7 @@ FsWatchesRecursive:: /user/username/projects/myproject/random: {} -Info 55 [16:02:13.000] response: +Info 55 [00:02:13.000] response: { "response": { "info": { @@ -604,7 +604,7 @@ Info 55 [16:02:13.000] response: }, "responseRequired": true } -Info 56 [16:02:14.000] request: +Info 56 [00:02:14.000] request: { "command": "rename", "arguments": { @@ -671,7 +671,7 @@ FsWatchesRecursive:: /user/username/projects/myproject/random: {} -Info 57 [16:02:15.000] response: +Info 57 [00:02:15.000] response: { "response": { "info": { @@ -719,7 +719,7 @@ Info 57 [16:02:15.000] response: }, "responseRequired": true } -Info 58 [16:02:16.000] request: +Info 58 [00:02:16.000] request: { "command": "rename", "arguments": { @@ -786,7 +786,7 @@ FsWatchesRecursive:: /user/username/projects/myproject/random: {} -Info 59 [16:02:17.000] response: +Info 59 [00:02:17.000] response: { "response": { "info": { @@ -834,7 +834,7 @@ Info 59 [16:02:17.000] response: }, "responseRequired": true } -Info 60 [16:02:18.000] request: +Info 60 [00:02:18.000] request: { "command": "rename", "arguments": { @@ -901,7 +901,7 @@ FsWatchesRecursive:: /user/username/projects/myproject/random: {} -Info 61 [16:02:19.000] response: +Info 61 [00:02:19.000] response: { "response": { "info": { @@ -949,7 +949,7 @@ Info 61 [16:02:19.000] response: }, "responseRequired": true } -Info 62 [16:02:20.000] request: +Info 62 [00:02:20.000] request: { "command": "rename", "arguments": { @@ -1016,7 +1016,7 @@ FsWatchesRecursive:: /user/username/projects/myproject/random: {} -Info 63 [16:02:21.000] response: +Info 63 [00:02:21.000] response: { "response": { "info": { @@ -1064,7 +1064,7 @@ Info 63 [16:02:21.000] response: }, "responseRequired": true } -Info 64 [16:02:22.000] request: +Info 64 [00:02:22.000] request: { "seq": 0, "type": "request", @@ -1101,18 +1101,18 @@ FsWatchesRecursive:: /user/username/projects/myproject/random: {} -Info 65 [16:02:23.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/random/random.ts 500 undefined WatchType: Closed Script info -Info 66 [16:02:24.000] Project '/user/username/projects/myproject/dependency/tsconfig.json' (Configured) -Info 66 [16:02:25.000] Files (2) +Info 65 [00:02:23.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/random/random.ts 500 undefined WatchType: Closed Script info +Info 66 [00:02:24.000] Project '/user/username/projects/myproject/dependency/tsconfig.json' (Configured) +Info 66 [00:02:25.000] Files (2) -Info 66 [16:02:26.000] ----------------------------------------------- -Info 66 [16:02:27.000] Project '/user/username/projects/myproject/random/tsconfig.json' (Configured) -Info 66 [16:02:28.000] Files (2) +Info 66 [00:02:26.000] ----------------------------------------------- +Info 66 [00:02:27.000] Project '/user/username/projects/myproject/random/tsconfig.json' (Configured) +Info 66 [00:02:28.000] Files (2) -Info 66 [16:02:29.000] ----------------------------------------------- -Info 66 [16:02:30.000] Open files: -Info 66 [16:02:31.000] FileName: /user/username/projects/myproject/dependency/FnS.ts ProjectRootPath: undefined -Info 66 [16:02:32.000] Projects: /user/username/projects/myproject/dependency/tsconfig.json +Info 66 [00:02:29.000] ----------------------------------------------- +Info 66 [00:02:30.000] Open files: +Info 66 [00:02:31.000] FileName: /user/username/projects/myproject/dependency/FnS.ts ProjectRootPath: undefined +Info 66 [00:02:32.000] Projects: /user/username/projects/myproject/dependency/tsconfig.json After request PolledWatches:: @@ -1143,11 +1143,11 @@ FsWatchesRecursive:: /user/username/projects/myproject/random: {} -Info 66 [16:02:33.000] response: +Info 66 [00:02:33.000] response: { "responseRequired": false } -Info 67 [16:02:34.000] request: +Info 67 [00:02:34.000] request: { "seq": 0, "type": "request", @@ -1186,23 +1186,23 @@ FsWatchesRecursive:: /user/username/projects/myproject/random: {} -Info 68 [16:02:35.000] FileWatcher:: Close:: WatchInfo: /user/username/projects/myproject/random/random.ts 500 undefined WatchType: Closed Script info -Info 69 [16:02:36.000] Search path: /user/username/projects/myproject/random -Info 70 [16:02:37.000] For info: /user/username/projects/myproject/random/random.ts :: Config file name: /user/username/projects/myproject/random/tsconfig.json -Info 71 [16:02:38.000] FileWatcher:: Close:: WatchInfo: /user/username/projects/myproject/decls/FnS.d.ts.map 500 undefined WatchType: Closed Script info -Info 72 [16:02:39.000] Project '/user/username/projects/myproject/dependency/tsconfig.json' (Configured) -Info 72 [16:02:40.000] Files (2) +Info 68 [00:02:35.000] FileWatcher:: Close:: WatchInfo: /user/username/projects/myproject/random/random.ts 500 undefined WatchType: Closed Script info +Info 69 [00:02:36.000] Search path: /user/username/projects/myproject/random +Info 70 [00:02:37.000] For info: /user/username/projects/myproject/random/random.ts :: Config file name: /user/username/projects/myproject/random/tsconfig.json +Info 71 [00:02:38.000] FileWatcher:: Close:: WatchInfo: /user/username/projects/myproject/decls/FnS.d.ts.map 500 undefined WatchType: Closed Script info +Info 72 [00:02:39.000] Project '/user/username/projects/myproject/dependency/tsconfig.json' (Configured) +Info 72 [00:02:40.000] Files (2) -Info 72 [16:02:41.000] ----------------------------------------------- -Info 72 [16:02:42.000] Project '/user/username/projects/myproject/random/tsconfig.json' (Configured) -Info 72 [16:02:43.000] Files (2) +Info 72 [00:02:41.000] ----------------------------------------------- +Info 72 [00:02:42.000] Project '/user/username/projects/myproject/random/tsconfig.json' (Configured) +Info 72 [00:02:43.000] Files (2) -Info 72 [16:02:44.000] ----------------------------------------------- -Info 72 [16:02:45.000] Open files: -Info 72 [16:02:46.000] FileName: /user/username/projects/myproject/dependency/FnS.ts ProjectRootPath: undefined -Info 72 [16:02:47.000] Projects: /user/username/projects/myproject/dependency/tsconfig.json -Info 72 [16:02:48.000] FileName: /user/username/projects/myproject/random/random.ts ProjectRootPath: undefined -Info 72 [16:02:49.000] Projects: /user/username/projects/myproject/random/tsconfig.json +Info 72 [00:02:44.000] ----------------------------------------------- +Info 72 [00:02:45.000] Open files: +Info 72 [00:02:46.000] FileName: /user/username/projects/myproject/dependency/FnS.ts ProjectRootPath: undefined +Info 72 [00:02:47.000] Projects: /user/username/projects/myproject/dependency/tsconfig.json +Info 72 [00:02:48.000] FileName: /user/username/projects/myproject/random/random.ts ProjectRootPath: undefined +Info 72 [00:02:49.000] Projects: /user/username/projects/myproject/random/tsconfig.json After request PolledWatches:: @@ -1229,11 +1229,11 @@ FsWatchesRecursive:: /user/username/projects/myproject/random: {} -Info 72 [16:02:50.000] response: +Info 72 [00:02:50.000] response: { "responseRequired": false } -Info 73 [16:02:51.000] request: +Info 73 [00:02:51.000] request: { "seq": 0, "type": "request", @@ -1268,18 +1268,18 @@ FsWatchesRecursive:: /user/username/projects/myproject/random: {} -Info 74 [16:02:52.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/dependency/FnS.ts 500 undefined WatchType: Closed Script info -Info 75 [16:02:53.000] Project '/user/username/projects/myproject/dependency/tsconfig.json' (Configured) -Info 75 [16:02:54.000] Files (2) +Info 74 [00:02:52.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/dependency/FnS.ts 500 undefined WatchType: Closed Script info +Info 75 [00:02:53.000] Project '/user/username/projects/myproject/dependency/tsconfig.json' (Configured) +Info 75 [00:02:54.000] Files (2) -Info 75 [16:02:55.000] ----------------------------------------------- -Info 75 [16:02:56.000] Project '/user/username/projects/myproject/random/tsconfig.json' (Configured) -Info 75 [16:02:57.000] Files (2) +Info 75 [00:02:55.000] ----------------------------------------------- +Info 75 [00:02:56.000] Project '/user/username/projects/myproject/random/tsconfig.json' (Configured) +Info 75 [00:02:57.000] Files (2) -Info 75 [16:02:58.000] ----------------------------------------------- -Info 75 [16:02:59.000] Open files: -Info 75 [16:03:00.000] FileName: /user/username/projects/myproject/random/random.ts ProjectRootPath: undefined -Info 75 [16:03:01.000] Projects: /user/username/projects/myproject/random/tsconfig.json +Info 75 [00:02:58.000] ----------------------------------------------- +Info 75 [00:02:59.000] Open files: +Info 75 [00:03:00.000] FileName: /user/username/projects/myproject/random/random.ts ProjectRootPath: undefined +Info 75 [00:03:01.000] Projects: /user/username/projects/myproject/random/tsconfig.json After request PolledWatches:: @@ -1308,11 +1308,11 @@ FsWatchesRecursive:: /user/username/projects/myproject/random: {} -Info 75 [16:03:02.000] response: +Info 75 [00:03:02.000] response: { "responseRequired": false } -Info 76 [16:03:03.000] request: +Info 76 [00:03:03.000] request: { "seq": 0, "type": "request", @@ -1349,16 +1349,16 @@ FsWatchesRecursive:: /user/username/projects/myproject/random: {} -Info 77 [16:03:04.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/random/random.ts 500 undefined WatchType: Closed Script info -Info 78 [16:03:05.000] Project '/user/username/projects/myproject/dependency/tsconfig.json' (Configured) -Info 78 [16:03:06.000] Files (2) +Info 77 [00:03:04.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/random/random.ts 500 undefined WatchType: Closed Script info +Info 78 [00:03:05.000] Project '/user/username/projects/myproject/dependency/tsconfig.json' (Configured) +Info 78 [00:03:06.000] Files (2) -Info 78 [16:03:07.000] ----------------------------------------------- -Info 78 [16:03:08.000] Project '/user/username/projects/myproject/random/tsconfig.json' (Configured) -Info 78 [16:03:09.000] Files (2) +Info 78 [00:03:07.000] ----------------------------------------------- +Info 78 [00:03:08.000] Project '/user/username/projects/myproject/random/tsconfig.json' (Configured) +Info 78 [00:03:09.000] Files (2) -Info 78 [16:03:10.000] ----------------------------------------------- -Info 78 [16:03:11.000] Open files: +Info 78 [00:03:10.000] ----------------------------------------------- +Info 78 [00:03:11.000] Open files: After request PolledWatches:: @@ -1389,11 +1389,11 @@ FsWatchesRecursive:: /user/username/projects/myproject/random: {} -Info 78 [16:03:12.000] response: +Info 78 [00:03:12.000] response: { "responseRequired": false } -Info 79 [16:03:13.000] request: +Info 79 [00:03:13.000] request: { "seq": 0, "type": "request", @@ -1432,12 +1432,12 @@ FsWatchesRecursive:: /user/username/projects/myproject/random: {} -Info 80 [16:03:14.000] FileWatcher:: Close:: WatchInfo: /user/username/projects/myproject/random/random.ts 500 undefined WatchType: Closed Script info -Info 81 [16:03:15.000] Search path: /user/username/projects/myproject/random -Info 82 [16:03:16.000] For info: /user/username/projects/myproject/random/random.ts :: Config file name: /user/username/projects/myproject/random/tsconfig.json -Info 83 [16:03:17.000] `remove Project:: -Info 84 [16:03:18.000] Project '/user/username/projects/myproject/dependency/tsconfig.json' (Configured) -Info 85 [16:03:19.000] Files (2) +Info 80 [00:03:14.000] FileWatcher:: Close:: WatchInfo: /user/username/projects/myproject/random/random.ts 500 undefined WatchType: Closed Script info +Info 81 [00:03:15.000] Search path: /user/username/projects/myproject/random +Info 82 [00:03:16.000] For info: /user/username/projects/myproject/random/random.ts :: Config file name: /user/username/projects/myproject/random/tsconfig.json +Info 83 [00:03:17.000] `remove Project:: +Info 84 [00:03:18.000] Project '/user/username/projects/myproject/dependency/tsconfig.json' (Configured) +Info 85 [00:03:19.000] Files (2) /a/lib/lib.d.ts /user/username/projects/myproject/dependency/FnS.ts @@ -1447,23 +1447,23 @@ Info 85 [16:03:19.000] Files (2) FnS.ts Matched by default include pattern '**/*' -Info 86 [16:03:20.000] ----------------------------------------------- -Info 87 [16:03:21.000] DirectoryWatcher:: Close:: WatchInfo: /user/username/projects/myproject/dependency 1 undefined Config: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Wild card directory -Info 88 [16:03:22.000] 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 89 [16:03:23.000] FileWatcher:: Close:: WatchInfo: /user/username/projects/myproject/dependency/tsconfig.json 2000 undefined Project: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Config file -Info 90 [16:03:24.000] 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 91 [16:03:25.000] 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 92 [16:03:26.000] DirectoryWatcher:: Close:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Type roots -Info 93 [16:03:27.000] 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 94 [16:03:28.000] 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 95 [16:03:29.000] FileWatcher:: Close:: WatchInfo: /user/username/projects/myproject/dependency/FnS.ts 500 undefined WatchType: Closed Script info -Info 96 [16:03:30.000] Project '/user/username/projects/myproject/random/tsconfig.json' (Configured) -Info 96 [16:03:31.000] Files (2) - -Info 96 [16:03:32.000] ----------------------------------------------- -Info 96 [16:03:33.000] Open files: -Info 96 [16:03:34.000] FileName: /user/username/projects/myproject/random/random.ts ProjectRootPath: undefined -Info 96 [16:03:35.000] Projects: /user/username/projects/myproject/random/tsconfig.json +Info 86 [00:03:20.000] ----------------------------------------------- +Info 87 [00:03:21.000] DirectoryWatcher:: Close:: WatchInfo: /user/username/projects/myproject/dependency 1 undefined Config: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Wild card directory +Info 88 [00:03:22.000] 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 89 [00:03:23.000] FileWatcher:: Close:: WatchInfo: /user/username/projects/myproject/dependency/tsconfig.json 2000 undefined Project: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Config file +Info 90 [00:03:24.000] 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 91 [00:03:25.000] 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 92 [00:03:26.000] DirectoryWatcher:: Close:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Type roots +Info 93 [00:03:27.000] 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 94 [00:03:28.000] 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 95 [00:03:29.000] FileWatcher:: Close:: WatchInfo: /user/username/projects/myproject/dependency/FnS.ts 500 undefined WatchType: Closed Script info +Info 96 [00:03:30.000] Project '/user/username/projects/myproject/random/tsconfig.json' (Configured) +Info 96 [00:03:31.000] Files (2) + +Info 96 [00:03:32.000] ----------------------------------------------- +Info 96 [00:03:33.000] Open files: +Info 96 [00:03:34.000] FileName: /user/username/projects/myproject/random/random.ts ProjectRootPath: undefined +Info 96 [00:03:35.000] Projects: /user/username/projects/myproject/random/tsconfig.json After request PolledWatches:: @@ -1482,7 +1482,7 @@ FsWatchesRecursive:: /user/username/projects/myproject/random: {} -Info 96 [16:03:36.000] response: +Info 96 [00:03:36.000] response: { "responseRequired": false } \ No newline at end of file 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 714aaef6da34f..a0f325eeafbc5 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 @@ -1,5 +1,5 @@ -Info 0 [16:01:01.000] Provided types map file "/a/lib/typesMap.json" doesn't exist -Info 1 [16:01:02.000] request: +Info 0 [00:01:01.000] Provided types map file "/a/lib/typesMap.json" doesn't exist +Info 1 [00:01:02.000] request: { "seq": 0, "type": "request", @@ -192,11 +192,11 @@ FsWatches:: FsWatchesRecursive:: -Info 2 [16:01:03.000] Search path: /user/username/projects/myproject/dependency -Info 3 [16:01:04.000] For info: /user/username/projects/myproject/dependency/FnS.ts :: Config file name: /user/username/projects/myproject/dependency/tsconfig.json -Info 4 [16:01:05.000] Creating configuration project /user/username/projects/myproject/dependency/tsconfig.json -Info 5 [16:01:06.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/dependency/tsconfig.json 2000 undefined Project: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Config file -Info 6 [16:01:07.000] Config: /user/username/projects/myproject/dependency/tsconfig.json : { +Info 2 [00:01:03.000] Search path: /user/username/projects/myproject/dependency +Info 3 [00:01:04.000] For info: /user/username/projects/myproject/dependency/FnS.ts :: Config file name: /user/username/projects/myproject/dependency/tsconfig.json +Info 4 [00:01:05.000] Creating configuration project /user/username/projects/myproject/dependency/tsconfig.json +Info 5 [00:01:06.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/dependency/tsconfig.json 2000 undefined Project: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Config file +Info 6 [00:01:07.000] Config: /user/username/projects/myproject/dependency/tsconfig.json : { "rootNames": [ "/user/username/projects/myproject/dependency/FnS.ts" ], @@ -207,18 +207,18 @@ Info 6 [16:01:07.000] Config: /user/username/projects/myproject/dependency/ts "configFilePath": "/user/username/projects/myproject/dependency/tsconfig.json" } } -Info 7 [16:01:08.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/dependency 1 undefined Config: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Wild card directory -Info 8 [16:01:09.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/dependency 1 undefined Config: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Wild card directory -Info 9 [16:01:10.000] Plugins were requested but not running in environment that supports 'require'. Nothing will be loaded -Info 10 [16:01:11.000] Starting updateGraphWorker: Project: /user/username/projects/myproject/dependency/tsconfig.json -Info 11 [16:01:12.000] FileWatcher:: Added:: WatchInfo: /a/lib/lib.d.ts 500 undefined WatchType: Closed Script info -Info 12 [16:01:13.000] 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 13 [16:01:14.000] 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 14 [16:01:15.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Type roots -Info 15 [16:01:16.000] 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 16 [16:01:17.000] Finishing updateGraphWorker: Project: /user/username/projects/myproject/dependency/tsconfig.json Version: 1 structureChanged: true structureIsReused:: Not Elapsed:: *ms -Info 17 [16:01:18.000] Project '/user/username/projects/myproject/dependency/tsconfig.json' (Configured) -Info 18 [16:01:19.000] Files (2) +Info 7 [00:01:08.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/dependency 1 undefined Config: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Wild card directory +Info 8 [00:01:09.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/dependency 1 undefined Config: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Wild card directory +Info 9 [00:01:10.000] Plugins were requested but not running in environment that supports 'require'. Nothing will be loaded +Info 10 [00:01:11.000] Starting updateGraphWorker: Project: /user/username/projects/myproject/dependency/tsconfig.json +Info 11 [00:01:12.000] FileWatcher:: Added:: WatchInfo: /a/lib/lib.d.ts 500 undefined WatchType: Closed Script info +Info 12 [00:01:13.000] 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 13 [00:01:14.000] 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 14 [00:01:15.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Type roots +Info 15 [00:01:16.000] 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 16 [00:01:17.000] Finishing updateGraphWorker: Project: /user/username/projects/myproject/dependency/tsconfig.json Version: 1 structureChanged: true structureIsReused:: Not Elapsed:: *ms +Info 17 [00:01:18.000] Project '/user/username/projects/myproject/dependency/tsconfig.json' (Configured) +Info 18 [00:01:19.000] Files (2) /a/lib/lib.d.ts /user/username/projects/myproject/dependency/FnS.ts @@ -228,16 +228,16 @@ Info 18 [16:01:19.000] Files (2) FnS.ts Matched by default include pattern '**/*' -Info 19 [16:01:20.000] ----------------------------------------------- -Info 20 [16:01:21.000] Search path: /user/username/projects/myproject/dependency -Info 21 [16:01:22.000] For info: /user/username/projects/myproject/dependency/tsconfig.json :: No config files found. -Info 22 [16:01:23.000] Project '/user/username/projects/myproject/dependency/tsconfig.json' (Configured) -Info 22 [16:01:24.000] Files (2) +Info 19 [00:01:20.000] ----------------------------------------------- +Info 20 [00:01:21.000] Search path: /user/username/projects/myproject/dependency +Info 21 [00:01:22.000] For info: /user/username/projects/myproject/dependency/tsconfig.json :: No config files found. +Info 22 [00:01:23.000] Project '/user/username/projects/myproject/dependency/tsconfig.json' (Configured) +Info 22 [00:01:24.000] Files (2) -Info 22 [16:01:25.000] ----------------------------------------------- -Info 22 [16:01:26.000] Open files: -Info 22 [16:01:27.000] FileName: /user/username/projects/myproject/dependency/FnS.ts ProjectRootPath: undefined -Info 22 [16:01:28.000] Projects: /user/username/projects/myproject/dependency/tsconfig.json +Info 22 [00:01:25.000] ----------------------------------------------- +Info 22 [00:01:26.000] Open files: +Info 22 [00:01:27.000] FileName: /user/username/projects/myproject/dependency/FnS.ts ProjectRootPath: undefined +Info 22 [00:01:28.000] Projects: /user/username/projects/myproject/dependency/tsconfig.json After request PolledWatches:: @@ -256,11 +256,11 @@ FsWatchesRecursive:: /user/username/projects/myproject/dependency: {} -Info 22 [16:01:29.000] response: +Info 22 [00:01:29.000] response: { "responseRequired": false } -Info 23 [16:01:30.000] request: +Info 23 [00:01:30.000] request: { "seq": 0, "type": "request", @@ -287,11 +287,11 @@ FsWatchesRecursive:: /user/username/projects/myproject/dependency: {} -Info 24 [16:01:31.000] Search path: /user/username/projects/myproject/random -Info 25 [16:01:32.000] For info: /user/username/projects/myproject/random/random.ts :: Config file name: /user/username/projects/myproject/random/tsconfig.json -Info 26 [16:01:33.000] Creating configuration project /user/username/projects/myproject/random/tsconfig.json -Info 27 [16:01:34.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/random/tsconfig.json 2000 undefined Project: /user/username/projects/myproject/random/tsconfig.json WatchType: Config file -Info 28 [16:01:35.000] Config: /user/username/projects/myproject/random/tsconfig.json : { +Info 24 [00:01:31.000] Search path: /user/username/projects/myproject/random +Info 25 [00:01:32.000] For info: /user/username/projects/myproject/random/random.ts :: Config file name: /user/username/projects/myproject/random/tsconfig.json +Info 26 [00:01:33.000] Creating configuration project /user/username/projects/myproject/random/tsconfig.json +Info 27 [00:01:34.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/random/tsconfig.json 2000 undefined Project: /user/username/projects/myproject/random/tsconfig.json WatchType: Config file +Info 28 [00:01:35.000] Config: /user/username/projects/myproject/random/tsconfig.json : { "rootNames": [ "/user/username/projects/myproject/random/random.ts" ], @@ -299,17 +299,17 @@ Info 28 [16:01:35.000] Config: /user/username/projects/myproject/random/tsconf "configFilePath": "/user/username/projects/myproject/random/tsconfig.json" } } -Info 29 [16:01:36.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/random 1 undefined Config: /user/username/projects/myproject/random/tsconfig.json WatchType: Wild card directory -Info 30 [16:01:37.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/random 1 undefined Config: /user/username/projects/myproject/random/tsconfig.json WatchType: Wild card directory -Info 31 [16:01:38.000] Plugins were requested but not running in environment that supports 'require'. Nothing will be loaded -Info 32 [16:01:39.000] Starting updateGraphWorker: Project: /user/username/projects/myproject/random/tsconfig.json -Info 33 [16:01:40.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/random/node_modules/@types 1 undefined Project: /user/username/projects/myproject/random/tsconfig.json WatchType: Type roots -Info 34 [16:01:41.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/random/node_modules/@types 1 undefined Project: /user/username/projects/myproject/random/tsconfig.json WatchType: Type roots -Info 35 [16:01:42.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/random/tsconfig.json WatchType: Type roots -Info 36 [16:01:43.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/random/tsconfig.json WatchType: Type roots -Info 37 [16:01:44.000] Finishing updateGraphWorker: Project: /user/username/projects/myproject/random/tsconfig.json Version: 1 structureChanged: true structureIsReused:: Not Elapsed:: *ms -Info 38 [16:01:45.000] Project '/user/username/projects/myproject/random/tsconfig.json' (Configured) -Info 39 [16:01:46.000] Files (2) +Info 29 [00:01:36.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/random 1 undefined Config: /user/username/projects/myproject/random/tsconfig.json WatchType: Wild card directory +Info 30 [00:01:37.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/random 1 undefined Config: /user/username/projects/myproject/random/tsconfig.json WatchType: Wild card directory +Info 31 [00:01:38.000] Plugins were requested but not running in environment that supports 'require'. Nothing will be loaded +Info 32 [00:01:39.000] Starting updateGraphWorker: Project: /user/username/projects/myproject/random/tsconfig.json +Info 33 [00:01:40.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/random/node_modules/@types 1 undefined Project: /user/username/projects/myproject/random/tsconfig.json WatchType: Type roots +Info 34 [00:01:41.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/random/node_modules/@types 1 undefined Project: /user/username/projects/myproject/random/tsconfig.json WatchType: Type roots +Info 35 [00:01:42.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/random/tsconfig.json WatchType: Type roots +Info 36 [00:01:43.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/random/tsconfig.json WatchType: Type roots +Info 37 [00:01:44.000] Finishing updateGraphWorker: Project: /user/username/projects/myproject/random/tsconfig.json Version: 1 structureChanged: true structureIsReused:: Not Elapsed:: *ms +Info 38 [00:01:45.000] Project '/user/username/projects/myproject/random/tsconfig.json' (Configured) +Info 39 [00:01:46.000] Files (2) /a/lib/lib.d.ts /user/username/projects/myproject/random/random.ts @@ -319,20 +319,20 @@ Info 39 [16:01:46.000] Files (2) random.ts Matched by default include pattern '**/*' -Info 40 [16:01:47.000] ----------------------------------------------- -Info 41 [16:01:48.000] Project '/user/username/projects/myproject/dependency/tsconfig.json' (Configured) -Info 41 [16:01:49.000] Files (2) +Info 40 [00:01:47.000] ----------------------------------------------- +Info 41 [00:01:48.000] Project '/user/username/projects/myproject/dependency/tsconfig.json' (Configured) +Info 41 [00:01:49.000] Files (2) -Info 41 [16:01:50.000] ----------------------------------------------- -Info 41 [16:01:51.000] Project '/user/username/projects/myproject/random/tsconfig.json' (Configured) -Info 41 [16:01:52.000] Files (2) +Info 41 [00:01:50.000] ----------------------------------------------- +Info 41 [00:01:51.000] Project '/user/username/projects/myproject/random/tsconfig.json' (Configured) +Info 41 [00:01:52.000] Files (2) -Info 41 [16:01:53.000] ----------------------------------------------- -Info 41 [16:01:54.000] Open files: -Info 41 [16:01:55.000] FileName: /user/username/projects/myproject/dependency/FnS.ts ProjectRootPath: undefined -Info 41 [16:01:56.000] Projects: /user/username/projects/myproject/dependency/tsconfig.json -Info 41 [16:01:57.000] FileName: /user/username/projects/myproject/random/random.ts ProjectRootPath: undefined -Info 41 [16:01:58.000] Projects: /user/username/projects/myproject/random/tsconfig.json +Info 41 [00:01:53.000] ----------------------------------------------- +Info 41 [00:01:54.000] Open files: +Info 41 [00:01:55.000] FileName: /user/username/projects/myproject/dependency/FnS.ts ProjectRootPath: undefined +Info 41 [00:01:56.000] Projects: /user/username/projects/myproject/dependency/tsconfig.json +Info 41 [00:01:57.000] FileName: /user/username/projects/myproject/random/random.ts ProjectRootPath: undefined +Info 41 [00:01:58.000] Projects: /user/username/projects/myproject/random/tsconfig.json After request PolledWatches:: @@ -357,11 +357,11 @@ FsWatchesRecursive:: /user/username/projects/myproject/random: {} -Info 41 [16:01:59.000] response: +Info 41 [00:01:59.000] response: { "responseRequired": false } -Info 42 [16:02:00.000] request: +Info 42 [00:02:00.000] request: { "command": "rename", "arguments": { @@ -396,7 +396,7 @@ FsWatchesRecursive:: /user/username/projects/myproject/random: {} -Info 43 [16:02:01.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/decls/FnS.d.ts 2000 undefined Project: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Missing generated file +Info 43 [00:02:01.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/decls/FnS.d.ts 2000 undefined Project: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Missing generated file After request PolledWatches:: @@ -423,7 +423,7 @@ FsWatchesRecursive:: /user/username/projects/myproject/random: {} -Info 44 [16:02:02.000] response: +Info 44 [00:02:02.000] response: { "response": { "info": { @@ -471,7 +471,7 @@ Info 44 [16:02:02.000] response: }, "responseRequired": true } -Info 45 [16:02:03.000] request: +Info 45 [00:02:03.000] request: { "command": "rename", "arguments": { @@ -534,7 +534,7 @@ FsWatchesRecursive:: /user/username/projects/myproject/random: {} -Info 46 [16:02:04.000] response: +Info 46 [00:02:04.000] response: { "response": { "info": { @@ -582,7 +582,7 @@ Info 46 [16:02:04.000] response: }, "responseRequired": true } -Info 47 [16:02:05.000] request: +Info 47 [00:02:05.000] request: { "command": "rename", "arguments": { @@ -645,7 +645,7 @@ FsWatchesRecursive:: /user/username/projects/myproject/random: {} -Info 48 [16:02:06.000] response: +Info 48 [00:02:06.000] response: { "response": { "info": { @@ -693,7 +693,7 @@ Info 48 [16:02:06.000] response: }, "responseRequired": true } -Info 49 [16:02:07.000] request: +Info 49 [00:02:07.000] request: { "command": "rename", "arguments": { @@ -756,7 +756,7 @@ FsWatchesRecursive:: /user/username/projects/myproject/random: {} -Info 50 [16:02:08.000] response: +Info 50 [00:02:08.000] response: { "response": { "info": { @@ -804,7 +804,7 @@ Info 50 [16:02:08.000] response: }, "responseRequired": true } -Info 51 [16:02:09.000] request: +Info 51 [00:02:09.000] request: { "command": "rename", "arguments": { @@ -867,7 +867,7 @@ FsWatchesRecursive:: /user/username/projects/myproject/random: {} -Info 52 [16:02:10.000] response: +Info 52 [00:02:10.000] response: { "response": { "info": { @@ -915,7 +915,7 @@ Info 52 [16:02:10.000] response: }, "responseRequired": true } -Info 53 [16:02:11.000] request: +Info 53 [00:02:11.000] request: { "seq": 0, "type": "request", @@ -950,18 +950,18 @@ FsWatchesRecursive:: /user/username/projects/myproject/random: {} -Info 54 [16:02:12.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/random/random.ts 500 undefined WatchType: Closed Script info -Info 55 [16:02:13.000] Project '/user/username/projects/myproject/dependency/tsconfig.json' (Configured) -Info 55 [16:02:14.000] Files (2) +Info 54 [00:02:12.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/random/random.ts 500 undefined WatchType: Closed Script info +Info 55 [00:02:13.000] Project '/user/username/projects/myproject/dependency/tsconfig.json' (Configured) +Info 55 [00:02:14.000] Files (2) -Info 55 [16:02:15.000] ----------------------------------------------- -Info 55 [16:02:16.000] Project '/user/username/projects/myproject/random/tsconfig.json' (Configured) -Info 55 [16:02:17.000] Files (2) +Info 55 [00:02:15.000] ----------------------------------------------- +Info 55 [00:02:16.000] Project '/user/username/projects/myproject/random/tsconfig.json' (Configured) +Info 55 [00:02:17.000] Files (2) -Info 55 [16:02:18.000] ----------------------------------------------- -Info 55 [16:02:19.000] Open files: -Info 55 [16:02:20.000] FileName: /user/username/projects/myproject/dependency/FnS.ts ProjectRootPath: undefined -Info 55 [16:02:21.000] Projects: /user/username/projects/myproject/dependency/tsconfig.json +Info 55 [00:02:18.000] ----------------------------------------------- +Info 55 [00:02:19.000] Open files: +Info 55 [00:02:20.000] FileName: /user/username/projects/myproject/dependency/FnS.ts ProjectRootPath: undefined +Info 55 [00:02:21.000] Projects: /user/username/projects/myproject/dependency/tsconfig.json After request PolledWatches:: @@ -990,11 +990,11 @@ FsWatchesRecursive:: /user/username/projects/myproject/random: {} -Info 55 [16:02:22.000] response: +Info 55 [00:02:22.000] response: { "responseRequired": false } -Info 56 [16:02:23.000] request: +Info 56 [00:02:23.000] request: { "seq": 0, "type": "request", @@ -1031,22 +1031,22 @@ FsWatchesRecursive:: /user/username/projects/myproject/random: {} -Info 57 [16:02:24.000] FileWatcher:: Close:: WatchInfo: /user/username/projects/myproject/random/random.ts 500 undefined WatchType: Closed Script info -Info 58 [16:02:25.000] Search path: /user/username/projects/myproject/random -Info 59 [16:02:26.000] For info: /user/username/projects/myproject/random/random.ts :: Config file name: /user/username/projects/myproject/random/tsconfig.json -Info 60 [16:02:27.000] Project '/user/username/projects/myproject/dependency/tsconfig.json' (Configured) -Info 60 [16:02:28.000] Files (2) +Info 57 [00:02:24.000] FileWatcher:: Close:: WatchInfo: /user/username/projects/myproject/random/random.ts 500 undefined WatchType: Closed Script info +Info 58 [00:02:25.000] Search path: /user/username/projects/myproject/random +Info 59 [00:02:26.000] For info: /user/username/projects/myproject/random/random.ts :: Config file name: /user/username/projects/myproject/random/tsconfig.json +Info 60 [00:02:27.000] Project '/user/username/projects/myproject/dependency/tsconfig.json' (Configured) +Info 60 [00:02:28.000] Files (2) -Info 60 [16:02:29.000] ----------------------------------------------- -Info 60 [16:02:30.000] Project '/user/username/projects/myproject/random/tsconfig.json' (Configured) -Info 60 [16:02:31.000] Files (2) +Info 60 [00:02:29.000] ----------------------------------------------- +Info 60 [00:02:30.000] Project '/user/username/projects/myproject/random/tsconfig.json' (Configured) +Info 60 [00:02:31.000] Files (2) -Info 60 [16:02:32.000] ----------------------------------------------- -Info 60 [16:02:33.000] Open files: -Info 60 [16:02:34.000] FileName: /user/username/projects/myproject/dependency/FnS.ts ProjectRootPath: undefined -Info 60 [16:02:35.000] Projects: /user/username/projects/myproject/dependency/tsconfig.json -Info 60 [16:02:36.000] FileName: /user/username/projects/myproject/random/random.ts ProjectRootPath: undefined -Info 60 [16:02:37.000] Projects: /user/username/projects/myproject/random/tsconfig.json +Info 60 [00:02:32.000] ----------------------------------------------- +Info 60 [00:02:33.000] Open files: +Info 60 [00:02:34.000] FileName: /user/username/projects/myproject/dependency/FnS.ts ProjectRootPath: undefined +Info 60 [00:02:35.000] Projects: /user/username/projects/myproject/dependency/tsconfig.json +Info 60 [00:02:36.000] FileName: /user/username/projects/myproject/random/random.ts ProjectRootPath: undefined +Info 60 [00:02:37.000] Projects: /user/username/projects/myproject/random/tsconfig.json After request PolledWatches:: @@ -1073,11 +1073,11 @@ FsWatchesRecursive:: /user/username/projects/myproject/random: {} -Info 60 [16:02:38.000] response: +Info 60 [00:02:38.000] response: { "responseRequired": false } -Info 61 [16:02:39.000] request: +Info 61 [00:02:39.000] request: { "seq": 0, "type": "request", @@ -1112,18 +1112,18 @@ FsWatchesRecursive:: /user/username/projects/myproject/random: {} -Info 62 [16:02:40.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/dependency/FnS.ts 500 undefined WatchType: Closed Script info -Info 63 [16:02:41.000] Project '/user/username/projects/myproject/dependency/tsconfig.json' (Configured) -Info 63 [16:02:42.000] Files (2) +Info 62 [00:02:40.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/dependency/FnS.ts 500 undefined WatchType: Closed Script info +Info 63 [00:02:41.000] Project '/user/username/projects/myproject/dependency/tsconfig.json' (Configured) +Info 63 [00:02:42.000] Files (2) -Info 63 [16:02:43.000] ----------------------------------------------- -Info 63 [16:02:44.000] Project '/user/username/projects/myproject/random/tsconfig.json' (Configured) -Info 63 [16:02:45.000] Files (2) +Info 63 [00:02:43.000] ----------------------------------------------- +Info 63 [00:02:44.000] Project '/user/username/projects/myproject/random/tsconfig.json' (Configured) +Info 63 [00:02:45.000] Files (2) -Info 63 [16:02:46.000] ----------------------------------------------- -Info 63 [16:02:47.000] Open files: -Info 63 [16:02:48.000] FileName: /user/username/projects/myproject/random/random.ts ProjectRootPath: undefined -Info 63 [16:02:49.000] Projects: /user/username/projects/myproject/random/tsconfig.json +Info 63 [00:02:46.000] ----------------------------------------------- +Info 63 [00:02:47.000] Open files: +Info 63 [00:02:48.000] FileName: /user/username/projects/myproject/random/random.ts ProjectRootPath: undefined +Info 63 [00:02:49.000] Projects: /user/username/projects/myproject/random/tsconfig.json After request PolledWatches:: @@ -1152,11 +1152,11 @@ FsWatchesRecursive:: /user/username/projects/myproject/random: {} -Info 63 [16:02:50.000] response: +Info 63 [00:02:50.000] response: { "responseRequired": false } -Info 64 [16:02:51.000] request: +Info 64 [00:02:51.000] request: { "seq": 0, "type": "request", @@ -1193,16 +1193,16 @@ FsWatchesRecursive:: /user/username/projects/myproject/random: {} -Info 65 [16:02:52.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/random/random.ts 500 undefined WatchType: Closed Script info -Info 66 [16:02:53.000] Project '/user/username/projects/myproject/dependency/tsconfig.json' (Configured) -Info 66 [16:02:54.000] Files (2) +Info 65 [00:02:52.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/random/random.ts 500 undefined WatchType: Closed Script info +Info 66 [00:02:53.000] Project '/user/username/projects/myproject/dependency/tsconfig.json' (Configured) +Info 66 [00:02:54.000] Files (2) -Info 66 [16:02:55.000] ----------------------------------------------- -Info 66 [16:02:56.000] Project '/user/username/projects/myproject/random/tsconfig.json' (Configured) -Info 66 [16:02:57.000] Files (2) +Info 66 [00:02:55.000] ----------------------------------------------- +Info 66 [00:02:56.000] Project '/user/username/projects/myproject/random/tsconfig.json' (Configured) +Info 66 [00:02:57.000] Files (2) -Info 66 [16:02:58.000] ----------------------------------------------- -Info 66 [16:02:59.000] Open files: +Info 66 [00:02:58.000] ----------------------------------------------- +Info 66 [00:02:59.000] Open files: After request PolledWatches:: @@ -1233,11 +1233,11 @@ FsWatchesRecursive:: /user/username/projects/myproject/random: {} -Info 66 [16:03:00.000] response: +Info 66 [00:03:00.000] response: { "responseRequired": false } -Info 67 [16:03:01.000] request: +Info 67 [00:03:01.000] request: { "seq": 0, "type": "request", @@ -1276,12 +1276,12 @@ FsWatchesRecursive:: /user/username/projects/myproject/random: {} -Info 68 [16:03:02.000] FileWatcher:: Close:: WatchInfo: /user/username/projects/myproject/random/random.ts 500 undefined WatchType: Closed Script info -Info 69 [16:03:03.000] Search path: /user/username/projects/myproject/random -Info 70 [16:03:04.000] For info: /user/username/projects/myproject/random/random.ts :: Config file name: /user/username/projects/myproject/random/tsconfig.json -Info 71 [16:03:05.000] `remove Project:: -Info 72 [16:03:06.000] Project '/user/username/projects/myproject/dependency/tsconfig.json' (Configured) -Info 73 [16:03:07.000] Files (2) +Info 68 [00:03:02.000] FileWatcher:: Close:: WatchInfo: /user/username/projects/myproject/random/random.ts 500 undefined WatchType: Closed Script info +Info 69 [00:03:03.000] Search path: /user/username/projects/myproject/random +Info 70 [00:03:04.000] For info: /user/username/projects/myproject/random/random.ts :: Config file name: /user/username/projects/myproject/random/tsconfig.json +Info 71 [00:03:05.000] `remove Project:: +Info 72 [00:03:06.000] Project '/user/username/projects/myproject/dependency/tsconfig.json' (Configured) +Info 73 [00:03:07.000] Files (2) /a/lib/lib.d.ts /user/username/projects/myproject/dependency/FnS.ts @@ -1291,23 +1291,23 @@ Info 73 [16:03:07.000] Files (2) FnS.ts Matched by default include pattern '**/*' -Info 74 [16:03:08.000] ----------------------------------------------- -Info 75 [16:03:09.000] DirectoryWatcher:: Close:: WatchInfo: /user/username/projects/myproject/dependency 1 undefined Config: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Wild card directory -Info 76 [16:03:10.000] 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 77 [16:03:11.000] FileWatcher:: Close:: WatchInfo: /user/username/projects/myproject/dependency/tsconfig.json 2000 undefined Project: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Config file -Info 78 [16:03:12.000] 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 79 [16:03:13.000] 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 80 [16:03:14.000] DirectoryWatcher:: Close:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Type roots -Info 81 [16:03:15.000] 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 82 [16:03:16.000] 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 83 [16:03:17.000] FileWatcher:: Close:: WatchInfo: /user/username/projects/myproject/dependency/FnS.ts 500 undefined WatchType: Closed Script info -Info 84 [16:03:18.000] Project '/user/username/projects/myproject/random/tsconfig.json' (Configured) -Info 84 [16:03:19.000] Files (2) - -Info 84 [16:03:20.000] ----------------------------------------------- -Info 84 [16:03:21.000] Open files: -Info 84 [16:03:22.000] FileName: /user/username/projects/myproject/random/random.ts ProjectRootPath: undefined -Info 84 [16:03:23.000] Projects: /user/username/projects/myproject/random/tsconfig.json +Info 74 [00:03:08.000] ----------------------------------------------- +Info 75 [00:03:09.000] DirectoryWatcher:: Close:: WatchInfo: /user/username/projects/myproject/dependency 1 undefined Config: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Wild card directory +Info 76 [00:03:10.000] 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 77 [00:03:11.000] FileWatcher:: Close:: WatchInfo: /user/username/projects/myproject/dependency/tsconfig.json 2000 undefined Project: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Config file +Info 78 [00:03:12.000] 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 79 [00:03:13.000] 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 80 [00:03:14.000] DirectoryWatcher:: Close:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Type roots +Info 81 [00:03:15.000] 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 82 [00:03:16.000] 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 83 [00:03:17.000] FileWatcher:: Close:: WatchInfo: /user/username/projects/myproject/dependency/FnS.ts 500 undefined WatchType: Closed Script info +Info 84 [00:03:18.000] Project '/user/username/projects/myproject/random/tsconfig.json' (Configured) +Info 84 [00:03:19.000] Files (2) + +Info 84 [00:03:20.000] ----------------------------------------------- +Info 84 [00:03:21.000] Open files: +Info 84 [00:03:22.000] FileName: /user/username/projects/myproject/random/random.ts ProjectRootPath: undefined +Info 84 [00:03:23.000] Projects: /user/username/projects/myproject/random/tsconfig.json After request PolledWatches:: @@ -1326,7 +1326,7 @@ FsWatchesRecursive:: /user/username/projects/myproject/random: {} -Info 84 [16:03:24.000] response: +Info 84 [00:03:24.000] response: { "responseRequired": false } \ No newline at end of file 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 bfa99324e274c..81249a7a8009d 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 @@ -1,5 +1,5 @@ -Info 0 [16:01:00.000] Provided types map file "/a/lib/typesMap.json" doesn't exist -Info 1 [16:01:01.000] request: +Info 0 [00:01:00.000] Provided types map file "/a/lib/typesMap.json" doesn't exist +Info 1 [00:01:01.000] request: { "seq": 0, "type": "request", @@ -200,11 +200,11 @@ FsWatches:: FsWatchesRecursive:: -Info 2 [16:01:02.000] Search path: /user/username/projects/myproject/dependency -Info 3 [16:01:03.000] For info: /user/username/projects/myproject/dependency/FnS.ts :: Config file name: /user/username/projects/myproject/dependency/tsconfig.json -Info 4 [16:01:04.000] Creating configuration project /user/username/projects/myproject/dependency/tsconfig.json -Info 5 [16:01:05.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/dependency/tsconfig.json 2000 undefined Project: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Config file -Info 6 [16:01:06.000] Config: /user/username/projects/myproject/dependency/tsconfig.json : { +Info 2 [00:01:02.000] Search path: /user/username/projects/myproject/dependency +Info 3 [00:01:03.000] For info: /user/username/projects/myproject/dependency/FnS.ts :: Config file name: /user/username/projects/myproject/dependency/tsconfig.json +Info 4 [00:01:04.000] Creating configuration project /user/username/projects/myproject/dependency/tsconfig.json +Info 5 [00:01:05.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/dependency/tsconfig.json 2000 undefined Project: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Config file +Info 6 [00:01:06.000] Config: /user/username/projects/myproject/dependency/tsconfig.json : { "rootNames": [ "/user/username/projects/myproject/dependency/FnS.ts" ], @@ -215,18 +215,18 @@ Info 6 [16:01:06.000] Config: /user/username/projects/myproject/dependency/ts "configFilePath": "/user/username/projects/myproject/dependency/tsconfig.json" } } -Info 7 [16:01:07.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/dependency 1 undefined Config: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Wild card directory -Info 8 [16:01:08.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/dependency 1 undefined Config: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Wild card directory -Info 9 [16:01:09.000] Plugins were requested but not running in environment that supports 'require'. Nothing will be loaded -Info 10 [16:01:10.000] Starting updateGraphWorker: Project: /user/username/projects/myproject/dependency/tsconfig.json -Info 11 [16:01:11.000] FileWatcher:: Added:: WatchInfo: /a/lib/lib.d.ts 500 undefined WatchType: Closed Script info -Info 12 [16:01:12.000] 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 13 [16:01:13.000] 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 14 [16:01:14.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Type roots -Info 15 [16:01:15.000] 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 16 [16:01:16.000] Finishing updateGraphWorker: Project: /user/username/projects/myproject/dependency/tsconfig.json Version: 1 structureChanged: true structureIsReused:: Not Elapsed:: *ms -Info 17 [16:01:17.000] Project '/user/username/projects/myproject/dependency/tsconfig.json' (Configured) -Info 18 [16:01:18.000] Files (2) +Info 7 [00:01:07.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/dependency 1 undefined Config: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Wild card directory +Info 8 [00:01:08.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/dependency 1 undefined Config: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Wild card directory +Info 9 [00:01:09.000] Plugins were requested but not running in environment that supports 'require'. Nothing will be loaded +Info 10 [00:01:10.000] Starting updateGraphWorker: Project: /user/username/projects/myproject/dependency/tsconfig.json +Info 11 [00:01:11.000] FileWatcher:: Added:: WatchInfo: /a/lib/lib.d.ts 500 undefined WatchType: Closed Script info +Info 12 [00:01:12.000] 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 13 [00:01:13.000] 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 14 [00:01:14.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Type roots +Info 15 [00:01:15.000] 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 16 [00:01:16.000] Finishing updateGraphWorker: Project: /user/username/projects/myproject/dependency/tsconfig.json Version: 1 structureChanged: true structureIsReused:: Not Elapsed:: *ms +Info 17 [00:01:17.000] Project '/user/username/projects/myproject/dependency/tsconfig.json' (Configured) +Info 18 [00:01:18.000] Files (2) /a/lib/lib.d.ts /user/username/projects/myproject/dependency/FnS.ts @@ -236,16 +236,16 @@ Info 18 [16:01:18.000] Files (2) FnS.ts Matched by default include pattern '**/*' -Info 19 [16:01:19.000] ----------------------------------------------- -Info 20 [16:01:20.000] Search path: /user/username/projects/myproject/dependency -Info 21 [16:01:21.000] For info: /user/username/projects/myproject/dependency/tsconfig.json :: No config files found. -Info 22 [16:01:22.000] Project '/user/username/projects/myproject/dependency/tsconfig.json' (Configured) -Info 22 [16:01:23.000] Files (2) +Info 19 [00:01:19.000] ----------------------------------------------- +Info 20 [00:01:20.000] Search path: /user/username/projects/myproject/dependency +Info 21 [00:01:21.000] For info: /user/username/projects/myproject/dependency/tsconfig.json :: No config files found. +Info 22 [00:01:22.000] Project '/user/username/projects/myproject/dependency/tsconfig.json' (Configured) +Info 22 [00:01:23.000] Files (2) -Info 22 [16:01:24.000] ----------------------------------------------- -Info 22 [16:01:25.000] Open files: -Info 22 [16:01:26.000] FileName: /user/username/projects/myproject/dependency/FnS.ts ProjectRootPath: undefined -Info 22 [16:01:27.000] Projects: /user/username/projects/myproject/dependency/tsconfig.json +Info 22 [00:01:24.000] ----------------------------------------------- +Info 22 [00:01:25.000] Open files: +Info 22 [00:01:26.000] FileName: /user/username/projects/myproject/dependency/FnS.ts ProjectRootPath: undefined +Info 22 [00:01:27.000] Projects: /user/username/projects/myproject/dependency/tsconfig.json After request PolledWatches:: @@ -264,11 +264,11 @@ FsWatchesRecursive:: /user/username/projects/myproject/dependency: {} -Info 22 [16:01:28.000] response: +Info 22 [00:01:28.000] response: { "responseRequired": false } -Info 23 [16:01:29.000] request: +Info 23 [00:01:29.000] request: { "seq": 0, "type": "request", @@ -295,11 +295,11 @@ FsWatchesRecursive:: /user/username/projects/myproject/dependency: {} -Info 24 [16:01:30.000] Search path: /user/username/projects/myproject/random -Info 25 [16:01:31.000] For info: /user/username/projects/myproject/random/random.ts :: Config file name: /user/username/projects/myproject/random/tsconfig.json -Info 26 [16:01:32.000] Creating configuration project /user/username/projects/myproject/random/tsconfig.json -Info 27 [16:01:33.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/random/tsconfig.json 2000 undefined Project: /user/username/projects/myproject/random/tsconfig.json WatchType: Config file -Info 28 [16:01:34.000] Config: /user/username/projects/myproject/random/tsconfig.json : { +Info 24 [00:01:30.000] Search path: /user/username/projects/myproject/random +Info 25 [00:01:31.000] For info: /user/username/projects/myproject/random/random.ts :: Config file name: /user/username/projects/myproject/random/tsconfig.json +Info 26 [00:01:32.000] Creating configuration project /user/username/projects/myproject/random/tsconfig.json +Info 27 [00:01:33.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/random/tsconfig.json 2000 undefined Project: /user/username/projects/myproject/random/tsconfig.json WatchType: Config file +Info 28 [00:01:34.000] Config: /user/username/projects/myproject/random/tsconfig.json : { "rootNames": [ "/user/username/projects/myproject/random/random.ts" ], @@ -307,17 +307,17 @@ Info 28 [16:01:34.000] Config: /user/username/projects/myproject/random/tsconf "configFilePath": "/user/username/projects/myproject/random/tsconfig.json" } } -Info 29 [16:01:35.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/random 1 undefined Config: /user/username/projects/myproject/random/tsconfig.json WatchType: Wild card directory -Info 30 [16:01:36.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/random 1 undefined Config: /user/username/projects/myproject/random/tsconfig.json WatchType: Wild card directory -Info 31 [16:01:37.000] Plugins were requested but not running in environment that supports 'require'. Nothing will be loaded -Info 32 [16:01:38.000] Starting updateGraphWorker: Project: /user/username/projects/myproject/random/tsconfig.json -Info 33 [16:01:39.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/random/node_modules/@types 1 undefined Project: /user/username/projects/myproject/random/tsconfig.json WatchType: Type roots -Info 34 [16:01:40.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/random/node_modules/@types 1 undefined Project: /user/username/projects/myproject/random/tsconfig.json WatchType: Type roots -Info 35 [16:01:41.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/random/tsconfig.json WatchType: Type roots -Info 36 [16:01:42.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/random/tsconfig.json WatchType: Type roots -Info 37 [16:01:43.000] Finishing updateGraphWorker: Project: /user/username/projects/myproject/random/tsconfig.json Version: 1 structureChanged: true structureIsReused:: Not Elapsed:: *ms -Info 38 [16:01:44.000] Project '/user/username/projects/myproject/random/tsconfig.json' (Configured) -Info 39 [16:01:45.000] Files (2) +Info 29 [00:01:35.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/random 1 undefined Config: /user/username/projects/myproject/random/tsconfig.json WatchType: Wild card directory +Info 30 [00:01:36.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/random 1 undefined Config: /user/username/projects/myproject/random/tsconfig.json WatchType: Wild card directory +Info 31 [00:01:37.000] Plugins were requested but not running in environment that supports 'require'. Nothing will be loaded +Info 32 [00:01:38.000] Starting updateGraphWorker: Project: /user/username/projects/myproject/random/tsconfig.json +Info 33 [00:01:39.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/random/node_modules/@types 1 undefined Project: /user/username/projects/myproject/random/tsconfig.json WatchType: Type roots +Info 34 [00:01:40.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/random/node_modules/@types 1 undefined Project: /user/username/projects/myproject/random/tsconfig.json WatchType: Type roots +Info 35 [00:01:41.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/random/tsconfig.json WatchType: Type roots +Info 36 [00:01:42.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/random/tsconfig.json WatchType: Type roots +Info 37 [00:01:43.000] Finishing updateGraphWorker: Project: /user/username/projects/myproject/random/tsconfig.json Version: 1 structureChanged: true structureIsReused:: Not Elapsed:: *ms +Info 38 [00:01:44.000] Project '/user/username/projects/myproject/random/tsconfig.json' (Configured) +Info 39 [00:01:45.000] Files (2) /a/lib/lib.d.ts /user/username/projects/myproject/random/random.ts @@ -327,20 +327,20 @@ Info 39 [16:01:45.000] Files (2) random.ts Matched by default include pattern '**/*' -Info 40 [16:01:46.000] ----------------------------------------------- -Info 41 [16:01:47.000] Project '/user/username/projects/myproject/dependency/tsconfig.json' (Configured) -Info 41 [16:01:48.000] Files (2) +Info 40 [00:01:46.000] ----------------------------------------------- +Info 41 [00:01:47.000] Project '/user/username/projects/myproject/dependency/tsconfig.json' (Configured) +Info 41 [00:01:48.000] Files (2) -Info 41 [16:01:49.000] ----------------------------------------------- -Info 41 [16:01:50.000] Project '/user/username/projects/myproject/random/tsconfig.json' (Configured) -Info 41 [16:01:51.000] Files (2) +Info 41 [00:01:49.000] ----------------------------------------------- +Info 41 [00:01:50.000] Project '/user/username/projects/myproject/random/tsconfig.json' (Configured) +Info 41 [00:01:51.000] Files (2) -Info 41 [16:01:52.000] ----------------------------------------------- -Info 41 [16:01:53.000] Open files: -Info 41 [16:01:54.000] FileName: /user/username/projects/myproject/dependency/FnS.ts ProjectRootPath: undefined -Info 41 [16:01:55.000] Projects: /user/username/projects/myproject/dependency/tsconfig.json -Info 41 [16:01:56.000] FileName: /user/username/projects/myproject/random/random.ts ProjectRootPath: undefined -Info 41 [16:01:57.000] Projects: /user/username/projects/myproject/random/tsconfig.json +Info 41 [00:01:52.000] ----------------------------------------------- +Info 41 [00:01:53.000] Open files: +Info 41 [00:01:54.000] FileName: /user/username/projects/myproject/dependency/FnS.ts ProjectRootPath: undefined +Info 41 [00:01:55.000] Projects: /user/username/projects/myproject/dependency/tsconfig.json +Info 41 [00:01:56.000] FileName: /user/username/projects/myproject/random/random.ts ProjectRootPath: undefined +Info 41 [00:01:57.000] Projects: /user/username/projects/myproject/random/tsconfig.json After request PolledWatches:: @@ -365,11 +365,11 @@ FsWatchesRecursive:: /user/username/projects/myproject/random: {} -Info 41 [16:01:58.000] response: +Info 41 [00:01:58.000] response: { "responseRequired": false } -Info 42 [16:01:59.000] request: +Info 42 [00:01:59.000] request: { "command": "rename", "arguments": { @@ -404,8 +404,8 @@ FsWatchesRecursive:: /user/username/projects/myproject/random: {} -Info 43 [16:02:00.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/decls/FnS.d.ts 500 undefined WatchType: Closed Script info -Info 44 [16:02:01.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/decls/FnS.d.ts.map 500 undefined WatchType: Closed Script info +Info 43 [00:02:00.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/decls/FnS.d.ts 500 undefined WatchType: Closed Script info +Info 44 [00:02:01.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/decls/FnS.d.ts.map 500 undefined WatchType: Closed Script info After request PolledWatches:: @@ -434,7 +434,7 @@ FsWatchesRecursive:: /user/username/projects/myproject/random: {} -Info 45 [16:02:02.000] response: +Info 45 [00:02:02.000] response: { "response": { "info": { @@ -482,10 +482,10 @@ Info 45 [16:02:02.000] response: }, "responseRequired": true } -Info 46 [16:02:06.000] FileWatcher:: Triggered with /user/username/projects/myproject/decls/FnS.d.ts.map 1:: WatchInfo: /user/username/projects/myproject/decls/FnS.d.ts.map 500 undefined WatchType: Closed Script info -Info 47 [16:02:07.000] Scheduled: /user/username/projects/myproject/dependency/tsconfig.json -Info 48 [16:02:08.000] Scheduled: *ensureProjectForOpenFiles* -Info 49 [16:02:09.000] Elapsed:: *ms FileWatcher:: Triggered with /user/username/projects/myproject/decls/FnS.d.ts.map 1:: WatchInfo: /user/username/projects/myproject/decls/FnS.d.ts.map 500 undefined WatchType: Closed Script info +Info 46 [00:02:06.000] FileWatcher:: Triggered with /user/username/projects/myproject/decls/FnS.d.ts.map 1:: WatchInfo: /user/username/projects/myproject/decls/FnS.d.ts.map 500 undefined WatchType: Closed Script info +Info 47 [00:02:07.000] Scheduled: /user/username/projects/myproject/dependency/tsconfig.json +Info 48 [00:02:08.000] Scheduled: *ensureProjectForOpenFiles* +Info 49 [00:02:09.000] Elapsed:: *ms FileWatcher:: Triggered with /user/username/projects/myproject/decls/FnS.d.ts.map 1:: WatchInfo: /user/username/projects/myproject/decls/FnS.d.ts.map 500 undefined WatchType: Closed Script info Before running timeout callbacks //// [/user/username/projects/myproject/decls/FnS.d.ts.map] {"version":3,"file":"FnS.d.ts","sourceRoot":"","sources":["../dependency/FnS.ts"],"names":[],"mappings":"AAAA,wBAAgB,GAAG,SAAM;AACzB,wBAAgB,GAAG,SAAM;AACzB,wBAAgB,GAAG,SAAM;AACzB,wBAAgB,GAAG,SAAM;AACzB,wBAAgB,GAAG,SAAM;AACzB,eAAO,MAAM,CAAC,KAAK,CAAC"} @@ -517,38 +517,38 @@ FsWatchesRecursive:: /user/username/projects/myproject/random: {} -Info 50 [16:02:10.000] Running: /user/username/projects/myproject/dependency/tsconfig.json -Info 51 [16:02:11.000] Starting updateGraphWorker: Project: /user/username/projects/myproject/dependency/tsconfig.json -Info 52 [16:02:12.000] Finishing updateGraphWorker: Project: /user/username/projects/myproject/dependency/tsconfig.json Version: 2 structureChanged: false structureIsReused:: Not Elapsed:: *ms -Info 53 [16:02:13.000] Running: *ensureProjectForOpenFiles* -Info 54 [16:02:14.000] Before ensureProjectForOpenFiles: -Info 55 [16:02:15.000] Project '/user/username/projects/myproject/dependency/tsconfig.json' (Configured) -Info 55 [16:02:16.000] Files (2) - -Info 55 [16:02:17.000] ----------------------------------------------- -Info 55 [16:02:18.000] Project '/user/username/projects/myproject/random/tsconfig.json' (Configured) -Info 55 [16:02:19.000] Files (2) - -Info 55 [16:02:20.000] ----------------------------------------------- -Info 55 [16:02:21.000] Open files: -Info 55 [16:02:22.000] FileName: /user/username/projects/myproject/dependency/FnS.ts ProjectRootPath: undefined -Info 55 [16:02:23.000] Projects: /user/username/projects/myproject/dependency/tsconfig.json -Info 55 [16:02:24.000] FileName: /user/username/projects/myproject/random/random.ts ProjectRootPath: undefined -Info 55 [16:02:25.000] Projects: /user/username/projects/myproject/random/tsconfig.json -Info 55 [16:02:26.000] After ensureProjectForOpenFiles: -Info 56 [16:02:27.000] Project '/user/username/projects/myproject/dependency/tsconfig.json' (Configured) -Info 56 [16:02:28.000] Files (2) - -Info 56 [16:02:29.000] ----------------------------------------------- -Info 56 [16:02:30.000] Project '/user/username/projects/myproject/random/tsconfig.json' (Configured) -Info 56 [16:02:31.000] Files (2) - -Info 56 [16:02:32.000] ----------------------------------------------- -Info 56 [16:02:33.000] Open files: -Info 56 [16:02:34.000] FileName: /user/username/projects/myproject/dependency/FnS.ts ProjectRootPath: undefined -Info 56 [16:02:35.000] Projects: /user/username/projects/myproject/dependency/tsconfig.json -Info 56 [16:02:36.000] FileName: /user/username/projects/myproject/random/random.ts ProjectRootPath: undefined -Info 56 [16:02:37.000] Projects: /user/username/projects/myproject/random/tsconfig.json +Info 50 [00:02:10.000] Running: /user/username/projects/myproject/dependency/tsconfig.json +Info 51 [00:02:11.000] Starting updateGraphWorker: Project: /user/username/projects/myproject/dependency/tsconfig.json +Info 52 [00:02:12.000] Finishing updateGraphWorker: Project: /user/username/projects/myproject/dependency/tsconfig.json Version: 2 structureChanged: false structureIsReused:: Not Elapsed:: *ms +Info 53 [00:02:13.000] Running: *ensureProjectForOpenFiles* +Info 54 [00:02:14.000] Before ensureProjectForOpenFiles: +Info 55 [00:02:15.000] Project '/user/username/projects/myproject/dependency/tsconfig.json' (Configured) +Info 55 [00:02:16.000] Files (2) + +Info 55 [00:02:17.000] ----------------------------------------------- +Info 55 [00:02:18.000] Project '/user/username/projects/myproject/random/tsconfig.json' (Configured) +Info 55 [00:02:19.000] Files (2) + +Info 55 [00:02:20.000] ----------------------------------------------- +Info 55 [00:02:21.000] Open files: +Info 55 [00:02:22.000] FileName: /user/username/projects/myproject/dependency/FnS.ts ProjectRootPath: undefined +Info 55 [00:02:23.000] Projects: /user/username/projects/myproject/dependency/tsconfig.json +Info 55 [00:02:24.000] FileName: /user/username/projects/myproject/random/random.ts ProjectRootPath: undefined +Info 55 [00:02:25.000] Projects: /user/username/projects/myproject/random/tsconfig.json +Info 55 [00:02:26.000] After ensureProjectForOpenFiles: +Info 56 [00:02:27.000] Project '/user/username/projects/myproject/dependency/tsconfig.json' (Configured) +Info 56 [00:02:28.000] Files (2) + +Info 56 [00:02:29.000] ----------------------------------------------- +Info 56 [00:02:30.000] Project '/user/username/projects/myproject/random/tsconfig.json' (Configured) +Info 56 [00:02:31.000] Files (2) + +Info 56 [00:02:32.000] ----------------------------------------------- +Info 56 [00:02:33.000] Open files: +Info 56 [00:02:34.000] FileName: /user/username/projects/myproject/dependency/FnS.ts ProjectRootPath: undefined +Info 56 [00:02:35.000] Projects: /user/username/projects/myproject/dependency/tsconfig.json +Info 56 [00:02:36.000] FileName: /user/username/projects/myproject/random/random.ts ProjectRootPath: undefined +Info 56 [00:02:37.000] Projects: /user/username/projects/myproject/random/tsconfig.json After running timeout callbacks PolledWatches:: @@ -577,7 +577,7 @@ FsWatchesRecursive:: /user/username/projects/myproject/random: {} -Info 56 [16:02:38.000] request: +Info 56 [00:02:38.000] request: { "command": "rename", "arguments": { @@ -644,7 +644,7 @@ FsWatchesRecursive:: /user/username/projects/myproject/random: {} -Info 57 [16:02:39.000] response: +Info 57 [00:02:39.000] response: { "response": { "info": { @@ -692,7 +692,7 @@ Info 57 [16:02:39.000] response: }, "responseRequired": true } -Info 58 [16:02:40.000] request: +Info 58 [00:02:40.000] request: { "command": "rename", "arguments": { @@ -759,7 +759,7 @@ FsWatchesRecursive:: /user/username/projects/myproject/random: {} -Info 59 [16:02:41.000] response: +Info 59 [00:02:41.000] response: { "response": { "info": { @@ -807,7 +807,7 @@ Info 59 [16:02:41.000] response: }, "responseRequired": true } -Info 60 [16:02:42.000] request: +Info 60 [00:02:42.000] request: { "command": "rename", "arguments": { @@ -874,7 +874,7 @@ FsWatchesRecursive:: /user/username/projects/myproject/random: {} -Info 61 [16:02:43.000] response: +Info 61 [00:02:43.000] response: { "response": { "info": { @@ -922,7 +922,7 @@ Info 61 [16:02:43.000] response: }, "responseRequired": true } -Info 62 [16:02:44.000] request: +Info 62 [00:02:44.000] request: { "command": "rename", "arguments": { @@ -989,7 +989,7 @@ FsWatchesRecursive:: /user/username/projects/myproject/random: {} -Info 63 [16:02:45.000] response: +Info 63 [00:02:45.000] response: { "response": { "info": { @@ -1037,7 +1037,7 @@ Info 63 [16:02:45.000] response: }, "responseRequired": true } -Info 64 [16:02:46.000] request: +Info 64 [00:02:46.000] request: { "command": "rename", "arguments": { @@ -1104,7 +1104,7 @@ FsWatchesRecursive:: /user/username/projects/myproject/random: {} -Info 65 [16:02:47.000] response: +Info 65 [00:02:47.000] response: { "response": { "info": { 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 02e4cd9a55ea4..e4c4f8c4aacf4 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 @@ -1,5 +1,5 @@ -Info 0 [16:01:00.000] Provided types map file "/a/lib/typesMap.json" doesn't exist -Info 1 [16:01:01.000] request: +Info 0 [00:01:00.000] Provided types map file "/a/lib/typesMap.json" doesn't exist +Info 1 [00:01:01.000] request: { "seq": 0, "type": "request", @@ -200,11 +200,11 @@ FsWatches:: FsWatchesRecursive:: -Info 2 [16:01:02.000] Search path: /user/username/projects/myproject/dependency -Info 3 [16:01:03.000] For info: /user/username/projects/myproject/dependency/FnS.ts :: Config file name: /user/username/projects/myproject/dependency/tsconfig.json -Info 4 [16:01:04.000] Creating configuration project /user/username/projects/myproject/dependency/tsconfig.json -Info 5 [16:01:05.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/dependency/tsconfig.json 2000 undefined Project: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Config file -Info 6 [16:01:06.000] Config: /user/username/projects/myproject/dependency/tsconfig.json : { +Info 2 [00:01:02.000] Search path: /user/username/projects/myproject/dependency +Info 3 [00:01:03.000] For info: /user/username/projects/myproject/dependency/FnS.ts :: Config file name: /user/username/projects/myproject/dependency/tsconfig.json +Info 4 [00:01:04.000] Creating configuration project /user/username/projects/myproject/dependency/tsconfig.json +Info 5 [00:01:05.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/dependency/tsconfig.json 2000 undefined Project: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Config file +Info 6 [00:01:06.000] Config: /user/username/projects/myproject/dependency/tsconfig.json : { "rootNames": [ "/user/username/projects/myproject/dependency/FnS.ts" ], @@ -215,18 +215,18 @@ Info 6 [16:01:06.000] Config: /user/username/projects/myproject/dependency/ts "configFilePath": "/user/username/projects/myproject/dependency/tsconfig.json" } } -Info 7 [16:01:07.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/dependency 1 undefined Config: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Wild card directory -Info 8 [16:01:08.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/dependency 1 undefined Config: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Wild card directory -Info 9 [16:01:09.000] Plugins were requested but not running in environment that supports 'require'. Nothing will be loaded -Info 10 [16:01:10.000] Starting updateGraphWorker: Project: /user/username/projects/myproject/dependency/tsconfig.json -Info 11 [16:01:11.000] FileWatcher:: Added:: WatchInfo: /a/lib/lib.d.ts 500 undefined WatchType: Closed Script info -Info 12 [16:01:12.000] 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 13 [16:01:13.000] 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 14 [16:01:14.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Type roots -Info 15 [16:01:15.000] 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 16 [16:01:16.000] Finishing updateGraphWorker: Project: /user/username/projects/myproject/dependency/tsconfig.json Version: 1 structureChanged: true structureIsReused:: Not Elapsed:: *ms -Info 17 [16:01:17.000] Project '/user/username/projects/myproject/dependency/tsconfig.json' (Configured) -Info 18 [16:01:18.000] Files (2) +Info 7 [00:01:07.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/dependency 1 undefined Config: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Wild card directory +Info 8 [00:01:08.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/dependency 1 undefined Config: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Wild card directory +Info 9 [00:01:09.000] Plugins were requested but not running in environment that supports 'require'. Nothing will be loaded +Info 10 [00:01:10.000] Starting updateGraphWorker: Project: /user/username/projects/myproject/dependency/tsconfig.json +Info 11 [00:01:11.000] FileWatcher:: Added:: WatchInfo: /a/lib/lib.d.ts 500 undefined WatchType: Closed Script info +Info 12 [00:01:12.000] 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 13 [00:01:13.000] 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 14 [00:01:14.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Type roots +Info 15 [00:01:15.000] 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 16 [00:01:16.000] Finishing updateGraphWorker: Project: /user/username/projects/myproject/dependency/tsconfig.json Version: 1 structureChanged: true structureIsReused:: Not Elapsed:: *ms +Info 17 [00:01:17.000] Project '/user/username/projects/myproject/dependency/tsconfig.json' (Configured) +Info 18 [00:01:18.000] Files (2) /a/lib/lib.d.ts /user/username/projects/myproject/dependency/FnS.ts @@ -236,16 +236,16 @@ Info 18 [16:01:18.000] Files (2) FnS.ts Matched by default include pattern '**/*' -Info 19 [16:01:19.000] ----------------------------------------------- -Info 20 [16:01:20.000] Search path: /user/username/projects/myproject/dependency -Info 21 [16:01:21.000] For info: /user/username/projects/myproject/dependency/tsconfig.json :: No config files found. -Info 22 [16:01:22.000] Project '/user/username/projects/myproject/dependency/tsconfig.json' (Configured) -Info 22 [16:01:23.000] Files (2) +Info 19 [00:01:19.000] ----------------------------------------------- +Info 20 [00:01:20.000] Search path: /user/username/projects/myproject/dependency +Info 21 [00:01:21.000] For info: /user/username/projects/myproject/dependency/tsconfig.json :: No config files found. +Info 22 [00:01:22.000] Project '/user/username/projects/myproject/dependency/tsconfig.json' (Configured) +Info 22 [00:01:23.000] Files (2) -Info 22 [16:01:24.000] ----------------------------------------------- -Info 22 [16:01:25.000] Open files: -Info 22 [16:01:26.000] FileName: /user/username/projects/myproject/dependency/FnS.ts ProjectRootPath: undefined -Info 22 [16:01:27.000] Projects: /user/username/projects/myproject/dependency/tsconfig.json +Info 22 [00:01:24.000] ----------------------------------------------- +Info 22 [00:01:25.000] Open files: +Info 22 [00:01:26.000] FileName: /user/username/projects/myproject/dependency/FnS.ts ProjectRootPath: undefined +Info 22 [00:01:27.000] Projects: /user/username/projects/myproject/dependency/tsconfig.json After request PolledWatches:: @@ -264,11 +264,11 @@ FsWatchesRecursive:: /user/username/projects/myproject/dependency: {} -Info 22 [16:01:28.000] response: +Info 22 [00:01:28.000] response: { "responseRequired": false } -Info 23 [16:01:29.000] request: +Info 23 [00:01:29.000] request: { "seq": 0, "type": "request", @@ -295,11 +295,11 @@ FsWatchesRecursive:: /user/username/projects/myproject/dependency: {} -Info 24 [16:01:30.000] Search path: /user/username/projects/myproject/random -Info 25 [16:01:31.000] For info: /user/username/projects/myproject/random/random.ts :: Config file name: /user/username/projects/myproject/random/tsconfig.json -Info 26 [16:01:32.000] Creating configuration project /user/username/projects/myproject/random/tsconfig.json -Info 27 [16:01:33.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/random/tsconfig.json 2000 undefined Project: /user/username/projects/myproject/random/tsconfig.json WatchType: Config file -Info 28 [16:01:34.000] Config: /user/username/projects/myproject/random/tsconfig.json : { +Info 24 [00:01:30.000] Search path: /user/username/projects/myproject/random +Info 25 [00:01:31.000] For info: /user/username/projects/myproject/random/random.ts :: Config file name: /user/username/projects/myproject/random/tsconfig.json +Info 26 [00:01:32.000] Creating configuration project /user/username/projects/myproject/random/tsconfig.json +Info 27 [00:01:33.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/random/tsconfig.json 2000 undefined Project: /user/username/projects/myproject/random/tsconfig.json WatchType: Config file +Info 28 [00:01:34.000] Config: /user/username/projects/myproject/random/tsconfig.json : { "rootNames": [ "/user/username/projects/myproject/random/random.ts" ], @@ -307,17 +307,17 @@ Info 28 [16:01:34.000] Config: /user/username/projects/myproject/random/tsconf "configFilePath": "/user/username/projects/myproject/random/tsconfig.json" } } -Info 29 [16:01:35.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/random 1 undefined Config: /user/username/projects/myproject/random/tsconfig.json WatchType: Wild card directory -Info 30 [16:01:36.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/random 1 undefined Config: /user/username/projects/myproject/random/tsconfig.json WatchType: Wild card directory -Info 31 [16:01:37.000] Plugins were requested but not running in environment that supports 'require'. Nothing will be loaded -Info 32 [16:01:38.000] Starting updateGraphWorker: Project: /user/username/projects/myproject/random/tsconfig.json -Info 33 [16:01:39.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/random/node_modules/@types 1 undefined Project: /user/username/projects/myproject/random/tsconfig.json WatchType: Type roots -Info 34 [16:01:40.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/random/node_modules/@types 1 undefined Project: /user/username/projects/myproject/random/tsconfig.json WatchType: Type roots -Info 35 [16:01:41.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/random/tsconfig.json WatchType: Type roots -Info 36 [16:01:42.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/random/tsconfig.json WatchType: Type roots -Info 37 [16:01:43.000] Finishing updateGraphWorker: Project: /user/username/projects/myproject/random/tsconfig.json Version: 1 structureChanged: true structureIsReused:: Not Elapsed:: *ms -Info 38 [16:01:44.000] Project '/user/username/projects/myproject/random/tsconfig.json' (Configured) -Info 39 [16:01:45.000] Files (2) +Info 29 [00:01:35.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/random 1 undefined Config: /user/username/projects/myproject/random/tsconfig.json WatchType: Wild card directory +Info 30 [00:01:36.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/random 1 undefined Config: /user/username/projects/myproject/random/tsconfig.json WatchType: Wild card directory +Info 31 [00:01:37.000] Plugins were requested but not running in environment that supports 'require'. Nothing will be loaded +Info 32 [00:01:38.000] Starting updateGraphWorker: Project: /user/username/projects/myproject/random/tsconfig.json +Info 33 [00:01:39.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/random/node_modules/@types 1 undefined Project: /user/username/projects/myproject/random/tsconfig.json WatchType: Type roots +Info 34 [00:01:40.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/random/node_modules/@types 1 undefined Project: /user/username/projects/myproject/random/tsconfig.json WatchType: Type roots +Info 35 [00:01:41.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/random/tsconfig.json WatchType: Type roots +Info 36 [00:01:42.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/random/tsconfig.json WatchType: Type roots +Info 37 [00:01:43.000] Finishing updateGraphWorker: Project: /user/username/projects/myproject/random/tsconfig.json Version: 1 structureChanged: true structureIsReused:: Not Elapsed:: *ms +Info 38 [00:01:44.000] Project '/user/username/projects/myproject/random/tsconfig.json' (Configured) +Info 39 [00:01:45.000] Files (2) /a/lib/lib.d.ts /user/username/projects/myproject/random/random.ts @@ -327,20 +327,20 @@ Info 39 [16:01:45.000] Files (2) random.ts Matched by default include pattern '**/*' -Info 40 [16:01:46.000] ----------------------------------------------- -Info 41 [16:01:47.000] Project '/user/username/projects/myproject/dependency/tsconfig.json' (Configured) -Info 41 [16:01:48.000] Files (2) +Info 40 [00:01:46.000] ----------------------------------------------- +Info 41 [00:01:47.000] Project '/user/username/projects/myproject/dependency/tsconfig.json' (Configured) +Info 41 [00:01:48.000] Files (2) -Info 41 [16:01:49.000] ----------------------------------------------- -Info 41 [16:01:50.000] Project '/user/username/projects/myproject/random/tsconfig.json' (Configured) -Info 41 [16:01:51.000] Files (2) +Info 41 [00:01:49.000] ----------------------------------------------- +Info 41 [00:01:50.000] Project '/user/username/projects/myproject/random/tsconfig.json' (Configured) +Info 41 [00:01:51.000] Files (2) -Info 41 [16:01:52.000] ----------------------------------------------- -Info 41 [16:01:53.000] Open files: -Info 41 [16:01:54.000] FileName: /user/username/projects/myproject/dependency/FnS.ts ProjectRootPath: undefined -Info 41 [16:01:55.000] Projects: /user/username/projects/myproject/dependency/tsconfig.json -Info 41 [16:01:56.000] FileName: /user/username/projects/myproject/random/random.ts ProjectRootPath: undefined -Info 41 [16:01:57.000] Projects: /user/username/projects/myproject/random/tsconfig.json +Info 41 [00:01:52.000] ----------------------------------------------- +Info 41 [00:01:53.000] Open files: +Info 41 [00:01:54.000] FileName: /user/username/projects/myproject/dependency/FnS.ts ProjectRootPath: undefined +Info 41 [00:01:55.000] Projects: /user/username/projects/myproject/dependency/tsconfig.json +Info 41 [00:01:56.000] FileName: /user/username/projects/myproject/random/random.ts ProjectRootPath: undefined +Info 41 [00:01:57.000] Projects: /user/username/projects/myproject/random/tsconfig.json After request PolledWatches:: @@ -365,11 +365,11 @@ FsWatchesRecursive:: /user/username/projects/myproject/random: {} -Info 41 [16:01:58.000] response: +Info 41 [00:01:58.000] response: { "responseRequired": false } -Info 42 [16:01:59.000] request: +Info 42 [00:01:59.000] request: { "command": "rename", "arguments": { @@ -404,8 +404,8 @@ FsWatchesRecursive:: /user/username/projects/myproject/random: {} -Info 43 [16:02:00.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/decls/FnS.d.ts 500 undefined WatchType: Closed Script info -Info 44 [16:02:01.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/decls/FnS.d.ts.map 500 undefined WatchType: Closed Script info +Info 43 [00:02:00.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/decls/FnS.d.ts 500 undefined WatchType: Closed Script info +Info 44 [00:02:01.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/decls/FnS.d.ts.map 500 undefined WatchType: Closed Script info After request PolledWatches:: @@ -434,7 +434,7 @@ FsWatchesRecursive:: /user/username/projects/myproject/random: {} -Info 45 [16:02:02.000] response: +Info 45 [00:02:02.000] response: { "response": { "info": { @@ -482,11 +482,11 @@ Info 45 [16:02:02.000] response: }, "responseRequired": true } -Info 46 [16:02:06.000] FileWatcher:: Triggered with /user/username/projects/myproject/decls/FnS.d.ts.map 1:: WatchInfo: /user/username/projects/myproject/decls/FnS.d.ts.map 500 undefined WatchType: Closed Script info -Info 47 [16:02:07.000] Scheduled: /user/username/projects/myproject/dependency/tsconfig.json -Info 48 [16:02:08.000] Scheduled: *ensureProjectForOpenFiles* -Info 49 [16:02:09.000] Elapsed:: *ms FileWatcher:: Triggered with /user/username/projects/myproject/decls/FnS.d.ts.map 1:: WatchInfo: /user/username/projects/myproject/decls/FnS.d.ts.map 500 undefined WatchType: Closed Script info -Info 50 [16:02:10.000] request: +Info 46 [00:02:06.000] FileWatcher:: Triggered with /user/username/projects/myproject/decls/FnS.d.ts.map 1:: WatchInfo: /user/username/projects/myproject/decls/FnS.d.ts.map 500 undefined WatchType: Closed Script info +Info 47 [00:02:07.000] Scheduled: /user/username/projects/myproject/dependency/tsconfig.json +Info 48 [00:02:08.000] Scheduled: *ensureProjectForOpenFiles* +Info 49 [00:02:09.000] Elapsed:: *ms FileWatcher:: Triggered with /user/username/projects/myproject/decls/FnS.d.ts.map 1:: WatchInfo: /user/username/projects/myproject/decls/FnS.d.ts.map 500 undefined WatchType: Closed Script info +Info 50 [00:02:10.000] request: { "command": "rename", "arguments": { @@ -528,8 +528,8 @@ FsWatchesRecursive:: /user/username/projects/myproject/random: {} -Info 51 [16:02:11.000] Starting updateGraphWorker: Project: /user/username/projects/myproject/dependency/tsconfig.json -Info 52 [16:02:12.000] Finishing updateGraphWorker: Project: /user/username/projects/myproject/dependency/tsconfig.json Version: 2 structureChanged: false structureIsReused:: Not Elapsed:: *ms +Info 51 [00:02:11.000] Starting updateGraphWorker: Project: /user/username/projects/myproject/dependency/tsconfig.json +Info 52 [00:02:12.000] Finishing updateGraphWorker: Project: /user/username/projects/myproject/dependency/tsconfig.json Version: 2 structureChanged: false structureIsReused:: Not Elapsed:: *ms After request PolledWatches:: @@ -558,7 +558,7 @@ FsWatchesRecursive:: /user/username/projects/myproject/random: {} -Info 53 [16:02:13.000] response: +Info 53 [00:02:13.000] response: { "response": { "info": { @@ -606,7 +606,7 @@ Info 53 [16:02:13.000] response: }, "responseRequired": true } -Info 54 [16:02:14.000] request: +Info 54 [00:02:14.000] request: { "command": "rename", "arguments": { @@ -673,7 +673,7 @@ FsWatchesRecursive:: /user/username/projects/myproject/random: {} -Info 55 [16:02:15.000] response: +Info 55 [00:02:15.000] response: { "response": { "info": { @@ -721,7 +721,7 @@ Info 55 [16:02:15.000] response: }, "responseRequired": true } -Info 56 [16:02:16.000] request: +Info 56 [00:02:16.000] request: { "command": "rename", "arguments": { @@ -788,7 +788,7 @@ FsWatchesRecursive:: /user/username/projects/myproject/random: {} -Info 57 [16:02:17.000] response: +Info 57 [00:02:17.000] response: { "response": { "info": { @@ -836,7 +836,7 @@ Info 57 [16:02:17.000] response: }, "responseRequired": true } -Info 58 [16:02:18.000] request: +Info 58 [00:02:18.000] request: { "command": "rename", "arguments": { @@ -903,7 +903,7 @@ FsWatchesRecursive:: /user/username/projects/myproject/random: {} -Info 59 [16:02:19.000] response: +Info 59 [00:02:19.000] response: { "response": { "info": { @@ -951,7 +951,7 @@ Info 59 [16:02:19.000] response: }, "responseRequired": true } -Info 60 [16:02:20.000] request: +Info 60 [00:02:20.000] request: { "command": "rename", "arguments": { @@ -1018,7 +1018,7 @@ FsWatchesRecursive:: /user/username/projects/myproject/random: {} -Info 61 [16:02:21.000] response: +Info 61 [00:02:21.000] response: { "response": { "info": { 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 3c28f09af5eba..27b32d12f1245 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 @@ -1,5 +1,5 @@ -Info 0 [16:01:01.000] Provided types map file "/a/lib/typesMap.json" doesn't exist -Info 1 [16:01:02.000] request: +Info 0 [00:01:01.000] Provided types map file "/a/lib/typesMap.json" doesn't exist +Info 1 [00:01:02.000] request: { "seq": 0, "type": "request", @@ -197,11 +197,11 @@ FsWatches:: FsWatchesRecursive:: -Info 2 [16:01:03.000] Search path: /user/username/projects/myproject/dependency -Info 3 [16:01:04.000] For info: /user/username/projects/myproject/dependency/FnS.ts :: Config file name: /user/username/projects/myproject/dependency/tsconfig.json -Info 4 [16:01:05.000] Creating configuration project /user/username/projects/myproject/dependency/tsconfig.json -Info 5 [16:01:06.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/dependency/tsconfig.json 2000 undefined Project: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Config file -Info 6 [16:01:07.000] Config: /user/username/projects/myproject/dependency/tsconfig.json : { +Info 2 [00:01:03.000] Search path: /user/username/projects/myproject/dependency +Info 3 [00:01:04.000] For info: /user/username/projects/myproject/dependency/FnS.ts :: Config file name: /user/username/projects/myproject/dependency/tsconfig.json +Info 4 [00:01:05.000] Creating configuration project /user/username/projects/myproject/dependency/tsconfig.json +Info 5 [00:01:06.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/dependency/tsconfig.json 2000 undefined Project: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Config file +Info 6 [00:01:07.000] Config: /user/username/projects/myproject/dependency/tsconfig.json : { "rootNames": [ "/user/username/projects/myproject/dependency/FnS.ts" ], @@ -212,18 +212,18 @@ Info 6 [16:01:07.000] Config: /user/username/projects/myproject/dependency/ts "configFilePath": "/user/username/projects/myproject/dependency/tsconfig.json" } } -Info 7 [16:01:08.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/dependency 1 undefined Config: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Wild card directory -Info 8 [16:01:09.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/dependency 1 undefined Config: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Wild card directory -Info 9 [16:01:10.000] Plugins were requested but not running in environment that supports 'require'. Nothing will be loaded -Info 10 [16:01:11.000] Starting updateGraphWorker: Project: /user/username/projects/myproject/dependency/tsconfig.json -Info 11 [16:01:12.000] FileWatcher:: Added:: WatchInfo: /a/lib/lib.d.ts 500 undefined WatchType: Closed Script info -Info 12 [16:01:13.000] 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 13 [16:01:14.000] 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 14 [16:01:15.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Type roots -Info 15 [16:01:16.000] 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 16 [16:01:17.000] Finishing updateGraphWorker: Project: /user/username/projects/myproject/dependency/tsconfig.json Version: 1 structureChanged: true structureIsReused:: Not Elapsed:: *ms -Info 17 [16:01:18.000] Project '/user/username/projects/myproject/dependency/tsconfig.json' (Configured) -Info 18 [16:01:19.000] Files (2) +Info 7 [00:01:08.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/dependency 1 undefined Config: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Wild card directory +Info 8 [00:01:09.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/dependency 1 undefined Config: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Wild card directory +Info 9 [00:01:10.000] Plugins were requested but not running in environment that supports 'require'. Nothing will be loaded +Info 10 [00:01:11.000] Starting updateGraphWorker: Project: /user/username/projects/myproject/dependency/tsconfig.json +Info 11 [00:01:12.000] FileWatcher:: Added:: WatchInfo: /a/lib/lib.d.ts 500 undefined WatchType: Closed Script info +Info 12 [00:01:13.000] 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 13 [00:01:14.000] 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 14 [00:01:15.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Type roots +Info 15 [00:01:16.000] 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 16 [00:01:17.000] Finishing updateGraphWorker: Project: /user/username/projects/myproject/dependency/tsconfig.json Version: 1 structureChanged: true structureIsReused:: Not Elapsed:: *ms +Info 17 [00:01:18.000] Project '/user/username/projects/myproject/dependency/tsconfig.json' (Configured) +Info 18 [00:01:19.000] Files (2) /a/lib/lib.d.ts /user/username/projects/myproject/dependency/FnS.ts @@ -233,16 +233,16 @@ Info 18 [16:01:19.000] Files (2) FnS.ts Matched by default include pattern '**/*' -Info 19 [16:01:20.000] ----------------------------------------------- -Info 20 [16:01:21.000] Search path: /user/username/projects/myproject/dependency -Info 21 [16:01:22.000] For info: /user/username/projects/myproject/dependency/tsconfig.json :: No config files found. -Info 22 [16:01:23.000] Project '/user/username/projects/myproject/dependency/tsconfig.json' (Configured) -Info 22 [16:01:24.000] Files (2) +Info 19 [00:01:20.000] ----------------------------------------------- +Info 20 [00:01:21.000] Search path: /user/username/projects/myproject/dependency +Info 21 [00:01:22.000] For info: /user/username/projects/myproject/dependency/tsconfig.json :: No config files found. +Info 22 [00:01:23.000] Project '/user/username/projects/myproject/dependency/tsconfig.json' (Configured) +Info 22 [00:01:24.000] Files (2) -Info 22 [16:01:25.000] ----------------------------------------------- -Info 22 [16:01:26.000] Open files: -Info 22 [16:01:27.000] FileName: /user/username/projects/myproject/dependency/FnS.ts ProjectRootPath: undefined -Info 22 [16:01:28.000] Projects: /user/username/projects/myproject/dependency/tsconfig.json +Info 22 [00:01:25.000] ----------------------------------------------- +Info 22 [00:01:26.000] Open files: +Info 22 [00:01:27.000] FileName: /user/username/projects/myproject/dependency/FnS.ts ProjectRootPath: undefined +Info 22 [00:01:28.000] Projects: /user/username/projects/myproject/dependency/tsconfig.json After request PolledWatches:: @@ -261,11 +261,11 @@ FsWatchesRecursive:: /user/username/projects/myproject/dependency: {} -Info 22 [16:01:29.000] response: +Info 22 [00:01:29.000] response: { "responseRequired": false } -Info 23 [16:01:30.000] request: +Info 23 [00:01:30.000] request: { "seq": 0, "type": "request", @@ -292,11 +292,11 @@ FsWatchesRecursive:: /user/username/projects/myproject/dependency: {} -Info 24 [16:01:31.000] Search path: /user/username/projects/myproject/random -Info 25 [16:01:32.000] For info: /user/username/projects/myproject/random/random.ts :: Config file name: /user/username/projects/myproject/random/tsconfig.json -Info 26 [16:01:33.000] Creating configuration project /user/username/projects/myproject/random/tsconfig.json -Info 27 [16:01:34.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/random/tsconfig.json 2000 undefined Project: /user/username/projects/myproject/random/tsconfig.json WatchType: Config file -Info 28 [16:01:35.000] Config: /user/username/projects/myproject/random/tsconfig.json : { +Info 24 [00:01:31.000] Search path: /user/username/projects/myproject/random +Info 25 [00:01:32.000] For info: /user/username/projects/myproject/random/random.ts :: Config file name: /user/username/projects/myproject/random/tsconfig.json +Info 26 [00:01:33.000] Creating configuration project /user/username/projects/myproject/random/tsconfig.json +Info 27 [00:01:34.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/random/tsconfig.json 2000 undefined Project: /user/username/projects/myproject/random/tsconfig.json WatchType: Config file +Info 28 [00:01:35.000] Config: /user/username/projects/myproject/random/tsconfig.json : { "rootNames": [ "/user/username/projects/myproject/random/random.ts" ], @@ -304,17 +304,17 @@ Info 28 [16:01:35.000] Config: /user/username/projects/myproject/random/tsconf "configFilePath": "/user/username/projects/myproject/random/tsconfig.json" } } -Info 29 [16:01:36.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/random 1 undefined Config: /user/username/projects/myproject/random/tsconfig.json WatchType: Wild card directory -Info 30 [16:01:37.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/random 1 undefined Config: /user/username/projects/myproject/random/tsconfig.json WatchType: Wild card directory -Info 31 [16:01:38.000] Plugins were requested but not running in environment that supports 'require'. Nothing will be loaded -Info 32 [16:01:39.000] Starting updateGraphWorker: Project: /user/username/projects/myproject/random/tsconfig.json -Info 33 [16:01:40.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/random/node_modules/@types 1 undefined Project: /user/username/projects/myproject/random/tsconfig.json WatchType: Type roots -Info 34 [16:01:41.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/random/node_modules/@types 1 undefined Project: /user/username/projects/myproject/random/tsconfig.json WatchType: Type roots -Info 35 [16:01:42.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/random/tsconfig.json WatchType: Type roots -Info 36 [16:01:43.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/random/tsconfig.json WatchType: Type roots -Info 37 [16:01:44.000] Finishing updateGraphWorker: Project: /user/username/projects/myproject/random/tsconfig.json Version: 1 structureChanged: true structureIsReused:: Not Elapsed:: *ms -Info 38 [16:01:45.000] Project '/user/username/projects/myproject/random/tsconfig.json' (Configured) -Info 39 [16:01:46.000] Files (2) +Info 29 [00:01:36.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/random 1 undefined Config: /user/username/projects/myproject/random/tsconfig.json WatchType: Wild card directory +Info 30 [00:01:37.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/random 1 undefined Config: /user/username/projects/myproject/random/tsconfig.json WatchType: Wild card directory +Info 31 [00:01:38.000] Plugins were requested but not running in environment that supports 'require'. Nothing will be loaded +Info 32 [00:01:39.000] Starting updateGraphWorker: Project: /user/username/projects/myproject/random/tsconfig.json +Info 33 [00:01:40.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/random/node_modules/@types 1 undefined Project: /user/username/projects/myproject/random/tsconfig.json WatchType: Type roots +Info 34 [00:01:41.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/random/node_modules/@types 1 undefined Project: /user/username/projects/myproject/random/tsconfig.json WatchType: Type roots +Info 35 [00:01:42.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/random/tsconfig.json WatchType: Type roots +Info 36 [00:01:43.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/random/tsconfig.json WatchType: Type roots +Info 37 [00:01:44.000] Finishing updateGraphWorker: Project: /user/username/projects/myproject/random/tsconfig.json Version: 1 structureChanged: true structureIsReused:: Not Elapsed:: *ms +Info 38 [00:01:45.000] Project '/user/username/projects/myproject/random/tsconfig.json' (Configured) +Info 39 [00:01:46.000] Files (2) /a/lib/lib.d.ts /user/username/projects/myproject/random/random.ts @@ -324,20 +324,20 @@ Info 39 [16:01:46.000] Files (2) random.ts Matched by default include pattern '**/*' -Info 40 [16:01:47.000] ----------------------------------------------- -Info 41 [16:01:48.000] Project '/user/username/projects/myproject/dependency/tsconfig.json' (Configured) -Info 41 [16:01:49.000] Files (2) +Info 40 [00:01:47.000] ----------------------------------------------- +Info 41 [00:01:48.000] Project '/user/username/projects/myproject/dependency/tsconfig.json' (Configured) +Info 41 [00:01:49.000] Files (2) -Info 41 [16:01:50.000] ----------------------------------------------- -Info 41 [16:01:51.000] Project '/user/username/projects/myproject/random/tsconfig.json' (Configured) -Info 41 [16:01:52.000] Files (2) +Info 41 [00:01:50.000] ----------------------------------------------- +Info 41 [00:01:51.000] Project '/user/username/projects/myproject/random/tsconfig.json' (Configured) +Info 41 [00:01:52.000] Files (2) -Info 41 [16:01:53.000] ----------------------------------------------- -Info 41 [16:01:54.000] Open files: -Info 41 [16:01:55.000] FileName: /user/username/projects/myproject/dependency/FnS.ts ProjectRootPath: undefined -Info 41 [16:01:56.000] Projects: /user/username/projects/myproject/dependency/tsconfig.json -Info 41 [16:01:57.000] FileName: /user/username/projects/myproject/random/random.ts ProjectRootPath: undefined -Info 41 [16:01:58.000] Projects: /user/username/projects/myproject/random/tsconfig.json +Info 41 [00:01:53.000] ----------------------------------------------- +Info 41 [00:01:54.000] Open files: +Info 41 [00:01:55.000] FileName: /user/username/projects/myproject/dependency/FnS.ts ProjectRootPath: undefined +Info 41 [00:01:56.000] Projects: /user/username/projects/myproject/dependency/tsconfig.json +Info 41 [00:01:57.000] FileName: /user/username/projects/myproject/random/random.ts ProjectRootPath: undefined +Info 41 [00:01:58.000] Projects: /user/username/projects/myproject/random/tsconfig.json After request PolledWatches:: @@ -362,11 +362,11 @@ FsWatchesRecursive:: /user/username/projects/myproject/random: {} -Info 41 [16:01:59.000] response: +Info 41 [00:01:59.000] response: { "responseRequired": false } -Info 42 [16:02:00.000] request: +Info 42 [00:02:00.000] request: { "command": "rename", "arguments": { @@ -401,8 +401,8 @@ FsWatchesRecursive:: /user/username/projects/myproject/random: {} -Info 43 [16:02:01.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/decls/FnS.d.ts 500 undefined WatchType: Closed Script info -Info 44 [16:02:02.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/decls/FnS.d.ts.map 2000 undefined WatchType: Missing source map file +Info 43 [00:02:01.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/decls/FnS.d.ts 500 undefined WatchType: Closed Script info +Info 44 [00:02:02.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/decls/FnS.d.ts.map 2000 undefined WatchType: Missing source map file After request PolledWatches:: @@ -431,7 +431,7 @@ FsWatchesRecursive:: /user/username/projects/myproject/random: {} -Info 45 [16:02:03.000] response: +Info 45 [00:02:03.000] response: { "response": { "info": { @@ -479,12 +479,12 @@ Info 45 [16:02:03.000] response: }, "responseRequired": true } -Info 46 [16:02:06.000] FileWatcher:: Triggered with /user/username/projects/myproject/decls/FnS.d.ts.map 0:: WatchInfo: /user/username/projects/myproject/decls/FnS.d.ts.map 2000 undefined WatchType: Missing source map file -Info 47 [16:02:07.000] Scheduled: /user/username/projects/myproject/dependency/tsconfig.json -Info 48 [16:02:08.000] Scheduled: *ensureProjectForOpenFiles* -Info 49 [16:02:09.000] FileWatcher:: Close:: WatchInfo: /user/username/projects/myproject/decls/FnS.d.ts.map 2000 undefined WatchType: Missing source map file -Info 50 [16:02:10.000] Elapsed:: *ms FileWatcher:: Triggered with /user/username/projects/myproject/decls/FnS.d.ts.map 0:: WatchInfo: /user/username/projects/myproject/decls/FnS.d.ts.map 2000 undefined WatchType: Missing source map file -Info 51 [16:02:11.000] request: +Info 46 [00:02:06.000] FileWatcher:: Triggered with /user/username/projects/myproject/decls/FnS.d.ts.map 0:: WatchInfo: /user/username/projects/myproject/decls/FnS.d.ts.map 2000 undefined WatchType: Missing source map file +Info 47 [00:02:07.000] Scheduled: /user/username/projects/myproject/dependency/tsconfig.json +Info 48 [00:02:08.000] Scheduled: *ensureProjectForOpenFiles* +Info 49 [00:02:09.000] FileWatcher:: Close:: WatchInfo: /user/username/projects/myproject/decls/FnS.d.ts.map 2000 undefined WatchType: Missing source map file +Info 50 [00:02:10.000] Elapsed:: *ms FileWatcher:: Triggered with /user/username/projects/myproject/decls/FnS.d.ts.map 0:: WatchInfo: /user/username/projects/myproject/decls/FnS.d.ts.map 2000 undefined WatchType: Missing source map file +Info 51 [00:02:11.000] request: { "command": "rename", "arguments": { @@ -524,9 +524,9 @@ FsWatchesRecursive:: /user/username/projects/myproject/random: {} -Info 52 [16:02:12.000] Starting updateGraphWorker: Project: /user/username/projects/myproject/dependency/tsconfig.json -Info 53 [16:02:13.000] Finishing updateGraphWorker: Project: /user/username/projects/myproject/dependency/tsconfig.json Version: 2 structureChanged: false structureIsReused:: Not Elapsed:: *ms -Info 54 [16:02:14.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/decls/FnS.d.ts.map 500 undefined WatchType: Closed Script info +Info 52 [00:02:12.000] Starting updateGraphWorker: Project: /user/username/projects/myproject/dependency/tsconfig.json +Info 53 [00:02:13.000] Finishing updateGraphWorker: Project: /user/username/projects/myproject/dependency/tsconfig.json Version: 2 structureChanged: false structureIsReused:: Not Elapsed:: *ms +Info 54 [00:02:14.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/decls/FnS.d.ts.map 500 undefined WatchType: Closed Script info After request PolledWatches:: @@ -555,7 +555,7 @@ FsWatchesRecursive:: /user/username/projects/myproject/random: {} -Info 55 [16:02:15.000] response: +Info 55 [00:02:15.000] response: { "response": { "info": { @@ -603,7 +603,7 @@ Info 55 [16:02:15.000] response: }, "responseRequired": true } -Info 56 [16:02:16.000] request: +Info 56 [00:02:16.000] request: { "command": "rename", "arguments": { @@ -670,7 +670,7 @@ FsWatchesRecursive:: /user/username/projects/myproject/random: {} -Info 57 [16:02:17.000] response: +Info 57 [00:02:17.000] response: { "response": { "info": { @@ -718,7 +718,7 @@ Info 57 [16:02:17.000] response: }, "responseRequired": true } -Info 58 [16:02:18.000] request: +Info 58 [00:02:18.000] request: { "command": "rename", "arguments": { @@ -785,7 +785,7 @@ FsWatchesRecursive:: /user/username/projects/myproject/random: {} -Info 59 [16:02:19.000] response: +Info 59 [00:02:19.000] response: { "response": { "info": { @@ -833,7 +833,7 @@ Info 59 [16:02:19.000] response: }, "responseRequired": true } -Info 60 [16:02:20.000] request: +Info 60 [00:02:20.000] request: { "command": "rename", "arguments": { @@ -900,7 +900,7 @@ FsWatchesRecursive:: /user/username/projects/myproject/random: {} -Info 61 [16:02:21.000] response: +Info 61 [00:02:21.000] response: { "response": { "info": { @@ -948,7 +948,7 @@ Info 61 [16:02:21.000] response: }, "responseRequired": true } -Info 62 [16:02:22.000] request: +Info 62 [00:02:22.000] request: { "command": "rename", "arguments": { @@ -1015,7 +1015,7 @@ FsWatchesRecursive:: /user/username/projects/myproject/random: {} -Info 63 [16:02:23.000] response: +Info 63 [00:02:23.000] response: { "response": { "info": { @@ -1063,7 +1063,7 @@ Info 63 [16:02:23.000] response: }, "responseRequired": true } -Info 64 [16:02:24.000] request: +Info 64 [00:02:24.000] request: { "seq": 0, "type": "request", @@ -1100,18 +1100,18 @@ FsWatchesRecursive:: /user/username/projects/myproject/random: {} -Info 65 [16:02:25.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/random/random.ts 500 undefined WatchType: Closed Script info -Info 66 [16:02:26.000] Project '/user/username/projects/myproject/dependency/tsconfig.json' (Configured) -Info 66 [16:02:27.000] Files (2) +Info 65 [00:02:25.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/random/random.ts 500 undefined WatchType: Closed Script info +Info 66 [00:02:26.000] Project '/user/username/projects/myproject/dependency/tsconfig.json' (Configured) +Info 66 [00:02:27.000] Files (2) -Info 66 [16:02:28.000] ----------------------------------------------- -Info 66 [16:02:29.000] Project '/user/username/projects/myproject/random/tsconfig.json' (Configured) -Info 66 [16:02:30.000] Files (2) +Info 66 [00:02:28.000] ----------------------------------------------- +Info 66 [00:02:29.000] Project '/user/username/projects/myproject/random/tsconfig.json' (Configured) +Info 66 [00:02:30.000] Files (2) -Info 66 [16:02:31.000] ----------------------------------------------- -Info 66 [16:02:32.000] Open files: -Info 66 [16:02:33.000] FileName: /user/username/projects/myproject/dependency/FnS.ts ProjectRootPath: undefined -Info 66 [16:02:34.000] Projects: /user/username/projects/myproject/dependency/tsconfig.json +Info 66 [00:02:31.000] ----------------------------------------------- +Info 66 [00:02:32.000] Open files: +Info 66 [00:02:33.000] FileName: /user/username/projects/myproject/dependency/FnS.ts ProjectRootPath: undefined +Info 66 [00:02:34.000] Projects: /user/username/projects/myproject/dependency/tsconfig.json After request PolledWatches:: @@ -1142,11 +1142,11 @@ FsWatchesRecursive:: /user/username/projects/myproject/random: {} -Info 66 [16:02:35.000] response: +Info 66 [00:02:35.000] response: { "responseRequired": false } -Info 67 [16:02:36.000] request: +Info 67 [00:02:36.000] request: { "seq": 0, "type": "request", @@ -1185,22 +1185,22 @@ FsWatchesRecursive:: /user/username/projects/myproject/random: {} -Info 68 [16:02:37.000] FileWatcher:: Close:: WatchInfo: /user/username/projects/myproject/random/random.ts 500 undefined WatchType: Closed Script info -Info 69 [16:02:38.000] Search path: /user/username/projects/myproject/random -Info 70 [16:02:39.000] For info: /user/username/projects/myproject/random/random.ts :: Config file name: /user/username/projects/myproject/random/tsconfig.json -Info 71 [16:02:40.000] Project '/user/username/projects/myproject/dependency/tsconfig.json' (Configured) -Info 71 [16:02:41.000] Files (2) +Info 68 [00:02:37.000] FileWatcher:: Close:: WatchInfo: /user/username/projects/myproject/random/random.ts 500 undefined WatchType: Closed Script info +Info 69 [00:02:38.000] Search path: /user/username/projects/myproject/random +Info 70 [00:02:39.000] For info: /user/username/projects/myproject/random/random.ts :: Config file name: /user/username/projects/myproject/random/tsconfig.json +Info 71 [00:02:40.000] Project '/user/username/projects/myproject/dependency/tsconfig.json' (Configured) +Info 71 [00:02:41.000] Files (2) -Info 71 [16:02:42.000] ----------------------------------------------- -Info 71 [16:02:43.000] Project '/user/username/projects/myproject/random/tsconfig.json' (Configured) -Info 71 [16:02:44.000] Files (2) +Info 71 [00:02:42.000] ----------------------------------------------- +Info 71 [00:02:43.000] Project '/user/username/projects/myproject/random/tsconfig.json' (Configured) +Info 71 [00:02:44.000] Files (2) -Info 71 [16:02:45.000] ----------------------------------------------- -Info 71 [16:02:46.000] Open files: -Info 71 [16:02:47.000] FileName: /user/username/projects/myproject/dependency/FnS.ts ProjectRootPath: undefined -Info 71 [16:02:48.000] Projects: /user/username/projects/myproject/dependency/tsconfig.json -Info 71 [16:02:49.000] FileName: /user/username/projects/myproject/random/random.ts ProjectRootPath: undefined -Info 71 [16:02:50.000] Projects: /user/username/projects/myproject/random/tsconfig.json +Info 71 [00:02:45.000] ----------------------------------------------- +Info 71 [00:02:46.000] Open files: +Info 71 [00:02:47.000] FileName: /user/username/projects/myproject/dependency/FnS.ts ProjectRootPath: undefined +Info 71 [00:02:48.000] Projects: /user/username/projects/myproject/dependency/tsconfig.json +Info 71 [00:02:49.000] FileName: /user/username/projects/myproject/random/random.ts ProjectRootPath: undefined +Info 71 [00:02:50.000] Projects: /user/username/projects/myproject/random/tsconfig.json After request PolledWatches:: @@ -1229,11 +1229,11 @@ FsWatchesRecursive:: /user/username/projects/myproject/random: {} -Info 71 [16:02:51.000] response: +Info 71 [00:02:51.000] response: { "responseRequired": false } -Info 72 [16:02:52.000] request: +Info 72 [00:02:52.000] request: { "seq": 0, "type": "request", @@ -1270,18 +1270,18 @@ FsWatchesRecursive:: /user/username/projects/myproject/random: {} -Info 73 [16:02:53.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/dependency/FnS.ts 500 undefined WatchType: Closed Script info -Info 74 [16:02:54.000] Project '/user/username/projects/myproject/dependency/tsconfig.json' (Configured) -Info 74 [16:02:55.000] Files (2) +Info 73 [00:02:53.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/dependency/FnS.ts 500 undefined WatchType: Closed Script info +Info 74 [00:02:54.000] Project '/user/username/projects/myproject/dependency/tsconfig.json' (Configured) +Info 74 [00:02:55.000] Files (2) -Info 74 [16:02:56.000] ----------------------------------------------- -Info 74 [16:02:57.000] Project '/user/username/projects/myproject/random/tsconfig.json' (Configured) -Info 74 [16:02:58.000] Files (2) +Info 74 [00:02:56.000] ----------------------------------------------- +Info 74 [00:02:57.000] Project '/user/username/projects/myproject/random/tsconfig.json' (Configured) +Info 74 [00:02:58.000] Files (2) -Info 74 [16:02:59.000] ----------------------------------------------- -Info 74 [16:03:00.000] Open files: -Info 74 [16:03:01.000] FileName: /user/username/projects/myproject/random/random.ts ProjectRootPath: undefined -Info 74 [16:03:02.000] Projects: /user/username/projects/myproject/random/tsconfig.json +Info 74 [00:02:59.000] ----------------------------------------------- +Info 74 [00:03:00.000] Open files: +Info 74 [00:03:01.000] FileName: /user/username/projects/myproject/random/random.ts ProjectRootPath: undefined +Info 74 [00:03:02.000] Projects: /user/username/projects/myproject/random/tsconfig.json After request PolledWatches:: @@ -1312,11 +1312,11 @@ FsWatchesRecursive:: /user/username/projects/myproject/random: {} -Info 74 [16:03:03.000] response: +Info 74 [00:03:03.000] response: { "responseRequired": false } -Info 75 [16:03:04.000] request: +Info 75 [00:03:04.000] request: { "seq": 0, "type": "request", @@ -1355,16 +1355,16 @@ FsWatchesRecursive:: /user/username/projects/myproject/random: {} -Info 76 [16:03:05.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/random/random.ts 500 undefined WatchType: Closed Script info -Info 77 [16:03:06.000] Project '/user/username/projects/myproject/dependency/tsconfig.json' (Configured) -Info 77 [16:03:07.000] Files (2) +Info 76 [00:03:05.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/random/random.ts 500 undefined WatchType: Closed Script info +Info 77 [00:03:06.000] Project '/user/username/projects/myproject/dependency/tsconfig.json' (Configured) +Info 77 [00:03:07.000] Files (2) -Info 77 [16:03:08.000] ----------------------------------------------- -Info 77 [16:03:09.000] Project '/user/username/projects/myproject/random/tsconfig.json' (Configured) -Info 77 [16:03:10.000] Files (2) +Info 77 [00:03:08.000] ----------------------------------------------- +Info 77 [00:03:09.000] Project '/user/username/projects/myproject/random/tsconfig.json' (Configured) +Info 77 [00:03:10.000] Files (2) -Info 77 [16:03:11.000] ----------------------------------------------- -Info 77 [16:03:12.000] Open files: +Info 77 [00:03:11.000] ----------------------------------------------- +Info 77 [00:03:12.000] Open files: After request PolledWatches:: @@ -1397,11 +1397,11 @@ FsWatchesRecursive:: /user/username/projects/myproject/random: {} -Info 77 [16:03:13.000] response: +Info 77 [00:03:13.000] response: { "responseRequired": false } -Info 78 [16:03:14.000] request: +Info 78 [00:03:14.000] request: { "seq": 0, "type": "request", @@ -1442,12 +1442,12 @@ FsWatchesRecursive:: /user/username/projects/myproject/random: {} -Info 79 [16:03:15.000] FileWatcher:: Close:: WatchInfo: /user/username/projects/myproject/random/random.ts 500 undefined WatchType: Closed Script info -Info 80 [16:03:16.000] Search path: /user/username/projects/myproject/random -Info 81 [16:03:17.000] For info: /user/username/projects/myproject/random/random.ts :: Config file name: /user/username/projects/myproject/random/tsconfig.json -Info 82 [16:03:18.000] `remove Project:: -Info 83 [16:03:19.000] Project '/user/username/projects/myproject/dependency/tsconfig.json' (Configured) -Info 84 [16:03:20.000] Files (2) +Info 79 [00:03:15.000] FileWatcher:: Close:: WatchInfo: /user/username/projects/myproject/random/random.ts 500 undefined WatchType: Closed Script info +Info 80 [00:03:16.000] Search path: /user/username/projects/myproject/random +Info 81 [00:03:17.000] For info: /user/username/projects/myproject/random/random.ts :: Config file name: /user/username/projects/myproject/random/tsconfig.json +Info 82 [00:03:18.000] `remove Project:: +Info 83 [00:03:19.000] Project '/user/username/projects/myproject/dependency/tsconfig.json' (Configured) +Info 84 [00:03:20.000] Files (2) /a/lib/lib.d.ts /user/username/projects/myproject/dependency/FnS.ts @@ -1457,24 +1457,24 @@ Info 84 [16:03:20.000] Files (2) FnS.ts Matched by default include pattern '**/*' -Info 85 [16:03:21.000] ----------------------------------------------- -Info 86 [16:03:22.000] DirectoryWatcher:: Close:: WatchInfo: /user/username/projects/myproject/dependency 1 undefined Config: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Wild card directory -Info 87 [16:03:23.000] 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 88 [16:03:24.000] FileWatcher:: Close:: WatchInfo: /user/username/projects/myproject/dependency/tsconfig.json 2000 undefined Project: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Config file -Info 89 [16:03:25.000] 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 90 [16:03:26.000] 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 91 [16:03:27.000] DirectoryWatcher:: Close:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Type roots -Info 92 [16:03:28.000] 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 93 [16:03:29.000] FileWatcher:: Close:: WatchInfo: /user/username/projects/myproject/dependency/FnS.ts 500 undefined WatchType: Closed Script info -Info 94 [16:03:30.000] FileWatcher:: Close:: WatchInfo: /user/username/projects/myproject/decls/FnS.d.ts 500 undefined WatchType: Closed Script info -Info 95 [16:03:31.000] FileWatcher:: Close:: WatchInfo: /user/username/projects/myproject/decls/FnS.d.ts.map 500 undefined WatchType: Closed Script info -Info 96 [16:03:32.000] Project '/user/username/projects/myproject/random/tsconfig.json' (Configured) -Info 96 [16:03:33.000] Files (2) - -Info 96 [16:03:34.000] ----------------------------------------------- -Info 96 [16:03:35.000] Open files: -Info 96 [16:03:36.000] FileName: /user/username/projects/myproject/random/random.ts ProjectRootPath: undefined -Info 96 [16:03:37.000] Projects: /user/username/projects/myproject/random/tsconfig.json +Info 85 [00:03:21.000] ----------------------------------------------- +Info 86 [00:03:22.000] DirectoryWatcher:: Close:: WatchInfo: /user/username/projects/myproject/dependency 1 undefined Config: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Wild card directory +Info 87 [00:03:23.000] 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 88 [00:03:24.000] FileWatcher:: Close:: WatchInfo: /user/username/projects/myproject/dependency/tsconfig.json 2000 undefined Project: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Config file +Info 89 [00:03:25.000] 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 90 [00:03:26.000] 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 91 [00:03:27.000] DirectoryWatcher:: Close:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Type roots +Info 92 [00:03:28.000] 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 93 [00:03:29.000] FileWatcher:: Close:: WatchInfo: /user/username/projects/myproject/dependency/FnS.ts 500 undefined WatchType: Closed Script info +Info 94 [00:03:30.000] FileWatcher:: Close:: WatchInfo: /user/username/projects/myproject/decls/FnS.d.ts 500 undefined WatchType: Closed Script info +Info 95 [00:03:31.000] FileWatcher:: Close:: WatchInfo: /user/username/projects/myproject/decls/FnS.d.ts.map 500 undefined WatchType: Closed Script info +Info 96 [00:03:32.000] Project '/user/username/projects/myproject/random/tsconfig.json' (Configured) +Info 96 [00:03:33.000] Files (2) + +Info 96 [00:03:34.000] ----------------------------------------------- +Info 96 [00:03:35.000] Open files: +Info 96 [00:03:36.000] FileName: /user/username/projects/myproject/random/random.ts ProjectRootPath: undefined +Info 96 [00:03:37.000] Projects: /user/username/projects/myproject/random/tsconfig.json After request PolledWatches:: @@ -1493,7 +1493,7 @@ FsWatchesRecursive:: /user/username/projects/myproject/random: {} -Info 96 [16:03:38.000] response: +Info 96 [00:03:38.000] response: { "responseRequired": false } \ No newline at end of file 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 1142d6afd784f..2ac3e7a173a26 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 @@ -1,5 +1,5 @@ -Info 0 [16:01:00.000] Provided types map file "/a/lib/typesMap.json" doesn't exist -Info 1 [16:01:01.000] request: +Info 0 [00:01:00.000] Provided types map file "/a/lib/typesMap.json" doesn't exist +Info 1 [00:01:01.000] request: { "seq": 0, "type": "request", @@ -200,11 +200,11 @@ FsWatches:: FsWatchesRecursive:: -Info 2 [16:01:02.000] Search path: /user/username/projects/myproject/dependency -Info 3 [16:01:03.000] For info: /user/username/projects/myproject/dependency/FnS.ts :: Config file name: /user/username/projects/myproject/dependency/tsconfig.json -Info 4 [16:01:04.000] Creating configuration project /user/username/projects/myproject/dependency/tsconfig.json -Info 5 [16:01:05.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/dependency/tsconfig.json 2000 undefined Project: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Config file -Info 6 [16:01:06.000] Config: /user/username/projects/myproject/dependency/tsconfig.json : { +Info 2 [00:01:02.000] Search path: /user/username/projects/myproject/dependency +Info 3 [00:01:03.000] For info: /user/username/projects/myproject/dependency/FnS.ts :: Config file name: /user/username/projects/myproject/dependency/tsconfig.json +Info 4 [00:01:04.000] Creating configuration project /user/username/projects/myproject/dependency/tsconfig.json +Info 5 [00:01:05.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/dependency/tsconfig.json 2000 undefined Project: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Config file +Info 6 [00:01:06.000] Config: /user/username/projects/myproject/dependency/tsconfig.json : { "rootNames": [ "/user/username/projects/myproject/dependency/FnS.ts" ], @@ -215,18 +215,18 @@ Info 6 [16:01:06.000] Config: /user/username/projects/myproject/dependency/ts "configFilePath": "/user/username/projects/myproject/dependency/tsconfig.json" } } -Info 7 [16:01:07.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/dependency 1 undefined Config: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Wild card directory -Info 8 [16:01:08.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/dependency 1 undefined Config: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Wild card directory -Info 9 [16:01:09.000] Plugins were requested but not running in environment that supports 'require'. Nothing will be loaded -Info 10 [16:01:10.000] Starting updateGraphWorker: Project: /user/username/projects/myproject/dependency/tsconfig.json -Info 11 [16:01:11.000] FileWatcher:: Added:: WatchInfo: /a/lib/lib.d.ts 500 undefined WatchType: Closed Script info -Info 12 [16:01:12.000] 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 13 [16:01:13.000] 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 14 [16:01:14.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Type roots -Info 15 [16:01:15.000] 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 16 [16:01:16.000] Finishing updateGraphWorker: Project: /user/username/projects/myproject/dependency/tsconfig.json Version: 1 structureChanged: true structureIsReused:: Not Elapsed:: *ms -Info 17 [16:01:17.000] Project '/user/username/projects/myproject/dependency/tsconfig.json' (Configured) -Info 18 [16:01:18.000] Files (2) +Info 7 [00:01:07.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/dependency 1 undefined Config: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Wild card directory +Info 8 [00:01:08.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/dependency 1 undefined Config: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Wild card directory +Info 9 [00:01:09.000] Plugins were requested but not running in environment that supports 'require'. Nothing will be loaded +Info 10 [00:01:10.000] Starting updateGraphWorker: Project: /user/username/projects/myproject/dependency/tsconfig.json +Info 11 [00:01:11.000] FileWatcher:: Added:: WatchInfo: /a/lib/lib.d.ts 500 undefined WatchType: Closed Script info +Info 12 [00:01:12.000] 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 13 [00:01:13.000] 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 14 [00:01:14.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Type roots +Info 15 [00:01:15.000] 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 16 [00:01:16.000] Finishing updateGraphWorker: Project: /user/username/projects/myproject/dependency/tsconfig.json Version: 1 structureChanged: true structureIsReused:: Not Elapsed:: *ms +Info 17 [00:01:17.000] Project '/user/username/projects/myproject/dependency/tsconfig.json' (Configured) +Info 18 [00:01:18.000] Files (2) /a/lib/lib.d.ts /user/username/projects/myproject/dependency/FnS.ts @@ -236,16 +236,16 @@ Info 18 [16:01:18.000] Files (2) FnS.ts Matched by default include pattern '**/*' -Info 19 [16:01:19.000] ----------------------------------------------- -Info 20 [16:01:20.000] Search path: /user/username/projects/myproject/dependency -Info 21 [16:01:21.000] For info: /user/username/projects/myproject/dependency/tsconfig.json :: No config files found. -Info 22 [16:01:22.000] Project '/user/username/projects/myproject/dependency/tsconfig.json' (Configured) -Info 22 [16:01:23.000] Files (2) +Info 19 [00:01:19.000] ----------------------------------------------- +Info 20 [00:01:20.000] Search path: /user/username/projects/myproject/dependency +Info 21 [00:01:21.000] For info: /user/username/projects/myproject/dependency/tsconfig.json :: No config files found. +Info 22 [00:01:22.000] Project '/user/username/projects/myproject/dependency/tsconfig.json' (Configured) +Info 22 [00:01:23.000] Files (2) -Info 22 [16:01:24.000] ----------------------------------------------- -Info 22 [16:01:25.000] Open files: -Info 22 [16:01:26.000] FileName: /user/username/projects/myproject/dependency/FnS.ts ProjectRootPath: undefined -Info 22 [16:01:27.000] Projects: /user/username/projects/myproject/dependency/tsconfig.json +Info 22 [00:01:24.000] ----------------------------------------------- +Info 22 [00:01:25.000] Open files: +Info 22 [00:01:26.000] FileName: /user/username/projects/myproject/dependency/FnS.ts ProjectRootPath: undefined +Info 22 [00:01:27.000] Projects: /user/username/projects/myproject/dependency/tsconfig.json After request PolledWatches:: @@ -264,11 +264,11 @@ FsWatchesRecursive:: /user/username/projects/myproject/dependency: {} -Info 22 [16:01:28.000] response: +Info 22 [00:01:28.000] response: { "responseRequired": false } -Info 23 [16:01:29.000] request: +Info 23 [00:01:29.000] request: { "seq": 0, "type": "request", @@ -295,11 +295,11 @@ FsWatchesRecursive:: /user/username/projects/myproject/dependency: {} -Info 24 [16:01:30.000] Search path: /user/username/projects/myproject/random -Info 25 [16:01:31.000] For info: /user/username/projects/myproject/random/random.ts :: Config file name: /user/username/projects/myproject/random/tsconfig.json -Info 26 [16:01:32.000] Creating configuration project /user/username/projects/myproject/random/tsconfig.json -Info 27 [16:01:33.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/random/tsconfig.json 2000 undefined Project: /user/username/projects/myproject/random/tsconfig.json WatchType: Config file -Info 28 [16:01:34.000] Config: /user/username/projects/myproject/random/tsconfig.json : { +Info 24 [00:01:30.000] Search path: /user/username/projects/myproject/random +Info 25 [00:01:31.000] For info: /user/username/projects/myproject/random/random.ts :: Config file name: /user/username/projects/myproject/random/tsconfig.json +Info 26 [00:01:32.000] Creating configuration project /user/username/projects/myproject/random/tsconfig.json +Info 27 [00:01:33.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/random/tsconfig.json 2000 undefined Project: /user/username/projects/myproject/random/tsconfig.json WatchType: Config file +Info 28 [00:01:34.000] Config: /user/username/projects/myproject/random/tsconfig.json : { "rootNames": [ "/user/username/projects/myproject/random/random.ts" ], @@ -307,17 +307,17 @@ Info 28 [16:01:34.000] Config: /user/username/projects/myproject/random/tsconf "configFilePath": "/user/username/projects/myproject/random/tsconfig.json" } } -Info 29 [16:01:35.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/random 1 undefined Config: /user/username/projects/myproject/random/tsconfig.json WatchType: Wild card directory -Info 30 [16:01:36.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/random 1 undefined Config: /user/username/projects/myproject/random/tsconfig.json WatchType: Wild card directory -Info 31 [16:01:37.000] Plugins were requested but not running in environment that supports 'require'. Nothing will be loaded -Info 32 [16:01:38.000] Starting updateGraphWorker: Project: /user/username/projects/myproject/random/tsconfig.json -Info 33 [16:01:39.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/random/node_modules/@types 1 undefined Project: /user/username/projects/myproject/random/tsconfig.json WatchType: Type roots -Info 34 [16:01:40.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/random/node_modules/@types 1 undefined Project: /user/username/projects/myproject/random/tsconfig.json WatchType: Type roots -Info 35 [16:01:41.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/random/tsconfig.json WatchType: Type roots -Info 36 [16:01:42.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/random/tsconfig.json WatchType: Type roots -Info 37 [16:01:43.000] Finishing updateGraphWorker: Project: /user/username/projects/myproject/random/tsconfig.json Version: 1 structureChanged: true structureIsReused:: Not Elapsed:: *ms -Info 38 [16:01:44.000] Project '/user/username/projects/myproject/random/tsconfig.json' (Configured) -Info 39 [16:01:45.000] Files (2) +Info 29 [00:01:35.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/random 1 undefined Config: /user/username/projects/myproject/random/tsconfig.json WatchType: Wild card directory +Info 30 [00:01:36.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/random 1 undefined Config: /user/username/projects/myproject/random/tsconfig.json WatchType: Wild card directory +Info 31 [00:01:37.000] Plugins were requested but not running in environment that supports 'require'. Nothing will be loaded +Info 32 [00:01:38.000] Starting updateGraphWorker: Project: /user/username/projects/myproject/random/tsconfig.json +Info 33 [00:01:39.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/random/node_modules/@types 1 undefined Project: /user/username/projects/myproject/random/tsconfig.json WatchType: Type roots +Info 34 [00:01:40.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/random/node_modules/@types 1 undefined Project: /user/username/projects/myproject/random/tsconfig.json WatchType: Type roots +Info 35 [00:01:41.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/random/tsconfig.json WatchType: Type roots +Info 36 [00:01:42.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/random/tsconfig.json WatchType: Type roots +Info 37 [00:01:43.000] Finishing updateGraphWorker: Project: /user/username/projects/myproject/random/tsconfig.json Version: 1 structureChanged: true structureIsReused:: Not Elapsed:: *ms +Info 38 [00:01:44.000] Project '/user/username/projects/myproject/random/tsconfig.json' (Configured) +Info 39 [00:01:45.000] Files (2) /a/lib/lib.d.ts /user/username/projects/myproject/random/random.ts @@ -327,20 +327,20 @@ Info 39 [16:01:45.000] Files (2) random.ts Matched by default include pattern '**/*' -Info 40 [16:01:46.000] ----------------------------------------------- -Info 41 [16:01:47.000] Project '/user/username/projects/myproject/dependency/tsconfig.json' (Configured) -Info 41 [16:01:48.000] Files (2) +Info 40 [00:01:46.000] ----------------------------------------------- +Info 41 [00:01:47.000] Project '/user/username/projects/myproject/dependency/tsconfig.json' (Configured) +Info 41 [00:01:48.000] Files (2) -Info 41 [16:01:49.000] ----------------------------------------------- -Info 41 [16:01:50.000] Project '/user/username/projects/myproject/random/tsconfig.json' (Configured) -Info 41 [16:01:51.000] Files (2) +Info 41 [00:01:49.000] ----------------------------------------------- +Info 41 [00:01:50.000] Project '/user/username/projects/myproject/random/tsconfig.json' (Configured) +Info 41 [00:01:51.000] Files (2) -Info 41 [16:01:52.000] ----------------------------------------------- -Info 41 [16:01:53.000] Open files: -Info 41 [16:01:54.000] FileName: /user/username/projects/myproject/dependency/FnS.ts ProjectRootPath: undefined -Info 41 [16:01:55.000] Projects: /user/username/projects/myproject/dependency/tsconfig.json -Info 41 [16:01:56.000] FileName: /user/username/projects/myproject/random/random.ts ProjectRootPath: undefined -Info 41 [16:01:57.000] Projects: /user/username/projects/myproject/random/tsconfig.json +Info 41 [00:01:52.000] ----------------------------------------------- +Info 41 [00:01:53.000] Open files: +Info 41 [00:01:54.000] FileName: /user/username/projects/myproject/dependency/FnS.ts ProjectRootPath: undefined +Info 41 [00:01:55.000] Projects: /user/username/projects/myproject/dependency/tsconfig.json +Info 41 [00:01:56.000] FileName: /user/username/projects/myproject/random/random.ts ProjectRootPath: undefined +Info 41 [00:01:57.000] Projects: /user/username/projects/myproject/random/tsconfig.json After request PolledWatches:: @@ -365,11 +365,11 @@ FsWatchesRecursive:: /user/username/projects/myproject/random: {} -Info 41 [16:01:58.000] response: +Info 41 [00:01:58.000] response: { "responseRequired": false } -Info 42 [16:01:59.000] request: +Info 42 [00:01:59.000] request: { "command": "rename", "arguments": { @@ -404,8 +404,8 @@ FsWatchesRecursive:: /user/username/projects/myproject/random: {} -Info 43 [16:02:00.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/decls/FnS.d.ts 500 undefined WatchType: Closed Script info -Info 44 [16:02:01.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/decls/FnS.d.ts.map 500 undefined WatchType: Closed Script info +Info 43 [00:02:00.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/decls/FnS.d.ts 500 undefined WatchType: Closed Script info +Info 44 [00:02:01.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/decls/FnS.d.ts.map 500 undefined WatchType: Closed Script info After request PolledWatches:: @@ -434,7 +434,7 @@ FsWatchesRecursive:: /user/username/projects/myproject/random: {} -Info 45 [16:02:02.000] response: +Info 45 [00:02:02.000] response: { "response": { "info": { @@ -482,12 +482,12 @@ Info 45 [16:02:02.000] response: }, "responseRequired": true } -Info 46 [16:02:04.000] FileWatcher:: Triggered with /user/username/projects/myproject/decls/FnS.d.ts.map 2:: WatchInfo: /user/username/projects/myproject/decls/FnS.d.ts.map 500 undefined WatchType: Closed Script info -Info 47 [16:02:05.000] FileWatcher:: Close:: WatchInfo: /user/username/projects/myproject/decls/FnS.d.ts.map 500 undefined WatchType: Closed Script info -Info 48 [16:02:06.000] Scheduled: /user/username/projects/myproject/dependency/tsconfig.json -Info 49 [16:02:07.000] Scheduled: *ensureProjectForOpenFiles* -Info 50 [16:02:08.000] Elapsed:: *ms FileWatcher:: Triggered with /user/username/projects/myproject/decls/FnS.d.ts.map 2:: WatchInfo: /user/username/projects/myproject/decls/FnS.d.ts.map 500 undefined WatchType: Closed Script info -Info 51 [16:02:09.000] request: +Info 46 [00:02:04.000] FileWatcher:: Triggered with /user/username/projects/myproject/decls/FnS.d.ts.map 2:: WatchInfo: /user/username/projects/myproject/decls/FnS.d.ts.map 500 undefined WatchType: Closed Script info +Info 47 [00:02:05.000] FileWatcher:: Close:: WatchInfo: /user/username/projects/myproject/decls/FnS.d.ts.map 500 undefined WatchType: Closed Script info +Info 48 [00:02:06.000] Scheduled: /user/username/projects/myproject/dependency/tsconfig.json +Info 49 [00:02:07.000] Scheduled: *ensureProjectForOpenFiles* +Info 50 [00:02:08.000] Elapsed:: *ms FileWatcher:: Triggered with /user/username/projects/myproject/decls/FnS.d.ts.map 2:: WatchInfo: /user/username/projects/myproject/decls/FnS.d.ts.map 500 undefined WatchType: Closed Script info +Info 51 [00:02:09.000] request: { "command": "rename", "arguments": { @@ -525,9 +525,9 @@ FsWatchesRecursive:: /user/username/projects/myproject/random: {} -Info 52 [16:02:10.000] Starting updateGraphWorker: Project: /user/username/projects/myproject/dependency/tsconfig.json -Info 53 [16:02:11.000] Finishing updateGraphWorker: Project: /user/username/projects/myproject/dependency/tsconfig.json Version: 2 structureChanged: false structureIsReused:: Not Elapsed:: *ms -Info 54 [16:02:12.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/decls/FnS.d.ts.map 2000 undefined WatchType: Missing source map file +Info 52 [00:02:10.000] Starting updateGraphWorker: Project: /user/username/projects/myproject/dependency/tsconfig.json +Info 53 [00:02:11.000] Finishing updateGraphWorker: Project: /user/username/projects/myproject/dependency/tsconfig.json Version: 2 structureChanged: false structureIsReused:: Not Elapsed:: *ms +Info 54 [00:02:12.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/decls/FnS.d.ts.map 2000 undefined WatchType: Missing source map file After request PolledWatches:: @@ -556,7 +556,7 @@ FsWatchesRecursive:: /user/username/projects/myproject/random: {} -Info 55 [16:02:13.000] response: +Info 55 [00:02:13.000] response: { "response": { "info": { @@ -604,7 +604,7 @@ Info 55 [16:02:13.000] response: }, "responseRequired": true } -Info 56 [16:02:14.000] request: +Info 56 [00:02:14.000] request: { "command": "rename", "arguments": { @@ -671,7 +671,7 @@ FsWatchesRecursive:: /user/username/projects/myproject/random: {} -Info 57 [16:02:15.000] response: +Info 57 [00:02:15.000] response: { "response": { "info": { @@ -719,7 +719,7 @@ Info 57 [16:02:15.000] response: }, "responseRequired": true } -Info 58 [16:02:16.000] request: +Info 58 [00:02:16.000] request: { "command": "rename", "arguments": { @@ -786,7 +786,7 @@ FsWatchesRecursive:: /user/username/projects/myproject/random: {} -Info 59 [16:02:17.000] response: +Info 59 [00:02:17.000] response: { "response": { "info": { @@ -834,7 +834,7 @@ Info 59 [16:02:17.000] response: }, "responseRequired": true } -Info 60 [16:02:18.000] request: +Info 60 [00:02:18.000] request: { "command": "rename", "arguments": { @@ -901,7 +901,7 @@ FsWatchesRecursive:: /user/username/projects/myproject/random: {} -Info 61 [16:02:19.000] response: +Info 61 [00:02:19.000] response: { "response": { "info": { @@ -949,7 +949,7 @@ Info 61 [16:02:19.000] response: }, "responseRequired": true } -Info 62 [16:02:20.000] request: +Info 62 [00:02:20.000] request: { "command": "rename", "arguments": { @@ -1016,7 +1016,7 @@ FsWatchesRecursive:: /user/username/projects/myproject/random: {} -Info 63 [16:02:21.000] response: +Info 63 [00:02:21.000] response: { "response": { "info": { @@ -1064,7 +1064,7 @@ Info 63 [16:02:21.000] response: }, "responseRequired": true } -Info 64 [16:02:22.000] request: +Info 64 [00:02:22.000] request: { "seq": 0, "type": "request", @@ -1101,18 +1101,18 @@ FsWatchesRecursive:: /user/username/projects/myproject/random: {} -Info 65 [16:02:23.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/random/random.ts 500 undefined WatchType: Closed Script info -Info 66 [16:02:24.000] Project '/user/username/projects/myproject/dependency/tsconfig.json' (Configured) -Info 66 [16:02:25.000] Files (2) +Info 65 [00:02:23.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/random/random.ts 500 undefined WatchType: Closed Script info +Info 66 [00:02:24.000] Project '/user/username/projects/myproject/dependency/tsconfig.json' (Configured) +Info 66 [00:02:25.000] Files (2) -Info 66 [16:02:26.000] ----------------------------------------------- -Info 66 [16:02:27.000] Project '/user/username/projects/myproject/random/tsconfig.json' (Configured) -Info 66 [16:02:28.000] Files (2) +Info 66 [00:02:26.000] ----------------------------------------------- +Info 66 [00:02:27.000] Project '/user/username/projects/myproject/random/tsconfig.json' (Configured) +Info 66 [00:02:28.000] Files (2) -Info 66 [16:02:29.000] ----------------------------------------------- -Info 66 [16:02:30.000] Open files: -Info 66 [16:02:31.000] FileName: /user/username/projects/myproject/dependency/FnS.ts ProjectRootPath: undefined -Info 66 [16:02:32.000] Projects: /user/username/projects/myproject/dependency/tsconfig.json +Info 66 [00:02:29.000] ----------------------------------------------- +Info 66 [00:02:30.000] Open files: +Info 66 [00:02:31.000] FileName: /user/username/projects/myproject/dependency/FnS.ts ProjectRootPath: undefined +Info 66 [00:02:32.000] Projects: /user/username/projects/myproject/dependency/tsconfig.json After request PolledWatches:: @@ -1143,11 +1143,11 @@ FsWatchesRecursive:: /user/username/projects/myproject/random: {} -Info 66 [16:02:33.000] response: +Info 66 [00:02:33.000] response: { "responseRequired": false } -Info 67 [16:02:34.000] request: +Info 67 [00:02:34.000] request: { "seq": 0, "type": "request", @@ -1186,22 +1186,22 @@ FsWatchesRecursive:: /user/username/projects/myproject/random: {} -Info 68 [16:02:35.000] FileWatcher:: Close:: WatchInfo: /user/username/projects/myproject/random/random.ts 500 undefined WatchType: Closed Script info -Info 69 [16:02:36.000] Search path: /user/username/projects/myproject/random -Info 70 [16:02:37.000] For info: /user/username/projects/myproject/random/random.ts :: Config file name: /user/username/projects/myproject/random/tsconfig.json -Info 71 [16:02:38.000] Project '/user/username/projects/myproject/dependency/tsconfig.json' (Configured) -Info 71 [16:02:39.000] Files (2) +Info 68 [00:02:35.000] FileWatcher:: Close:: WatchInfo: /user/username/projects/myproject/random/random.ts 500 undefined WatchType: Closed Script info +Info 69 [00:02:36.000] Search path: /user/username/projects/myproject/random +Info 70 [00:02:37.000] For info: /user/username/projects/myproject/random/random.ts :: Config file name: /user/username/projects/myproject/random/tsconfig.json +Info 71 [00:02:38.000] Project '/user/username/projects/myproject/dependency/tsconfig.json' (Configured) +Info 71 [00:02:39.000] Files (2) -Info 71 [16:02:40.000] ----------------------------------------------- -Info 71 [16:02:41.000] Project '/user/username/projects/myproject/random/tsconfig.json' (Configured) -Info 71 [16:02:42.000] Files (2) +Info 71 [00:02:40.000] ----------------------------------------------- +Info 71 [00:02:41.000] Project '/user/username/projects/myproject/random/tsconfig.json' (Configured) +Info 71 [00:02:42.000] Files (2) -Info 71 [16:02:43.000] ----------------------------------------------- -Info 71 [16:02:44.000] Open files: -Info 71 [16:02:45.000] FileName: /user/username/projects/myproject/dependency/FnS.ts ProjectRootPath: undefined -Info 71 [16:02:46.000] Projects: /user/username/projects/myproject/dependency/tsconfig.json -Info 71 [16:02:47.000] FileName: /user/username/projects/myproject/random/random.ts ProjectRootPath: undefined -Info 71 [16:02:48.000] Projects: /user/username/projects/myproject/random/tsconfig.json +Info 71 [00:02:43.000] ----------------------------------------------- +Info 71 [00:02:44.000] Open files: +Info 71 [00:02:45.000] FileName: /user/username/projects/myproject/dependency/FnS.ts ProjectRootPath: undefined +Info 71 [00:02:46.000] Projects: /user/username/projects/myproject/dependency/tsconfig.json +Info 71 [00:02:47.000] FileName: /user/username/projects/myproject/random/random.ts ProjectRootPath: undefined +Info 71 [00:02:48.000] Projects: /user/username/projects/myproject/random/tsconfig.json After request PolledWatches:: @@ -1230,11 +1230,11 @@ FsWatchesRecursive:: /user/username/projects/myproject/random: {} -Info 71 [16:02:49.000] response: +Info 71 [00:02:49.000] response: { "responseRequired": false } -Info 72 [16:02:50.000] request: +Info 72 [00:02:50.000] request: { "seq": 0, "type": "request", @@ -1271,18 +1271,18 @@ FsWatchesRecursive:: /user/username/projects/myproject/random: {} -Info 73 [16:02:51.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/dependency/FnS.ts 500 undefined WatchType: Closed Script info -Info 74 [16:02:52.000] Project '/user/username/projects/myproject/dependency/tsconfig.json' (Configured) -Info 74 [16:02:53.000] Files (2) +Info 73 [00:02:51.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/dependency/FnS.ts 500 undefined WatchType: Closed Script info +Info 74 [00:02:52.000] Project '/user/username/projects/myproject/dependency/tsconfig.json' (Configured) +Info 74 [00:02:53.000] Files (2) -Info 74 [16:02:54.000] ----------------------------------------------- -Info 74 [16:02:55.000] Project '/user/username/projects/myproject/random/tsconfig.json' (Configured) -Info 74 [16:02:56.000] Files (2) +Info 74 [00:02:54.000] ----------------------------------------------- +Info 74 [00:02:55.000] Project '/user/username/projects/myproject/random/tsconfig.json' (Configured) +Info 74 [00:02:56.000] Files (2) -Info 74 [16:02:57.000] ----------------------------------------------- -Info 74 [16:02:58.000] Open files: -Info 74 [16:02:59.000] FileName: /user/username/projects/myproject/random/random.ts ProjectRootPath: undefined -Info 74 [16:03:00.000] Projects: /user/username/projects/myproject/random/tsconfig.json +Info 74 [00:02:57.000] ----------------------------------------------- +Info 74 [00:02:58.000] Open files: +Info 74 [00:02:59.000] FileName: /user/username/projects/myproject/random/random.ts ProjectRootPath: undefined +Info 74 [00:03:00.000] Projects: /user/username/projects/myproject/random/tsconfig.json After request PolledWatches:: @@ -1313,11 +1313,11 @@ FsWatchesRecursive:: /user/username/projects/myproject/random: {} -Info 74 [16:03:01.000] response: +Info 74 [00:03:01.000] response: { "responseRequired": false } -Info 75 [16:03:02.000] request: +Info 75 [00:03:02.000] request: { "seq": 0, "type": "request", @@ -1356,16 +1356,16 @@ FsWatchesRecursive:: /user/username/projects/myproject/random: {} -Info 76 [16:03:03.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/random/random.ts 500 undefined WatchType: Closed Script info -Info 77 [16:03:04.000] Project '/user/username/projects/myproject/dependency/tsconfig.json' (Configured) -Info 77 [16:03:05.000] Files (2) +Info 76 [00:03:03.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/random/random.ts 500 undefined WatchType: Closed Script info +Info 77 [00:03:04.000] Project '/user/username/projects/myproject/dependency/tsconfig.json' (Configured) +Info 77 [00:03:05.000] Files (2) -Info 77 [16:03:06.000] ----------------------------------------------- -Info 77 [16:03:07.000] Project '/user/username/projects/myproject/random/tsconfig.json' (Configured) -Info 77 [16:03:08.000] Files (2) +Info 77 [00:03:06.000] ----------------------------------------------- +Info 77 [00:03:07.000] Project '/user/username/projects/myproject/random/tsconfig.json' (Configured) +Info 77 [00:03:08.000] Files (2) -Info 77 [16:03:09.000] ----------------------------------------------- -Info 77 [16:03:10.000] Open files: +Info 77 [00:03:09.000] ----------------------------------------------- +Info 77 [00:03:10.000] Open files: After request PolledWatches:: @@ -1398,11 +1398,11 @@ FsWatchesRecursive:: /user/username/projects/myproject/random: {} -Info 77 [16:03:11.000] response: +Info 77 [00:03:11.000] response: { "responseRequired": false } -Info 78 [16:03:12.000] request: +Info 78 [00:03:12.000] request: { "seq": 0, "type": "request", @@ -1443,12 +1443,12 @@ FsWatchesRecursive:: /user/username/projects/myproject/random: {} -Info 79 [16:03:13.000] FileWatcher:: Close:: WatchInfo: /user/username/projects/myproject/random/random.ts 500 undefined WatchType: Closed Script info -Info 80 [16:03:14.000] Search path: /user/username/projects/myproject/random -Info 81 [16:03:15.000] For info: /user/username/projects/myproject/random/random.ts :: Config file name: /user/username/projects/myproject/random/tsconfig.json -Info 82 [16:03:16.000] `remove Project:: -Info 83 [16:03:17.000] Project '/user/username/projects/myproject/dependency/tsconfig.json' (Configured) -Info 84 [16:03:18.000] Files (2) +Info 79 [00:03:13.000] FileWatcher:: Close:: WatchInfo: /user/username/projects/myproject/random/random.ts 500 undefined WatchType: Closed Script info +Info 80 [00:03:14.000] Search path: /user/username/projects/myproject/random +Info 81 [00:03:15.000] For info: /user/username/projects/myproject/random/random.ts :: Config file name: /user/username/projects/myproject/random/tsconfig.json +Info 82 [00:03:16.000] `remove Project:: +Info 83 [00:03:17.000] Project '/user/username/projects/myproject/dependency/tsconfig.json' (Configured) +Info 84 [00:03:18.000] Files (2) /a/lib/lib.d.ts /user/username/projects/myproject/dependency/FnS.ts @@ -1458,24 +1458,24 @@ Info 84 [16:03:18.000] Files (2) FnS.ts Matched by default include pattern '**/*' -Info 85 [16:03:19.000] ----------------------------------------------- -Info 86 [16:03:20.000] DirectoryWatcher:: Close:: WatchInfo: /user/username/projects/myproject/dependency 1 undefined Config: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Wild card directory -Info 87 [16:03:21.000] 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 88 [16:03:22.000] FileWatcher:: Close:: WatchInfo: /user/username/projects/myproject/dependency/tsconfig.json 2000 undefined Project: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Config file -Info 89 [16:03:23.000] 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 90 [16:03:24.000] 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 91 [16:03:25.000] DirectoryWatcher:: Close:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Type roots -Info 92 [16:03:26.000] 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 93 [16:03:27.000] FileWatcher:: Close:: WatchInfo: /user/username/projects/myproject/dependency/FnS.ts 500 undefined WatchType: Closed Script info -Info 94 [16:03:28.000] FileWatcher:: Close:: WatchInfo: /user/username/projects/myproject/decls/FnS.d.ts 500 undefined WatchType: Closed Script info -Info 95 [16:03:29.000] FileWatcher:: Close:: WatchInfo: /user/username/projects/myproject/decls/FnS.d.ts.map 2000 undefined WatchType: Missing source map file -Info 96 [16:03:30.000] Project '/user/username/projects/myproject/random/tsconfig.json' (Configured) -Info 96 [16:03:31.000] Files (2) - -Info 96 [16:03:32.000] ----------------------------------------------- -Info 96 [16:03:33.000] Open files: -Info 96 [16:03:34.000] FileName: /user/username/projects/myproject/random/random.ts ProjectRootPath: undefined -Info 96 [16:03:35.000] Projects: /user/username/projects/myproject/random/tsconfig.json +Info 85 [00:03:19.000] ----------------------------------------------- +Info 86 [00:03:20.000] DirectoryWatcher:: Close:: WatchInfo: /user/username/projects/myproject/dependency 1 undefined Config: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Wild card directory +Info 87 [00:03:21.000] 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 88 [00:03:22.000] FileWatcher:: Close:: WatchInfo: /user/username/projects/myproject/dependency/tsconfig.json 2000 undefined Project: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Config file +Info 89 [00:03:23.000] 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 90 [00:03:24.000] 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 91 [00:03:25.000] DirectoryWatcher:: Close:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Type roots +Info 92 [00:03:26.000] 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 93 [00:03:27.000] FileWatcher:: Close:: WatchInfo: /user/username/projects/myproject/dependency/FnS.ts 500 undefined WatchType: Closed Script info +Info 94 [00:03:28.000] FileWatcher:: Close:: WatchInfo: /user/username/projects/myproject/decls/FnS.d.ts 500 undefined WatchType: Closed Script info +Info 95 [00:03:29.000] FileWatcher:: Close:: WatchInfo: /user/username/projects/myproject/decls/FnS.d.ts.map 2000 undefined WatchType: Missing source map file +Info 96 [00:03:30.000] Project '/user/username/projects/myproject/random/tsconfig.json' (Configured) +Info 96 [00:03:31.000] Files (2) + +Info 96 [00:03:32.000] ----------------------------------------------- +Info 96 [00:03:33.000] Open files: +Info 96 [00:03:34.000] FileName: /user/username/projects/myproject/random/random.ts ProjectRootPath: undefined +Info 96 [00:03:35.000] Projects: /user/username/projects/myproject/random/tsconfig.json After request PolledWatches:: @@ -1494,7 +1494,7 @@ FsWatchesRecursive:: /user/username/projects/myproject/random: {} -Info 96 [16:03:36.000] response: +Info 96 [00:03:36.000] response: { "responseRequired": false } \ No newline at end of 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 81745fd6e0fc6..9248d3fbc30f0 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 @@ -1,5 +1,5 @@ -Info 0 [16:01:01.000] Provided types map file "/a/lib/typesMap.json" doesn't exist -Info 1 [16:01:02.000] request: +Info 0 [00:01:01.000] Provided types map file "/a/lib/typesMap.json" doesn't exist +Info 1 [00:01:02.000] request: { "seq": 0, "type": "request", @@ -197,11 +197,11 @@ FsWatches:: FsWatchesRecursive:: -Info 2 [16:01:03.000] Search path: /user/username/projects/myproject/dependency -Info 3 [16:01:04.000] For info: /user/username/projects/myproject/dependency/FnS.ts :: Config file name: /user/username/projects/myproject/dependency/tsconfig.json -Info 4 [16:01:05.000] Creating configuration project /user/username/projects/myproject/dependency/tsconfig.json -Info 5 [16:01:06.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/dependency/tsconfig.json 2000 undefined Project: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Config file -Info 6 [16:01:07.000] Config: /user/username/projects/myproject/dependency/tsconfig.json : { +Info 2 [00:01:03.000] Search path: /user/username/projects/myproject/dependency +Info 3 [00:01:04.000] For info: /user/username/projects/myproject/dependency/FnS.ts :: Config file name: /user/username/projects/myproject/dependency/tsconfig.json +Info 4 [00:01:05.000] Creating configuration project /user/username/projects/myproject/dependency/tsconfig.json +Info 5 [00:01:06.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/dependency/tsconfig.json 2000 undefined Project: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Config file +Info 6 [00:01:07.000] Config: /user/username/projects/myproject/dependency/tsconfig.json : { "rootNames": [ "/user/username/projects/myproject/dependency/FnS.ts" ], @@ -212,18 +212,18 @@ Info 6 [16:01:07.000] Config: /user/username/projects/myproject/dependency/ts "configFilePath": "/user/username/projects/myproject/dependency/tsconfig.json" } } -Info 7 [16:01:08.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/dependency 1 undefined Config: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Wild card directory -Info 8 [16:01:09.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/dependency 1 undefined Config: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Wild card directory -Info 9 [16:01:10.000] Plugins were requested but not running in environment that supports 'require'. Nothing will be loaded -Info 10 [16:01:11.000] Starting updateGraphWorker: Project: /user/username/projects/myproject/dependency/tsconfig.json -Info 11 [16:01:12.000] FileWatcher:: Added:: WatchInfo: /a/lib/lib.d.ts 500 undefined WatchType: Closed Script info -Info 12 [16:01:13.000] 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 13 [16:01:14.000] 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 14 [16:01:15.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Type roots -Info 15 [16:01:16.000] 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 16 [16:01:17.000] Finishing updateGraphWorker: Project: /user/username/projects/myproject/dependency/tsconfig.json Version: 1 structureChanged: true structureIsReused:: Not Elapsed:: *ms -Info 17 [16:01:18.000] Project '/user/username/projects/myproject/dependency/tsconfig.json' (Configured) -Info 18 [16:01:19.000] Files (2) +Info 7 [00:01:08.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/dependency 1 undefined Config: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Wild card directory +Info 8 [00:01:09.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/dependency 1 undefined Config: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Wild card directory +Info 9 [00:01:10.000] Plugins were requested but not running in environment that supports 'require'. Nothing will be loaded +Info 10 [00:01:11.000] Starting updateGraphWorker: Project: /user/username/projects/myproject/dependency/tsconfig.json +Info 11 [00:01:12.000] FileWatcher:: Added:: WatchInfo: /a/lib/lib.d.ts 500 undefined WatchType: Closed Script info +Info 12 [00:01:13.000] 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 13 [00:01:14.000] 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 14 [00:01:15.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Type roots +Info 15 [00:01:16.000] 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 16 [00:01:17.000] Finishing updateGraphWorker: Project: /user/username/projects/myproject/dependency/tsconfig.json Version: 1 structureChanged: true structureIsReused:: Not Elapsed:: *ms +Info 17 [00:01:18.000] Project '/user/username/projects/myproject/dependency/tsconfig.json' (Configured) +Info 18 [00:01:19.000] Files (2) /a/lib/lib.d.ts /user/username/projects/myproject/dependency/FnS.ts @@ -233,16 +233,16 @@ Info 18 [16:01:19.000] Files (2) FnS.ts Matched by default include pattern '**/*' -Info 19 [16:01:20.000] ----------------------------------------------- -Info 20 [16:01:21.000] Search path: /user/username/projects/myproject/dependency -Info 21 [16:01:22.000] For info: /user/username/projects/myproject/dependency/tsconfig.json :: No config files found. -Info 22 [16:01:23.000] Project '/user/username/projects/myproject/dependency/tsconfig.json' (Configured) -Info 22 [16:01:24.000] Files (2) +Info 19 [00:01:20.000] ----------------------------------------------- +Info 20 [00:01:21.000] Search path: /user/username/projects/myproject/dependency +Info 21 [00:01:22.000] For info: /user/username/projects/myproject/dependency/tsconfig.json :: No config files found. +Info 22 [00:01:23.000] Project '/user/username/projects/myproject/dependency/tsconfig.json' (Configured) +Info 22 [00:01:24.000] Files (2) -Info 22 [16:01:25.000] ----------------------------------------------- -Info 22 [16:01:26.000] Open files: -Info 22 [16:01:27.000] FileName: /user/username/projects/myproject/dependency/FnS.ts ProjectRootPath: undefined -Info 22 [16:01:28.000] Projects: /user/username/projects/myproject/dependency/tsconfig.json +Info 22 [00:01:25.000] ----------------------------------------------- +Info 22 [00:01:26.000] Open files: +Info 22 [00:01:27.000] FileName: /user/username/projects/myproject/dependency/FnS.ts ProjectRootPath: undefined +Info 22 [00:01:28.000] Projects: /user/username/projects/myproject/dependency/tsconfig.json After request PolledWatches:: @@ -261,11 +261,11 @@ FsWatchesRecursive:: /user/username/projects/myproject/dependency: {} -Info 22 [16:01:29.000] response: +Info 22 [00:01:29.000] response: { "responseRequired": false } -Info 23 [16:01:30.000] request: +Info 23 [00:01:30.000] request: { "seq": 0, "type": "request", @@ -292,11 +292,11 @@ FsWatchesRecursive:: /user/username/projects/myproject/dependency: {} -Info 24 [16:01:31.000] Search path: /user/username/projects/myproject/random -Info 25 [16:01:32.000] For info: /user/username/projects/myproject/random/random.ts :: Config file name: /user/username/projects/myproject/random/tsconfig.json -Info 26 [16:01:33.000] Creating configuration project /user/username/projects/myproject/random/tsconfig.json -Info 27 [16:01:34.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/random/tsconfig.json 2000 undefined Project: /user/username/projects/myproject/random/tsconfig.json WatchType: Config file -Info 28 [16:01:35.000] Config: /user/username/projects/myproject/random/tsconfig.json : { +Info 24 [00:01:31.000] Search path: /user/username/projects/myproject/random +Info 25 [00:01:32.000] For info: /user/username/projects/myproject/random/random.ts :: Config file name: /user/username/projects/myproject/random/tsconfig.json +Info 26 [00:01:33.000] Creating configuration project /user/username/projects/myproject/random/tsconfig.json +Info 27 [00:01:34.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/random/tsconfig.json 2000 undefined Project: /user/username/projects/myproject/random/tsconfig.json WatchType: Config file +Info 28 [00:01:35.000] Config: /user/username/projects/myproject/random/tsconfig.json : { "rootNames": [ "/user/username/projects/myproject/random/random.ts" ], @@ -304,17 +304,17 @@ Info 28 [16:01:35.000] Config: /user/username/projects/myproject/random/tsconf "configFilePath": "/user/username/projects/myproject/random/tsconfig.json" } } -Info 29 [16:01:36.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/random 1 undefined Config: /user/username/projects/myproject/random/tsconfig.json WatchType: Wild card directory -Info 30 [16:01:37.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/random 1 undefined Config: /user/username/projects/myproject/random/tsconfig.json WatchType: Wild card directory -Info 31 [16:01:38.000] Plugins were requested but not running in environment that supports 'require'. Nothing will be loaded -Info 32 [16:01:39.000] Starting updateGraphWorker: Project: /user/username/projects/myproject/random/tsconfig.json -Info 33 [16:01:40.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/random/node_modules/@types 1 undefined Project: /user/username/projects/myproject/random/tsconfig.json WatchType: Type roots -Info 34 [16:01:41.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/random/node_modules/@types 1 undefined Project: /user/username/projects/myproject/random/tsconfig.json WatchType: Type roots -Info 35 [16:01:42.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/random/tsconfig.json WatchType: Type roots -Info 36 [16:01:43.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/random/tsconfig.json WatchType: Type roots -Info 37 [16:01:44.000] Finishing updateGraphWorker: Project: /user/username/projects/myproject/random/tsconfig.json Version: 1 structureChanged: true structureIsReused:: Not Elapsed:: *ms -Info 38 [16:01:45.000] Project '/user/username/projects/myproject/random/tsconfig.json' (Configured) -Info 39 [16:01:46.000] Files (2) +Info 29 [00:01:36.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/random 1 undefined Config: /user/username/projects/myproject/random/tsconfig.json WatchType: Wild card directory +Info 30 [00:01:37.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/random 1 undefined Config: /user/username/projects/myproject/random/tsconfig.json WatchType: Wild card directory +Info 31 [00:01:38.000] Plugins were requested but not running in environment that supports 'require'. Nothing will be loaded +Info 32 [00:01:39.000] Starting updateGraphWorker: Project: /user/username/projects/myproject/random/tsconfig.json +Info 33 [00:01:40.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/random/node_modules/@types 1 undefined Project: /user/username/projects/myproject/random/tsconfig.json WatchType: Type roots +Info 34 [00:01:41.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/random/node_modules/@types 1 undefined Project: /user/username/projects/myproject/random/tsconfig.json WatchType: Type roots +Info 35 [00:01:42.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/random/tsconfig.json WatchType: Type roots +Info 36 [00:01:43.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/random/tsconfig.json WatchType: Type roots +Info 37 [00:01:44.000] Finishing updateGraphWorker: Project: /user/username/projects/myproject/random/tsconfig.json Version: 1 structureChanged: true structureIsReused:: Not Elapsed:: *ms +Info 38 [00:01:45.000] Project '/user/username/projects/myproject/random/tsconfig.json' (Configured) +Info 39 [00:01:46.000] Files (2) /a/lib/lib.d.ts /user/username/projects/myproject/random/random.ts @@ -324,20 +324,20 @@ Info 39 [16:01:46.000] Files (2) random.ts Matched by default include pattern '**/*' -Info 40 [16:01:47.000] ----------------------------------------------- -Info 41 [16:01:48.000] Project '/user/username/projects/myproject/dependency/tsconfig.json' (Configured) -Info 41 [16:01:49.000] Files (2) +Info 40 [00:01:47.000] ----------------------------------------------- +Info 41 [00:01:48.000] Project '/user/username/projects/myproject/dependency/tsconfig.json' (Configured) +Info 41 [00:01:49.000] Files (2) -Info 41 [16:01:50.000] ----------------------------------------------- -Info 41 [16:01:51.000] Project '/user/username/projects/myproject/random/tsconfig.json' (Configured) -Info 41 [16:01:52.000] Files (2) +Info 41 [00:01:50.000] ----------------------------------------------- +Info 41 [00:01:51.000] Project '/user/username/projects/myproject/random/tsconfig.json' (Configured) +Info 41 [00:01:52.000] Files (2) -Info 41 [16:01:53.000] ----------------------------------------------- -Info 41 [16:01:54.000] Open files: -Info 41 [16:01:55.000] FileName: /user/username/projects/myproject/dependency/FnS.ts ProjectRootPath: undefined -Info 41 [16:01:56.000] Projects: /user/username/projects/myproject/dependency/tsconfig.json -Info 41 [16:01:57.000] FileName: /user/username/projects/myproject/random/random.ts ProjectRootPath: undefined -Info 41 [16:01:58.000] Projects: /user/username/projects/myproject/random/tsconfig.json +Info 41 [00:01:53.000] ----------------------------------------------- +Info 41 [00:01:54.000] Open files: +Info 41 [00:01:55.000] FileName: /user/username/projects/myproject/dependency/FnS.ts ProjectRootPath: undefined +Info 41 [00:01:56.000] Projects: /user/username/projects/myproject/dependency/tsconfig.json +Info 41 [00:01:57.000] FileName: /user/username/projects/myproject/random/random.ts ProjectRootPath: undefined +Info 41 [00:01:58.000] Projects: /user/username/projects/myproject/random/tsconfig.json After request PolledWatches:: @@ -362,11 +362,11 @@ FsWatchesRecursive:: /user/username/projects/myproject/random: {} -Info 41 [16:01:59.000] response: +Info 41 [00:01:59.000] response: { "responseRequired": false } -Info 42 [16:02:00.000] request: +Info 42 [00:02:00.000] request: { "command": "rename", "arguments": { @@ -401,8 +401,8 @@ FsWatchesRecursive:: /user/username/projects/myproject/random: {} -Info 43 [16:02:01.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/decls/FnS.d.ts 500 undefined WatchType: Closed Script info -Info 44 [16:02:02.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/decls/FnS.d.ts.map 2000 undefined WatchType: Missing source map file +Info 43 [00:02:01.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/decls/FnS.d.ts 500 undefined WatchType: Closed Script info +Info 44 [00:02:02.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/decls/FnS.d.ts.map 2000 undefined WatchType: Missing source map file After request PolledWatches:: @@ -431,7 +431,7 @@ FsWatchesRecursive:: /user/username/projects/myproject/random: {} -Info 45 [16:02:03.000] response: +Info 45 [00:02:03.000] response: { "response": { "info": { @@ -479,7 +479,7 @@ Info 45 [16:02:03.000] response: }, "responseRequired": true } -Info 46 [16:02:04.000] request: +Info 46 [00:02:04.000] request: { "command": "rename", "arguments": { @@ -546,7 +546,7 @@ FsWatchesRecursive:: /user/username/projects/myproject/random: {} -Info 47 [16:02:05.000] response: +Info 47 [00:02:05.000] response: { "response": { "info": { @@ -594,7 +594,7 @@ Info 47 [16:02:05.000] response: }, "responseRequired": true } -Info 48 [16:02:06.000] request: +Info 48 [00:02:06.000] request: { "command": "rename", "arguments": { @@ -661,7 +661,7 @@ FsWatchesRecursive:: /user/username/projects/myproject/random: {} -Info 49 [16:02:07.000] response: +Info 49 [00:02:07.000] response: { "response": { "info": { @@ -709,7 +709,7 @@ Info 49 [16:02:07.000] response: }, "responseRequired": true } -Info 50 [16:02:08.000] request: +Info 50 [00:02:08.000] request: { "command": "rename", "arguments": { @@ -776,7 +776,7 @@ FsWatchesRecursive:: /user/username/projects/myproject/random: {} -Info 51 [16:02:09.000] response: +Info 51 [00:02:09.000] response: { "response": { "info": { @@ -824,7 +824,7 @@ Info 51 [16:02:09.000] response: }, "responseRequired": true } -Info 52 [16:02:10.000] request: +Info 52 [00:02:10.000] request: { "command": "rename", "arguments": { @@ -891,7 +891,7 @@ FsWatchesRecursive:: /user/username/projects/myproject/random: {} -Info 53 [16:02:11.000] response: +Info 53 [00:02:11.000] response: { "response": { "info": { @@ -939,7 +939,7 @@ Info 53 [16:02:11.000] response: }, "responseRequired": true } -Info 54 [16:02:12.000] request: +Info 54 [00:02:12.000] request: { "seq": 0, "type": "request", @@ -976,18 +976,18 @@ FsWatchesRecursive:: /user/username/projects/myproject/random: {} -Info 55 [16:02:13.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/random/random.ts 500 undefined WatchType: Closed Script info -Info 56 [16:02:14.000] Project '/user/username/projects/myproject/dependency/tsconfig.json' (Configured) -Info 56 [16:02:15.000] Files (2) +Info 55 [00:02:13.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/random/random.ts 500 undefined WatchType: Closed Script info +Info 56 [00:02:14.000] Project '/user/username/projects/myproject/dependency/tsconfig.json' (Configured) +Info 56 [00:02:15.000] Files (2) -Info 56 [16:02:16.000] ----------------------------------------------- -Info 56 [16:02:17.000] Project '/user/username/projects/myproject/random/tsconfig.json' (Configured) -Info 56 [16:02:18.000] Files (2) +Info 56 [00:02:16.000] ----------------------------------------------- +Info 56 [00:02:17.000] Project '/user/username/projects/myproject/random/tsconfig.json' (Configured) +Info 56 [00:02:18.000] Files (2) -Info 56 [16:02:19.000] ----------------------------------------------- -Info 56 [16:02:20.000] Open files: -Info 56 [16:02:21.000] FileName: /user/username/projects/myproject/dependency/FnS.ts ProjectRootPath: undefined -Info 56 [16:02:22.000] Projects: /user/username/projects/myproject/dependency/tsconfig.json +Info 56 [00:02:19.000] ----------------------------------------------- +Info 56 [00:02:20.000] Open files: +Info 56 [00:02:21.000] FileName: /user/username/projects/myproject/dependency/FnS.ts ProjectRootPath: undefined +Info 56 [00:02:22.000] Projects: /user/username/projects/myproject/dependency/tsconfig.json After request PolledWatches:: @@ -1018,11 +1018,11 @@ FsWatchesRecursive:: /user/username/projects/myproject/random: {} -Info 56 [16:02:23.000] response: +Info 56 [00:02:23.000] response: { "responseRequired": false } -Info 57 [16:02:24.000] request: +Info 57 [00:02:24.000] request: { "seq": 0, "type": "request", @@ -1061,22 +1061,22 @@ FsWatchesRecursive:: /user/username/projects/myproject/random: {} -Info 58 [16:02:25.000] FileWatcher:: Close:: WatchInfo: /user/username/projects/myproject/random/random.ts 500 undefined WatchType: Closed Script info -Info 59 [16:02:26.000] Search path: /user/username/projects/myproject/random -Info 60 [16:02:27.000] For info: /user/username/projects/myproject/random/random.ts :: Config file name: /user/username/projects/myproject/random/tsconfig.json -Info 61 [16:02:28.000] Project '/user/username/projects/myproject/dependency/tsconfig.json' (Configured) -Info 61 [16:02:29.000] Files (2) +Info 58 [00:02:25.000] FileWatcher:: Close:: WatchInfo: /user/username/projects/myproject/random/random.ts 500 undefined WatchType: Closed Script info +Info 59 [00:02:26.000] Search path: /user/username/projects/myproject/random +Info 60 [00:02:27.000] For info: /user/username/projects/myproject/random/random.ts :: Config file name: /user/username/projects/myproject/random/tsconfig.json +Info 61 [00:02:28.000] Project '/user/username/projects/myproject/dependency/tsconfig.json' (Configured) +Info 61 [00:02:29.000] Files (2) -Info 61 [16:02:30.000] ----------------------------------------------- -Info 61 [16:02:31.000] Project '/user/username/projects/myproject/random/tsconfig.json' (Configured) -Info 61 [16:02:32.000] Files (2) +Info 61 [00:02:30.000] ----------------------------------------------- +Info 61 [00:02:31.000] Project '/user/username/projects/myproject/random/tsconfig.json' (Configured) +Info 61 [00:02:32.000] Files (2) -Info 61 [16:02:33.000] ----------------------------------------------- -Info 61 [16:02:34.000] Open files: -Info 61 [16:02:35.000] FileName: /user/username/projects/myproject/dependency/FnS.ts ProjectRootPath: undefined -Info 61 [16:02:36.000] Projects: /user/username/projects/myproject/dependency/tsconfig.json -Info 61 [16:02:37.000] FileName: /user/username/projects/myproject/random/random.ts ProjectRootPath: undefined -Info 61 [16:02:38.000] Projects: /user/username/projects/myproject/random/tsconfig.json +Info 61 [00:02:33.000] ----------------------------------------------- +Info 61 [00:02:34.000] Open files: +Info 61 [00:02:35.000] FileName: /user/username/projects/myproject/dependency/FnS.ts ProjectRootPath: undefined +Info 61 [00:02:36.000] Projects: /user/username/projects/myproject/dependency/tsconfig.json +Info 61 [00:02:37.000] FileName: /user/username/projects/myproject/random/random.ts ProjectRootPath: undefined +Info 61 [00:02:38.000] Projects: /user/username/projects/myproject/random/tsconfig.json After request PolledWatches:: @@ -1105,11 +1105,11 @@ FsWatchesRecursive:: /user/username/projects/myproject/random: {} -Info 61 [16:02:39.000] response: +Info 61 [00:02:39.000] response: { "responseRequired": false } -Info 62 [16:02:40.000] request: +Info 62 [00:02:40.000] request: { "seq": 0, "type": "request", @@ -1146,18 +1146,18 @@ FsWatchesRecursive:: /user/username/projects/myproject/random: {} -Info 63 [16:02:41.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/dependency/FnS.ts 500 undefined WatchType: Closed Script info -Info 64 [16:02:42.000] Project '/user/username/projects/myproject/dependency/tsconfig.json' (Configured) -Info 64 [16:02:43.000] Files (2) +Info 63 [00:02:41.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/dependency/FnS.ts 500 undefined WatchType: Closed Script info +Info 64 [00:02:42.000] Project '/user/username/projects/myproject/dependency/tsconfig.json' (Configured) +Info 64 [00:02:43.000] Files (2) -Info 64 [16:02:44.000] ----------------------------------------------- -Info 64 [16:02:45.000] Project '/user/username/projects/myproject/random/tsconfig.json' (Configured) -Info 64 [16:02:46.000] Files (2) +Info 64 [00:02:44.000] ----------------------------------------------- +Info 64 [00:02:45.000] Project '/user/username/projects/myproject/random/tsconfig.json' (Configured) +Info 64 [00:02:46.000] Files (2) -Info 64 [16:02:47.000] ----------------------------------------------- -Info 64 [16:02:48.000] Open files: -Info 64 [16:02:49.000] FileName: /user/username/projects/myproject/random/random.ts ProjectRootPath: undefined -Info 64 [16:02:50.000] Projects: /user/username/projects/myproject/random/tsconfig.json +Info 64 [00:02:47.000] ----------------------------------------------- +Info 64 [00:02:48.000] Open files: +Info 64 [00:02:49.000] FileName: /user/username/projects/myproject/random/random.ts ProjectRootPath: undefined +Info 64 [00:02:50.000] Projects: /user/username/projects/myproject/random/tsconfig.json After request PolledWatches:: @@ -1188,11 +1188,11 @@ FsWatchesRecursive:: /user/username/projects/myproject/random: {} -Info 64 [16:02:51.000] response: +Info 64 [00:02:51.000] response: { "responseRequired": false } -Info 65 [16:02:52.000] request: +Info 65 [00:02:52.000] request: { "seq": 0, "type": "request", @@ -1231,16 +1231,16 @@ FsWatchesRecursive:: /user/username/projects/myproject/random: {} -Info 66 [16:02:53.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/random/random.ts 500 undefined WatchType: Closed Script info -Info 67 [16:02:54.000] Project '/user/username/projects/myproject/dependency/tsconfig.json' (Configured) -Info 67 [16:02:55.000] Files (2) +Info 66 [00:02:53.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/random/random.ts 500 undefined WatchType: Closed Script info +Info 67 [00:02:54.000] Project '/user/username/projects/myproject/dependency/tsconfig.json' (Configured) +Info 67 [00:02:55.000] Files (2) -Info 67 [16:02:56.000] ----------------------------------------------- -Info 67 [16:02:57.000] Project '/user/username/projects/myproject/random/tsconfig.json' (Configured) -Info 67 [16:02:58.000] Files (2) +Info 67 [00:02:56.000] ----------------------------------------------- +Info 67 [00:02:57.000] Project '/user/username/projects/myproject/random/tsconfig.json' (Configured) +Info 67 [00:02:58.000] Files (2) -Info 67 [16:02:59.000] ----------------------------------------------- -Info 67 [16:03:00.000] Open files: +Info 67 [00:02:59.000] ----------------------------------------------- +Info 67 [00:03:00.000] Open files: After request PolledWatches:: @@ -1273,11 +1273,11 @@ FsWatchesRecursive:: /user/username/projects/myproject/random: {} -Info 67 [16:03:01.000] response: +Info 67 [00:03:01.000] response: { "responseRequired": false } -Info 68 [16:03:02.000] request: +Info 68 [00:03:02.000] request: { "seq": 0, "type": "request", @@ -1318,12 +1318,12 @@ FsWatchesRecursive:: /user/username/projects/myproject/random: {} -Info 69 [16:03:03.000] FileWatcher:: Close:: WatchInfo: /user/username/projects/myproject/random/random.ts 500 undefined WatchType: Closed Script info -Info 70 [16:03:04.000] Search path: /user/username/projects/myproject/random -Info 71 [16:03:05.000] For info: /user/username/projects/myproject/random/random.ts :: Config file name: /user/username/projects/myproject/random/tsconfig.json -Info 72 [16:03:06.000] `remove Project:: -Info 73 [16:03:07.000] Project '/user/username/projects/myproject/dependency/tsconfig.json' (Configured) -Info 74 [16:03:08.000] Files (2) +Info 69 [00:03:03.000] FileWatcher:: Close:: WatchInfo: /user/username/projects/myproject/random/random.ts 500 undefined WatchType: Closed Script info +Info 70 [00:03:04.000] Search path: /user/username/projects/myproject/random +Info 71 [00:03:05.000] For info: /user/username/projects/myproject/random/random.ts :: Config file name: /user/username/projects/myproject/random/tsconfig.json +Info 72 [00:03:06.000] `remove Project:: +Info 73 [00:03:07.000] Project '/user/username/projects/myproject/dependency/tsconfig.json' (Configured) +Info 74 [00:03:08.000] Files (2) /a/lib/lib.d.ts /user/username/projects/myproject/dependency/FnS.ts @@ -1333,24 +1333,24 @@ Info 74 [16:03:08.000] Files (2) FnS.ts Matched by default include pattern '**/*' -Info 75 [16:03:09.000] ----------------------------------------------- -Info 76 [16:03:10.000] DirectoryWatcher:: Close:: WatchInfo: /user/username/projects/myproject/dependency 1 undefined Config: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Wild card directory -Info 77 [16:03:11.000] 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 78 [16:03:12.000] FileWatcher:: Close:: WatchInfo: /user/username/projects/myproject/dependency/tsconfig.json 2000 undefined Project: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Config file -Info 79 [16:03:13.000] 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 80 [16:03:14.000] 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 81 [16:03:15.000] DirectoryWatcher:: Close:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Type roots -Info 82 [16:03:16.000] 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 83 [16:03:17.000] FileWatcher:: Close:: WatchInfo: /user/username/projects/myproject/dependency/FnS.ts 500 undefined WatchType: Closed Script info -Info 84 [16:03:18.000] FileWatcher:: Close:: WatchInfo: /user/username/projects/myproject/decls/FnS.d.ts 500 undefined WatchType: Closed Script info -Info 85 [16:03:19.000] FileWatcher:: Close:: WatchInfo: /user/username/projects/myproject/decls/FnS.d.ts.map 2000 undefined WatchType: Missing source map file -Info 86 [16:03:20.000] Project '/user/username/projects/myproject/random/tsconfig.json' (Configured) -Info 86 [16:03:21.000] Files (2) - -Info 86 [16:03:22.000] ----------------------------------------------- -Info 86 [16:03:23.000] Open files: -Info 86 [16:03:24.000] FileName: /user/username/projects/myproject/random/random.ts ProjectRootPath: undefined -Info 86 [16:03:25.000] Projects: /user/username/projects/myproject/random/tsconfig.json +Info 75 [00:03:09.000] ----------------------------------------------- +Info 76 [00:03:10.000] DirectoryWatcher:: Close:: WatchInfo: /user/username/projects/myproject/dependency 1 undefined Config: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Wild card directory +Info 77 [00:03:11.000] 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 78 [00:03:12.000] FileWatcher:: Close:: WatchInfo: /user/username/projects/myproject/dependency/tsconfig.json 2000 undefined Project: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Config file +Info 79 [00:03:13.000] 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 80 [00:03:14.000] 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 81 [00:03:15.000] DirectoryWatcher:: Close:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Type roots +Info 82 [00:03:16.000] 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 83 [00:03:17.000] FileWatcher:: Close:: WatchInfo: /user/username/projects/myproject/dependency/FnS.ts 500 undefined WatchType: Closed Script info +Info 84 [00:03:18.000] FileWatcher:: Close:: WatchInfo: /user/username/projects/myproject/decls/FnS.d.ts 500 undefined WatchType: Closed Script info +Info 85 [00:03:19.000] FileWatcher:: Close:: WatchInfo: /user/username/projects/myproject/decls/FnS.d.ts.map 2000 undefined WatchType: Missing source map file +Info 86 [00:03:20.000] Project '/user/username/projects/myproject/random/tsconfig.json' (Configured) +Info 86 [00:03:21.000] Files (2) + +Info 86 [00:03:22.000] ----------------------------------------------- +Info 86 [00:03:23.000] Open files: +Info 86 [00:03:24.000] FileName: /user/username/projects/myproject/random/random.ts ProjectRootPath: undefined +Info 86 [00:03:25.000] Projects: /user/username/projects/myproject/random/tsconfig.json After request PolledWatches:: @@ -1369,7 +1369,7 @@ FsWatchesRecursive:: /user/username/projects/myproject/random: {} -Info 86 [16:03:26.000] response: +Info 86 [00:03:26.000] response: { "responseRequired": false } \ No newline at end of file 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 da7189f006ecc..6dd20b7ee7c2e 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 @@ -1,5 +1,5 @@ -Info 0 [16:01:00.000] Provided types map file "/a/lib/typesMap.json" doesn't exist -Info 1 [16:01:01.000] request: +Info 0 [00:01:00.000] Provided types map file "/a/lib/typesMap.json" doesn't exist +Info 1 [00:01:01.000] request: { "seq": 0, "type": "request", @@ -200,11 +200,11 @@ FsWatches:: FsWatchesRecursive:: -Info 2 [16:01:02.000] Search path: /user/username/projects/myproject/dependency -Info 3 [16:01:03.000] For info: /user/username/projects/myproject/dependency/FnS.ts :: Config file name: /user/username/projects/myproject/dependency/tsconfig.json -Info 4 [16:01:04.000] Creating configuration project /user/username/projects/myproject/dependency/tsconfig.json -Info 5 [16:01:05.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/dependency/tsconfig.json 2000 undefined Project: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Config file -Info 6 [16:01:06.000] Config: /user/username/projects/myproject/dependency/tsconfig.json : { +Info 2 [00:01:02.000] Search path: /user/username/projects/myproject/dependency +Info 3 [00:01:03.000] For info: /user/username/projects/myproject/dependency/FnS.ts :: Config file name: /user/username/projects/myproject/dependency/tsconfig.json +Info 4 [00:01:04.000] Creating configuration project /user/username/projects/myproject/dependency/tsconfig.json +Info 5 [00:01:05.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/dependency/tsconfig.json 2000 undefined Project: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Config file +Info 6 [00:01:06.000] Config: /user/username/projects/myproject/dependency/tsconfig.json : { "rootNames": [ "/user/username/projects/myproject/dependency/FnS.ts" ], @@ -215,18 +215,18 @@ Info 6 [16:01:06.000] Config: /user/username/projects/myproject/dependency/ts "configFilePath": "/user/username/projects/myproject/dependency/tsconfig.json" } } -Info 7 [16:01:07.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/dependency 1 undefined Config: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Wild card directory -Info 8 [16:01:08.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/dependency 1 undefined Config: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Wild card directory -Info 9 [16:01:09.000] Plugins were requested but not running in environment that supports 'require'. Nothing will be loaded -Info 10 [16:01:10.000] Starting updateGraphWorker: Project: /user/username/projects/myproject/dependency/tsconfig.json -Info 11 [16:01:11.000] FileWatcher:: Added:: WatchInfo: /a/lib/lib.d.ts 500 undefined WatchType: Closed Script info -Info 12 [16:01:12.000] 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 13 [16:01:13.000] 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 14 [16:01:14.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Type roots -Info 15 [16:01:15.000] 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 16 [16:01:16.000] Finishing updateGraphWorker: Project: /user/username/projects/myproject/dependency/tsconfig.json Version: 1 structureChanged: true structureIsReused:: Not Elapsed:: *ms -Info 17 [16:01:17.000] Project '/user/username/projects/myproject/dependency/tsconfig.json' (Configured) -Info 18 [16:01:18.000] Files (2) +Info 7 [00:01:07.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/dependency 1 undefined Config: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Wild card directory +Info 8 [00:01:08.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/dependency 1 undefined Config: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Wild card directory +Info 9 [00:01:09.000] Plugins were requested but not running in environment that supports 'require'. Nothing will be loaded +Info 10 [00:01:10.000] Starting updateGraphWorker: Project: /user/username/projects/myproject/dependency/tsconfig.json +Info 11 [00:01:11.000] FileWatcher:: Added:: WatchInfo: /a/lib/lib.d.ts 500 undefined WatchType: Closed Script info +Info 12 [00:01:12.000] 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 13 [00:01:13.000] 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 14 [00:01:14.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Type roots +Info 15 [00:01:15.000] 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 16 [00:01:16.000] Finishing updateGraphWorker: Project: /user/username/projects/myproject/dependency/tsconfig.json Version: 1 structureChanged: true structureIsReused:: Not Elapsed:: *ms +Info 17 [00:01:17.000] Project '/user/username/projects/myproject/dependency/tsconfig.json' (Configured) +Info 18 [00:01:18.000] Files (2) /a/lib/lib.d.ts /user/username/projects/myproject/dependency/FnS.ts @@ -236,16 +236,16 @@ Info 18 [16:01:18.000] Files (2) FnS.ts Matched by default include pattern '**/*' -Info 19 [16:01:19.000] ----------------------------------------------- -Info 20 [16:01:20.000] Search path: /user/username/projects/myproject/dependency -Info 21 [16:01:21.000] For info: /user/username/projects/myproject/dependency/tsconfig.json :: No config files found. -Info 22 [16:01:22.000] Project '/user/username/projects/myproject/dependency/tsconfig.json' (Configured) -Info 22 [16:01:23.000] Files (2) +Info 19 [00:01:19.000] ----------------------------------------------- +Info 20 [00:01:20.000] Search path: /user/username/projects/myproject/dependency +Info 21 [00:01:21.000] For info: /user/username/projects/myproject/dependency/tsconfig.json :: No config files found. +Info 22 [00:01:22.000] Project '/user/username/projects/myproject/dependency/tsconfig.json' (Configured) +Info 22 [00:01:23.000] Files (2) -Info 22 [16:01:24.000] ----------------------------------------------- -Info 22 [16:01:25.000] Open files: -Info 22 [16:01:26.000] FileName: /user/username/projects/myproject/dependency/FnS.ts ProjectRootPath: undefined -Info 22 [16:01:27.000] Projects: /user/username/projects/myproject/dependency/tsconfig.json +Info 22 [00:01:24.000] ----------------------------------------------- +Info 22 [00:01:25.000] Open files: +Info 22 [00:01:26.000] FileName: /user/username/projects/myproject/dependency/FnS.ts ProjectRootPath: undefined +Info 22 [00:01:27.000] Projects: /user/username/projects/myproject/dependency/tsconfig.json After request PolledWatches:: @@ -264,11 +264,11 @@ FsWatchesRecursive:: /user/username/projects/myproject/dependency: {} -Info 22 [16:01:28.000] response: +Info 22 [00:01:28.000] response: { "responseRequired": false } -Info 23 [16:01:29.000] request: +Info 23 [00:01:29.000] request: { "seq": 0, "type": "request", @@ -295,11 +295,11 @@ FsWatchesRecursive:: /user/username/projects/myproject/dependency: {} -Info 24 [16:01:30.000] Search path: /user/username/projects/myproject/random -Info 25 [16:01:31.000] For info: /user/username/projects/myproject/random/random.ts :: Config file name: /user/username/projects/myproject/random/tsconfig.json -Info 26 [16:01:32.000] Creating configuration project /user/username/projects/myproject/random/tsconfig.json -Info 27 [16:01:33.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/random/tsconfig.json 2000 undefined Project: /user/username/projects/myproject/random/tsconfig.json WatchType: Config file -Info 28 [16:01:34.000] Config: /user/username/projects/myproject/random/tsconfig.json : { +Info 24 [00:01:30.000] Search path: /user/username/projects/myproject/random +Info 25 [00:01:31.000] For info: /user/username/projects/myproject/random/random.ts :: Config file name: /user/username/projects/myproject/random/tsconfig.json +Info 26 [00:01:32.000] Creating configuration project /user/username/projects/myproject/random/tsconfig.json +Info 27 [00:01:33.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/random/tsconfig.json 2000 undefined Project: /user/username/projects/myproject/random/tsconfig.json WatchType: Config file +Info 28 [00:01:34.000] Config: /user/username/projects/myproject/random/tsconfig.json : { "rootNames": [ "/user/username/projects/myproject/random/random.ts" ], @@ -307,17 +307,17 @@ Info 28 [16:01:34.000] Config: /user/username/projects/myproject/random/tsconf "configFilePath": "/user/username/projects/myproject/random/tsconfig.json" } } -Info 29 [16:01:35.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/random 1 undefined Config: /user/username/projects/myproject/random/tsconfig.json WatchType: Wild card directory -Info 30 [16:01:36.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/random 1 undefined Config: /user/username/projects/myproject/random/tsconfig.json WatchType: Wild card directory -Info 31 [16:01:37.000] Plugins were requested but not running in environment that supports 'require'. Nothing will be loaded -Info 32 [16:01:38.000] Starting updateGraphWorker: Project: /user/username/projects/myproject/random/tsconfig.json -Info 33 [16:01:39.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/random/node_modules/@types 1 undefined Project: /user/username/projects/myproject/random/tsconfig.json WatchType: Type roots -Info 34 [16:01:40.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/random/node_modules/@types 1 undefined Project: /user/username/projects/myproject/random/tsconfig.json WatchType: Type roots -Info 35 [16:01:41.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/random/tsconfig.json WatchType: Type roots -Info 36 [16:01:42.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/random/tsconfig.json WatchType: Type roots -Info 37 [16:01:43.000] Finishing updateGraphWorker: Project: /user/username/projects/myproject/random/tsconfig.json Version: 1 structureChanged: true structureIsReused:: Not Elapsed:: *ms -Info 38 [16:01:44.000] Project '/user/username/projects/myproject/random/tsconfig.json' (Configured) -Info 39 [16:01:45.000] Files (2) +Info 29 [00:01:35.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/random 1 undefined Config: /user/username/projects/myproject/random/tsconfig.json WatchType: Wild card directory +Info 30 [00:01:36.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/random 1 undefined Config: /user/username/projects/myproject/random/tsconfig.json WatchType: Wild card directory +Info 31 [00:01:37.000] Plugins were requested but not running in environment that supports 'require'. Nothing will be loaded +Info 32 [00:01:38.000] Starting updateGraphWorker: Project: /user/username/projects/myproject/random/tsconfig.json +Info 33 [00:01:39.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/random/node_modules/@types 1 undefined Project: /user/username/projects/myproject/random/tsconfig.json WatchType: Type roots +Info 34 [00:01:40.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/random/node_modules/@types 1 undefined Project: /user/username/projects/myproject/random/tsconfig.json WatchType: Type roots +Info 35 [00:01:41.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/random/tsconfig.json WatchType: Type roots +Info 36 [00:01:42.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/random/tsconfig.json WatchType: Type roots +Info 37 [00:01:43.000] Finishing updateGraphWorker: Project: /user/username/projects/myproject/random/tsconfig.json Version: 1 structureChanged: true structureIsReused:: Not Elapsed:: *ms +Info 38 [00:01:44.000] Project '/user/username/projects/myproject/random/tsconfig.json' (Configured) +Info 39 [00:01:45.000] Files (2) /a/lib/lib.d.ts /user/username/projects/myproject/random/random.ts @@ -327,20 +327,20 @@ Info 39 [16:01:45.000] Files (2) random.ts Matched by default include pattern '**/*' -Info 40 [16:01:46.000] ----------------------------------------------- -Info 41 [16:01:47.000] Project '/user/username/projects/myproject/dependency/tsconfig.json' (Configured) -Info 41 [16:01:48.000] Files (2) +Info 40 [00:01:46.000] ----------------------------------------------- +Info 41 [00:01:47.000] Project '/user/username/projects/myproject/dependency/tsconfig.json' (Configured) +Info 41 [00:01:48.000] Files (2) -Info 41 [16:01:49.000] ----------------------------------------------- -Info 41 [16:01:50.000] Project '/user/username/projects/myproject/random/tsconfig.json' (Configured) -Info 41 [16:01:51.000] Files (2) +Info 41 [00:01:49.000] ----------------------------------------------- +Info 41 [00:01:50.000] Project '/user/username/projects/myproject/random/tsconfig.json' (Configured) +Info 41 [00:01:51.000] Files (2) -Info 41 [16:01:52.000] ----------------------------------------------- -Info 41 [16:01:53.000] Open files: -Info 41 [16:01:54.000] FileName: /user/username/projects/myproject/dependency/FnS.ts ProjectRootPath: undefined -Info 41 [16:01:55.000] Projects: /user/username/projects/myproject/dependency/tsconfig.json -Info 41 [16:01:56.000] FileName: /user/username/projects/myproject/random/random.ts ProjectRootPath: undefined -Info 41 [16:01:57.000] Projects: /user/username/projects/myproject/random/tsconfig.json +Info 41 [00:01:52.000] ----------------------------------------------- +Info 41 [00:01:53.000] Open files: +Info 41 [00:01:54.000] FileName: /user/username/projects/myproject/dependency/FnS.ts ProjectRootPath: undefined +Info 41 [00:01:55.000] Projects: /user/username/projects/myproject/dependency/tsconfig.json +Info 41 [00:01:56.000] FileName: /user/username/projects/myproject/random/random.ts ProjectRootPath: undefined +Info 41 [00:01:57.000] Projects: /user/username/projects/myproject/random/tsconfig.json After request PolledWatches:: @@ -365,11 +365,11 @@ FsWatchesRecursive:: /user/username/projects/myproject/random: {} -Info 41 [16:01:58.000] response: +Info 41 [00:01:58.000] response: { "responseRequired": false } -Info 42 [16:01:59.000] request: +Info 42 [00:01:59.000] request: { "command": "rename", "arguments": { @@ -404,8 +404,8 @@ FsWatchesRecursive:: /user/username/projects/myproject/random: {} -Info 43 [16:02:00.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/decls/FnS.d.ts 500 undefined WatchType: Closed Script info -Info 44 [16:02:01.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/decls/FnS.d.ts.map 500 undefined WatchType: Closed Script info +Info 43 [00:02:00.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/decls/FnS.d.ts 500 undefined WatchType: Closed Script info +Info 44 [00:02:01.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/decls/FnS.d.ts.map 500 undefined WatchType: Closed Script info After request PolledWatches:: @@ -434,7 +434,7 @@ FsWatchesRecursive:: /user/username/projects/myproject/random: {} -Info 45 [16:02:02.000] response: +Info 45 [00:02:02.000] response: { "response": { "info": { @@ -482,7 +482,7 @@ Info 45 [16:02:02.000] response: }, "responseRequired": true } -Info 46 [16:02:03.000] request: +Info 46 [00:02:03.000] request: { "command": "change", "arguments": { @@ -552,7 +552,7 @@ FsWatchesRecursive:: /user/username/projects/myproject/random: {} -Info 47 [16:02:04.000] response: +Info 47 [00:02:04.000] response: { "responseRequired": false } @@ -612,7 +612,7 @@ FsWatchesRecursive:: /user/username/projects/myproject/random: {} -Info 48 [16:02:05.000] request: +Info 48 [00:02:05.000] request: { "command": "rename", "arguments": { @@ -651,9 +651,9 @@ FsWatchesRecursive:: /user/username/projects/myproject/random: {} -Info 49 [16:02:06.000] Starting updateGraphWorker: Project: /user/username/projects/myproject/dependency/tsconfig.json -Info 50 [16:02:07.000] Finishing updateGraphWorker: Project: /user/username/projects/myproject/dependency/tsconfig.json Version: 2 structureChanged: false structureIsReused:: Completely Elapsed:: *ms -Info 51 [16:02:08.000] Different program with same set of files +Info 49 [00:02:06.000] Starting updateGraphWorker: Project: /user/username/projects/myproject/dependency/tsconfig.json +Info 50 [00:02:07.000] Finishing updateGraphWorker: Project: /user/username/projects/myproject/dependency/tsconfig.json Version: 2 structureChanged: false structureIsReused:: Completely Elapsed:: *ms +Info 51 [00:02:08.000] Different program with same set of files After request PolledWatches:: @@ -682,7 +682,7 @@ FsWatchesRecursive:: /user/username/projects/myproject/random: {} -Info 52 [16:02:09.000] response: +Info 52 [00:02:09.000] response: { "response": { "info": { @@ -730,7 +730,7 @@ Info 52 [16:02:09.000] response: }, "responseRequired": true } -Info 53 [16:02:10.000] request: +Info 53 [00:02:10.000] request: { "command": "rename", "arguments": { @@ -797,7 +797,7 @@ FsWatchesRecursive:: /user/username/projects/myproject/random: {} -Info 54 [16:02:11.000] response: +Info 54 [00:02:11.000] response: { "response": { "info": { @@ -845,7 +845,7 @@ Info 54 [16:02:11.000] response: }, "responseRequired": true } -Info 55 [16:02:12.000] request: +Info 55 [00:02:12.000] request: { "command": "rename", "arguments": { @@ -912,7 +912,7 @@ FsWatchesRecursive:: /user/username/projects/myproject/random: {} -Info 56 [16:02:13.000] response: +Info 56 [00:02:13.000] response: { "response": { "info": { @@ -960,7 +960,7 @@ Info 56 [16:02:13.000] response: }, "responseRequired": true } -Info 57 [16:02:14.000] request: +Info 57 [00:02:14.000] request: { "command": "rename", "arguments": { @@ -1027,7 +1027,7 @@ FsWatchesRecursive:: /user/username/projects/myproject/random: {} -Info 58 [16:02:15.000] response: +Info 58 [00:02:15.000] response: { "response": { "info": { @@ -1075,7 +1075,7 @@ Info 58 [16:02:15.000] response: }, "responseRequired": true } -Info 59 [16:02:16.000] request: +Info 59 [00:02:16.000] request: { "command": "rename", "arguments": { @@ -1142,7 +1142,7 @@ FsWatchesRecursive:: /user/username/projects/myproject/random: {} -Info 60 [16:02:17.000] response: +Info 60 [00:02:17.000] response: { "response": { "info": { 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 32bc4d749513f..dd9030ab5a223 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 @@ -1,5 +1,5 @@ -Info 0 [16:01:00.000] Provided types map file "/a/lib/typesMap.json" doesn't exist -Info 1 [16:01:01.000] request: +Info 0 [00:01:00.000] Provided types map file "/a/lib/typesMap.json" doesn't exist +Info 1 [00:01:01.000] request: { "seq": 0, "type": "request", @@ -200,11 +200,11 @@ FsWatches:: FsWatchesRecursive:: -Info 2 [16:01:02.000] Search path: /user/username/projects/myproject/dependency -Info 3 [16:01:03.000] For info: /user/username/projects/myproject/dependency/FnS.ts :: Config file name: /user/username/projects/myproject/dependency/tsconfig.json -Info 4 [16:01:04.000] Creating configuration project /user/username/projects/myproject/dependency/tsconfig.json -Info 5 [16:01:05.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/dependency/tsconfig.json 2000 undefined Project: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Config file -Info 6 [16:01:06.000] Config: /user/username/projects/myproject/dependency/tsconfig.json : { +Info 2 [00:01:02.000] Search path: /user/username/projects/myproject/dependency +Info 3 [00:01:03.000] For info: /user/username/projects/myproject/dependency/FnS.ts :: Config file name: /user/username/projects/myproject/dependency/tsconfig.json +Info 4 [00:01:04.000] Creating configuration project /user/username/projects/myproject/dependency/tsconfig.json +Info 5 [00:01:05.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/dependency/tsconfig.json 2000 undefined Project: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Config file +Info 6 [00:01:06.000] Config: /user/username/projects/myproject/dependency/tsconfig.json : { "rootNames": [ "/user/username/projects/myproject/dependency/FnS.ts" ], @@ -215,18 +215,18 @@ Info 6 [16:01:06.000] Config: /user/username/projects/myproject/dependency/ts "configFilePath": "/user/username/projects/myproject/dependency/tsconfig.json" } } -Info 7 [16:01:07.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/dependency 1 undefined Config: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Wild card directory -Info 8 [16:01:08.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/dependency 1 undefined Config: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Wild card directory -Info 9 [16:01:09.000] Plugins were requested but not running in environment that supports 'require'. Nothing will be loaded -Info 10 [16:01:10.000] Starting updateGraphWorker: Project: /user/username/projects/myproject/dependency/tsconfig.json -Info 11 [16:01:11.000] FileWatcher:: Added:: WatchInfo: /a/lib/lib.d.ts 500 undefined WatchType: Closed Script info -Info 12 [16:01:12.000] 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 13 [16:01:13.000] 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 14 [16:01:14.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Type roots -Info 15 [16:01:15.000] 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 16 [16:01:16.000] Finishing updateGraphWorker: Project: /user/username/projects/myproject/dependency/tsconfig.json Version: 1 structureChanged: true structureIsReused:: Not Elapsed:: *ms -Info 17 [16:01:17.000] Project '/user/username/projects/myproject/dependency/tsconfig.json' (Configured) -Info 18 [16:01:18.000] Files (2) +Info 7 [00:01:07.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/dependency 1 undefined Config: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Wild card directory +Info 8 [00:01:08.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/dependency 1 undefined Config: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Wild card directory +Info 9 [00:01:09.000] Plugins were requested but not running in environment that supports 'require'. Nothing will be loaded +Info 10 [00:01:10.000] Starting updateGraphWorker: Project: /user/username/projects/myproject/dependency/tsconfig.json +Info 11 [00:01:11.000] FileWatcher:: Added:: WatchInfo: /a/lib/lib.d.ts 500 undefined WatchType: Closed Script info +Info 12 [00:01:12.000] 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 13 [00:01:13.000] 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 14 [00:01:14.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Type roots +Info 15 [00:01:15.000] 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 16 [00:01:16.000] Finishing updateGraphWorker: Project: /user/username/projects/myproject/dependency/tsconfig.json Version: 1 structureChanged: true structureIsReused:: Not Elapsed:: *ms +Info 17 [00:01:17.000] Project '/user/username/projects/myproject/dependency/tsconfig.json' (Configured) +Info 18 [00:01:18.000] Files (2) /a/lib/lib.d.ts /user/username/projects/myproject/dependency/FnS.ts @@ -236,16 +236,16 @@ Info 18 [16:01:18.000] Files (2) FnS.ts Matched by default include pattern '**/*' -Info 19 [16:01:19.000] ----------------------------------------------- -Info 20 [16:01:20.000] Search path: /user/username/projects/myproject/dependency -Info 21 [16:01:21.000] For info: /user/username/projects/myproject/dependency/tsconfig.json :: No config files found. -Info 22 [16:01:22.000] Project '/user/username/projects/myproject/dependency/tsconfig.json' (Configured) -Info 22 [16:01:23.000] Files (2) +Info 19 [00:01:19.000] ----------------------------------------------- +Info 20 [00:01:20.000] Search path: /user/username/projects/myproject/dependency +Info 21 [00:01:21.000] For info: /user/username/projects/myproject/dependency/tsconfig.json :: No config files found. +Info 22 [00:01:22.000] Project '/user/username/projects/myproject/dependency/tsconfig.json' (Configured) +Info 22 [00:01:23.000] Files (2) -Info 22 [16:01:24.000] ----------------------------------------------- -Info 22 [16:01:25.000] Open files: -Info 22 [16:01:26.000] FileName: /user/username/projects/myproject/dependency/FnS.ts ProjectRootPath: undefined -Info 22 [16:01:27.000] Projects: /user/username/projects/myproject/dependency/tsconfig.json +Info 22 [00:01:24.000] ----------------------------------------------- +Info 22 [00:01:25.000] Open files: +Info 22 [00:01:26.000] FileName: /user/username/projects/myproject/dependency/FnS.ts ProjectRootPath: undefined +Info 22 [00:01:27.000] Projects: /user/username/projects/myproject/dependency/tsconfig.json After request PolledWatches:: @@ -264,11 +264,11 @@ FsWatchesRecursive:: /user/username/projects/myproject/dependency: {} -Info 22 [16:01:28.000] response: +Info 22 [00:01:28.000] response: { "responseRequired": false } -Info 23 [16:01:29.000] request: +Info 23 [00:01:29.000] request: { "seq": 0, "type": "request", @@ -295,11 +295,11 @@ FsWatchesRecursive:: /user/username/projects/myproject/dependency: {} -Info 24 [16:01:30.000] Search path: /user/username/projects/myproject/random -Info 25 [16:01:31.000] For info: /user/username/projects/myproject/random/random.ts :: Config file name: /user/username/projects/myproject/random/tsconfig.json -Info 26 [16:01:32.000] Creating configuration project /user/username/projects/myproject/random/tsconfig.json -Info 27 [16:01:33.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/random/tsconfig.json 2000 undefined Project: /user/username/projects/myproject/random/tsconfig.json WatchType: Config file -Info 28 [16:01:34.000] Config: /user/username/projects/myproject/random/tsconfig.json : { +Info 24 [00:01:30.000] Search path: /user/username/projects/myproject/random +Info 25 [00:01:31.000] For info: /user/username/projects/myproject/random/random.ts :: Config file name: /user/username/projects/myproject/random/tsconfig.json +Info 26 [00:01:32.000] Creating configuration project /user/username/projects/myproject/random/tsconfig.json +Info 27 [00:01:33.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/random/tsconfig.json 2000 undefined Project: /user/username/projects/myproject/random/tsconfig.json WatchType: Config file +Info 28 [00:01:34.000] Config: /user/username/projects/myproject/random/tsconfig.json : { "rootNames": [ "/user/username/projects/myproject/random/random.ts" ], @@ -307,17 +307,17 @@ Info 28 [16:01:34.000] Config: /user/username/projects/myproject/random/tsconf "configFilePath": "/user/username/projects/myproject/random/tsconfig.json" } } -Info 29 [16:01:35.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/random 1 undefined Config: /user/username/projects/myproject/random/tsconfig.json WatchType: Wild card directory -Info 30 [16:01:36.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/random 1 undefined Config: /user/username/projects/myproject/random/tsconfig.json WatchType: Wild card directory -Info 31 [16:01:37.000] Plugins were requested but not running in environment that supports 'require'. Nothing will be loaded -Info 32 [16:01:38.000] Starting updateGraphWorker: Project: /user/username/projects/myproject/random/tsconfig.json -Info 33 [16:01:39.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/random/node_modules/@types 1 undefined Project: /user/username/projects/myproject/random/tsconfig.json WatchType: Type roots -Info 34 [16:01:40.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/random/node_modules/@types 1 undefined Project: /user/username/projects/myproject/random/tsconfig.json WatchType: Type roots -Info 35 [16:01:41.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/random/tsconfig.json WatchType: Type roots -Info 36 [16:01:42.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/random/tsconfig.json WatchType: Type roots -Info 37 [16:01:43.000] Finishing updateGraphWorker: Project: /user/username/projects/myproject/random/tsconfig.json Version: 1 structureChanged: true structureIsReused:: Not Elapsed:: *ms -Info 38 [16:01:44.000] Project '/user/username/projects/myproject/random/tsconfig.json' (Configured) -Info 39 [16:01:45.000] Files (2) +Info 29 [00:01:35.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/random 1 undefined Config: /user/username/projects/myproject/random/tsconfig.json WatchType: Wild card directory +Info 30 [00:01:36.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/random 1 undefined Config: /user/username/projects/myproject/random/tsconfig.json WatchType: Wild card directory +Info 31 [00:01:37.000] Plugins were requested but not running in environment that supports 'require'. Nothing will be loaded +Info 32 [00:01:38.000] Starting updateGraphWorker: Project: /user/username/projects/myproject/random/tsconfig.json +Info 33 [00:01:39.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/random/node_modules/@types 1 undefined Project: /user/username/projects/myproject/random/tsconfig.json WatchType: Type roots +Info 34 [00:01:40.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/random/node_modules/@types 1 undefined Project: /user/username/projects/myproject/random/tsconfig.json WatchType: Type roots +Info 35 [00:01:41.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/random/tsconfig.json WatchType: Type roots +Info 36 [00:01:42.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/random/tsconfig.json WatchType: Type roots +Info 37 [00:01:43.000] Finishing updateGraphWorker: Project: /user/username/projects/myproject/random/tsconfig.json Version: 1 structureChanged: true structureIsReused:: Not Elapsed:: *ms +Info 38 [00:01:44.000] Project '/user/username/projects/myproject/random/tsconfig.json' (Configured) +Info 39 [00:01:45.000] Files (2) /a/lib/lib.d.ts /user/username/projects/myproject/random/random.ts @@ -327,20 +327,20 @@ Info 39 [16:01:45.000] Files (2) random.ts Matched by default include pattern '**/*' -Info 40 [16:01:46.000] ----------------------------------------------- -Info 41 [16:01:47.000] Project '/user/username/projects/myproject/dependency/tsconfig.json' (Configured) -Info 41 [16:01:48.000] Files (2) +Info 40 [00:01:46.000] ----------------------------------------------- +Info 41 [00:01:47.000] Project '/user/username/projects/myproject/dependency/tsconfig.json' (Configured) +Info 41 [00:01:48.000] Files (2) -Info 41 [16:01:49.000] ----------------------------------------------- -Info 41 [16:01:50.000] Project '/user/username/projects/myproject/random/tsconfig.json' (Configured) -Info 41 [16:01:51.000] Files (2) +Info 41 [00:01:49.000] ----------------------------------------------- +Info 41 [00:01:50.000] Project '/user/username/projects/myproject/random/tsconfig.json' (Configured) +Info 41 [00:01:51.000] Files (2) -Info 41 [16:01:52.000] ----------------------------------------------- -Info 41 [16:01:53.000] Open files: -Info 41 [16:01:54.000] FileName: /user/username/projects/myproject/dependency/FnS.ts ProjectRootPath: undefined -Info 41 [16:01:55.000] Projects: /user/username/projects/myproject/dependency/tsconfig.json -Info 41 [16:01:56.000] FileName: /user/username/projects/myproject/random/random.ts ProjectRootPath: undefined -Info 41 [16:01:57.000] Projects: /user/username/projects/myproject/random/tsconfig.json +Info 41 [00:01:52.000] ----------------------------------------------- +Info 41 [00:01:53.000] Open files: +Info 41 [00:01:54.000] FileName: /user/username/projects/myproject/dependency/FnS.ts ProjectRootPath: undefined +Info 41 [00:01:55.000] Projects: /user/username/projects/myproject/dependency/tsconfig.json +Info 41 [00:01:56.000] FileName: /user/username/projects/myproject/random/random.ts ProjectRootPath: undefined +Info 41 [00:01:57.000] Projects: /user/username/projects/myproject/random/tsconfig.json After request PolledWatches:: @@ -365,11 +365,11 @@ FsWatchesRecursive:: /user/username/projects/myproject/random: {} -Info 41 [16:01:58.000] response: +Info 41 [00:01:58.000] response: { "responseRequired": false } -Info 42 [16:01:59.000] request: +Info 42 [00:01:59.000] request: { "command": "rename", "arguments": { @@ -404,8 +404,8 @@ FsWatchesRecursive:: /user/username/projects/myproject/random: {} -Info 43 [16:02:00.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/decls/FnS.d.ts 500 undefined WatchType: Closed Script info -Info 44 [16:02:01.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/decls/FnS.d.ts.map 500 undefined WatchType: Closed Script info +Info 43 [00:02:00.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/decls/FnS.d.ts 500 undefined WatchType: Closed Script info +Info 44 [00:02:01.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/decls/FnS.d.ts.map 500 undefined WatchType: Closed Script info After request PolledWatches:: @@ -434,7 +434,7 @@ FsWatchesRecursive:: /user/username/projects/myproject/random: {} -Info 45 [16:02:02.000] response: +Info 45 [00:02:02.000] response: { "response": { "info": { @@ -482,7 +482,7 @@ Info 45 [16:02:02.000] response: }, "responseRequired": true } -Info 46 [16:02:03.000] request: +Info 46 [00:02:03.000] request: { "command": "change", "arguments": { @@ -552,11 +552,11 @@ FsWatchesRecursive:: /user/username/projects/myproject/random: {} -Info 47 [16:02:04.000] response: +Info 47 [00:02:04.000] response: { "responseRequired": false } -Info 48 [16:02:05.000] request: +Info 48 [00:02:05.000] request: { "command": "rename", "arguments": { @@ -595,9 +595,9 @@ FsWatchesRecursive:: /user/username/projects/myproject/random: {} -Info 49 [16:02:06.000] Starting updateGraphWorker: Project: /user/username/projects/myproject/dependency/tsconfig.json -Info 50 [16:02:07.000] Finishing updateGraphWorker: Project: /user/username/projects/myproject/dependency/tsconfig.json Version: 2 structureChanged: false structureIsReused:: Completely Elapsed:: *ms -Info 51 [16:02:08.000] Different program with same set of files +Info 49 [00:02:06.000] Starting updateGraphWorker: Project: /user/username/projects/myproject/dependency/tsconfig.json +Info 50 [00:02:07.000] Finishing updateGraphWorker: Project: /user/username/projects/myproject/dependency/tsconfig.json Version: 2 structureChanged: false structureIsReused:: Completely Elapsed:: *ms +Info 51 [00:02:08.000] Different program with same set of files After request PolledWatches:: @@ -626,7 +626,7 @@ FsWatchesRecursive:: /user/username/projects/myproject/random: {} -Info 52 [16:02:09.000] response: +Info 52 [00:02:09.000] response: { "response": { "info": { @@ -674,7 +674,7 @@ Info 52 [16:02:09.000] response: }, "responseRequired": true } -Info 53 [16:02:10.000] request: +Info 53 [00:02:10.000] request: { "command": "rename", "arguments": { @@ -741,7 +741,7 @@ FsWatchesRecursive:: /user/username/projects/myproject/random: {} -Info 54 [16:02:11.000] response: +Info 54 [00:02:11.000] response: { "response": { "info": { @@ -789,7 +789,7 @@ Info 54 [16:02:11.000] response: }, "responseRequired": true } -Info 55 [16:02:12.000] request: +Info 55 [00:02:12.000] request: { "command": "rename", "arguments": { @@ -856,7 +856,7 @@ FsWatchesRecursive:: /user/username/projects/myproject/random: {} -Info 56 [16:02:13.000] response: +Info 56 [00:02:13.000] response: { "response": { "info": { @@ -904,7 +904,7 @@ Info 56 [16:02:13.000] response: }, "responseRequired": true } -Info 57 [16:02:14.000] request: +Info 57 [00:02:14.000] request: { "command": "rename", "arguments": { @@ -971,7 +971,7 @@ FsWatchesRecursive:: /user/username/projects/myproject/random: {} -Info 58 [16:02:15.000] response: +Info 58 [00:02:15.000] response: { "response": { "info": { @@ -1019,7 +1019,7 @@ Info 58 [16:02:15.000] response: }, "responseRequired": true } -Info 59 [16:02:16.000] request: +Info 59 [00:02:16.000] request: { "command": "rename", "arguments": { @@ -1086,7 +1086,7 @@ FsWatchesRecursive:: /user/username/projects/myproject/random: {} -Info 60 [16:02:17.000] response: +Info 60 [00:02:17.000] response: { "response": { "info": { 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 d4da743eeac58..c71dd4fb76c1a 100644 --- a/tests/baselines/reference/tsserver/projectReferencesSourcemap/dependency/configWithReference/rename-locations.js +++ b/tests/baselines/reference/tsserver/projectReferencesSourcemap/dependency/configWithReference/rename-locations.js @@ -1,5 +1,5 @@ -Info 0 [16:01:00.000] Provided types map file "/a/lib/typesMap.json" doesn't exist -Info 1 [16:01:01.000] request: +Info 0 [00:01:00.000] Provided types map file "/a/lib/typesMap.json" doesn't exist +Info 1 [00:01:01.000] request: { "seq": 0, "type": "request", @@ -200,11 +200,11 @@ FsWatches:: FsWatchesRecursive:: -Info 2 [16:01:02.000] Search path: /user/username/projects/myproject/dependency -Info 3 [16:01:03.000] For info: /user/username/projects/myproject/dependency/FnS.ts :: Config file name: /user/username/projects/myproject/dependency/tsconfig.json -Info 4 [16:01:04.000] Creating configuration project /user/username/projects/myproject/dependency/tsconfig.json -Info 5 [16:01:05.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/dependency/tsconfig.json 2000 undefined Project: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Config file -Info 6 [16:01:06.000] Config: /user/username/projects/myproject/dependency/tsconfig.json : { +Info 2 [00:01:02.000] Search path: /user/username/projects/myproject/dependency +Info 3 [00:01:03.000] For info: /user/username/projects/myproject/dependency/FnS.ts :: Config file name: /user/username/projects/myproject/dependency/tsconfig.json +Info 4 [00:01:04.000] Creating configuration project /user/username/projects/myproject/dependency/tsconfig.json +Info 5 [00:01:05.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/dependency/tsconfig.json 2000 undefined Project: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Config file +Info 6 [00:01:06.000] Config: /user/username/projects/myproject/dependency/tsconfig.json : { "rootNames": [ "/user/username/projects/myproject/dependency/FnS.ts" ], @@ -215,18 +215,18 @@ Info 6 [16:01:06.000] Config: /user/username/projects/myproject/dependency/ts "configFilePath": "/user/username/projects/myproject/dependency/tsconfig.json" } } -Info 7 [16:01:07.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/dependency 1 undefined Config: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Wild card directory -Info 8 [16:01:08.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/dependency 1 undefined Config: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Wild card directory -Info 9 [16:01:09.000] Plugins were requested but not running in environment that supports 'require'. Nothing will be loaded -Info 10 [16:01:10.000] Starting updateGraphWorker: Project: /user/username/projects/myproject/dependency/tsconfig.json -Info 11 [16:01:11.000] FileWatcher:: Added:: WatchInfo: /a/lib/lib.d.ts 500 undefined WatchType: Closed Script info -Info 12 [16:01:12.000] 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 13 [16:01:13.000] 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 14 [16:01:14.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Type roots -Info 15 [16:01:15.000] 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 16 [16:01:16.000] Finishing updateGraphWorker: Project: /user/username/projects/myproject/dependency/tsconfig.json Version: 1 structureChanged: true structureIsReused:: Not Elapsed:: *ms -Info 17 [16:01:17.000] Project '/user/username/projects/myproject/dependency/tsconfig.json' (Configured) -Info 18 [16:01:18.000] Files (2) +Info 7 [00:01:07.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/dependency 1 undefined Config: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Wild card directory +Info 8 [00:01:08.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/dependency 1 undefined Config: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Wild card directory +Info 9 [00:01:09.000] Plugins were requested but not running in environment that supports 'require'. Nothing will be loaded +Info 10 [00:01:10.000] Starting updateGraphWorker: Project: /user/username/projects/myproject/dependency/tsconfig.json +Info 11 [00:01:11.000] FileWatcher:: Added:: WatchInfo: /a/lib/lib.d.ts 500 undefined WatchType: Closed Script info +Info 12 [00:01:12.000] 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 13 [00:01:13.000] 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 14 [00:01:14.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Type roots +Info 15 [00:01:15.000] 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 16 [00:01:16.000] Finishing updateGraphWorker: Project: /user/username/projects/myproject/dependency/tsconfig.json Version: 1 structureChanged: true structureIsReused:: Not Elapsed:: *ms +Info 17 [00:01:17.000] Project '/user/username/projects/myproject/dependency/tsconfig.json' (Configured) +Info 18 [00:01:18.000] Files (2) /a/lib/lib.d.ts /user/username/projects/myproject/dependency/FnS.ts @@ -236,16 +236,16 @@ Info 18 [16:01:18.000] Files (2) FnS.ts Matched by default include pattern '**/*' -Info 19 [16:01:19.000] ----------------------------------------------- -Info 20 [16:01:20.000] Search path: /user/username/projects/myproject/dependency -Info 21 [16:01:21.000] For info: /user/username/projects/myproject/dependency/tsconfig.json :: No config files found. -Info 22 [16:01:22.000] Project '/user/username/projects/myproject/dependency/tsconfig.json' (Configured) -Info 22 [16:01:23.000] Files (2) +Info 19 [00:01:19.000] ----------------------------------------------- +Info 20 [00:01:20.000] Search path: /user/username/projects/myproject/dependency +Info 21 [00:01:21.000] For info: /user/username/projects/myproject/dependency/tsconfig.json :: No config files found. +Info 22 [00:01:22.000] Project '/user/username/projects/myproject/dependency/tsconfig.json' (Configured) +Info 22 [00:01:23.000] Files (2) -Info 22 [16:01:24.000] ----------------------------------------------- -Info 22 [16:01:25.000] Open files: -Info 22 [16:01:26.000] FileName: /user/username/projects/myproject/dependency/FnS.ts ProjectRootPath: undefined -Info 22 [16:01:27.000] Projects: /user/username/projects/myproject/dependency/tsconfig.json +Info 22 [00:01:24.000] ----------------------------------------------- +Info 22 [00:01:25.000] Open files: +Info 22 [00:01:26.000] FileName: /user/username/projects/myproject/dependency/FnS.ts ProjectRootPath: undefined +Info 22 [00:01:27.000] Projects: /user/username/projects/myproject/dependency/tsconfig.json After request PolledWatches:: @@ -264,11 +264,11 @@ FsWatchesRecursive:: /user/username/projects/myproject/dependency: {} -Info 22 [16:01:28.000] response: +Info 22 [00:01:28.000] response: { "responseRequired": false } -Info 23 [16:01:29.000] request: +Info 23 [00:01:29.000] request: { "seq": 0, "type": "request", @@ -295,11 +295,11 @@ FsWatchesRecursive:: /user/username/projects/myproject/dependency: {} -Info 24 [16:01:30.000] Search path: /user/username/projects/myproject/random -Info 25 [16:01:31.000] For info: /user/username/projects/myproject/random/random.ts :: Config file name: /user/username/projects/myproject/random/tsconfig.json -Info 26 [16:01:32.000] Creating configuration project /user/username/projects/myproject/random/tsconfig.json -Info 27 [16:01:33.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/random/tsconfig.json 2000 undefined Project: /user/username/projects/myproject/random/tsconfig.json WatchType: Config file -Info 28 [16:01:34.000] Config: /user/username/projects/myproject/random/tsconfig.json : { +Info 24 [00:01:30.000] Search path: /user/username/projects/myproject/random +Info 25 [00:01:31.000] For info: /user/username/projects/myproject/random/random.ts :: Config file name: /user/username/projects/myproject/random/tsconfig.json +Info 26 [00:01:32.000] Creating configuration project /user/username/projects/myproject/random/tsconfig.json +Info 27 [00:01:33.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/random/tsconfig.json 2000 undefined Project: /user/username/projects/myproject/random/tsconfig.json WatchType: Config file +Info 28 [00:01:34.000] Config: /user/username/projects/myproject/random/tsconfig.json : { "rootNames": [ "/user/username/projects/myproject/random/random.ts" ], @@ -307,17 +307,17 @@ Info 28 [16:01:34.000] Config: /user/username/projects/myproject/random/tsconf "configFilePath": "/user/username/projects/myproject/random/tsconfig.json" } } -Info 29 [16:01:35.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/random 1 undefined Config: /user/username/projects/myproject/random/tsconfig.json WatchType: Wild card directory -Info 30 [16:01:36.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/random 1 undefined Config: /user/username/projects/myproject/random/tsconfig.json WatchType: Wild card directory -Info 31 [16:01:37.000] Plugins were requested but not running in environment that supports 'require'. Nothing will be loaded -Info 32 [16:01:38.000] Starting updateGraphWorker: Project: /user/username/projects/myproject/random/tsconfig.json -Info 33 [16:01:39.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/random/node_modules/@types 1 undefined Project: /user/username/projects/myproject/random/tsconfig.json WatchType: Type roots -Info 34 [16:01:40.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/random/node_modules/@types 1 undefined Project: /user/username/projects/myproject/random/tsconfig.json WatchType: Type roots -Info 35 [16:01:41.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/random/tsconfig.json WatchType: Type roots -Info 36 [16:01:42.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/random/tsconfig.json WatchType: Type roots -Info 37 [16:01:43.000] Finishing updateGraphWorker: Project: /user/username/projects/myproject/random/tsconfig.json Version: 1 structureChanged: true structureIsReused:: Not Elapsed:: *ms -Info 38 [16:01:44.000] Project '/user/username/projects/myproject/random/tsconfig.json' (Configured) -Info 39 [16:01:45.000] Files (2) +Info 29 [00:01:35.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/random 1 undefined Config: /user/username/projects/myproject/random/tsconfig.json WatchType: Wild card directory +Info 30 [00:01:36.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/random 1 undefined Config: /user/username/projects/myproject/random/tsconfig.json WatchType: Wild card directory +Info 31 [00:01:37.000] Plugins were requested but not running in environment that supports 'require'. Nothing will be loaded +Info 32 [00:01:38.000] Starting updateGraphWorker: Project: /user/username/projects/myproject/random/tsconfig.json +Info 33 [00:01:39.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/random/node_modules/@types 1 undefined Project: /user/username/projects/myproject/random/tsconfig.json WatchType: Type roots +Info 34 [00:01:40.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/random/node_modules/@types 1 undefined Project: /user/username/projects/myproject/random/tsconfig.json WatchType: Type roots +Info 35 [00:01:41.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/random/tsconfig.json WatchType: Type roots +Info 36 [00:01:42.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/random/tsconfig.json WatchType: Type roots +Info 37 [00:01:43.000] Finishing updateGraphWorker: Project: /user/username/projects/myproject/random/tsconfig.json Version: 1 structureChanged: true structureIsReused:: Not Elapsed:: *ms +Info 38 [00:01:44.000] Project '/user/username/projects/myproject/random/tsconfig.json' (Configured) +Info 39 [00:01:45.000] Files (2) /a/lib/lib.d.ts /user/username/projects/myproject/random/random.ts @@ -327,20 +327,20 @@ Info 39 [16:01:45.000] Files (2) random.ts Matched by default include pattern '**/*' -Info 40 [16:01:46.000] ----------------------------------------------- -Info 41 [16:01:47.000] Project '/user/username/projects/myproject/dependency/tsconfig.json' (Configured) -Info 41 [16:01:48.000] Files (2) +Info 40 [00:01:46.000] ----------------------------------------------- +Info 41 [00:01:47.000] Project '/user/username/projects/myproject/dependency/tsconfig.json' (Configured) +Info 41 [00:01:48.000] Files (2) -Info 41 [16:01:49.000] ----------------------------------------------- -Info 41 [16:01:50.000] Project '/user/username/projects/myproject/random/tsconfig.json' (Configured) -Info 41 [16:01:51.000] Files (2) +Info 41 [00:01:49.000] ----------------------------------------------- +Info 41 [00:01:50.000] Project '/user/username/projects/myproject/random/tsconfig.json' (Configured) +Info 41 [00:01:51.000] Files (2) -Info 41 [16:01:52.000] ----------------------------------------------- -Info 41 [16:01:53.000] Open files: -Info 41 [16:01:54.000] FileName: /user/username/projects/myproject/dependency/FnS.ts ProjectRootPath: undefined -Info 41 [16:01:55.000] Projects: /user/username/projects/myproject/dependency/tsconfig.json -Info 41 [16:01:56.000] FileName: /user/username/projects/myproject/random/random.ts ProjectRootPath: undefined -Info 41 [16:01:57.000] Projects: /user/username/projects/myproject/random/tsconfig.json +Info 41 [00:01:52.000] ----------------------------------------------- +Info 41 [00:01:53.000] Open files: +Info 41 [00:01:54.000] FileName: /user/username/projects/myproject/dependency/FnS.ts ProjectRootPath: undefined +Info 41 [00:01:55.000] Projects: /user/username/projects/myproject/dependency/tsconfig.json +Info 41 [00:01:56.000] FileName: /user/username/projects/myproject/random/random.ts ProjectRootPath: undefined +Info 41 [00:01:57.000] Projects: /user/username/projects/myproject/random/tsconfig.json After request PolledWatches:: @@ -365,11 +365,11 @@ FsWatchesRecursive:: /user/username/projects/myproject/random: {} -Info 41 [16:01:58.000] response: +Info 41 [00:01:58.000] response: { "responseRequired": false } -Info 42 [16:01:59.000] request: +Info 42 [00:01:59.000] request: { "command": "rename", "arguments": { @@ -404,8 +404,8 @@ FsWatchesRecursive:: /user/username/projects/myproject/random: {} -Info 43 [16:02:00.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/decls/FnS.d.ts 500 undefined WatchType: Closed Script info -Info 44 [16:02:01.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/decls/FnS.d.ts.map 500 undefined WatchType: Closed Script info +Info 43 [00:02:00.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/decls/FnS.d.ts 500 undefined WatchType: Closed Script info +Info 44 [00:02:01.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/decls/FnS.d.ts.map 500 undefined WatchType: Closed Script info After request PolledWatches:: @@ -434,7 +434,7 @@ FsWatchesRecursive:: /user/username/projects/myproject/random: {} -Info 45 [16:02:02.000] response: +Info 45 [00:02:02.000] response: { "response": { "info": { @@ -482,7 +482,7 @@ Info 45 [16:02:02.000] response: }, "responseRequired": true } -Info 46 [16:02:03.000] request: +Info 46 [00:02:03.000] request: { "command": "rename", "arguments": { @@ -549,7 +549,7 @@ FsWatchesRecursive:: /user/username/projects/myproject/random: {} -Info 47 [16:02:04.000] response: +Info 47 [00:02:04.000] response: { "response": { "info": { @@ -597,7 +597,7 @@ Info 47 [16:02:04.000] response: }, "responseRequired": true } -Info 48 [16:02:05.000] request: +Info 48 [00:02:05.000] request: { "command": "rename", "arguments": { @@ -664,7 +664,7 @@ FsWatchesRecursive:: /user/username/projects/myproject/random: {} -Info 49 [16:02:06.000] response: +Info 49 [00:02:06.000] response: { "response": { "info": { @@ -712,7 +712,7 @@ Info 49 [16:02:06.000] response: }, "responseRequired": true } -Info 50 [16:02:07.000] request: +Info 50 [00:02:07.000] request: { "command": "rename", "arguments": { @@ -779,7 +779,7 @@ FsWatchesRecursive:: /user/username/projects/myproject/random: {} -Info 51 [16:02:08.000] response: +Info 51 [00:02:08.000] response: { "response": { "info": { @@ -827,7 +827,7 @@ Info 51 [16:02:08.000] response: }, "responseRequired": true } -Info 52 [16:02:09.000] request: +Info 52 [00:02:09.000] request: { "command": "rename", "arguments": { @@ -894,7 +894,7 @@ FsWatchesRecursive:: /user/username/projects/myproject/random: {} -Info 53 [16:02:10.000] response: +Info 53 [00:02:10.000] response: { "response": { "info": { @@ -942,7 +942,7 @@ Info 53 [16:02:10.000] response: }, "responseRequired": true } -Info 54 [16:02:11.000] request: +Info 54 [00:02:11.000] request: { "seq": 0, "type": "request", @@ -979,18 +979,18 @@ FsWatchesRecursive:: /user/username/projects/myproject/random: {} -Info 55 [16:02:12.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/random/random.ts 500 undefined WatchType: Closed Script info -Info 56 [16:02:13.000] Project '/user/username/projects/myproject/dependency/tsconfig.json' (Configured) -Info 56 [16:02:14.000] Files (2) +Info 55 [00:02:12.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/random/random.ts 500 undefined WatchType: Closed Script info +Info 56 [00:02:13.000] Project '/user/username/projects/myproject/dependency/tsconfig.json' (Configured) +Info 56 [00:02:14.000] Files (2) -Info 56 [16:02:15.000] ----------------------------------------------- -Info 56 [16:02:16.000] Project '/user/username/projects/myproject/random/tsconfig.json' (Configured) -Info 56 [16:02:17.000] Files (2) +Info 56 [00:02:15.000] ----------------------------------------------- +Info 56 [00:02:16.000] Project '/user/username/projects/myproject/random/tsconfig.json' (Configured) +Info 56 [00:02:17.000] Files (2) -Info 56 [16:02:18.000] ----------------------------------------------- -Info 56 [16:02:19.000] Open files: -Info 56 [16:02:20.000] FileName: /user/username/projects/myproject/dependency/FnS.ts ProjectRootPath: undefined -Info 56 [16:02:21.000] Projects: /user/username/projects/myproject/dependency/tsconfig.json +Info 56 [00:02:18.000] ----------------------------------------------- +Info 56 [00:02:19.000] Open files: +Info 56 [00:02:20.000] FileName: /user/username/projects/myproject/dependency/FnS.ts ProjectRootPath: undefined +Info 56 [00:02:21.000] Projects: /user/username/projects/myproject/dependency/tsconfig.json After request PolledWatches:: @@ -1021,11 +1021,11 @@ FsWatchesRecursive:: /user/username/projects/myproject/random: {} -Info 56 [16:02:22.000] response: +Info 56 [00:02:22.000] response: { "responseRequired": false } -Info 57 [16:02:23.000] request: +Info 57 [00:02:23.000] request: { "seq": 0, "type": "request", @@ -1064,22 +1064,22 @@ FsWatchesRecursive:: /user/username/projects/myproject/random: {} -Info 58 [16:02:24.000] FileWatcher:: Close:: WatchInfo: /user/username/projects/myproject/random/random.ts 500 undefined WatchType: Closed Script info -Info 59 [16:02:25.000] Search path: /user/username/projects/myproject/random -Info 60 [16:02:26.000] For info: /user/username/projects/myproject/random/random.ts :: Config file name: /user/username/projects/myproject/random/tsconfig.json -Info 61 [16:02:27.000] Project '/user/username/projects/myproject/dependency/tsconfig.json' (Configured) -Info 61 [16:02:28.000] Files (2) +Info 58 [00:02:24.000] FileWatcher:: Close:: WatchInfo: /user/username/projects/myproject/random/random.ts 500 undefined WatchType: Closed Script info +Info 59 [00:02:25.000] Search path: /user/username/projects/myproject/random +Info 60 [00:02:26.000] For info: /user/username/projects/myproject/random/random.ts :: Config file name: /user/username/projects/myproject/random/tsconfig.json +Info 61 [00:02:27.000] Project '/user/username/projects/myproject/dependency/tsconfig.json' (Configured) +Info 61 [00:02:28.000] Files (2) -Info 61 [16:02:29.000] ----------------------------------------------- -Info 61 [16:02:30.000] Project '/user/username/projects/myproject/random/tsconfig.json' (Configured) -Info 61 [16:02:31.000] Files (2) +Info 61 [00:02:29.000] ----------------------------------------------- +Info 61 [00:02:30.000] Project '/user/username/projects/myproject/random/tsconfig.json' (Configured) +Info 61 [00:02:31.000] Files (2) -Info 61 [16:02:32.000] ----------------------------------------------- -Info 61 [16:02:33.000] Open files: -Info 61 [16:02:34.000] FileName: /user/username/projects/myproject/dependency/FnS.ts ProjectRootPath: undefined -Info 61 [16:02:35.000] Projects: /user/username/projects/myproject/dependency/tsconfig.json -Info 61 [16:02:36.000] FileName: /user/username/projects/myproject/random/random.ts ProjectRootPath: undefined -Info 61 [16:02:37.000] Projects: /user/username/projects/myproject/random/tsconfig.json +Info 61 [00:02:32.000] ----------------------------------------------- +Info 61 [00:02:33.000] Open files: +Info 61 [00:02:34.000] FileName: /user/username/projects/myproject/dependency/FnS.ts ProjectRootPath: undefined +Info 61 [00:02:35.000] Projects: /user/username/projects/myproject/dependency/tsconfig.json +Info 61 [00:02:36.000] FileName: /user/username/projects/myproject/random/random.ts ProjectRootPath: undefined +Info 61 [00:02:37.000] Projects: /user/username/projects/myproject/random/tsconfig.json After request PolledWatches:: @@ -1108,11 +1108,11 @@ FsWatchesRecursive:: /user/username/projects/myproject/random: {} -Info 61 [16:02:38.000] response: +Info 61 [00:02:38.000] response: { "responseRequired": false } -Info 62 [16:02:39.000] request: +Info 62 [00:02:39.000] request: { "seq": 0, "type": "request", @@ -1149,18 +1149,18 @@ FsWatchesRecursive:: /user/username/projects/myproject/random: {} -Info 63 [16:02:40.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/dependency/FnS.ts 500 undefined WatchType: Closed Script info -Info 64 [16:02:41.000] Project '/user/username/projects/myproject/dependency/tsconfig.json' (Configured) -Info 64 [16:02:42.000] Files (2) +Info 63 [00:02:40.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/dependency/FnS.ts 500 undefined WatchType: Closed Script info +Info 64 [00:02:41.000] Project '/user/username/projects/myproject/dependency/tsconfig.json' (Configured) +Info 64 [00:02:42.000] Files (2) -Info 64 [16:02:43.000] ----------------------------------------------- -Info 64 [16:02:44.000] Project '/user/username/projects/myproject/random/tsconfig.json' (Configured) -Info 64 [16:02:45.000] Files (2) +Info 64 [00:02:43.000] ----------------------------------------------- +Info 64 [00:02:44.000] Project '/user/username/projects/myproject/random/tsconfig.json' (Configured) +Info 64 [00:02:45.000] Files (2) -Info 64 [16:02:46.000] ----------------------------------------------- -Info 64 [16:02:47.000] Open files: -Info 64 [16:02:48.000] FileName: /user/username/projects/myproject/random/random.ts ProjectRootPath: undefined -Info 64 [16:02:49.000] Projects: /user/username/projects/myproject/random/tsconfig.json +Info 64 [00:02:46.000] ----------------------------------------------- +Info 64 [00:02:47.000] Open files: +Info 64 [00:02:48.000] FileName: /user/username/projects/myproject/random/random.ts ProjectRootPath: undefined +Info 64 [00:02:49.000] Projects: /user/username/projects/myproject/random/tsconfig.json After request PolledWatches:: @@ -1191,11 +1191,11 @@ FsWatchesRecursive:: /user/username/projects/myproject/random: {} -Info 64 [16:02:50.000] response: +Info 64 [00:02:50.000] response: { "responseRequired": false } -Info 65 [16:02:51.000] request: +Info 65 [00:02:51.000] request: { "seq": 0, "type": "request", @@ -1234,16 +1234,16 @@ FsWatchesRecursive:: /user/username/projects/myproject/random: {} -Info 66 [16:02:52.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/random/random.ts 500 undefined WatchType: Closed Script info -Info 67 [16:02:53.000] Project '/user/username/projects/myproject/dependency/tsconfig.json' (Configured) -Info 67 [16:02:54.000] Files (2) +Info 66 [00:02:52.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/random/random.ts 500 undefined WatchType: Closed Script info +Info 67 [00:02:53.000] Project '/user/username/projects/myproject/dependency/tsconfig.json' (Configured) +Info 67 [00:02:54.000] Files (2) -Info 67 [16:02:55.000] ----------------------------------------------- -Info 67 [16:02:56.000] Project '/user/username/projects/myproject/random/tsconfig.json' (Configured) -Info 67 [16:02:57.000] Files (2) +Info 67 [00:02:55.000] ----------------------------------------------- +Info 67 [00:02:56.000] Project '/user/username/projects/myproject/random/tsconfig.json' (Configured) +Info 67 [00:02:57.000] Files (2) -Info 67 [16:02:58.000] ----------------------------------------------- -Info 67 [16:02:59.000] Open files: +Info 67 [00:02:58.000] ----------------------------------------------- +Info 67 [00:02:59.000] Open files: After request PolledWatches:: @@ -1276,11 +1276,11 @@ FsWatchesRecursive:: /user/username/projects/myproject/random: {} -Info 67 [16:03:00.000] response: +Info 67 [00:03:00.000] response: { "responseRequired": false } -Info 68 [16:03:01.000] request: +Info 68 [00:03:01.000] request: { "seq": 0, "type": "request", @@ -1321,12 +1321,12 @@ FsWatchesRecursive:: /user/username/projects/myproject/random: {} -Info 69 [16:03:02.000] FileWatcher:: Close:: WatchInfo: /user/username/projects/myproject/random/random.ts 500 undefined WatchType: Closed Script info -Info 70 [16:03:03.000] Search path: /user/username/projects/myproject/random -Info 71 [16:03:04.000] For info: /user/username/projects/myproject/random/random.ts :: Config file name: /user/username/projects/myproject/random/tsconfig.json -Info 72 [16:03:05.000] `remove Project:: -Info 73 [16:03:06.000] Project '/user/username/projects/myproject/dependency/tsconfig.json' (Configured) -Info 74 [16:03:07.000] Files (2) +Info 69 [00:03:02.000] FileWatcher:: Close:: WatchInfo: /user/username/projects/myproject/random/random.ts 500 undefined WatchType: Closed Script info +Info 70 [00:03:03.000] Search path: /user/username/projects/myproject/random +Info 71 [00:03:04.000] For info: /user/username/projects/myproject/random/random.ts :: Config file name: /user/username/projects/myproject/random/tsconfig.json +Info 72 [00:03:05.000] `remove Project:: +Info 73 [00:03:06.000] Project '/user/username/projects/myproject/dependency/tsconfig.json' (Configured) +Info 74 [00:03:07.000] Files (2) /a/lib/lib.d.ts /user/username/projects/myproject/dependency/FnS.ts @@ -1336,24 +1336,24 @@ Info 74 [16:03:07.000] Files (2) FnS.ts Matched by default include pattern '**/*' -Info 75 [16:03:08.000] ----------------------------------------------- -Info 76 [16:03:09.000] DirectoryWatcher:: Close:: WatchInfo: /user/username/projects/myproject/dependency 1 undefined Config: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Wild card directory -Info 77 [16:03:10.000] 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 78 [16:03:11.000] FileWatcher:: Close:: WatchInfo: /user/username/projects/myproject/dependency/tsconfig.json 2000 undefined Project: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Config file -Info 79 [16:03:12.000] 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 80 [16:03:13.000] 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 81 [16:03:14.000] DirectoryWatcher:: Close:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Type roots -Info 82 [16:03:15.000] 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 83 [16:03:16.000] FileWatcher:: Close:: WatchInfo: /user/username/projects/myproject/dependency/FnS.ts 500 undefined WatchType: Closed Script info -Info 84 [16:03:17.000] FileWatcher:: Close:: WatchInfo: /user/username/projects/myproject/decls/FnS.d.ts 500 undefined WatchType: Closed Script info -Info 85 [16:03:18.000] FileWatcher:: Close:: WatchInfo: /user/username/projects/myproject/decls/FnS.d.ts.map 500 undefined WatchType: Closed Script info -Info 86 [16:03:19.000] Project '/user/username/projects/myproject/random/tsconfig.json' (Configured) -Info 86 [16:03:20.000] Files (2) - -Info 86 [16:03:21.000] ----------------------------------------------- -Info 86 [16:03:22.000] Open files: -Info 86 [16:03:23.000] FileName: /user/username/projects/myproject/random/random.ts ProjectRootPath: undefined -Info 86 [16:03:24.000] Projects: /user/username/projects/myproject/random/tsconfig.json +Info 75 [00:03:08.000] ----------------------------------------------- +Info 76 [00:03:09.000] DirectoryWatcher:: Close:: WatchInfo: /user/username/projects/myproject/dependency 1 undefined Config: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Wild card directory +Info 77 [00:03:10.000] 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 78 [00:03:11.000] FileWatcher:: Close:: WatchInfo: /user/username/projects/myproject/dependency/tsconfig.json 2000 undefined Project: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Config file +Info 79 [00:03:12.000] 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 80 [00:03:13.000] 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 81 [00:03:14.000] DirectoryWatcher:: Close:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Type roots +Info 82 [00:03:15.000] 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 83 [00:03:16.000] FileWatcher:: Close:: WatchInfo: /user/username/projects/myproject/dependency/FnS.ts 500 undefined WatchType: Closed Script info +Info 84 [00:03:17.000] FileWatcher:: Close:: WatchInfo: /user/username/projects/myproject/decls/FnS.d.ts 500 undefined WatchType: Closed Script info +Info 85 [00:03:18.000] FileWatcher:: Close:: WatchInfo: /user/username/projects/myproject/decls/FnS.d.ts.map 500 undefined WatchType: Closed Script info +Info 86 [00:03:19.000] Project '/user/username/projects/myproject/random/tsconfig.json' (Configured) +Info 86 [00:03:20.000] Files (2) + +Info 86 [00:03:21.000] ----------------------------------------------- +Info 86 [00:03:22.000] Open files: +Info 86 [00:03:23.000] FileName: /user/username/projects/myproject/random/random.ts ProjectRootPath: undefined +Info 86 [00:03:24.000] Projects: /user/username/projects/myproject/random/tsconfig.json After request PolledWatches:: @@ -1372,7 +1372,7 @@ FsWatchesRecursive:: /user/username/projects/myproject/random: {} -Info 86 [16:03:25.000] response: +Info 86 [00:03:25.000] response: { "responseRequired": false } \ No newline at end of file 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 f799eb7950b2d..bd245a1593880 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 @@ -1,5 +1,5 @@ -Info 0 [16:01:00.000] Provided types map file "/a/lib/typesMap.json" doesn't exist -Info 1 [16:01:01.000] request: +Info 0 [00:01:00.000] Provided types map file "/a/lib/typesMap.json" doesn't exist +Info 1 [00:01:01.000] request: { "seq": 0, "type": "request", @@ -200,11 +200,11 @@ FsWatches:: FsWatchesRecursive:: -Info 2 [16:01:02.000] Search path: /user/username/projects/myproject/dependency -Info 3 [16:01:03.000] For info: /user/username/projects/myproject/dependency/FnS.ts :: Config file name: /user/username/projects/myproject/dependency/tsconfig.json -Info 4 [16:01:04.000] Creating configuration project /user/username/projects/myproject/dependency/tsconfig.json -Info 5 [16:01:05.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/dependency/tsconfig.json 2000 undefined Project: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Config file -Info 6 [16:01:06.000] Config: /user/username/projects/myproject/dependency/tsconfig.json : { +Info 2 [00:01:02.000] Search path: /user/username/projects/myproject/dependency +Info 3 [00:01:03.000] For info: /user/username/projects/myproject/dependency/FnS.ts :: Config file name: /user/username/projects/myproject/dependency/tsconfig.json +Info 4 [00:01:04.000] Creating configuration project /user/username/projects/myproject/dependency/tsconfig.json +Info 5 [00:01:05.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/dependency/tsconfig.json 2000 undefined Project: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Config file +Info 6 [00:01:06.000] Config: /user/username/projects/myproject/dependency/tsconfig.json : { "rootNames": [ "/user/username/projects/myproject/dependency/FnS.ts" ], @@ -215,18 +215,18 @@ Info 6 [16:01:06.000] Config: /user/username/projects/myproject/dependency/ts "configFilePath": "/user/username/projects/myproject/dependency/tsconfig.json" } } -Info 7 [16:01:07.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/dependency 1 undefined Config: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Wild card directory -Info 8 [16:01:08.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/dependency 1 undefined Config: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Wild card directory -Info 9 [16:01:09.000] Plugins were requested but not running in environment that supports 'require'. Nothing will be loaded -Info 10 [16:01:10.000] Starting updateGraphWorker: Project: /user/username/projects/myproject/dependency/tsconfig.json -Info 11 [16:01:11.000] FileWatcher:: Added:: WatchInfo: /a/lib/lib.d.ts 500 undefined WatchType: Closed Script info -Info 12 [16:01:12.000] 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 13 [16:01:13.000] 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 14 [16:01:14.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Type roots -Info 15 [16:01:15.000] 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 16 [16:01:16.000] Finishing updateGraphWorker: Project: /user/username/projects/myproject/dependency/tsconfig.json Version: 1 structureChanged: true structureIsReused:: Not Elapsed:: *ms -Info 17 [16:01:17.000] Project '/user/username/projects/myproject/dependency/tsconfig.json' (Configured) -Info 18 [16:01:18.000] Files (2) +Info 7 [00:01:07.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/dependency 1 undefined Config: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Wild card directory +Info 8 [00:01:08.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/dependency 1 undefined Config: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Wild card directory +Info 9 [00:01:09.000] Plugins were requested but not running in environment that supports 'require'. Nothing will be loaded +Info 10 [00:01:10.000] Starting updateGraphWorker: Project: /user/username/projects/myproject/dependency/tsconfig.json +Info 11 [00:01:11.000] FileWatcher:: Added:: WatchInfo: /a/lib/lib.d.ts 500 undefined WatchType: Closed Script info +Info 12 [00:01:12.000] 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 13 [00:01:13.000] 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 14 [00:01:14.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Type roots +Info 15 [00:01:15.000] 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 16 [00:01:16.000] Finishing updateGraphWorker: Project: /user/username/projects/myproject/dependency/tsconfig.json Version: 1 structureChanged: true structureIsReused:: Not Elapsed:: *ms +Info 17 [00:01:17.000] Project '/user/username/projects/myproject/dependency/tsconfig.json' (Configured) +Info 18 [00:01:18.000] Files (2) /a/lib/lib.d.ts /user/username/projects/myproject/dependency/FnS.ts @@ -236,16 +236,16 @@ Info 18 [16:01:18.000] Files (2) FnS.ts Matched by default include pattern '**/*' -Info 19 [16:01:19.000] ----------------------------------------------- -Info 20 [16:01:20.000] Search path: /user/username/projects/myproject/dependency -Info 21 [16:01:21.000] For info: /user/username/projects/myproject/dependency/tsconfig.json :: No config files found. -Info 22 [16:01:22.000] Project '/user/username/projects/myproject/dependency/tsconfig.json' (Configured) -Info 22 [16:01:23.000] Files (2) +Info 19 [00:01:19.000] ----------------------------------------------- +Info 20 [00:01:20.000] Search path: /user/username/projects/myproject/dependency +Info 21 [00:01:21.000] For info: /user/username/projects/myproject/dependency/tsconfig.json :: No config files found. +Info 22 [00:01:22.000] Project '/user/username/projects/myproject/dependency/tsconfig.json' (Configured) +Info 22 [00:01:23.000] Files (2) -Info 22 [16:01:24.000] ----------------------------------------------- -Info 22 [16:01:25.000] Open files: -Info 22 [16:01:26.000] FileName: /user/username/projects/myproject/dependency/FnS.ts ProjectRootPath: undefined -Info 22 [16:01:27.000] Projects: /user/username/projects/myproject/dependency/tsconfig.json +Info 22 [00:01:24.000] ----------------------------------------------- +Info 22 [00:01:25.000] Open files: +Info 22 [00:01:26.000] FileName: /user/username/projects/myproject/dependency/FnS.ts ProjectRootPath: undefined +Info 22 [00:01:27.000] Projects: /user/username/projects/myproject/dependency/tsconfig.json After request PolledWatches:: @@ -264,11 +264,11 @@ FsWatchesRecursive:: /user/username/projects/myproject/dependency: {} -Info 22 [16:01:28.000] response: +Info 22 [00:01:28.000] response: { "responseRequired": false } -Info 23 [16:01:29.000] request: +Info 23 [00:01:29.000] request: { "seq": 0, "type": "request", @@ -295,11 +295,11 @@ FsWatchesRecursive:: /user/username/projects/myproject/dependency: {} -Info 24 [16:01:30.000] Search path: /user/username/projects/myproject/random -Info 25 [16:01:31.000] For info: /user/username/projects/myproject/random/random.ts :: Config file name: /user/username/projects/myproject/random/tsconfig.json -Info 26 [16:01:32.000] Creating configuration project /user/username/projects/myproject/random/tsconfig.json -Info 27 [16:01:33.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/random/tsconfig.json 2000 undefined Project: /user/username/projects/myproject/random/tsconfig.json WatchType: Config file -Info 28 [16:01:34.000] Config: /user/username/projects/myproject/random/tsconfig.json : { +Info 24 [00:01:30.000] Search path: /user/username/projects/myproject/random +Info 25 [00:01:31.000] For info: /user/username/projects/myproject/random/random.ts :: Config file name: /user/username/projects/myproject/random/tsconfig.json +Info 26 [00:01:32.000] Creating configuration project /user/username/projects/myproject/random/tsconfig.json +Info 27 [00:01:33.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/random/tsconfig.json 2000 undefined Project: /user/username/projects/myproject/random/tsconfig.json WatchType: Config file +Info 28 [00:01:34.000] Config: /user/username/projects/myproject/random/tsconfig.json : { "rootNames": [ "/user/username/projects/myproject/random/random.ts" ], @@ -307,17 +307,17 @@ Info 28 [16:01:34.000] Config: /user/username/projects/myproject/random/tsconf "configFilePath": "/user/username/projects/myproject/random/tsconfig.json" } } -Info 29 [16:01:35.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/random 1 undefined Config: /user/username/projects/myproject/random/tsconfig.json WatchType: Wild card directory -Info 30 [16:01:36.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/random 1 undefined Config: /user/username/projects/myproject/random/tsconfig.json WatchType: Wild card directory -Info 31 [16:01:37.000] Plugins were requested but not running in environment that supports 'require'. Nothing will be loaded -Info 32 [16:01:38.000] Starting updateGraphWorker: Project: /user/username/projects/myproject/random/tsconfig.json -Info 33 [16:01:39.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/random/node_modules/@types 1 undefined Project: /user/username/projects/myproject/random/tsconfig.json WatchType: Type roots -Info 34 [16:01:40.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/random/node_modules/@types 1 undefined Project: /user/username/projects/myproject/random/tsconfig.json WatchType: Type roots -Info 35 [16:01:41.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/random/tsconfig.json WatchType: Type roots -Info 36 [16:01:42.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/random/tsconfig.json WatchType: Type roots -Info 37 [16:01:43.000] Finishing updateGraphWorker: Project: /user/username/projects/myproject/random/tsconfig.json Version: 1 structureChanged: true structureIsReused:: Not Elapsed:: *ms -Info 38 [16:01:44.000] Project '/user/username/projects/myproject/random/tsconfig.json' (Configured) -Info 39 [16:01:45.000] Files (2) +Info 29 [00:01:35.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/random 1 undefined Config: /user/username/projects/myproject/random/tsconfig.json WatchType: Wild card directory +Info 30 [00:01:36.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/random 1 undefined Config: /user/username/projects/myproject/random/tsconfig.json WatchType: Wild card directory +Info 31 [00:01:37.000] Plugins were requested but not running in environment that supports 'require'. Nothing will be loaded +Info 32 [00:01:38.000] Starting updateGraphWorker: Project: /user/username/projects/myproject/random/tsconfig.json +Info 33 [00:01:39.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/random/node_modules/@types 1 undefined Project: /user/username/projects/myproject/random/tsconfig.json WatchType: Type roots +Info 34 [00:01:40.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/random/node_modules/@types 1 undefined Project: /user/username/projects/myproject/random/tsconfig.json WatchType: Type roots +Info 35 [00:01:41.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/random/tsconfig.json WatchType: Type roots +Info 36 [00:01:42.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/random/tsconfig.json WatchType: Type roots +Info 37 [00:01:43.000] Finishing updateGraphWorker: Project: /user/username/projects/myproject/random/tsconfig.json Version: 1 structureChanged: true structureIsReused:: Not Elapsed:: *ms +Info 38 [00:01:44.000] Project '/user/username/projects/myproject/random/tsconfig.json' (Configured) +Info 39 [00:01:45.000] Files (2) /a/lib/lib.d.ts /user/username/projects/myproject/random/random.ts @@ -327,20 +327,20 @@ Info 39 [16:01:45.000] Files (2) random.ts Matched by default include pattern '**/*' -Info 40 [16:01:46.000] ----------------------------------------------- -Info 41 [16:01:47.000] Project '/user/username/projects/myproject/dependency/tsconfig.json' (Configured) -Info 41 [16:01:48.000] Files (2) +Info 40 [00:01:46.000] ----------------------------------------------- +Info 41 [00:01:47.000] Project '/user/username/projects/myproject/dependency/tsconfig.json' (Configured) +Info 41 [00:01:48.000] Files (2) -Info 41 [16:01:49.000] ----------------------------------------------- -Info 41 [16:01:50.000] Project '/user/username/projects/myproject/random/tsconfig.json' (Configured) -Info 41 [16:01:51.000] Files (2) +Info 41 [00:01:49.000] ----------------------------------------------- +Info 41 [00:01:50.000] Project '/user/username/projects/myproject/random/tsconfig.json' (Configured) +Info 41 [00:01:51.000] Files (2) -Info 41 [16:01:52.000] ----------------------------------------------- -Info 41 [16:01:53.000] Open files: -Info 41 [16:01:54.000] FileName: /user/username/projects/myproject/dependency/FnS.ts ProjectRootPath: undefined -Info 41 [16:01:55.000] Projects: /user/username/projects/myproject/dependency/tsconfig.json -Info 41 [16:01:56.000] FileName: /user/username/projects/myproject/random/random.ts ProjectRootPath: undefined -Info 41 [16:01:57.000] Projects: /user/username/projects/myproject/random/tsconfig.json +Info 41 [00:01:52.000] ----------------------------------------------- +Info 41 [00:01:53.000] Open files: +Info 41 [00:01:54.000] FileName: /user/username/projects/myproject/dependency/FnS.ts ProjectRootPath: undefined +Info 41 [00:01:55.000] Projects: /user/username/projects/myproject/dependency/tsconfig.json +Info 41 [00:01:56.000] FileName: /user/username/projects/myproject/random/random.ts ProjectRootPath: undefined +Info 41 [00:01:57.000] Projects: /user/username/projects/myproject/random/tsconfig.json After request PolledWatches:: @@ -365,11 +365,11 @@ FsWatchesRecursive:: /user/username/projects/myproject/random: {} -Info 41 [16:01:58.000] response: +Info 41 [00:01:58.000] response: { "responseRequired": false } -Info 42 [16:01:59.000] request: +Info 42 [00:01:59.000] request: { "command": "rename", "arguments": { @@ -404,8 +404,8 @@ FsWatchesRecursive:: /user/username/projects/myproject/random: {} -Info 43 [16:02:00.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/decls/FnS.d.ts 500 undefined WatchType: Closed Script info -Info 44 [16:02:01.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/decls/FnS.d.ts.map 500 undefined WatchType: Closed Script info +Info 43 [00:02:00.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/decls/FnS.d.ts 500 undefined WatchType: Closed Script info +Info 44 [00:02:01.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/decls/FnS.d.ts.map 500 undefined WatchType: Closed Script info After request PolledWatches:: @@ -434,7 +434,7 @@ FsWatchesRecursive:: /user/username/projects/myproject/random: {} -Info 45 [16:02:02.000] response: +Info 45 [00:02:02.000] response: { "response": { "info": { @@ -482,7 +482,7 @@ Info 45 [16:02:02.000] response: }, "responseRequired": true } -Info 46 [16:02:03.000] request: +Info 46 [00:02:03.000] request: { "command": "change", "arguments": { @@ -552,7 +552,7 @@ FsWatchesRecursive:: /user/username/projects/myproject/random: {} -Info 47 [16:02:04.000] response: +Info 47 [00:02:04.000] response: { "responseRequired": false } @@ -612,7 +612,7 @@ FsWatchesRecursive:: /user/username/projects/myproject/random: {} -Info 48 [16:02:05.000] request: +Info 48 [00:02:05.000] request: { "command": "rename", "arguments": { @@ -651,9 +651,9 @@ FsWatchesRecursive:: /user/username/projects/myproject/random: {} -Info 49 [16:02:06.000] Starting updateGraphWorker: Project: /user/username/projects/myproject/dependency/tsconfig.json -Info 50 [16:02:07.000] Finishing updateGraphWorker: Project: /user/username/projects/myproject/dependency/tsconfig.json Version: 2 structureChanged: false structureIsReused:: Completely Elapsed:: *ms -Info 51 [16:02:08.000] Different program with same set of files +Info 49 [00:02:06.000] Starting updateGraphWorker: Project: /user/username/projects/myproject/dependency/tsconfig.json +Info 50 [00:02:07.000] Finishing updateGraphWorker: Project: /user/username/projects/myproject/dependency/tsconfig.json Version: 2 structureChanged: false structureIsReused:: Completely Elapsed:: *ms +Info 51 [00:02:08.000] Different program with same set of files After request PolledWatches:: @@ -682,7 +682,7 @@ FsWatchesRecursive:: /user/username/projects/myproject/random: {} -Info 52 [16:02:09.000] response: +Info 52 [00:02:09.000] response: { "response": { "info": { @@ -730,7 +730,7 @@ Info 52 [16:02:09.000] response: }, "responseRequired": true } -Info 53 [16:02:10.000] request: +Info 53 [00:02:10.000] request: { "command": "rename", "arguments": { @@ -797,7 +797,7 @@ FsWatchesRecursive:: /user/username/projects/myproject/random: {} -Info 54 [16:02:11.000] response: +Info 54 [00:02:11.000] response: { "response": { "info": { @@ -845,7 +845,7 @@ Info 54 [16:02:11.000] response: }, "responseRequired": true } -Info 55 [16:02:12.000] request: +Info 55 [00:02:12.000] request: { "command": "rename", "arguments": { @@ -912,7 +912,7 @@ FsWatchesRecursive:: /user/username/projects/myproject/random: {} -Info 56 [16:02:13.000] response: +Info 56 [00:02:13.000] response: { "response": { "info": { @@ -960,7 +960,7 @@ Info 56 [16:02:13.000] response: }, "responseRequired": true } -Info 57 [16:02:14.000] request: +Info 57 [00:02:14.000] request: { "command": "rename", "arguments": { @@ -1027,7 +1027,7 @@ FsWatchesRecursive:: /user/username/projects/myproject/random: {} -Info 58 [16:02:15.000] response: +Info 58 [00:02:15.000] response: { "response": { "info": { @@ -1075,7 +1075,7 @@ Info 58 [16:02:15.000] response: }, "responseRequired": true } -Info 59 [16:02:16.000] request: +Info 59 [00:02:16.000] request: { "command": "rename", "arguments": { @@ -1142,7 +1142,7 @@ FsWatchesRecursive:: /user/username/projects/myproject/random: {} -Info 60 [16:02:17.000] response: +Info 60 [00:02:17.000] response: { "response": { "info": { 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 3b44a21dd70a3..dd514856d07f8 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 @@ -1,5 +1,5 @@ -Info 0 [16:01:00.000] Provided types map file "/a/lib/typesMap.json" doesn't exist -Info 1 [16:01:01.000] request: +Info 0 [00:01:00.000] Provided types map file "/a/lib/typesMap.json" doesn't exist +Info 1 [00:01:01.000] request: { "seq": 0, "type": "request", @@ -200,11 +200,11 @@ FsWatches:: FsWatchesRecursive:: -Info 2 [16:01:02.000] Search path: /user/username/projects/myproject/dependency -Info 3 [16:01:03.000] For info: /user/username/projects/myproject/dependency/FnS.ts :: Config file name: /user/username/projects/myproject/dependency/tsconfig.json -Info 4 [16:01:04.000] Creating configuration project /user/username/projects/myproject/dependency/tsconfig.json -Info 5 [16:01:05.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/dependency/tsconfig.json 2000 undefined Project: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Config file -Info 6 [16:01:06.000] Config: /user/username/projects/myproject/dependency/tsconfig.json : { +Info 2 [00:01:02.000] Search path: /user/username/projects/myproject/dependency +Info 3 [00:01:03.000] For info: /user/username/projects/myproject/dependency/FnS.ts :: Config file name: /user/username/projects/myproject/dependency/tsconfig.json +Info 4 [00:01:04.000] Creating configuration project /user/username/projects/myproject/dependency/tsconfig.json +Info 5 [00:01:05.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/dependency/tsconfig.json 2000 undefined Project: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Config file +Info 6 [00:01:06.000] Config: /user/username/projects/myproject/dependency/tsconfig.json : { "rootNames": [ "/user/username/projects/myproject/dependency/FnS.ts" ], @@ -215,18 +215,18 @@ Info 6 [16:01:06.000] Config: /user/username/projects/myproject/dependency/ts "configFilePath": "/user/username/projects/myproject/dependency/tsconfig.json" } } -Info 7 [16:01:07.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/dependency 1 undefined Config: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Wild card directory -Info 8 [16:01:08.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/dependency 1 undefined Config: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Wild card directory -Info 9 [16:01:09.000] Plugins were requested but not running in environment that supports 'require'. Nothing will be loaded -Info 10 [16:01:10.000] Starting updateGraphWorker: Project: /user/username/projects/myproject/dependency/tsconfig.json -Info 11 [16:01:11.000] FileWatcher:: Added:: WatchInfo: /a/lib/lib.d.ts 500 undefined WatchType: Closed Script info -Info 12 [16:01:12.000] 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 13 [16:01:13.000] 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 14 [16:01:14.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Type roots -Info 15 [16:01:15.000] 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 16 [16:01:16.000] Finishing updateGraphWorker: Project: /user/username/projects/myproject/dependency/tsconfig.json Version: 1 structureChanged: true structureIsReused:: Not Elapsed:: *ms -Info 17 [16:01:17.000] Project '/user/username/projects/myproject/dependency/tsconfig.json' (Configured) -Info 18 [16:01:18.000] Files (2) +Info 7 [00:01:07.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/dependency 1 undefined Config: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Wild card directory +Info 8 [00:01:08.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/dependency 1 undefined Config: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Wild card directory +Info 9 [00:01:09.000] Plugins were requested but not running in environment that supports 'require'. Nothing will be loaded +Info 10 [00:01:10.000] Starting updateGraphWorker: Project: /user/username/projects/myproject/dependency/tsconfig.json +Info 11 [00:01:11.000] FileWatcher:: Added:: WatchInfo: /a/lib/lib.d.ts 500 undefined WatchType: Closed Script info +Info 12 [00:01:12.000] 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 13 [00:01:13.000] 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 14 [00:01:14.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Type roots +Info 15 [00:01:15.000] 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 16 [00:01:16.000] Finishing updateGraphWorker: Project: /user/username/projects/myproject/dependency/tsconfig.json Version: 1 structureChanged: true structureIsReused:: Not Elapsed:: *ms +Info 17 [00:01:17.000] Project '/user/username/projects/myproject/dependency/tsconfig.json' (Configured) +Info 18 [00:01:18.000] Files (2) /a/lib/lib.d.ts /user/username/projects/myproject/dependency/FnS.ts @@ -236,16 +236,16 @@ Info 18 [16:01:18.000] Files (2) FnS.ts Matched by default include pattern '**/*' -Info 19 [16:01:19.000] ----------------------------------------------- -Info 20 [16:01:20.000] Search path: /user/username/projects/myproject/dependency -Info 21 [16:01:21.000] For info: /user/username/projects/myproject/dependency/tsconfig.json :: No config files found. -Info 22 [16:01:22.000] Project '/user/username/projects/myproject/dependency/tsconfig.json' (Configured) -Info 22 [16:01:23.000] Files (2) +Info 19 [00:01:19.000] ----------------------------------------------- +Info 20 [00:01:20.000] Search path: /user/username/projects/myproject/dependency +Info 21 [00:01:21.000] For info: /user/username/projects/myproject/dependency/tsconfig.json :: No config files found. +Info 22 [00:01:22.000] Project '/user/username/projects/myproject/dependency/tsconfig.json' (Configured) +Info 22 [00:01:23.000] Files (2) -Info 22 [16:01:24.000] ----------------------------------------------- -Info 22 [16:01:25.000] Open files: -Info 22 [16:01:26.000] FileName: /user/username/projects/myproject/dependency/FnS.ts ProjectRootPath: undefined -Info 22 [16:01:27.000] Projects: /user/username/projects/myproject/dependency/tsconfig.json +Info 22 [00:01:24.000] ----------------------------------------------- +Info 22 [00:01:25.000] Open files: +Info 22 [00:01:26.000] FileName: /user/username/projects/myproject/dependency/FnS.ts ProjectRootPath: undefined +Info 22 [00:01:27.000] Projects: /user/username/projects/myproject/dependency/tsconfig.json After request PolledWatches:: @@ -264,11 +264,11 @@ FsWatchesRecursive:: /user/username/projects/myproject/dependency: {} -Info 22 [16:01:28.000] response: +Info 22 [00:01:28.000] response: { "responseRequired": false } -Info 23 [16:01:29.000] request: +Info 23 [00:01:29.000] request: { "seq": 0, "type": "request", @@ -295,11 +295,11 @@ FsWatchesRecursive:: /user/username/projects/myproject/dependency: {} -Info 24 [16:01:30.000] Search path: /user/username/projects/myproject/random -Info 25 [16:01:31.000] For info: /user/username/projects/myproject/random/random.ts :: Config file name: /user/username/projects/myproject/random/tsconfig.json -Info 26 [16:01:32.000] Creating configuration project /user/username/projects/myproject/random/tsconfig.json -Info 27 [16:01:33.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/random/tsconfig.json 2000 undefined Project: /user/username/projects/myproject/random/tsconfig.json WatchType: Config file -Info 28 [16:01:34.000] Config: /user/username/projects/myproject/random/tsconfig.json : { +Info 24 [00:01:30.000] Search path: /user/username/projects/myproject/random +Info 25 [00:01:31.000] For info: /user/username/projects/myproject/random/random.ts :: Config file name: /user/username/projects/myproject/random/tsconfig.json +Info 26 [00:01:32.000] Creating configuration project /user/username/projects/myproject/random/tsconfig.json +Info 27 [00:01:33.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/random/tsconfig.json 2000 undefined Project: /user/username/projects/myproject/random/tsconfig.json WatchType: Config file +Info 28 [00:01:34.000] Config: /user/username/projects/myproject/random/tsconfig.json : { "rootNames": [ "/user/username/projects/myproject/random/random.ts" ], @@ -307,17 +307,17 @@ Info 28 [16:01:34.000] Config: /user/username/projects/myproject/random/tsconf "configFilePath": "/user/username/projects/myproject/random/tsconfig.json" } } -Info 29 [16:01:35.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/random 1 undefined Config: /user/username/projects/myproject/random/tsconfig.json WatchType: Wild card directory -Info 30 [16:01:36.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/random 1 undefined Config: /user/username/projects/myproject/random/tsconfig.json WatchType: Wild card directory -Info 31 [16:01:37.000] Plugins were requested but not running in environment that supports 'require'. Nothing will be loaded -Info 32 [16:01:38.000] Starting updateGraphWorker: Project: /user/username/projects/myproject/random/tsconfig.json -Info 33 [16:01:39.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/random/node_modules/@types 1 undefined Project: /user/username/projects/myproject/random/tsconfig.json WatchType: Type roots -Info 34 [16:01:40.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/random/node_modules/@types 1 undefined Project: /user/username/projects/myproject/random/tsconfig.json WatchType: Type roots -Info 35 [16:01:41.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/random/tsconfig.json WatchType: Type roots -Info 36 [16:01:42.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/random/tsconfig.json WatchType: Type roots -Info 37 [16:01:43.000] Finishing updateGraphWorker: Project: /user/username/projects/myproject/random/tsconfig.json Version: 1 structureChanged: true structureIsReused:: Not Elapsed:: *ms -Info 38 [16:01:44.000] Project '/user/username/projects/myproject/random/tsconfig.json' (Configured) -Info 39 [16:01:45.000] Files (2) +Info 29 [00:01:35.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/random 1 undefined Config: /user/username/projects/myproject/random/tsconfig.json WatchType: Wild card directory +Info 30 [00:01:36.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/random 1 undefined Config: /user/username/projects/myproject/random/tsconfig.json WatchType: Wild card directory +Info 31 [00:01:37.000] Plugins were requested but not running in environment that supports 'require'. Nothing will be loaded +Info 32 [00:01:38.000] Starting updateGraphWorker: Project: /user/username/projects/myproject/random/tsconfig.json +Info 33 [00:01:39.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/random/node_modules/@types 1 undefined Project: /user/username/projects/myproject/random/tsconfig.json WatchType: Type roots +Info 34 [00:01:40.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/random/node_modules/@types 1 undefined Project: /user/username/projects/myproject/random/tsconfig.json WatchType: Type roots +Info 35 [00:01:41.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/random/tsconfig.json WatchType: Type roots +Info 36 [00:01:42.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/random/tsconfig.json WatchType: Type roots +Info 37 [00:01:43.000] Finishing updateGraphWorker: Project: /user/username/projects/myproject/random/tsconfig.json Version: 1 structureChanged: true structureIsReused:: Not Elapsed:: *ms +Info 38 [00:01:44.000] Project '/user/username/projects/myproject/random/tsconfig.json' (Configured) +Info 39 [00:01:45.000] Files (2) /a/lib/lib.d.ts /user/username/projects/myproject/random/random.ts @@ -327,20 +327,20 @@ Info 39 [16:01:45.000] Files (2) random.ts Matched by default include pattern '**/*' -Info 40 [16:01:46.000] ----------------------------------------------- -Info 41 [16:01:47.000] Project '/user/username/projects/myproject/dependency/tsconfig.json' (Configured) -Info 41 [16:01:48.000] Files (2) +Info 40 [00:01:46.000] ----------------------------------------------- +Info 41 [00:01:47.000] Project '/user/username/projects/myproject/dependency/tsconfig.json' (Configured) +Info 41 [00:01:48.000] Files (2) -Info 41 [16:01:49.000] ----------------------------------------------- -Info 41 [16:01:50.000] Project '/user/username/projects/myproject/random/tsconfig.json' (Configured) -Info 41 [16:01:51.000] Files (2) +Info 41 [00:01:49.000] ----------------------------------------------- +Info 41 [00:01:50.000] Project '/user/username/projects/myproject/random/tsconfig.json' (Configured) +Info 41 [00:01:51.000] Files (2) -Info 41 [16:01:52.000] ----------------------------------------------- -Info 41 [16:01:53.000] Open files: -Info 41 [16:01:54.000] FileName: /user/username/projects/myproject/dependency/FnS.ts ProjectRootPath: undefined -Info 41 [16:01:55.000] Projects: /user/username/projects/myproject/dependency/tsconfig.json -Info 41 [16:01:56.000] FileName: /user/username/projects/myproject/random/random.ts ProjectRootPath: undefined -Info 41 [16:01:57.000] Projects: /user/username/projects/myproject/random/tsconfig.json +Info 41 [00:01:52.000] ----------------------------------------------- +Info 41 [00:01:53.000] Open files: +Info 41 [00:01:54.000] FileName: /user/username/projects/myproject/dependency/FnS.ts ProjectRootPath: undefined +Info 41 [00:01:55.000] Projects: /user/username/projects/myproject/dependency/tsconfig.json +Info 41 [00:01:56.000] FileName: /user/username/projects/myproject/random/random.ts ProjectRootPath: undefined +Info 41 [00:01:57.000] Projects: /user/username/projects/myproject/random/tsconfig.json After request PolledWatches:: @@ -365,11 +365,11 @@ FsWatchesRecursive:: /user/username/projects/myproject/random: {} -Info 41 [16:01:58.000] response: +Info 41 [00:01:58.000] response: { "responseRequired": false } -Info 42 [16:01:59.000] request: +Info 42 [00:01:59.000] request: { "command": "rename", "arguments": { @@ -404,8 +404,8 @@ FsWatchesRecursive:: /user/username/projects/myproject/random: {} -Info 43 [16:02:00.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/decls/FnS.d.ts 500 undefined WatchType: Closed Script info -Info 44 [16:02:01.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/decls/FnS.d.ts.map 500 undefined WatchType: Closed Script info +Info 43 [00:02:00.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/decls/FnS.d.ts 500 undefined WatchType: Closed Script info +Info 44 [00:02:01.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/decls/FnS.d.ts.map 500 undefined WatchType: Closed Script info After request PolledWatches:: @@ -434,7 +434,7 @@ FsWatchesRecursive:: /user/username/projects/myproject/random: {} -Info 45 [16:02:02.000] response: +Info 45 [00:02:02.000] response: { "response": { "info": { @@ -482,7 +482,7 @@ Info 45 [16:02:02.000] response: }, "responseRequired": true } -Info 46 [16:02:03.000] request: +Info 46 [00:02:03.000] request: { "command": "change", "arguments": { @@ -552,11 +552,11 @@ FsWatchesRecursive:: /user/username/projects/myproject/random: {} -Info 47 [16:02:04.000] response: +Info 47 [00:02:04.000] response: { "responseRequired": false } -Info 48 [16:02:05.000] request: +Info 48 [00:02:05.000] request: { "command": "rename", "arguments": { @@ -595,9 +595,9 @@ FsWatchesRecursive:: /user/username/projects/myproject/random: {} -Info 49 [16:02:06.000] Starting updateGraphWorker: Project: /user/username/projects/myproject/dependency/tsconfig.json -Info 50 [16:02:07.000] Finishing updateGraphWorker: Project: /user/username/projects/myproject/dependency/tsconfig.json Version: 2 structureChanged: false structureIsReused:: Completely Elapsed:: *ms -Info 51 [16:02:08.000] Different program with same set of files +Info 49 [00:02:06.000] Starting updateGraphWorker: Project: /user/username/projects/myproject/dependency/tsconfig.json +Info 50 [00:02:07.000] Finishing updateGraphWorker: Project: /user/username/projects/myproject/dependency/tsconfig.json Version: 2 structureChanged: false structureIsReused:: Completely Elapsed:: *ms +Info 51 [00:02:08.000] Different program with same set of files After request PolledWatches:: @@ -626,7 +626,7 @@ FsWatchesRecursive:: /user/username/projects/myproject/random: {} -Info 52 [16:02:09.000] response: +Info 52 [00:02:09.000] response: { "response": { "info": { @@ -674,7 +674,7 @@ Info 52 [16:02:09.000] response: }, "responseRequired": true } -Info 53 [16:02:10.000] request: +Info 53 [00:02:10.000] request: { "command": "rename", "arguments": { @@ -741,7 +741,7 @@ FsWatchesRecursive:: /user/username/projects/myproject/random: {} -Info 54 [16:02:11.000] response: +Info 54 [00:02:11.000] response: { "response": { "info": { @@ -789,7 +789,7 @@ Info 54 [16:02:11.000] response: }, "responseRequired": true } -Info 55 [16:02:12.000] request: +Info 55 [00:02:12.000] request: { "command": "rename", "arguments": { @@ -856,7 +856,7 @@ FsWatchesRecursive:: /user/username/projects/myproject/random: {} -Info 56 [16:02:13.000] response: +Info 56 [00:02:13.000] response: { "response": { "info": { @@ -904,7 +904,7 @@ Info 56 [16:02:13.000] response: }, "responseRequired": true } -Info 57 [16:02:14.000] request: +Info 57 [00:02:14.000] request: { "command": "rename", "arguments": { @@ -971,7 +971,7 @@ FsWatchesRecursive:: /user/username/projects/myproject/random: {} -Info 58 [16:02:15.000] response: +Info 58 [00:02:15.000] response: { "response": { "info": { @@ -1019,7 +1019,7 @@ Info 58 [16:02:15.000] response: }, "responseRequired": true } -Info 59 [16:02:16.000] request: +Info 59 [00:02:16.000] request: { "command": "rename", "arguments": { @@ -1086,7 +1086,7 @@ FsWatchesRecursive:: /user/username/projects/myproject/random: {} -Info 60 [16:02:17.000] response: +Info 60 [00:02:17.000] response: { "response": { "info": { 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 943676cedd3db..523e3f1160fa2 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 @@ -1,5 +1,5 @@ -Info 0 [16:00:35.000] Provided types map file "/a/lib/typesMap.json" doesn't exist -Info 1 [16:00:36.000] request: +Info 0 [00:00:35.000] Provided types map file "/a/lib/typesMap.json" doesn't exist +Info 1 [00:00:36.000] request: { "seq": 0, "type": "request", @@ -65,11 +65,11 @@ FsWatches:: FsWatchesRecursive:: -Info 2 [16:00:37.000] Search path: /user/username/projects/myproject/dependency -Info 3 [16:00:38.000] For info: /user/username/projects/myproject/dependency/FnS.ts :: Config file name: /user/username/projects/myproject/dependency/tsconfig.json -Info 4 [16:00:39.000] Creating configuration project /user/username/projects/myproject/dependency/tsconfig.json -Info 5 [16:00:40.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/dependency/tsconfig.json 2000 undefined Project: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Config file -Info 6 [16:00:41.000] Config: /user/username/projects/myproject/dependency/tsconfig.json : { +Info 2 [00:00:37.000] Search path: /user/username/projects/myproject/dependency +Info 3 [00:00:38.000] For info: /user/username/projects/myproject/dependency/FnS.ts :: Config file name: /user/username/projects/myproject/dependency/tsconfig.json +Info 4 [00:00:39.000] Creating configuration project /user/username/projects/myproject/dependency/tsconfig.json +Info 5 [00:00:40.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/dependency/tsconfig.json 2000 undefined Project: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Config file +Info 6 [00:00:41.000] Config: /user/username/projects/myproject/dependency/tsconfig.json : { "rootNames": [ "/user/username/projects/myproject/dependency/FnS.ts" ], @@ -80,18 +80,18 @@ Info 6 [16:00:41.000] Config: /user/username/projects/myproject/dependency/ts "configFilePath": "/user/username/projects/myproject/dependency/tsconfig.json" } } -Info 7 [16:00:42.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/dependency 1 undefined Config: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Wild card directory -Info 8 [16:00:43.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/dependency 1 undefined Config: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Wild card directory -Info 9 [16:00:44.000] Plugins were requested but not running in environment that supports 'require'. Nothing will be loaded -Info 10 [16:00:45.000] Starting updateGraphWorker: Project: /user/username/projects/myproject/dependency/tsconfig.json -Info 11 [16:00:46.000] FileWatcher:: Added:: WatchInfo: /a/lib/lib.d.ts 500 undefined WatchType: Closed Script info -Info 12 [16:00:47.000] 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 13 [16:00:48.000] 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 14 [16:00:49.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Type roots -Info 15 [16:00:50.000] 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 16 [16:00:51.000] Finishing updateGraphWorker: Project: /user/username/projects/myproject/dependency/tsconfig.json Version: 1 structureChanged: true structureIsReused:: Not Elapsed:: *ms -Info 17 [16:00:52.000] Project '/user/username/projects/myproject/dependency/tsconfig.json' (Configured) -Info 18 [16:00:53.000] Files (2) +Info 7 [00:00:42.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/dependency 1 undefined Config: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Wild card directory +Info 8 [00:00:43.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/dependency 1 undefined Config: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Wild card directory +Info 9 [00:00:44.000] Plugins were requested but not running in environment that supports 'require'. Nothing will be loaded +Info 10 [00:00:45.000] Starting updateGraphWorker: Project: /user/username/projects/myproject/dependency/tsconfig.json +Info 11 [00:00:46.000] FileWatcher:: Added:: WatchInfo: /a/lib/lib.d.ts 500 undefined WatchType: Closed Script info +Info 12 [00:00:47.000] 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 13 [00:00:48.000] 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 14 [00:00:49.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Type roots +Info 15 [00:00:50.000] 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 16 [00:00:51.000] Finishing updateGraphWorker: Project: /user/username/projects/myproject/dependency/tsconfig.json Version: 1 structureChanged: true structureIsReused:: Not Elapsed:: *ms +Info 17 [00:00:52.000] Project '/user/username/projects/myproject/dependency/tsconfig.json' (Configured) +Info 18 [00:00:53.000] Files (2) /a/lib/lib.d.ts /user/username/projects/myproject/dependency/FnS.ts @@ -101,16 +101,16 @@ Info 18 [16:00:53.000] Files (2) FnS.ts Matched by default include pattern '**/*' -Info 19 [16:00:54.000] ----------------------------------------------- -Info 20 [16:00:55.000] Search path: /user/username/projects/myproject/dependency -Info 21 [16:00:56.000] For info: /user/username/projects/myproject/dependency/tsconfig.json :: No config files found. -Info 22 [16:00:57.000] Project '/user/username/projects/myproject/dependency/tsconfig.json' (Configured) -Info 22 [16:00:58.000] Files (2) +Info 19 [00:00:54.000] ----------------------------------------------- +Info 20 [00:00:55.000] Search path: /user/username/projects/myproject/dependency +Info 21 [00:00:56.000] For info: /user/username/projects/myproject/dependency/tsconfig.json :: No config files found. +Info 22 [00:00:57.000] Project '/user/username/projects/myproject/dependency/tsconfig.json' (Configured) +Info 22 [00:00:58.000] Files (2) -Info 22 [16:00:59.000] ----------------------------------------------- -Info 22 [16:01:00.000] Open files: -Info 22 [16:01:01.000] FileName: /user/username/projects/myproject/dependency/FnS.ts ProjectRootPath: undefined -Info 22 [16:01:02.000] Projects: /user/username/projects/myproject/dependency/tsconfig.json +Info 22 [00:00:59.000] ----------------------------------------------- +Info 22 [00:01:00.000] Open files: +Info 22 [00:01:01.000] FileName: /user/username/projects/myproject/dependency/FnS.ts ProjectRootPath: undefined +Info 22 [00:01:02.000] Projects: /user/username/projects/myproject/dependency/tsconfig.json After request PolledWatches:: @@ -129,11 +129,11 @@ FsWatchesRecursive:: /user/username/projects/myproject/dependency: {} -Info 22 [16:01:03.000] response: +Info 22 [00:01:03.000] response: { "responseRequired": false } -Info 23 [16:01:04.000] request: +Info 23 [00:01:04.000] request: { "seq": 0, "type": "request", @@ -160,11 +160,11 @@ FsWatchesRecursive:: /user/username/projects/myproject/dependency: {} -Info 24 [16:01:05.000] Search path: /user/username/projects/myproject/random -Info 25 [16:01:06.000] For info: /user/username/projects/myproject/random/random.ts :: Config file name: /user/username/projects/myproject/random/tsconfig.json -Info 26 [16:01:07.000] Creating configuration project /user/username/projects/myproject/random/tsconfig.json -Info 27 [16:01:08.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/random/tsconfig.json 2000 undefined Project: /user/username/projects/myproject/random/tsconfig.json WatchType: Config file -Info 28 [16:01:09.000] Config: /user/username/projects/myproject/random/tsconfig.json : { +Info 24 [00:01:05.000] Search path: /user/username/projects/myproject/random +Info 25 [00:01:06.000] For info: /user/username/projects/myproject/random/random.ts :: Config file name: /user/username/projects/myproject/random/tsconfig.json +Info 26 [00:01:07.000] Creating configuration project /user/username/projects/myproject/random/tsconfig.json +Info 27 [00:01:08.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/random/tsconfig.json 2000 undefined Project: /user/username/projects/myproject/random/tsconfig.json WatchType: Config file +Info 28 [00:01:09.000] Config: /user/username/projects/myproject/random/tsconfig.json : { "rootNames": [ "/user/username/projects/myproject/random/random.ts" ], @@ -172,17 +172,17 @@ Info 28 [16:01:09.000] Config: /user/username/projects/myproject/random/tsconf "configFilePath": "/user/username/projects/myproject/random/tsconfig.json" } } -Info 29 [16:01:10.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/random 1 undefined Config: /user/username/projects/myproject/random/tsconfig.json WatchType: Wild card directory -Info 30 [16:01:11.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/random 1 undefined Config: /user/username/projects/myproject/random/tsconfig.json WatchType: Wild card directory -Info 31 [16:01:12.000] Plugins were requested but not running in environment that supports 'require'. Nothing will be loaded -Info 32 [16:01:13.000] Starting updateGraphWorker: Project: /user/username/projects/myproject/random/tsconfig.json -Info 33 [16:01:14.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/random/node_modules/@types 1 undefined Project: /user/username/projects/myproject/random/tsconfig.json WatchType: Type roots -Info 34 [16:01:15.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/random/node_modules/@types 1 undefined Project: /user/username/projects/myproject/random/tsconfig.json WatchType: Type roots -Info 35 [16:01:16.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/random/tsconfig.json WatchType: Type roots -Info 36 [16:01:17.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/random/tsconfig.json WatchType: Type roots -Info 37 [16:01:18.000] Finishing updateGraphWorker: Project: /user/username/projects/myproject/random/tsconfig.json Version: 1 structureChanged: true structureIsReused:: Not Elapsed:: *ms -Info 38 [16:01:19.000] Project '/user/username/projects/myproject/random/tsconfig.json' (Configured) -Info 39 [16:01:20.000] Files (2) +Info 29 [00:01:10.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/random 1 undefined Config: /user/username/projects/myproject/random/tsconfig.json WatchType: Wild card directory +Info 30 [00:01:11.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/random 1 undefined Config: /user/username/projects/myproject/random/tsconfig.json WatchType: Wild card directory +Info 31 [00:01:12.000] Plugins were requested but not running in environment that supports 'require'. Nothing will be loaded +Info 32 [00:01:13.000] Starting updateGraphWorker: Project: /user/username/projects/myproject/random/tsconfig.json +Info 33 [00:01:14.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/random/node_modules/@types 1 undefined Project: /user/username/projects/myproject/random/tsconfig.json WatchType: Type roots +Info 34 [00:01:15.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/random/node_modules/@types 1 undefined Project: /user/username/projects/myproject/random/tsconfig.json WatchType: Type roots +Info 35 [00:01:16.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/random/tsconfig.json WatchType: Type roots +Info 36 [00:01:17.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/random/tsconfig.json WatchType: Type roots +Info 37 [00:01:18.000] Finishing updateGraphWorker: Project: /user/username/projects/myproject/random/tsconfig.json Version: 1 structureChanged: true structureIsReused:: Not Elapsed:: *ms +Info 38 [00:01:19.000] Project '/user/username/projects/myproject/random/tsconfig.json' (Configured) +Info 39 [00:01:20.000] Files (2) /a/lib/lib.d.ts /user/username/projects/myproject/random/random.ts @@ -192,20 +192,20 @@ Info 39 [16:01:20.000] Files (2) random.ts Matched by default include pattern '**/*' -Info 40 [16:01:21.000] ----------------------------------------------- -Info 41 [16:01:22.000] Project '/user/username/projects/myproject/dependency/tsconfig.json' (Configured) -Info 41 [16:01:23.000] Files (2) +Info 40 [00:01:21.000] ----------------------------------------------- +Info 41 [00:01:22.000] Project '/user/username/projects/myproject/dependency/tsconfig.json' (Configured) +Info 41 [00:01:23.000] Files (2) -Info 41 [16:01:24.000] ----------------------------------------------- -Info 41 [16:01:25.000] Project '/user/username/projects/myproject/random/tsconfig.json' (Configured) -Info 41 [16:01:26.000] Files (2) +Info 41 [00:01:24.000] ----------------------------------------------- +Info 41 [00:01:25.000] Project '/user/username/projects/myproject/random/tsconfig.json' (Configured) +Info 41 [00:01:26.000] Files (2) -Info 41 [16:01:27.000] ----------------------------------------------- -Info 41 [16:01:28.000] Open files: -Info 41 [16:01:29.000] FileName: /user/username/projects/myproject/dependency/FnS.ts ProjectRootPath: undefined -Info 41 [16:01:30.000] Projects: /user/username/projects/myproject/dependency/tsconfig.json -Info 41 [16:01:31.000] FileName: /user/username/projects/myproject/random/random.ts ProjectRootPath: undefined -Info 41 [16:01:32.000] Projects: /user/username/projects/myproject/random/tsconfig.json +Info 41 [00:01:27.000] ----------------------------------------------- +Info 41 [00:01:28.000] Open files: +Info 41 [00:01:29.000] FileName: /user/username/projects/myproject/dependency/FnS.ts ProjectRootPath: undefined +Info 41 [00:01:30.000] Projects: /user/username/projects/myproject/dependency/tsconfig.json +Info 41 [00:01:31.000] FileName: /user/username/projects/myproject/random/random.ts ProjectRootPath: undefined +Info 41 [00:01:32.000] Projects: /user/username/projects/myproject/random/tsconfig.json After request PolledWatches:: @@ -230,11 +230,11 @@ FsWatchesRecursive:: /user/username/projects/myproject/random: {} -Info 41 [16:01:33.000] response: +Info 41 [00:01:33.000] response: { "responseRequired": false } -Info 42 [16:01:34.000] request: +Info 42 [00:01:34.000] request: { "command": "rename", "arguments": { @@ -269,7 +269,7 @@ FsWatchesRecursive:: /user/username/projects/myproject/random: {} -Info 43 [16:01:35.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/decls/FnS.d.ts 2000 undefined Project: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Missing generated file +Info 43 [00:01:35.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/decls/FnS.d.ts 2000 undefined Project: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Missing generated file After request PolledWatches:: @@ -296,7 +296,7 @@ FsWatchesRecursive:: /user/username/projects/myproject/random: {} -Info 44 [16:01:36.000] response: +Info 44 [00:01:36.000] response: { "response": { "info": { @@ -344,7 +344,7 @@ Info 44 [16:01:36.000] response: }, "responseRequired": true } -Info 45 [16:01:37.000] request: +Info 45 [00:01:37.000] request: { "command": "rename", "arguments": { @@ -407,7 +407,7 @@ FsWatchesRecursive:: /user/username/projects/myproject/random: {} -Info 46 [16:01:38.000] response: +Info 46 [00:01:38.000] response: { "response": { "info": { @@ -455,7 +455,7 @@ Info 46 [16:01:38.000] response: }, "responseRequired": true } -Info 47 [16:01:39.000] request: +Info 47 [00:01:39.000] request: { "command": "rename", "arguments": { @@ -518,7 +518,7 @@ FsWatchesRecursive:: /user/username/projects/myproject/random: {} -Info 48 [16:01:40.000] response: +Info 48 [00:01:40.000] response: { "response": { "info": { @@ -566,7 +566,7 @@ Info 48 [16:01:40.000] response: }, "responseRequired": true } -Info 49 [16:01:41.000] request: +Info 49 [00:01:41.000] request: { "command": "rename", "arguments": { @@ -629,7 +629,7 @@ FsWatchesRecursive:: /user/username/projects/myproject/random: {} -Info 50 [16:01:42.000] response: +Info 50 [00:01:42.000] response: { "response": { "info": { @@ -677,7 +677,7 @@ Info 50 [16:01:42.000] response: }, "responseRequired": true } -Info 51 [16:01:43.000] request: +Info 51 [00:01:43.000] request: { "command": "rename", "arguments": { @@ -740,7 +740,7 @@ FsWatchesRecursive:: /user/username/projects/myproject/random: {} -Info 52 [16:01:44.000] response: +Info 52 [00:01:44.000] response: { "response": { "info": { @@ -788,7 +788,7 @@ Info 52 [16:01:44.000] response: }, "responseRequired": true } -Info 53 [16:01:45.000] request: +Info 53 [00:01:45.000] request: { "seq": 0, "type": "request", @@ -823,18 +823,18 @@ FsWatchesRecursive:: /user/username/projects/myproject/random: {} -Info 54 [16:01:46.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/random/random.ts 500 undefined WatchType: Closed Script info -Info 55 [16:01:47.000] Project '/user/username/projects/myproject/dependency/tsconfig.json' (Configured) -Info 55 [16:01:48.000] Files (2) +Info 54 [00:01:46.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/random/random.ts 500 undefined WatchType: Closed Script info +Info 55 [00:01:47.000] Project '/user/username/projects/myproject/dependency/tsconfig.json' (Configured) +Info 55 [00:01:48.000] Files (2) -Info 55 [16:01:49.000] ----------------------------------------------- -Info 55 [16:01:50.000] Project '/user/username/projects/myproject/random/tsconfig.json' (Configured) -Info 55 [16:01:51.000] Files (2) +Info 55 [00:01:49.000] ----------------------------------------------- +Info 55 [00:01:50.000] Project '/user/username/projects/myproject/random/tsconfig.json' (Configured) +Info 55 [00:01:51.000] Files (2) -Info 55 [16:01:52.000] ----------------------------------------------- -Info 55 [16:01:53.000] Open files: -Info 55 [16:01:54.000] FileName: /user/username/projects/myproject/dependency/FnS.ts ProjectRootPath: undefined -Info 55 [16:01:55.000] Projects: /user/username/projects/myproject/dependency/tsconfig.json +Info 55 [00:01:52.000] ----------------------------------------------- +Info 55 [00:01:53.000] Open files: +Info 55 [00:01:54.000] FileName: /user/username/projects/myproject/dependency/FnS.ts ProjectRootPath: undefined +Info 55 [00:01:55.000] Projects: /user/username/projects/myproject/dependency/tsconfig.json After request PolledWatches:: @@ -863,11 +863,11 @@ FsWatchesRecursive:: /user/username/projects/myproject/random: {} -Info 55 [16:01:56.000] response: +Info 55 [00:01:56.000] response: { "responseRequired": false } -Info 56 [16:01:57.000] request: +Info 56 [00:01:57.000] request: { "seq": 0, "type": "request", @@ -904,22 +904,22 @@ FsWatchesRecursive:: /user/username/projects/myproject/random: {} -Info 57 [16:01:58.000] FileWatcher:: Close:: WatchInfo: /user/username/projects/myproject/random/random.ts 500 undefined WatchType: Closed Script info -Info 58 [16:01:59.000] Search path: /user/username/projects/myproject/random -Info 59 [16:02:00.000] For info: /user/username/projects/myproject/random/random.ts :: Config file name: /user/username/projects/myproject/random/tsconfig.json -Info 60 [16:02:01.000] Project '/user/username/projects/myproject/dependency/tsconfig.json' (Configured) -Info 60 [16:02:02.000] Files (2) +Info 57 [00:01:58.000] FileWatcher:: Close:: WatchInfo: /user/username/projects/myproject/random/random.ts 500 undefined WatchType: Closed Script info +Info 58 [00:01:59.000] Search path: /user/username/projects/myproject/random +Info 59 [00:02:00.000] For info: /user/username/projects/myproject/random/random.ts :: Config file name: /user/username/projects/myproject/random/tsconfig.json +Info 60 [00:02:01.000] Project '/user/username/projects/myproject/dependency/tsconfig.json' (Configured) +Info 60 [00:02:02.000] Files (2) -Info 60 [16:02:03.000] ----------------------------------------------- -Info 60 [16:02:04.000] Project '/user/username/projects/myproject/random/tsconfig.json' (Configured) -Info 60 [16:02:05.000] Files (2) +Info 60 [00:02:03.000] ----------------------------------------------- +Info 60 [00:02:04.000] Project '/user/username/projects/myproject/random/tsconfig.json' (Configured) +Info 60 [00:02:05.000] Files (2) -Info 60 [16:02:06.000] ----------------------------------------------- -Info 60 [16:02:07.000] Open files: -Info 60 [16:02:08.000] FileName: /user/username/projects/myproject/dependency/FnS.ts ProjectRootPath: undefined -Info 60 [16:02:09.000] Projects: /user/username/projects/myproject/dependency/tsconfig.json -Info 60 [16:02:10.000] FileName: /user/username/projects/myproject/random/random.ts ProjectRootPath: undefined -Info 60 [16:02:11.000] Projects: /user/username/projects/myproject/random/tsconfig.json +Info 60 [00:02:06.000] ----------------------------------------------- +Info 60 [00:02:07.000] Open files: +Info 60 [00:02:08.000] FileName: /user/username/projects/myproject/dependency/FnS.ts ProjectRootPath: undefined +Info 60 [00:02:09.000] Projects: /user/username/projects/myproject/dependency/tsconfig.json +Info 60 [00:02:10.000] FileName: /user/username/projects/myproject/random/random.ts ProjectRootPath: undefined +Info 60 [00:02:11.000] Projects: /user/username/projects/myproject/random/tsconfig.json After request PolledWatches:: @@ -946,11 +946,11 @@ FsWatchesRecursive:: /user/username/projects/myproject/random: {} -Info 60 [16:02:12.000] response: +Info 60 [00:02:12.000] response: { "responseRequired": false } -Info 61 [16:02:13.000] request: +Info 61 [00:02:13.000] request: { "seq": 0, "type": "request", @@ -985,18 +985,18 @@ FsWatchesRecursive:: /user/username/projects/myproject/random: {} -Info 62 [16:02:14.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/dependency/FnS.ts 500 undefined WatchType: Closed Script info -Info 63 [16:02:15.000] Project '/user/username/projects/myproject/dependency/tsconfig.json' (Configured) -Info 63 [16:02:16.000] Files (2) +Info 62 [00:02:14.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/dependency/FnS.ts 500 undefined WatchType: Closed Script info +Info 63 [00:02:15.000] Project '/user/username/projects/myproject/dependency/tsconfig.json' (Configured) +Info 63 [00:02:16.000] Files (2) -Info 63 [16:02:17.000] ----------------------------------------------- -Info 63 [16:02:18.000] Project '/user/username/projects/myproject/random/tsconfig.json' (Configured) -Info 63 [16:02:19.000] Files (2) +Info 63 [00:02:17.000] ----------------------------------------------- +Info 63 [00:02:18.000] Project '/user/username/projects/myproject/random/tsconfig.json' (Configured) +Info 63 [00:02:19.000] Files (2) -Info 63 [16:02:20.000] ----------------------------------------------- -Info 63 [16:02:21.000] Open files: -Info 63 [16:02:22.000] FileName: /user/username/projects/myproject/random/random.ts ProjectRootPath: undefined -Info 63 [16:02:23.000] Projects: /user/username/projects/myproject/random/tsconfig.json +Info 63 [00:02:20.000] ----------------------------------------------- +Info 63 [00:02:21.000] Open files: +Info 63 [00:02:22.000] FileName: /user/username/projects/myproject/random/random.ts ProjectRootPath: undefined +Info 63 [00:02:23.000] Projects: /user/username/projects/myproject/random/tsconfig.json After request PolledWatches:: @@ -1025,11 +1025,11 @@ FsWatchesRecursive:: /user/username/projects/myproject/random: {} -Info 63 [16:02:24.000] response: +Info 63 [00:02:24.000] response: { "responseRequired": false } -Info 64 [16:02:25.000] request: +Info 64 [00:02:25.000] request: { "seq": 0, "type": "request", @@ -1066,16 +1066,16 @@ FsWatchesRecursive:: /user/username/projects/myproject/random: {} -Info 65 [16:02:26.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/random/random.ts 500 undefined WatchType: Closed Script info -Info 66 [16:02:27.000] Project '/user/username/projects/myproject/dependency/tsconfig.json' (Configured) -Info 66 [16:02:28.000] Files (2) +Info 65 [00:02:26.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/random/random.ts 500 undefined WatchType: Closed Script info +Info 66 [00:02:27.000] Project '/user/username/projects/myproject/dependency/tsconfig.json' (Configured) +Info 66 [00:02:28.000] Files (2) -Info 66 [16:02:29.000] ----------------------------------------------- -Info 66 [16:02:30.000] Project '/user/username/projects/myproject/random/tsconfig.json' (Configured) -Info 66 [16:02:31.000] Files (2) +Info 66 [00:02:29.000] ----------------------------------------------- +Info 66 [00:02:30.000] Project '/user/username/projects/myproject/random/tsconfig.json' (Configured) +Info 66 [00:02:31.000] Files (2) -Info 66 [16:02:32.000] ----------------------------------------------- -Info 66 [16:02:33.000] Open files: +Info 66 [00:02:32.000] ----------------------------------------------- +Info 66 [00:02:33.000] Open files: After request PolledWatches:: @@ -1106,11 +1106,11 @@ FsWatchesRecursive:: /user/username/projects/myproject/random: {} -Info 66 [16:02:34.000] response: +Info 66 [00:02:34.000] response: { "responseRequired": false } -Info 67 [16:02:35.000] request: +Info 67 [00:02:35.000] request: { "seq": 0, "type": "request", @@ -1149,12 +1149,12 @@ FsWatchesRecursive:: /user/username/projects/myproject/random: {} -Info 68 [16:02:36.000] FileWatcher:: Close:: WatchInfo: /user/username/projects/myproject/random/random.ts 500 undefined WatchType: Closed Script info -Info 69 [16:02:37.000] Search path: /user/username/projects/myproject/random -Info 70 [16:02:38.000] For info: /user/username/projects/myproject/random/random.ts :: Config file name: /user/username/projects/myproject/random/tsconfig.json -Info 71 [16:02:39.000] `remove Project:: -Info 72 [16:02:40.000] Project '/user/username/projects/myproject/dependency/tsconfig.json' (Configured) -Info 73 [16:02:41.000] Files (2) +Info 68 [00:02:36.000] FileWatcher:: Close:: WatchInfo: /user/username/projects/myproject/random/random.ts 500 undefined WatchType: Closed Script info +Info 69 [00:02:37.000] Search path: /user/username/projects/myproject/random +Info 70 [00:02:38.000] For info: /user/username/projects/myproject/random/random.ts :: Config file name: /user/username/projects/myproject/random/tsconfig.json +Info 71 [00:02:39.000] `remove Project:: +Info 72 [00:02:40.000] Project '/user/username/projects/myproject/dependency/tsconfig.json' (Configured) +Info 73 [00:02:41.000] Files (2) /a/lib/lib.d.ts /user/username/projects/myproject/dependency/FnS.ts @@ -1164,23 +1164,23 @@ Info 73 [16:02:41.000] Files (2) FnS.ts Matched by default include pattern '**/*' -Info 74 [16:02:42.000] ----------------------------------------------- -Info 75 [16:02:43.000] DirectoryWatcher:: Close:: WatchInfo: /user/username/projects/myproject/dependency 1 undefined Config: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Wild card directory -Info 76 [16:02:44.000] 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 77 [16:02:45.000] FileWatcher:: Close:: WatchInfo: /user/username/projects/myproject/dependency/tsconfig.json 2000 undefined Project: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Config file -Info 78 [16:02:46.000] 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 79 [16:02:47.000] 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 80 [16:02:48.000] DirectoryWatcher:: Close:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Type roots -Info 81 [16:02:49.000] 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 82 [16:02:50.000] 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 83 [16:02:51.000] FileWatcher:: Close:: WatchInfo: /user/username/projects/myproject/dependency/FnS.ts 500 undefined WatchType: Closed Script info -Info 84 [16:02:52.000] Project '/user/username/projects/myproject/random/tsconfig.json' (Configured) -Info 84 [16:02:53.000] Files (2) - -Info 84 [16:02:54.000] ----------------------------------------------- -Info 84 [16:02:55.000] Open files: -Info 84 [16:02:56.000] FileName: /user/username/projects/myproject/random/random.ts ProjectRootPath: undefined -Info 84 [16:02:57.000] Projects: /user/username/projects/myproject/random/tsconfig.json +Info 74 [00:02:42.000] ----------------------------------------------- +Info 75 [00:02:43.000] DirectoryWatcher:: Close:: WatchInfo: /user/username/projects/myproject/dependency 1 undefined Config: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Wild card directory +Info 76 [00:02:44.000] 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 77 [00:02:45.000] FileWatcher:: Close:: WatchInfo: /user/username/projects/myproject/dependency/tsconfig.json 2000 undefined Project: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Config file +Info 78 [00:02:46.000] 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 79 [00:02:47.000] 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 80 [00:02:48.000] DirectoryWatcher:: Close:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Type roots +Info 81 [00:02:49.000] 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 82 [00:02:50.000] 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 83 [00:02:51.000] FileWatcher:: Close:: WatchInfo: /user/username/projects/myproject/dependency/FnS.ts 500 undefined WatchType: Closed Script info +Info 84 [00:02:52.000] Project '/user/username/projects/myproject/random/tsconfig.json' (Configured) +Info 84 [00:02:53.000] Files (2) + +Info 84 [00:02:54.000] ----------------------------------------------- +Info 84 [00:02:55.000] Open files: +Info 84 [00:02:56.000] FileName: /user/username/projects/myproject/random/random.ts ProjectRootPath: undefined +Info 84 [00:02:57.000] Projects: /user/username/projects/myproject/random/tsconfig.json After request PolledWatches:: @@ -1199,7 +1199,7 @@ FsWatchesRecursive:: /user/username/projects/myproject/random: {} -Info 84 [16:02:58.000] response: +Info 84 [00:02:58.000] response: { "responseRequired": false } \ No newline at end of file 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 c07f62af57f9e..1690b098bf9b7 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 @@ -1,5 +1,5 @@ -Info 0 [16:01:03.000] Provided types map file "/a/lib/typesMap.json" doesn't exist -Info 1 [16:01:04.000] request: +Info 0 [00:01:03.000] Provided types map file "/a/lib/typesMap.json" doesn't exist +Info 1 [00:01:04.000] request: { "seq": 0, "type": "request", @@ -200,11 +200,11 @@ FsWatches:: FsWatchesRecursive:: -Info 2 [16:01:05.000] Search path: /user/username/projects/myproject/dependency -Info 3 [16:01:06.000] For info: /user/username/projects/myproject/dependency/FnS.ts :: Config file name: /user/username/projects/myproject/dependency/tsconfig.json -Info 4 [16:01:07.000] Creating configuration project /user/username/projects/myproject/dependency/tsconfig.json -Info 5 [16:01:08.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/dependency/tsconfig.json 2000 undefined Project: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Config file -Info 6 [16:01:09.000] Config: /user/username/projects/myproject/dependency/tsconfig.json : { +Info 2 [00:01:05.000] Search path: /user/username/projects/myproject/dependency +Info 3 [00:01:06.000] For info: /user/username/projects/myproject/dependency/FnS.ts :: Config file name: /user/username/projects/myproject/dependency/tsconfig.json +Info 4 [00:01:07.000] Creating configuration project /user/username/projects/myproject/dependency/tsconfig.json +Info 5 [00:01:08.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/dependency/tsconfig.json 2000 undefined Project: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Config file +Info 6 [00:01:09.000] Config: /user/username/projects/myproject/dependency/tsconfig.json : { "rootNames": [ "/user/username/projects/myproject/dependency/FnS.ts" ], @@ -215,18 +215,18 @@ Info 6 [16:01:09.000] Config: /user/username/projects/myproject/dependency/ts "configFilePath": "/user/username/projects/myproject/dependency/tsconfig.json" } } -Info 7 [16:01:10.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/dependency 1 undefined Config: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Wild card directory -Info 8 [16:01:11.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/dependency 1 undefined Config: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Wild card directory -Info 9 [16:01:12.000] Plugins were requested but not running in environment that supports 'require'. Nothing will be loaded -Info 10 [16:01:13.000] Starting updateGraphWorker: Project: /user/username/projects/myproject/dependency/tsconfig.json -Info 11 [16:01:14.000] FileWatcher:: Added:: WatchInfo: /a/lib/lib.d.ts 500 undefined WatchType: Closed Script info -Info 12 [16:01:15.000] 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 13 [16:01:16.000] 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 14 [16:01:17.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Type roots -Info 15 [16:01:18.000] 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 16 [16:01:19.000] Finishing updateGraphWorker: Project: /user/username/projects/myproject/dependency/tsconfig.json Version: 1 structureChanged: true structureIsReused:: Not Elapsed:: *ms -Info 17 [16:01:20.000] Project '/user/username/projects/myproject/dependency/tsconfig.json' (Configured) -Info 18 [16:01:21.000] Files (2) +Info 7 [00:01:10.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/dependency 1 undefined Config: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Wild card directory +Info 8 [00:01:11.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/dependency 1 undefined Config: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Wild card directory +Info 9 [00:01:12.000] Plugins were requested but not running in environment that supports 'require'. Nothing will be loaded +Info 10 [00:01:13.000] Starting updateGraphWorker: Project: /user/username/projects/myproject/dependency/tsconfig.json +Info 11 [00:01:14.000] FileWatcher:: Added:: WatchInfo: /a/lib/lib.d.ts 500 undefined WatchType: Closed Script info +Info 12 [00:01:15.000] 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 13 [00:01:16.000] 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 14 [00:01:17.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Type roots +Info 15 [00:01:18.000] 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 16 [00:01:19.000] Finishing updateGraphWorker: Project: /user/username/projects/myproject/dependency/tsconfig.json Version: 1 structureChanged: true structureIsReused:: Not Elapsed:: *ms +Info 17 [00:01:20.000] Project '/user/username/projects/myproject/dependency/tsconfig.json' (Configured) +Info 18 [00:01:21.000] Files (2) /a/lib/lib.d.ts /user/username/projects/myproject/dependency/FnS.ts @@ -236,16 +236,16 @@ Info 18 [16:01:21.000] Files (2) FnS.ts Matched by default include pattern '**/*' -Info 19 [16:01:22.000] ----------------------------------------------- -Info 20 [16:01:23.000] Search path: /user/username/projects/myproject/dependency -Info 21 [16:01:24.000] For info: /user/username/projects/myproject/dependency/tsconfig.json :: No config files found. -Info 22 [16:01:25.000] Project '/user/username/projects/myproject/dependency/tsconfig.json' (Configured) -Info 22 [16:01:26.000] Files (2) +Info 19 [00:01:22.000] ----------------------------------------------- +Info 20 [00:01:23.000] Search path: /user/username/projects/myproject/dependency +Info 21 [00:01:24.000] For info: /user/username/projects/myproject/dependency/tsconfig.json :: No config files found. +Info 22 [00:01:25.000] Project '/user/username/projects/myproject/dependency/tsconfig.json' (Configured) +Info 22 [00:01:26.000] Files (2) -Info 22 [16:01:27.000] ----------------------------------------------- -Info 22 [16:01:28.000] Open files: -Info 22 [16:01:29.000] FileName: /user/username/projects/myproject/dependency/FnS.ts ProjectRootPath: undefined -Info 22 [16:01:30.000] Projects: /user/username/projects/myproject/dependency/tsconfig.json +Info 22 [00:01:27.000] ----------------------------------------------- +Info 22 [00:01:28.000] Open files: +Info 22 [00:01:29.000] FileName: /user/username/projects/myproject/dependency/FnS.ts ProjectRootPath: undefined +Info 22 [00:01:30.000] Projects: /user/username/projects/myproject/dependency/tsconfig.json After request PolledWatches:: @@ -264,11 +264,11 @@ FsWatchesRecursive:: /user/username/projects/myproject/dependency: {} -Info 22 [16:01:31.000] response: +Info 22 [00:01:31.000] response: { "responseRequired": false } -Info 23 [16:01:32.000] request: +Info 23 [00:01:32.000] request: { "seq": 0, "type": "request", @@ -295,11 +295,11 @@ FsWatchesRecursive:: /user/username/projects/myproject/dependency: {} -Info 24 [16:01:33.000] Search path: /user/username/projects/myproject/random -Info 25 [16:01:34.000] For info: /user/username/projects/myproject/random/random.ts :: Config file name: /user/username/projects/myproject/random/tsconfig.json -Info 26 [16:01:35.000] Creating configuration project /user/username/projects/myproject/random/tsconfig.json -Info 27 [16:01:36.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/random/tsconfig.json 2000 undefined Project: /user/username/projects/myproject/random/tsconfig.json WatchType: Config file -Info 28 [16:01:37.000] Config: /user/username/projects/myproject/random/tsconfig.json : { +Info 24 [00:01:33.000] Search path: /user/username/projects/myproject/random +Info 25 [00:01:34.000] For info: /user/username/projects/myproject/random/random.ts :: Config file name: /user/username/projects/myproject/random/tsconfig.json +Info 26 [00:01:35.000] Creating configuration project /user/username/projects/myproject/random/tsconfig.json +Info 27 [00:01:36.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/random/tsconfig.json 2000 undefined Project: /user/username/projects/myproject/random/tsconfig.json WatchType: Config file +Info 28 [00:01:37.000] Config: /user/username/projects/myproject/random/tsconfig.json : { "rootNames": [ "/user/username/projects/myproject/random/random.ts" ], @@ -307,17 +307,17 @@ Info 28 [16:01:37.000] Config: /user/username/projects/myproject/random/tsconf "configFilePath": "/user/username/projects/myproject/random/tsconfig.json" } } -Info 29 [16:01:38.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/random 1 undefined Config: /user/username/projects/myproject/random/tsconfig.json WatchType: Wild card directory -Info 30 [16:01:39.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/random 1 undefined Config: /user/username/projects/myproject/random/tsconfig.json WatchType: Wild card directory -Info 31 [16:01:40.000] Plugins were requested but not running in environment that supports 'require'. Nothing will be loaded -Info 32 [16:01:41.000] Starting updateGraphWorker: Project: /user/username/projects/myproject/random/tsconfig.json -Info 33 [16:01:42.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/random/node_modules/@types 1 undefined Project: /user/username/projects/myproject/random/tsconfig.json WatchType: Type roots -Info 34 [16:01:43.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/random/node_modules/@types 1 undefined Project: /user/username/projects/myproject/random/tsconfig.json WatchType: Type roots -Info 35 [16:01:44.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/random/tsconfig.json WatchType: Type roots -Info 36 [16:01:45.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/random/tsconfig.json WatchType: Type roots -Info 37 [16:01:46.000] Finishing updateGraphWorker: Project: /user/username/projects/myproject/random/tsconfig.json Version: 1 structureChanged: true structureIsReused:: Not Elapsed:: *ms -Info 38 [16:01:47.000] Project '/user/username/projects/myproject/random/tsconfig.json' (Configured) -Info 39 [16:01:48.000] Files (2) +Info 29 [00:01:38.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/random 1 undefined Config: /user/username/projects/myproject/random/tsconfig.json WatchType: Wild card directory +Info 30 [00:01:39.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/random 1 undefined Config: /user/username/projects/myproject/random/tsconfig.json WatchType: Wild card directory +Info 31 [00:01:40.000] Plugins were requested but not running in environment that supports 'require'. Nothing will be loaded +Info 32 [00:01:41.000] Starting updateGraphWorker: Project: /user/username/projects/myproject/random/tsconfig.json +Info 33 [00:01:42.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/random/node_modules/@types 1 undefined Project: /user/username/projects/myproject/random/tsconfig.json WatchType: Type roots +Info 34 [00:01:43.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/random/node_modules/@types 1 undefined Project: /user/username/projects/myproject/random/tsconfig.json WatchType: Type roots +Info 35 [00:01:44.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/random/tsconfig.json WatchType: Type roots +Info 36 [00:01:45.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/random/tsconfig.json WatchType: Type roots +Info 37 [00:01:46.000] Finishing updateGraphWorker: Project: /user/username/projects/myproject/random/tsconfig.json Version: 1 structureChanged: true structureIsReused:: Not Elapsed:: *ms +Info 38 [00:01:47.000] Project '/user/username/projects/myproject/random/tsconfig.json' (Configured) +Info 39 [00:01:48.000] Files (2) /a/lib/lib.d.ts /user/username/projects/myproject/random/random.ts @@ -327,20 +327,20 @@ Info 39 [16:01:48.000] Files (2) random.ts Matched by default include pattern '**/*' -Info 40 [16:01:49.000] ----------------------------------------------- -Info 41 [16:01:50.000] Project '/user/username/projects/myproject/dependency/tsconfig.json' (Configured) -Info 41 [16:01:51.000] Files (2) +Info 40 [00:01:49.000] ----------------------------------------------- +Info 41 [00:01:50.000] Project '/user/username/projects/myproject/dependency/tsconfig.json' (Configured) +Info 41 [00:01:51.000] Files (2) -Info 41 [16:01:52.000] ----------------------------------------------- -Info 41 [16:01:53.000] Project '/user/username/projects/myproject/random/tsconfig.json' (Configured) -Info 41 [16:01:54.000] Files (2) +Info 41 [00:01:52.000] ----------------------------------------------- +Info 41 [00:01:53.000] Project '/user/username/projects/myproject/random/tsconfig.json' (Configured) +Info 41 [00:01:54.000] Files (2) -Info 41 [16:01:55.000] ----------------------------------------------- -Info 41 [16:01:56.000] Open files: -Info 41 [16:01:57.000] FileName: /user/username/projects/myproject/dependency/FnS.ts ProjectRootPath: undefined -Info 41 [16:01:58.000] Projects: /user/username/projects/myproject/dependency/tsconfig.json -Info 41 [16:01:59.000] FileName: /user/username/projects/myproject/random/random.ts ProjectRootPath: undefined -Info 41 [16:02:00.000] Projects: /user/username/projects/myproject/random/tsconfig.json +Info 41 [00:01:55.000] ----------------------------------------------- +Info 41 [00:01:56.000] Open files: +Info 41 [00:01:57.000] FileName: /user/username/projects/myproject/dependency/FnS.ts ProjectRootPath: undefined +Info 41 [00:01:58.000] Projects: /user/username/projects/myproject/dependency/tsconfig.json +Info 41 [00:01:59.000] FileName: /user/username/projects/myproject/random/random.ts ProjectRootPath: undefined +Info 41 [00:02:00.000] Projects: /user/username/projects/myproject/random/tsconfig.json After request PolledWatches:: @@ -365,11 +365,11 @@ FsWatchesRecursive:: /user/username/projects/myproject/random: {} -Info 41 [16:02:01.000] response: +Info 41 [00:02:01.000] response: { "responseRequired": false } -Info 42 [16:02:02.000] request: +Info 42 [00:02:02.000] request: { "command": "rename", "arguments": { @@ -404,8 +404,8 @@ FsWatchesRecursive:: /user/username/projects/myproject/random: {} -Info 43 [16:02:03.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/decls/FnS.d.ts 500 undefined WatchType: Closed Script info -Info 44 [16:02:04.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/decls/FnS.d.ts.map 500 undefined WatchType: Closed Script info +Info 43 [00:02:03.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/decls/FnS.d.ts 500 undefined WatchType: Closed Script info +Info 44 [00:02:04.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/decls/FnS.d.ts.map 500 undefined WatchType: Closed Script info After request PolledWatches:: @@ -434,7 +434,7 @@ FsWatchesRecursive:: /user/username/projects/myproject/random: {} -Info 45 [16:02:05.000] response: +Info 45 [00:02:05.000] response: { "response": { "info": { @@ -482,10 +482,10 @@ Info 45 [16:02:05.000] response: }, "responseRequired": true } -Info 46 [16:02:09.000] FileWatcher:: Triggered with /user/username/projects/myproject/decls/FnS.d.ts 1:: WatchInfo: /user/username/projects/myproject/decls/FnS.d.ts 500 undefined WatchType: Closed Script info -Info 47 [16:02:10.000] Scheduled: /user/username/projects/myproject/dependency/tsconfig.json -Info 48 [16:02:11.000] Scheduled: *ensureProjectForOpenFiles* -Info 49 [16:02:12.000] Elapsed:: *ms FileWatcher:: Triggered with /user/username/projects/myproject/decls/FnS.d.ts 1:: WatchInfo: /user/username/projects/myproject/decls/FnS.d.ts 500 undefined WatchType: Closed Script info +Info 46 [00:02:09.000] FileWatcher:: Triggered with /user/username/projects/myproject/decls/FnS.d.ts 1:: WatchInfo: /user/username/projects/myproject/decls/FnS.d.ts 500 undefined WatchType: Closed Script info +Info 47 [00:02:10.000] Scheduled: /user/username/projects/myproject/dependency/tsconfig.json +Info 48 [00:02:11.000] Scheduled: *ensureProjectForOpenFiles* +Info 49 [00:02:12.000] Elapsed:: *ms FileWatcher:: Triggered with /user/username/projects/myproject/decls/FnS.d.ts 1:: WatchInfo: /user/username/projects/myproject/decls/FnS.d.ts 500 undefined WatchType: Closed Script info Before running timeout callbacks //// [/user/username/projects/myproject/decls/FnS.d.ts] export declare function fn1(): void; @@ -523,38 +523,38 @@ FsWatchesRecursive:: /user/username/projects/myproject/random: {} -Info 50 [16:02:13.000] Running: /user/username/projects/myproject/dependency/tsconfig.json -Info 51 [16:02:14.000] Starting updateGraphWorker: Project: /user/username/projects/myproject/dependency/tsconfig.json -Info 52 [16:02:15.000] Finishing updateGraphWorker: Project: /user/username/projects/myproject/dependency/tsconfig.json Version: 2 structureChanged: false structureIsReused:: Not Elapsed:: *ms -Info 53 [16:02:16.000] Running: *ensureProjectForOpenFiles* -Info 54 [16:02:17.000] Before ensureProjectForOpenFiles: -Info 55 [16:02:18.000] Project '/user/username/projects/myproject/dependency/tsconfig.json' (Configured) -Info 55 [16:02:19.000] Files (2) - -Info 55 [16:02:20.000] ----------------------------------------------- -Info 55 [16:02:21.000] Project '/user/username/projects/myproject/random/tsconfig.json' (Configured) -Info 55 [16:02:22.000] Files (2) - -Info 55 [16:02:23.000] ----------------------------------------------- -Info 55 [16:02:24.000] Open files: -Info 55 [16:02:25.000] FileName: /user/username/projects/myproject/dependency/FnS.ts ProjectRootPath: undefined -Info 55 [16:02:26.000] Projects: /user/username/projects/myproject/dependency/tsconfig.json -Info 55 [16:02:27.000] FileName: /user/username/projects/myproject/random/random.ts ProjectRootPath: undefined -Info 55 [16:02:28.000] Projects: /user/username/projects/myproject/random/tsconfig.json -Info 55 [16:02:29.000] After ensureProjectForOpenFiles: -Info 56 [16:02:30.000] Project '/user/username/projects/myproject/dependency/tsconfig.json' (Configured) -Info 56 [16:02:31.000] Files (2) - -Info 56 [16:02:32.000] ----------------------------------------------- -Info 56 [16:02:33.000] Project '/user/username/projects/myproject/random/tsconfig.json' (Configured) -Info 56 [16:02:34.000] Files (2) - -Info 56 [16:02:35.000] ----------------------------------------------- -Info 56 [16:02:36.000] Open files: -Info 56 [16:02:37.000] FileName: /user/username/projects/myproject/dependency/FnS.ts ProjectRootPath: undefined -Info 56 [16:02:38.000] Projects: /user/username/projects/myproject/dependency/tsconfig.json -Info 56 [16:02:39.000] FileName: /user/username/projects/myproject/random/random.ts ProjectRootPath: undefined -Info 56 [16:02:40.000] Projects: /user/username/projects/myproject/random/tsconfig.json +Info 50 [00:02:13.000] Running: /user/username/projects/myproject/dependency/tsconfig.json +Info 51 [00:02:14.000] Starting updateGraphWorker: Project: /user/username/projects/myproject/dependency/tsconfig.json +Info 52 [00:02:15.000] Finishing updateGraphWorker: Project: /user/username/projects/myproject/dependency/tsconfig.json Version: 2 structureChanged: false structureIsReused:: Not Elapsed:: *ms +Info 53 [00:02:16.000] Running: *ensureProjectForOpenFiles* +Info 54 [00:02:17.000] Before ensureProjectForOpenFiles: +Info 55 [00:02:18.000] Project '/user/username/projects/myproject/dependency/tsconfig.json' (Configured) +Info 55 [00:02:19.000] Files (2) + +Info 55 [00:02:20.000] ----------------------------------------------- +Info 55 [00:02:21.000] Project '/user/username/projects/myproject/random/tsconfig.json' (Configured) +Info 55 [00:02:22.000] Files (2) + +Info 55 [00:02:23.000] ----------------------------------------------- +Info 55 [00:02:24.000] Open files: +Info 55 [00:02:25.000] FileName: /user/username/projects/myproject/dependency/FnS.ts ProjectRootPath: undefined +Info 55 [00:02:26.000] Projects: /user/username/projects/myproject/dependency/tsconfig.json +Info 55 [00:02:27.000] FileName: /user/username/projects/myproject/random/random.ts ProjectRootPath: undefined +Info 55 [00:02:28.000] Projects: /user/username/projects/myproject/random/tsconfig.json +Info 55 [00:02:29.000] After ensureProjectForOpenFiles: +Info 56 [00:02:30.000] Project '/user/username/projects/myproject/dependency/tsconfig.json' (Configured) +Info 56 [00:02:31.000] Files (2) + +Info 56 [00:02:32.000] ----------------------------------------------- +Info 56 [00:02:33.000] Project '/user/username/projects/myproject/random/tsconfig.json' (Configured) +Info 56 [00:02:34.000] Files (2) + +Info 56 [00:02:35.000] ----------------------------------------------- +Info 56 [00:02:36.000] Open files: +Info 56 [00:02:37.000] FileName: /user/username/projects/myproject/dependency/FnS.ts ProjectRootPath: undefined +Info 56 [00:02:38.000] Projects: /user/username/projects/myproject/dependency/tsconfig.json +Info 56 [00:02:39.000] FileName: /user/username/projects/myproject/random/random.ts ProjectRootPath: undefined +Info 56 [00:02:40.000] Projects: /user/username/projects/myproject/random/tsconfig.json After running timeout callbacks PolledWatches:: @@ -583,7 +583,7 @@ FsWatchesRecursive:: /user/username/projects/myproject/random: {} -Info 56 [16:02:41.000] request: +Info 56 [00:02:41.000] request: { "command": "rename", "arguments": { @@ -650,7 +650,7 @@ FsWatchesRecursive:: /user/username/projects/myproject/random: {} -Info 57 [16:02:42.000] response: +Info 57 [00:02:42.000] response: { "response": { "info": { @@ -698,7 +698,7 @@ Info 57 [16:02:42.000] response: }, "responseRequired": true } -Info 58 [16:02:43.000] request: +Info 58 [00:02:43.000] request: { "command": "rename", "arguments": { @@ -765,7 +765,7 @@ FsWatchesRecursive:: /user/username/projects/myproject/random: {} -Info 59 [16:02:44.000] response: +Info 59 [00:02:44.000] response: { "response": { "info": { @@ -813,7 +813,7 @@ Info 59 [16:02:44.000] response: }, "responseRequired": true } -Info 60 [16:02:45.000] request: +Info 60 [00:02:45.000] request: { "command": "rename", "arguments": { @@ -880,7 +880,7 @@ FsWatchesRecursive:: /user/username/projects/myproject/random: {} -Info 61 [16:02:46.000] response: +Info 61 [00:02:46.000] response: { "response": { "info": { @@ -928,7 +928,7 @@ Info 61 [16:02:46.000] response: }, "responseRequired": true } -Info 62 [16:02:47.000] request: +Info 62 [00:02:47.000] request: { "command": "rename", "arguments": { @@ -995,7 +995,7 @@ FsWatchesRecursive:: /user/username/projects/myproject/random: {} -Info 63 [16:02:48.000] response: +Info 63 [00:02:48.000] response: { "response": { "info": { @@ -1043,7 +1043,7 @@ Info 63 [16:02:48.000] response: }, "responseRequired": true } -Info 64 [16:02:49.000] request: +Info 64 [00:02:49.000] request: { "command": "rename", "arguments": { @@ -1110,7 +1110,7 @@ FsWatchesRecursive:: /user/username/projects/myproject/random: {} -Info 65 [16:02:50.000] response: +Info 65 [00:02:50.000] response: { "response": { "info": { 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 b0d7f27862440..1020d4a7d24eb 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 @@ -1,5 +1,5 @@ -Info 0 [16:01:03.000] Provided types map file "/a/lib/typesMap.json" doesn't exist -Info 1 [16:01:04.000] request: +Info 0 [00:01:03.000] Provided types map file "/a/lib/typesMap.json" doesn't exist +Info 1 [00:01:04.000] request: { "seq": 0, "type": "request", @@ -200,11 +200,11 @@ FsWatches:: FsWatchesRecursive:: -Info 2 [16:01:05.000] Search path: /user/username/projects/myproject/dependency -Info 3 [16:01:06.000] For info: /user/username/projects/myproject/dependency/FnS.ts :: Config file name: /user/username/projects/myproject/dependency/tsconfig.json -Info 4 [16:01:07.000] Creating configuration project /user/username/projects/myproject/dependency/tsconfig.json -Info 5 [16:01:08.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/dependency/tsconfig.json 2000 undefined Project: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Config file -Info 6 [16:01:09.000] Config: /user/username/projects/myproject/dependency/tsconfig.json : { +Info 2 [00:01:05.000] Search path: /user/username/projects/myproject/dependency +Info 3 [00:01:06.000] For info: /user/username/projects/myproject/dependency/FnS.ts :: Config file name: /user/username/projects/myproject/dependency/tsconfig.json +Info 4 [00:01:07.000] Creating configuration project /user/username/projects/myproject/dependency/tsconfig.json +Info 5 [00:01:08.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/dependency/tsconfig.json 2000 undefined Project: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Config file +Info 6 [00:01:09.000] Config: /user/username/projects/myproject/dependency/tsconfig.json : { "rootNames": [ "/user/username/projects/myproject/dependency/FnS.ts" ], @@ -215,18 +215,18 @@ Info 6 [16:01:09.000] Config: /user/username/projects/myproject/dependency/ts "configFilePath": "/user/username/projects/myproject/dependency/tsconfig.json" } } -Info 7 [16:01:10.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/dependency 1 undefined Config: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Wild card directory -Info 8 [16:01:11.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/dependency 1 undefined Config: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Wild card directory -Info 9 [16:01:12.000] Plugins were requested but not running in environment that supports 'require'. Nothing will be loaded -Info 10 [16:01:13.000] Starting updateGraphWorker: Project: /user/username/projects/myproject/dependency/tsconfig.json -Info 11 [16:01:14.000] FileWatcher:: Added:: WatchInfo: /a/lib/lib.d.ts 500 undefined WatchType: Closed Script info -Info 12 [16:01:15.000] 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 13 [16:01:16.000] 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 14 [16:01:17.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Type roots -Info 15 [16:01:18.000] 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 16 [16:01:19.000] Finishing updateGraphWorker: Project: /user/username/projects/myproject/dependency/tsconfig.json Version: 1 structureChanged: true structureIsReused:: Not Elapsed:: *ms -Info 17 [16:01:20.000] Project '/user/username/projects/myproject/dependency/tsconfig.json' (Configured) -Info 18 [16:01:21.000] Files (2) +Info 7 [00:01:10.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/dependency 1 undefined Config: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Wild card directory +Info 8 [00:01:11.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/dependency 1 undefined Config: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Wild card directory +Info 9 [00:01:12.000] Plugins were requested but not running in environment that supports 'require'. Nothing will be loaded +Info 10 [00:01:13.000] Starting updateGraphWorker: Project: /user/username/projects/myproject/dependency/tsconfig.json +Info 11 [00:01:14.000] FileWatcher:: Added:: WatchInfo: /a/lib/lib.d.ts 500 undefined WatchType: Closed Script info +Info 12 [00:01:15.000] 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 13 [00:01:16.000] 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 14 [00:01:17.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Type roots +Info 15 [00:01:18.000] 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 16 [00:01:19.000] Finishing updateGraphWorker: Project: /user/username/projects/myproject/dependency/tsconfig.json Version: 1 structureChanged: true structureIsReused:: Not Elapsed:: *ms +Info 17 [00:01:20.000] Project '/user/username/projects/myproject/dependency/tsconfig.json' (Configured) +Info 18 [00:01:21.000] Files (2) /a/lib/lib.d.ts /user/username/projects/myproject/dependency/FnS.ts @@ -236,16 +236,16 @@ Info 18 [16:01:21.000] Files (2) FnS.ts Matched by default include pattern '**/*' -Info 19 [16:01:22.000] ----------------------------------------------- -Info 20 [16:01:23.000] Search path: /user/username/projects/myproject/dependency -Info 21 [16:01:24.000] For info: /user/username/projects/myproject/dependency/tsconfig.json :: No config files found. -Info 22 [16:01:25.000] Project '/user/username/projects/myproject/dependency/tsconfig.json' (Configured) -Info 22 [16:01:26.000] Files (2) +Info 19 [00:01:22.000] ----------------------------------------------- +Info 20 [00:01:23.000] Search path: /user/username/projects/myproject/dependency +Info 21 [00:01:24.000] For info: /user/username/projects/myproject/dependency/tsconfig.json :: No config files found. +Info 22 [00:01:25.000] Project '/user/username/projects/myproject/dependency/tsconfig.json' (Configured) +Info 22 [00:01:26.000] Files (2) -Info 22 [16:01:27.000] ----------------------------------------------- -Info 22 [16:01:28.000] Open files: -Info 22 [16:01:29.000] FileName: /user/username/projects/myproject/dependency/FnS.ts ProjectRootPath: undefined -Info 22 [16:01:30.000] Projects: /user/username/projects/myproject/dependency/tsconfig.json +Info 22 [00:01:27.000] ----------------------------------------------- +Info 22 [00:01:28.000] Open files: +Info 22 [00:01:29.000] FileName: /user/username/projects/myproject/dependency/FnS.ts ProjectRootPath: undefined +Info 22 [00:01:30.000] Projects: /user/username/projects/myproject/dependency/tsconfig.json After request PolledWatches:: @@ -264,11 +264,11 @@ FsWatchesRecursive:: /user/username/projects/myproject/dependency: {} -Info 22 [16:01:31.000] response: +Info 22 [00:01:31.000] response: { "responseRequired": false } -Info 23 [16:01:32.000] request: +Info 23 [00:01:32.000] request: { "seq": 0, "type": "request", @@ -295,11 +295,11 @@ FsWatchesRecursive:: /user/username/projects/myproject/dependency: {} -Info 24 [16:01:33.000] Search path: /user/username/projects/myproject/random -Info 25 [16:01:34.000] For info: /user/username/projects/myproject/random/random.ts :: Config file name: /user/username/projects/myproject/random/tsconfig.json -Info 26 [16:01:35.000] Creating configuration project /user/username/projects/myproject/random/tsconfig.json -Info 27 [16:01:36.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/random/tsconfig.json 2000 undefined Project: /user/username/projects/myproject/random/tsconfig.json WatchType: Config file -Info 28 [16:01:37.000] Config: /user/username/projects/myproject/random/tsconfig.json : { +Info 24 [00:01:33.000] Search path: /user/username/projects/myproject/random +Info 25 [00:01:34.000] For info: /user/username/projects/myproject/random/random.ts :: Config file name: /user/username/projects/myproject/random/tsconfig.json +Info 26 [00:01:35.000] Creating configuration project /user/username/projects/myproject/random/tsconfig.json +Info 27 [00:01:36.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/random/tsconfig.json 2000 undefined Project: /user/username/projects/myproject/random/tsconfig.json WatchType: Config file +Info 28 [00:01:37.000] Config: /user/username/projects/myproject/random/tsconfig.json : { "rootNames": [ "/user/username/projects/myproject/random/random.ts" ], @@ -307,17 +307,17 @@ Info 28 [16:01:37.000] Config: /user/username/projects/myproject/random/tsconf "configFilePath": "/user/username/projects/myproject/random/tsconfig.json" } } -Info 29 [16:01:38.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/random 1 undefined Config: /user/username/projects/myproject/random/tsconfig.json WatchType: Wild card directory -Info 30 [16:01:39.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/random 1 undefined Config: /user/username/projects/myproject/random/tsconfig.json WatchType: Wild card directory -Info 31 [16:01:40.000] Plugins were requested but not running in environment that supports 'require'. Nothing will be loaded -Info 32 [16:01:41.000] Starting updateGraphWorker: Project: /user/username/projects/myproject/random/tsconfig.json -Info 33 [16:01:42.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/random/node_modules/@types 1 undefined Project: /user/username/projects/myproject/random/tsconfig.json WatchType: Type roots -Info 34 [16:01:43.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/random/node_modules/@types 1 undefined Project: /user/username/projects/myproject/random/tsconfig.json WatchType: Type roots -Info 35 [16:01:44.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/random/tsconfig.json WatchType: Type roots -Info 36 [16:01:45.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/random/tsconfig.json WatchType: Type roots -Info 37 [16:01:46.000] Finishing updateGraphWorker: Project: /user/username/projects/myproject/random/tsconfig.json Version: 1 structureChanged: true structureIsReused:: Not Elapsed:: *ms -Info 38 [16:01:47.000] Project '/user/username/projects/myproject/random/tsconfig.json' (Configured) -Info 39 [16:01:48.000] Files (2) +Info 29 [00:01:38.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/random 1 undefined Config: /user/username/projects/myproject/random/tsconfig.json WatchType: Wild card directory +Info 30 [00:01:39.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/random 1 undefined Config: /user/username/projects/myproject/random/tsconfig.json WatchType: Wild card directory +Info 31 [00:01:40.000] Plugins were requested but not running in environment that supports 'require'. Nothing will be loaded +Info 32 [00:01:41.000] Starting updateGraphWorker: Project: /user/username/projects/myproject/random/tsconfig.json +Info 33 [00:01:42.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/random/node_modules/@types 1 undefined Project: /user/username/projects/myproject/random/tsconfig.json WatchType: Type roots +Info 34 [00:01:43.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/random/node_modules/@types 1 undefined Project: /user/username/projects/myproject/random/tsconfig.json WatchType: Type roots +Info 35 [00:01:44.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/random/tsconfig.json WatchType: Type roots +Info 36 [00:01:45.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/random/tsconfig.json WatchType: Type roots +Info 37 [00:01:46.000] Finishing updateGraphWorker: Project: /user/username/projects/myproject/random/tsconfig.json Version: 1 structureChanged: true structureIsReused:: Not Elapsed:: *ms +Info 38 [00:01:47.000] Project '/user/username/projects/myproject/random/tsconfig.json' (Configured) +Info 39 [00:01:48.000] Files (2) /a/lib/lib.d.ts /user/username/projects/myproject/random/random.ts @@ -327,20 +327,20 @@ Info 39 [16:01:48.000] Files (2) random.ts Matched by default include pattern '**/*' -Info 40 [16:01:49.000] ----------------------------------------------- -Info 41 [16:01:50.000] Project '/user/username/projects/myproject/dependency/tsconfig.json' (Configured) -Info 41 [16:01:51.000] Files (2) +Info 40 [00:01:49.000] ----------------------------------------------- +Info 41 [00:01:50.000] Project '/user/username/projects/myproject/dependency/tsconfig.json' (Configured) +Info 41 [00:01:51.000] Files (2) -Info 41 [16:01:52.000] ----------------------------------------------- -Info 41 [16:01:53.000] Project '/user/username/projects/myproject/random/tsconfig.json' (Configured) -Info 41 [16:01:54.000] Files (2) +Info 41 [00:01:52.000] ----------------------------------------------- +Info 41 [00:01:53.000] Project '/user/username/projects/myproject/random/tsconfig.json' (Configured) +Info 41 [00:01:54.000] Files (2) -Info 41 [16:01:55.000] ----------------------------------------------- -Info 41 [16:01:56.000] Open files: -Info 41 [16:01:57.000] FileName: /user/username/projects/myproject/dependency/FnS.ts ProjectRootPath: undefined -Info 41 [16:01:58.000] Projects: /user/username/projects/myproject/dependency/tsconfig.json -Info 41 [16:01:59.000] FileName: /user/username/projects/myproject/random/random.ts ProjectRootPath: undefined -Info 41 [16:02:00.000] Projects: /user/username/projects/myproject/random/tsconfig.json +Info 41 [00:01:55.000] ----------------------------------------------- +Info 41 [00:01:56.000] Open files: +Info 41 [00:01:57.000] FileName: /user/username/projects/myproject/dependency/FnS.ts ProjectRootPath: undefined +Info 41 [00:01:58.000] Projects: /user/username/projects/myproject/dependency/tsconfig.json +Info 41 [00:01:59.000] FileName: /user/username/projects/myproject/random/random.ts ProjectRootPath: undefined +Info 41 [00:02:00.000] Projects: /user/username/projects/myproject/random/tsconfig.json After request PolledWatches:: @@ -365,11 +365,11 @@ FsWatchesRecursive:: /user/username/projects/myproject/random: {} -Info 41 [16:02:01.000] response: +Info 41 [00:02:01.000] response: { "responseRequired": false } -Info 42 [16:02:02.000] request: +Info 42 [00:02:02.000] request: { "command": "rename", "arguments": { @@ -404,8 +404,8 @@ FsWatchesRecursive:: /user/username/projects/myproject/random: {} -Info 43 [16:02:03.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/decls/FnS.d.ts 500 undefined WatchType: Closed Script info -Info 44 [16:02:04.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/decls/FnS.d.ts.map 500 undefined WatchType: Closed Script info +Info 43 [00:02:03.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/decls/FnS.d.ts 500 undefined WatchType: Closed Script info +Info 44 [00:02:04.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/decls/FnS.d.ts.map 500 undefined WatchType: Closed Script info After request PolledWatches:: @@ -434,7 +434,7 @@ FsWatchesRecursive:: /user/username/projects/myproject/random: {} -Info 45 [16:02:05.000] response: +Info 45 [00:02:05.000] response: { "response": { "info": { @@ -482,11 +482,11 @@ Info 45 [16:02:05.000] response: }, "responseRequired": true } -Info 46 [16:02:09.000] FileWatcher:: Triggered with /user/username/projects/myproject/decls/FnS.d.ts 1:: WatchInfo: /user/username/projects/myproject/decls/FnS.d.ts 500 undefined WatchType: Closed Script info -Info 47 [16:02:10.000] Scheduled: /user/username/projects/myproject/dependency/tsconfig.json -Info 48 [16:02:11.000] Scheduled: *ensureProjectForOpenFiles* -Info 49 [16:02:12.000] Elapsed:: *ms FileWatcher:: Triggered with /user/username/projects/myproject/decls/FnS.d.ts 1:: WatchInfo: /user/username/projects/myproject/decls/FnS.d.ts 500 undefined WatchType: Closed Script info -Info 50 [16:02:13.000] request: +Info 46 [00:02:09.000] FileWatcher:: Triggered with /user/username/projects/myproject/decls/FnS.d.ts 1:: WatchInfo: /user/username/projects/myproject/decls/FnS.d.ts 500 undefined WatchType: Closed Script info +Info 47 [00:02:10.000] Scheduled: /user/username/projects/myproject/dependency/tsconfig.json +Info 48 [00:02:11.000] Scheduled: *ensureProjectForOpenFiles* +Info 49 [00:02:12.000] Elapsed:: *ms FileWatcher:: Triggered with /user/username/projects/myproject/decls/FnS.d.ts 1:: WatchInfo: /user/username/projects/myproject/decls/FnS.d.ts 500 undefined WatchType: Closed Script info +Info 50 [00:02:13.000] request: { "command": "rename", "arguments": { @@ -534,8 +534,8 @@ FsWatchesRecursive:: /user/username/projects/myproject/random: {} -Info 51 [16:02:14.000] Starting updateGraphWorker: Project: /user/username/projects/myproject/dependency/tsconfig.json -Info 52 [16:02:15.000] Finishing updateGraphWorker: Project: /user/username/projects/myproject/dependency/tsconfig.json Version: 2 structureChanged: false structureIsReused:: Not Elapsed:: *ms +Info 51 [00:02:14.000] Starting updateGraphWorker: Project: /user/username/projects/myproject/dependency/tsconfig.json +Info 52 [00:02:15.000] Finishing updateGraphWorker: Project: /user/username/projects/myproject/dependency/tsconfig.json Version: 2 structureChanged: false structureIsReused:: Not Elapsed:: *ms After request PolledWatches:: @@ -564,7 +564,7 @@ FsWatchesRecursive:: /user/username/projects/myproject/random: {} -Info 53 [16:02:16.000] response: +Info 53 [00:02:16.000] response: { "response": { "info": { @@ -612,7 +612,7 @@ Info 53 [16:02:16.000] response: }, "responseRequired": true } -Info 54 [16:02:17.000] request: +Info 54 [00:02:17.000] request: { "command": "rename", "arguments": { @@ -679,7 +679,7 @@ FsWatchesRecursive:: /user/username/projects/myproject/random: {} -Info 55 [16:02:18.000] response: +Info 55 [00:02:18.000] response: { "response": { "info": { @@ -727,7 +727,7 @@ Info 55 [16:02:18.000] response: }, "responseRequired": true } -Info 56 [16:02:19.000] request: +Info 56 [00:02:19.000] request: { "command": "rename", "arguments": { @@ -794,7 +794,7 @@ FsWatchesRecursive:: /user/username/projects/myproject/random: {} -Info 57 [16:02:20.000] response: +Info 57 [00:02:20.000] response: { "response": { "info": { @@ -842,7 +842,7 @@ Info 57 [16:02:20.000] response: }, "responseRequired": true } -Info 58 [16:02:21.000] request: +Info 58 [00:02:21.000] request: { "command": "rename", "arguments": { @@ -909,7 +909,7 @@ FsWatchesRecursive:: /user/username/projects/myproject/random: {} -Info 59 [16:02:22.000] response: +Info 59 [00:02:22.000] response: { "response": { "info": { @@ -957,7 +957,7 @@ Info 59 [16:02:22.000] response: }, "responseRequired": true } -Info 60 [16:02:23.000] request: +Info 60 [00:02:23.000] request: { "command": "rename", "arguments": { @@ -1024,7 +1024,7 @@ FsWatchesRecursive:: /user/username/projects/myproject/random: {} -Info 61 [16:02:24.000] response: +Info 61 [00:02:24.000] response: { "response": { "info": { 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 3f60cab0e0d96..ff7a7fdc4dc9d 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 @@ -1,5 +1,5 @@ -Info 0 [16:01:04.000] Provided types map file "/a/lib/typesMap.json" doesn't exist -Info 1 [16:01:05.000] request: +Info 0 [00:01:04.000] Provided types map file "/a/lib/typesMap.json" doesn't exist +Info 1 [00:01:05.000] request: { "seq": 0, "type": "request", @@ -192,11 +192,11 @@ FsWatches:: FsWatchesRecursive:: -Info 2 [16:01:06.000] Search path: /user/username/projects/myproject/dependency -Info 3 [16:01:07.000] For info: /user/username/projects/myproject/dependency/FnS.ts :: Config file name: /user/username/projects/myproject/dependency/tsconfig.json -Info 4 [16:01:08.000] Creating configuration project /user/username/projects/myproject/dependency/tsconfig.json -Info 5 [16:01:09.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/dependency/tsconfig.json 2000 undefined Project: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Config file -Info 6 [16:01:10.000] Config: /user/username/projects/myproject/dependency/tsconfig.json : { +Info 2 [00:01:06.000] Search path: /user/username/projects/myproject/dependency +Info 3 [00:01:07.000] For info: /user/username/projects/myproject/dependency/FnS.ts :: Config file name: /user/username/projects/myproject/dependency/tsconfig.json +Info 4 [00:01:08.000] Creating configuration project /user/username/projects/myproject/dependency/tsconfig.json +Info 5 [00:01:09.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/dependency/tsconfig.json 2000 undefined Project: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Config file +Info 6 [00:01:10.000] Config: /user/username/projects/myproject/dependency/tsconfig.json : { "rootNames": [ "/user/username/projects/myproject/dependency/FnS.ts" ], @@ -207,18 +207,18 @@ Info 6 [16:01:10.000] Config: /user/username/projects/myproject/dependency/ts "configFilePath": "/user/username/projects/myproject/dependency/tsconfig.json" } } -Info 7 [16:01:11.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/dependency 1 undefined Config: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Wild card directory -Info 8 [16:01:12.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/dependency 1 undefined Config: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Wild card directory -Info 9 [16:01:13.000] Plugins were requested but not running in environment that supports 'require'. Nothing will be loaded -Info 10 [16:01:14.000] Starting updateGraphWorker: Project: /user/username/projects/myproject/dependency/tsconfig.json -Info 11 [16:01:15.000] FileWatcher:: Added:: WatchInfo: /a/lib/lib.d.ts 500 undefined WatchType: Closed Script info -Info 12 [16:01:16.000] 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 13 [16:01:17.000] 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 14 [16:01:18.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Type roots -Info 15 [16:01:19.000] 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 16 [16:01:20.000] Finishing updateGraphWorker: Project: /user/username/projects/myproject/dependency/tsconfig.json Version: 1 structureChanged: true structureIsReused:: Not Elapsed:: *ms -Info 17 [16:01:21.000] Project '/user/username/projects/myproject/dependency/tsconfig.json' (Configured) -Info 18 [16:01:22.000] Files (2) +Info 7 [00:01:11.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/dependency 1 undefined Config: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Wild card directory +Info 8 [00:01:12.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/dependency 1 undefined Config: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Wild card directory +Info 9 [00:01:13.000] Plugins were requested but not running in environment that supports 'require'. Nothing will be loaded +Info 10 [00:01:14.000] Starting updateGraphWorker: Project: /user/username/projects/myproject/dependency/tsconfig.json +Info 11 [00:01:15.000] FileWatcher:: Added:: WatchInfo: /a/lib/lib.d.ts 500 undefined WatchType: Closed Script info +Info 12 [00:01:16.000] 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 13 [00:01:17.000] 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 14 [00:01:18.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Type roots +Info 15 [00:01:19.000] 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 16 [00:01:20.000] Finishing updateGraphWorker: Project: /user/username/projects/myproject/dependency/tsconfig.json Version: 1 structureChanged: true structureIsReused:: Not Elapsed:: *ms +Info 17 [00:01:21.000] Project '/user/username/projects/myproject/dependency/tsconfig.json' (Configured) +Info 18 [00:01:22.000] Files (2) /a/lib/lib.d.ts /user/username/projects/myproject/dependency/FnS.ts @@ -228,16 +228,16 @@ Info 18 [16:01:22.000] Files (2) FnS.ts Matched by default include pattern '**/*' -Info 19 [16:01:23.000] ----------------------------------------------- -Info 20 [16:01:24.000] Search path: /user/username/projects/myproject/dependency -Info 21 [16:01:25.000] For info: /user/username/projects/myproject/dependency/tsconfig.json :: No config files found. -Info 22 [16:01:26.000] Project '/user/username/projects/myproject/dependency/tsconfig.json' (Configured) -Info 22 [16:01:27.000] Files (2) +Info 19 [00:01:23.000] ----------------------------------------------- +Info 20 [00:01:24.000] Search path: /user/username/projects/myproject/dependency +Info 21 [00:01:25.000] For info: /user/username/projects/myproject/dependency/tsconfig.json :: No config files found. +Info 22 [00:01:26.000] Project '/user/username/projects/myproject/dependency/tsconfig.json' (Configured) +Info 22 [00:01:27.000] Files (2) -Info 22 [16:01:28.000] ----------------------------------------------- -Info 22 [16:01:29.000] Open files: -Info 22 [16:01:30.000] FileName: /user/username/projects/myproject/dependency/FnS.ts ProjectRootPath: undefined -Info 22 [16:01:31.000] Projects: /user/username/projects/myproject/dependency/tsconfig.json +Info 22 [00:01:28.000] ----------------------------------------------- +Info 22 [00:01:29.000] Open files: +Info 22 [00:01:30.000] FileName: /user/username/projects/myproject/dependency/FnS.ts ProjectRootPath: undefined +Info 22 [00:01:31.000] Projects: /user/username/projects/myproject/dependency/tsconfig.json After request PolledWatches:: @@ -256,11 +256,11 @@ FsWatchesRecursive:: /user/username/projects/myproject/dependency: {} -Info 22 [16:01:32.000] response: +Info 22 [00:01:32.000] response: { "responseRequired": false } -Info 23 [16:01:33.000] request: +Info 23 [00:01:33.000] request: { "seq": 0, "type": "request", @@ -287,11 +287,11 @@ FsWatchesRecursive:: /user/username/projects/myproject/dependency: {} -Info 24 [16:01:34.000] Search path: /user/username/projects/myproject/random -Info 25 [16:01:35.000] For info: /user/username/projects/myproject/random/random.ts :: Config file name: /user/username/projects/myproject/random/tsconfig.json -Info 26 [16:01:36.000] Creating configuration project /user/username/projects/myproject/random/tsconfig.json -Info 27 [16:01:37.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/random/tsconfig.json 2000 undefined Project: /user/username/projects/myproject/random/tsconfig.json WatchType: Config file -Info 28 [16:01:38.000] Config: /user/username/projects/myproject/random/tsconfig.json : { +Info 24 [00:01:34.000] Search path: /user/username/projects/myproject/random +Info 25 [00:01:35.000] For info: /user/username/projects/myproject/random/random.ts :: Config file name: /user/username/projects/myproject/random/tsconfig.json +Info 26 [00:01:36.000] Creating configuration project /user/username/projects/myproject/random/tsconfig.json +Info 27 [00:01:37.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/random/tsconfig.json 2000 undefined Project: /user/username/projects/myproject/random/tsconfig.json WatchType: Config file +Info 28 [00:01:38.000] Config: /user/username/projects/myproject/random/tsconfig.json : { "rootNames": [ "/user/username/projects/myproject/random/random.ts" ], @@ -299,17 +299,17 @@ Info 28 [16:01:38.000] Config: /user/username/projects/myproject/random/tsconf "configFilePath": "/user/username/projects/myproject/random/tsconfig.json" } } -Info 29 [16:01:39.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/random 1 undefined Config: /user/username/projects/myproject/random/tsconfig.json WatchType: Wild card directory -Info 30 [16:01:40.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/random 1 undefined Config: /user/username/projects/myproject/random/tsconfig.json WatchType: Wild card directory -Info 31 [16:01:41.000] Plugins were requested but not running in environment that supports 'require'. Nothing will be loaded -Info 32 [16:01:42.000] Starting updateGraphWorker: Project: /user/username/projects/myproject/random/tsconfig.json -Info 33 [16:01:43.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/random/node_modules/@types 1 undefined Project: /user/username/projects/myproject/random/tsconfig.json WatchType: Type roots -Info 34 [16:01:44.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/random/node_modules/@types 1 undefined Project: /user/username/projects/myproject/random/tsconfig.json WatchType: Type roots -Info 35 [16:01:45.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/random/tsconfig.json WatchType: Type roots -Info 36 [16:01:46.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/random/tsconfig.json WatchType: Type roots -Info 37 [16:01:47.000] Finishing updateGraphWorker: Project: /user/username/projects/myproject/random/tsconfig.json Version: 1 structureChanged: true structureIsReused:: Not Elapsed:: *ms -Info 38 [16:01:48.000] Project '/user/username/projects/myproject/random/tsconfig.json' (Configured) -Info 39 [16:01:49.000] Files (2) +Info 29 [00:01:39.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/random 1 undefined Config: /user/username/projects/myproject/random/tsconfig.json WatchType: Wild card directory +Info 30 [00:01:40.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/random 1 undefined Config: /user/username/projects/myproject/random/tsconfig.json WatchType: Wild card directory +Info 31 [00:01:41.000] Plugins were requested but not running in environment that supports 'require'. Nothing will be loaded +Info 32 [00:01:42.000] Starting updateGraphWorker: Project: /user/username/projects/myproject/random/tsconfig.json +Info 33 [00:01:43.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/random/node_modules/@types 1 undefined Project: /user/username/projects/myproject/random/tsconfig.json WatchType: Type roots +Info 34 [00:01:44.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/random/node_modules/@types 1 undefined Project: /user/username/projects/myproject/random/tsconfig.json WatchType: Type roots +Info 35 [00:01:45.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/random/tsconfig.json WatchType: Type roots +Info 36 [00:01:46.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/random/tsconfig.json WatchType: Type roots +Info 37 [00:01:47.000] Finishing updateGraphWorker: Project: /user/username/projects/myproject/random/tsconfig.json Version: 1 structureChanged: true structureIsReused:: Not Elapsed:: *ms +Info 38 [00:01:48.000] Project '/user/username/projects/myproject/random/tsconfig.json' (Configured) +Info 39 [00:01:49.000] Files (2) /a/lib/lib.d.ts /user/username/projects/myproject/random/random.ts @@ -319,20 +319,20 @@ Info 39 [16:01:49.000] Files (2) random.ts Matched by default include pattern '**/*' -Info 40 [16:01:50.000] ----------------------------------------------- -Info 41 [16:01:51.000] Project '/user/username/projects/myproject/dependency/tsconfig.json' (Configured) -Info 41 [16:01:52.000] Files (2) +Info 40 [00:01:50.000] ----------------------------------------------- +Info 41 [00:01:51.000] Project '/user/username/projects/myproject/dependency/tsconfig.json' (Configured) +Info 41 [00:01:52.000] Files (2) -Info 41 [16:01:53.000] ----------------------------------------------- -Info 41 [16:01:54.000] Project '/user/username/projects/myproject/random/tsconfig.json' (Configured) -Info 41 [16:01:55.000] Files (2) +Info 41 [00:01:53.000] ----------------------------------------------- +Info 41 [00:01:54.000] Project '/user/username/projects/myproject/random/tsconfig.json' (Configured) +Info 41 [00:01:55.000] Files (2) -Info 41 [16:01:56.000] ----------------------------------------------- -Info 41 [16:01:57.000] Open files: -Info 41 [16:01:58.000] FileName: /user/username/projects/myproject/dependency/FnS.ts ProjectRootPath: undefined -Info 41 [16:01:59.000] Projects: /user/username/projects/myproject/dependency/tsconfig.json -Info 41 [16:02:00.000] FileName: /user/username/projects/myproject/random/random.ts ProjectRootPath: undefined -Info 41 [16:02:01.000] Projects: /user/username/projects/myproject/random/tsconfig.json +Info 41 [00:01:56.000] ----------------------------------------------- +Info 41 [00:01:57.000] Open files: +Info 41 [00:01:58.000] FileName: /user/username/projects/myproject/dependency/FnS.ts ProjectRootPath: undefined +Info 41 [00:01:59.000] Projects: /user/username/projects/myproject/dependency/tsconfig.json +Info 41 [00:02:00.000] FileName: /user/username/projects/myproject/random/random.ts ProjectRootPath: undefined +Info 41 [00:02:01.000] Projects: /user/username/projects/myproject/random/tsconfig.json After request PolledWatches:: @@ -357,11 +357,11 @@ FsWatchesRecursive:: /user/username/projects/myproject/random: {} -Info 41 [16:02:02.000] response: +Info 41 [00:02:02.000] response: { "responseRequired": false } -Info 42 [16:02:03.000] request: +Info 42 [00:02:03.000] request: { "command": "rename", "arguments": { @@ -396,7 +396,7 @@ FsWatchesRecursive:: /user/username/projects/myproject/random: {} -Info 43 [16:02:04.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/decls/FnS.d.ts 2000 undefined Project: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Missing generated file +Info 43 [00:02:04.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/decls/FnS.d.ts 2000 undefined Project: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Missing generated file After request PolledWatches:: @@ -423,7 +423,7 @@ FsWatchesRecursive:: /user/username/projects/myproject/random: {} -Info 44 [16:02:05.000] response: +Info 44 [00:02:05.000] response: { "response": { "info": { @@ -471,15 +471,15 @@ Info 44 [16:02:05.000] response: }, "responseRequired": true } -Info 45 [16:02:08.000] FileWatcher:: Triggered with /user/username/projects/myproject/decls/FnS.d.ts 0:: WatchInfo: /user/username/projects/myproject/decls/FnS.d.ts 2000 undefined Project: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Missing generated file -Info 46 [16:02:09.000] Scheduled: /user/username/projects/myproject/dependency/tsconfig.json -Info 47 [16:02:10.000] Scheduled: *ensureProjectForOpenFiles* -Info 48 [16:02:11.000] Elapsed:: *ms FileWatcher:: Triggered with /user/username/projects/myproject/decls/FnS.d.ts 0:: WatchInfo: /user/username/projects/myproject/decls/FnS.d.ts 2000 undefined Project: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Missing generated file -Info 49 [16:02:12.000] FileWatcher:: Triggered with /user/username/projects/myproject/decls/FnS.d.ts 0:: WatchInfo: /user/username/projects/myproject/decls/FnS.d.ts 2000 undefined Project: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Missing generated file -Info 50 [16:02:13.000] Scheduled: /user/username/projects/myproject/dependency/tsconfig.json, Cancelled earlier one -Info 51 [16:02:14.000] Scheduled: *ensureProjectForOpenFiles*, Cancelled earlier one -Info 52 [16:02:15.000] Elapsed:: *ms FileWatcher:: Triggered with /user/username/projects/myproject/decls/FnS.d.ts 0:: WatchInfo: /user/username/projects/myproject/decls/FnS.d.ts 2000 undefined Project: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Missing generated file -Info 53 [16:02:16.000] request: +Info 45 [00:02:08.000] FileWatcher:: Triggered with /user/username/projects/myproject/decls/FnS.d.ts 0:: WatchInfo: /user/username/projects/myproject/decls/FnS.d.ts 2000 undefined Project: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Missing generated file +Info 46 [00:02:09.000] Scheduled: /user/username/projects/myproject/dependency/tsconfig.json +Info 47 [00:02:10.000] Scheduled: *ensureProjectForOpenFiles* +Info 48 [00:02:11.000] Elapsed:: *ms FileWatcher:: Triggered with /user/username/projects/myproject/decls/FnS.d.ts 0:: WatchInfo: /user/username/projects/myproject/decls/FnS.d.ts 2000 undefined Project: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Missing generated file +Info 49 [00:02:12.000] FileWatcher:: Triggered with /user/username/projects/myproject/decls/FnS.d.ts 0:: WatchInfo: /user/username/projects/myproject/decls/FnS.d.ts 2000 undefined Project: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Missing generated file +Info 50 [00:02:13.000] Scheduled: /user/username/projects/myproject/dependency/tsconfig.json, Cancelled earlier one +Info 51 [00:02:14.000] Scheduled: *ensureProjectForOpenFiles*, Cancelled earlier one +Info 52 [00:02:15.000] Elapsed:: *ms FileWatcher:: Triggered with /user/username/projects/myproject/decls/FnS.d.ts 0:: WatchInfo: /user/username/projects/myproject/decls/FnS.d.ts 2000 undefined Project: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Missing generated file +Info 53 [00:02:16.000] request: { "command": "rename", "arguments": { @@ -524,10 +524,10 @@ FsWatchesRecursive:: /user/username/projects/myproject/random: {} -Info 54 [16:02:17.000] Starting updateGraphWorker: Project: /user/username/projects/myproject/dependency/tsconfig.json -Info 55 [16:02:18.000] Finishing updateGraphWorker: Project: /user/username/projects/myproject/dependency/tsconfig.json Version: 2 structureChanged: false structureIsReused:: Not Elapsed:: *ms -Info 56 [16:02:19.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/decls/FnS.d.ts 500 undefined WatchType: Closed Script info -Info 57 [16:02:20.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/decls/FnS.d.ts.map 500 undefined WatchType: Closed Script info +Info 54 [00:02:17.000] Starting updateGraphWorker: Project: /user/username/projects/myproject/dependency/tsconfig.json +Info 55 [00:02:18.000] Finishing updateGraphWorker: Project: /user/username/projects/myproject/dependency/tsconfig.json Version: 2 structureChanged: false structureIsReused:: Not Elapsed:: *ms +Info 56 [00:02:19.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/decls/FnS.d.ts 500 undefined WatchType: Closed Script info +Info 57 [00:02:20.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/decls/FnS.d.ts.map 500 undefined WatchType: Closed Script info After request PolledWatches:: @@ -556,7 +556,7 @@ FsWatchesRecursive:: /user/username/projects/myproject/random: {} -Info 58 [16:02:21.000] response: +Info 58 [00:02:21.000] response: { "response": { "info": { @@ -604,7 +604,7 @@ Info 58 [16:02:21.000] response: }, "responseRequired": true } -Info 59 [16:02:22.000] request: +Info 59 [00:02:22.000] request: { "command": "rename", "arguments": { @@ -671,7 +671,7 @@ FsWatchesRecursive:: /user/username/projects/myproject/random: {} -Info 60 [16:02:23.000] response: +Info 60 [00:02:23.000] response: { "response": { "info": { @@ -719,7 +719,7 @@ Info 60 [16:02:23.000] response: }, "responseRequired": true } -Info 61 [16:02:24.000] request: +Info 61 [00:02:24.000] request: { "command": "rename", "arguments": { @@ -786,7 +786,7 @@ FsWatchesRecursive:: /user/username/projects/myproject/random: {} -Info 62 [16:02:25.000] response: +Info 62 [00:02:25.000] response: { "response": { "info": { @@ -834,7 +834,7 @@ Info 62 [16:02:25.000] response: }, "responseRequired": true } -Info 63 [16:02:26.000] request: +Info 63 [00:02:26.000] request: { "command": "rename", "arguments": { @@ -901,7 +901,7 @@ FsWatchesRecursive:: /user/username/projects/myproject/random: {} -Info 64 [16:02:27.000] response: +Info 64 [00:02:27.000] response: { "response": { "info": { @@ -949,7 +949,7 @@ Info 64 [16:02:27.000] response: }, "responseRequired": true } -Info 65 [16:02:28.000] request: +Info 65 [00:02:28.000] request: { "command": "rename", "arguments": { @@ -1016,7 +1016,7 @@ FsWatchesRecursive:: /user/username/projects/myproject/random: {} -Info 66 [16:02:29.000] response: +Info 66 [00:02:29.000] response: { "response": { "info": { @@ -1064,7 +1064,7 @@ Info 66 [16:02:29.000] response: }, "responseRequired": true } -Info 67 [16:02:30.000] request: +Info 67 [00:02:30.000] request: { "seq": 0, "type": "request", @@ -1101,18 +1101,18 @@ FsWatchesRecursive:: /user/username/projects/myproject/random: {} -Info 68 [16:02:31.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/random/random.ts 500 undefined WatchType: Closed Script info -Info 69 [16:02:32.000] Project '/user/username/projects/myproject/dependency/tsconfig.json' (Configured) -Info 69 [16:02:33.000] Files (2) +Info 68 [00:02:31.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/random/random.ts 500 undefined WatchType: Closed Script info +Info 69 [00:02:32.000] Project '/user/username/projects/myproject/dependency/tsconfig.json' (Configured) +Info 69 [00:02:33.000] Files (2) -Info 69 [16:02:34.000] ----------------------------------------------- -Info 69 [16:02:35.000] Project '/user/username/projects/myproject/random/tsconfig.json' (Configured) -Info 69 [16:02:36.000] Files (2) +Info 69 [00:02:34.000] ----------------------------------------------- +Info 69 [00:02:35.000] Project '/user/username/projects/myproject/random/tsconfig.json' (Configured) +Info 69 [00:02:36.000] Files (2) -Info 69 [16:02:37.000] ----------------------------------------------- -Info 69 [16:02:38.000] Open files: -Info 69 [16:02:39.000] FileName: /user/username/projects/myproject/dependency/FnS.ts ProjectRootPath: undefined -Info 69 [16:02:40.000] Projects: /user/username/projects/myproject/dependency/tsconfig.json +Info 69 [00:02:37.000] ----------------------------------------------- +Info 69 [00:02:38.000] Open files: +Info 69 [00:02:39.000] FileName: /user/username/projects/myproject/dependency/FnS.ts ProjectRootPath: undefined +Info 69 [00:02:40.000] Projects: /user/username/projects/myproject/dependency/tsconfig.json After request PolledWatches:: @@ -1143,11 +1143,11 @@ FsWatchesRecursive:: /user/username/projects/myproject/random: {} -Info 69 [16:02:41.000] response: +Info 69 [00:02:41.000] response: { "responseRequired": false } -Info 70 [16:02:42.000] request: +Info 70 [00:02:42.000] request: { "seq": 0, "type": "request", @@ -1186,22 +1186,22 @@ FsWatchesRecursive:: /user/username/projects/myproject/random: {} -Info 71 [16:02:43.000] FileWatcher:: Close:: WatchInfo: /user/username/projects/myproject/random/random.ts 500 undefined WatchType: Closed Script info -Info 72 [16:02:44.000] Search path: /user/username/projects/myproject/random -Info 73 [16:02:45.000] For info: /user/username/projects/myproject/random/random.ts :: Config file name: /user/username/projects/myproject/random/tsconfig.json -Info 74 [16:02:46.000] Project '/user/username/projects/myproject/dependency/tsconfig.json' (Configured) -Info 74 [16:02:47.000] Files (2) +Info 71 [00:02:43.000] FileWatcher:: Close:: WatchInfo: /user/username/projects/myproject/random/random.ts 500 undefined WatchType: Closed Script info +Info 72 [00:02:44.000] Search path: /user/username/projects/myproject/random +Info 73 [00:02:45.000] For info: /user/username/projects/myproject/random/random.ts :: Config file name: /user/username/projects/myproject/random/tsconfig.json +Info 74 [00:02:46.000] Project '/user/username/projects/myproject/dependency/tsconfig.json' (Configured) +Info 74 [00:02:47.000] Files (2) -Info 74 [16:02:48.000] ----------------------------------------------- -Info 74 [16:02:49.000] Project '/user/username/projects/myproject/random/tsconfig.json' (Configured) -Info 74 [16:02:50.000] Files (2) +Info 74 [00:02:48.000] ----------------------------------------------- +Info 74 [00:02:49.000] Project '/user/username/projects/myproject/random/tsconfig.json' (Configured) +Info 74 [00:02:50.000] Files (2) -Info 74 [16:02:51.000] ----------------------------------------------- -Info 74 [16:02:52.000] Open files: -Info 74 [16:02:53.000] FileName: /user/username/projects/myproject/dependency/FnS.ts ProjectRootPath: undefined -Info 74 [16:02:54.000] Projects: /user/username/projects/myproject/dependency/tsconfig.json -Info 74 [16:02:55.000] FileName: /user/username/projects/myproject/random/random.ts ProjectRootPath: undefined -Info 74 [16:02:56.000] Projects: /user/username/projects/myproject/random/tsconfig.json +Info 74 [00:02:51.000] ----------------------------------------------- +Info 74 [00:02:52.000] Open files: +Info 74 [00:02:53.000] FileName: /user/username/projects/myproject/dependency/FnS.ts ProjectRootPath: undefined +Info 74 [00:02:54.000] Projects: /user/username/projects/myproject/dependency/tsconfig.json +Info 74 [00:02:55.000] FileName: /user/username/projects/myproject/random/random.ts ProjectRootPath: undefined +Info 74 [00:02:56.000] Projects: /user/username/projects/myproject/random/tsconfig.json After request PolledWatches:: @@ -1230,11 +1230,11 @@ FsWatchesRecursive:: /user/username/projects/myproject/random: {} -Info 74 [16:02:57.000] response: +Info 74 [00:02:57.000] response: { "responseRequired": false } -Info 75 [16:02:58.000] request: +Info 75 [00:02:58.000] request: { "seq": 0, "type": "request", @@ -1271,18 +1271,18 @@ FsWatchesRecursive:: /user/username/projects/myproject/random: {} -Info 76 [16:02:59.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/dependency/FnS.ts 500 undefined WatchType: Closed Script info -Info 77 [16:03:00.000] Project '/user/username/projects/myproject/dependency/tsconfig.json' (Configured) -Info 77 [16:03:01.000] Files (2) +Info 76 [00:02:59.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/dependency/FnS.ts 500 undefined WatchType: Closed Script info +Info 77 [00:03:00.000] Project '/user/username/projects/myproject/dependency/tsconfig.json' (Configured) +Info 77 [00:03:01.000] Files (2) -Info 77 [16:03:02.000] ----------------------------------------------- -Info 77 [16:03:03.000] Project '/user/username/projects/myproject/random/tsconfig.json' (Configured) -Info 77 [16:03:04.000] Files (2) +Info 77 [00:03:02.000] ----------------------------------------------- +Info 77 [00:03:03.000] Project '/user/username/projects/myproject/random/tsconfig.json' (Configured) +Info 77 [00:03:04.000] Files (2) -Info 77 [16:03:05.000] ----------------------------------------------- -Info 77 [16:03:06.000] Open files: -Info 77 [16:03:07.000] FileName: /user/username/projects/myproject/random/random.ts ProjectRootPath: undefined -Info 77 [16:03:08.000] Projects: /user/username/projects/myproject/random/tsconfig.json +Info 77 [00:03:05.000] ----------------------------------------------- +Info 77 [00:03:06.000] Open files: +Info 77 [00:03:07.000] FileName: /user/username/projects/myproject/random/random.ts ProjectRootPath: undefined +Info 77 [00:03:08.000] Projects: /user/username/projects/myproject/random/tsconfig.json After request PolledWatches:: @@ -1313,11 +1313,11 @@ FsWatchesRecursive:: /user/username/projects/myproject/random: {} -Info 77 [16:03:09.000] response: +Info 77 [00:03:09.000] response: { "responseRequired": false } -Info 78 [16:03:10.000] request: +Info 78 [00:03:10.000] request: { "seq": 0, "type": "request", @@ -1356,16 +1356,16 @@ FsWatchesRecursive:: /user/username/projects/myproject/random: {} -Info 79 [16:03:11.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/random/random.ts 500 undefined WatchType: Closed Script info -Info 80 [16:03:12.000] Project '/user/username/projects/myproject/dependency/tsconfig.json' (Configured) -Info 80 [16:03:13.000] Files (2) +Info 79 [00:03:11.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/random/random.ts 500 undefined WatchType: Closed Script info +Info 80 [00:03:12.000] Project '/user/username/projects/myproject/dependency/tsconfig.json' (Configured) +Info 80 [00:03:13.000] Files (2) -Info 80 [16:03:14.000] ----------------------------------------------- -Info 80 [16:03:15.000] Project '/user/username/projects/myproject/random/tsconfig.json' (Configured) -Info 80 [16:03:16.000] Files (2) +Info 80 [00:03:14.000] ----------------------------------------------- +Info 80 [00:03:15.000] Project '/user/username/projects/myproject/random/tsconfig.json' (Configured) +Info 80 [00:03:16.000] Files (2) -Info 80 [16:03:17.000] ----------------------------------------------- -Info 80 [16:03:18.000] Open files: +Info 80 [00:03:17.000] ----------------------------------------------- +Info 80 [00:03:18.000] Open files: After request PolledWatches:: @@ -1398,11 +1398,11 @@ FsWatchesRecursive:: /user/username/projects/myproject/random: {} -Info 80 [16:03:19.000] response: +Info 80 [00:03:19.000] response: { "responseRequired": false } -Info 81 [16:03:20.000] request: +Info 81 [00:03:20.000] request: { "seq": 0, "type": "request", @@ -1443,12 +1443,12 @@ FsWatchesRecursive:: /user/username/projects/myproject/random: {} -Info 82 [16:03:21.000] FileWatcher:: Close:: WatchInfo: /user/username/projects/myproject/random/random.ts 500 undefined WatchType: Closed Script info -Info 83 [16:03:22.000] Search path: /user/username/projects/myproject/random -Info 84 [16:03:23.000] For info: /user/username/projects/myproject/random/random.ts :: Config file name: /user/username/projects/myproject/random/tsconfig.json -Info 85 [16:03:24.000] `remove Project:: -Info 86 [16:03:25.000] Project '/user/username/projects/myproject/dependency/tsconfig.json' (Configured) -Info 87 [16:03:26.000] Files (2) +Info 82 [00:03:21.000] FileWatcher:: Close:: WatchInfo: /user/username/projects/myproject/random/random.ts 500 undefined WatchType: Closed Script info +Info 83 [00:03:22.000] Search path: /user/username/projects/myproject/random +Info 84 [00:03:23.000] For info: /user/username/projects/myproject/random/random.ts :: Config file name: /user/username/projects/myproject/random/tsconfig.json +Info 85 [00:03:24.000] `remove Project:: +Info 86 [00:03:25.000] Project '/user/username/projects/myproject/dependency/tsconfig.json' (Configured) +Info 87 [00:03:26.000] Files (2) /a/lib/lib.d.ts /user/username/projects/myproject/dependency/FnS.ts @@ -1458,25 +1458,25 @@ Info 87 [16:03:26.000] Files (2) FnS.ts Matched by default include pattern '**/*' -Info 88 [16:03:27.000] ----------------------------------------------- -Info 89 [16:03:28.000] DirectoryWatcher:: Close:: WatchInfo: /user/username/projects/myproject/dependency 1 undefined Config: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Wild card directory -Info 90 [16:03:29.000] 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 91 [16:03:30.000] FileWatcher:: Close:: WatchInfo: /user/username/projects/myproject/dependency/tsconfig.json 2000 undefined Project: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Config file -Info 92 [16:03:31.000] 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 93 [16:03:32.000] 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 94 [16:03:33.000] DirectoryWatcher:: Close:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Type roots -Info 95 [16:03:34.000] 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 96 [16:03:35.000] 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 97 [16:03:36.000] FileWatcher:: Close:: WatchInfo: /user/username/projects/myproject/dependency/FnS.ts 500 undefined WatchType: Closed Script info -Info 98 [16:03:37.000] FileWatcher:: Close:: WatchInfo: /user/username/projects/myproject/decls/FnS.d.ts 500 undefined WatchType: Closed Script info -Info 99 [16:03:38.000] FileWatcher:: Close:: WatchInfo: /user/username/projects/myproject/decls/FnS.d.ts.map 500 undefined WatchType: Closed Script info -Info 100 [16:03:39.000] Project '/user/username/projects/myproject/random/tsconfig.json' (Configured) -Info 100 [16:03:40.000] Files (2) - -Info 100 [16:03:41.000] ----------------------------------------------- -Info 100 [16:03:42.000] Open files: -Info 100 [16:03:43.000] FileName: /user/username/projects/myproject/random/random.ts ProjectRootPath: undefined -Info 100 [16:03:44.000] Projects: /user/username/projects/myproject/random/tsconfig.json +Info 88 [00:03:27.000] ----------------------------------------------- +Info 89 [00:03:28.000] DirectoryWatcher:: Close:: WatchInfo: /user/username/projects/myproject/dependency 1 undefined Config: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Wild card directory +Info 90 [00:03:29.000] 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 91 [00:03:30.000] FileWatcher:: Close:: WatchInfo: /user/username/projects/myproject/dependency/tsconfig.json 2000 undefined Project: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Config file +Info 92 [00:03:31.000] 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 93 [00:03:32.000] 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 94 [00:03:33.000] DirectoryWatcher:: Close:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Type roots +Info 95 [00:03:34.000] 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 96 [00:03:35.000] 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 97 [00:03:36.000] FileWatcher:: Close:: WatchInfo: /user/username/projects/myproject/dependency/FnS.ts 500 undefined WatchType: Closed Script info +Info 98 [00:03:37.000] FileWatcher:: Close:: WatchInfo: /user/username/projects/myproject/decls/FnS.d.ts 500 undefined WatchType: Closed Script info +Info 99 [00:03:38.000] FileWatcher:: Close:: WatchInfo: /user/username/projects/myproject/decls/FnS.d.ts.map 500 undefined WatchType: Closed Script info +Info 100 [00:03:39.000] Project '/user/username/projects/myproject/random/tsconfig.json' (Configured) +Info 100 [00:03:40.000] Files (2) + +Info 100 [00:03:41.000] ----------------------------------------------- +Info 100 [00:03:42.000] Open files: +Info 100 [00:03:43.000] FileName: /user/username/projects/myproject/random/random.ts ProjectRootPath: undefined +Info 100 [00:03:44.000] Projects: /user/username/projects/myproject/random/tsconfig.json After request PolledWatches:: @@ -1495,7 +1495,7 @@ FsWatchesRecursive:: /user/username/projects/myproject/random: {} -Info 100 [16:03:45.000] response: +Info 100 [00:03:45.000] response: { "responseRequired": false } \ No newline at end of file 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 6d3a79fa1e1bb..fa54d77fdb9fe 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 @@ -1,5 +1,5 @@ -Info 0 [16:01:03.000] Provided types map file "/a/lib/typesMap.json" doesn't exist -Info 1 [16:01:04.000] request: +Info 0 [00:01:03.000] Provided types map file "/a/lib/typesMap.json" doesn't exist +Info 1 [00:01:04.000] request: { "seq": 0, "type": "request", @@ -200,11 +200,11 @@ FsWatches:: FsWatchesRecursive:: -Info 2 [16:01:05.000] Search path: /user/username/projects/myproject/dependency -Info 3 [16:01:06.000] For info: /user/username/projects/myproject/dependency/FnS.ts :: Config file name: /user/username/projects/myproject/dependency/tsconfig.json -Info 4 [16:01:07.000] Creating configuration project /user/username/projects/myproject/dependency/tsconfig.json -Info 5 [16:01:08.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/dependency/tsconfig.json 2000 undefined Project: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Config file -Info 6 [16:01:09.000] Config: /user/username/projects/myproject/dependency/tsconfig.json : { +Info 2 [00:01:05.000] Search path: /user/username/projects/myproject/dependency +Info 3 [00:01:06.000] For info: /user/username/projects/myproject/dependency/FnS.ts :: Config file name: /user/username/projects/myproject/dependency/tsconfig.json +Info 4 [00:01:07.000] Creating configuration project /user/username/projects/myproject/dependency/tsconfig.json +Info 5 [00:01:08.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/dependency/tsconfig.json 2000 undefined Project: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Config file +Info 6 [00:01:09.000] Config: /user/username/projects/myproject/dependency/tsconfig.json : { "rootNames": [ "/user/username/projects/myproject/dependency/FnS.ts" ], @@ -215,18 +215,18 @@ Info 6 [16:01:09.000] Config: /user/username/projects/myproject/dependency/ts "configFilePath": "/user/username/projects/myproject/dependency/tsconfig.json" } } -Info 7 [16:01:10.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/dependency 1 undefined Config: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Wild card directory -Info 8 [16:01:11.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/dependency 1 undefined Config: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Wild card directory -Info 9 [16:01:12.000] Plugins were requested but not running in environment that supports 'require'. Nothing will be loaded -Info 10 [16:01:13.000] Starting updateGraphWorker: Project: /user/username/projects/myproject/dependency/tsconfig.json -Info 11 [16:01:14.000] FileWatcher:: Added:: WatchInfo: /a/lib/lib.d.ts 500 undefined WatchType: Closed Script info -Info 12 [16:01:15.000] 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 13 [16:01:16.000] 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 14 [16:01:17.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Type roots -Info 15 [16:01:18.000] 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 16 [16:01:19.000] Finishing updateGraphWorker: Project: /user/username/projects/myproject/dependency/tsconfig.json Version: 1 structureChanged: true structureIsReused:: Not Elapsed:: *ms -Info 17 [16:01:20.000] Project '/user/username/projects/myproject/dependency/tsconfig.json' (Configured) -Info 18 [16:01:21.000] Files (2) +Info 7 [00:01:10.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/dependency 1 undefined Config: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Wild card directory +Info 8 [00:01:11.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/dependency 1 undefined Config: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Wild card directory +Info 9 [00:01:12.000] Plugins were requested but not running in environment that supports 'require'. Nothing will be loaded +Info 10 [00:01:13.000] Starting updateGraphWorker: Project: /user/username/projects/myproject/dependency/tsconfig.json +Info 11 [00:01:14.000] FileWatcher:: Added:: WatchInfo: /a/lib/lib.d.ts 500 undefined WatchType: Closed Script info +Info 12 [00:01:15.000] 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 13 [00:01:16.000] 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 14 [00:01:17.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Type roots +Info 15 [00:01:18.000] 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 16 [00:01:19.000] Finishing updateGraphWorker: Project: /user/username/projects/myproject/dependency/tsconfig.json Version: 1 structureChanged: true structureIsReused:: Not Elapsed:: *ms +Info 17 [00:01:20.000] Project '/user/username/projects/myproject/dependency/tsconfig.json' (Configured) +Info 18 [00:01:21.000] Files (2) /a/lib/lib.d.ts /user/username/projects/myproject/dependency/FnS.ts @@ -236,16 +236,16 @@ Info 18 [16:01:21.000] Files (2) FnS.ts Matched by default include pattern '**/*' -Info 19 [16:01:22.000] ----------------------------------------------- -Info 20 [16:01:23.000] Search path: /user/username/projects/myproject/dependency -Info 21 [16:01:24.000] For info: /user/username/projects/myproject/dependency/tsconfig.json :: No config files found. -Info 22 [16:01:25.000] Project '/user/username/projects/myproject/dependency/tsconfig.json' (Configured) -Info 22 [16:01:26.000] Files (2) +Info 19 [00:01:22.000] ----------------------------------------------- +Info 20 [00:01:23.000] Search path: /user/username/projects/myproject/dependency +Info 21 [00:01:24.000] For info: /user/username/projects/myproject/dependency/tsconfig.json :: No config files found. +Info 22 [00:01:25.000] Project '/user/username/projects/myproject/dependency/tsconfig.json' (Configured) +Info 22 [00:01:26.000] Files (2) -Info 22 [16:01:27.000] ----------------------------------------------- -Info 22 [16:01:28.000] Open files: -Info 22 [16:01:29.000] FileName: /user/username/projects/myproject/dependency/FnS.ts ProjectRootPath: undefined -Info 22 [16:01:30.000] Projects: /user/username/projects/myproject/dependency/tsconfig.json +Info 22 [00:01:27.000] ----------------------------------------------- +Info 22 [00:01:28.000] Open files: +Info 22 [00:01:29.000] FileName: /user/username/projects/myproject/dependency/FnS.ts ProjectRootPath: undefined +Info 22 [00:01:30.000] Projects: /user/username/projects/myproject/dependency/tsconfig.json After request PolledWatches:: @@ -264,11 +264,11 @@ FsWatchesRecursive:: /user/username/projects/myproject/dependency: {} -Info 22 [16:01:31.000] response: +Info 22 [00:01:31.000] response: { "responseRequired": false } -Info 23 [16:01:32.000] request: +Info 23 [00:01:32.000] request: { "seq": 0, "type": "request", @@ -295,11 +295,11 @@ FsWatchesRecursive:: /user/username/projects/myproject/dependency: {} -Info 24 [16:01:33.000] Search path: /user/username/projects/myproject/random -Info 25 [16:01:34.000] For info: /user/username/projects/myproject/random/random.ts :: Config file name: /user/username/projects/myproject/random/tsconfig.json -Info 26 [16:01:35.000] Creating configuration project /user/username/projects/myproject/random/tsconfig.json -Info 27 [16:01:36.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/random/tsconfig.json 2000 undefined Project: /user/username/projects/myproject/random/tsconfig.json WatchType: Config file -Info 28 [16:01:37.000] Config: /user/username/projects/myproject/random/tsconfig.json : { +Info 24 [00:01:33.000] Search path: /user/username/projects/myproject/random +Info 25 [00:01:34.000] For info: /user/username/projects/myproject/random/random.ts :: Config file name: /user/username/projects/myproject/random/tsconfig.json +Info 26 [00:01:35.000] Creating configuration project /user/username/projects/myproject/random/tsconfig.json +Info 27 [00:01:36.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/random/tsconfig.json 2000 undefined Project: /user/username/projects/myproject/random/tsconfig.json WatchType: Config file +Info 28 [00:01:37.000] Config: /user/username/projects/myproject/random/tsconfig.json : { "rootNames": [ "/user/username/projects/myproject/random/random.ts" ], @@ -307,17 +307,17 @@ Info 28 [16:01:37.000] Config: /user/username/projects/myproject/random/tsconf "configFilePath": "/user/username/projects/myproject/random/tsconfig.json" } } -Info 29 [16:01:38.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/random 1 undefined Config: /user/username/projects/myproject/random/tsconfig.json WatchType: Wild card directory -Info 30 [16:01:39.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/random 1 undefined Config: /user/username/projects/myproject/random/tsconfig.json WatchType: Wild card directory -Info 31 [16:01:40.000] Plugins were requested but not running in environment that supports 'require'. Nothing will be loaded -Info 32 [16:01:41.000] Starting updateGraphWorker: Project: /user/username/projects/myproject/random/tsconfig.json -Info 33 [16:01:42.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/random/node_modules/@types 1 undefined Project: /user/username/projects/myproject/random/tsconfig.json WatchType: Type roots -Info 34 [16:01:43.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/random/node_modules/@types 1 undefined Project: /user/username/projects/myproject/random/tsconfig.json WatchType: Type roots -Info 35 [16:01:44.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/random/tsconfig.json WatchType: Type roots -Info 36 [16:01:45.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/random/tsconfig.json WatchType: Type roots -Info 37 [16:01:46.000] Finishing updateGraphWorker: Project: /user/username/projects/myproject/random/tsconfig.json Version: 1 structureChanged: true structureIsReused:: Not Elapsed:: *ms -Info 38 [16:01:47.000] Project '/user/username/projects/myproject/random/tsconfig.json' (Configured) -Info 39 [16:01:48.000] Files (2) +Info 29 [00:01:38.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/random 1 undefined Config: /user/username/projects/myproject/random/tsconfig.json WatchType: Wild card directory +Info 30 [00:01:39.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/random 1 undefined Config: /user/username/projects/myproject/random/tsconfig.json WatchType: Wild card directory +Info 31 [00:01:40.000] Plugins were requested but not running in environment that supports 'require'. Nothing will be loaded +Info 32 [00:01:41.000] Starting updateGraphWorker: Project: /user/username/projects/myproject/random/tsconfig.json +Info 33 [00:01:42.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/random/node_modules/@types 1 undefined Project: /user/username/projects/myproject/random/tsconfig.json WatchType: Type roots +Info 34 [00:01:43.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/random/node_modules/@types 1 undefined Project: /user/username/projects/myproject/random/tsconfig.json WatchType: Type roots +Info 35 [00:01:44.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/random/tsconfig.json WatchType: Type roots +Info 36 [00:01:45.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/random/tsconfig.json WatchType: Type roots +Info 37 [00:01:46.000] Finishing updateGraphWorker: Project: /user/username/projects/myproject/random/tsconfig.json Version: 1 structureChanged: true structureIsReused:: Not Elapsed:: *ms +Info 38 [00:01:47.000] Project '/user/username/projects/myproject/random/tsconfig.json' (Configured) +Info 39 [00:01:48.000] Files (2) /a/lib/lib.d.ts /user/username/projects/myproject/random/random.ts @@ -327,20 +327,20 @@ Info 39 [16:01:48.000] Files (2) random.ts Matched by default include pattern '**/*' -Info 40 [16:01:49.000] ----------------------------------------------- -Info 41 [16:01:50.000] Project '/user/username/projects/myproject/dependency/tsconfig.json' (Configured) -Info 41 [16:01:51.000] Files (2) +Info 40 [00:01:49.000] ----------------------------------------------- +Info 41 [00:01:50.000] Project '/user/username/projects/myproject/dependency/tsconfig.json' (Configured) +Info 41 [00:01:51.000] Files (2) -Info 41 [16:01:52.000] ----------------------------------------------- -Info 41 [16:01:53.000] Project '/user/username/projects/myproject/random/tsconfig.json' (Configured) -Info 41 [16:01:54.000] Files (2) +Info 41 [00:01:52.000] ----------------------------------------------- +Info 41 [00:01:53.000] Project '/user/username/projects/myproject/random/tsconfig.json' (Configured) +Info 41 [00:01:54.000] Files (2) -Info 41 [16:01:55.000] ----------------------------------------------- -Info 41 [16:01:56.000] Open files: -Info 41 [16:01:57.000] FileName: /user/username/projects/myproject/dependency/FnS.ts ProjectRootPath: undefined -Info 41 [16:01:58.000] Projects: /user/username/projects/myproject/dependency/tsconfig.json -Info 41 [16:01:59.000] FileName: /user/username/projects/myproject/random/random.ts ProjectRootPath: undefined -Info 41 [16:02:00.000] Projects: /user/username/projects/myproject/random/tsconfig.json +Info 41 [00:01:55.000] ----------------------------------------------- +Info 41 [00:01:56.000] Open files: +Info 41 [00:01:57.000] FileName: /user/username/projects/myproject/dependency/FnS.ts ProjectRootPath: undefined +Info 41 [00:01:58.000] Projects: /user/username/projects/myproject/dependency/tsconfig.json +Info 41 [00:01:59.000] FileName: /user/username/projects/myproject/random/random.ts ProjectRootPath: undefined +Info 41 [00:02:00.000] Projects: /user/username/projects/myproject/random/tsconfig.json After request PolledWatches:: @@ -365,11 +365,11 @@ FsWatchesRecursive:: /user/username/projects/myproject/random: {} -Info 41 [16:02:01.000] response: +Info 41 [00:02:01.000] response: { "responseRequired": false } -Info 42 [16:02:02.000] request: +Info 42 [00:02:02.000] request: { "command": "rename", "arguments": { @@ -404,8 +404,8 @@ FsWatchesRecursive:: /user/username/projects/myproject/random: {} -Info 43 [16:02:03.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/decls/FnS.d.ts 500 undefined WatchType: Closed Script info -Info 44 [16:02:04.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/decls/FnS.d.ts.map 500 undefined WatchType: Closed Script info +Info 43 [00:02:03.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/decls/FnS.d.ts 500 undefined WatchType: Closed Script info +Info 44 [00:02:04.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/decls/FnS.d.ts.map 500 undefined WatchType: Closed Script info After request PolledWatches:: @@ -434,7 +434,7 @@ FsWatchesRecursive:: /user/username/projects/myproject/random: {} -Info 45 [16:02:05.000] response: +Info 45 [00:02:05.000] response: { "response": { "info": { @@ -482,12 +482,12 @@ Info 45 [16:02:05.000] response: }, "responseRequired": true } -Info 46 [16:02:07.000] FileWatcher:: Triggered with /user/username/projects/myproject/decls/FnS.d.ts 2:: WatchInfo: /user/username/projects/myproject/decls/FnS.d.ts 500 undefined WatchType: Closed Script info -Info 47 [16:02:08.000] FileWatcher:: Close:: WatchInfo: /user/username/projects/myproject/decls/FnS.d.ts 500 undefined WatchType: Closed Script info -Info 48 [16:02:09.000] Scheduled: /user/username/projects/myproject/dependency/tsconfig.json -Info 49 [16:02:10.000] Scheduled: *ensureProjectForOpenFiles* -Info 50 [16:02:11.000] Elapsed:: *ms FileWatcher:: Triggered with /user/username/projects/myproject/decls/FnS.d.ts 2:: WatchInfo: /user/username/projects/myproject/decls/FnS.d.ts 500 undefined WatchType: Closed Script info -Info 51 [16:02:12.000] request: +Info 46 [00:02:07.000] FileWatcher:: Triggered with /user/username/projects/myproject/decls/FnS.d.ts 2:: WatchInfo: /user/username/projects/myproject/decls/FnS.d.ts 500 undefined WatchType: Closed Script info +Info 47 [00:02:08.000] FileWatcher:: Close:: WatchInfo: /user/username/projects/myproject/decls/FnS.d.ts 500 undefined WatchType: Closed Script info +Info 48 [00:02:09.000] Scheduled: /user/username/projects/myproject/dependency/tsconfig.json +Info 49 [00:02:10.000] Scheduled: *ensureProjectForOpenFiles* +Info 50 [00:02:11.000] Elapsed:: *ms FileWatcher:: Triggered with /user/username/projects/myproject/decls/FnS.d.ts 2:: WatchInfo: /user/username/projects/myproject/decls/FnS.d.ts 500 undefined WatchType: Closed Script info +Info 51 [00:02:12.000] request: { "command": "rename", "arguments": { @@ -525,9 +525,9 @@ FsWatchesRecursive:: /user/username/projects/myproject/random: {} -Info 52 [16:02:13.000] Starting updateGraphWorker: Project: /user/username/projects/myproject/dependency/tsconfig.json -Info 53 [16:02:14.000] Finishing updateGraphWorker: Project: /user/username/projects/myproject/dependency/tsconfig.json Version: 2 structureChanged: false structureIsReused:: Not Elapsed:: *ms -Info 54 [16:02:15.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/decls/FnS.d.ts 2000 undefined Project: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Missing generated file +Info 52 [00:02:13.000] Starting updateGraphWorker: Project: /user/username/projects/myproject/dependency/tsconfig.json +Info 53 [00:02:14.000] Finishing updateGraphWorker: Project: /user/username/projects/myproject/dependency/tsconfig.json Version: 2 structureChanged: false structureIsReused:: Not Elapsed:: *ms +Info 54 [00:02:15.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/decls/FnS.d.ts 2000 undefined Project: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Missing generated file After request PolledWatches:: @@ -556,7 +556,7 @@ FsWatchesRecursive:: /user/username/projects/myproject/random: {} -Info 55 [16:02:16.000] response: +Info 55 [00:02:16.000] response: { "response": { "info": { @@ -604,7 +604,7 @@ Info 55 [16:02:16.000] response: }, "responseRequired": true } -Info 56 [16:02:17.000] request: +Info 56 [00:02:17.000] request: { "command": "rename", "arguments": { @@ -671,7 +671,7 @@ FsWatchesRecursive:: /user/username/projects/myproject/random: {} -Info 57 [16:02:18.000] response: +Info 57 [00:02:18.000] response: { "response": { "info": { @@ -719,7 +719,7 @@ Info 57 [16:02:18.000] response: }, "responseRequired": true } -Info 58 [16:02:19.000] request: +Info 58 [00:02:19.000] request: { "command": "rename", "arguments": { @@ -786,7 +786,7 @@ FsWatchesRecursive:: /user/username/projects/myproject/random: {} -Info 59 [16:02:20.000] response: +Info 59 [00:02:20.000] response: { "response": { "info": { @@ -834,7 +834,7 @@ Info 59 [16:02:20.000] response: }, "responseRequired": true } -Info 60 [16:02:21.000] request: +Info 60 [00:02:21.000] request: { "command": "rename", "arguments": { @@ -901,7 +901,7 @@ FsWatchesRecursive:: /user/username/projects/myproject/random: {} -Info 61 [16:02:22.000] response: +Info 61 [00:02:22.000] response: { "response": { "info": { @@ -949,7 +949,7 @@ Info 61 [16:02:22.000] response: }, "responseRequired": true } -Info 62 [16:02:23.000] request: +Info 62 [00:02:23.000] request: { "command": "rename", "arguments": { @@ -1016,7 +1016,7 @@ FsWatchesRecursive:: /user/username/projects/myproject/random: {} -Info 63 [16:02:24.000] response: +Info 63 [00:02:24.000] response: { "response": { "info": { @@ -1064,7 +1064,7 @@ Info 63 [16:02:24.000] response: }, "responseRequired": true } -Info 64 [16:02:25.000] request: +Info 64 [00:02:25.000] request: { "seq": 0, "type": "request", @@ -1101,18 +1101,18 @@ FsWatchesRecursive:: /user/username/projects/myproject/random: {} -Info 65 [16:02:26.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/random/random.ts 500 undefined WatchType: Closed Script info -Info 66 [16:02:27.000] Project '/user/username/projects/myproject/dependency/tsconfig.json' (Configured) -Info 66 [16:02:28.000] Files (2) +Info 65 [00:02:26.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/random/random.ts 500 undefined WatchType: Closed Script info +Info 66 [00:02:27.000] Project '/user/username/projects/myproject/dependency/tsconfig.json' (Configured) +Info 66 [00:02:28.000] Files (2) -Info 66 [16:02:29.000] ----------------------------------------------- -Info 66 [16:02:30.000] Project '/user/username/projects/myproject/random/tsconfig.json' (Configured) -Info 66 [16:02:31.000] Files (2) +Info 66 [00:02:29.000] ----------------------------------------------- +Info 66 [00:02:30.000] Project '/user/username/projects/myproject/random/tsconfig.json' (Configured) +Info 66 [00:02:31.000] Files (2) -Info 66 [16:02:32.000] ----------------------------------------------- -Info 66 [16:02:33.000] Open files: -Info 66 [16:02:34.000] FileName: /user/username/projects/myproject/dependency/FnS.ts ProjectRootPath: undefined -Info 66 [16:02:35.000] Projects: /user/username/projects/myproject/dependency/tsconfig.json +Info 66 [00:02:32.000] ----------------------------------------------- +Info 66 [00:02:33.000] Open files: +Info 66 [00:02:34.000] FileName: /user/username/projects/myproject/dependency/FnS.ts ProjectRootPath: undefined +Info 66 [00:02:35.000] Projects: /user/username/projects/myproject/dependency/tsconfig.json After request PolledWatches:: @@ -1143,11 +1143,11 @@ FsWatchesRecursive:: /user/username/projects/myproject/random: {} -Info 66 [16:02:36.000] response: +Info 66 [00:02:36.000] response: { "responseRequired": false } -Info 67 [16:02:37.000] request: +Info 67 [00:02:37.000] request: { "seq": 0, "type": "request", @@ -1186,23 +1186,23 @@ FsWatchesRecursive:: /user/username/projects/myproject/random: {} -Info 68 [16:02:38.000] FileWatcher:: Close:: WatchInfo: /user/username/projects/myproject/random/random.ts 500 undefined WatchType: Closed Script info -Info 69 [16:02:39.000] Search path: /user/username/projects/myproject/random -Info 70 [16:02:40.000] For info: /user/username/projects/myproject/random/random.ts :: Config file name: /user/username/projects/myproject/random/tsconfig.json -Info 71 [16:02:41.000] FileWatcher:: Close:: WatchInfo: /user/username/projects/myproject/decls/FnS.d.ts.map 500 undefined WatchType: Closed Script info -Info 72 [16:02:42.000] Project '/user/username/projects/myproject/dependency/tsconfig.json' (Configured) -Info 72 [16:02:43.000] Files (2) +Info 68 [00:02:38.000] FileWatcher:: Close:: WatchInfo: /user/username/projects/myproject/random/random.ts 500 undefined WatchType: Closed Script info +Info 69 [00:02:39.000] Search path: /user/username/projects/myproject/random +Info 70 [00:02:40.000] For info: /user/username/projects/myproject/random/random.ts :: Config file name: /user/username/projects/myproject/random/tsconfig.json +Info 71 [00:02:41.000] FileWatcher:: Close:: WatchInfo: /user/username/projects/myproject/decls/FnS.d.ts.map 500 undefined WatchType: Closed Script info +Info 72 [00:02:42.000] Project '/user/username/projects/myproject/dependency/tsconfig.json' (Configured) +Info 72 [00:02:43.000] Files (2) -Info 72 [16:02:44.000] ----------------------------------------------- -Info 72 [16:02:45.000] Project '/user/username/projects/myproject/random/tsconfig.json' (Configured) -Info 72 [16:02:46.000] Files (2) +Info 72 [00:02:44.000] ----------------------------------------------- +Info 72 [00:02:45.000] Project '/user/username/projects/myproject/random/tsconfig.json' (Configured) +Info 72 [00:02:46.000] Files (2) -Info 72 [16:02:47.000] ----------------------------------------------- -Info 72 [16:02:48.000] Open files: -Info 72 [16:02:49.000] FileName: /user/username/projects/myproject/dependency/FnS.ts ProjectRootPath: undefined -Info 72 [16:02:50.000] Projects: /user/username/projects/myproject/dependency/tsconfig.json -Info 72 [16:02:51.000] FileName: /user/username/projects/myproject/random/random.ts ProjectRootPath: undefined -Info 72 [16:02:52.000] Projects: /user/username/projects/myproject/random/tsconfig.json +Info 72 [00:02:47.000] ----------------------------------------------- +Info 72 [00:02:48.000] Open files: +Info 72 [00:02:49.000] FileName: /user/username/projects/myproject/dependency/FnS.ts ProjectRootPath: undefined +Info 72 [00:02:50.000] Projects: /user/username/projects/myproject/dependency/tsconfig.json +Info 72 [00:02:51.000] FileName: /user/username/projects/myproject/random/random.ts ProjectRootPath: undefined +Info 72 [00:02:52.000] Projects: /user/username/projects/myproject/random/tsconfig.json After request PolledWatches:: @@ -1229,11 +1229,11 @@ FsWatchesRecursive:: /user/username/projects/myproject/random: {} -Info 72 [16:02:53.000] response: +Info 72 [00:02:53.000] response: { "responseRequired": false } -Info 73 [16:02:54.000] request: +Info 73 [00:02:54.000] request: { "seq": 0, "type": "request", @@ -1268,18 +1268,18 @@ FsWatchesRecursive:: /user/username/projects/myproject/random: {} -Info 74 [16:02:55.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/dependency/FnS.ts 500 undefined WatchType: Closed Script info -Info 75 [16:02:56.000] Project '/user/username/projects/myproject/dependency/tsconfig.json' (Configured) -Info 75 [16:02:57.000] Files (2) +Info 74 [00:02:55.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/dependency/FnS.ts 500 undefined WatchType: Closed Script info +Info 75 [00:02:56.000] Project '/user/username/projects/myproject/dependency/tsconfig.json' (Configured) +Info 75 [00:02:57.000] Files (2) -Info 75 [16:02:58.000] ----------------------------------------------- -Info 75 [16:02:59.000] Project '/user/username/projects/myproject/random/tsconfig.json' (Configured) -Info 75 [16:03:00.000] Files (2) +Info 75 [00:02:58.000] ----------------------------------------------- +Info 75 [00:02:59.000] Project '/user/username/projects/myproject/random/tsconfig.json' (Configured) +Info 75 [00:03:00.000] Files (2) -Info 75 [16:03:01.000] ----------------------------------------------- -Info 75 [16:03:02.000] Open files: -Info 75 [16:03:03.000] FileName: /user/username/projects/myproject/random/random.ts ProjectRootPath: undefined -Info 75 [16:03:04.000] Projects: /user/username/projects/myproject/random/tsconfig.json +Info 75 [00:03:01.000] ----------------------------------------------- +Info 75 [00:03:02.000] Open files: +Info 75 [00:03:03.000] FileName: /user/username/projects/myproject/random/random.ts ProjectRootPath: undefined +Info 75 [00:03:04.000] Projects: /user/username/projects/myproject/random/tsconfig.json After request PolledWatches:: @@ -1308,11 +1308,11 @@ FsWatchesRecursive:: /user/username/projects/myproject/random: {} -Info 75 [16:03:05.000] response: +Info 75 [00:03:05.000] response: { "responseRequired": false } -Info 76 [16:03:06.000] request: +Info 76 [00:03:06.000] request: { "seq": 0, "type": "request", @@ -1349,16 +1349,16 @@ FsWatchesRecursive:: /user/username/projects/myproject/random: {} -Info 77 [16:03:07.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/random/random.ts 500 undefined WatchType: Closed Script info -Info 78 [16:03:08.000] Project '/user/username/projects/myproject/dependency/tsconfig.json' (Configured) -Info 78 [16:03:09.000] Files (2) +Info 77 [00:03:07.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/random/random.ts 500 undefined WatchType: Closed Script info +Info 78 [00:03:08.000] Project '/user/username/projects/myproject/dependency/tsconfig.json' (Configured) +Info 78 [00:03:09.000] Files (2) -Info 78 [16:03:10.000] ----------------------------------------------- -Info 78 [16:03:11.000] Project '/user/username/projects/myproject/random/tsconfig.json' (Configured) -Info 78 [16:03:12.000] Files (2) +Info 78 [00:03:10.000] ----------------------------------------------- +Info 78 [00:03:11.000] Project '/user/username/projects/myproject/random/tsconfig.json' (Configured) +Info 78 [00:03:12.000] Files (2) -Info 78 [16:03:13.000] ----------------------------------------------- -Info 78 [16:03:14.000] Open files: +Info 78 [00:03:13.000] ----------------------------------------------- +Info 78 [00:03:14.000] Open files: After request PolledWatches:: @@ -1389,11 +1389,11 @@ FsWatchesRecursive:: /user/username/projects/myproject/random: {} -Info 78 [16:03:15.000] response: +Info 78 [00:03:15.000] response: { "responseRequired": false } -Info 79 [16:03:16.000] request: +Info 79 [00:03:16.000] request: { "seq": 0, "type": "request", @@ -1432,12 +1432,12 @@ FsWatchesRecursive:: /user/username/projects/myproject/random: {} -Info 80 [16:03:17.000] FileWatcher:: Close:: WatchInfo: /user/username/projects/myproject/random/random.ts 500 undefined WatchType: Closed Script info -Info 81 [16:03:18.000] Search path: /user/username/projects/myproject/random -Info 82 [16:03:19.000] For info: /user/username/projects/myproject/random/random.ts :: Config file name: /user/username/projects/myproject/random/tsconfig.json -Info 83 [16:03:20.000] `remove Project:: -Info 84 [16:03:21.000] Project '/user/username/projects/myproject/dependency/tsconfig.json' (Configured) -Info 85 [16:03:22.000] Files (2) +Info 80 [00:03:17.000] FileWatcher:: Close:: WatchInfo: /user/username/projects/myproject/random/random.ts 500 undefined WatchType: Closed Script info +Info 81 [00:03:18.000] Search path: /user/username/projects/myproject/random +Info 82 [00:03:19.000] For info: /user/username/projects/myproject/random/random.ts :: Config file name: /user/username/projects/myproject/random/tsconfig.json +Info 83 [00:03:20.000] `remove Project:: +Info 84 [00:03:21.000] Project '/user/username/projects/myproject/dependency/tsconfig.json' (Configured) +Info 85 [00:03:22.000] Files (2) /a/lib/lib.d.ts /user/username/projects/myproject/dependency/FnS.ts @@ -1447,23 +1447,23 @@ Info 85 [16:03:22.000] Files (2) FnS.ts Matched by default include pattern '**/*' -Info 86 [16:03:23.000] ----------------------------------------------- -Info 87 [16:03:24.000] DirectoryWatcher:: Close:: WatchInfo: /user/username/projects/myproject/dependency 1 undefined Config: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Wild card directory -Info 88 [16:03:25.000] 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 89 [16:03:26.000] FileWatcher:: Close:: WatchInfo: /user/username/projects/myproject/dependency/tsconfig.json 2000 undefined Project: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Config file -Info 90 [16:03:27.000] 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 91 [16:03:28.000] 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 92 [16:03:29.000] DirectoryWatcher:: Close:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Type roots -Info 93 [16:03:30.000] 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 94 [16:03:31.000] 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 95 [16:03:32.000] FileWatcher:: Close:: WatchInfo: /user/username/projects/myproject/dependency/FnS.ts 500 undefined WatchType: Closed Script info -Info 96 [16:03:33.000] Project '/user/username/projects/myproject/random/tsconfig.json' (Configured) -Info 96 [16:03:34.000] Files (2) - -Info 96 [16:03:35.000] ----------------------------------------------- -Info 96 [16:03:36.000] Open files: -Info 96 [16:03:37.000] FileName: /user/username/projects/myproject/random/random.ts ProjectRootPath: undefined -Info 96 [16:03:38.000] Projects: /user/username/projects/myproject/random/tsconfig.json +Info 86 [00:03:23.000] ----------------------------------------------- +Info 87 [00:03:24.000] DirectoryWatcher:: Close:: WatchInfo: /user/username/projects/myproject/dependency 1 undefined Config: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Wild card directory +Info 88 [00:03:25.000] 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 89 [00:03:26.000] FileWatcher:: Close:: WatchInfo: /user/username/projects/myproject/dependency/tsconfig.json 2000 undefined Project: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Config file +Info 90 [00:03:27.000] 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 91 [00:03:28.000] 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 92 [00:03:29.000] DirectoryWatcher:: Close:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Type roots +Info 93 [00:03:30.000] 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 94 [00:03:31.000] 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 95 [00:03:32.000] FileWatcher:: Close:: WatchInfo: /user/username/projects/myproject/dependency/FnS.ts 500 undefined WatchType: Closed Script info +Info 96 [00:03:33.000] Project '/user/username/projects/myproject/random/tsconfig.json' (Configured) +Info 96 [00:03:34.000] Files (2) + +Info 96 [00:03:35.000] ----------------------------------------------- +Info 96 [00:03:36.000] Open files: +Info 96 [00:03:37.000] FileName: /user/username/projects/myproject/random/random.ts ProjectRootPath: undefined +Info 96 [00:03:38.000] Projects: /user/username/projects/myproject/random/tsconfig.json After request PolledWatches:: @@ -1482,7 +1482,7 @@ FsWatchesRecursive:: /user/username/projects/myproject/random: {} -Info 96 [16:03:39.000] response: +Info 96 [00:03:39.000] response: { "responseRequired": false } \ No newline at end of file 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 1bc01d00554fc..e56fdf01f400d 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 @@ -1,5 +1,5 @@ -Info 0 [16:01:04.000] Provided types map file "/a/lib/typesMap.json" doesn't exist -Info 1 [16:01:05.000] request: +Info 0 [00:01:04.000] Provided types map file "/a/lib/typesMap.json" doesn't exist +Info 1 [00:01:05.000] request: { "seq": 0, "type": "request", @@ -192,11 +192,11 @@ FsWatches:: FsWatchesRecursive:: -Info 2 [16:01:06.000] Search path: /user/username/projects/myproject/dependency -Info 3 [16:01:07.000] For info: /user/username/projects/myproject/dependency/FnS.ts :: Config file name: /user/username/projects/myproject/dependency/tsconfig.json -Info 4 [16:01:08.000] Creating configuration project /user/username/projects/myproject/dependency/tsconfig.json -Info 5 [16:01:09.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/dependency/tsconfig.json 2000 undefined Project: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Config file -Info 6 [16:01:10.000] Config: /user/username/projects/myproject/dependency/tsconfig.json : { +Info 2 [00:01:06.000] Search path: /user/username/projects/myproject/dependency +Info 3 [00:01:07.000] For info: /user/username/projects/myproject/dependency/FnS.ts :: Config file name: /user/username/projects/myproject/dependency/tsconfig.json +Info 4 [00:01:08.000] Creating configuration project /user/username/projects/myproject/dependency/tsconfig.json +Info 5 [00:01:09.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/dependency/tsconfig.json 2000 undefined Project: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Config file +Info 6 [00:01:10.000] Config: /user/username/projects/myproject/dependency/tsconfig.json : { "rootNames": [ "/user/username/projects/myproject/dependency/FnS.ts" ], @@ -207,18 +207,18 @@ Info 6 [16:01:10.000] Config: /user/username/projects/myproject/dependency/ts "configFilePath": "/user/username/projects/myproject/dependency/tsconfig.json" } } -Info 7 [16:01:11.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/dependency 1 undefined Config: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Wild card directory -Info 8 [16:01:12.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/dependency 1 undefined Config: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Wild card directory -Info 9 [16:01:13.000] Plugins were requested but not running in environment that supports 'require'. Nothing will be loaded -Info 10 [16:01:14.000] Starting updateGraphWorker: Project: /user/username/projects/myproject/dependency/tsconfig.json -Info 11 [16:01:15.000] FileWatcher:: Added:: WatchInfo: /a/lib/lib.d.ts 500 undefined WatchType: Closed Script info -Info 12 [16:01:16.000] 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 13 [16:01:17.000] 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 14 [16:01:18.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Type roots -Info 15 [16:01:19.000] 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 16 [16:01:20.000] Finishing updateGraphWorker: Project: /user/username/projects/myproject/dependency/tsconfig.json Version: 1 structureChanged: true structureIsReused:: Not Elapsed:: *ms -Info 17 [16:01:21.000] Project '/user/username/projects/myproject/dependency/tsconfig.json' (Configured) -Info 18 [16:01:22.000] Files (2) +Info 7 [00:01:11.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/dependency 1 undefined Config: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Wild card directory +Info 8 [00:01:12.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/dependency 1 undefined Config: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Wild card directory +Info 9 [00:01:13.000] Plugins were requested but not running in environment that supports 'require'. Nothing will be loaded +Info 10 [00:01:14.000] Starting updateGraphWorker: Project: /user/username/projects/myproject/dependency/tsconfig.json +Info 11 [00:01:15.000] FileWatcher:: Added:: WatchInfo: /a/lib/lib.d.ts 500 undefined WatchType: Closed Script info +Info 12 [00:01:16.000] 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 13 [00:01:17.000] 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 14 [00:01:18.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Type roots +Info 15 [00:01:19.000] 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 16 [00:01:20.000] Finishing updateGraphWorker: Project: /user/username/projects/myproject/dependency/tsconfig.json Version: 1 structureChanged: true structureIsReused:: Not Elapsed:: *ms +Info 17 [00:01:21.000] Project '/user/username/projects/myproject/dependency/tsconfig.json' (Configured) +Info 18 [00:01:22.000] Files (2) /a/lib/lib.d.ts /user/username/projects/myproject/dependency/FnS.ts @@ -228,16 +228,16 @@ Info 18 [16:01:22.000] Files (2) FnS.ts Matched by default include pattern '**/*' -Info 19 [16:01:23.000] ----------------------------------------------- -Info 20 [16:01:24.000] Search path: /user/username/projects/myproject/dependency -Info 21 [16:01:25.000] For info: /user/username/projects/myproject/dependency/tsconfig.json :: No config files found. -Info 22 [16:01:26.000] Project '/user/username/projects/myproject/dependency/tsconfig.json' (Configured) -Info 22 [16:01:27.000] Files (2) +Info 19 [00:01:23.000] ----------------------------------------------- +Info 20 [00:01:24.000] Search path: /user/username/projects/myproject/dependency +Info 21 [00:01:25.000] For info: /user/username/projects/myproject/dependency/tsconfig.json :: No config files found. +Info 22 [00:01:26.000] Project '/user/username/projects/myproject/dependency/tsconfig.json' (Configured) +Info 22 [00:01:27.000] Files (2) -Info 22 [16:01:28.000] ----------------------------------------------- -Info 22 [16:01:29.000] Open files: -Info 22 [16:01:30.000] FileName: /user/username/projects/myproject/dependency/FnS.ts ProjectRootPath: undefined -Info 22 [16:01:31.000] Projects: /user/username/projects/myproject/dependency/tsconfig.json +Info 22 [00:01:28.000] ----------------------------------------------- +Info 22 [00:01:29.000] Open files: +Info 22 [00:01:30.000] FileName: /user/username/projects/myproject/dependency/FnS.ts ProjectRootPath: undefined +Info 22 [00:01:31.000] Projects: /user/username/projects/myproject/dependency/tsconfig.json After request PolledWatches:: @@ -256,11 +256,11 @@ FsWatchesRecursive:: /user/username/projects/myproject/dependency: {} -Info 22 [16:01:32.000] response: +Info 22 [00:01:32.000] response: { "responseRequired": false } -Info 23 [16:01:33.000] request: +Info 23 [00:01:33.000] request: { "seq": 0, "type": "request", @@ -287,11 +287,11 @@ FsWatchesRecursive:: /user/username/projects/myproject/dependency: {} -Info 24 [16:01:34.000] Search path: /user/username/projects/myproject/random -Info 25 [16:01:35.000] For info: /user/username/projects/myproject/random/random.ts :: Config file name: /user/username/projects/myproject/random/tsconfig.json -Info 26 [16:01:36.000] Creating configuration project /user/username/projects/myproject/random/tsconfig.json -Info 27 [16:01:37.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/random/tsconfig.json 2000 undefined Project: /user/username/projects/myproject/random/tsconfig.json WatchType: Config file -Info 28 [16:01:38.000] Config: /user/username/projects/myproject/random/tsconfig.json : { +Info 24 [00:01:34.000] Search path: /user/username/projects/myproject/random +Info 25 [00:01:35.000] For info: /user/username/projects/myproject/random/random.ts :: Config file name: /user/username/projects/myproject/random/tsconfig.json +Info 26 [00:01:36.000] Creating configuration project /user/username/projects/myproject/random/tsconfig.json +Info 27 [00:01:37.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/random/tsconfig.json 2000 undefined Project: /user/username/projects/myproject/random/tsconfig.json WatchType: Config file +Info 28 [00:01:38.000] Config: /user/username/projects/myproject/random/tsconfig.json : { "rootNames": [ "/user/username/projects/myproject/random/random.ts" ], @@ -299,17 +299,17 @@ Info 28 [16:01:38.000] Config: /user/username/projects/myproject/random/tsconf "configFilePath": "/user/username/projects/myproject/random/tsconfig.json" } } -Info 29 [16:01:39.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/random 1 undefined Config: /user/username/projects/myproject/random/tsconfig.json WatchType: Wild card directory -Info 30 [16:01:40.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/random 1 undefined Config: /user/username/projects/myproject/random/tsconfig.json WatchType: Wild card directory -Info 31 [16:01:41.000] Plugins were requested but not running in environment that supports 'require'. Nothing will be loaded -Info 32 [16:01:42.000] Starting updateGraphWorker: Project: /user/username/projects/myproject/random/tsconfig.json -Info 33 [16:01:43.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/random/node_modules/@types 1 undefined Project: /user/username/projects/myproject/random/tsconfig.json WatchType: Type roots -Info 34 [16:01:44.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/random/node_modules/@types 1 undefined Project: /user/username/projects/myproject/random/tsconfig.json WatchType: Type roots -Info 35 [16:01:45.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/random/tsconfig.json WatchType: Type roots -Info 36 [16:01:46.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/random/tsconfig.json WatchType: Type roots -Info 37 [16:01:47.000] Finishing updateGraphWorker: Project: /user/username/projects/myproject/random/tsconfig.json Version: 1 structureChanged: true structureIsReused:: Not Elapsed:: *ms -Info 38 [16:01:48.000] Project '/user/username/projects/myproject/random/tsconfig.json' (Configured) -Info 39 [16:01:49.000] Files (2) +Info 29 [00:01:39.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/random 1 undefined Config: /user/username/projects/myproject/random/tsconfig.json WatchType: Wild card directory +Info 30 [00:01:40.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/random 1 undefined Config: /user/username/projects/myproject/random/tsconfig.json WatchType: Wild card directory +Info 31 [00:01:41.000] Plugins were requested but not running in environment that supports 'require'. Nothing will be loaded +Info 32 [00:01:42.000] Starting updateGraphWorker: Project: /user/username/projects/myproject/random/tsconfig.json +Info 33 [00:01:43.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/random/node_modules/@types 1 undefined Project: /user/username/projects/myproject/random/tsconfig.json WatchType: Type roots +Info 34 [00:01:44.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/random/node_modules/@types 1 undefined Project: /user/username/projects/myproject/random/tsconfig.json WatchType: Type roots +Info 35 [00:01:45.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/random/tsconfig.json WatchType: Type roots +Info 36 [00:01:46.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/random/tsconfig.json WatchType: Type roots +Info 37 [00:01:47.000] Finishing updateGraphWorker: Project: /user/username/projects/myproject/random/tsconfig.json Version: 1 structureChanged: true structureIsReused:: Not Elapsed:: *ms +Info 38 [00:01:48.000] Project '/user/username/projects/myproject/random/tsconfig.json' (Configured) +Info 39 [00:01:49.000] Files (2) /a/lib/lib.d.ts /user/username/projects/myproject/random/random.ts @@ -319,20 +319,20 @@ Info 39 [16:01:49.000] Files (2) random.ts Matched by default include pattern '**/*' -Info 40 [16:01:50.000] ----------------------------------------------- -Info 41 [16:01:51.000] Project '/user/username/projects/myproject/dependency/tsconfig.json' (Configured) -Info 41 [16:01:52.000] Files (2) +Info 40 [00:01:50.000] ----------------------------------------------- +Info 41 [00:01:51.000] Project '/user/username/projects/myproject/dependency/tsconfig.json' (Configured) +Info 41 [00:01:52.000] Files (2) -Info 41 [16:01:53.000] ----------------------------------------------- -Info 41 [16:01:54.000] Project '/user/username/projects/myproject/random/tsconfig.json' (Configured) -Info 41 [16:01:55.000] Files (2) +Info 41 [00:01:53.000] ----------------------------------------------- +Info 41 [00:01:54.000] Project '/user/username/projects/myproject/random/tsconfig.json' (Configured) +Info 41 [00:01:55.000] Files (2) -Info 41 [16:01:56.000] ----------------------------------------------- -Info 41 [16:01:57.000] Open files: -Info 41 [16:01:58.000] FileName: /user/username/projects/myproject/dependency/FnS.ts ProjectRootPath: undefined -Info 41 [16:01:59.000] Projects: /user/username/projects/myproject/dependency/tsconfig.json -Info 41 [16:02:00.000] FileName: /user/username/projects/myproject/random/random.ts ProjectRootPath: undefined -Info 41 [16:02:01.000] Projects: /user/username/projects/myproject/random/tsconfig.json +Info 41 [00:01:56.000] ----------------------------------------------- +Info 41 [00:01:57.000] Open files: +Info 41 [00:01:58.000] FileName: /user/username/projects/myproject/dependency/FnS.ts ProjectRootPath: undefined +Info 41 [00:01:59.000] Projects: /user/username/projects/myproject/dependency/tsconfig.json +Info 41 [00:02:00.000] FileName: /user/username/projects/myproject/random/random.ts ProjectRootPath: undefined +Info 41 [00:02:01.000] Projects: /user/username/projects/myproject/random/tsconfig.json After request PolledWatches:: @@ -357,11 +357,11 @@ FsWatchesRecursive:: /user/username/projects/myproject/random: {} -Info 41 [16:02:02.000] response: +Info 41 [00:02:02.000] response: { "responseRequired": false } -Info 42 [16:02:03.000] request: +Info 42 [00:02:03.000] request: { "command": "rename", "arguments": { @@ -396,7 +396,7 @@ FsWatchesRecursive:: /user/username/projects/myproject/random: {} -Info 43 [16:02:04.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/decls/FnS.d.ts 2000 undefined Project: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Missing generated file +Info 43 [00:02:04.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/decls/FnS.d.ts 2000 undefined Project: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Missing generated file After request PolledWatches:: @@ -423,7 +423,7 @@ FsWatchesRecursive:: /user/username/projects/myproject/random: {} -Info 44 [16:02:05.000] response: +Info 44 [00:02:05.000] response: { "response": { "info": { @@ -471,7 +471,7 @@ Info 44 [16:02:05.000] response: }, "responseRequired": true } -Info 45 [16:02:06.000] request: +Info 45 [00:02:06.000] request: { "command": "rename", "arguments": { @@ -534,7 +534,7 @@ FsWatchesRecursive:: /user/username/projects/myproject/random: {} -Info 46 [16:02:07.000] response: +Info 46 [00:02:07.000] response: { "response": { "info": { @@ -582,7 +582,7 @@ Info 46 [16:02:07.000] response: }, "responseRequired": true } -Info 47 [16:02:08.000] request: +Info 47 [00:02:08.000] request: { "command": "rename", "arguments": { @@ -645,7 +645,7 @@ FsWatchesRecursive:: /user/username/projects/myproject/random: {} -Info 48 [16:02:09.000] response: +Info 48 [00:02:09.000] response: { "response": { "info": { @@ -693,7 +693,7 @@ Info 48 [16:02:09.000] response: }, "responseRequired": true } -Info 49 [16:02:10.000] request: +Info 49 [00:02:10.000] request: { "command": "rename", "arguments": { @@ -756,7 +756,7 @@ FsWatchesRecursive:: /user/username/projects/myproject/random: {} -Info 50 [16:02:11.000] response: +Info 50 [00:02:11.000] response: { "response": { "info": { @@ -804,7 +804,7 @@ Info 50 [16:02:11.000] response: }, "responseRequired": true } -Info 51 [16:02:12.000] request: +Info 51 [00:02:12.000] request: { "command": "rename", "arguments": { @@ -867,7 +867,7 @@ FsWatchesRecursive:: /user/username/projects/myproject/random: {} -Info 52 [16:02:13.000] response: +Info 52 [00:02:13.000] response: { "response": { "info": { @@ -915,7 +915,7 @@ Info 52 [16:02:13.000] response: }, "responseRequired": true } -Info 53 [16:02:14.000] request: +Info 53 [00:02:14.000] request: { "seq": 0, "type": "request", @@ -950,18 +950,18 @@ FsWatchesRecursive:: /user/username/projects/myproject/random: {} -Info 54 [16:02:15.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/random/random.ts 500 undefined WatchType: Closed Script info -Info 55 [16:02:16.000] Project '/user/username/projects/myproject/dependency/tsconfig.json' (Configured) -Info 55 [16:02:17.000] Files (2) +Info 54 [00:02:15.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/random/random.ts 500 undefined WatchType: Closed Script info +Info 55 [00:02:16.000] Project '/user/username/projects/myproject/dependency/tsconfig.json' (Configured) +Info 55 [00:02:17.000] Files (2) -Info 55 [16:02:18.000] ----------------------------------------------- -Info 55 [16:02:19.000] Project '/user/username/projects/myproject/random/tsconfig.json' (Configured) -Info 55 [16:02:20.000] Files (2) +Info 55 [00:02:18.000] ----------------------------------------------- +Info 55 [00:02:19.000] Project '/user/username/projects/myproject/random/tsconfig.json' (Configured) +Info 55 [00:02:20.000] Files (2) -Info 55 [16:02:21.000] ----------------------------------------------- -Info 55 [16:02:22.000] Open files: -Info 55 [16:02:23.000] FileName: /user/username/projects/myproject/dependency/FnS.ts ProjectRootPath: undefined -Info 55 [16:02:24.000] Projects: /user/username/projects/myproject/dependency/tsconfig.json +Info 55 [00:02:21.000] ----------------------------------------------- +Info 55 [00:02:22.000] Open files: +Info 55 [00:02:23.000] FileName: /user/username/projects/myproject/dependency/FnS.ts ProjectRootPath: undefined +Info 55 [00:02:24.000] Projects: /user/username/projects/myproject/dependency/tsconfig.json After request PolledWatches:: @@ -990,11 +990,11 @@ FsWatchesRecursive:: /user/username/projects/myproject/random: {} -Info 55 [16:02:25.000] response: +Info 55 [00:02:25.000] response: { "responseRequired": false } -Info 56 [16:02:26.000] request: +Info 56 [00:02:26.000] request: { "seq": 0, "type": "request", @@ -1031,22 +1031,22 @@ FsWatchesRecursive:: /user/username/projects/myproject/random: {} -Info 57 [16:02:27.000] FileWatcher:: Close:: WatchInfo: /user/username/projects/myproject/random/random.ts 500 undefined WatchType: Closed Script info -Info 58 [16:02:28.000] Search path: /user/username/projects/myproject/random -Info 59 [16:02:29.000] For info: /user/username/projects/myproject/random/random.ts :: Config file name: /user/username/projects/myproject/random/tsconfig.json -Info 60 [16:02:30.000] Project '/user/username/projects/myproject/dependency/tsconfig.json' (Configured) -Info 60 [16:02:31.000] Files (2) +Info 57 [00:02:27.000] FileWatcher:: Close:: WatchInfo: /user/username/projects/myproject/random/random.ts 500 undefined WatchType: Closed Script info +Info 58 [00:02:28.000] Search path: /user/username/projects/myproject/random +Info 59 [00:02:29.000] For info: /user/username/projects/myproject/random/random.ts :: Config file name: /user/username/projects/myproject/random/tsconfig.json +Info 60 [00:02:30.000] Project '/user/username/projects/myproject/dependency/tsconfig.json' (Configured) +Info 60 [00:02:31.000] Files (2) -Info 60 [16:02:32.000] ----------------------------------------------- -Info 60 [16:02:33.000] Project '/user/username/projects/myproject/random/tsconfig.json' (Configured) -Info 60 [16:02:34.000] Files (2) +Info 60 [00:02:32.000] ----------------------------------------------- +Info 60 [00:02:33.000] Project '/user/username/projects/myproject/random/tsconfig.json' (Configured) +Info 60 [00:02:34.000] Files (2) -Info 60 [16:02:35.000] ----------------------------------------------- -Info 60 [16:02:36.000] Open files: -Info 60 [16:02:37.000] FileName: /user/username/projects/myproject/dependency/FnS.ts ProjectRootPath: undefined -Info 60 [16:02:38.000] Projects: /user/username/projects/myproject/dependency/tsconfig.json -Info 60 [16:02:39.000] FileName: /user/username/projects/myproject/random/random.ts ProjectRootPath: undefined -Info 60 [16:02:40.000] Projects: /user/username/projects/myproject/random/tsconfig.json +Info 60 [00:02:35.000] ----------------------------------------------- +Info 60 [00:02:36.000] Open files: +Info 60 [00:02:37.000] FileName: /user/username/projects/myproject/dependency/FnS.ts ProjectRootPath: undefined +Info 60 [00:02:38.000] Projects: /user/username/projects/myproject/dependency/tsconfig.json +Info 60 [00:02:39.000] FileName: /user/username/projects/myproject/random/random.ts ProjectRootPath: undefined +Info 60 [00:02:40.000] Projects: /user/username/projects/myproject/random/tsconfig.json After request PolledWatches:: @@ -1073,11 +1073,11 @@ FsWatchesRecursive:: /user/username/projects/myproject/random: {} -Info 60 [16:02:41.000] response: +Info 60 [00:02:41.000] response: { "responseRequired": false } -Info 61 [16:02:42.000] request: +Info 61 [00:02:42.000] request: { "seq": 0, "type": "request", @@ -1112,18 +1112,18 @@ FsWatchesRecursive:: /user/username/projects/myproject/random: {} -Info 62 [16:02:43.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/dependency/FnS.ts 500 undefined WatchType: Closed Script info -Info 63 [16:02:44.000] Project '/user/username/projects/myproject/dependency/tsconfig.json' (Configured) -Info 63 [16:02:45.000] Files (2) +Info 62 [00:02:43.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/dependency/FnS.ts 500 undefined WatchType: Closed Script info +Info 63 [00:02:44.000] Project '/user/username/projects/myproject/dependency/tsconfig.json' (Configured) +Info 63 [00:02:45.000] Files (2) -Info 63 [16:02:46.000] ----------------------------------------------- -Info 63 [16:02:47.000] Project '/user/username/projects/myproject/random/tsconfig.json' (Configured) -Info 63 [16:02:48.000] Files (2) +Info 63 [00:02:46.000] ----------------------------------------------- +Info 63 [00:02:47.000] Project '/user/username/projects/myproject/random/tsconfig.json' (Configured) +Info 63 [00:02:48.000] Files (2) -Info 63 [16:02:49.000] ----------------------------------------------- -Info 63 [16:02:50.000] Open files: -Info 63 [16:02:51.000] FileName: /user/username/projects/myproject/random/random.ts ProjectRootPath: undefined -Info 63 [16:02:52.000] Projects: /user/username/projects/myproject/random/tsconfig.json +Info 63 [00:02:49.000] ----------------------------------------------- +Info 63 [00:02:50.000] Open files: +Info 63 [00:02:51.000] FileName: /user/username/projects/myproject/random/random.ts ProjectRootPath: undefined +Info 63 [00:02:52.000] Projects: /user/username/projects/myproject/random/tsconfig.json After request PolledWatches:: @@ -1152,11 +1152,11 @@ FsWatchesRecursive:: /user/username/projects/myproject/random: {} -Info 63 [16:02:53.000] response: +Info 63 [00:02:53.000] response: { "responseRequired": false } -Info 64 [16:02:54.000] request: +Info 64 [00:02:54.000] request: { "seq": 0, "type": "request", @@ -1193,16 +1193,16 @@ FsWatchesRecursive:: /user/username/projects/myproject/random: {} -Info 65 [16:02:55.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/random/random.ts 500 undefined WatchType: Closed Script info -Info 66 [16:02:56.000] Project '/user/username/projects/myproject/dependency/tsconfig.json' (Configured) -Info 66 [16:02:57.000] Files (2) +Info 65 [00:02:55.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/random/random.ts 500 undefined WatchType: Closed Script info +Info 66 [00:02:56.000] Project '/user/username/projects/myproject/dependency/tsconfig.json' (Configured) +Info 66 [00:02:57.000] Files (2) -Info 66 [16:02:58.000] ----------------------------------------------- -Info 66 [16:02:59.000] Project '/user/username/projects/myproject/random/tsconfig.json' (Configured) -Info 66 [16:03:00.000] Files (2) +Info 66 [00:02:58.000] ----------------------------------------------- +Info 66 [00:02:59.000] Project '/user/username/projects/myproject/random/tsconfig.json' (Configured) +Info 66 [00:03:00.000] Files (2) -Info 66 [16:03:01.000] ----------------------------------------------- -Info 66 [16:03:02.000] Open files: +Info 66 [00:03:01.000] ----------------------------------------------- +Info 66 [00:03:02.000] Open files: After request PolledWatches:: @@ -1233,11 +1233,11 @@ FsWatchesRecursive:: /user/username/projects/myproject/random: {} -Info 66 [16:03:03.000] response: +Info 66 [00:03:03.000] response: { "responseRequired": false } -Info 67 [16:03:04.000] request: +Info 67 [00:03:04.000] request: { "seq": 0, "type": "request", @@ -1276,12 +1276,12 @@ FsWatchesRecursive:: /user/username/projects/myproject/random: {} -Info 68 [16:03:05.000] FileWatcher:: Close:: WatchInfo: /user/username/projects/myproject/random/random.ts 500 undefined WatchType: Closed Script info -Info 69 [16:03:06.000] Search path: /user/username/projects/myproject/random -Info 70 [16:03:07.000] For info: /user/username/projects/myproject/random/random.ts :: Config file name: /user/username/projects/myproject/random/tsconfig.json -Info 71 [16:03:08.000] `remove Project:: -Info 72 [16:03:09.000] Project '/user/username/projects/myproject/dependency/tsconfig.json' (Configured) -Info 73 [16:03:10.000] Files (2) +Info 68 [00:03:05.000] FileWatcher:: Close:: WatchInfo: /user/username/projects/myproject/random/random.ts 500 undefined WatchType: Closed Script info +Info 69 [00:03:06.000] Search path: /user/username/projects/myproject/random +Info 70 [00:03:07.000] For info: /user/username/projects/myproject/random/random.ts :: Config file name: /user/username/projects/myproject/random/tsconfig.json +Info 71 [00:03:08.000] `remove Project:: +Info 72 [00:03:09.000] Project '/user/username/projects/myproject/dependency/tsconfig.json' (Configured) +Info 73 [00:03:10.000] Files (2) /a/lib/lib.d.ts /user/username/projects/myproject/dependency/FnS.ts @@ -1291,23 +1291,23 @@ Info 73 [16:03:10.000] Files (2) FnS.ts Matched by default include pattern '**/*' -Info 74 [16:03:11.000] ----------------------------------------------- -Info 75 [16:03:12.000] DirectoryWatcher:: Close:: WatchInfo: /user/username/projects/myproject/dependency 1 undefined Config: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Wild card directory -Info 76 [16:03:13.000] 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 77 [16:03:14.000] FileWatcher:: Close:: WatchInfo: /user/username/projects/myproject/dependency/tsconfig.json 2000 undefined Project: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Config file -Info 78 [16:03:15.000] 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 79 [16:03:16.000] 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 80 [16:03:17.000] DirectoryWatcher:: Close:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Type roots -Info 81 [16:03:18.000] 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 82 [16:03:19.000] 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 83 [16:03:20.000] FileWatcher:: Close:: WatchInfo: /user/username/projects/myproject/dependency/FnS.ts 500 undefined WatchType: Closed Script info -Info 84 [16:03:21.000] Project '/user/username/projects/myproject/random/tsconfig.json' (Configured) -Info 84 [16:03:22.000] Files (2) - -Info 84 [16:03:23.000] ----------------------------------------------- -Info 84 [16:03:24.000] Open files: -Info 84 [16:03:25.000] FileName: /user/username/projects/myproject/random/random.ts ProjectRootPath: undefined -Info 84 [16:03:26.000] Projects: /user/username/projects/myproject/random/tsconfig.json +Info 74 [00:03:11.000] ----------------------------------------------- +Info 75 [00:03:12.000] DirectoryWatcher:: Close:: WatchInfo: /user/username/projects/myproject/dependency 1 undefined Config: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Wild card directory +Info 76 [00:03:13.000] 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 77 [00:03:14.000] FileWatcher:: Close:: WatchInfo: /user/username/projects/myproject/dependency/tsconfig.json 2000 undefined Project: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Config file +Info 78 [00:03:15.000] 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 79 [00:03:16.000] 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 80 [00:03:17.000] DirectoryWatcher:: Close:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Type roots +Info 81 [00:03:18.000] 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 82 [00:03:19.000] 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 83 [00:03:20.000] FileWatcher:: Close:: WatchInfo: /user/username/projects/myproject/dependency/FnS.ts 500 undefined WatchType: Closed Script info +Info 84 [00:03:21.000] Project '/user/username/projects/myproject/random/tsconfig.json' (Configured) +Info 84 [00:03:22.000] Files (2) + +Info 84 [00:03:23.000] ----------------------------------------------- +Info 84 [00:03:24.000] Open files: +Info 84 [00:03:25.000] FileName: /user/username/projects/myproject/random/random.ts ProjectRootPath: undefined +Info 84 [00:03:26.000] Projects: /user/username/projects/myproject/random/tsconfig.json After request PolledWatches:: @@ -1326,7 +1326,7 @@ FsWatchesRecursive:: /user/username/projects/myproject/random: {} -Info 84 [16:03:27.000] response: +Info 84 [00:03:27.000] response: { "responseRequired": false } \ No newline at end of file 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 8f467973bf07e..7f2bd0fccd9fa 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 @@ -1,5 +1,5 @@ -Info 0 [16:01:03.000] Provided types map file "/a/lib/typesMap.json" doesn't exist -Info 1 [16:01:04.000] request: +Info 0 [00:01:03.000] Provided types map file "/a/lib/typesMap.json" doesn't exist +Info 1 [00:01:04.000] request: { "seq": 0, "type": "request", @@ -200,11 +200,11 @@ FsWatches:: FsWatchesRecursive:: -Info 2 [16:01:05.000] Search path: /user/username/projects/myproject/dependency -Info 3 [16:01:06.000] For info: /user/username/projects/myproject/dependency/FnS.ts :: Config file name: /user/username/projects/myproject/dependency/tsconfig.json -Info 4 [16:01:07.000] Creating configuration project /user/username/projects/myproject/dependency/tsconfig.json -Info 5 [16:01:08.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/dependency/tsconfig.json 2000 undefined Project: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Config file -Info 6 [16:01:09.000] Config: /user/username/projects/myproject/dependency/tsconfig.json : { +Info 2 [00:01:05.000] Search path: /user/username/projects/myproject/dependency +Info 3 [00:01:06.000] For info: /user/username/projects/myproject/dependency/FnS.ts :: Config file name: /user/username/projects/myproject/dependency/tsconfig.json +Info 4 [00:01:07.000] Creating configuration project /user/username/projects/myproject/dependency/tsconfig.json +Info 5 [00:01:08.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/dependency/tsconfig.json 2000 undefined Project: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Config file +Info 6 [00:01:09.000] Config: /user/username/projects/myproject/dependency/tsconfig.json : { "rootNames": [ "/user/username/projects/myproject/dependency/FnS.ts" ], @@ -215,18 +215,18 @@ Info 6 [16:01:09.000] Config: /user/username/projects/myproject/dependency/ts "configFilePath": "/user/username/projects/myproject/dependency/tsconfig.json" } } -Info 7 [16:01:10.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/dependency 1 undefined Config: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Wild card directory -Info 8 [16:01:11.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/dependency 1 undefined Config: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Wild card directory -Info 9 [16:01:12.000] Plugins were requested but not running in environment that supports 'require'. Nothing will be loaded -Info 10 [16:01:13.000] Starting updateGraphWorker: Project: /user/username/projects/myproject/dependency/tsconfig.json -Info 11 [16:01:14.000] FileWatcher:: Added:: WatchInfo: /a/lib/lib.d.ts 500 undefined WatchType: Closed Script info -Info 12 [16:01:15.000] 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 13 [16:01:16.000] 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 14 [16:01:17.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Type roots -Info 15 [16:01:18.000] 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 16 [16:01:19.000] Finishing updateGraphWorker: Project: /user/username/projects/myproject/dependency/tsconfig.json Version: 1 structureChanged: true structureIsReused:: Not Elapsed:: *ms -Info 17 [16:01:20.000] Project '/user/username/projects/myproject/dependency/tsconfig.json' (Configured) -Info 18 [16:01:21.000] Files (2) +Info 7 [00:01:10.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/dependency 1 undefined Config: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Wild card directory +Info 8 [00:01:11.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/dependency 1 undefined Config: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Wild card directory +Info 9 [00:01:12.000] Plugins were requested but not running in environment that supports 'require'. Nothing will be loaded +Info 10 [00:01:13.000] Starting updateGraphWorker: Project: /user/username/projects/myproject/dependency/tsconfig.json +Info 11 [00:01:14.000] FileWatcher:: Added:: WatchInfo: /a/lib/lib.d.ts 500 undefined WatchType: Closed Script info +Info 12 [00:01:15.000] 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 13 [00:01:16.000] 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 14 [00:01:17.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Type roots +Info 15 [00:01:18.000] 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 16 [00:01:19.000] Finishing updateGraphWorker: Project: /user/username/projects/myproject/dependency/tsconfig.json Version: 1 structureChanged: true structureIsReused:: Not Elapsed:: *ms +Info 17 [00:01:20.000] Project '/user/username/projects/myproject/dependency/tsconfig.json' (Configured) +Info 18 [00:01:21.000] Files (2) /a/lib/lib.d.ts /user/username/projects/myproject/dependency/FnS.ts @@ -236,16 +236,16 @@ Info 18 [16:01:21.000] Files (2) FnS.ts Matched by default include pattern '**/*' -Info 19 [16:01:22.000] ----------------------------------------------- -Info 20 [16:01:23.000] Search path: /user/username/projects/myproject/dependency -Info 21 [16:01:24.000] For info: /user/username/projects/myproject/dependency/tsconfig.json :: No config files found. -Info 22 [16:01:25.000] Project '/user/username/projects/myproject/dependency/tsconfig.json' (Configured) -Info 22 [16:01:26.000] Files (2) +Info 19 [00:01:22.000] ----------------------------------------------- +Info 20 [00:01:23.000] Search path: /user/username/projects/myproject/dependency +Info 21 [00:01:24.000] For info: /user/username/projects/myproject/dependency/tsconfig.json :: No config files found. +Info 22 [00:01:25.000] Project '/user/username/projects/myproject/dependency/tsconfig.json' (Configured) +Info 22 [00:01:26.000] Files (2) -Info 22 [16:01:27.000] ----------------------------------------------- -Info 22 [16:01:28.000] Open files: -Info 22 [16:01:29.000] FileName: /user/username/projects/myproject/dependency/FnS.ts ProjectRootPath: undefined -Info 22 [16:01:30.000] Projects: /user/username/projects/myproject/dependency/tsconfig.json +Info 22 [00:01:27.000] ----------------------------------------------- +Info 22 [00:01:28.000] Open files: +Info 22 [00:01:29.000] FileName: /user/username/projects/myproject/dependency/FnS.ts ProjectRootPath: undefined +Info 22 [00:01:30.000] Projects: /user/username/projects/myproject/dependency/tsconfig.json After request PolledWatches:: @@ -264,11 +264,11 @@ FsWatchesRecursive:: /user/username/projects/myproject/dependency: {} -Info 22 [16:01:31.000] response: +Info 22 [00:01:31.000] response: { "responseRequired": false } -Info 23 [16:01:32.000] request: +Info 23 [00:01:32.000] request: { "seq": 0, "type": "request", @@ -295,11 +295,11 @@ FsWatchesRecursive:: /user/username/projects/myproject/dependency: {} -Info 24 [16:01:33.000] Search path: /user/username/projects/myproject/random -Info 25 [16:01:34.000] For info: /user/username/projects/myproject/random/random.ts :: Config file name: /user/username/projects/myproject/random/tsconfig.json -Info 26 [16:01:35.000] Creating configuration project /user/username/projects/myproject/random/tsconfig.json -Info 27 [16:01:36.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/random/tsconfig.json 2000 undefined Project: /user/username/projects/myproject/random/tsconfig.json WatchType: Config file -Info 28 [16:01:37.000] Config: /user/username/projects/myproject/random/tsconfig.json : { +Info 24 [00:01:33.000] Search path: /user/username/projects/myproject/random +Info 25 [00:01:34.000] For info: /user/username/projects/myproject/random/random.ts :: Config file name: /user/username/projects/myproject/random/tsconfig.json +Info 26 [00:01:35.000] Creating configuration project /user/username/projects/myproject/random/tsconfig.json +Info 27 [00:01:36.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/random/tsconfig.json 2000 undefined Project: /user/username/projects/myproject/random/tsconfig.json WatchType: Config file +Info 28 [00:01:37.000] Config: /user/username/projects/myproject/random/tsconfig.json : { "rootNames": [ "/user/username/projects/myproject/random/random.ts" ], @@ -307,17 +307,17 @@ Info 28 [16:01:37.000] Config: /user/username/projects/myproject/random/tsconf "configFilePath": "/user/username/projects/myproject/random/tsconfig.json" } } -Info 29 [16:01:38.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/random 1 undefined Config: /user/username/projects/myproject/random/tsconfig.json WatchType: Wild card directory -Info 30 [16:01:39.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/random 1 undefined Config: /user/username/projects/myproject/random/tsconfig.json WatchType: Wild card directory -Info 31 [16:01:40.000] Plugins were requested but not running in environment that supports 'require'. Nothing will be loaded -Info 32 [16:01:41.000] Starting updateGraphWorker: Project: /user/username/projects/myproject/random/tsconfig.json -Info 33 [16:01:42.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/random/node_modules/@types 1 undefined Project: /user/username/projects/myproject/random/tsconfig.json WatchType: Type roots -Info 34 [16:01:43.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/random/node_modules/@types 1 undefined Project: /user/username/projects/myproject/random/tsconfig.json WatchType: Type roots -Info 35 [16:01:44.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/random/tsconfig.json WatchType: Type roots -Info 36 [16:01:45.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/random/tsconfig.json WatchType: Type roots -Info 37 [16:01:46.000] Finishing updateGraphWorker: Project: /user/username/projects/myproject/random/tsconfig.json Version: 1 structureChanged: true structureIsReused:: Not Elapsed:: *ms -Info 38 [16:01:47.000] Project '/user/username/projects/myproject/random/tsconfig.json' (Configured) -Info 39 [16:01:48.000] Files (2) +Info 29 [00:01:38.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/random 1 undefined Config: /user/username/projects/myproject/random/tsconfig.json WatchType: Wild card directory +Info 30 [00:01:39.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/random 1 undefined Config: /user/username/projects/myproject/random/tsconfig.json WatchType: Wild card directory +Info 31 [00:01:40.000] Plugins were requested but not running in environment that supports 'require'. Nothing will be loaded +Info 32 [00:01:41.000] Starting updateGraphWorker: Project: /user/username/projects/myproject/random/tsconfig.json +Info 33 [00:01:42.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/random/node_modules/@types 1 undefined Project: /user/username/projects/myproject/random/tsconfig.json WatchType: Type roots +Info 34 [00:01:43.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/random/node_modules/@types 1 undefined Project: /user/username/projects/myproject/random/tsconfig.json WatchType: Type roots +Info 35 [00:01:44.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/random/tsconfig.json WatchType: Type roots +Info 36 [00:01:45.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/random/tsconfig.json WatchType: Type roots +Info 37 [00:01:46.000] Finishing updateGraphWorker: Project: /user/username/projects/myproject/random/tsconfig.json Version: 1 structureChanged: true structureIsReused:: Not Elapsed:: *ms +Info 38 [00:01:47.000] Project '/user/username/projects/myproject/random/tsconfig.json' (Configured) +Info 39 [00:01:48.000] Files (2) /a/lib/lib.d.ts /user/username/projects/myproject/random/random.ts @@ -327,20 +327,20 @@ Info 39 [16:01:48.000] Files (2) random.ts Matched by default include pattern '**/*' -Info 40 [16:01:49.000] ----------------------------------------------- -Info 41 [16:01:50.000] Project '/user/username/projects/myproject/dependency/tsconfig.json' (Configured) -Info 41 [16:01:51.000] Files (2) +Info 40 [00:01:49.000] ----------------------------------------------- +Info 41 [00:01:50.000] Project '/user/username/projects/myproject/dependency/tsconfig.json' (Configured) +Info 41 [00:01:51.000] Files (2) -Info 41 [16:01:52.000] ----------------------------------------------- -Info 41 [16:01:53.000] Project '/user/username/projects/myproject/random/tsconfig.json' (Configured) -Info 41 [16:01:54.000] Files (2) +Info 41 [00:01:52.000] ----------------------------------------------- +Info 41 [00:01:53.000] Project '/user/username/projects/myproject/random/tsconfig.json' (Configured) +Info 41 [00:01:54.000] Files (2) -Info 41 [16:01:55.000] ----------------------------------------------- -Info 41 [16:01:56.000] Open files: -Info 41 [16:01:57.000] FileName: /user/username/projects/myproject/dependency/FnS.ts ProjectRootPath: undefined -Info 41 [16:01:58.000] Projects: /user/username/projects/myproject/dependency/tsconfig.json -Info 41 [16:01:59.000] FileName: /user/username/projects/myproject/random/random.ts ProjectRootPath: undefined -Info 41 [16:02:00.000] Projects: /user/username/projects/myproject/random/tsconfig.json +Info 41 [00:01:55.000] ----------------------------------------------- +Info 41 [00:01:56.000] Open files: +Info 41 [00:01:57.000] FileName: /user/username/projects/myproject/dependency/FnS.ts ProjectRootPath: undefined +Info 41 [00:01:58.000] Projects: /user/username/projects/myproject/dependency/tsconfig.json +Info 41 [00:01:59.000] FileName: /user/username/projects/myproject/random/random.ts ProjectRootPath: undefined +Info 41 [00:02:00.000] Projects: /user/username/projects/myproject/random/tsconfig.json After request PolledWatches:: @@ -365,11 +365,11 @@ FsWatchesRecursive:: /user/username/projects/myproject/random: {} -Info 41 [16:02:01.000] response: +Info 41 [00:02:01.000] response: { "responseRequired": false } -Info 42 [16:02:02.000] request: +Info 42 [00:02:02.000] request: { "command": "rename", "arguments": { @@ -404,8 +404,8 @@ FsWatchesRecursive:: /user/username/projects/myproject/random: {} -Info 43 [16:02:03.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/decls/FnS.d.ts 500 undefined WatchType: Closed Script info -Info 44 [16:02:04.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/decls/FnS.d.ts.map 500 undefined WatchType: Closed Script info +Info 43 [00:02:03.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/decls/FnS.d.ts 500 undefined WatchType: Closed Script info +Info 44 [00:02:04.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/decls/FnS.d.ts.map 500 undefined WatchType: Closed Script info After request PolledWatches:: @@ -434,7 +434,7 @@ FsWatchesRecursive:: /user/username/projects/myproject/random: {} -Info 45 [16:02:05.000] response: +Info 45 [00:02:05.000] response: { "response": { "info": { @@ -482,10 +482,10 @@ Info 45 [16:02:05.000] response: }, "responseRequired": true } -Info 46 [16:02:09.000] FileWatcher:: Triggered with /user/username/projects/myproject/decls/FnS.d.ts.map 1:: WatchInfo: /user/username/projects/myproject/decls/FnS.d.ts.map 500 undefined WatchType: Closed Script info -Info 47 [16:02:10.000] Scheduled: /user/username/projects/myproject/dependency/tsconfig.json -Info 48 [16:02:11.000] Scheduled: *ensureProjectForOpenFiles* -Info 49 [16:02:12.000] Elapsed:: *ms FileWatcher:: Triggered with /user/username/projects/myproject/decls/FnS.d.ts.map 1:: WatchInfo: /user/username/projects/myproject/decls/FnS.d.ts.map 500 undefined WatchType: Closed Script info +Info 46 [00:02:09.000] FileWatcher:: Triggered with /user/username/projects/myproject/decls/FnS.d.ts.map 1:: WatchInfo: /user/username/projects/myproject/decls/FnS.d.ts.map 500 undefined WatchType: Closed Script info +Info 47 [00:02:10.000] Scheduled: /user/username/projects/myproject/dependency/tsconfig.json +Info 48 [00:02:11.000] Scheduled: *ensureProjectForOpenFiles* +Info 49 [00:02:12.000] Elapsed:: *ms FileWatcher:: Triggered with /user/username/projects/myproject/decls/FnS.d.ts.map 1:: WatchInfo: /user/username/projects/myproject/decls/FnS.d.ts.map 500 undefined WatchType: Closed Script info Before running timeout callbacks //// [/user/username/projects/myproject/decls/FnS.d.ts.map] {"version":3,"file":"FnS.d.ts","sourceRoot":"","sources":["../dependency/FnS.ts"],"names":[],"mappings":"AAAA,wBAAgB,GAAG,SAAM;AACzB,wBAAgB,GAAG,SAAM;AACzB,wBAAgB,GAAG,SAAM;AACzB,wBAAgB,GAAG,SAAM;AACzB,wBAAgB,GAAG,SAAM;AACzB,eAAO,MAAM,CAAC,KAAK,CAAC"} @@ -517,38 +517,38 @@ FsWatchesRecursive:: /user/username/projects/myproject/random: {} -Info 50 [16:02:13.000] Running: /user/username/projects/myproject/dependency/tsconfig.json -Info 51 [16:02:14.000] Starting updateGraphWorker: Project: /user/username/projects/myproject/dependency/tsconfig.json -Info 52 [16:02:15.000] Finishing updateGraphWorker: Project: /user/username/projects/myproject/dependency/tsconfig.json Version: 2 structureChanged: false structureIsReused:: Not Elapsed:: *ms -Info 53 [16:02:16.000] Running: *ensureProjectForOpenFiles* -Info 54 [16:02:17.000] Before ensureProjectForOpenFiles: -Info 55 [16:02:18.000] Project '/user/username/projects/myproject/dependency/tsconfig.json' (Configured) -Info 55 [16:02:19.000] Files (2) - -Info 55 [16:02:20.000] ----------------------------------------------- -Info 55 [16:02:21.000] Project '/user/username/projects/myproject/random/tsconfig.json' (Configured) -Info 55 [16:02:22.000] Files (2) - -Info 55 [16:02:23.000] ----------------------------------------------- -Info 55 [16:02:24.000] Open files: -Info 55 [16:02:25.000] FileName: /user/username/projects/myproject/dependency/FnS.ts ProjectRootPath: undefined -Info 55 [16:02:26.000] Projects: /user/username/projects/myproject/dependency/tsconfig.json -Info 55 [16:02:27.000] FileName: /user/username/projects/myproject/random/random.ts ProjectRootPath: undefined -Info 55 [16:02:28.000] Projects: /user/username/projects/myproject/random/tsconfig.json -Info 55 [16:02:29.000] After ensureProjectForOpenFiles: -Info 56 [16:02:30.000] Project '/user/username/projects/myproject/dependency/tsconfig.json' (Configured) -Info 56 [16:02:31.000] Files (2) - -Info 56 [16:02:32.000] ----------------------------------------------- -Info 56 [16:02:33.000] Project '/user/username/projects/myproject/random/tsconfig.json' (Configured) -Info 56 [16:02:34.000] Files (2) - -Info 56 [16:02:35.000] ----------------------------------------------- -Info 56 [16:02:36.000] Open files: -Info 56 [16:02:37.000] FileName: /user/username/projects/myproject/dependency/FnS.ts ProjectRootPath: undefined -Info 56 [16:02:38.000] Projects: /user/username/projects/myproject/dependency/tsconfig.json -Info 56 [16:02:39.000] FileName: /user/username/projects/myproject/random/random.ts ProjectRootPath: undefined -Info 56 [16:02:40.000] Projects: /user/username/projects/myproject/random/tsconfig.json +Info 50 [00:02:13.000] Running: /user/username/projects/myproject/dependency/tsconfig.json +Info 51 [00:02:14.000] Starting updateGraphWorker: Project: /user/username/projects/myproject/dependency/tsconfig.json +Info 52 [00:02:15.000] Finishing updateGraphWorker: Project: /user/username/projects/myproject/dependency/tsconfig.json Version: 2 structureChanged: false structureIsReused:: Not Elapsed:: *ms +Info 53 [00:02:16.000] Running: *ensureProjectForOpenFiles* +Info 54 [00:02:17.000] Before ensureProjectForOpenFiles: +Info 55 [00:02:18.000] Project '/user/username/projects/myproject/dependency/tsconfig.json' (Configured) +Info 55 [00:02:19.000] Files (2) + +Info 55 [00:02:20.000] ----------------------------------------------- +Info 55 [00:02:21.000] Project '/user/username/projects/myproject/random/tsconfig.json' (Configured) +Info 55 [00:02:22.000] Files (2) + +Info 55 [00:02:23.000] ----------------------------------------------- +Info 55 [00:02:24.000] Open files: +Info 55 [00:02:25.000] FileName: /user/username/projects/myproject/dependency/FnS.ts ProjectRootPath: undefined +Info 55 [00:02:26.000] Projects: /user/username/projects/myproject/dependency/tsconfig.json +Info 55 [00:02:27.000] FileName: /user/username/projects/myproject/random/random.ts ProjectRootPath: undefined +Info 55 [00:02:28.000] Projects: /user/username/projects/myproject/random/tsconfig.json +Info 55 [00:02:29.000] After ensureProjectForOpenFiles: +Info 56 [00:02:30.000] Project '/user/username/projects/myproject/dependency/tsconfig.json' (Configured) +Info 56 [00:02:31.000] Files (2) + +Info 56 [00:02:32.000] ----------------------------------------------- +Info 56 [00:02:33.000] Project '/user/username/projects/myproject/random/tsconfig.json' (Configured) +Info 56 [00:02:34.000] Files (2) + +Info 56 [00:02:35.000] ----------------------------------------------- +Info 56 [00:02:36.000] Open files: +Info 56 [00:02:37.000] FileName: /user/username/projects/myproject/dependency/FnS.ts ProjectRootPath: undefined +Info 56 [00:02:38.000] Projects: /user/username/projects/myproject/dependency/tsconfig.json +Info 56 [00:02:39.000] FileName: /user/username/projects/myproject/random/random.ts ProjectRootPath: undefined +Info 56 [00:02:40.000] Projects: /user/username/projects/myproject/random/tsconfig.json After running timeout callbacks PolledWatches:: @@ -577,7 +577,7 @@ FsWatchesRecursive:: /user/username/projects/myproject/random: {} -Info 56 [16:02:41.000] request: +Info 56 [00:02:41.000] request: { "command": "rename", "arguments": { @@ -644,7 +644,7 @@ FsWatchesRecursive:: /user/username/projects/myproject/random: {} -Info 57 [16:02:42.000] response: +Info 57 [00:02:42.000] response: { "response": { "info": { @@ -692,7 +692,7 @@ Info 57 [16:02:42.000] response: }, "responseRequired": true } -Info 58 [16:02:43.000] request: +Info 58 [00:02:43.000] request: { "command": "rename", "arguments": { @@ -759,7 +759,7 @@ FsWatchesRecursive:: /user/username/projects/myproject/random: {} -Info 59 [16:02:44.000] response: +Info 59 [00:02:44.000] response: { "response": { "info": { @@ -807,7 +807,7 @@ Info 59 [16:02:44.000] response: }, "responseRequired": true } -Info 60 [16:02:45.000] request: +Info 60 [00:02:45.000] request: { "command": "rename", "arguments": { @@ -874,7 +874,7 @@ FsWatchesRecursive:: /user/username/projects/myproject/random: {} -Info 61 [16:02:46.000] response: +Info 61 [00:02:46.000] response: { "response": { "info": { @@ -922,7 +922,7 @@ Info 61 [16:02:46.000] response: }, "responseRequired": true } -Info 62 [16:02:47.000] request: +Info 62 [00:02:47.000] request: { "command": "rename", "arguments": { @@ -989,7 +989,7 @@ FsWatchesRecursive:: /user/username/projects/myproject/random: {} -Info 63 [16:02:48.000] response: +Info 63 [00:02:48.000] response: { "response": { "info": { @@ -1037,7 +1037,7 @@ Info 63 [16:02:48.000] response: }, "responseRequired": true } -Info 64 [16:02:49.000] request: +Info 64 [00:02:49.000] request: { "command": "rename", "arguments": { @@ -1104,7 +1104,7 @@ FsWatchesRecursive:: /user/username/projects/myproject/random: {} -Info 65 [16:02:50.000] response: +Info 65 [00:02:50.000] response: { "response": { "info": { 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 090cd0610de9d..56e3b1ef82d8b 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 @@ -1,5 +1,5 @@ -Info 0 [16:01:03.000] Provided types map file "/a/lib/typesMap.json" doesn't exist -Info 1 [16:01:04.000] request: +Info 0 [00:01:03.000] Provided types map file "/a/lib/typesMap.json" doesn't exist +Info 1 [00:01:04.000] request: { "seq": 0, "type": "request", @@ -200,11 +200,11 @@ FsWatches:: FsWatchesRecursive:: -Info 2 [16:01:05.000] Search path: /user/username/projects/myproject/dependency -Info 3 [16:01:06.000] For info: /user/username/projects/myproject/dependency/FnS.ts :: Config file name: /user/username/projects/myproject/dependency/tsconfig.json -Info 4 [16:01:07.000] Creating configuration project /user/username/projects/myproject/dependency/tsconfig.json -Info 5 [16:01:08.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/dependency/tsconfig.json 2000 undefined Project: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Config file -Info 6 [16:01:09.000] Config: /user/username/projects/myproject/dependency/tsconfig.json : { +Info 2 [00:01:05.000] Search path: /user/username/projects/myproject/dependency +Info 3 [00:01:06.000] For info: /user/username/projects/myproject/dependency/FnS.ts :: Config file name: /user/username/projects/myproject/dependency/tsconfig.json +Info 4 [00:01:07.000] Creating configuration project /user/username/projects/myproject/dependency/tsconfig.json +Info 5 [00:01:08.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/dependency/tsconfig.json 2000 undefined Project: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Config file +Info 6 [00:01:09.000] Config: /user/username/projects/myproject/dependency/tsconfig.json : { "rootNames": [ "/user/username/projects/myproject/dependency/FnS.ts" ], @@ -215,18 +215,18 @@ Info 6 [16:01:09.000] Config: /user/username/projects/myproject/dependency/ts "configFilePath": "/user/username/projects/myproject/dependency/tsconfig.json" } } -Info 7 [16:01:10.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/dependency 1 undefined Config: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Wild card directory -Info 8 [16:01:11.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/dependency 1 undefined Config: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Wild card directory -Info 9 [16:01:12.000] Plugins were requested but not running in environment that supports 'require'. Nothing will be loaded -Info 10 [16:01:13.000] Starting updateGraphWorker: Project: /user/username/projects/myproject/dependency/tsconfig.json -Info 11 [16:01:14.000] FileWatcher:: Added:: WatchInfo: /a/lib/lib.d.ts 500 undefined WatchType: Closed Script info -Info 12 [16:01:15.000] 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 13 [16:01:16.000] 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 14 [16:01:17.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Type roots -Info 15 [16:01:18.000] 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 16 [16:01:19.000] Finishing updateGraphWorker: Project: /user/username/projects/myproject/dependency/tsconfig.json Version: 1 structureChanged: true structureIsReused:: Not Elapsed:: *ms -Info 17 [16:01:20.000] Project '/user/username/projects/myproject/dependency/tsconfig.json' (Configured) -Info 18 [16:01:21.000] Files (2) +Info 7 [00:01:10.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/dependency 1 undefined Config: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Wild card directory +Info 8 [00:01:11.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/dependency 1 undefined Config: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Wild card directory +Info 9 [00:01:12.000] Plugins were requested but not running in environment that supports 'require'. Nothing will be loaded +Info 10 [00:01:13.000] Starting updateGraphWorker: Project: /user/username/projects/myproject/dependency/tsconfig.json +Info 11 [00:01:14.000] FileWatcher:: Added:: WatchInfo: /a/lib/lib.d.ts 500 undefined WatchType: Closed Script info +Info 12 [00:01:15.000] 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 13 [00:01:16.000] 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 14 [00:01:17.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Type roots +Info 15 [00:01:18.000] 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 16 [00:01:19.000] Finishing updateGraphWorker: Project: /user/username/projects/myproject/dependency/tsconfig.json Version: 1 structureChanged: true structureIsReused:: Not Elapsed:: *ms +Info 17 [00:01:20.000] Project '/user/username/projects/myproject/dependency/tsconfig.json' (Configured) +Info 18 [00:01:21.000] Files (2) /a/lib/lib.d.ts /user/username/projects/myproject/dependency/FnS.ts @@ -236,16 +236,16 @@ Info 18 [16:01:21.000] Files (2) FnS.ts Matched by default include pattern '**/*' -Info 19 [16:01:22.000] ----------------------------------------------- -Info 20 [16:01:23.000] Search path: /user/username/projects/myproject/dependency -Info 21 [16:01:24.000] For info: /user/username/projects/myproject/dependency/tsconfig.json :: No config files found. -Info 22 [16:01:25.000] Project '/user/username/projects/myproject/dependency/tsconfig.json' (Configured) -Info 22 [16:01:26.000] Files (2) +Info 19 [00:01:22.000] ----------------------------------------------- +Info 20 [00:01:23.000] Search path: /user/username/projects/myproject/dependency +Info 21 [00:01:24.000] For info: /user/username/projects/myproject/dependency/tsconfig.json :: No config files found. +Info 22 [00:01:25.000] Project '/user/username/projects/myproject/dependency/tsconfig.json' (Configured) +Info 22 [00:01:26.000] Files (2) -Info 22 [16:01:27.000] ----------------------------------------------- -Info 22 [16:01:28.000] Open files: -Info 22 [16:01:29.000] FileName: /user/username/projects/myproject/dependency/FnS.ts ProjectRootPath: undefined -Info 22 [16:01:30.000] Projects: /user/username/projects/myproject/dependency/tsconfig.json +Info 22 [00:01:27.000] ----------------------------------------------- +Info 22 [00:01:28.000] Open files: +Info 22 [00:01:29.000] FileName: /user/username/projects/myproject/dependency/FnS.ts ProjectRootPath: undefined +Info 22 [00:01:30.000] Projects: /user/username/projects/myproject/dependency/tsconfig.json After request PolledWatches:: @@ -264,11 +264,11 @@ FsWatchesRecursive:: /user/username/projects/myproject/dependency: {} -Info 22 [16:01:31.000] response: +Info 22 [00:01:31.000] response: { "responseRequired": false } -Info 23 [16:01:32.000] request: +Info 23 [00:01:32.000] request: { "seq": 0, "type": "request", @@ -295,11 +295,11 @@ FsWatchesRecursive:: /user/username/projects/myproject/dependency: {} -Info 24 [16:01:33.000] Search path: /user/username/projects/myproject/random -Info 25 [16:01:34.000] For info: /user/username/projects/myproject/random/random.ts :: Config file name: /user/username/projects/myproject/random/tsconfig.json -Info 26 [16:01:35.000] Creating configuration project /user/username/projects/myproject/random/tsconfig.json -Info 27 [16:01:36.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/random/tsconfig.json 2000 undefined Project: /user/username/projects/myproject/random/tsconfig.json WatchType: Config file -Info 28 [16:01:37.000] Config: /user/username/projects/myproject/random/tsconfig.json : { +Info 24 [00:01:33.000] Search path: /user/username/projects/myproject/random +Info 25 [00:01:34.000] For info: /user/username/projects/myproject/random/random.ts :: Config file name: /user/username/projects/myproject/random/tsconfig.json +Info 26 [00:01:35.000] Creating configuration project /user/username/projects/myproject/random/tsconfig.json +Info 27 [00:01:36.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/random/tsconfig.json 2000 undefined Project: /user/username/projects/myproject/random/tsconfig.json WatchType: Config file +Info 28 [00:01:37.000] Config: /user/username/projects/myproject/random/tsconfig.json : { "rootNames": [ "/user/username/projects/myproject/random/random.ts" ], @@ -307,17 +307,17 @@ Info 28 [16:01:37.000] Config: /user/username/projects/myproject/random/tsconf "configFilePath": "/user/username/projects/myproject/random/tsconfig.json" } } -Info 29 [16:01:38.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/random 1 undefined Config: /user/username/projects/myproject/random/tsconfig.json WatchType: Wild card directory -Info 30 [16:01:39.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/random 1 undefined Config: /user/username/projects/myproject/random/tsconfig.json WatchType: Wild card directory -Info 31 [16:01:40.000] Plugins were requested but not running in environment that supports 'require'. Nothing will be loaded -Info 32 [16:01:41.000] Starting updateGraphWorker: Project: /user/username/projects/myproject/random/tsconfig.json -Info 33 [16:01:42.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/random/node_modules/@types 1 undefined Project: /user/username/projects/myproject/random/tsconfig.json WatchType: Type roots -Info 34 [16:01:43.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/random/node_modules/@types 1 undefined Project: /user/username/projects/myproject/random/tsconfig.json WatchType: Type roots -Info 35 [16:01:44.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/random/tsconfig.json WatchType: Type roots -Info 36 [16:01:45.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/random/tsconfig.json WatchType: Type roots -Info 37 [16:01:46.000] Finishing updateGraphWorker: Project: /user/username/projects/myproject/random/tsconfig.json Version: 1 structureChanged: true structureIsReused:: Not Elapsed:: *ms -Info 38 [16:01:47.000] Project '/user/username/projects/myproject/random/tsconfig.json' (Configured) -Info 39 [16:01:48.000] Files (2) +Info 29 [00:01:38.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/random 1 undefined Config: /user/username/projects/myproject/random/tsconfig.json WatchType: Wild card directory +Info 30 [00:01:39.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/random 1 undefined Config: /user/username/projects/myproject/random/tsconfig.json WatchType: Wild card directory +Info 31 [00:01:40.000] Plugins were requested but not running in environment that supports 'require'. Nothing will be loaded +Info 32 [00:01:41.000] Starting updateGraphWorker: Project: /user/username/projects/myproject/random/tsconfig.json +Info 33 [00:01:42.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/random/node_modules/@types 1 undefined Project: /user/username/projects/myproject/random/tsconfig.json WatchType: Type roots +Info 34 [00:01:43.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/random/node_modules/@types 1 undefined Project: /user/username/projects/myproject/random/tsconfig.json WatchType: Type roots +Info 35 [00:01:44.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/random/tsconfig.json WatchType: Type roots +Info 36 [00:01:45.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/random/tsconfig.json WatchType: Type roots +Info 37 [00:01:46.000] Finishing updateGraphWorker: Project: /user/username/projects/myproject/random/tsconfig.json Version: 1 structureChanged: true structureIsReused:: Not Elapsed:: *ms +Info 38 [00:01:47.000] Project '/user/username/projects/myproject/random/tsconfig.json' (Configured) +Info 39 [00:01:48.000] Files (2) /a/lib/lib.d.ts /user/username/projects/myproject/random/random.ts @@ -327,20 +327,20 @@ Info 39 [16:01:48.000] Files (2) random.ts Matched by default include pattern '**/*' -Info 40 [16:01:49.000] ----------------------------------------------- -Info 41 [16:01:50.000] Project '/user/username/projects/myproject/dependency/tsconfig.json' (Configured) -Info 41 [16:01:51.000] Files (2) +Info 40 [00:01:49.000] ----------------------------------------------- +Info 41 [00:01:50.000] Project '/user/username/projects/myproject/dependency/tsconfig.json' (Configured) +Info 41 [00:01:51.000] Files (2) -Info 41 [16:01:52.000] ----------------------------------------------- -Info 41 [16:01:53.000] Project '/user/username/projects/myproject/random/tsconfig.json' (Configured) -Info 41 [16:01:54.000] Files (2) +Info 41 [00:01:52.000] ----------------------------------------------- +Info 41 [00:01:53.000] Project '/user/username/projects/myproject/random/tsconfig.json' (Configured) +Info 41 [00:01:54.000] Files (2) -Info 41 [16:01:55.000] ----------------------------------------------- -Info 41 [16:01:56.000] Open files: -Info 41 [16:01:57.000] FileName: /user/username/projects/myproject/dependency/FnS.ts ProjectRootPath: undefined -Info 41 [16:01:58.000] Projects: /user/username/projects/myproject/dependency/tsconfig.json -Info 41 [16:01:59.000] FileName: /user/username/projects/myproject/random/random.ts ProjectRootPath: undefined -Info 41 [16:02:00.000] Projects: /user/username/projects/myproject/random/tsconfig.json +Info 41 [00:01:55.000] ----------------------------------------------- +Info 41 [00:01:56.000] Open files: +Info 41 [00:01:57.000] FileName: /user/username/projects/myproject/dependency/FnS.ts ProjectRootPath: undefined +Info 41 [00:01:58.000] Projects: /user/username/projects/myproject/dependency/tsconfig.json +Info 41 [00:01:59.000] FileName: /user/username/projects/myproject/random/random.ts ProjectRootPath: undefined +Info 41 [00:02:00.000] Projects: /user/username/projects/myproject/random/tsconfig.json After request PolledWatches:: @@ -365,11 +365,11 @@ FsWatchesRecursive:: /user/username/projects/myproject/random: {} -Info 41 [16:02:01.000] response: +Info 41 [00:02:01.000] response: { "responseRequired": false } -Info 42 [16:02:02.000] request: +Info 42 [00:02:02.000] request: { "command": "rename", "arguments": { @@ -404,8 +404,8 @@ FsWatchesRecursive:: /user/username/projects/myproject/random: {} -Info 43 [16:02:03.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/decls/FnS.d.ts 500 undefined WatchType: Closed Script info -Info 44 [16:02:04.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/decls/FnS.d.ts.map 500 undefined WatchType: Closed Script info +Info 43 [00:02:03.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/decls/FnS.d.ts 500 undefined WatchType: Closed Script info +Info 44 [00:02:04.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/decls/FnS.d.ts.map 500 undefined WatchType: Closed Script info After request PolledWatches:: @@ -434,7 +434,7 @@ FsWatchesRecursive:: /user/username/projects/myproject/random: {} -Info 45 [16:02:05.000] response: +Info 45 [00:02:05.000] response: { "response": { "info": { @@ -482,11 +482,11 @@ Info 45 [16:02:05.000] response: }, "responseRequired": true } -Info 46 [16:02:09.000] FileWatcher:: Triggered with /user/username/projects/myproject/decls/FnS.d.ts.map 1:: WatchInfo: /user/username/projects/myproject/decls/FnS.d.ts.map 500 undefined WatchType: Closed Script info -Info 47 [16:02:10.000] Scheduled: /user/username/projects/myproject/dependency/tsconfig.json -Info 48 [16:02:11.000] Scheduled: *ensureProjectForOpenFiles* -Info 49 [16:02:12.000] Elapsed:: *ms FileWatcher:: Triggered with /user/username/projects/myproject/decls/FnS.d.ts.map 1:: WatchInfo: /user/username/projects/myproject/decls/FnS.d.ts.map 500 undefined WatchType: Closed Script info -Info 50 [16:02:13.000] request: +Info 46 [00:02:09.000] FileWatcher:: Triggered with /user/username/projects/myproject/decls/FnS.d.ts.map 1:: WatchInfo: /user/username/projects/myproject/decls/FnS.d.ts.map 500 undefined WatchType: Closed Script info +Info 47 [00:02:10.000] Scheduled: /user/username/projects/myproject/dependency/tsconfig.json +Info 48 [00:02:11.000] Scheduled: *ensureProjectForOpenFiles* +Info 49 [00:02:12.000] Elapsed:: *ms FileWatcher:: Triggered with /user/username/projects/myproject/decls/FnS.d.ts.map 1:: WatchInfo: /user/username/projects/myproject/decls/FnS.d.ts.map 500 undefined WatchType: Closed Script info +Info 50 [00:02:13.000] request: { "command": "rename", "arguments": { @@ -528,8 +528,8 @@ FsWatchesRecursive:: /user/username/projects/myproject/random: {} -Info 51 [16:02:14.000] Starting updateGraphWorker: Project: /user/username/projects/myproject/dependency/tsconfig.json -Info 52 [16:02:15.000] Finishing updateGraphWorker: Project: /user/username/projects/myproject/dependency/tsconfig.json Version: 2 structureChanged: false structureIsReused:: Not Elapsed:: *ms +Info 51 [00:02:14.000] Starting updateGraphWorker: Project: /user/username/projects/myproject/dependency/tsconfig.json +Info 52 [00:02:15.000] Finishing updateGraphWorker: Project: /user/username/projects/myproject/dependency/tsconfig.json Version: 2 structureChanged: false structureIsReused:: Not Elapsed:: *ms After request PolledWatches:: @@ -558,7 +558,7 @@ FsWatchesRecursive:: /user/username/projects/myproject/random: {} -Info 53 [16:02:16.000] response: +Info 53 [00:02:16.000] response: { "response": { "info": { @@ -606,7 +606,7 @@ Info 53 [16:02:16.000] response: }, "responseRequired": true } -Info 54 [16:02:17.000] request: +Info 54 [00:02:17.000] request: { "command": "rename", "arguments": { @@ -673,7 +673,7 @@ FsWatchesRecursive:: /user/username/projects/myproject/random: {} -Info 55 [16:02:18.000] response: +Info 55 [00:02:18.000] response: { "response": { "info": { @@ -721,7 +721,7 @@ Info 55 [16:02:18.000] response: }, "responseRequired": true } -Info 56 [16:02:19.000] request: +Info 56 [00:02:19.000] request: { "command": "rename", "arguments": { @@ -788,7 +788,7 @@ FsWatchesRecursive:: /user/username/projects/myproject/random: {} -Info 57 [16:02:20.000] response: +Info 57 [00:02:20.000] response: { "response": { "info": { @@ -836,7 +836,7 @@ Info 57 [16:02:20.000] response: }, "responseRequired": true } -Info 58 [16:02:21.000] request: +Info 58 [00:02:21.000] request: { "command": "rename", "arguments": { @@ -903,7 +903,7 @@ FsWatchesRecursive:: /user/username/projects/myproject/random: {} -Info 59 [16:02:22.000] response: +Info 59 [00:02:22.000] response: { "response": { "info": { @@ -951,7 +951,7 @@ Info 59 [16:02:22.000] response: }, "responseRequired": true } -Info 60 [16:02:23.000] request: +Info 60 [00:02:23.000] request: { "command": "rename", "arguments": { @@ -1018,7 +1018,7 @@ FsWatchesRecursive:: /user/username/projects/myproject/random: {} -Info 61 [16:02:24.000] response: +Info 61 [00:02:24.000] response: { "response": { "info": { 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 f575228fe57bc..06bab878edbfb 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 @@ -1,5 +1,5 @@ -Info 0 [16:01:04.000] Provided types map file "/a/lib/typesMap.json" doesn't exist -Info 1 [16:01:05.000] request: +Info 0 [00:01:04.000] Provided types map file "/a/lib/typesMap.json" doesn't exist +Info 1 [00:01:05.000] request: { "seq": 0, "type": "request", @@ -197,11 +197,11 @@ FsWatches:: FsWatchesRecursive:: -Info 2 [16:01:06.000] Search path: /user/username/projects/myproject/dependency -Info 3 [16:01:07.000] For info: /user/username/projects/myproject/dependency/FnS.ts :: Config file name: /user/username/projects/myproject/dependency/tsconfig.json -Info 4 [16:01:08.000] Creating configuration project /user/username/projects/myproject/dependency/tsconfig.json -Info 5 [16:01:09.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/dependency/tsconfig.json 2000 undefined Project: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Config file -Info 6 [16:01:10.000] Config: /user/username/projects/myproject/dependency/tsconfig.json : { +Info 2 [00:01:06.000] Search path: /user/username/projects/myproject/dependency +Info 3 [00:01:07.000] For info: /user/username/projects/myproject/dependency/FnS.ts :: Config file name: /user/username/projects/myproject/dependency/tsconfig.json +Info 4 [00:01:08.000] Creating configuration project /user/username/projects/myproject/dependency/tsconfig.json +Info 5 [00:01:09.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/dependency/tsconfig.json 2000 undefined Project: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Config file +Info 6 [00:01:10.000] Config: /user/username/projects/myproject/dependency/tsconfig.json : { "rootNames": [ "/user/username/projects/myproject/dependency/FnS.ts" ], @@ -212,18 +212,18 @@ Info 6 [16:01:10.000] Config: /user/username/projects/myproject/dependency/ts "configFilePath": "/user/username/projects/myproject/dependency/tsconfig.json" } } -Info 7 [16:01:11.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/dependency 1 undefined Config: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Wild card directory -Info 8 [16:01:12.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/dependency 1 undefined Config: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Wild card directory -Info 9 [16:01:13.000] Plugins were requested but not running in environment that supports 'require'. Nothing will be loaded -Info 10 [16:01:14.000] Starting updateGraphWorker: Project: /user/username/projects/myproject/dependency/tsconfig.json -Info 11 [16:01:15.000] FileWatcher:: Added:: WatchInfo: /a/lib/lib.d.ts 500 undefined WatchType: Closed Script info -Info 12 [16:01:16.000] 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 13 [16:01:17.000] 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 14 [16:01:18.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Type roots -Info 15 [16:01:19.000] 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 16 [16:01:20.000] Finishing updateGraphWorker: Project: /user/username/projects/myproject/dependency/tsconfig.json Version: 1 structureChanged: true structureIsReused:: Not Elapsed:: *ms -Info 17 [16:01:21.000] Project '/user/username/projects/myproject/dependency/tsconfig.json' (Configured) -Info 18 [16:01:22.000] Files (2) +Info 7 [00:01:11.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/dependency 1 undefined Config: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Wild card directory +Info 8 [00:01:12.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/dependency 1 undefined Config: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Wild card directory +Info 9 [00:01:13.000] Plugins were requested but not running in environment that supports 'require'. Nothing will be loaded +Info 10 [00:01:14.000] Starting updateGraphWorker: Project: /user/username/projects/myproject/dependency/tsconfig.json +Info 11 [00:01:15.000] FileWatcher:: Added:: WatchInfo: /a/lib/lib.d.ts 500 undefined WatchType: Closed Script info +Info 12 [00:01:16.000] 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 13 [00:01:17.000] 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 14 [00:01:18.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Type roots +Info 15 [00:01:19.000] 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 16 [00:01:20.000] Finishing updateGraphWorker: Project: /user/username/projects/myproject/dependency/tsconfig.json Version: 1 structureChanged: true structureIsReused:: Not Elapsed:: *ms +Info 17 [00:01:21.000] Project '/user/username/projects/myproject/dependency/tsconfig.json' (Configured) +Info 18 [00:01:22.000] Files (2) /a/lib/lib.d.ts /user/username/projects/myproject/dependency/FnS.ts @@ -233,16 +233,16 @@ Info 18 [16:01:22.000] Files (2) FnS.ts Matched by default include pattern '**/*' -Info 19 [16:01:23.000] ----------------------------------------------- -Info 20 [16:01:24.000] Search path: /user/username/projects/myproject/dependency -Info 21 [16:01:25.000] For info: /user/username/projects/myproject/dependency/tsconfig.json :: No config files found. -Info 22 [16:01:26.000] Project '/user/username/projects/myproject/dependency/tsconfig.json' (Configured) -Info 22 [16:01:27.000] Files (2) +Info 19 [00:01:23.000] ----------------------------------------------- +Info 20 [00:01:24.000] Search path: /user/username/projects/myproject/dependency +Info 21 [00:01:25.000] For info: /user/username/projects/myproject/dependency/tsconfig.json :: No config files found. +Info 22 [00:01:26.000] Project '/user/username/projects/myproject/dependency/tsconfig.json' (Configured) +Info 22 [00:01:27.000] Files (2) -Info 22 [16:01:28.000] ----------------------------------------------- -Info 22 [16:01:29.000] Open files: -Info 22 [16:01:30.000] FileName: /user/username/projects/myproject/dependency/FnS.ts ProjectRootPath: undefined -Info 22 [16:01:31.000] Projects: /user/username/projects/myproject/dependency/tsconfig.json +Info 22 [00:01:28.000] ----------------------------------------------- +Info 22 [00:01:29.000] Open files: +Info 22 [00:01:30.000] FileName: /user/username/projects/myproject/dependency/FnS.ts ProjectRootPath: undefined +Info 22 [00:01:31.000] Projects: /user/username/projects/myproject/dependency/tsconfig.json After request PolledWatches:: @@ -261,11 +261,11 @@ FsWatchesRecursive:: /user/username/projects/myproject/dependency: {} -Info 22 [16:01:32.000] response: +Info 22 [00:01:32.000] response: { "responseRequired": false } -Info 23 [16:01:33.000] request: +Info 23 [00:01:33.000] request: { "seq": 0, "type": "request", @@ -292,11 +292,11 @@ FsWatchesRecursive:: /user/username/projects/myproject/dependency: {} -Info 24 [16:01:34.000] Search path: /user/username/projects/myproject/random -Info 25 [16:01:35.000] For info: /user/username/projects/myproject/random/random.ts :: Config file name: /user/username/projects/myproject/random/tsconfig.json -Info 26 [16:01:36.000] Creating configuration project /user/username/projects/myproject/random/tsconfig.json -Info 27 [16:01:37.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/random/tsconfig.json 2000 undefined Project: /user/username/projects/myproject/random/tsconfig.json WatchType: Config file -Info 28 [16:01:38.000] Config: /user/username/projects/myproject/random/tsconfig.json : { +Info 24 [00:01:34.000] Search path: /user/username/projects/myproject/random +Info 25 [00:01:35.000] For info: /user/username/projects/myproject/random/random.ts :: Config file name: /user/username/projects/myproject/random/tsconfig.json +Info 26 [00:01:36.000] Creating configuration project /user/username/projects/myproject/random/tsconfig.json +Info 27 [00:01:37.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/random/tsconfig.json 2000 undefined Project: /user/username/projects/myproject/random/tsconfig.json WatchType: Config file +Info 28 [00:01:38.000] Config: /user/username/projects/myproject/random/tsconfig.json : { "rootNames": [ "/user/username/projects/myproject/random/random.ts" ], @@ -304,17 +304,17 @@ Info 28 [16:01:38.000] Config: /user/username/projects/myproject/random/tsconf "configFilePath": "/user/username/projects/myproject/random/tsconfig.json" } } -Info 29 [16:01:39.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/random 1 undefined Config: /user/username/projects/myproject/random/tsconfig.json WatchType: Wild card directory -Info 30 [16:01:40.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/random 1 undefined Config: /user/username/projects/myproject/random/tsconfig.json WatchType: Wild card directory -Info 31 [16:01:41.000] Plugins were requested but not running in environment that supports 'require'. Nothing will be loaded -Info 32 [16:01:42.000] Starting updateGraphWorker: Project: /user/username/projects/myproject/random/tsconfig.json -Info 33 [16:01:43.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/random/node_modules/@types 1 undefined Project: /user/username/projects/myproject/random/tsconfig.json WatchType: Type roots -Info 34 [16:01:44.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/random/node_modules/@types 1 undefined Project: /user/username/projects/myproject/random/tsconfig.json WatchType: Type roots -Info 35 [16:01:45.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/random/tsconfig.json WatchType: Type roots -Info 36 [16:01:46.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/random/tsconfig.json WatchType: Type roots -Info 37 [16:01:47.000] Finishing updateGraphWorker: Project: /user/username/projects/myproject/random/tsconfig.json Version: 1 structureChanged: true structureIsReused:: Not Elapsed:: *ms -Info 38 [16:01:48.000] Project '/user/username/projects/myproject/random/tsconfig.json' (Configured) -Info 39 [16:01:49.000] Files (2) +Info 29 [00:01:39.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/random 1 undefined Config: /user/username/projects/myproject/random/tsconfig.json WatchType: Wild card directory +Info 30 [00:01:40.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/random 1 undefined Config: /user/username/projects/myproject/random/tsconfig.json WatchType: Wild card directory +Info 31 [00:01:41.000] Plugins were requested but not running in environment that supports 'require'. Nothing will be loaded +Info 32 [00:01:42.000] Starting updateGraphWorker: Project: /user/username/projects/myproject/random/tsconfig.json +Info 33 [00:01:43.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/random/node_modules/@types 1 undefined Project: /user/username/projects/myproject/random/tsconfig.json WatchType: Type roots +Info 34 [00:01:44.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/random/node_modules/@types 1 undefined Project: /user/username/projects/myproject/random/tsconfig.json WatchType: Type roots +Info 35 [00:01:45.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/random/tsconfig.json WatchType: Type roots +Info 36 [00:01:46.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/random/tsconfig.json WatchType: Type roots +Info 37 [00:01:47.000] Finishing updateGraphWorker: Project: /user/username/projects/myproject/random/tsconfig.json Version: 1 structureChanged: true structureIsReused:: Not Elapsed:: *ms +Info 38 [00:01:48.000] Project '/user/username/projects/myproject/random/tsconfig.json' (Configured) +Info 39 [00:01:49.000] Files (2) /a/lib/lib.d.ts /user/username/projects/myproject/random/random.ts @@ -324,20 +324,20 @@ Info 39 [16:01:49.000] Files (2) random.ts Matched by default include pattern '**/*' -Info 40 [16:01:50.000] ----------------------------------------------- -Info 41 [16:01:51.000] Project '/user/username/projects/myproject/dependency/tsconfig.json' (Configured) -Info 41 [16:01:52.000] Files (2) +Info 40 [00:01:50.000] ----------------------------------------------- +Info 41 [00:01:51.000] Project '/user/username/projects/myproject/dependency/tsconfig.json' (Configured) +Info 41 [00:01:52.000] Files (2) -Info 41 [16:01:53.000] ----------------------------------------------- -Info 41 [16:01:54.000] Project '/user/username/projects/myproject/random/tsconfig.json' (Configured) -Info 41 [16:01:55.000] Files (2) +Info 41 [00:01:53.000] ----------------------------------------------- +Info 41 [00:01:54.000] Project '/user/username/projects/myproject/random/tsconfig.json' (Configured) +Info 41 [00:01:55.000] Files (2) -Info 41 [16:01:56.000] ----------------------------------------------- -Info 41 [16:01:57.000] Open files: -Info 41 [16:01:58.000] FileName: /user/username/projects/myproject/dependency/FnS.ts ProjectRootPath: undefined -Info 41 [16:01:59.000] Projects: /user/username/projects/myproject/dependency/tsconfig.json -Info 41 [16:02:00.000] FileName: /user/username/projects/myproject/random/random.ts ProjectRootPath: undefined -Info 41 [16:02:01.000] Projects: /user/username/projects/myproject/random/tsconfig.json +Info 41 [00:01:56.000] ----------------------------------------------- +Info 41 [00:01:57.000] Open files: +Info 41 [00:01:58.000] FileName: /user/username/projects/myproject/dependency/FnS.ts ProjectRootPath: undefined +Info 41 [00:01:59.000] Projects: /user/username/projects/myproject/dependency/tsconfig.json +Info 41 [00:02:00.000] FileName: /user/username/projects/myproject/random/random.ts ProjectRootPath: undefined +Info 41 [00:02:01.000] Projects: /user/username/projects/myproject/random/tsconfig.json After request PolledWatches:: @@ -362,11 +362,11 @@ FsWatchesRecursive:: /user/username/projects/myproject/random: {} -Info 41 [16:02:02.000] response: +Info 41 [00:02:02.000] response: { "responseRequired": false } -Info 42 [16:02:03.000] request: +Info 42 [00:02:03.000] request: { "command": "rename", "arguments": { @@ -401,8 +401,8 @@ FsWatchesRecursive:: /user/username/projects/myproject/random: {} -Info 43 [16:02:04.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/decls/FnS.d.ts 500 undefined WatchType: Closed Script info -Info 44 [16:02:05.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/decls/FnS.d.ts.map 2000 undefined WatchType: Missing source map file +Info 43 [00:02:04.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/decls/FnS.d.ts 500 undefined WatchType: Closed Script info +Info 44 [00:02:05.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/decls/FnS.d.ts.map 2000 undefined WatchType: Missing source map file After request PolledWatches:: @@ -431,7 +431,7 @@ FsWatchesRecursive:: /user/username/projects/myproject/random: {} -Info 45 [16:02:06.000] response: +Info 45 [00:02:06.000] response: { "response": { "info": { @@ -479,12 +479,12 @@ Info 45 [16:02:06.000] response: }, "responseRequired": true } -Info 46 [16:02:09.000] FileWatcher:: Triggered with /user/username/projects/myproject/decls/FnS.d.ts.map 0:: WatchInfo: /user/username/projects/myproject/decls/FnS.d.ts.map 2000 undefined WatchType: Missing source map file -Info 47 [16:02:10.000] Scheduled: /user/username/projects/myproject/dependency/tsconfig.json -Info 48 [16:02:11.000] Scheduled: *ensureProjectForOpenFiles* -Info 49 [16:02:12.000] FileWatcher:: Close:: WatchInfo: /user/username/projects/myproject/decls/FnS.d.ts.map 2000 undefined WatchType: Missing source map file -Info 50 [16:02:13.000] Elapsed:: *ms FileWatcher:: Triggered with /user/username/projects/myproject/decls/FnS.d.ts.map 0:: WatchInfo: /user/username/projects/myproject/decls/FnS.d.ts.map 2000 undefined WatchType: Missing source map file -Info 51 [16:02:14.000] request: +Info 46 [00:02:09.000] FileWatcher:: Triggered with /user/username/projects/myproject/decls/FnS.d.ts.map 0:: WatchInfo: /user/username/projects/myproject/decls/FnS.d.ts.map 2000 undefined WatchType: Missing source map file +Info 47 [00:02:10.000] Scheduled: /user/username/projects/myproject/dependency/tsconfig.json +Info 48 [00:02:11.000] Scheduled: *ensureProjectForOpenFiles* +Info 49 [00:02:12.000] FileWatcher:: Close:: WatchInfo: /user/username/projects/myproject/decls/FnS.d.ts.map 2000 undefined WatchType: Missing source map file +Info 50 [00:02:13.000] Elapsed:: *ms FileWatcher:: Triggered with /user/username/projects/myproject/decls/FnS.d.ts.map 0:: WatchInfo: /user/username/projects/myproject/decls/FnS.d.ts.map 2000 undefined WatchType: Missing source map file +Info 51 [00:02:14.000] request: { "command": "rename", "arguments": { @@ -524,9 +524,9 @@ FsWatchesRecursive:: /user/username/projects/myproject/random: {} -Info 52 [16:02:15.000] Starting updateGraphWorker: Project: /user/username/projects/myproject/dependency/tsconfig.json -Info 53 [16:02:16.000] Finishing updateGraphWorker: Project: /user/username/projects/myproject/dependency/tsconfig.json Version: 2 structureChanged: false structureIsReused:: Not Elapsed:: *ms -Info 54 [16:02:17.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/decls/FnS.d.ts.map 500 undefined WatchType: Closed Script info +Info 52 [00:02:15.000] Starting updateGraphWorker: Project: /user/username/projects/myproject/dependency/tsconfig.json +Info 53 [00:02:16.000] Finishing updateGraphWorker: Project: /user/username/projects/myproject/dependency/tsconfig.json Version: 2 structureChanged: false structureIsReused:: Not Elapsed:: *ms +Info 54 [00:02:17.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/decls/FnS.d.ts.map 500 undefined WatchType: Closed Script info After request PolledWatches:: @@ -555,7 +555,7 @@ FsWatchesRecursive:: /user/username/projects/myproject/random: {} -Info 55 [16:02:18.000] response: +Info 55 [00:02:18.000] response: { "response": { "info": { @@ -603,7 +603,7 @@ Info 55 [16:02:18.000] response: }, "responseRequired": true } -Info 56 [16:02:19.000] request: +Info 56 [00:02:19.000] request: { "command": "rename", "arguments": { @@ -670,7 +670,7 @@ FsWatchesRecursive:: /user/username/projects/myproject/random: {} -Info 57 [16:02:20.000] response: +Info 57 [00:02:20.000] response: { "response": { "info": { @@ -718,7 +718,7 @@ Info 57 [16:02:20.000] response: }, "responseRequired": true } -Info 58 [16:02:21.000] request: +Info 58 [00:02:21.000] request: { "command": "rename", "arguments": { @@ -785,7 +785,7 @@ FsWatchesRecursive:: /user/username/projects/myproject/random: {} -Info 59 [16:02:22.000] response: +Info 59 [00:02:22.000] response: { "response": { "info": { @@ -833,7 +833,7 @@ Info 59 [16:02:22.000] response: }, "responseRequired": true } -Info 60 [16:02:23.000] request: +Info 60 [00:02:23.000] request: { "command": "rename", "arguments": { @@ -900,7 +900,7 @@ FsWatchesRecursive:: /user/username/projects/myproject/random: {} -Info 61 [16:02:24.000] response: +Info 61 [00:02:24.000] response: { "response": { "info": { @@ -948,7 +948,7 @@ Info 61 [16:02:24.000] response: }, "responseRequired": true } -Info 62 [16:02:25.000] request: +Info 62 [00:02:25.000] request: { "command": "rename", "arguments": { @@ -1015,7 +1015,7 @@ FsWatchesRecursive:: /user/username/projects/myproject/random: {} -Info 63 [16:02:26.000] response: +Info 63 [00:02:26.000] response: { "response": { "info": { @@ -1063,7 +1063,7 @@ Info 63 [16:02:26.000] response: }, "responseRequired": true } -Info 64 [16:02:27.000] request: +Info 64 [00:02:27.000] request: { "seq": 0, "type": "request", @@ -1100,18 +1100,18 @@ FsWatchesRecursive:: /user/username/projects/myproject/random: {} -Info 65 [16:02:28.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/random/random.ts 500 undefined WatchType: Closed Script info -Info 66 [16:02:29.000] Project '/user/username/projects/myproject/dependency/tsconfig.json' (Configured) -Info 66 [16:02:30.000] Files (2) +Info 65 [00:02:28.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/random/random.ts 500 undefined WatchType: Closed Script info +Info 66 [00:02:29.000] Project '/user/username/projects/myproject/dependency/tsconfig.json' (Configured) +Info 66 [00:02:30.000] Files (2) -Info 66 [16:02:31.000] ----------------------------------------------- -Info 66 [16:02:32.000] Project '/user/username/projects/myproject/random/tsconfig.json' (Configured) -Info 66 [16:02:33.000] Files (2) +Info 66 [00:02:31.000] ----------------------------------------------- +Info 66 [00:02:32.000] Project '/user/username/projects/myproject/random/tsconfig.json' (Configured) +Info 66 [00:02:33.000] Files (2) -Info 66 [16:02:34.000] ----------------------------------------------- -Info 66 [16:02:35.000] Open files: -Info 66 [16:02:36.000] FileName: /user/username/projects/myproject/dependency/FnS.ts ProjectRootPath: undefined -Info 66 [16:02:37.000] Projects: /user/username/projects/myproject/dependency/tsconfig.json +Info 66 [00:02:34.000] ----------------------------------------------- +Info 66 [00:02:35.000] Open files: +Info 66 [00:02:36.000] FileName: /user/username/projects/myproject/dependency/FnS.ts ProjectRootPath: undefined +Info 66 [00:02:37.000] Projects: /user/username/projects/myproject/dependency/tsconfig.json After request PolledWatches:: @@ -1142,11 +1142,11 @@ FsWatchesRecursive:: /user/username/projects/myproject/random: {} -Info 66 [16:02:38.000] response: +Info 66 [00:02:38.000] response: { "responseRequired": false } -Info 67 [16:02:39.000] request: +Info 67 [00:02:39.000] request: { "seq": 0, "type": "request", @@ -1185,22 +1185,22 @@ FsWatchesRecursive:: /user/username/projects/myproject/random: {} -Info 68 [16:02:40.000] FileWatcher:: Close:: WatchInfo: /user/username/projects/myproject/random/random.ts 500 undefined WatchType: Closed Script info -Info 69 [16:02:41.000] Search path: /user/username/projects/myproject/random -Info 70 [16:02:42.000] For info: /user/username/projects/myproject/random/random.ts :: Config file name: /user/username/projects/myproject/random/tsconfig.json -Info 71 [16:02:43.000] Project '/user/username/projects/myproject/dependency/tsconfig.json' (Configured) -Info 71 [16:02:44.000] Files (2) +Info 68 [00:02:40.000] FileWatcher:: Close:: WatchInfo: /user/username/projects/myproject/random/random.ts 500 undefined WatchType: Closed Script info +Info 69 [00:02:41.000] Search path: /user/username/projects/myproject/random +Info 70 [00:02:42.000] For info: /user/username/projects/myproject/random/random.ts :: Config file name: /user/username/projects/myproject/random/tsconfig.json +Info 71 [00:02:43.000] Project '/user/username/projects/myproject/dependency/tsconfig.json' (Configured) +Info 71 [00:02:44.000] Files (2) -Info 71 [16:02:45.000] ----------------------------------------------- -Info 71 [16:02:46.000] Project '/user/username/projects/myproject/random/tsconfig.json' (Configured) -Info 71 [16:02:47.000] Files (2) +Info 71 [00:02:45.000] ----------------------------------------------- +Info 71 [00:02:46.000] Project '/user/username/projects/myproject/random/tsconfig.json' (Configured) +Info 71 [00:02:47.000] Files (2) -Info 71 [16:02:48.000] ----------------------------------------------- -Info 71 [16:02:49.000] Open files: -Info 71 [16:02:50.000] FileName: /user/username/projects/myproject/dependency/FnS.ts ProjectRootPath: undefined -Info 71 [16:02:51.000] Projects: /user/username/projects/myproject/dependency/tsconfig.json -Info 71 [16:02:52.000] FileName: /user/username/projects/myproject/random/random.ts ProjectRootPath: undefined -Info 71 [16:02:53.000] Projects: /user/username/projects/myproject/random/tsconfig.json +Info 71 [00:02:48.000] ----------------------------------------------- +Info 71 [00:02:49.000] Open files: +Info 71 [00:02:50.000] FileName: /user/username/projects/myproject/dependency/FnS.ts ProjectRootPath: undefined +Info 71 [00:02:51.000] Projects: /user/username/projects/myproject/dependency/tsconfig.json +Info 71 [00:02:52.000] FileName: /user/username/projects/myproject/random/random.ts ProjectRootPath: undefined +Info 71 [00:02:53.000] Projects: /user/username/projects/myproject/random/tsconfig.json After request PolledWatches:: @@ -1229,11 +1229,11 @@ FsWatchesRecursive:: /user/username/projects/myproject/random: {} -Info 71 [16:02:54.000] response: +Info 71 [00:02:54.000] response: { "responseRequired": false } -Info 72 [16:02:55.000] request: +Info 72 [00:02:55.000] request: { "seq": 0, "type": "request", @@ -1270,18 +1270,18 @@ FsWatchesRecursive:: /user/username/projects/myproject/random: {} -Info 73 [16:02:56.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/dependency/FnS.ts 500 undefined WatchType: Closed Script info -Info 74 [16:02:57.000] Project '/user/username/projects/myproject/dependency/tsconfig.json' (Configured) -Info 74 [16:02:58.000] Files (2) +Info 73 [00:02:56.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/dependency/FnS.ts 500 undefined WatchType: Closed Script info +Info 74 [00:02:57.000] Project '/user/username/projects/myproject/dependency/tsconfig.json' (Configured) +Info 74 [00:02:58.000] Files (2) -Info 74 [16:02:59.000] ----------------------------------------------- -Info 74 [16:03:00.000] Project '/user/username/projects/myproject/random/tsconfig.json' (Configured) -Info 74 [16:03:01.000] Files (2) +Info 74 [00:02:59.000] ----------------------------------------------- +Info 74 [00:03:00.000] Project '/user/username/projects/myproject/random/tsconfig.json' (Configured) +Info 74 [00:03:01.000] Files (2) -Info 74 [16:03:02.000] ----------------------------------------------- -Info 74 [16:03:03.000] Open files: -Info 74 [16:03:04.000] FileName: /user/username/projects/myproject/random/random.ts ProjectRootPath: undefined -Info 74 [16:03:05.000] Projects: /user/username/projects/myproject/random/tsconfig.json +Info 74 [00:03:02.000] ----------------------------------------------- +Info 74 [00:03:03.000] Open files: +Info 74 [00:03:04.000] FileName: /user/username/projects/myproject/random/random.ts ProjectRootPath: undefined +Info 74 [00:03:05.000] Projects: /user/username/projects/myproject/random/tsconfig.json After request PolledWatches:: @@ -1312,11 +1312,11 @@ FsWatchesRecursive:: /user/username/projects/myproject/random: {} -Info 74 [16:03:06.000] response: +Info 74 [00:03:06.000] response: { "responseRequired": false } -Info 75 [16:03:07.000] request: +Info 75 [00:03:07.000] request: { "seq": 0, "type": "request", @@ -1355,16 +1355,16 @@ FsWatchesRecursive:: /user/username/projects/myproject/random: {} -Info 76 [16:03:08.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/random/random.ts 500 undefined WatchType: Closed Script info -Info 77 [16:03:09.000] Project '/user/username/projects/myproject/dependency/tsconfig.json' (Configured) -Info 77 [16:03:10.000] Files (2) +Info 76 [00:03:08.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/random/random.ts 500 undefined WatchType: Closed Script info +Info 77 [00:03:09.000] Project '/user/username/projects/myproject/dependency/tsconfig.json' (Configured) +Info 77 [00:03:10.000] Files (2) -Info 77 [16:03:11.000] ----------------------------------------------- -Info 77 [16:03:12.000] Project '/user/username/projects/myproject/random/tsconfig.json' (Configured) -Info 77 [16:03:13.000] Files (2) +Info 77 [00:03:11.000] ----------------------------------------------- +Info 77 [00:03:12.000] Project '/user/username/projects/myproject/random/tsconfig.json' (Configured) +Info 77 [00:03:13.000] Files (2) -Info 77 [16:03:14.000] ----------------------------------------------- -Info 77 [16:03:15.000] Open files: +Info 77 [00:03:14.000] ----------------------------------------------- +Info 77 [00:03:15.000] Open files: After request PolledWatches:: @@ -1397,11 +1397,11 @@ FsWatchesRecursive:: /user/username/projects/myproject/random: {} -Info 77 [16:03:16.000] response: +Info 77 [00:03:16.000] response: { "responseRequired": false } -Info 78 [16:03:17.000] request: +Info 78 [00:03:17.000] request: { "seq": 0, "type": "request", @@ -1442,12 +1442,12 @@ FsWatchesRecursive:: /user/username/projects/myproject/random: {} -Info 79 [16:03:18.000] FileWatcher:: Close:: WatchInfo: /user/username/projects/myproject/random/random.ts 500 undefined WatchType: Closed Script info -Info 80 [16:03:19.000] Search path: /user/username/projects/myproject/random -Info 81 [16:03:20.000] For info: /user/username/projects/myproject/random/random.ts :: Config file name: /user/username/projects/myproject/random/tsconfig.json -Info 82 [16:03:21.000] `remove Project:: -Info 83 [16:03:22.000] Project '/user/username/projects/myproject/dependency/tsconfig.json' (Configured) -Info 84 [16:03:23.000] Files (2) +Info 79 [00:03:18.000] FileWatcher:: Close:: WatchInfo: /user/username/projects/myproject/random/random.ts 500 undefined WatchType: Closed Script info +Info 80 [00:03:19.000] Search path: /user/username/projects/myproject/random +Info 81 [00:03:20.000] For info: /user/username/projects/myproject/random/random.ts :: Config file name: /user/username/projects/myproject/random/tsconfig.json +Info 82 [00:03:21.000] `remove Project:: +Info 83 [00:03:22.000] Project '/user/username/projects/myproject/dependency/tsconfig.json' (Configured) +Info 84 [00:03:23.000] Files (2) /a/lib/lib.d.ts /user/username/projects/myproject/dependency/FnS.ts @@ -1457,24 +1457,24 @@ Info 84 [16:03:23.000] Files (2) FnS.ts Matched by default include pattern '**/*' -Info 85 [16:03:24.000] ----------------------------------------------- -Info 86 [16:03:25.000] DirectoryWatcher:: Close:: WatchInfo: /user/username/projects/myproject/dependency 1 undefined Config: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Wild card directory -Info 87 [16:03:26.000] 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 88 [16:03:27.000] FileWatcher:: Close:: WatchInfo: /user/username/projects/myproject/dependency/tsconfig.json 2000 undefined Project: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Config file -Info 89 [16:03:28.000] 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 90 [16:03:29.000] 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 91 [16:03:30.000] DirectoryWatcher:: Close:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Type roots -Info 92 [16:03:31.000] 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 93 [16:03:32.000] FileWatcher:: Close:: WatchInfo: /user/username/projects/myproject/dependency/FnS.ts 500 undefined WatchType: Closed Script info -Info 94 [16:03:33.000] FileWatcher:: Close:: WatchInfo: /user/username/projects/myproject/decls/FnS.d.ts 500 undefined WatchType: Closed Script info -Info 95 [16:03:34.000] FileWatcher:: Close:: WatchInfo: /user/username/projects/myproject/decls/FnS.d.ts.map 500 undefined WatchType: Closed Script info -Info 96 [16:03:35.000] Project '/user/username/projects/myproject/random/tsconfig.json' (Configured) -Info 96 [16:03:36.000] Files (2) - -Info 96 [16:03:37.000] ----------------------------------------------- -Info 96 [16:03:38.000] Open files: -Info 96 [16:03:39.000] FileName: /user/username/projects/myproject/random/random.ts ProjectRootPath: undefined -Info 96 [16:03:40.000] Projects: /user/username/projects/myproject/random/tsconfig.json +Info 85 [00:03:24.000] ----------------------------------------------- +Info 86 [00:03:25.000] DirectoryWatcher:: Close:: WatchInfo: /user/username/projects/myproject/dependency 1 undefined Config: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Wild card directory +Info 87 [00:03:26.000] 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 88 [00:03:27.000] FileWatcher:: Close:: WatchInfo: /user/username/projects/myproject/dependency/tsconfig.json 2000 undefined Project: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Config file +Info 89 [00:03:28.000] 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 90 [00:03:29.000] 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 91 [00:03:30.000] DirectoryWatcher:: Close:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Type roots +Info 92 [00:03:31.000] 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 93 [00:03:32.000] FileWatcher:: Close:: WatchInfo: /user/username/projects/myproject/dependency/FnS.ts 500 undefined WatchType: Closed Script info +Info 94 [00:03:33.000] FileWatcher:: Close:: WatchInfo: /user/username/projects/myproject/decls/FnS.d.ts 500 undefined WatchType: Closed Script info +Info 95 [00:03:34.000] FileWatcher:: Close:: WatchInfo: /user/username/projects/myproject/decls/FnS.d.ts.map 500 undefined WatchType: Closed Script info +Info 96 [00:03:35.000] Project '/user/username/projects/myproject/random/tsconfig.json' (Configured) +Info 96 [00:03:36.000] Files (2) + +Info 96 [00:03:37.000] ----------------------------------------------- +Info 96 [00:03:38.000] Open files: +Info 96 [00:03:39.000] FileName: /user/username/projects/myproject/random/random.ts ProjectRootPath: undefined +Info 96 [00:03:40.000] Projects: /user/username/projects/myproject/random/tsconfig.json After request PolledWatches:: @@ -1493,7 +1493,7 @@ FsWatchesRecursive:: /user/username/projects/myproject/random: {} -Info 96 [16:03:41.000] response: +Info 96 [00:03:41.000] response: { "responseRequired": false } \ No newline at end of file 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 8c83f435aa069..91a7cac3b4a63 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 @@ -1,5 +1,5 @@ -Info 0 [16:01:03.000] Provided types map file "/a/lib/typesMap.json" doesn't exist -Info 1 [16:01:04.000] request: +Info 0 [00:01:03.000] Provided types map file "/a/lib/typesMap.json" doesn't exist +Info 1 [00:01:04.000] request: { "seq": 0, "type": "request", @@ -200,11 +200,11 @@ FsWatches:: FsWatchesRecursive:: -Info 2 [16:01:05.000] Search path: /user/username/projects/myproject/dependency -Info 3 [16:01:06.000] For info: /user/username/projects/myproject/dependency/FnS.ts :: Config file name: /user/username/projects/myproject/dependency/tsconfig.json -Info 4 [16:01:07.000] Creating configuration project /user/username/projects/myproject/dependency/tsconfig.json -Info 5 [16:01:08.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/dependency/tsconfig.json 2000 undefined Project: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Config file -Info 6 [16:01:09.000] Config: /user/username/projects/myproject/dependency/tsconfig.json : { +Info 2 [00:01:05.000] Search path: /user/username/projects/myproject/dependency +Info 3 [00:01:06.000] For info: /user/username/projects/myproject/dependency/FnS.ts :: Config file name: /user/username/projects/myproject/dependency/tsconfig.json +Info 4 [00:01:07.000] Creating configuration project /user/username/projects/myproject/dependency/tsconfig.json +Info 5 [00:01:08.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/dependency/tsconfig.json 2000 undefined Project: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Config file +Info 6 [00:01:09.000] Config: /user/username/projects/myproject/dependency/tsconfig.json : { "rootNames": [ "/user/username/projects/myproject/dependency/FnS.ts" ], @@ -215,18 +215,18 @@ Info 6 [16:01:09.000] Config: /user/username/projects/myproject/dependency/ts "configFilePath": "/user/username/projects/myproject/dependency/tsconfig.json" } } -Info 7 [16:01:10.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/dependency 1 undefined Config: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Wild card directory -Info 8 [16:01:11.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/dependency 1 undefined Config: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Wild card directory -Info 9 [16:01:12.000] Plugins were requested but not running in environment that supports 'require'. Nothing will be loaded -Info 10 [16:01:13.000] Starting updateGraphWorker: Project: /user/username/projects/myproject/dependency/tsconfig.json -Info 11 [16:01:14.000] FileWatcher:: Added:: WatchInfo: /a/lib/lib.d.ts 500 undefined WatchType: Closed Script info -Info 12 [16:01:15.000] 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 13 [16:01:16.000] 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 14 [16:01:17.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Type roots -Info 15 [16:01:18.000] 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 16 [16:01:19.000] Finishing updateGraphWorker: Project: /user/username/projects/myproject/dependency/tsconfig.json Version: 1 structureChanged: true structureIsReused:: Not Elapsed:: *ms -Info 17 [16:01:20.000] Project '/user/username/projects/myproject/dependency/tsconfig.json' (Configured) -Info 18 [16:01:21.000] Files (2) +Info 7 [00:01:10.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/dependency 1 undefined Config: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Wild card directory +Info 8 [00:01:11.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/dependency 1 undefined Config: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Wild card directory +Info 9 [00:01:12.000] Plugins were requested but not running in environment that supports 'require'. Nothing will be loaded +Info 10 [00:01:13.000] Starting updateGraphWorker: Project: /user/username/projects/myproject/dependency/tsconfig.json +Info 11 [00:01:14.000] FileWatcher:: Added:: WatchInfo: /a/lib/lib.d.ts 500 undefined WatchType: Closed Script info +Info 12 [00:01:15.000] 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 13 [00:01:16.000] 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 14 [00:01:17.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Type roots +Info 15 [00:01:18.000] 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 16 [00:01:19.000] Finishing updateGraphWorker: Project: /user/username/projects/myproject/dependency/tsconfig.json Version: 1 structureChanged: true structureIsReused:: Not Elapsed:: *ms +Info 17 [00:01:20.000] Project '/user/username/projects/myproject/dependency/tsconfig.json' (Configured) +Info 18 [00:01:21.000] Files (2) /a/lib/lib.d.ts /user/username/projects/myproject/dependency/FnS.ts @@ -236,16 +236,16 @@ Info 18 [16:01:21.000] Files (2) FnS.ts Matched by default include pattern '**/*' -Info 19 [16:01:22.000] ----------------------------------------------- -Info 20 [16:01:23.000] Search path: /user/username/projects/myproject/dependency -Info 21 [16:01:24.000] For info: /user/username/projects/myproject/dependency/tsconfig.json :: No config files found. -Info 22 [16:01:25.000] Project '/user/username/projects/myproject/dependency/tsconfig.json' (Configured) -Info 22 [16:01:26.000] Files (2) +Info 19 [00:01:22.000] ----------------------------------------------- +Info 20 [00:01:23.000] Search path: /user/username/projects/myproject/dependency +Info 21 [00:01:24.000] For info: /user/username/projects/myproject/dependency/tsconfig.json :: No config files found. +Info 22 [00:01:25.000] Project '/user/username/projects/myproject/dependency/tsconfig.json' (Configured) +Info 22 [00:01:26.000] Files (2) -Info 22 [16:01:27.000] ----------------------------------------------- -Info 22 [16:01:28.000] Open files: -Info 22 [16:01:29.000] FileName: /user/username/projects/myproject/dependency/FnS.ts ProjectRootPath: undefined -Info 22 [16:01:30.000] Projects: /user/username/projects/myproject/dependency/tsconfig.json +Info 22 [00:01:27.000] ----------------------------------------------- +Info 22 [00:01:28.000] Open files: +Info 22 [00:01:29.000] FileName: /user/username/projects/myproject/dependency/FnS.ts ProjectRootPath: undefined +Info 22 [00:01:30.000] Projects: /user/username/projects/myproject/dependency/tsconfig.json After request PolledWatches:: @@ -264,11 +264,11 @@ FsWatchesRecursive:: /user/username/projects/myproject/dependency: {} -Info 22 [16:01:31.000] response: +Info 22 [00:01:31.000] response: { "responseRequired": false } -Info 23 [16:01:32.000] request: +Info 23 [00:01:32.000] request: { "seq": 0, "type": "request", @@ -295,11 +295,11 @@ FsWatchesRecursive:: /user/username/projects/myproject/dependency: {} -Info 24 [16:01:33.000] Search path: /user/username/projects/myproject/random -Info 25 [16:01:34.000] For info: /user/username/projects/myproject/random/random.ts :: Config file name: /user/username/projects/myproject/random/tsconfig.json -Info 26 [16:01:35.000] Creating configuration project /user/username/projects/myproject/random/tsconfig.json -Info 27 [16:01:36.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/random/tsconfig.json 2000 undefined Project: /user/username/projects/myproject/random/tsconfig.json WatchType: Config file -Info 28 [16:01:37.000] Config: /user/username/projects/myproject/random/tsconfig.json : { +Info 24 [00:01:33.000] Search path: /user/username/projects/myproject/random +Info 25 [00:01:34.000] For info: /user/username/projects/myproject/random/random.ts :: Config file name: /user/username/projects/myproject/random/tsconfig.json +Info 26 [00:01:35.000] Creating configuration project /user/username/projects/myproject/random/tsconfig.json +Info 27 [00:01:36.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/random/tsconfig.json 2000 undefined Project: /user/username/projects/myproject/random/tsconfig.json WatchType: Config file +Info 28 [00:01:37.000] Config: /user/username/projects/myproject/random/tsconfig.json : { "rootNames": [ "/user/username/projects/myproject/random/random.ts" ], @@ -307,17 +307,17 @@ Info 28 [16:01:37.000] Config: /user/username/projects/myproject/random/tsconf "configFilePath": "/user/username/projects/myproject/random/tsconfig.json" } } -Info 29 [16:01:38.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/random 1 undefined Config: /user/username/projects/myproject/random/tsconfig.json WatchType: Wild card directory -Info 30 [16:01:39.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/random 1 undefined Config: /user/username/projects/myproject/random/tsconfig.json WatchType: Wild card directory -Info 31 [16:01:40.000] Plugins were requested but not running in environment that supports 'require'. Nothing will be loaded -Info 32 [16:01:41.000] Starting updateGraphWorker: Project: /user/username/projects/myproject/random/tsconfig.json -Info 33 [16:01:42.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/random/node_modules/@types 1 undefined Project: /user/username/projects/myproject/random/tsconfig.json WatchType: Type roots -Info 34 [16:01:43.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/random/node_modules/@types 1 undefined Project: /user/username/projects/myproject/random/tsconfig.json WatchType: Type roots -Info 35 [16:01:44.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/random/tsconfig.json WatchType: Type roots -Info 36 [16:01:45.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/random/tsconfig.json WatchType: Type roots -Info 37 [16:01:46.000] Finishing updateGraphWorker: Project: /user/username/projects/myproject/random/tsconfig.json Version: 1 structureChanged: true structureIsReused:: Not Elapsed:: *ms -Info 38 [16:01:47.000] Project '/user/username/projects/myproject/random/tsconfig.json' (Configured) -Info 39 [16:01:48.000] Files (2) +Info 29 [00:01:38.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/random 1 undefined Config: /user/username/projects/myproject/random/tsconfig.json WatchType: Wild card directory +Info 30 [00:01:39.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/random 1 undefined Config: /user/username/projects/myproject/random/tsconfig.json WatchType: Wild card directory +Info 31 [00:01:40.000] Plugins were requested but not running in environment that supports 'require'. Nothing will be loaded +Info 32 [00:01:41.000] Starting updateGraphWorker: Project: /user/username/projects/myproject/random/tsconfig.json +Info 33 [00:01:42.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/random/node_modules/@types 1 undefined Project: /user/username/projects/myproject/random/tsconfig.json WatchType: Type roots +Info 34 [00:01:43.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/random/node_modules/@types 1 undefined Project: /user/username/projects/myproject/random/tsconfig.json WatchType: Type roots +Info 35 [00:01:44.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/random/tsconfig.json WatchType: Type roots +Info 36 [00:01:45.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/random/tsconfig.json WatchType: Type roots +Info 37 [00:01:46.000] Finishing updateGraphWorker: Project: /user/username/projects/myproject/random/tsconfig.json Version: 1 structureChanged: true structureIsReused:: Not Elapsed:: *ms +Info 38 [00:01:47.000] Project '/user/username/projects/myproject/random/tsconfig.json' (Configured) +Info 39 [00:01:48.000] Files (2) /a/lib/lib.d.ts /user/username/projects/myproject/random/random.ts @@ -327,20 +327,20 @@ Info 39 [16:01:48.000] Files (2) random.ts Matched by default include pattern '**/*' -Info 40 [16:01:49.000] ----------------------------------------------- -Info 41 [16:01:50.000] Project '/user/username/projects/myproject/dependency/tsconfig.json' (Configured) -Info 41 [16:01:51.000] Files (2) +Info 40 [00:01:49.000] ----------------------------------------------- +Info 41 [00:01:50.000] Project '/user/username/projects/myproject/dependency/tsconfig.json' (Configured) +Info 41 [00:01:51.000] Files (2) -Info 41 [16:01:52.000] ----------------------------------------------- -Info 41 [16:01:53.000] Project '/user/username/projects/myproject/random/tsconfig.json' (Configured) -Info 41 [16:01:54.000] Files (2) +Info 41 [00:01:52.000] ----------------------------------------------- +Info 41 [00:01:53.000] Project '/user/username/projects/myproject/random/tsconfig.json' (Configured) +Info 41 [00:01:54.000] Files (2) -Info 41 [16:01:55.000] ----------------------------------------------- -Info 41 [16:01:56.000] Open files: -Info 41 [16:01:57.000] FileName: /user/username/projects/myproject/dependency/FnS.ts ProjectRootPath: undefined -Info 41 [16:01:58.000] Projects: /user/username/projects/myproject/dependency/tsconfig.json -Info 41 [16:01:59.000] FileName: /user/username/projects/myproject/random/random.ts ProjectRootPath: undefined -Info 41 [16:02:00.000] Projects: /user/username/projects/myproject/random/tsconfig.json +Info 41 [00:01:55.000] ----------------------------------------------- +Info 41 [00:01:56.000] Open files: +Info 41 [00:01:57.000] FileName: /user/username/projects/myproject/dependency/FnS.ts ProjectRootPath: undefined +Info 41 [00:01:58.000] Projects: /user/username/projects/myproject/dependency/tsconfig.json +Info 41 [00:01:59.000] FileName: /user/username/projects/myproject/random/random.ts ProjectRootPath: undefined +Info 41 [00:02:00.000] Projects: /user/username/projects/myproject/random/tsconfig.json After request PolledWatches:: @@ -365,11 +365,11 @@ FsWatchesRecursive:: /user/username/projects/myproject/random: {} -Info 41 [16:02:01.000] response: +Info 41 [00:02:01.000] response: { "responseRequired": false } -Info 42 [16:02:02.000] request: +Info 42 [00:02:02.000] request: { "command": "rename", "arguments": { @@ -404,8 +404,8 @@ FsWatchesRecursive:: /user/username/projects/myproject/random: {} -Info 43 [16:02:03.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/decls/FnS.d.ts 500 undefined WatchType: Closed Script info -Info 44 [16:02:04.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/decls/FnS.d.ts.map 500 undefined WatchType: Closed Script info +Info 43 [00:02:03.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/decls/FnS.d.ts 500 undefined WatchType: Closed Script info +Info 44 [00:02:04.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/decls/FnS.d.ts.map 500 undefined WatchType: Closed Script info After request PolledWatches:: @@ -434,7 +434,7 @@ FsWatchesRecursive:: /user/username/projects/myproject/random: {} -Info 45 [16:02:05.000] response: +Info 45 [00:02:05.000] response: { "response": { "info": { @@ -482,12 +482,12 @@ Info 45 [16:02:05.000] response: }, "responseRequired": true } -Info 46 [16:02:07.000] FileWatcher:: Triggered with /user/username/projects/myproject/decls/FnS.d.ts.map 2:: WatchInfo: /user/username/projects/myproject/decls/FnS.d.ts.map 500 undefined WatchType: Closed Script info -Info 47 [16:02:08.000] FileWatcher:: Close:: WatchInfo: /user/username/projects/myproject/decls/FnS.d.ts.map 500 undefined WatchType: Closed Script info -Info 48 [16:02:09.000] Scheduled: /user/username/projects/myproject/dependency/tsconfig.json -Info 49 [16:02:10.000] Scheduled: *ensureProjectForOpenFiles* -Info 50 [16:02:11.000] Elapsed:: *ms FileWatcher:: Triggered with /user/username/projects/myproject/decls/FnS.d.ts.map 2:: WatchInfo: /user/username/projects/myproject/decls/FnS.d.ts.map 500 undefined WatchType: Closed Script info -Info 51 [16:02:12.000] request: +Info 46 [00:02:07.000] FileWatcher:: Triggered with /user/username/projects/myproject/decls/FnS.d.ts.map 2:: WatchInfo: /user/username/projects/myproject/decls/FnS.d.ts.map 500 undefined WatchType: Closed Script info +Info 47 [00:02:08.000] FileWatcher:: Close:: WatchInfo: /user/username/projects/myproject/decls/FnS.d.ts.map 500 undefined WatchType: Closed Script info +Info 48 [00:02:09.000] Scheduled: /user/username/projects/myproject/dependency/tsconfig.json +Info 49 [00:02:10.000] Scheduled: *ensureProjectForOpenFiles* +Info 50 [00:02:11.000] Elapsed:: *ms FileWatcher:: Triggered with /user/username/projects/myproject/decls/FnS.d.ts.map 2:: WatchInfo: /user/username/projects/myproject/decls/FnS.d.ts.map 500 undefined WatchType: Closed Script info +Info 51 [00:02:12.000] request: { "command": "rename", "arguments": { @@ -525,9 +525,9 @@ FsWatchesRecursive:: /user/username/projects/myproject/random: {} -Info 52 [16:02:13.000] Starting updateGraphWorker: Project: /user/username/projects/myproject/dependency/tsconfig.json -Info 53 [16:02:14.000] Finishing updateGraphWorker: Project: /user/username/projects/myproject/dependency/tsconfig.json Version: 2 structureChanged: false structureIsReused:: Not Elapsed:: *ms -Info 54 [16:02:15.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/decls/FnS.d.ts.map 2000 undefined WatchType: Missing source map file +Info 52 [00:02:13.000] Starting updateGraphWorker: Project: /user/username/projects/myproject/dependency/tsconfig.json +Info 53 [00:02:14.000] Finishing updateGraphWorker: Project: /user/username/projects/myproject/dependency/tsconfig.json Version: 2 structureChanged: false structureIsReused:: Not Elapsed:: *ms +Info 54 [00:02:15.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/decls/FnS.d.ts.map 2000 undefined WatchType: Missing source map file After request PolledWatches:: @@ -556,7 +556,7 @@ FsWatchesRecursive:: /user/username/projects/myproject/random: {} -Info 55 [16:02:16.000] response: +Info 55 [00:02:16.000] response: { "response": { "info": { @@ -604,7 +604,7 @@ Info 55 [16:02:16.000] response: }, "responseRequired": true } -Info 56 [16:02:17.000] request: +Info 56 [00:02:17.000] request: { "command": "rename", "arguments": { @@ -671,7 +671,7 @@ FsWatchesRecursive:: /user/username/projects/myproject/random: {} -Info 57 [16:02:18.000] response: +Info 57 [00:02:18.000] response: { "response": { "info": { @@ -719,7 +719,7 @@ Info 57 [16:02:18.000] response: }, "responseRequired": true } -Info 58 [16:02:19.000] request: +Info 58 [00:02:19.000] request: { "command": "rename", "arguments": { @@ -786,7 +786,7 @@ FsWatchesRecursive:: /user/username/projects/myproject/random: {} -Info 59 [16:02:20.000] response: +Info 59 [00:02:20.000] response: { "response": { "info": { @@ -834,7 +834,7 @@ Info 59 [16:02:20.000] response: }, "responseRequired": true } -Info 60 [16:02:21.000] request: +Info 60 [00:02:21.000] request: { "command": "rename", "arguments": { @@ -901,7 +901,7 @@ FsWatchesRecursive:: /user/username/projects/myproject/random: {} -Info 61 [16:02:22.000] response: +Info 61 [00:02:22.000] response: { "response": { "info": { @@ -949,7 +949,7 @@ Info 61 [16:02:22.000] response: }, "responseRequired": true } -Info 62 [16:02:23.000] request: +Info 62 [00:02:23.000] request: { "command": "rename", "arguments": { @@ -1016,7 +1016,7 @@ FsWatchesRecursive:: /user/username/projects/myproject/random: {} -Info 63 [16:02:24.000] response: +Info 63 [00:02:24.000] response: { "response": { "info": { @@ -1064,7 +1064,7 @@ Info 63 [16:02:24.000] response: }, "responseRequired": true } -Info 64 [16:02:25.000] request: +Info 64 [00:02:25.000] request: { "seq": 0, "type": "request", @@ -1101,18 +1101,18 @@ FsWatchesRecursive:: /user/username/projects/myproject/random: {} -Info 65 [16:02:26.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/random/random.ts 500 undefined WatchType: Closed Script info -Info 66 [16:02:27.000] Project '/user/username/projects/myproject/dependency/tsconfig.json' (Configured) -Info 66 [16:02:28.000] Files (2) +Info 65 [00:02:26.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/random/random.ts 500 undefined WatchType: Closed Script info +Info 66 [00:02:27.000] Project '/user/username/projects/myproject/dependency/tsconfig.json' (Configured) +Info 66 [00:02:28.000] Files (2) -Info 66 [16:02:29.000] ----------------------------------------------- -Info 66 [16:02:30.000] Project '/user/username/projects/myproject/random/tsconfig.json' (Configured) -Info 66 [16:02:31.000] Files (2) +Info 66 [00:02:29.000] ----------------------------------------------- +Info 66 [00:02:30.000] Project '/user/username/projects/myproject/random/tsconfig.json' (Configured) +Info 66 [00:02:31.000] Files (2) -Info 66 [16:02:32.000] ----------------------------------------------- -Info 66 [16:02:33.000] Open files: -Info 66 [16:02:34.000] FileName: /user/username/projects/myproject/dependency/FnS.ts ProjectRootPath: undefined -Info 66 [16:02:35.000] Projects: /user/username/projects/myproject/dependency/tsconfig.json +Info 66 [00:02:32.000] ----------------------------------------------- +Info 66 [00:02:33.000] Open files: +Info 66 [00:02:34.000] FileName: /user/username/projects/myproject/dependency/FnS.ts ProjectRootPath: undefined +Info 66 [00:02:35.000] Projects: /user/username/projects/myproject/dependency/tsconfig.json After request PolledWatches:: @@ -1143,11 +1143,11 @@ FsWatchesRecursive:: /user/username/projects/myproject/random: {} -Info 66 [16:02:36.000] response: +Info 66 [00:02:36.000] response: { "responseRequired": false } -Info 67 [16:02:37.000] request: +Info 67 [00:02:37.000] request: { "seq": 0, "type": "request", @@ -1186,22 +1186,22 @@ FsWatchesRecursive:: /user/username/projects/myproject/random: {} -Info 68 [16:02:38.000] FileWatcher:: Close:: WatchInfo: /user/username/projects/myproject/random/random.ts 500 undefined WatchType: Closed Script info -Info 69 [16:02:39.000] Search path: /user/username/projects/myproject/random -Info 70 [16:02:40.000] For info: /user/username/projects/myproject/random/random.ts :: Config file name: /user/username/projects/myproject/random/tsconfig.json -Info 71 [16:02:41.000] Project '/user/username/projects/myproject/dependency/tsconfig.json' (Configured) -Info 71 [16:02:42.000] Files (2) +Info 68 [00:02:38.000] FileWatcher:: Close:: WatchInfo: /user/username/projects/myproject/random/random.ts 500 undefined WatchType: Closed Script info +Info 69 [00:02:39.000] Search path: /user/username/projects/myproject/random +Info 70 [00:02:40.000] For info: /user/username/projects/myproject/random/random.ts :: Config file name: /user/username/projects/myproject/random/tsconfig.json +Info 71 [00:02:41.000] Project '/user/username/projects/myproject/dependency/tsconfig.json' (Configured) +Info 71 [00:02:42.000] Files (2) -Info 71 [16:02:43.000] ----------------------------------------------- -Info 71 [16:02:44.000] Project '/user/username/projects/myproject/random/tsconfig.json' (Configured) -Info 71 [16:02:45.000] Files (2) +Info 71 [00:02:43.000] ----------------------------------------------- +Info 71 [00:02:44.000] Project '/user/username/projects/myproject/random/tsconfig.json' (Configured) +Info 71 [00:02:45.000] Files (2) -Info 71 [16:02:46.000] ----------------------------------------------- -Info 71 [16:02:47.000] Open files: -Info 71 [16:02:48.000] FileName: /user/username/projects/myproject/dependency/FnS.ts ProjectRootPath: undefined -Info 71 [16:02:49.000] Projects: /user/username/projects/myproject/dependency/tsconfig.json -Info 71 [16:02:50.000] FileName: /user/username/projects/myproject/random/random.ts ProjectRootPath: undefined -Info 71 [16:02:51.000] Projects: /user/username/projects/myproject/random/tsconfig.json +Info 71 [00:02:46.000] ----------------------------------------------- +Info 71 [00:02:47.000] Open files: +Info 71 [00:02:48.000] FileName: /user/username/projects/myproject/dependency/FnS.ts ProjectRootPath: undefined +Info 71 [00:02:49.000] Projects: /user/username/projects/myproject/dependency/tsconfig.json +Info 71 [00:02:50.000] FileName: /user/username/projects/myproject/random/random.ts ProjectRootPath: undefined +Info 71 [00:02:51.000] Projects: /user/username/projects/myproject/random/tsconfig.json After request PolledWatches:: @@ -1230,11 +1230,11 @@ FsWatchesRecursive:: /user/username/projects/myproject/random: {} -Info 71 [16:02:52.000] response: +Info 71 [00:02:52.000] response: { "responseRequired": false } -Info 72 [16:02:53.000] request: +Info 72 [00:02:53.000] request: { "seq": 0, "type": "request", @@ -1271,18 +1271,18 @@ FsWatchesRecursive:: /user/username/projects/myproject/random: {} -Info 73 [16:02:54.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/dependency/FnS.ts 500 undefined WatchType: Closed Script info -Info 74 [16:02:55.000] Project '/user/username/projects/myproject/dependency/tsconfig.json' (Configured) -Info 74 [16:02:56.000] Files (2) +Info 73 [00:02:54.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/dependency/FnS.ts 500 undefined WatchType: Closed Script info +Info 74 [00:02:55.000] Project '/user/username/projects/myproject/dependency/tsconfig.json' (Configured) +Info 74 [00:02:56.000] Files (2) -Info 74 [16:02:57.000] ----------------------------------------------- -Info 74 [16:02:58.000] Project '/user/username/projects/myproject/random/tsconfig.json' (Configured) -Info 74 [16:02:59.000] Files (2) +Info 74 [00:02:57.000] ----------------------------------------------- +Info 74 [00:02:58.000] Project '/user/username/projects/myproject/random/tsconfig.json' (Configured) +Info 74 [00:02:59.000] Files (2) -Info 74 [16:03:00.000] ----------------------------------------------- -Info 74 [16:03:01.000] Open files: -Info 74 [16:03:02.000] FileName: /user/username/projects/myproject/random/random.ts ProjectRootPath: undefined -Info 74 [16:03:03.000] Projects: /user/username/projects/myproject/random/tsconfig.json +Info 74 [00:03:00.000] ----------------------------------------------- +Info 74 [00:03:01.000] Open files: +Info 74 [00:03:02.000] FileName: /user/username/projects/myproject/random/random.ts ProjectRootPath: undefined +Info 74 [00:03:03.000] Projects: /user/username/projects/myproject/random/tsconfig.json After request PolledWatches:: @@ -1313,11 +1313,11 @@ FsWatchesRecursive:: /user/username/projects/myproject/random: {} -Info 74 [16:03:04.000] response: +Info 74 [00:03:04.000] response: { "responseRequired": false } -Info 75 [16:03:05.000] request: +Info 75 [00:03:05.000] request: { "seq": 0, "type": "request", @@ -1356,16 +1356,16 @@ FsWatchesRecursive:: /user/username/projects/myproject/random: {} -Info 76 [16:03:06.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/random/random.ts 500 undefined WatchType: Closed Script info -Info 77 [16:03:07.000] Project '/user/username/projects/myproject/dependency/tsconfig.json' (Configured) -Info 77 [16:03:08.000] Files (2) +Info 76 [00:03:06.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/random/random.ts 500 undefined WatchType: Closed Script info +Info 77 [00:03:07.000] Project '/user/username/projects/myproject/dependency/tsconfig.json' (Configured) +Info 77 [00:03:08.000] Files (2) -Info 77 [16:03:09.000] ----------------------------------------------- -Info 77 [16:03:10.000] Project '/user/username/projects/myproject/random/tsconfig.json' (Configured) -Info 77 [16:03:11.000] Files (2) +Info 77 [00:03:09.000] ----------------------------------------------- +Info 77 [00:03:10.000] Project '/user/username/projects/myproject/random/tsconfig.json' (Configured) +Info 77 [00:03:11.000] Files (2) -Info 77 [16:03:12.000] ----------------------------------------------- -Info 77 [16:03:13.000] Open files: +Info 77 [00:03:12.000] ----------------------------------------------- +Info 77 [00:03:13.000] Open files: After request PolledWatches:: @@ -1398,11 +1398,11 @@ FsWatchesRecursive:: /user/username/projects/myproject/random: {} -Info 77 [16:03:14.000] response: +Info 77 [00:03:14.000] response: { "responseRequired": false } -Info 78 [16:03:15.000] request: +Info 78 [00:03:15.000] request: { "seq": 0, "type": "request", @@ -1443,12 +1443,12 @@ FsWatchesRecursive:: /user/username/projects/myproject/random: {} -Info 79 [16:03:16.000] FileWatcher:: Close:: WatchInfo: /user/username/projects/myproject/random/random.ts 500 undefined WatchType: Closed Script info -Info 80 [16:03:17.000] Search path: /user/username/projects/myproject/random -Info 81 [16:03:18.000] For info: /user/username/projects/myproject/random/random.ts :: Config file name: /user/username/projects/myproject/random/tsconfig.json -Info 82 [16:03:19.000] `remove Project:: -Info 83 [16:03:20.000] Project '/user/username/projects/myproject/dependency/tsconfig.json' (Configured) -Info 84 [16:03:21.000] Files (2) +Info 79 [00:03:16.000] FileWatcher:: Close:: WatchInfo: /user/username/projects/myproject/random/random.ts 500 undefined WatchType: Closed Script info +Info 80 [00:03:17.000] Search path: /user/username/projects/myproject/random +Info 81 [00:03:18.000] For info: /user/username/projects/myproject/random/random.ts :: Config file name: /user/username/projects/myproject/random/tsconfig.json +Info 82 [00:03:19.000] `remove Project:: +Info 83 [00:03:20.000] Project '/user/username/projects/myproject/dependency/tsconfig.json' (Configured) +Info 84 [00:03:21.000] Files (2) /a/lib/lib.d.ts /user/username/projects/myproject/dependency/FnS.ts @@ -1458,24 +1458,24 @@ Info 84 [16:03:21.000] Files (2) FnS.ts Matched by default include pattern '**/*' -Info 85 [16:03:22.000] ----------------------------------------------- -Info 86 [16:03:23.000] DirectoryWatcher:: Close:: WatchInfo: /user/username/projects/myproject/dependency 1 undefined Config: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Wild card directory -Info 87 [16:03:24.000] 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 88 [16:03:25.000] FileWatcher:: Close:: WatchInfo: /user/username/projects/myproject/dependency/tsconfig.json 2000 undefined Project: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Config file -Info 89 [16:03:26.000] 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 90 [16:03:27.000] 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 91 [16:03:28.000] DirectoryWatcher:: Close:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Type roots -Info 92 [16:03:29.000] 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 93 [16:03:30.000] FileWatcher:: Close:: WatchInfo: /user/username/projects/myproject/dependency/FnS.ts 500 undefined WatchType: Closed Script info -Info 94 [16:03:31.000] FileWatcher:: Close:: WatchInfo: /user/username/projects/myproject/decls/FnS.d.ts 500 undefined WatchType: Closed Script info -Info 95 [16:03:32.000] FileWatcher:: Close:: WatchInfo: /user/username/projects/myproject/decls/FnS.d.ts.map 2000 undefined WatchType: Missing source map file -Info 96 [16:03:33.000] Project '/user/username/projects/myproject/random/tsconfig.json' (Configured) -Info 96 [16:03:34.000] Files (2) - -Info 96 [16:03:35.000] ----------------------------------------------- -Info 96 [16:03:36.000] Open files: -Info 96 [16:03:37.000] FileName: /user/username/projects/myproject/random/random.ts ProjectRootPath: undefined -Info 96 [16:03:38.000] Projects: /user/username/projects/myproject/random/tsconfig.json +Info 85 [00:03:22.000] ----------------------------------------------- +Info 86 [00:03:23.000] DirectoryWatcher:: Close:: WatchInfo: /user/username/projects/myproject/dependency 1 undefined Config: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Wild card directory +Info 87 [00:03:24.000] 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 88 [00:03:25.000] FileWatcher:: Close:: WatchInfo: /user/username/projects/myproject/dependency/tsconfig.json 2000 undefined Project: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Config file +Info 89 [00:03:26.000] 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 90 [00:03:27.000] 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 91 [00:03:28.000] DirectoryWatcher:: Close:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Type roots +Info 92 [00:03:29.000] 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 93 [00:03:30.000] FileWatcher:: Close:: WatchInfo: /user/username/projects/myproject/dependency/FnS.ts 500 undefined WatchType: Closed Script info +Info 94 [00:03:31.000] FileWatcher:: Close:: WatchInfo: /user/username/projects/myproject/decls/FnS.d.ts 500 undefined WatchType: Closed Script info +Info 95 [00:03:32.000] FileWatcher:: Close:: WatchInfo: /user/username/projects/myproject/decls/FnS.d.ts.map 2000 undefined WatchType: Missing source map file +Info 96 [00:03:33.000] Project '/user/username/projects/myproject/random/tsconfig.json' (Configured) +Info 96 [00:03:34.000] Files (2) + +Info 96 [00:03:35.000] ----------------------------------------------- +Info 96 [00:03:36.000] Open files: +Info 96 [00:03:37.000] FileName: /user/username/projects/myproject/random/random.ts ProjectRootPath: undefined +Info 96 [00:03:38.000] Projects: /user/username/projects/myproject/random/tsconfig.json After request PolledWatches:: @@ -1494,7 +1494,7 @@ FsWatchesRecursive:: /user/username/projects/myproject/random: {} -Info 96 [16:03:39.000] response: +Info 96 [00:03:39.000] response: { "responseRequired": false } \ No newline at end of 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 484f27a121a0d..7bcd0513c3ecc 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 @@ -1,5 +1,5 @@ -Info 0 [16:01:04.000] Provided types map file "/a/lib/typesMap.json" doesn't exist -Info 1 [16:01:05.000] request: +Info 0 [00:01:04.000] Provided types map file "/a/lib/typesMap.json" doesn't exist +Info 1 [00:01:05.000] request: { "seq": 0, "type": "request", @@ -197,11 +197,11 @@ FsWatches:: FsWatchesRecursive:: -Info 2 [16:01:06.000] Search path: /user/username/projects/myproject/dependency -Info 3 [16:01:07.000] For info: /user/username/projects/myproject/dependency/FnS.ts :: Config file name: /user/username/projects/myproject/dependency/tsconfig.json -Info 4 [16:01:08.000] Creating configuration project /user/username/projects/myproject/dependency/tsconfig.json -Info 5 [16:01:09.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/dependency/tsconfig.json 2000 undefined Project: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Config file -Info 6 [16:01:10.000] Config: /user/username/projects/myproject/dependency/tsconfig.json : { +Info 2 [00:01:06.000] Search path: /user/username/projects/myproject/dependency +Info 3 [00:01:07.000] For info: /user/username/projects/myproject/dependency/FnS.ts :: Config file name: /user/username/projects/myproject/dependency/tsconfig.json +Info 4 [00:01:08.000] Creating configuration project /user/username/projects/myproject/dependency/tsconfig.json +Info 5 [00:01:09.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/dependency/tsconfig.json 2000 undefined Project: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Config file +Info 6 [00:01:10.000] Config: /user/username/projects/myproject/dependency/tsconfig.json : { "rootNames": [ "/user/username/projects/myproject/dependency/FnS.ts" ], @@ -212,18 +212,18 @@ Info 6 [16:01:10.000] Config: /user/username/projects/myproject/dependency/ts "configFilePath": "/user/username/projects/myproject/dependency/tsconfig.json" } } -Info 7 [16:01:11.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/dependency 1 undefined Config: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Wild card directory -Info 8 [16:01:12.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/dependency 1 undefined Config: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Wild card directory -Info 9 [16:01:13.000] Plugins were requested but not running in environment that supports 'require'. Nothing will be loaded -Info 10 [16:01:14.000] Starting updateGraphWorker: Project: /user/username/projects/myproject/dependency/tsconfig.json -Info 11 [16:01:15.000] FileWatcher:: Added:: WatchInfo: /a/lib/lib.d.ts 500 undefined WatchType: Closed Script info -Info 12 [16:01:16.000] 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 13 [16:01:17.000] 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 14 [16:01:18.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Type roots -Info 15 [16:01:19.000] 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 16 [16:01:20.000] Finishing updateGraphWorker: Project: /user/username/projects/myproject/dependency/tsconfig.json Version: 1 structureChanged: true structureIsReused:: Not Elapsed:: *ms -Info 17 [16:01:21.000] Project '/user/username/projects/myproject/dependency/tsconfig.json' (Configured) -Info 18 [16:01:22.000] Files (2) +Info 7 [00:01:11.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/dependency 1 undefined Config: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Wild card directory +Info 8 [00:01:12.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/dependency 1 undefined Config: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Wild card directory +Info 9 [00:01:13.000] Plugins were requested but not running in environment that supports 'require'. Nothing will be loaded +Info 10 [00:01:14.000] Starting updateGraphWorker: Project: /user/username/projects/myproject/dependency/tsconfig.json +Info 11 [00:01:15.000] FileWatcher:: Added:: WatchInfo: /a/lib/lib.d.ts 500 undefined WatchType: Closed Script info +Info 12 [00:01:16.000] 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 13 [00:01:17.000] 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 14 [00:01:18.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Type roots +Info 15 [00:01:19.000] 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 16 [00:01:20.000] Finishing updateGraphWorker: Project: /user/username/projects/myproject/dependency/tsconfig.json Version: 1 structureChanged: true structureIsReused:: Not Elapsed:: *ms +Info 17 [00:01:21.000] Project '/user/username/projects/myproject/dependency/tsconfig.json' (Configured) +Info 18 [00:01:22.000] Files (2) /a/lib/lib.d.ts /user/username/projects/myproject/dependency/FnS.ts @@ -233,16 +233,16 @@ Info 18 [16:01:22.000] Files (2) FnS.ts Matched by default include pattern '**/*' -Info 19 [16:01:23.000] ----------------------------------------------- -Info 20 [16:01:24.000] Search path: /user/username/projects/myproject/dependency -Info 21 [16:01:25.000] For info: /user/username/projects/myproject/dependency/tsconfig.json :: No config files found. -Info 22 [16:01:26.000] Project '/user/username/projects/myproject/dependency/tsconfig.json' (Configured) -Info 22 [16:01:27.000] Files (2) +Info 19 [00:01:23.000] ----------------------------------------------- +Info 20 [00:01:24.000] Search path: /user/username/projects/myproject/dependency +Info 21 [00:01:25.000] For info: /user/username/projects/myproject/dependency/tsconfig.json :: No config files found. +Info 22 [00:01:26.000] Project '/user/username/projects/myproject/dependency/tsconfig.json' (Configured) +Info 22 [00:01:27.000] Files (2) -Info 22 [16:01:28.000] ----------------------------------------------- -Info 22 [16:01:29.000] Open files: -Info 22 [16:01:30.000] FileName: /user/username/projects/myproject/dependency/FnS.ts ProjectRootPath: undefined -Info 22 [16:01:31.000] Projects: /user/username/projects/myproject/dependency/tsconfig.json +Info 22 [00:01:28.000] ----------------------------------------------- +Info 22 [00:01:29.000] Open files: +Info 22 [00:01:30.000] FileName: /user/username/projects/myproject/dependency/FnS.ts ProjectRootPath: undefined +Info 22 [00:01:31.000] Projects: /user/username/projects/myproject/dependency/tsconfig.json After request PolledWatches:: @@ -261,11 +261,11 @@ FsWatchesRecursive:: /user/username/projects/myproject/dependency: {} -Info 22 [16:01:32.000] response: +Info 22 [00:01:32.000] response: { "responseRequired": false } -Info 23 [16:01:33.000] request: +Info 23 [00:01:33.000] request: { "seq": 0, "type": "request", @@ -292,11 +292,11 @@ FsWatchesRecursive:: /user/username/projects/myproject/dependency: {} -Info 24 [16:01:34.000] Search path: /user/username/projects/myproject/random -Info 25 [16:01:35.000] For info: /user/username/projects/myproject/random/random.ts :: Config file name: /user/username/projects/myproject/random/tsconfig.json -Info 26 [16:01:36.000] Creating configuration project /user/username/projects/myproject/random/tsconfig.json -Info 27 [16:01:37.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/random/tsconfig.json 2000 undefined Project: /user/username/projects/myproject/random/tsconfig.json WatchType: Config file -Info 28 [16:01:38.000] Config: /user/username/projects/myproject/random/tsconfig.json : { +Info 24 [00:01:34.000] Search path: /user/username/projects/myproject/random +Info 25 [00:01:35.000] For info: /user/username/projects/myproject/random/random.ts :: Config file name: /user/username/projects/myproject/random/tsconfig.json +Info 26 [00:01:36.000] Creating configuration project /user/username/projects/myproject/random/tsconfig.json +Info 27 [00:01:37.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/random/tsconfig.json 2000 undefined Project: /user/username/projects/myproject/random/tsconfig.json WatchType: Config file +Info 28 [00:01:38.000] Config: /user/username/projects/myproject/random/tsconfig.json : { "rootNames": [ "/user/username/projects/myproject/random/random.ts" ], @@ -304,17 +304,17 @@ Info 28 [16:01:38.000] Config: /user/username/projects/myproject/random/tsconf "configFilePath": "/user/username/projects/myproject/random/tsconfig.json" } } -Info 29 [16:01:39.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/random 1 undefined Config: /user/username/projects/myproject/random/tsconfig.json WatchType: Wild card directory -Info 30 [16:01:40.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/random 1 undefined Config: /user/username/projects/myproject/random/tsconfig.json WatchType: Wild card directory -Info 31 [16:01:41.000] Plugins were requested but not running in environment that supports 'require'. Nothing will be loaded -Info 32 [16:01:42.000] Starting updateGraphWorker: Project: /user/username/projects/myproject/random/tsconfig.json -Info 33 [16:01:43.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/random/node_modules/@types 1 undefined Project: /user/username/projects/myproject/random/tsconfig.json WatchType: Type roots -Info 34 [16:01:44.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/random/node_modules/@types 1 undefined Project: /user/username/projects/myproject/random/tsconfig.json WatchType: Type roots -Info 35 [16:01:45.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/random/tsconfig.json WatchType: Type roots -Info 36 [16:01:46.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/random/tsconfig.json WatchType: Type roots -Info 37 [16:01:47.000] Finishing updateGraphWorker: Project: /user/username/projects/myproject/random/tsconfig.json Version: 1 structureChanged: true structureIsReused:: Not Elapsed:: *ms -Info 38 [16:01:48.000] Project '/user/username/projects/myproject/random/tsconfig.json' (Configured) -Info 39 [16:01:49.000] Files (2) +Info 29 [00:01:39.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/random 1 undefined Config: /user/username/projects/myproject/random/tsconfig.json WatchType: Wild card directory +Info 30 [00:01:40.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/random 1 undefined Config: /user/username/projects/myproject/random/tsconfig.json WatchType: Wild card directory +Info 31 [00:01:41.000] Plugins were requested but not running in environment that supports 'require'. Nothing will be loaded +Info 32 [00:01:42.000] Starting updateGraphWorker: Project: /user/username/projects/myproject/random/tsconfig.json +Info 33 [00:01:43.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/random/node_modules/@types 1 undefined Project: /user/username/projects/myproject/random/tsconfig.json WatchType: Type roots +Info 34 [00:01:44.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/random/node_modules/@types 1 undefined Project: /user/username/projects/myproject/random/tsconfig.json WatchType: Type roots +Info 35 [00:01:45.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/random/tsconfig.json WatchType: Type roots +Info 36 [00:01:46.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/random/tsconfig.json WatchType: Type roots +Info 37 [00:01:47.000] Finishing updateGraphWorker: Project: /user/username/projects/myproject/random/tsconfig.json Version: 1 structureChanged: true structureIsReused:: Not Elapsed:: *ms +Info 38 [00:01:48.000] Project '/user/username/projects/myproject/random/tsconfig.json' (Configured) +Info 39 [00:01:49.000] Files (2) /a/lib/lib.d.ts /user/username/projects/myproject/random/random.ts @@ -324,20 +324,20 @@ Info 39 [16:01:49.000] Files (2) random.ts Matched by default include pattern '**/*' -Info 40 [16:01:50.000] ----------------------------------------------- -Info 41 [16:01:51.000] Project '/user/username/projects/myproject/dependency/tsconfig.json' (Configured) -Info 41 [16:01:52.000] Files (2) +Info 40 [00:01:50.000] ----------------------------------------------- +Info 41 [00:01:51.000] Project '/user/username/projects/myproject/dependency/tsconfig.json' (Configured) +Info 41 [00:01:52.000] Files (2) -Info 41 [16:01:53.000] ----------------------------------------------- -Info 41 [16:01:54.000] Project '/user/username/projects/myproject/random/tsconfig.json' (Configured) -Info 41 [16:01:55.000] Files (2) +Info 41 [00:01:53.000] ----------------------------------------------- +Info 41 [00:01:54.000] Project '/user/username/projects/myproject/random/tsconfig.json' (Configured) +Info 41 [00:01:55.000] Files (2) -Info 41 [16:01:56.000] ----------------------------------------------- -Info 41 [16:01:57.000] Open files: -Info 41 [16:01:58.000] FileName: /user/username/projects/myproject/dependency/FnS.ts ProjectRootPath: undefined -Info 41 [16:01:59.000] Projects: /user/username/projects/myproject/dependency/tsconfig.json -Info 41 [16:02:00.000] FileName: /user/username/projects/myproject/random/random.ts ProjectRootPath: undefined -Info 41 [16:02:01.000] Projects: /user/username/projects/myproject/random/tsconfig.json +Info 41 [00:01:56.000] ----------------------------------------------- +Info 41 [00:01:57.000] Open files: +Info 41 [00:01:58.000] FileName: /user/username/projects/myproject/dependency/FnS.ts ProjectRootPath: undefined +Info 41 [00:01:59.000] Projects: /user/username/projects/myproject/dependency/tsconfig.json +Info 41 [00:02:00.000] FileName: /user/username/projects/myproject/random/random.ts ProjectRootPath: undefined +Info 41 [00:02:01.000] Projects: /user/username/projects/myproject/random/tsconfig.json After request PolledWatches:: @@ -362,11 +362,11 @@ FsWatchesRecursive:: /user/username/projects/myproject/random: {} -Info 41 [16:02:02.000] response: +Info 41 [00:02:02.000] response: { "responseRequired": false } -Info 42 [16:02:03.000] request: +Info 42 [00:02:03.000] request: { "command": "rename", "arguments": { @@ -401,8 +401,8 @@ FsWatchesRecursive:: /user/username/projects/myproject/random: {} -Info 43 [16:02:04.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/decls/FnS.d.ts 500 undefined WatchType: Closed Script info -Info 44 [16:02:05.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/decls/FnS.d.ts.map 2000 undefined WatchType: Missing source map file +Info 43 [00:02:04.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/decls/FnS.d.ts 500 undefined WatchType: Closed Script info +Info 44 [00:02:05.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/decls/FnS.d.ts.map 2000 undefined WatchType: Missing source map file After request PolledWatches:: @@ -431,7 +431,7 @@ FsWatchesRecursive:: /user/username/projects/myproject/random: {} -Info 45 [16:02:06.000] response: +Info 45 [00:02:06.000] response: { "response": { "info": { @@ -479,7 +479,7 @@ Info 45 [16:02:06.000] response: }, "responseRequired": true } -Info 46 [16:02:07.000] request: +Info 46 [00:02:07.000] request: { "command": "rename", "arguments": { @@ -546,7 +546,7 @@ FsWatchesRecursive:: /user/username/projects/myproject/random: {} -Info 47 [16:02:08.000] response: +Info 47 [00:02:08.000] response: { "response": { "info": { @@ -594,7 +594,7 @@ Info 47 [16:02:08.000] response: }, "responseRequired": true } -Info 48 [16:02:09.000] request: +Info 48 [00:02:09.000] request: { "command": "rename", "arguments": { @@ -661,7 +661,7 @@ FsWatchesRecursive:: /user/username/projects/myproject/random: {} -Info 49 [16:02:10.000] response: +Info 49 [00:02:10.000] response: { "response": { "info": { @@ -709,7 +709,7 @@ Info 49 [16:02:10.000] response: }, "responseRequired": true } -Info 50 [16:02:11.000] request: +Info 50 [00:02:11.000] request: { "command": "rename", "arguments": { @@ -776,7 +776,7 @@ FsWatchesRecursive:: /user/username/projects/myproject/random: {} -Info 51 [16:02:12.000] response: +Info 51 [00:02:12.000] response: { "response": { "info": { @@ -824,7 +824,7 @@ Info 51 [16:02:12.000] response: }, "responseRequired": true } -Info 52 [16:02:13.000] request: +Info 52 [00:02:13.000] request: { "command": "rename", "arguments": { @@ -891,7 +891,7 @@ FsWatchesRecursive:: /user/username/projects/myproject/random: {} -Info 53 [16:02:14.000] response: +Info 53 [00:02:14.000] response: { "response": { "info": { @@ -939,7 +939,7 @@ Info 53 [16:02:14.000] response: }, "responseRequired": true } -Info 54 [16:02:15.000] request: +Info 54 [00:02:15.000] request: { "seq": 0, "type": "request", @@ -976,18 +976,18 @@ FsWatchesRecursive:: /user/username/projects/myproject/random: {} -Info 55 [16:02:16.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/random/random.ts 500 undefined WatchType: Closed Script info -Info 56 [16:02:17.000] Project '/user/username/projects/myproject/dependency/tsconfig.json' (Configured) -Info 56 [16:02:18.000] Files (2) +Info 55 [00:02:16.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/random/random.ts 500 undefined WatchType: Closed Script info +Info 56 [00:02:17.000] Project '/user/username/projects/myproject/dependency/tsconfig.json' (Configured) +Info 56 [00:02:18.000] Files (2) -Info 56 [16:02:19.000] ----------------------------------------------- -Info 56 [16:02:20.000] Project '/user/username/projects/myproject/random/tsconfig.json' (Configured) -Info 56 [16:02:21.000] Files (2) +Info 56 [00:02:19.000] ----------------------------------------------- +Info 56 [00:02:20.000] Project '/user/username/projects/myproject/random/tsconfig.json' (Configured) +Info 56 [00:02:21.000] Files (2) -Info 56 [16:02:22.000] ----------------------------------------------- -Info 56 [16:02:23.000] Open files: -Info 56 [16:02:24.000] FileName: /user/username/projects/myproject/dependency/FnS.ts ProjectRootPath: undefined -Info 56 [16:02:25.000] Projects: /user/username/projects/myproject/dependency/tsconfig.json +Info 56 [00:02:22.000] ----------------------------------------------- +Info 56 [00:02:23.000] Open files: +Info 56 [00:02:24.000] FileName: /user/username/projects/myproject/dependency/FnS.ts ProjectRootPath: undefined +Info 56 [00:02:25.000] Projects: /user/username/projects/myproject/dependency/tsconfig.json After request PolledWatches:: @@ -1018,11 +1018,11 @@ FsWatchesRecursive:: /user/username/projects/myproject/random: {} -Info 56 [16:02:26.000] response: +Info 56 [00:02:26.000] response: { "responseRequired": false } -Info 57 [16:02:27.000] request: +Info 57 [00:02:27.000] request: { "seq": 0, "type": "request", @@ -1061,22 +1061,22 @@ FsWatchesRecursive:: /user/username/projects/myproject/random: {} -Info 58 [16:02:28.000] FileWatcher:: Close:: WatchInfo: /user/username/projects/myproject/random/random.ts 500 undefined WatchType: Closed Script info -Info 59 [16:02:29.000] Search path: /user/username/projects/myproject/random -Info 60 [16:02:30.000] For info: /user/username/projects/myproject/random/random.ts :: Config file name: /user/username/projects/myproject/random/tsconfig.json -Info 61 [16:02:31.000] Project '/user/username/projects/myproject/dependency/tsconfig.json' (Configured) -Info 61 [16:02:32.000] Files (2) +Info 58 [00:02:28.000] FileWatcher:: Close:: WatchInfo: /user/username/projects/myproject/random/random.ts 500 undefined WatchType: Closed Script info +Info 59 [00:02:29.000] Search path: /user/username/projects/myproject/random +Info 60 [00:02:30.000] For info: /user/username/projects/myproject/random/random.ts :: Config file name: /user/username/projects/myproject/random/tsconfig.json +Info 61 [00:02:31.000] Project '/user/username/projects/myproject/dependency/tsconfig.json' (Configured) +Info 61 [00:02:32.000] Files (2) -Info 61 [16:02:33.000] ----------------------------------------------- -Info 61 [16:02:34.000] Project '/user/username/projects/myproject/random/tsconfig.json' (Configured) -Info 61 [16:02:35.000] Files (2) +Info 61 [00:02:33.000] ----------------------------------------------- +Info 61 [00:02:34.000] Project '/user/username/projects/myproject/random/tsconfig.json' (Configured) +Info 61 [00:02:35.000] Files (2) -Info 61 [16:02:36.000] ----------------------------------------------- -Info 61 [16:02:37.000] Open files: -Info 61 [16:02:38.000] FileName: /user/username/projects/myproject/dependency/FnS.ts ProjectRootPath: undefined -Info 61 [16:02:39.000] Projects: /user/username/projects/myproject/dependency/tsconfig.json -Info 61 [16:02:40.000] FileName: /user/username/projects/myproject/random/random.ts ProjectRootPath: undefined -Info 61 [16:02:41.000] Projects: /user/username/projects/myproject/random/tsconfig.json +Info 61 [00:02:36.000] ----------------------------------------------- +Info 61 [00:02:37.000] Open files: +Info 61 [00:02:38.000] FileName: /user/username/projects/myproject/dependency/FnS.ts ProjectRootPath: undefined +Info 61 [00:02:39.000] Projects: /user/username/projects/myproject/dependency/tsconfig.json +Info 61 [00:02:40.000] FileName: /user/username/projects/myproject/random/random.ts ProjectRootPath: undefined +Info 61 [00:02:41.000] Projects: /user/username/projects/myproject/random/tsconfig.json After request PolledWatches:: @@ -1105,11 +1105,11 @@ FsWatchesRecursive:: /user/username/projects/myproject/random: {} -Info 61 [16:02:42.000] response: +Info 61 [00:02:42.000] response: { "responseRequired": false } -Info 62 [16:02:43.000] request: +Info 62 [00:02:43.000] request: { "seq": 0, "type": "request", @@ -1146,18 +1146,18 @@ FsWatchesRecursive:: /user/username/projects/myproject/random: {} -Info 63 [16:02:44.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/dependency/FnS.ts 500 undefined WatchType: Closed Script info -Info 64 [16:02:45.000] Project '/user/username/projects/myproject/dependency/tsconfig.json' (Configured) -Info 64 [16:02:46.000] Files (2) +Info 63 [00:02:44.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/dependency/FnS.ts 500 undefined WatchType: Closed Script info +Info 64 [00:02:45.000] Project '/user/username/projects/myproject/dependency/tsconfig.json' (Configured) +Info 64 [00:02:46.000] Files (2) -Info 64 [16:02:47.000] ----------------------------------------------- -Info 64 [16:02:48.000] Project '/user/username/projects/myproject/random/tsconfig.json' (Configured) -Info 64 [16:02:49.000] Files (2) +Info 64 [00:02:47.000] ----------------------------------------------- +Info 64 [00:02:48.000] Project '/user/username/projects/myproject/random/tsconfig.json' (Configured) +Info 64 [00:02:49.000] Files (2) -Info 64 [16:02:50.000] ----------------------------------------------- -Info 64 [16:02:51.000] Open files: -Info 64 [16:02:52.000] FileName: /user/username/projects/myproject/random/random.ts ProjectRootPath: undefined -Info 64 [16:02:53.000] Projects: /user/username/projects/myproject/random/tsconfig.json +Info 64 [00:02:50.000] ----------------------------------------------- +Info 64 [00:02:51.000] Open files: +Info 64 [00:02:52.000] FileName: /user/username/projects/myproject/random/random.ts ProjectRootPath: undefined +Info 64 [00:02:53.000] Projects: /user/username/projects/myproject/random/tsconfig.json After request PolledWatches:: @@ -1188,11 +1188,11 @@ FsWatchesRecursive:: /user/username/projects/myproject/random: {} -Info 64 [16:02:54.000] response: +Info 64 [00:02:54.000] response: { "responseRequired": false } -Info 65 [16:02:55.000] request: +Info 65 [00:02:55.000] request: { "seq": 0, "type": "request", @@ -1231,16 +1231,16 @@ FsWatchesRecursive:: /user/username/projects/myproject/random: {} -Info 66 [16:02:56.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/random/random.ts 500 undefined WatchType: Closed Script info -Info 67 [16:02:57.000] Project '/user/username/projects/myproject/dependency/tsconfig.json' (Configured) -Info 67 [16:02:58.000] Files (2) +Info 66 [00:02:56.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/random/random.ts 500 undefined WatchType: Closed Script info +Info 67 [00:02:57.000] Project '/user/username/projects/myproject/dependency/tsconfig.json' (Configured) +Info 67 [00:02:58.000] Files (2) -Info 67 [16:02:59.000] ----------------------------------------------- -Info 67 [16:03:00.000] Project '/user/username/projects/myproject/random/tsconfig.json' (Configured) -Info 67 [16:03:01.000] Files (2) +Info 67 [00:02:59.000] ----------------------------------------------- +Info 67 [00:03:00.000] Project '/user/username/projects/myproject/random/tsconfig.json' (Configured) +Info 67 [00:03:01.000] Files (2) -Info 67 [16:03:02.000] ----------------------------------------------- -Info 67 [16:03:03.000] Open files: +Info 67 [00:03:02.000] ----------------------------------------------- +Info 67 [00:03:03.000] Open files: After request PolledWatches:: @@ -1273,11 +1273,11 @@ FsWatchesRecursive:: /user/username/projects/myproject/random: {} -Info 67 [16:03:04.000] response: +Info 67 [00:03:04.000] response: { "responseRequired": false } -Info 68 [16:03:05.000] request: +Info 68 [00:03:05.000] request: { "seq": 0, "type": "request", @@ -1318,12 +1318,12 @@ FsWatchesRecursive:: /user/username/projects/myproject/random: {} -Info 69 [16:03:06.000] FileWatcher:: Close:: WatchInfo: /user/username/projects/myproject/random/random.ts 500 undefined WatchType: Closed Script info -Info 70 [16:03:07.000] Search path: /user/username/projects/myproject/random -Info 71 [16:03:08.000] For info: /user/username/projects/myproject/random/random.ts :: Config file name: /user/username/projects/myproject/random/tsconfig.json -Info 72 [16:03:09.000] `remove Project:: -Info 73 [16:03:10.000] Project '/user/username/projects/myproject/dependency/tsconfig.json' (Configured) -Info 74 [16:03:11.000] Files (2) +Info 69 [00:03:06.000] FileWatcher:: Close:: WatchInfo: /user/username/projects/myproject/random/random.ts 500 undefined WatchType: Closed Script info +Info 70 [00:03:07.000] Search path: /user/username/projects/myproject/random +Info 71 [00:03:08.000] For info: /user/username/projects/myproject/random/random.ts :: Config file name: /user/username/projects/myproject/random/tsconfig.json +Info 72 [00:03:09.000] `remove Project:: +Info 73 [00:03:10.000] Project '/user/username/projects/myproject/dependency/tsconfig.json' (Configured) +Info 74 [00:03:11.000] Files (2) /a/lib/lib.d.ts /user/username/projects/myproject/dependency/FnS.ts @@ -1333,24 +1333,24 @@ Info 74 [16:03:11.000] Files (2) FnS.ts Matched by default include pattern '**/*' -Info 75 [16:03:12.000] ----------------------------------------------- -Info 76 [16:03:13.000] DirectoryWatcher:: Close:: WatchInfo: /user/username/projects/myproject/dependency 1 undefined Config: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Wild card directory -Info 77 [16:03:14.000] 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 78 [16:03:15.000] FileWatcher:: Close:: WatchInfo: /user/username/projects/myproject/dependency/tsconfig.json 2000 undefined Project: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Config file -Info 79 [16:03:16.000] 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 80 [16:03:17.000] 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 81 [16:03:18.000] DirectoryWatcher:: Close:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Type roots -Info 82 [16:03:19.000] 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 83 [16:03:20.000] FileWatcher:: Close:: WatchInfo: /user/username/projects/myproject/dependency/FnS.ts 500 undefined WatchType: Closed Script info -Info 84 [16:03:21.000] FileWatcher:: Close:: WatchInfo: /user/username/projects/myproject/decls/FnS.d.ts 500 undefined WatchType: Closed Script info -Info 85 [16:03:22.000] FileWatcher:: Close:: WatchInfo: /user/username/projects/myproject/decls/FnS.d.ts.map 2000 undefined WatchType: Missing source map file -Info 86 [16:03:23.000] Project '/user/username/projects/myproject/random/tsconfig.json' (Configured) -Info 86 [16:03:24.000] Files (2) - -Info 86 [16:03:25.000] ----------------------------------------------- -Info 86 [16:03:26.000] Open files: -Info 86 [16:03:27.000] FileName: /user/username/projects/myproject/random/random.ts ProjectRootPath: undefined -Info 86 [16:03:28.000] Projects: /user/username/projects/myproject/random/tsconfig.json +Info 75 [00:03:12.000] ----------------------------------------------- +Info 76 [00:03:13.000] DirectoryWatcher:: Close:: WatchInfo: /user/username/projects/myproject/dependency 1 undefined Config: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Wild card directory +Info 77 [00:03:14.000] 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 78 [00:03:15.000] FileWatcher:: Close:: WatchInfo: /user/username/projects/myproject/dependency/tsconfig.json 2000 undefined Project: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Config file +Info 79 [00:03:16.000] 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 80 [00:03:17.000] 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 81 [00:03:18.000] DirectoryWatcher:: Close:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Type roots +Info 82 [00:03:19.000] 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 83 [00:03:20.000] FileWatcher:: Close:: WatchInfo: /user/username/projects/myproject/dependency/FnS.ts 500 undefined WatchType: Closed Script info +Info 84 [00:03:21.000] FileWatcher:: Close:: WatchInfo: /user/username/projects/myproject/decls/FnS.d.ts 500 undefined WatchType: Closed Script info +Info 85 [00:03:22.000] FileWatcher:: Close:: WatchInfo: /user/username/projects/myproject/decls/FnS.d.ts.map 2000 undefined WatchType: Missing source map file +Info 86 [00:03:23.000] Project '/user/username/projects/myproject/random/tsconfig.json' (Configured) +Info 86 [00:03:24.000] Files (2) + +Info 86 [00:03:25.000] ----------------------------------------------- +Info 86 [00:03:26.000] Open files: +Info 86 [00:03:27.000] FileName: /user/username/projects/myproject/random/random.ts ProjectRootPath: undefined +Info 86 [00:03:28.000] Projects: /user/username/projects/myproject/random/tsconfig.json After request PolledWatches:: @@ -1369,7 +1369,7 @@ FsWatchesRecursive:: /user/username/projects/myproject/random: {} -Info 86 [16:03:29.000] response: +Info 86 [00:03:29.000] response: { "responseRequired": false } \ No newline at end of file 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 d691e9f1585d8..89e9927b60fd4 100644 --- a/tests/baselines/reference/tsserver/projectReferencesSourcemap/dependency/disabledSourceRef/rename-locations.js +++ b/tests/baselines/reference/tsserver/projectReferencesSourcemap/dependency/disabledSourceRef/rename-locations.js @@ -1,5 +1,5 @@ -Info 0 [16:01:03.000] Provided types map file "/a/lib/typesMap.json" doesn't exist -Info 1 [16:01:04.000] request: +Info 0 [00:01:03.000] Provided types map file "/a/lib/typesMap.json" doesn't exist +Info 1 [00:01:04.000] request: { "seq": 0, "type": "request", @@ -200,11 +200,11 @@ FsWatches:: FsWatchesRecursive:: -Info 2 [16:01:05.000] Search path: /user/username/projects/myproject/dependency -Info 3 [16:01:06.000] For info: /user/username/projects/myproject/dependency/FnS.ts :: Config file name: /user/username/projects/myproject/dependency/tsconfig.json -Info 4 [16:01:07.000] Creating configuration project /user/username/projects/myproject/dependency/tsconfig.json -Info 5 [16:01:08.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/dependency/tsconfig.json 2000 undefined Project: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Config file -Info 6 [16:01:09.000] Config: /user/username/projects/myproject/dependency/tsconfig.json : { +Info 2 [00:01:05.000] Search path: /user/username/projects/myproject/dependency +Info 3 [00:01:06.000] For info: /user/username/projects/myproject/dependency/FnS.ts :: Config file name: /user/username/projects/myproject/dependency/tsconfig.json +Info 4 [00:01:07.000] Creating configuration project /user/username/projects/myproject/dependency/tsconfig.json +Info 5 [00:01:08.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/dependency/tsconfig.json 2000 undefined Project: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Config file +Info 6 [00:01:09.000] Config: /user/username/projects/myproject/dependency/tsconfig.json : { "rootNames": [ "/user/username/projects/myproject/dependency/FnS.ts" ], @@ -215,18 +215,18 @@ Info 6 [16:01:09.000] Config: /user/username/projects/myproject/dependency/ts "configFilePath": "/user/username/projects/myproject/dependency/tsconfig.json" } } -Info 7 [16:01:10.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/dependency 1 undefined Config: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Wild card directory -Info 8 [16:01:11.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/dependency 1 undefined Config: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Wild card directory -Info 9 [16:01:12.000] Plugins were requested but not running in environment that supports 'require'. Nothing will be loaded -Info 10 [16:01:13.000] Starting updateGraphWorker: Project: /user/username/projects/myproject/dependency/tsconfig.json -Info 11 [16:01:14.000] FileWatcher:: Added:: WatchInfo: /a/lib/lib.d.ts 500 undefined WatchType: Closed Script info -Info 12 [16:01:15.000] 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 13 [16:01:16.000] 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 14 [16:01:17.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Type roots -Info 15 [16:01:18.000] 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 16 [16:01:19.000] Finishing updateGraphWorker: Project: /user/username/projects/myproject/dependency/tsconfig.json Version: 1 structureChanged: true structureIsReused:: Not Elapsed:: *ms -Info 17 [16:01:20.000] Project '/user/username/projects/myproject/dependency/tsconfig.json' (Configured) -Info 18 [16:01:21.000] Files (2) +Info 7 [00:01:10.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/dependency 1 undefined Config: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Wild card directory +Info 8 [00:01:11.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/dependency 1 undefined Config: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Wild card directory +Info 9 [00:01:12.000] Plugins were requested but not running in environment that supports 'require'. Nothing will be loaded +Info 10 [00:01:13.000] Starting updateGraphWorker: Project: /user/username/projects/myproject/dependency/tsconfig.json +Info 11 [00:01:14.000] FileWatcher:: Added:: WatchInfo: /a/lib/lib.d.ts 500 undefined WatchType: Closed Script info +Info 12 [00:01:15.000] 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 13 [00:01:16.000] 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 14 [00:01:17.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Type roots +Info 15 [00:01:18.000] 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 16 [00:01:19.000] Finishing updateGraphWorker: Project: /user/username/projects/myproject/dependency/tsconfig.json Version: 1 structureChanged: true structureIsReused:: Not Elapsed:: *ms +Info 17 [00:01:20.000] Project '/user/username/projects/myproject/dependency/tsconfig.json' (Configured) +Info 18 [00:01:21.000] Files (2) /a/lib/lib.d.ts /user/username/projects/myproject/dependency/FnS.ts @@ -236,16 +236,16 @@ Info 18 [16:01:21.000] Files (2) FnS.ts Matched by default include pattern '**/*' -Info 19 [16:01:22.000] ----------------------------------------------- -Info 20 [16:01:23.000] Search path: /user/username/projects/myproject/dependency -Info 21 [16:01:24.000] For info: /user/username/projects/myproject/dependency/tsconfig.json :: No config files found. -Info 22 [16:01:25.000] Project '/user/username/projects/myproject/dependency/tsconfig.json' (Configured) -Info 22 [16:01:26.000] Files (2) +Info 19 [00:01:22.000] ----------------------------------------------- +Info 20 [00:01:23.000] Search path: /user/username/projects/myproject/dependency +Info 21 [00:01:24.000] For info: /user/username/projects/myproject/dependency/tsconfig.json :: No config files found. +Info 22 [00:01:25.000] Project '/user/username/projects/myproject/dependency/tsconfig.json' (Configured) +Info 22 [00:01:26.000] Files (2) -Info 22 [16:01:27.000] ----------------------------------------------- -Info 22 [16:01:28.000] Open files: -Info 22 [16:01:29.000] FileName: /user/username/projects/myproject/dependency/FnS.ts ProjectRootPath: undefined -Info 22 [16:01:30.000] Projects: /user/username/projects/myproject/dependency/tsconfig.json +Info 22 [00:01:27.000] ----------------------------------------------- +Info 22 [00:01:28.000] Open files: +Info 22 [00:01:29.000] FileName: /user/username/projects/myproject/dependency/FnS.ts ProjectRootPath: undefined +Info 22 [00:01:30.000] Projects: /user/username/projects/myproject/dependency/tsconfig.json After request PolledWatches:: @@ -264,11 +264,11 @@ FsWatchesRecursive:: /user/username/projects/myproject/dependency: {} -Info 22 [16:01:31.000] response: +Info 22 [00:01:31.000] response: { "responseRequired": false } -Info 23 [16:01:32.000] request: +Info 23 [00:01:32.000] request: { "seq": 0, "type": "request", @@ -295,11 +295,11 @@ FsWatchesRecursive:: /user/username/projects/myproject/dependency: {} -Info 24 [16:01:33.000] Search path: /user/username/projects/myproject/random -Info 25 [16:01:34.000] For info: /user/username/projects/myproject/random/random.ts :: Config file name: /user/username/projects/myproject/random/tsconfig.json -Info 26 [16:01:35.000] Creating configuration project /user/username/projects/myproject/random/tsconfig.json -Info 27 [16:01:36.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/random/tsconfig.json 2000 undefined Project: /user/username/projects/myproject/random/tsconfig.json WatchType: Config file -Info 28 [16:01:37.000] Config: /user/username/projects/myproject/random/tsconfig.json : { +Info 24 [00:01:33.000] Search path: /user/username/projects/myproject/random +Info 25 [00:01:34.000] For info: /user/username/projects/myproject/random/random.ts :: Config file name: /user/username/projects/myproject/random/tsconfig.json +Info 26 [00:01:35.000] Creating configuration project /user/username/projects/myproject/random/tsconfig.json +Info 27 [00:01:36.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/random/tsconfig.json 2000 undefined Project: /user/username/projects/myproject/random/tsconfig.json WatchType: Config file +Info 28 [00:01:37.000] Config: /user/username/projects/myproject/random/tsconfig.json : { "rootNames": [ "/user/username/projects/myproject/random/random.ts" ], @@ -307,17 +307,17 @@ Info 28 [16:01:37.000] Config: /user/username/projects/myproject/random/tsconf "configFilePath": "/user/username/projects/myproject/random/tsconfig.json" } } -Info 29 [16:01:38.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/random 1 undefined Config: /user/username/projects/myproject/random/tsconfig.json WatchType: Wild card directory -Info 30 [16:01:39.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/random 1 undefined Config: /user/username/projects/myproject/random/tsconfig.json WatchType: Wild card directory -Info 31 [16:01:40.000] Plugins were requested but not running in environment that supports 'require'. Nothing will be loaded -Info 32 [16:01:41.000] Starting updateGraphWorker: Project: /user/username/projects/myproject/random/tsconfig.json -Info 33 [16:01:42.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/random/node_modules/@types 1 undefined Project: /user/username/projects/myproject/random/tsconfig.json WatchType: Type roots -Info 34 [16:01:43.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/random/node_modules/@types 1 undefined Project: /user/username/projects/myproject/random/tsconfig.json WatchType: Type roots -Info 35 [16:01:44.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/random/tsconfig.json WatchType: Type roots -Info 36 [16:01:45.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/random/tsconfig.json WatchType: Type roots -Info 37 [16:01:46.000] Finishing updateGraphWorker: Project: /user/username/projects/myproject/random/tsconfig.json Version: 1 structureChanged: true structureIsReused:: Not Elapsed:: *ms -Info 38 [16:01:47.000] Project '/user/username/projects/myproject/random/tsconfig.json' (Configured) -Info 39 [16:01:48.000] Files (2) +Info 29 [00:01:38.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/random 1 undefined Config: /user/username/projects/myproject/random/tsconfig.json WatchType: Wild card directory +Info 30 [00:01:39.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/random 1 undefined Config: /user/username/projects/myproject/random/tsconfig.json WatchType: Wild card directory +Info 31 [00:01:40.000] Plugins were requested but not running in environment that supports 'require'. Nothing will be loaded +Info 32 [00:01:41.000] Starting updateGraphWorker: Project: /user/username/projects/myproject/random/tsconfig.json +Info 33 [00:01:42.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/random/node_modules/@types 1 undefined Project: /user/username/projects/myproject/random/tsconfig.json WatchType: Type roots +Info 34 [00:01:43.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/random/node_modules/@types 1 undefined Project: /user/username/projects/myproject/random/tsconfig.json WatchType: Type roots +Info 35 [00:01:44.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/random/tsconfig.json WatchType: Type roots +Info 36 [00:01:45.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/random/tsconfig.json WatchType: Type roots +Info 37 [00:01:46.000] Finishing updateGraphWorker: Project: /user/username/projects/myproject/random/tsconfig.json Version: 1 structureChanged: true structureIsReused:: Not Elapsed:: *ms +Info 38 [00:01:47.000] Project '/user/username/projects/myproject/random/tsconfig.json' (Configured) +Info 39 [00:01:48.000] Files (2) /a/lib/lib.d.ts /user/username/projects/myproject/random/random.ts @@ -327,20 +327,20 @@ Info 39 [16:01:48.000] Files (2) random.ts Matched by default include pattern '**/*' -Info 40 [16:01:49.000] ----------------------------------------------- -Info 41 [16:01:50.000] Project '/user/username/projects/myproject/dependency/tsconfig.json' (Configured) -Info 41 [16:01:51.000] Files (2) +Info 40 [00:01:49.000] ----------------------------------------------- +Info 41 [00:01:50.000] Project '/user/username/projects/myproject/dependency/tsconfig.json' (Configured) +Info 41 [00:01:51.000] Files (2) -Info 41 [16:01:52.000] ----------------------------------------------- -Info 41 [16:01:53.000] Project '/user/username/projects/myproject/random/tsconfig.json' (Configured) -Info 41 [16:01:54.000] Files (2) +Info 41 [00:01:52.000] ----------------------------------------------- +Info 41 [00:01:53.000] Project '/user/username/projects/myproject/random/tsconfig.json' (Configured) +Info 41 [00:01:54.000] Files (2) -Info 41 [16:01:55.000] ----------------------------------------------- -Info 41 [16:01:56.000] Open files: -Info 41 [16:01:57.000] FileName: /user/username/projects/myproject/dependency/FnS.ts ProjectRootPath: undefined -Info 41 [16:01:58.000] Projects: /user/username/projects/myproject/dependency/tsconfig.json -Info 41 [16:01:59.000] FileName: /user/username/projects/myproject/random/random.ts ProjectRootPath: undefined -Info 41 [16:02:00.000] Projects: /user/username/projects/myproject/random/tsconfig.json +Info 41 [00:01:55.000] ----------------------------------------------- +Info 41 [00:01:56.000] Open files: +Info 41 [00:01:57.000] FileName: /user/username/projects/myproject/dependency/FnS.ts ProjectRootPath: undefined +Info 41 [00:01:58.000] Projects: /user/username/projects/myproject/dependency/tsconfig.json +Info 41 [00:01:59.000] FileName: /user/username/projects/myproject/random/random.ts ProjectRootPath: undefined +Info 41 [00:02:00.000] Projects: /user/username/projects/myproject/random/tsconfig.json After request PolledWatches:: @@ -365,11 +365,11 @@ FsWatchesRecursive:: /user/username/projects/myproject/random: {} -Info 41 [16:02:01.000] response: +Info 41 [00:02:01.000] response: { "responseRequired": false } -Info 42 [16:02:02.000] request: +Info 42 [00:02:02.000] request: { "command": "rename", "arguments": { @@ -404,8 +404,8 @@ FsWatchesRecursive:: /user/username/projects/myproject/random: {} -Info 43 [16:02:03.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/decls/FnS.d.ts 500 undefined WatchType: Closed Script info -Info 44 [16:02:04.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/decls/FnS.d.ts.map 500 undefined WatchType: Closed Script info +Info 43 [00:02:03.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/decls/FnS.d.ts 500 undefined WatchType: Closed Script info +Info 44 [00:02:04.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/decls/FnS.d.ts.map 500 undefined WatchType: Closed Script info After request PolledWatches:: @@ -434,7 +434,7 @@ FsWatchesRecursive:: /user/username/projects/myproject/random: {} -Info 45 [16:02:05.000] response: +Info 45 [00:02:05.000] response: { "response": { "info": { @@ -482,7 +482,7 @@ Info 45 [16:02:05.000] response: }, "responseRequired": true } -Info 46 [16:02:06.000] request: +Info 46 [00:02:06.000] request: { "command": "rename", "arguments": { @@ -549,7 +549,7 @@ FsWatchesRecursive:: /user/username/projects/myproject/random: {} -Info 47 [16:02:07.000] response: +Info 47 [00:02:07.000] response: { "response": { "info": { @@ -597,7 +597,7 @@ Info 47 [16:02:07.000] response: }, "responseRequired": true } -Info 48 [16:02:08.000] request: +Info 48 [00:02:08.000] request: { "command": "rename", "arguments": { @@ -664,7 +664,7 @@ FsWatchesRecursive:: /user/username/projects/myproject/random: {} -Info 49 [16:02:09.000] response: +Info 49 [00:02:09.000] response: { "response": { "info": { @@ -712,7 +712,7 @@ Info 49 [16:02:09.000] response: }, "responseRequired": true } -Info 50 [16:02:10.000] request: +Info 50 [00:02:10.000] request: { "command": "rename", "arguments": { @@ -779,7 +779,7 @@ FsWatchesRecursive:: /user/username/projects/myproject/random: {} -Info 51 [16:02:11.000] response: +Info 51 [00:02:11.000] response: { "response": { "info": { @@ -827,7 +827,7 @@ Info 51 [16:02:11.000] response: }, "responseRequired": true } -Info 52 [16:02:12.000] request: +Info 52 [00:02:12.000] request: { "command": "rename", "arguments": { @@ -894,7 +894,7 @@ FsWatchesRecursive:: /user/username/projects/myproject/random: {} -Info 53 [16:02:13.000] response: +Info 53 [00:02:13.000] response: { "response": { "info": { @@ -942,7 +942,7 @@ Info 53 [16:02:13.000] response: }, "responseRequired": true } -Info 54 [16:02:14.000] request: +Info 54 [00:02:14.000] request: { "seq": 0, "type": "request", @@ -979,18 +979,18 @@ FsWatchesRecursive:: /user/username/projects/myproject/random: {} -Info 55 [16:02:15.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/random/random.ts 500 undefined WatchType: Closed Script info -Info 56 [16:02:16.000] Project '/user/username/projects/myproject/dependency/tsconfig.json' (Configured) -Info 56 [16:02:17.000] Files (2) +Info 55 [00:02:15.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/random/random.ts 500 undefined WatchType: Closed Script info +Info 56 [00:02:16.000] Project '/user/username/projects/myproject/dependency/tsconfig.json' (Configured) +Info 56 [00:02:17.000] Files (2) -Info 56 [16:02:18.000] ----------------------------------------------- -Info 56 [16:02:19.000] Project '/user/username/projects/myproject/random/tsconfig.json' (Configured) -Info 56 [16:02:20.000] Files (2) +Info 56 [00:02:18.000] ----------------------------------------------- +Info 56 [00:02:19.000] Project '/user/username/projects/myproject/random/tsconfig.json' (Configured) +Info 56 [00:02:20.000] Files (2) -Info 56 [16:02:21.000] ----------------------------------------------- -Info 56 [16:02:22.000] Open files: -Info 56 [16:02:23.000] FileName: /user/username/projects/myproject/dependency/FnS.ts ProjectRootPath: undefined -Info 56 [16:02:24.000] Projects: /user/username/projects/myproject/dependency/tsconfig.json +Info 56 [00:02:21.000] ----------------------------------------------- +Info 56 [00:02:22.000] Open files: +Info 56 [00:02:23.000] FileName: /user/username/projects/myproject/dependency/FnS.ts ProjectRootPath: undefined +Info 56 [00:02:24.000] Projects: /user/username/projects/myproject/dependency/tsconfig.json After request PolledWatches:: @@ -1021,11 +1021,11 @@ FsWatchesRecursive:: /user/username/projects/myproject/random: {} -Info 56 [16:02:25.000] response: +Info 56 [00:02:25.000] response: { "responseRequired": false } -Info 57 [16:02:26.000] request: +Info 57 [00:02:26.000] request: { "seq": 0, "type": "request", @@ -1064,22 +1064,22 @@ FsWatchesRecursive:: /user/username/projects/myproject/random: {} -Info 58 [16:02:27.000] FileWatcher:: Close:: WatchInfo: /user/username/projects/myproject/random/random.ts 500 undefined WatchType: Closed Script info -Info 59 [16:02:28.000] Search path: /user/username/projects/myproject/random -Info 60 [16:02:29.000] For info: /user/username/projects/myproject/random/random.ts :: Config file name: /user/username/projects/myproject/random/tsconfig.json -Info 61 [16:02:30.000] Project '/user/username/projects/myproject/dependency/tsconfig.json' (Configured) -Info 61 [16:02:31.000] Files (2) +Info 58 [00:02:27.000] FileWatcher:: Close:: WatchInfo: /user/username/projects/myproject/random/random.ts 500 undefined WatchType: Closed Script info +Info 59 [00:02:28.000] Search path: /user/username/projects/myproject/random +Info 60 [00:02:29.000] For info: /user/username/projects/myproject/random/random.ts :: Config file name: /user/username/projects/myproject/random/tsconfig.json +Info 61 [00:02:30.000] Project '/user/username/projects/myproject/dependency/tsconfig.json' (Configured) +Info 61 [00:02:31.000] Files (2) -Info 61 [16:02:32.000] ----------------------------------------------- -Info 61 [16:02:33.000] Project '/user/username/projects/myproject/random/tsconfig.json' (Configured) -Info 61 [16:02:34.000] Files (2) +Info 61 [00:02:32.000] ----------------------------------------------- +Info 61 [00:02:33.000] Project '/user/username/projects/myproject/random/tsconfig.json' (Configured) +Info 61 [00:02:34.000] Files (2) -Info 61 [16:02:35.000] ----------------------------------------------- -Info 61 [16:02:36.000] Open files: -Info 61 [16:02:37.000] FileName: /user/username/projects/myproject/dependency/FnS.ts ProjectRootPath: undefined -Info 61 [16:02:38.000] Projects: /user/username/projects/myproject/dependency/tsconfig.json -Info 61 [16:02:39.000] FileName: /user/username/projects/myproject/random/random.ts ProjectRootPath: undefined -Info 61 [16:02:40.000] Projects: /user/username/projects/myproject/random/tsconfig.json +Info 61 [00:02:35.000] ----------------------------------------------- +Info 61 [00:02:36.000] Open files: +Info 61 [00:02:37.000] FileName: /user/username/projects/myproject/dependency/FnS.ts ProjectRootPath: undefined +Info 61 [00:02:38.000] Projects: /user/username/projects/myproject/dependency/tsconfig.json +Info 61 [00:02:39.000] FileName: /user/username/projects/myproject/random/random.ts ProjectRootPath: undefined +Info 61 [00:02:40.000] Projects: /user/username/projects/myproject/random/tsconfig.json After request PolledWatches:: @@ -1108,11 +1108,11 @@ FsWatchesRecursive:: /user/username/projects/myproject/random: {} -Info 61 [16:02:41.000] response: +Info 61 [00:02:41.000] response: { "responseRequired": false } -Info 62 [16:02:42.000] request: +Info 62 [00:02:42.000] request: { "seq": 0, "type": "request", @@ -1149,18 +1149,18 @@ FsWatchesRecursive:: /user/username/projects/myproject/random: {} -Info 63 [16:02:43.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/dependency/FnS.ts 500 undefined WatchType: Closed Script info -Info 64 [16:02:44.000] Project '/user/username/projects/myproject/dependency/tsconfig.json' (Configured) -Info 64 [16:02:45.000] Files (2) +Info 63 [00:02:43.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/dependency/FnS.ts 500 undefined WatchType: Closed Script info +Info 64 [00:02:44.000] Project '/user/username/projects/myproject/dependency/tsconfig.json' (Configured) +Info 64 [00:02:45.000] Files (2) -Info 64 [16:02:46.000] ----------------------------------------------- -Info 64 [16:02:47.000] Project '/user/username/projects/myproject/random/tsconfig.json' (Configured) -Info 64 [16:02:48.000] Files (2) +Info 64 [00:02:46.000] ----------------------------------------------- +Info 64 [00:02:47.000] Project '/user/username/projects/myproject/random/tsconfig.json' (Configured) +Info 64 [00:02:48.000] Files (2) -Info 64 [16:02:49.000] ----------------------------------------------- -Info 64 [16:02:50.000] Open files: -Info 64 [16:02:51.000] FileName: /user/username/projects/myproject/random/random.ts ProjectRootPath: undefined -Info 64 [16:02:52.000] Projects: /user/username/projects/myproject/random/tsconfig.json +Info 64 [00:02:49.000] ----------------------------------------------- +Info 64 [00:02:50.000] Open files: +Info 64 [00:02:51.000] FileName: /user/username/projects/myproject/random/random.ts ProjectRootPath: undefined +Info 64 [00:02:52.000] Projects: /user/username/projects/myproject/random/tsconfig.json After request PolledWatches:: @@ -1191,11 +1191,11 @@ FsWatchesRecursive:: /user/username/projects/myproject/random: {} -Info 64 [16:02:53.000] response: +Info 64 [00:02:53.000] response: { "responseRequired": false } -Info 65 [16:02:54.000] request: +Info 65 [00:02:54.000] request: { "seq": 0, "type": "request", @@ -1234,16 +1234,16 @@ FsWatchesRecursive:: /user/username/projects/myproject/random: {} -Info 66 [16:02:55.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/random/random.ts 500 undefined WatchType: Closed Script info -Info 67 [16:02:56.000] Project '/user/username/projects/myproject/dependency/tsconfig.json' (Configured) -Info 67 [16:02:57.000] Files (2) +Info 66 [00:02:55.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/random/random.ts 500 undefined WatchType: Closed Script info +Info 67 [00:02:56.000] Project '/user/username/projects/myproject/dependency/tsconfig.json' (Configured) +Info 67 [00:02:57.000] Files (2) -Info 67 [16:02:58.000] ----------------------------------------------- -Info 67 [16:02:59.000] Project '/user/username/projects/myproject/random/tsconfig.json' (Configured) -Info 67 [16:03:00.000] Files (2) +Info 67 [00:02:58.000] ----------------------------------------------- +Info 67 [00:02:59.000] Project '/user/username/projects/myproject/random/tsconfig.json' (Configured) +Info 67 [00:03:00.000] Files (2) -Info 67 [16:03:01.000] ----------------------------------------------- -Info 67 [16:03:02.000] Open files: +Info 67 [00:03:01.000] ----------------------------------------------- +Info 67 [00:03:02.000] Open files: After request PolledWatches:: @@ -1276,11 +1276,11 @@ FsWatchesRecursive:: /user/username/projects/myproject/random: {} -Info 67 [16:03:03.000] response: +Info 67 [00:03:03.000] response: { "responseRequired": false } -Info 68 [16:03:04.000] request: +Info 68 [00:03:04.000] request: { "seq": 0, "type": "request", @@ -1321,12 +1321,12 @@ FsWatchesRecursive:: /user/username/projects/myproject/random: {} -Info 69 [16:03:05.000] FileWatcher:: Close:: WatchInfo: /user/username/projects/myproject/random/random.ts 500 undefined WatchType: Closed Script info -Info 70 [16:03:06.000] Search path: /user/username/projects/myproject/random -Info 71 [16:03:07.000] For info: /user/username/projects/myproject/random/random.ts :: Config file name: /user/username/projects/myproject/random/tsconfig.json -Info 72 [16:03:08.000] `remove Project:: -Info 73 [16:03:09.000] Project '/user/username/projects/myproject/dependency/tsconfig.json' (Configured) -Info 74 [16:03:10.000] Files (2) +Info 69 [00:03:05.000] FileWatcher:: Close:: WatchInfo: /user/username/projects/myproject/random/random.ts 500 undefined WatchType: Closed Script info +Info 70 [00:03:06.000] Search path: /user/username/projects/myproject/random +Info 71 [00:03:07.000] For info: /user/username/projects/myproject/random/random.ts :: Config file name: /user/username/projects/myproject/random/tsconfig.json +Info 72 [00:03:08.000] `remove Project:: +Info 73 [00:03:09.000] Project '/user/username/projects/myproject/dependency/tsconfig.json' (Configured) +Info 74 [00:03:10.000] Files (2) /a/lib/lib.d.ts /user/username/projects/myproject/dependency/FnS.ts @@ -1336,24 +1336,24 @@ Info 74 [16:03:10.000] Files (2) FnS.ts Matched by default include pattern '**/*' -Info 75 [16:03:11.000] ----------------------------------------------- -Info 76 [16:03:12.000] DirectoryWatcher:: Close:: WatchInfo: /user/username/projects/myproject/dependency 1 undefined Config: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Wild card directory -Info 77 [16:03:13.000] 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 78 [16:03:14.000] FileWatcher:: Close:: WatchInfo: /user/username/projects/myproject/dependency/tsconfig.json 2000 undefined Project: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Config file -Info 79 [16:03:15.000] 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 80 [16:03:16.000] 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 81 [16:03:17.000] DirectoryWatcher:: Close:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Type roots -Info 82 [16:03:18.000] 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 83 [16:03:19.000] FileWatcher:: Close:: WatchInfo: /user/username/projects/myproject/dependency/FnS.ts 500 undefined WatchType: Closed Script info -Info 84 [16:03:20.000] FileWatcher:: Close:: WatchInfo: /user/username/projects/myproject/decls/FnS.d.ts 500 undefined WatchType: Closed Script info -Info 85 [16:03:21.000] FileWatcher:: Close:: WatchInfo: /user/username/projects/myproject/decls/FnS.d.ts.map 500 undefined WatchType: Closed Script info -Info 86 [16:03:22.000] Project '/user/username/projects/myproject/random/tsconfig.json' (Configured) -Info 86 [16:03:23.000] Files (2) - -Info 86 [16:03:24.000] ----------------------------------------------- -Info 86 [16:03:25.000] Open files: -Info 86 [16:03:26.000] FileName: /user/username/projects/myproject/random/random.ts ProjectRootPath: undefined -Info 86 [16:03:27.000] Projects: /user/username/projects/myproject/random/tsconfig.json +Info 75 [00:03:11.000] ----------------------------------------------- +Info 76 [00:03:12.000] DirectoryWatcher:: Close:: WatchInfo: /user/username/projects/myproject/dependency 1 undefined Config: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Wild card directory +Info 77 [00:03:13.000] 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 78 [00:03:14.000] FileWatcher:: Close:: WatchInfo: /user/username/projects/myproject/dependency/tsconfig.json 2000 undefined Project: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Config file +Info 79 [00:03:15.000] 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 80 [00:03:16.000] 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 81 [00:03:17.000] DirectoryWatcher:: Close:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Type roots +Info 82 [00:03:18.000] 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 83 [00:03:19.000] FileWatcher:: Close:: WatchInfo: /user/username/projects/myproject/dependency/FnS.ts 500 undefined WatchType: Closed Script info +Info 84 [00:03:20.000] FileWatcher:: Close:: WatchInfo: /user/username/projects/myproject/decls/FnS.d.ts 500 undefined WatchType: Closed Script info +Info 85 [00:03:21.000] FileWatcher:: Close:: WatchInfo: /user/username/projects/myproject/decls/FnS.d.ts.map 500 undefined WatchType: Closed Script info +Info 86 [00:03:22.000] Project '/user/username/projects/myproject/random/tsconfig.json' (Configured) +Info 86 [00:03:23.000] Files (2) + +Info 86 [00:03:24.000] ----------------------------------------------- +Info 86 [00:03:25.000] Open files: +Info 86 [00:03:26.000] FileName: /user/username/projects/myproject/random/random.ts ProjectRootPath: undefined +Info 86 [00:03:27.000] Projects: /user/username/projects/myproject/random/tsconfig.json After request PolledWatches:: @@ -1372,7 +1372,7 @@ FsWatchesRecursive:: /user/username/projects/myproject/random: {} -Info 86 [16:03:28.000] response: +Info 86 [00:03:28.000] response: { "responseRequired": false } \ No newline at end of file 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 de223267e1c47..6d3c054ceecda 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 @@ -1,5 +1,5 @@ -Info 0 [16:01:03.000] Provided types map file "/a/lib/typesMap.json" doesn't exist -Info 1 [16:01:04.000] request: +Info 0 [00:01:03.000] Provided types map file "/a/lib/typesMap.json" doesn't exist +Info 1 [00:01:04.000] request: { "seq": 0, "type": "request", @@ -200,11 +200,11 @@ FsWatches:: FsWatchesRecursive:: -Info 2 [16:01:05.000] Search path: /user/username/projects/myproject/dependency -Info 3 [16:01:06.000] For info: /user/username/projects/myproject/dependency/FnS.ts :: Config file name: /user/username/projects/myproject/dependency/tsconfig.json -Info 4 [16:01:07.000] Creating configuration project /user/username/projects/myproject/dependency/tsconfig.json -Info 5 [16:01:08.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/dependency/tsconfig.json 2000 undefined Project: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Config file -Info 6 [16:01:09.000] Config: /user/username/projects/myproject/dependency/tsconfig.json : { +Info 2 [00:01:05.000] Search path: /user/username/projects/myproject/dependency +Info 3 [00:01:06.000] For info: /user/username/projects/myproject/dependency/FnS.ts :: Config file name: /user/username/projects/myproject/dependency/tsconfig.json +Info 4 [00:01:07.000] Creating configuration project /user/username/projects/myproject/dependency/tsconfig.json +Info 5 [00:01:08.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/dependency/tsconfig.json 2000 undefined Project: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Config file +Info 6 [00:01:09.000] Config: /user/username/projects/myproject/dependency/tsconfig.json : { "rootNames": [ "/user/username/projects/myproject/dependency/FnS.ts" ], @@ -215,18 +215,18 @@ Info 6 [16:01:09.000] Config: /user/username/projects/myproject/dependency/ts "configFilePath": "/user/username/projects/myproject/dependency/tsconfig.json" } } -Info 7 [16:01:10.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/dependency 1 undefined Config: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Wild card directory -Info 8 [16:01:11.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/dependency 1 undefined Config: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Wild card directory -Info 9 [16:01:12.000] Plugins were requested but not running in environment that supports 'require'. Nothing will be loaded -Info 10 [16:01:13.000] Starting updateGraphWorker: Project: /user/username/projects/myproject/dependency/tsconfig.json -Info 11 [16:01:14.000] FileWatcher:: Added:: WatchInfo: /a/lib/lib.d.ts 500 undefined WatchType: Closed Script info -Info 12 [16:01:15.000] 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 13 [16:01:16.000] 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 14 [16:01:17.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Type roots -Info 15 [16:01:18.000] 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 16 [16:01:19.000] Finishing updateGraphWorker: Project: /user/username/projects/myproject/dependency/tsconfig.json Version: 1 structureChanged: true structureIsReused:: Not Elapsed:: *ms -Info 17 [16:01:20.000] Project '/user/username/projects/myproject/dependency/tsconfig.json' (Configured) -Info 18 [16:01:21.000] Files (2) +Info 7 [00:01:10.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/dependency 1 undefined Config: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Wild card directory +Info 8 [00:01:11.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/dependency 1 undefined Config: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Wild card directory +Info 9 [00:01:12.000] Plugins were requested but not running in environment that supports 'require'. Nothing will be loaded +Info 10 [00:01:13.000] Starting updateGraphWorker: Project: /user/username/projects/myproject/dependency/tsconfig.json +Info 11 [00:01:14.000] FileWatcher:: Added:: WatchInfo: /a/lib/lib.d.ts 500 undefined WatchType: Closed Script info +Info 12 [00:01:15.000] 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 13 [00:01:16.000] 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 14 [00:01:17.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Type roots +Info 15 [00:01:18.000] 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 16 [00:01:19.000] Finishing updateGraphWorker: Project: /user/username/projects/myproject/dependency/tsconfig.json Version: 1 structureChanged: true structureIsReused:: Not Elapsed:: *ms +Info 17 [00:01:20.000] Project '/user/username/projects/myproject/dependency/tsconfig.json' (Configured) +Info 18 [00:01:21.000] Files (2) /a/lib/lib.d.ts /user/username/projects/myproject/dependency/FnS.ts @@ -236,16 +236,16 @@ Info 18 [16:01:21.000] Files (2) FnS.ts Matched by default include pattern '**/*' -Info 19 [16:01:22.000] ----------------------------------------------- -Info 20 [16:01:23.000] Search path: /user/username/projects/myproject/dependency -Info 21 [16:01:24.000] For info: /user/username/projects/myproject/dependency/tsconfig.json :: No config files found. -Info 22 [16:01:25.000] Project '/user/username/projects/myproject/dependency/tsconfig.json' (Configured) -Info 22 [16:01:26.000] Files (2) +Info 19 [00:01:22.000] ----------------------------------------------- +Info 20 [00:01:23.000] Search path: /user/username/projects/myproject/dependency +Info 21 [00:01:24.000] For info: /user/username/projects/myproject/dependency/tsconfig.json :: No config files found. +Info 22 [00:01:25.000] Project '/user/username/projects/myproject/dependency/tsconfig.json' (Configured) +Info 22 [00:01:26.000] Files (2) -Info 22 [16:01:27.000] ----------------------------------------------- -Info 22 [16:01:28.000] Open files: -Info 22 [16:01:29.000] FileName: /user/username/projects/myproject/dependency/FnS.ts ProjectRootPath: undefined -Info 22 [16:01:30.000] Projects: /user/username/projects/myproject/dependency/tsconfig.json +Info 22 [00:01:27.000] ----------------------------------------------- +Info 22 [00:01:28.000] Open files: +Info 22 [00:01:29.000] FileName: /user/username/projects/myproject/dependency/FnS.ts ProjectRootPath: undefined +Info 22 [00:01:30.000] Projects: /user/username/projects/myproject/dependency/tsconfig.json After request PolledWatches:: @@ -264,11 +264,11 @@ FsWatchesRecursive:: /user/username/projects/myproject/dependency: {} -Info 22 [16:01:31.000] response: +Info 22 [00:01:31.000] response: { "responseRequired": false } -Info 23 [16:01:32.000] request: +Info 23 [00:01:32.000] request: { "seq": 0, "type": "request", @@ -295,11 +295,11 @@ FsWatchesRecursive:: /user/username/projects/myproject/dependency: {} -Info 24 [16:01:33.000] Search path: /user/username/projects/myproject/random -Info 25 [16:01:34.000] For info: /user/username/projects/myproject/random/random.ts :: Config file name: /user/username/projects/myproject/random/tsconfig.json -Info 26 [16:01:35.000] Creating configuration project /user/username/projects/myproject/random/tsconfig.json -Info 27 [16:01:36.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/random/tsconfig.json 2000 undefined Project: /user/username/projects/myproject/random/tsconfig.json WatchType: Config file -Info 28 [16:01:37.000] Config: /user/username/projects/myproject/random/tsconfig.json : { +Info 24 [00:01:33.000] Search path: /user/username/projects/myproject/random +Info 25 [00:01:34.000] For info: /user/username/projects/myproject/random/random.ts :: Config file name: /user/username/projects/myproject/random/tsconfig.json +Info 26 [00:01:35.000] Creating configuration project /user/username/projects/myproject/random/tsconfig.json +Info 27 [00:01:36.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/random/tsconfig.json 2000 undefined Project: /user/username/projects/myproject/random/tsconfig.json WatchType: Config file +Info 28 [00:01:37.000] Config: /user/username/projects/myproject/random/tsconfig.json : { "rootNames": [ "/user/username/projects/myproject/random/random.ts" ], @@ -307,17 +307,17 @@ Info 28 [16:01:37.000] Config: /user/username/projects/myproject/random/tsconf "configFilePath": "/user/username/projects/myproject/random/tsconfig.json" } } -Info 29 [16:01:38.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/random 1 undefined Config: /user/username/projects/myproject/random/tsconfig.json WatchType: Wild card directory -Info 30 [16:01:39.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/random 1 undefined Config: /user/username/projects/myproject/random/tsconfig.json WatchType: Wild card directory -Info 31 [16:01:40.000] Plugins were requested but not running in environment that supports 'require'. Nothing will be loaded -Info 32 [16:01:41.000] Starting updateGraphWorker: Project: /user/username/projects/myproject/random/tsconfig.json -Info 33 [16:01:42.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/random/node_modules/@types 1 undefined Project: /user/username/projects/myproject/random/tsconfig.json WatchType: Type roots -Info 34 [16:01:43.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/random/node_modules/@types 1 undefined Project: /user/username/projects/myproject/random/tsconfig.json WatchType: Type roots -Info 35 [16:01:44.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/random/tsconfig.json WatchType: Type roots -Info 36 [16:01:45.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/random/tsconfig.json WatchType: Type roots -Info 37 [16:01:46.000] Finishing updateGraphWorker: Project: /user/username/projects/myproject/random/tsconfig.json Version: 1 structureChanged: true structureIsReused:: Not Elapsed:: *ms -Info 38 [16:01:47.000] Project '/user/username/projects/myproject/random/tsconfig.json' (Configured) -Info 39 [16:01:48.000] Files (2) +Info 29 [00:01:38.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/random 1 undefined Config: /user/username/projects/myproject/random/tsconfig.json WatchType: Wild card directory +Info 30 [00:01:39.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/random 1 undefined Config: /user/username/projects/myproject/random/tsconfig.json WatchType: Wild card directory +Info 31 [00:01:40.000] Plugins were requested but not running in environment that supports 'require'. Nothing will be loaded +Info 32 [00:01:41.000] Starting updateGraphWorker: Project: /user/username/projects/myproject/random/tsconfig.json +Info 33 [00:01:42.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/random/node_modules/@types 1 undefined Project: /user/username/projects/myproject/random/tsconfig.json WatchType: Type roots +Info 34 [00:01:43.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/random/node_modules/@types 1 undefined Project: /user/username/projects/myproject/random/tsconfig.json WatchType: Type roots +Info 35 [00:01:44.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/random/tsconfig.json WatchType: Type roots +Info 36 [00:01:45.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/random/tsconfig.json WatchType: Type roots +Info 37 [00:01:46.000] Finishing updateGraphWorker: Project: /user/username/projects/myproject/random/tsconfig.json Version: 1 structureChanged: true structureIsReused:: Not Elapsed:: *ms +Info 38 [00:01:47.000] Project '/user/username/projects/myproject/random/tsconfig.json' (Configured) +Info 39 [00:01:48.000] Files (2) /a/lib/lib.d.ts /user/username/projects/myproject/random/random.ts @@ -327,20 +327,20 @@ Info 39 [16:01:48.000] Files (2) random.ts Matched by default include pattern '**/*' -Info 40 [16:01:49.000] ----------------------------------------------- -Info 41 [16:01:50.000] Project '/user/username/projects/myproject/dependency/tsconfig.json' (Configured) -Info 41 [16:01:51.000] Files (2) +Info 40 [00:01:49.000] ----------------------------------------------- +Info 41 [00:01:50.000] Project '/user/username/projects/myproject/dependency/tsconfig.json' (Configured) +Info 41 [00:01:51.000] Files (2) -Info 41 [16:01:52.000] ----------------------------------------------- -Info 41 [16:01:53.000] Project '/user/username/projects/myproject/random/tsconfig.json' (Configured) -Info 41 [16:01:54.000] Files (2) +Info 41 [00:01:52.000] ----------------------------------------------- +Info 41 [00:01:53.000] Project '/user/username/projects/myproject/random/tsconfig.json' (Configured) +Info 41 [00:01:54.000] Files (2) -Info 41 [16:01:55.000] ----------------------------------------------- -Info 41 [16:01:56.000] Open files: -Info 41 [16:01:57.000] FileName: /user/username/projects/myproject/dependency/FnS.ts ProjectRootPath: undefined -Info 41 [16:01:58.000] Projects: /user/username/projects/myproject/dependency/tsconfig.json -Info 41 [16:01:59.000] FileName: /user/username/projects/myproject/random/random.ts ProjectRootPath: undefined -Info 41 [16:02:00.000] Projects: /user/username/projects/myproject/random/tsconfig.json +Info 41 [00:01:55.000] ----------------------------------------------- +Info 41 [00:01:56.000] Open files: +Info 41 [00:01:57.000] FileName: /user/username/projects/myproject/dependency/FnS.ts ProjectRootPath: undefined +Info 41 [00:01:58.000] Projects: /user/username/projects/myproject/dependency/tsconfig.json +Info 41 [00:01:59.000] FileName: /user/username/projects/myproject/random/random.ts ProjectRootPath: undefined +Info 41 [00:02:00.000] Projects: /user/username/projects/myproject/random/tsconfig.json After request PolledWatches:: @@ -365,11 +365,11 @@ FsWatchesRecursive:: /user/username/projects/myproject/random: {} -Info 41 [16:02:01.000] response: +Info 41 [00:02:01.000] response: { "responseRequired": false } -Info 42 [16:02:02.000] request: +Info 42 [00:02:02.000] request: { "command": "rename", "arguments": { @@ -404,8 +404,8 @@ FsWatchesRecursive:: /user/username/projects/myproject/random: {} -Info 43 [16:02:03.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/decls/FnS.d.ts 500 undefined WatchType: Closed Script info -Info 44 [16:02:04.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/decls/FnS.d.ts.map 500 undefined WatchType: Closed Script info +Info 43 [00:02:03.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/decls/FnS.d.ts 500 undefined WatchType: Closed Script info +Info 44 [00:02:04.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/decls/FnS.d.ts.map 500 undefined WatchType: Closed Script info After request PolledWatches:: @@ -434,7 +434,7 @@ FsWatchesRecursive:: /user/username/projects/myproject/random: {} -Info 45 [16:02:05.000] response: +Info 45 [00:02:05.000] response: { "response": { "info": { @@ -482,7 +482,7 @@ Info 45 [16:02:05.000] response: }, "responseRequired": true } -Info 46 [16:02:06.000] request: +Info 46 [00:02:06.000] request: { "command": "change", "arguments": { @@ -552,7 +552,7 @@ FsWatchesRecursive:: /user/username/projects/myproject/random: {} -Info 47 [16:02:07.000] response: +Info 47 [00:02:07.000] response: { "responseRequired": false } @@ -612,7 +612,7 @@ FsWatchesRecursive:: /user/username/projects/myproject/random: {} -Info 48 [16:02:08.000] request: +Info 48 [00:02:08.000] request: { "command": "rename", "arguments": { @@ -651,9 +651,9 @@ FsWatchesRecursive:: /user/username/projects/myproject/random: {} -Info 49 [16:02:09.000] Starting updateGraphWorker: Project: /user/username/projects/myproject/dependency/tsconfig.json -Info 50 [16:02:10.000] Finishing updateGraphWorker: Project: /user/username/projects/myproject/dependency/tsconfig.json Version: 2 structureChanged: false structureIsReused:: Completely Elapsed:: *ms -Info 51 [16:02:11.000] Different program with same set of files +Info 49 [00:02:09.000] Starting updateGraphWorker: Project: /user/username/projects/myproject/dependency/tsconfig.json +Info 50 [00:02:10.000] Finishing updateGraphWorker: Project: /user/username/projects/myproject/dependency/tsconfig.json Version: 2 structureChanged: false structureIsReused:: Completely Elapsed:: *ms +Info 51 [00:02:11.000] Different program with same set of files After request PolledWatches:: @@ -682,7 +682,7 @@ FsWatchesRecursive:: /user/username/projects/myproject/random: {} -Info 52 [16:02:12.000] response: +Info 52 [00:02:12.000] response: { "response": { "info": { @@ -730,7 +730,7 @@ Info 52 [16:02:12.000] response: }, "responseRequired": true } -Info 53 [16:02:13.000] request: +Info 53 [00:02:13.000] request: { "command": "rename", "arguments": { @@ -797,7 +797,7 @@ FsWatchesRecursive:: /user/username/projects/myproject/random: {} -Info 54 [16:02:14.000] response: +Info 54 [00:02:14.000] response: { "response": { "info": { @@ -845,7 +845,7 @@ Info 54 [16:02:14.000] response: }, "responseRequired": true } -Info 55 [16:02:15.000] request: +Info 55 [00:02:15.000] request: { "command": "rename", "arguments": { @@ -912,7 +912,7 @@ FsWatchesRecursive:: /user/username/projects/myproject/random: {} -Info 56 [16:02:16.000] response: +Info 56 [00:02:16.000] response: { "response": { "info": { @@ -960,7 +960,7 @@ Info 56 [16:02:16.000] response: }, "responseRequired": true } -Info 57 [16:02:17.000] request: +Info 57 [00:02:17.000] request: { "command": "rename", "arguments": { @@ -1027,7 +1027,7 @@ FsWatchesRecursive:: /user/username/projects/myproject/random: {} -Info 58 [16:02:18.000] response: +Info 58 [00:02:18.000] response: { "response": { "info": { @@ -1075,7 +1075,7 @@ Info 58 [16:02:18.000] response: }, "responseRequired": true } -Info 59 [16:02:19.000] request: +Info 59 [00:02:19.000] request: { "command": "rename", "arguments": { @@ -1142,7 +1142,7 @@ FsWatchesRecursive:: /user/username/projects/myproject/random: {} -Info 60 [16:02:20.000] response: +Info 60 [00:02:20.000] response: { "response": { "info": { 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 9fee4f0f9dd74..5399976f1ea66 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 @@ -1,5 +1,5 @@ -Info 0 [16:01:03.000] Provided types map file "/a/lib/typesMap.json" doesn't exist -Info 1 [16:01:04.000] request: +Info 0 [00:01:03.000] Provided types map file "/a/lib/typesMap.json" doesn't exist +Info 1 [00:01:04.000] request: { "seq": 0, "type": "request", @@ -200,11 +200,11 @@ FsWatches:: FsWatchesRecursive:: -Info 2 [16:01:05.000] Search path: /user/username/projects/myproject/dependency -Info 3 [16:01:06.000] For info: /user/username/projects/myproject/dependency/FnS.ts :: Config file name: /user/username/projects/myproject/dependency/tsconfig.json -Info 4 [16:01:07.000] Creating configuration project /user/username/projects/myproject/dependency/tsconfig.json -Info 5 [16:01:08.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/dependency/tsconfig.json 2000 undefined Project: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Config file -Info 6 [16:01:09.000] Config: /user/username/projects/myproject/dependency/tsconfig.json : { +Info 2 [00:01:05.000] Search path: /user/username/projects/myproject/dependency +Info 3 [00:01:06.000] For info: /user/username/projects/myproject/dependency/FnS.ts :: Config file name: /user/username/projects/myproject/dependency/tsconfig.json +Info 4 [00:01:07.000] Creating configuration project /user/username/projects/myproject/dependency/tsconfig.json +Info 5 [00:01:08.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/dependency/tsconfig.json 2000 undefined Project: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Config file +Info 6 [00:01:09.000] Config: /user/username/projects/myproject/dependency/tsconfig.json : { "rootNames": [ "/user/username/projects/myproject/dependency/FnS.ts" ], @@ -215,18 +215,18 @@ Info 6 [16:01:09.000] Config: /user/username/projects/myproject/dependency/ts "configFilePath": "/user/username/projects/myproject/dependency/tsconfig.json" } } -Info 7 [16:01:10.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/dependency 1 undefined Config: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Wild card directory -Info 8 [16:01:11.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/dependency 1 undefined Config: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Wild card directory -Info 9 [16:01:12.000] Plugins were requested but not running in environment that supports 'require'. Nothing will be loaded -Info 10 [16:01:13.000] Starting updateGraphWorker: Project: /user/username/projects/myproject/dependency/tsconfig.json -Info 11 [16:01:14.000] FileWatcher:: Added:: WatchInfo: /a/lib/lib.d.ts 500 undefined WatchType: Closed Script info -Info 12 [16:01:15.000] 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 13 [16:01:16.000] 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 14 [16:01:17.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Type roots -Info 15 [16:01:18.000] 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 16 [16:01:19.000] Finishing updateGraphWorker: Project: /user/username/projects/myproject/dependency/tsconfig.json Version: 1 structureChanged: true structureIsReused:: Not Elapsed:: *ms -Info 17 [16:01:20.000] Project '/user/username/projects/myproject/dependency/tsconfig.json' (Configured) -Info 18 [16:01:21.000] Files (2) +Info 7 [00:01:10.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/dependency 1 undefined Config: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Wild card directory +Info 8 [00:01:11.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/dependency 1 undefined Config: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Wild card directory +Info 9 [00:01:12.000] Plugins were requested but not running in environment that supports 'require'. Nothing will be loaded +Info 10 [00:01:13.000] Starting updateGraphWorker: Project: /user/username/projects/myproject/dependency/tsconfig.json +Info 11 [00:01:14.000] FileWatcher:: Added:: WatchInfo: /a/lib/lib.d.ts 500 undefined WatchType: Closed Script info +Info 12 [00:01:15.000] 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 13 [00:01:16.000] 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 14 [00:01:17.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Type roots +Info 15 [00:01:18.000] 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 16 [00:01:19.000] Finishing updateGraphWorker: Project: /user/username/projects/myproject/dependency/tsconfig.json Version: 1 structureChanged: true structureIsReused:: Not Elapsed:: *ms +Info 17 [00:01:20.000] Project '/user/username/projects/myproject/dependency/tsconfig.json' (Configured) +Info 18 [00:01:21.000] Files (2) /a/lib/lib.d.ts /user/username/projects/myproject/dependency/FnS.ts @@ -236,16 +236,16 @@ Info 18 [16:01:21.000] Files (2) FnS.ts Matched by default include pattern '**/*' -Info 19 [16:01:22.000] ----------------------------------------------- -Info 20 [16:01:23.000] Search path: /user/username/projects/myproject/dependency -Info 21 [16:01:24.000] For info: /user/username/projects/myproject/dependency/tsconfig.json :: No config files found. -Info 22 [16:01:25.000] Project '/user/username/projects/myproject/dependency/tsconfig.json' (Configured) -Info 22 [16:01:26.000] Files (2) +Info 19 [00:01:22.000] ----------------------------------------------- +Info 20 [00:01:23.000] Search path: /user/username/projects/myproject/dependency +Info 21 [00:01:24.000] For info: /user/username/projects/myproject/dependency/tsconfig.json :: No config files found. +Info 22 [00:01:25.000] Project '/user/username/projects/myproject/dependency/tsconfig.json' (Configured) +Info 22 [00:01:26.000] Files (2) -Info 22 [16:01:27.000] ----------------------------------------------- -Info 22 [16:01:28.000] Open files: -Info 22 [16:01:29.000] FileName: /user/username/projects/myproject/dependency/FnS.ts ProjectRootPath: undefined -Info 22 [16:01:30.000] Projects: /user/username/projects/myproject/dependency/tsconfig.json +Info 22 [00:01:27.000] ----------------------------------------------- +Info 22 [00:01:28.000] Open files: +Info 22 [00:01:29.000] FileName: /user/username/projects/myproject/dependency/FnS.ts ProjectRootPath: undefined +Info 22 [00:01:30.000] Projects: /user/username/projects/myproject/dependency/tsconfig.json After request PolledWatches:: @@ -264,11 +264,11 @@ FsWatchesRecursive:: /user/username/projects/myproject/dependency: {} -Info 22 [16:01:31.000] response: +Info 22 [00:01:31.000] response: { "responseRequired": false } -Info 23 [16:01:32.000] request: +Info 23 [00:01:32.000] request: { "seq": 0, "type": "request", @@ -295,11 +295,11 @@ FsWatchesRecursive:: /user/username/projects/myproject/dependency: {} -Info 24 [16:01:33.000] Search path: /user/username/projects/myproject/random -Info 25 [16:01:34.000] For info: /user/username/projects/myproject/random/random.ts :: Config file name: /user/username/projects/myproject/random/tsconfig.json -Info 26 [16:01:35.000] Creating configuration project /user/username/projects/myproject/random/tsconfig.json -Info 27 [16:01:36.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/random/tsconfig.json 2000 undefined Project: /user/username/projects/myproject/random/tsconfig.json WatchType: Config file -Info 28 [16:01:37.000] Config: /user/username/projects/myproject/random/tsconfig.json : { +Info 24 [00:01:33.000] Search path: /user/username/projects/myproject/random +Info 25 [00:01:34.000] For info: /user/username/projects/myproject/random/random.ts :: Config file name: /user/username/projects/myproject/random/tsconfig.json +Info 26 [00:01:35.000] Creating configuration project /user/username/projects/myproject/random/tsconfig.json +Info 27 [00:01:36.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/random/tsconfig.json 2000 undefined Project: /user/username/projects/myproject/random/tsconfig.json WatchType: Config file +Info 28 [00:01:37.000] Config: /user/username/projects/myproject/random/tsconfig.json : { "rootNames": [ "/user/username/projects/myproject/random/random.ts" ], @@ -307,17 +307,17 @@ Info 28 [16:01:37.000] Config: /user/username/projects/myproject/random/tsconf "configFilePath": "/user/username/projects/myproject/random/tsconfig.json" } } -Info 29 [16:01:38.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/random 1 undefined Config: /user/username/projects/myproject/random/tsconfig.json WatchType: Wild card directory -Info 30 [16:01:39.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/random 1 undefined Config: /user/username/projects/myproject/random/tsconfig.json WatchType: Wild card directory -Info 31 [16:01:40.000] Plugins were requested but not running in environment that supports 'require'. Nothing will be loaded -Info 32 [16:01:41.000] Starting updateGraphWorker: Project: /user/username/projects/myproject/random/tsconfig.json -Info 33 [16:01:42.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/random/node_modules/@types 1 undefined Project: /user/username/projects/myproject/random/tsconfig.json WatchType: Type roots -Info 34 [16:01:43.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/random/node_modules/@types 1 undefined Project: /user/username/projects/myproject/random/tsconfig.json WatchType: Type roots -Info 35 [16:01:44.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/random/tsconfig.json WatchType: Type roots -Info 36 [16:01:45.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/random/tsconfig.json WatchType: Type roots -Info 37 [16:01:46.000] Finishing updateGraphWorker: Project: /user/username/projects/myproject/random/tsconfig.json Version: 1 structureChanged: true structureIsReused:: Not Elapsed:: *ms -Info 38 [16:01:47.000] Project '/user/username/projects/myproject/random/tsconfig.json' (Configured) -Info 39 [16:01:48.000] Files (2) +Info 29 [00:01:38.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/random 1 undefined Config: /user/username/projects/myproject/random/tsconfig.json WatchType: Wild card directory +Info 30 [00:01:39.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/random 1 undefined Config: /user/username/projects/myproject/random/tsconfig.json WatchType: Wild card directory +Info 31 [00:01:40.000] Plugins were requested but not running in environment that supports 'require'. Nothing will be loaded +Info 32 [00:01:41.000] Starting updateGraphWorker: Project: /user/username/projects/myproject/random/tsconfig.json +Info 33 [00:01:42.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/random/node_modules/@types 1 undefined Project: /user/username/projects/myproject/random/tsconfig.json WatchType: Type roots +Info 34 [00:01:43.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/random/node_modules/@types 1 undefined Project: /user/username/projects/myproject/random/tsconfig.json WatchType: Type roots +Info 35 [00:01:44.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/random/tsconfig.json WatchType: Type roots +Info 36 [00:01:45.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/random/tsconfig.json WatchType: Type roots +Info 37 [00:01:46.000] Finishing updateGraphWorker: Project: /user/username/projects/myproject/random/tsconfig.json Version: 1 structureChanged: true structureIsReused:: Not Elapsed:: *ms +Info 38 [00:01:47.000] Project '/user/username/projects/myproject/random/tsconfig.json' (Configured) +Info 39 [00:01:48.000] Files (2) /a/lib/lib.d.ts /user/username/projects/myproject/random/random.ts @@ -327,20 +327,20 @@ Info 39 [16:01:48.000] Files (2) random.ts Matched by default include pattern '**/*' -Info 40 [16:01:49.000] ----------------------------------------------- -Info 41 [16:01:50.000] Project '/user/username/projects/myproject/dependency/tsconfig.json' (Configured) -Info 41 [16:01:51.000] Files (2) +Info 40 [00:01:49.000] ----------------------------------------------- +Info 41 [00:01:50.000] Project '/user/username/projects/myproject/dependency/tsconfig.json' (Configured) +Info 41 [00:01:51.000] Files (2) -Info 41 [16:01:52.000] ----------------------------------------------- -Info 41 [16:01:53.000] Project '/user/username/projects/myproject/random/tsconfig.json' (Configured) -Info 41 [16:01:54.000] Files (2) +Info 41 [00:01:52.000] ----------------------------------------------- +Info 41 [00:01:53.000] Project '/user/username/projects/myproject/random/tsconfig.json' (Configured) +Info 41 [00:01:54.000] Files (2) -Info 41 [16:01:55.000] ----------------------------------------------- -Info 41 [16:01:56.000] Open files: -Info 41 [16:01:57.000] FileName: /user/username/projects/myproject/dependency/FnS.ts ProjectRootPath: undefined -Info 41 [16:01:58.000] Projects: /user/username/projects/myproject/dependency/tsconfig.json -Info 41 [16:01:59.000] FileName: /user/username/projects/myproject/random/random.ts ProjectRootPath: undefined -Info 41 [16:02:00.000] Projects: /user/username/projects/myproject/random/tsconfig.json +Info 41 [00:01:55.000] ----------------------------------------------- +Info 41 [00:01:56.000] Open files: +Info 41 [00:01:57.000] FileName: /user/username/projects/myproject/dependency/FnS.ts ProjectRootPath: undefined +Info 41 [00:01:58.000] Projects: /user/username/projects/myproject/dependency/tsconfig.json +Info 41 [00:01:59.000] FileName: /user/username/projects/myproject/random/random.ts ProjectRootPath: undefined +Info 41 [00:02:00.000] Projects: /user/username/projects/myproject/random/tsconfig.json After request PolledWatches:: @@ -365,11 +365,11 @@ FsWatchesRecursive:: /user/username/projects/myproject/random: {} -Info 41 [16:02:01.000] response: +Info 41 [00:02:01.000] response: { "responseRequired": false } -Info 42 [16:02:02.000] request: +Info 42 [00:02:02.000] request: { "command": "rename", "arguments": { @@ -404,8 +404,8 @@ FsWatchesRecursive:: /user/username/projects/myproject/random: {} -Info 43 [16:02:03.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/decls/FnS.d.ts 500 undefined WatchType: Closed Script info -Info 44 [16:02:04.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/decls/FnS.d.ts.map 500 undefined WatchType: Closed Script info +Info 43 [00:02:03.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/decls/FnS.d.ts 500 undefined WatchType: Closed Script info +Info 44 [00:02:04.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/decls/FnS.d.ts.map 500 undefined WatchType: Closed Script info After request PolledWatches:: @@ -434,7 +434,7 @@ FsWatchesRecursive:: /user/username/projects/myproject/random: {} -Info 45 [16:02:05.000] response: +Info 45 [00:02:05.000] response: { "response": { "info": { @@ -482,7 +482,7 @@ Info 45 [16:02:05.000] response: }, "responseRequired": true } -Info 46 [16:02:06.000] request: +Info 46 [00:02:06.000] request: { "command": "change", "arguments": { @@ -552,11 +552,11 @@ FsWatchesRecursive:: /user/username/projects/myproject/random: {} -Info 47 [16:02:07.000] response: +Info 47 [00:02:07.000] response: { "responseRequired": false } -Info 48 [16:02:08.000] request: +Info 48 [00:02:08.000] request: { "command": "rename", "arguments": { @@ -595,9 +595,9 @@ FsWatchesRecursive:: /user/username/projects/myproject/random: {} -Info 49 [16:02:09.000] Starting updateGraphWorker: Project: /user/username/projects/myproject/dependency/tsconfig.json -Info 50 [16:02:10.000] Finishing updateGraphWorker: Project: /user/username/projects/myproject/dependency/tsconfig.json Version: 2 structureChanged: false structureIsReused:: Completely Elapsed:: *ms -Info 51 [16:02:11.000] Different program with same set of files +Info 49 [00:02:09.000] Starting updateGraphWorker: Project: /user/username/projects/myproject/dependency/tsconfig.json +Info 50 [00:02:10.000] Finishing updateGraphWorker: Project: /user/username/projects/myproject/dependency/tsconfig.json Version: 2 structureChanged: false structureIsReused:: Completely Elapsed:: *ms +Info 51 [00:02:11.000] Different program with same set of files After request PolledWatches:: @@ -626,7 +626,7 @@ FsWatchesRecursive:: /user/username/projects/myproject/random: {} -Info 52 [16:02:12.000] response: +Info 52 [00:02:12.000] response: { "response": { "info": { @@ -674,7 +674,7 @@ Info 52 [16:02:12.000] response: }, "responseRequired": true } -Info 53 [16:02:13.000] request: +Info 53 [00:02:13.000] request: { "command": "rename", "arguments": { @@ -741,7 +741,7 @@ FsWatchesRecursive:: /user/username/projects/myproject/random: {} -Info 54 [16:02:14.000] response: +Info 54 [00:02:14.000] response: { "response": { "info": { @@ -789,7 +789,7 @@ Info 54 [16:02:14.000] response: }, "responseRequired": true } -Info 55 [16:02:15.000] request: +Info 55 [00:02:15.000] request: { "command": "rename", "arguments": { @@ -856,7 +856,7 @@ FsWatchesRecursive:: /user/username/projects/myproject/random: {} -Info 56 [16:02:16.000] response: +Info 56 [00:02:16.000] response: { "response": { "info": { @@ -904,7 +904,7 @@ Info 56 [16:02:16.000] response: }, "responseRequired": true } -Info 57 [16:02:17.000] request: +Info 57 [00:02:17.000] request: { "command": "rename", "arguments": { @@ -971,7 +971,7 @@ FsWatchesRecursive:: /user/username/projects/myproject/random: {} -Info 58 [16:02:18.000] response: +Info 58 [00:02:18.000] response: { "response": { "info": { @@ -1019,7 +1019,7 @@ Info 58 [16:02:18.000] response: }, "responseRequired": true } -Info 59 [16:02:19.000] request: +Info 59 [00:02:19.000] request: { "command": "rename", "arguments": { @@ -1086,7 +1086,7 @@ FsWatchesRecursive:: /user/username/projects/myproject/random: {} -Info 60 [16:02:20.000] response: +Info 60 [00:02:20.000] response: { "response": { "info": { 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 e7285de9051a6..405501f664c94 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 @@ -1,5 +1,5 @@ -Info 0 [16:01:03.000] Provided types map file "/a/lib/typesMap.json" doesn't exist -Info 1 [16:01:04.000] request: +Info 0 [00:01:03.000] Provided types map file "/a/lib/typesMap.json" doesn't exist +Info 1 [00:01:04.000] request: { "seq": 0, "type": "request", @@ -200,11 +200,11 @@ FsWatches:: FsWatchesRecursive:: -Info 2 [16:01:05.000] Search path: /user/username/projects/myproject/main -Info 3 [16:01:06.000] For info: /user/username/projects/myproject/main/main.ts :: Config file name: /user/username/projects/myproject/main/tsconfig.json -Info 4 [16:01:07.000] Creating configuration project /user/username/projects/myproject/main/tsconfig.json -Info 5 [16:01:08.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/main/tsconfig.json 2000 undefined Project: /user/username/projects/myproject/main/tsconfig.json WatchType: Config file -Info 6 [16:01:09.000] Config: /user/username/projects/myproject/main/tsconfig.json : { +Info 2 [00:01:05.000] Search path: /user/username/projects/myproject/main +Info 3 [00:01:06.000] For info: /user/username/projects/myproject/main/main.ts :: Config file name: /user/username/projects/myproject/main/tsconfig.json +Info 4 [00:01:07.000] Creating configuration project /user/username/projects/myproject/main/tsconfig.json +Info 5 [00:01:08.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/main/tsconfig.json 2000 undefined Project: /user/username/projects/myproject/main/tsconfig.json WatchType: Config file +Info 6 [00:01:09.000] Config: /user/username/projects/myproject/main/tsconfig.json : { "rootNames": [ "/user/username/projects/myproject/main/main.ts" ], @@ -214,21 +214,21 @@ Info 6 [16:01:09.000] Config: /user/username/projects/myproject/main/tsconfig "configFilePath": "/user/username/projects/myproject/main/tsconfig.json" } } -Info 7 [16:01:10.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/main 1 undefined Config: /user/username/projects/myproject/main/tsconfig.json WatchType: Wild card directory -Info 8 [16:01:11.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/main 1 undefined Config: /user/username/projects/myproject/main/tsconfig.json WatchType: Wild card directory -Info 9 [16:01:12.000] Plugins were requested but not running in environment that supports 'require'. Nothing will be loaded -Info 10 [16:01:13.000] Starting updateGraphWorker: Project: /user/username/projects/myproject/main/tsconfig.json -Info 11 [16:01:14.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/decls 1 undefined Project: /user/username/projects/myproject/main/tsconfig.json WatchType: Failed Lookup Locations -Info 12 [16:01:15.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/decls 1 undefined Project: /user/username/projects/myproject/main/tsconfig.json WatchType: Failed Lookup Locations -Info 13 [16:01:16.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/decls/fns.d.ts 500 undefined WatchType: Closed Script info -Info 14 [16:01:17.000] FileWatcher:: Added:: WatchInfo: /a/lib/lib.d.ts 500 undefined WatchType: Closed Script info -Info 15 [16:01:18.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/main/node_modules/@types 1 undefined Project: /user/username/projects/myproject/main/tsconfig.json WatchType: Type roots -Info 16 [16:01:19.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/main/node_modules/@types 1 undefined Project: /user/username/projects/myproject/main/tsconfig.json WatchType: Type roots -Info 17 [16:01:20.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/main/tsconfig.json WatchType: Type roots -Info 18 [16:01:21.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/main/tsconfig.json WatchType: Type roots -Info 19 [16:01:22.000] Finishing updateGraphWorker: Project: /user/username/projects/myproject/main/tsconfig.json Version: 1 structureChanged: true structureIsReused:: Not Elapsed:: *ms -Info 20 [16:01:23.000] Project '/user/username/projects/myproject/main/tsconfig.json' (Configured) -Info 21 [16:01:24.000] Files (3) +Info 7 [00:01:10.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/main 1 undefined Config: /user/username/projects/myproject/main/tsconfig.json WatchType: Wild card directory +Info 8 [00:01:11.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/main 1 undefined Config: /user/username/projects/myproject/main/tsconfig.json WatchType: Wild card directory +Info 9 [00:01:12.000] Plugins were requested but not running in environment that supports 'require'. Nothing will be loaded +Info 10 [00:01:13.000] Starting updateGraphWorker: Project: /user/username/projects/myproject/main/tsconfig.json +Info 11 [00:01:14.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/decls 1 undefined Project: /user/username/projects/myproject/main/tsconfig.json WatchType: Failed Lookup Locations +Info 12 [00:01:15.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/decls 1 undefined Project: /user/username/projects/myproject/main/tsconfig.json WatchType: Failed Lookup Locations +Info 13 [00:01:16.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/decls/fns.d.ts 500 undefined WatchType: Closed Script info +Info 14 [00:01:17.000] FileWatcher:: Added:: WatchInfo: /a/lib/lib.d.ts 500 undefined WatchType: Closed Script info +Info 15 [00:01:18.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/main/node_modules/@types 1 undefined Project: /user/username/projects/myproject/main/tsconfig.json WatchType: Type roots +Info 16 [00:01:19.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/main/node_modules/@types 1 undefined Project: /user/username/projects/myproject/main/tsconfig.json WatchType: Type roots +Info 17 [00:01:20.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/main/tsconfig.json WatchType: Type roots +Info 18 [00:01:21.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/main/tsconfig.json WatchType: Type roots +Info 19 [00:01:22.000] Finishing updateGraphWorker: Project: /user/username/projects/myproject/main/tsconfig.json Version: 1 structureChanged: true structureIsReused:: Not Elapsed:: *ms +Info 20 [00:01:23.000] Project '/user/username/projects/myproject/main/tsconfig.json' (Configured) +Info 21 [00:01:24.000] Files (3) /a/lib/lib.d.ts /user/username/projects/myproject/decls/fns.d.ts /user/username/projects/myproject/main/main.ts @@ -241,16 +241,16 @@ Info 21 [16:01:24.000] Files (3) main.ts Matched by default include pattern '**/*' -Info 22 [16:01:25.000] ----------------------------------------------- -Info 23 [16:01:26.000] Search path: /user/username/projects/myproject/main -Info 24 [16:01:27.000] For info: /user/username/projects/myproject/main/tsconfig.json :: No config files found. -Info 25 [16:01:28.000] Project '/user/username/projects/myproject/main/tsconfig.json' (Configured) -Info 25 [16:01:29.000] Files (3) +Info 22 [00:01:25.000] ----------------------------------------------- +Info 23 [00:01:26.000] Search path: /user/username/projects/myproject/main +Info 24 [00:01:27.000] For info: /user/username/projects/myproject/main/tsconfig.json :: No config files found. +Info 25 [00:01:28.000] Project '/user/username/projects/myproject/main/tsconfig.json' (Configured) +Info 25 [00:01:29.000] Files (3) -Info 25 [16:01:30.000] ----------------------------------------------- -Info 25 [16:01:31.000] Open files: -Info 25 [16:01:32.000] FileName: /user/username/projects/myproject/main/main.ts ProjectRootPath: undefined -Info 25 [16:01:33.000] Projects: /user/username/projects/myproject/main/tsconfig.json +Info 25 [00:01:30.000] ----------------------------------------------- +Info 25 [00:01:31.000] Open files: +Info 25 [00:01:32.000] FileName: /user/username/projects/myproject/main/main.ts ProjectRootPath: undefined +Info 25 [00:01:33.000] Projects: /user/username/projects/myproject/main/tsconfig.json After request PolledWatches:: @@ -273,11 +273,11 @@ FsWatchesRecursive:: /user/username/projects/myproject/decls: {} -Info 25 [16:01:34.000] response: +Info 25 [00:01:34.000] response: { "responseRequired": false } -Info 26 [16:01:35.000] request: +Info 26 [00:01:35.000] request: { "seq": 0, "type": "request", @@ -308,11 +308,11 @@ FsWatchesRecursive:: /user/username/projects/myproject/decls: {} -Info 27 [16:01:36.000] Search path: /user/username/projects/myproject/dependency -Info 28 [16:01:37.000] For info: /user/username/projects/myproject/dependency/FnS.ts :: Config file name: /user/username/projects/myproject/dependency/tsconfig.json -Info 29 [16:01:38.000] Creating configuration project /user/username/projects/myproject/dependency/tsconfig.json -Info 30 [16:01:39.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/dependency/tsconfig.json 2000 undefined Project: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Config file -Info 31 [16:01:40.000] Config: /user/username/projects/myproject/dependency/tsconfig.json : { +Info 27 [00:01:36.000] Search path: /user/username/projects/myproject/dependency +Info 28 [00:01:37.000] For info: /user/username/projects/myproject/dependency/FnS.ts :: Config file name: /user/username/projects/myproject/dependency/tsconfig.json +Info 29 [00:01:38.000] Creating configuration project /user/username/projects/myproject/dependency/tsconfig.json +Info 30 [00:01:39.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/dependency/tsconfig.json 2000 undefined Project: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Config file +Info 31 [00:01:40.000] Config: /user/username/projects/myproject/dependency/tsconfig.json : { "rootNames": [ "/user/username/projects/myproject/dependency/FnS.ts" ], @@ -323,17 +323,17 @@ Info 31 [16:01:40.000] Config: /user/username/projects/myproject/dependency/ts "configFilePath": "/user/username/projects/myproject/dependency/tsconfig.json" } } -Info 32 [16:01:41.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/dependency 1 undefined Config: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Wild card directory -Info 33 [16:01:42.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/dependency 1 undefined Config: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Wild card directory -Info 34 [16:01:43.000] Plugins were requested but not running in environment that supports 'require'. Nothing will be loaded -Info 35 [16:01:44.000] Starting updateGraphWorker: Project: /user/username/projects/myproject/dependency/tsconfig.json -Info 36 [16:01:45.000] 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 37 [16:01:46.000] 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 38 [16:01:47.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Type roots -Info 39 [16:01:48.000] 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 40 [16:01:49.000] Finishing updateGraphWorker: Project: /user/username/projects/myproject/dependency/tsconfig.json Version: 1 structureChanged: true structureIsReused:: Not Elapsed:: *ms -Info 41 [16:01:50.000] Project '/user/username/projects/myproject/dependency/tsconfig.json' (Configured) -Info 42 [16:01:51.000] Files (2) +Info 32 [00:01:41.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/dependency 1 undefined Config: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Wild card directory +Info 33 [00:01:42.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/dependency 1 undefined Config: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Wild card directory +Info 34 [00:01:43.000] Plugins were requested but not running in environment that supports 'require'. Nothing will be loaded +Info 35 [00:01:44.000] Starting updateGraphWorker: Project: /user/username/projects/myproject/dependency/tsconfig.json +Info 36 [00:01:45.000] 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 37 [00:01:46.000] 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 38 [00:01:47.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Type roots +Info 39 [00:01:48.000] 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 40 [00:01:49.000] Finishing updateGraphWorker: Project: /user/username/projects/myproject/dependency/tsconfig.json Version: 1 structureChanged: true structureIsReused:: Not Elapsed:: *ms +Info 41 [00:01:50.000] Project '/user/username/projects/myproject/dependency/tsconfig.json' (Configured) +Info 42 [00:01:51.000] Files (2) /a/lib/lib.d.ts /user/username/projects/myproject/dependency/FnS.ts @@ -343,22 +343,22 @@ Info 42 [16:01:51.000] Files (2) FnS.ts Matched by default include pattern '**/*' -Info 43 [16:01:52.000] ----------------------------------------------- -Info 44 [16:01:53.000] Search path: /user/username/projects/myproject/dependency -Info 45 [16:01:54.000] For info: /user/username/projects/myproject/dependency/tsconfig.json :: No config files found. -Info 46 [16:01:55.000] Project '/user/username/projects/myproject/main/tsconfig.json' (Configured) -Info 46 [16:01:56.000] Files (3) - -Info 46 [16:01:57.000] ----------------------------------------------- -Info 46 [16:01:58.000] Project '/user/username/projects/myproject/dependency/tsconfig.json' (Configured) -Info 46 [16:01:59.000] Files (2) - -Info 46 [16:02:00.000] ----------------------------------------------- -Info 46 [16:02:01.000] Open files: -Info 46 [16:02:02.000] FileName: /user/username/projects/myproject/main/main.ts ProjectRootPath: undefined -Info 46 [16:02:03.000] Projects: /user/username/projects/myproject/main/tsconfig.json -Info 46 [16:02:04.000] FileName: /user/username/projects/myproject/dependency/FnS.ts ProjectRootPath: undefined -Info 46 [16:02:05.000] Projects: /user/username/projects/myproject/dependency/tsconfig.json +Info 43 [00:01:52.000] ----------------------------------------------- +Info 44 [00:01:53.000] Search path: /user/username/projects/myproject/dependency +Info 45 [00:01:54.000] For info: /user/username/projects/myproject/dependency/tsconfig.json :: No config files found. +Info 46 [00:01:55.000] Project '/user/username/projects/myproject/main/tsconfig.json' (Configured) +Info 46 [00:01:56.000] Files (3) + +Info 46 [00:01:57.000] ----------------------------------------------- +Info 46 [00:01:58.000] Project '/user/username/projects/myproject/dependency/tsconfig.json' (Configured) +Info 46 [00:01:59.000] Files (2) + +Info 46 [00:02:00.000] ----------------------------------------------- +Info 46 [00:02:01.000] Open files: +Info 46 [00:02:02.000] FileName: /user/username/projects/myproject/main/main.ts ProjectRootPath: undefined +Info 46 [00:02:03.000] Projects: /user/username/projects/myproject/main/tsconfig.json +Info 46 [00:02:04.000] FileName: /user/username/projects/myproject/dependency/FnS.ts ProjectRootPath: undefined +Info 46 [00:02:05.000] Projects: /user/username/projects/myproject/dependency/tsconfig.json After request PolledWatches:: @@ -387,11 +387,11 @@ FsWatchesRecursive:: /user/username/projects/myproject/dependency: {} -Info 46 [16:02:06.000] response: +Info 46 [00:02:06.000] response: { "responseRequired": false } -Info 47 [16:02:07.000] request: +Info 47 [00:02:07.000] request: { "seq": 0, "type": "request", @@ -428,11 +428,11 @@ FsWatchesRecursive:: /user/username/projects/myproject/dependency: {} -Info 48 [16:02:08.000] Search path: /user/username/projects/myproject/random -Info 49 [16:02:09.000] For info: /user/username/projects/myproject/random/random.ts :: Config file name: /user/username/projects/myproject/random/tsconfig.json -Info 50 [16:02:10.000] Creating configuration project /user/username/projects/myproject/random/tsconfig.json -Info 51 [16:02:11.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/random/tsconfig.json 2000 undefined Project: /user/username/projects/myproject/random/tsconfig.json WatchType: Config file -Info 52 [16:02:12.000] Config: /user/username/projects/myproject/random/tsconfig.json : { +Info 48 [00:02:08.000] Search path: /user/username/projects/myproject/random +Info 49 [00:02:09.000] For info: /user/username/projects/myproject/random/random.ts :: Config file name: /user/username/projects/myproject/random/tsconfig.json +Info 50 [00:02:10.000] Creating configuration project /user/username/projects/myproject/random/tsconfig.json +Info 51 [00:02:11.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/random/tsconfig.json 2000 undefined Project: /user/username/projects/myproject/random/tsconfig.json WatchType: Config file +Info 52 [00:02:12.000] Config: /user/username/projects/myproject/random/tsconfig.json : { "rootNames": [ "/user/username/projects/myproject/random/random.ts" ], @@ -440,17 +440,17 @@ Info 52 [16:02:12.000] Config: /user/username/projects/myproject/random/tsconf "configFilePath": "/user/username/projects/myproject/random/tsconfig.json" } } -Info 53 [16:02:13.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/random 1 undefined Config: /user/username/projects/myproject/random/tsconfig.json WatchType: Wild card directory -Info 54 [16:02:14.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/random 1 undefined Config: /user/username/projects/myproject/random/tsconfig.json WatchType: Wild card directory -Info 55 [16:02:15.000] Plugins were requested but not running in environment that supports 'require'. Nothing will be loaded -Info 56 [16:02:16.000] Starting updateGraphWorker: Project: /user/username/projects/myproject/random/tsconfig.json -Info 57 [16:02:17.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/random/node_modules/@types 1 undefined Project: /user/username/projects/myproject/random/tsconfig.json WatchType: Type roots -Info 58 [16:02:18.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/random/node_modules/@types 1 undefined Project: /user/username/projects/myproject/random/tsconfig.json WatchType: Type roots -Info 59 [16:02:19.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/random/tsconfig.json WatchType: Type roots -Info 60 [16:02:20.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/random/tsconfig.json WatchType: Type roots -Info 61 [16:02:21.000] Finishing updateGraphWorker: Project: /user/username/projects/myproject/random/tsconfig.json Version: 1 structureChanged: true structureIsReused:: Not Elapsed:: *ms -Info 62 [16:02:22.000] Project '/user/username/projects/myproject/random/tsconfig.json' (Configured) -Info 63 [16:02:23.000] Files (2) +Info 53 [00:02:13.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/random 1 undefined Config: /user/username/projects/myproject/random/tsconfig.json WatchType: Wild card directory +Info 54 [00:02:14.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/random 1 undefined Config: /user/username/projects/myproject/random/tsconfig.json WatchType: Wild card directory +Info 55 [00:02:15.000] Plugins were requested but not running in environment that supports 'require'. Nothing will be loaded +Info 56 [00:02:16.000] Starting updateGraphWorker: Project: /user/username/projects/myproject/random/tsconfig.json +Info 57 [00:02:17.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/random/node_modules/@types 1 undefined Project: /user/username/projects/myproject/random/tsconfig.json WatchType: Type roots +Info 58 [00:02:18.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/random/node_modules/@types 1 undefined Project: /user/username/projects/myproject/random/tsconfig.json WatchType: Type roots +Info 59 [00:02:19.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/random/tsconfig.json WatchType: Type roots +Info 60 [00:02:20.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/random/tsconfig.json WatchType: Type roots +Info 61 [00:02:21.000] Finishing updateGraphWorker: Project: /user/username/projects/myproject/random/tsconfig.json Version: 1 structureChanged: true structureIsReused:: Not Elapsed:: *ms +Info 62 [00:02:22.000] Project '/user/username/projects/myproject/random/tsconfig.json' (Configured) +Info 63 [00:02:23.000] Files (2) /a/lib/lib.d.ts /user/username/projects/myproject/random/random.ts @@ -460,26 +460,26 @@ Info 63 [16:02:23.000] Files (2) random.ts Matched by default include pattern '**/*' -Info 64 [16:02:24.000] ----------------------------------------------- -Info 65 [16:02:25.000] Project '/user/username/projects/myproject/main/tsconfig.json' (Configured) -Info 65 [16:02:26.000] Files (3) - -Info 65 [16:02:27.000] ----------------------------------------------- -Info 65 [16:02:28.000] Project '/user/username/projects/myproject/dependency/tsconfig.json' (Configured) -Info 65 [16:02:29.000] Files (2) - -Info 65 [16:02:30.000] ----------------------------------------------- -Info 65 [16:02:31.000] Project '/user/username/projects/myproject/random/tsconfig.json' (Configured) -Info 65 [16:02:32.000] Files (2) - -Info 65 [16:02:33.000] ----------------------------------------------- -Info 65 [16:02:34.000] Open files: -Info 65 [16:02:35.000] FileName: /user/username/projects/myproject/main/main.ts ProjectRootPath: undefined -Info 65 [16:02:36.000] Projects: /user/username/projects/myproject/main/tsconfig.json -Info 65 [16:02:37.000] FileName: /user/username/projects/myproject/dependency/FnS.ts ProjectRootPath: undefined -Info 65 [16:02:38.000] Projects: /user/username/projects/myproject/dependency/tsconfig.json -Info 65 [16:02:39.000] FileName: /user/username/projects/myproject/random/random.ts ProjectRootPath: undefined -Info 65 [16:02:40.000] Projects: /user/username/projects/myproject/random/tsconfig.json +Info 64 [00:02:24.000] ----------------------------------------------- +Info 65 [00:02:25.000] Project '/user/username/projects/myproject/main/tsconfig.json' (Configured) +Info 65 [00:02:26.000] Files (3) + +Info 65 [00:02:27.000] ----------------------------------------------- +Info 65 [00:02:28.000] Project '/user/username/projects/myproject/dependency/tsconfig.json' (Configured) +Info 65 [00:02:29.000] Files (2) + +Info 65 [00:02:30.000] ----------------------------------------------- +Info 65 [00:02:31.000] Project '/user/username/projects/myproject/random/tsconfig.json' (Configured) +Info 65 [00:02:32.000] Files (2) + +Info 65 [00:02:33.000] ----------------------------------------------- +Info 65 [00:02:34.000] Open files: +Info 65 [00:02:35.000] FileName: /user/username/projects/myproject/main/main.ts ProjectRootPath: undefined +Info 65 [00:02:36.000] Projects: /user/username/projects/myproject/main/tsconfig.json +Info 65 [00:02:37.000] FileName: /user/username/projects/myproject/dependency/FnS.ts ProjectRootPath: undefined +Info 65 [00:02:38.000] Projects: /user/username/projects/myproject/dependency/tsconfig.json +Info 65 [00:02:39.000] FileName: /user/username/projects/myproject/random/random.ts ProjectRootPath: undefined +Info 65 [00:02:40.000] Projects: /user/username/projects/myproject/random/tsconfig.json After request PolledWatches:: @@ -514,11 +514,11 @@ FsWatchesRecursive:: /user/username/projects/myproject/random: {} -Info 65 [16:02:41.000] response: +Info 65 [00:02:41.000] response: { "responseRequired": false } -Info 66 [16:02:42.000] request: +Info 66 [00:02:42.000] request: { "command": "definitionAndBoundSpan", "arguments": { @@ -563,7 +563,7 @@ FsWatchesRecursive:: /user/username/projects/myproject/random: {} -Info 67 [16:02:43.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/decls/FnS.d.ts.map 500 undefined WatchType: Closed Script info +Info 67 [00:02:43.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/decls/FnS.d.ts.map 500 undefined WatchType: Closed Script info After request PolledWatches:: @@ -600,7 +600,7 @@ FsWatchesRecursive:: /user/username/projects/myproject/random: {} -Info 68 [16:02:44.000] response: +Info 68 [00:02:44.000] response: { "response": { "definitions": [ @@ -637,7 +637,7 @@ Info 68 [16:02:44.000] response: }, "responseRequired": true } -Info 69 [16:02:45.000] request: +Info 69 [00:02:45.000] request: { "command": "rename", "arguments": { @@ -684,8 +684,8 @@ FsWatchesRecursive:: /user/username/projects/myproject/random: {} -Info 70 [16:02:46.000] Search path: /user/username/projects/myproject/dependency -Info 71 [16:02:47.000] For info: /user/username/projects/myproject/dependency/FnS.ts :: Config file name: /user/username/projects/myproject/dependency/tsconfig.json +Info 70 [00:02:46.000] Search path: /user/username/projects/myproject/dependency +Info 71 [00:02:47.000] For info: /user/username/projects/myproject/dependency/FnS.ts :: Config file name: /user/username/projects/myproject/dependency/tsconfig.json After request PolledWatches:: @@ -722,7 +722,7 @@ FsWatchesRecursive:: /user/username/projects/myproject/random: {} -Info 72 [16:02:48.000] response: +Info 72 [00:02:48.000] response: { "response": { "info": { @@ -803,12 +803,12 @@ Info 72 [16:02:48.000] response: }, "responseRequired": true } -Info 73 [16:02:52.000] FileWatcher:: Triggered with /user/username/projects/myproject/decls/fns.d.ts 1:: WatchInfo: /user/username/projects/myproject/decls/fns.d.ts 500 undefined WatchType: Closed Script info -Info 74 [16:02:53.000] Scheduled: /user/username/projects/myproject/main/tsconfig.json -Info 75 [16:02:54.000] Scheduled: *ensureProjectForOpenFiles* -Info 76 [16:02:55.000] Scheduled: /user/username/projects/myproject/dependency/tsconfig.json -Info 77 [16:02:56.000] Scheduled: *ensureProjectForOpenFiles*, Cancelled earlier one -Info 78 [16:02:57.000] Elapsed:: *ms FileWatcher:: Triggered with /user/username/projects/myproject/decls/fns.d.ts 1:: WatchInfo: /user/username/projects/myproject/decls/fns.d.ts 500 undefined WatchType: Closed Script info +Info 73 [00:02:52.000] FileWatcher:: Triggered with /user/username/projects/myproject/decls/fns.d.ts 1:: WatchInfo: /user/username/projects/myproject/decls/fns.d.ts 500 undefined WatchType: Closed Script info +Info 74 [00:02:53.000] Scheduled: /user/username/projects/myproject/main/tsconfig.json +Info 75 [00:02:54.000] Scheduled: *ensureProjectForOpenFiles* +Info 76 [00:02:55.000] Scheduled: /user/username/projects/myproject/dependency/tsconfig.json +Info 77 [00:02:56.000] Scheduled: *ensureProjectForOpenFiles*, Cancelled earlier one +Info 78 [00:02:57.000] Elapsed:: *ms FileWatcher:: Triggered with /user/username/projects/myproject/decls/fns.d.ts 1:: WatchInfo: /user/username/projects/myproject/decls/fns.d.ts 500 undefined WatchType: Closed Script info Before running timeout callbacks //// [/user/username/projects/myproject/decls/FnS.d.ts] export declare function fn1(): void; @@ -854,54 +854,54 @@ FsWatchesRecursive:: /user/username/projects/myproject/random: {} -Info 79 [16:02:58.000] Running: /user/username/projects/myproject/main/tsconfig.json -Info 80 [16:02:59.000] Starting updateGraphWorker: Project: /user/username/projects/myproject/main/tsconfig.json -Info 81 [16:03:00.000] Finishing updateGraphWorker: Project: /user/username/projects/myproject/main/tsconfig.json Version: 2 structureChanged: false structureIsReused:: Completely Elapsed:: *ms -Info 82 [16:03:01.000] Different program with same set of files -Info 83 [16:03:02.000] Running: /user/username/projects/myproject/dependency/tsconfig.json -Info 84 [16:03:03.000] Starting updateGraphWorker: Project: /user/username/projects/myproject/dependency/tsconfig.json -Info 85 [16:03:04.000] Finishing updateGraphWorker: Project: /user/username/projects/myproject/dependency/tsconfig.json Version: 2 structureChanged: false structureIsReused:: Not Elapsed:: *ms -Info 86 [16:03:05.000] Running: *ensureProjectForOpenFiles* -Info 87 [16:03:06.000] Before ensureProjectForOpenFiles: -Info 88 [16:03:07.000] Project '/user/username/projects/myproject/main/tsconfig.json' (Configured) -Info 88 [16:03:08.000] Files (3) - -Info 88 [16:03:09.000] ----------------------------------------------- -Info 88 [16:03:10.000] Project '/user/username/projects/myproject/dependency/tsconfig.json' (Configured) -Info 88 [16:03:11.000] Files (2) - -Info 88 [16:03:12.000] ----------------------------------------------- -Info 88 [16:03:13.000] Project '/user/username/projects/myproject/random/tsconfig.json' (Configured) -Info 88 [16:03:14.000] Files (2) - -Info 88 [16:03:15.000] ----------------------------------------------- -Info 88 [16:03:16.000] Open files: -Info 88 [16:03:17.000] FileName: /user/username/projects/myproject/main/main.ts ProjectRootPath: undefined -Info 88 [16:03:18.000] Projects: /user/username/projects/myproject/main/tsconfig.json -Info 88 [16:03:19.000] FileName: /user/username/projects/myproject/dependency/FnS.ts ProjectRootPath: undefined -Info 88 [16:03:20.000] Projects: /user/username/projects/myproject/dependency/tsconfig.json -Info 88 [16:03:21.000] FileName: /user/username/projects/myproject/random/random.ts ProjectRootPath: undefined -Info 88 [16:03:22.000] Projects: /user/username/projects/myproject/random/tsconfig.json -Info 88 [16:03:23.000] After ensureProjectForOpenFiles: -Info 89 [16:03:24.000] Project '/user/username/projects/myproject/main/tsconfig.json' (Configured) -Info 89 [16:03:25.000] Files (3) - -Info 89 [16:03:26.000] ----------------------------------------------- -Info 89 [16:03:27.000] Project '/user/username/projects/myproject/dependency/tsconfig.json' (Configured) -Info 89 [16:03:28.000] Files (2) - -Info 89 [16:03:29.000] ----------------------------------------------- -Info 89 [16:03:30.000] Project '/user/username/projects/myproject/random/tsconfig.json' (Configured) -Info 89 [16:03:31.000] Files (2) - -Info 89 [16:03:32.000] ----------------------------------------------- -Info 89 [16:03:33.000] Open files: -Info 89 [16:03:34.000] FileName: /user/username/projects/myproject/main/main.ts ProjectRootPath: undefined -Info 89 [16:03:35.000] Projects: /user/username/projects/myproject/main/tsconfig.json -Info 89 [16:03:36.000] FileName: /user/username/projects/myproject/dependency/FnS.ts ProjectRootPath: undefined -Info 89 [16:03:37.000] Projects: /user/username/projects/myproject/dependency/tsconfig.json -Info 89 [16:03:38.000] FileName: /user/username/projects/myproject/random/random.ts ProjectRootPath: undefined -Info 89 [16:03:39.000] Projects: /user/username/projects/myproject/random/tsconfig.json +Info 79 [00:02:58.000] Running: /user/username/projects/myproject/main/tsconfig.json +Info 80 [00:02:59.000] Starting updateGraphWorker: Project: /user/username/projects/myproject/main/tsconfig.json +Info 81 [00:03:00.000] Finishing updateGraphWorker: Project: /user/username/projects/myproject/main/tsconfig.json Version: 2 structureChanged: false structureIsReused:: Completely Elapsed:: *ms +Info 82 [00:03:01.000] Different program with same set of files +Info 83 [00:03:02.000] Running: /user/username/projects/myproject/dependency/tsconfig.json +Info 84 [00:03:03.000] Starting updateGraphWorker: Project: /user/username/projects/myproject/dependency/tsconfig.json +Info 85 [00:03:04.000] Finishing updateGraphWorker: Project: /user/username/projects/myproject/dependency/tsconfig.json Version: 2 structureChanged: false structureIsReused:: Not Elapsed:: *ms +Info 86 [00:03:05.000] Running: *ensureProjectForOpenFiles* +Info 87 [00:03:06.000] Before ensureProjectForOpenFiles: +Info 88 [00:03:07.000] Project '/user/username/projects/myproject/main/tsconfig.json' (Configured) +Info 88 [00:03:08.000] Files (3) + +Info 88 [00:03:09.000] ----------------------------------------------- +Info 88 [00:03:10.000] Project '/user/username/projects/myproject/dependency/tsconfig.json' (Configured) +Info 88 [00:03:11.000] Files (2) + +Info 88 [00:03:12.000] ----------------------------------------------- +Info 88 [00:03:13.000] Project '/user/username/projects/myproject/random/tsconfig.json' (Configured) +Info 88 [00:03:14.000] Files (2) + +Info 88 [00:03:15.000] ----------------------------------------------- +Info 88 [00:03:16.000] Open files: +Info 88 [00:03:17.000] FileName: /user/username/projects/myproject/main/main.ts ProjectRootPath: undefined +Info 88 [00:03:18.000] Projects: /user/username/projects/myproject/main/tsconfig.json +Info 88 [00:03:19.000] FileName: /user/username/projects/myproject/dependency/FnS.ts ProjectRootPath: undefined +Info 88 [00:03:20.000] Projects: /user/username/projects/myproject/dependency/tsconfig.json +Info 88 [00:03:21.000] FileName: /user/username/projects/myproject/random/random.ts ProjectRootPath: undefined +Info 88 [00:03:22.000] Projects: /user/username/projects/myproject/random/tsconfig.json +Info 88 [00:03:23.000] After ensureProjectForOpenFiles: +Info 89 [00:03:24.000] Project '/user/username/projects/myproject/main/tsconfig.json' (Configured) +Info 89 [00:03:25.000] Files (3) + +Info 89 [00:03:26.000] ----------------------------------------------- +Info 89 [00:03:27.000] Project '/user/username/projects/myproject/dependency/tsconfig.json' (Configured) +Info 89 [00:03:28.000] Files (2) + +Info 89 [00:03:29.000] ----------------------------------------------- +Info 89 [00:03:30.000] Project '/user/username/projects/myproject/random/tsconfig.json' (Configured) +Info 89 [00:03:31.000] Files (2) + +Info 89 [00:03:32.000] ----------------------------------------------- +Info 89 [00:03:33.000] Open files: +Info 89 [00:03:34.000] FileName: /user/username/projects/myproject/main/main.ts ProjectRootPath: undefined +Info 89 [00:03:35.000] Projects: /user/username/projects/myproject/main/tsconfig.json +Info 89 [00:03:36.000] FileName: /user/username/projects/myproject/dependency/FnS.ts ProjectRootPath: undefined +Info 89 [00:03:37.000] Projects: /user/username/projects/myproject/dependency/tsconfig.json +Info 89 [00:03:38.000] FileName: /user/username/projects/myproject/random/random.ts ProjectRootPath: undefined +Info 89 [00:03:39.000] Projects: /user/username/projects/myproject/random/tsconfig.json After running timeout callbacks PolledWatches:: @@ -938,7 +938,7 @@ FsWatchesRecursive:: /user/username/projects/myproject/random: {} -Info 89 [16:03:40.000] request: +Info 89 [00:03:40.000] request: { "command": "definitionAndBoundSpan", "arguments": { @@ -1021,7 +1021,7 @@ FsWatchesRecursive:: /user/username/projects/myproject/random: {} -Info 90 [16:03:41.000] response: +Info 90 [00:03:41.000] response: { "response": { "definitions": [ @@ -1058,7 +1058,7 @@ Info 90 [16:03:41.000] response: }, "responseRequired": true } -Info 91 [16:03:42.000] request: +Info 91 [00:03:42.000] request: { "command": "definitionAndBoundSpan", "arguments": { @@ -1141,7 +1141,7 @@ FsWatchesRecursive:: /user/username/projects/myproject/random: {} -Info 92 [16:03:43.000] response: +Info 92 [00:03:43.000] response: { "response": { "definitions": [ @@ -1178,7 +1178,7 @@ Info 92 [16:03:43.000] response: }, "responseRequired": true } -Info 93 [16:03:44.000] request: +Info 93 [00:03:44.000] request: { "command": "definitionAndBoundSpan", "arguments": { @@ -1261,7 +1261,7 @@ FsWatchesRecursive:: /user/username/projects/myproject/random: {} -Info 94 [16:03:45.000] response: +Info 94 [00:03:45.000] response: { "response": { "definitions": [ @@ -1298,7 +1298,7 @@ Info 94 [16:03:45.000] response: }, "responseRequired": true } -Info 95 [16:03:46.000] request: +Info 95 [00:03:46.000] request: { "command": "definitionAndBoundSpan", "arguments": { @@ -1381,7 +1381,7 @@ FsWatchesRecursive:: /user/username/projects/myproject/random: {} -Info 96 [16:03:47.000] response: +Info 96 [00:03:47.000] response: { "response": { "definitions": [ @@ -1418,7 +1418,7 @@ Info 96 [16:03:47.000] response: }, "responseRequired": true } -Info 97 [16:03:48.000] request: +Info 97 [00:03:48.000] request: { "command": "definitionAndBoundSpan", "arguments": { @@ -1501,7 +1501,7 @@ FsWatchesRecursive:: /user/username/projects/myproject/random: {} -Info 98 [16:03:49.000] response: +Info 98 [00:03:49.000] response: { "response": { "definitions": [ @@ -1538,7 +1538,7 @@ Info 98 [16:03:49.000] response: }, "responseRequired": true } -Info 99 [16:03:50.000] request: +Info 99 [00:03:50.000] request: { "command": "rename", "arguments": { @@ -1585,8 +1585,8 @@ FsWatchesRecursive:: /user/username/projects/myproject/random: {} -Info 100 [16:03:51.000] Search path: /user/username/projects/myproject/dependency -Info 101 [16:03:52.000] For info: /user/username/projects/myproject/dependency/FnS.ts :: Config file name: /user/username/projects/myproject/dependency/tsconfig.json +Info 100 [00:03:51.000] Search path: /user/username/projects/myproject/dependency +Info 101 [00:03:52.000] For info: /user/username/projects/myproject/dependency/FnS.ts :: Config file name: /user/username/projects/myproject/dependency/tsconfig.json After request PolledWatches:: @@ -1623,7 +1623,7 @@ FsWatchesRecursive:: /user/username/projects/myproject/random: {} -Info 102 [16:03:53.000] response: +Info 102 [00:03:53.000] response: { "response": { "info": { @@ -1704,7 +1704,7 @@ Info 102 [16:03:53.000] response: }, "responseRequired": true } -Info 103 [16:03:54.000] request: +Info 103 [00:03:54.000] request: { "command": "rename", "arguments": { @@ -1751,8 +1751,8 @@ FsWatchesRecursive:: /user/username/projects/myproject/random: {} -Info 104 [16:03:55.000] Search path: /user/username/projects/myproject/dependency -Info 105 [16:03:56.000] For info: /user/username/projects/myproject/dependency/FnS.ts :: Config file name: /user/username/projects/myproject/dependency/tsconfig.json +Info 104 [00:03:55.000] Search path: /user/username/projects/myproject/dependency +Info 105 [00:03:56.000] For info: /user/username/projects/myproject/dependency/FnS.ts :: Config file name: /user/username/projects/myproject/dependency/tsconfig.json After request PolledWatches:: @@ -1789,7 +1789,7 @@ FsWatchesRecursive:: /user/username/projects/myproject/random: {} -Info 106 [16:03:57.000] response: +Info 106 [00:03:57.000] response: { "response": { "info": { @@ -1870,7 +1870,7 @@ Info 106 [16:03:57.000] response: }, "responseRequired": true } -Info 107 [16:03:58.000] request: +Info 107 [00:03:58.000] request: { "command": "rename", "arguments": { @@ -1917,8 +1917,8 @@ FsWatchesRecursive:: /user/username/projects/myproject/random: {} -Info 108 [16:03:59.000] Search path: /user/username/projects/myproject/dependency -Info 109 [16:04:00.000] For info: /user/username/projects/myproject/dependency/FnS.ts :: Config file name: /user/username/projects/myproject/dependency/tsconfig.json +Info 108 [00:03:59.000] Search path: /user/username/projects/myproject/dependency +Info 109 [00:04:00.000] For info: /user/username/projects/myproject/dependency/FnS.ts :: Config file name: /user/username/projects/myproject/dependency/tsconfig.json After request PolledWatches:: @@ -1955,7 +1955,7 @@ FsWatchesRecursive:: /user/username/projects/myproject/random: {} -Info 110 [16:04:01.000] response: +Info 110 [00:04:01.000] response: { "response": { "info": { @@ -2036,7 +2036,7 @@ Info 110 [16:04:01.000] response: }, "responseRequired": true } -Info 111 [16:04:02.000] request: +Info 111 [00:04:02.000] request: { "command": "rename", "arguments": { @@ -2083,8 +2083,8 @@ FsWatchesRecursive:: /user/username/projects/myproject/random: {} -Info 112 [16:04:03.000] Search path: /user/username/projects/myproject/dependency -Info 113 [16:04:04.000] For info: /user/username/projects/myproject/dependency/FnS.ts :: Config file name: /user/username/projects/myproject/dependency/tsconfig.json +Info 112 [00:04:03.000] Search path: /user/username/projects/myproject/dependency +Info 113 [00:04:04.000] For info: /user/username/projects/myproject/dependency/FnS.ts :: Config file name: /user/username/projects/myproject/dependency/tsconfig.json After request PolledWatches:: @@ -2121,7 +2121,7 @@ FsWatchesRecursive:: /user/username/projects/myproject/random: {} -Info 114 [16:04:05.000] response: +Info 114 [00:04:05.000] response: { "response": { "info": { @@ -2202,7 +2202,7 @@ Info 114 [16:04:05.000] response: }, "responseRequired": true } -Info 115 [16:04:06.000] request: +Info 115 [00:04:06.000] request: { "command": "rename", "arguments": { @@ -2249,8 +2249,8 @@ FsWatchesRecursive:: /user/username/projects/myproject/random: {} -Info 116 [16:04:07.000] Search path: /user/username/projects/myproject/dependency -Info 117 [16:04:08.000] For info: /user/username/projects/myproject/dependency/FnS.ts :: Config file name: /user/username/projects/myproject/dependency/tsconfig.json +Info 116 [00:04:07.000] Search path: /user/username/projects/myproject/dependency +Info 117 [00:04:08.000] For info: /user/username/projects/myproject/dependency/FnS.ts :: Config file name: /user/username/projects/myproject/dependency/tsconfig.json After request PolledWatches:: @@ -2287,7 +2287,7 @@ FsWatchesRecursive:: /user/username/projects/myproject/random: {} -Info 118 [16:04:09.000] response: +Info 118 [00:04:09.000] response: { "response": { "info": { 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 48d7c4a99c9f5..d506ab5a24282 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 @@ -1,5 +1,5 @@ -Info 0 [16:01:03.000] Provided types map file "/a/lib/typesMap.json" doesn't exist -Info 1 [16:01:04.000] request: +Info 0 [00:01:03.000] Provided types map file "/a/lib/typesMap.json" doesn't exist +Info 1 [00:01:04.000] request: { "seq": 0, "type": "request", @@ -200,11 +200,11 @@ FsWatches:: FsWatchesRecursive:: -Info 2 [16:01:05.000] Search path: /user/username/projects/myproject/main -Info 3 [16:01:06.000] For info: /user/username/projects/myproject/main/main.ts :: Config file name: /user/username/projects/myproject/main/tsconfig.json -Info 4 [16:01:07.000] Creating configuration project /user/username/projects/myproject/main/tsconfig.json -Info 5 [16:01:08.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/main/tsconfig.json 2000 undefined Project: /user/username/projects/myproject/main/tsconfig.json WatchType: Config file -Info 6 [16:01:09.000] Config: /user/username/projects/myproject/main/tsconfig.json : { +Info 2 [00:01:05.000] Search path: /user/username/projects/myproject/main +Info 3 [00:01:06.000] For info: /user/username/projects/myproject/main/main.ts :: Config file name: /user/username/projects/myproject/main/tsconfig.json +Info 4 [00:01:07.000] Creating configuration project /user/username/projects/myproject/main/tsconfig.json +Info 5 [00:01:08.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/main/tsconfig.json 2000 undefined Project: /user/username/projects/myproject/main/tsconfig.json WatchType: Config file +Info 6 [00:01:09.000] Config: /user/username/projects/myproject/main/tsconfig.json : { "rootNames": [ "/user/username/projects/myproject/main/main.ts" ], @@ -214,21 +214,21 @@ Info 6 [16:01:09.000] Config: /user/username/projects/myproject/main/tsconfig "configFilePath": "/user/username/projects/myproject/main/tsconfig.json" } } -Info 7 [16:01:10.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/main 1 undefined Config: /user/username/projects/myproject/main/tsconfig.json WatchType: Wild card directory -Info 8 [16:01:11.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/main 1 undefined Config: /user/username/projects/myproject/main/tsconfig.json WatchType: Wild card directory -Info 9 [16:01:12.000] Plugins were requested but not running in environment that supports 'require'. Nothing will be loaded -Info 10 [16:01:13.000] Starting updateGraphWorker: Project: /user/username/projects/myproject/main/tsconfig.json -Info 11 [16:01:14.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/decls 1 undefined Project: /user/username/projects/myproject/main/tsconfig.json WatchType: Failed Lookup Locations -Info 12 [16:01:15.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/decls 1 undefined Project: /user/username/projects/myproject/main/tsconfig.json WatchType: Failed Lookup Locations -Info 13 [16:01:16.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/decls/fns.d.ts 500 undefined WatchType: Closed Script info -Info 14 [16:01:17.000] FileWatcher:: Added:: WatchInfo: /a/lib/lib.d.ts 500 undefined WatchType: Closed Script info -Info 15 [16:01:18.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/main/node_modules/@types 1 undefined Project: /user/username/projects/myproject/main/tsconfig.json WatchType: Type roots -Info 16 [16:01:19.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/main/node_modules/@types 1 undefined Project: /user/username/projects/myproject/main/tsconfig.json WatchType: Type roots -Info 17 [16:01:20.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/main/tsconfig.json WatchType: Type roots -Info 18 [16:01:21.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/main/tsconfig.json WatchType: Type roots -Info 19 [16:01:22.000] Finishing updateGraphWorker: Project: /user/username/projects/myproject/main/tsconfig.json Version: 1 structureChanged: true structureIsReused:: Not Elapsed:: *ms -Info 20 [16:01:23.000] Project '/user/username/projects/myproject/main/tsconfig.json' (Configured) -Info 21 [16:01:24.000] Files (3) +Info 7 [00:01:10.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/main 1 undefined Config: /user/username/projects/myproject/main/tsconfig.json WatchType: Wild card directory +Info 8 [00:01:11.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/main 1 undefined Config: /user/username/projects/myproject/main/tsconfig.json WatchType: Wild card directory +Info 9 [00:01:12.000] Plugins were requested but not running in environment that supports 'require'. Nothing will be loaded +Info 10 [00:01:13.000] Starting updateGraphWorker: Project: /user/username/projects/myproject/main/tsconfig.json +Info 11 [00:01:14.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/decls 1 undefined Project: /user/username/projects/myproject/main/tsconfig.json WatchType: Failed Lookup Locations +Info 12 [00:01:15.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/decls 1 undefined Project: /user/username/projects/myproject/main/tsconfig.json WatchType: Failed Lookup Locations +Info 13 [00:01:16.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/decls/fns.d.ts 500 undefined WatchType: Closed Script info +Info 14 [00:01:17.000] FileWatcher:: Added:: WatchInfo: /a/lib/lib.d.ts 500 undefined WatchType: Closed Script info +Info 15 [00:01:18.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/main/node_modules/@types 1 undefined Project: /user/username/projects/myproject/main/tsconfig.json WatchType: Type roots +Info 16 [00:01:19.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/main/node_modules/@types 1 undefined Project: /user/username/projects/myproject/main/tsconfig.json WatchType: Type roots +Info 17 [00:01:20.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/main/tsconfig.json WatchType: Type roots +Info 18 [00:01:21.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/main/tsconfig.json WatchType: Type roots +Info 19 [00:01:22.000] Finishing updateGraphWorker: Project: /user/username/projects/myproject/main/tsconfig.json Version: 1 structureChanged: true structureIsReused:: Not Elapsed:: *ms +Info 20 [00:01:23.000] Project '/user/username/projects/myproject/main/tsconfig.json' (Configured) +Info 21 [00:01:24.000] Files (3) /a/lib/lib.d.ts /user/username/projects/myproject/decls/fns.d.ts /user/username/projects/myproject/main/main.ts @@ -241,16 +241,16 @@ Info 21 [16:01:24.000] Files (3) main.ts Matched by default include pattern '**/*' -Info 22 [16:01:25.000] ----------------------------------------------- -Info 23 [16:01:26.000] Search path: /user/username/projects/myproject/main -Info 24 [16:01:27.000] For info: /user/username/projects/myproject/main/tsconfig.json :: No config files found. -Info 25 [16:01:28.000] Project '/user/username/projects/myproject/main/tsconfig.json' (Configured) -Info 25 [16:01:29.000] Files (3) +Info 22 [00:01:25.000] ----------------------------------------------- +Info 23 [00:01:26.000] Search path: /user/username/projects/myproject/main +Info 24 [00:01:27.000] For info: /user/username/projects/myproject/main/tsconfig.json :: No config files found. +Info 25 [00:01:28.000] Project '/user/username/projects/myproject/main/tsconfig.json' (Configured) +Info 25 [00:01:29.000] Files (3) -Info 25 [16:01:30.000] ----------------------------------------------- -Info 25 [16:01:31.000] Open files: -Info 25 [16:01:32.000] FileName: /user/username/projects/myproject/main/main.ts ProjectRootPath: undefined -Info 25 [16:01:33.000] Projects: /user/username/projects/myproject/main/tsconfig.json +Info 25 [00:01:30.000] ----------------------------------------------- +Info 25 [00:01:31.000] Open files: +Info 25 [00:01:32.000] FileName: /user/username/projects/myproject/main/main.ts ProjectRootPath: undefined +Info 25 [00:01:33.000] Projects: /user/username/projects/myproject/main/tsconfig.json After request PolledWatches:: @@ -273,11 +273,11 @@ FsWatchesRecursive:: /user/username/projects/myproject/decls: {} -Info 25 [16:01:34.000] response: +Info 25 [00:01:34.000] response: { "responseRequired": false } -Info 26 [16:01:35.000] request: +Info 26 [00:01:35.000] request: { "seq": 0, "type": "request", @@ -308,11 +308,11 @@ FsWatchesRecursive:: /user/username/projects/myproject/decls: {} -Info 27 [16:01:36.000] Search path: /user/username/projects/myproject/dependency -Info 28 [16:01:37.000] For info: /user/username/projects/myproject/dependency/FnS.ts :: Config file name: /user/username/projects/myproject/dependency/tsconfig.json -Info 29 [16:01:38.000] Creating configuration project /user/username/projects/myproject/dependency/tsconfig.json -Info 30 [16:01:39.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/dependency/tsconfig.json 2000 undefined Project: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Config file -Info 31 [16:01:40.000] Config: /user/username/projects/myproject/dependency/tsconfig.json : { +Info 27 [00:01:36.000] Search path: /user/username/projects/myproject/dependency +Info 28 [00:01:37.000] For info: /user/username/projects/myproject/dependency/FnS.ts :: Config file name: /user/username/projects/myproject/dependency/tsconfig.json +Info 29 [00:01:38.000] Creating configuration project /user/username/projects/myproject/dependency/tsconfig.json +Info 30 [00:01:39.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/dependency/tsconfig.json 2000 undefined Project: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Config file +Info 31 [00:01:40.000] Config: /user/username/projects/myproject/dependency/tsconfig.json : { "rootNames": [ "/user/username/projects/myproject/dependency/FnS.ts" ], @@ -323,17 +323,17 @@ Info 31 [16:01:40.000] Config: /user/username/projects/myproject/dependency/ts "configFilePath": "/user/username/projects/myproject/dependency/tsconfig.json" } } -Info 32 [16:01:41.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/dependency 1 undefined Config: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Wild card directory -Info 33 [16:01:42.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/dependency 1 undefined Config: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Wild card directory -Info 34 [16:01:43.000] Plugins were requested but not running in environment that supports 'require'. Nothing will be loaded -Info 35 [16:01:44.000] Starting updateGraphWorker: Project: /user/username/projects/myproject/dependency/tsconfig.json -Info 36 [16:01:45.000] 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 37 [16:01:46.000] 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 38 [16:01:47.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Type roots -Info 39 [16:01:48.000] 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 40 [16:01:49.000] Finishing updateGraphWorker: Project: /user/username/projects/myproject/dependency/tsconfig.json Version: 1 structureChanged: true structureIsReused:: Not Elapsed:: *ms -Info 41 [16:01:50.000] Project '/user/username/projects/myproject/dependency/tsconfig.json' (Configured) -Info 42 [16:01:51.000] Files (2) +Info 32 [00:01:41.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/dependency 1 undefined Config: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Wild card directory +Info 33 [00:01:42.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/dependency 1 undefined Config: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Wild card directory +Info 34 [00:01:43.000] Plugins were requested but not running in environment that supports 'require'. Nothing will be loaded +Info 35 [00:01:44.000] Starting updateGraphWorker: Project: /user/username/projects/myproject/dependency/tsconfig.json +Info 36 [00:01:45.000] 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 37 [00:01:46.000] 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 38 [00:01:47.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Type roots +Info 39 [00:01:48.000] 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 40 [00:01:49.000] Finishing updateGraphWorker: Project: /user/username/projects/myproject/dependency/tsconfig.json Version: 1 structureChanged: true structureIsReused:: Not Elapsed:: *ms +Info 41 [00:01:50.000] Project '/user/username/projects/myproject/dependency/tsconfig.json' (Configured) +Info 42 [00:01:51.000] Files (2) /a/lib/lib.d.ts /user/username/projects/myproject/dependency/FnS.ts @@ -343,22 +343,22 @@ Info 42 [16:01:51.000] Files (2) FnS.ts Matched by default include pattern '**/*' -Info 43 [16:01:52.000] ----------------------------------------------- -Info 44 [16:01:53.000] Search path: /user/username/projects/myproject/dependency -Info 45 [16:01:54.000] For info: /user/username/projects/myproject/dependency/tsconfig.json :: No config files found. -Info 46 [16:01:55.000] Project '/user/username/projects/myproject/main/tsconfig.json' (Configured) -Info 46 [16:01:56.000] Files (3) - -Info 46 [16:01:57.000] ----------------------------------------------- -Info 46 [16:01:58.000] Project '/user/username/projects/myproject/dependency/tsconfig.json' (Configured) -Info 46 [16:01:59.000] Files (2) - -Info 46 [16:02:00.000] ----------------------------------------------- -Info 46 [16:02:01.000] Open files: -Info 46 [16:02:02.000] FileName: /user/username/projects/myproject/main/main.ts ProjectRootPath: undefined -Info 46 [16:02:03.000] Projects: /user/username/projects/myproject/main/tsconfig.json -Info 46 [16:02:04.000] FileName: /user/username/projects/myproject/dependency/FnS.ts ProjectRootPath: undefined -Info 46 [16:02:05.000] Projects: /user/username/projects/myproject/dependency/tsconfig.json +Info 43 [00:01:52.000] ----------------------------------------------- +Info 44 [00:01:53.000] Search path: /user/username/projects/myproject/dependency +Info 45 [00:01:54.000] For info: /user/username/projects/myproject/dependency/tsconfig.json :: No config files found. +Info 46 [00:01:55.000] Project '/user/username/projects/myproject/main/tsconfig.json' (Configured) +Info 46 [00:01:56.000] Files (3) + +Info 46 [00:01:57.000] ----------------------------------------------- +Info 46 [00:01:58.000] Project '/user/username/projects/myproject/dependency/tsconfig.json' (Configured) +Info 46 [00:01:59.000] Files (2) + +Info 46 [00:02:00.000] ----------------------------------------------- +Info 46 [00:02:01.000] Open files: +Info 46 [00:02:02.000] FileName: /user/username/projects/myproject/main/main.ts ProjectRootPath: undefined +Info 46 [00:02:03.000] Projects: /user/username/projects/myproject/main/tsconfig.json +Info 46 [00:02:04.000] FileName: /user/username/projects/myproject/dependency/FnS.ts ProjectRootPath: undefined +Info 46 [00:02:05.000] Projects: /user/username/projects/myproject/dependency/tsconfig.json After request PolledWatches:: @@ -387,11 +387,11 @@ FsWatchesRecursive:: /user/username/projects/myproject/dependency: {} -Info 46 [16:02:06.000] response: +Info 46 [00:02:06.000] response: { "responseRequired": false } -Info 47 [16:02:07.000] request: +Info 47 [00:02:07.000] request: { "seq": 0, "type": "request", @@ -428,11 +428,11 @@ FsWatchesRecursive:: /user/username/projects/myproject/dependency: {} -Info 48 [16:02:08.000] Search path: /user/username/projects/myproject/random -Info 49 [16:02:09.000] For info: /user/username/projects/myproject/random/random.ts :: Config file name: /user/username/projects/myproject/random/tsconfig.json -Info 50 [16:02:10.000] Creating configuration project /user/username/projects/myproject/random/tsconfig.json -Info 51 [16:02:11.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/random/tsconfig.json 2000 undefined Project: /user/username/projects/myproject/random/tsconfig.json WatchType: Config file -Info 52 [16:02:12.000] Config: /user/username/projects/myproject/random/tsconfig.json : { +Info 48 [00:02:08.000] Search path: /user/username/projects/myproject/random +Info 49 [00:02:09.000] For info: /user/username/projects/myproject/random/random.ts :: Config file name: /user/username/projects/myproject/random/tsconfig.json +Info 50 [00:02:10.000] Creating configuration project /user/username/projects/myproject/random/tsconfig.json +Info 51 [00:02:11.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/random/tsconfig.json 2000 undefined Project: /user/username/projects/myproject/random/tsconfig.json WatchType: Config file +Info 52 [00:02:12.000] Config: /user/username/projects/myproject/random/tsconfig.json : { "rootNames": [ "/user/username/projects/myproject/random/random.ts" ], @@ -440,17 +440,17 @@ Info 52 [16:02:12.000] Config: /user/username/projects/myproject/random/tsconf "configFilePath": "/user/username/projects/myproject/random/tsconfig.json" } } -Info 53 [16:02:13.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/random 1 undefined Config: /user/username/projects/myproject/random/tsconfig.json WatchType: Wild card directory -Info 54 [16:02:14.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/random 1 undefined Config: /user/username/projects/myproject/random/tsconfig.json WatchType: Wild card directory -Info 55 [16:02:15.000] Plugins were requested but not running in environment that supports 'require'. Nothing will be loaded -Info 56 [16:02:16.000] Starting updateGraphWorker: Project: /user/username/projects/myproject/random/tsconfig.json -Info 57 [16:02:17.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/random/node_modules/@types 1 undefined Project: /user/username/projects/myproject/random/tsconfig.json WatchType: Type roots -Info 58 [16:02:18.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/random/node_modules/@types 1 undefined Project: /user/username/projects/myproject/random/tsconfig.json WatchType: Type roots -Info 59 [16:02:19.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/random/tsconfig.json WatchType: Type roots -Info 60 [16:02:20.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/random/tsconfig.json WatchType: Type roots -Info 61 [16:02:21.000] Finishing updateGraphWorker: Project: /user/username/projects/myproject/random/tsconfig.json Version: 1 structureChanged: true structureIsReused:: Not Elapsed:: *ms -Info 62 [16:02:22.000] Project '/user/username/projects/myproject/random/tsconfig.json' (Configured) -Info 63 [16:02:23.000] Files (2) +Info 53 [00:02:13.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/random 1 undefined Config: /user/username/projects/myproject/random/tsconfig.json WatchType: Wild card directory +Info 54 [00:02:14.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/random 1 undefined Config: /user/username/projects/myproject/random/tsconfig.json WatchType: Wild card directory +Info 55 [00:02:15.000] Plugins were requested but not running in environment that supports 'require'. Nothing will be loaded +Info 56 [00:02:16.000] Starting updateGraphWorker: Project: /user/username/projects/myproject/random/tsconfig.json +Info 57 [00:02:17.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/random/node_modules/@types 1 undefined Project: /user/username/projects/myproject/random/tsconfig.json WatchType: Type roots +Info 58 [00:02:18.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/random/node_modules/@types 1 undefined Project: /user/username/projects/myproject/random/tsconfig.json WatchType: Type roots +Info 59 [00:02:19.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/random/tsconfig.json WatchType: Type roots +Info 60 [00:02:20.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/random/tsconfig.json WatchType: Type roots +Info 61 [00:02:21.000] Finishing updateGraphWorker: Project: /user/username/projects/myproject/random/tsconfig.json Version: 1 structureChanged: true structureIsReused:: Not Elapsed:: *ms +Info 62 [00:02:22.000] Project '/user/username/projects/myproject/random/tsconfig.json' (Configured) +Info 63 [00:02:23.000] Files (2) /a/lib/lib.d.ts /user/username/projects/myproject/random/random.ts @@ -460,26 +460,26 @@ Info 63 [16:02:23.000] Files (2) random.ts Matched by default include pattern '**/*' -Info 64 [16:02:24.000] ----------------------------------------------- -Info 65 [16:02:25.000] Project '/user/username/projects/myproject/main/tsconfig.json' (Configured) -Info 65 [16:02:26.000] Files (3) - -Info 65 [16:02:27.000] ----------------------------------------------- -Info 65 [16:02:28.000] Project '/user/username/projects/myproject/dependency/tsconfig.json' (Configured) -Info 65 [16:02:29.000] Files (2) - -Info 65 [16:02:30.000] ----------------------------------------------- -Info 65 [16:02:31.000] Project '/user/username/projects/myproject/random/tsconfig.json' (Configured) -Info 65 [16:02:32.000] Files (2) - -Info 65 [16:02:33.000] ----------------------------------------------- -Info 65 [16:02:34.000] Open files: -Info 65 [16:02:35.000] FileName: /user/username/projects/myproject/main/main.ts ProjectRootPath: undefined -Info 65 [16:02:36.000] Projects: /user/username/projects/myproject/main/tsconfig.json -Info 65 [16:02:37.000] FileName: /user/username/projects/myproject/dependency/FnS.ts ProjectRootPath: undefined -Info 65 [16:02:38.000] Projects: /user/username/projects/myproject/dependency/tsconfig.json -Info 65 [16:02:39.000] FileName: /user/username/projects/myproject/random/random.ts ProjectRootPath: undefined -Info 65 [16:02:40.000] Projects: /user/username/projects/myproject/random/tsconfig.json +Info 64 [00:02:24.000] ----------------------------------------------- +Info 65 [00:02:25.000] Project '/user/username/projects/myproject/main/tsconfig.json' (Configured) +Info 65 [00:02:26.000] Files (3) + +Info 65 [00:02:27.000] ----------------------------------------------- +Info 65 [00:02:28.000] Project '/user/username/projects/myproject/dependency/tsconfig.json' (Configured) +Info 65 [00:02:29.000] Files (2) + +Info 65 [00:02:30.000] ----------------------------------------------- +Info 65 [00:02:31.000] Project '/user/username/projects/myproject/random/tsconfig.json' (Configured) +Info 65 [00:02:32.000] Files (2) + +Info 65 [00:02:33.000] ----------------------------------------------- +Info 65 [00:02:34.000] Open files: +Info 65 [00:02:35.000] FileName: /user/username/projects/myproject/main/main.ts ProjectRootPath: undefined +Info 65 [00:02:36.000] Projects: /user/username/projects/myproject/main/tsconfig.json +Info 65 [00:02:37.000] FileName: /user/username/projects/myproject/dependency/FnS.ts ProjectRootPath: undefined +Info 65 [00:02:38.000] Projects: /user/username/projects/myproject/dependency/tsconfig.json +Info 65 [00:02:39.000] FileName: /user/username/projects/myproject/random/random.ts ProjectRootPath: undefined +Info 65 [00:02:40.000] Projects: /user/username/projects/myproject/random/tsconfig.json After request PolledWatches:: @@ -514,11 +514,11 @@ FsWatchesRecursive:: /user/username/projects/myproject/random: {} -Info 65 [16:02:41.000] response: +Info 65 [00:02:41.000] response: { "responseRequired": false } -Info 66 [16:02:42.000] request: +Info 66 [00:02:42.000] request: { "command": "definitionAndBoundSpan", "arguments": { @@ -563,7 +563,7 @@ FsWatchesRecursive:: /user/username/projects/myproject/random: {} -Info 67 [16:02:43.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/decls/FnS.d.ts.map 500 undefined WatchType: Closed Script info +Info 67 [00:02:43.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/decls/FnS.d.ts.map 500 undefined WatchType: Closed Script info After request PolledWatches:: @@ -600,7 +600,7 @@ FsWatchesRecursive:: /user/username/projects/myproject/random: {} -Info 68 [16:02:44.000] response: +Info 68 [00:02:44.000] response: { "response": { "definitions": [ @@ -637,7 +637,7 @@ Info 68 [16:02:44.000] response: }, "responseRequired": true } -Info 69 [16:02:45.000] request: +Info 69 [00:02:45.000] request: { "command": "rename", "arguments": { @@ -684,8 +684,8 @@ FsWatchesRecursive:: /user/username/projects/myproject/random: {} -Info 70 [16:02:46.000] Search path: /user/username/projects/myproject/dependency -Info 71 [16:02:47.000] For info: /user/username/projects/myproject/dependency/FnS.ts :: Config file name: /user/username/projects/myproject/dependency/tsconfig.json +Info 70 [00:02:46.000] Search path: /user/username/projects/myproject/dependency +Info 71 [00:02:47.000] For info: /user/username/projects/myproject/dependency/FnS.ts :: Config file name: /user/username/projects/myproject/dependency/tsconfig.json After request PolledWatches:: @@ -722,7 +722,7 @@ FsWatchesRecursive:: /user/username/projects/myproject/random: {} -Info 72 [16:02:48.000] response: +Info 72 [00:02:48.000] response: { "response": { "info": { @@ -803,13 +803,13 @@ Info 72 [16:02:48.000] response: }, "responseRequired": true } -Info 73 [16:02:52.000] FileWatcher:: Triggered with /user/username/projects/myproject/decls/fns.d.ts 1:: WatchInfo: /user/username/projects/myproject/decls/fns.d.ts 500 undefined WatchType: Closed Script info -Info 74 [16:02:53.000] Scheduled: /user/username/projects/myproject/main/tsconfig.json -Info 75 [16:02:54.000] Scheduled: *ensureProjectForOpenFiles* -Info 76 [16:02:55.000] Scheduled: /user/username/projects/myproject/dependency/tsconfig.json -Info 77 [16:02:56.000] Scheduled: *ensureProjectForOpenFiles*, Cancelled earlier one -Info 78 [16:02:57.000] Elapsed:: *ms FileWatcher:: Triggered with /user/username/projects/myproject/decls/fns.d.ts 1:: WatchInfo: /user/username/projects/myproject/decls/fns.d.ts 500 undefined WatchType: Closed Script info -Info 79 [16:02:58.000] request: +Info 73 [00:02:52.000] FileWatcher:: Triggered with /user/username/projects/myproject/decls/fns.d.ts 1:: WatchInfo: /user/username/projects/myproject/decls/fns.d.ts 500 undefined WatchType: Closed Script info +Info 74 [00:02:53.000] Scheduled: /user/username/projects/myproject/main/tsconfig.json +Info 75 [00:02:54.000] Scheduled: *ensureProjectForOpenFiles* +Info 76 [00:02:55.000] Scheduled: /user/username/projects/myproject/dependency/tsconfig.json +Info 77 [00:02:56.000] Scheduled: *ensureProjectForOpenFiles*, Cancelled earlier one +Info 78 [00:02:57.000] Elapsed:: *ms FileWatcher:: Triggered with /user/username/projects/myproject/decls/fns.d.ts 1:: WatchInfo: /user/username/projects/myproject/decls/fns.d.ts 500 undefined WatchType: Closed Script info +Info 79 [00:02:58.000] request: { "command": "definitionAndBoundSpan", "arguments": { @@ -865,9 +865,9 @@ FsWatchesRecursive:: /user/username/projects/myproject/random: {} -Info 80 [16:02:59.000] Starting updateGraphWorker: Project: /user/username/projects/myproject/main/tsconfig.json -Info 81 [16:03:00.000] Finishing updateGraphWorker: Project: /user/username/projects/myproject/main/tsconfig.json Version: 2 structureChanged: false structureIsReused:: Completely Elapsed:: *ms -Info 82 [16:03:01.000] Different program with same set of files +Info 80 [00:02:59.000] Starting updateGraphWorker: Project: /user/username/projects/myproject/main/tsconfig.json +Info 81 [00:03:00.000] Finishing updateGraphWorker: Project: /user/username/projects/myproject/main/tsconfig.json Version: 2 structureChanged: false structureIsReused:: Completely Elapsed:: *ms +Info 82 [00:03:01.000] Different program with same set of files After request PolledWatches:: @@ -904,7 +904,7 @@ FsWatchesRecursive:: /user/username/projects/myproject/random: {} -Info 83 [16:03:02.000] response: +Info 83 [00:03:02.000] response: { "response": { "definitions": [ @@ -941,7 +941,7 @@ Info 83 [16:03:02.000] response: }, "responseRequired": true } -Info 84 [16:03:03.000] request: +Info 84 [00:03:03.000] request: { "command": "definitionAndBoundSpan", "arguments": { @@ -1024,7 +1024,7 @@ FsWatchesRecursive:: /user/username/projects/myproject/random: {} -Info 85 [16:03:04.000] response: +Info 85 [00:03:04.000] response: { "response": { "definitions": [ @@ -1061,7 +1061,7 @@ Info 85 [16:03:04.000] response: }, "responseRequired": true } -Info 86 [16:03:05.000] request: +Info 86 [00:03:05.000] request: { "command": "definitionAndBoundSpan", "arguments": { @@ -1144,7 +1144,7 @@ FsWatchesRecursive:: /user/username/projects/myproject/random: {} -Info 87 [16:03:06.000] response: +Info 87 [00:03:06.000] response: { "response": { "definitions": [ @@ -1181,7 +1181,7 @@ Info 87 [16:03:06.000] response: }, "responseRequired": true } -Info 88 [16:03:07.000] request: +Info 88 [00:03:07.000] request: { "command": "definitionAndBoundSpan", "arguments": { @@ -1264,7 +1264,7 @@ FsWatchesRecursive:: /user/username/projects/myproject/random: {} -Info 89 [16:03:08.000] response: +Info 89 [00:03:08.000] response: { "response": { "definitions": [ @@ -1301,7 +1301,7 @@ Info 89 [16:03:08.000] response: }, "responseRequired": true } -Info 90 [16:03:09.000] request: +Info 90 [00:03:09.000] request: { "command": "definitionAndBoundSpan", "arguments": { @@ -1384,7 +1384,7 @@ FsWatchesRecursive:: /user/username/projects/myproject/random: {} -Info 91 [16:03:10.000] response: +Info 91 [00:03:10.000] response: { "response": { "definitions": [ @@ -1421,7 +1421,7 @@ Info 91 [16:03:10.000] response: }, "responseRequired": true } -Info 92 [16:03:11.000] request: +Info 92 [00:03:11.000] request: { "command": "rename", "arguments": { @@ -1468,10 +1468,10 @@ FsWatchesRecursive:: /user/username/projects/myproject/random: {} -Info 93 [16:03:12.000] Starting updateGraphWorker: Project: /user/username/projects/myproject/dependency/tsconfig.json -Info 94 [16:03:13.000] Finishing updateGraphWorker: Project: /user/username/projects/myproject/dependency/tsconfig.json Version: 2 structureChanged: false structureIsReused:: Not Elapsed:: *ms -Info 95 [16:03:14.000] Search path: /user/username/projects/myproject/dependency -Info 96 [16:03:15.000] For info: /user/username/projects/myproject/dependency/FnS.ts :: Config file name: /user/username/projects/myproject/dependency/tsconfig.json +Info 93 [00:03:12.000] Starting updateGraphWorker: Project: /user/username/projects/myproject/dependency/tsconfig.json +Info 94 [00:03:13.000] Finishing updateGraphWorker: Project: /user/username/projects/myproject/dependency/tsconfig.json Version: 2 structureChanged: false structureIsReused:: Not Elapsed:: *ms +Info 95 [00:03:14.000] Search path: /user/username/projects/myproject/dependency +Info 96 [00:03:15.000] For info: /user/username/projects/myproject/dependency/FnS.ts :: Config file name: /user/username/projects/myproject/dependency/tsconfig.json After request PolledWatches:: @@ -1508,7 +1508,7 @@ FsWatchesRecursive:: /user/username/projects/myproject/random: {} -Info 97 [16:03:16.000] response: +Info 97 [00:03:16.000] response: { "response": { "info": { @@ -1589,7 +1589,7 @@ Info 97 [16:03:16.000] response: }, "responseRequired": true } -Info 98 [16:03:17.000] request: +Info 98 [00:03:17.000] request: { "command": "rename", "arguments": { @@ -1636,8 +1636,8 @@ FsWatchesRecursive:: /user/username/projects/myproject/random: {} -Info 99 [16:03:18.000] Search path: /user/username/projects/myproject/dependency -Info 100 [16:03:19.000] For info: /user/username/projects/myproject/dependency/FnS.ts :: Config file name: /user/username/projects/myproject/dependency/tsconfig.json +Info 99 [00:03:18.000] Search path: /user/username/projects/myproject/dependency +Info 100 [00:03:19.000] For info: /user/username/projects/myproject/dependency/FnS.ts :: Config file name: /user/username/projects/myproject/dependency/tsconfig.json After request PolledWatches:: @@ -1674,7 +1674,7 @@ FsWatchesRecursive:: /user/username/projects/myproject/random: {} -Info 101 [16:03:20.000] response: +Info 101 [00:03:20.000] response: { "response": { "info": { @@ -1755,7 +1755,7 @@ Info 101 [16:03:20.000] response: }, "responseRequired": true } -Info 102 [16:03:21.000] request: +Info 102 [00:03:21.000] request: { "command": "rename", "arguments": { @@ -1802,8 +1802,8 @@ FsWatchesRecursive:: /user/username/projects/myproject/random: {} -Info 103 [16:03:22.000] Search path: /user/username/projects/myproject/dependency -Info 104 [16:03:23.000] For info: /user/username/projects/myproject/dependency/FnS.ts :: Config file name: /user/username/projects/myproject/dependency/tsconfig.json +Info 103 [00:03:22.000] Search path: /user/username/projects/myproject/dependency +Info 104 [00:03:23.000] For info: /user/username/projects/myproject/dependency/FnS.ts :: Config file name: /user/username/projects/myproject/dependency/tsconfig.json After request PolledWatches:: @@ -1840,7 +1840,7 @@ FsWatchesRecursive:: /user/username/projects/myproject/random: {} -Info 105 [16:03:24.000] response: +Info 105 [00:03:24.000] response: { "response": { "info": { @@ -1921,7 +1921,7 @@ Info 105 [16:03:24.000] response: }, "responseRequired": true } -Info 106 [16:03:25.000] request: +Info 106 [00:03:25.000] request: { "command": "rename", "arguments": { @@ -1968,8 +1968,8 @@ FsWatchesRecursive:: /user/username/projects/myproject/random: {} -Info 107 [16:03:26.000] Search path: /user/username/projects/myproject/dependency -Info 108 [16:03:27.000] For info: /user/username/projects/myproject/dependency/FnS.ts :: Config file name: /user/username/projects/myproject/dependency/tsconfig.json +Info 107 [00:03:26.000] Search path: /user/username/projects/myproject/dependency +Info 108 [00:03:27.000] For info: /user/username/projects/myproject/dependency/FnS.ts :: Config file name: /user/username/projects/myproject/dependency/tsconfig.json After request PolledWatches:: @@ -2006,7 +2006,7 @@ FsWatchesRecursive:: /user/username/projects/myproject/random: {} -Info 109 [16:03:28.000] response: +Info 109 [00:03:28.000] response: { "response": { "info": { @@ -2087,7 +2087,7 @@ Info 109 [16:03:28.000] response: }, "responseRequired": true } -Info 110 [16:03:29.000] request: +Info 110 [00:03:29.000] request: { "command": "rename", "arguments": { @@ -2134,8 +2134,8 @@ FsWatchesRecursive:: /user/username/projects/myproject/random: {} -Info 111 [16:03:30.000] Search path: /user/username/projects/myproject/dependency -Info 112 [16:03:31.000] For info: /user/username/projects/myproject/dependency/FnS.ts :: Config file name: /user/username/projects/myproject/dependency/tsconfig.json +Info 111 [00:03:30.000] Search path: /user/username/projects/myproject/dependency +Info 112 [00:03:31.000] For info: /user/username/projects/myproject/dependency/FnS.ts :: Config file name: /user/username/projects/myproject/dependency/tsconfig.json After request PolledWatches:: @@ -2172,7 +2172,7 @@ FsWatchesRecursive:: /user/username/projects/myproject/random: {} -Info 113 [16:03:32.000] response: +Info 113 [00:03:32.000] response: { "response": { "info": { 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 a7901bf80533d..93870e607bc51 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 @@ -1,5 +1,5 @@ -Info 0 [16:01:04.000] Provided types map file "/a/lib/typesMap.json" doesn't exist -Info 1 [16:01:05.000] request: +Info 0 [00:01:04.000] Provided types map file "/a/lib/typesMap.json" doesn't exist +Info 1 [00:01:05.000] request: { "seq": 0, "type": "request", @@ -192,11 +192,11 @@ FsWatches:: FsWatchesRecursive:: -Info 2 [16:01:06.000] Search path: /user/username/projects/myproject/main -Info 3 [16:01:07.000] For info: /user/username/projects/myproject/main/main.ts :: Config file name: /user/username/projects/myproject/main/tsconfig.json -Info 4 [16:01:08.000] Creating configuration project /user/username/projects/myproject/main/tsconfig.json -Info 5 [16:01:09.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/main/tsconfig.json 2000 undefined Project: /user/username/projects/myproject/main/tsconfig.json WatchType: Config file -Info 6 [16:01:10.000] Config: /user/username/projects/myproject/main/tsconfig.json : { +Info 2 [00:01:06.000] Search path: /user/username/projects/myproject/main +Info 3 [00:01:07.000] For info: /user/username/projects/myproject/main/main.ts :: Config file name: /user/username/projects/myproject/main/tsconfig.json +Info 4 [00:01:08.000] Creating configuration project /user/username/projects/myproject/main/tsconfig.json +Info 5 [00:01:09.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/main/tsconfig.json 2000 undefined Project: /user/username/projects/myproject/main/tsconfig.json WatchType: Config file +Info 6 [00:01:10.000] Config: /user/username/projects/myproject/main/tsconfig.json : { "rootNames": [ "/user/username/projects/myproject/main/main.ts" ], @@ -206,20 +206,20 @@ Info 6 [16:01:10.000] Config: /user/username/projects/myproject/main/tsconfig "configFilePath": "/user/username/projects/myproject/main/tsconfig.json" } } -Info 7 [16:01:11.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/main 1 undefined Config: /user/username/projects/myproject/main/tsconfig.json WatchType: Wild card directory -Info 8 [16:01:12.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/main 1 undefined Config: /user/username/projects/myproject/main/tsconfig.json WatchType: Wild card directory -Info 9 [16:01:13.000] Plugins were requested but not running in environment that supports 'require'. Nothing will be loaded -Info 10 [16:01:14.000] Starting updateGraphWorker: Project: /user/username/projects/myproject/main/tsconfig.json -Info 11 [16:01:15.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/decls 1 undefined Project: /user/username/projects/myproject/main/tsconfig.json WatchType: Failed Lookup Locations -Info 12 [16:01:16.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/decls 1 undefined Project: /user/username/projects/myproject/main/tsconfig.json WatchType: Failed Lookup Locations -Info 13 [16:01:17.000] FileWatcher:: Added:: WatchInfo: /a/lib/lib.d.ts 500 undefined WatchType: Closed Script info -Info 14 [16:01:18.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/main/node_modules/@types 1 undefined Project: /user/username/projects/myproject/main/tsconfig.json WatchType: Type roots -Info 15 [16:01:19.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/main/node_modules/@types 1 undefined Project: /user/username/projects/myproject/main/tsconfig.json WatchType: Type roots -Info 16 [16:01:20.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/main/tsconfig.json WatchType: Type roots -Info 17 [16:01:21.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/main/tsconfig.json WatchType: Type roots -Info 18 [16:01:22.000] Finishing updateGraphWorker: Project: /user/username/projects/myproject/main/tsconfig.json Version: 1 structureChanged: true structureIsReused:: Not Elapsed:: *ms -Info 19 [16:01:23.000] Project '/user/username/projects/myproject/main/tsconfig.json' (Configured) -Info 20 [16:01:24.000] Files (2) +Info 7 [00:01:11.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/main 1 undefined Config: /user/username/projects/myproject/main/tsconfig.json WatchType: Wild card directory +Info 8 [00:01:12.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/main 1 undefined Config: /user/username/projects/myproject/main/tsconfig.json WatchType: Wild card directory +Info 9 [00:01:13.000] Plugins were requested but not running in environment that supports 'require'. Nothing will be loaded +Info 10 [00:01:14.000] Starting updateGraphWorker: Project: /user/username/projects/myproject/main/tsconfig.json +Info 11 [00:01:15.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/decls 1 undefined Project: /user/username/projects/myproject/main/tsconfig.json WatchType: Failed Lookup Locations +Info 12 [00:01:16.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/decls 1 undefined Project: /user/username/projects/myproject/main/tsconfig.json WatchType: Failed Lookup Locations +Info 13 [00:01:17.000] FileWatcher:: Added:: WatchInfo: /a/lib/lib.d.ts 500 undefined WatchType: Closed Script info +Info 14 [00:01:18.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/main/node_modules/@types 1 undefined Project: /user/username/projects/myproject/main/tsconfig.json WatchType: Type roots +Info 15 [00:01:19.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/main/node_modules/@types 1 undefined Project: /user/username/projects/myproject/main/tsconfig.json WatchType: Type roots +Info 16 [00:01:20.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/main/tsconfig.json WatchType: Type roots +Info 17 [00:01:21.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/main/tsconfig.json WatchType: Type roots +Info 18 [00:01:22.000] Finishing updateGraphWorker: Project: /user/username/projects/myproject/main/tsconfig.json Version: 1 structureChanged: true structureIsReused:: Not Elapsed:: *ms +Info 19 [00:01:23.000] Project '/user/username/projects/myproject/main/tsconfig.json' (Configured) +Info 20 [00:01:24.000] Files (2) /a/lib/lib.d.ts /user/username/projects/myproject/main/main.ts @@ -229,16 +229,16 @@ Info 20 [16:01:24.000] Files (2) main.ts Matched by default include pattern '**/*' -Info 21 [16:01:25.000] ----------------------------------------------- -Info 22 [16:01:26.000] Search path: /user/username/projects/myproject/main -Info 23 [16:01:27.000] For info: /user/username/projects/myproject/main/tsconfig.json :: No config files found. -Info 24 [16:01:28.000] Project '/user/username/projects/myproject/main/tsconfig.json' (Configured) -Info 24 [16:01:29.000] Files (2) +Info 21 [00:01:25.000] ----------------------------------------------- +Info 22 [00:01:26.000] Search path: /user/username/projects/myproject/main +Info 23 [00:01:27.000] For info: /user/username/projects/myproject/main/tsconfig.json :: No config files found. +Info 24 [00:01:28.000] Project '/user/username/projects/myproject/main/tsconfig.json' (Configured) +Info 24 [00:01:29.000] Files (2) -Info 24 [16:01:30.000] ----------------------------------------------- -Info 24 [16:01:31.000] Open files: -Info 24 [16:01:32.000] FileName: /user/username/projects/myproject/main/main.ts ProjectRootPath: undefined -Info 24 [16:01:33.000] Projects: /user/username/projects/myproject/main/tsconfig.json +Info 24 [00:01:30.000] ----------------------------------------------- +Info 24 [00:01:31.000] Open files: +Info 24 [00:01:32.000] FileName: /user/username/projects/myproject/main/main.ts ProjectRootPath: undefined +Info 24 [00:01:33.000] Projects: /user/username/projects/myproject/main/tsconfig.json After request PolledWatches:: @@ -259,11 +259,11 @@ FsWatchesRecursive:: /user/username/projects/myproject/decls: {} -Info 24 [16:01:34.000] response: +Info 24 [00:01:34.000] response: { "responseRequired": false } -Info 25 [16:01:35.000] request: +Info 25 [00:01:35.000] request: { "seq": 0, "type": "request", @@ -292,11 +292,11 @@ FsWatchesRecursive:: /user/username/projects/myproject/decls: {} -Info 26 [16:01:36.000] Search path: /user/username/projects/myproject/dependency -Info 27 [16:01:37.000] For info: /user/username/projects/myproject/dependency/FnS.ts :: Config file name: /user/username/projects/myproject/dependency/tsconfig.json -Info 28 [16:01:38.000] Creating configuration project /user/username/projects/myproject/dependency/tsconfig.json -Info 29 [16:01:39.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/dependency/tsconfig.json 2000 undefined Project: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Config file -Info 30 [16:01:40.000] Config: /user/username/projects/myproject/dependency/tsconfig.json : { +Info 26 [00:01:36.000] Search path: /user/username/projects/myproject/dependency +Info 27 [00:01:37.000] For info: /user/username/projects/myproject/dependency/FnS.ts :: Config file name: /user/username/projects/myproject/dependency/tsconfig.json +Info 28 [00:01:38.000] Creating configuration project /user/username/projects/myproject/dependency/tsconfig.json +Info 29 [00:01:39.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/dependency/tsconfig.json 2000 undefined Project: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Config file +Info 30 [00:01:40.000] Config: /user/username/projects/myproject/dependency/tsconfig.json : { "rootNames": [ "/user/username/projects/myproject/dependency/FnS.ts" ], @@ -307,17 +307,17 @@ Info 30 [16:01:40.000] Config: /user/username/projects/myproject/dependency/ts "configFilePath": "/user/username/projects/myproject/dependency/tsconfig.json" } } -Info 31 [16:01:41.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/dependency 1 undefined Config: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Wild card directory -Info 32 [16:01:42.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/dependency 1 undefined Config: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Wild card directory -Info 33 [16:01:43.000] Plugins were requested but not running in environment that supports 'require'. Nothing will be loaded -Info 34 [16:01:44.000] Starting updateGraphWorker: Project: /user/username/projects/myproject/dependency/tsconfig.json -Info 35 [16:01:45.000] 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 36 [16:01:46.000] 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 37 [16:01:47.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Type roots -Info 38 [16:01:48.000] 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 39 [16:01:49.000] Finishing updateGraphWorker: Project: /user/username/projects/myproject/dependency/tsconfig.json Version: 1 structureChanged: true structureIsReused:: Not Elapsed:: *ms -Info 40 [16:01:50.000] Project '/user/username/projects/myproject/dependency/tsconfig.json' (Configured) -Info 41 [16:01:51.000] Files (2) +Info 31 [00:01:41.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/dependency 1 undefined Config: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Wild card directory +Info 32 [00:01:42.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/dependency 1 undefined Config: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Wild card directory +Info 33 [00:01:43.000] Plugins were requested but not running in environment that supports 'require'. Nothing will be loaded +Info 34 [00:01:44.000] Starting updateGraphWorker: Project: /user/username/projects/myproject/dependency/tsconfig.json +Info 35 [00:01:45.000] 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 36 [00:01:46.000] 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 37 [00:01:47.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Type roots +Info 38 [00:01:48.000] 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 39 [00:01:49.000] Finishing updateGraphWorker: Project: /user/username/projects/myproject/dependency/tsconfig.json Version: 1 structureChanged: true structureIsReused:: Not Elapsed:: *ms +Info 40 [00:01:50.000] Project '/user/username/projects/myproject/dependency/tsconfig.json' (Configured) +Info 41 [00:01:51.000] Files (2) /a/lib/lib.d.ts /user/username/projects/myproject/dependency/FnS.ts @@ -327,22 +327,22 @@ Info 41 [16:01:51.000] Files (2) FnS.ts Matched by default include pattern '**/*' -Info 42 [16:01:52.000] ----------------------------------------------- -Info 43 [16:01:53.000] Search path: /user/username/projects/myproject/dependency -Info 44 [16:01:54.000] For info: /user/username/projects/myproject/dependency/tsconfig.json :: No config files found. -Info 45 [16:01:55.000] Project '/user/username/projects/myproject/main/tsconfig.json' (Configured) -Info 45 [16:01:56.000] Files (2) - -Info 45 [16:01:57.000] ----------------------------------------------- -Info 45 [16:01:58.000] Project '/user/username/projects/myproject/dependency/tsconfig.json' (Configured) -Info 45 [16:01:59.000] Files (2) - -Info 45 [16:02:00.000] ----------------------------------------------- -Info 45 [16:02:01.000] Open files: -Info 45 [16:02:02.000] FileName: /user/username/projects/myproject/main/main.ts ProjectRootPath: undefined -Info 45 [16:02:03.000] Projects: /user/username/projects/myproject/main/tsconfig.json -Info 45 [16:02:04.000] FileName: /user/username/projects/myproject/dependency/FnS.ts ProjectRootPath: undefined -Info 45 [16:02:05.000] Projects: /user/username/projects/myproject/dependency/tsconfig.json +Info 42 [00:01:52.000] ----------------------------------------------- +Info 43 [00:01:53.000] Search path: /user/username/projects/myproject/dependency +Info 44 [00:01:54.000] For info: /user/username/projects/myproject/dependency/tsconfig.json :: No config files found. +Info 45 [00:01:55.000] Project '/user/username/projects/myproject/main/tsconfig.json' (Configured) +Info 45 [00:01:56.000] Files (2) + +Info 45 [00:01:57.000] ----------------------------------------------- +Info 45 [00:01:58.000] Project '/user/username/projects/myproject/dependency/tsconfig.json' (Configured) +Info 45 [00:01:59.000] Files (2) + +Info 45 [00:02:00.000] ----------------------------------------------- +Info 45 [00:02:01.000] Open files: +Info 45 [00:02:02.000] FileName: /user/username/projects/myproject/main/main.ts ProjectRootPath: undefined +Info 45 [00:02:03.000] Projects: /user/username/projects/myproject/main/tsconfig.json +Info 45 [00:02:04.000] FileName: /user/username/projects/myproject/dependency/FnS.ts ProjectRootPath: undefined +Info 45 [00:02:05.000] Projects: /user/username/projects/myproject/dependency/tsconfig.json After request PolledWatches:: @@ -369,11 +369,11 @@ FsWatchesRecursive:: /user/username/projects/myproject/dependency: {} -Info 45 [16:02:06.000] response: +Info 45 [00:02:06.000] response: { "responseRequired": false } -Info 46 [16:02:07.000] request: +Info 46 [00:02:07.000] request: { "seq": 0, "type": "request", @@ -408,11 +408,11 @@ FsWatchesRecursive:: /user/username/projects/myproject/dependency: {} -Info 47 [16:02:08.000] Search path: /user/username/projects/myproject/random -Info 48 [16:02:09.000] For info: /user/username/projects/myproject/random/random.ts :: Config file name: /user/username/projects/myproject/random/tsconfig.json -Info 49 [16:02:10.000] Creating configuration project /user/username/projects/myproject/random/tsconfig.json -Info 50 [16:02:11.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/random/tsconfig.json 2000 undefined Project: /user/username/projects/myproject/random/tsconfig.json WatchType: Config file -Info 51 [16:02:12.000] Config: /user/username/projects/myproject/random/tsconfig.json : { +Info 47 [00:02:08.000] Search path: /user/username/projects/myproject/random +Info 48 [00:02:09.000] For info: /user/username/projects/myproject/random/random.ts :: Config file name: /user/username/projects/myproject/random/tsconfig.json +Info 49 [00:02:10.000] Creating configuration project /user/username/projects/myproject/random/tsconfig.json +Info 50 [00:02:11.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/random/tsconfig.json 2000 undefined Project: /user/username/projects/myproject/random/tsconfig.json WatchType: Config file +Info 51 [00:02:12.000] Config: /user/username/projects/myproject/random/tsconfig.json : { "rootNames": [ "/user/username/projects/myproject/random/random.ts" ], @@ -420,17 +420,17 @@ Info 51 [16:02:12.000] Config: /user/username/projects/myproject/random/tsconf "configFilePath": "/user/username/projects/myproject/random/tsconfig.json" } } -Info 52 [16:02:13.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/random 1 undefined Config: /user/username/projects/myproject/random/tsconfig.json WatchType: Wild card directory -Info 53 [16:02:14.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/random 1 undefined Config: /user/username/projects/myproject/random/tsconfig.json WatchType: Wild card directory -Info 54 [16:02:15.000] Plugins were requested but not running in environment that supports 'require'. Nothing will be loaded -Info 55 [16:02:16.000] Starting updateGraphWorker: Project: /user/username/projects/myproject/random/tsconfig.json -Info 56 [16:02:17.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/random/node_modules/@types 1 undefined Project: /user/username/projects/myproject/random/tsconfig.json WatchType: Type roots -Info 57 [16:02:18.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/random/node_modules/@types 1 undefined Project: /user/username/projects/myproject/random/tsconfig.json WatchType: Type roots -Info 58 [16:02:19.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/random/tsconfig.json WatchType: Type roots -Info 59 [16:02:20.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/random/tsconfig.json WatchType: Type roots -Info 60 [16:02:21.000] Finishing updateGraphWorker: Project: /user/username/projects/myproject/random/tsconfig.json Version: 1 structureChanged: true structureIsReused:: Not Elapsed:: *ms -Info 61 [16:02:22.000] Project '/user/username/projects/myproject/random/tsconfig.json' (Configured) -Info 62 [16:02:23.000] Files (2) +Info 52 [00:02:13.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/random 1 undefined Config: /user/username/projects/myproject/random/tsconfig.json WatchType: Wild card directory +Info 53 [00:02:14.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/random 1 undefined Config: /user/username/projects/myproject/random/tsconfig.json WatchType: Wild card directory +Info 54 [00:02:15.000] Plugins were requested but not running in environment that supports 'require'. Nothing will be loaded +Info 55 [00:02:16.000] Starting updateGraphWorker: Project: /user/username/projects/myproject/random/tsconfig.json +Info 56 [00:02:17.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/random/node_modules/@types 1 undefined Project: /user/username/projects/myproject/random/tsconfig.json WatchType: Type roots +Info 57 [00:02:18.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/random/node_modules/@types 1 undefined Project: /user/username/projects/myproject/random/tsconfig.json WatchType: Type roots +Info 58 [00:02:19.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/random/tsconfig.json WatchType: Type roots +Info 59 [00:02:20.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/random/tsconfig.json WatchType: Type roots +Info 60 [00:02:21.000] Finishing updateGraphWorker: Project: /user/username/projects/myproject/random/tsconfig.json Version: 1 structureChanged: true structureIsReused:: Not Elapsed:: *ms +Info 61 [00:02:22.000] Project '/user/username/projects/myproject/random/tsconfig.json' (Configured) +Info 62 [00:02:23.000] Files (2) /a/lib/lib.d.ts /user/username/projects/myproject/random/random.ts @@ -440,26 +440,26 @@ Info 62 [16:02:23.000] Files (2) random.ts Matched by default include pattern '**/*' -Info 63 [16:02:24.000] ----------------------------------------------- -Info 64 [16:02:25.000] Project '/user/username/projects/myproject/main/tsconfig.json' (Configured) -Info 64 [16:02:26.000] Files (2) - -Info 64 [16:02:27.000] ----------------------------------------------- -Info 64 [16:02:28.000] Project '/user/username/projects/myproject/dependency/tsconfig.json' (Configured) -Info 64 [16:02:29.000] Files (2) - -Info 64 [16:02:30.000] ----------------------------------------------- -Info 64 [16:02:31.000] Project '/user/username/projects/myproject/random/tsconfig.json' (Configured) -Info 64 [16:02:32.000] Files (2) - -Info 64 [16:02:33.000] ----------------------------------------------- -Info 64 [16:02:34.000] Open files: -Info 64 [16:02:35.000] FileName: /user/username/projects/myproject/main/main.ts ProjectRootPath: undefined -Info 64 [16:02:36.000] Projects: /user/username/projects/myproject/main/tsconfig.json -Info 64 [16:02:37.000] FileName: /user/username/projects/myproject/dependency/FnS.ts ProjectRootPath: undefined -Info 64 [16:02:38.000] Projects: /user/username/projects/myproject/dependency/tsconfig.json -Info 64 [16:02:39.000] FileName: /user/username/projects/myproject/random/random.ts ProjectRootPath: undefined -Info 64 [16:02:40.000] Projects: /user/username/projects/myproject/random/tsconfig.json +Info 63 [00:02:24.000] ----------------------------------------------- +Info 64 [00:02:25.000] Project '/user/username/projects/myproject/main/tsconfig.json' (Configured) +Info 64 [00:02:26.000] Files (2) + +Info 64 [00:02:27.000] ----------------------------------------------- +Info 64 [00:02:28.000] Project '/user/username/projects/myproject/dependency/tsconfig.json' (Configured) +Info 64 [00:02:29.000] Files (2) + +Info 64 [00:02:30.000] ----------------------------------------------- +Info 64 [00:02:31.000] Project '/user/username/projects/myproject/random/tsconfig.json' (Configured) +Info 64 [00:02:32.000] Files (2) + +Info 64 [00:02:33.000] ----------------------------------------------- +Info 64 [00:02:34.000] Open files: +Info 64 [00:02:35.000] FileName: /user/username/projects/myproject/main/main.ts ProjectRootPath: undefined +Info 64 [00:02:36.000] Projects: /user/username/projects/myproject/main/tsconfig.json +Info 64 [00:02:37.000] FileName: /user/username/projects/myproject/dependency/FnS.ts ProjectRootPath: undefined +Info 64 [00:02:38.000] Projects: /user/username/projects/myproject/dependency/tsconfig.json +Info 64 [00:02:39.000] FileName: /user/username/projects/myproject/random/random.ts ProjectRootPath: undefined +Info 64 [00:02:40.000] Projects: /user/username/projects/myproject/random/tsconfig.json After request PolledWatches:: @@ -492,11 +492,11 @@ FsWatchesRecursive:: /user/username/projects/myproject/random: {} -Info 64 [16:02:41.000] response: +Info 64 [00:02:41.000] response: { "responseRequired": false } -Info 65 [16:02:42.000] request: +Info 65 [00:02:42.000] request: { "command": "definitionAndBoundSpan", "arguments": { @@ -571,7 +571,7 @@ FsWatchesRecursive:: /user/username/projects/myproject/random: {} -Info 66 [16:02:43.000] response: +Info 66 [00:02:43.000] response: { "response": { "definitions": [ @@ -608,7 +608,7 @@ Info 66 [16:02:43.000] response: }, "responseRequired": true } -Info 67 [16:02:44.000] request: +Info 67 [00:02:44.000] request: { "command": "rename", "arguments": { @@ -651,7 +651,7 @@ FsWatchesRecursive:: /user/username/projects/myproject/random: {} -Info 68 [16:02:45.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/decls/FnS.d.ts 2000 undefined Project: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Missing generated file +Info 68 [00:02:45.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/decls/FnS.d.ts 2000 undefined Project: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Missing generated file After request PolledWatches:: @@ -686,7 +686,7 @@ FsWatchesRecursive:: /user/username/projects/myproject/random: {} -Info 69 [16:02:46.000] response: +Info 69 [00:02:46.000] response: { "response": { "info": { @@ -734,18 +734,18 @@ Info 69 [16:02:46.000] response: }, "responseRequired": true } -Info 70 [16:02:49.000] FileWatcher:: Triggered with /user/username/projects/myproject/decls/FnS.d.ts 0:: WatchInfo: /user/username/projects/myproject/decls/FnS.d.ts 2000 undefined Project: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Missing generated file -Info 71 [16:02:50.000] Scheduled: /user/username/projects/myproject/dependency/tsconfig.json -Info 72 [16:02:51.000] Scheduled: *ensureProjectForOpenFiles* -Info 73 [16:02:52.000] Elapsed:: *ms FileWatcher:: Triggered with /user/username/projects/myproject/decls/FnS.d.ts 0:: WatchInfo: /user/username/projects/myproject/decls/FnS.d.ts 2000 undefined Project: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Missing generated file -Info 74 [16:02:53.000] FileWatcher:: Triggered with /user/username/projects/myproject/decls/FnS.d.ts 0:: WatchInfo: /user/username/projects/myproject/decls/FnS.d.ts 2000 undefined Project: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Missing generated file -Info 75 [16:02:54.000] Scheduled: /user/username/projects/myproject/dependency/tsconfig.json, Cancelled earlier one -Info 76 [16:02:55.000] Scheduled: *ensureProjectForOpenFiles*, Cancelled earlier one -Info 77 [16:02:56.000] Elapsed:: *ms FileWatcher:: Triggered with /user/username/projects/myproject/decls/FnS.d.ts 0:: WatchInfo: /user/username/projects/myproject/decls/FnS.d.ts 2000 undefined Project: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Missing generated file -Info 78 [16:02:57.000] DirectoryWatcher:: Triggered with /user/username/projects/myproject/decls/FnS.d.ts :: WatchInfo: /user/username/projects/myproject/decls 1 undefined Project: /user/username/projects/myproject/main/tsconfig.json WatchType: Failed Lookup Locations -Info 79 [16:02:58.000] Scheduled: /user/username/projects/myproject/main/tsconfig.jsonFailedLookupInvalidation -Info 80 [16:02:59.000] Elapsed:: *ms DirectoryWatcher:: Triggered with /user/username/projects/myproject/decls/FnS.d.ts :: WatchInfo: /user/username/projects/myproject/decls 1 undefined Project: /user/username/projects/myproject/main/tsconfig.json WatchType: Failed Lookup Locations -Info 81 [16:03:00.000] request: +Info 70 [00:02:49.000] FileWatcher:: Triggered with /user/username/projects/myproject/decls/FnS.d.ts 0:: WatchInfo: /user/username/projects/myproject/decls/FnS.d.ts 2000 undefined Project: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Missing generated file +Info 71 [00:02:50.000] Scheduled: /user/username/projects/myproject/dependency/tsconfig.json +Info 72 [00:02:51.000] Scheduled: *ensureProjectForOpenFiles* +Info 73 [00:02:52.000] Elapsed:: *ms FileWatcher:: Triggered with /user/username/projects/myproject/decls/FnS.d.ts 0:: WatchInfo: /user/username/projects/myproject/decls/FnS.d.ts 2000 undefined Project: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Missing generated file +Info 74 [00:02:53.000] FileWatcher:: Triggered with /user/username/projects/myproject/decls/FnS.d.ts 0:: WatchInfo: /user/username/projects/myproject/decls/FnS.d.ts 2000 undefined Project: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Missing generated file +Info 75 [00:02:54.000] Scheduled: /user/username/projects/myproject/dependency/tsconfig.json, Cancelled earlier one +Info 76 [00:02:55.000] Scheduled: *ensureProjectForOpenFiles*, Cancelled earlier one +Info 77 [00:02:56.000] Elapsed:: *ms FileWatcher:: Triggered with /user/username/projects/myproject/decls/FnS.d.ts 0:: WatchInfo: /user/username/projects/myproject/decls/FnS.d.ts 2000 undefined Project: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Missing generated file +Info 78 [00:02:57.000] DirectoryWatcher:: Triggered with /user/username/projects/myproject/decls/FnS.d.ts :: WatchInfo: /user/username/projects/myproject/decls 1 undefined Project: /user/username/projects/myproject/main/tsconfig.json WatchType: Failed Lookup Locations +Info 79 [00:02:58.000] Scheduled: /user/username/projects/myproject/main/tsconfig.jsonFailedLookupInvalidation +Info 80 [00:02:59.000] Elapsed:: *ms DirectoryWatcher:: Triggered with /user/username/projects/myproject/decls/FnS.d.ts :: WatchInfo: /user/username/projects/myproject/decls 1 undefined Project: /user/username/projects/myproject/main/tsconfig.json WatchType: Failed Lookup Locations +Info 81 [00:03:00.000] request: { "command": "definitionAndBoundSpan", "arguments": { @@ -798,12 +798,12 @@ FsWatchesRecursive:: /user/username/projects/myproject/random: {} -Info 82 [16:03:01.000] Scheduled: *ensureProjectForOpenFiles*, Cancelled earlier one -Info 83 [16:03:02.000] Starting updateGraphWorker: Project: /user/username/projects/myproject/main/tsconfig.json -Info 84 [16:03:03.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/decls/fns.d.ts 500 undefined WatchType: Closed Script info -Info 85 [16:03:04.000] Finishing updateGraphWorker: Project: /user/username/projects/myproject/main/tsconfig.json Version: 2 structureChanged: true structureIsReused:: SafeModules Elapsed:: *ms -Info 86 [16:03:05.000] Project '/user/username/projects/myproject/main/tsconfig.json' (Configured) -Info 87 [16:03:06.000] Files (3) +Info 82 [00:03:01.000] Scheduled: *ensureProjectForOpenFiles*, Cancelled earlier one +Info 83 [00:03:02.000] Starting updateGraphWorker: Project: /user/username/projects/myproject/main/tsconfig.json +Info 84 [00:03:03.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/decls/fns.d.ts 500 undefined WatchType: Closed Script info +Info 85 [00:03:04.000] Finishing updateGraphWorker: Project: /user/username/projects/myproject/main/tsconfig.json Version: 2 structureChanged: true structureIsReused:: SafeModules Elapsed:: *ms +Info 86 [00:03:05.000] Project '/user/username/projects/myproject/main/tsconfig.json' (Configured) +Info 87 [00:03:06.000] Files (3) /a/lib/lib.d.ts /user/username/projects/myproject/decls/fns.d.ts /user/username/projects/myproject/main/main.ts @@ -816,8 +816,8 @@ Info 87 [16:03:06.000] Files (3) main.ts Matched by default include pattern '**/*' -Info 88 [16:03:07.000] ----------------------------------------------- -Info 89 [16:03:08.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/decls/FnS.d.ts.map 500 undefined WatchType: Closed Script info +Info 88 [00:03:07.000] ----------------------------------------------- +Info 89 [00:03:08.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/decls/FnS.d.ts.map 500 undefined WatchType: Closed Script info After request PolledWatches:: @@ -854,7 +854,7 @@ FsWatchesRecursive:: /user/username/projects/myproject/random: {} -Info 90 [16:03:09.000] response: +Info 90 [00:03:09.000] response: { "response": { "definitions": [ @@ -891,7 +891,7 @@ Info 90 [16:03:09.000] response: }, "responseRequired": true } -Info 91 [16:03:10.000] request: +Info 91 [00:03:10.000] request: { "command": "definitionAndBoundSpan", "arguments": { @@ -974,7 +974,7 @@ FsWatchesRecursive:: /user/username/projects/myproject/random: {} -Info 92 [16:03:11.000] response: +Info 92 [00:03:11.000] response: { "response": { "definitions": [ @@ -1011,7 +1011,7 @@ Info 92 [16:03:11.000] response: }, "responseRequired": true } -Info 93 [16:03:12.000] request: +Info 93 [00:03:12.000] request: { "command": "definitionAndBoundSpan", "arguments": { @@ -1094,7 +1094,7 @@ FsWatchesRecursive:: /user/username/projects/myproject/random: {} -Info 94 [16:03:13.000] response: +Info 94 [00:03:13.000] response: { "response": { "definitions": [ @@ -1131,7 +1131,7 @@ Info 94 [16:03:13.000] response: }, "responseRequired": true } -Info 95 [16:03:14.000] request: +Info 95 [00:03:14.000] request: { "command": "definitionAndBoundSpan", "arguments": { @@ -1214,7 +1214,7 @@ FsWatchesRecursive:: /user/username/projects/myproject/random: {} -Info 96 [16:03:15.000] response: +Info 96 [00:03:15.000] response: { "response": { "definitions": [ @@ -1251,7 +1251,7 @@ Info 96 [16:03:15.000] response: }, "responseRequired": true } -Info 97 [16:03:16.000] request: +Info 97 [00:03:16.000] request: { "command": "definitionAndBoundSpan", "arguments": { @@ -1334,7 +1334,7 @@ FsWatchesRecursive:: /user/username/projects/myproject/random: {} -Info 98 [16:03:17.000] response: +Info 98 [00:03:17.000] response: { "response": { "definitions": [ @@ -1371,7 +1371,7 @@ Info 98 [16:03:17.000] response: }, "responseRequired": true } -Info 99 [16:03:18.000] request: +Info 99 [00:03:18.000] request: { "command": "rename", "arguments": { @@ -1418,10 +1418,10 @@ FsWatchesRecursive:: /user/username/projects/myproject/random: {} -Info 100 [16:03:19.000] Starting updateGraphWorker: Project: /user/username/projects/myproject/dependency/tsconfig.json -Info 101 [16:03:20.000] Finishing updateGraphWorker: Project: /user/username/projects/myproject/dependency/tsconfig.json Version: 2 structureChanged: false structureIsReused:: Not Elapsed:: *ms -Info 102 [16:03:21.000] Search path: /user/username/projects/myproject/dependency -Info 103 [16:03:22.000] For info: /user/username/projects/myproject/dependency/FnS.ts :: Config file name: /user/username/projects/myproject/dependency/tsconfig.json +Info 100 [00:03:19.000] Starting updateGraphWorker: Project: /user/username/projects/myproject/dependency/tsconfig.json +Info 101 [00:03:20.000] Finishing updateGraphWorker: Project: /user/username/projects/myproject/dependency/tsconfig.json Version: 2 structureChanged: false structureIsReused:: Not Elapsed:: *ms +Info 102 [00:03:21.000] Search path: /user/username/projects/myproject/dependency +Info 103 [00:03:22.000] For info: /user/username/projects/myproject/dependency/FnS.ts :: Config file name: /user/username/projects/myproject/dependency/tsconfig.json After request PolledWatches:: @@ -1458,7 +1458,7 @@ FsWatchesRecursive:: /user/username/projects/myproject/random: {} -Info 104 [16:03:23.000] response: +Info 104 [00:03:23.000] response: { "response": { "info": { @@ -1539,7 +1539,7 @@ Info 104 [16:03:23.000] response: }, "responseRequired": true } -Info 105 [16:03:24.000] request: +Info 105 [00:03:24.000] request: { "command": "rename", "arguments": { @@ -1586,8 +1586,8 @@ FsWatchesRecursive:: /user/username/projects/myproject/random: {} -Info 106 [16:03:25.000] Search path: /user/username/projects/myproject/dependency -Info 107 [16:03:26.000] For info: /user/username/projects/myproject/dependency/FnS.ts :: Config file name: /user/username/projects/myproject/dependency/tsconfig.json +Info 106 [00:03:25.000] Search path: /user/username/projects/myproject/dependency +Info 107 [00:03:26.000] For info: /user/username/projects/myproject/dependency/FnS.ts :: Config file name: /user/username/projects/myproject/dependency/tsconfig.json After request PolledWatches:: @@ -1624,7 +1624,7 @@ FsWatchesRecursive:: /user/username/projects/myproject/random: {} -Info 108 [16:03:27.000] response: +Info 108 [00:03:27.000] response: { "response": { "info": { @@ -1705,7 +1705,7 @@ Info 108 [16:03:27.000] response: }, "responseRequired": true } -Info 109 [16:03:28.000] request: +Info 109 [00:03:28.000] request: { "command": "rename", "arguments": { @@ -1752,8 +1752,8 @@ FsWatchesRecursive:: /user/username/projects/myproject/random: {} -Info 110 [16:03:29.000] Search path: /user/username/projects/myproject/dependency -Info 111 [16:03:30.000] For info: /user/username/projects/myproject/dependency/FnS.ts :: Config file name: /user/username/projects/myproject/dependency/tsconfig.json +Info 110 [00:03:29.000] Search path: /user/username/projects/myproject/dependency +Info 111 [00:03:30.000] For info: /user/username/projects/myproject/dependency/FnS.ts :: Config file name: /user/username/projects/myproject/dependency/tsconfig.json After request PolledWatches:: @@ -1790,7 +1790,7 @@ FsWatchesRecursive:: /user/username/projects/myproject/random: {} -Info 112 [16:03:31.000] response: +Info 112 [00:03:31.000] response: { "response": { "info": { @@ -1871,7 +1871,7 @@ Info 112 [16:03:31.000] response: }, "responseRequired": true } -Info 113 [16:03:32.000] request: +Info 113 [00:03:32.000] request: { "command": "rename", "arguments": { @@ -1918,8 +1918,8 @@ FsWatchesRecursive:: /user/username/projects/myproject/random: {} -Info 114 [16:03:33.000] Search path: /user/username/projects/myproject/dependency -Info 115 [16:03:34.000] For info: /user/username/projects/myproject/dependency/FnS.ts :: Config file name: /user/username/projects/myproject/dependency/tsconfig.json +Info 114 [00:03:33.000] Search path: /user/username/projects/myproject/dependency +Info 115 [00:03:34.000] For info: /user/username/projects/myproject/dependency/FnS.ts :: Config file name: /user/username/projects/myproject/dependency/tsconfig.json After request PolledWatches:: @@ -1956,7 +1956,7 @@ FsWatchesRecursive:: /user/username/projects/myproject/random: {} -Info 116 [16:03:35.000] response: +Info 116 [00:03:35.000] response: { "response": { "info": { @@ -2037,7 +2037,7 @@ Info 116 [16:03:35.000] response: }, "responseRequired": true } -Info 117 [16:03:36.000] request: +Info 117 [00:03:36.000] request: { "command": "rename", "arguments": { @@ -2084,8 +2084,8 @@ FsWatchesRecursive:: /user/username/projects/myproject/random: {} -Info 118 [16:03:37.000] Search path: /user/username/projects/myproject/dependency -Info 119 [16:03:38.000] For info: /user/username/projects/myproject/dependency/FnS.ts :: Config file name: /user/username/projects/myproject/dependency/tsconfig.json +Info 118 [00:03:37.000] Search path: /user/username/projects/myproject/dependency +Info 119 [00:03:38.000] For info: /user/username/projects/myproject/dependency/FnS.ts :: Config file name: /user/username/projects/myproject/dependency/tsconfig.json After request PolledWatches:: @@ -2122,7 +2122,7 @@ FsWatchesRecursive:: /user/username/projects/myproject/random: {} -Info 120 [16:03:39.000] response: +Info 120 [00:03:39.000] response: { "response": { "info": { @@ -2203,7 +2203,7 @@ Info 120 [16:03:39.000] response: }, "responseRequired": true } -Info 121 [16:03:40.000] request: +Info 121 [00:03:40.000] request: { "seq": 0, "type": "request", @@ -2248,24 +2248,24 @@ FsWatchesRecursive:: /user/username/projects/myproject/random: {} -Info 122 [16:03:41.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/random/random.ts 500 undefined WatchType: Closed Script info -Info 123 [16:03:42.000] Project '/user/username/projects/myproject/main/tsconfig.json' (Configured) -Info 123 [16:03:43.000] Files (3) +Info 122 [00:03:41.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/random/random.ts 500 undefined WatchType: Closed Script info +Info 123 [00:03:42.000] Project '/user/username/projects/myproject/main/tsconfig.json' (Configured) +Info 123 [00:03:43.000] Files (3) -Info 123 [16:03:44.000] ----------------------------------------------- -Info 123 [16:03:45.000] Project '/user/username/projects/myproject/dependency/tsconfig.json' (Configured) -Info 123 [16:03:46.000] Files (2) +Info 123 [00:03:44.000] ----------------------------------------------- +Info 123 [00:03:45.000] Project '/user/username/projects/myproject/dependency/tsconfig.json' (Configured) +Info 123 [00:03:46.000] Files (2) -Info 123 [16:03:47.000] ----------------------------------------------- -Info 123 [16:03:48.000] Project '/user/username/projects/myproject/random/tsconfig.json' (Configured) -Info 123 [16:03:49.000] Files (2) +Info 123 [00:03:47.000] ----------------------------------------------- +Info 123 [00:03:48.000] Project '/user/username/projects/myproject/random/tsconfig.json' (Configured) +Info 123 [00:03:49.000] Files (2) -Info 123 [16:03:50.000] ----------------------------------------------- -Info 123 [16:03:51.000] Open files: -Info 123 [16:03:52.000] FileName: /user/username/projects/myproject/main/main.ts ProjectRootPath: undefined -Info 123 [16:03:53.000] Projects: /user/username/projects/myproject/main/tsconfig.json -Info 123 [16:03:54.000] FileName: /user/username/projects/myproject/dependency/FnS.ts ProjectRootPath: undefined -Info 123 [16:03:55.000] Projects: /user/username/projects/myproject/dependency/tsconfig.json +Info 123 [00:03:50.000] ----------------------------------------------- +Info 123 [00:03:51.000] Open files: +Info 123 [00:03:52.000] FileName: /user/username/projects/myproject/main/main.ts ProjectRootPath: undefined +Info 123 [00:03:53.000] Projects: /user/username/projects/myproject/main/tsconfig.json +Info 123 [00:03:54.000] FileName: /user/username/projects/myproject/dependency/FnS.ts ProjectRootPath: undefined +Info 123 [00:03:55.000] Projects: /user/username/projects/myproject/dependency/tsconfig.json After request PolledWatches:: @@ -2304,11 +2304,11 @@ FsWatchesRecursive:: /user/username/projects/myproject/random: {} -Info 123 [16:03:56.000] response: +Info 123 [00:03:56.000] response: { "responseRequired": false } -Info 124 [16:03:57.000] request: +Info 124 [00:03:57.000] request: { "seq": 0, "type": "request", @@ -2355,28 +2355,28 @@ FsWatchesRecursive:: /user/username/projects/myproject/random: {} -Info 125 [16:03:58.000] FileWatcher:: Close:: WatchInfo: /user/username/projects/myproject/random/random.ts 500 undefined WatchType: Closed Script info -Info 126 [16:03:59.000] Search path: /user/username/projects/myproject/random -Info 127 [16:04:00.000] For info: /user/username/projects/myproject/random/random.ts :: Config file name: /user/username/projects/myproject/random/tsconfig.json -Info 128 [16:04:01.000] Project '/user/username/projects/myproject/main/tsconfig.json' (Configured) -Info 128 [16:04:02.000] Files (3) - -Info 128 [16:04:03.000] ----------------------------------------------- -Info 128 [16:04:04.000] Project '/user/username/projects/myproject/dependency/tsconfig.json' (Configured) -Info 128 [16:04:05.000] Files (2) - -Info 128 [16:04:06.000] ----------------------------------------------- -Info 128 [16:04:07.000] Project '/user/username/projects/myproject/random/tsconfig.json' (Configured) -Info 128 [16:04:08.000] Files (2) - -Info 128 [16:04:09.000] ----------------------------------------------- -Info 128 [16:04:10.000] Open files: -Info 128 [16:04:11.000] FileName: /user/username/projects/myproject/main/main.ts ProjectRootPath: undefined -Info 128 [16:04:12.000] Projects: /user/username/projects/myproject/main/tsconfig.json -Info 128 [16:04:13.000] FileName: /user/username/projects/myproject/dependency/FnS.ts ProjectRootPath: undefined -Info 128 [16:04:14.000] Projects: /user/username/projects/myproject/dependency/tsconfig.json -Info 128 [16:04:15.000] FileName: /user/username/projects/myproject/random/random.ts ProjectRootPath: undefined -Info 128 [16:04:16.000] Projects: /user/username/projects/myproject/random/tsconfig.json +Info 125 [00:03:58.000] FileWatcher:: Close:: WatchInfo: /user/username/projects/myproject/random/random.ts 500 undefined WatchType: Closed Script info +Info 126 [00:03:59.000] Search path: /user/username/projects/myproject/random +Info 127 [00:04:00.000] For info: /user/username/projects/myproject/random/random.ts :: Config file name: /user/username/projects/myproject/random/tsconfig.json +Info 128 [00:04:01.000] Project '/user/username/projects/myproject/main/tsconfig.json' (Configured) +Info 128 [00:04:02.000] Files (3) + +Info 128 [00:04:03.000] ----------------------------------------------- +Info 128 [00:04:04.000] Project '/user/username/projects/myproject/dependency/tsconfig.json' (Configured) +Info 128 [00:04:05.000] Files (2) + +Info 128 [00:04:06.000] ----------------------------------------------- +Info 128 [00:04:07.000] Project '/user/username/projects/myproject/random/tsconfig.json' (Configured) +Info 128 [00:04:08.000] Files (2) + +Info 128 [00:04:09.000] ----------------------------------------------- +Info 128 [00:04:10.000] Open files: +Info 128 [00:04:11.000] FileName: /user/username/projects/myproject/main/main.ts ProjectRootPath: undefined +Info 128 [00:04:12.000] Projects: /user/username/projects/myproject/main/tsconfig.json +Info 128 [00:04:13.000] FileName: /user/username/projects/myproject/dependency/FnS.ts ProjectRootPath: undefined +Info 128 [00:04:14.000] Projects: /user/username/projects/myproject/dependency/tsconfig.json +Info 128 [00:04:15.000] FileName: /user/username/projects/myproject/random/random.ts ProjectRootPath: undefined +Info 128 [00:04:16.000] Projects: /user/username/projects/myproject/random/tsconfig.json After request PolledWatches:: @@ -2413,11 +2413,11 @@ FsWatchesRecursive:: /user/username/projects/myproject/random: {} -Info 128 [16:04:17.000] response: +Info 128 [00:04:17.000] response: { "responseRequired": false } -Info 129 [16:04:18.000] request: +Info 129 [00:04:18.000] request: { "seq": 0, "type": "request", @@ -2462,24 +2462,24 @@ FsWatchesRecursive:: /user/username/projects/myproject/random: {} -Info 130 [16:04:19.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/main/main.ts 500 undefined WatchType: Closed Script info -Info 131 [16:04:20.000] Project '/user/username/projects/myproject/main/tsconfig.json' (Configured) -Info 131 [16:04:21.000] Files (3) +Info 130 [00:04:19.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/main/main.ts 500 undefined WatchType: Closed Script info +Info 131 [00:04:20.000] Project '/user/username/projects/myproject/main/tsconfig.json' (Configured) +Info 131 [00:04:21.000] Files (3) -Info 131 [16:04:22.000] ----------------------------------------------- -Info 131 [16:04:23.000] Project '/user/username/projects/myproject/dependency/tsconfig.json' (Configured) -Info 131 [16:04:24.000] Files (2) +Info 131 [00:04:22.000] ----------------------------------------------- +Info 131 [00:04:23.000] Project '/user/username/projects/myproject/dependency/tsconfig.json' (Configured) +Info 131 [00:04:24.000] Files (2) -Info 131 [16:04:25.000] ----------------------------------------------- -Info 131 [16:04:26.000] Project '/user/username/projects/myproject/random/tsconfig.json' (Configured) -Info 131 [16:04:27.000] Files (2) +Info 131 [00:04:25.000] ----------------------------------------------- +Info 131 [00:04:26.000] Project '/user/username/projects/myproject/random/tsconfig.json' (Configured) +Info 131 [00:04:27.000] Files (2) -Info 131 [16:04:28.000] ----------------------------------------------- -Info 131 [16:04:29.000] Open files: -Info 131 [16:04:30.000] FileName: /user/username/projects/myproject/dependency/FnS.ts ProjectRootPath: undefined -Info 131 [16:04:31.000] Projects: /user/username/projects/myproject/dependency/tsconfig.json -Info 131 [16:04:32.000] FileName: /user/username/projects/myproject/random/random.ts ProjectRootPath: undefined -Info 131 [16:04:33.000] Projects: /user/username/projects/myproject/random/tsconfig.json +Info 131 [00:04:28.000] ----------------------------------------------- +Info 131 [00:04:29.000] Open files: +Info 131 [00:04:30.000] FileName: /user/username/projects/myproject/dependency/FnS.ts ProjectRootPath: undefined +Info 131 [00:04:31.000] Projects: /user/username/projects/myproject/dependency/tsconfig.json +Info 131 [00:04:32.000] FileName: /user/username/projects/myproject/random/random.ts ProjectRootPath: undefined +Info 131 [00:04:33.000] Projects: /user/username/projects/myproject/random/tsconfig.json After request PolledWatches:: @@ -2518,11 +2518,11 @@ FsWatchesRecursive:: /user/username/projects/myproject/random: {} -Info 131 [16:04:34.000] response: +Info 131 [00:04:34.000] response: { "responseRequired": false } -Info 132 [16:04:35.000] request: +Info 132 [00:04:35.000] request: { "seq": 0, "type": "request", @@ -2569,22 +2569,22 @@ FsWatchesRecursive:: /user/username/projects/myproject/random: {} -Info 133 [16:04:36.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/dependency/FnS.ts 500 undefined WatchType: Closed Script info -Info 134 [16:04:37.000] Project '/user/username/projects/myproject/main/tsconfig.json' (Configured) -Info 134 [16:04:38.000] Files (3) +Info 133 [00:04:36.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/dependency/FnS.ts 500 undefined WatchType: Closed Script info +Info 134 [00:04:37.000] Project '/user/username/projects/myproject/main/tsconfig.json' (Configured) +Info 134 [00:04:38.000] Files (3) -Info 134 [16:04:39.000] ----------------------------------------------- -Info 134 [16:04:40.000] Project '/user/username/projects/myproject/dependency/tsconfig.json' (Configured) -Info 134 [16:04:41.000] Files (2) +Info 134 [00:04:39.000] ----------------------------------------------- +Info 134 [00:04:40.000] Project '/user/username/projects/myproject/dependency/tsconfig.json' (Configured) +Info 134 [00:04:41.000] Files (2) -Info 134 [16:04:42.000] ----------------------------------------------- -Info 134 [16:04:43.000] Project '/user/username/projects/myproject/random/tsconfig.json' (Configured) -Info 134 [16:04:44.000] Files (2) +Info 134 [00:04:42.000] ----------------------------------------------- +Info 134 [00:04:43.000] Project '/user/username/projects/myproject/random/tsconfig.json' (Configured) +Info 134 [00:04:44.000] Files (2) -Info 134 [16:04:45.000] ----------------------------------------------- -Info 134 [16:04:46.000] Open files: -Info 134 [16:04:47.000] FileName: /user/username/projects/myproject/random/random.ts ProjectRootPath: undefined -Info 134 [16:04:48.000] Projects: /user/username/projects/myproject/random/tsconfig.json +Info 134 [00:04:45.000] ----------------------------------------------- +Info 134 [00:04:46.000] Open files: +Info 134 [00:04:47.000] FileName: /user/username/projects/myproject/random/random.ts ProjectRootPath: undefined +Info 134 [00:04:48.000] Projects: /user/username/projects/myproject/random/tsconfig.json After request PolledWatches:: @@ -2625,11 +2625,11 @@ FsWatchesRecursive:: /user/username/projects/myproject/random: {} -Info 134 [16:04:49.000] response: +Info 134 [00:04:49.000] response: { "responseRequired": false } -Info 135 [16:04:50.000] request: +Info 135 [00:04:50.000] request: { "seq": 0, "type": "request", @@ -2678,20 +2678,20 @@ FsWatchesRecursive:: /user/username/projects/myproject/random: {} -Info 136 [16:04:51.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/random/random.ts 500 undefined WatchType: Closed Script info -Info 137 [16:04:52.000] Project '/user/username/projects/myproject/main/tsconfig.json' (Configured) -Info 137 [16:04:53.000] Files (3) +Info 136 [00:04:51.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/random/random.ts 500 undefined WatchType: Closed Script info +Info 137 [00:04:52.000] Project '/user/username/projects/myproject/main/tsconfig.json' (Configured) +Info 137 [00:04:53.000] Files (3) -Info 137 [16:04:54.000] ----------------------------------------------- -Info 137 [16:04:55.000] Project '/user/username/projects/myproject/dependency/tsconfig.json' (Configured) -Info 137 [16:04:56.000] Files (2) +Info 137 [00:04:54.000] ----------------------------------------------- +Info 137 [00:04:55.000] Project '/user/username/projects/myproject/dependency/tsconfig.json' (Configured) +Info 137 [00:04:56.000] Files (2) -Info 137 [16:04:57.000] ----------------------------------------------- -Info 137 [16:04:58.000] Project '/user/username/projects/myproject/random/tsconfig.json' (Configured) -Info 137 [16:04:59.000] Files (2) +Info 137 [00:04:57.000] ----------------------------------------------- +Info 137 [00:04:58.000] Project '/user/username/projects/myproject/random/tsconfig.json' (Configured) +Info 137 [00:04:59.000] Files (2) -Info 137 [16:05:00.000] ----------------------------------------------- -Info 137 [16:05:01.000] Open files: +Info 137 [00:05:00.000] ----------------------------------------------- +Info 137 [00:05:01.000] Open files: After request PolledWatches:: @@ -2734,11 +2734,11 @@ FsWatchesRecursive:: /user/username/projects/myproject/random: {} -Info 137 [16:05:02.000] response: +Info 137 [00:05:02.000] response: { "responseRequired": false } -Info 138 [16:05:03.000] request: +Info 138 [00:05:03.000] request: { "seq": 0, "type": "request", @@ -2789,12 +2789,12 @@ FsWatchesRecursive:: /user/username/projects/myproject/random: {} -Info 139 [16:05:04.000] FileWatcher:: Close:: WatchInfo: /user/username/projects/myproject/random/random.ts 500 undefined WatchType: Closed Script info -Info 140 [16:05:05.000] Search path: /user/username/projects/myproject/random -Info 141 [16:05:06.000] For info: /user/username/projects/myproject/random/random.ts :: Config file name: /user/username/projects/myproject/random/tsconfig.json -Info 142 [16:05:07.000] `remove Project:: -Info 143 [16:05:08.000] Project '/user/username/projects/myproject/main/tsconfig.json' (Configured) -Info 144 [16:05:09.000] Files (3) +Info 139 [00:05:04.000] FileWatcher:: Close:: WatchInfo: /user/username/projects/myproject/random/random.ts 500 undefined WatchType: Closed Script info +Info 140 [00:05:05.000] Search path: /user/username/projects/myproject/random +Info 141 [00:05:06.000] For info: /user/username/projects/myproject/random/random.ts :: Config file name: /user/username/projects/myproject/random/tsconfig.json +Info 142 [00:05:07.000] `remove Project:: +Info 143 [00:05:08.000] Project '/user/username/projects/myproject/main/tsconfig.json' (Configured) +Info 144 [00:05:09.000] Files (3) /a/lib/lib.d.ts /user/username/projects/myproject/decls/fns.d.ts /user/username/projects/myproject/main/main.ts @@ -2807,19 +2807,19 @@ Info 144 [16:05:09.000] Files (3) main.ts Matched by default include pattern '**/*' -Info 145 [16:05:10.000] ----------------------------------------------- -Info 146 [16:05:11.000] DirectoryWatcher:: Close:: WatchInfo: /user/username/projects/myproject/main 1 undefined Config: /user/username/projects/myproject/main/tsconfig.json WatchType: Wild card directory -Info 147 [16:05:12.000] 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 148 [16:05:13.000] FileWatcher:: Close:: WatchInfo: /user/username/projects/myproject/main/tsconfig.json 2000 undefined Project: /user/username/projects/myproject/main/tsconfig.json WatchType: Config file -Info 149 [16:05:14.000] DirectoryWatcher:: Close:: WatchInfo: /user/username/projects/myproject/decls 1 undefined Project: /user/username/projects/myproject/main/tsconfig.json WatchType: Failed Lookup Locations -Info 150 [16:05:15.000] 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 151 [16:05:16.000] 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 152 [16:05:17.000] 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 153 [16:05:18.000] DirectoryWatcher:: Close:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/main/tsconfig.json WatchType: Type roots -Info 154 [16:05:19.000] 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 155 [16:05:20.000] `remove Project:: -Info 156 [16:05:21.000] Project '/user/username/projects/myproject/dependency/tsconfig.json' (Configured) -Info 157 [16:05:22.000] Files (2) +Info 145 [00:05:10.000] ----------------------------------------------- +Info 146 [00:05:11.000] DirectoryWatcher:: Close:: WatchInfo: /user/username/projects/myproject/main 1 undefined Config: /user/username/projects/myproject/main/tsconfig.json WatchType: Wild card directory +Info 147 [00:05:12.000] 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 148 [00:05:13.000] FileWatcher:: Close:: WatchInfo: /user/username/projects/myproject/main/tsconfig.json 2000 undefined Project: /user/username/projects/myproject/main/tsconfig.json WatchType: Config file +Info 149 [00:05:14.000] DirectoryWatcher:: Close:: WatchInfo: /user/username/projects/myproject/decls 1 undefined Project: /user/username/projects/myproject/main/tsconfig.json WatchType: Failed Lookup Locations +Info 150 [00:05:15.000] 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 151 [00:05:16.000] 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 152 [00:05:17.000] 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 153 [00:05:18.000] DirectoryWatcher:: Close:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/main/tsconfig.json WatchType: Type roots +Info 154 [00:05:19.000] 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 155 [00:05:20.000] `remove Project:: +Info 156 [00:05:21.000] Project '/user/username/projects/myproject/dependency/tsconfig.json' (Configured) +Info 157 [00:05:22.000] Files (2) /a/lib/lib.d.ts /user/username/projects/myproject/dependency/FnS.ts @@ -2829,26 +2829,26 @@ Info 157 [16:05:22.000] Files (2) FnS.ts Matched by default include pattern '**/*' -Info 158 [16:05:23.000] ----------------------------------------------- -Info 159 [16:05:24.000] DirectoryWatcher:: Close:: WatchInfo: /user/username/projects/myproject/dependency 1 undefined Config: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Wild card directory -Info 160 [16:05:25.000] 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 161 [16:05:26.000] FileWatcher:: Close:: WatchInfo: /user/username/projects/myproject/dependency/tsconfig.json 2000 undefined Project: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Config file -Info 162 [16:05:27.000] 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 163 [16:05:28.000] 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 164 [16:05:29.000] DirectoryWatcher:: Close:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Type roots -Info 165 [16:05:30.000] 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 166 [16:05:31.000] 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 167 [16:05:32.000] FileWatcher:: Close:: WatchInfo: /user/username/projects/myproject/main/main.ts 500 undefined WatchType: Closed Script info -Info 168 [16:05:33.000] FileWatcher:: Close:: WatchInfo: /user/username/projects/myproject/dependency/FnS.ts 500 undefined WatchType: Closed Script info -Info 169 [16:05:34.000] FileWatcher:: Close:: WatchInfo: /user/username/projects/myproject/decls/fns.d.ts 500 undefined WatchType: Closed Script info -Info 170 [16:05:35.000] FileWatcher:: Close:: WatchInfo: /user/username/projects/myproject/decls/FnS.d.ts.map 500 undefined WatchType: Closed Script info -Info 171 [16:05:36.000] Project '/user/username/projects/myproject/random/tsconfig.json' (Configured) -Info 171 [16:05:37.000] Files (2) - -Info 171 [16:05:38.000] ----------------------------------------------- -Info 171 [16:05:39.000] Open files: -Info 171 [16:05:40.000] FileName: /user/username/projects/myproject/random/random.ts ProjectRootPath: undefined -Info 171 [16:05:41.000] Projects: /user/username/projects/myproject/random/tsconfig.json +Info 158 [00:05:23.000] ----------------------------------------------- +Info 159 [00:05:24.000] DirectoryWatcher:: Close:: WatchInfo: /user/username/projects/myproject/dependency 1 undefined Config: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Wild card directory +Info 160 [00:05:25.000] 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 161 [00:05:26.000] FileWatcher:: Close:: WatchInfo: /user/username/projects/myproject/dependency/tsconfig.json 2000 undefined Project: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Config file +Info 162 [00:05:27.000] 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 163 [00:05:28.000] 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 164 [00:05:29.000] DirectoryWatcher:: Close:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Type roots +Info 165 [00:05:30.000] 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 166 [00:05:31.000] 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 167 [00:05:32.000] FileWatcher:: Close:: WatchInfo: /user/username/projects/myproject/main/main.ts 500 undefined WatchType: Closed Script info +Info 168 [00:05:33.000] FileWatcher:: Close:: WatchInfo: /user/username/projects/myproject/dependency/FnS.ts 500 undefined WatchType: Closed Script info +Info 169 [00:05:34.000] FileWatcher:: Close:: WatchInfo: /user/username/projects/myproject/decls/fns.d.ts 500 undefined WatchType: Closed Script info +Info 170 [00:05:35.000] FileWatcher:: Close:: WatchInfo: /user/username/projects/myproject/decls/FnS.d.ts.map 500 undefined WatchType: Closed Script info +Info 171 [00:05:36.000] Project '/user/username/projects/myproject/random/tsconfig.json' (Configured) +Info 171 [00:05:37.000] Files (2) + +Info 171 [00:05:38.000] ----------------------------------------------- +Info 171 [00:05:39.000] Open files: +Info 171 [00:05:40.000] FileName: /user/username/projects/myproject/random/random.ts ProjectRootPath: undefined +Info 171 [00:05:41.000] Projects: /user/username/projects/myproject/random/tsconfig.json After request PolledWatches:: @@ -2867,7 +2867,7 @@ FsWatchesRecursive:: /user/username/projects/myproject/random: {} -Info 171 [16:05:42.000] response: +Info 171 [00:05:42.000] response: { "responseRequired": false } \ No newline at end of file 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 38a371e5e94c3..aa0049b3b97df 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 @@ -1,5 +1,5 @@ -Info 0 [16:01:03.000] Provided types map file "/a/lib/typesMap.json" doesn't exist -Info 1 [16:01:04.000] request: +Info 0 [00:01:03.000] Provided types map file "/a/lib/typesMap.json" doesn't exist +Info 1 [00:01:04.000] request: { "seq": 0, "type": "request", @@ -200,11 +200,11 @@ FsWatches:: FsWatchesRecursive:: -Info 2 [16:01:05.000] Search path: /user/username/projects/myproject/main -Info 3 [16:01:06.000] For info: /user/username/projects/myproject/main/main.ts :: Config file name: /user/username/projects/myproject/main/tsconfig.json -Info 4 [16:01:07.000] Creating configuration project /user/username/projects/myproject/main/tsconfig.json -Info 5 [16:01:08.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/main/tsconfig.json 2000 undefined Project: /user/username/projects/myproject/main/tsconfig.json WatchType: Config file -Info 6 [16:01:09.000] Config: /user/username/projects/myproject/main/tsconfig.json : { +Info 2 [00:01:05.000] Search path: /user/username/projects/myproject/main +Info 3 [00:01:06.000] For info: /user/username/projects/myproject/main/main.ts :: Config file name: /user/username/projects/myproject/main/tsconfig.json +Info 4 [00:01:07.000] Creating configuration project /user/username/projects/myproject/main/tsconfig.json +Info 5 [00:01:08.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/main/tsconfig.json 2000 undefined Project: /user/username/projects/myproject/main/tsconfig.json WatchType: Config file +Info 6 [00:01:09.000] Config: /user/username/projects/myproject/main/tsconfig.json : { "rootNames": [ "/user/username/projects/myproject/main/main.ts" ], @@ -214,21 +214,21 @@ Info 6 [16:01:09.000] Config: /user/username/projects/myproject/main/tsconfig "configFilePath": "/user/username/projects/myproject/main/tsconfig.json" } } -Info 7 [16:01:10.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/main 1 undefined Config: /user/username/projects/myproject/main/tsconfig.json WatchType: Wild card directory -Info 8 [16:01:11.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/main 1 undefined Config: /user/username/projects/myproject/main/tsconfig.json WatchType: Wild card directory -Info 9 [16:01:12.000] Plugins were requested but not running in environment that supports 'require'. Nothing will be loaded -Info 10 [16:01:13.000] Starting updateGraphWorker: Project: /user/username/projects/myproject/main/tsconfig.json -Info 11 [16:01:14.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/decls 1 undefined Project: /user/username/projects/myproject/main/tsconfig.json WatchType: Failed Lookup Locations -Info 12 [16:01:15.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/decls 1 undefined Project: /user/username/projects/myproject/main/tsconfig.json WatchType: Failed Lookup Locations -Info 13 [16:01:16.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/decls/fns.d.ts 500 undefined WatchType: Closed Script info -Info 14 [16:01:17.000] FileWatcher:: Added:: WatchInfo: /a/lib/lib.d.ts 500 undefined WatchType: Closed Script info -Info 15 [16:01:18.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/main/node_modules/@types 1 undefined Project: /user/username/projects/myproject/main/tsconfig.json WatchType: Type roots -Info 16 [16:01:19.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/main/node_modules/@types 1 undefined Project: /user/username/projects/myproject/main/tsconfig.json WatchType: Type roots -Info 17 [16:01:20.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/main/tsconfig.json WatchType: Type roots -Info 18 [16:01:21.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/main/tsconfig.json WatchType: Type roots -Info 19 [16:01:22.000] Finishing updateGraphWorker: Project: /user/username/projects/myproject/main/tsconfig.json Version: 1 structureChanged: true structureIsReused:: Not Elapsed:: *ms -Info 20 [16:01:23.000] Project '/user/username/projects/myproject/main/tsconfig.json' (Configured) -Info 21 [16:01:24.000] Files (3) +Info 7 [00:01:10.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/main 1 undefined Config: /user/username/projects/myproject/main/tsconfig.json WatchType: Wild card directory +Info 8 [00:01:11.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/main 1 undefined Config: /user/username/projects/myproject/main/tsconfig.json WatchType: Wild card directory +Info 9 [00:01:12.000] Plugins were requested but not running in environment that supports 'require'. Nothing will be loaded +Info 10 [00:01:13.000] Starting updateGraphWorker: Project: /user/username/projects/myproject/main/tsconfig.json +Info 11 [00:01:14.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/decls 1 undefined Project: /user/username/projects/myproject/main/tsconfig.json WatchType: Failed Lookup Locations +Info 12 [00:01:15.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/decls 1 undefined Project: /user/username/projects/myproject/main/tsconfig.json WatchType: Failed Lookup Locations +Info 13 [00:01:16.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/decls/fns.d.ts 500 undefined WatchType: Closed Script info +Info 14 [00:01:17.000] FileWatcher:: Added:: WatchInfo: /a/lib/lib.d.ts 500 undefined WatchType: Closed Script info +Info 15 [00:01:18.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/main/node_modules/@types 1 undefined Project: /user/username/projects/myproject/main/tsconfig.json WatchType: Type roots +Info 16 [00:01:19.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/main/node_modules/@types 1 undefined Project: /user/username/projects/myproject/main/tsconfig.json WatchType: Type roots +Info 17 [00:01:20.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/main/tsconfig.json WatchType: Type roots +Info 18 [00:01:21.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/main/tsconfig.json WatchType: Type roots +Info 19 [00:01:22.000] Finishing updateGraphWorker: Project: /user/username/projects/myproject/main/tsconfig.json Version: 1 structureChanged: true structureIsReused:: Not Elapsed:: *ms +Info 20 [00:01:23.000] Project '/user/username/projects/myproject/main/tsconfig.json' (Configured) +Info 21 [00:01:24.000] Files (3) /a/lib/lib.d.ts /user/username/projects/myproject/decls/fns.d.ts /user/username/projects/myproject/main/main.ts @@ -241,16 +241,16 @@ Info 21 [16:01:24.000] Files (3) main.ts Matched by default include pattern '**/*' -Info 22 [16:01:25.000] ----------------------------------------------- -Info 23 [16:01:26.000] Search path: /user/username/projects/myproject/main -Info 24 [16:01:27.000] For info: /user/username/projects/myproject/main/tsconfig.json :: No config files found. -Info 25 [16:01:28.000] Project '/user/username/projects/myproject/main/tsconfig.json' (Configured) -Info 25 [16:01:29.000] Files (3) +Info 22 [00:01:25.000] ----------------------------------------------- +Info 23 [00:01:26.000] Search path: /user/username/projects/myproject/main +Info 24 [00:01:27.000] For info: /user/username/projects/myproject/main/tsconfig.json :: No config files found. +Info 25 [00:01:28.000] Project '/user/username/projects/myproject/main/tsconfig.json' (Configured) +Info 25 [00:01:29.000] Files (3) -Info 25 [16:01:30.000] ----------------------------------------------- -Info 25 [16:01:31.000] Open files: -Info 25 [16:01:32.000] FileName: /user/username/projects/myproject/main/main.ts ProjectRootPath: undefined -Info 25 [16:01:33.000] Projects: /user/username/projects/myproject/main/tsconfig.json +Info 25 [00:01:30.000] ----------------------------------------------- +Info 25 [00:01:31.000] Open files: +Info 25 [00:01:32.000] FileName: /user/username/projects/myproject/main/main.ts ProjectRootPath: undefined +Info 25 [00:01:33.000] Projects: /user/username/projects/myproject/main/tsconfig.json After request PolledWatches:: @@ -273,11 +273,11 @@ FsWatchesRecursive:: /user/username/projects/myproject/decls: {} -Info 25 [16:01:34.000] response: +Info 25 [00:01:34.000] response: { "responseRequired": false } -Info 26 [16:01:35.000] request: +Info 26 [00:01:35.000] request: { "seq": 0, "type": "request", @@ -308,11 +308,11 @@ FsWatchesRecursive:: /user/username/projects/myproject/decls: {} -Info 27 [16:01:36.000] Search path: /user/username/projects/myproject/dependency -Info 28 [16:01:37.000] For info: /user/username/projects/myproject/dependency/FnS.ts :: Config file name: /user/username/projects/myproject/dependency/tsconfig.json -Info 29 [16:01:38.000] Creating configuration project /user/username/projects/myproject/dependency/tsconfig.json -Info 30 [16:01:39.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/dependency/tsconfig.json 2000 undefined Project: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Config file -Info 31 [16:01:40.000] Config: /user/username/projects/myproject/dependency/tsconfig.json : { +Info 27 [00:01:36.000] Search path: /user/username/projects/myproject/dependency +Info 28 [00:01:37.000] For info: /user/username/projects/myproject/dependency/FnS.ts :: Config file name: /user/username/projects/myproject/dependency/tsconfig.json +Info 29 [00:01:38.000] Creating configuration project /user/username/projects/myproject/dependency/tsconfig.json +Info 30 [00:01:39.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/dependency/tsconfig.json 2000 undefined Project: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Config file +Info 31 [00:01:40.000] Config: /user/username/projects/myproject/dependency/tsconfig.json : { "rootNames": [ "/user/username/projects/myproject/dependency/FnS.ts" ], @@ -323,17 +323,17 @@ Info 31 [16:01:40.000] Config: /user/username/projects/myproject/dependency/ts "configFilePath": "/user/username/projects/myproject/dependency/tsconfig.json" } } -Info 32 [16:01:41.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/dependency 1 undefined Config: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Wild card directory -Info 33 [16:01:42.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/dependency 1 undefined Config: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Wild card directory -Info 34 [16:01:43.000] Plugins were requested but not running in environment that supports 'require'. Nothing will be loaded -Info 35 [16:01:44.000] Starting updateGraphWorker: Project: /user/username/projects/myproject/dependency/tsconfig.json -Info 36 [16:01:45.000] 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 37 [16:01:46.000] 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 38 [16:01:47.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Type roots -Info 39 [16:01:48.000] 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 40 [16:01:49.000] Finishing updateGraphWorker: Project: /user/username/projects/myproject/dependency/tsconfig.json Version: 1 structureChanged: true structureIsReused:: Not Elapsed:: *ms -Info 41 [16:01:50.000] Project '/user/username/projects/myproject/dependency/tsconfig.json' (Configured) -Info 42 [16:01:51.000] Files (2) +Info 32 [00:01:41.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/dependency 1 undefined Config: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Wild card directory +Info 33 [00:01:42.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/dependency 1 undefined Config: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Wild card directory +Info 34 [00:01:43.000] Plugins were requested but not running in environment that supports 'require'. Nothing will be loaded +Info 35 [00:01:44.000] Starting updateGraphWorker: Project: /user/username/projects/myproject/dependency/tsconfig.json +Info 36 [00:01:45.000] 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 37 [00:01:46.000] 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 38 [00:01:47.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Type roots +Info 39 [00:01:48.000] 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 40 [00:01:49.000] Finishing updateGraphWorker: Project: /user/username/projects/myproject/dependency/tsconfig.json Version: 1 structureChanged: true structureIsReused:: Not Elapsed:: *ms +Info 41 [00:01:50.000] Project '/user/username/projects/myproject/dependency/tsconfig.json' (Configured) +Info 42 [00:01:51.000] Files (2) /a/lib/lib.d.ts /user/username/projects/myproject/dependency/FnS.ts @@ -343,22 +343,22 @@ Info 42 [16:01:51.000] Files (2) FnS.ts Matched by default include pattern '**/*' -Info 43 [16:01:52.000] ----------------------------------------------- -Info 44 [16:01:53.000] Search path: /user/username/projects/myproject/dependency -Info 45 [16:01:54.000] For info: /user/username/projects/myproject/dependency/tsconfig.json :: No config files found. -Info 46 [16:01:55.000] Project '/user/username/projects/myproject/main/tsconfig.json' (Configured) -Info 46 [16:01:56.000] Files (3) - -Info 46 [16:01:57.000] ----------------------------------------------- -Info 46 [16:01:58.000] Project '/user/username/projects/myproject/dependency/tsconfig.json' (Configured) -Info 46 [16:01:59.000] Files (2) - -Info 46 [16:02:00.000] ----------------------------------------------- -Info 46 [16:02:01.000] Open files: -Info 46 [16:02:02.000] FileName: /user/username/projects/myproject/main/main.ts ProjectRootPath: undefined -Info 46 [16:02:03.000] Projects: /user/username/projects/myproject/main/tsconfig.json -Info 46 [16:02:04.000] FileName: /user/username/projects/myproject/dependency/FnS.ts ProjectRootPath: undefined -Info 46 [16:02:05.000] Projects: /user/username/projects/myproject/dependency/tsconfig.json +Info 43 [00:01:52.000] ----------------------------------------------- +Info 44 [00:01:53.000] Search path: /user/username/projects/myproject/dependency +Info 45 [00:01:54.000] For info: /user/username/projects/myproject/dependency/tsconfig.json :: No config files found. +Info 46 [00:01:55.000] Project '/user/username/projects/myproject/main/tsconfig.json' (Configured) +Info 46 [00:01:56.000] Files (3) + +Info 46 [00:01:57.000] ----------------------------------------------- +Info 46 [00:01:58.000] Project '/user/username/projects/myproject/dependency/tsconfig.json' (Configured) +Info 46 [00:01:59.000] Files (2) + +Info 46 [00:02:00.000] ----------------------------------------------- +Info 46 [00:02:01.000] Open files: +Info 46 [00:02:02.000] FileName: /user/username/projects/myproject/main/main.ts ProjectRootPath: undefined +Info 46 [00:02:03.000] Projects: /user/username/projects/myproject/main/tsconfig.json +Info 46 [00:02:04.000] FileName: /user/username/projects/myproject/dependency/FnS.ts ProjectRootPath: undefined +Info 46 [00:02:05.000] Projects: /user/username/projects/myproject/dependency/tsconfig.json After request PolledWatches:: @@ -387,11 +387,11 @@ FsWatchesRecursive:: /user/username/projects/myproject/dependency: {} -Info 46 [16:02:06.000] response: +Info 46 [00:02:06.000] response: { "responseRequired": false } -Info 47 [16:02:07.000] request: +Info 47 [00:02:07.000] request: { "seq": 0, "type": "request", @@ -428,11 +428,11 @@ FsWatchesRecursive:: /user/username/projects/myproject/dependency: {} -Info 48 [16:02:08.000] Search path: /user/username/projects/myproject/random -Info 49 [16:02:09.000] For info: /user/username/projects/myproject/random/random.ts :: Config file name: /user/username/projects/myproject/random/tsconfig.json -Info 50 [16:02:10.000] Creating configuration project /user/username/projects/myproject/random/tsconfig.json -Info 51 [16:02:11.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/random/tsconfig.json 2000 undefined Project: /user/username/projects/myproject/random/tsconfig.json WatchType: Config file -Info 52 [16:02:12.000] Config: /user/username/projects/myproject/random/tsconfig.json : { +Info 48 [00:02:08.000] Search path: /user/username/projects/myproject/random +Info 49 [00:02:09.000] For info: /user/username/projects/myproject/random/random.ts :: Config file name: /user/username/projects/myproject/random/tsconfig.json +Info 50 [00:02:10.000] Creating configuration project /user/username/projects/myproject/random/tsconfig.json +Info 51 [00:02:11.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/random/tsconfig.json 2000 undefined Project: /user/username/projects/myproject/random/tsconfig.json WatchType: Config file +Info 52 [00:02:12.000] Config: /user/username/projects/myproject/random/tsconfig.json : { "rootNames": [ "/user/username/projects/myproject/random/random.ts" ], @@ -440,17 +440,17 @@ Info 52 [16:02:12.000] Config: /user/username/projects/myproject/random/tsconf "configFilePath": "/user/username/projects/myproject/random/tsconfig.json" } } -Info 53 [16:02:13.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/random 1 undefined Config: /user/username/projects/myproject/random/tsconfig.json WatchType: Wild card directory -Info 54 [16:02:14.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/random 1 undefined Config: /user/username/projects/myproject/random/tsconfig.json WatchType: Wild card directory -Info 55 [16:02:15.000] Plugins were requested but not running in environment that supports 'require'. Nothing will be loaded -Info 56 [16:02:16.000] Starting updateGraphWorker: Project: /user/username/projects/myproject/random/tsconfig.json -Info 57 [16:02:17.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/random/node_modules/@types 1 undefined Project: /user/username/projects/myproject/random/tsconfig.json WatchType: Type roots -Info 58 [16:02:18.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/random/node_modules/@types 1 undefined Project: /user/username/projects/myproject/random/tsconfig.json WatchType: Type roots -Info 59 [16:02:19.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/random/tsconfig.json WatchType: Type roots -Info 60 [16:02:20.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/random/tsconfig.json WatchType: Type roots -Info 61 [16:02:21.000] Finishing updateGraphWorker: Project: /user/username/projects/myproject/random/tsconfig.json Version: 1 structureChanged: true structureIsReused:: Not Elapsed:: *ms -Info 62 [16:02:22.000] Project '/user/username/projects/myproject/random/tsconfig.json' (Configured) -Info 63 [16:02:23.000] Files (2) +Info 53 [00:02:13.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/random 1 undefined Config: /user/username/projects/myproject/random/tsconfig.json WatchType: Wild card directory +Info 54 [00:02:14.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/random 1 undefined Config: /user/username/projects/myproject/random/tsconfig.json WatchType: Wild card directory +Info 55 [00:02:15.000] Plugins were requested but not running in environment that supports 'require'. Nothing will be loaded +Info 56 [00:02:16.000] Starting updateGraphWorker: Project: /user/username/projects/myproject/random/tsconfig.json +Info 57 [00:02:17.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/random/node_modules/@types 1 undefined Project: /user/username/projects/myproject/random/tsconfig.json WatchType: Type roots +Info 58 [00:02:18.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/random/node_modules/@types 1 undefined Project: /user/username/projects/myproject/random/tsconfig.json WatchType: Type roots +Info 59 [00:02:19.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/random/tsconfig.json WatchType: Type roots +Info 60 [00:02:20.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/random/tsconfig.json WatchType: Type roots +Info 61 [00:02:21.000] Finishing updateGraphWorker: Project: /user/username/projects/myproject/random/tsconfig.json Version: 1 structureChanged: true structureIsReused:: Not Elapsed:: *ms +Info 62 [00:02:22.000] Project '/user/username/projects/myproject/random/tsconfig.json' (Configured) +Info 63 [00:02:23.000] Files (2) /a/lib/lib.d.ts /user/username/projects/myproject/random/random.ts @@ -460,26 +460,26 @@ Info 63 [16:02:23.000] Files (2) random.ts Matched by default include pattern '**/*' -Info 64 [16:02:24.000] ----------------------------------------------- -Info 65 [16:02:25.000] Project '/user/username/projects/myproject/main/tsconfig.json' (Configured) -Info 65 [16:02:26.000] Files (3) - -Info 65 [16:02:27.000] ----------------------------------------------- -Info 65 [16:02:28.000] Project '/user/username/projects/myproject/dependency/tsconfig.json' (Configured) -Info 65 [16:02:29.000] Files (2) - -Info 65 [16:02:30.000] ----------------------------------------------- -Info 65 [16:02:31.000] Project '/user/username/projects/myproject/random/tsconfig.json' (Configured) -Info 65 [16:02:32.000] Files (2) - -Info 65 [16:02:33.000] ----------------------------------------------- -Info 65 [16:02:34.000] Open files: -Info 65 [16:02:35.000] FileName: /user/username/projects/myproject/main/main.ts ProjectRootPath: undefined -Info 65 [16:02:36.000] Projects: /user/username/projects/myproject/main/tsconfig.json -Info 65 [16:02:37.000] FileName: /user/username/projects/myproject/dependency/FnS.ts ProjectRootPath: undefined -Info 65 [16:02:38.000] Projects: /user/username/projects/myproject/dependency/tsconfig.json -Info 65 [16:02:39.000] FileName: /user/username/projects/myproject/random/random.ts ProjectRootPath: undefined -Info 65 [16:02:40.000] Projects: /user/username/projects/myproject/random/tsconfig.json +Info 64 [00:02:24.000] ----------------------------------------------- +Info 65 [00:02:25.000] Project '/user/username/projects/myproject/main/tsconfig.json' (Configured) +Info 65 [00:02:26.000] Files (3) + +Info 65 [00:02:27.000] ----------------------------------------------- +Info 65 [00:02:28.000] Project '/user/username/projects/myproject/dependency/tsconfig.json' (Configured) +Info 65 [00:02:29.000] Files (2) + +Info 65 [00:02:30.000] ----------------------------------------------- +Info 65 [00:02:31.000] Project '/user/username/projects/myproject/random/tsconfig.json' (Configured) +Info 65 [00:02:32.000] Files (2) + +Info 65 [00:02:33.000] ----------------------------------------------- +Info 65 [00:02:34.000] Open files: +Info 65 [00:02:35.000] FileName: /user/username/projects/myproject/main/main.ts ProjectRootPath: undefined +Info 65 [00:02:36.000] Projects: /user/username/projects/myproject/main/tsconfig.json +Info 65 [00:02:37.000] FileName: /user/username/projects/myproject/dependency/FnS.ts ProjectRootPath: undefined +Info 65 [00:02:38.000] Projects: /user/username/projects/myproject/dependency/tsconfig.json +Info 65 [00:02:39.000] FileName: /user/username/projects/myproject/random/random.ts ProjectRootPath: undefined +Info 65 [00:02:40.000] Projects: /user/username/projects/myproject/random/tsconfig.json After request PolledWatches:: @@ -514,11 +514,11 @@ FsWatchesRecursive:: /user/username/projects/myproject/random: {} -Info 65 [16:02:41.000] response: +Info 65 [00:02:41.000] response: { "responseRequired": false } -Info 66 [16:02:42.000] request: +Info 66 [00:02:42.000] request: { "command": "definitionAndBoundSpan", "arguments": { @@ -563,7 +563,7 @@ FsWatchesRecursive:: /user/username/projects/myproject/random: {} -Info 67 [16:02:43.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/decls/FnS.d.ts.map 500 undefined WatchType: Closed Script info +Info 67 [00:02:43.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/decls/FnS.d.ts.map 500 undefined WatchType: Closed Script info After request PolledWatches:: @@ -600,7 +600,7 @@ FsWatchesRecursive:: /user/username/projects/myproject/random: {} -Info 68 [16:02:44.000] response: +Info 68 [00:02:44.000] response: { "response": { "definitions": [ @@ -637,7 +637,7 @@ Info 68 [16:02:44.000] response: }, "responseRequired": true } -Info 69 [16:02:45.000] request: +Info 69 [00:02:45.000] request: { "command": "rename", "arguments": { @@ -684,8 +684,8 @@ FsWatchesRecursive:: /user/username/projects/myproject/random: {} -Info 70 [16:02:46.000] Search path: /user/username/projects/myproject/dependency -Info 71 [16:02:47.000] For info: /user/username/projects/myproject/dependency/FnS.ts :: Config file name: /user/username/projects/myproject/dependency/tsconfig.json +Info 70 [00:02:46.000] Search path: /user/username/projects/myproject/dependency +Info 71 [00:02:47.000] For info: /user/username/projects/myproject/dependency/FnS.ts :: Config file name: /user/username/projects/myproject/dependency/tsconfig.json After request PolledWatches:: @@ -722,7 +722,7 @@ FsWatchesRecursive:: /user/username/projects/myproject/random: {} -Info 72 [16:02:48.000] response: +Info 72 [00:02:48.000] response: { "response": { "info": { @@ -803,17 +803,17 @@ Info 72 [16:02:48.000] response: }, "responseRequired": true } -Info 73 [16:02:50.000] FileWatcher:: Triggered with /user/username/projects/myproject/decls/fns.d.ts 2:: WatchInfo: /user/username/projects/myproject/decls/fns.d.ts 500 undefined WatchType: Closed Script info -Info 74 [16:02:51.000] FileWatcher:: Close:: WatchInfo: /user/username/projects/myproject/decls/fns.d.ts 500 undefined WatchType: Closed Script info -Info 75 [16:02:52.000] Scheduled: /user/username/projects/myproject/main/tsconfig.json -Info 76 [16:02:53.000] Scheduled: *ensureProjectForOpenFiles* -Info 77 [16:02:54.000] Scheduled: /user/username/projects/myproject/dependency/tsconfig.json -Info 78 [16:02:55.000] Scheduled: *ensureProjectForOpenFiles*, Cancelled earlier one -Info 79 [16:02:56.000] Elapsed:: *ms FileWatcher:: Triggered with /user/username/projects/myproject/decls/fns.d.ts 2:: WatchInfo: /user/username/projects/myproject/decls/fns.d.ts 500 undefined WatchType: Closed Script info -Info 80 [16:02:57.000] DirectoryWatcher:: Triggered with /user/username/projects/myproject/decls/FnS.d.ts :: WatchInfo: /user/username/projects/myproject/decls 1 undefined Project: /user/username/projects/myproject/main/tsconfig.json WatchType: Failed Lookup Locations -Info 81 [16:02:58.000] Scheduled: /user/username/projects/myproject/main/tsconfig.jsonFailedLookupInvalidation -Info 82 [16:02:59.000] Elapsed:: *ms DirectoryWatcher:: Triggered with /user/username/projects/myproject/decls/FnS.d.ts :: WatchInfo: /user/username/projects/myproject/decls 1 undefined Project: /user/username/projects/myproject/main/tsconfig.json WatchType: Failed Lookup Locations -Info 83 [16:03:00.000] request: +Info 73 [00:02:50.000] FileWatcher:: Triggered with /user/username/projects/myproject/decls/fns.d.ts 2:: WatchInfo: /user/username/projects/myproject/decls/fns.d.ts 500 undefined WatchType: Closed Script info +Info 74 [00:02:51.000] FileWatcher:: Close:: WatchInfo: /user/username/projects/myproject/decls/fns.d.ts 500 undefined WatchType: Closed Script info +Info 75 [00:02:52.000] Scheduled: /user/username/projects/myproject/main/tsconfig.json +Info 76 [00:02:53.000] Scheduled: *ensureProjectForOpenFiles* +Info 77 [00:02:54.000] Scheduled: /user/username/projects/myproject/dependency/tsconfig.json +Info 78 [00:02:55.000] Scheduled: *ensureProjectForOpenFiles*, Cancelled earlier one +Info 79 [00:02:56.000] Elapsed:: *ms FileWatcher:: Triggered with /user/username/projects/myproject/decls/fns.d.ts 2:: WatchInfo: /user/username/projects/myproject/decls/fns.d.ts 500 undefined WatchType: Closed Script info +Info 80 [00:02:57.000] DirectoryWatcher:: Triggered with /user/username/projects/myproject/decls/FnS.d.ts :: WatchInfo: /user/username/projects/myproject/decls 1 undefined Project: /user/username/projects/myproject/main/tsconfig.json WatchType: Failed Lookup Locations +Info 81 [00:02:58.000] Scheduled: /user/username/projects/myproject/main/tsconfig.jsonFailedLookupInvalidation +Info 82 [00:02:59.000] Elapsed:: *ms DirectoryWatcher:: Triggered with /user/username/projects/myproject/decls/FnS.d.ts :: WatchInfo: /user/username/projects/myproject/decls 1 undefined Project: /user/username/projects/myproject/main/tsconfig.json WatchType: Failed Lookup Locations +Info 83 [00:03:00.000] request: { "command": "definitionAndBoundSpan", "arguments": { @@ -859,10 +859,10 @@ FsWatchesRecursive:: /user/username/projects/myproject/random: {} -Info 84 [16:03:01.000] Starting updateGraphWorker: Project: /user/username/projects/myproject/main/tsconfig.json -Info 85 [16:03:02.000] Finishing updateGraphWorker: Project: /user/username/projects/myproject/main/tsconfig.json Version: 2 structureChanged: true structureIsReused:: Not Elapsed:: *ms -Info 86 [16:03:03.000] Project '/user/username/projects/myproject/main/tsconfig.json' (Configured) -Info 87 [16:03:04.000] Files (2) +Info 84 [00:03:01.000] Starting updateGraphWorker: Project: /user/username/projects/myproject/main/tsconfig.json +Info 85 [00:03:02.000] Finishing updateGraphWorker: Project: /user/username/projects/myproject/main/tsconfig.json Version: 2 structureChanged: true structureIsReused:: Not Elapsed:: *ms +Info 86 [00:03:03.000] Project '/user/username/projects/myproject/main/tsconfig.json' (Configured) +Info 87 [00:03:04.000] Files (2) /a/lib/lib.d.ts /user/username/projects/myproject/main/main.ts @@ -872,7 +872,7 @@ Info 87 [16:03:04.000] Files (2) main.ts Matched by default include pattern '**/*' -Info 88 [16:03:05.000] ----------------------------------------------- +Info 88 [00:03:05.000] ----------------------------------------------- After request PolledWatches:: @@ -907,7 +907,7 @@ FsWatchesRecursive:: /user/username/projects/myproject/random: {} -Info 89 [16:03:06.000] response: +Info 89 [00:03:06.000] response: { "response": { "definitions": [ @@ -944,7 +944,7 @@ Info 89 [16:03:06.000] response: }, "responseRequired": true } -Info 90 [16:03:07.000] request: +Info 90 [00:03:07.000] request: { "command": "definitionAndBoundSpan", "arguments": { @@ -1023,7 +1023,7 @@ FsWatchesRecursive:: /user/username/projects/myproject/random: {} -Info 91 [16:03:08.000] response: +Info 91 [00:03:08.000] response: { "response": { "definitions": [ @@ -1060,7 +1060,7 @@ Info 91 [16:03:08.000] response: }, "responseRequired": true } -Info 92 [16:03:09.000] request: +Info 92 [00:03:09.000] request: { "command": "definitionAndBoundSpan", "arguments": { @@ -1139,7 +1139,7 @@ FsWatchesRecursive:: /user/username/projects/myproject/random: {} -Info 93 [16:03:10.000] response: +Info 93 [00:03:10.000] response: { "response": { "definitions": [ @@ -1176,7 +1176,7 @@ Info 93 [16:03:10.000] response: }, "responseRequired": true } -Info 94 [16:03:11.000] request: +Info 94 [00:03:11.000] request: { "command": "definitionAndBoundSpan", "arguments": { @@ -1255,7 +1255,7 @@ FsWatchesRecursive:: /user/username/projects/myproject/random: {} -Info 95 [16:03:12.000] response: +Info 95 [00:03:12.000] response: { "response": { "definitions": [ @@ -1292,7 +1292,7 @@ Info 95 [16:03:12.000] response: }, "responseRequired": true } -Info 96 [16:03:13.000] request: +Info 96 [00:03:13.000] request: { "command": "definitionAndBoundSpan", "arguments": { @@ -1371,7 +1371,7 @@ FsWatchesRecursive:: /user/username/projects/myproject/random: {} -Info 97 [16:03:14.000] response: +Info 97 [00:03:14.000] response: { "response": { "definitions": [ @@ -1408,7 +1408,7 @@ Info 97 [16:03:14.000] response: }, "responseRequired": true } -Info 98 [16:03:15.000] request: +Info 98 [00:03:15.000] request: { "command": "rename", "arguments": { @@ -1453,9 +1453,9 @@ FsWatchesRecursive:: /user/username/projects/myproject/random: {} -Info 99 [16:03:16.000] Starting updateGraphWorker: Project: /user/username/projects/myproject/dependency/tsconfig.json -Info 100 [16:03:17.000] Finishing updateGraphWorker: Project: /user/username/projects/myproject/dependency/tsconfig.json Version: 2 structureChanged: false structureIsReused:: Not Elapsed:: *ms -Info 101 [16:03:18.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/decls/FnS.d.ts 2000 undefined Project: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Missing generated file +Info 99 [00:03:16.000] Starting updateGraphWorker: Project: /user/username/projects/myproject/dependency/tsconfig.json +Info 100 [00:03:17.000] Finishing updateGraphWorker: Project: /user/username/projects/myproject/dependency/tsconfig.json Version: 2 structureChanged: false structureIsReused:: Not Elapsed:: *ms +Info 101 [00:03:18.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/decls/FnS.d.ts 2000 undefined Project: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Missing generated file After request PolledWatches:: @@ -1492,7 +1492,7 @@ FsWatchesRecursive:: /user/username/projects/myproject/random: {} -Info 102 [16:03:19.000] response: +Info 102 [00:03:19.000] response: { "response": { "info": { @@ -1540,7 +1540,7 @@ Info 102 [16:03:19.000] response: }, "responseRequired": true } -Info 103 [16:03:20.000] request: +Info 103 [00:03:20.000] request: { "command": "rename", "arguments": { @@ -1623,7 +1623,7 @@ FsWatchesRecursive:: /user/username/projects/myproject/random: {} -Info 104 [16:03:21.000] response: +Info 104 [00:03:21.000] response: { "response": { "info": { @@ -1671,7 +1671,7 @@ Info 104 [16:03:21.000] response: }, "responseRequired": true } -Info 105 [16:03:22.000] request: +Info 105 [00:03:22.000] request: { "command": "rename", "arguments": { @@ -1754,7 +1754,7 @@ FsWatchesRecursive:: /user/username/projects/myproject/random: {} -Info 106 [16:03:23.000] response: +Info 106 [00:03:23.000] response: { "response": { "info": { @@ -1802,7 +1802,7 @@ Info 106 [16:03:23.000] response: }, "responseRequired": true } -Info 107 [16:03:24.000] request: +Info 107 [00:03:24.000] request: { "command": "rename", "arguments": { @@ -1885,7 +1885,7 @@ FsWatchesRecursive:: /user/username/projects/myproject/random: {} -Info 108 [16:03:25.000] response: +Info 108 [00:03:25.000] response: { "response": { "info": { @@ -1933,7 +1933,7 @@ Info 108 [16:03:25.000] response: }, "responseRequired": true } -Info 109 [16:03:26.000] request: +Info 109 [00:03:26.000] request: { "command": "rename", "arguments": { @@ -2016,7 +2016,7 @@ FsWatchesRecursive:: /user/username/projects/myproject/random: {} -Info 110 [16:03:27.000] response: +Info 110 [00:03:27.000] response: { "response": { "info": { @@ -2064,7 +2064,7 @@ Info 110 [16:03:27.000] response: }, "responseRequired": true } -Info 111 [16:03:28.000] request: +Info 111 [00:03:28.000] request: { "seq": 0, "type": "request", @@ -2109,24 +2109,24 @@ FsWatchesRecursive:: /user/username/projects/myproject/random: {} -Info 112 [16:03:29.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/random/random.ts 500 undefined WatchType: Closed Script info -Info 113 [16:03:30.000] Project '/user/username/projects/myproject/main/tsconfig.json' (Configured) -Info 113 [16:03:31.000] Files (2) +Info 112 [00:03:29.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/random/random.ts 500 undefined WatchType: Closed Script info +Info 113 [00:03:30.000] Project '/user/username/projects/myproject/main/tsconfig.json' (Configured) +Info 113 [00:03:31.000] Files (2) -Info 113 [16:03:32.000] ----------------------------------------------- -Info 113 [16:03:33.000] Project '/user/username/projects/myproject/dependency/tsconfig.json' (Configured) -Info 113 [16:03:34.000] Files (2) +Info 113 [00:03:32.000] ----------------------------------------------- +Info 113 [00:03:33.000] Project '/user/username/projects/myproject/dependency/tsconfig.json' (Configured) +Info 113 [00:03:34.000] Files (2) -Info 113 [16:03:35.000] ----------------------------------------------- -Info 113 [16:03:36.000] Project '/user/username/projects/myproject/random/tsconfig.json' (Configured) -Info 113 [16:03:37.000] Files (2) +Info 113 [00:03:35.000] ----------------------------------------------- +Info 113 [00:03:36.000] Project '/user/username/projects/myproject/random/tsconfig.json' (Configured) +Info 113 [00:03:37.000] Files (2) -Info 113 [16:03:38.000] ----------------------------------------------- -Info 113 [16:03:39.000] Open files: -Info 113 [16:03:40.000] FileName: /user/username/projects/myproject/main/main.ts ProjectRootPath: undefined -Info 113 [16:03:41.000] Projects: /user/username/projects/myproject/main/tsconfig.json -Info 113 [16:03:42.000] FileName: /user/username/projects/myproject/dependency/FnS.ts ProjectRootPath: undefined -Info 113 [16:03:43.000] Projects: /user/username/projects/myproject/dependency/tsconfig.json +Info 113 [00:03:38.000] ----------------------------------------------- +Info 113 [00:03:39.000] Open files: +Info 113 [00:03:40.000] FileName: /user/username/projects/myproject/main/main.ts ProjectRootPath: undefined +Info 113 [00:03:41.000] Projects: /user/username/projects/myproject/main/tsconfig.json +Info 113 [00:03:42.000] FileName: /user/username/projects/myproject/dependency/FnS.ts ProjectRootPath: undefined +Info 113 [00:03:43.000] Projects: /user/username/projects/myproject/dependency/tsconfig.json After request PolledWatches:: @@ -2165,11 +2165,11 @@ FsWatchesRecursive:: /user/username/projects/myproject/random: {} -Info 113 [16:03:44.000] response: +Info 113 [00:03:44.000] response: { "responseRequired": false } -Info 114 [16:03:45.000] request: +Info 114 [00:03:45.000] request: { "seq": 0, "type": "request", @@ -2216,29 +2216,29 @@ FsWatchesRecursive:: /user/username/projects/myproject/random: {} -Info 115 [16:03:46.000] FileWatcher:: Close:: WatchInfo: /user/username/projects/myproject/random/random.ts 500 undefined WatchType: Closed Script info -Info 116 [16:03:47.000] Search path: /user/username/projects/myproject/random -Info 117 [16:03:48.000] For info: /user/username/projects/myproject/random/random.ts :: Config file name: /user/username/projects/myproject/random/tsconfig.json -Info 118 [16:03:49.000] FileWatcher:: Close:: WatchInfo: /user/username/projects/myproject/decls/FnS.d.ts.map 500 undefined WatchType: Closed Script info -Info 119 [16:03:50.000] Project '/user/username/projects/myproject/main/tsconfig.json' (Configured) -Info 119 [16:03:51.000] Files (2) - -Info 119 [16:03:52.000] ----------------------------------------------- -Info 119 [16:03:53.000] Project '/user/username/projects/myproject/dependency/tsconfig.json' (Configured) -Info 119 [16:03:54.000] Files (2) - -Info 119 [16:03:55.000] ----------------------------------------------- -Info 119 [16:03:56.000] Project '/user/username/projects/myproject/random/tsconfig.json' (Configured) -Info 119 [16:03:57.000] Files (2) - -Info 119 [16:03:58.000] ----------------------------------------------- -Info 119 [16:03:59.000] Open files: -Info 119 [16:04:00.000] FileName: /user/username/projects/myproject/main/main.ts ProjectRootPath: undefined -Info 119 [16:04:01.000] Projects: /user/username/projects/myproject/main/tsconfig.json -Info 119 [16:04:02.000] FileName: /user/username/projects/myproject/dependency/FnS.ts ProjectRootPath: undefined -Info 119 [16:04:03.000] Projects: /user/username/projects/myproject/dependency/tsconfig.json -Info 119 [16:04:04.000] FileName: /user/username/projects/myproject/random/random.ts ProjectRootPath: undefined -Info 119 [16:04:05.000] Projects: /user/username/projects/myproject/random/tsconfig.json +Info 115 [00:03:46.000] FileWatcher:: Close:: WatchInfo: /user/username/projects/myproject/random/random.ts 500 undefined WatchType: Closed Script info +Info 116 [00:03:47.000] Search path: /user/username/projects/myproject/random +Info 117 [00:03:48.000] For info: /user/username/projects/myproject/random/random.ts :: Config file name: /user/username/projects/myproject/random/tsconfig.json +Info 118 [00:03:49.000] FileWatcher:: Close:: WatchInfo: /user/username/projects/myproject/decls/FnS.d.ts.map 500 undefined WatchType: Closed Script info +Info 119 [00:03:50.000] Project '/user/username/projects/myproject/main/tsconfig.json' (Configured) +Info 119 [00:03:51.000] Files (2) + +Info 119 [00:03:52.000] ----------------------------------------------- +Info 119 [00:03:53.000] Project '/user/username/projects/myproject/dependency/tsconfig.json' (Configured) +Info 119 [00:03:54.000] Files (2) + +Info 119 [00:03:55.000] ----------------------------------------------- +Info 119 [00:03:56.000] Project '/user/username/projects/myproject/random/tsconfig.json' (Configured) +Info 119 [00:03:57.000] Files (2) + +Info 119 [00:03:58.000] ----------------------------------------------- +Info 119 [00:03:59.000] Open files: +Info 119 [00:04:00.000] FileName: /user/username/projects/myproject/main/main.ts ProjectRootPath: undefined +Info 119 [00:04:01.000] Projects: /user/username/projects/myproject/main/tsconfig.json +Info 119 [00:04:02.000] FileName: /user/username/projects/myproject/dependency/FnS.ts ProjectRootPath: undefined +Info 119 [00:04:03.000] Projects: /user/username/projects/myproject/dependency/tsconfig.json +Info 119 [00:04:04.000] FileName: /user/username/projects/myproject/random/random.ts ProjectRootPath: undefined +Info 119 [00:04:05.000] Projects: /user/username/projects/myproject/random/tsconfig.json After request PolledWatches:: @@ -2273,11 +2273,11 @@ FsWatchesRecursive:: /user/username/projects/myproject/random: {} -Info 119 [16:04:06.000] response: +Info 119 [00:04:06.000] response: { "responseRequired": false } -Info 120 [16:04:07.000] request: +Info 120 [00:04:07.000] request: { "seq": 0, "type": "request", @@ -2320,24 +2320,24 @@ FsWatchesRecursive:: /user/username/projects/myproject/random: {} -Info 121 [16:04:08.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/main/main.ts 500 undefined WatchType: Closed Script info -Info 122 [16:04:09.000] Project '/user/username/projects/myproject/main/tsconfig.json' (Configured) -Info 122 [16:04:10.000] Files (2) +Info 121 [00:04:08.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/main/main.ts 500 undefined WatchType: Closed Script info +Info 122 [00:04:09.000] Project '/user/username/projects/myproject/main/tsconfig.json' (Configured) +Info 122 [00:04:10.000] Files (2) -Info 122 [16:04:11.000] ----------------------------------------------- -Info 122 [16:04:12.000] Project '/user/username/projects/myproject/dependency/tsconfig.json' (Configured) -Info 122 [16:04:13.000] Files (2) +Info 122 [00:04:11.000] ----------------------------------------------- +Info 122 [00:04:12.000] Project '/user/username/projects/myproject/dependency/tsconfig.json' (Configured) +Info 122 [00:04:13.000] Files (2) -Info 122 [16:04:14.000] ----------------------------------------------- -Info 122 [16:04:15.000] Project '/user/username/projects/myproject/random/tsconfig.json' (Configured) -Info 122 [16:04:16.000] Files (2) +Info 122 [00:04:14.000] ----------------------------------------------- +Info 122 [00:04:15.000] Project '/user/username/projects/myproject/random/tsconfig.json' (Configured) +Info 122 [00:04:16.000] Files (2) -Info 122 [16:04:17.000] ----------------------------------------------- -Info 122 [16:04:18.000] Open files: -Info 122 [16:04:19.000] FileName: /user/username/projects/myproject/dependency/FnS.ts ProjectRootPath: undefined -Info 122 [16:04:20.000] Projects: /user/username/projects/myproject/dependency/tsconfig.json -Info 122 [16:04:21.000] FileName: /user/username/projects/myproject/random/random.ts ProjectRootPath: undefined -Info 122 [16:04:22.000] Projects: /user/username/projects/myproject/random/tsconfig.json +Info 122 [00:04:17.000] ----------------------------------------------- +Info 122 [00:04:18.000] Open files: +Info 122 [00:04:19.000] FileName: /user/username/projects/myproject/dependency/FnS.ts ProjectRootPath: undefined +Info 122 [00:04:20.000] Projects: /user/username/projects/myproject/dependency/tsconfig.json +Info 122 [00:04:21.000] FileName: /user/username/projects/myproject/random/random.ts ProjectRootPath: undefined +Info 122 [00:04:22.000] Projects: /user/username/projects/myproject/random/tsconfig.json After request PolledWatches:: @@ -2374,11 +2374,11 @@ FsWatchesRecursive:: /user/username/projects/myproject/random: {} -Info 122 [16:04:23.000] response: +Info 122 [00:04:23.000] response: { "responseRequired": false } -Info 123 [16:04:24.000] request: +Info 123 [00:04:24.000] request: { "seq": 0, "type": "request", @@ -2423,22 +2423,22 @@ FsWatchesRecursive:: /user/username/projects/myproject/random: {} -Info 124 [16:04:25.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/dependency/FnS.ts 500 undefined WatchType: Closed Script info -Info 125 [16:04:26.000] Project '/user/username/projects/myproject/main/tsconfig.json' (Configured) -Info 125 [16:04:27.000] Files (2) +Info 124 [00:04:25.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/dependency/FnS.ts 500 undefined WatchType: Closed Script info +Info 125 [00:04:26.000] Project '/user/username/projects/myproject/main/tsconfig.json' (Configured) +Info 125 [00:04:27.000] Files (2) -Info 125 [16:04:28.000] ----------------------------------------------- -Info 125 [16:04:29.000] Project '/user/username/projects/myproject/dependency/tsconfig.json' (Configured) -Info 125 [16:04:30.000] Files (2) +Info 125 [00:04:28.000] ----------------------------------------------- +Info 125 [00:04:29.000] Project '/user/username/projects/myproject/dependency/tsconfig.json' (Configured) +Info 125 [00:04:30.000] Files (2) -Info 125 [16:04:31.000] ----------------------------------------------- -Info 125 [16:04:32.000] Project '/user/username/projects/myproject/random/tsconfig.json' (Configured) -Info 125 [16:04:33.000] Files (2) +Info 125 [00:04:31.000] ----------------------------------------------- +Info 125 [00:04:32.000] Project '/user/username/projects/myproject/random/tsconfig.json' (Configured) +Info 125 [00:04:33.000] Files (2) -Info 125 [16:04:34.000] ----------------------------------------------- -Info 125 [16:04:35.000] Open files: -Info 125 [16:04:36.000] FileName: /user/username/projects/myproject/random/random.ts ProjectRootPath: undefined -Info 125 [16:04:37.000] Projects: /user/username/projects/myproject/random/tsconfig.json +Info 125 [00:04:34.000] ----------------------------------------------- +Info 125 [00:04:35.000] Open files: +Info 125 [00:04:36.000] FileName: /user/username/projects/myproject/random/random.ts ProjectRootPath: undefined +Info 125 [00:04:37.000] Projects: /user/username/projects/myproject/random/tsconfig.json After request PolledWatches:: @@ -2477,11 +2477,11 @@ FsWatchesRecursive:: /user/username/projects/myproject/random: {} -Info 125 [16:04:38.000] response: +Info 125 [00:04:38.000] response: { "responseRequired": false } -Info 126 [16:04:39.000] request: +Info 126 [00:04:39.000] request: { "seq": 0, "type": "request", @@ -2528,20 +2528,20 @@ FsWatchesRecursive:: /user/username/projects/myproject/random: {} -Info 127 [16:04:40.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/random/random.ts 500 undefined WatchType: Closed Script info -Info 128 [16:04:41.000] Project '/user/username/projects/myproject/main/tsconfig.json' (Configured) -Info 128 [16:04:42.000] Files (2) +Info 127 [00:04:40.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/random/random.ts 500 undefined WatchType: Closed Script info +Info 128 [00:04:41.000] Project '/user/username/projects/myproject/main/tsconfig.json' (Configured) +Info 128 [00:04:42.000] Files (2) -Info 128 [16:04:43.000] ----------------------------------------------- -Info 128 [16:04:44.000] Project '/user/username/projects/myproject/dependency/tsconfig.json' (Configured) -Info 128 [16:04:45.000] Files (2) +Info 128 [00:04:43.000] ----------------------------------------------- +Info 128 [00:04:44.000] Project '/user/username/projects/myproject/dependency/tsconfig.json' (Configured) +Info 128 [00:04:45.000] Files (2) -Info 128 [16:04:46.000] ----------------------------------------------- -Info 128 [16:04:47.000] Project '/user/username/projects/myproject/random/tsconfig.json' (Configured) -Info 128 [16:04:48.000] Files (2) +Info 128 [00:04:46.000] ----------------------------------------------- +Info 128 [00:04:47.000] Project '/user/username/projects/myproject/random/tsconfig.json' (Configured) +Info 128 [00:04:48.000] Files (2) -Info 128 [16:04:49.000] ----------------------------------------------- -Info 128 [16:04:50.000] Open files: +Info 128 [00:04:49.000] ----------------------------------------------- +Info 128 [00:04:50.000] Open files: After request PolledWatches:: @@ -2582,11 +2582,11 @@ FsWatchesRecursive:: /user/username/projects/myproject/random: {} -Info 128 [16:04:51.000] response: +Info 128 [00:04:51.000] response: { "responseRequired": false } -Info 129 [16:04:52.000] request: +Info 129 [00:04:52.000] request: { "seq": 0, "type": "request", @@ -2635,12 +2635,12 @@ FsWatchesRecursive:: /user/username/projects/myproject/random: {} -Info 130 [16:04:53.000] FileWatcher:: Close:: WatchInfo: /user/username/projects/myproject/random/random.ts 500 undefined WatchType: Closed Script info -Info 131 [16:04:54.000] Search path: /user/username/projects/myproject/random -Info 132 [16:04:55.000] For info: /user/username/projects/myproject/random/random.ts :: Config file name: /user/username/projects/myproject/random/tsconfig.json -Info 133 [16:04:56.000] `remove Project:: -Info 134 [16:04:57.000] Project '/user/username/projects/myproject/main/tsconfig.json' (Configured) -Info 135 [16:04:58.000] Files (2) +Info 130 [00:04:53.000] FileWatcher:: Close:: WatchInfo: /user/username/projects/myproject/random/random.ts 500 undefined WatchType: Closed Script info +Info 131 [00:04:54.000] Search path: /user/username/projects/myproject/random +Info 132 [00:04:55.000] For info: /user/username/projects/myproject/random/random.ts :: Config file name: /user/username/projects/myproject/random/tsconfig.json +Info 133 [00:04:56.000] `remove Project:: +Info 134 [00:04:57.000] Project '/user/username/projects/myproject/main/tsconfig.json' (Configured) +Info 135 [00:04:58.000] Files (2) /a/lib/lib.d.ts /user/username/projects/myproject/main/main.ts @@ -2650,19 +2650,19 @@ Info 135 [16:04:58.000] Files (2) main.ts Matched by default include pattern '**/*' -Info 136 [16:04:59.000] ----------------------------------------------- -Info 137 [16:05:00.000] DirectoryWatcher:: Close:: WatchInfo: /user/username/projects/myproject/main 1 undefined Config: /user/username/projects/myproject/main/tsconfig.json WatchType: Wild card directory -Info 138 [16:05:01.000] 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 139 [16:05:02.000] FileWatcher:: Close:: WatchInfo: /user/username/projects/myproject/main/tsconfig.json 2000 undefined Project: /user/username/projects/myproject/main/tsconfig.json WatchType: Config file -Info 140 [16:05:03.000] DirectoryWatcher:: Close:: WatchInfo: /user/username/projects/myproject/decls 1 undefined Project: /user/username/projects/myproject/main/tsconfig.json WatchType: Failed Lookup Locations -Info 141 [16:05:04.000] 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 142 [16:05:05.000] 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 143 [16:05:06.000] 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 144 [16:05:07.000] DirectoryWatcher:: Close:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/main/tsconfig.json WatchType: Type roots -Info 145 [16:05:08.000] 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 146 [16:05:09.000] `remove Project:: -Info 147 [16:05:10.000] Project '/user/username/projects/myproject/dependency/tsconfig.json' (Configured) -Info 148 [16:05:11.000] Files (2) +Info 136 [00:04:59.000] ----------------------------------------------- +Info 137 [00:05:00.000] DirectoryWatcher:: Close:: WatchInfo: /user/username/projects/myproject/main 1 undefined Config: /user/username/projects/myproject/main/tsconfig.json WatchType: Wild card directory +Info 138 [00:05:01.000] 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 139 [00:05:02.000] FileWatcher:: Close:: WatchInfo: /user/username/projects/myproject/main/tsconfig.json 2000 undefined Project: /user/username/projects/myproject/main/tsconfig.json WatchType: Config file +Info 140 [00:05:03.000] DirectoryWatcher:: Close:: WatchInfo: /user/username/projects/myproject/decls 1 undefined Project: /user/username/projects/myproject/main/tsconfig.json WatchType: Failed Lookup Locations +Info 141 [00:05:04.000] 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 142 [00:05:05.000] 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 143 [00:05:06.000] 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 144 [00:05:07.000] DirectoryWatcher:: Close:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/main/tsconfig.json WatchType: Type roots +Info 145 [00:05:08.000] 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 146 [00:05:09.000] `remove Project:: +Info 147 [00:05:10.000] Project '/user/username/projects/myproject/dependency/tsconfig.json' (Configured) +Info 148 [00:05:11.000] Files (2) /a/lib/lib.d.ts /user/username/projects/myproject/dependency/FnS.ts @@ -2672,24 +2672,24 @@ Info 148 [16:05:11.000] Files (2) FnS.ts Matched by default include pattern '**/*' -Info 149 [16:05:12.000] ----------------------------------------------- -Info 150 [16:05:13.000] DirectoryWatcher:: Close:: WatchInfo: /user/username/projects/myproject/dependency 1 undefined Config: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Wild card directory -Info 151 [16:05:14.000] 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 152 [16:05:15.000] FileWatcher:: Close:: WatchInfo: /user/username/projects/myproject/dependency/tsconfig.json 2000 undefined Project: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Config file -Info 153 [16:05:16.000] 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 154 [16:05:17.000] 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 155 [16:05:18.000] DirectoryWatcher:: Close:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Type roots -Info 156 [16:05:19.000] 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 157 [16:05:20.000] 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 158 [16:05:21.000] FileWatcher:: Close:: WatchInfo: /user/username/projects/myproject/main/main.ts 500 undefined WatchType: Closed Script info -Info 159 [16:05:22.000] FileWatcher:: Close:: WatchInfo: /user/username/projects/myproject/dependency/FnS.ts 500 undefined WatchType: Closed Script info -Info 160 [16:05:23.000] Project '/user/username/projects/myproject/random/tsconfig.json' (Configured) -Info 160 [16:05:24.000] Files (2) - -Info 160 [16:05:25.000] ----------------------------------------------- -Info 160 [16:05:26.000] Open files: -Info 160 [16:05:27.000] FileName: /user/username/projects/myproject/random/random.ts ProjectRootPath: undefined -Info 160 [16:05:28.000] Projects: /user/username/projects/myproject/random/tsconfig.json +Info 149 [00:05:12.000] ----------------------------------------------- +Info 150 [00:05:13.000] DirectoryWatcher:: Close:: WatchInfo: /user/username/projects/myproject/dependency 1 undefined Config: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Wild card directory +Info 151 [00:05:14.000] 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 152 [00:05:15.000] FileWatcher:: Close:: WatchInfo: /user/username/projects/myproject/dependency/tsconfig.json 2000 undefined Project: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Config file +Info 153 [00:05:16.000] 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 154 [00:05:17.000] 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 155 [00:05:18.000] DirectoryWatcher:: Close:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Type roots +Info 156 [00:05:19.000] 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 157 [00:05:20.000] 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 158 [00:05:21.000] FileWatcher:: Close:: WatchInfo: /user/username/projects/myproject/main/main.ts 500 undefined WatchType: Closed Script info +Info 159 [00:05:22.000] FileWatcher:: Close:: WatchInfo: /user/username/projects/myproject/dependency/FnS.ts 500 undefined WatchType: Closed Script info +Info 160 [00:05:23.000] Project '/user/username/projects/myproject/random/tsconfig.json' (Configured) +Info 160 [00:05:24.000] Files (2) + +Info 160 [00:05:25.000] ----------------------------------------------- +Info 160 [00:05:26.000] Open files: +Info 160 [00:05:27.000] FileName: /user/username/projects/myproject/random/random.ts ProjectRootPath: undefined +Info 160 [00:05:28.000] Projects: /user/username/projects/myproject/random/tsconfig.json After request PolledWatches:: @@ -2708,7 +2708,7 @@ FsWatchesRecursive:: /user/username/projects/myproject/random: {} -Info 160 [16:05:29.000] response: +Info 160 [00:05:29.000] response: { "responseRequired": false } \ No newline at end of file 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 b0380dd6b5303..1c3be6de5596b 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 @@ -1,5 +1,5 @@ -Info 0 [16:01:04.000] Provided types map file "/a/lib/typesMap.json" doesn't exist -Info 1 [16:01:05.000] request: +Info 0 [00:01:04.000] Provided types map file "/a/lib/typesMap.json" doesn't exist +Info 1 [00:01:05.000] request: { "seq": 0, "type": "request", @@ -192,11 +192,11 @@ FsWatches:: FsWatchesRecursive:: -Info 2 [16:01:06.000] Search path: /user/username/projects/myproject/main -Info 3 [16:01:07.000] For info: /user/username/projects/myproject/main/main.ts :: Config file name: /user/username/projects/myproject/main/tsconfig.json -Info 4 [16:01:08.000] Creating configuration project /user/username/projects/myproject/main/tsconfig.json -Info 5 [16:01:09.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/main/tsconfig.json 2000 undefined Project: /user/username/projects/myproject/main/tsconfig.json WatchType: Config file -Info 6 [16:01:10.000] Config: /user/username/projects/myproject/main/tsconfig.json : { +Info 2 [00:01:06.000] Search path: /user/username/projects/myproject/main +Info 3 [00:01:07.000] For info: /user/username/projects/myproject/main/main.ts :: Config file name: /user/username/projects/myproject/main/tsconfig.json +Info 4 [00:01:08.000] Creating configuration project /user/username/projects/myproject/main/tsconfig.json +Info 5 [00:01:09.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/main/tsconfig.json 2000 undefined Project: /user/username/projects/myproject/main/tsconfig.json WatchType: Config file +Info 6 [00:01:10.000] Config: /user/username/projects/myproject/main/tsconfig.json : { "rootNames": [ "/user/username/projects/myproject/main/main.ts" ], @@ -206,20 +206,20 @@ Info 6 [16:01:10.000] Config: /user/username/projects/myproject/main/tsconfig "configFilePath": "/user/username/projects/myproject/main/tsconfig.json" } } -Info 7 [16:01:11.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/main 1 undefined Config: /user/username/projects/myproject/main/tsconfig.json WatchType: Wild card directory -Info 8 [16:01:12.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/main 1 undefined Config: /user/username/projects/myproject/main/tsconfig.json WatchType: Wild card directory -Info 9 [16:01:13.000] Plugins were requested but not running in environment that supports 'require'. Nothing will be loaded -Info 10 [16:01:14.000] Starting updateGraphWorker: Project: /user/username/projects/myproject/main/tsconfig.json -Info 11 [16:01:15.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/decls 1 undefined Project: /user/username/projects/myproject/main/tsconfig.json WatchType: Failed Lookup Locations -Info 12 [16:01:16.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/decls 1 undefined Project: /user/username/projects/myproject/main/tsconfig.json WatchType: Failed Lookup Locations -Info 13 [16:01:17.000] FileWatcher:: Added:: WatchInfo: /a/lib/lib.d.ts 500 undefined WatchType: Closed Script info -Info 14 [16:01:18.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/main/node_modules/@types 1 undefined Project: /user/username/projects/myproject/main/tsconfig.json WatchType: Type roots -Info 15 [16:01:19.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/main/node_modules/@types 1 undefined Project: /user/username/projects/myproject/main/tsconfig.json WatchType: Type roots -Info 16 [16:01:20.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/main/tsconfig.json WatchType: Type roots -Info 17 [16:01:21.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/main/tsconfig.json WatchType: Type roots -Info 18 [16:01:22.000] Finishing updateGraphWorker: Project: /user/username/projects/myproject/main/tsconfig.json Version: 1 structureChanged: true structureIsReused:: Not Elapsed:: *ms -Info 19 [16:01:23.000] Project '/user/username/projects/myproject/main/tsconfig.json' (Configured) -Info 20 [16:01:24.000] Files (2) +Info 7 [00:01:11.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/main 1 undefined Config: /user/username/projects/myproject/main/tsconfig.json WatchType: Wild card directory +Info 8 [00:01:12.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/main 1 undefined Config: /user/username/projects/myproject/main/tsconfig.json WatchType: Wild card directory +Info 9 [00:01:13.000] Plugins were requested but not running in environment that supports 'require'. Nothing will be loaded +Info 10 [00:01:14.000] Starting updateGraphWorker: Project: /user/username/projects/myproject/main/tsconfig.json +Info 11 [00:01:15.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/decls 1 undefined Project: /user/username/projects/myproject/main/tsconfig.json WatchType: Failed Lookup Locations +Info 12 [00:01:16.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/decls 1 undefined Project: /user/username/projects/myproject/main/tsconfig.json WatchType: Failed Lookup Locations +Info 13 [00:01:17.000] FileWatcher:: Added:: WatchInfo: /a/lib/lib.d.ts 500 undefined WatchType: Closed Script info +Info 14 [00:01:18.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/main/node_modules/@types 1 undefined Project: /user/username/projects/myproject/main/tsconfig.json WatchType: Type roots +Info 15 [00:01:19.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/main/node_modules/@types 1 undefined Project: /user/username/projects/myproject/main/tsconfig.json WatchType: Type roots +Info 16 [00:01:20.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/main/tsconfig.json WatchType: Type roots +Info 17 [00:01:21.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/main/tsconfig.json WatchType: Type roots +Info 18 [00:01:22.000] Finishing updateGraphWorker: Project: /user/username/projects/myproject/main/tsconfig.json Version: 1 structureChanged: true structureIsReused:: Not Elapsed:: *ms +Info 19 [00:01:23.000] Project '/user/username/projects/myproject/main/tsconfig.json' (Configured) +Info 20 [00:01:24.000] Files (2) /a/lib/lib.d.ts /user/username/projects/myproject/main/main.ts @@ -229,16 +229,16 @@ Info 20 [16:01:24.000] Files (2) main.ts Matched by default include pattern '**/*' -Info 21 [16:01:25.000] ----------------------------------------------- -Info 22 [16:01:26.000] Search path: /user/username/projects/myproject/main -Info 23 [16:01:27.000] For info: /user/username/projects/myproject/main/tsconfig.json :: No config files found. -Info 24 [16:01:28.000] Project '/user/username/projects/myproject/main/tsconfig.json' (Configured) -Info 24 [16:01:29.000] Files (2) +Info 21 [00:01:25.000] ----------------------------------------------- +Info 22 [00:01:26.000] Search path: /user/username/projects/myproject/main +Info 23 [00:01:27.000] For info: /user/username/projects/myproject/main/tsconfig.json :: No config files found. +Info 24 [00:01:28.000] Project '/user/username/projects/myproject/main/tsconfig.json' (Configured) +Info 24 [00:01:29.000] Files (2) -Info 24 [16:01:30.000] ----------------------------------------------- -Info 24 [16:01:31.000] Open files: -Info 24 [16:01:32.000] FileName: /user/username/projects/myproject/main/main.ts ProjectRootPath: undefined -Info 24 [16:01:33.000] Projects: /user/username/projects/myproject/main/tsconfig.json +Info 24 [00:01:30.000] ----------------------------------------------- +Info 24 [00:01:31.000] Open files: +Info 24 [00:01:32.000] FileName: /user/username/projects/myproject/main/main.ts ProjectRootPath: undefined +Info 24 [00:01:33.000] Projects: /user/username/projects/myproject/main/tsconfig.json After request PolledWatches:: @@ -259,11 +259,11 @@ FsWatchesRecursive:: /user/username/projects/myproject/decls: {} -Info 24 [16:01:34.000] response: +Info 24 [00:01:34.000] response: { "responseRequired": false } -Info 25 [16:01:35.000] request: +Info 25 [00:01:35.000] request: { "seq": 0, "type": "request", @@ -292,11 +292,11 @@ FsWatchesRecursive:: /user/username/projects/myproject/decls: {} -Info 26 [16:01:36.000] Search path: /user/username/projects/myproject/dependency -Info 27 [16:01:37.000] For info: /user/username/projects/myproject/dependency/FnS.ts :: Config file name: /user/username/projects/myproject/dependency/tsconfig.json -Info 28 [16:01:38.000] Creating configuration project /user/username/projects/myproject/dependency/tsconfig.json -Info 29 [16:01:39.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/dependency/tsconfig.json 2000 undefined Project: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Config file -Info 30 [16:01:40.000] Config: /user/username/projects/myproject/dependency/tsconfig.json : { +Info 26 [00:01:36.000] Search path: /user/username/projects/myproject/dependency +Info 27 [00:01:37.000] For info: /user/username/projects/myproject/dependency/FnS.ts :: Config file name: /user/username/projects/myproject/dependency/tsconfig.json +Info 28 [00:01:38.000] Creating configuration project /user/username/projects/myproject/dependency/tsconfig.json +Info 29 [00:01:39.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/dependency/tsconfig.json 2000 undefined Project: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Config file +Info 30 [00:01:40.000] Config: /user/username/projects/myproject/dependency/tsconfig.json : { "rootNames": [ "/user/username/projects/myproject/dependency/FnS.ts" ], @@ -307,17 +307,17 @@ Info 30 [16:01:40.000] Config: /user/username/projects/myproject/dependency/ts "configFilePath": "/user/username/projects/myproject/dependency/tsconfig.json" } } -Info 31 [16:01:41.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/dependency 1 undefined Config: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Wild card directory -Info 32 [16:01:42.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/dependency 1 undefined Config: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Wild card directory -Info 33 [16:01:43.000] Plugins were requested but not running in environment that supports 'require'. Nothing will be loaded -Info 34 [16:01:44.000] Starting updateGraphWorker: Project: /user/username/projects/myproject/dependency/tsconfig.json -Info 35 [16:01:45.000] 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 36 [16:01:46.000] 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 37 [16:01:47.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Type roots -Info 38 [16:01:48.000] 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 39 [16:01:49.000] Finishing updateGraphWorker: Project: /user/username/projects/myproject/dependency/tsconfig.json Version: 1 structureChanged: true structureIsReused:: Not Elapsed:: *ms -Info 40 [16:01:50.000] Project '/user/username/projects/myproject/dependency/tsconfig.json' (Configured) -Info 41 [16:01:51.000] Files (2) +Info 31 [00:01:41.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/dependency 1 undefined Config: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Wild card directory +Info 32 [00:01:42.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/dependency 1 undefined Config: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Wild card directory +Info 33 [00:01:43.000] Plugins were requested but not running in environment that supports 'require'. Nothing will be loaded +Info 34 [00:01:44.000] Starting updateGraphWorker: Project: /user/username/projects/myproject/dependency/tsconfig.json +Info 35 [00:01:45.000] 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 36 [00:01:46.000] 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 37 [00:01:47.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Type roots +Info 38 [00:01:48.000] 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 39 [00:01:49.000] Finishing updateGraphWorker: Project: /user/username/projects/myproject/dependency/tsconfig.json Version: 1 structureChanged: true structureIsReused:: Not Elapsed:: *ms +Info 40 [00:01:50.000] Project '/user/username/projects/myproject/dependency/tsconfig.json' (Configured) +Info 41 [00:01:51.000] Files (2) /a/lib/lib.d.ts /user/username/projects/myproject/dependency/FnS.ts @@ -327,22 +327,22 @@ Info 41 [16:01:51.000] Files (2) FnS.ts Matched by default include pattern '**/*' -Info 42 [16:01:52.000] ----------------------------------------------- -Info 43 [16:01:53.000] Search path: /user/username/projects/myproject/dependency -Info 44 [16:01:54.000] For info: /user/username/projects/myproject/dependency/tsconfig.json :: No config files found. -Info 45 [16:01:55.000] Project '/user/username/projects/myproject/main/tsconfig.json' (Configured) -Info 45 [16:01:56.000] Files (2) - -Info 45 [16:01:57.000] ----------------------------------------------- -Info 45 [16:01:58.000] Project '/user/username/projects/myproject/dependency/tsconfig.json' (Configured) -Info 45 [16:01:59.000] Files (2) - -Info 45 [16:02:00.000] ----------------------------------------------- -Info 45 [16:02:01.000] Open files: -Info 45 [16:02:02.000] FileName: /user/username/projects/myproject/main/main.ts ProjectRootPath: undefined -Info 45 [16:02:03.000] Projects: /user/username/projects/myproject/main/tsconfig.json -Info 45 [16:02:04.000] FileName: /user/username/projects/myproject/dependency/FnS.ts ProjectRootPath: undefined -Info 45 [16:02:05.000] Projects: /user/username/projects/myproject/dependency/tsconfig.json +Info 42 [00:01:52.000] ----------------------------------------------- +Info 43 [00:01:53.000] Search path: /user/username/projects/myproject/dependency +Info 44 [00:01:54.000] For info: /user/username/projects/myproject/dependency/tsconfig.json :: No config files found. +Info 45 [00:01:55.000] Project '/user/username/projects/myproject/main/tsconfig.json' (Configured) +Info 45 [00:01:56.000] Files (2) + +Info 45 [00:01:57.000] ----------------------------------------------- +Info 45 [00:01:58.000] Project '/user/username/projects/myproject/dependency/tsconfig.json' (Configured) +Info 45 [00:01:59.000] Files (2) + +Info 45 [00:02:00.000] ----------------------------------------------- +Info 45 [00:02:01.000] Open files: +Info 45 [00:02:02.000] FileName: /user/username/projects/myproject/main/main.ts ProjectRootPath: undefined +Info 45 [00:02:03.000] Projects: /user/username/projects/myproject/main/tsconfig.json +Info 45 [00:02:04.000] FileName: /user/username/projects/myproject/dependency/FnS.ts ProjectRootPath: undefined +Info 45 [00:02:05.000] Projects: /user/username/projects/myproject/dependency/tsconfig.json After request PolledWatches:: @@ -369,11 +369,11 @@ FsWatchesRecursive:: /user/username/projects/myproject/dependency: {} -Info 45 [16:02:06.000] response: +Info 45 [00:02:06.000] response: { "responseRequired": false } -Info 46 [16:02:07.000] request: +Info 46 [00:02:07.000] request: { "seq": 0, "type": "request", @@ -408,11 +408,11 @@ FsWatchesRecursive:: /user/username/projects/myproject/dependency: {} -Info 47 [16:02:08.000] Search path: /user/username/projects/myproject/random -Info 48 [16:02:09.000] For info: /user/username/projects/myproject/random/random.ts :: Config file name: /user/username/projects/myproject/random/tsconfig.json -Info 49 [16:02:10.000] Creating configuration project /user/username/projects/myproject/random/tsconfig.json -Info 50 [16:02:11.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/random/tsconfig.json 2000 undefined Project: /user/username/projects/myproject/random/tsconfig.json WatchType: Config file -Info 51 [16:02:12.000] Config: /user/username/projects/myproject/random/tsconfig.json : { +Info 47 [00:02:08.000] Search path: /user/username/projects/myproject/random +Info 48 [00:02:09.000] For info: /user/username/projects/myproject/random/random.ts :: Config file name: /user/username/projects/myproject/random/tsconfig.json +Info 49 [00:02:10.000] Creating configuration project /user/username/projects/myproject/random/tsconfig.json +Info 50 [00:02:11.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/random/tsconfig.json 2000 undefined Project: /user/username/projects/myproject/random/tsconfig.json WatchType: Config file +Info 51 [00:02:12.000] Config: /user/username/projects/myproject/random/tsconfig.json : { "rootNames": [ "/user/username/projects/myproject/random/random.ts" ], @@ -420,17 +420,17 @@ Info 51 [16:02:12.000] Config: /user/username/projects/myproject/random/tsconf "configFilePath": "/user/username/projects/myproject/random/tsconfig.json" } } -Info 52 [16:02:13.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/random 1 undefined Config: /user/username/projects/myproject/random/tsconfig.json WatchType: Wild card directory -Info 53 [16:02:14.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/random 1 undefined Config: /user/username/projects/myproject/random/tsconfig.json WatchType: Wild card directory -Info 54 [16:02:15.000] Plugins were requested but not running in environment that supports 'require'. Nothing will be loaded -Info 55 [16:02:16.000] Starting updateGraphWorker: Project: /user/username/projects/myproject/random/tsconfig.json -Info 56 [16:02:17.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/random/node_modules/@types 1 undefined Project: /user/username/projects/myproject/random/tsconfig.json WatchType: Type roots -Info 57 [16:02:18.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/random/node_modules/@types 1 undefined Project: /user/username/projects/myproject/random/tsconfig.json WatchType: Type roots -Info 58 [16:02:19.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/random/tsconfig.json WatchType: Type roots -Info 59 [16:02:20.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/random/tsconfig.json WatchType: Type roots -Info 60 [16:02:21.000] Finishing updateGraphWorker: Project: /user/username/projects/myproject/random/tsconfig.json Version: 1 structureChanged: true structureIsReused:: Not Elapsed:: *ms -Info 61 [16:02:22.000] Project '/user/username/projects/myproject/random/tsconfig.json' (Configured) -Info 62 [16:02:23.000] Files (2) +Info 52 [00:02:13.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/random 1 undefined Config: /user/username/projects/myproject/random/tsconfig.json WatchType: Wild card directory +Info 53 [00:02:14.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/random 1 undefined Config: /user/username/projects/myproject/random/tsconfig.json WatchType: Wild card directory +Info 54 [00:02:15.000] Plugins were requested but not running in environment that supports 'require'. Nothing will be loaded +Info 55 [00:02:16.000] Starting updateGraphWorker: Project: /user/username/projects/myproject/random/tsconfig.json +Info 56 [00:02:17.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/random/node_modules/@types 1 undefined Project: /user/username/projects/myproject/random/tsconfig.json WatchType: Type roots +Info 57 [00:02:18.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/random/node_modules/@types 1 undefined Project: /user/username/projects/myproject/random/tsconfig.json WatchType: Type roots +Info 58 [00:02:19.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/random/tsconfig.json WatchType: Type roots +Info 59 [00:02:20.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/random/tsconfig.json WatchType: Type roots +Info 60 [00:02:21.000] Finishing updateGraphWorker: Project: /user/username/projects/myproject/random/tsconfig.json Version: 1 structureChanged: true structureIsReused:: Not Elapsed:: *ms +Info 61 [00:02:22.000] Project '/user/username/projects/myproject/random/tsconfig.json' (Configured) +Info 62 [00:02:23.000] Files (2) /a/lib/lib.d.ts /user/username/projects/myproject/random/random.ts @@ -440,26 +440,26 @@ Info 62 [16:02:23.000] Files (2) random.ts Matched by default include pattern '**/*' -Info 63 [16:02:24.000] ----------------------------------------------- -Info 64 [16:02:25.000] Project '/user/username/projects/myproject/main/tsconfig.json' (Configured) -Info 64 [16:02:26.000] Files (2) - -Info 64 [16:02:27.000] ----------------------------------------------- -Info 64 [16:02:28.000] Project '/user/username/projects/myproject/dependency/tsconfig.json' (Configured) -Info 64 [16:02:29.000] Files (2) - -Info 64 [16:02:30.000] ----------------------------------------------- -Info 64 [16:02:31.000] Project '/user/username/projects/myproject/random/tsconfig.json' (Configured) -Info 64 [16:02:32.000] Files (2) - -Info 64 [16:02:33.000] ----------------------------------------------- -Info 64 [16:02:34.000] Open files: -Info 64 [16:02:35.000] FileName: /user/username/projects/myproject/main/main.ts ProjectRootPath: undefined -Info 64 [16:02:36.000] Projects: /user/username/projects/myproject/main/tsconfig.json -Info 64 [16:02:37.000] FileName: /user/username/projects/myproject/dependency/FnS.ts ProjectRootPath: undefined -Info 64 [16:02:38.000] Projects: /user/username/projects/myproject/dependency/tsconfig.json -Info 64 [16:02:39.000] FileName: /user/username/projects/myproject/random/random.ts ProjectRootPath: undefined -Info 64 [16:02:40.000] Projects: /user/username/projects/myproject/random/tsconfig.json +Info 63 [00:02:24.000] ----------------------------------------------- +Info 64 [00:02:25.000] Project '/user/username/projects/myproject/main/tsconfig.json' (Configured) +Info 64 [00:02:26.000] Files (2) + +Info 64 [00:02:27.000] ----------------------------------------------- +Info 64 [00:02:28.000] Project '/user/username/projects/myproject/dependency/tsconfig.json' (Configured) +Info 64 [00:02:29.000] Files (2) + +Info 64 [00:02:30.000] ----------------------------------------------- +Info 64 [00:02:31.000] Project '/user/username/projects/myproject/random/tsconfig.json' (Configured) +Info 64 [00:02:32.000] Files (2) + +Info 64 [00:02:33.000] ----------------------------------------------- +Info 64 [00:02:34.000] Open files: +Info 64 [00:02:35.000] FileName: /user/username/projects/myproject/main/main.ts ProjectRootPath: undefined +Info 64 [00:02:36.000] Projects: /user/username/projects/myproject/main/tsconfig.json +Info 64 [00:02:37.000] FileName: /user/username/projects/myproject/dependency/FnS.ts ProjectRootPath: undefined +Info 64 [00:02:38.000] Projects: /user/username/projects/myproject/dependency/tsconfig.json +Info 64 [00:02:39.000] FileName: /user/username/projects/myproject/random/random.ts ProjectRootPath: undefined +Info 64 [00:02:40.000] Projects: /user/username/projects/myproject/random/tsconfig.json After request PolledWatches:: @@ -492,11 +492,11 @@ FsWatchesRecursive:: /user/username/projects/myproject/random: {} -Info 64 [16:02:41.000] response: +Info 64 [00:02:41.000] response: { "responseRequired": false } -Info 65 [16:02:42.000] request: +Info 65 [00:02:42.000] request: { "command": "definitionAndBoundSpan", "arguments": { @@ -571,7 +571,7 @@ FsWatchesRecursive:: /user/username/projects/myproject/random: {} -Info 66 [16:02:43.000] response: +Info 66 [00:02:43.000] response: { "response": { "definitions": [ @@ -608,7 +608,7 @@ Info 66 [16:02:43.000] response: }, "responseRequired": true } -Info 67 [16:02:44.000] request: +Info 67 [00:02:44.000] request: { "command": "definitionAndBoundSpan", "arguments": { @@ -683,7 +683,7 @@ FsWatchesRecursive:: /user/username/projects/myproject/random: {} -Info 68 [16:02:45.000] response: +Info 68 [00:02:45.000] response: { "response": { "definitions": [ @@ -720,7 +720,7 @@ Info 68 [16:02:45.000] response: }, "responseRequired": true } -Info 69 [16:02:46.000] request: +Info 69 [00:02:46.000] request: { "command": "definitionAndBoundSpan", "arguments": { @@ -795,7 +795,7 @@ FsWatchesRecursive:: /user/username/projects/myproject/random: {} -Info 70 [16:02:47.000] response: +Info 70 [00:02:47.000] response: { "response": { "definitions": [ @@ -832,7 +832,7 @@ Info 70 [16:02:47.000] response: }, "responseRequired": true } -Info 71 [16:02:48.000] request: +Info 71 [00:02:48.000] request: { "command": "definitionAndBoundSpan", "arguments": { @@ -907,7 +907,7 @@ FsWatchesRecursive:: /user/username/projects/myproject/random: {} -Info 72 [16:02:49.000] response: +Info 72 [00:02:49.000] response: { "response": { "definitions": [ @@ -944,7 +944,7 @@ Info 72 [16:02:49.000] response: }, "responseRequired": true } -Info 73 [16:02:50.000] request: +Info 73 [00:02:50.000] request: { "command": "definitionAndBoundSpan", "arguments": { @@ -1019,7 +1019,7 @@ FsWatchesRecursive:: /user/username/projects/myproject/random: {} -Info 74 [16:02:51.000] response: +Info 74 [00:02:51.000] response: { "response": { "definitions": [ @@ -1056,7 +1056,7 @@ Info 74 [16:02:51.000] response: }, "responseRequired": true } -Info 75 [16:02:52.000] request: +Info 75 [00:02:52.000] request: { "command": "rename", "arguments": { @@ -1099,7 +1099,7 @@ FsWatchesRecursive:: /user/username/projects/myproject/random: {} -Info 76 [16:02:53.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/decls/FnS.d.ts 2000 undefined Project: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Missing generated file +Info 76 [00:02:53.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/decls/FnS.d.ts 2000 undefined Project: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Missing generated file After request PolledWatches:: @@ -1134,7 +1134,7 @@ FsWatchesRecursive:: /user/username/projects/myproject/random: {} -Info 77 [16:02:54.000] response: +Info 77 [00:02:54.000] response: { "response": { "info": { @@ -1182,7 +1182,7 @@ Info 77 [16:02:54.000] response: }, "responseRequired": true } -Info 78 [16:02:55.000] request: +Info 78 [00:02:55.000] request: { "command": "rename", "arguments": { @@ -1261,7 +1261,7 @@ FsWatchesRecursive:: /user/username/projects/myproject/random: {} -Info 79 [16:02:56.000] response: +Info 79 [00:02:56.000] response: { "response": { "info": { @@ -1309,7 +1309,7 @@ Info 79 [16:02:56.000] response: }, "responseRequired": true } -Info 80 [16:02:57.000] request: +Info 80 [00:02:57.000] request: { "command": "rename", "arguments": { @@ -1388,7 +1388,7 @@ FsWatchesRecursive:: /user/username/projects/myproject/random: {} -Info 81 [16:02:58.000] response: +Info 81 [00:02:58.000] response: { "response": { "info": { @@ -1436,7 +1436,7 @@ Info 81 [16:02:58.000] response: }, "responseRequired": true } -Info 82 [16:02:59.000] request: +Info 82 [00:02:59.000] request: { "command": "rename", "arguments": { @@ -1515,7 +1515,7 @@ FsWatchesRecursive:: /user/username/projects/myproject/random: {} -Info 83 [16:03:00.000] response: +Info 83 [00:03:00.000] response: { "response": { "info": { @@ -1563,7 +1563,7 @@ Info 83 [16:03:00.000] response: }, "responseRequired": true } -Info 84 [16:03:01.000] request: +Info 84 [00:03:01.000] request: { "command": "rename", "arguments": { @@ -1642,7 +1642,7 @@ FsWatchesRecursive:: /user/username/projects/myproject/random: {} -Info 85 [16:03:02.000] response: +Info 85 [00:03:02.000] response: { "response": { "info": { @@ -1690,7 +1690,7 @@ Info 85 [16:03:02.000] response: }, "responseRequired": true } -Info 86 [16:03:03.000] request: +Info 86 [00:03:03.000] request: { "seq": 0, "type": "request", @@ -1733,24 +1733,24 @@ FsWatchesRecursive:: /user/username/projects/myproject/random: {} -Info 87 [16:03:04.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/random/random.ts 500 undefined WatchType: Closed Script info -Info 88 [16:03:05.000] Project '/user/username/projects/myproject/main/tsconfig.json' (Configured) -Info 88 [16:03:06.000] Files (2) +Info 87 [00:03:04.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/random/random.ts 500 undefined WatchType: Closed Script info +Info 88 [00:03:05.000] Project '/user/username/projects/myproject/main/tsconfig.json' (Configured) +Info 88 [00:03:06.000] Files (2) -Info 88 [16:03:07.000] ----------------------------------------------- -Info 88 [16:03:08.000] Project '/user/username/projects/myproject/dependency/tsconfig.json' (Configured) -Info 88 [16:03:09.000] Files (2) +Info 88 [00:03:07.000] ----------------------------------------------- +Info 88 [00:03:08.000] Project '/user/username/projects/myproject/dependency/tsconfig.json' (Configured) +Info 88 [00:03:09.000] Files (2) -Info 88 [16:03:10.000] ----------------------------------------------- -Info 88 [16:03:11.000] Project '/user/username/projects/myproject/random/tsconfig.json' (Configured) -Info 88 [16:03:12.000] Files (2) +Info 88 [00:03:10.000] ----------------------------------------------- +Info 88 [00:03:11.000] Project '/user/username/projects/myproject/random/tsconfig.json' (Configured) +Info 88 [00:03:12.000] Files (2) -Info 88 [16:03:13.000] ----------------------------------------------- -Info 88 [16:03:14.000] Open files: -Info 88 [16:03:15.000] FileName: /user/username/projects/myproject/main/main.ts ProjectRootPath: undefined -Info 88 [16:03:16.000] Projects: /user/username/projects/myproject/main/tsconfig.json -Info 88 [16:03:17.000] FileName: /user/username/projects/myproject/dependency/FnS.ts ProjectRootPath: undefined -Info 88 [16:03:18.000] Projects: /user/username/projects/myproject/dependency/tsconfig.json +Info 88 [00:03:13.000] ----------------------------------------------- +Info 88 [00:03:14.000] Open files: +Info 88 [00:03:15.000] FileName: /user/username/projects/myproject/main/main.ts ProjectRootPath: undefined +Info 88 [00:03:16.000] Projects: /user/username/projects/myproject/main/tsconfig.json +Info 88 [00:03:17.000] FileName: /user/username/projects/myproject/dependency/FnS.ts ProjectRootPath: undefined +Info 88 [00:03:18.000] Projects: /user/username/projects/myproject/dependency/tsconfig.json After request PolledWatches:: @@ -1787,11 +1787,11 @@ FsWatchesRecursive:: /user/username/projects/myproject/random: {} -Info 88 [16:03:19.000] response: +Info 88 [00:03:19.000] response: { "responseRequired": false } -Info 89 [16:03:20.000] request: +Info 89 [00:03:20.000] request: { "seq": 0, "type": "request", @@ -1836,28 +1836,28 @@ FsWatchesRecursive:: /user/username/projects/myproject/random: {} -Info 90 [16:03:21.000] FileWatcher:: Close:: WatchInfo: /user/username/projects/myproject/random/random.ts 500 undefined WatchType: Closed Script info -Info 91 [16:03:22.000] Search path: /user/username/projects/myproject/random -Info 92 [16:03:23.000] For info: /user/username/projects/myproject/random/random.ts :: Config file name: /user/username/projects/myproject/random/tsconfig.json -Info 93 [16:03:24.000] Project '/user/username/projects/myproject/main/tsconfig.json' (Configured) -Info 93 [16:03:25.000] Files (2) - -Info 93 [16:03:26.000] ----------------------------------------------- -Info 93 [16:03:27.000] Project '/user/username/projects/myproject/dependency/tsconfig.json' (Configured) -Info 93 [16:03:28.000] Files (2) - -Info 93 [16:03:29.000] ----------------------------------------------- -Info 93 [16:03:30.000] Project '/user/username/projects/myproject/random/tsconfig.json' (Configured) -Info 93 [16:03:31.000] Files (2) - -Info 93 [16:03:32.000] ----------------------------------------------- -Info 93 [16:03:33.000] Open files: -Info 93 [16:03:34.000] FileName: /user/username/projects/myproject/main/main.ts ProjectRootPath: undefined -Info 93 [16:03:35.000] Projects: /user/username/projects/myproject/main/tsconfig.json -Info 93 [16:03:36.000] FileName: /user/username/projects/myproject/dependency/FnS.ts ProjectRootPath: undefined -Info 93 [16:03:37.000] Projects: /user/username/projects/myproject/dependency/tsconfig.json -Info 93 [16:03:38.000] FileName: /user/username/projects/myproject/random/random.ts ProjectRootPath: undefined -Info 93 [16:03:39.000] Projects: /user/username/projects/myproject/random/tsconfig.json +Info 90 [00:03:21.000] FileWatcher:: Close:: WatchInfo: /user/username/projects/myproject/random/random.ts 500 undefined WatchType: Closed Script info +Info 91 [00:03:22.000] Search path: /user/username/projects/myproject/random +Info 92 [00:03:23.000] For info: /user/username/projects/myproject/random/random.ts :: Config file name: /user/username/projects/myproject/random/tsconfig.json +Info 93 [00:03:24.000] Project '/user/username/projects/myproject/main/tsconfig.json' (Configured) +Info 93 [00:03:25.000] Files (2) + +Info 93 [00:03:26.000] ----------------------------------------------- +Info 93 [00:03:27.000] Project '/user/username/projects/myproject/dependency/tsconfig.json' (Configured) +Info 93 [00:03:28.000] Files (2) + +Info 93 [00:03:29.000] ----------------------------------------------- +Info 93 [00:03:30.000] Project '/user/username/projects/myproject/random/tsconfig.json' (Configured) +Info 93 [00:03:31.000] Files (2) + +Info 93 [00:03:32.000] ----------------------------------------------- +Info 93 [00:03:33.000] Open files: +Info 93 [00:03:34.000] FileName: /user/username/projects/myproject/main/main.ts ProjectRootPath: undefined +Info 93 [00:03:35.000] Projects: /user/username/projects/myproject/main/tsconfig.json +Info 93 [00:03:36.000] FileName: /user/username/projects/myproject/dependency/FnS.ts ProjectRootPath: undefined +Info 93 [00:03:37.000] Projects: /user/username/projects/myproject/dependency/tsconfig.json +Info 93 [00:03:38.000] FileName: /user/username/projects/myproject/random/random.ts ProjectRootPath: undefined +Info 93 [00:03:39.000] Projects: /user/username/projects/myproject/random/tsconfig.json After request PolledWatches:: @@ -1892,11 +1892,11 @@ FsWatchesRecursive:: /user/username/projects/myproject/random: {} -Info 93 [16:03:40.000] response: +Info 93 [00:03:40.000] response: { "responseRequired": false } -Info 94 [16:03:41.000] request: +Info 94 [00:03:41.000] request: { "seq": 0, "type": "request", @@ -1939,24 +1939,24 @@ FsWatchesRecursive:: /user/username/projects/myproject/random: {} -Info 95 [16:03:42.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/main/main.ts 500 undefined WatchType: Closed Script info -Info 96 [16:03:43.000] Project '/user/username/projects/myproject/main/tsconfig.json' (Configured) -Info 96 [16:03:44.000] Files (2) +Info 95 [00:03:42.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/main/main.ts 500 undefined WatchType: Closed Script info +Info 96 [00:03:43.000] Project '/user/username/projects/myproject/main/tsconfig.json' (Configured) +Info 96 [00:03:44.000] Files (2) -Info 96 [16:03:45.000] ----------------------------------------------- -Info 96 [16:03:46.000] Project '/user/username/projects/myproject/dependency/tsconfig.json' (Configured) -Info 96 [16:03:47.000] Files (2) +Info 96 [00:03:45.000] ----------------------------------------------- +Info 96 [00:03:46.000] Project '/user/username/projects/myproject/dependency/tsconfig.json' (Configured) +Info 96 [00:03:47.000] Files (2) -Info 96 [16:03:48.000] ----------------------------------------------- -Info 96 [16:03:49.000] Project '/user/username/projects/myproject/random/tsconfig.json' (Configured) -Info 96 [16:03:50.000] Files (2) +Info 96 [00:03:48.000] ----------------------------------------------- +Info 96 [00:03:49.000] Project '/user/username/projects/myproject/random/tsconfig.json' (Configured) +Info 96 [00:03:50.000] Files (2) -Info 96 [16:03:51.000] ----------------------------------------------- -Info 96 [16:03:52.000] Open files: -Info 96 [16:03:53.000] FileName: /user/username/projects/myproject/dependency/FnS.ts ProjectRootPath: undefined -Info 96 [16:03:54.000] Projects: /user/username/projects/myproject/dependency/tsconfig.json -Info 96 [16:03:55.000] FileName: /user/username/projects/myproject/random/random.ts ProjectRootPath: undefined -Info 96 [16:03:56.000] Projects: /user/username/projects/myproject/random/tsconfig.json +Info 96 [00:03:51.000] ----------------------------------------------- +Info 96 [00:03:52.000] Open files: +Info 96 [00:03:53.000] FileName: /user/username/projects/myproject/dependency/FnS.ts ProjectRootPath: undefined +Info 96 [00:03:54.000] Projects: /user/username/projects/myproject/dependency/tsconfig.json +Info 96 [00:03:55.000] FileName: /user/username/projects/myproject/random/random.ts ProjectRootPath: undefined +Info 96 [00:03:56.000] Projects: /user/username/projects/myproject/random/tsconfig.json After request PolledWatches:: @@ -1993,11 +1993,11 @@ FsWatchesRecursive:: /user/username/projects/myproject/random: {} -Info 96 [16:03:57.000] response: +Info 96 [00:03:57.000] response: { "responseRequired": false } -Info 97 [16:03:58.000] request: +Info 97 [00:03:58.000] request: { "seq": 0, "type": "request", @@ -2042,22 +2042,22 @@ FsWatchesRecursive:: /user/username/projects/myproject/random: {} -Info 98 [16:03:59.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/dependency/FnS.ts 500 undefined WatchType: Closed Script info -Info 99 [16:04:00.000] Project '/user/username/projects/myproject/main/tsconfig.json' (Configured) -Info 99 [16:04:01.000] Files (2) +Info 98 [00:03:59.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/dependency/FnS.ts 500 undefined WatchType: Closed Script info +Info 99 [00:04:00.000] Project '/user/username/projects/myproject/main/tsconfig.json' (Configured) +Info 99 [00:04:01.000] Files (2) -Info 99 [16:04:02.000] ----------------------------------------------- -Info 99 [16:04:03.000] Project '/user/username/projects/myproject/dependency/tsconfig.json' (Configured) -Info 99 [16:04:04.000] Files (2) +Info 99 [00:04:02.000] ----------------------------------------------- +Info 99 [00:04:03.000] Project '/user/username/projects/myproject/dependency/tsconfig.json' (Configured) +Info 99 [00:04:04.000] Files (2) -Info 99 [16:04:05.000] ----------------------------------------------- -Info 99 [16:04:06.000] Project '/user/username/projects/myproject/random/tsconfig.json' (Configured) -Info 99 [16:04:07.000] Files (2) +Info 99 [00:04:05.000] ----------------------------------------------- +Info 99 [00:04:06.000] Project '/user/username/projects/myproject/random/tsconfig.json' (Configured) +Info 99 [00:04:07.000] Files (2) -Info 99 [16:04:08.000] ----------------------------------------------- -Info 99 [16:04:09.000] Open files: -Info 99 [16:04:10.000] FileName: /user/username/projects/myproject/random/random.ts ProjectRootPath: undefined -Info 99 [16:04:11.000] Projects: /user/username/projects/myproject/random/tsconfig.json +Info 99 [00:04:08.000] ----------------------------------------------- +Info 99 [00:04:09.000] Open files: +Info 99 [00:04:10.000] FileName: /user/username/projects/myproject/random/random.ts ProjectRootPath: undefined +Info 99 [00:04:11.000] Projects: /user/username/projects/myproject/random/tsconfig.json After request PolledWatches:: @@ -2096,11 +2096,11 @@ FsWatchesRecursive:: /user/username/projects/myproject/random: {} -Info 99 [16:04:12.000] response: +Info 99 [00:04:12.000] response: { "responseRequired": false } -Info 100 [16:04:13.000] request: +Info 100 [00:04:13.000] request: { "seq": 0, "type": "request", @@ -2147,20 +2147,20 @@ FsWatchesRecursive:: /user/username/projects/myproject/random: {} -Info 101 [16:04:14.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/random/random.ts 500 undefined WatchType: Closed Script info -Info 102 [16:04:15.000] Project '/user/username/projects/myproject/main/tsconfig.json' (Configured) -Info 102 [16:04:16.000] Files (2) +Info 101 [00:04:14.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/random/random.ts 500 undefined WatchType: Closed Script info +Info 102 [00:04:15.000] Project '/user/username/projects/myproject/main/tsconfig.json' (Configured) +Info 102 [00:04:16.000] Files (2) -Info 102 [16:04:17.000] ----------------------------------------------- -Info 102 [16:04:18.000] Project '/user/username/projects/myproject/dependency/tsconfig.json' (Configured) -Info 102 [16:04:19.000] Files (2) +Info 102 [00:04:17.000] ----------------------------------------------- +Info 102 [00:04:18.000] Project '/user/username/projects/myproject/dependency/tsconfig.json' (Configured) +Info 102 [00:04:19.000] Files (2) -Info 102 [16:04:20.000] ----------------------------------------------- -Info 102 [16:04:21.000] Project '/user/username/projects/myproject/random/tsconfig.json' (Configured) -Info 102 [16:04:22.000] Files (2) +Info 102 [00:04:20.000] ----------------------------------------------- +Info 102 [00:04:21.000] Project '/user/username/projects/myproject/random/tsconfig.json' (Configured) +Info 102 [00:04:22.000] Files (2) -Info 102 [16:04:23.000] ----------------------------------------------- -Info 102 [16:04:24.000] Open files: +Info 102 [00:04:23.000] ----------------------------------------------- +Info 102 [00:04:24.000] Open files: After request PolledWatches:: @@ -2201,11 +2201,11 @@ FsWatchesRecursive:: /user/username/projects/myproject/random: {} -Info 102 [16:04:25.000] response: +Info 102 [00:04:25.000] response: { "responseRequired": false } -Info 103 [16:04:26.000] request: +Info 103 [00:04:26.000] request: { "seq": 0, "type": "request", @@ -2254,12 +2254,12 @@ FsWatchesRecursive:: /user/username/projects/myproject/random: {} -Info 104 [16:04:27.000] FileWatcher:: Close:: WatchInfo: /user/username/projects/myproject/random/random.ts 500 undefined WatchType: Closed Script info -Info 105 [16:04:28.000] Search path: /user/username/projects/myproject/random -Info 106 [16:04:29.000] For info: /user/username/projects/myproject/random/random.ts :: Config file name: /user/username/projects/myproject/random/tsconfig.json -Info 107 [16:04:30.000] `remove Project:: -Info 108 [16:04:31.000] Project '/user/username/projects/myproject/main/tsconfig.json' (Configured) -Info 109 [16:04:32.000] Files (2) +Info 104 [00:04:27.000] FileWatcher:: Close:: WatchInfo: /user/username/projects/myproject/random/random.ts 500 undefined WatchType: Closed Script info +Info 105 [00:04:28.000] Search path: /user/username/projects/myproject/random +Info 106 [00:04:29.000] For info: /user/username/projects/myproject/random/random.ts :: Config file name: /user/username/projects/myproject/random/tsconfig.json +Info 107 [00:04:30.000] `remove Project:: +Info 108 [00:04:31.000] Project '/user/username/projects/myproject/main/tsconfig.json' (Configured) +Info 109 [00:04:32.000] Files (2) /a/lib/lib.d.ts /user/username/projects/myproject/main/main.ts @@ -2269,19 +2269,19 @@ Info 109 [16:04:32.000] Files (2) main.ts Matched by default include pattern '**/*' -Info 110 [16:04:33.000] ----------------------------------------------- -Info 111 [16:04:34.000] DirectoryWatcher:: Close:: WatchInfo: /user/username/projects/myproject/main 1 undefined Config: /user/username/projects/myproject/main/tsconfig.json WatchType: Wild card directory -Info 112 [16:04:35.000] 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 113 [16:04:36.000] FileWatcher:: Close:: WatchInfo: /user/username/projects/myproject/main/tsconfig.json 2000 undefined Project: /user/username/projects/myproject/main/tsconfig.json WatchType: Config file -Info 114 [16:04:37.000] DirectoryWatcher:: Close:: WatchInfo: /user/username/projects/myproject/decls 1 undefined Project: /user/username/projects/myproject/main/tsconfig.json WatchType: Failed Lookup Locations -Info 115 [16:04:38.000] 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 116 [16:04:39.000] 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 117 [16:04:40.000] 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 118 [16:04:41.000] DirectoryWatcher:: Close:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/main/tsconfig.json WatchType: Type roots -Info 119 [16:04:42.000] 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 120 [16:04:43.000] `remove Project:: -Info 121 [16:04:44.000] Project '/user/username/projects/myproject/dependency/tsconfig.json' (Configured) -Info 122 [16:04:45.000] Files (2) +Info 110 [00:04:33.000] ----------------------------------------------- +Info 111 [00:04:34.000] DirectoryWatcher:: Close:: WatchInfo: /user/username/projects/myproject/main 1 undefined Config: /user/username/projects/myproject/main/tsconfig.json WatchType: Wild card directory +Info 112 [00:04:35.000] 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 113 [00:04:36.000] FileWatcher:: Close:: WatchInfo: /user/username/projects/myproject/main/tsconfig.json 2000 undefined Project: /user/username/projects/myproject/main/tsconfig.json WatchType: Config file +Info 114 [00:04:37.000] DirectoryWatcher:: Close:: WatchInfo: /user/username/projects/myproject/decls 1 undefined Project: /user/username/projects/myproject/main/tsconfig.json WatchType: Failed Lookup Locations +Info 115 [00:04:38.000] 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 116 [00:04:39.000] 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 117 [00:04:40.000] 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 118 [00:04:41.000] DirectoryWatcher:: Close:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/main/tsconfig.json WatchType: Type roots +Info 119 [00:04:42.000] 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 120 [00:04:43.000] `remove Project:: +Info 121 [00:04:44.000] Project '/user/username/projects/myproject/dependency/tsconfig.json' (Configured) +Info 122 [00:04:45.000] Files (2) /a/lib/lib.d.ts /user/username/projects/myproject/dependency/FnS.ts @@ -2291,24 +2291,24 @@ Info 122 [16:04:45.000] Files (2) FnS.ts Matched by default include pattern '**/*' -Info 123 [16:04:46.000] ----------------------------------------------- -Info 124 [16:04:47.000] DirectoryWatcher:: Close:: WatchInfo: /user/username/projects/myproject/dependency 1 undefined Config: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Wild card directory -Info 125 [16:04:48.000] 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 126 [16:04:49.000] FileWatcher:: Close:: WatchInfo: /user/username/projects/myproject/dependency/tsconfig.json 2000 undefined Project: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Config file -Info 127 [16:04:50.000] 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 128 [16:04:51.000] 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 129 [16:04:52.000] DirectoryWatcher:: Close:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Type roots -Info 130 [16:04:53.000] 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 131 [16:04:54.000] 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 132 [16:04:55.000] FileWatcher:: Close:: WatchInfo: /user/username/projects/myproject/main/main.ts 500 undefined WatchType: Closed Script info -Info 133 [16:04:56.000] FileWatcher:: Close:: WatchInfo: /user/username/projects/myproject/dependency/FnS.ts 500 undefined WatchType: Closed Script info -Info 134 [16:04:57.000] Project '/user/username/projects/myproject/random/tsconfig.json' (Configured) -Info 134 [16:04:58.000] Files (2) - -Info 134 [16:04:59.000] ----------------------------------------------- -Info 134 [16:05:00.000] Open files: -Info 134 [16:05:01.000] FileName: /user/username/projects/myproject/random/random.ts ProjectRootPath: undefined -Info 134 [16:05:02.000] Projects: /user/username/projects/myproject/random/tsconfig.json +Info 123 [00:04:46.000] ----------------------------------------------- +Info 124 [00:04:47.000] DirectoryWatcher:: Close:: WatchInfo: /user/username/projects/myproject/dependency 1 undefined Config: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Wild card directory +Info 125 [00:04:48.000] 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 126 [00:04:49.000] FileWatcher:: Close:: WatchInfo: /user/username/projects/myproject/dependency/tsconfig.json 2000 undefined Project: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Config file +Info 127 [00:04:50.000] 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 128 [00:04:51.000] 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 129 [00:04:52.000] DirectoryWatcher:: Close:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Type roots +Info 130 [00:04:53.000] 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 131 [00:04:54.000] 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 132 [00:04:55.000] FileWatcher:: Close:: WatchInfo: /user/username/projects/myproject/main/main.ts 500 undefined WatchType: Closed Script info +Info 133 [00:04:56.000] FileWatcher:: Close:: WatchInfo: /user/username/projects/myproject/dependency/FnS.ts 500 undefined WatchType: Closed Script info +Info 134 [00:04:57.000] Project '/user/username/projects/myproject/random/tsconfig.json' (Configured) +Info 134 [00:04:58.000] Files (2) + +Info 134 [00:04:59.000] ----------------------------------------------- +Info 134 [00:05:00.000] Open files: +Info 134 [00:05:01.000] FileName: /user/username/projects/myproject/random/random.ts ProjectRootPath: undefined +Info 134 [00:05:02.000] Projects: /user/username/projects/myproject/random/tsconfig.json After request PolledWatches:: @@ -2327,7 +2327,7 @@ FsWatchesRecursive:: /user/username/projects/myproject/random: {} -Info 134 [16:05:03.000] response: +Info 134 [00:05:03.000] response: { "responseRequired": false } \ No newline at end of file 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 038e5129842f7..407f240fb6157 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 @@ -1,5 +1,5 @@ -Info 0 [16:01:03.000] Provided types map file "/a/lib/typesMap.json" doesn't exist -Info 1 [16:01:04.000] request: +Info 0 [00:01:03.000] Provided types map file "/a/lib/typesMap.json" doesn't exist +Info 1 [00:01:04.000] request: { "seq": 0, "type": "request", @@ -200,11 +200,11 @@ FsWatches:: FsWatchesRecursive:: -Info 2 [16:01:05.000] Search path: /user/username/projects/myproject/main -Info 3 [16:01:06.000] For info: /user/username/projects/myproject/main/main.ts :: Config file name: /user/username/projects/myproject/main/tsconfig.json -Info 4 [16:01:07.000] Creating configuration project /user/username/projects/myproject/main/tsconfig.json -Info 5 [16:01:08.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/main/tsconfig.json 2000 undefined Project: /user/username/projects/myproject/main/tsconfig.json WatchType: Config file -Info 6 [16:01:09.000] Config: /user/username/projects/myproject/main/tsconfig.json : { +Info 2 [00:01:05.000] Search path: /user/username/projects/myproject/main +Info 3 [00:01:06.000] For info: /user/username/projects/myproject/main/main.ts :: Config file name: /user/username/projects/myproject/main/tsconfig.json +Info 4 [00:01:07.000] Creating configuration project /user/username/projects/myproject/main/tsconfig.json +Info 5 [00:01:08.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/main/tsconfig.json 2000 undefined Project: /user/username/projects/myproject/main/tsconfig.json WatchType: Config file +Info 6 [00:01:09.000] Config: /user/username/projects/myproject/main/tsconfig.json : { "rootNames": [ "/user/username/projects/myproject/main/main.ts" ], @@ -214,21 +214,21 @@ Info 6 [16:01:09.000] Config: /user/username/projects/myproject/main/tsconfig "configFilePath": "/user/username/projects/myproject/main/tsconfig.json" } } -Info 7 [16:01:10.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/main 1 undefined Config: /user/username/projects/myproject/main/tsconfig.json WatchType: Wild card directory -Info 8 [16:01:11.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/main 1 undefined Config: /user/username/projects/myproject/main/tsconfig.json WatchType: Wild card directory -Info 9 [16:01:12.000] Plugins were requested but not running in environment that supports 'require'. Nothing will be loaded -Info 10 [16:01:13.000] Starting updateGraphWorker: Project: /user/username/projects/myproject/main/tsconfig.json -Info 11 [16:01:14.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/decls 1 undefined Project: /user/username/projects/myproject/main/tsconfig.json WatchType: Failed Lookup Locations -Info 12 [16:01:15.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/decls 1 undefined Project: /user/username/projects/myproject/main/tsconfig.json WatchType: Failed Lookup Locations -Info 13 [16:01:16.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/decls/fns.d.ts 500 undefined WatchType: Closed Script info -Info 14 [16:01:17.000] FileWatcher:: Added:: WatchInfo: /a/lib/lib.d.ts 500 undefined WatchType: Closed Script info -Info 15 [16:01:18.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/main/node_modules/@types 1 undefined Project: /user/username/projects/myproject/main/tsconfig.json WatchType: Type roots -Info 16 [16:01:19.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/main/node_modules/@types 1 undefined Project: /user/username/projects/myproject/main/tsconfig.json WatchType: Type roots -Info 17 [16:01:20.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/main/tsconfig.json WatchType: Type roots -Info 18 [16:01:21.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/main/tsconfig.json WatchType: Type roots -Info 19 [16:01:22.000] Finishing updateGraphWorker: Project: /user/username/projects/myproject/main/tsconfig.json Version: 1 structureChanged: true structureIsReused:: Not Elapsed:: *ms -Info 20 [16:01:23.000] Project '/user/username/projects/myproject/main/tsconfig.json' (Configured) -Info 21 [16:01:24.000] Files (3) +Info 7 [00:01:10.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/main 1 undefined Config: /user/username/projects/myproject/main/tsconfig.json WatchType: Wild card directory +Info 8 [00:01:11.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/main 1 undefined Config: /user/username/projects/myproject/main/tsconfig.json WatchType: Wild card directory +Info 9 [00:01:12.000] Plugins were requested but not running in environment that supports 'require'. Nothing will be loaded +Info 10 [00:01:13.000] Starting updateGraphWorker: Project: /user/username/projects/myproject/main/tsconfig.json +Info 11 [00:01:14.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/decls 1 undefined Project: /user/username/projects/myproject/main/tsconfig.json WatchType: Failed Lookup Locations +Info 12 [00:01:15.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/decls 1 undefined Project: /user/username/projects/myproject/main/tsconfig.json WatchType: Failed Lookup Locations +Info 13 [00:01:16.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/decls/fns.d.ts 500 undefined WatchType: Closed Script info +Info 14 [00:01:17.000] FileWatcher:: Added:: WatchInfo: /a/lib/lib.d.ts 500 undefined WatchType: Closed Script info +Info 15 [00:01:18.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/main/node_modules/@types 1 undefined Project: /user/username/projects/myproject/main/tsconfig.json WatchType: Type roots +Info 16 [00:01:19.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/main/node_modules/@types 1 undefined Project: /user/username/projects/myproject/main/tsconfig.json WatchType: Type roots +Info 17 [00:01:20.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/main/tsconfig.json WatchType: Type roots +Info 18 [00:01:21.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/main/tsconfig.json WatchType: Type roots +Info 19 [00:01:22.000] Finishing updateGraphWorker: Project: /user/username/projects/myproject/main/tsconfig.json Version: 1 structureChanged: true structureIsReused:: Not Elapsed:: *ms +Info 20 [00:01:23.000] Project '/user/username/projects/myproject/main/tsconfig.json' (Configured) +Info 21 [00:01:24.000] Files (3) /a/lib/lib.d.ts /user/username/projects/myproject/decls/fns.d.ts /user/username/projects/myproject/main/main.ts @@ -241,16 +241,16 @@ Info 21 [16:01:24.000] Files (3) main.ts Matched by default include pattern '**/*' -Info 22 [16:01:25.000] ----------------------------------------------- -Info 23 [16:01:26.000] Search path: /user/username/projects/myproject/main -Info 24 [16:01:27.000] For info: /user/username/projects/myproject/main/tsconfig.json :: No config files found. -Info 25 [16:01:28.000] Project '/user/username/projects/myproject/main/tsconfig.json' (Configured) -Info 25 [16:01:29.000] Files (3) +Info 22 [00:01:25.000] ----------------------------------------------- +Info 23 [00:01:26.000] Search path: /user/username/projects/myproject/main +Info 24 [00:01:27.000] For info: /user/username/projects/myproject/main/tsconfig.json :: No config files found. +Info 25 [00:01:28.000] Project '/user/username/projects/myproject/main/tsconfig.json' (Configured) +Info 25 [00:01:29.000] Files (3) -Info 25 [16:01:30.000] ----------------------------------------------- -Info 25 [16:01:31.000] Open files: -Info 25 [16:01:32.000] FileName: /user/username/projects/myproject/main/main.ts ProjectRootPath: undefined -Info 25 [16:01:33.000] Projects: /user/username/projects/myproject/main/tsconfig.json +Info 25 [00:01:30.000] ----------------------------------------------- +Info 25 [00:01:31.000] Open files: +Info 25 [00:01:32.000] FileName: /user/username/projects/myproject/main/main.ts ProjectRootPath: undefined +Info 25 [00:01:33.000] Projects: /user/username/projects/myproject/main/tsconfig.json After request PolledWatches:: @@ -273,11 +273,11 @@ FsWatchesRecursive:: /user/username/projects/myproject/decls: {} -Info 25 [16:01:34.000] response: +Info 25 [00:01:34.000] response: { "responseRequired": false } -Info 26 [16:01:35.000] request: +Info 26 [00:01:35.000] request: { "seq": 0, "type": "request", @@ -308,11 +308,11 @@ FsWatchesRecursive:: /user/username/projects/myproject/decls: {} -Info 27 [16:01:36.000] Search path: /user/username/projects/myproject/dependency -Info 28 [16:01:37.000] For info: /user/username/projects/myproject/dependency/FnS.ts :: Config file name: /user/username/projects/myproject/dependency/tsconfig.json -Info 29 [16:01:38.000] Creating configuration project /user/username/projects/myproject/dependency/tsconfig.json -Info 30 [16:01:39.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/dependency/tsconfig.json 2000 undefined Project: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Config file -Info 31 [16:01:40.000] Config: /user/username/projects/myproject/dependency/tsconfig.json : { +Info 27 [00:01:36.000] Search path: /user/username/projects/myproject/dependency +Info 28 [00:01:37.000] For info: /user/username/projects/myproject/dependency/FnS.ts :: Config file name: /user/username/projects/myproject/dependency/tsconfig.json +Info 29 [00:01:38.000] Creating configuration project /user/username/projects/myproject/dependency/tsconfig.json +Info 30 [00:01:39.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/dependency/tsconfig.json 2000 undefined Project: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Config file +Info 31 [00:01:40.000] Config: /user/username/projects/myproject/dependency/tsconfig.json : { "rootNames": [ "/user/username/projects/myproject/dependency/FnS.ts" ], @@ -323,17 +323,17 @@ Info 31 [16:01:40.000] Config: /user/username/projects/myproject/dependency/ts "configFilePath": "/user/username/projects/myproject/dependency/tsconfig.json" } } -Info 32 [16:01:41.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/dependency 1 undefined Config: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Wild card directory -Info 33 [16:01:42.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/dependency 1 undefined Config: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Wild card directory -Info 34 [16:01:43.000] Plugins were requested but not running in environment that supports 'require'. Nothing will be loaded -Info 35 [16:01:44.000] Starting updateGraphWorker: Project: /user/username/projects/myproject/dependency/tsconfig.json -Info 36 [16:01:45.000] 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 37 [16:01:46.000] 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 38 [16:01:47.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Type roots -Info 39 [16:01:48.000] 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 40 [16:01:49.000] Finishing updateGraphWorker: Project: /user/username/projects/myproject/dependency/tsconfig.json Version: 1 structureChanged: true structureIsReused:: Not Elapsed:: *ms -Info 41 [16:01:50.000] Project '/user/username/projects/myproject/dependency/tsconfig.json' (Configured) -Info 42 [16:01:51.000] Files (2) +Info 32 [00:01:41.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/dependency 1 undefined Config: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Wild card directory +Info 33 [00:01:42.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/dependency 1 undefined Config: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Wild card directory +Info 34 [00:01:43.000] Plugins were requested but not running in environment that supports 'require'. Nothing will be loaded +Info 35 [00:01:44.000] Starting updateGraphWorker: Project: /user/username/projects/myproject/dependency/tsconfig.json +Info 36 [00:01:45.000] 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 37 [00:01:46.000] 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 38 [00:01:47.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Type roots +Info 39 [00:01:48.000] 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 40 [00:01:49.000] Finishing updateGraphWorker: Project: /user/username/projects/myproject/dependency/tsconfig.json Version: 1 structureChanged: true structureIsReused:: Not Elapsed:: *ms +Info 41 [00:01:50.000] Project '/user/username/projects/myproject/dependency/tsconfig.json' (Configured) +Info 42 [00:01:51.000] Files (2) /a/lib/lib.d.ts /user/username/projects/myproject/dependency/FnS.ts @@ -343,22 +343,22 @@ Info 42 [16:01:51.000] Files (2) FnS.ts Matched by default include pattern '**/*' -Info 43 [16:01:52.000] ----------------------------------------------- -Info 44 [16:01:53.000] Search path: /user/username/projects/myproject/dependency -Info 45 [16:01:54.000] For info: /user/username/projects/myproject/dependency/tsconfig.json :: No config files found. -Info 46 [16:01:55.000] Project '/user/username/projects/myproject/main/tsconfig.json' (Configured) -Info 46 [16:01:56.000] Files (3) - -Info 46 [16:01:57.000] ----------------------------------------------- -Info 46 [16:01:58.000] Project '/user/username/projects/myproject/dependency/tsconfig.json' (Configured) -Info 46 [16:01:59.000] Files (2) - -Info 46 [16:02:00.000] ----------------------------------------------- -Info 46 [16:02:01.000] Open files: -Info 46 [16:02:02.000] FileName: /user/username/projects/myproject/main/main.ts ProjectRootPath: undefined -Info 46 [16:02:03.000] Projects: /user/username/projects/myproject/main/tsconfig.json -Info 46 [16:02:04.000] FileName: /user/username/projects/myproject/dependency/FnS.ts ProjectRootPath: undefined -Info 46 [16:02:05.000] Projects: /user/username/projects/myproject/dependency/tsconfig.json +Info 43 [00:01:52.000] ----------------------------------------------- +Info 44 [00:01:53.000] Search path: /user/username/projects/myproject/dependency +Info 45 [00:01:54.000] For info: /user/username/projects/myproject/dependency/tsconfig.json :: No config files found. +Info 46 [00:01:55.000] Project '/user/username/projects/myproject/main/tsconfig.json' (Configured) +Info 46 [00:01:56.000] Files (3) + +Info 46 [00:01:57.000] ----------------------------------------------- +Info 46 [00:01:58.000] Project '/user/username/projects/myproject/dependency/tsconfig.json' (Configured) +Info 46 [00:01:59.000] Files (2) + +Info 46 [00:02:00.000] ----------------------------------------------- +Info 46 [00:02:01.000] Open files: +Info 46 [00:02:02.000] FileName: /user/username/projects/myproject/main/main.ts ProjectRootPath: undefined +Info 46 [00:02:03.000] Projects: /user/username/projects/myproject/main/tsconfig.json +Info 46 [00:02:04.000] FileName: /user/username/projects/myproject/dependency/FnS.ts ProjectRootPath: undefined +Info 46 [00:02:05.000] Projects: /user/username/projects/myproject/dependency/tsconfig.json After request PolledWatches:: @@ -387,11 +387,11 @@ FsWatchesRecursive:: /user/username/projects/myproject/dependency: {} -Info 46 [16:02:06.000] response: +Info 46 [00:02:06.000] response: { "responseRequired": false } -Info 47 [16:02:07.000] request: +Info 47 [00:02:07.000] request: { "seq": 0, "type": "request", @@ -428,11 +428,11 @@ FsWatchesRecursive:: /user/username/projects/myproject/dependency: {} -Info 48 [16:02:08.000] Search path: /user/username/projects/myproject/random -Info 49 [16:02:09.000] For info: /user/username/projects/myproject/random/random.ts :: Config file name: /user/username/projects/myproject/random/tsconfig.json -Info 50 [16:02:10.000] Creating configuration project /user/username/projects/myproject/random/tsconfig.json -Info 51 [16:02:11.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/random/tsconfig.json 2000 undefined Project: /user/username/projects/myproject/random/tsconfig.json WatchType: Config file -Info 52 [16:02:12.000] Config: /user/username/projects/myproject/random/tsconfig.json : { +Info 48 [00:02:08.000] Search path: /user/username/projects/myproject/random +Info 49 [00:02:09.000] For info: /user/username/projects/myproject/random/random.ts :: Config file name: /user/username/projects/myproject/random/tsconfig.json +Info 50 [00:02:10.000] Creating configuration project /user/username/projects/myproject/random/tsconfig.json +Info 51 [00:02:11.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/random/tsconfig.json 2000 undefined Project: /user/username/projects/myproject/random/tsconfig.json WatchType: Config file +Info 52 [00:02:12.000] Config: /user/username/projects/myproject/random/tsconfig.json : { "rootNames": [ "/user/username/projects/myproject/random/random.ts" ], @@ -440,17 +440,17 @@ Info 52 [16:02:12.000] Config: /user/username/projects/myproject/random/tsconf "configFilePath": "/user/username/projects/myproject/random/tsconfig.json" } } -Info 53 [16:02:13.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/random 1 undefined Config: /user/username/projects/myproject/random/tsconfig.json WatchType: Wild card directory -Info 54 [16:02:14.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/random 1 undefined Config: /user/username/projects/myproject/random/tsconfig.json WatchType: Wild card directory -Info 55 [16:02:15.000] Plugins were requested but not running in environment that supports 'require'. Nothing will be loaded -Info 56 [16:02:16.000] Starting updateGraphWorker: Project: /user/username/projects/myproject/random/tsconfig.json -Info 57 [16:02:17.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/random/node_modules/@types 1 undefined Project: /user/username/projects/myproject/random/tsconfig.json WatchType: Type roots -Info 58 [16:02:18.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/random/node_modules/@types 1 undefined Project: /user/username/projects/myproject/random/tsconfig.json WatchType: Type roots -Info 59 [16:02:19.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/random/tsconfig.json WatchType: Type roots -Info 60 [16:02:20.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/random/tsconfig.json WatchType: Type roots -Info 61 [16:02:21.000] Finishing updateGraphWorker: Project: /user/username/projects/myproject/random/tsconfig.json Version: 1 structureChanged: true structureIsReused:: Not Elapsed:: *ms -Info 62 [16:02:22.000] Project '/user/username/projects/myproject/random/tsconfig.json' (Configured) -Info 63 [16:02:23.000] Files (2) +Info 53 [00:02:13.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/random 1 undefined Config: /user/username/projects/myproject/random/tsconfig.json WatchType: Wild card directory +Info 54 [00:02:14.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/random 1 undefined Config: /user/username/projects/myproject/random/tsconfig.json WatchType: Wild card directory +Info 55 [00:02:15.000] Plugins were requested but not running in environment that supports 'require'. Nothing will be loaded +Info 56 [00:02:16.000] Starting updateGraphWorker: Project: /user/username/projects/myproject/random/tsconfig.json +Info 57 [00:02:17.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/random/node_modules/@types 1 undefined Project: /user/username/projects/myproject/random/tsconfig.json WatchType: Type roots +Info 58 [00:02:18.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/random/node_modules/@types 1 undefined Project: /user/username/projects/myproject/random/tsconfig.json WatchType: Type roots +Info 59 [00:02:19.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/random/tsconfig.json WatchType: Type roots +Info 60 [00:02:20.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/random/tsconfig.json WatchType: Type roots +Info 61 [00:02:21.000] Finishing updateGraphWorker: Project: /user/username/projects/myproject/random/tsconfig.json Version: 1 structureChanged: true structureIsReused:: Not Elapsed:: *ms +Info 62 [00:02:22.000] Project '/user/username/projects/myproject/random/tsconfig.json' (Configured) +Info 63 [00:02:23.000] Files (2) /a/lib/lib.d.ts /user/username/projects/myproject/random/random.ts @@ -460,26 +460,26 @@ Info 63 [16:02:23.000] Files (2) random.ts Matched by default include pattern '**/*' -Info 64 [16:02:24.000] ----------------------------------------------- -Info 65 [16:02:25.000] Project '/user/username/projects/myproject/main/tsconfig.json' (Configured) -Info 65 [16:02:26.000] Files (3) - -Info 65 [16:02:27.000] ----------------------------------------------- -Info 65 [16:02:28.000] Project '/user/username/projects/myproject/dependency/tsconfig.json' (Configured) -Info 65 [16:02:29.000] Files (2) - -Info 65 [16:02:30.000] ----------------------------------------------- -Info 65 [16:02:31.000] Project '/user/username/projects/myproject/random/tsconfig.json' (Configured) -Info 65 [16:02:32.000] Files (2) - -Info 65 [16:02:33.000] ----------------------------------------------- -Info 65 [16:02:34.000] Open files: -Info 65 [16:02:35.000] FileName: /user/username/projects/myproject/main/main.ts ProjectRootPath: undefined -Info 65 [16:02:36.000] Projects: /user/username/projects/myproject/main/tsconfig.json -Info 65 [16:02:37.000] FileName: /user/username/projects/myproject/dependency/FnS.ts ProjectRootPath: undefined -Info 65 [16:02:38.000] Projects: /user/username/projects/myproject/dependency/tsconfig.json -Info 65 [16:02:39.000] FileName: /user/username/projects/myproject/random/random.ts ProjectRootPath: undefined -Info 65 [16:02:40.000] Projects: /user/username/projects/myproject/random/tsconfig.json +Info 64 [00:02:24.000] ----------------------------------------------- +Info 65 [00:02:25.000] Project '/user/username/projects/myproject/main/tsconfig.json' (Configured) +Info 65 [00:02:26.000] Files (3) + +Info 65 [00:02:27.000] ----------------------------------------------- +Info 65 [00:02:28.000] Project '/user/username/projects/myproject/dependency/tsconfig.json' (Configured) +Info 65 [00:02:29.000] Files (2) + +Info 65 [00:02:30.000] ----------------------------------------------- +Info 65 [00:02:31.000] Project '/user/username/projects/myproject/random/tsconfig.json' (Configured) +Info 65 [00:02:32.000] Files (2) + +Info 65 [00:02:33.000] ----------------------------------------------- +Info 65 [00:02:34.000] Open files: +Info 65 [00:02:35.000] FileName: /user/username/projects/myproject/main/main.ts ProjectRootPath: undefined +Info 65 [00:02:36.000] Projects: /user/username/projects/myproject/main/tsconfig.json +Info 65 [00:02:37.000] FileName: /user/username/projects/myproject/dependency/FnS.ts ProjectRootPath: undefined +Info 65 [00:02:38.000] Projects: /user/username/projects/myproject/dependency/tsconfig.json +Info 65 [00:02:39.000] FileName: /user/username/projects/myproject/random/random.ts ProjectRootPath: undefined +Info 65 [00:02:40.000] Projects: /user/username/projects/myproject/random/tsconfig.json After request PolledWatches:: @@ -514,11 +514,11 @@ FsWatchesRecursive:: /user/username/projects/myproject/random: {} -Info 65 [16:02:41.000] response: +Info 65 [00:02:41.000] response: { "responseRequired": false } -Info 66 [16:02:42.000] request: +Info 66 [00:02:42.000] request: { "command": "definitionAndBoundSpan", "arguments": { @@ -563,7 +563,7 @@ FsWatchesRecursive:: /user/username/projects/myproject/random: {} -Info 67 [16:02:43.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/decls/FnS.d.ts.map 500 undefined WatchType: Closed Script info +Info 67 [00:02:43.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/decls/FnS.d.ts.map 500 undefined WatchType: Closed Script info After request PolledWatches:: @@ -600,7 +600,7 @@ FsWatchesRecursive:: /user/username/projects/myproject/random: {} -Info 68 [16:02:44.000] response: +Info 68 [00:02:44.000] response: { "response": { "definitions": [ @@ -637,7 +637,7 @@ Info 68 [16:02:44.000] response: }, "responseRequired": true } -Info 69 [16:02:45.000] request: +Info 69 [00:02:45.000] request: { "command": "rename", "arguments": { @@ -684,8 +684,8 @@ FsWatchesRecursive:: /user/username/projects/myproject/random: {} -Info 70 [16:02:46.000] Search path: /user/username/projects/myproject/dependency -Info 71 [16:02:47.000] For info: /user/username/projects/myproject/dependency/FnS.ts :: Config file name: /user/username/projects/myproject/dependency/tsconfig.json +Info 70 [00:02:46.000] Search path: /user/username/projects/myproject/dependency +Info 71 [00:02:47.000] For info: /user/username/projects/myproject/dependency/FnS.ts :: Config file name: /user/username/projects/myproject/dependency/tsconfig.json After request PolledWatches:: @@ -722,7 +722,7 @@ FsWatchesRecursive:: /user/username/projects/myproject/random: {} -Info 72 [16:02:48.000] response: +Info 72 [00:02:48.000] response: { "response": { "info": { @@ -803,12 +803,12 @@ Info 72 [16:02:48.000] response: }, "responseRequired": true } -Info 73 [16:02:52.000] FileWatcher:: Triggered with /user/username/projects/myproject/decls/FnS.d.ts.map 1:: WatchInfo: /user/username/projects/myproject/decls/FnS.d.ts.map 500 undefined WatchType: Closed Script info -Info 74 [16:02:53.000] Scheduled: /user/username/projects/myproject/dependency/tsconfig.json -Info 75 [16:02:54.000] Scheduled: *ensureProjectForOpenFiles* -Info 76 [16:02:55.000] Scheduled: /user/username/projects/myproject/main/tsconfig.json -Info 77 [16:02:56.000] Scheduled: *ensureProjectForOpenFiles*, Cancelled earlier one -Info 78 [16:02:57.000] Elapsed:: *ms FileWatcher:: Triggered with /user/username/projects/myproject/decls/FnS.d.ts.map 1:: WatchInfo: /user/username/projects/myproject/decls/FnS.d.ts.map 500 undefined WatchType: Closed Script info +Info 73 [00:02:52.000] FileWatcher:: Triggered with /user/username/projects/myproject/decls/FnS.d.ts.map 1:: WatchInfo: /user/username/projects/myproject/decls/FnS.d.ts.map 500 undefined WatchType: Closed Script info +Info 74 [00:02:53.000] Scheduled: /user/username/projects/myproject/dependency/tsconfig.json +Info 75 [00:02:54.000] Scheduled: *ensureProjectForOpenFiles* +Info 76 [00:02:55.000] Scheduled: /user/username/projects/myproject/main/tsconfig.json +Info 77 [00:02:56.000] Scheduled: *ensureProjectForOpenFiles*, Cancelled earlier one +Info 78 [00:02:57.000] Elapsed:: *ms FileWatcher:: Triggered with /user/username/projects/myproject/decls/FnS.d.ts.map 1:: WatchInfo: /user/username/projects/myproject/decls/FnS.d.ts.map 500 undefined WatchType: Closed Script info Before running timeout callbacks //// [/user/username/projects/myproject/decls/FnS.d.ts.map] {"version":3,"file":"FnS.d.ts","sourceRoot":"","sources":["../dependency/FnS.ts"],"names":[],"mappings":"AAAA,wBAAgB,GAAG,SAAM;AACzB,wBAAgB,GAAG,SAAM;AACzB,wBAAgB,GAAG,SAAM;AACzB,wBAAgB,GAAG,SAAM;AACzB,wBAAgB,GAAG,SAAM;AACzB,eAAO,MAAM,CAAC,KAAK,CAAC"} @@ -848,53 +848,53 @@ FsWatchesRecursive:: /user/username/projects/myproject/random: {} -Info 79 [16:02:58.000] Running: /user/username/projects/myproject/dependency/tsconfig.json -Info 80 [16:02:59.000] Starting updateGraphWorker: Project: /user/username/projects/myproject/dependency/tsconfig.json -Info 81 [16:03:00.000] Finishing updateGraphWorker: Project: /user/username/projects/myproject/dependency/tsconfig.json Version: 2 structureChanged: false structureIsReused:: Not Elapsed:: *ms -Info 82 [16:03:01.000] Running: /user/username/projects/myproject/main/tsconfig.json -Info 83 [16:03:02.000] Starting updateGraphWorker: Project: /user/username/projects/myproject/main/tsconfig.json -Info 84 [16:03:03.000] Finishing updateGraphWorker: Project: /user/username/projects/myproject/main/tsconfig.json Version: 2 structureChanged: false structureIsReused:: Not Elapsed:: *ms -Info 85 [16:03:04.000] Running: *ensureProjectForOpenFiles* -Info 86 [16:03:05.000] Before ensureProjectForOpenFiles: -Info 87 [16:03:06.000] Project '/user/username/projects/myproject/main/tsconfig.json' (Configured) -Info 87 [16:03:07.000] Files (3) - -Info 87 [16:03:08.000] ----------------------------------------------- -Info 87 [16:03:09.000] Project '/user/username/projects/myproject/dependency/tsconfig.json' (Configured) -Info 87 [16:03:10.000] Files (2) - -Info 87 [16:03:11.000] ----------------------------------------------- -Info 87 [16:03:12.000] Project '/user/username/projects/myproject/random/tsconfig.json' (Configured) -Info 87 [16:03:13.000] Files (2) - -Info 87 [16:03:14.000] ----------------------------------------------- -Info 87 [16:03:15.000] Open files: -Info 87 [16:03:16.000] FileName: /user/username/projects/myproject/main/main.ts ProjectRootPath: undefined -Info 87 [16:03:17.000] Projects: /user/username/projects/myproject/main/tsconfig.json -Info 87 [16:03:18.000] FileName: /user/username/projects/myproject/dependency/FnS.ts ProjectRootPath: undefined -Info 87 [16:03:19.000] Projects: /user/username/projects/myproject/dependency/tsconfig.json -Info 87 [16:03:20.000] FileName: /user/username/projects/myproject/random/random.ts ProjectRootPath: undefined -Info 87 [16:03:21.000] Projects: /user/username/projects/myproject/random/tsconfig.json -Info 87 [16:03:22.000] After ensureProjectForOpenFiles: -Info 88 [16:03:23.000] Project '/user/username/projects/myproject/main/tsconfig.json' (Configured) -Info 88 [16:03:24.000] Files (3) - -Info 88 [16:03:25.000] ----------------------------------------------- -Info 88 [16:03:26.000] Project '/user/username/projects/myproject/dependency/tsconfig.json' (Configured) -Info 88 [16:03:27.000] Files (2) - -Info 88 [16:03:28.000] ----------------------------------------------- -Info 88 [16:03:29.000] Project '/user/username/projects/myproject/random/tsconfig.json' (Configured) -Info 88 [16:03:30.000] Files (2) - -Info 88 [16:03:31.000] ----------------------------------------------- -Info 88 [16:03:32.000] Open files: -Info 88 [16:03:33.000] FileName: /user/username/projects/myproject/main/main.ts ProjectRootPath: undefined -Info 88 [16:03:34.000] Projects: /user/username/projects/myproject/main/tsconfig.json -Info 88 [16:03:35.000] FileName: /user/username/projects/myproject/dependency/FnS.ts ProjectRootPath: undefined -Info 88 [16:03:36.000] Projects: /user/username/projects/myproject/dependency/tsconfig.json -Info 88 [16:03:37.000] FileName: /user/username/projects/myproject/random/random.ts ProjectRootPath: undefined -Info 88 [16:03:38.000] Projects: /user/username/projects/myproject/random/tsconfig.json +Info 79 [00:02:58.000] Running: /user/username/projects/myproject/dependency/tsconfig.json +Info 80 [00:02:59.000] Starting updateGraphWorker: Project: /user/username/projects/myproject/dependency/tsconfig.json +Info 81 [00:03:00.000] Finishing updateGraphWorker: Project: /user/username/projects/myproject/dependency/tsconfig.json Version: 2 structureChanged: false structureIsReused:: Not Elapsed:: *ms +Info 82 [00:03:01.000] Running: /user/username/projects/myproject/main/tsconfig.json +Info 83 [00:03:02.000] Starting updateGraphWorker: Project: /user/username/projects/myproject/main/tsconfig.json +Info 84 [00:03:03.000] Finishing updateGraphWorker: Project: /user/username/projects/myproject/main/tsconfig.json Version: 2 structureChanged: false structureIsReused:: Not Elapsed:: *ms +Info 85 [00:03:04.000] Running: *ensureProjectForOpenFiles* +Info 86 [00:03:05.000] Before ensureProjectForOpenFiles: +Info 87 [00:03:06.000] Project '/user/username/projects/myproject/main/tsconfig.json' (Configured) +Info 87 [00:03:07.000] Files (3) + +Info 87 [00:03:08.000] ----------------------------------------------- +Info 87 [00:03:09.000] Project '/user/username/projects/myproject/dependency/tsconfig.json' (Configured) +Info 87 [00:03:10.000] Files (2) + +Info 87 [00:03:11.000] ----------------------------------------------- +Info 87 [00:03:12.000] Project '/user/username/projects/myproject/random/tsconfig.json' (Configured) +Info 87 [00:03:13.000] Files (2) + +Info 87 [00:03:14.000] ----------------------------------------------- +Info 87 [00:03:15.000] Open files: +Info 87 [00:03:16.000] FileName: /user/username/projects/myproject/main/main.ts ProjectRootPath: undefined +Info 87 [00:03:17.000] Projects: /user/username/projects/myproject/main/tsconfig.json +Info 87 [00:03:18.000] FileName: /user/username/projects/myproject/dependency/FnS.ts ProjectRootPath: undefined +Info 87 [00:03:19.000] Projects: /user/username/projects/myproject/dependency/tsconfig.json +Info 87 [00:03:20.000] FileName: /user/username/projects/myproject/random/random.ts ProjectRootPath: undefined +Info 87 [00:03:21.000] Projects: /user/username/projects/myproject/random/tsconfig.json +Info 87 [00:03:22.000] After ensureProjectForOpenFiles: +Info 88 [00:03:23.000] Project '/user/username/projects/myproject/main/tsconfig.json' (Configured) +Info 88 [00:03:24.000] Files (3) + +Info 88 [00:03:25.000] ----------------------------------------------- +Info 88 [00:03:26.000] Project '/user/username/projects/myproject/dependency/tsconfig.json' (Configured) +Info 88 [00:03:27.000] Files (2) + +Info 88 [00:03:28.000] ----------------------------------------------- +Info 88 [00:03:29.000] Project '/user/username/projects/myproject/random/tsconfig.json' (Configured) +Info 88 [00:03:30.000] Files (2) + +Info 88 [00:03:31.000] ----------------------------------------------- +Info 88 [00:03:32.000] Open files: +Info 88 [00:03:33.000] FileName: /user/username/projects/myproject/main/main.ts ProjectRootPath: undefined +Info 88 [00:03:34.000] Projects: /user/username/projects/myproject/main/tsconfig.json +Info 88 [00:03:35.000] FileName: /user/username/projects/myproject/dependency/FnS.ts ProjectRootPath: undefined +Info 88 [00:03:36.000] Projects: /user/username/projects/myproject/dependency/tsconfig.json +Info 88 [00:03:37.000] FileName: /user/username/projects/myproject/random/random.ts ProjectRootPath: undefined +Info 88 [00:03:38.000] Projects: /user/username/projects/myproject/random/tsconfig.json After running timeout callbacks PolledWatches:: @@ -931,7 +931,7 @@ FsWatchesRecursive:: /user/username/projects/myproject/random: {} -Info 88 [16:03:39.000] request: +Info 88 [00:03:39.000] request: { "command": "definitionAndBoundSpan", "arguments": { @@ -1014,7 +1014,7 @@ FsWatchesRecursive:: /user/username/projects/myproject/random: {} -Info 89 [16:03:40.000] response: +Info 89 [00:03:40.000] response: { "response": { "definitions": [ @@ -1051,7 +1051,7 @@ Info 89 [16:03:40.000] response: }, "responseRequired": true } -Info 90 [16:03:41.000] request: +Info 90 [00:03:41.000] request: { "command": "definitionAndBoundSpan", "arguments": { @@ -1134,7 +1134,7 @@ FsWatchesRecursive:: /user/username/projects/myproject/random: {} -Info 91 [16:03:42.000] response: +Info 91 [00:03:42.000] response: { "response": { "definitions": [ @@ -1171,7 +1171,7 @@ Info 91 [16:03:42.000] response: }, "responseRequired": true } -Info 92 [16:03:43.000] request: +Info 92 [00:03:43.000] request: { "command": "definitionAndBoundSpan", "arguments": { @@ -1254,7 +1254,7 @@ FsWatchesRecursive:: /user/username/projects/myproject/random: {} -Info 93 [16:03:44.000] response: +Info 93 [00:03:44.000] response: { "response": { "definitions": [ @@ -1291,7 +1291,7 @@ Info 93 [16:03:44.000] response: }, "responseRequired": true } -Info 94 [16:03:45.000] request: +Info 94 [00:03:45.000] request: { "command": "definitionAndBoundSpan", "arguments": { @@ -1374,7 +1374,7 @@ FsWatchesRecursive:: /user/username/projects/myproject/random: {} -Info 95 [16:03:46.000] response: +Info 95 [00:03:46.000] response: { "response": { "definitions": [ @@ -1411,7 +1411,7 @@ Info 95 [16:03:46.000] response: }, "responseRequired": true } -Info 96 [16:03:47.000] request: +Info 96 [00:03:47.000] request: { "command": "definitionAndBoundSpan", "arguments": { @@ -1494,7 +1494,7 @@ FsWatchesRecursive:: /user/username/projects/myproject/random: {} -Info 97 [16:03:48.000] response: +Info 97 [00:03:48.000] response: { "response": { "definitions": [ @@ -1531,7 +1531,7 @@ Info 97 [16:03:48.000] response: }, "responseRequired": true } -Info 98 [16:03:49.000] request: +Info 98 [00:03:49.000] request: { "command": "rename", "arguments": { @@ -1578,8 +1578,8 @@ FsWatchesRecursive:: /user/username/projects/myproject/random: {} -Info 99 [16:03:50.000] Search path: /user/username/projects/myproject/dependency -Info 100 [16:03:51.000] For info: /user/username/projects/myproject/dependency/FnS.ts :: Config file name: /user/username/projects/myproject/dependency/tsconfig.json +Info 99 [00:03:50.000] Search path: /user/username/projects/myproject/dependency +Info 100 [00:03:51.000] For info: /user/username/projects/myproject/dependency/FnS.ts :: Config file name: /user/username/projects/myproject/dependency/tsconfig.json After request PolledWatches:: @@ -1616,7 +1616,7 @@ FsWatchesRecursive:: /user/username/projects/myproject/random: {} -Info 101 [16:03:52.000] response: +Info 101 [00:03:52.000] response: { "response": { "info": { @@ -1697,7 +1697,7 @@ Info 101 [16:03:52.000] response: }, "responseRequired": true } -Info 102 [16:03:53.000] request: +Info 102 [00:03:53.000] request: { "command": "rename", "arguments": { @@ -1744,8 +1744,8 @@ FsWatchesRecursive:: /user/username/projects/myproject/random: {} -Info 103 [16:03:54.000] Search path: /user/username/projects/myproject/dependency -Info 104 [16:03:55.000] For info: /user/username/projects/myproject/dependency/FnS.ts :: Config file name: /user/username/projects/myproject/dependency/tsconfig.json +Info 103 [00:03:54.000] Search path: /user/username/projects/myproject/dependency +Info 104 [00:03:55.000] For info: /user/username/projects/myproject/dependency/FnS.ts :: Config file name: /user/username/projects/myproject/dependency/tsconfig.json After request PolledWatches:: @@ -1782,7 +1782,7 @@ FsWatchesRecursive:: /user/username/projects/myproject/random: {} -Info 105 [16:03:56.000] response: +Info 105 [00:03:56.000] response: { "response": { "info": { @@ -1863,7 +1863,7 @@ Info 105 [16:03:56.000] response: }, "responseRequired": true } -Info 106 [16:03:57.000] request: +Info 106 [00:03:57.000] request: { "command": "rename", "arguments": { @@ -1910,8 +1910,8 @@ FsWatchesRecursive:: /user/username/projects/myproject/random: {} -Info 107 [16:03:58.000] Search path: /user/username/projects/myproject/dependency -Info 108 [16:03:59.000] For info: /user/username/projects/myproject/dependency/FnS.ts :: Config file name: /user/username/projects/myproject/dependency/tsconfig.json +Info 107 [00:03:58.000] Search path: /user/username/projects/myproject/dependency +Info 108 [00:03:59.000] For info: /user/username/projects/myproject/dependency/FnS.ts :: Config file name: /user/username/projects/myproject/dependency/tsconfig.json After request PolledWatches:: @@ -1948,7 +1948,7 @@ FsWatchesRecursive:: /user/username/projects/myproject/random: {} -Info 109 [16:04:00.000] response: +Info 109 [00:04:00.000] response: { "response": { "info": { @@ -2029,7 +2029,7 @@ Info 109 [16:04:00.000] response: }, "responseRequired": true } -Info 110 [16:04:01.000] request: +Info 110 [00:04:01.000] request: { "command": "rename", "arguments": { @@ -2076,8 +2076,8 @@ FsWatchesRecursive:: /user/username/projects/myproject/random: {} -Info 111 [16:04:02.000] Search path: /user/username/projects/myproject/dependency -Info 112 [16:04:03.000] For info: /user/username/projects/myproject/dependency/FnS.ts :: Config file name: /user/username/projects/myproject/dependency/tsconfig.json +Info 111 [00:04:02.000] Search path: /user/username/projects/myproject/dependency +Info 112 [00:04:03.000] For info: /user/username/projects/myproject/dependency/FnS.ts :: Config file name: /user/username/projects/myproject/dependency/tsconfig.json After request PolledWatches:: @@ -2114,7 +2114,7 @@ FsWatchesRecursive:: /user/username/projects/myproject/random: {} -Info 113 [16:04:04.000] response: +Info 113 [00:04:04.000] response: { "response": { "info": { @@ -2195,7 +2195,7 @@ Info 113 [16:04:04.000] response: }, "responseRequired": true } -Info 114 [16:04:05.000] request: +Info 114 [00:04:05.000] request: { "command": "rename", "arguments": { @@ -2242,8 +2242,8 @@ FsWatchesRecursive:: /user/username/projects/myproject/random: {} -Info 115 [16:04:06.000] Search path: /user/username/projects/myproject/dependency -Info 116 [16:04:07.000] For info: /user/username/projects/myproject/dependency/FnS.ts :: Config file name: /user/username/projects/myproject/dependency/tsconfig.json +Info 115 [00:04:06.000] Search path: /user/username/projects/myproject/dependency +Info 116 [00:04:07.000] For info: /user/username/projects/myproject/dependency/FnS.ts :: Config file name: /user/username/projects/myproject/dependency/tsconfig.json After request PolledWatches:: @@ -2280,7 +2280,7 @@ FsWatchesRecursive:: /user/username/projects/myproject/random: {} -Info 117 [16:04:08.000] response: +Info 117 [00:04:08.000] response: { "response": { "info": { 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 6372b4f20102e..2c736a838850c 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 @@ -1,5 +1,5 @@ -Info 0 [16:01:03.000] Provided types map file "/a/lib/typesMap.json" doesn't exist -Info 1 [16:01:04.000] request: +Info 0 [00:01:03.000] Provided types map file "/a/lib/typesMap.json" doesn't exist +Info 1 [00:01:04.000] request: { "seq": 0, "type": "request", @@ -200,11 +200,11 @@ FsWatches:: FsWatchesRecursive:: -Info 2 [16:01:05.000] Search path: /user/username/projects/myproject/main -Info 3 [16:01:06.000] For info: /user/username/projects/myproject/main/main.ts :: Config file name: /user/username/projects/myproject/main/tsconfig.json -Info 4 [16:01:07.000] Creating configuration project /user/username/projects/myproject/main/tsconfig.json -Info 5 [16:01:08.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/main/tsconfig.json 2000 undefined Project: /user/username/projects/myproject/main/tsconfig.json WatchType: Config file -Info 6 [16:01:09.000] Config: /user/username/projects/myproject/main/tsconfig.json : { +Info 2 [00:01:05.000] Search path: /user/username/projects/myproject/main +Info 3 [00:01:06.000] For info: /user/username/projects/myproject/main/main.ts :: Config file name: /user/username/projects/myproject/main/tsconfig.json +Info 4 [00:01:07.000] Creating configuration project /user/username/projects/myproject/main/tsconfig.json +Info 5 [00:01:08.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/main/tsconfig.json 2000 undefined Project: /user/username/projects/myproject/main/tsconfig.json WatchType: Config file +Info 6 [00:01:09.000] Config: /user/username/projects/myproject/main/tsconfig.json : { "rootNames": [ "/user/username/projects/myproject/main/main.ts" ], @@ -214,21 +214,21 @@ Info 6 [16:01:09.000] Config: /user/username/projects/myproject/main/tsconfig "configFilePath": "/user/username/projects/myproject/main/tsconfig.json" } } -Info 7 [16:01:10.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/main 1 undefined Config: /user/username/projects/myproject/main/tsconfig.json WatchType: Wild card directory -Info 8 [16:01:11.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/main 1 undefined Config: /user/username/projects/myproject/main/tsconfig.json WatchType: Wild card directory -Info 9 [16:01:12.000] Plugins were requested but not running in environment that supports 'require'. Nothing will be loaded -Info 10 [16:01:13.000] Starting updateGraphWorker: Project: /user/username/projects/myproject/main/tsconfig.json -Info 11 [16:01:14.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/decls 1 undefined Project: /user/username/projects/myproject/main/tsconfig.json WatchType: Failed Lookup Locations -Info 12 [16:01:15.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/decls 1 undefined Project: /user/username/projects/myproject/main/tsconfig.json WatchType: Failed Lookup Locations -Info 13 [16:01:16.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/decls/fns.d.ts 500 undefined WatchType: Closed Script info -Info 14 [16:01:17.000] FileWatcher:: Added:: WatchInfo: /a/lib/lib.d.ts 500 undefined WatchType: Closed Script info -Info 15 [16:01:18.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/main/node_modules/@types 1 undefined Project: /user/username/projects/myproject/main/tsconfig.json WatchType: Type roots -Info 16 [16:01:19.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/main/node_modules/@types 1 undefined Project: /user/username/projects/myproject/main/tsconfig.json WatchType: Type roots -Info 17 [16:01:20.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/main/tsconfig.json WatchType: Type roots -Info 18 [16:01:21.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/main/tsconfig.json WatchType: Type roots -Info 19 [16:01:22.000] Finishing updateGraphWorker: Project: /user/username/projects/myproject/main/tsconfig.json Version: 1 structureChanged: true structureIsReused:: Not Elapsed:: *ms -Info 20 [16:01:23.000] Project '/user/username/projects/myproject/main/tsconfig.json' (Configured) -Info 21 [16:01:24.000] Files (3) +Info 7 [00:01:10.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/main 1 undefined Config: /user/username/projects/myproject/main/tsconfig.json WatchType: Wild card directory +Info 8 [00:01:11.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/main 1 undefined Config: /user/username/projects/myproject/main/tsconfig.json WatchType: Wild card directory +Info 9 [00:01:12.000] Plugins were requested but not running in environment that supports 'require'. Nothing will be loaded +Info 10 [00:01:13.000] Starting updateGraphWorker: Project: /user/username/projects/myproject/main/tsconfig.json +Info 11 [00:01:14.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/decls 1 undefined Project: /user/username/projects/myproject/main/tsconfig.json WatchType: Failed Lookup Locations +Info 12 [00:01:15.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/decls 1 undefined Project: /user/username/projects/myproject/main/tsconfig.json WatchType: Failed Lookup Locations +Info 13 [00:01:16.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/decls/fns.d.ts 500 undefined WatchType: Closed Script info +Info 14 [00:01:17.000] FileWatcher:: Added:: WatchInfo: /a/lib/lib.d.ts 500 undefined WatchType: Closed Script info +Info 15 [00:01:18.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/main/node_modules/@types 1 undefined Project: /user/username/projects/myproject/main/tsconfig.json WatchType: Type roots +Info 16 [00:01:19.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/main/node_modules/@types 1 undefined Project: /user/username/projects/myproject/main/tsconfig.json WatchType: Type roots +Info 17 [00:01:20.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/main/tsconfig.json WatchType: Type roots +Info 18 [00:01:21.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/main/tsconfig.json WatchType: Type roots +Info 19 [00:01:22.000] Finishing updateGraphWorker: Project: /user/username/projects/myproject/main/tsconfig.json Version: 1 structureChanged: true structureIsReused:: Not Elapsed:: *ms +Info 20 [00:01:23.000] Project '/user/username/projects/myproject/main/tsconfig.json' (Configured) +Info 21 [00:01:24.000] Files (3) /a/lib/lib.d.ts /user/username/projects/myproject/decls/fns.d.ts /user/username/projects/myproject/main/main.ts @@ -241,16 +241,16 @@ Info 21 [16:01:24.000] Files (3) main.ts Matched by default include pattern '**/*' -Info 22 [16:01:25.000] ----------------------------------------------- -Info 23 [16:01:26.000] Search path: /user/username/projects/myproject/main -Info 24 [16:01:27.000] For info: /user/username/projects/myproject/main/tsconfig.json :: No config files found. -Info 25 [16:01:28.000] Project '/user/username/projects/myproject/main/tsconfig.json' (Configured) -Info 25 [16:01:29.000] Files (3) +Info 22 [00:01:25.000] ----------------------------------------------- +Info 23 [00:01:26.000] Search path: /user/username/projects/myproject/main +Info 24 [00:01:27.000] For info: /user/username/projects/myproject/main/tsconfig.json :: No config files found. +Info 25 [00:01:28.000] Project '/user/username/projects/myproject/main/tsconfig.json' (Configured) +Info 25 [00:01:29.000] Files (3) -Info 25 [16:01:30.000] ----------------------------------------------- -Info 25 [16:01:31.000] Open files: -Info 25 [16:01:32.000] FileName: /user/username/projects/myproject/main/main.ts ProjectRootPath: undefined -Info 25 [16:01:33.000] Projects: /user/username/projects/myproject/main/tsconfig.json +Info 25 [00:01:30.000] ----------------------------------------------- +Info 25 [00:01:31.000] Open files: +Info 25 [00:01:32.000] FileName: /user/username/projects/myproject/main/main.ts ProjectRootPath: undefined +Info 25 [00:01:33.000] Projects: /user/username/projects/myproject/main/tsconfig.json After request PolledWatches:: @@ -273,11 +273,11 @@ FsWatchesRecursive:: /user/username/projects/myproject/decls: {} -Info 25 [16:01:34.000] response: +Info 25 [00:01:34.000] response: { "responseRequired": false } -Info 26 [16:01:35.000] request: +Info 26 [00:01:35.000] request: { "seq": 0, "type": "request", @@ -308,11 +308,11 @@ FsWatchesRecursive:: /user/username/projects/myproject/decls: {} -Info 27 [16:01:36.000] Search path: /user/username/projects/myproject/dependency -Info 28 [16:01:37.000] For info: /user/username/projects/myproject/dependency/FnS.ts :: Config file name: /user/username/projects/myproject/dependency/tsconfig.json -Info 29 [16:01:38.000] Creating configuration project /user/username/projects/myproject/dependency/tsconfig.json -Info 30 [16:01:39.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/dependency/tsconfig.json 2000 undefined Project: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Config file -Info 31 [16:01:40.000] Config: /user/username/projects/myproject/dependency/tsconfig.json : { +Info 27 [00:01:36.000] Search path: /user/username/projects/myproject/dependency +Info 28 [00:01:37.000] For info: /user/username/projects/myproject/dependency/FnS.ts :: Config file name: /user/username/projects/myproject/dependency/tsconfig.json +Info 29 [00:01:38.000] Creating configuration project /user/username/projects/myproject/dependency/tsconfig.json +Info 30 [00:01:39.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/dependency/tsconfig.json 2000 undefined Project: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Config file +Info 31 [00:01:40.000] Config: /user/username/projects/myproject/dependency/tsconfig.json : { "rootNames": [ "/user/username/projects/myproject/dependency/FnS.ts" ], @@ -323,17 +323,17 @@ Info 31 [16:01:40.000] Config: /user/username/projects/myproject/dependency/ts "configFilePath": "/user/username/projects/myproject/dependency/tsconfig.json" } } -Info 32 [16:01:41.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/dependency 1 undefined Config: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Wild card directory -Info 33 [16:01:42.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/dependency 1 undefined Config: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Wild card directory -Info 34 [16:01:43.000] Plugins were requested but not running in environment that supports 'require'. Nothing will be loaded -Info 35 [16:01:44.000] Starting updateGraphWorker: Project: /user/username/projects/myproject/dependency/tsconfig.json -Info 36 [16:01:45.000] 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 37 [16:01:46.000] 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 38 [16:01:47.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Type roots -Info 39 [16:01:48.000] 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 40 [16:01:49.000] Finishing updateGraphWorker: Project: /user/username/projects/myproject/dependency/tsconfig.json Version: 1 structureChanged: true structureIsReused:: Not Elapsed:: *ms -Info 41 [16:01:50.000] Project '/user/username/projects/myproject/dependency/tsconfig.json' (Configured) -Info 42 [16:01:51.000] Files (2) +Info 32 [00:01:41.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/dependency 1 undefined Config: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Wild card directory +Info 33 [00:01:42.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/dependency 1 undefined Config: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Wild card directory +Info 34 [00:01:43.000] Plugins were requested but not running in environment that supports 'require'. Nothing will be loaded +Info 35 [00:01:44.000] Starting updateGraphWorker: Project: /user/username/projects/myproject/dependency/tsconfig.json +Info 36 [00:01:45.000] 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 37 [00:01:46.000] 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 38 [00:01:47.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Type roots +Info 39 [00:01:48.000] 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 40 [00:01:49.000] Finishing updateGraphWorker: Project: /user/username/projects/myproject/dependency/tsconfig.json Version: 1 structureChanged: true structureIsReused:: Not Elapsed:: *ms +Info 41 [00:01:50.000] Project '/user/username/projects/myproject/dependency/tsconfig.json' (Configured) +Info 42 [00:01:51.000] Files (2) /a/lib/lib.d.ts /user/username/projects/myproject/dependency/FnS.ts @@ -343,22 +343,22 @@ Info 42 [16:01:51.000] Files (2) FnS.ts Matched by default include pattern '**/*' -Info 43 [16:01:52.000] ----------------------------------------------- -Info 44 [16:01:53.000] Search path: /user/username/projects/myproject/dependency -Info 45 [16:01:54.000] For info: /user/username/projects/myproject/dependency/tsconfig.json :: No config files found. -Info 46 [16:01:55.000] Project '/user/username/projects/myproject/main/tsconfig.json' (Configured) -Info 46 [16:01:56.000] Files (3) - -Info 46 [16:01:57.000] ----------------------------------------------- -Info 46 [16:01:58.000] Project '/user/username/projects/myproject/dependency/tsconfig.json' (Configured) -Info 46 [16:01:59.000] Files (2) - -Info 46 [16:02:00.000] ----------------------------------------------- -Info 46 [16:02:01.000] Open files: -Info 46 [16:02:02.000] FileName: /user/username/projects/myproject/main/main.ts ProjectRootPath: undefined -Info 46 [16:02:03.000] Projects: /user/username/projects/myproject/main/tsconfig.json -Info 46 [16:02:04.000] FileName: /user/username/projects/myproject/dependency/FnS.ts ProjectRootPath: undefined -Info 46 [16:02:05.000] Projects: /user/username/projects/myproject/dependency/tsconfig.json +Info 43 [00:01:52.000] ----------------------------------------------- +Info 44 [00:01:53.000] Search path: /user/username/projects/myproject/dependency +Info 45 [00:01:54.000] For info: /user/username/projects/myproject/dependency/tsconfig.json :: No config files found. +Info 46 [00:01:55.000] Project '/user/username/projects/myproject/main/tsconfig.json' (Configured) +Info 46 [00:01:56.000] Files (3) + +Info 46 [00:01:57.000] ----------------------------------------------- +Info 46 [00:01:58.000] Project '/user/username/projects/myproject/dependency/tsconfig.json' (Configured) +Info 46 [00:01:59.000] Files (2) + +Info 46 [00:02:00.000] ----------------------------------------------- +Info 46 [00:02:01.000] Open files: +Info 46 [00:02:02.000] FileName: /user/username/projects/myproject/main/main.ts ProjectRootPath: undefined +Info 46 [00:02:03.000] Projects: /user/username/projects/myproject/main/tsconfig.json +Info 46 [00:02:04.000] FileName: /user/username/projects/myproject/dependency/FnS.ts ProjectRootPath: undefined +Info 46 [00:02:05.000] Projects: /user/username/projects/myproject/dependency/tsconfig.json After request PolledWatches:: @@ -387,11 +387,11 @@ FsWatchesRecursive:: /user/username/projects/myproject/dependency: {} -Info 46 [16:02:06.000] response: +Info 46 [00:02:06.000] response: { "responseRequired": false } -Info 47 [16:02:07.000] request: +Info 47 [00:02:07.000] request: { "seq": 0, "type": "request", @@ -428,11 +428,11 @@ FsWatchesRecursive:: /user/username/projects/myproject/dependency: {} -Info 48 [16:02:08.000] Search path: /user/username/projects/myproject/random -Info 49 [16:02:09.000] For info: /user/username/projects/myproject/random/random.ts :: Config file name: /user/username/projects/myproject/random/tsconfig.json -Info 50 [16:02:10.000] Creating configuration project /user/username/projects/myproject/random/tsconfig.json -Info 51 [16:02:11.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/random/tsconfig.json 2000 undefined Project: /user/username/projects/myproject/random/tsconfig.json WatchType: Config file -Info 52 [16:02:12.000] Config: /user/username/projects/myproject/random/tsconfig.json : { +Info 48 [00:02:08.000] Search path: /user/username/projects/myproject/random +Info 49 [00:02:09.000] For info: /user/username/projects/myproject/random/random.ts :: Config file name: /user/username/projects/myproject/random/tsconfig.json +Info 50 [00:02:10.000] Creating configuration project /user/username/projects/myproject/random/tsconfig.json +Info 51 [00:02:11.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/random/tsconfig.json 2000 undefined Project: /user/username/projects/myproject/random/tsconfig.json WatchType: Config file +Info 52 [00:02:12.000] Config: /user/username/projects/myproject/random/tsconfig.json : { "rootNames": [ "/user/username/projects/myproject/random/random.ts" ], @@ -440,17 +440,17 @@ Info 52 [16:02:12.000] Config: /user/username/projects/myproject/random/tsconf "configFilePath": "/user/username/projects/myproject/random/tsconfig.json" } } -Info 53 [16:02:13.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/random 1 undefined Config: /user/username/projects/myproject/random/tsconfig.json WatchType: Wild card directory -Info 54 [16:02:14.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/random 1 undefined Config: /user/username/projects/myproject/random/tsconfig.json WatchType: Wild card directory -Info 55 [16:02:15.000] Plugins were requested but not running in environment that supports 'require'. Nothing will be loaded -Info 56 [16:02:16.000] Starting updateGraphWorker: Project: /user/username/projects/myproject/random/tsconfig.json -Info 57 [16:02:17.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/random/node_modules/@types 1 undefined Project: /user/username/projects/myproject/random/tsconfig.json WatchType: Type roots -Info 58 [16:02:18.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/random/node_modules/@types 1 undefined Project: /user/username/projects/myproject/random/tsconfig.json WatchType: Type roots -Info 59 [16:02:19.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/random/tsconfig.json WatchType: Type roots -Info 60 [16:02:20.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/random/tsconfig.json WatchType: Type roots -Info 61 [16:02:21.000] Finishing updateGraphWorker: Project: /user/username/projects/myproject/random/tsconfig.json Version: 1 structureChanged: true structureIsReused:: Not Elapsed:: *ms -Info 62 [16:02:22.000] Project '/user/username/projects/myproject/random/tsconfig.json' (Configured) -Info 63 [16:02:23.000] Files (2) +Info 53 [00:02:13.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/random 1 undefined Config: /user/username/projects/myproject/random/tsconfig.json WatchType: Wild card directory +Info 54 [00:02:14.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/random 1 undefined Config: /user/username/projects/myproject/random/tsconfig.json WatchType: Wild card directory +Info 55 [00:02:15.000] Plugins were requested but not running in environment that supports 'require'. Nothing will be loaded +Info 56 [00:02:16.000] Starting updateGraphWorker: Project: /user/username/projects/myproject/random/tsconfig.json +Info 57 [00:02:17.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/random/node_modules/@types 1 undefined Project: /user/username/projects/myproject/random/tsconfig.json WatchType: Type roots +Info 58 [00:02:18.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/random/node_modules/@types 1 undefined Project: /user/username/projects/myproject/random/tsconfig.json WatchType: Type roots +Info 59 [00:02:19.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/random/tsconfig.json WatchType: Type roots +Info 60 [00:02:20.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/random/tsconfig.json WatchType: Type roots +Info 61 [00:02:21.000] Finishing updateGraphWorker: Project: /user/username/projects/myproject/random/tsconfig.json Version: 1 structureChanged: true structureIsReused:: Not Elapsed:: *ms +Info 62 [00:02:22.000] Project '/user/username/projects/myproject/random/tsconfig.json' (Configured) +Info 63 [00:02:23.000] Files (2) /a/lib/lib.d.ts /user/username/projects/myproject/random/random.ts @@ -460,26 +460,26 @@ Info 63 [16:02:23.000] Files (2) random.ts Matched by default include pattern '**/*' -Info 64 [16:02:24.000] ----------------------------------------------- -Info 65 [16:02:25.000] Project '/user/username/projects/myproject/main/tsconfig.json' (Configured) -Info 65 [16:02:26.000] Files (3) - -Info 65 [16:02:27.000] ----------------------------------------------- -Info 65 [16:02:28.000] Project '/user/username/projects/myproject/dependency/tsconfig.json' (Configured) -Info 65 [16:02:29.000] Files (2) - -Info 65 [16:02:30.000] ----------------------------------------------- -Info 65 [16:02:31.000] Project '/user/username/projects/myproject/random/tsconfig.json' (Configured) -Info 65 [16:02:32.000] Files (2) - -Info 65 [16:02:33.000] ----------------------------------------------- -Info 65 [16:02:34.000] Open files: -Info 65 [16:02:35.000] FileName: /user/username/projects/myproject/main/main.ts ProjectRootPath: undefined -Info 65 [16:02:36.000] Projects: /user/username/projects/myproject/main/tsconfig.json -Info 65 [16:02:37.000] FileName: /user/username/projects/myproject/dependency/FnS.ts ProjectRootPath: undefined -Info 65 [16:02:38.000] Projects: /user/username/projects/myproject/dependency/tsconfig.json -Info 65 [16:02:39.000] FileName: /user/username/projects/myproject/random/random.ts ProjectRootPath: undefined -Info 65 [16:02:40.000] Projects: /user/username/projects/myproject/random/tsconfig.json +Info 64 [00:02:24.000] ----------------------------------------------- +Info 65 [00:02:25.000] Project '/user/username/projects/myproject/main/tsconfig.json' (Configured) +Info 65 [00:02:26.000] Files (3) + +Info 65 [00:02:27.000] ----------------------------------------------- +Info 65 [00:02:28.000] Project '/user/username/projects/myproject/dependency/tsconfig.json' (Configured) +Info 65 [00:02:29.000] Files (2) + +Info 65 [00:02:30.000] ----------------------------------------------- +Info 65 [00:02:31.000] Project '/user/username/projects/myproject/random/tsconfig.json' (Configured) +Info 65 [00:02:32.000] Files (2) + +Info 65 [00:02:33.000] ----------------------------------------------- +Info 65 [00:02:34.000] Open files: +Info 65 [00:02:35.000] FileName: /user/username/projects/myproject/main/main.ts ProjectRootPath: undefined +Info 65 [00:02:36.000] Projects: /user/username/projects/myproject/main/tsconfig.json +Info 65 [00:02:37.000] FileName: /user/username/projects/myproject/dependency/FnS.ts ProjectRootPath: undefined +Info 65 [00:02:38.000] Projects: /user/username/projects/myproject/dependency/tsconfig.json +Info 65 [00:02:39.000] FileName: /user/username/projects/myproject/random/random.ts ProjectRootPath: undefined +Info 65 [00:02:40.000] Projects: /user/username/projects/myproject/random/tsconfig.json After request PolledWatches:: @@ -514,11 +514,11 @@ FsWatchesRecursive:: /user/username/projects/myproject/random: {} -Info 65 [16:02:41.000] response: +Info 65 [00:02:41.000] response: { "responseRequired": false } -Info 66 [16:02:42.000] request: +Info 66 [00:02:42.000] request: { "command": "definitionAndBoundSpan", "arguments": { @@ -563,7 +563,7 @@ FsWatchesRecursive:: /user/username/projects/myproject/random: {} -Info 67 [16:02:43.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/decls/FnS.d.ts.map 500 undefined WatchType: Closed Script info +Info 67 [00:02:43.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/decls/FnS.d.ts.map 500 undefined WatchType: Closed Script info After request PolledWatches:: @@ -600,7 +600,7 @@ FsWatchesRecursive:: /user/username/projects/myproject/random: {} -Info 68 [16:02:44.000] response: +Info 68 [00:02:44.000] response: { "response": { "definitions": [ @@ -637,7 +637,7 @@ Info 68 [16:02:44.000] response: }, "responseRequired": true } -Info 69 [16:02:45.000] request: +Info 69 [00:02:45.000] request: { "command": "rename", "arguments": { @@ -684,8 +684,8 @@ FsWatchesRecursive:: /user/username/projects/myproject/random: {} -Info 70 [16:02:46.000] Search path: /user/username/projects/myproject/dependency -Info 71 [16:02:47.000] For info: /user/username/projects/myproject/dependency/FnS.ts :: Config file name: /user/username/projects/myproject/dependency/tsconfig.json +Info 70 [00:02:46.000] Search path: /user/username/projects/myproject/dependency +Info 71 [00:02:47.000] For info: /user/username/projects/myproject/dependency/FnS.ts :: Config file name: /user/username/projects/myproject/dependency/tsconfig.json After request PolledWatches:: @@ -722,7 +722,7 @@ FsWatchesRecursive:: /user/username/projects/myproject/random: {} -Info 72 [16:02:48.000] response: +Info 72 [00:02:48.000] response: { "response": { "info": { @@ -803,13 +803,13 @@ Info 72 [16:02:48.000] response: }, "responseRequired": true } -Info 73 [16:02:52.000] FileWatcher:: Triggered with /user/username/projects/myproject/decls/FnS.d.ts.map 1:: WatchInfo: /user/username/projects/myproject/decls/FnS.d.ts.map 500 undefined WatchType: Closed Script info -Info 74 [16:02:53.000] Scheduled: /user/username/projects/myproject/dependency/tsconfig.json -Info 75 [16:02:54.000] Scheduled: *ensureProjectForOpenFiles* -Info 76 [16:02:55.000] Scheduled: /user/username/projects/myproject/main/tsconfig.json -Info 77 [16:02:56.000] Scheduled: *ensureProjectForOpenFiles*, Cancelled earlier one -Info 78 [16:02:57.000] Elapsed:: *ms FileWatcher:: Triggered with /user/username/projects/myproject/decls/FnS.d.ts.map 1:: WatchInfo: /user/username/projects/myproject/decls/FnS.d.ts.map 500 undefined WatchType: Closed Script info -Info 79 [16:02:58.000] request: +Info 73 [00:02:52.000] FileWatcher:: Triggered with /user/username/projects/myproject/decls/FnS.d.ts.map 1:: WatchInfo: /user/username/projects/myproject/decls/FnS.d.ts.map 500 undefined WatchType: Closed Script info +Info 74 [00:02:53.000] Scheduled: /user/username/projects/myproject/dependency/tsconfig.json +Info 75 [00:02:54.000] Scheduled: *ensureProjectForOpenFiles* +Info 76 [00:02:55.000] Scheduled: /user/username/projects/myproject/main/tsconfig.json +Info 77 [00:02:56.000] Scheduled: *ensureProjectForOpenFiles*, Cancelled earlier one +Info 78 [00:02:57.000] Elapsed:: *ms FileWatcher:: Triggered with /user/username/projects/myproject/decls/FnS.d.ts.map 1:: WatchInfo: /user/username/projects/myproject/decls/FnS.d.ts.map 500 undefined WatchType: Closed Script info +Info 79 [00:02:58.000] request: { "command": "definitionAndBoundSpan", "arguments": { @@ -859,8 +859,8 @@ FsWatchesRecursive:: /user/username/projects/myproject/random: {} -Info 80 [16:02:59.000] Starting updateGraphWorker: Project: /user/username/projects/myproject/main/tsconfig.json -Info 81 [16:03:00.000] Finishing updateGraphWorker: Project: /user/username/projects/myproject/main/tsconfig.json Version: 2 structureChanged: false structureIsReused:: Not Elapsed:: *ms +Info 80 [00:02:59.000] Starting updateGraphWorker: Project: /user/username/projects/myproject/main/tsconfig.json +Info 81 [00:03:00.000] Finishing updateGraphWorker: Project: /user/username/projects/myproject/main/tsconfig.json Version: 2 structureChanged: false structureIsReused:: Not Elapsed:: *ms After request PolledWatches:: @@ -897,7 +897,7 @@ FsWatchesRecursive:: /user/username/projects/myproject/random: {} -Info 82 [16:03:01.000] response: +Info 82 [00:03:01.000] response: { "response": { "definitions": [ @@ -934,7 +934,7 @@ Info 82 [16:03:01.000] response: }, "responseRequired": true } -Info 83 [16:03:02.000] request: +Info 83 [00:03:02.000] request: { "command": "definitionAndBoundSpan", "arguments": { @@ -1017,7 +1017,7 @@ FsWatchesRecursive:: /user/username/projects/myproject/random: {} -Info 84 [16:03:03.000] response: +Info 84 [00:03:03.000] response: { "response": { "definitions": [ @@ -1054,7 +1054,7 @@ Info 84 [16:03:03.000] response: }, "responseRequired": true } -Info 85 [16:03:04.000] request: +Info 85 [00:03:04.000] request: { "command": "definitionAndBoundSpan", "arguments": { @@ -1137,7 +1137,7 @@ FsWatchesRecursive:: /user/username/projects/myproject/random: {} -Info 86 [16:03:05.000] response: +Info 86 [00:03:05.000] response: { "response": { "definitions": [ @@ -1174,7 +1174,7 @@ Info 86 [16:03:05.000] response: }, "responseRequired": true } -Info 87 [16:03:06.000] request: +Info 87 [00:03:06.000] request: { "command": "definitionAndBoundSpan", "arguments": { @@ -1257,7 +1257,7 @@ FsWatchesRecursive:: /user/username/projects/myproject/random: {} -Info 88 [16:03:07.000] response: +Info 88 [00:03:07.000] response: { "response": { "definitions": [ @@ -1294,7 +1294,7 @@ Info 88 [16:03:07.000] response: }, "responseRequired": true } -Info 89 [16:03:08.000] request: +Info 89 [00:03:08.000] request: { "command": "definitionAndBoundSpan", "arguments": { @@ -1377,7 +1377,7 @@ FsWatchesRecursive:: /user/username/projects/myproject/random: {} -Info 90 [16:03:09.000] response: +Info 90 [00:03:09.000] response: { "response": { "definitions": [ @@ -1414,7 +1414,7 @@ Info 90 [16:03:09.000] response: }, "responseRequired": true } -Info 91 [16:03:10.000] request: +Info 91 [00:03:10.000] request: { "command": "rename", "arguments": { @@ -1461,10 +1461,10 @@ FsWatchesRecursive:: /user/username/projects/myproject/random: {} -Info 92 [16:03:11.000] Starting updateGraphWorker: Project: /user/username/projects/myproject/dependency/tsconfig.json -Info 93 [16:03:12.000] Finishing updateGraphWorker: Project: /user/username/projects/myproject/dependency/tsconfig.json Version: 2 structureChanged: false structureIsReused:: Not Elapsed:: *ms -Info 94 [16:03:13.000] Search path: /user/username/projects/myproject/dependency -Info 95 [16:03:14.000] For info: /user/username/projects/myproject/dependency/FnS.ts :: Config file name: /user/username/projects/myproject/dependency/tsconfig.json +Info 92 [00:03:11.000] Starting updateGraphWorker: Project: /user/username/projects/myproject/dependency/tsconfig.json +Info 93 [00:03:12.000] Finishing updateGraphWorker: Project: /user/username/projects/myproject/dependency/tsconfig.json Version: 2 structureChanged: false structureIsReused:: Not Elapsed:: *ms +Info 94 [00:03:13.000] Search path: /user/username/projects/myproject/dependency +Info 95 [00:03:14.000] For info: /user/username/projects/myproject/dependency/FnS.ts :: Config file name: /user/username/projects/myproject/dependency/tsconfig.json After request PolledWatches:: @@ -1501,7 +1501,7 @@ FsWatchesRecursive:: /user/username/projects/myproject/random: {} -Info 96 [16:03:15.000] response: +Info 96 [00:03:15.000] response: { "response": { "info": { @@ -1582,7 +1582,7 @@ Info 96 [16:03:15.000] response: }, "responseRequired": true } -Info 97 [16:03:16.000] request: +Info 97 [00:03:16.000] request: { "command": "rename", "arguments": { @@ -1629,8 +1629,8 @@ FsWatchesRecursive:: /user/username/projects/myproject/random: {} -Info 98 [16:03:17.000] Search path: /user/username/projects/myproject/dependency -Info 99 [16:03:18.000] For info: /user/username/projects/myproject/dependency/FnS.ts :: Config file name: /user/username/projects/myproject/dependency/tsconfig.json +Info 98 [00:03:17.000] Search path: /user/username/projects/myproject/dependency +Info 99 [00:03:18.000] For info: /user/username/projects/myproject/dependency/FnS.ts :: Config file name: /user/username/projects/myproject/dependency/tsconfig.json After request PolledWatches:: @@ -1667,7 +1667,7 @@ FsWatchesRecursive:: /user/username/projects/myproject/random: {} -Info 100 [16:03:19.000] response: +Info 100 [00:03:19.000] response: { "response": { "info": { @@ -1748,7 +1748,7 @@ Info 100 [16:03:19.000] response: }, "responseRequired": true } -Info 101 [16:03:20.000] request: +Info 101 [00:03:20.000] request: { "command": "rename", "arguments": { @@ -1795,8 +1795,8 @@ FsWatchesRecursive:: /user/username/projects/myproject/random: {} -Info 102 [16:03:21.000] Search path: /user/username/projects/myproject/dependency -Info 103 [16:03:22.000] For info: /user/username/projects/myproject/dependency/FnS.ts :: Config file name: /user/username/projects/myproject/dependency/tsconfig.json +Info 102 [00:03:21.000] Search path: /user/username/projects/myproject/dependency +Info 103 [00:03:22.000] For info: /user/username/projects/myproject/dependency/FnS.ts :: Config file name: /user/username/projects/myproject/dependency/tsconfig.json After request PolledWatches:: @@ -1833,7 +1833,7 @@ FsWatchesRecursive:: /user/username/projects/myproject/random: {} -Info 104 [16:03:23.000] response: +Info 104 [00:03:23.000] response: { "response": { "info": { @@ -1914,7 +1914,7 @@ Info 104 [16:03:23.000] response: }, "responseRequired": true } -Info 105 [16:03:24.000] request: +Info 105 [00:03:24.000] request: { "command": "rename", "arguments": { @@ -1961,8 +1961,8 @@ FsWatchesRecursive:: /user/username/projects/myproject/random: {} -Info 106 [16:03:25.000] Search path: /user/username/projects/myproject/dependency -Info 107 [16:03:26.000] For info: /user/username/projects/myproject/dependency/FnS.ts :: Config file name: /user/username/projects/myproject/dependency/tsconfig.json +Info 106 [00:03:25.000] Search path: /user/username/projects/myproject/dependency +Info 107 [00:03:26.000] For info: /user/username/projects/myproject/dependency/FnS.ts :: Config file name: /user/username/projects/myproject/dependency/tsconfig.json After request PolledWatches:: @@ -1999,7 +1999,7 @@ FsWatchesRecursive:: /user/username/projects/myproject/random: {} -Info 108 [16:03:27.000] response: +Info 108 [00:03:27.000] response: { "response": { "info": { @@ -2080,7 +2080,7 @@ Info 108 [16:03:27.000] response: }, "responseRequired": true } -Info 109 [16:03:28.000] request: +Info 109 [00:03:28.000] request: { "command": "rename", "arguments": { @@ -2127,8 +2127,8 @@ FsWatchesRecursive:: /user/username/projects/myproject/random: {} -Info 110 [16:03:29.000] Search path: /user/username/projects/myproject/dependency -Info 111 [16:03:30.000] For info: /user/username/projects/myproject/dependency/FnS.ts :: Config file name: /user/username/projects/myproject/dependency/tsconfig.json +Info 110 [00:03:29.000] Search path: /user/username/projects/myproject/dependency +Info 111 [00:03:30.000] For info: /user/username/projects/myproject/dependency/FnS.ts :: Config file name: /user/username/projects/myproject/dependency/tsconfig.json After request PolledWatches:: @@ -2165,7 +2165,7 @@ FsWatchesRecursive:: /user/username/projects/myproject/random: {} -Info 112 [16:03:31.000] response: +Info 112 [00:03:31.000] response: { "response": { "info": { 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 cd65f44aa5e64..5f788710a438c 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 @@ -1,5 +1,5 @@ -Info 0 [16:01:04.000] Provided types map file "/a/lib/typesMap.json" doesn't exist -Info 1 [16:01:05.000] request: +Info 0 [00:01:04.000] Provided types map file "/a/lib/typesMap.json" doesn't exist +Info 1 [00:01:05.000] request: { "seq": 0, "type": "request", @@ -197,11 +197,11 @@ FsWatches:: FsWatchesRecursive:: -Info 2 [16:01:06.000] Search path: /user/username/projects/myproject/main -Info 3 [16:01:07.000] For info: /user/username/projects/myproject/main/main.ts :: Config file name: /user/username/projects/myproject/main/tsconfig.json -Info 4 [16:01:08.000] Creating configuration project /user/username/projects/myproject/main/tsconfig.json -Info 5 [16:01:09.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/main/tsconfig.json 2000 undefined Project: /user/username/projects/myproject/main/tsconfig.json WatchType: Config file -Info 6 [16:01:10.000] Config: /user/username/projects/myproject/main/tsconfig.json : { +Info 2 [00:01:06.000] Search path: /user/username/projects/myproject/main +Info 3 [00:01:07.000] For info: /user/username/projects/myproject/main/main.ts :: Config file name: /user/username/projects/myproject/main/tsconfig.json +Info 4 [00:01:08.000] Creating configuration project /user/username/projects/myproject/main/tsconfig.json +Info 5 [00:01:09.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/main/tsconfig.json 2000 undefined Project: /user/username/projects/myproject/main/tsconfig.json WatchType: Config file +Info 6 [00:01:10.000] Config: /user/username/projects/myproject/main/tsconfig.json : { "rootNames": [ "/user/username/projects/myproject/main/main.ts" ], @@ -211,21 +211,21 @@ Info 6 [16:01:10.000] Config: /user/username/projects/myproject/main/tsconfig "configFilePath": "/user/username/projects/myproject/main/tsconfig.json" } } -Info 7 [16:01:11.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/main 1 undefined Config: /user/username/projects/myproject/main/tsconfig.json WatchType: Wild card directory -Info 8 [16:01:12.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/main 1 undefined Config: /user/username/projects/myproject/main/tsconfig.json WatchType: Wild card directory -Info 9 [16:01:13.000] Plugins were requested but not running in environment that supports 'require'. Nothing will be loaded -Info 10 [16:01:14.000] Starting updateGraphWorker: Project: /user/username/projects/myproject/main/tsconfig.json -Info 11 [16:01:15.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/decls 1 undefined Project: /user/username/projects/myproject/main/tsconfig.json WatchType: Failed Lookup Locations -Info 12 [16:01:16.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/decls 1 undefined Project: /user/username/projects/myproject/main/tsconfig.json WatchType: Failed Lookup Locations -Info 13 [16:01:17.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/decls/fns.d.ts 500 undefined WatchType: Closed Script info -Info 14 [16:01:18.000] FileWatcher:: Added:: WatchInfo: /a/lib/lib.d.ts 500 undefined WatchType: Closed Script info -Info 15 [16:01:19.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/main/node_modules/@types 1 undefined Project: /user/username/projects/myproject/main/tsconfig.json WatchType: Type roots -Info 16 [16:01:20.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/main/node_modules/@types 1 undefined Project: /user/username/projects/myproject/main/tsconfig.json WatchType: Type roots -Info 17 [16:01:21.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/main/tsconfig.json WatchType: Type roots -Info 18 [16:01:22.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/main/tsconfig.json WatchType: Type roots -Info 19 [16:01:23.000] Finishing updateGraphWorker: Project: /user/username/projects/myproject/main/tsconfig.json Version: 1 structureChanged: true structureIsReused:: Not Elapsed:: *ms -Info 20 [16:01:24.000] Project '/user/username/projects/myproject/main/tsconfig.json' (Configured) -Info 21 [16:01:25.000] Files (3) +Info 7 [00:01:11.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/main 1 undefined Config: /user/username/projects/myproject/main/tsconfig.json WatchType: Wild card directory +Info 8 [00:01:12.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/main 1 undefined Config: /user/username/projects/myproject/main/tsconfig.json WatchType: Wild card directory +Info 9 [00:01:13.000] Plugins were requested but not running in environment that supports 'require'. Nothing will be loaded +Info 10 [00:01:14.000] Starting updateGraphWorker: Project: /user/username/projects/myproject/main/tsconfig.json +Info 11 [00:01:15.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/decls 1 undefined Project: /user/username/projects/myproject/main/tsconfig.json WatchType: Failed Lookup Locations +Info 12 [00:01:16.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/decls 1 undefined Project: /user/username/projects/myproject/main/tsconfig.json WatchType: Failed Lookup Locations +Info 13 [00:01:17.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/decls/fns.d.ts 500 undefined WatchType: Closed Script info +Info 14 [00:01:18.000] FileWatcher:: Added:: WatchInfo: /a/lib/lib.d.ts 500 undefined WatchType: Closed Script info +Info 15 [00:01:19.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/main/node_modules/@types 1 undefined Project: /user/username/projects/myproject/main/tsconfig.json WatchType: Type roots +Info 16 [00:01:20.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/main/node_modules/@types 1 undefined Project: /user/username/projects/myproject/main/tsconfig.json WatchType: Type roots +Info 17 [00:01:21.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/main/tsconfig.json WatchType: Type roots +Info 18 [00:01:22.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/main/tsconfig.json WatchType: Type roots +Info 19 [00:01:23.000] Finishing updateGraphWorker: Project: /user/username/projects/myproject/main/tsconfig.json Version: 1 structureChanged: true structureIsReused:: Not Elapsed:: *ms +Info 20 [00:01:24.000] Project '/user/username/projects/myproject/main/tsconfig.json' (Configured) +Info 21 [00:01:25.000] Files (3) /a/lib/lib.d.ts /user/username/projects/myproject/decls/fns.d.ts /user/username/projects/myproject/main/main.ts @@ -238,16 +238,16 @@ Info 21 [16:01:25.000] Files (3) main.ts Matched by default include pattern '**/*' -Info 22 [16:01:26.000] ----------------------------------------------- -Info 23 [16:01:27.000] Search path: /user/username/projects/myproject/main -Info 24 [16:01:28.000] For info: /user/username/projects/myproject/main/tsconfig.json :: No config files found. -Info 25 [16:01:29.000] Project '/user/username/projects/myproject/main/tsconfig.json' (Configured) -Info 25 [16:01:30.000] Files (3) +Info 22 [00:01:26.000] ----------------------------------------------- +Info 23 [00:01:27.000] Search path: /user/username/projects/myproject/main +Info 24 [00:01:28.000] For info: /user/username/projects/myproject/main/tsconfig.json :: No config files found. +Info 25 [00:01:29.000] Project '/user/username/projects/myproject/main/tsconfig.json' (Configured) +Info 25 [00:01:30.000] Files (3) -Info 25 [16:01:31.000] ----------------------------------------------- -Info 25 [16:01:32.000] Open files: -Info 25 [16:01:33.000] FileName: /user/username/projects/myproject/main/main.ts ProjectRootPath: undefined -Info 25 [16:01:34.000] Projects: /user/username/projects/myproject/main/tsconfig.json +Info 25 [00:01:31.000] ----------------------------------------------- +Info 25 [00:01:32.000] Open files: +Info 25 [00:01:33.000] FileName: /user/username/projects/myproject/main/main.ts ProjectRootPath: undefined +Info 25 [00:01:34.000] Projects: /user/username/projects/myproject/main/tsconfig.json After request PolledWatches:: @@ -270,11 +270,11 @@ FsWatchesRecursive:: /user/username/projects/myproject/decls: {} -Info 25 [16:01:35.000] response: +Info 25 [00:01:35.000] response: { "responseRequired": false } -Info 26 [16:01:36.000] request: +Info 26 [00:01:36.000] request: { "seq": 0, "type": "request", @@ -305,11 +305,11 @@ FsWatchesRecursive:: /user/username/projects/myproject/decls: {} -Info 27 [16:01:37.000] Search path: /user/username/projects/myproject/dependency -Info 28 [16:01:38.000] For info: /user/username/projects/myproject/dependency/FnS.ts :: Config file name: /user/username/projects/myproject/dependency/tsconfig.json -Info 29 [16:01:39.000] Creating configuration project /user/username/projects/myproject/dependency/tsconfig.json -Info 30 [16:01:40.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/dependency/tsconfig.json 2000 undefined Project: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Config file -Info 31 [16:01:41.000] Config: /user/username/projects/myproject/dependency/tsconfig.json : { +Info 27 [00:01:37.000] Search path: /user/username/projects/myproject/dependency +Info 28 [00:01:38.000] For info: /user/username/projects/myproject/dependency/FnS.ts :: Config file name: /user/username/projects/myproject/dependency/tsconfig.json +Info 29 [00:01:39.000] Creating configuration project /user/username/projects/myproject/dependency/tsconfig.json +Info 30 [00:01:40.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/dependency/tsconfig.json 2000 undefined Project: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Config file +Info 31 [00:01:41.000] Config: /user/username/projects/myproject/dependency/tsconfig.json : { "rootNames": [ "/user/username/projects/myproject/dependency/FnS.ts" ], @@ -320,17 +320,17 @@ Info 31 [16:01:41.000] Config: /user/username/projects/myproject/dependency/ts "configFilePath": "/user/username/projects/myproject/dependency/tsconfig.json" } } -Info 32 [16:01:42.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/dependency 1 undefined Config: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Wild card directory -Info 33 [16:01:43.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/dependency 1 undefined Config: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Wild card directory -Info 34 [16:01:44.000] Plugins were requested but not running in environment that supports 'require'. Nothing will be loaded -Info 35 [16:01:45.000] Starting updateGraphWorker: Project: /user/username/projects/myproject/dependency/tsconfig.json -Info 36 [16:01:46.000] 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 37 [16:01:47.000] 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 38 [16:01:48.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Type roots -Info 39 [16:01:49.000] 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 40 [16:01:50.000] Finishing updateGraphWorker: Project: /user/username/projects/myproject/dependency/tsconfig.json Version: 1 structureChanged: true structureIsReused:: Not Elapsed:: *ms -Info 41 [16:01:51.000] Project '/user/username/projects/myproject/dependency/tsconfig.json' (Configured) -Info 42 [16:01:52.000] Files (2) +Info 32 [00:01:42.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/dependency 1 undefined Config: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Wild card directory +Info 33 [00:01:43.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/dependency 1 undefined Config: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Wild card directory +Info 34 [00:01:44.000] Plugins were requested but not running in environment that supports 'require'. Nothing will be loaded +Info 35 [00:01:45.000] Starting updateGraphWorker: Project: /user/username/projects/myproject/dependency/tsconfig.json +Info 36 [00:01:46.000] 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 37 [00:01:47.000] 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 38 [00:01:48.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Type roots +Info 39 [00:01:49.000] 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 40 [00:01:50.000] Finishing updateGraphWorker: Project: /user/username/projects/myproject/dependency/tsconfig.json Version: 1 structureChanged: true structureIsReused:: Not Elapsed:: *ms +Info 41 [00:01:51.000] Project '/user/username/projects/myproject/dependency/tsconfig.json' (Configured) +Info 42 [00:01:52.000] Files (2) /a/lib/lib.d.ts /user/username/projects/myproject/dependency/FnS.ts @@ -340,22 +340,22 @@ Info 42 [16:01:52.000] Files (2) FnS.ts Matched by default include pattern '**/*' -Info 43 [16:01:53.000] ----------------------------------------------- -Info 44 [16:01:54.000] Search path: /user/username/projects/myproject/dependency -Info 45 [16:01:55.000] For info: /user/username/projects/myproject/dependency/tsconfig.json :: No config files found. -Info 46 [16:01:56.000] Project '/user/username/projects/myproject/main/tsconfig.json' (Configured) -Info 46 [16:01:57.000] Files (3) - -Info 46 [16:01:58.000] ----------------------------------------------- -Info 46 [16:01:59.000] Project '/user/username/projects/myproject/dependency/tsconfig.json' (Configured) -Info 46 [16:02:00.000] Files (2) - -Info 46 [16:02:01.000] ----------------------------------------------- -Info 46 [16:02:02.000] Open files: -Info 46 [16:02:03.000] FileName: /user/username/projects/myproject/main/main.ts ProjectRootPath: undefined -Info 46 [16:02:04.000] Projects: /user/username/projects/myproject/main/tsconfig.json -Info 46 [16:02:05.000] FileName: /user/username/projects/myproject/dependency/FnS.ts ProjectRootPath: undefined -Info 46 [16:02:06.000] Projects: /user/username/projects/myproject/dependency/tsconfig.json +Info 43 [00:01:53.000] ----------------------------------------------- +Info 44 [00:01:54.000] Search path: /user/username/projects/myproject/dependency +Info 45 [00:01:55.000] For info: /user/username/projects/myproject/dependency/tsconfig.json :: No config files found. +Info 46 [00:01:56.000] Project '/user/username/projects/myproject/main/tsconfig.json' (Configured) +Info 46 [00:01:57.000] Files (3) + +Info 46 [00:01:58.000] ----------------------------------------------- +Info 46 [00:01:59.000] Project '/user/username/projects/myproject/dependency/tsconfig.json' (Configured) +Info 46 [00:02:00.000] Files (2) + +Info 46 [00:02:01.000] ----------------------------------------------- +Info 46 [00:02:02.000] Open files: +Info 46 [00:02:03.000] FileName: /user/username/projects/myproject/main/main.ts ProjectRootPath: undefined +Info 46 [00:02:04.000] Projects: /user/username/projects/myproject/main/tsconfig.json +Info 46 [00:02:05.000] FileName: /user/username/projects/myproject/dependency/FnS.ts ProjectRootPath: undefined +Info 46 [00:02:06.000] Projects: /user/username/projects/myproject/dependency/tsconfig.json After request PolledWatches:: @@ -384,11 +384,11 @@ FsWatchesRecursive:: /user/username/projects/myproject/dependency: {} -Info 46 [16:02:07.000] response: +Info 46 [00:02:07.000] response: { "responseRequired": false } -Info 47 [16:02:08.000] request: +Info 47 [00:02:08.000] request: { "seq": 0, "type": "request", @@ -425,11 +425,11 @@ FsWatchesRecursive:: /user/username/projects/myproject/dependency: {} -Info 48 [16:02:09.000] Search path: /user/username/projects/myproject/random -Info 49 [16:02:10.000] For info: /user/username/projects/myproject/random/random.ts :: Config file name: /user/username/projects/myproject/random/tsconfig.json -Info 50 [16:02:11.000] Creating configuration project /user/username/projects/myproject/random/tsconfig.json -Info 51 [16:02:12.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/random/tsconfig.json 2000 undefined Project: /user/username/projects/myproject/random/tsconfig.json WatchType: Config file -Info 52 [16:02:13.000] Config: /user/username/projects/myproject/random/tsconfig.json : { +Info 48 [00:02:09.000] Search path: /user/username/projects/myproject/random +Info 49 [00:02:10.000] For info: /user/username/projects/myproject/random/random.ts :: Config file name: /user/username/projects/myproject/random/tsconfig.json +Info 50 [00:02:11.000] Creating configuration project /user/username/projects/myproject/random/tsconfig.json +Info 51 [00:02:12.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/random/tsconfig.json 2000 undefined Project: /user/username/projects/myproject/random/tsconfig.json WatchType: Config file +Info 52 [00:02:13.000] Config: /user/username/projects/myproject/random/tsconfig.json : { "rootNames": [ "/user/username/projects/myproject/random/random.ts" ], @@ -437,17 +437,17 @@ Info 52 [16:02:13.000] Config: /user/username/projects/myproject/random/tsconf "configFilePath": "/user/username/projects/myproject/random/tsconfig.json" } } -Info 53 [16:02:14.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/random 1 undefined Config: /user/username/projects/myproject/random/tsconfig.json WatchType: Wild card directory -Info 54 [16:02:15.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/random 1 undefined Config: /user/username/projects/myproject/random/tsconfig.json WatchType: Wild card directory -Info 55 [16:02:16.000] Plugins were requested but not running in environment that supports 'require'. Nothing will be loaded -Info 56 [16:02:17.000] Starting updateGraphWorker: Project: /user/username/projects/myproject/random/tsconfig.json -Info 57 [16:02:18.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/random/node_modules/@types 1 undefined Project: /user/username/projects/myproject/random/tsconfig.json WatchType: Type roots -Info 58 [16:02:19.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/random/node_modules/@types 1 undefined Project: /user/username/projects/myproject/random/tsconfig.json WatchType: Type roots -Info 59 [16:02:20.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/random/tsconfig.json WatchType: Type roots -Info 60 [16:02:21.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/random/tsconfig.json WatchType: Type roots -Info 61 [16:02:22.000] Finishing updateGraphWorker: Project: /user/username/projects/myproject/random/tsconfig.json Version: 1 structureChanged: true structureIsReused:: Not Elapsed:: *ms -Info 62 [16:02:23.000] Project '/user/username/projects/myproject/random/tsconfig.json' (Configured) -Info 63 [16:02:24.000] Files (2) +Info 53 [00:02:14.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/random 1 undefined Config: /user/username/projects/myproject/random/tsconfig.json WatchType: Wild card directory +Info 54 [00:02:15.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/random 1 undefined Config: /user/username/projects/myproject/random/tsconfig.json WatchType: Wild card directory +Info 55 [00:02:16.000] Plugins were requested but not running in environment that supports 'require'. Nothing will be loaded +Info 56 [00:02:17.000] Starting updateGraphWorker: Project: /user/username/projects/myproject/random/tsconfig.json +Info 57 [00:02:18.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/random/node_modules/@types 1 undefined Project: /user/username/projects/myproject/random/tsconfig.json WatchType: Type roots +Info 58 [00:02:19.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/random/node_modules/@types 1 undefined Project: /user/username/projects/myproject/random/tsconfig.json WatchType: Type roots +Info 59 [00:02:20.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/random/tsconfig.json WatchType: Type roots +Info 60 [00:02:21.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/random/tsconfig.json WatchType: Type roots +Info 61 [00:02:22.000] Finishing updateGraphWorker: Project: /user/username/projects/myproject/random/tsconfig.json Version: 1 structureChanged: true structureIsReused:: Not Elapsed:: *ms +Info 62 [00:02:23.000] Project '/user/username/projects/myproject/random/tsconfig.json' (Configured) +Info 63 [00:02:24.000] Files (2) /a/lib/lib.d.ts /user/username/projects/myproject/random/random.ts @@ -457,26 +457,26 @@ Info 63 [16:02:24.000] Files (2) random.ts Matched by default include pattern '**/*' -Info 64 [16:02:25.000] ----------------------------------------------- -Info 65 [16:02:26.000] Project '/user/username/projects/myproject/main/tsconfig.json' (Configured) -Info 65 [16:02:27.000] Files (3) - -Info 65 [16:02:28.000] ----------------------------------------------- -Info 65 [16:02:29.000] Project '/user/username/projects/myproject/dependency/tsconfig.json' (Configured) -Info 65 [16:02:30.000] Files (2) - -Info 65 [16:02:31.000] ----------------------------------------------- -Info 65 [16:02:32.000] Project '/user/username/projects/myproject/random/tsconfig.json' (Configured) -Info 65 [16:02:33.000] Files (2) - -Info 65 [16:02:34.000] ----------------------------------------------- -Info 65 [16:02:35.000] Open files: -Info 65 [16:02:36.000] FileName: /user/username/projects/myproject/main/main.ts ProjectRootPath: undefined -Info 65 [16:02:37.000] Projects: /user/username/projects/myproject/main/tsconfig.json -Info 65 [16:02:38.000] FileName: /user/username/projects/myproject/dependency/FnS.ts ProjectRootPath: undefined -Info 65 [16:02:39.000] Projects: /user/username/projects/myproject/dependency/tsconfig.json -Info 65 [16:02:40.000] FileName: /user/username/projects/myproject/random/random.ts ProjectRootPath: undefined -Info 65 [16:02:41.000] Projects: /user/username/projects/myproject/random/tsconfig.json +Info 64 [00:02:25.000] ----------------------------------------------- +Info 65 [00:02:26.000] Project '/user/username/projects/myproject/main/tsconfig.json' (Configured) +Info 65 [00:02:27.000] Files (3) + +Info 65 [00:02:28.000] ----------------------------------------------- +Info 65 [00:02:29.000] Project '/user/username/projects/myproject/dependency/tsconfig.json' (Configured) +Info 65 [00:02:30.000] Files (2) + +Info 65 [00:02:31.000] ----------------------------------------------- +Info 65 [00:02:32.000] Project '/user/username/projects/myproject/random/tsconfig.json' (Configured) +Info 65 [00:02:33.000] Files (2) + +Info 65 [00:02:34.000] ----------------------------------------------- +Info 65 [00:02:35.000] Open files: +Info 65 [00:02:36.000] FileName: /user/username/projects/myproject/main/main.ts ProjectRootPath: undefined +Info 65 [00:02:37.000] Projects: /user/username/projects/myproject/main/tsconfig.json +Info 65 [00:02:38.000] FileName: /user/username/projects/myproject/dependency/FnS.ts ProjectRootPath: undefined +Info 65 [00:02:39.000] Projects: /user/username/projects/myproject/dependency/tsconfig.json +Info 65 [00:02:40.000] FileName: /user/username/projects/myproject/random/random.ts ProjectRootPath: undefined +Info 65 [00:02:41.000] Projects: /user/username/projects/myproject/random/tsconfig.json After request PolledWatches:: @@ -511,11 +511,11 @@ FsWatchesRecursive:: /user/username/projects/myproject/random: {} -Info 65 [16:02:42.000] response: +Info 65 [00:02:42.000] response: { "responseRequired": false } -Info 66 [16:02:43.000] request: +Info 66 [00:02:43.000] request: { "command": "definitionAndBoundSpan", "arguments": { @@ -560,7 +560,7 @@ FsWatchesRecursive:: /user/username/projects/myproject/random: {} -Info 67 [16:02:44.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/decls/FnS.d.ts.map 2000 undefined WatchType: Missing source map file +Info 67 [00:02:44.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/decls/FnS.d.ts.map 2000 undefined WatchType: Missing source map file After request PolledWatches:: @@ -597,7 +597,7 @@ FsWatchesRecursive:: /user/username/projects/myproject/random: {} -Info 68 [16:02:45.000] response: +Info 68 [00:02:45.000] response: { "response": { "definitions": [ @@ -634,7 +634,7 @@ Info 68 [16:02:45.000] response: }, "responseRequired": true } -Info 69 [16:02:46.000] request: +Info 69 [00:02:46.000] request: { "command": "rename", "arguments": { @@ -717,7 +717,7 @@ FsWatchesRecursive:: /user/username/projects/myproject/random: {} -Info 70 [16:02:47.000] response: +Info 70 [00:02:47.000] response: { "response": { "info": { @@ -765,16 +765,16 @@ Info 70 [16:02:47.000] response: }, "responseRequired": true } -Info 71 [16:02:50.000] FileWatcher:: Triggered with /user/username/projects/myproject/decls/FnS.d.ts.map 0:: WatchInfo: /user/username/projects/myproject/decls/FnS.d.ts.map 2000 undefined WatchType: Missing source map file -Info 72 [16:02:51.000] Scheduled: /user/username/projects/myproject/main/tsconfig.json -Info 73 [16:02:52.000] Scheduled: *ensureProjectForOpenFiles* -Info 74 [16:02:53.000] Scheduled: /user/username/projects/myproject/dependency/tsconfig.json -Info 75 [16:02:54.000] Scheduled: *ensureProjectForOpenFiles*, Cancelled earlier one -Info 76 [16:02:55.000] FileWatcher:: Close:: WatchInfo: /user/username/projects/myproject/decls/FnS.d.ts.map 2000 undefined WatchType: Missing source map file -Info 77 [16:02:56.000] Elapsed:: *ms FileWatcher:: Triggered with /user/username/projects/myproject/decls/FnS.d.ts.map 0:: WatchInfo: /user/username/projects/myproject/decls/FnS.d.ts.map 2000 undefined WatchType: Missing source map file -Info 78 [16:02:57.000] DirectoryWatcher:: Triggered with /user/username/projects/myproject/decls/FnS.d.ts.map :: WatchInfo: /user/username/projects/myproject/decls 1 undefined Project: /user/username/projects/myproject/main/tsconfig.json WatchType: Failed Lookup Locations -Info 79 [16:02:58.000] Elapsed:: *ms DirectoryWatcher:: Triggered with /user/username/projects/myproject/decls/FnS.d.ts.map :: WatchInfo: /user/username/projects/myproject/decls 1 undefined Project: /user/username/projects/myproject/main/tsconfig.json WatchType: Failed Lookup Locations -Info 80 [16:02:59.000] request: +Info 71 [00:02:50.000] FileWatcher:: Triggered with /user/username/projects/myproject/decls/FnS.d.ts.map 0:: WatchInfo: /user/username/projects/myproject/decls/FnS.d.ts.map 2000 undefined WatchType: Missing source map file +Info 72 [00:02:51.000] Scheduled: /user/username/projects/myproject/main/tsconfig.json +Info 73 [00:02:52.000] Scheduled: *ensureProjectForOpenFiles* +Info 74 [00:02:53.000] Scheduled: /user/username/projects/myproject/dependency/tsconfig.json +Info 75 [00:02:54.000] Scheduled: *ensureProjectForOpenFiles*, Cancelled earlier one +Info 76 [00:02:55.000] FileWatcher:: Close:: WatchInfo: /user/username/projects/myproject/decls/FnS.d.ts.map 2000 undefined WatchType: Missing source map file +Info 77 [00:02:56.000] Elapsed:: *ms FileWatcher:: Triggered with /user/username/projects/myproject/decls/FnS.d.ts.map 0:: WatchInfo: /user/username/projects/myproject/decls/FnS.d.ts.map 2000 undefined WatchType: Missing source map file +Info 78 [00:02:57.000] DirectoryWatcher:: Triggered with /user/username/projects/myproject/decls/FnS.d.ts.map :: WatchInfo: /user/username/projects/myproject/decls 1 undefined Project: /user/username/projects/myproject/main/tsconfig.json WatchType: Failed Lookup Locations +Info 79 [00:02:58.000] Elapsed:: *ms DirectoryWatcher:: Triggered with /user/username/projects/myproject/decls/FnS.d.ts.map :: WatchInfo: /user/username/projects/myproject/decls 1 undefined Project: /user/username/projects/myproject/main/tsconfig.json WatchType: Failed Lookup Locations +Info 80 [00:02:59.000] request: { "command": "definitionAndBoundSpan", "arguments": { @@ -822,9 +822,9 @@ FsWatchesRecursive:: /user/username/projects/myproject/random: {} -Info 81 [16:03:00.000] Starting updateGraphWorker: Project: /user/username/projects/myproject/main/tsconfig.json -Info 82 [16:03:01.000] Finishing updateGraphWorker: Project: /user/username/projects/myproject/main/tsconfig.json Version: 2 structureChanged: false structureIsReused:: Not Elapsed:: *ms -Info 83 [16:03:02.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/decls/FnS.d.ts.map 500 undefined WatchType: Closed Script info +Info 81 [00:03:00.000] Starting updateGraphWorker: Project: /user/username/projects/myproject/main/tsconfig.json +Info 82 [00:03:01.000] Finishing updateGraphWorker: Project: /user/username/projects/myproject/main/tsconfig.json Version: 2 structureChanged: false structureIsReused:: Not Elapsed:: *ms +Info 83 [00:03:02.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/decls/FnS.d.ts.map 500 undefined WatchType: Closed Script info After request PolledWatches:: @@ -861,7 +861,7 @@ FsWatchesRecursive:: /user/username/projects/myproject/random: {} -Info 84 [16:03:03.000] response: +Info 84 [00:03:03.000] response: { "response": { "definitions": [ @@ -898,7 +898,7 @@ Info 84 [16:03:03.000] response: }, "responseRequired": true } -Info 85 [16:03:04.000] request: +Info 85 [00:03:04.000] request: { "command": "definitionAndBoundSpan", "arguments": { @@ -981,7 +981,7 @@ FsWatchesRecursive:: /user/username/projects/myproject/random: {} -Info 86 [16:03:05.000] response: +Info 86 [00:03:05.000] response: { "response": { "definitions": [ @@ -1018,7 +1018,7 @@ Info 86 [16:03:05.000] response: }, "responseRequired": true } -Info 87 [16:03:06.000] request: +Info 87 [00:03:06.000] request: { "command": "definitionAndBoundSpan", "arguments": { @@ -1101,7 +1101,7 @@ FsWatchesRecursive:: /user/username/projects/myproject/random: {} -Info 88 [16:03:07.000] response: +Info 88 [00:03:07.000] response: { "response": { "definitions": [ @@ -1138,7 +1138,7 @@ Info 88 [16:03:07.000] response: }, "responseRequired": true } -Info 89 [16:03:08.000] request: +Info 89 [00:03:08.000] request: { "command": "definitionAndBoundSpan", "arguments": { @@ -1221,7 +1221,7 @@ FsWatchesRecursive:: /user/username/projects/myproject/random: {} -Info 90 [16:03:09.000] response: +Info 90 [00:03:09.000] response: { "response": { "definitions": [ @@ -1258,7 +1258,7 @@ Info 90 [16:03:09.000] response: }, "responseRequired": true } -Info 91 [16:03:10.000] request: +Info 91 [00:03:10.000] request: { "command": "definitionAndBoundSpan", "arguments": { @@ -1341,7 +1341,7 @@ FsWatchesRecursive:: /user/username/projects/myproject/random: {} -Info 92 [16:03:11.000] response: +Info 92 [00:03:11.000] response: { "response": { "definitions": [ @@ -1378,7 +1378,7 @@ Info 92 [16:03:11.000] response: }, "responseRequired": true } -Info 93 [16:03:12.000] request: +Info 93 [00:03:12.000] request: { "command": "rename", "arguments": { @@ -1425,10 +1425,10 @@ FsWatchesRecursive:: /user/username/projects/myproject/random: {} -Info 94 [16:03:13.000] Starting updateGraphWorker: Project: /user/username/projects/myproject/dependency/tsconfig.json -Info 95 [16:03:14.000] Finishing updateGraphWorker: Project: /user/username/projects/myproject/dependency/tsconfig.json Version: 2 structureChanged: false structureIsReused:: Not Elapsed:: *ms -Info 96 [16:03:15.000] Search path: /user/username/projects/myproject/dependency -Info 97 [16:03:16.000] For info: /user/username/projects/myproject/dependency/FnS.ts :: Config file name: /user/username/projects/myproject/dependency/tsconfig.json +Info 94 [00:03:13.000] Starting updateGraphWorker: Project: /user/username/projects/myproject/dependency/tsconfig.json +Info 95 [00:03:14.000] Finishing updateGraphWorker: Project: /user/username/projects/myproject/dependency/tsconfig.json Version: 2 structureChanged: false structureIsReused:: Not Elapsed:: *ms +Info 96 [00:03:15.000] Search path: /user/username/projects/myproject/dependency +Info 97 [00:03:16.000] For info: /user/username/projects/myproject/dependency/FnS.ts :: Config file name: /user/username/projects/myproject/dependency/tsconfig.json After request PolledWatches:: @@ -1465,7 +1465,7 @@ FsWatchesRecursive:: /user/username/projects/myproject/random: {} -Info 98 [16:03:17.000] response: +Info 98 [00:03:17.000] response: { "response": { "info": { @@ -1546,7 +1546,7 @@ Info 98 [16:03:17.000] response: }, "responseRequired": true } -Info 99 [16:03:18.000] request: +Info 99 [00:03:18.000] request: { "command": "rename", "arguments": { @@ -1593,8 +1593,8 @@ FsWatchesRecursive:: /user/username/projects/myproject/random: {} -Info 100 [16:03:19.000] Search path: /user/username/projects/myproject/dependency -Info 101 [16:03:20.000] For info: /user/username/projects/myproject/dependency/FnS.ts :: Config file name: /user/username/projects/myproject/dependency/tsconfig.json +Info 100 [00:03:19.000] Search path: /user/username/projects/myproject/dependency +Info 101 [00:03:20.000] For info: /user/username/projects/myproject/dependency/FnS.ts :: Config file name: /user/username/projects/myproject/dependency/tsconfig.json After request PolledWatches:: @@ -1631,7 +1631,7 @@ FsWatchesRecursive:: /user/username/projects/myproject/random: {} -Info 102 [16:03:21.000] response: +Info 102 [00:03:21.000] response: { "response": { "info": { @@ -1712,7 +1712,7 @@ Info 102 [16:03:21.000] response: }, "responseRequired": true } -Info 103 [16:03:22.000] request: +Info 103 [00:03:22.000] request: { "command": "rename", "arguments": { @@ -1759,8 +1759,8 @@ FsWatchesRecursive:: /user/username/projects/myproject/random: {} -Info 104 [16:03:23.000] Search path: /user/username/projects/myproject/dependency -Info 105 [16:03:24.000] For info: /user/username/projects/myproject/dependency/FnS.ts :: Config file name: /user/username/projects/myproject/dependency/tsconfig.json +Info 104 [00:03:23.000] Search path: /user/username/projects/myproject/dependency +Info 105 [00:03:24.000] For info: /user/username/projects/myproject/dependency/FnS.ts :: Config file name: /user/username/projects/myproject/dependency/tsconfig.json After request PolledWatches:: @@ -1797,7 +1797,7 @@ FsWatchesRecursive:: /user/username/projects/myproject/random: {} -Info 106 [16:03:25.000] response: +Info 106 [00:03:25.000] response: { "response": { "info": { @@ -1878,7 +1878,7 @@ Info 106 [16:03:25.000] response: }, "responseRequired": true } -Info 107 [16:03:26.000] request: +Info 107 [00:03:26.000] request: { "command": "rename", "arguments": { @@ -1925,8 +1925,8 @@ FsWatchesRecursive:: /user/username/projects/myproject/random: {} -Info 108 [16:03:27.000] Search path: /user/username/projects/myproject/dependency -Info 109 [16:03:28.000] For info: /user/username/projects/myproject/dependency/FnS.ts :: Config file name: /user/username/projects/myproject/dependency/tsconfig.json +Info 108 [00:03:27.000] Search path: /user/username/projects/myproject/dependency +Info 109 [00:03:28.000] For info: /user/username/projects/myproject/dependency/FnS.ts :: Config file name: /user/username/projects/myproject/dependency/tsconfig.json After request PolledWatches:: @@ -1963,7 +1963,7 @@ FsWatchesRecursive:: /user/username/projects/myproject/random: {} -Info 110 [16:03:29.000] response: +Info 110 [00:03:29.000] response: { "response": { "info": { @@ -2044,7 +2044,7 @@ Info 110 [16:03:29.000] response: }, "responseRequired": true } -Info 111 [16:03:30.000] request: +Info 111 [00:03:30.000] request: { "command": "rename", "arguments": { @@ -2091,8 +2091,8 @@ FsWatchesRecursive:: /user/username/projects/myproject/random: {} -Info 112 [16:03:31.000] Search path: /user/username/projects/myproject/dependency -Info 113 [16:03:32.000] For info: /user/username/projects/myproject/dependency/FnS.ts :: Config file name: /user/username/projects/myproject/dependency/tsconfig.json +Info 112 [00:03:31.000] Search path: /user/username/projects/myproject/dependency +Info 113 [00:03:32.000] For info: /user/username/projects/myproject/dependency/FnS.ts :: Config file name: /user/username/projects/myproject/dependency/tsconfig.json After request PolledWatches:: @@ -2129,7 +2129,7 @@ FsWatchesRecursive:: /user/username/projects/myproject/random: {} -Info 114 [16:03:33.000] response: +Info 114 [00:03:33.000] response: { "response": { "info": { @@ -2210,7 +2210,7 @@ Info 114 [16:03:33.000] response: }, "responseRequired": true } -Info 115 [16:03:34.000] request: +Info 115 [00:03:34.000] request: { "seq": 0, "type": "request", @@ -2255,24 +2255,24 @@ FsWatchesRecursive:: /user/username/projects/myproject/random: {} -Info 116 [16:03:35.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/random/random.ts 500 undefined WatchType: Closed Script info -Info 117 [16:03:36.000] Project '/user/username/projects/myproject/main/tsconfig.json' (Configured) -Info 117 [16:03:37.000] Files (3) +Info 116 [00:03:35.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/random/random.ts 500 undefined WatchType: Closed Script info +Info 117 [00:03:36.000] Project '/user/username/projects/myproject/main/tsconfig.json' (Configured) +Info 117 [00:03:37.000] Files (3) -Info 117 [16:03:38.000] ----------------------------------------------- -Info 117 [16:03:39.000] Project '/user/username/projects/myproject/dependency/tsconfig.json' (Configured) -Info 117 [16:03:40.000] Files (2) +Info 117 [00:03:38.000] ----------------------------------------------- +Info 117 [00:03:39.000] Project '/user/username/projects/myproject/dependency/tsconfig.json' (Configured) +Info 117 [00:03:40.000] Files (2) -Info 117 [16:03:41.000] ----------------------------------------------- -Info 117 [16:03:42.000] Project '/user/username/projects/myproject/random/tsconfig.json' (Configured) -Info 117 [16:03:43.000] Files (2) +Info 117 [00:03:41.000] ----------------------------------------------- +Info 117 [00:03:42.000] Project '/user/username/projects/myproject/random/tsconfig.json' (Configured) +Info 117 [00:03:43.000] Files (2) -Info 117 [16:03:44.000] ----------------------------------------------- -Info 117 [16:03:45.000] Open files: -Info 117 [16:03:46.000] FileName: /user/username/projects/myproject/main/main.ts ProjectRootPath: undefined -Info 117 [16:03:47.000] Projects: /user/username/projects/myproject/main/tsconfig.json -Info 117 [16:03:48.000] FileName: /user/username/projects/myproject/dependency/FnS.ts ProjectRootPath: undefined -Info 117 [16:03:49.000] Projects: /user/username/projects/myproject/dependency/tsconfig.json +Info 117 [00:03:44.000] ----------------------------------------------- +Info 117 [00:03:45.000] Open files: +Info 117 [00:03:46.000] FileName: /user/username/projects/myproject/main/main.ts ProjectRootPath: undefined +Info 117 [00:03:47.000] Projects: /user/username/projects/myproject/main/tsconfig.json +Info 117 [00:03:48.000] FileName: /user/username/projects/myproject/dependency/FnS.ts ProjectRootPath: undefined +Info 117 [00:03:49.000] Projects: /user/username/projects/myproject/dependency/tsconfig.json After request PolledWatches:: @@ -2311,11 +2311,11 @@ FsWatchesRecursive:: /user/username/projects/myproject/random: {} -Info 117 [16:03:50.000] response: +Info 117 [00:03:50.000] response: { "responseRequired": false } -Info 118 [16:03:51.000] request: +Info 118 [00:03:51.000] request: { "seq": 0, "type": "request", @@ -2362,28 +2362,28 @@ FsWatchesRecursive:: /user/username/projects/myproject/random: {} -Info 119 [16:03:52.000] FileWatcher:: Close:: WatchInfo: /user/username/projects/myproject/random/random.ts 500 undefined WatchType: Closed Script info -Info 120 [16:03:53.000] Search path: /user/username/projects/myproject/random -Info 121 [16:03:54.000] For info: /user/username/projects/myproject/random/random.ts :: Config file name: /user/username/projects/myproject/random/tsconfig.json -Info 122 [16:03:55.000] Project '/user/username/projects/myproject/main/tsconfig.json' (Configured) -Info 122 [16:03:56.000] Files (3) - -Info 122 [16:03:57.000] ----------------------------------------------- -Info 122 [16:03:58.000] Project '/user/username/projects/myproject/dependency/tsconfig.json' (Configured) -Info 122 [16:03:59.000] Files (2) - -Info 122 [16:04:00.000] ----------------------------------------------- -Info 122 [16:04:01.000] Project '/user/username/projects/myproject/random/tsconfig.json' (Configured) -Info 122 [16:04:02.000] Files (2) - -Info 122 [16:04:03.000] ----------------------------------------------- -Info 122 [16:04:04.000] Open files: -Info 122 [16:04:05.000] FileName: /user/username/projects/myproject/main/main.ts ProjectRootPath: undefined -Info 122 [16:04:06.000] Projects: /user/username/projects/myproject/main/tsconfig.json -Info 122 [16:04:07.000] FileName: /user/username/projects/myproject/dependency/FnS.ts ProjectRootPath: undefined -Info 122 [16:04:08.000] Projects: /user/username/projects/myproject/dependency/tsconfig.json -Info 122 [16:04:09.000] FileName: /user/username/projects/myproject/random/random.ts ProjectRootPath: undefined -Info 122 [16:04:10.000] Projects: /user/username/projects/myproject/random/tsconfig.json +Info 119 [00:03:52.000] FileWatcher:: Close:: WatchInfo: /user/username/projects/myproject/random/random.ts 500 undefined WatchType: Closed Script info +Info 120 [00:03:53.000] Search path: /user/username/projects/myproject/random +Info 121 [00:03:54.000] For info: /user/username/projects/myproject/random/random.ts :: Config file name: /user/username/projects/myproject/random/tsconfig.json +Info 122 [00:03:55.000] Project '/user/username/projects/myproject/main/tsconfig.json' (Configured) +Info 122 [00:03:56.000] Files (3) + +Info 122 [00:03:57.000] ----------------------------------------------- +Info 122 [00:03:58.000] Project '/user/username/projects/myproject/dependency/tsconfig.json' (Configured) +Info 122 [00:03:59.000] Files (2) + +Info 122 [00:04:00.000] ----------------------------------------------- +Info 122 [00:04:01.000] Project '/user/username/projects/myproject/random/tsconfig.json' (Configured) +Info 122 [00:04:02.000] Files (2) + +Info 122 [00:04:03.000] ----------------------------------------------- +Info 122 [00:04:04.000] Open files: +Info 122 [00:04:05.000] FileName: /user/username/projects/myproject/main/main.ts ProjectRootPath: undefined +Info 122 [00:04:06.000] Projects: /user/username/projects/myproject/main/tsconfig.json +Info 122 [00:04:07.000] FileName: /user/username/projects/myproject/dependency/FnS.ts ProjectRootPath: undefined +Info 122 [00:04:08.000] Projects: /user/username/projects/myproject/dependency/tsconfig.json +Info 122 [00:04:09.000] FileName: /user/username/projects/myproject/random/random.ts ProjectRootPath: undefined +Info 122 [00:04:10.000] Projects: /user/username/projects/myproject/random/tsconfig.json After request PolledWatches:: @@ -2420,11 +2420,11 @@ FsWatchesRecursive:: /user/username/projects/myproject/random: {} -Info 122 [16:04:11.000] response: +Info 122 [00:04:11.000] response: { "responseRequired": false } -Info 123 [16:04:12.000] request: +Info 123 [00:04:12.000] request: { "seq": 0, "type": "request", @@ -2469,24 +2469,24 @@ FsWatchesRecursive:: /user/username/projects/myproject/random: {} -Info 124 [16:04:13.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/main/main.ts 500 undefined WatchType: Closed Script info -Info 125 [16:04:14.000] Project '/user/username/projects/myproject/main/tsconfig.json' (Configured) -Info 125 [16:04:15.000] Files (3) +Info 124 [00:04:13.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/main/main.ts 500 undefined WatchType: Closed Script info +Info 125 [00:04:14.000] Project '/user/username/projects/myproject/main/tsconfig.json' (Configured) +Info 125 [00:04:15.000] Files (3) -Info 125 [16:04:16.000] ----------------------------------------------- -Info 125 [16:04:17.000] Project '/user/username/projects/myproject/dependency/tsconfig.json' (Configured) -Info 125 [16:04:18.000] Files (2) +Info 125 [00:04:16.000] ----------------------------------------------- +Info 125 [00:04:17.000] Project '/user/username/projects/myproject/dependency/tsconfig.json' (Configured) +Info 125 [00:04:18.000] Files (2) -Info 125 [16:04:19.000] ----------------------------------------------- -Info 125 [16:04:20.000] Project '/user/username/projects/myproject/random/tsconfig.json' (Configured) -Info 125 [16:04:21.000] Files (2) +Info 125 [00:04:19.000] ----------------------------------------------- +Info 125 [00:04:20.000] Project '/user/username/projects/myproject/random/tsconfig.json' (Configured) +Info 125 [00:04:21.000] Files (2) -Info 125 [16:04:22.000] ----------------------------------------------- -Info 125 [16:04:23.000] Open files: -Info 125 [16:04:24.000] FileName: /user/username/projects/myproject/dependency/FnS.ts ProjectRootPath: undefined -Info 125 [16:04:25.000] Projects: /user/username/projects/myproject/dependency/tsconfig.json -Info 125 [16:04:26.000] FileName: /user/username/projects/myproject/random/random.ts ProjectRootPath: undefined -Info 125 [16:04:27.000] Projects: /user/username/projects/myproject/random/tsconfig.json +Info 125 [00:04:22.000] ----------------------------------------------- +Info 125 [00:04:23.000] Open files: +Info 125 [00:04:24.000] FileName: /user/username/projects/myproject/dependency/FnS.ts ProjectRootPath: undefined +Info 125 [00:04:25.000] Projects: /user/username/projects/myproject/dependency/tsconfig.json +Info 125 [00:04:26.000] FileName: /user/username/projects/myproject/random/random.ts ProjectRootPath: undefined +Info 125 [00:04:27.000] Projects: /user/username/projects/myproject/random/tsconfig.json After request PolledWatches:: @@ -2525,11 +2525,11 @@ FsWatchesRecursive:: /user/username/projects/myproject/random: {} -Info 125 [16:04:28.000] response: +Info 125 [00:04:28.000] response: { "responseRequired": false } -Info 126 [16:04:29.000] request: +Info 126 [00:04:29.000] request: { "seq": 0, "type": "request", @@ -2576,22 +2576,22 @@ FsWatchesRecursive:: /user/username/projects/myproject/random: {} -Info 127 [16:04:30.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/dependency/FnS.ts 500 undefined WatchType: Closed Script info -Info 128 [16:04:31.000] Project '/user/username/projects/myproject/main/tsconfig.json' (Configured) -Info 128 [16:04:32.000] Files (3) +Info 127 [00:04:30.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/dependency/FnS.ts 500 undefined WatchType: Closed Script info +Info 128 [00:04:31.000] Project '/user/username/projects/myproject/main/tsconfig.json' (Configured) +Info 128 [00:04:32.000] Files (3) -Info 128 [16:04:33.000] ----------------------------------------------- -Info 128 [16:04:34.000] Project '/user/username/projects/myproject/dependency/tsconfig.json' (Configured) -Info 128 [16:04:35.000] Files (2) +Info 128 [00:04:33.000] ----------------------------------------------- +Info 128 [00:04:34.000] Project '/user/username/projects/myproject/dependency/tsconfig.json' (Configured) +Info 128 [00:04:35.000] Files (2) -Info 128 [16:04:36.000] ----------------------------------------------- -Info 128 [16:04:37.000] Project '/user/username/projects/myproject/random/tsconfig.json' (Configured) -Info 128 [16:04:38.000] Files (2) +Info 128 [00:04:36.000] ----------------------------------------------- +Info 128 [00:04:37.000] Project '/user/username/projects/myproject/random/tsconfig.json' (Configured) +Info 128 [00:04:38.000] Files (2) -Info 128 [16:04:39.000] ----------------------------------------------- -Info 128 [16:04:40.000] Open files: -Info 128 [16:04:41.000] FileName: /user/username/projects/myproject/random/random.ts ProjectRootPath: undefined -Info 128 [16:04:42.000] Projects: /user/username/projects/myproject/random/tsconfig.json +Info 128 [00:04:39.000] ----------------------------------------------- +Info 128 [00:04:40.000] Open files: +Info 128 [00:04:41.000] FileName: /user/username/projects/myproject/random/random.ts ProjectRootPath: undefined +Info 128 [00:04:42.000] Projects: /user/username/projects/myproject/random/tsconfig.json After request PolledWatches:: @@ -2632,11 +2632,11 @@ FsWatchesRecursive:: /user/username/projects/myproject/random: {} -Info 128 [16:04:43.000] response: +Info 128 [00:04:43.000] response: { "responseRequired": false } -Info 129 [16:04:44.000] request: +Info 129 [00:04:44.000] request: { "seq": 0, "type": "request", @@ -2685,20 +2685,20 @@ FsWatchesRecursive:: /user/username/projects/myproject/random: {} -Info 130 [16:04:45.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/random/random.ts 500 undefined WatchType: Closed Script info -Info 131 [16:04:46.000] Project '/user/username/projects/myproject/main/tsconfig.json' (Configured) -Info 131 [16:04:47.000] Files (3) +Info 130 [00:04:45.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/random/random.ts 500 undefined WatchType: Closed Script info +Info 131 [00:04:46.000] Project '/user/username/projects/myproject/main/tsconfig.json' (Configured) +Info 131 [00:04:47.000] Files (3) -Info 131 [16:04:48.000] ----------------------------------------------- -Info 131 [16:04:49.000] Project '/user/username/projects/myproject/dependency/tsconfig.json' (Configured) -Info 131 [16:04:50.000] Files (2) +Info 131 [00:04:48.000] ----------------------------------------------- +Info 131 [00:04:49.000] Project '/user/username/projects/myproject/dependency/tsconfig.json' (Configured) +Info 131 [00:04:50.000] Files (2) -Info 131 [16:04:51.000] ----------------------------------------------- -Info 131 [16:04:52.000] Project '/user/username/projects/myproject/random/tsconfig.json' (Configured) -Info 131 [16:04:53.000] Files (2) +Info 131 [00:04:51.000] ----------------------------------------------- +Info 131 [00:04:52.000] Project '/user/username/projects/myproject/random/tsconfig.json' (Configured) +Info 131 [00:04:53.000] Files (2) -Info 131 [16:04:54.000] ----------------------------------------------- -Info 131 [16:04:55.000] Open files: +Info 131 [00:04:54.000] ----------------------------------------------- +Info 131 [00:04:55.000] Open files: After request PolledWatches:: @@ -2741,11 +2741,11 @@ FsWatchesRecursive:: /user/username/projects/myproject/random: {} -Info 131 [16:04:56.000] response: +Info 131 [00:04:56.000] response: { "responseRequired": false } -Info 132 [16:04:57.000] request: +Info 132 [00:04:57.000] request: { "seq": 0, "type": "request", @@ -2796,12 +2796,12 @@ FsWatchesRecursive:: /user/username/projects/myproject/random: {} -Info 133 [16:04:58.000] FileWatcher:: Close:: WatchInfo: /user/username/projects/myproject/random/random.ts 500 undefined WatchType: Closed Script info -Info 134 [16:04:59.000] Search path: /user/username/projects/myproject/random -Info 135 [16:05:00.000] For info: /user/username/projects/myproject/random/random.ts :: Config file name: /user/username/projects/myproject/random/tsconfig.json -Info 136 [16:05:01.000] `remove Project:: -Info 137 [16:05:02.000] Project '/user/username/projects/myproject/main/tsconfig.json' (Configured) -Info 138 [16:05:03.000] Files (3) +Info 133 [00:04:58.000] FileWatcher:: Close:: WatchInfo: /user/username/projects/myproject/random/random.ts 500 undefined WatchType: Closed Script info +Info 134 [00:04:59.000] Search path: /user/username/projects/myproject/random +Info 135 [00:05:00.000] For info: /user/username/projects/myproject/random/random.ts :: Config file name: /user/username/projects/myproject/random/tsconfig.json +Info 136 [00:05:01.000] `remove Project:: +Info 137 [00:05:02.000] Project '/user/username/projects/myproject/main/tsconfig.json' (Configured) +Info 138 [00:05:03.000] Files (3) /a/lib/lib.d.ts /user/username/projects/myproject/decls/fns.d.ts /user/username/projects/myproject/main/main.ts @@ -2814,19 +2814,19 @@ Info 138 [16:05:03.000] Files (3) main.ts Matched by default include pattern '**/*' -Info 139 [16:05:04.000] ----------------------------------------------- -Info 140 [16:05:05.000] DirectoryWatcher:: Close:: WatchInfo: /user/username/projects/myproject/main 1 undefined Config: /user/username/projects/myproject/main/tsconfig.json WatchType: Wild card directory -Info 141 [16:05:06.000] 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 142 [16:05:07.000] FileWatcher:: Close:: WatchInfo: /user/username/projects/myproject/main/tsconfig.json 2000 undefined Project: /user/username/projects/myproject/main/tsconfig.json WatchType: Config file -Info 143 [16:05:08.000] DirectoryWatcher:: Close:: WatchInfo: /user/username/projects/myproject/decls 1 undefined Project: /user/username/projects/myproject/main/tsconfig.json WatchType: Failed Lookup Locations -Info 144 [16:05:09.000] 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 145 [16:05:10.000] 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 146 [16:05:11.000] 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 147 [16:05:12.000] DirectoryWatcher:: Close:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/main/tsconfig.json WatchType: Type roots -Info 148 [16:05:13.000] 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 149 [16:05:14.000] `remove Project:: -Info 150 [16:05:15.000] Project '/user/username/projects/myproject/dependency/tsconfig.json' (Configured) -Info 151 [16:05:16.000] Files (2) +Info 139 [00:05:04.000] ----------------------------------------------- +Info 140 [00:05:05.000] DirectoryWatcher:: Close:: WatchInfo: /user/username/projects/myproject/main 1 undefined Config: /user/username/projects/myproject/main/tsconfig.json WatchType: Wild card directory +Info 141 [00:05:06.000] 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 142 [00:05:07.000] FileWatcher:: Close:: WatchInfo: /user/username/projects/myproject/main/tsconfig.json 2000 undefined Project: /user/username/projects/myproject/main/tsconfig.json WatchType: Config file +Info 143 [00:05:08.000] DirectoryWatcher:: Close:: WatchInfo: /user/username/projects/myproject/decls 1 undefined Project: /user/username/projects/myproject/main/tsconfig.json WatchType: Failed Lookup Locations +Info 144 [00:05:09.000] 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 145 [00:05:10.000] 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 146 [00:05:11.000] 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 147 [00:05:12.000] DirectoryWatcher:: Close:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/main/tsconfig.json WatchType: Type roots +Info 148 [00:05:13.000] 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 149 [00:05:14.000] `remove Project:: +Info 150 [00:05:15.000] Project '/user/username/projects/myproject/dependency/tsconfig.json' (Configured) +Info 151 [00:05:16.000] Files (2) /a/lib/lib.d.ts /user/username/projects/myproject/dependency/FnS.ts @@ -2836,25 +2836,25 @@ Info 151 [16:05:16.000] Files (2) FnS.ts Matched by default include pattern '**/*' -Info 152 [16:05:17.000] ----------------------------------------------- -Info 153 [16:05:18.000] DirectoryWatcher:: Close:: WatchInfo: /user/username/projects/myproject/dependency 1 undefined Config: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Wild card directory -Info 154 [16:05:19.000] 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 155 [16:05:20.000] FileWatcher:: Close:: WatchInfo: /user/username/projects/myproject/dependency/tsconfig.json 2000 undefined Project: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Config file -Info 156 [16:05:21.000] 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 157 [16:05:22.000] 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 158 [16:05:23.000] DirectoryWatcher:: Close:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Type roots -Info 159 [16:05:24.000] 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 160 [16:05:25.000] FileWatcher:: Close:: WatchInfo: /user/username/projects/myproject/main/main.ts 500 undefined WatchType: Closed Script info -Info 161 [16:05:26.000] FileWatcher:: Close:: WatchInfo: /user/username/projects/myproject/decls/fns.d.ts 500 undefined WatchType: Closed Script info -Info 162 [16:05:27.000] FileWatcher:: Close:: WatchInfo: /user/username/projects/myproject/dependency/FnS.ts 500 undefined WatchType: Closed Script info -Info 163 [16:05:28.000] FileWatcher:: Close:: WatchInfo: /user/username/projects/myproject/decls/FnS.d.ts.map 500 undefined WatchType: Closed Script info -Info 164 [16:05:29.000] Project '/user/username/projects/myproject/random/tsconfig.json' (Configured) -Info 164 [16:05:30.000] Files (2) - -Info 164 [16:05:31.000] ----------------------------------------------- -Info 164 [16:05:32.000] Open files: -Info 164 [16:05:33.000] FileName: /user/username/projects/myproject/random/random.ts ProjectRootPath: undefined -Info 164 [16:05:34.000] Projects: /user/username/projects/myproject/random/tsconfig.json +Info 152 [00:05:17.000] ----------------------------------------------- +Info 153 [00:05:18.000] DirectoryWatcher:: Close:: WatchInfo: /user/username/projects/myproject/dependency 1 undefined Config: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Wild card directory +Info 154 [00:05:19.000] 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 155 [00:05:20.000] FileWatcher:: Close:: WatchInfo: /user/username/projects/myproject/dependency/tsconfig.json 2000 undefined Project: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Config file +Info 156 [00:05:21.000] 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 157 [00:05:22.000] 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 158 [00:05:23.000] DirectoryWatcher:: Close:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Type roots +Info 159 [00:05:24.000] 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 160 [00:05:25.000] FileWatcher:: Close:: WatchInfo: /user/username/projects/myproject/main/main.ts 500 undefined WatchType: Closed Script info +Info 161 [00:05:26.000] FileWatcher:: Close:: WatchInfo: /user/username/projects/myproject/decls/fns.d.ts 500 undefined WatchType: Closed Script info +Info 162 [00:05:27.000] FileWatcher:: Close:: WatchInfo: /user/username/projects/myproject/dependency/FnS.ts 500 undefined WatchType: Closed Script info +Info 163 [00:05:28.000] FileWatcher:: Close:: WatchInfo: /user/username/projects/myproject/decls/FnS.d.ts.map 500 undefined WatchType: Closed Script info +Info 164 [00:05:29.000] Project '/user/username/projects/myproject/random/tsconfig.json' (Configured) +Info 164 [00:05:30.000] Files (2) + +Info 164 [00:05:31.000] ----------------------------------------------- +Info 164 [00:05:32.000] Open files: +Info 164 [00:05:33.000] FileName: /user/username/projects/myproject/random/random.ts ProjectRootPath: undefined +Info 164 [00:05:34.000] Projects: /user/username/projects/myproject/random/tsconfig.json After request PolledWatches:: @@ -2873,7 +2873,7 @@ FsWatchesRecursive:: /user/username/projects/myproject/random: {} -Info 164 [16:05:35.000] response: +Info 164 [00:05:35.000] response: { "responseRequired": false } \ No newline at end of file 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 7956008c13678..ea59fb88e926a 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 @@ -1,5 +1,5 @@ -Info 0 [16:01:03.000] Provided types map file "/a/lib/typesMap.json" doesn't exist -Info 1 [16:01:04.000] request: +Info 0 [00:01:03.000] Provided types map file "/a/lib/typesMap.json" doesn't exist +Info 1 [00:01:04.000] request: { "seq": 0, "type": "request", @@ -200,11 +200,11 @@ FsWatches:: FsWatchesRecursive:: -Info 2 [16:01:05.000] Search path: /user/username/projects/myproject/main -Info 3 [16:01:06.000] For info: /user/username/projects/myproject/main/main.ts :: Config file name: /user/username/projects/myproject/main/tsconfig.json -Info 4 [16:01:07.000] Creating configuration project /user/username/projects/myproject/main/tsconfig.json -Info 5 [16:01:08.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/main/tsconfig.json 2000 undefined Project: /user/username/projects/myproject/main/tsconfig.json WatchType: Config file -Info 6 [16:01:09.000] Config: /user/username/projects/myproject/main/tsconfig.json : { +Info 2 [00:01:05.000] Search path: /user/username/projects/myproject/main +Info 3 [00:01:06.000] For info: /user/username/projects/myproject/main/main.ts :: Config file name: /user/username/projects/myproject/main/tsconfig.json +Info 4 [00:01:07.000] Creating configuration project /user/username/projects/myproject/main/tsconfig.json +Info 5 [00:01:08.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/main/tsconfig.json 2000 undefined Project: /user/username/projects/myproject/main/tsconfig.json WatchType: Config file +Info 6 [00:01:09.000] Config: /user/username/projects/myproject/main/tsconfig.json : { "rootNames": [ "/user/username/projects/myproject/main/main.ts" ], @@ -214,21 +214,21 @@ Info 6 [16:01:09.000] Config: /user/username/projects/myproject/main/tsconfig "configFilePath": "/user/username/projects/myproject/main/tsconfig.json" } } -Info 7 [16:01:10.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/main 1 undefined Config: /user/username/projects/myproject/main/tsconfig.json WatchType: Wild card directory -Info 8 [16:01:11.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/main 1 undefined Config: /user/username/projects/myproject/main/tsconfig.json WatchType: Wild card directory -Info 9 [16:01:12.000] Plugins were requested but not running in environment that supports 'require'. Nothing will be loaded -Info 10 [16:01:13.000] Starting updateGraphWorker: Project: /user/username/projects/myproject/main/tsconfig.json -Info 11 [16:01:14.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/decls 1 undefined Project: /user/username/projects/myproject/main/tsconfig.json WatchType: Failed Lookup Locations -Info 12 [16:01:15.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/decls 1 undefined Project: /user/username/projects/myproject/main/tsconfig.json WatchType: Failed Lookup Locations -Info 13 [16:01:16.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/decls/fns.d.ts 500 undefined WatchType: Closed Script info -Info 14 [16:01:17.000] FileWatcher:: Added:: WatchInfo: /a/lib/lib.d.ts 500 undefined WatchType: Closed Script info -Info 15 [16:01:18.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/main/node_modules/@types 1 undefined Project: /user/username/projects/myproject/main/tsconfig.json WatchType: Type roots -Info 16 [16:01:19.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/main/node_modules/@types 1 undefined Project: /user/username/projects/myproject/main/tsconfig.json WatchType: Type roots -Info 17 [16:01:20.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/main/tsconfig.json WatchType: Type roots -Info 18 [16:01:21.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/main/tsconfig.json WatchType: Type roots -Info 19 [16:01:22.000] Finishing updateGraphWorker: Project: /user/username/projects/myproject/main/tsconfig.json Version: 1 structureChanged: true structureIsReused:: Not Elapsed:: *ms -Info 20 [16:01:23.000] Project '/user/username/projects/myproject/main/tsconfig.json' (Configured) -Info 21 [16:01:24.000] Files (3) +Info 7 [00:01:10.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/main 1 undefined Config: /user/username/projects/myproject/main/tsconfig.json WatchType: Wild card directory +Info 8 [00:01:11.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/main 1 undefined Config: /user/username/projects/myproject/main/tsconfig.json WatchType: Wild card directory +Info 9 [00:01:12.000] Plugins were requested but not running in environment that supports 'require'. Nothing will be loaded +Info 10 [00:01:13.000] Starting updateGraphWorker: Project: /user/username/projects/myproject/main/tsconfig.json +Info 11 [00:01:14.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/decls 1 undefined Project: /user/username/projects/myproject/main/tsconfig.json WatchType: Failed Lookup Locations +Info 12 [00:01:15.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/decls 1 undefined Project: /user/username/projects/myproject/main/tsconfig.json WatchType: Failed Lookup Locations +Info 13 [00:01:16.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/decls/fns.d.ts 500 undefined WatchType: Closed Script info +Info 14 [00:01:17.000] FileWatcher:: Added:: WatchInfo: /a/lib/lib.d.ts 500 undefined WatchType: Closed Script info +Info 15 [00:01:18.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/main/node_modules/@types 1 undefined Project: /user/username/projects/myproject/main/tsconfig.json WatchType: Type roots +Info 16 [00:01:19.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/main/node_modules/@types 1 undefined Project: /user/username/projects/myproject/main/tsconfig.json WatchType: Type roots +Info 17 [00:01:20.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/main/tsconfig.json WatchType: Type roots +Info 18 [00:01:21.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/main/tsconfig.json WatchType: Type roots +Info 19 [00:01:22.000] Finishing updateGraphWorker: Project: /user/username/projects/myproject/main/tsconfig.json Version: 1 structureChanged: true structureIsReused:: Not Elapsed:: *ms +Info 20 [00:01:23.000] Project '/user/username/projects/myproject/main/tsconfig.json' (Configured) +Info 21 [00:01:24.000] Files (3) /a/lib/lib.d.ts /user/username/projects/myproject/decls/fns.d.ts /user/username/projects/myproject/main/main.ts @@ -241,16 +241,16 @@ Info 21 [16:01:24.000] Files (3) main.ts Matched by default include pattern '**/*' -Info 22 [16:01:25.000] ----------------------------------------------- -Info 23 [16:01:26.000] Search path: /user/username/projects/myproject/main -Info 24 [16:01:27.000] For info: /user/username/projects/myproject/main/tsconfig.json :: No config files found. -Info 25 [16:01:28.000] Project '/user/username/projects/myproject/main/tsconfig.json' (Configured) -Info 25 [16:01:29.000] Files (3) +Info 22 [00:01:25.000] ----------------------------------------------- +Info 23 [00:01:26.000] Search path: /user/username/projects/myproject/main +Info 24 [00:01:27.000] For info: /user/username/projects/myproject/main/tsconfig.json :: No config files found. +Info 25 [00:01:28.000] Project '/user/username/projects/myproject/main/tsconfig.json' (Configured) +Info 25 [00:01:29.000] Files (3) -Info 25 [16:01:30.000] ----------------------------------------------- -Info 25 [16:01:31.000] Open files: -Info 25 [16:01:32.000] FileName: /user/username/projects/myproject/main/main.ts ProjectRootPath: undefined -Info 25 [16:01:33.000] Projects: /user/username/projects/myproject/main/tsconfig.json +Info 25 [00:01:30.000] ----------------------------------------------- +Info 25 [00:01:31.000] Open files: +Info 25 [00:01:32.000] FileName: /user/username/projects/myproject/main/main.ts ProjectRootPath: undefined +Info 25 [00:01:33.000] Projects: /user/username/projects/myproject/main/tsconfig.json After request PolledWatches:: @@ -273,11 +273,11 @@ FsWatchesRecursive:: /user/username/projects/myproject/decls: {} -Info 25 [16:01:34.000] response: +Info 25 [00:01:34.000] response: { "responseRequired": false } -Info 26 [16:01:35.000] request: +Info 26 [00:01:35.000] request: { "seq": 0, "type": "request", @@ -308,11 +308,11 @@ FsWatchesRecursive:: /user/username/projects/myproject/decls: {} -Info 27 [16:01:36.000] Search path: /user/username/projects/myproject/dependency -Info 28 [16:01:37.000] For info: /user/username/projects/myproject/dependency/FnS.ts :: Config file name: /user/username/projects/myproject/dependency/tsconfig.json -Info 29 [16:01:38.000] Creating configuration project /user/username/projects/myproject/dependency/tsconfig.json -Info 30 [16:01:39.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/dependency/tsconfig.json 2000 undefined Project: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Config file -Info 31 [16:01:40.000] Config: /user/username/projects/myproject/dependency/tsconfig.json : { +Info 27 [00:01:36.000] Search path: /user/username/projects/myproject/dependency +Info 28 [00:01:37.000] For info: /user/username/projects/myproject/dependency/FnS.ts :: Config file name: /user/username/projects/myproject/dependency/tsconfig.json +Info 29 [00:01:38.000] Creating configuration project /user/username/projects/myproject/dependency/tsconfig.json +Info 30 [00:01:39.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/dependency/tsconfig.json 2000 undefined Project: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Config file +Info 31 [00:01:40.000] Config: /user/username/projects/myproject/dependency/tsconfig.json : { "rootNames": [ "/user/username/projects/myproject/dependency/FnS.ts" ], @@ -323,17 +323,17 @@ Info 31 [16:01:40.000] Config: /user/username/projects/myproject/dependency/ts "configFilePath": "/user/username/projects/myproject/dependency/tsconfig.json" } } -Info 32 [16:01:41.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/dependency 1 undefined Config: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Wild card directory -Info 33 [16:01:42.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/dependency 1 undefined Config: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Wild card directory -Info 34 [16:01:43.000] Plugins were requested but not running in environment that supports 'require'. Nothing will be loaded -Info 35 [16:01:44.000] Starting updateGraphWorker: Project: /user/username/projects/myproject/dependency/tsconfig.json -Info 36 [16:01:45.000] 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 37 [16:01:46.000] 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 38 [16:01:47.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Type roots -Info 39 [16:01:48.000] 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 40 [16:01:49.000] Finishing updateGraphWorker: Project: /user/username/projects/myproject/dependency/tsconfig.json Version: 1 structureChanged: true structureIsReused:: Not Elapsed:: *ms -Info 41 [16:01:50.000] Project '/user/username/projects/myproject/dependency/tsconfig.json' (Configured) -Info 42 [16:01:51.000] Files (2) +Info 32 [00:01:41.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/dependency 1 undefined Config: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Wild card directory +Info 33 [00:01:42.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/dependency 1 undefined Config: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Wild card directory +Info 34 [00:01:43.000] Plugins were requested but not running in environment that supports 'require'. Nothing will be loaded +Info 35 [00:01:44.000] Starting updateGraphWorker: Project: /user/username/projects/myproject/dependency/tsconfig.json +Info 36 [00:01:45.000] 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 37 [00:01:46.000] 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 38 [00:01:47.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Type roots +Info 39 [00:01:48.000] 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 40 [00:01:49.000] Finishing updateGraphWorker: Project: /user/username/projects/myproject/dependency/tsconfig.json Version: 1 structureChanged: true structureIsReused:: Not Elapsed:: *ms +Info 41 [00:01:50.000] Project '/user/username/projects/myproject/dependency/tsconfig.json' (Configured) +Info 42 [00:01:51.000] Files (2) /a/lib/lib.d.ts /user/username/projects/myproject/dependency/FnS.ts @@ -343,22 +343,22 @@ Info 42 [16:01:51.000] Files (2) FnS.ts Matched by default include pattern '**/*' -Info 43 [16:01:52.000] ----------------------------------------------- -Info 44 [16:01:53.000] Search path: /user/username/projects/myproject/dependency -Info 45 [16:01:54.000] For info: /user/username/projects/myproject/dependency/tsconfig.json :: No config files found. -Info 46 [16:01:55.000] Project '/user/username/projects/myproject/main/tsconfig.json' (Configured) -Info 46 [16:01:56.000] Files (3) - -Info 46 [16:01:57.000] ----------------------------------------------- -Info 46 [16:01:58.000] Project '/user/username/projects/myproject/dependency/tsconfig.json' (Configured) -Info 46 [16:01:59.000] Files (2) - -Info 46 [16:02:00.000] ----------------------------------------------- -Info 46 [16:02:01.000] Open files: -Info 46 [16:02:02.000] FileName: /user/username/projects/myproject/main/main.ts ProjectRootPath: undefined -Info 46 [16:02:03.000] Projects: /user/username/projects/myproject/main/tsconfig.json -Info 46 [16:02:04.000] FileName: /user/username/projects/myproject/dependency/FnS.ts ProjectRootPath: undefined -Info 46 [16:02:05.000] Projects: /user/username/projects/myproject/dependency/tsconfig.json +Info 43 [00:01:52.000] ----------------------------------------------- +Info 44 [00:01:53.000] Search path: /user/username/projects/myproject/dependency +Info 45 [00:01:54.000] For info: /user/username/projects/myproject/dependency/tsconfig.json :: No config files found. +Info 46 [00:01:55.000] Project '/user/username/projects/myproject/main/tsconfig.json' (Configured) +Info 46 [00:01:56.000] Files (3) + +Info 46 [00:01:57.000] ----------------------------------------------- +Info 46 [00:01:58.000] Project '/user/username/projects/myproject/dependency/tsconfig.json' (Configured) +Info 46 [00:01:59.000] Files (2) + +Info 46 [00:02:00.000] ----------------------------------------------- +Info 46 [00:02:01.000] Open files: +Info 46 [00:02:02.000] FileName: /user/username/projects/myproject/main/main.ts ProjectRootPath: undefined +Info 46 [00:02:03.000] Projects: /user/username/projects/myproject/main/tsconfig.json +Info 46 [00:02:04.000] FileName: /user/username/projects/myproject/dependency/FnS.ts ProjectRootPath: undefined +Info 46 [00:02:05.000] Projects: /user/username/projects/myproject/dependency/tsconfig.json After request PolledWatches:: @@ -387,11 +387,11 @@ FsWatchesRecursive:: /user/username/projects/myproject/dependency: {} -Info 46 [16:02:06.000] response: +Info 46 [00:02:06.000] response: { "responseRequired": false } -Info 47 [16:02:07.000] request: +Info 47 [00:02:07.000] request: { "seq": 0, "type": "request", @@ -428,11 +428,11 @@ FsWatchesRecursive:: /user/username/projects/myproject/dependency: {} -Info 48 [16:02:08.000] Search path: /user/username/projects/myproject/random -Info 49 [16:02:09.000] For info: /user/username/projects/myproject/random/random.ts :: Config file name: /user/username/projects/myproject/random/tsconfig.json -Info 50 [16:02:10.000] Creating configuration project /user/username/projects/myproject/random/tsconfig.json -Info 51 [16:02:11.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/random/tsconfig.json 2000 undefined Project: /user/username/projects/myproject/random/tsconfig.json WatchType: Config file -Info 52 [16:02:12.000] Config: /user/username/projects/myproject/random/tsconfig.json : { +Info 48 [00:02:08.000] Search path: /user/username/projects/myproject/random +Info 49 [00:02:09.000] For info: /user/username/projects/myproject/random/random.ts :: Config file name: /user/username/projects/myproject/random/tsconfig.json +Info 50 [00:02:10.000] Creating configuration project /user/username/projects/myproject/random/tsconfig.json +Info 51 [00:02:11.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/random/tsconfig.json 2000 undefined Project: /user/username/projects/myproject/random/tsconfig.json WatchType: Config file +Info 52 [00:02:12.000] Config: /user/username/projects/myproject/random/tsconfig.json : { "rootNames": [ "/user/username/projects/myproject/random/random.ts" ], @@ -440,17 +440,17 @@ Info 52 [16:02:12.000] Config: /user/username/projects/myproject/random/tsconf "configFilePath": "/user/username/projects/myproject/random/tsconfig.json" } } -Info 53 [16:02:13.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/random 1 undefined Config: /user/username/projects/myproject/random/tsconfig.json WatchType: Wild card directory -Info 54 [16:02:14.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/random 1 undefined Config: /user/username/projects/myproject/random/tsconfig.json WatchType: Wild card directory -Info 55 [16:02:15.000] Plugins were requested but not running in environment that supports 'require'. Nothing will be loaded -Info 56 [16:02:16.000] Starting updateGraphWorker: Project: /user/username/projects/myproject/random/tsconfig.json -Info 57 [16:02:17.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/random/node_modules/@types 1 undefined Project: /user/username/projects/myproject/random/tsconfig.json WatchType: Type roots -Info 58 [16:02:18.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/random/node_modules/@types 1 undefined Project: /user/username/projects/myproject/random/tsconfig.json WatchType: Type roots -Info 59 [16:02:19.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/random/tsconfig.json WatchType: Type roots -Info 60 [16:02:20.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/random/tsconfig.json WatchType: Type roots -Info 61 [16:02:21.000] Finishing updateGraphWorker: Project: /user/username/projects/myproject/random/tsconfig.json Version: 1 structureChanged: true structureIsReused:: Not Elapsed:: *ms -Info 62 [16:02:22.000] Project '/user/username/projects/myproject/random/tsconfig.json' (Configured) -Info 63 [16:02:23.000] Files (2) +Info 53 [00:02:13.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/random 1 undefined Config: /user/username/projects/myproject/random/tsconfig.json WatchType: Wild card directory +Info 54 [00:02:14.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/random 1 undefined Config: /user/username/projects/myproject/random/tsconfig.json WatchType: Wild card directory +Info 55 [00:02:15.000] Plugins were requested but not running in environment that supports 'require'. Nothing will be loaded +Info 56 [00:02:16.000] Starting updateGraphWorker: Project: /user/username/projects/myproject/random/tsconfig.json +Info 57 [00:02:17.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/random/node_modules/@types 1 undefined Project: /user/username/projects/myproject/random/tsconfig.json WatchType: Type roots +Info 58 [00:02:18.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/random/node_modules/@types 1 undefined Project: /user/username/projects/myproject/random/tsconfig.json WatchType: Type roots +Info 59 [00:02:19.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/random/tsconfig.json WatchType: Type roots +Info 60 [00:02:20.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/random/tsconfig.json WatchType: Type roots +Info 61 [00:02:21.000] Finishing updateGraphWorker: Project: /user/username/projects/myproject/random/tsconfig.json Version: 1 structureChanged: true structureIsReused:: Not Elapsed:: *ms +Info 62 [00:02:22.000] Project '/user/username/projects/myproject/random/tsconfig.json' (Configured) +Info 63 [00:02:23.000] Files (2) /a/lib/lib.d.ts /user/username/projects/myproject/random/random.ts @@ -460,26 +460,26 @@ Info 63 [16:02:23.000] Files (2) random.ts Matched by default include pattern '**/*' -Info 64 [16:02:24.000] ----------------------------------------------- -Info 65 [16:02:25.000] Project '/user/username/projects/myproject/main/tsconfig.json' (Configured) -Info 65 [16:02:26.000] Files (3) - -Info 65 [16:02:27.000] ----------------------------------------------- -Info 65 [16:02:28.000] Project '/user/username/projects/myproject/dependency/tsconfig.json' (Configured) -Info 65 [16:02:29.000] Files (2) - -Info 65 [16:02:30.000] ----------------------------------------------- -Info 65 [16:02:31.000] Project '/user/username/projects/myproject/random/tsconfig.json' (Configured) -Info 65 [16:02:32.000] Files (2) - -Info 65 [16:02:33.000] ----------------------------------------------- -Info 65 [16:02:34.000] Open files: -Info 65 [16:02:35.000] FileName: /user/username/projects/myproject/main/main.ts ProjectRootPath: undefined -Info 65 [16:02:36.000] Projects: /user/username/projects/myproject/main/tsconfig.json -Info 65 [16:02:37.000] FileName: /user/username/projects/myproject/dependency/FnS.ts ProjectRootPath: undefined -Info 65 [16:02:38.000] Projects: /user/username/projects/myproject/dependency/tsconfig.json -Info 65 [16:02:39.000] FileName: /user/username/projects/myproject/random/random.ts ProjectRootPath: undefined -Info 65 [16:02:40.000] Projects: /user/username/projects/myproject/random/tsconfig.json +Info 64 [00:02:24.000] ----------------------------------------------- +Info 65 [00:02:25.000] Project '/user/username/projects/myproject/main/tsconfig.json' (Configured) +Info 65 [00:02:26.000] Files (3) + +Info 65 [00:02:27.000] ----------------------------------------------- +Info 65 [00:02:28.000] Project '/user/username/projects/myproject/dependency/tsconfig.json' (Configured) +Info 65 [00:02:29.000] Files (2) + +Info 65 [00:02:30.000] ----------------------------------------------- +Info 65 [00:02:31.000] Project '/user/username/projects/myproject/random/tsconfig.json' (Configured) +Info 65 [00:02:32.000] Files (2) + +Info 65 [00:02:33.000] ----------------------------------------------- +Info 65 [00:02:34.000] Open files: +Info 65 [00:02:35.000] FileName: /user/username/projects/myproject/main/main.ts ProjectRootPath: undefined +Info 65 [00:02:36.000] Projects: /user/username/projects/myproject/main/tsconfig.json +Info 65 [00:02:37.000] FileName: /user/username/projects/myproject/dependency/FnS.ts ProjectRootPath: undefined +Info 65 [00:02:38.000] Projects: /user/username/projects/myproject/dependency/tsconfig.json +Info 65 [00:02:39.000] FileName: /user/username/projects/myproject/random/random.ts ProjectRootPath: undefined +Info 65 [00:02:40.000] Projects: /user/username/projects/myproject/random/tsconfig.json After request PolledWatches:: @@ -514,11 +514,11 @@ FsWatchesRecursive:: /user/username/projects/myproject/random: {} -Info 65 [16:02:41.000] response: +Info 65 [00:02:41.000] response: { "responseRequired": false } -Info 66 [16:02:42.000] request: +Info 66 [00:02:42.000] request: { "command": "definitionAndBoundSpan", "arguments": { @@ -563,7 +563,7 @@ FsWatchesRecursive:: /user/username/projects/myproject/random: {} -Info 67 [16:02:43.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/decls/FnS.d.ts.map 500 undefined WatchType: Closed Script info +Info 67 [00:02:43.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/decls/FnS.d.ts.map 500 undefined WatchType: Closed Script info After request PolledWatches:: @@ -600,7 +600,7 @@ FsWatchesRecursive:: /user/username/projects/myproject/random: {} -Info 68 [16:02:44.000] response: +Info 68 [00:02:44.000] response: { "response": { "definitions": [ @@ -637,7 +637,7 @@ Info 68 [16:02:44.000] response: }, "responseRequired": true } -Info 69 [16:02:45.000] request: +Info 69 [00:02:45.000] request: { "command": "rename", "arguments": { @@ -684,8 +684,8 @@ FsWatchesRecursive:: /user/username/projects/myproject/random: {} -Info 70 [16:02:46.000] Search path: /user/username/projects/myproject/dependency -Info 71 [16:02:47.000] For info: /user/username/projects/myproject/dependency/FnS.ts :: Config file name: /user/username/projects/myproject/dependency/tsconfig.json +Info 70 [00:02:46.000] Search path: /user/username/projects/myproject/dependency +Info 71 [00:02:47.000] For info: /user/username/projects/myproject/dependency/FnS.ts :: Config file name: /user/username/projects/myproject/dependency/tsconfig.json After request PolledWatches:: @@ -722,7 +722,7 @@ FsWatchesRecursive:: /user/username/projects/myproject/random: {} -Info 72 [16:02:48.000] response: +Info 72 [00:02:48.000] response: { "response": { "info": { @@ -803,16 +803,16 @@ Info 72 [16:02:48.000] response: }, "responseRequired": true } -Info 73 [16:02:50.000] FileWatcher:: Triggered with /user/username/projects/myproject/decls/FnS.d.ts.map 2:: WatchInfo: /user/username/projects/myproject/decls/FnS.d.ts.map 500 undefined WatchType: Closed Script info -Info 74 [16:02:51.000] FileWatcher:: Close:: WatchInfo: /user/username/projects/myproject/decls/FnS.d.ts.map 500 undefined WatchType: Closed Script info -Info 75 [16:02:52.000] Scheduled: /user/username/projects/myproject/dependency/tsconfig.json -Info 76 [16:02:53.000] Scheduled: *ensureProjectForOpenFiles* -Info 77 [16:02:54.000] Scheduled: /user/username/projects/myproject/main/tsconfig.json -Info 78 [16:02:55.000] Scheduled: *ensureProjectForOpenFiles*, Cancelled earlier one -Info 79 [16:02:56.000] Elapsed:: *ms FileWatcher:: Triggered with /user/username/projects/myproject/decls/FnS.d.ts.map 2:: WatchInfo: /user/username/projects/myproject/decls/FnS.d.ts.map 500 undefined WatchType: Closed Script info -Info 80 [16:02:57.000] DirectoryWatcher:: Triggered with /user/username/projects/myproject/decls/FnS.d.ts.map :: WatchInfo: /user/username/projects/myproject/decls 1 undefined Project: /user/username/projects/myproject/main/tsconfig.json WatchType: Failed Lookup Locations -Info 81 [16:02:58.000] Elapsed:: *ms DirectoryWatcher:: Triggered with /user/username/projects/myproject/decls/FnS.d.ts.map :: WatchInfo: /user/username/projects/myproject/decls 1 undefined Project: /user/username/projects/myproject/main/tsconfig.json WatchType: Failed Lookup Locations -Info 82 [16:02:59.000] request: +Info 73 [00:02:50.000] FileWatcher:: Triggered with /user/username/projects/myproject/decls/FnS.d.ts.map 2:: WatchInfo: /user/username/projects/myproject/decls/FnS.d.ts.map 500 undefined WatchType: Closed Script info +Info 74 [00:02:51.000] FileWatcher:: Close:: WatchInfo: /user/username/projects/myproject/decls/FnS.d.ts.map 500 undefined WatchType: Closed Script info +Info 75 [00:02:52.000] Scheduled: /user/username/projects/myproject/dependency/tsconfig.json +Info 76 [00:02:53.000] Scheduled: *ensureProjectForOpenFiles* +Info 77 [00:02:54.000] Scheduled: /user/username/projects/myproject/main/tsconfig.json +Info 78 [00:02:55.000] Scheduled: *ensureProjectForOpenFiles*, Cancelled earlier one +Info 79 [00:02:56.000] Elapsed:: *ms FileWatcher:: Triggered with /user/username/projects/myproject/decls/FnS.d.ts.map 2:: WatchInfo: /user/username/projects/myproject/decls/FnS.d.ts.map 500 undefined WatchType: Closed Script info +Info 80 [00:02:57.000] DirectoryWatcher:: Triggered with /user/username/projects/myproject/decls/FnS.d.ts.map :: WatchInfo: /user/username/projects/myproject/decls 1 undefined Project: /user/username/projects/myproject/main/tsconfig.json WatchType: Failed Lookup Locations +Info 81 [00:02:58.000] Elapsed:: *ms DirectoryWatcher:: Triggered with /user/username/projects/myproject/decls/FnS.d.ts.map :: WatchInfo: /user/username/projects/myproject/decls 1 undefined Project: /user/username/projects/myproject/main/tsconfig.json WatchType: Failed Lookup Locations +Info 82 [00:02:59.000] request: { "command": "definitionAndBoundSpan", "arguments": { @@ -858,9 +858,9 @@ FsWatchesRecursive:: /user/username/projects/myproject/random: {} -Info 83 [16:03:00.000] Starting updateGraphWorker: Project: /user/username/projects/myproject/main/tsconfig.json -Info 84 [16:03:01.000] Finishing updateGraphWorker: Project: /user/username/projects/myproject/main/tsconfig.json Version: 2 structureChanged: false structureIsReused:: Not Elapsed:: *ms -Info 85 [16:03:02.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/decls/FnS.d.ts.map 2000 undefined WatchType: Missing source map file +Info 83 [00:03:00.000] Starting updateGraphWorker: Project: /user/username/projects/myproject/main/tsconfig.json +Info 84 [00:03:01.000] Finishing updateGraphWorker: Project: /user/username/projects/myproject/main/tsconfig.json Version: 2 structureChanged: false structureIsReused:: Not Elapsed:: *ms +Info 85 [00:03:02.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/decls/FnS.d.ts.map 2000 undefined WatchType: Missing source map file After request PolledWatches:: @@ -897,7 +897,7 @@ FsWatchesRecursive:: /user/username/projects/myproject/random: {} -Info 86 [16:03:03.000] response: +Info 86 [00:03:03.000] response: { "response": { "definitions": [ @@ -934,7 +934,7 @@ Info 86 [16:03:03.000] response: }, "responseRequired": true } -Info 87 [16:03:04.000] request: +Info 87 [00:03:04.000] request: { "command": "definitionAndBoundSpan", "arguments": { @@ -1017,7 +1017,7 @@ FsWatchesRecursive:: /user/username/projects/myproject/random: {} -Info 88 [16:03:05.000] response: +Info 88 [00:03:05.000] response: { "response": { "definitions": [ @@ -1054,7 +1054,7 @@ Info 88 [16:03:05.000] response: }, "responseRequired": true } -Info 89 [16:03:06.000] request: +Info 89 [00:03:06.000] request: { "command": "definitionAndBoundSpan", "arguments": { @@ -1137,7 +1137,7 @@ FsWatchesRecursive:: /user/username/projects/myproject/random: {} -Info 90 [16:03:07.000] response: +Info 90 [00:03:07.000] response: { "response": { "definitions": [ @@ -1174,7 +1174,7 @@ Info 90 [16:03:07.000] response: }, "responseRequired": true } -Info 91 [16:03:08.000] request: +Info 91 [00:03:08.000] request: { "command": "definitionAndBoundSpan", "arguments": { @@ -1257,7 +1257,7 @@ FsWatchesRecursive:: /user/username/projects/myproject/random: {} -Info 92 [16:03:09.000] response: +Info 92 [00:03:09.000] response: { "response": { "definitions": [ @@ -1294,7 +1294,7 @@ Info 92 [16:03:09.000] response: }, "responseRequired": true } -Info 93 [16:03:10.000] request: +Info 93 [00:03:10.000] request: { "command": "definitionAndBoundSpan", "arguments": { @@ -1377,7 +1377,7 @@ FsWatchesRecursive:: /user/username/projects/myproject/random: {} -Info 94 [16:03:11.000] response: +Info 94 [00:03:11.000] response: { "response": { "definitions": [ @@ -1414,7 +1414,7 @@ Info 94 [16:03:11.000] response: }, "responseRequired": true } -Info 95 [16:03:12.000] request: +Info 95 [00:03:12.000] request: { "command": "rename", "arguments": { @@ -1461,8 +1461,8 @@ FsWatchesRecursive:: /user/username/projects/myproject/random: {} -Info 96 [16:03:13.000] Starting updateGraphWorker: Project: /user/username/projects/myproject/dependency/tsconfig.json -Info 97 [16:03:14.000] Finishing updateGraphWorker: Project: /user/username/projects/myproject/dependency/tsconfig.json Version: 2 structureChanged: false structureIsReused:: Not Elapsed:: *ms +Info 96 [00:03:13.000] Starting updateGraphWorker: Project: /user/username/projects/myproject/dependency/tsconfig.json +Info 97 [00:03:14.000] Finishing updateGraphWorker: Project: /user/username/projects/myproject/dependency/tsconfig.json Version: 2 structureChanged: false structureIsReused:: Not Elapsed:: *ms After request PolledWatches:: @@ -1499,7 +1499,7 @@ FsWatchesRecursive:: /user/username/projects/myproject/random: {} -Info 98 [16:03:15.000] response: +Info 98 [00:03:15.000] response: { "response": { "info": { @@ -1547,7 +1547,7 @@ Info 98 [16:03:15.000] response: }, "responseRequired": true } -Info 99 [16:03:16.000] request: +Info 99 [00:03:16.000] request: { "command": "rename", "arguments": { @@ -1630,7 +1630,7 @@ FsWatchesRecursive:: /user/username/projects/myproject/random: {} -Info 100 [16:03:17.000] response: +Info 100 [00:03:17.000] response: { "response": { "info": { @@ -1678,7 +1678,7 @@ Info 100 [16:03:17.000] response: }, "responseRequired": true } -Info 101 [16:03:18.000] request: +Info 101 [00:03:18.000] request: { "command": "rename", "arguments": { @@ -1761,7 +1761,7 @@ FsWatchesRecursive:: /user/username/projects/myproject/random: {} -Info 102 [16:03:19.000] response: +Info 102 [00:03:19.000] response: { "response": { "info": { @@ -1809,7 +1809,7 @@ Info 102 [16:03:19.000] response: }, "responseRequired": true } -Info 103 [16:03:20.000] request: +Info 103 [00:03:20.000] request: { "command": "rename", "arguments": { @@ -1892,7 +1892,7 @@ FsWatchesRecursive:: /user/username/projects/myproject/random: {} -Info 104 [16:03:21.000] response: +Info 104 [00:03:21.000] response: { "response": { "info": { @@ -1940,7 +1940,7 @@ Info 104 [16:03:21.000] response: }, "responseRequired": true } -Info 105 [16:03:22.000] request: +Info 105 [00:03:22.000] request: { "command": "rename", "arguments": { @@ -2023,7 +2023,7 @@ FsWatchesRecursive:: /user/username/projects/myproject/random: {} -Info 106 [16:03:23.000] response: +Info 106 [00:03:23.000] response: { "response": { "info": { @@ -2071,7 +2071,7 @@ Info 106 [16:03:23.000] response: }, "responseRequired": true } -Info 107 [16:03:24.000] request: +Info 107 [00:03:24.000] request: { "seq": 0, "type": "request", @@ -2116,24 +2116,24 @@ FsWatchesRecursive:: /user/username/projects/myproject/random: {} -Info 108 [16:03:25.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/random/random.ts 500 undefined WatchType: Closed Script info -Info 109 [16:03:26.000] Project '/user/username/projects/myproject/main/tsconfig.json' (Configured) -Info 109 [16:03:27.000] Files (3) +Info 108 [00:03:25.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/random/random.ts 500 undefined WatchType: Closed Script info +Info 109 [00:03:26.000] Project '/user/username/projects/myproject/main/tsconfig.json' (Configured) +Info 109 [00:03:27.000] Files (3) -Info 109 [16:03:28.000] ----------------------------------------------- -Info 109 [16:03:29.000] Project '/user/username/projects/myproject/dependency/tsconfig.json' (Configured) -Info 109 [16:03:30.000] Files (2) +Info 109 [00:03:28.000] ----------------------------------------------- +Info 109 [00:03:29.000] Project '/user/username/projects/myproject/dependency/tsconfig.json' (Configured) +Info 109 [00:03:30.000] Files (2) -Info 109 [16:03:31.000] ----------------------------------------------- -Info 109 [16:03:32.000] Project '/user/username/projects/myproject/random/tsconfig.json' (Configured) -Info 109 [16:03:33.000] Files (2) +Info 109 [00:03:31.000] ----------------------------------------------- +Info 109 [00:03:32.000] Project '/user/username/projects/myproject/random/tsconfig.json' (Configured) +Info 109 [00:03:33.000] Files (2) -Info 109 [16:03:34.000] ----------------------------------------------- -Info 109 [16:03:35.000] Open files: -Info 109 [16:03:36.000] FileName: /user/username/projects/myproject/main/main.ts ProjectRootPath: undefined -Info 109 [16:03:37.000] Projects: /user/username/projects/myproject/main/tsconfig.json -Info 109 [16:03:38.000] FileName: /user/username/projects/myproject/dependency/FnS.ts ProjectRootPath: undefined -Info 109 [16:03:39.000] Projects: /user/username/projects/myproject/dependency/tsconfig.json +Info 109 [00:03:34.000] ----------------------------------------------- +Info 109 [00:03:35.000] Open files: +Info 109 [00:03:36.000] FileName: /user/username/projects/myproject/main/main.ts ProjectRootPath: undefined +Info 109 [00:03:37.000] Projects: /user/username/projects/myproject/main/tsconfig.json +Info 109 [00:03:38.000] FileName: /user/username/projects/myproject/dependency/FnS.ts ProjectRootPath: undefined +Info 109 [00:03:39.000] Projects: /user/username/projects/myproject/dependency/tsconfig.json After request PolledWatches:: @@ -2172,11 +2172,11 @@ FsWatchesRecursive:: /user/username/projects/myproject/random: {} -Info 109 [16:03:40.000] response: +Info 109 [00:03:40.000] response: { "responseRequired": false } -Info 110 [16:03:41.000] request: +Info 110 [00:03:41.000] request: { "seq": 0, "type": "request", @@ -2223,28 +2223,28 @@ FsWatchesRecursive:: /user/username/projects/myproject/random: {} -Info 111 [16:03:42.000] FileWatcher:: Close:: WatchInfo: /user/username/projects/myproject/random/random.ts 500 undefined WatchType: Closed Script info -Info 112 [16:03:43.000] Search path: /user/username/projects/myproject/random -Info 113 [16:03:44.000] For info: /user/username/projects/myproject/random/random.ts :: Config file name: /user/username/projects/myproject/random/tsconfig.json -Info 114 [16:03:45.000] Project '/user/username/projects/myproject/main/tsconfig.json' (Configured) -Info 114 [16:03:46.000] Files (3) - -Info 114 [16:03:47.000] ----------------------------------------------- -Info 114 [16:03:48.000] Project '/user/username/projects/myproject/dependency/tsconfig.json' (Configured) -Info 114 [16:03:49.000] Files (2) - -Info 114 [16:03:50.000] ----------------------------------------------- -Info 114 [16:03:51.000] Project '/user/username/projects/myproject/random/tsconfig.json' (Configured) -Info 114 [16:03:52.000] Files (2) - -Info 114 [16:03:53.000] ----------------------------------------------- -Info 114 [16:03:54.000] Open files: -Info 114 [16:03:55.000] FileName: /user/username/projects/myproject/main/main.ts ProjectRootPath: undefined -Info 114 [16:03:56.000] Projects: /user/username/projects/myproject/main/tsconfig.json -Info 114 [16:03:57.000] FileName: /user/username/projects/myproject/dependency/FnS.ts ProjectRootPath: undefined -Info 114 [16:03:58.000] Projects: /user/username/projects/myproject/dependency/tsconfig.json -Info 114 [16:03:59.000] FileName: /user/username/projects/myproject/random/random.ts ProjectRootPath: undefined -Info 114 [16:04:00.000] Projects: /user/username/projects/myproject/random/tsconfig.json +Info 111 [00:03:42.000] FileWatcher:: Close:: WatchInfo: /user/username/projects/myproject/random/random.ts 500 undefined WatchType: Closed Script info +Info 112 [00:03:43.000] Search path: /user/username/projects/myproject/random +Info 113 [00:03:44.000] For info: /user/username/projects/myproject/random/random.ts :: Config file name: /user/username/projects/myproject/random/tsconfig.json +Info 114 [00:03:45.000] Project '/user/username/projects/myproject/main/tsconfig.json' (Configured) +Info 114 [00:03:46.000] Files (3) + +Info 114 [00:03:47.000] ----------------------------------------------- +Info 114 [00:03:48.000] Project '/user/username/projects/myproject/dependency/tsconfig.json' (Configured) +Info 114 [00:03:49.000] Files (2) + +Info 114 [00:03:50.000] ----------------------------------------------- +Info 114 [00:03:51.000] Project '/user/username/projects/myproject/random/tsconfig.json' (Configured) +Info 114 [00:03:52.000] Files (2) + +Info 114 [00:03:53.000] ----------------------------------------------- +Info 114 [00:03:54.000] Open files: +Info 114 [00:03:55.000] FileName: /user/username/projects/myproject/main/main.ts ProjectRootPath: undefined +Info 114 [00:03:56.000] Projects: /user/username/projects/myproject/main/tsconfig.json +Info 114 [00:03:57.000] FileName: /user/username/projects/myproject/dependency/FnS.ts ProjectRootPath: undefined +Info 114 [00:03:58.000] Projects: /user/username/projects/myproject/dependency/tsconfig.json +Info 114 [00:03:59.000] FileName: /user/username/projects/myproject/random/random.ts ProjectRootPath: undefined +Info 114 [00:04:00.000] Projects: /user/username/projects/myproject/random/tsconfig.json After request PolledWatches:: @@ -2281,11 +2281,11 @@ FsWatchesRecursive:: /user/username/projects/myproject/random: {} -Info 114 [16:04:01.000] response: +Info 114 [00:04:01.000] response: { "responseRequired": false } -Info 115 [16:04:02.000] request: +Info 115 [00:04:02.000] request: { "seq": 0, "type": "request", @@ -2330,24 +2330,24 @@ FsWatchesRecursive:: /user/username/projects/myproject/random: {} -Info 116 [16:04:03.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/main/main.ts 500 undefined WatchType: Closed Script info -Info 117 [16:04:04.000] Project '/user/username/projects/myproject/main/tsconfig.json' (Configured) -Info 117 [16:04:05.000] Files (3) +Info 116 [00:04:03.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/main/main.ts 500 undefined WatchType: Closed Script info +Info 117 [00:04:04.000] Project '/user/username/projects/myproject/main/tsconfig.json' (Configured) +Info 117 [00:04:05.000] Files (3) -Info 117 [16:04:06.000] ----------------------------------------------- -Info 117 [16:04:07.000] Project '/user/username/projects/myproject/dependency/tsconfig.json' (Configured) -Info 117 [16:04:08.000] Files (2) +Info 117 [00:04:06.000] ----------------------------------------------- +Info 117 [00:04:07.000] Project '/user/username/projects/myproject/dependency/tsconfig.json' (Configured) +Info 117 [00:04:08.000] Files (2) -Info 117 [16:04:09.000] ----------------------------------------------- -Info 117 [16:04:10.000] Project '/user/username/projects/myproject/random/tsconfig.json' (Configured) -Info 117 [16:04:11.000] Files (2) +Info 117 [00:04:09.000] ----------------------------------------------- +Info 117 [00:04:10.000] Project '/user/username/projects/myproject/random/tsconfig.json' (Configured) +Info 117 [00:04:11.000] Files (2) -Info 117 [16:04:12.000] ----------------------------------------------- -Info 117 [16:04:13.000] Open files: -Info 117 [16:04:14.000] FileName: /user/username/projects/myproject/dependency/FnS.ts ProjectRootPath: undefined -Info 117 [16:04:15.000] Projects: /user/username/projects/myproject/dependency/tsconfig.json -Info 117 [16:04:16.000] FileName: /user/username/projects/myproject/random/random.ts ProjectRootPath: undefined -Info 117 [16:04:17.000] Projects: /user/username/projects/myproject/random/tsconfig.json +Info 117 [00:04:12.000] ----------------------------------------------- +Info 117 [00:04:13.000] Open files: +Info 117 [00:04:14.000] FileName: /user/username/projects/myproject/dependency/FnS.ts ProjectRootPath: undefined +Info 117 [00:04:15.000] Projects: /user/username/projects/myproject/dependency/tsconfig.json +Info 117 [00:04:16.000] FileName: /user/username/projects/myproject/random/random.ts ProjectRootPath: undefined +Info 117 [00:04:17.000] Projects: /user/username/projects/myproject/random/tsconfig.json After request PolledWatches:: @@ -2386,11 +2386,11 @@ FsWatchesRecursive:: /user/username/projects/myproject/random: {} -Info 117 [16:04:18.000] response: +Info 117 [00:04:18.000] response: { "responseRequired": false } -Info 118 [16:04:19.000] request: +Info 118 [00:04:19.000] request: { "seq": 0, "type": "request", @@ -2437,22 +2437,22 @@ FsWatchesRecursive:: /user/username/projects/myproject/random: {} -Info 119 [16:04:20.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/dependency/FnS.ts 500 undefined WatchType: Closed Script info -Info 120 [16:04:21.000] Project '/user/username/projects/myproject/main/tsconfig.json' (Configured) -Info 120 [16:04:22.000] Files (3) +Info 119 [00:04:20.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/dependency/FnS.ts 500 undefined WatchType: Closed Script info +Info 120 [00:04:21.000] Project '/user/username/projects/myproject/main/tsconfig.json' (Configured) +Info 120 [00:04:22.000] Files (3) -Info 120 [16:04:23.000] ----------------------------------------------- -Info 120 [16:04:24.000] Project '/user/username/projects/myproject/dependency/tsconfig.json' (Configured) -Info 120 [16:04:25.000] Files (2) +Info 120 [00:04:23.000] ----------------------------------------------- +Info 120 [00:04:24.000] Project '/user/username/projects/myproject/dependency/tsconfig.json' (Configured) +Info 120 [00:04:25.000] Files (2) -Info 120 [16:04:26.000] ----------------------------------------------- -Info 120 [16:04:27.000] Project '/user/username/projects/myproject/random/tsconfig.json' (Configured) -Info 120 [16:04:28.000] Files (2) +Info 120 [00:04:26.000] ----------------------------------------------- +Info 120 [00:04:27.000] Project '/user/username/projects/myproject/random/tsconfig.json' (Configured) +Info 120 [00:04:28.000] Files (2) -Info 120 [16:04:29.000] ----------------------------------------------- -Info 120 [16:04:30.000] Open files: -Info 120 [16:04:31.000] FileName: /user/username/projects/myproject/random/random.ts ProjectRootPath: undefined -Info 120 [16:04:32.000] Projects: /user/username/projects/myproject/random/tsconfig.json +Info 120 [00:04:29.000] ----------------------------------------------- +Info 120 [00:04:30.000] Open files: +Info 120 [00:04:31.000] FileName: /user/username/projects/myproject/random/random.ts ProjectRootPath: undefined +Info 120 [00:04:32.000] Projects: /user/username/projects/myproject/random/tsconfig.json After request PolledWatches:: @@ -2493,11 +2493,11 @@ FsWatchesRecursive:: /user/username/projects/myproject/random: {} -Info 120 [16:04:33.000] response: +Info 120 [00:04:33.000] response: { "responseRequired": false } -Info 121 [16:04:34.000] request: +Info 121 [00:04:34.000] request: { "seq": 0, "type": "request", @@ -2546,20 +2546,20 @@ FsWatchesRecursive:: /user/username/projects/myproject/random: {} -Info 122 [16:04:35.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/random/random.ts 500 undefined WatchType: Closed Script info -Info 123 [16:04:36.000] Project '/user/username/projects/myproject/main/tsconfig.json' (Configured) -Info 123 [16:04:37.000] Files (3) +Info 122 [00:04:35.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/random/random.ts 500 undefined WatchType: Closed Script info +Info 123 [00:04:36.000] Project '/user/username/projects/myproject/main/tsconfig.json' (Configured) +Info 123 [00:04:37.000] Files (3) -Info 123 [16:04:38.000] ----------------------------------------------- -Info 123 [16:04:39.000] Project '/user/username/projects/myproject/dependency/tsconfig.json' (Configured) -Info 123 [16:04:40.000] Files (2) +Info 123 [00:04:38.000] ----------------------------------------------- +Info 123 [00:04:39.000] Project '/user/username/projects/myproject/dependency/tsconfig.json' (Configured) +Info 123 [00:04:40.000] Files (2) -Info 123 [16:04:41.000] ----------------------------------------------- -Info 123 [16:04:42.000] Project '/user/username/projects/myproject/random/tsconfig.json' (Configured) -Info 123 [16:04:43.000] Files (2) +Info 123 [00:04:41.000] ----------------------------------------------- +Info 123 [00:04:42.000] Project '/user/username/projects/myproject/random/tsconfig.json' (Configured) +Info 123 [00:04:43.000] Files (2) -Info 123 [16:04:44.000] ----------------------------------------------- -Info 123 [16:04:45.000] Open files: +Info 123 [00:04:44.000] ----------------------------------------------- +Info 123 [00:04:45.000] Open files: After request PolledWatches:: @@ -2602,11 +2602,11 @@ FsWatchesRecursive:: /user/username/projects/myproject/random: {} -Info 123 [16:04:46.000] response: +Info 123 [00:04:46.000] response: { "responseRequired": false } -Info 124 [16:04:47.000] request: +Info 124 [00:04:47.000] request: { "seq": 0, "type": "request", @@ -2657,12 +2657,12 @@ FsWatchesRecursive:: /user/username/projects/myproject/random: {} -Info 125 [16:04:48.000] FileWatcher:: Close:: WatchInfo: /user/username/projects/myproject/random/random.ts 500 undefined WatchType: Closed Script info -Info 126 [16:04:49.000] Search path: /user/username/projects/myproject/random -Info 127 [16:04:50.000] For info: /user/username/projects/myproject/random/random.ts :: Config file name: /user/username/projects/myproject/random/tsconfig.json -Info 128 [16:04:51.000] `remove Project:: -Info 129 [16:04:52.000] Project '/user/username/projects/myproject/main/tsconfig.json' (Configured) -Info 130 [16:04:53.000] Files (3) +Info 125 [00:04:48.000] FileWatcher:: Close:: WatchInfo: /user/username/projects/myproject/random/random.ts 500 undefined WatchType: Closed Script info +Info 126 [00:04:49.000] Search path: /user/username/projects/myproject/random +Info 127 [00:04:50.000] For info: /user/username/projects/myproject/random/random.ts :: Config file name: /user/username/projects/myproject/random/tsconfig.json +Info 128 [00:04:51.000] `remove Project:: +Info 129 [00:04:52.000] Project '/user/username/projects/myproject/main/tsconfig.json' (Configured) +Info 130 [00:04:53.000] Files (3) /a/lib/lib.d.ts /user/username/projects/myproject/decls/fns.d.ts /user/username/projects/myproject/main/main.ts @@ -2675,19 +2675,19 @@ Info 130 [16:04:53.000] Files (3) main.ts Matched by default include pattern '**/*' -Info 131 [16:04:54.000] ----------------------------------------------- -Info 132 [16:04:55.000] DirectoryWatcher:: Close:: WatchInfo: /user/username/projects/myproject/main 1 undefined Config: /user/username/projects/myproject/main/tsconfig.json WatchType: Wild card directory -Info 133 [16:04:56.000] 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 134 [16:04:57.000] FileWatcher:: Close:: WatchInfo: /user/username/projects/myproject/main/tsconfig.json 2000 undefined Project: /user/username/projects/myproject/main/tsconfig.json WatchType: Config file -Info 135 [16:04:58.000] DirectoryWatcher:: Close:: WatchInfo: /user/username/projects/myproject/decls 1 undefined Project: /user/username/projects/myproject/main/tsconfig.json WatchType: Failed Lookup Locations -Info 136 [16:04:59.000] 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 137 [16:05:00.000] 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 138 [16:05:01.000] 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 139 [16:05:02.000] DirectoryWatcher:: Close:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/main/tsconfig.json WatchType: Type roots -Info 140 [16:05:03.000] 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 141 [16:05:04.000] `remove Project:: -Info 142 [16:05:05.000] Project '/user/username/projects/myproject/dependency/tsconfig.json' (Configured) -Info 143 [16:05:06.000] Files (2) +Info 131 [00:04:54.000] ----------------------------------------------- +Info 132 [00:04:55.000] DirectoryWatcher:: Close:: WatchInfo: /user/username/projects/myproject/main 1 undefined Config: /user/username/projects/myproject/main/tsconfig.json WatchType: Wild card directory +Info 133 [00:04:56.000] 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 134 [00:04:57.000] FileWatcher:: Close:: WatchInfo: /user/username/projects/myproject/main/tsconfig.json 2000 undefined Project: /user/username/projects/myproject/main/tsconfig.json WatchType: Config file +Info 135 [00:04:58.000] DirectoryWatcher:: Close:: WatchInfo: /user/username/projects/myproject/decls 1 undefined Project: /user/username/projects/myproject/main/tsconfig.json WatchType: Failed Lookup Locations +Info 136 [00:04:59.000] 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 137 [00:05:00.000] 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 138 [00:05:01.000] 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 139 [00:05:02.000] DirectoryWatcher:: Close:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/main/tsconfig.json WatchType: Type roots +Info 140 [00:05:03.000] 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 141 [00:05:04.000] `remove Project:: +Info 142 [00:05:05.000] Project '/user/username/projects/myproject/dependency/tsconfig.json' (Configured) +Info 143 [00:05:06.000] Files (2) /a/lib/lib.d.ts /user/username/projects/myproject/dependency/FnS.ts @@ -2697,25 +2697,25 @@ Info 143 [16:05:06.000] Files (2) FnS.ts Matched by default include pattern '**/*' -Info 144 [16:05:07.000] ----------------------------------------------- -Info 145 [16:05:08.000] DirectoryWatcher:: Close:: WatchInfo: /user/username/projects/myproject/dependency 1 undefined Config: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Wild card directory -Info 146 [16:05:09.000] 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 147 [16:05:10.000] FileWatcher:: Close:: WatchInfo: /user/username/projects/myproject/dependency/tsconfig.json 2000 undefined Project: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Config file -Info 148 [16:05:11.000] 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 149 [16:05:12.000] 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 150 [16:05:13.000] DirectoryWatcher:: Close:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Type roots -Info 151 [16:05:14.000] 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 152 [16:05:15.000] FileWatcher:: Close:: WatchInfo: /user/username/projects/myproject/main/main.ts 500 undefined WatchType: Closed Script info -Info 153 [16:05:16.000] FileWatcher:: Close:: WatchInfo: /user/username/projects/myproject/decls/fns.d.ts 500 undefined WatchType: Closed Script info -Info 154 [16:05:17.000] FileWatcher:: Close:: WatchInfo: /user/username/projects/myproject/decls/FnS.d.ts.map 2000 undefined WatchType: Missing source map file -Info 155 [16:05:18.000] FileWatcher:: Close:: WatchInfo: /user/username/projects/myproject/dependency/FnS.ts 500 undefined WatchType: Closed Script info -Info 156 [16:05:19.000] Project '/user/username/projects/myproject/random/tsconfig.json' (Configured) -Info 156 [16:05:20.000] Files (2) - -Info 156 [16:05:21.000] ----------------------------------------------- -Info 156 [16:05:22.000] Open files: -Info 156 [16:05:23.000] FileName: /user/username/projects/myproject/random/random.ts ProjectRootPath: undefined -Info 156 [16:05:24.000] Projects: /user/username/projects/myproject/random/tsconfig.json +Info 144 [00:05:07.000] ----------------------------------------------- +Info 145 [00:05:08.000] DirectoryWatcher:: Close:: WatchInfo: /user/username/projects/myproject/dependency 1 undefined Config: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Wild card directory +Info 146 [00:05:09.000] 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 147 [00:05:10.000] FileWatcher:: Close:: WatchInfo: /user/username/projects/myproject/dependency/tsconfig.json 2000 undefined Project: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Config file +Info 148 [00:05:11.000] 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 149 [00:05:12.000] 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 150 [00:05:13.000] DirectoryWatcher:: Close:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Type roots +Info 151 [00:05:14.000] 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 152 [00:05:15.000] FileWatcher:: Close:: WatchInfo: /user/username/projects/myproject/main/main.ts 500 undefined WatchType: Closed Script info +Info 153 [00:05:16.000] FileWatcher:: Close:: WatchInfo: /user/username/projects/myproject/decls/fns.d.ts 500 undefined WatchType: Closed Script info +Info 154 [00:05:17.000] FileWatcher:: Close:: WatchInfo: /user/username/projects/myproject/decls/FnS.d.ts.map 2000 undefined WatchType: Missing source map file +Info 155 [00:05:18.000] FileWatcher:: Close:: WatchInfo: /user/username/projects/myproject/dependency/FnS.ts 500 undefined WatchType: Closed Script info +Info 156 [00:05:19.000] Project '/user/username/projects/myproject/random/tsconfig.json' (Configured) +Info 156 [00:05:20.000] Files (2) + +Info 156 [00:05:21.000] ----------------------------------------------- +Info 156 [00:05:22.000] Open files: +Info 156 [00:05:23.000] FileName: /user/username/projects/myproject/random/random.ts ProjectRootPath: undefined +Info 156 [00:05:24.000] Projects: /user/username/projects/myproject/random/tsconfig.json After request PolledWatches:: @@ -2734,7 +2734,7 @@ FsWatchesRecursive:: /user/username/projects/myproject/random: {} -Info 156 [16:05:25.000] response: +Info 156 [00:05:25.000] response: { "responseRequired": false } \ No newline at end of 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 351ceb23dd6e1..dd10603fc59a7 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 @@ -1,5 +1,5 @@ -Info 0 [16:01:04.000] Provided types map file "/a/lib/typesMap.json" doesn't exist -Info 1 [16:01:05.000] request: +Info 0 [00:01:04.000] Provided types map file "/a/lib/typesMap.json" doesn't exist +Info 1 [00:01:05.000] request: { "seq": 0, "type": "request", @@ -197,11 +197,11 @@ FsWatches:: FsWatchesRecursive:: -Info 2 [16:01:06.000] Search path: /user/username/projects/myproject/main -Info 3 [16:01:07.000] For info: /user/username/projects/myproject/main/main.ts :: Config file name: /user/username/projects/myproject/main/tsconfig.json -Info 4 [16:01:08.000] Creating configuration project /user/username/projects/myproject/main/tsconfig.json -Info 5 [16:01:09.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/main/tsconfig.json 2000 undefined Project: /user/username/projects/myproject/main/tsconfig.json WatchType: Config file -Info 6 [16:01:10.000] Config: /user/username/projects/myproject/main/tsconfig.json : { +Info 2 [00:01:06.000] Search path: /user/username/projects/myproject/main +Info 3 [00:01:07.000] For info: /user/username/projects/myproject/main/main.ts :: Config file name: /user/username/projects/myproject/main/tsconfig.json +Info 4 [00:01:08.000] Creating configuration project /user/username/projects/myproject/main/tsconfig.json +Info 5 [00:01:09.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/main/tsconfig.json 2000 undefined Project: /user/username/projects/myproject/main/tsconfig.json WatchType: Config file +Info 6 [00:01:10.000] Config: /user/username/projects/myproject/main/tsconfig.json : { "rootNames": [ "/user/username/projects/myproject/main/main.ts" ], @@ -211,21 +211,21 @@ Info 6 [16:01:10.000] Config: /user/username/projects/myproject/main/tsconfig "configFilePath": "/user/username/projects/myproject/main/tsconfig.json" } } -Info 7 [16:01:11.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/main 1 undefined Config: /user/username/projects/myproject/main/tsconfig.json WatchType: Wild card directory -Info 8 [16:01:12.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/main 1 undefined Config: /user/username/projects/myproject/main/tsconfig.json WatchType: Wild card directory -Info 9 [16:01:13.000] Plugins were requested but not running in environment that supports 'require'. Nothing will be loaded -Info 10 [16:01:14.000] Starting updateGraphWorker: Project: /user/username/projects/myproject/main/tsconfig.json -Info 11 [16:01:15.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/decls 1 undefined Project: /user/username/projects/myproject/main/tsconfig.json WatchType: Failed Lookup Locations -Info 12 [16:01:16.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/decls 1 undefined Project: /user/username/projects/myproject/main/tsconfig.json WatchType: Failed Lookup Locations -Info 13 [16:01:17.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/decls/fns.d.ts 500 undefined WatchType: Closed Script info -Info 14 [16:01:18.000] FileWatcher:: Added:: WatchInfo: /a/lib/lib.d.ts 500 undefined WatchType: Closed Script info -Info 15 [16:01:19.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/main/node_modules/@types 1 undefined Project: /user/username/projects/myproject/main/tsconfig.json WatchType: Type roots -Info 16 [16:01:20.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/main/node_modules/@types 1 undefined Project: /user/username/projects/myproject/main/tsconfig.json WatchType: Type roots -Info 17 [16:01:21.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/main/tsconfig.json WatchType: Type roots -Info 18 [16:01:22.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/main/tsconfig.json WatchType: Type roots -Info 19 [16:01:23.000] Finishing updateGraphWorker: Project: /user/username/projects/myproject/main/tsconfig.json Version: 1 structureChanged: true structureIsReused:: Not Elapsed:: *ms -Info 20 [16:01:24.000] Project '/user/username/projects/myproject/main/tsconfig.json' (Configured) -Info 21 [16:01:25.000] Files (3) +Info 7 [00:01:11.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/main 1 undefined Config: /user/username/projects/myproject/main/tsconfig.json WatchType: Wild card directory +Info 8 [00:01:12.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/main 1 undefined Config: /user/username/projects/myproject/main/tsconfig.json WatchType: Wild card directory +Info 9 [00:01:13.000] Plugins were requested but not running in environment that supports 'require'. Nothing will be loaded +Info 10 [00:01:14.000] Starting updateGraphWorker: Project: /user/username/projects/myproject/main/tsconfig.json +Info 11 [00:01:15.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/decls 1 undefined Project: /user/username/projects/myproject/main/tsconfig.json WatchType: Failed Lookup Locations +Info 12 [00:01:16.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/decls 1 undefined Project: /user/username/projects/myproject/main/tsconfig.json WatchType: Failed Lookup Locations +Info 13 [00:01:17.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/decls/fns.d.ts 500 undefined WatchType: Closed Script info +Info 14 [00:01:18.000] FileWatcher:: Added:: WatchInfo: /a/lib/lib.d.ts 500 undefined WatchType: Closed Script info +Info 15 [00:01:19.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/main/node_modules/@types 1 undefined Project: /user/username/projects/myproject/main/tsconfig.json WatchType: Type roots +Info 16 [00:01:20.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/main/node_modules/@types 1 undefined Project: /user/username/projects/myproject/main/tsconfig.json WatchType: Type roots +Info 17 [00:01:21.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/main/tsconfig.json WatchType: Type roots +Info 18 [00:01:22.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/main/tsconfig.json WatchType: Type roots +Info 19 [00:01:23.000] Finishing updateGraphWorker: Project: /user/username/projects/myproject/main/tsconfig.json Version: 1 structureChanged: true structureIsReused:: Not Elapsed:: *ms +Info 20 [00:01:24.000] Project '/user/username/projects/myproject/main/tsconfig.json' (Configured) +Info 21 [00:01:25.000] Files (3) /a/lib/lib.d.ts /user/username/projects/myproject/decls/fns.d.ts /user/username/projects/myproject/main/main.ts @@ -238,16 +238,16 @@ Info 21 [16:01:25.000] Files (3) main.ts Matched by default include pattern '**/*' -Info 22 [16:01:26.000] ----------------------------------------------- -Info 23 [16:01:27.000] Search path: /user/username/projects/myproject/main -Info 24 [16:01:28.000] For info: /user/username/projects/myproject/main/tsconfig.json :: No config files found. -Info 25 [16:01:29.000] Project '/user/username/projects/myproject/main/tsconfig.json' (Configured) -Info 25 [16:01:30.000] Files (3) +Info 22 [00:01:26.000] ----------------------------------------------- +Info 23 [00:01:27.000] Search path: /user/username/projects/myproject/main +Info 24 [00:01:28.000] For info: /user/username/projects/myproject/main/tsconfig.json :: No config files found. +Info 25 [00:01:29.000] Project '/user/username/projects/myproject/main/tsconfig.json' (Configured) +Info 25 [00:01:30.000] Files (3) -Info 25 [16:01:31.000] ----------------------------------------------- -Info 25 [16:01:32.000] Open files: -Info 25 [16:01:33.000] FileName: /user/username/projects/myproject/main/main.ts ProjectRootPath: undefined -Info 25 [16:01:34.000] Projects: /user/username/projects/myproject/main/tsconfig.json +Info 25 [00:01:31.000] ----------------------------------------------- +Info 25 [00:01:32.000] Open files: +Info 25 [00:01:33.000] FileName: /user/username/projects/myproject/main/main.ts ProjectRootPath: undefined +Info 25 [00:01:34.000] Projects: /user/username/projects/myproject/main/tsconfig.json After request PolledWatches:: @@ -270,11 +270,11 @@ FsWatchesRecursive:: /user/username/projects/myproject/decls: {} -Info 25 [16:01:35.000] response: +Info 25 [00:01:35.000] response: { "responseRequired": false } -Info 26 [16:01:36.000] request: +Info 26 [00:01:36.000] request: { "seq": 0, "type": "request", @@ -305,11 +305,11 @@ FsWatchesRecursive:: /user/username/projects/myproject/decls: {} -Info 27 [16:01:37.000] Search path: /user/username/projects/myproject/dependency -Info 28 [16:01:38.000] For info: /user/username/projects/myproject/dependency/FnS.ts :: Config file name: /user/username/projects/myproject/dependency/tsconfig.json -Info 29 [16:01:39.000] Creating configuration project /user/username/projects/myproject/dependency/tsconfig.json -Info 30 [16:01:40.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/dependency/tsconfig.json 2000 undefined Project: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Config file -Info 31 [16:01:41.000] Config: /user/username/projects/myproject/dependency/tsconfig.json : { +Info 27 [00:01:37.000] Search path: /user/username/projects/myproject/dependency +Info 28 [00:01:38.000] For info: /user/username/projects/myproject/dependency/FnS.ts :: Config file name: /user/username/projects/myproject/dependency/tsconfig.json +Info 29 [00:01:39.000] Creating configuration project /user/username/projects/myproject/dependency/tsconfig.json +Info 30 [00:01:40.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/dependency/tsconfig.json 2000 undefined Project: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Config file +Info 31 [00:01:41.000] Config: /user/username/projects/myproject/dependency/tsconfig.json : { "rootNames": [ "/user/username/projects/myproject/dependency/FnS.ts" ], @@ -320,17 +320,17 @@ Info 31 [16:01:41.000] Config: /user/username/projects/myproject/dependency/ts "configFilePath": "/user/username/projects/myproject/dependency/tsconfig.json" } } -Info 32 [16:01:42.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/dependency 1 undefined Config: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Wild card directory -Info 33 [16:01:43.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/dependency 1 undefined Config: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Wild card directory -Info 34 [16:01:44.000] Plugins were requested but not running in environment that supports 'require'. Nothing will be loaded -Info 35 [16:01:45.000] Starting updateGraphWorker: Project: /user/username/projects/myproject/dependency/tsconfig.json -Info 36 [16:01:46.000] 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 37 [16:01:47.000] 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 38 [16:01:48.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Type roots -Info 39 [16:01:49.000] 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 40 [16:01:50.000] Finishing updateGraphWorker: Project: /user/username/projects/myproject/dependency/tsconfig.json Version: 1 structureChanged: true structureIsReused:: Not Elapsed:: *ms -Info 41 [16:01:51.000] Project '/user/username/projects/myproject/dependency/tsconfig.json' (Configured) -Info 42 [16:01:52.000] Files (2) +Info 32 [00:01:42.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/dependency 1 undefined Config: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Wild card directory +Info 33 [00:01:43.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/dependency 1 undefined Config: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Wild card directory +Info 34 [00:01:44.000] Plugins were requested but not running in environment that supports 'require'. Nothing will be loaded +Info 35 [00:01:45.000] Starting updateGraphWorker: Project: /user/username/projects/myproject/dependency/tsconfig.json +Info 36 [00:01:46.000] 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 37 [00:01:47.000] 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 38 [00:01:48.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Type roots +Info 39 [00:01:49.000] 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 40 [00:01:50.000] Finishing updateGraphWorker: Project: /user/username/projects/myproject/dependency/tsconfig.json Version: 1 structureChanged: true structureIsReused:: Not Elapsed:: *ms +Info 41 [00:01:51.000] Project '/user/username/projects/myproject/dependency/tsconfig.json' (Configured) +Info 42 [00:01:52.000] Files (2) /a/lib/lib.d.ts /user/username/projects/myproject/dependency/FnS.ts @@ -340,22 +340,22 @@ Info 42 [16:01:52.000] Files (2) FnS.ts Matched by default include pattern '**/*' -Info 43 [16:01:53.000] ----------------------------------------------- -Info 44 [16:01:54.000] Search path: /user/username/projects/myproject/dependency -Info 45 [16:01:55.000] For info: /user/username/projects/myproject/dependency/tsconfig.json :: No config files found. -Info 46 [16:01:56.000] Project '/user/username/projects/myproject/main/tsconfig.json' (Configured) -Info 46 [16:01:57.000] Files (3) - -Info 46 [16:01:58.000] ----------------------------------------------- -Info 46 [16:01:59.000] Project '/user/username/projects/myproject/dependency/tsconfig.json' (Configured) -Info 46 [16:02:00.000] Files (2) - -Info 46 [16:02:01.000] ----------------------------------------------- -Info 46 [16:02:02.000] Open files: -Info 46 [16:02:03.000] FileName: /user/username/projects/myproject/main/main.ts ProjectRootPath: undefined -Info 46 [16:02:04.000] Projects: /user/username/projects/myproject/main/tsconfig.json -Info 46 [16:02:05.000] FileName: /user/username/projects/myproject/dependency/FnS.ts ProjectRootPath: undefined -Info 46 [16:02:06.000] Projects: /user/username/projects/myproject/dependency/tsconfig.json +Info 43 [00:01:53.000] ----------------------------------------------- +Info 44 [00:01:54.000] Search path: /user/username/projects/myproject/dependency +Info 45 [00:01:55.000] For info: /user/username/projects/myproject/dependency/tsconfig.json :: No config files found. +Info 46 [00:01:56.000] Project '/user/username/projects/myproject/main/tsconfig.json' (Configured) +Info 46 [00:01:57.000] Files (3) + +Info 46 [00:01:58.000] ----------------------------------------------- +Info 46 [00:01:59.000] Project '/user/username/projects/myproject/dependency/tsconfig.json' (Configured) +Info 46 [00:02:00.000] Files (2) + +Info 46 [00:02:01.000] ----------------------------------------------- +Info 46 [00:02:02.000] Open files: +Info 46 [00:02:03.000] FileName: /user/username/projects/myproject/main/main.ts ProjectRootPath: undefined +Info 46 [00:02:04.000] Projects: /user/username/projects/myproject/main/tsconfig.json +Info 46 [00:02:05.000] FileName: /user/username/projects/myproject/dependency/FnS.ts ProjectRootPath: undefined +Info 46 [00:02:06.000] Projects: /user/username/projects/myproject/dependency/tsconfig.json After request PolledWatches:: @@ -384,11 +384,11 @@ FsWatchesRecursive:: /user/username/projects/myproject/dependency: {} -Info 46 [16:02:07.000] response: +Info 46 [00:02:07.000] response: { "responseRequired": false } -Info 47 [16:02:08.000] request: +Info 47 [00:02:08.000] request: { "seq": 0, "type": "request", @@ -425,11 +425,11 @@ FsWatchesRecursive:: /user/username/projects/myproject/dependency: {} -Info 48 [16:02:09.000] Search path: /user/username/projects/myproject/random -Info 49 [16:02:10.000] For info: /user/username/projects/myproject/random/random.ts :: Config file name: /user/username/projects/myproject/random/tsconfig.json -Info 50 [16:02:11.000] Creating configuration project /user/username/projects/myproject/random/tsconfig.json -Info 51 [16:02:12.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/random/tsconfig.json 2000 undefined Project: /user/username/projects/myproject/random/tsconfig.json WatchType: Config file -Info 52 [16:02:13.000] Config: /user/username/projects/myproject/random/tsconfig.json : { +Info 48 [00:02:09.000] Search path: /user/username/projects/myproject/random +Info 49 [00:02:10.000] For info: /user/username/projects/myproject/random/random.ts :: Config file name: /user/username/projects/myproject/random/tsconfig.json +Info 50 [00:02:11.000] Creating configuration project /user/username/projects/myproject/random/tsconfig.json +Info 51 [00:02:12.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/random/tsconfig.json 2000 undefined Project: /user/username/projects/myproject/random/tsconfig.json WatchType: Config file +Info 52 [00:02:13.000] Config: /user/username/projects/myproject/random/tsconfig.json : { "rootNames": [ "/user/username/projects/myproject/random/random.ts" ], @@ -437,17 +437,17 @@ Info 52 [16:02:13.000] Config: /user/username/projects/myproject/random/tsconf "configFilePath": "/user/username/projects/myproject/random/tsconfig.json" } } -Info 53 [16:02:14.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/random 1 undefined Config: /user/username/projects/myproject/random/tsconfig.json WatchType: Wild card directory -Info 54 [16:02:15.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/random 1 undefined Config: /user/username/projects/myproject/random/tsconfig.json WatchType: Wild card directory -Info 55 [16:02:16.000] Plugins were requested but not running in environment that supports 'require'. Nothing will be loaded -Info 56 [16:02:17.000] Starting updateGraphWorker: Project: /user/username/projects/myproject/random/tsconfig.json -Info 57 [16:02:18.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/random/node_modules/@types 1 undefined Project: /user/username/projects/myproject/random/tsconfig.json WatchType: Type roots -Info 58 [16:02:19.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/random/node_modules/@types 1 undefined Project: /user/username/projects/myproject/random/tsconfig.json WatchType: Type roots -Info 59 [16:02:20.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/random/tsconfig.json WatchType: Type roots -Info 60 [16:02:21.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/random/tsconfig.json WatchType: Type roots -Info 61 [16:02:22.000] Finishing updateGraphWorker: Project: /user/username/projects/myproject/random/tsconfig.json Version: 1 structureChanged: true structureIsReused:: Not Elapsed:: *ms -Info 62 [16:02:23.000] Project '/user/username/projects/myproject/random/tsconfig.json' (Configured) -Info 63 [16:02:24.000] Files (2) +Info 53 [00:02:14.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/random 1 undefined Config: /user/username/projects/myproject/random/tsconfig.json WatchType: Wild card directory +Info 54 [00:02:15.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/random 1 undefined Config: /user/username/projects/myproject/random/tsconfig.json WatchType: Wild card directory +Info 55 [00:02:16.000] Plugins were requested but not running in environment that supports 'require'. Nothing will be loaded +Info 56 [00:02:17.000] Starting updateGraphWorker: Project: /user/username/projects/myproject/random/tsconfig.json +Info 57 [00:02:18.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/random/node_modules/@types 1 undefined Project: /user/username/projects/myproject/random/tsconfig.json WatchType: Type roots +Info 58 [00:02:19.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/random/node_modules/@types 1 undefined Project: /user/username/projects/myproject/random/tsconfig.json WatchType: Type roots +Info 59 [00:02:20.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/random/tsconfig.json WatchType: Type roots +Info 60 [00:02:21.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/random/tsconfig.json WatchType: Type roots +Info 61 [00:02:22.000] Finishing updateGraphWorker: Project: /user/username/projects/myproject/random/tsconfig.json Version: 1 structureChanged: true structureIsReused:: Not Elapsed:: *ms +Info 62 [00:02:23.000] Project '/user/username/projects/myproject/random/tsconfig.json' (Configured) +Info 63 [00:02:24.000] Files (2) /a/lib/lib.d.ts /user/username/projects/myproject/random/random.ts @@ -457,26 +457,26 @@ Info 63 [16:02:24.000] Files (2) random.ts Matched by default include pattern '**/*' -Info 64 [16:02:25.000] ----------------------------------------------- -Info 65 [16:02:26.000] Project '/user/username/projects/myproject/main/tsconfig.json' (Configured) -Info 65 [16:02:27.000] Files (3) - -Info 65 [16:02:28.000] ----------------------------------------------- -Info 65 [16:02:29.000] Project '/user/username/projects/myproject/dependency/tsconfig.json' (Configured) -Info 65 [16:02:30.000] Files (2) - -Info 65 [16:02:31.000] ----------------------------------------------- -Info 65 [16:02:32.000] Project '/user/username/projects/myproject/random/tsconfig.json' (Configured) -Info 65 [16:02:33.000] Files (2) - -Info 65 [16:02:34.000] ----------------------------------------------- -Info 65 [16:02:35.000] Open files: -Info 65 [16:02:36.000] FileName: /user/username/projects/myproject/main/main.ts ProjectRootPath: undefined -Info 65 [16:02:37.000] Projects: /user/username/projects/myproject/main/tsconfig.json -Info 65 [16:02:38.000] FileName: /user/username/projects/myproject/dependency/FnS.ts ProjectRootPath: undefined -Info 65 [16:02:39.000] Projects: /user/username/projects/myproject/dependency/tsconfig.json -Info 65 [16:02:40.000] FileName: /user/username/projects/myproject/random/random.ts ProjectRootPath: undefined -Info 65 [16:02:41.000] Projects: /user/username/projects/myproject/random/tsconfig.json +Info 64 [00:02:25.000] ----------------------------------------------- +Info 65 [00:02:26.000] Project '/user/username/projects/myproject/main/tsconfig.json' (Configured) +Info 65 [00:02:27.000] Files (3) + +Info 65 [00:02:28.000] ----------------------------------------------- +Info 65 [00:02:29.000] Project '/user/username/projects/myproject/dependency/tsconfig.json' (Configured) +Info 65 [00:02:30.000] Files (2) + +Info 65 [00:02:31.000] ----------------------------------------------- +Info 65 [00:02:32.000] Project '/user/username/projects/myproject/random/tsconfig.json' (Configured) +Info 65 [00:02:33.000] Files (2) + +Info 65 [00:02:34.000] ----------------------------------------------- +Info 65 [00:02:35.000] Open files: +Info 65 [00:02:36.000] FileName: /user/username/projects/myproject/main/main.ts ProjectRootPath: undefined +Info 65 [00:02:37.000] Projects: /user/username/projects/myproject/main/tsconfig.json +Info 65 [00:02:38.000] FileName: /user/username/projects/myproject/dependency/FnS.ts ProjectRootPath: undefined +Info 65 [00:02:39.000] Projects: /user/username/projects/myproject/dependency/tsconfig.json +Info 65 [00:02:40.000] FileName: /user/username/projects/myproject/random/random.ts ProjectRootPath: undefined +Info 65 [00:02:41.000] Projects: /user/username/projects/myproject/random/tsconfig.json After request PolledWatches:: @@ -511,11 +511,11 @@ FsWatchesRecursive:: /user/username/projects/myproject/random: {} -Info 65 [16:02:42.000] response: +Info 65 [00:02:42.000] response: { "responseRequired": false } -Info 66 [16:02:43.000] request: +Info 66 [00:02:43.000] request: { "command": "definitionAndBoundSpan", "arguments": { @@ -560,7 +560,7 @@ FsWatchesRecursive:: /user/username/projects/myproject/random: {} -Info 67 [16:02:44.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/decls/FnS.d.ts.map 2000 undefined WatchType: Missing source map file +Info 67 [00:02:44.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/decls/FnS.d.ts.map 2000 undefined WatchType: Missing source map file After request PolledWatches:: @@ -597,7 +597,7 @@ FsWatchesRecursive:: /user/username/projects/myproject/random: {} -Info 68 [16:02:45.000] response: +Info 68 [00:02:45.000] response: { "response": { "definitions": [ @@ -634,7 +634,7 @@ Info 68 [16:02:45.000] response: }, "responseRequired": true } -Info 69 [16:02:46.000] request: +Info 69 [00:02:46.000] request: { "command": "definitionAndBoundSpan", "arguments": { @@ -717,7 +717,7 @@ FsWatchesRecursive:: /user/username/projects/myproject/random: {} -Info 70 [16:02:47.000] response: +Info 70 [00:02:47.000] response: { "response": { "definitions": [ @@ -754,7 +754,7 @@ Info 70 [16:02:47.000] response: }, "responseRequired": true } -Info 71 [16:02:48.000] request: +Info 71 [00:02:48.000] request: { "command": "definitionAndBoundSpan", "arguments": { @@ -837,7 +837,7 @@ FsWatchesRecursive:: /user/username/projects/myproject/random: {} -Info 72 [16:02:49.000] response: +Info 72 [00:02:49.000] response: { "response": { "definitions": [ @@ -874,7 +874,7 @@ Info 72 [16:02:49.000] response: }, "responseRequired": true } -Info 73 [16:02:50.000] request: +Info 73 [00:02:50.000] request: { "command": "definitionAndBoundSpan", "arguments": { @@ -957,7 +957,7 @@ FsWatchesRecursive:: /user/username/projects/myproject/random: {} -Info 74 [16:02:51.000] response: +Info 74 [00:02:51.000] response: { "response": { "definitions": [ @@ -994,7 +994,7 @@ Info 74 [16:02:51.000] response: }, "responseRequired": true } -Info 75 [16:02:52.000] request: +Info 75 [00:02:52.000] request: { "command": "definitionAndBoundSpan", "arguments": { @@ -1077,7 +1077,7 @@ FsWatchesRecursive:: /user/username/projects/myproject/random: {} -Info 76 [16:02:53.000] response: +Info 76 [00:02:53.000] response: { "response": { "definitions": [ @@ -1114,7 +1114,7 @@ Info 76 [16:02:53.000] response: }, "responseRequired": true } -Info 77 [16:02:54.000] request: +Info 77 [00:02:54.000] request: { "command": "rename", "arguments": { @@ -1197,7 +1197,7 @@ FsWatchesRecursive:: /user/username/projects/myproject/random: {} -Info 78 [16:02:55.000] response: +Info 78 [00:02:55.000] response: { "response": { "info": { @@ -1245,7 +1245,7 @@ Info 78 [16:02:55.000] response: }, "responseRequired": true } -Info 79 [16:02:56.000] request: +Info 79 [00:02:56.000] request: { "command": "rename", "arguments": { @@ -1328,7 +1328,7 @@ FsWatchesRecursive:: /user/username/projects/myproject/random: {} -Info 80 [16:02:57.000] response: +Info 80 [00:02:57.000] response: { "response": { "info": { @@ -1376,7 +1376,7 @@ Info 80 [16:02:57.000] response: }, "responseRequired": true } -Info 81 [16:02:58.000] request: +Info 81 [00:02:58.000] request: { "command": "rename", "arguments": { @@ -1459,7 +1459,7 @@ FsWatchesRecursive:: /user/username/projects/myproject/random: {} -Info 82 [16:02:59.000] response: +Info 82 [00:02:59.000] response: { "response": { "info": { @@ -1507,7 +1507,7 @@ Info 82 [16:02:59.000] response: }, "responseRequired": true } -Info 83 [16:03:00.000] request: +Info 83 [00:03:00.000] request: { "command": "rename", "arguments": { @@ -1590,7 +1590,7 @@ FsWatchesRecursive:: /user/username/projects/myproject/random: {} -Info 84 [16:03:01.000] response: +Info 84 [00:03:01.000] response: { "response": { "info": { @@ -1638,7 +1638,7 @@ Info 84 [16:03:01.000] response: }, "responseRequired": true } -Info 85 [16:03:02.000] request: +Info 85 [00:03:02.000] request: { "command": "rename", "arguments": { @@ -1721,7 +1721,7 @@ FsWatchesRecursive:: /user/username/projects/myproject/random: {} -Info 86 [16:03:03.000] response: +Info 86 [00:03:03.000] response: { "response": { "info": { @@ -1769,7 +1769,7 @@ Info 86 [16:03:03.000] response: }, "responseRequired": true } -Info 87 [16:03:04.000] request: +Info 87 [00:03:04.000] request: { "seq": 0, "type": "request", @@ -1814,24 +1814,24 @@ FsWatchesRecursive:: /user/username/projects/myproject/random: {} -Info 88 [16:03:05.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/random/random.ts 500 undefined WatchType: Closed Script info -Info 89 [16:03:06.000] Project '/user/username/projects/myproject/main/tsconfig.json' (Configured) -Info 89 [16:03:07.000] Files (3) +Info 88 [00:03:05.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/random/random.ts 500 undefined WatchType: Closed Script info +Info 89 [00:03:06.000] Project '/user/username/projects/myproject/main/tsconfig.json' (Configured) +Info 89 [00:03:07.000] Files (3) -Info 89 [16:03:08.000] ----------------------------------------------- -Info 89 [16:03:09.000] Project '/user/username/projects/myproject/dependency/tsconfig.json' (Configured) -Info 89 [16:03:10.000] Files (2) +Info 89 [00:03:08.000] ----------------------------------------------- +Info 89 [00:03:09.000] Project '/user/username/projects/myproject/dependency/tsconfig.json' (Configured) +Info 89 [00:03:10.000] Files (2) -Info 89 [16:03:11.000] ----------------------------------------------- -Info 89 [16:03:12.000] Project '/user/username/projects/myproject/random/tsconfig.json' (Configured) -Info 89 [16:03:13.000] Files (2) +Info 89 [00:03:11.000] ----------------------------------------------- +Info 89 [00:03:12.000] Project '/user/username/projects/myproject/random/tsconfig.json' (Configured) +Info 89 [00:03:13.000] Files (2) -Info 89 [16:03:14.000] ----------------------------------------------- -Info 89 [16:03:15.000] Open files: -Info 89 [16:03:16.000] FileName: /user/username/projects/myproject/main/main.ts ProjectRootPath: undefined -Info 89 [16:03:17.000] Projects: /user/username/projects/myproject/main/tsconfig.json -Info 89 [16:03:18.000] FileName: /user/username/projects/myproject/dependency/FnS.ts ProjectRootPath: undefined -Info 89 [16:03:19.000] Projects: /user/username/projects/myproject/dependency/tsconfig.json +Info 89 [00:03:14.000] ----------------------------------------------- +Info 89 [00:03:15.000] Open files: +Info 89 [00:03:16.000] FileName: /user/username/projects/myproject/main/main.ts ProjectRootPath: undefined +Info 89 [00:03:17.000] Projects: /user/username/projects/myproject/main/tsconfig.json +Info 89 [00:03:18.000] FileName: /user/username/projects/myproject/dependency/FnS.ts ProjectRootPath: undefined +Info 89 [00:03:19.000] Projects: /user/username/projects/myproject/dependency/tsconfig.json After request PolledWatches:: @@ -1870,11 +1870,11 @@ FsWatchesRecursive:: /user/username/projects/myproject/random: {} -Info 89 [16:03:20.000] response: +Info 89 [00:03:20.000] response: { "responseRequired": false } -Info 90 [16:03:21.000] request: +Info 90 [00:03:21.000] request: { "seq": 0, "type": "request", @@ -1921,28 +1921,28 @@ FsWatchesRecursive:: /user/username/projects/myproject/random: {} -Info 91 [16:03:22.000] FileWatcher:: Close:: WatchInfo: /user/username/projects/myproject/random/random.ts 500 undefined WatchType: Closed Script info -Info 92 [16:03:23.000] Search path: /user/username/projects/myproject/random -Info 93 [16:03:24.000] For info: /user/username/projects/myproject/random/random.ts :: Config file name: /user/username/projects/myproject/random/tsconfig.json -Info 94 [16:03:25.000] Project '/user/username/projects/myproject/main/tsconfig.json' (Configured) -Info 94 [16:03:26.000] Files (3) - -Info 94 [16:03:27.000] ----------------------------------------------- -Info 94 [16:03:28.000] Project '/user/username/projects/myproject/dependency/tsconfig.json' (Configured) -Info 94 [16:03:29.000] Files (2) - -Info 94 [16:03:30.000] ----------------------------------------------- -Info 94 [16:03:31.000] Project '/user/username/projects/myproject/random/tsconfig.json' (Configured) -Info 94 [16:03:32.000] Files (2) - -Info 94 [16:03:33.000] ----------------------------------------------- -Info 94 [16:03:34.000] Open files: -Info 94 [16:03:35.000] FileName: /user/username/projects/myproject/main/main.ts ProjectRootPath: undefined -Info 94 [16:03:36.000] Projects: /user/username/projects/myproject/main/tsconfig.json -Info 94 [16:03:37.000] FileName: /user/username/projects/myproject/dependency/FnS.ts ProjectRootPath: undefined -Info 94 [16:03:38.000] Projects: /user/username/projects/myproject/dependency/tsconfig.json -Info 94 [16:03:39.000] FileName: /user/username/projects/myproject/random/random.ts ProjectRootPath: undefined -Info 94 [16:03:40.000] Projects: /user/username/projects/myproject/random/tsconfig.json +Info 91 [00:03:22.000] FileWatcher:: Close:: WatchInfo: /user/username/projects/myproject/random/random.ts 500 undefined WatchType: Closed Script info +Info 92 [00:03:23.000] Search path: /user/username/projects/myproject/random +Info 93 [00:03:24.000] For info: /user/username/projects/myproject/random/random.ts :: Config file name: /user/username/projects/myproject/random/tsconfig.json +Info 94 [00:03:25.000] Project '/user/username/projects/myproject/main/tsconfig.json' (Configured) +Info 94 [00:03:26.000] Files (3) + +Info 94 [00:03:27.000] ----------------------------------------------- +Info 94 [00:03:28.000] Project '/user/username/projects/myproject/dependency/tsconfig.json' (Configured) +Info 94 [00:03:29.000] Files (2) + +Info 94 [00:03:30.000] ----------------------------------------------- +Info 94 [00:03:31.000] Project '/user/username/projects/myproject/random/tsconfig.json' (Configured) +Info 94 [00:03:32.000] Files (2) + +Info 94 [00:03:33.000] ----------------------------------------------- +Info 94 [00:03:34.000] Open files: +Info 94 [00:03:35.000] FileName: /user/username/projects/myproject/main/main.ts ProjectRootPath: undefined +Info 94 [00:03:36.000] Projects: /user/username/projects/myproject/main/tsconfig.json +Info 94 [00:03:37.000] FileName: /user/username/projects/myproject/dependency/FnS.ts ProjectRootPath: undefined +Info 94 [00:03:38.000] Projects: /user/username/projects/myproject/dependency/tsconfig.json +Info 94 [00:03:39.000] FileName: /user/username/projects/myproject/random/random.ts ProjectRootPath: undefined +Info 94 [00:03:40.000] Projects: /user/username/projects/myproject/random/tsconfig.json After request PolledWatches:: @@ -1979,11 +1979,11 @@ FsWatchesRecursive:: /user/username/projects/myproject/random: {} -Info 94 [16:03:41.000] response: +Info 94 [00:03:41.000] response: { "responseRequired": false } -Info 95 [16:03:42.000] request: +Info 95 [00:03:42.000] request: { "seq": 0, "type": "request", @@ -2028,24 +2028,24 @@ FsWatchesRecursive:: /user/username/projects/myproject/random: {} -Info 96 [16:03:43.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/main/main.ts 500 undefined WatchType: Closed Script info -Info 97 [16:03:44.000] Project '/user/username/projects/myproject/main/tsconfig.json' (Configured) -Info 97 [16:03:45.000] Files (3) +Info 96 [00:03:43.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/main/main.ts 500 undefined WatchType: Closed Script info +Info 97 [00:03:44.000] Project '/user/username/projects/myproject/main/tsconfig.json' (Configured) +Info 97 [00:03:45.000] Files (3) -Info 97 [16:03:46.000] ----------------------------------------------- -Info 97 [16:03:47.000] Project '/user/username/projects/myproject/dependency/tsconfig.json' (Configured) -Info 97 [16:03:48.000] Files (2) +Info 97 [00:03:46.000] ----------------------------------------------- +Info 97 [00:03:47.000] Project '/user/username/projects/myproject/dependency/tsconfig.json' (Configured) +Info 97 [00:03:48.000] Files (2) -Info 97 [16:03:49.000] ----------------------------------------------- -Info 97 [16:03:50.000] Project '/user/username/projects/myproject/random/tsconfig.json' (Configured) -Info 97 [16:03:51.000] Files (2) +Info 97 [00:03:49.000] ----------------------------------------------- +Info 97 [00:03:50.000] Project '/user/username/projects/myproject/random/tsconfig.json' (Configured) +Info 97 [00:03:51.000] Files (2) -Info 97 [16:03:52.000] ----------------------------------------------- -Info 97 [16:03:53.000] Open files: -Info 97 [16:03:54.000] FileName: /user/username/projects/myproject/dependency/FnS.ts ProjectRootPath: undefined -Info 97 [16:03:55.000] Projects: /user/username/projects/myproject/dependency/tsconfig.json -Info 97 [16:03:56.000] FileName: /user/username/projects/myproject/random/random.ts ProjectRootPath: undefined -Info 97 [16:03:57.000] Projects: /user/username/projects/myproject/random/tsconfig.json +Info 97 [00:03:52.000] ----------------------------------------------- +Info 97 [00:03:53.000] Open files: +Info 97 [00:03:54.000] FileName: /user/username/projects/myproject/dependency/FnS.ts ProjectRootPath: undefined +Info 97 [00:03:55.000] Projects: /user/username/projects/myproject/dependency/tsconfig.json +Info 97 [00:03:56.000] FileName: /user/username/projects/myproject/random/random.ts ProjectRootPath: undefined +Info 97 [00:03:57.000] Projects: /user/username/projects/myproject/random/tsconfig.json After request PolledWatches:: @@ -2084,11 +2084,11 @@ FsWatchesRecursive:: /user/username/projects/myproject/random: {} -Info 97 [16:03:58.000] response: +Info 97 [00:03:58.000] response: { "responseRequired": false } -Info 98 [16:03:59.000] request: +Info 98 [00:03:59.000] request: { "seq": 0, "type": "request", @@ -2135,22 +2135,22 @@ FsWatchesRecursive:: /user/username/projects/myproject/random: {} -Info 99 [16:04:00.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/dependency/FnS.ts 500 undefined WatchType: Closed Script info -Info 100 [16:04:01.000] Project '/user/username/projects/myproject/main/tsconfig.json' (Configured) -Info 100 [16:04:02.000] Files (3) +Info 99 [00:04:00.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/dependency/FnS.ts 500 undefined WatchType: Closed Script info +Info 100 [00:04:01.000] Project '/user/username/projects/myproject/main/tsconfig.json' (Configured) +Info 100 [00:04:02.000] Files (3) -Info 100 [16:04:03.000] ----------------------------------------------- -Info 100 [16:04:04.000] Project '/user/username/projects/myproject/dependency/tsconfig.json' (Configured) -Info 100 [16:04:05.000] Files (2) +Info 100 [00:04:03.000] ----------------------------------------------- +Info 100 [00:04:04.000] Project '/user/username/projects/myproject/dependency/tsconfig.json' (Configured) +Info 100 [00:04:05.000] Files (2) -Info 100 [16:04:06.000] ----------------------------------------------- -Info 100 [16:04:07.000] Project '/user/username/projects/myproject/random/tsconfig.json' (Configured) -Info 100 [16:04:08.000] Files (2) +Info 100 [00:04:06.000] ----------------------------------------------- +Info 100 [00:04:07.000] Project '/user/username/projects/myproject/random/tsconfig.json' (Configured) +Info 100 [00:04:08.000] Files (2) -Info 100 [16:04:09.000] ----------------------------------------------- -Info 100 [16:04:10.000] Open files: -Info 100 [16:04:11.000] FileName: /user/username/projects/myproject/random/random.ts ProjectRootPath: undefined -Info 100 [16:04:12.000] Projects: /user/username/projects/myproject/random/tsconfig.json +Info 100 [00:04:09.000] ----------------------------------------------- +Info 100 [00:04:10.000] Open files: +Info 100 [00:04:11.000] FileName: /user/username/projects/myproject/random/random.ts ProjectRootPath: undefined +Info 100 [00:04:12.000] Projects: /user/username/projects/myproject/random/tsconfig.json After request PolledWatches:: @@ -2191,11 +2191,11 @@ FsWatchesRecursive:: /user/username/projects/myproject/random: {} -Info 100 [16:04:13.000] response: +Info 100 [00:04:13.000] response: { "responseRequired": false } -Info 101 [16:04:14.000] request: +Info 101 [00:04:14.000] request: { "seq": 0, "type": "request", @@ -2244,20 +2244,20 @@ FsWatchesRecursive:: /user/username/projects/myproject/random: {} -Info 102 [16:04:15.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/random/random.ts 500 undefined WatchType: Closed Script info -Info 103 [16:04:16.000] Project '/user/username/projects/myproject/main/tsconfig.json' (Configured) -Info 103 [16:04:17.000] Files (3) +Info 102 [00:04:15.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/random/random.ts 500 undefined WatchType: Closed Script info +Info 103 [00:04:16.000] Project '/user/username/projects/myproject/main/tsconfig.json' (Configured) +Info 103 [00:04:17.000] Files (3) -Info 103 [16:04:18.000] ----------------------------------------------- -Info 103 [16:04:19.000] Project '/user/username/projects/myproject/dependency/tsconfig.json' (Configured) -Info 103 [16:04:20.000] Files (2) +Info 103 [00:04:18.000] ----------------------------------------------- +Info 103 [00:04:19.000] Project '/user/username/projects/myproject/dependency/tsconfig.json' (Configured) +Info 103 [00:04:20.000] Files (2) -Info 103 [16:04:21.000] ----------------------------------------------- -Info 103 [16:04:22.000] Project '/user/username/projects/myproject/random/tsconfig.json' (Configured) -Info 103 [16:04:23.000] Files (2) +Info 103 [00:04:21.000] ----------------------------------------------- +Info 103 [00:04:22.000] Project '/user/username/projects/myproject/random/tsconfig.json' (Configured) +Info 103 [00:04:23.000] Files (2) -Info 103 [16:04:24.000] ----------------------------------------------- -Info 103 [16:04:25.000] Open files: +Info 103 [00:04:24.000] ----------------------------------------------- +Info 103 [00:04:25.000] Open files: After request PolledWatches:: @@ -2300,11 +2300,11 @@ FsWatchesRecursive:: /user/username/projects/myproject/random: {} -Info 103 [16:04:26.000] response: +Info 103 [00:04:26.000] response: { "responseRequired": false } -Info 104 [16:04:27.000] request: +Info 104 [00:04:27.000] request: { "seq": 0, "type": "request", @@ -2355,12 +2355,12 @@ FsWatchesRecursive:: /user/username/projects/myproject/random: {} -Info 105 [16:04:28.000] FileWatcher:: Close:: WatchInfo: /user/username/projects/myproject/random/random.ts 500 undefined WatchType: Closed Script info -Info 106 [16:04:29.000] Search path: /user/username/projects/myproject/random -Info 107 [16:04:30.000] For info: /user/username/projects/myproject/random/random.ts :: Config file name: /user/username/projects/myproject/random/tsconfig.json -Info 108 [16:04:31.000] `remove Project:: -Info 109 [16:04:32.000] Project '/user/username/projects/myproject/main/tsconfig.json' (Configured) -Info 110 [16:04:33.000] Files (3) +Info 105 [00:04:28.000] FileWatcher:: Close:: WatchInfo: /user/username/projects/myproject/random/random.ts 500 undefined WatchType: Closed Script info +Info 106 [00:04:29.000] Search path: /user/username/projects/myproject/random +Info 107 [00:04:30.000] For info: /user/username/projects/myproject/random/random.ts :: Config file name: /user/username/projects/myproject/random/tsconfig.json +Info 108 [00:04:31.000] `remove Project:: +Info 109 [00:04:32.000] Project '/user/username/projects/myproject/main/tsconfig.json' (Configured) +Info 110 [00:04:33.000] Files (3) /a/lib/lib.d.ts /user/username/projects/myproject/decls/fns.d.ts /user/username/projects/myproject/main/main.ts @@ -2373,19 +2373,19 @@ Info 110 [16:04:33.000] Files (3) main.ts Matched by default include pattern '**/*' -Info 111 [16:04:34.000] ----------------------------------------------- -Info 112 [16:04:35.000] DirectoryWatcher:: Close:: WatchInfo: /user/username/projects/myproject/main 1 undefined Config: /user/username/projects/myproject/main/tsconfig.json WatchType: Wild card directory -Info 113 [16:04:36.000] 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 114 [16:04:37.000] FileWatcher:: Close:: WatchInfo: /user/username/projects/myproject/main/tsconfig.json 2000 undefined Project: /user/username/projects/myproject/main/tsconfig.json WatchType: Config file -Info 115 [16:04:38.000] DirectoryWatcher:: Close:: WatchInfo: /user/username/projects/myproject/decls 1 undefined Project: /user/username/projects/myproject/main/tsconfig.json WatchType: Failed Lookup Locations -Info 116 [16:04:39.000] 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 117 [16:04:40.000] 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 118 [16:04:41.000] 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 119 [16:04:42.000] DirectoryWatcher:: Close:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/main/tsconfig.json WatchType: Type roots -Info 120 [16:04:43.000] 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 121 [16:04:44.000] `remove Project:: -Info 122 [16:04:45.000] Project '/user/username/projects/myproject/dependency/tsconfig.json' (Configured) -Info 123 [16:04:46.000] Files (2) +Info 111 [00:04:34.000] ----------------------------------------------- +Info 112 [00:04:35.000] DirectoryWatcher:: Close:: WatchInfo: /user/username/projects/myproject/main 1 undefined Config: /user/username/projects/myproject/main/tsconfig.json WatchType: Wild card directory +Info 113 [00:04:36.000] 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 114 [00:04:37.000] FileWatcher:: Close:: WatchInfo: /user/username/projects/myproject/main/tsconfig.json 2000 undefined Project: /user/username/projects/myproject/main/tsconfig.json WatchType: Config file +Info 115 [00:04:38.000] DirectoryWatcher:: Close:: WatchInfo: /user/username/projects/myproject/decls 1 undefined Project: /user/username/projects/myproject/main/tsconfig.json WatchType: Failed Lookup Locations +Info 116 [00:04:39.000] 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 117 [00:04:40.000] 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 118 [00:04:41.000] 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 119 [00:04:42.000] DirectoryWatcher:: Close:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/main/tsconfig.json WatchType: Type roots +Info 120 [00:04:43.000] 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 121 [00:04:44.000] `remove Project:: +Info 122 [00:04:45.000] Project '/user/username/projects/myproject/dependency/tsconfig.json' (Configured) +Info 123 [00:04:46.000] Files (2) /a/lib/lib.d.ts /user/username/projects/myproject/dependency/FnS.ts @@ -2395,25 +2395,25 @@ Info 123 [16:04:46.000] Files (2) FnS.ts Matched by default include pattern '**/*' -Info 124 [16:04:47.000] ----------------------------------------------- -Info 125 [16:04:48.000] DirectoryWatcher:: Close:: WatchInfo: /user/username/projects/myproject/dependency 1 undefined Config: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Wild card directory -Info 126 [16:04:49.000] 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 127 [16:04:50.000] FileWatcher:: Close:: WatchInfo: /user/username/projects/myproject/dependency/tsconfig.json 2000 undefined Project: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Config file -Info 128 [16:04:51.000] 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 129 [16:04:52.000] 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 130 [16:04:53.000] DirectoryWatcher:: Close:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Type roots -Info 131 [16:04:54.000] 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 132 [16:04:55.000] FileWatcher:: Close:: WatchInfo: /user/username/projects/myproject/main/main.ts 500 undefined WatchType: Closed Script info -Info 133 [16:04:56.000] FileWatcher:: Close:: WatchInfo: /user/username/projects/myproject/decls/fns.d.ts 500 undefined WatchType: Closed Script info -Info 134 [16:04:57.000] FileWatcher:: Close:: WatchInfo: /user/username/projects/myproject/decls/FnS.d.ts.map 2000 undefined WatchType: Missing source map file -Info 135 [16:04:58.000] FileWatcher:: Close:: WatchInfo: /user/username/projects/myproject/dependency/FnS.ts 500 undefined WatchType: Closed Script info -Info 136 [16:04:59.000] Project '/user/username/projects/myproject/random/tsconfig.json' (Configured) -Info 136 [16:05:00.000] Files (2) - -Info 136 [16:05:01.000] ----------------------------------------------- -Info 136 [16:05:02.000] Open files: -Info 136 [16:05:03.000] FileName: /user/username/projects/myproject/random/random.ts ProjectRootPath: undefined -Info 136 [16:05:04.000] Projects: /user/username/projects/myproject/random/tsconfig.json +Info 124 [00:04:47.000] ----------------------------------------------- +Info 125 [00:04:48.000] DirectoryWatcher:: Close:: WatchInfo: /user/username/projects/myproject/dependency 1 undefined Config: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Wild card directory +Info 126 [00:04:49.000] 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 127 [00:04:50.000] FileWatcher:: Close:: WatchInfo: /user/username/projects/myproject/dependency/tsconfig.json 2000 undefined Project: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Config file +Info 128 [00:04:51.000] 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 129 [00:04:52.000] 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 130 [00:04:53.000] DirectoryWatcher:: Close:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Type roots +Info 131 [00:04:54.000] 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 132 [00:04:55.000] FileWatcher:: Close:: WatchInfo: /user/username/projects/myproject/main/main.ts 500 undefined WatchType: Closed Script info +Info 133 [00:04:56.000] FileWatcher:: Close:: WatchInfo: /user/username/projects/myproject/decls/fns.d.ts 500 undefined WatchType: Closed Script info +Info 134 [00:04:57.000] FileWatcher:: Close:: WatchInfo: /user/username/projects/myproject/decls/FnS.d.ts.map 2000 undefined WatchType: Missing source map file +Info 135 [00:04:58.000] FileWatcher:: Close:: WatchInfo: /user/username/projects/myproject/dependency/FnS.ts 500 undefined WatchType: Closed Script info +Info 136 [00:04:59.000] Project '/user/username/projects/myproject/random/tsconfig.json' (Configured) +Info 136 [00:05:00.000] Files (2) + +Info 136 [00:05:01.000] ----------------------------------------------- +Info 136 [00:05:02.000] Open files: +Info 136 [00:05:03.000] FileName: /user/username/projects/myproject/random/random.ts ProjectRootPath: undefined +Info 136 [00:05:04.000] Projects: /user/username/projects/myproject/random/tsconfig.json After request PolledWatches:: @@ -2432,7 +2432,7 @@ FsWatchesRecursive:: /user/username/projects/myproject/random: {} -Info 136 [16:05:05.000] response: +Info 136 [00:05:05.000] response: { "responseRequired": false } \ No newline at end of file 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 a6b8e57db4f0c..865dcb1e84c70 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 @@ -1,5 +1,5 @@ -Info 0 [16:01:03.000] Provided types map file "/a/lib/typesMap.json" doesn't exist -Info 1 [16:01:04.000] request: +Info 0 [00:01:03.000] Provided types map file "/a/lib/typesMap.json" doesn't exist +Info 1 [00:01:04.000] request: { "seq": 0, "type": "request", @@ -200,11 +200,11 @@ FsWatches:: FsWatchesRecursive:: -Info 2 [16:01:05.000] Search path: /user/username/projects/myproject/main -Info 3 [16:01:06.000] For info: /user/username/projects/myproject/main/main.ts :: Config file name: /user/username/projects/myproject/main/tsconfig.json -Info 4 [16:01:07.000] Creating configuration project /user/username/projects/myproject/main/tsconfig.json -Info 5 [16:01:08.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/main/tsconfig.json 2000 undefined Project: /user/username/projects/myproject/main/tsconfig.json WatchType: Config file -Info 6 [16:01:09.000] Config: /user/username/projects/myproject/main/tsconfig.json : { +Info 2 [00:01:05.000] Search path: /user/username/projects/myproject/main +Info 3 [00:01:06.000] For info: /user/username/projects/myproject/main/main.ts :: Config file name: /user/username/projects/myproject/main/tsconfig.json +Info 4 [00:01:07.000] Creating configuration project /user/username/projects/myproject/main/tsconfig.json +Info 5 [00:01:08.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/main/tsconfig.json 2000 undefined Project: /user/username/projects/myproject/main/tsconfig.json WatchType: Config file +Info 6 [00:01:09.000] Config: /user/username/projects/myproject/main/tsconfig.json : { "rootNames": [ "/user/username/projects/myproject/main/main.ts" ], @@ -214,21 +214,21 @@ Info 6 [16:01:09.000] Config: /user/username/projects/myproject/main/tsconfig "configFilePath": "/user/username/projects/myproject/main/tsconfig.json" } } -Info 7 [16:01:10.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/main 1 undefined Config: /user/username/projects/myproject/main/tsconfig.json WatchType: Wild card directory -Info 8 [16:01:11.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/main 1 undefined Config: /user/username/projects/myproject/main/tsconfig.json WatchType: Wild card directory -Info 9 [16:01:12.000] Plugins were requested but not running in environment that supports 'require'. Nothing will be loaded -Info 10 [16:01:13.000] Starting updateGraphWorker: Project: /user/username/projects/myproject/main/tsconfig.json -Info 11 [16:01:14.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/decls 1 undefined Project: /user/username/projects/myproject/main/tsconfig.json WatchType: Failed Lookup Locations -Info 12 [16:01:15.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/decls 1 undefined Project: /user/username/projects/myproject/main/tsconfig.json WatchType: Failed Lookup Locations -Info 13 [16:01:16.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/decls/fns.d.ts 500 undefined WatchType: Closed Script info -Info 14 [16:01:17.000] FileWatcher:: Added:: WatchInfo: /a/lib/lib.d.ts 500 undefined WatchType: Closed Script info -Info 15 [16:01:18.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/main/node_modules/@types 1 undefined Project: /user/username/projects/myproject/main/tsconfig.json WatchType: Type roots -Info 16 [16:01:19.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/main/node_modules/@types 1 undefined Project: /user/username/projects/myproject/main/tsconfig.json WatchType: Type roots -Info 17 [16:01:20.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/main/tsconfig.json WatchType: Type roots -Info 18 [16:01:21.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/main/tsconfig.json WatchType: Type roots -Info 19 [16:01:22.000] Finishing updateGraphWorker: Project: /user/username/projects/myproject/main/tsconfig.json Version: 1 structureChanged: true structureIsReused:: Not Elapsed:: *ms -Info 20 [16:01:23.000] Project '/user/username/projects/myproject/main/tsconfig.json' (Configured) -Info 21 [16:01:24.000] Files (3) +Info 7 [00:01:10.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/main 1 undefined Config: /user/username/projects/myproject/main/tsconfig.json WatchType: Wild card directory +Info 8 [00:01:11.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/main 1 undefined Config: /user/username/projects/myproject/main/tsconfig.json WatchType: Wild card directory +Info 9 [00:01:12.000] Plugins were requested but not running in environment that supports 'require'. Nothing will be loaded +Info 10 [00:01:13.000] Starting updateGraphWorker: Project: /user/username/projects/myproject/main/tsconfig.json +Info 11 [00:01:14.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/decls 1 undefined Project: /user/username/projects/myproject/main/tsconfig.json WatchType: Failed Lookup Locations +Info 12 [00:01:15.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/decls 1 undefined Project: /user/username/projects/myproject/main/tsconfig.json WatchType: Failed Lookup Locations +Info 13 [00:01:16.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/decls/fns.d.ts 500 undefined WatchType: Closed Script info +Info 14 [00:01:17.000] FileWatcher:: Added:: WatchInfo: /a/lib/lib.d.ts 500 undefined WatchType: Closed Script info +Info 15 [00:01:18.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/main/node_modules/@types 1 undefined Project: /user/username/projects/myproject/main/tsconfig.json WatchType: Type roots +Info 16 [00:01:19.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/main/node_modules/@types 1 undefined Project: /user/username/projects/myproject/main/tsconfig.json WatchType: Type roots +Info 17 [00:01:20.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/main/tsconfig.json WatchType: Type roots +Info 18 [00:01:21.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/main/tsconfig.json WatchType: Type roots +Info 19 [00:01:22.000] Finishing updateGraphWorker: Project: /user/username/projects/myproject/main/tsconfig.json Version: 1 structureChanged: true structureIsReused:: Not Elapsed:: *ms +Info 20 [00:01:23.000] Project '/user/username/projects/myproject/main/tsconfig.json' (Configured) +Info 21 [00:01:24.000] Files (3) /a/lib/lib.d.ts /user/username/projects/myproject/decls/fns.d.ts /user/username/projects/myproject/main/main.ts @@ -241,16 +241,16 @@ Info 21 [16:01:24.000] Files (3) main.ts Matched by default include pattern '**/*' -Info 22 [16:01:25.000] ----------------------------------------------- -Info 23 [16:01:26.000] Search path: /user/username/projects/myproject/main -Info 24 [16:01:27.000] For info: /user/username/projects/myproject/main/tsconfig.json :: No config files found. -Info 25 [16:01:28.000] Project '/user/username/projects/myproject/main/tsconfig.json' (Configured) -Info 25 [16:01:29.000] Files (3) +Info 22 [00:01:25.000] ----------------------------------------------- +Info 23 [00:01:26.000] Search path: /user/username/projects/myproject/main +Info 24 [00:01:27.000] For info: /user/username/projects/myproject/main/tsconfig.json :: No config files found. +Info 25 [00:01:28.000] Project '/user/username/projects/myproject/main/tsconfig.json' (Configured) +Info 25 [00:01:29.000] Files (3) -Info 25 [16:01:30.000] ----------------------------------------------- -Info 25 [16:01:31.000] Open files: -Info 25 [16:01:32.000] FileName: /user/username/projects/myproject/main/main.ts ProjectRootPath: undefined -Info 25 [16:01:33.000] Projects: /user/username/projects/myproject/main/tsconfig.json +Info 25 [00:01:30.000] ----------------------------------------------- +Info 25 [00:01:31.000] Open files: +Info 25 [00:01:32.000] FileName: /user/username/projects/myproject/main/main.ts ProjectRootPath: undefined +Info 25 [00:01:33.000] Projects: /user/username/projects/myproject/main/tsconfig.json After request PolledWatches:: @@ -273,11 +273,11 @@ FsWatchesRecursive:: /user/username/projects/myproject/decls: {} -Info 25 [16:01:34.000] response: +Info 25 [00:01:34.000] response: { "responseRequired": false } -Info 26 [16:01:35.000] request: +Info 26 [00:01:35.000] request: { "seq": 0, "type": "request", @@ -308,11 +308,11 @@ FsWatchesRecursive:: /user/username/projects/myproject/decls: {} -Info 27 [16:01:36.000] Search path: /user/username/projects/myproject/dependency -Info 28 [16:01:37.000] For info: /user/username/projects/myproject/dependency/FnS.ts :: Config file name: /user/username/projects/myproject/dependency/tsconfig.json -Info 29 [16:01:38.000] Creating configuration project /user/username/projects/myproject/dependency/tsconfig.json -Info 30 [16:01:39.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/dependency/tsconfig.json 2000 undefined Project: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Config file -Info 31 [16:01:40.000] Config: /user/username/projects/myproject/dependency/tsconfig.json : { +Info 27 [00:01:36.000] Search path: /user/username/projects/myproject/dependency +Info 28 [00:01:37.000] For info: /user/username/projects/myproject/dependency/FnS.ts :: Config file name: /user/username/projects/myproject/dependency/tsconfig.json +Info 29 [00:01:38.000] Creating configuration project /user/username/projects/myproject/dependency/tsconfig.json +Info 30 [00:01:39.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/dependency/tsconfig.json 2000 undefined Project: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Config file +Info 31 [00:01:40.000] Config: /user/username/projects/myproject/dependency/tsconfig.json : { "rootNames": [ "/user/username/projects/myproject/dependency/FnS.ts" ], @@ -323,17 +323,17 @@ Info 31 [16:01:40.000] Config: /user/username/projects/myproject/dependency/ts "configFilePath": "/user/username/projects/myproject/dependency/tsconfig.json" } } -Info 32 [16:01:41.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/dependency 1 undefined Config: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Wild card directory -Info 33 [16:01:42.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/dependency 1 undefined Config: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Wild card directory -Info 34 [16:01:43.000] Plugins were requested but not running in environment that supports 'require'. Nothing will be loaded -Info 35 [16:01:44.000] Starting updateGraphWorker: Project: /user/username/projects/myproject/dependency/tsconfig.json -Info 36 [16:01:45.000] 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 37 [16:01:46.000] 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 38 [16:01:47.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Type roots -Info 39 [16:01:48.000] 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 40 [16:01:49.000] Finishing updateGraphWorker: Project: /user/username/projects/myproject/dependency/tsconfig.json Version: 1 structureChanged: true structureIsReused:: Not Elapsed:: *ms -Info 41 [16:01:50.000] Project '/user/username/projects/myproject/dependency/tsconfig.json' (Configured) -Info 42 [16:01:51.000] Files (2) +Info 32 [00:01:41.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/dependency 1 undefined Config: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Wild card directory +Info 33 [00:01:42.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/dependency 1 undefined Config: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Wild card directory +Info 34 [00:01:43.000] Plugins were requested but not running in environment that supports 'require'. Nothing will be loaded +Info 35 [00:01:44.000] Starting updateGraphWorker: Project: /user/username/projects/myproject/dependency/tsconfig.json +Info 36 [00:01:45.000] 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 37 [00:01:46.000] 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 38 [00:01:47.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Type roots +Info 39 [00:01:48.000] 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 40 [00:01:49.000] Finishing updateGraphWorker: Project: /user/username/projects/myproject/dependency/tsconfig.json Version: 1 structureChanged: true structureIsReused:: Not Elapsed:: *ms +Info 41 [00:01:50.000] Project '/user/username/projects/myproject/dependency/tsconfig.json' (Configured) +Info 42 [00:01:51.000] Files (2) /a/lib/lib.d.ts /user/username/projects/myproject/dependency/FnS.ts @@ -343,22 +343,22 @@ Info 42 [16:01:51.000] Files (2) FnS.ts Matched by default include pattern '**/*' -Info 43 [16:01:52.000] ----------------------------------------------- -Info 44 [16:01:53.000] Search path: /user/username/projects/myproject/dependency -Info 45 [16:01:54.000] For info: /user/username/projects/myproject/dependency/tsconfig.json :: No config files found. -Info 46 [16:01:55.000] Project '/user/username/projects/myproject/main/tsconfig.json' (Configured) -Info 46 [16:01:56.000] Files (3) - -Info 46 [16:01:57.000] ----------------------------------------------- -Info 46 [16:01:58.000] Project '/user/username/projects/myproject/dependency/tsconfig.json' (Configured) -Info 46 [16:01:59.000] Files (2) - -Info 46 [16:02:00.000] ----------------------------------------------- -Info 46 [16:02:01.000] Open files: -Info 46 [16:02:02.000] FileName: /user/username/projects/myproject/main/main.ts ProjectRootPath: undefined -Info 46 [16:02:03.000] Projects: /user/username/projects/myproject/main/tsconfig.json -Info 46 [16:02:04.000] FileName: /user/username/projects/myproject/dependency/FnS.ts ProjectRootPath: undefined -Info 46 [16:02:05.000] Projects: /user/username/projects/myproject/dependency/tsconfig.json +Info 43 [00:01:52.000] ----------------------------------------------- +Info 44 [00:01:53.000] Search path: /user/username/projects/myproject/dependency +Info 45 [00:01:54.000] For info: /user/username/projects/myproject/dependency/tsconfig.json :: No config files found. +Info 46 [00:01:55.000] Project '/user/username/projects/myproject/main/tsconfig.json' (Configured) +Info 46 [00:01:56.000] Files (3) + +Info 46 [00:01:57.000] ----------------------------------------------- +Info 46 [00:01:58.000] Project '/user/username/projects/myproject/dependency/tsconfig.json' (Configured) +Info 46 [00:01:59.000] Files (2) + +Info 46 [00:02:00.000] ----------------------------------------------- +Info 46 [00:02:01.000] Open files: +Info 46 [00:02:02.000] FileName: /user/username/projects/myproject/main/main.ts ProjectRootPath: undefined +Info 46 [00:02:03.000] Projects: /user/username/projects/myproject/main/tsconfig.json +Info 46 [00:02:04.000] FileName: /user/username/projects/myproject/dependency/FnS.ts ProjectRootPath: undefined +Info 46 [00:02:05.000] Projects: /user/username/projects/myproject/dependency/tsconfig.json After request PolledWatches:: @@ -387,11 +387,11 @@ FsWatchesRecursive:: /user/username/projects/myproject/dependency: {} -Info 46 [16:02:06.000] response: +Info 46 [00:02:06.000] response: { "responseRequired": false } -Info 47 [16:02:07.000] request: +Info 47 [00:02:07.000] request: { "seq": 0, "type": "request", @@ -428,11 +428,11 @@ FsWatchesRecursive:: /user/username/projects/myproject/dependency: {} -Info 48 [16:02:08.000] Search path: /user/username/projects/myproject/random -Info 49 [16:02:09.000] For info: /user/username/projects/myproject/random/random.ts :: Config file name: /user/username/projects/myproject/random/tsconfig.json -Info 50 [16:02:10.000] Creating configuration project /user/username/projects/myproject/random/tsconfig.json -Info 51 [16:02:11.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/random/tsconfig.json 2000 undefined Project: /user/username/projects/myproject/random/tsconfig.json WatchType: Config file -Info 52 [16:02:12.000] Config: /user/username/projects/myproject/random/tsconfig.json : { +Info 48 [00:02:08.000] Search path: /user/username/projects/myproject/random +Info 49 [00:02:09.000] For info: /user/username/projects/myproject/random/random.ts :: Config file name: /user/username/projects/myproject/random/tsconfig.json +Info 50 [00:02:10.000] Creating configuration project /user/username/projects/myproject/random/tsconfig.json +Info 51 [00:02:11.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/random/tsconfig.json 2000 undefined Project: /user/username/projects/myproject/random/tsconfig.json WatchType: Config file +Info 52 [00:02:12.000] Config: /user/username/projects/myproject/random/tsconfig.json : { "rootNames": [ "/user/username/projects/myproject/random/random.ts" ], @@ -440,17 +440,17 @@ Info 52 [16:02:12.000] Config: /user/username/projects/myproject/random/tsconf "configFilePath": "/user/username/projects/myproject/random/tsconfig.json" } } -Info 53 [16:02:13.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/random 1 undefined Config: /user/username/projects/myproject/random/tsconfig.json WatchType: Wild card directory -Info 54 [16:02:14.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/random 1 undefined Config: /user/username/projects/myproject/random/tsconfig.json WatchType: Wild card directory -Info 55 [16:02:15.000] Plugins were requested but not running in environment that supports 'require'. Nothing will be loaded -Info 56 [16:02:16.000] Starting updateGraphWorker: Project: /user/username/projects/myproject/random/tsconfig.json -Info 57 [16:02:17.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/random/node_modules/@types 1 undefined Project: /user/username/projects/myproject/random/tsconfig.json WatchType: Type roots -Info 58 [16:02:18.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/random/node_modules/@types 1 undefined Project: /user/username/projects/myproject/random/tsconfig.json WatchType: Type roots -Info 59 [16:02:19.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/random/tsconfig.json WatchType: Type roots -Info 60 [16:02:20.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/random/tsconfig.json WatchType: Type roots -Info 61 [16:02:21.000] Finishing updateGraphWorker: Project: /user/username/projects/myproject/random/tsconfig.json Version: 1 structureChanged: true structureIsReused:: Not Elapsed:: *ms -Info 62 [16:02:22.000] Project '/user/username/projects/myproject/random/tsconfig.json' (Configured) -Info 63 [16:02:23.000] Files (2) +Info 53 [00:02:13.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/random 1 undefined Config: /user/username/projects/myproject/random/tsconfig.json WatchType: Wild card directory +Info 54 [00:02:14.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/random 1 undefined Config: /user/username/projects/myproject/random/tsconfig.json WatchType: Wild card directory +Info 55 [00:02:15.000] Plugins were requested but not running in environment that supports 'require'. Nothing will be loaded +Info 56 [00:02:16.000] Starting updateGraphWorker: Project: /user/username/projects/myproject/random/tsconfig.json +Info 57 [00:02:17.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/random/node_modules/@types 1 undefined Project: /user/username/projects/myproject/random/tsconfig.json WatchType: Type roots +Info 58 [00:02:18.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/random/node_modules/@types 1 undefined Project: /user/username/projects/myproject/random/tsconfig.json WatchType: Type roots +Info 59 [00:02:19.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/random/tsconfig.json WatchType: Type roots +Info 60 [00:02:20.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/random/tsconfig.json WatchType: Type roots +Info 61 [00:02:21.000] Finishing updateGraphWorker: Project: /user/username/projects/myproject/random/tsconfig.json Version: 1 structureChanged: true structureIsReused:: Not Elapsed:: *ms +Info 62 [00:02:22.000] Project '/user/username/projects/myproject/random/tsconfig.json' (Configured) +Info 63 [00:02:23.000] Files (2) /a/lib/lib.d.ts /user/username/projects/myproject/random/random.ts @@ -460,26 +460,26 @@ Info 63 [16:02:23.000] Files (2) random.ts Matched by default include pattern '**/*' -Info 64 [16:02:24.000] ----------------------------------------------- -Info 65 [16:02:25.000] Project '/user/username/projects/myproject/main/tsconfig.json' (Configured) -Info 65 [16:02:26.000] Files (3) - -Info 65 [16:02:27.000] ----------------------------------------------- -Info 65 [16:02:28.000] Project '/user/username/projects/myproject/dependency/tsconfig.json' (Configured) -Info 65 [16:02:29.000] Files (2) - -Info 65 [16:02:30.000] ----------------------------------------------- -Info 65 [16:02:31.000] Project '/user/username/projects/myproject/random/tsconfig.json' (Configured) -Info 65 [16:02:32.000] Files (2) - -Info 65 [16:02:33.000] ----------------------------------------------- -Info 65 [16:02:34.000] Open files: -Info 65 [16:02:35.000] FileName: /user/username/projects/myproject/main/main.ts ProjectRootPath: undefined -Info 65 [16:02:36.000] Projects: /user/username/projects/myproject/main/tsconfig.json -Info 65 [16:02:37.000] FileName: /user/username/projects/myproject/dependency/FnS.ts ProjectRootPath: undefined -Info 65 [16:02:38.000] Projects: /user/username/projects/myproject/dependency/tsconfig.json -Info 65 [16:02:39.000] FileName: /user/username/projects/myproject/random/random.ts ProjectRootPath: undefined -Info 65 [16:02:40.000] Projects: /user/username/projects/myproject/random/tsconfig.json +Info 64 [00:02:24.000] ----------------------------------------------- +Info 65 [00:02:25.000] Project '/user/username/projects/myproject/main/tsconfig.json' (Configured) +Info 65 [00:02:26.000] Files (3) + +Info 65 [00:02:27.000] ----------------------------------------------- +Info 65 [00:02:28.000] Project '/user/username/projects/myproject/dependency/tsconfig.json' (Configured) +Info 65 [00:02:29.000] Files (2) + +Info 65 [00:02:30.000] ----------------------------------------------- +Info 65 [00:02:31.000] Project '/user/username/projects/myproject/random/tsconfig.json' (Configured) +Info 65 [00:02:32.000] Files (2) + +Info 65 [00:02:33.000] ----------------------------------------------- +Info 65 [00:02:34.000] Open files: +Info 65 [00:02:35.000] FileName: /user/username/projects/myproject/main/main.ts ProjectRootPath: undefined +Info 65 [00:02:36.000] Projects: /user/username/projects/myproject/main/tsconfig.json +Info 65 [00:02:37.000] FileName: /user/username/projects/myproject/dependency/FnS.ts ProjectRootPath: undefined +Info 65 [00:02:38.000] Projects: /user/username/projects/myproject/dependency/tsconfig.json +Info 65 [00:02:39.000] FileName: /user/username/projects/myproject/random/random.ts ProjectRootPath: undefined +Info 65 [00:02:40.000] Projects: /user/username/projects/myproject/random/tsconfig.json After request PolledWatches:: @@ -514,11 +514,11 @@ FsWatchesRecursive:: /user/username/projects/myproject/random: {} -Info 65 [16:02:41.000] response: +Info 65 [00:02:41.000] response: { "responseRequired": false } -Info 66 [16:02:42.000] request: +Info 66 [00:02:42.000] request: { "command": "definitionAndBoundSpan", "arguments": { @@ -563,7 +563,7 @@ FsWatchesRecursive:: /user/username/projects/myproject/random: {} -Info 67 [16:02:43.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/decls/FnS.d.ts.map 500 undefined WatchType: Closed Script info +Info 67 [00:02:43.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/decls/FnS.d.ts.map 500 undefined WatchType: Closed Script info After request PolledWatches:: @@ -600,7 +600,7 @@ FsWatchesRecursive:: /user/username/projects/myproject/random: {} -Info 68 [16:02:44.000] response: +Info 68 [00:02:44.000] response: { "response": { "definitions": [ @@ -637,7 +637,7 @@ Info 68 [16:02:44.000] response: }, "responseRequired": true } -Info 69 [16:02:45.000] request: +Info 69 [00:02:45.000] request: { "command": "definitionAndBoundSpan", "arguments": { @@ -720,7 +720,7 @@ FsWatchesRecursive:: /user/username/projects/myproject/random: {} -Info 70 [16:02:46.000] response: +Info 70 [00:02:46.000] response: { "response": { "definitions": [ @@ -757,7 +757,7 @@ Info 70 [16:02:46.000] response: }, "responseRequired": true } -Info 71 [16:02:47.000] request: +Info 71 [00:02:47.000] request: { "command": "definitionAndBoundSpan", "arguments": { @@ -840,7 +840,7 @@ FsWatchesRecursive:: /user/username/projects/myproject/random: {} -Info 72 [16:02:48.000] response: +Info 72 [00:02:48.000] response: { "response": { "definitions": [ @@ -877,7 +877,7 @@ Info 72 [16:02:48.000] response: }, "responseRequired": true } -Info 73 [16:02:49.000] request: +Info 73 [00:02:49.000] request: { "command": "definitionAndBoundSpan", "arguments": { @@ -960,7 +960,7 @@ FsWatchesRecursive:: /user/username/projects/myproject/random: {} -Info 74 [16:02:50.000] response: +Info 74 [00:02:50.000] response: { "response": { "definitions": [ @@ -997,7 +997,7 @@ Info 74 [16:02:50.000] response: }, "responseRequired": true } -Info 75 [16:02:51.000] request: +Info 75 [00:02:51.000] request: { "command": "definitionAndBoundSpan", "arguments": { @@ -1080,7 +1080,7 @@ FsWatchesRecursive:: /user/username/projects/myproject/random: {} -Info 76 [16:02:52.000] response: +Info 76 [00:02:52.000] response: { "response": { "definitions": [ @@ -1117,7 +1117,7 @@ Info 76 [16:02:52.000] response: }, "responseRequired": true } -Info 77 [16:02:53.000] request: +Info 77 [00:02:53.000] request: { "command": "rename", "arguments": { @@ -1164,8 +1164,8 @@ FsWatchesRecursive:: /user/username/projects/myproject/random: {} -Info 78 [16:02:54.000] Search path: /user/username/projects/myproject/dependency -Info 79 [16:02:55.000] For info: /user/username/projects/myproject/dependency/FnS.ts :: Config file name: /user/username/projects/myproject/dependency/tsconfig.json +Info 78 [00:02:54.000] Search path: /user/username/projects/myproject/dependency +Info 79 [00:02:55.000] For info: /user/username/projects/myproject/dependency/FnS.ts :: Config file name: /user/username/projects/myproject/dependency/tsconfig.json After request PolledWatches:: @@ -1202,7 +1202,7 @@ FsWatchesRecursive:: /user/username/projects/myproject/random: {} -Info 80 [16:02:56.000] response: +Info 80 [00:02:56.000] response: { "response": { "info": { @@ -1283,7 +1283,7 @@ Info 80 [16:02:56.000] response: }, "responseRequired": true } -Info 81 [16:02:57.000] request: +Info 81 [00:02:57.000] request: { "command": "rename", "arguments": { @@ -1330,8 +1330,8 @@ FsWatchesRecursive:: /user/username/projects/myproject/random: {} -Info 82 [16:02:58.000] Search path: /user/username/projects/myproject/dependency -Info 83 [16:02:59.000] For info: /user/username/projects/myproject/dependency/FnS.ts :: Config file name: /user/username/projects/myproject/dependency/tsconfig.json +Info 82 [00:02:58.000] Search path: /user/username/projects/myproject/dependency +Info 83 [00:02:59.000] For info: /user/username/projects/myproject/dependency/FnS.ts :: Config file name: /user/username/projects/myproject/dependency/tsconfig.json After request PolledWatches:: @@ -1368,7 +1368,7 @@ FsWatchesRecursive:: /user/username/projects/myproject/random: {} -Info 84 [16:03:00.000] response: +Info 84 [00:03:00.000] response: { "response": { "info": { @@ -1449,7 +1449,7 @@ Info 84 [16:03:00.000] response: }, "responseRequired": true } -Info 85 [16:03:01.000] request: +Info 85 [00:03:01.000] request: { "command": "rename", "arguments": { @@ -1496,8 +1496,8 @@ FsWatchesRecursive:: /user/username/projects/myproject/random: {} -Info 86 [16:03:02.000] Search path: /user/username/projects/myproject/dependency -Info 87 [16:03:03.000] For info: /user/username/projects/myproject/dependency/FnS.ts :: Config file name: /user/username/projects/myproject/dependency/tsconfig.json +Info 86 [00:03:02.000] Search path: /user/username/projects/myproject/dependency +Info 87 [00:03:03.000] For info: /user/username/projects/myproject/dependency/FnS.ts :: Config file name: /user/username/projects/myproject/dependency/tsconfig.json After request PolledWatches:: @@ -1534,7 +1534,7 @@ FsWatchesRecursive:: /user/username/projects/myproject/random: {} -Info 88 [16:03:04.000] response: +Info 88 [00:03:04.000] response: { "response": { "info": { @@ -1615,7 +1615,7 @@ Info 88 [16:03:04.000] response: }, "responseRequired": true } -Info 89 [16:03:05.000] request: +Info 89 [00:03:05.000] request: { "command": "rename", "arguments": { @@ -1662,8 +1662,8 @@ FsWatchesRecursive:: /user/username/projects/myproject/random: {} -Info 90 [16:03:06.000] Search path: /user/username/projects/myproject/dependency -Info 91 [16:03:07.000] For info: /user/username/projects/myproject/dependency/FnS.ts :: Config file name: /user/username/projects/myproject/dependency/tsconfig.json +Info 90 [00:03:06.000] Search path: /user/username/projects/myproject/dependency +Info 91 [00:03:07.000] For info: /user/username/projects/myproject/dependency/FnS.ts :: Config file name: /user/username/projects/myproject/dependency/tsconfig.json After request PolledWatches:: @@ -1700,7 +1700,7 @@ FsWatchesRecursive:: /user/username/projects/myproject/random: {} -Info 92 [16:03:08.000] response: +Info 92 [00:03:08.000] response: { "response": { "info": { @@ -1781,7 +1781,7 @@ Info 92 [16:03:08.000] response: }, "responseRequired": true } -Info 93 [16:03:09.000] request: +Info 93 [00:03:09.000] request: { "command": "rename", "arguments": { @@ -1828,8 +1828,8 @@ FsWatchesRecursive:: /user/username/projects/myproject/random: {} -Info 94 [16:03:10.000] Search path: /user/username/projects/myproject/dependency -Info 95 [16:03:11.000] For info: /user/username/projects/myproject/dependency/FnS.ts :: Config file name: /user/username/projects/myproject/dependency/tsconfig.json +Info 94 [00:03:10.000] Search path: /user/username/projects/myproject/dependency +Info 95 [00:03:11.000] For info: /user/username/projects/myproject/dependency/FnS.ts :: Config file name: /user/username/projects/myproject/dependency/tsconfig.json After request PolledWatches:: @@ -1866,7 +1866,7 @@ FsWatchesRecursive:: /user/username/projects/myproject/random: {} -Info 96 [16:03:12.000] response: +Info 96 [00:03:12.000] response: { "response": { "info": { @@ -1947,7 +1947,7 @@ Info 96 [16:03:12.000] response: }, "responseRequired": true } -Info 97 [16:03:13.000] request: +Info 97 [00:03:13.000] request: { "seq": 0, "type": "request", @@ -1992,24 +1992,24 @@ FsWatchesRecursive:: /user/username/projects/myproject/random: {} -Info 98 [16:03:14.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/random/random.ts 500 undefined WatchType: Closed Script info -Info 99 [16:03:15.000] Project '/user/username/projects/myproject/main/tsconfig.json' (Configured) -Info 99 [16:03:16.000] Files (3) +Info 98 [00:03:14.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/random/random.ts 500 undefined WatchType: Closed Script info +Info 99 [00:03:15.000] Project '/user/username/projects/myproject/main/tsconfig.json' (Configured) +Info 99 [00:03:16.000] Files (3) -Info 99 [16:03:17.000] ----------------------------------------------- -Info 99 [16:03:18.000] Project '/user/username/projects/myproject/dependency/tsconfig.json' (Configured) -Info 99 [16:03:19.000] Files (2) +Info 99 [00:03:17.000] ----------------------------------------------- +Info 99 [00:03:18.000] Project '/user/username/projects/myproject/dependency/tsconfig.json' (Configured) +Info 99 [00:03:19.000] Files (2) -Info 99 [16:03:20.000] ----------------------------------------------- -Info 99 [16:03:21.000] Project '/user/username/projects/myproject/random/tsconfig.json' (Configured) -Info 99 [16:03:22.000] Files (2) +Info 99 [00:03:20.000] ----------------------------------------------- +Info 99 [00:03:21.000] Project '/user/username/projects/myproject/random/tsconfig.json' (Configured) +Info 99 [00:03:22.000] Files (2) -Info 99 [16:03:23.000] ----------------------------------------------- -Info 99 [16:03:24.000] Open files: -Info 99 [16:03:25.000] FileName: /user/username/projects/myproject/main/main.ts ProjectRootPath: undefined -Info 99 [16:03:26.000] Projects: /user/username/projects/myproject/main/tsconfig.json -Info 99 [16:03:27.000] FileName: /user/username/projects/myproject/dependency/FnS.ts ProjectRootPath: undefined -Info 99 [16:03:28.000] Projects: /user/username/projects/myproject/dependency/tsconfig.json +Info 99 [00:03:23.000] ----------------------------------------------- +Info 99 [00:03:24.000] Open files: +Info 99 [00:03:25.000] FileName: /user/username/projects/myproject/main/main.ts ProjectRootPath: undefined +Info 99 [00:03:26.000] Projects: /user/username/projects/myproject/main/tsconfig.json +Info 99 [00:03:27.000] FileName: /user/username/projects/myproject/dependency/FnS.ts ProjectRootPath: undefined +Info 99 [00:03:28.000] Projects: /user/username/projects/myproject/dependency/tsconfig.json After request PolledWatches:: @@ -2048,11 +2048,11 @@ FsWatchesRecursive:: /user/username/projects/myproject/random: {} -Info 99 [16:03:29.000] response: +Info 99 [00:03:29.000] response: { "responseRequired": false } -Info 100 [16:03:30.000] request: +Info 100 [00:03:30.000] request: { "seq": 0, "type": "request", @@ -2099,28 +2099,28 @@ FsWatchesRecursive:: /user/username/projects/myproject/random: {} -Info 101 [16:03:31.000] FileWatcher:: Close:: WatchInfo: /user/username/projects/myproject/random/random.ts 500 undefined WatchType: Closed Script info -Info 102 [16:03:32.000] Search path: /user/username/projects/myproject/random -Info 103 [16:03:33.000] For info: /user/username/projects/myproject/random/random.ts :: Config file name: /user/username/projects/myproject/random/tsconfig.json -Info 104 [16:03:34.000] Project '/user/username/projects/myproject/main/tsconfig.json' (Configured) -Info 104 [16:03:35.000] Files (3) - -Info 104 [16:03:36.000] ----------------------------------------------- -Info 104 [16:03:37.000] Project '/user/username/projects/myproject/dependency/tsconfig.json' (Configured) -Info 104 [16:03:38.000] Files (2) - -Info 104 [16:03:39.000] ----------------------------------------------- -Info 104 [16:03:40.000] Project '/user/username/projects/myproject/random/tsconfig.json' (Configured) -Info 104 [16:03:41.000] Files (2) - -Info 104 [16:03:42.000] ----------------------------------------------- -Info 104 [16:03:43.000] Open files: -Info 104 [16:03:44.000] FileName: /user/username/projects/myproject/main/main.ts ProjectRootPath: undefined -Info 104 [16:03:45.000] Projects: /user/username/projects/myproject/main/tsconfig.json -Info 104 [16:03:46.000] FileName: /user/username/projects/myproject/dependency/FnS.ts ProjectRootPath: undefined -Info 104 [16:03:47.000] Projects: /user/username/projects/myproject/dependency/tsconfig.json -Info 104 [16:03:48.000] FileName: /user/username/projects/myproject/random/random.ts ProjectRootPath: undefined -Info 104 [16:03:49.000] Projects: /user/username/projects/myproject/random/tsconfig.json +Info 101 [00:03:31.000] FileWatcher:: Close:: WatchInfo: /user/username/projects/myproject/random/random.ts 500 undefined WatchType: Closed Script info +Info 102 [00:03:32.000] Search path: /user/username/projects/myproject/random +Info 103 [00:03:33.000] For info: /user/username/projects/myproject/random/random.ts :: Config file name: /user/username/projects/myproject/random/tsconfig.json +Info 104 [00:03:34.000] Project '/user/username/projects/myproject/main/tsconfig.json' (Configured) +Info 104 [00:03:35.000] Files (3) + +Info 104 [00:03:36.000] ----------------------------------------------- +Info 104 [00:03:37.000] Project '/user/username/projects/myproject/dependency/tsconfig.json' (Configured) +Info 104 [00:03:38.000] Files (2) + +Info 104 [00:03:39.000] ----------------------------------------------- +Info 104 [00:03:40.000] Project '/user/username/projects/myproject/random/tsconfig.json' (Configured) +Info 104 [00:03:41.000] Files (2) + +Info 104 [00:03:42.000] ----------------------------------------------- +Info 104 [00:03:43.000] Open files: +Info 104 [00:03:44.000] FileName: /user/username/projects/myproject/main/main.ts ProjectRootPath: undefined +Info 104 [00:03:45.000] Projects: /user/username/projects/myproject/main/tsconfig.json +Info 104 [00:03:46.000] FileName: /user/username/projects/myproject/dependency/FnS.ts ProjectRootPath: undefined +Info 104 [00:03:47.000] Projects: /user/username/projects/myproject/dependency/tsconfig.json +Info 104 [00:03:48.000] FileName: /user/username/projects/myproject/random/random.ts ProjectRootPath: undefined +Info 104 [00:03:49.000] Projects: /user/username/projects/myproject/random/tsconfig.json After request PolledWatches:: @@ -2157,11 +2157,11 @@ FsWatchesRecursive:: /user/username/projects/myproject/random: {} -Info 104 [16:03:50.000] response: +Info 104 [00:03:50.000] response: { "responseRequired": false } -Info 105 [16:03:51.000] request: +Info 105 [00:03:51.000] request: { "seq": 0, "type": "request", @@ -2206,24 +2206,24 @@ FsWatchesRecursive:: /user/username/projects/myproject/random: {} -Info 106 [16:03:52.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/main/main.ts 500 undefined WatchType: Closed Script info -Info 107 [16:03:53.000] Project '/user/username/projects/myproject/main/tsconfig.json' (Configured) -Info 107 [16:03:54.000] Files (3) +Info 106 [00:03:52.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/main/main.ts 500 undefined WatchType: Closed Script info +Info 107 [00:03:53.000] Project '/user/username/projects/myproject/main/tsconfig.json' (Configured) +Info 107 [00:03:54.000] Files (3) -Info 107 [16:03:55.000] ----------------------------------------------- -Info 107 [16:03:56.000] Project '/user/username/projects/myproject/dependency/tsconfig.json' (Configured) -Info 107 [16:03:57.000] Files (2) +Info 107 [00:03:55.000] ----------------------------------------------- +Info 107 [00:03:56.000] Project '/user/username/projects/myproject/dependency/tsconfig.json' (Configured) +Info 107 [00:03:57.000] Files (2) -Info 107 [16:03:58.000] ----------------------------------------------- -Info 107 [16:03:59.000] Project '/user/username/projects/myproject/random/tsconfig.json' (Configured) -Info 107 [16:04:00.000] Files (2) +Info 107 [00:03:58.000] ----------------------------------------------- +Info 107 [00:03:59.000] Project '/user/username/projects/myproject/random/tsconfig.json' (Configured) +Info 107 [00:04:00.000] Files (2) -Info 107 [16:04:01.000] ----------------------------------------------- -Info 107 [16:04:02.000] Open files: -Info 107 [16:04:03.000] FileName: /user/username/projects/myproject/dependency/FnS.ts ProjectRootPath: undefined -Info 107 [16:04:04.000] Projects: /user/username/projects/myproject/dependency/tsconfig.json -Info 107 [16:04:05.000] FileName: /user/username/projects/myproject/random/random.ts ProjectRootPath: undefined -Info 107 [16:04:06.000] Projects: /user/username/projects/myproject/random/tsconfig.json +Info 107 [00:04:01.000] ----------------------------------------------- +Info 107 [00:04:02.000] Open files: +Info 107 [00:04:03.000] FileName: /user/username/projects/myproject/dependency/FnS.ts ProjectRootPath: undefined +Info 107 [00:04:04.000] Projects: /user/username/projects/myproject/dependency/tsconfig.json +Info 107 [00:04:05.000] FileName: /user/username/projects/myproject/random/random.ts ProjectRootPath: undefined +Info 107 [00:04:06.000] Projects: /user/username/projects/myproject/random/tsconfig.json After request PolledWatches:: @@ -2262,11 +2262,11 @@ FsWatchesRecursive:: /user/username/projects/myproject/random: {} -Info 107 [16:04:07.000] response: +Info 107 [00:04:07.000] response: { "responseRequired": false } -Info 108 [16:04:08.000] request: +Info 108 [00:04:08.000] request: { "seq": 0, "type": "request", @@ -2313,22 +2313,22 @@ FsWatchesRecursive:: /user/username/projects/myproject/random: {} -Info 109 [16:04:09.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/dependency/FnS.ts 500 undefined WatchType: Closed Script info -Info 110 [16:04:10.000] Project '/user/username/projects/myproject/main/tsconfig.json' (Configured) -Info 110 [16:04:11.000] Files (3) +Info 109 [00:04:09.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/dependency/FnS.ts 500 undefined WatchType: Closed Script info +Info 110 [00:04:10.000] Project '/user/username/projects/myproject/main/tsconfig.json' (Configured) +Info 110 [00:04:11.000] Files (3) -Info 110 [16:04:12.000] ----------------------------------------------- -Info 110 [16:04:13.000] Project '/user/username/projects/myproject/dependency/tsconfig.json' (Configured) -Info 110 [16:04:14.000] Files (2) +Info 110 [00:04:12.000] ----------------------------------------------- +Info 110 [00:04:13.000] Project '/user/username/projects/myproject/dependency/tsconfig.json' (Configured) +Info 110 [00:04:14.000] Files (2) -Info 110 [16:04:15.000] ----------------------------------------------- -Info 110 [16:04:16.000] Project '/user/username/projects/myproject/random/tsconfig.json' (Configured) -Info 110 [16:04:17.000] Files (2) +Info 110 [00:04:15.000] ----------------------------------------------- +Info 110 [00:04:16.000] Project '/user/username/projects/myproject/random/tsconfig.json' (Configured) +Info 110 [00:04:17.000] Files (2) -Info 110 [16:04:18.000] ----------------------------------------------- -Info 110 [16:04:19.000] Open files: -Info 110 [16:04:20.000] FileName: /user/username/projects/myproject/random/random.ts ProjectRootPath: undefined -Info 110 [16:04:21.000] Projects: /user/username/projects/myproject/random/tsconfig.json +Info 110 [00:04:18.000] ----------------------------------------------- +Info 110 [00:04:19.000] Open files: +Info 110 [00:04:20.000] FileName: /user/username/projects/myproject/random/random.ts ProjectRootPath: undefined +Info 110 [00:04:21.000] Projects: /user/username/projects/myproject/random/tsconfig.json After request PolledWatches:: @@ -2369,11 +2369,11 @@ FsWatchesRecursive:: /user/username/projects/myproject/random: {} -Info 110 [16:04:22.000] response: +Info 110 [00:04:22.000] response: { "responseRequired": false } -Info 111 [16:04:23.000] request: +Info 111 [00:04:23.000] request: { "seq": 0, "type": "request", @@ -2422,20 +2422,20 @@ FsWatchesRecursive:: /user/username/projects/myproject/random: {} -Info 112 [16:04:24.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/random/random.ts 500 undefined WatchType: Closed Script info -Info 113 [16:04:25.000] Project '/user/username/projects/myproject/main/tsconfig.json' (Configured) -Info 113 [16:04:26.000] Files (3) +Info 112 [00:04:24.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/random/random.ts 500 undefined WatchType: Closed Script info +Info 113 [00:04:25.000] Project '/user/username/projects/myproject/main/tsconfig.json' (Configured) +Info 113 [00:04:26.000] Files (3) -Info 113 [16:04:27.000] ----------------------------------------------- -Info 113 [16:04:28.000] Project '/user/username/projects/myproject/dependency/tsconfig.json' (Configured) -Info 113 [16:04:29.000] Files (2) +Info 113 [00:04:27.000] ----------------------------------------------- +Info 113 [00:04:28.000] Project '/user/username/projects/myproject/dependency/tsconfig.json' (Configured) +Info 113 [00:04:29.000] Files (2) -Info 113 [16:04:30.000] ----------------------------------------------- -Info 113 [16:04:31.000] Project '/user/username/projects/myproject/random/tsconfig.json' (Configured) -Info 113 [16:04:32.000] Files (2) +Info 113 [00:04:30.000] ----------------------------------------------- +Info 113 [00:04:31.000] Project '/user/username/projects/myproject/random/tsconfig.json' (Configured) +Info 113 [00:04:32.000] Files (2) -Info 113 [16:04:33.000] ----------------------------------------------- -Info 113 [16:04:34.000] Open files: +Info 113 [00:04:33.000] ----------------------------------------------- +Info 113 [00:04:34.000] Open files: After request PolledWatches:: @@ -2478,11 +2478,11 @@ FsWatchesRecursive:: /user/username/projects/myproject/random: {} -Info 113 [16:04:35.000] response: +Info 113 [00:04:35.000] response: { "responseRequired": false } -Info 114 [16:04:36.000] request: +Info 114 [00:04:36.000] request: { "seq": 0, "type": "request", @@ -2533,12 +2533,12 @@ FsWatchesRecursive:: /user/username/projects/myproject/random: {} -Info 115 [16:04:37.000] FileWatcher:: Close:: WatchInfo: /user/username/projects/myproject/random/random.ts 500 undefined WatchType: Closed Script info -Info 116 [16:04:38.000] Search path: /user/username/projects/myproject/random -Info 117 [16:04:39.000] For info: /user/username/projects/myproject/random/random.ts :: Config file name: /user/username/projects/myproject/random/tsconfig.json -Info 118 [16:04:40.000] `remove Project:: -Info 119 [16:04:41.000] Project '/user/username/projects/myproject/main/tsconfig.json' (Configured) -Info 120 [16:04:42.000] Files (3) +Info 115 [00:04:37.000] FileWatcher:: Close:: WatchInfo: /user/username/projects/myproject/random/random.ts 500 undefined WatchType: Closed Script info +Info 116 [00:04:38.000] Search path: /user/username/projects/myproject/random +Info 117 [00:04:39.000] For info: /user/username/projects/myproject/random/random.ts :: Config file name: /user/username/projects/myproject/random/tsconfig.json +Info 118 [00:04:40.000] `remove Project:: +Info 119 [00:04:41.000] Project '/user/username/projects/myproject/main/tsconfig.json' (Configured) +Info 120 [00:04:42.000] Files (3) /a/lib/lib.d.ts /user/username/projects/myproject/decls/fns.d.ts /user/username/projects/myproject/main/main.ts @@ -2551,19 +2551,19 @@ Info 120 [16:04:42.000] Files (3) main.ts Matched by default include pattern '**/*' -Info 121 [16:04:43.000] ----------------------------------------------- -Info 122 [16:04:44.000] DirectoryWatcher:: Close:: WatchInfo: /user/username/projects/myproject/main 1 undefined Config: /user/username/projects/myproject/main/tsconfig.json WatchType: Wild card directory -Info 123 [16:04:45.000] 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 124 [16:04:46.000] FileWatcher:: Close:: WatchInfo: /user/username/projects/myproject/main/tsconfig.json 2000 undefined Project: /user/username/projects/myproject/main/tsconfig.json WatchType: Config file -Info 125 [16:04:47.000] DirectoryWatcher:: Close:: WatchInfo: /user/username/projects/myproject/decls 1 undefined Project: /user/username/projects/myproject/main/tsconfig.json WatchType: Failed Lookup Locations -Info 126 [16:04:48.000] 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 127 [16:04:49.000] 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 128 [16:04:50.000] 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 129 [16:04:51.000] DirectoryWatcher:: Close:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/main/tsconfig.json WatchType: Type roots -Info 130 [16:04:52.000] 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 131 [16:04:53.000] `remove Project:: -Info 132 [16:04:54.000] Project '/user/username/projects/myproject/dependency/tsconfig.json' (Configured) -Info 133 [16:04:55.000] Files (2) +Info 121 [00:04:43.000] ----------------------------------------------- +Info 122 [00:04:44.000] DirectoryWatcher:: Close:: WatchInfo: /user/username/projects/myproject/main 1 undefined Config: /user/username/projects/myproject/main/tsconfig.json WatchType: Wild card directory +Info 123 [00:04:45.000] 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 124 [00:04:46.000] FileWatcher:: Close:: WatchInfo: /user/username/projects/myproject/main/tsconfig.json 2000 undefined Project: /user/username/projects/myproject/main/tsconfig.json WatchType: Config file +Info 125 [00:04:47.000] DirectoryWatcher:: Close:: WatchInfo: /user/username/projects/myproject/decls 1 undefined Project: /user/username/projects/myproject/main/tsconfig.json WatchType: Failed Lookup Locations +Info 126 [00:04:48.000] 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 127 [00:04:49.000] 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 128 [00:04:50.000] 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 129 [00:04:51.000] DirectoryWatcher:: Close:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/main/tsconfig.json WatchType: Type roots +Info 130 [00:04:52.000] 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 131 [00:04:53.000] `remove Project:: +Info 132 [00:04:54.000] Project '/user/username/projects/myproject/dependency/tsconfig.json' (Configured) +Info 133 [00:04:55.000] Files (2) /a/lib/lib.d.ts /user/username/projects/myproject/dependency/FnS.ts @@ -2573,25 +2573,25 @@ Info 133 [16:04:55.000] Files (2) FnS.ts Matched by default include pattern '**/*' -Info 134 [16:04:56.000] ----------------------------------------------- -Info 135 [16:04:57.000] DirectoryWatcher:: Close:: WatchInfo: /user/username/projects/myproject/dependency 1 undefined Config: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Wild card directory -Info 136 [16:04:58.000] 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 137 [16:04:59.000] FileWatcher:: Close:: WatchInfo: /user/username/projects/myproject/dependency/tsconfig.json 2000 undefined Project: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Config file -Info 138 [16:05:00.000] 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 139 [16:05:01.000] 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 140 [16:05:02.000] DirectoryWatcher:: Close:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Type roots -Info 141 [16:05:03.000] 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 142 [16:05:04.000] FileWatcher:: Close:: WatchInfo: /user/username/projects/myproject/main/main.ts 500 undefined WatchType: Closed Script info -Info 143 [16:05:05.000] FileWatcher:: Close:: WatchInfo: /user/username/projects/myproject/decls/fns.d.ts 500 undefined WatchType: Closed Script info -Info 144 [16:05:06.000] FileWatcher:: Close:: WatchInfo: /user/username/projects/myproject/dependency/FnS.ts 500 undefined WatchType: Closed Script info -Info 145 [16:05:07.000] FileWatcher:: Close:: WatchInfo: /user/username/projects/myproject/decls/FnS.d.ts.map 500 undefined WatchType: Closed Script info -Info 146 [16:05:08.000] Project '/user/username/projects/myproject/random/tsconfig.json' (Configured) -Info 146 [16:05:09.000] Files (2) - -Info 146 [16:05:10.000] ----------------------------------------------- -Info 146 [16:05:11.000] Open files: -Info 146 [16:05:12.000] FileName: /user/username/projects/myproject/random/random.ts ProjectRootPath: undefined -Info 146 [16:05:13.000] Projects: /user/username/projects/myproject/random/tsconfig.json +Info 134 [00:04:56.000] ----------------------------------------------- +Info 135 [00:04:57.000] DirectoryWatcher:: Close:: WatchInfo: /user/username/projects/myproject/dependency 1 undefined Config: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Wild card directory +Info 136 [00:04:58.000] 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 137 [00:04:59.000] FileWatcher:: Close:: WatchInfo: /user/username/projects/myproject/dependency/tsconfig.json 2000 undefined Project: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Config file +Info 138 [00:05:00.000] 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 139 [00:05:01.000] 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 140 [00:05:02.000] DirectoryWatcher:: Close:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Type roots +Info 141 [00:05:03.000] 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 142 [00:05:04.000] FileWatcher:: Close:: WatchInfo: /user/username/projects/myproject/main/main.ts 500 undefined WatchType: Closed Script info +Info 143 [00:05:05.000] FileWatcher:: Close:: WatchInfo: /user/username/projects/myproject/decls/fns.d.ts 500 undefined WatchType: Closed Script info +Info 144 [00:05:06.000] FileWatcher:: Close:: WatchInfo: /user/username/projects/myproject/dependency/FnS.ts 500 undefined WatchType: Closed Script info +Info 145 [00:05:07.000] FileWatcher:: Close:: WatchInfo: /user/username/projects/myproject/decls/FnS.d.ts.map 500 undefined WatchType: Closed Script info +Info 146 [00:05:08.000] Project '/user/username/projects/myproject/random/tsconfig.json' (Configured) +Info 146 [00:05:09.000] Files (2) + +Info 146 [00:05:10.000] ----------------------------------------------- +Info 146 [00:05:11.000] Open files: +Info 146 [00:05:12.000] FileName: /user/username/projects/myproject/random/random.ts ProjectRootPath: undefined +Info 146 [00:05:13.000] Projects: /user/username/projects/myproject/random/tsconfig.json After request PolledWatches:: @@ -2610,7 +2610,7 @@ FsWatchesRecursive:: /user/username/projects/myproject/random: {} -Info 146 [16:05:14.000] response: +Info 146 [00:05:14.000] response: { "responseRequired": false } \ No newline at end of file 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 8bc5ac46380d4..f5c4c38f6a694 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 @@ -1,5 +1,5 @@ -Info 0 [16:01:03.000] Provided types map file "/a/lib/typesMap.json" doesn't exist -Info 1 [16:01:04.000] request: +Info 0 [00:01:03.000] Provided types map file "/a/lib/typesMap.json" doesn't exist +Info 1 [00:01:04.000] request: { "seq": 0, "type": "request", @@ -200,11 +200,11 @@ FsWatches:: FsWatchesRecursive:: -Info 2 [16:01:05.000] Search path: /user/username/projects/myproject/main -Info 3 [16:01:06.000] For info: /user/username/projects/myproject/main/main.ts :: Config file name: /user/username/projects/myproject/main/tsconfig.json -Info 4 [16:01:07.000] Creating configuration project /user/username/projects/myproject/main/tsconfig.json -Info 5 [16:01:08.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/main/tsconfig.json 2000 undefined Project: /user/username/projects/myproject/main/tsconfig.json WatchType: Config file -Info 6 [16:01:09.000] Config: /user/username/projects/myproject/main/tsconfig.json : { +Info 2 [00:01:05.000] Search path: /user/username/projects/myproject/main +Info 3 [00:01:06.000] For info: /user/username/projects/myproject/main/main.ts :: Config file name: /user/username/projects/myproject/main/tsconfig.json +Info 4 [00:01:07.000] Creating configuration project /user/username/projects/myproject/main/tsconfig.json +Info 5 [00:01:08.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/main/tsconfig.json 2000 undefined Project: /user/username/projects/myproject/main/tsconfig.json WatchType: Config file +Info 6 [00:01:09.000] Config: /user/username/projects/myproject/main/tsconfig.json : { "rootNames": [ "/user/username/projects/myproject/main/main.ts" ], @@ -214,21 +214,21 @@ Info 6 [16:01:09.000] Config: /user/username/projects/myproject/main/tsconfig "configFilePath": "/user/username/projects/myproject/main/tsconfig.json" } } -Info 7 [16:01:10.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/main 1 undefined Config: /user/username/projects/myproject/main/tsconfig.json WatchType: Wild card directory -Info 8 [16:01:11.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/main 1 undefined Config: /user/username/projects/myproject/main/tsconfig.json WatchType: Wild card directory -Info 9 [16:01:12.000] Plugins were requested but not running in environment that supports 'require'. Nothing will be loaded -Info 10 [16:01:13.000] Starting updateGraphWorker: Project: /user/username/projects/myproject/main/tsconfig.json -Info 11 [16:01:14.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/decls 1 undefined Project: /user/username/projects/myproject/main/tsconfig.json WatchType: Failed Lookup Locations -Info 12 [16:01:15.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/decls 1 undefined Project: /user/username/projects/myproject/main/tsconfig.json WatchType: Failed Lookup Locations -Info 13 [16:01:16.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/decls/fns.d.ts 500 undefined WatchType: Closed Script info -Info 14 [16:01:17.000] FileWatcher:: Added:: WatchInfo: /a/lib/lib.d.ts 500 undefined WatchType: Closed Script info -Info 15 [16:01:18.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/main/node_modules/@types 1 undefined Project: /user/username/projects/myproject/main/tsconfig.json WatchType: Type roots -Info 16 [16:01:19.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/main/node_modules/@types 1 undefined Project: /user/username/projects/myproject/main/tsconfig.json WatchType: Type roots -Info 17 [16:01:20.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/main/tsconfig.json WatchType: Type roots -Info 18 [16:01:21.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/main/tsconfig.json WatchType: Type roots -Info 19 [16:01:22.000] Finishing updateGraphWorker: Project: /user/username/projects/myproject/main/tsconfig.json Version: 1 structureChanged: true structureIsReused:: Not Elapsed:: *ms -Info 20 [16:01:23.000] Project '/user/username/projects/myproject/main/tsconfig.json' (Configured) -Info 21 [16:01:24.000] Files (3) +Info 7 [00:01:10.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/main 1 undefined Config: /user/username/projects/myproject/main/tsconfig.json WatchType: Wild card directory +Info 8 [00:01:11.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/main 1 undefined Config: /user/username/projects/myproject/main/tsconfig.json WatchType: Wild card directory +Info 9 [00:01:12.000] Plugins were requested but not running in environment that supports 'require'. Nothing will be loaded +Info 10 [00:01:13.000] Starting updateGraphWorker: Project: /user/username/projects/myproject/main/tsconfig.json +Info 11 [00:01:14.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/decls 1 undefined Project: /user/username/projects/myproject/main/tsconfig.json WatchType: Failed Lookup Locations +Info 12 [00:01:15.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/decls 1 undefined Project: /user/username/projects/myproject/main/tsconfig.json WatchType: Failed Lookup Locations +Info 13 [00:01:16.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/decls/fns.d.ts 500 undefined WatchType: Closed Script info +Info 14 [00:01:17.000] FileWatcher:: Added:: WatchInfo: /a/lib/lib.d.ts 500 undefined WatchType: Closed Script info +Info 15 [00:01:18.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/main/node_modules/@types 1 undefined Project: /user/username/projects/myproject/main/tsconfig.json WatchType: Type roots +Info 16 [00:01:19.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/main/node_modules/@types 1 undefined Project: /user/username/projects/myproject/main/tsconfig.json WatchType: Type roots +Info 17 [00:01:20.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/main/tsconfig.json WatchType: Type roots +Info 18 [00:01:21.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/main/tsconfig.json WatchType: Type roots +Info 19 [00:01:22.000] Finishing updateGraphWorker: Project: /user/username/projects/myproject/main/tsconfig.json Version: 1 structureChanged: true structureIsReused:: Not Elapsed:: *ms +Info 20 [00:01:23.000] Project '/user/username/projects/myproject/main/tsconfig.json' (Configured) +Info 21 [00:01:24.000] Files (3) /a/lib/lib.d.ts /user/username/projects/myproject/decls/fns.d.ts /user/username/projects/myproject/main/main.ts @@ -241,16 +241,16 @@ Info 21 [16:01:24.000] Files (3) main.ts Matched by default include pattern '**/*' -Info 22 [16:01:25.000] ----------------------------------------------- -Info 23 [16:01:26.000] Search path: /user/username/projects/myproject/main -Info 24 [16:01:27.000] For info: /user/username/projects/myproject/main/tsconfig.json :: No config files found. -Info 25 [16:01:28.000] Project '/user/username/projects/myproject/main/tsconfig.json' (Configured) -Info 25 [16:01:29.000] Files (3) +Info 22 [00:01:25.000] ----------------------------------------------- +Info 23 [00:01:26.000] Search path: /user/username/projects/myproject/main +Info 24 [00:01:27.000] For info: /user/username/projects/myproject/main/tsconfig.json :: No config files found. +Info 25 [00:01:28.000] Project '/user/username/projects/myproject/main/tsconfig.json' (Configured) +Info 25 [00:01:29.000] Files (3) -Info 25 [16:01:30.000] ----------------------------------------------- -Info 25 [16:01:31.000] Open files: -Info 25 [16:01:32.000] FileName: /user/username/projects/myproject/main/main.ts ProjectRootPath: undefined -Info 25 [16:01:33.000] Projects: /user/username/projects/myproject/main/tsconfig.json +Info 25 [00:01:30.000] ----------------------------------------------- +Info 25 [00:01:31.000] Open files: +Info 25 [00:01:32.000] FileName: /user/username/projects/myproject/main/main.ts ProjectRootPath: undefined +Info 25 [00:01:33.000] Projects: /user/username/projects/myproject/main/tsconfig.json After request PolledWatches:: @@ -273,11 +273,11 @@ FsWatchesRecursive:: /user/username/projects/myproject/decls: {} -Info 25 [16:01:34.000] response: +Info 25 [00:01:34.000] response: { "responseRequired": false } -Info 26 [16:01:35.000] request: +Info 26 [00:01:35.000] request: { "seq": 0, "type": "request", @@ -308,11 +308,11 @@ FsWatchesRecursive:: /user/username/projects/myproject/decls: {} -Info 27 [16:01:36.000] Search path: /user/username/projects/myproject/dependency -Info 28 [16:01:37.000] For info: /user/username/projects/myproject/dependency/FnS.ts :: Config file name: /user/username/projects/myproject/dependency/tsconfig.json -Info 29 [16:01:38.000] Creating configuration project /user/username/projects/myproject/dependency/tsconfig.json -Info 30 [16:01:39.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/dependency/tsconfig.json 2000 undefined Project: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Config file -Info 31 [16:01:40.000] Config: /user/username/projects/myproject/dependency/tsconfig.json : { +Info 27 [00:01:36.000] Search path: /user/username/projects/myproject/dependency +Info 28 [00:01:37.000] For info: /user/username/projects/myproject/dependency/FnS.ts :: Config file name: /user/username/projects/myproject/dependency/tsconfig.json +Info 29 [00:01:38.000] Creating configuration project /user/username/projects/myproject/dependency/tsconfig.json +Info 30 [00:01:39.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/dependency/tsconfig.json 2000 undefined Project: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Config file +Info 31 [00:01:40.000] Config: /user/username/projects/myproject/dependency/tsconfig.json : { "rootNames": [ "/user/username/projects/myproject/dependency/FnS.ts" ], @@ -323,17 +323,17 @@ Info 31 [16:01:40.000] Config: /user/username/projects/myproject/dependency/ts "configFilePath": "/user/username/projects/myproject/dependency/tsconfig.json" } } -Info 32 [16:01:41.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/dependency 1 undefined Config: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Wild card directory -Info 33 [16:01:42.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/dependency 1 undefined Config: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Wild card directory -Info 34 [16:01:43.000] Plugins were requested but not running in environment that supports 'require'. Nothing will be loaded -Info 35 [16:01:44.000] Starting updateGraphWorker: Project: /user/username/projects/myproject/dependency/tsconfig.json -Info 36 [16:01:45.000] 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 37 [16:01:46.000] 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 38 [16:01:47.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Type roots -Info 39 [16:01:48.000] 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 40 [16:01:49.000] Finishing updateGraphWorker: Project: /user/username/projects/myproject/dependency/tsconfig.json Version: 1 structureChanged: true structureIsReused:: Not Elapsed:: *ms -Info 41 [16:01:50.000] Project '/user/username/projects/myproject/dependency/tsconfig.json' (Configured) -Info 42 [16:01:51.000] Files (2) +Info 32 [00:01:41.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/dependency 1 undefined Config: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Wild card directory +Info 33 [00:01:42.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/dependency 1 undefined Config: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Wild card directory +Info 34 [00:01:43.000] Plugins were requested but not running in environment that supports 'require'. Nothing will be loaded +Info 35 [00:01:44.000] Starting updateGraphWorker: Project: /user/username/projects/myproject/dependency/tsconfig.json +Info 36 [00:01:45.000] 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 37 [00:01:46.000] 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 38 [00:01:47.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Type roots +Info 39 [00:01:48.000] 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 40 [00:01:49.000] Finishing updateGraphWorker: Project: /user/username/projects/myproject/dependency/tsconfig.json Version: 1 structureChanged: true structureIsReused:: Not Elapsed:: *ms +Info 41 [00:01:50.000] Project '/user/username/projects/myproject/dependency/tsconfig.json' (Configured) +Info 42 [00:01:51.000] Files (2) /a/lib/lib.d.ts /user/username/projects/myproject/dependency/FnS.ts @@ -343,22 +343,22 @@ Info 42 [16:01:51.000] Files (2) FnS.ts Matched by default include pattern '**/*' -Info 43 [16:01:52.000] ----------------------------------------------- -Info 44 [16:01:53.000] Search path: /user/username/projects/myproject/dependency -Info 45 [16:01:54.000] For info: /user/username/projects/myproject/dependency/tsconfig.json :: No config files found. -Info 46 [16:01:55.000] Project '/user/username/projects/myproject/main/tsconfig.json' (Configured) -Info 46 [16:01:56.000] Files (3) - -Info 46 [16:01:57.000] ----------------------------------------------- -Info 46 [16:01:58.000] Project '/user/username/projects/myproject/dependency/tsconfig.json' (Configured) -Info 46 [16:01:59.000] Files (2) - -Info 46 [16:02:00.000] ----------------------------------------------- -Info 46 [16:02:01.000] Open files: -Info 46 [16:02:02.000] FileName: /user/username/projects/myproject/main/main.ts ProjectRootPath: undefined -Info 46 [16:02:03.000] Projects: /user/username/projects/myproject/main/tsconfig.json -Info 46 [16:02:04.000] FileName: /user/username/projects/myproject/dependency/FnS.ts ProjectRootPath: undefined -Info 46 [16:02:05.000] Projects: /user/username/projects/myproject/dependency/tsconfig.json +Info 43 [00:01:52.000] ----------------------------------------------- +Info 44 [00:01:53.000] Search path: /user/username/projects/myproject/dependency +Info 45 [00:01:54.000] For info: /user/username/projects/myproject/dependency/tsconfig.json :: No config files found. +Info 46 [00:01:55.000] Project '/user/username/projects/myproject/main/tsconfig.json' (Configured) +Info 46 [00:01:56.000] Files (3) + +Info 46 [00:01:57.000] ----------------------------------------------- +Info 46 [00:01:58.000] Project '/user/username/projects/myproject/dependency/tsconfig.json' (Configured) +Info 46 [00:01:59.000] Files (2) + +Info 46 [00:02:00.000] ----------------------------------------------- +Info 46 [00:02:01.000] Open files: +Info 46 [00:02:02.000] FileName: /user/username/projects/myproject/main/main.ts ProjectRootPath: undefined +Info 46 [00:02:03.000] Projects: /user/username/projects/myproject/main/tsconfig.json +Info 46 [00:02:04.000] FileName: /user/username/projects/myproject/dependency/FnS.ts ProjectRootPath: undefined +Info 46 [00:02:05.000] Projects: /user/username/projects/myproject/dependency/tsconfig.json After request PolledWatches:: @@ -387,11 +387,11 @@ FsWatchesRecursive:: /user/username/projects/myproject/dependency: {} -Info 46 [16:02:06.000] response: +Info 46 [00:02:06.000] response: { "responseRequired": false } -Info 47 [16:02:07.000] request: +Info 47 [00:02:07.000] request: { "seq": 0, "type": "request", @@ -428,11 +428,11 @@ FsWatchesRecursive:: /user/username/projects/myproject/dependency: {} -Info 48 [16:02:08.000] Search path: /user/username/projects/myproject/random -Info 49 [16:02:09.000] For info: /user/username/projects/myproject/random/random.ts :: Config file name: /user/username/projects/myproject/random/tsconfig.json -Info 50 [16:02:10.000] Creating configuration project /user/username/projects/myproject/random/tsconfig.json -Info 51 [16:02:11.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/random/tsconfig.json 2000 undefined Project: /user/username/projects/myproject/random/tsconfig.json WatchType: Config file -Info 52 [16:02:12.000] Config: /user/username/projects/myproject/random/tsconfig.json : { +Info 48 [00:02:08.000] Search path: /user/username/projects/myproject/random +Info 49 [00:02:09.000] For info: /user/username/projects/myproject/random/random.ts :: Config file name: /user/username/projects/myproject/random/tsconfig.json +Info 50 [00:02:10.000] Creating configuration project /user/username/projects/myproject/random/tsconfig.json +Info 51 [00:02:11.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/random/tsconfig.json 2000 undefined Project: /user/username/projects/myproject/random/tsconfig.json WatchType: Config file +Info 52 [00:02:12.000] Config: /user/username/projects/myproject/random/tsconfig.json : { "rootNames": [ "/user/username/projects/myproject/random/random.ts" ], @@ -440,17 +440,17 @@ Info 52 [16:02:12.000] Config: /user/username/projects/myproject/random/tsconf "configFilePath": "/user/username/projects/myproject/random/tsconfig.json" } } -Info 53 [16:02:13.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/random 1 undefined Config: /user/username/projects/myproject/random/tsconfig.json WatchType: Wild card directory -Info 54 [16:02:14.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/random 1 undefined Config: /user/username/projects/myproject/random/tsconfig.json WatchType: Wild card directory -Info 55 [16:02:15.000] Plugins were requested but not running in environment that supports 'require'. Nothing will be loaded -Info 56 [16:02:16.000] Starting updateGraphWorker: Project: /user/username/projects/myproject/random/tsconfig.json -Info 57 [16:02:17.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/random/node_modules/@types 1 undefined Project: /user/username/projects/myproject/random/tsconfig.json WatchType: Type roots -Info 58 [16:02:18.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/random/node_modules/@types 1 undefined Project: /user/username/projects/myproject/random/tsconfig.json WatchType: Type roots -Info 59 [16:02:19.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/random/tsconfig.json WatchType: Type roots -Info 60 [16:02:20.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/random/tsconfig.json WatchType: Type roots -Info 61 [16:02:21.000] Finishing updateGraphWorker: Project: /user/username/projects/myproject/random/tsconfig.json Version: 1 structureChanged: true structureIsReused:: Not Elapsed:: *ms -Info 62 [16:02:22.000] Project '/user/username/projects/myproject/random/tsconfig.json' (Configured) -Info 63 [16:02:23.000] Files (2) +Info 53 [00:02:13.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/random 1 undefined Config: /user/username/projects/myproject/random/tsconfig.json WatchType: Wild card directory +Info 54 [00:02:14.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/random 1 undefined Config: /user/username/projects/myproject/random/tsconfig.json WatchType: Wild card directory +Info 55 [00:02:15.000] Plugins were requested but not running in environment that supports 'require'. Nothing will be loaded +Info 56 [00:02:16.000] Starting updateGraphWorker: Project: /user/username/projects/myproject/random/tsconfig.json +Info 57 [00:02:17.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/random/node_modules/@types 1 undefined Project: /user/username/projects/myproject/random/tsconfig.json WatchType: Type roots +Info 58 [00:02:18.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/random/node_modules/@types 1 undefined Project: /user/username/projects/myproject/random/tsconfig.json WatchType: Type roots +Info 59 [00:02:19.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/random/tsconfig.json WatchType: Type roots +Info 60 [00:02:20.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/random/tsconfig.json WatchType: Type roots +Info 61 [00:02:21.000] Finishing updateGraphWorker: Project: /user/username/projects/myproject/random/tsconfig.json Version: 1 structureChanged: true structureIsReused:: Not Elapsed:: *ms +Info 62 [00:02:22.000] Project '/user/username/projects/myproject/random/tsconfig.json' (Configured) +Info 63 [00:02:23.000] Files (2) /a/lib/lib.d.ts /user/username/projects/myproject/random/random.ts @@ -460,26 +460,26 @@ Info 63 [16:02:23.000] Files (2) random.ts Matched by default include pattern '**/*' -Info 64 [16:02:24.000] ----------------------------------------------- -Info 65 [16:02:25.000] Project '/user/username/projects/myproject/main/tsconfig.json' (Configured) -Info 65 [16:02:26.000] Files (3) - -Info 65 [16:02:27.000] ----------------------------------------------- -Info 65 [16:02:28.000] Project '/user/username/projects/myproject/dependency/tsconfig.json' (Configured) -Info 65 [16:02:29.000] Files (2) - -Info 65 [16:02:30.000] ----------------------------------------------- -Info 65 [16:02:31.000] Project '/user/username/projects/myproject/random/tsconfig.json' (Configured) -Info 65 [16:02:32.000] Files (2) - -Info 65 [16:02:33.000] ----------------------------------------------- -Info 65 [16:02:34.000] Open files: -Info 65 [16:02:35.000] FileName: /user/username/projects/myproject/main/main.ts ProjectRootPath: undefined -Info 65 [16:02:36.000] Projects: /user/username/projects/myproject/main/tsconfig.json -Info 65 [16:02:37.000] FileName: /user/username/projects/myproject/dependency/FnS.ts ProjectRootPath: undefined -Info 65 [16:02:38.000] Projects: /user/username/projects/myproject/dependency/tsconfig.json -Info 65 [16:02:39.000] FileName: /user/username/projects/myproject/random/random.ts ProjectRootPath: undefined -Info 65 [16:02:40.000] Projects: /user/username/projects/myproject/random/tsconfig.json +Info 64 [00:02:24.000] ----------------------------------------------- +Info 65 [00:02:25.000] Project '/user/username/projects/myproject/main/tsconfig.json' (Configured) +Info 65 [00:02:26.000] Files (3) + +Info 65 [00:02:27.000] ----------------------------------------------- +Info 65 [00:02:28.000] Project '/user/username/projects/myproject/dependency/tsconfig.json' (Configured) +Info 65 [00:02:29.000] Files (2) + +Info 65 [00:02:30.000] ----------------------------------------------- +Info 65 [00:02:31.000] Project '/user/username/projects/myproject/random/tsconfig.json' (Configured) +Info 65 [00:02:32.000] Files (2) + +Info 65 [00:02:33.000] ----------------------------------------------- +Info 65 [00:02:34.000] Open files: +Info 65 [00:02:35.000] FileName: /user/username/projects/myproject/main/main.ts ProjectRootPath: undefined +Info 65 [00:02:36.000] Projects: /user/username/projects/myproject/main/tsconfig.json +Info 65 [00:02:37.000] FileName: /user/username/projects/myproject/dependency/FnS.ts ProjectRootPath: undefined +Info 65 [00:02:38.000] Projects: /user/username/projects/myproject/dependency/tsconfig.json +Info 65 [00:02:39.000] FileName: /user/username/projects/myproject/random/random.ts ProjectRootPath: undefined +Info 65 [00:02:40.000] Projects: /user/username/projects/myproject/random/tsconfig.json After request PolledWatches:: @@ -514,11 +514,11 @@ FsWatchesRecursive:: /user/username/projects/myproject/random: {} -Info 65 [16:02:41.000] response: +Info 65 [00:02:41.000] response: { "responseRequired": false } -Info 66 [16:02:42.000] request: +Info 66 [00:02:42.000] request: { "command": "definitionAndBoundSpan", "arguments": { @@ -563,7 +563,7 @@ FsWatchesRecursive:: /user/username/projects/myproject/random: {} -Info 67 [16:02:43.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/decls/FnS.d.ts.map 500 undefined WatchType: Closed Script info +Info 67 [00:02:43.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/decls/FnS.d.ts.map 500 undefined WatchType: Closed Script info After request PolledWatches:: @@ -600,7 +600,7 @@ FsWatchesRecursive:: /user/username/projects/myproject/random: {} -Info 68 [16:02:44.000] response: +Info 68 [00:02:44.000] response: { "response": { "definitions": [ @@ -637,7 +637,7 @@ Info 68 [16:02:44.000] response: }, "responseRequired": true } -Info 69 [16:02:45.000] request: +Info 69 [00:02:45.000] request: { "command": "rename", "arguments": { @@ -684,8 +684,8 @@ FsWatchesRecursive:: /user/username/projects/myproject/random: {} -Info 70 [16:02:46.000] Search path: /user/username/projects/myproject/dependency -Info 71 [16:02:47.000] For info: /user/username/projects/myproject/dependency/FnS.ts :: Config file name: /user/username/projects/myproject/dependency/tsconfig.json +Info 70 [00:02:46.000] Search path: /user/username/projects/myproject/dependency +Info 71 [00:02:47.000] For info: /user/username/projects/myproject/dependency/FnS.ts :: Config file name: /user/username/projects/myproject/dependency/tsconfig.json After request PolledWatches:: @@ -722,7 +722,7 @@ FsWatchesRecursive:: /user/username/projects/myproject/random: {} -Info 72 [16:02:48.000] response: +Info 72 [00:02:48.000] response: { "response": { "info": { @@ -803,7 +803,7 @@ Info 72 [16:02:48.000] response: }, "responseRequired": true } -Info 73 [16:02:49.000] request: +Info 73 [00:02:49.000] request: { "command": "change", "arguments": { @@ -889,11 +889,11 @@ FsWatchesRecursive:: /user/username/projects/myproject/random: {} -Info 74 [16:02:50.000] response: +Info 74 [00:02:50.000] response: { "responseRequired": false } -Info 75 [16:02:51.000] request: +Info 75 [00:02:51.000] request: { "command": "change", "arguments": { @@ -979,7 +979,7 @@ FsWatchesRecursive:: /user/username/projects/myproject/random: {} -Info 76 [16:02:52.000] response: +Info 76 [00:02:52.000] response: { "responseRequired": false } @@ -1055,7 +1055,7 @@ FsWatchesRecursive:: /user/username/projects/myproject/random: {} -Info 77 [16:02:53.000] request: +Info 77 [00:02:53.000] request: { "command": "definitionAndBoundSpan", "arguments": { @@ -1102,9 +1102,9 @@ FsWatchesRecursive:: /user/username/projects/myproject/random: {} -Info 78 [16:02:54.000] Starting updateGraphWorker: Project: /user/username/projects/myproject/main/tsconfig.json -Info 79 [16:02:55.000] Finishing updateGraphWorker: Project: /user/username/projects/myproject/main/tsconfig.json Version: 2 structureChanged: false structureIsReused:: Completely Elapsed:: *ms -Info 80 [16:02:56.000] Different program with same set of files +Info 78 [00:02:54.000] Starting updateGraphWorker: Project: /user/username/projects/myproject/main/tsconfig.json +Info 79 [00:02:55.000] Finishing updateGraphWorker: Project: /user/username/projects/myproject/main/tsconfig.json Version: 2 structureChanged: false structureIsReused:: Completely Elapsed:: *ms +Info 80 [00:02:56.000] Different program with same set of files After request PolledWatches:: @@ -1141,7 +1141,7 @@ FsWatchesRecursive:: /user/username/projects/myproject/random: {} -Info 81 [16:02:57.000] response: +Info 81 [00:02:57.000] response: { "response": { "definitions": [ @@ -1178,7 +1178,7 @@ Info 81 [16:02:57.000] response: }, "responseRequired": true } -Info 82 [16:02:58.000] request: +Info 82 [00:02:58.000] request: { "command": "definitionAndBoundSpan", "arguments": { @@ -1261,7 +1261,7 @@ FsWatchesRecursive:: /user/username/projects/myproject/random: {} -Info 83 [16:02:59.000] response: +Info 83 [00:02:59.000] response: { "response": { "definitions": [ @@ -1298,7 +1298,7 @@ Info 83 [16:02:59.000] response: }, "responseRequired": true } -Info 84 [16:03:00.000] request: +Info 84 [00:03:00.000] request: { "command": "definitionAndBoundSpan", "arguments": { @@ -1381,7 +1381,7 @@ FsWatchesRecursive:: /user/username/projects/myproject/random: {} -Info 85 [16:03:01.000] response: +Info 85 [00:03:01.000] response: { "response": { "definitions": [ @@ -1418,7 +1418,7 @@ Info 85 [16:03:01.000] response: }, "responseRequired": true } -Info 86 [16:03:02.000] request: +Info 86 [00:03:02.000] request: { "command": "definitionAndBoundSpan", "arguments": { @@ -1501,7 +1501,7 @@ FsWatchesRecursive:: /user/username/projects/myproject/random: {} -Info 87 [16:03:03.000] response: +Info 87 [00:03:03.000] response: { "response": { "definitions": [ @@ -1538,7 +1538,7 @@ Info 87 [16:03:03.000] response: }, "responseRequired": true } -Info 88 [16:03:04.000] request: +Info 88 [00:03:04.000] request: { "command": "definitionAndBoundSpan", "arguments": { @@ -1621,7 +1621,7 @@ FsWatchesRecursive:: /user/username/projects/myproject/random: {} -Info 89 [16:03:05.000] response: +Info 89 [00:03:05.000] response: { "response": { "definitions": [ @@ -1658,7 +1658,7 @@ Info 89 [16:03:05.000] response: }, "responseRequired": true } -Info 90 [16:03:06.000] request: +Info 90 [00:03:06.000] request: { "command": "rename", "arguments": { @@ -1705,11 +1705,11 @@ FsWatchesRecursive:: /user/username/projects/myproject/random: {} -Info 91 [16:03:07.000] Starting updateGraphWorker: Project: /user/username/projects/myproject/dependency/tsconfig.json -Info 92 [16:03:08.000] Finishing updateGraphWorker: Project: /user/username/projects/myproject/dependency/tsconfig.json Version: 2 structureChanged: false structureIsReused:: Completely Elapsed:: *ms -Info 93 [16:03:09.000] Different program with same set of files -Info 94 [16:03:10.000] Search path: /user/username/projects/myproject/dependency -Info 95 [16:03:11.000] For info: /user/username/projects/myproject/dependency/FnS.ts :: Config file name: /user/username/projects/myproject/dependency/tsconfig.json +Info 91 [00:03:07.000] Starting updateGraphWorker: Project: /user/username/projects/myproject/dependency/tsconfig.json +Info 92 [00:03:08.000] Finishing updateGraphWorker: Project: /user/username/projects/myproject/dependency/tsconfig.json Version: 2 structureChanged: false structureIsReused:: Completely Elapsed:: *ms +Info 93 [00:03:09.000] Different program with same set of files +Info 94 [00:03:10.000] Search path: /user/username/projects/myproject/dependency +Info 95 [00:03:11.000] For info: /user/username/projects/myproject/dependency/FnS.ts :: Config file name: /user/username/projects/myproject/dependency/tsconfig.json After request PolledWatches:: @@ -1746,7 +1746,7 @@ FsWatchesRecursive:: /user/username/projects/myproject/random: {} -Info 96 [16:03:12.000] response: +Info 96 [00:03:12.000] response: { "response": { "info": { @@ -1827,7 +1827,7 @@ Info 96 [16:03:12.000] response: }, "responseRequired": true } -Info 97 [16:03:13.000] request: +Info 97 [00:03:13.000] request: { "command": "rename", "arguments": { @@ -1874,8 +1874,8 @@ FsWatchesRecursive:: /user/username/projects/myproject/random: {} -Info 98 [16:03:14.000] Search path: /user/username/projects/myproject/dependency -Info 99 [16:03:15.000] For info: /user/username/projects/myproject/dependency/FnS.ts :: Config file name: /user/username/projects/myproject/dependency/tsconfig.json +Info 98 [00:03:14.000] Search path: /user/username/projects/myproject/dependency +Info 99 [00:03:15.000] For info: /user/username/projects/myproject/dependency/FnS.ts :: Config file name: /user/username/projects/myproject/dependency/tsconfig.json After request PolledWatches:: @@ -1912,7 +1912,7 @@ FsWatchesRecursive:: /user/username/projects/myproject/random: {} -Info 100 [16:03:16.000] response: +Info 100 [00:03:16.000] response: { "response": { "info": { @@ -1993,7 +1993,7 @@ Info 100 [16:03:16.000] response: }, "responseRequired": true } -Info 101 [16:03:17.000] request: +Info 101 [00:03:17.000] request: { "command": "rename", "arguments": { @@ -2040,8 +2040,8 @@ FsWatchesRecursive:: /user/username/projects/myproject/random: {} -Info 102 [16:03:18.000] Search path: /user/username/projects/myproject/dependency -Info 103 [16:03:19.000] For info: /user/username/projects/myproject/dependency/FnS.ts :: Config file name: /user/username/projects/myproject/dependency/tsconfig.json +Info 102 [00:03:18.000] Search path: /user/username/projects/myproject/dependency +Info 103 [00:03:19.000] For info: /user/username/projects/myproject/dependency/FnS.ts :: Config file name: /user/username/projects/myproject/dependency/tsconfig.json After request PolledWatches:: @@ -2078,7 +2078,7 @@ FsWatchesRecursive:: /user/username/projects/myproject/random: {} -Info 104 [16:03:20.000] response: +Info 104 [00:03:20.000] response: { "response": { "info": { @@ -2159,7 +2159,7 @@ Info 104 [16:03:20.000] response: }, "responseRequired": true } -Info 105 [16:03:21.000] request: +Info 105 [00:03:21.000] request: { "command": "rename", "arguments": { @@ -2206,8 +2206,8 @@ FsWatchesRecursive:: /user/username/projects/myproject/random: {} -Info 106 [16:03:22.000] Search path: /user/username/projects/myproject/dependency -Info 107 [16:03:23.000] For info: /user/username/projects/myproject/dependency/FnS.ts :: Config file name: /user/username/projects/myproject/dependency/tsconfig.json +Info 106 [00:03:22.000] Search path: /user/username/projects/myproject/dependency +Info 107 [00:03:23.000] For info: /user/username/projects/myproject/dependency/FnS.ts :: Config file name: /user/username/projects/myproject/dependency/tsconfig.json After request PolledWatches:: @@ -2244,7 +2244,7 @@ FsWatchesRecursive:: /user/username/projects/myproject/random: {} -Info 108 [16:03:24.000] response: +Info 108 [00:03:24.000] response: { "response": { "info": { @@ -2325,7 +2325,7 @@ Info 108 [16:03:24.000] response: }, "responseRequired": true } -Info 109 [16:03:25.000] request: +Info 109 [00:03:25.000] request: { "command": "rename", "arguments": { @@ -2372,8 +2372,8 @@ FsWatchesRecursive:: /user/username/projects/myproject/random: {} -Info 110 [16:03:26.000] Search path: /user/username/projects/myproject/dependency -Info 111 [16:03:27.000] For info: /user/username/projects/myproject/dependency/FnS.ts :: Config file name: /user/username/projects/myproject/dependency/tsconfig.json +Info 110 [00:03:26.000] Search path: /user/username/projects/myproject/dependency +Info 111 [00:03:27.000] For info: /user/username/projects/myproject/dependency/FnS.ts :: Config file name: /user/username/projects/myproject/dependency/tsconfig.json After request PolledWatches:: @@ -2410,7 +2410,7 @@ FsWatchesRecursive:: /user/username/projects/myproject/random: {} -Info 112 [16:03:28.000] response: +Info 112 [00:03:28.000] response: { "response": { "info": { 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 7a39879d2e1c0..bb6e9e759d554 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 @@ -1,5 +1,5 @@ -Info 0 [16:01:03.000] Provided types map file "/a/lib/typesMap.json" doesn't exist -Info 1 [16:01:04.000] request: +Info 0 [00:01:03.000] Provided types map file "/a/lib/typesMap.json" doesn't exist +Info 1 [00:01:04.000] request: { "seq": 0, "type": "request", @@ -200,11 +200,11 @@ FsWatches:: FsWatchesRecursive:: -Info 2 [16:01:05.000] Search path: /user/username/projects/myproject/main -Info 3 [16:01:06.000] For info: /user/username/projects/myproject/main/main.ts :: Config file name: /user/username/projects/myproject/main/tsconfig.json -Info 4 [16:01:07.000] Creating configuration project /user/username/projects/myproject/main/tsconfig.json -Info 5 [16:01:08.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/main/tsconfig.json 2000 undefined Project: /user/username/projects/myproject/main/tsconfig.json WatchType: Config file -Info 6 [16:01:09.000] Config: /user/username/projects/myproject/main/tsconfig.json : { +Info 2 [00:01:05.000] Search path: /user/username/projects/myproject/main +Info 3 [00:01:06.000] For info: /user/username/projects/myproject/main/main.ts :: Config file name: /user/username/projects/myproject/main/tsconfig.json +Info 4 [00:01:07.000] Creating configuration project /user/username/projects/myproject/main/tsconfig.json +Info 5 [00:01:08.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/main/tsconfig.json 2000 undefined Project: /user/username/projects/myproject/main/tsconfig.json WatchType: Config file +Info 6 [00:01:09.000] Config: /user/username/projects/myproject/main/tsconfig.json : { "rootNames": [ "/user/username/projects/myproject/main/main.ts" ], @@ -214,21 +214,21 @@ Info 6 [16:01:09.000] Config: /user/username/projects/myproject/main/tsconfig "configFilePath": "/user/username/projects/myproject/main/tsconfig.json" } } -Info 7 [16:01:10.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/main 1 undefined Config: /user/username/projects/myproject/main/tsconfig.json WatchType: Wild card directory -Info 8 [16:01:11.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/main 1 undefined Config: /user/username/projects/myproject/main/tsconfig.json WatchType: Wild card directory -Info 9 [16:01:12.000] Plugins were requested but not running in environment that supports 'require'. Nothing will be loaded -Info 10 [16:01:13.000] Starting updateGraphWorker: Project: /user/username/projects/myproject/main/tsconfig.json -Info 11 [16:01:14.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/decls 1 undefined Project: /user/username/projects/myproject/main/tsconfig.json WatchType: Failed Lookup Locations -Info 12 [16:01:15.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/decls 1 undefined Project: /user/username/projects/myproject/main/tsconfig.json WatchType: Failed Lookup Locations -Info 13 [16:01:16.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/decls/fns.d.ts 500 undefined WatchType: Closed Script info -Info 14 [16:01:17.000] FileWatcher:: Added:: WatchInfo: /a/lib/lib.d.ts 500 undefined WatchType: Closed Script info -Info 15 [16:01:18.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/main/node_modules/@types 1 undefined Project: /user/username/projects/myproject/main/tsconfig.json WatchType: Type roots -Info 16 [16:01:19.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/main/node_modules/@types 1 undefined Project: /user/username/projects/myproject/main/tsconfig.json WatchType: Type roots -Info 17 [16:01:20.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/main/tsconfig.json WatchType: Type roots -Info 18 [16:01:21.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/main/tsconfig.json WatchType: Type roots -Info 19 [16:01:22.000] Finishing updateGraphWorker: Project: /user/username/projects/myproject/main/tsconfig.json Version: 1 structureChanged: true structureIsReused:: Not Elapsed:: *ms -Info 20 [16:01:23.000] Project '/user/username/projects/myproject/main/tsconfig.json' (Configured) -Info 21 [16:01:24.000] Files (3) +Info 7 [00:01:10.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/main 1 undefined Config: /user/username/projects/myproject/main/tsconfig.json WatchType: Wild card directory +Info 8 [00:01:11.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/main 1 undefined Config: /user/username/projects/myproject/main/tsconfig.json WatchType: Wild card directory +Info 9 [00:01:12.000] Plugins were requested but not running in environment that supports 'require'. Nothing will be loaded +Info 10 [00:01:13.000] Starting updateGraphWorker: Project: /user/username/projects/myproject/main/tsconfig.json +Info 11 [00:01:14.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/decls 1 undefined Project: /user/username/projects/myproject/main/tsconfig.json WatchType: Failed Lookup Locations +Info 12 [00:01:15.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/decls 1 undefined Project: /user/username/projects/myproject/main/tsconfig.json WatchType: Failed Lookup Locations +Info 13 [00:01:16.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/decls/fns.d.ts 500 undefined WatchType: Closed Script info +Info 14 [00:01:17.000] FileWatcher:: Added:: WatchInfo: /a/lib/lib.d.ts 500 undefined WatchType: Closed Script info +Info 15 [00:01:18.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/main/node_modules/@types 1 undefined Project: /user/username/projects/myproject/main/tsconfig.json WatchType: Type roots +Info 16 [00:01:19.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/main/node_modules/@types 1 undefined Project: /user/username/projects/myproject/main/tsconfig.json WatchType: Type roots +Info 17 [00:01:20.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/main/tsconfig.json WatchType: Type roots +Info 18 [00:01:21.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/main/tsconfig.json WatchType: Type roots +Info 19 [00:01:22.000] Finishing updateGraphWorker: Project: /user/username/projects/myproject/main/tsconfig.json Version: 1 structureChanged: true structureIsReused:: Not Elapsed:: *ms +Info 20 [00:01:23.000] Project '/user/username/projects/myproject/main/tsconfig.json' (Configured) +Info 21 [00:01:24.000] Files (3) /a/lib/lib.d.ts /user/username/projects/myproject/decls/fns.d.ts /user/username/projects/myproject/main/main.ts @@ -241,16 +241,16 @@ Info 21 [16:01:24.000] Files (3) main.ts Matched by default include pattern '**/*' -Info 22 [16:01:25.000] ----------------------------------------------- -Info 23 [16:01:26.000] Search path: /user/username/projects/myproject/main -Info 24 [16:01:27.000] For info: /user/username/projects/myproject/main/tsconfig.json :: No config files found. -Info 25 [16:01:28.000] Project '/user/username/projects/myproject/main/tsconfig.json' (Configured) -Info 25 [16:01:29.000] Files (3) +Info 22 [00:01:25.000] ----------------------------------------------- +Info 23 [00:01:26.000] Search path: /user/username/projects/myproject/main +Info 24 [00:01:27.000] For info: /user/username/projects/myproject/main/tsconfig.json :: No config files found. +Info 25 [00:01:28.000] Project '/user/username/projects/myproject/main/tsconfig.json' (Configured) +Info 25 [00:01:29.000] Files (3) -Info 25 [16:01:30.000] ----------------------------------------------- -Info 25 [16:01:31.000] Open files: -Info 25 [16:01:32.000] FileName: /user/username/projects/myproject/main/main.ts ProjectRootPath: undefined -Info 25 [16:01:33.000] Projects: /user/username/projects/myproject/main/tsconfig.json +Info 25 [00:01:30.000] ----------------------------------------------- +Info 25 [00:01:31.000] Open files: +Info 25 [00:01:32.000] FileName: /user/username/projects/myproject/main/main.ts ProjectRootPath: undefined +Info 25 [00:01:33.000] Projects: /user/username/projects/myproject/main/tsconfig.json After request PolledWatches:: @@ -273,11 +273,11 @@ FsWatchesRecursive:: /user/username/projects/myproject/decls: {} -Info 25 [16:01:34.000] response: +Info 25 [00:01:34.000] response: { "responseRequired": false } -Info 26 [16:01:35.000] request: +Info 26 [00:01:35.000] request: { "seq": 0, "type": "request", @@ -308,11 +308,11 @@ FsWatchesRecursive:: /user/username/projects/myproject/decls: {} -Info 27 [16:01:36.000] Search path: /user/username/projects/myproject/dependency -Info 28 [16:01:37.000] For info: /user/username/projects/myproject/dependency/FnS.ts :: Config file name: /user/username/projects/myproject/dependency/tsconfig.json -Info 29 [16:01:38.000] Creating configuration project /user/username/projects/myproject/dependency/tsconfig.json -Info 30 [16:01:39.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/dependency/tsconfig.json 2000 undefined Project: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Config file -Info 31 [16:01:40.000] Config: /user/username/projects/myproject/dependency/tsconfig.json : { +Info 27 [00:01:36.000] Search path: /user/username/projects/myproject/dependency +Info 28 [00:01:37.000] For info: /user/username/projects/myproject/dependency/FnS.ts :: Config file name: /user/username/projects/myproject/dependency/tsconfig.json +Info 29 [00:01:38.000] Creating configuration project /user/username/projects/myproject/dependency/tsconfig.json +Info 30 [00:01:39.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/dependency/tsconfig.json 2000 undefined Project: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Config file +Info 31 [00:01:40.000] Config: /user/username/projects/myproject/dependency/tsconfig.json : { "rootNames": [ "/user/username/projects/myproject/dependency/FnS.ts" ], @@ -323,17 +323,17 @@ Info 31 [16:01:40.000] Config: /user/username/projects/myproject/dependency/ts "configFilePath": "/user/username/projects/myproject/dependency/tsconfig.json" } } -Info 32 [16:01:41.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/dependency 1 undefined Config: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Wild card directory -Info 33 [16:01:42.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/dependency 1 undefined Config: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Wild card directory -Info 34 [16:01:43.000] Plugins were requested but not running in environment that supports 'require'. Nothing will be loaded -Info 35 [16:01:44.000] Starting updateGraphWorker: Project: /user/username/projects/myproject/dependency/tsconfig.json -Info 36 [16:01:45.000] 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 37 [16:01:46.000] 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 38 [16:01:47.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Type roots -Info 39 [16:01:48.000] 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 40 [16:01:49.000] Finishing updateGraphWorker: Project: /user/username/projects/myproject/dependency/tsconfig.json Version: 1 structureChanged: true structureIsReused:: Not Elapsed:: *ms -Info 41 [16:01:50.000] Project '/user/username/projects/myproject/dependency/tsconfig.json' (Configured) -Info 42 [16:01:51.000] Files (2) +Info 32 [00:01:41.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/dependency 1 undefined Config: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Wild card directory +Info 33 [00:01:42.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/dependency 1 undefined Config: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Wild card directory +Info 34 [00:01:43.000] Plugins were requested but not running in environment that supports 'require'. Nothing will be loaded +Info 35 [00:01:44.000] Starting updateGraphWorker: Project: /user/username/projects/myproject/dependency/tsconfig.json +Info 36 [00:01:45.000] 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 37 [00:01:46.000] 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 38 [00:01:47.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Type roots +Info 39 [00:01:48.000] 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 40 [00:01:49.000] Finishing updateGraphWorker: Project: /user/username/projects/myproject/dependency/tsconfig.json Version: 1 structureChanged: true structureIsReused:: Not Elapsed:: *ms +Info 41 [00:01:50.000] Project '/user/username/projects/myproject/dependency/tsconfig.json' (Configured) +Info 42 [00:01:51.000] Files (2) /a/lib/lib.d.ts /user/username/projects/myproject/dependency/FnS.ts @@ -343,22 +343,22 @@ Info 42 [16:01:51.000] Files (2) FnS.ts Matched by default include pattern '**/*' -Info 43 [16:01:52.000] ----------------------------------------------- -Info 44 [16:01:53.000] Search path: /user/username/projects/myproject/dependency -Info 45 [16:01:54.000] For info: /user/username/projects/myproject/dependency/tsconfig.json :: No config files found. -Info 46 [16:01:55.000] Project '/user/username/projects/myproject/main/tsconfig.json' (Configured) -Info 46 [16:01:56.000] Files (3) - -Info 46 [16:01:57.000] ----------------------------------------------- -Info 46 [16:01:58.000] Project '/user/username/projects/myproject/dependency/tsconfig.json' (Configured) -Info 46 [16:01:59.000] Files (2) - -Info 46 [16:02:00.000] ----------------------------------------------- -Info 46 [16:02:01.000] Open files: -Info 46 [16:02:02.000] FileName: /user/username/projects/myproject/main/main.ts ProjectRootPath: undefined -Info 46 [16:02:03.000] Projects: /user/username/projects/myproject/main/tsconfig.json -Info 46 [16:02:04.000] FileName: /user/username/projects/myproject/dependency/FnS.ts ProjectRootPath: undefined -Info 46 [16:02:05.000] Projects: /user/username/projects/myproject/dependency/tsconfig.json +Info 43 [00:01:52.000] ----------------------------------------------- +Info 44 [00:01:53.000] Search path: /user/username/projects/myproject/dependency +Info 45 [00:01:54.000] For info: /user/username/projects/myproject/dependency/tsconfig.json :: No config files found. +Info 46 [00:01:55.000] Project '/user/username/projects/myproject/main/tsconfig.json' (Configured) +Info 46 [00:01:56.000] Files (3) + +Info 46 [00:01:57.000] ----------------------------------------------- +Info 46 [00:01:58.000] Project '/user/username/projects/myproject/dependency/tsconfig.json' (Configured) +Info 46 [00:01:59.000] Files (2) + +Info 46 [00:02:00.000] ----------------------------------------------- +Info 46 [00:02:01.000] Open files: +Info 46 [00:02:02.000] FileName: /user/username/projects/myproject/main/main.ts ProjectRootPath: undefined +Info 46 [00:02:03.000] Projects: /user/username/projects/myproject/main/tsconfig.json +Info 46 [00:02:04.000] FileName: /user/username/projects/myproject/dependency/FnS.ts ProjectRootPath: undefined +Info 46 [00:02:05.000] Projects: /user/username/projects/myproject/dependency/tsconfig.json After request PolledWatches:: @@ -387,11 +387,11 @@ FsWatchesRecursive:: /user/username/projects/myproject/dependency: {} -Info 46 [16:02:06.000] response: +Info 46 [00:02:06.000] response: { "responseRequired": false } -Info 47 [16:02:07.000] request: +Info 47 [00:02:07.000] request: { "seq": 0, "type": "request", @@ -428,11 +428,11 @@ FsWatchesRecursive:: /user/username/projects/myproject/dependency: {} -Info 48 [16:02:08.000] Search path: /user/username/projects/myproject/random -Info 49 [16:02:09.000] For info: /user/username/projects/myproject/random/random.ts :: Config file name: /user/username/projects/myproject/random/tsconfig.json -Info 50 [16:02:10.000] Creating configuration project /user/username/projects/myproject/random/tsconfig.json -Info 51 [16:02:11.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/random/tsconfig.json 2000 undefined Project: /user/username/projects/myproject/random/tsconfig.json WatchType: Config file -Info 52 [16:02:12.000] Config: /user/username/projects/myproject/random/tsconfig.json : { +Info 48 [00:02:08.000] Search path: /user/username/projects/myproject/random +Info 49 [00:02:09.000] For info: /user/username/projects/myproject/random/random.ts :: Config file name: /user/username/projects/myproject/random/tsconfig.json +Info 50 [00:02:10.000] Creating configuration project /user/username/projects/myproject/random/tsconfig.json +Info 51 [00:02:11.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/random/tsconfig.json 2000 undefined Project: /user/username/projects/myproject/random/tsconfig.json WatchType: Config file +Info 52 [00:02:12.000] Config: /user/username/projects/myproject/random/tsconfig.json : { "rootNames": [ "/user/username/projects/myproject/random/random.ts" ], @@ -440,17 +440,17 @@ Info 52 [16:02:12.000] Config: /user/username/projects/myproject/random/tsconf "configFilePath": "/user/username/projects/myproject/random/tsconfig.json" } } -Info 53 [16:02:13.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/random 1 undefined Config: /user/username/projects/myproject/random/tsconfig.json WatchType: Wild card directory -Info 54 [16:02:14.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/random 1 undefined Config: /user/username/projects/myproject/random/tsconfig.json WatchType: Wild card directory -Info 55 [16:02:15.000] Plugins were requested but not running in environment that supports 'require'. Nothing will be loaded -Info 56 [16:02:16.000] Starting updateGraphWorker: Project: /user/username/projects/myproject/random/tsconfig.json -Info 57 [16:02:17.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/random/node_modules/@types 1 undefined Project: /user/username/projects/myproject/random/tsconfig.json WatchType: Type roots -Info 58 [16:02:18.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/random/node_modules/@types 1 undefined Project: /user/username/projects/myproject/random/tsconfig.json WatchType: Type roots -Info 59 [16:02:19.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/random/tsconfig.json WatchType: Type roots -Info 60 [16:02:20.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/random/tsconfig.json WatchType: Type roots -Info 61 [16:02:21.000] Finishing updateGraphWorker: Project: /user/username/projects/myproject/random/tsconfig.json Version: 1 structureChanged: true structureIsReused:: Not Elapsed:: *ms -Info 62 [16:02:22.000] Project '/user/username/projects/myproject/random/tsconfig.json' (Configured) -Info 63 [16:02:23.000] Files (2) +Info 53 [00:02:13.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/random 1 undefined Config: /user/username/projects/myproject/random/tsconfig.json WatchType: Wild card directory +Info 54 [00:02:14.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/random 1 undefined Config: /user/username/projects/myproject/random/tsconfig.json WatchType: Wild card directory +Info 55 [00:02:15.000] Plugins were requested but not running in environment that supports 'require'. Nothing will be loaded +Info 56 [00:02:16.000] Starting updateGraphWorker: Project: /user/username/projects/myproject/random/tsconfig.json +Info 57 [00:02:17.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/random/node_modules/@types 1 undefined Project: /user/username/projects/myproject/random/tsconfig.json WatchType: Type roots +Info 58 [00:02:18.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/random/node_modules/@types 1 undefined Project: /user/username/projects/myproject/random/tsconfig.json WatchType: Type roots +Info 59 [00:02:19.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/random/tsconfig.json WatchType: Type roots +Info 60 [00:02:20.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/random/tsconfig.json WatchType: Type roots +Info 61 [00:02:21.000] Finishing updateGraphWorker: Project: /user/username/projects/myproject/random/tsconfig.json Version: 1 structureChanged: true structureIsReused:: Not Elapsed:: *ms +Info 62 [00:02:22.000] Project '/user/username/projects/myproject/random/tsconfig.json' (Configured) +Info 63 [00:02:23.000] Files (2) /a/lib/lib.d.ts /user/username/projects/myproject/random/random.ts @@ -460,26 +460,26 @@ Info 63 [16:02:23.000] Files (2) random.ts Matched by default include pattern '**/*' -Info 64 [16:02:24.000] ----------------------------------------------- -Info 65 [16:02:25.000] Project '/user/username/projects/myproject/main/tsconfig.json' (Configured) -Info 65 [16:02:26.000] Files (3) - -Info 65 [16:02:27.000] ----------------------------------------------- -Info 65 [16:02:28.000] Project '/user/username/projects/myproject/dependency/tsconfig.json' (Configured) -Info 65 [16:02:29.000] Files (2) - -Info 65 [16:02:30.000] ----------------------------------------------- -Info 65 [16:02:31.000] Project '/user/username/projects/myproject/random/tsconfig.json' (Configured) -Info 65 [16:02:32.000] Files (2) - -Info 65 [16:02:33.000] ----------------------------------------------- -Info 65 [16:02:34.000] Open files: -Info 65 [16:02:35.000] FileName: /user/username/projects/myproject/main/main.ts ProjectRootPath: undefined -Info 65 [16:02:36.000] Projects: /user/username/projects/myproject/main/tsconfig.json -Info 65 [16:02:37.000] FileName: /user/username/projects/myproject/dependency/FnS.ts ProjectRootPath: undefined -Info 65 [16:02:38.000] Projects: /user/username/projects/myproject/dependency/tsconfig.json -Info 65 [16:02:39.000] FileName: /user/username/projects/myproject/random/random.ts ProjectRootPath: undefined -Info 65 [16:02:40.000] Projects: /user/username/projects/myproject/random/tsconfig.json +Info 64 [00:02:24.000] ----------------------------------------------- +Info 65 [00:02:25.000] Project '/user/username/projects/myproject/main/tsconfig.json' (Configured) +Info 65 [00:02:26.000] Files (3) + +Info 65 [00:02:27.000] ----------------------------------------------- +Info 65 [00:02:28.000] Project '/user/username/projects/myproject/dependency/tsconfig.json' (Configured) +Info 65 [00:02:29.000] Files (2) + +Info 65 [00:02:30.000] ----------------------------------------------- +Info 65 [00:02:31.000] Project '/user/username/projects/myproject/random/tsconfig.json' (Configured) +Info 65 [00:02:32.000] Files (2) + +Info 65 [00:02:33.000] ----------------------------------------------- +Info 65 [00:02:34.000] Open files: +Info 65 [00:02:35.000] FileName: /user/username/projects/myproject/main/main.ts ProjectRootPath: undefined +Info 65 [00:02:36.000] Projects: /user/username/projects/myproject/main/tsconfig.json +Info 65 [00:02:37.000] FileName: /user/username/projects/myproject/dependency/FnS.ts ProjectRootPath: undefined +Info 65 [00:02:38.000] Projects: /user/username/projects/myproject/dependency/tsconfig.json +Info 65 [00:02:39.000] FileName: /user/username/projects/myproject/random/random.ts ProjectRootPath: undefined +Info 65 [00:02:40.000] Projects: /user/username/projects/myproject/random/tsconfig.json After request PolledWatches:: @@ -514,11 +514,11 @@ FsWatchesRecursive:: /user/username/projects/myproject/random: {} -Info 65 [16:02:41.000] response: +Info 65 [00:02:41.000] response: { "responseRequired": false } -Info 66 [16:02:42.000] request: +Info 66 [00:02:42.000] request: { "command": "definitionAndBoundSpan", "arguments": { @@ -563,7 +563,7 @@ FsWatchesRecursive:: /user/username/projects/myproject/random: {} -Info 67 [16:02:43.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/decls/FnS.d.ts.map 500 undefined WatchType: Closed Script info +Info 67 [00:02:43.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/decls/FnS.d.ts.map 500 undefined WatchType: Closed Script info After request PolledWatches:: @@ -600,7 +600,7 @@ FsWatchesRecursive:: /user/username/projects/myproject/random: {} -Info 68 [16:02:44.000] response: +Info 68 [00:02:44.000] response: { "response": { "definitions": [ @@ -637,7 +637,7 @@ Info 68 [16:02:44.000] response: }, "responseRequired": true } -Info 69 [16:02:45.000] request: +Info 69 [00:02:45.000] request: { "command": "rename", "arguments": { @@ -684,8 +684,8 @@ FsWatchesRecursive:: /user/username/projects/myproject/random: {} -Info 70 [16:02:46.000] Search path: /user/username/projects/myproject/dependency -Info 71 [16:02:47.000] For info: /user/username/projects/myproject/dependency/FnS.ts :: Config file name: /user/username/projects/myproject/dependency/tsconfig.json +Info 70 [00:02:46.000] Search path: /user/username/projects/myproject/dependency +Info 71 [00:02:47.000] For info: /user/username/projects/myproject/dependency/FnS.ts :: Config file name: /user/username/projects/myproject/dependency/tsconfig.json After request PolledWatches:: @@ -722,7 +722,7 @@ FsWatchesRecursive:: /user/username/projects/myproject/random: {} -Info 72 [16:02:48.000] response: +Info 72 [00:02:48.000] response: { "response": { "info": { @@ -803,7 +803,7 @@ Info 72 [16:02:48.000] response: }, "responseRequired": true } -Info 73 [16:02:49.000] request: +Info 73 [00:02:49.000] request: { "command": "change", "arguments": { @@ -889,11 +889,11 @@ FsWatchesRecursive:: /user/username/projects/myproject/random: {} -Info 74 [16:02:50.000] response: +Info 74 [00:02:50.000] response: { "responseRequired": false } -Info 75 [16:02:51.000] request: +Info 75 [00:02:51.000] request: { "command": "change", "arguments": { @@ -979,11 +979,11 @@ FsWatchesRecursive:: /user/username/projects/myproject/random: {} -Info 76 [16:02:52.000] response: +Info 76 [00:02:52.000] response: { "responseRequired": false } -Info 77 [16:02:53.000] request: +Info 77 [00:02:53.000] request: { "command": "definitionAndBoundSpan", "arguments": { @@ -1030,9 +1030,9 @@ FsWatchesRecursive:: /user/username/projects/myproject/random: {} -Info 78 [16:02:54.000] Starting updateGraphWorker: Project: /user/username/projects/myproject/main/tsconfig.json -Info 79 [16:02:55.000] Finishing updateGraphWorker: Project: /user/username/projects/myproject/main/tsconfig.json Version: 2 structureChanged: false structureIsReused:: Completely Elapsed:: *ms -Info 80 [16:02:56.000] Different program with same set of files +Info 78 [00:02:54.000] Starting updateGraphWorker: Project: /user/username/projects/myproject/main/tsconfig.json +Info 79 [00:02:55.000] Finishing updateGraphWorker: Project: /user/username/projects/myproject/main/tsconfig.json Version: 2 structureChanged: false structureIsReused:: Completely Elapsed:: *ms +Info 80 [00:02:56.000] Different program with same set of files After request PolledWatches:: @@ -1069,7 +1069,7 @@ FsWatchesRecursive:: /user/username/projects/myproject/random: {} -Info 81 [16:02:57.000] response: +Info 81 [00:02:57.000] response: { "response": { "definitions": [ @@ -1106,7 +1106,7 @@ Info 81 [16:02:57.000] response: }, "responseRequired": true } -Info 82 [16:02:58.000] request: +Info 82 [00:02:58.000] request: { "command": "definitionAndBoundSpan", "arguments": { @@ -1189,7 +1189,7 @@ FsWatchesRecursive:: /user/username/projects/myproject/random: {} -Info 83 [16:02:59.000] response: +Info 83 [00:02:59.000] response: { "response": { "definitions": [ @@ -1226,7 +1226,7 @@ Info 83 [16:02:59.000] response: }, "responseRequired": true } -Info 84 [16:03:00.000] request: +Info 84 [00:03:00.000] request: { "command": "definitionAndBoundSpan", "arguments": { @@ -1309,7 +1309,7 @@ FsWatchesRecursive:: /user/username/projects/myproject/random: {} -Info 85 [16:03:01.000] response: +Info 85 [00:03:01.000] response: { "response": { "definitions": [ @@ -1346,7 +1346,7 @@ Info 85 [16:03:01.000] response: }, "responseRequired": true } -Info 86 [16:03:02.000] request: +Info 86 [00:03:02.000] request: { "command": "definitionAndBoundSpan", "arguments": { @@ -1429,7 +1429,7 @@ FsWatchesRecursive:: /user/username/projects/myproject/random: {} -Info 87 [16:03:03.000] response: +Info 87 [00:03:03.000] response: { "response": { "definitions": [ @@ -1466,7 +1466,7 @@ Info 87 [16:03:03.000] response: }, "responseRequired": true } -Info 88 [16:03:04.000] request: +Info 88 [00:03:04.000] request: { "command": "definitionAndBoundSpan", "arguments": { @@ -1549,7 +1549,7 @@ FsWatchesRecursive:: /user/username/projects/myproject/random: {} -Info 89 [16:03:05.000] response: +Info 89 [00:03:05.000] response: { "response": { "definitions": [ @@ -1586,7 +1586,7 @@ Info 89 [16:03:05.000] response: }, "responseRequired": true } -Info 90 [16:03:06.000] request: +Info 90 [00:03:06.000] request: { "command": "rename", "arguments": { @@ -1633,11 +1633,11 @@ FsWatchesRecursive:: /user/username/projects/myproject/random: {} -Info 91 [16:03:07.000] Starting updateGraphWorker: Project: /user/username/projects/myproject/dependency/tsconfig.json -Info 92 [16:03:08.000] Finishing updateGraphWorker: Project: /user/username/projects/myproject/dependency/tsconfig.json Version: 2 structureChanged: false structureIsReused:: Completely Elapsed:: *ms -Info 93 [16:03:09.000] Different program with same set of files -Info 94 [16:03:10.000] Search path: /user/username/projects/myproject/dependency -Info 95 [16:03:11.000] For info: /user/username/projects/myproject/dependency/FnS.ts :: Config file name: /user/username/projects/myproject/dependency/tsconfig.json +Info 91 [00:03:07.000] Starting updateGraphWorker: Project: /user/username/projects/myproject/dependency/tsconfig.json +Info 92 [00:03:08.000] Finishing updateGraphWorker: Project: /user/username/projects/myproject/dependency/tsconfig.json Version: 2 structureChanged: false structureIsReused:: Completely Elapsed:: *ms +Info 93 [00:03:09.000] Different program with same set of files +Info 94 [00:03:10.000] Search path: /user/username/projects/myproject/dependency +Info 95 [00:03:11.000] For info: /user/username/projects/myproject/dependency/FnS.ts :: Config file name: /user/username/projects/myproject/dependency/tsconfig.json After request PolledWatches:: @@ -1674,7 +1674,7 @@ FsWatchesRecursive:: /user/username/projects/myproject/random: {} -Info 96 [16:03:12.000] response: +Info 96 [00:03:12.000] response: { "response": { "info": { @@ -1755,7 +1755,7 @@ Info 96 [16:03:12.000] response: }, "responseRequired": true } -Info 97 [16:03:13.000] request: +Info 97 [00:03:13.000] request: { "command": "rename", "arguments": { @@ -1802,8 +1802,8 @@ FsWatchesRecursive:: /user/username/projects/myproject/random: {} -Info 98 [16:03:14.000] Search path: /user/username/projects/myproject/dependency -Info 99 [16:03:15.000] For info: /user/username/projects/myproject/dependency/FnS.ts :: Config file name: /user/username/projects/myproject/dependency/tsconfig.json +Info 98 [00:03:14.000] Search path: /user/username/projects/myproject/dependency +Info 99 [00:03:15.000] For info: /user/username/projects/myproject/dependency/FnS.ts :: Config file name: /user/username/projects/myproject/dependency/tsconfig.json After request PolledWatches:: @@ -1840,7 +1840,7 @@ FsWatchesRecursive:: /user/username/projects/myproject/random: {} -Info 100 [16:03:16.000] response: +Info 100 [00:03:16.000] response: { "response": { "info": { @@ -1921,7 +1921,7 @@ Info 100 [16:03:16.000] response: }, "responseRequired": true } -Info 101 [16:03:17.000] request: +Info 101 [00:03:17.000] request: { "command": "rename", "arguments": { @@ -1968,8 +1968,8 @@ FsWatchesRecursive:: /user/username/projects/myproject/random: {} -Info 102 [16:03:18.000] Search path: /user/username/projects/myproject/dependency -Info 103 [16:03:19.000] For info: /user/username/projects/myproject/dependency/FnS.ts :: Config file name: /user/username/projects/myproject/dependency/tsconfig.json +Info 102 [00:03:18.000] Search path: /user/username/projects/myproject/dependency +Info 103 [00:03:19.000] For info: /user/username/projects/myproject/dependency/FnS.ts :: Config file name: /user/username/projects/myproject/dependency/tsconfig.json After request PolledWatches:: @@ -2006,7 +2006,7 @@ FsWatchesRecursive:: /user/username/projects/myproject/random: {} -Info 104 [16:03:20.000] response: +Info 104 [00:03:20.000] response: { "response": { "info": { @@ -2087,7 +2087,7 @@ Info 104 [16:03:20.000] response: }, "responseRequired": true } -Info 105 [16:03:21.000] request: +Info 105 [00:03:21.000] request: { "command": "rename", "arguments": { @@ -2134,8 +2134,8 @@ FsWatchesRecursive:: /user/username/projects/myproject/random: {} -Info 106 [16:03:22.000] Search path: /user/username/projects/myproject/dependency -Info 107 [16:03:23.000] For info: /user/username/projects/myproject/dependency/FnS.ts :: Config file name: /user/username/projects/myproject/dependency/tsconfig.json +Info 106 [00:03:22.000] Search path: /user/username/projects/myproject/dependency +Info 107 [00:03:23.000] For info: /user/username/projects/myproject/dependency/FnS.ts :: Config file name: /user/username/projects/myproject/dependency/tsconfig.json After request PolledWatches:: @@ -2172,7 +2172,7 @@ FsWatchesRecursive:: /user/username/projects/myproject/random: {} -Info 108 [16:03:24.000] response: +Info 108 [00:03:24.000] response: { "response": { "info": { @@ -2253,7 +2253,7 @@ Info 108 [16:03:24.000] response: }, "responseRequired": true } -Info 109 [16:03:25.000] request: +Info 109 [00:03:25.000] request: { "command": "rename", "arguments": { @@ -2300,8 +2300,8 @@ FsWatchesRecursive:: /user/username/projects/myproject/random: {} -Info 110 [16:03:26.000] Search path: /user/username/projects/myproject/dependency -Info 111 [16:03:27.000] For info: /user/username/projects/myproject/dependency/FnS.ts :: Config file name: /user/username/projects/myproject/dependency/tsconfig.json +Info 110 [00:03:26.000] Search path: /user/username/projects/myproject/dependency +Info 111 [00:03:27.000] For info: /user/username/projects/myproject/dependency/FnS.ts :: Config file name: /user/username/projects/myproject/dependency/tsconfig.json After request PolledWatches:: @@ -2338,7 +2338,7 @@ FsWatchesRecursive:: /user/username/projects/myproject/random: {} -Info 112 [16:03:28.000] response: +Info 112 [00:03:28.000] response: { "response": { "info": { 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 0ab549c1bd73b..7bd9b2203175d 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 @@ -1,5 +1,5 @@ -Info 0 [16:01:00.000] Provided types map file "/a/lib/typesMap.json" doesn't exist -Info 1 [16:01:01.000] request: +Info 0 [00:01:00.000] Provided types map file "/a/lib/typesMap.json" doesn't exist +Info 1 [00:01:01.000] request: { "seq": 0, "type": "request", @@ -200,11 +200,11 @@ FsWatches:: FsWatchesRecursive:: -Info 2 [16:01:02.000] Search path: /user/username/projects/myproject/main -Info 3 [16:01:03.000] For info: /user/username/projects/myproject/main/main.ts :: Config file name: /user/username/projects/myproject/main/tsconfig.json -Info 4 [16:01:04.000] Creating configuration project /user/username/projects/myproject/main/tsconfig.json -Info 5 [16:01:05.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/main/tsconfig.json 2000 undefined Project: /user/username/projects/myproject/main/tsconfig.json WatchType: Config file -Info 6 [16:01:06.000] Config: /user/username/projects/myproject/main/tsconfig.json : { +Info 2 [00:01:02.000] Search path: /user/username/projects/myproject/main +Info 3 [00:01:03.000] For info: /user/username/projects/myproject/main/main.ts :: Config file name: /user/username/projects/myproject/main/tsconfig.json +Info 4 [00:01:04.000] Creating configuration project /user/username/projects/myproject/main/tsconfig.json +Info 5 [00:01:05.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/main/tsconfig.json 2000 undefined Project: /user/username/projects/myproject/main/tsconfig.json WatchType: Config file +Info 6 [00:01:06.000] Config: /user/username/projects/myproject/main/tsconfig.json : { "rootNames": [ "/user/username/projects/myproject/main/main.ts" ], @@ -220,11 +220,11 @@ Info 6 [16:01:06.000] Config: /user/username/projects/myproject/main/tsconfig } ] } -Info 7 [16:01:07.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/main 1 undefined Config: /user/username/projects/myproject/main/tsconfig.json WatchType: Wild card directory -Info 8 [16:01:08.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/main 1 undefined Config: /user/username/projects/myproject/main/tsconfig.json WatchType: Wild card directory -Info 9 [16:01:09.000] Plugins were requested but not running in environment that supports 'require'. Nothing will be loaded -Info 10 [16:01:10.000] Starting updateGraphWorker: Project: /user/username/projects/myproject/main/tsconfig.json -Info 11 [16:01:11.000] Config: /user/username/projects/myproject/dependency/tsconfig.json : { +Info 7 [00:01:07.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/main 1 undefined Config: /user/username/projects/myproject/main/tsconfig.json WatchType: Wild card directory +Info 8 [00:01:08.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/main 1 undefined Config: /user/username/projects/myproject/main/tsconfig.json WatchType: Wild card directory +Info 9 [00:01:09.000] Plugins were requested but not running in environment that supports 'require'. Nothing will be loaded +Info 10 [00:01:10.000] Starting updateGraphWorker: Project: /user/username/projects/myproject/main/tsconfig.json +Info 11 [00:01:11.000] Config: /user/username/projects/myproject/dependency/tsconfig.json : { "rootNames": [ "/user/username/projects/myproject/dependency/FnS.ts" ], @@ -235,20 +235,20 @@ Info 11 [16:01:11.000] Config: /user/username/projects/myproject/dependency/ts "configFilePath": "/user/username/projects/myproject/dependency/tsconfig.json" } } -Info 12 [16:01:12.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/dependency/tsconfig.json 2000 undefined Project: /user/username/projects/myproject/main/tsconfig.json WatchType: Config file -Info 13 [16:01:13.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/dependency 1 undefined Config: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Wild card directory -Info 14 [16:01:14.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/dependency 1 undefined Config: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Wild card directory -Info 15 [16:01:15.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/decls 1 undefined Project: /user/username/projects/myproject/main/tsconfig.json WatchType: Failed Lookup Locations -Info 16 [16:01:16.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/decls 1 undefined Project: /user/username/projects/myproject/main/tsconfig.json WatchType: Failed Lookup Locations -Info 17 [16:01:17.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/dependency/FnS.ts 500 undefined WatchType: Closed Script info -Info 18 [16:01:18.000] FileWatcher:: Added:: WatchInfo: /a/lib/lib.d.ts 500 undefined WatchType: Closed Script info -Info 19 [16:01:19.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/main/node_modules/@types 1 undefined Project: /user/username/projects/myproject/main/tsconfig.json WatchType: Type roots -Info 20 [16:01:20.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/main/node_modules/@types 1 undefined Project: /user/username/projects/myproject/main/tsconfig.json WatchType: Type roots -Info 21 [16:01:21.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/main/tsconfig.json WatchType: Type roots -Info 22 [16:01:22.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/main/tsconfig.json WatchType: Type roots -Info 23 [16:01:23.000] Finishing updateGraphWorker: Project: /user/username/projects/myproject/main/tsconfig.json Version: 1 structureChanged: true structureIsReused:: Not Elapsed:: *ms -Info 24 [16:01:24.000] Project '/user/username/projects/myproject/main/tsconfig.json' (Configured) -Info 25 [16:01:25.000] Files (3) +Info 12 [00:01:12.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/dependency/tsconfig.json 2000 undefined Project: /user/username/projects/myproject/main/tsconfig.json WatchType: Config file +Info 13 [00:01:13.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/dependency 1 undefined Config: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Wild card directory +Info 14 [00:01:14.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/dependency 1 undefined Config: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Wild card directory +Info 15 [00:01:15.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/decls 1 undefined Project: /user/username/projects/myproject/main/tsconfig.json WatchType: Failed Lookup Locations +Info 16 [00:01:16.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/decls 1 undefined Project: /user/username/projects/myproject/main/tsconfig.json WatchType: Failed Lookup Locations +Info 17 [00:01:17.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/dependency/FnS.ts 500 undefined WatchType: Closed Script info +Info 18 [00:01:18.000] FileWatcher:: Added:: WatchInfo: /a/lib/lib.d.ts 500 undefined WatchType: Closed Script info +Info 19 [00:01:19.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/main/node_modules/@types 1 undefined Project: /user/username/projects/myproject/main/tsconfig.json WatchType: Type roots +Info 20 [00:01:20.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/main/node_modules/@types 1 undefined Project: /user/username/projects/myproject/main/tsconfig.json WatchType: Type roots +Info 21 [00:01:21.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/main/tsconfig.json WatchType: Type roots +Info 22 [00:01:22.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/main/tsconfig.json WatchType: Type roots +Info 23 [00:01:23.000] Finishing updateGraphWorker: Project: /user/username/projects/myproject/main/tsconfig.json Version: 1 structureChanged: true structureIsReused:: Not Elapsed:: *ms +Info 24 [00:01:24.000] Project '/user/username/projects/myproject/main/tsconfig.json' (Configured) +Info 25 [00:01:25.000] Files (3) /a/lib/lib.d.ts /user/username/projects/myproject/dependency/FnS.ts /user/username/projects/myproject/main/main.ts @@ -261,16 +261,16 @@ Info 25 [16:01:25.000] Files (3) main.ts Matched by default include pattern '**/*' -Info 26 [16:01:26.000] ----------------------------------------------- -Info 27 [16:01:27.000] Search path: /user/username/projects/myproject/main -Info 28 [16:01:28.000] For info: /user/username/projects/myproject/main/tsconfig.json :: No config files found. -Info 29 [16:01:29.000] Project '/user/username/projects/myproject/main/tsconfig.json' (Configured) -Info 29 [16:01:30.000] Files (3) +Info 26 [00:01:26.000] ----------------------------------------------- +Info 27 [00:01:27.000] Search path: /user/username/projects/myproject/main +Info 28 [00:01:28.000] For info: /user/username/projects/myproject/main/tsconfig.json :: No config files found. +Info 29 [00:01:29.000] Project '/user/username/projects/myproject/main/tsconfig.json' (Configured) +Info 29 [00:01:30.000] Files (3) -Info 29 [16:01:31.000] ----------------------------------------------- -Info 29 [16:01:32.000] Open files: -Info 29 [16:01:33.000] FileName: /user/username/projects/myproject/main/main.ts ProjectRootPath: undefined -Info 29 [16:01:34.000] Projects: /user/username/projects/myproject/main/tsconfig.json +Info 29 [00:01:31.000] ----------------------------------------------- +Info 29 [00:01:32.000] Open files: +Info 29 [00:01:33.000] FileName: /user/username/projects/myproject/main/main.ts ProjectRootPath: undefined +Info 29 [00:01:34.000] Projects: /user/username/projects/myproject/main/tsconfig.json After request PolledWatches:: @@ -297,11 +297,11 @@ FsWatchesRecursive:: /user/username/projects/myproject/decls: {} -Info 29 [16:01:35.000] response: +Info 29 [00:01:35.000] response: { "responseRequired": false } -Info 30 [16:01:36.000] request: +Info 30 [00:01:36.000] request: { "seq": 0, "type": "request", @@ -336,19 +336,19 @@ FsWatchesRecursive:: /user/username/projects/myproject/decls: {} -Info 31 [16:01:37.000] FileWatcher:: Close:: WatchInfo: /user/username/projects/myproject/dependency/FnS.ts 500 undefined WatchType: Closed Script info -Info 32 [16:01:38.000] Search path: /user/username/projects/myproject/dependency -Info 33 [16:01:39.000] For info: /user/username/projects/myproject/dependency/FnS.ts :: Config file name: /user/username/projects/myproject/dependency/tsconfig.json -Info 34 [16:01:40.000] Creating configuration project /user/username/projects/myproject/dependency/tsconfig.json -Info 35 [16:01:41.000] Plugins were requested but not running in environment that supports 'require'. Nothing will be loaded -Info 36 [16:01:42.000] Starting updateGraphWorker: Project: /user/username/projects/myproject/dependency/tsconfig.json -Info 37 [16:01:43.000] 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 38 [16:01:44.000] 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 39 [16:01:45.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Type roots -Info 40 [16:01:46.000] 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 41 [16:01:47.000] Finishing updateGraphWorker: Project: /user/username/projects/myproject/dependency/tsconfig.json Version: 1 structureChanged: true structureIsReused:: Not Elapsed:: *ms -Info 42 [16:01:48.000] Project '/user/username/projects/myproject/dependency/tsconfig.json' (Configured) -Info 43 [16:01:49.000] Files (2) +Info 31 [00:01:37.000] FileWatcher:: Close:: WatchInfo: /user/username/projects/myproject/dependency/FnS.ts 500 undefined WatchType: Closed Script info +Info 32 [00:01:38.000] Search path: /user/username/projects/myproject/dependency +Info 33 [00:01:39.000] For info: /user/username/projects/myproject/dependency/FnS.ts :: Config file name: /user/username/projects/myproject/dependency/tsconfig.json +Info 34 [00:01:40.000] Creating configuration project /user/username/projects/myproject/dependency/tsconfig.json +Info 35 [00:01:41.000] Plugins were requested but not running in environment that supports 'require'. Nothing will be loaded +Info 36 [00:01:42.000] Starting updateGraphWorker: Project: /user/username/projects/myproject/dependency/tsconfig.json +Info 37 [00:01:43.000] 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 38 [00:01:44.000] 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 39 [00:01:45.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Type roots +Info 40 [00:01:46.000] 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 41 [00:01:47.000] Finishing updateGraphWorker: Project: /user/username/projects/myproject/dependency/tsconfig.json Version: 1 structureChanged: true structureIsReused:: Not Elapsed:: *ms +Info 42 [00:01:48.000] Project '/user/username/projects/myproject/dependency/tsconfig.json' (Configured) +Info 43 [00:01:49.000] Files (2) /a/lib/lib.d.ts /user/username/projects/myproject/dependency/FnS.ts @@ -358,22 +358,22 @@ Info 43 [16:01:49.000] Files (2) FnS.ts Matched by default include pattern '**/*' -Info 44 [16:01:50.000] ----------------------------------------------- -Info 45 [16:01:51.000] Search path: /user/username/projects/myproject/dependency -Info 46 [16:01:52.000] For info: /user/username/projects/myproject/dependency/tsconfig.json :: No config files found. -Info 47 [16:01:53.000] Project '/user/username/projects/myproject/main/tsconfig.json' (Configured) -Info 47 [16:01:54.000] Files (3) - -Info 47 [16:01:55.000] ----------------------------------------------- -Info 47 [16:01:56.000] Project '/user/username/projects/myproject/dependency/tsconfig.json' (Configured) -Info 47 [16:01:57.000] Files (2) - -Info 47 [16:01:58.000] ----------------------------------------------- -Info 47 [16:01:59.000] Open files: -Info 47 [16:02:00.000] FileName: /user/username/projects/myproject/main/main.ts ProjectRootPath: undefined -Info 47 [16:02:01.000] Projects: /user/username/projects/myproject/main/tsconfig.json -Info 47 [16:02:02.000] FileName: /user/username/projects/myproject/dependency/FnS.ts ProjectRootPath: undefined -Info 47 [16:02:03.000] Projects: /user/username/projects/myproject/main/tsconfig.json,/user/username/projects/myproject/dependency/tsconfig.json +Info 44 [00:01:50.000] ----------------------------------------------- +Info 45 [00:01:51.000] Search path: /user/username/projects/myproject/dependency +Info 46 [00:01:52.000] For info: /user/username/projects/myproject/dependency/tsconfig.json :: No config files found. +Info 47 [00:01:53.000] Project '/user/username/projects/myproject/main/tsconfig.json' (Configured) +Info 47 [00:01:54.000] Files (3) + +Info 47 [00:01:55.000] ----------------------------------------------- +Info 47 [00:01:56.000] Project '/user/username/projects/myproject/dependency/tsconfig.json' (Configured) +Info 47 [00:01:57.000] Files (2) + +Info 47 [00:01:58.000] ----------------------------------------------- +Info 47 [00:01:59.000] Open files: +Info 47 [00:02:00.000] FileName: /user/username/projects/myproject/main/main.ts ProjectRootPath: undefined +Info 47 [00:02:01.000] Projects: /user/username/projects/myproject/main/tsconfig.json +Info 47 [00:02:02.000] FileName: /user/username/projects/myproject/dependency/FnS.ts ProjectRootPath: undefined +Info 47 [00:02:03.000] Projects: /user/username/projects/myproject/main/tsconfig.json,/user/username/projects/myproject/dependency/tsconfig.json After request PolledWatches:: @@ -400,11 +400,11 @@ FsWatchesRecursive:: /user/username/projects/myproject/decls: {} -Info 47 [16:02:04.000] response: +Info 47 [00:02:04.000] response: { "responseRequired": false } -Info 48 [16:02:05.000] request: +Info 48 [00:02:05.000] request: { "seq": 0, "type": "request", @@ -439,11 +439,11 @@ FsWatchesRecursive:: /user/username/projects/myproject/decls: {} -Info 49 [16:02:06.000] Search path: /user/username/projects/myproject/random -Info 50 [16:02:07.000] For info: /user/username/projects/myproject/random/random.ts :: Config file name: /user/username/projects/myproject/random/tsconfig.json -Info 51 [16:02:08.000] Creating configuration project /user/username/projects/myproject/random/tsconfig.json -Info 52 [16:02:09.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/random/tsconfig.json 2000 undefined Project: /user/username/projects/myproject/random/tsconfig.json WatchType: Config file -Info 53 [16:02:10.000] Config: /user/username/projects/myproject/random/tsconfig.json : { +Info 49 [00:02:06.000] Search path: /user/username/projects/myproject/random +Info 50 [00:02:07.000] For info: /user/username/projects/myproject/random/random.ts :: Config file name: /user/username/projects/myproject/random/tsconfig.json +Info 51 [00:02:08.000] Creating configuration project /user/username/projects/myproject/random/tsconfig.json +Info 52 [00:02:09.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/random/tsconfig.json 2000 undefined Project: /user/username/projects/myproject/random/tsconfig.json WatchType: Config file +Info 53 [00:02:10.000] Config: /user/username/projects/myproject/random/tsconfig.json : { "rootNames": [ "/user/username/projects/myproject/random/random.ts" ], @@ -451,17 +451,17 @@ Info 53 [16:02:10.000] Config: /user/username/projects/myproject/random/tsconf "configFilePath": "/user/username/projects/myproject/random/tsconfig.json" } } -Info 54 [16:02:11.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/random 1 undefined Config: /user/username/projects/myproject/random/tsconfig.json WatchType: Wild card directory -Info 55 [16:02:12.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/random 1 undefined Config: /user/username/projects/myproject/random/tsconfig.json WatchType: Wild card directory -Info 56 [16:02:13.000] Plugins were requested but not running in environment that supports 'require'. Nothing will be loaded -Info 57 [16:02:14.000] Starting updateGraphWorker: Project: /user/username/projects/myproject/random/tsconfig.json -Info 58 [16:02:15.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/random/node_modules/@types 1 undefined Project: /user/username/projects/myproject/random/tsconfig.json WatchType: Type roots -Info 59 [16:02:16.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/random/node_modules/@types 1 undefined Project: /user/username/projects/myproject/random/tsconfig.json WatchType: Type roots -Info 60 [16:02:17.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/random/tsconfig.json WatchType: Type roots -Info 61 [16:02:18.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/random/tsconfig.json WatchType: Type roots -Info 62 [16:02:19.000] Finishing updateGraphWorker: Project: /user/username/projects/myproject/random/tsconfig.json Version: 1 structureChanged: true structureIsReused:: Not Elapsed:: *ms -Info 63 [16:02:20.000] Project '/user/username/projects/myproject/random/tsconfig.json' (Configured) -Info 64 [16:02:21.000] Files (2) +Info 54 [00:02:11.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/random 1 undefined Config: /user/username/projects/myproject/random/tsconfig.json WatchType: Wild card directory +Info 55 [00:02:12.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/random 1 undefined Config: /user/username/projects/myproject/random/tsconfig.json WatchType: Wild card directory +Info 56 [00:02:13.000] Plugins were requested but not running in environment that supports 'require'. Nothing will be loaded +Info 57 [00:02:14.000] Starting updateGraphWorker: Project: /user/username/projects/myproject/random/tsconfig.json +Info 58 [00:02:15.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/random/node_modules/@types 1 undefined Project: /user/username/projects/myproject/random/tsconfig.json WatchType: Type roots +Info 59 [00:02:16.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/random/node_modules/@types 1 undefined Project: /user/username/projects/myproject/random/tsconfig.json WatchType: Type roots +Info 60 [00:02:17.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/random/tsconfig.json WatchType: Type roots +Info 61 [00:02:18.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/random/tsconfig.json WatchType: Type roots +Info 62 [00:02:19.000] Finishing updateGraphWorker: Project: /user/username/projects/myproject/random/tsconfig.json Version: 1 structureChanged: true structureIsReused:: Not Elapsed:: *ms +Info 63 [00:02:20.000] Project '/user/username/projects/myproject/random/tsconfig.json' (Configured) +Info 64 [00:02:21.000] Files (2) /a/lib/lib.d.ts /user/username/projects/myproject/random/random.ts @@ -471,26 +471,26 @@ Info 64 [16:02:21.000] Files (2) random.ts Matched by default include pattern '**/*' -Info 65 [16:02:22.000] ----------------------------------------------- -Info 66 [16:02:23.000] Project '/user/username/projects/myproject/main/tsconfig.json' (Configured) -Info 66 [16:02:24.000] Files (3) - -Info 66 [16:02:25.000] ----------------------------------------------- -Info 66 [16:02:26.000] Project '/user/username/projects/myproject/dependency/tsconfig.json' (Configured) -Info 66 [16:02:27.000] Files (2) - -Info 66 [16:02:28.000] ----------------------------------------------- -Info 66 [16:02:29.000] Project '/user/username/projects/myproject/random/tsconfig.json' (Configured) -Info 66 [16:02:30.000] Files (2) - -Info 66 [16:02:31.000] ----------------------------------------------- -Info 66 [16:02:32.000] Open files: -Info 66 [16:02:33.000] FileName: /user/username/projects/myproject/main/main.ts ProjectRootPath: undefined -Info 66 [16:02:34.000] Projects: /user/username/projects/myproject/main/tsconfig.json -Info 66 [16:02:35.000] FileName: /user/username/projects/myproject/dependency/FnS.ts ProjectRootPath: undefined -Info 66 [16:02:36.000] Projects: /user/username/projects/myproject/main/tsconfig.json,/user/username/projects/myproject/dependency/tsconfig.json -Info 66 [16:02:37.000] FileName: /user/username/projects/myproject/random/random.ts ProjectRootPath: undefined -Info 66 [16:02:38.000] Projects: /user/username/projects/myproject/random/tsconfig.json +Info 65 [00:02:22.000] ----------------------------------------------- +Info 66 [00:02:23.000] Project '/user/username/projects/myproject/main/tsconfig.json' (Configured) +Info 66 [00:02:24.000] Files (3) + +Info 66 [00:02:25.000] ----------------------------------------------- +Info 66 [00:02:26.000] Project '/user/username/projects/myproject/dependency/tsconfig.json' (Configured) +Info 66 [00:02:27.000] Files (2) + +Info 66 [00:02:28.000] ----------------------------------------------- +Info 66 [00:02:29.000] Project '/user/username/projects/myproject/random/tsconfig.json' (Configured) +Info 66 [00:02:30.000] Files (2) + +Info 66 [00:02:31.000] ----------------------------------------------- +Info 66 [00:02:32.000] Open files: +Info 66 [00:02:33.000] FileName: /user/username/projects/myproject/main/main.ts ProjectRootPath: undefined +Info 66 [00:02:34.000] Projects: /user/username/projects/myproject/main/tsconfig.json +Info 66 [00:02:35.000] FileName: /user/username/projects/myproject/dependency/FnS.ts ProjectRootPath: undefined +Info 66 [00:02:36.000] Projects: /user/username/projects/myproject/main/tsconfig.json,/user/username/projects/myproject/dependency/tsconfig.json +Info 66 [00:02:37.000] FileName: /user/username/projects/myproject/random/random.ts ProjectRootPath: undefined +Info 66 [00:02:38.000] Projects: /user/username/projects/myproject/random/tsconfig.json After request PolledWatches:: @@ -523,11 +523,11 @@ FsWatchesRecursive:: /user/username/projects/myproject/random: {} -Info 66 [16:02:39.000] response: +Info 66 [00:02:39.000] response: { "responseRequired": false } -Info 67 [16:02:40.000] request: +Info 67 [00:02:40.000] request: { "command": "definitionAndBoundSpan", "arguments": { @@ -602,7 +602,7 @@ FsWatchesRecursive:: /user/username/projects/myproject/random: {} -Info 68 [16:02:41.000] response: +Info 68 [00:02:41.000] response: { "response": { "definitions": [ @@ -639,7 +639,7 @@ Info 68 [16:02:41.000] response: }, "responseRequired": true } -Info 69 [16:02:42.000] request: +Info 69 [00:02:42.000] request: { "command": "rename", "arguments": { @@ -682,10 +682,10 @@ FsWatchesRecursive:: /user/username/projects/myproject/random: {} -Info 70 [16:02:43.000] Search path: /user/username/projects/myproject/dependency -Info 71 [16:02:44.000] For info: /user/username/projects/myproject/dependency/FnS.ts :: Config file name: /user/username/projects/myproject/dependency/tsconfig.json -Info 72 [16:02:45.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/decls/FnS.d.ts 500 undefined WatchType: Closed Script info -Info 73 [16:02:46.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/decls/FnS.d.ts.map 500 undefined WatchType: Closed Script info +Info 70 [00:02:43.000] Search path: /user/username/projects/myproject/dependency +Info 71 [00:02:44.000] For info: /user/username/projects/myproject/dependency/FnS.ts :: Config file name: /user/username/projects/myproject/dependency/tsconfig.json +Info 72 [00:02:45.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/decls/FnS.d.ts 500 undefined WatchType: Closed Script info +Info 73 [00:02:46.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/decls/FnS.d.ts.map 500 undefined WatchType: Closed Script info After request PolledWatches:: @@ -722,7 +722,7 @@ FsWatchesRecursive:: /user/username/projects/myproject/random: {} -Info 74 [16:02:47.000] response: +Info 74 [00:02:47.000] response: { "response": { "info": { @@ -803,11 +803,11 @@ Info 74 [16:02:47.000] response: }, "responseRequired": true } -Info 75 [16:02:51.000] FileWatcher:: Triggered with /user/username/projects/myproject/decls/FnS.d.ts 1:: WatchInfo: /user/username/projects/myproject/decls/FnS.d.ts 500 undefined WatchType: Closed Script info -Info 76 [16:02:52.000] Scheduled: /user/username/projects/myproject/main/tsconfig.json -Info 77 [16:02:53.000] Scheduled: /user/username/projects/myproject/dependency/tsconfig.json -Info 78 [16:02:54.000] Scheduled: *ensureProjectForOpenFiles* -Info 79 [16:02:55.000] Elapsed:: *ms FileWatcher:: Triggered with /user/username/projects/myproject/decls/FnS.d.ts 1:: WatchInfo: /user/username/projects/myproject/decls/FnS.d.ts 500 undefined WatchType: Closed Script info +Info 75 [00:02:51.000] FileWatcher:: Triggered with /user/username/projects/myproject/decls/FnS.d.ts 1:: WatchInfo: /user/username/projects/myproject/decls/FnS.d.ts 500 undefined WatchType: Closed Script info +Info 76 [00:02:52.000] Scheduled: /user/username/projects/myproject/main/tsconfig.json +Info 77 [00:02:53.000] Scheduled: /user/username/projects/myproject/dependency/tsconfig.json +Info 78 [00:02:54.000] Scheduled: *ensureProjectForOpenFiles* +Info 79 [00:02:55.000] Elapsed:: *ms FileWatcher:: Triggered with /user/username/projects/myproject/decls/FnS.d.ts 1:: WatchInfo: /user/username/projects/myproject/decls/FnS.d.ts 500 undefined WatchType: Closed Script info Before running timeout callbacks //// [/user/username/projects/myproject/decls/FnS.d.ts] export declare function fn1(): void; @@ -853,54 +853,54 @@ FsWatchesRecursive:: /user/username/projects/myproject/random: {} -Info 80 [16:02:56.000] Running: /user/username/projects/myproject/main/tsconfig.json -Info 81 [16:02:57.000] Starting updateGraphWorker: Project: /user/username/projects/myproject/main/tsconfig.json -Info 82 [16:02:58.000] Finishing updateGraphWorker: Project: /user/username/projects/myproject/main/tsconfig.json Version: 2 structureChanged: false structureIsReused:: Completely Elapsed:: *ms -Info 83 [16:02:59.000] Different program with same set of files -Info 84 [16:03:00.000] Running: /user/username/projects/myproject/dependency/tsconfig.json -Info 85 [16:03:01.000] Starting updateGraphWorker: Project: /user/username/projects/myproject/dependency/tsconfig.json -Info 86 [16:03:02.000] Finishing updateGraphWorker: Project: /user/username/projects/myproject/dependency/tsconfig.json Version: 2 structureChanged: false structureIsReused:: Not Elapsed:: *ms -Info 87 [16:03:03.000] Running: *ensureProjectForOpenFiles* -Info 88 [16:03:04.000] Before ensureProjectForOpenFiles: -Info 89 [16:03:05.000] Project '/user/username/projects/myproject/main/tsconfig.json' (Configured) -Info 89 [16:03:06.000] Files (3) - -Info 89 [16:03:07.000] ----------------------------------------------- -Info 89 [16:03:08.000] Project '/user/username/projects/myproject/dependency/tsconfig.json' (Configured) -Info 89 [16:03:09.000] Files (2) - -Info 89 [16:03:10.000] ----------------------------------------------- -Info 89 [16:03:11.000] Project '/user/username/projects/myproject/random/tsconfig.json' (Configured) -Info 89 [16:03:12.000] Files (2) - -Info 89 [16:03:13.000] ----------------------------------------------- -Info 89 [16:03:14.000] Open files: -Info 89 [16:03:15.000] FileName: /user/username/projects/myproject/main/main.ts ProjectRootPath: undefined -Info 89 [16:03:16.000] Projects: /user/username/projects/myproject/main/tsconfig.json -Info 89 [16:03:17.000] FileName: /user/username/projects/myproject/dependency/FnS.ts ProjectRootPath: undefined -Info 89 [16:03:18.000] Projects: /user/username/projects/myproject/main/tsconfig.json,/user/username/projects/myproject/dependency/tsconfig.json -Info 89 [16:03:19.000] FileName: /user/username/projects/myproject/random/random.ts ProjectRootPath: undefined -Info 89 [16:03:20.000] Projects: /user/username/projects/myproject/random/tsconfig.json -Info 89 [16:03:21.000] After ensureProjectForOpenFiles: -Info 90 [16:03:22.000] Project '/user/username/projects/myproject/main/tsconfig.json' (Configured) -Info 90 [16:03:23.000] Files (3) - -Info 90 [16:03:24.000] ----------------------------------------------- -Info 90 [16:03:25.000] Project '/user/username/projects/myproject/dependency/tsconfig.json' (Configured) -Info 90 [16:03:26.000] Files (2) - -Info 90 [16:03:27.000] ----------------------------------------------- -Info 90 [16:03:28.000] Project '/user/username/projects/myproject/random/tsconfig.json' (Configured) -Info 90 [16:03:29.000] Files (2) - -Info 90 [16:03:30.000] ----------------------------------------------- -Info 90 [16:03:31.000] Open files: -Info 90 [16:03:32.000] FileName: /user/username/projects/myproject/main/main.ts ProjectRootPath: undefined -Info 90 [16:03:33.000] Projects: /user/username/projects/myproject/main/tsconfig.json -Info 90 [16:03:34.000] FileName: /user/username/projects/myproject/dependency/FnS.ts ProjectRootPath: undefined -Info 90 [16:03:35.000] Projects: /user/username/projects/myproject/main/tsconfig.json,/user/username/projects/myproject/dependency/tsconfig.json -Info 90 [16:03:36.000] FileName: /user/username/projects/myproject/random/random.ts ProjectRootPath: undefined -Info 90 [16:03:37.000] Projects: /user/username/projects/myproject/random/tsconfig.json +Info 80 [00:02:56.000] Running: /user/username/projects/myproject/main/tsconfig.json +Info 81 [00:02:57.000] Starting updateGraphWorker: Project: /user/username/projects/myproject/main/tsconfig.json +Info 82 [00:02:58.000] Finishing updateGraphWorker: Project: /user/username/projects/myproject/main/tsconfig.json Version: 2 structureChanged: false structureIsReused:: Completely Elapsed:: *ms +Info 83 [00:02:59.000] Different program with same set of files +Info 84 [00:03:00.000] Running: /user/username/projects/myproject/dependency/tsconfig.json +Info 85 [00:03:01.000] Starting updateGraphWorker: Project: /user/username/projects/myproject/dependency/tsconfig.json +Info 86 [00:03:02.000] Finishing updateGraphWorker: Project: /user/username/projects/myproject/dependency/tsconfig.json Version: 2 structureChanged: false structureIsReused:: Not Elapsed:: *ms +Info 87 [00:03:03.000] Running: *ensureProjectForOpenFiles* +Info 88 [00:03:04.000] Before ensureProjectForOpenFiles: +Info 89 [00:03:05.000] Project '/user/username/projects/myproject/main/tsconfig.json' (Configured) +Info 89 [00:03:06.000] Files (3) + +Info 89 [00:03:07.000] ----------------------------------------------- +Info 89 [00:03:08.000] Project '/user/username/projects/myproject/dependency/tsconfig.json' (Configured) +Info 89 [00:03:09.000] Files (2) + +Info 89 [00:03:10.000] ----------------------------------------------- +Info 89 [00:03:11.000] Project '/user/username/projects/myproject/random/tsconfig.json' (Configured) +Info 89 [00:03:12.000] Files (2) + +Info 89 [00:03:13.000] ----------------------------------------------- +Info 89 [00:03:14.000] Open files: +Info 89 [00:03:15.000] FileName: /user/username/projects/myproject/main/main.ts ProjectRootPath: undefined +Info 89 [00:03:16.000] Projects: /user/username/projects/myproject/main/tsconfig.json +Info 89 [00:03:17.000] FileName: /user/username/projects/myproject/dependency/FnS.ts ProjectRootPath: undefined +Info 89 [00:03:18.000] Projects: /user/username/projects/myproject/main/tsconfig.json,/user/username/projects/myproject/dependency/tsconfig.json +Info 89 [00:03:19.000] FileName: /user/username/projects/myproject/random/random.ts ProjectRootPath: undefined +Info 89 [00:03:20.000] Projects: /user/username/projects/myproject/random/tsconfig.json +Info 89 [00:03:21.000] After ensureProjectForOpenFiles: +Info 90 [00:03:22.000] Project '/user/username/projects/myproject/main/tsconfig.json' (Configured) +Info 90 [00:03:23.000] Files (3) + +Info 90 [00:03:24.000] ----------------------------------------------- +Info 90 [00:03:25.000] Project '/user/username/projects/myproject/dependency/tsconfig.json' (Configured) +Info 90 [00:03:26.000] Files (2) + +Info 90 [00:03:27.000] ----------------------------------------------- +Info 90 [00:03:28.000] Project '/user/username/projects/myproject/random/tsconfig.json' (Configured) +Info 90 [00:03:29.000] Files (2) + +Info 90 [00:03:30.000] ----------------------------------------------- +Info 90 [00:03:31.000] Open files: +Info 90 [00:03:32.000] FileName: /user/username/projects/myproject/main/main.ts ProjectRootPath: undefined +Info 90 [00:03:33.000] Projects: /user/username/projects/myproject/main/tsconfig.json +Info 90 [00:03:34.000] FileName: /user/username/projects/myproject/dependency/FnS.ts ProjectRootPath: undefined +Info 90 [00:03:35.000] Projects: /user/username/projects/myproject/main/tsconfig.json,/user/username/projects/myproject/dependency/tsconfig.json +Info 90 [00:03:36.000] FileName: /user/username/projects/myproject/random/random.ts ProjectRootPath: undefined +Info 90 [00:03:37.000] Projects: /user/username/projects/myproject/random/tsconfig.json After running timeout callbacks PolledWatches:: @@ -937,7 +937,7 @@ FsWatchesRecursive:: /user/username/projects/myproject/random: {} -Info 90 [16:03:38.000] request: +Info 90 [00:03:38.000] request: { "command": "definitionAndBoundSpan", "arguments": { @@ -1020,7 +1020,7 @@ FsWatchesRecursive:: /user/username/projects/myproject/random: {} -Info 91 [16:03:39.000] response: +Info 91 [00:03:39.000] response: { "response": { "definitions": [ @@ -1057,7 +1057,7 @@ Info 91 [16:03:39.000] response: }, "responseRequired": true } -Info 92 [16:03:40.000] request: +Info 92 [00:03:40.000] request: { "command": "definitionAndBoundSpan", "arguments": { @@ -1140,7 +1140,7 @@ FsWatchesRecursive:: /user/username/projects/myproject/random: {} -Info 93 [16:03:41.000] response: +Info 93 [00:03:41.000] response: { "response": { "definitions": [ @@ -1177,7 +1177,7 @@ Info 93 [16:03:41.000] response: }, "responseRequired": true } -Info 94 [16:03:42.000] request: +Info 94 [00:03:42.000] request: { "command": "definitionAndBoundSpan", "arguments": { @@ -1260,7 +1260,7 @@ FsWatchesRecursive:: /user/username/projects/myproject/random: {} -Info 95 [16:03:43.000] response: +Info 95 [00:03:43.000] response: { "response": { "definitions": [ @@ -1297,7 +1297,7 @@ Info 95 [16:03:43.000] response: }, "responseRequired": true } -Info 96 [16:03:44.000] request: +Info 96 [00:03:44.000] request: { "command": "definitionAndBoundSpan", "arguments": { @@ -1380,7 +1380,7 @@ FsWatchesRecursive:: /user/username/projects/myproject/random: {} -Info 97 [16:03:45.000] response: +Info 97 [00:03:45.000] response: { "response": { "definitions": [ @@ -1417,7 +1417,7 @@ Info 97 [16:03:45.000] response: }, "responseRequired": true } -Info 98 [16:03:46.000] request: +Info 98 [00:03:46.000] request: { "command": "definitionAndBoundSpan", "arguments": { @@ -1500,7 +1500,7 @@ FsWatchesRecursive:: /user/username/projects/myproject/random: {} -Info 99 [16:03:47.000] response: +Info 99 [00:03:47.000] response: { "response": { "definitions": [ @@ -1537,7 +1537,7 @@ Info 99 [16:03:47.000] response: }, "responseRequired": true } -Info 100 [16:03:48.000] request: +Info 100 [00:03:48.000] request: { "command": "rename", "arguments": { @@ -1584,8 +1584,8 @@ FsWatchesRecursive:: /user/username/projects/myproject/random: {} -Info 101 [16:03:49.000] Search path: /user/username/projects/myproject/dependency -Info 102 [16:03:50.000] For info: /user/username/projects/myproject/dependency/FnS.ts :: Config file name: /user/username/projects/myproject/dependency/tsconfig.json +Info 101 [00:03:49.000] Search path: /user/username/projects/myproject/dependency +Info 102 [00:03:50.000] For info: /user/username/projects/myproject/dependency/FnS.ts :: Config file name: /user/username/projects/myproject/dependency/tsconfig.json After request PolledWatches:: @@ -1622,7 +1622,7 @@ FsWatchesRecursive:: /user/username/projects/myproject/random: {} -Info 103 [16:03:51.000] response: +Info 103 [00:03:51.000] response: { "response": { "info": { @@ -1703,7 +1703,7 @@ Info 103 [16:03:51.000] response: }, "responseRequired": true } -Info 104 [16:03:52.000] request: +Info 104 [00:03:52.000] request: { "command": "rename", "arguments": { @@ -1750,8 +1750,8 @@ FsWatchesRecursive:: /user/username/projects/myproject/random: {} -Info 105 [16:03:53.000] Search path: /user/username/projects/myproject/dependency -Info 106 [16:03:54.000] For info: /user/username/projects/myproject/dependency/FnS.ts :: Config file name: /user/username/projects/myproject/dependency/tsconfig.json +Info 105 [00:03:53.000] Search path: /user/username/projects/myproject/dependency +Info 106 [00:03:54.000] For info: /user/username/projects/myproject/dependency/FnS.ts :: Config file name: /user/username/projects/myproject/dependency/tsconfig.json After request PolledWatches:: @@ -1788,7 +1788,7 @@ FsWatchesRecursive:: /user/username/projects/myproject/random: {} -Info 107 [16:03:55.000] response: +Info 107 [00:03:55.000] response: { "response": { "info": { @@ -1869,7 +1869,7 @@ Info 107 [16:03:55.000] response: }, "responseRequired": true } -Info 108 [16:03:56.000] request: +Info 108 [00:03:56.000] request: { "command": "rename", "arguments": { @@ -1916,8 +1916,8 @@ FsWatchesRecursive:: /user/username/projects/myproject/random: {} -Info 109 [16:03:57.000] Search path: /user/username/projects/myproject/dependency -Info 110 [16:03:58.000] For info: /user/username/projects/myproject/dependency/FnS.ts :: Config file name: /user/username/projects/myproject/dependency/tsconfig.json +Info 109 [00:03:57.000] Search path: /user/username/projects/myproject/dependency +Info 110 [00:03:58.000] For info: /user/username/projects/myproject/dependency/FnS.ts :: Config file name: /user/username/projects/myproject/dependency/tsconfig.json After request PolledWatches:: @@ -1954,7 +1954,7 @@ FsWatchesRecursive:: /user/username/projects/myproject/random: {} -Info 111 [16:03:59.000] response: +Info 111 [00:03:59.000] response: { "response": { "info": { @@ -2035,7 +2035,7 @@ Info 111 [16:03:59.000] response: }, "responseRequired": true } -Info 112 [16:04:00.000] request: +Info 112 [00:04:00.000] request: { "command": "rename", "arguments": { @@ -2082,8 +2082,8 @@ FsWatchesRecursive:: /user/username/projects/myproject/random: {} -Info 113 [16:04:01.000] Search path: /user/username/projects/myproject/dependency -Info 114 [16:04:02.000] For info: /user/username/projects/myproject/dependency/FnS.ts :: Config file name: /user/username/projects/myproject/dependency/tsconfig.json +Info 113 [00:04:01.000] Search path: /user/username/projects/myproject/dependency +Info 114 [00:04:02.000] For info: /user/username/projects/myproject/dependency/FnS.ts :: Config file name: /user/username/projects/myproject/dependency/tsconfig.json After request PolledWatches:: @@ -2120,7 +2120,7 @@ FsWatchesRecursive:: /user/username/projects/myproject/random: {} -Info 115 [16:04:03.000] response: +Info 115 [00:04:03.000] response: { "response": { "info": { @@ -2201,7 +2201,7 @@ Info 115 [16:04:03.000] response: }, "responseRequired": true } -Info 116 [16:04:04.000] request: +Info 116 [00:04:04.000] request: { "command": "rename", "arguments": { @@ -2248,8 +2248,8 @@ FsWatchesRecursive:: /user/username/projects/myproject/random: {} -Info 117 [16:04:05.000] Search path: /user/username/projects/myproject/dependency -Info 118 [16:04:06.000] For info: /user/username/projects/myproject/dependency/FnS.ts :: Config file name: /user/username/projects/myproject/dependency/tsconfig.json +Info 117 [00:04:05.000] Search path: /user/username/projects/myproject/dependency +Info 118 [00:04:06.000] For info: /user/username/projects/myproject/dependency/FnS.ts :: Config file name: /user/username/projects/myproject/dependency/tsconfig.json After request PolledWatches:: @@ -2286,7 +2286,7 @@ FsWatchesRecursive:: /user/username/projects/myproject/random: {} -Info 119 [16:04:07.000] response: +Info 119 [00:04:07.000] response: { "response": { "info": { 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 2b92a499f0102..5e77e2fa52eda 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 @@ -1,5 +1,5 @@ -Info 0 [16:01:00.000] Provided types map file "/a/lib/typesMap.json" doesn't exist -Info 1 [16:01:01.000] request: +Info 0 [00:01:00.000] Provided types map file "/a/lib/typesMap.json" doesn't exist +Info 1 [00:01:01.000] request: { "seq": 0, "type": "request", @@ -200,11 +200,11 @@ FsWatches:: FsWatchesRecursive:: -Info 2 [16:01:02.000] Search path: /user/username/projects/myproject/main -Info 3 [16:01:03.000] For info: /user/username/projects/myproject/main/main.ts :: Config file name: /user/username/projects/myproject/main/tsconfig.json -Info 4 [16:01:04.000] Creating configuration project /user/username/projects/myproject/main/tsconfig.json -Info 5 [16:01:05.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/main/tsconfig.json 2000 undefined Project: /user/username/projects/myproject/main/tsconfig.json WatchType: Config file -Info 6 [16:01:06.000] Config: /user/username/projects/myproject/main/tsconfig.json : { +Info 2 [00:01:02.000] Search path: /user/username/projects/myproject/main +Info 3 [00:01:03.000] For info: /user/username/projects/myproject/main/main.ts :: Config file name: /user/username/projects/myproject/main/tsconfig.json +Info 4 [00:01:04.000] Creating configuration project /user/username/projects/myproject/main/tsconfig.json +Info 5 [00:01:05.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/main/tsconfig.json 2000 undefined Project: /user/username/projects/myproject/main/tsconfig.json WatchType: Config file +Info 6 [00:01:06.000] Config: /user/username/projects/myproject/main/tsconfig.json : { "rootNames": [ "/user/username/projects/myproject/main/main.ts" ], @@ -220,11 +220,11 @@ Info 6 [16:01:06.000] Config: /user/username/projects/myproject/main/tsconfig } ] } -Info 7 [16:01:07.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/main 1 undefined Config: /user/username/projects/myproject/main/tsconfig.json WatchType: Wild card directory -Info 8 [16:01:08.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/main 1 undefined Config: /user/username/projects/myproject/main/tsconfig.json WatchType: Wild card directory -Info 9 [16:01:09.000] Plugins were requested but not running in environment that supports 'require'. Nothing will be loaded -Info 10 [16:01:10.000] Starting updateGraphWorker: Project: /user/username/projects/myproject/main/tsconfig.json -Info 11 [16:01:11.000] Config: /user/username/projects/myproject/dependency/tsconfig.json : { +Info 7 [00:01:07.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/main 1 undefined Config: /user/username/projects/myproject/main/tsconfig.json WatchType: Wild card directory +Info 8 [00:01:08.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/main 1 undefined Config: /user/username/projects/myproject/main/tsconfig.json WatchType: Wild card directory +Info 9 [00:01:09.000] Plugins were requested but not running in environment that supports 'require'. Nothing will be loaded +Info 10 [00:01:10.000] Starting updateGraphWorker: Project: /user/username/projects/myproject/main/tsconfig.json +Info 11 [00:01:11.000] Config: /user/username/projects/myproject/dependency/tsconfig.json : { "rootNames": [ "/user/username/projects/myproject/dependency/FnS.ts" ], @@ -235,20 +235,20 @@ Info 11 [16:01:11.000] Config: /user/username/projects/myproject/dependency/ts "configFilePath": "/user/username/projects/myproject/dependency/tsconfig.json" } } -Info 12 [16:01:12.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/dependency/tsconfig.json 2000 undefined Project: /user/username/projects/myproject/main/tsconfig.json WatchType: Config file -Info 13 [16:01:13.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/dependency 1 undefined Config: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Wild card directory -Info 14 [16:01:14.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/dependency 1 undefined Config: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Wild card directory -Info 15 [16:01:15.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/decls 1 undefined Project: /user/username/projects/myproject/main/tsconfig.json WatchType: Failed Lookup Locations -Info 16 [16:01:16.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/decls 1 undefined Project: /user/username/projects/myproject/main/tsconfig.json WatchType: Failed Lookup Locations -Info 17 [16:01:17.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/dependency/FnS.ts 500 undefined WatchType: Closed Script info -Info 18 [16:01:18.000] FileWatcher:: Added:: WatchInfo: /a/lib/lib.d.ts 500 undefined WatchType: Closed Script info -Info 19 [16:01:19.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/main/node_modules/@types 1 undefined Project: /user/username/projects/myproject/main/tsconfig.json WatchType: Type roots -Info 20 [16:01:20.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/main/node_modules/@types 1 undefined Project: /user/username/projects/myproject/main/tsconfig.json WatchType: Type roots -Info 21 [16:01:21.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/main/tsconfig.json WatchType: Type roots -Info 22 [16:01:22.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/main/tsconfig.json WatchType: Type roots -Info 23 [16:01:23.000] Finishing updateGraphWorker: Project: /user/username/projects/myproject/main/tsconfig.json Version: 1 structureChanged: true structureIsReused:: Not Elapsed:: *ms -Info 24 [16:01:24.000] Project '/user/username/projects/myproject/main/tsconfig.json' (Configured) -Info 25 [16:01:25.000] Files (3) +Info 12 [00:01:12.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/dependency/tsconfig.json 2000 undefined Project: /user/username/projects/myproject/main/tsconfig.json WatchType: Config file +Info 13 [00:01:13.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/dependency 1 undefined Config: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Wild card directory +Info 14 [00:01:14.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/dependency 1 undefined Config: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Wild card directory +Info 15 [00:01:15.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/decls 1 undefined Project: /user/username/projects/myproject/main/tsconfig.json WatchType: Failed Lookup Locations +Info 16 [00:01:16.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/decls 1 undefined Project: /user/username/projects/myproject/main/tsconfig.json WatchType: Failed Lookup Locations +Info 17 [00:01:17.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/dependency/FnS.ts 500 undefined WatchType: Closed Script info +Info 18 [00:01:18.000] FileWatcher:: Added:: WatchInfo: /a/lib/lib.d.ts 500 undefined WatchType: Closed Script info +Info 19 [00:01:19.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/main/node_modules/@types 1 undefined Project: /user/username/projects/myproject/main/tsconfig.json WatchType: Type roots +Info 20 [00:01:20.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/main/node_modules/@types 1 undefined Project: /user/username/projects/myproject/main/tsconfig.json WatchType: Type roots +Info 21 [00:01:21.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/main/tsconfig.json WatchType: Type roots +Info 22 [00:01:22.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/main/tsconfig.json WatchType: Type roots +Info 23 [00:01:23.000] Finishing updateGraphWorker: Project: /user/username/projects/myproject/main/tsconfig.json Version: 1 structureChanged: true structureIsReused:: Not Elapsed:: *ms +Info 24 [00:01:24.000] Project '/user/username/projects/myproject/main/tsconfig.json' (Configured) +Info 25 [00:01:25.000] Files (3) /a/lib/lib.d.ts /user/username/projects/myproject/dependency/FnS.ts /user/username/projects/myproject/main/main.ts @@ -261,16 +261,16 @@ Info 25 [16:01:25.000] Files (3) main.ts Matched by default include pattern '**/*' -Info 26 [16:01:26.000] ----------------------------------------------- -Info 27 [16:01:27.000] Search path: /user/username/projects/myproject/main -Info 28 [16:01:28.000] For info: /user/username/projects/myproject/main/tsconfig.json :: No config files found. -Info 29 [16:01:29.000] Project '/user/username/projects/myproject/main/tsconfig.json' (Configured) -Info 29 [16:01:30.000] Files (3) +Info 26 [00:01:26.000] ----------------------------------------------- +Info 27 [00:01:27.000] Search path: /user/username/projects/myproject/main +Info 28 [00:01:28.000] For info: /user/username/projects/myproject/main/tsconfig.json :: No config files found. +Info 29 [00:01:29.000] Project '/user/username/projects/myproject/main/tsconfig.json' (Configured) +Info 29 [00:01:30.000] Files (3) -Info 29 [16:01:31.000] ----------------------------------------------- -Info 29 [16:01:32.000] Open files: -Info 29 [16:01:33.000] FileName: /user/username/projects/myproject/main/main.ts ProjectRootPath: undefined -Info 29 [16:01:34.000] Projects: /user/username/projects/myproject/main/tsconfig.json +Info 29 [00:01:31.000] ----------------------------------------------- +Info 29 [00:01:32.000] Open files: +Info 29 [00:01:33.000] FileName: /user/username/projects/myproject/main/main.ts ProjectRootPath: undefined +Info 29 [00:01:34.000] Projects: /user/username/projects/myproject/main/tsconfig.json After request PolledWatches:: @@ -297,11 +297,11 @@ FsWatchesRecursive:: /user/username/projects/myproject/decls: {} -Info 29 [16:01:35.000] response: +Info 29 [00:01:35.000] response: { "responseRequired": false } -Info 30 [16:01:36.000] request: +Info 30 [00:01:36.000] request: { "seq": 0, "type": "request", @@ -336,19 +336,19 @@ FsWatchesRecursive:: /user/username/projects/myproject/decls: {} -Info 31 [16:01:37.000] FileWatcher:: Close:: WatchInfo: /user/username/projects/myproject/dependency/FnS.ts 500 undefined WatchType: Closed Script info -Info 32 [16:01:38.000] Search path: /user/username/projects/myproject/dependency -Info 33 [16:01:39.000] For info: /user/username/projects/myproject/dependency/FnS.ts :: Config file name: /user/username/projects/myproject/dependency/tsconfig.json -Info 34 [16:01:40.000] Creating configuration project /user/username/projects/myproject/dependency/tsconfig.json -Info 35 [16:01:41.000] Plugins were requested but not running in environment that supports 'require'. Nothing will be loaded -Info 36 [16:01:42.000] Starting updateGraphWorker: Project: /user/username/projects/myproject/dependency/tsconfig.json -Info 37 [16:01:43.000] 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 38 [16:01:44.000] 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 39 [16:01:45.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Type roots -Info 40 [16:01:46.000] 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 41 [16:01:47.000] Finishing updateGraphWorker: Project: /user/username/projects/myproject/dependency/tsconfig.json Version: 1 structureChanged: true structureIsReused:: Not Elapsed:: *ms -Info 42 [16:01:48.000] Project '/user/username/projects/myproject/dependency/tsconfig.json' (Configured) -Info 43 [16:01:49.000] Files (2) +Info 31 [00:01:37.000] FileWatcher:: Close:: WatchInfo: /user/username/projects/myproject/dependency/FnS.ts 500 undefined WatchType: Closed Script info +Info 32 [00:01:38.000] Search path: /user/username/projects/myproject/dependency +Info 33 [00:01:39.000] For info: /user/username/projects/myproject/dependency/FnS.ts :: Config file name: /user/username/projects/myproject/dependency/tsconfig.json +Info 34 [00:01:40.000] Creating configuration project /user/username/projects/myproject/dependency/tsconfig.json +Info 35 [00:01:41.000] Plugins were requested but not running in environment that supports 'require'. Nothing will be loaded +Info 36 [00:01:42.000] Starting updateGraphWorker: Project: /user/username/projects/myproject/dependency/tsconfig.json +Info 37 [00:01:43.000] 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 38 [00:01:44.000] 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 39 [00:01:45.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Type roots +Info 40 [00:01:46.000] 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 41 [00:01:47.000] Finishing updateGraphWorker: Project: /user/username/projects/myproject/dependency/tsconfig.json Version: 1 structureChanged: true structureIsReused:: Not Elapsed:: *ms +Info 42 [00:01:48.000] Project '/user/username/projects/myproject/dependency/tsconfig.json' (Configured) +Info 43 [00:01:49.000] Files (2) /a/lib/lib.d.ts /user/username/projects/myproject/dependency/FnS.ts @@ -358,22 +358,22 @@ Info 43 [16:01:49.000] Files (2) FnS.ts Matched by default include pattern '**/*' -Info 44 [16:01:50.000] ----------------------------------------------- -Info 45 [16:01:51.000] Search path: /user/username/projects/myproject/dependency -Info 46 [16:01:52.000] For info: /user/username/projects/myproject/dependency/tsconfig.json :: No config files found. -Info 47 [16:01:53.000] Project '/user/username/projects/myproject/main/tsconfig.json' (Configured) -Info 47 [16:01:54.000] Files (3) - -Info 47 [16:01:55.000] ----------------------------------------------- -Info 47 [16:01:56.000] Project '/user/username/projects/myproject/dependency/tsconfig.json' (Configured) -Info 47 [16:01:57.000] Files (2) - -Info 47 [16:01:58.000] ----------------------------------------------- -Info 47 [16:01:59.000] Open files: -Info 47 [16:02:00.000] FileName: /user/username/projects/myproject/main/main.ts ProjectRootPath: undefined -Info 47 [16:02:01.000] Projects: /user/username/projects/myproject/main/tsconfig.json -Info 47 [16:02:02.000] FileName: /user/username/projects/myproject/dependency/FnS.ts ProjectRootPath: undefined -Info 47 [16:02:03.000] Projects: /user/username/projects/myproject/main/tsconfig.json,/user/username/projects/myproject/dependency/tsconfig.json +Info 44 [00:01:50.000] ----------------------------------------------- +Info 45 [00:01:51.000] Search path: /user/username/projects/myproject/dependency +Info 46 [00:01:52.000] For info: /user/username/projects/myproject/dependency/tsconfig.json :: No config files found. +Info 47 [00:01:53.000] Project '/user/username/projects/myproject/main/tsconfig.json' (Configured) +Info 47 [00:01:54.000] Files (3) + +Info 47 [00:01:55.000] ----------------------------------------------- +Info 47 [00:01:56.000] Project '/user/username/projects/myproject/dependency/tsconfig.json' (Configured) +Info 47 [00:01:57.000] Files (2) + +Info 47 [00:01:58.000] ----------------------------------------------- +Info 47 [00:01:59.000] Open files: +Info 47 [00:02:00.000] FileName: /user/username/projects/myproject/main/main.ts ProjectRootPath: undefined +Info 47 [00:02:01.000] Projects: /user/username/projects/myproject/main/tsconfig.json +Info 47 [00:02:02.000] FileName: /user/username/projects/myproject/dependency/FnS.ts ProjectRootPath: undefined +Info 47 [00:02:03.000] Projects: /user/username/projects/myproject/main/tsconfig.json,/user/username/projects/myproject/dependency/tsconfig.json After request PolledWatches:: @@ -400,11 +400,11 @@ FsWatchesRecursive:: /user/username/projects/myproject/decls: {} -Info 47 [16:02:04.000] response: +Info 47 [00:02:04.000] response: { "responseRequired": false } -Info 48 [16:02:05.000] request: +Info 48 [00:02:05.000] request: { "seq": 0, "type": "request", @@ -439,11 +439,11 @@ FsWatchesRecursive:: /user/username/projects/myproject/decls: {} -Info 49 [16:02:06.000] Search path: /user/username/projects/myproject/random -Info 50 [16:02:07.000] For info: /user/username/projects/myproject/random/random.ts :: Config file name: /user/username/projects/myproject/random/tsconfig.json -Info 51 [16:02:08.000] Creating configuration project /user/username/projects/myproject/random/tsconfig.json -Info 52 [16:02:09.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/random/tsconfig.json 2000 undefined Project: /user/username/projects/myproject/random/tsconfig.json WatchType: Config file -Info 53 [16:02:10.000] Config: /user/username/projects/myproject/random/tsconfig.json : { +Info 49 [00:02:06.000] Search path: /user/username/projects/myproject/random +Info 50 [00:02:07.000] For info: /user/username/projects/myproject/random/random.ts :: Config file name: /user/username/projects/myproject/random/tsconfig.json +Info 51 [00:02:08.000] Creating configuration project /user/username/projects/myproject/random/tsconfig.json +Info 52 [00:02:09.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/random/tsconfig.json 2000 undefined Project: /user/username/projects/myproject/random/tsconfig.json WatchType: Config file +Info 53 [00:02:10.000] Config: /user/username/projects/myproject/random/tsconfig.json : { "rootNames": [ "/user/username/projects/myproject/random/random.ts" ], @@ -451,17 +451,17 @@ Info 53 [16:02:10.000] Config: /user/username/projects/myproject/random/tsconf "configFilePath": "/user/username/projects/myproject/random/tsconfig.json" } } -Info 54 [16:02:11.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/random 1 undefined Config: /user/username/projects/myproject/random/tsconfig.json WatchType: Wild card directory -Info 55 [16:02:12.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/random 1 undefined Config: /user/username/projects/myproject/random/tsconfig.json WatchType: Wild card directory -Info 56 [16:02:13.000] Plugins were requested but not running in environment that supports 'require'. Nothing will be loaded -Info 57 [16:02:14.000] Starting updateGraphWorker: Project: /user/username/projects/myproject/random/tsconfig.json -Info 58 [16:02:15.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/random/node_modules/@types 1 undefined Project: /user/username/projects/myproject/random/tsconfig.json WatchType: Type roots -Info 59 [16:02:16.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/random/node_modules/@types 1 undefined Project: /user/username/projects/myproject/random/tsconfig.json WatchType: Type roots -Info 60 [16:02:17.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/random/tsconfig.json WatchType: Type roots -Info 61 [16:02:18.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/random/tsconfig.json WatchType: Type roots -Info 62 [16:02:19.000] Finishing updateGraphWorker: Project: /user/username/projects/myproject/random/tsconfig.json Version: 1 structureChanged: true structureIsReused:: Not Elapsed:: *ms -Info 63 [16:02:20.000] Project '/user/username/projects/myproject/random/tsconfig.json' (Configured) -Info 64 [16:02:21.000] Files (2) +Info 54 [00:02:11.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/random 1 undefined Config: /user/username/projects/myproject/random/tsconfig.json WatchType: Wild card directory +Info 55 [00:02:12.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/random 1 undefined Config: /user/username/projects/myproject/random/tsconfig.json WatchType: Wild card directory +Info 56 [00:02:13.000] Plugins were requested but not running in environment that supports 'require'. Nothing will be loaded +Info 57 [00:02:14.000] Starting updateGraphWorker: Project: /user/username/projects/myproject/random/tsconfig.json +Info 58 [00:02:15.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/random/node_modules/@types 1 undefined Project: /user/username/projects/myproject/random/tsconfig.json WatchType: Type roots +Info 59 [00:02:16.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/random/node_modules/@types 1 undefined Project: /user/username/projects/myproject/random/tsconfig.json WatchType: Type roots +Info 60 [00:02:17.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/random/tsconfig.json WatchType: Type roots +Info 61 [00:02:18.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/random/tsconfig.json WatchType: Type roots +Info 62 [00:02:19.000] Finishing updateGraphWorker: Project: /user/username/projects/myproject/random/tsconfig.json Version: 1 structureChanged: true structureIsReused:: Not Elapsed:: *ms +Info 63 [00:02:20.000] Project '/user/username/projects/myproject/random/tsconfig.json' (Configured) +Info 64 [00:02:21.000] Files (2) /a/lib/lib.d.ts /user/username/projects/myproject/random/random.ts @@ -471,26 +471,26 @@ Info 64 [16:02:21.000] Files (2) random.ts Matched by default include pattern '**/*' -Info 65 [16:02:22.000] ----------------------------------------------- -Info 66 [16:02:23.000] Project '/user/username/projects/myproject/main/tsconfig.json' (Configured) -Info 66 [16:02:24.000] Files (3) - -Info 66 [16:02:25.000] ----------------------------------------------- -Info 66 [16:02:26.000] Project '/user/username/projects/myproject/dependency/tsconfig.json' (Configured) -Info 66 [16:02:27.000] Files (2) - -Info 66 [16:02:28.000] ----------------------------------------------- -Info 66 [16:02:29.000] Project '/user/username/projects/myproject/random/tsconfig.json' (Configured) -Info 66 [16:02:30.000] Files (2) - -Info 66 [16:02:31.000] ----------------------------------------------- -Info 66 [16:02:32.000] Open files: -Info 66 [16:02:33.000] FileName: /user/username/projects/myproject/main/main.ts ProjectRootPath: undefined -Info 66 [16:02:34.000] Projects: /user/username/projects/myproject/main/tsconfig.json -Info 66 [16:02:35.000] FileName: /user/username/projects/myproject/dependency/FnS.ts ProjectRootPath: undefined -Info 66 [16:02:36.000] Projects: /user/username/projects/myproject/main/tsconfig.json,/user/username/projects/myproject/dependency/tsconfig.json -Info 66 [16:02:37.000] FileName: /user/username/projects/myproject/random/random.ts ProjectRootPath: undefined -Info 66 [16:02:38.000] Projects: /user/username/projects/myproject/random/tsconfig.json +Info 65 [00:02:22.000] ----------------------------------------------- +Info 66 [00:02:23.000] Project '/user/username/projects/myproject/main/tsconfig.json' (Configured) +Info 66 [00:02:24.000] Files (3) + +Info 66 [00:02:25.000] ----------------------------------------------- +Info 66 [00:02:26.000] Project '/user/username/projects/myproject/dependency/tsconfig.json' (Configured) +Info 66 [00:02:27.000] Files (2) + +Info 66 [00:02:28.000] ----------------------------------------------- +Info 66 [00:02:29.000] Project '/user/username/projects/myproject/random/tsconfig.json' (Configured) +Info 66 [00:02:30.000] Files (2) + +Info 66 [00:02:31.000] ----------------------------------------------- +Info 66 [00:02:32.000] Open files: +Info 66 [00:02:33.000] FileName: /user/username/projects/myproject/main/main.ts ProjectRootPath: undefined +Info 66 [00:02:34.000] Projects: /user/username/projects/myproject/main/tsconfig.json +Info 66 [00:02:35.000] FileName: /user/username/projects/myproject/dependency/FnS.ts ProjectRootPath: undefined +Info 66 [00:02:36.000] Projects: /user/username/projects/myproject/main/tsconfig.json,/user/username/projects/myproject/dependency/tsconfig.json +Info 66 [00:02:37.000] FileName: /user/username/projects/myproject/random/random.ts ProjectRootPath: undefined +Info 66 [00:02:38.000] Projects: /user/username/projects/myproject/random/tsconfig.json After request PolledWatches:: @@ -523,11 +523,11 @@ FsWatchesRecursive:: /user/username/projects/myproject/random: {} -Info 66 [16:02:39.000] response: +Info 66 [00:02:39.000] response: { "responseRequired": false } -Info 67 [16:02:40.000] request: +Info 67 [00:02:40.000] request: { "command": "definitionAndBoundSpan", "arguments": { @@ -602,7 +602,7 @@ FsWatchesRecursive:: /user/username/projects/myproject/random: {} -Info 68 [16:02:41.000] response: +Info 68 [00:02:41.000] response: { "response": { "definitions": [ @@ -639,7 +639,7 @@ Info 68 [16:02:41.000] response: }, "responseRequired": true } -Info 69 [16:02:42.000] request: +Info 69 [00:02:42.000] request: { "command": "rename", "arguments": { @@ -682,10 +682,10 @@ FsWatchesRecursive:: /user/username/projects/myproject/random: {} -Info 70 [16:02:43.000] Search path: /user/username/projects/myproject/dependency -Info 71 [16:02:44.000] For info: /user/username/projects/myproject/dependency/FnS.ts :: Config file name: /user/username/projects/myproject/dependency/tsconfig.json -Info 72 [16:02:45.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/decls/FnS.d.ts 500 undefined WatchType: Closed Script info -Info 73 [16:02:46.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/decls/FnS.d.ts.map 500 undefined WatchType: Closed Script info +Info 70 [00:02:43.000] Search path: /user/username/projects/myproject/dependency +Info 71 [00:02:44.000] For info: /user/username/projects/myproject/dependency/FnS.ts :: Config file name: /user/username/projects/myproject/dependency/tsconfig.json +Info 72 [00:02:45.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/decls/FnS.d.ts 500 undefined WatchType: Closed Script info +Info 73 [00:02:46.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/decls/FnS.d.ts.map 500 undefined WatchType: Closed Script info After request PolledWatches:: @@ -722,7 +722,7 @@ FsWatchesRecursive:: /user/username/projects/myproject/random: {} -Info 74 [16:02:47.000] response: +Info 74 [00:02:47.000] response: { "response": { "info": { @@ -803,12 +803,12 @@ Info 74 [16:02:47.000] response: }, "responseRequired": true } -Info 75 [16:02:51.000] FileWatcher:: Triggered with /user/username/projects/myproject/decls/FnS.d.ts 1:: WatchInfo: /user/username/projects/myproject/decls/FnS.d.ts 500 undefined WatchType: Closed Script info -Info 76 [16:02:52.000] Scheduled: /user/username/projects/myproject/main/tsconfig.json -Info 77 [16:02:53.000] Scheduled: /user/username/projects/myproject/dependency/tsconfig.json -Info 78 [16:02:54.000] Scheduled: *ensureProjectForOpenFiles* -Info 79 [16:02:55.000] Elapsed:: *ms FileWatcher:: Triggered with /user/username/projects/myproject/decls/FnS.d.ts 1:: WatchInfo: /user/username/projects/myproject/decls/FnS.d.ts 500 undefined WatchType: Closed Script info -Info 80 [16:02:56.000] request: +Info 75 [00:02:51.000] FileWatcher:: Triggered with /user/username/projects/myproject/decls/FnS.d.ts 1:: WatchInfo: /user/username/projects/myproject/decls/FnS.d.ts 500 undefined WatchType: Closed Script info +Info 76 [00:02:52.000] Scheduled: /user/username/projects/myproject/main/tsconfig.json +Info 77 [00:02:53.000] Scheduled: /user/username/projects/myproject/dependency/tsconfig.json +Info 78 [00:02:54.000] Scheduled: *ensureProjectForOpenFiles* +Info 79 [00:02:55.000] Elapsed:: *ms FileWatcher:: Triggered with /user/username/projects/myproject/decls/FnS.d.ts 1:: WatchInfo: /user/username/projects/myproject/decls/FnS.d.ts 500 undefined WatchType: Closed Script info +Info 80 [00:02:56.000] request: { "command": "definitionAndBoundSpan", "arguments": { @@ -864,9 +864,9 @@ FsWatchesRecursive:: /user/username/projects/myproject/random: {} -Info 81 [16:02:57.000] Starting updateGraphWorker: Project: /user/username/projects/myproject/main/tsconfig.json -Info 82 [16:02:58.000] Finishing updateGraphWorker: Project: /user/username/projects/myproject/main/tsconfig.json Version: 2 structureChanged: false structureIsReused:: Completely Elapsed:: *ms -Info 83 [16:02:59.000] Different program with same set of files +Info 81 [00:02:57.000] Starting updateGraphWorker: Project: /user/username/projects/myproject/main/tsconfig.json +Info 82 [00:02:58.000] Finishing updateGraphWorker: Project: /user/username/projects/myproject/main/tsconfig.json Version: 2 structureChanged: false structureIsReused:: Completely Elapsed:: *ms +Info 83 [00:02:59.000] Different program with same set of files After request PolledWatches:: @@ -903,7 +903,7 @@ FsWatchesRecursive:: /user/username/projects/myproject/random: {} -Info 84 [16:03:00.000] response: +Info 84 [00:03:00.000] response: { "response": { "definitions": [ @@ -940,7 +940,7 @@ Info 84 [16:03:00.000] response: }, "responseRequired": true } -Info 85 [16:03:01.000] request: +Info 85 [00:03:01.000] request: { "command": "definitionAndBoundSpan", "arguments": { @@ -1023,7 +1023,7 @@ FsWatchesRecursive:: /user/username/projects/myproject/random: {} -Info 86 [16:03:02.000] response: +Info 86 [00:03:02.000] response: { "response": { "definitions": [ @@ -1060,7 +1060,7 @@ Info 86 [16:03:02.000] response: }, "responseRequired": true } -Info 87 [16:03:03.000] request: +Info 87 [00:03:03.000] request: { "command": "definitionAndBoundSpan", "arguments": { @@ -1143,7 +1143,7 @@ FsWatchesRecursive:: /user/username/projects/myproject/random: {} -Info 88 [16:03:04.000] response: +Info 88 [00:03:04.000] response: { "response": { "definitions": [ @@ -1180,7 +1180,7 @@ Info 88 [16:03:04.000] response: }, "responseRequired": true } -Info 89 [16:03:05.000] request: +Info 89 [00:03:05.000] request: { "command": "definitionAndBoundSpan", "arguments": { @@ -1263,7 +1263,7 @@ FsWatchesRecursive:: /user/username/projects/myproject/random: {} -Info 90 [16:03:06.000] response: +Info 90 [00:03:06.000] response: { "response": { "definitions": [ @@ -1300,7 +1300,7 @@ Info 90 [16:03:06.000] response: }, "responseRequired": true } -Info 91 [16:03:07.000] request: +Info 91 [00:03:07.000] request: { "command": "definitionAndBoundSpan", "arguments": { @@ -1383,7 +1383,7 @@ FsWatchesRecursive:: /user/username/projects/myproject/random: {} -Info 92 [16:03:08.000] response: +Info 92 [00:03:08.000] response: { "response": { "definitions": [ @@ -1420,7 +1420,7 @@ Info 92 [16:03:08.000] response: }, "responseRequired": true } -Info 93 [16:03:09.000] request: +Info 93 [00:03:09.000] request: { "command": "rename", "arguments": { @@ -1467,10 +1467,10 @@ FsWatchesRecursive:: /user/username/projects/myproject/random: {} -Info 94 [16:03:10.000] Starting updateGraphWorker: Project: /user/username/projects/myproject/dependency/tsconfig.json -Info 95 [16:03:11.000] Finishing updateGraphWorker: Project: /user/username/projects/myproject/dependency/tsconfig.json Version: 2 structureChanged: false structureIsReused:: Not Elapsed:: *ms -Info 96 [16:03:12.000] Search path: /user/username/projects/myproject/dependency -Info 97 [16:03:13.000] For info: /user/username/projects/myproject/dependency/FnS.ts :: Config file name: /user/username/projects/myproject/dependency/tsconfig.json +Info 94 [00:03:10.000] Starting updateGraphWorker: Project: /user/username/projects/myproject/dependency/tsconfig.json +Info 95 [00:03:11.000] Finishing updateGraphWorker: Project: /user/username/projects/myproject/dependency/tsconfig.json Version: 2 structureChanged: false structureIsReused:: Not Elapsed:: *ms +Info 96 [00:03:12.000] Search path: /user/username/projects/myproject/dependency +Info 97 [00:03:13.000] For info: /user/username/projects/myproject/dependency/FnS.ts :: Config file name: /user/username/projects/myproject/dependency/tsconfig.json After request PolledWatches:: @@ -1507,7 +1507,7 @@ FsWatchesRecursive:: /user/username/projects/myproject/random: {} -Info 98 [16:03:14.000] response: +Info 98 [00:03:14.000] response: { "response": { "info": { @@ -1588,7 +1588,7 @@ Info 98 [16:03:14.000] response: }, "responseRequired": true } -Info 99 [16:03:15.000] request: +Info 99 [00:03:15.000] request: { "command": "rename", "arguments": { @@ -1635,8 +1635,8 @@ FsWatchesRecursive:: /user/username/projects/myproject/random: {} -Info 100 [16:03:16.000] Search path: /user/username/projects/myproject/dependency -Info 101 [16:03:17.000] For info: /user/username/projects/myproject/dependency/FnS.ts :: Config file name: /user/username/projects/myproject/dependency/tsconfig.json +Info 100 [00:03:16.000] Search path: /user/username/projects/myproject/dependency +Info 101 [00:03:17.000] For info: /user/username/projects/myproject/dependency/FnS.ts :: Config file name: /user/username/projects/myproject/dependency/tsconfig.json After request PolledWatches:: @@ -1673,7 +1673,7 @@ FsWatchesRecursive:: /user/username/projects/myproject/random: {} -Info 102 [16:03:18.000] response: +Info 102 [00:03:18.000] response: { "response": { "info": { @@ -1754,7 +1754,7 @@ Info 102 [16:03:18.000] response: }, "responseRequired": true } -Info 103 [16:03:19.000] request: +Info 103 [00:03:19.000] request: { "command": "rename", "arguments": { @@ -1801,8 +1801,8 @@ FsWatchesRecursive:: /user/username/projects/myproject/random: {} -Info 104 [16:03:20.000] Search path: /user/username/projects/myproject/dependency -Info 105 [16:03:21.000] For info: /user/username/projects/myproject/dependency/FnS.ts :: Config file name: /user/username/projects/myproject/dependency/tsconfig.json +Info 104 [00:03:20.000] Search path: /user/username/projects/myproject/dependency +Info 105 [00:03:21.000] For info: /user/username/projects/myproject/dependency/FnS.ts :: Config file name: /user/username/projects/myproject/dependency/tsconfig.json After request PolledWatches:: @@ -1839,7 +1839,7 @@ FsWatchesRecursive:: /user/username/projects/myproject/random: {} -Info 106 [16:03:22.000] response: +Info 106 [00:03:22.000] response: { "response": { "info": { @@ -1920,7 +1920,7 @@ Info 106 [16:03:22.000] response: }, "responseRequired": true } -Info 107 [16:03:23.000] request: +Info 107 [00:03:23.000] request: { "command": "rename", "arguments": { @@ -1967,8 +1967,8 @@ FsWatchesRecursive:: /user/username/projects/myproject/random: {} -Info 108 [16:03:24.000] Search path: /user/username/projects/myproject/dependency -Info 109 [16:03:25.000] For info: /user/username/projects/myproject/dependency/FnS.ts :: Config file name: /user/username/projects/myproject/dependency/tsconfig.json +Info 108 [00:03:24.000] Search path: /user/username/projects/myproject/dependency +Info 109 [00:03:25.000] For info: /user/username/projects/myproject/dependency/FnS.ts :: Config file name: /user/username/projects/myproject/dependency/tsconfig.json After request PolledWatches:: @@ -2005,7 +2005,7 @@ FsWatchesRecursive:: /user/username/projects/myproject/random: {} -Info 110 [16:03:26.000] response: +Info 110 [00:03:26.000] response: { "response": { "info": { @@ -2086,7 +2086,7 @@ Info 110 [16:03:26.000] response: }, "responseRequired": true } -Info 111 [16:03:27.000] request: +Info 111 [00:03:27.000] request: { "command": "rename", "arguments": { @@ -2133,8 +2133,8 @@ FsWatchesRecursive:: /user/username/projects/myproject/random: {} -Info 112 [16:03:28.000] Search path: /user/username/projects/myproject/dependency -Info 113 [16:03:29.000] For info: /user/username/projects/myproject/dependency/FnS.ts :: Config file name: /user/username/projects/myproject/dependency/tsconfig.json +Info 112 [00:03:28.000] Search path: /user/username/projects/myproject/dependency +Info 113 [00:03:29.000] For info: /user/username/projects/myproject/dependency/FnS.ts :: Config file name: /user/username/projects/myproject/dependency/tsconfig.json After request PolledWatches:: @@ -2171,7 +2171,7 @@ FsWatchesRecursive:: /user/username/projects/myproject/random: {} -Info 114 [16:03:30.000] response: +Info 114 [00:03:30.000] response: { "response": { "info": { 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 6e472b9d94ab5..4bf7f02d0e7aa 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 @@ -1,5 +1,5 @@ -Info 0 [16:01:01.000] Provided types map file "/a/lib/typesMap.json" doesn't exist -Info 1 [16:01:02.000] request: +Info 0 [00:01:01.000] Provided types map file "/a/lib/typesMap.json" doesn't exist +Info 1 [00:01:02.000] request: { "seq": 0, "type": "request", @@ -192,11 +192,11 @@ FsWatches:: FsWatchesRecursive:: -Info 2 [16:01:03.000] Search path: /user/username/projects/myproject/main -Info 3 [16:01:04.000] For info: /user/username/projects/myproject/main/main.ts :: Config file name: /user/username/projects/myproject/main/tsconfig.json -Info 4 [16:01:05.000] Creating configuration project /user/username/projects/myproject/main/tsconfig.json -Info 5 [16:01:06.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/main/tsconfig.json 2000 undefined Project: /user/username/projects/myproject/main/tsconfig.json WatchType: Config file -Info 6 [16:01:07.000] Config: /user/username/projects/myproject/main/tsconfig.json : { +Info 2 [00:01:03.000] Search path: /user/username/projects/myproject/main +Info 3 [00:01:04.000] For info: /user/username/projects/myproject/main/main.ts :: Config file name: /user/username/projects/myproject/main/tsconfig.json +Info 4 [00:01:05.000] Creating configuration project /user/username/projects/myproject/main/tsconfig.json +Info 5 [00:01:06.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/main/tsconfig.json 2000 undefined Project: /user/username/projects/myproject/main/tsconfig.json WatchType: Config file +Info 6 [00:01:07.000] Config: /user/username/projects/myproject/main/tsconfig.json : { "rootNames": [ "/user/username/projects/myproject/main/main.ts" ], @@ -212,11 +212,11 @@ Info 6 [16:01:07.000] Config: /user/username/projects/myproject/main/tsconfig } ] } -Info 7 [16:01:08.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/main 1 undefined Config: /user/username/projects/myproject/main/tsconfig.json WatchType: Wild card directory -Info 8 [16:01:09.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/main 1 undefined Config: /user/username/projects/myproject/main/tsconfig.json WatchType: Wild card directory -Info 9 [16:01:10.000] Plugins were requested but not running in environment that supports 'require'. Nothing will be loaded -Info 10 [16:01:11.000] Starting updateGraphWorker: Project: /user/username/projects/myproject/main/tsconfig.json -Info 11 [16:01:12.000] Config: /user/username/projects/myproject/dependency/tsconfig.json : { +Info 7 [00:01:08.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/main 1 undefined Config: /user/username/projects/myproject/main/tsconfig.json WatchType: Wild card directory +Info 8 [00:01:09.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/main 1 undefined Config: /user/username/projects/myproject/main/tsconfig.json WatchType: Wild card directory +Info 9 [00:01:10.000] Plugins were requested but not running in environment that supports 'require'. Nothing will be loaded +Info 10 [00:01:11.000] Starting updateGraphWorker: Project: /user/username/projects/myproject/main/tsconfig.json +Info 11 [00:01:12.000] Config: /user/username/projects/myproject/dependency/tsconfig.json : { "rootNames": [ "/user/username/projects/myproject/dependency/FnS.ts" ], @@ -227,20 +227,20 @@ Info 11 [16:01:12.000] Config: /user/username/projects/myproject/dependency/ts "configFilePath": "/user/username/projects/myproject/dependency/tsconfig.json" } } -Info 12 [16:01:13.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/dependency/tsconfig.json 2000 undefined Project: /user/username/projects/myproject/main/tsconfig.json WatchType: Config file -Info 13 [16:01:14.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/dependency 1 undefined Config: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Wild card directory -Info 14 [16:01:15.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/dependency 1 undefined Config: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Wild card directory -Info 15 [16:01:16.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/decls 1 undefined Project: /user/username/projects/myproject/main/tsconfig.json WatchType: Failed Lookup Locations -Info 16 [16:01:17.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/decls 1 undefined Project: /user/username/projects/myproject/main/tsconfig.json WatchType: Failed Lookup Locations -Info 17 [16:01:18.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/dependency/FnS.ts 500 undefined WatchType: Closed Script info -Info 18 [16:01:19.000] FileWatcher:: Added:: WatchInfo: /a/lib/lib.d.ts 500 undefined WatchType: Closed Script info -Info 19 [16:01:20.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/main/node_modules/@types 1 undefined Project: /user/username/projects/myproject/main/tsconfig.json WatchType: Type roots -Info 20 [16:01:21.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/main/node_modules/@types 1 undefined Project: /user/username/projects/myproject/main/tsconfig.json WatchType: Type roots -Info 21 [16:01:22.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/main/tsconfig.json WatchType: Type roots -Info 22 [16:01:23.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/main/tsconfig.json WatchType: Type roots -Info 23 [16:01:24.000] Finishing updateGraphWorker: Project: /user/username/projects/myproject/main/tsconfig.json Version: 1 structureChanged: true structureIsReused:: Not Elapsed:: *ms -Info 24 [16:01:25.000] Project '/user/username/projects/myproject/main/tsconfig.json' (Configured) -Info 25 [16:01:26.000] Files (3) +Info 12 [00:01:13.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/dependency/tsconfig.json 2000 undefined Project: /user/username/projects/myproject/main/tsconfig.json WatchType: Config file +Info 13 [00:01:14.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/dependency 1 undefined Config: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Wild card directory +Info 14 [00:01:15.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/dependency 1 undefined Config: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Wild card directory +Info 15 [00:01:16.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/decls 1 undefined Project: /user/username/projects/myproject/main/tsconfig.json WatchType: Failed Lookup Locations +Info 16 [00:01:17.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/decls 1 undefined Project: /user/username/projects/myproject/main/tsconfig.json WatchType: Failed Lookup Locations +Info 17 [00:01:18.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/dependency/FnS.ts 500 undefined WatchType: Closed Script info +Info 18 [00:01:19.000] FileWatcher:: Added:: WatchInfo: /a/lib/lib.d.ts 500 undefined WatchType: Closed Script info +Info 19 [00:01:20.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/main/node_modules/@types 1 undefined Project: /user/username/projects/myproject/main/tsconfig.json WatchType: Type roots +Info 20 [00:01:21.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/main/node_modules/@types 1 undefined Project: /user/username/projects/myproject/main/tsconfig.json WatchType: Type roots +Info 21 [00:01:22.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/main/tsconfig.json WatchType: Type roots +Info 22 [00:01:23.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/main/tsconfig.json WatchType: Type roots +Info 23 [00:01:24.000] Finishing updateGraphWorker: Project: /user/username/projects/myproject/main/tsconfig.json Version: 1 structureChanged: true structureIsReused:: Not Elapsed:: *ms +Info 24 [00:01:25.000] Project '/user/username/projects/myproject/main/tsconfig.json' (Configured) +Info 25 [00:01:26.000] Files (3) /a/lib/lib.d.ts /user/username/projects/myproject/dependency/FnS.ts /user/username/projects/myproject/main/main.ts @@ -253,16 +253,16 @@ Info 25 [16:01:26.000] Files (3) main.ts Matched by default include pattern '**/*' -Info 26 [16:01:27.000] ----------------------------------------------- -Info 27 [16:01:28.000] Search path: /user/username/projects/myproject/main -Info 28 [16:01:29.000] For info: /user/username/projects/myproject/main/tsconfig.json :: No config files found. -Info 29 [16:01:30.000] Project '/user/username/projects/myproject/main/tsconfig.json' (Configured) -Info 29 [16:01:31.000] Files (3) +Info 26 [00:01:27.000] ----------------------------------------------- +Info 27 [00:01:28.000] Search path: /user/username/projects/myproject/main +Info 28 [00:01:29.000] For info: /user/username/projects/myproject/main/tsconfig.json :: No config files found. +Info 29 [00:01:30.000] Project '/user/username/projects/myproject/main/tsconfig.json' (Configured) +Info 29 [00:01:31.000] Files (3) -Info 29 [16:01:32.000] ----------------------------------------------- -Info 29 [16:01:33.000] Open files: -Info 29 [16:01:34.000] FileName: /user/username/projects/myproject/main/main.ts ProjectRootPath: undefined -Info 29 [16:01:35.000] Projects: /user/username/projects/myproject/main/tsconfig.json +Info 29 [00:01:32.000] ----------------------------------------------- +Info 29 [00:01:33.000] Open files: +Info 29 [00:01:34.000] FileName: /user/username/projects/myproject/main/main.ts ProjectRootPath: undefined +Info 29 [00:01:35.000] Projects: /user/username/projects/myproject/main/tsconfig.json After request PolledWatches:: @@ -289,11 +289,11 @@ FsWatchesRecursive:: /user/username/projects/myproject/decls: {} -Info 29 [16:01:36.000] response: +Info 29 [00:01:36.000] response: { "responseRequired": false } -Info 30 [16:01:37.000] request: +Info 30 [00:01:37.000] request: { "seq": 0, "type": "request", @@ -328,19 +328,19 @@ FsWatchesRecursive:: /user/username/projects/myproject/decls: {} -Info 31 [16:01:38.000] FileWatcher:: Close:: WatchInfo: /user/username/projects/myproject/dependency/FnS.ts 500 undefined WatchType: Closed Script info -Info 32 [16:01:39.000] Search path: /user/username/projects/myproject/dependency -Info 33 [16:01:40.000] For info: /user/username/projects/myproject/dependency/FnS.ts :: Config file name: /user/username/projects/myproject/dependency/tsconfig.json -Info 34 [16:01:41.000] Creating configuration project /user/username/projects/myproject/dependency/tsconfig.json -Info 35 [16:01:42.000] Plugins were requested but not running in environment that supports 'require'. Nothing will be loaded -Info 36 [16:01:43.000] Starting updateGraphWorker: Project: /user/username/projects/myproject/dependency/tsconfig.json -Info 37 [16:01:44.000] 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 38 [16:01:45.000] 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 39 [16:01:46.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Type roots -Info 40 [16:01:47.000] 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 41 [16:01:48.000] Finishing updateGraphWorker: Project: /user/username/projects/myproject/dependency/tsconfig.json Version: 1 structureChanged: true structureIsReused:: Not Elapsed:: *ms -Info 42 [16:01:49.000] Project '/user/username/projects/myproject/dependency/tsconfig.json' (Configured) -Info 43 [16:01:50.000] Files (2) +Info 31 [00:01:38.000] FileWatcher:: Close:: WatchInfo: /user/username/projects/myproject/dependency/FnS.ts 500 undefined WatchType: Closed Script info +Info 32 [00:01:39.000] Search path: /user/username/projects/myproject/dependency +Info 33 [00:01:40.000] For info: /user/username/projects/myproject/dependency/FnS.ts :: Config file name: /user/username/projects/myproject/dependency/tsconfig.json +Info 34 [00:01:41.000] Creating configuration project /user/username/projects/myproject/dependency/tsconfig.json +Info 35 [00:01:42.000] Plugins were requested but not running in environment that supports 'require'. Nothing will be loaded +Info 36 [00:01:43.000] Starting updateGraphWorker: Project: /user/username/projects/myproject/dependency/tsconfig.json +Info 37 [00:01:44.000] 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 38 [00:01:45.000] 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 39 [00:01:46.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Type roots +Info 40 [00:01:47.000] 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 41 [00:01:48.000] Finishing updateGraphWorker: Project: /user/username/projects/myproject/dependency/tsconfig.json Version: 1 structureChanged: true structureIsReused:: Not Elapsed:: *ms +Info 42 [00:01:49.000] Project '/user/username/projects/myproject/dependency/tsconfig.json' (Configured) +Info 43 [00:01:50.000] Files (2) /a/lib/lib.d.ts /user/username/projects/myproject/dependency/FnS.ts @@ -350,22 +350,22 @@ Info 43 [16:01:50.000] Files (2) FnS.ts Matched by default include pattern '**/*' -Info 44 [16:01:51.000] ----------------------------------------------- -Info 45 [16:01:52.000] Search path: /user/username/projects/myproject/dependency -Info 46 [16:01:53.000] For info: /user/username/projects/myproject/dependency/tsconfig.json :: No config files found. -Info 47 [16:01:54.000] Project '/user/username/projects/myproject/main/tsconfig.json' (Configured) -Info 47 [16:01:55.000] Files (3) - -Info 47 [16:01:56.000] ----------------------------------------------- -Info 47 [16:01:57.000] Project '/user/username/projects/myproject/dependency/tsconfig.json' (Configured) -Info 47 [16:01:58.000] Files (2) - -Info 47 [16:01:59.000] ----------------------------------------------- -Info 47 [16:02:00.000] Open files: -Info 47 [16:02:01.000] FileName: /user/username/projects/myproject/main/main.ts ProjectRootPath: undefined -Info 47 [16:02:02.000] Projects: /user/username/projects/myproject/main/tsconfig.json -Info 47 [16:02:03.000] FileName: /user/username/projects/myproject/dependency/FnS.ts ProjectRootPath: undefined -Info 47 [16:02:04.000] Projects: /user/username/projects/myproject/main/tsconfig.json,/user/username/projects/myproject/dependency/tsconfig.json +Info 44 [00:01:51.000] ----------------------------------------------- +Info 45 [00:01:52.000] Search path: /user/username/projects/myproject/dependency +Info 46 [00:01:53.000] For info: /user/username/projects/myproject/dependency/tsconfig.json :: No config files found. +Info 47 [00:01:54.000] Project '/user/username/projects/myproject/main/tsconfig.json' (Configured) +Info 47 [00:01:55.000] Files (3) + +Info 47 [00:01:56.000] ----------------------------------------------- +Info 47 [00:01:57.000] Project '/user/username/projects/myproject/dependency/tsconfig.json' (Configured) +Info 47 [00:01:58.000] Files (2) + +Info 47 [00:01:59.000] ----------------------------------------------- +Info 47 [00:02:00.000] Open files: +Info 47 [00:02:01.000] FileName: /user/username/projects/myproject/main/main.ts ProjectRootPath: undefined +Info 47 [00:02:02.000] Projects: /user/username/projects/myproject/main/tsconfig.json +Info 47 [00:02:03.000] FileName: /user/username/projects/myproject/dependency/FnS.ts ProjectRootPath: undefined +Info 47 [00:02:04.000] Projects: /user/username/projects/myproject/main/tsconfig.json,/user/username/projects/myproject/dependency/tsconfig.json After request PolledWatches:: @@ -392,11 +392,11 @@ FsWatchesRecursive:: /user/username/projects/myproject/decls: {} -Info 47 [16:02:05.000] response: +Info 47 [00:02:05.000] response: { "responseRequired": false } -Info 48 [16:02:06.000] request: +Info 48 [00:02:06.000] request: { "seq": 0, "type": "request", @@ -431,11 +431,11 @@ FsWatchesRecursive:: /user/username/projects/myproject/decls: {} -Info 49 [16:02:07.000] Search path: /user/username/projects/myproject/random -Info 50 [16:02:08.000] For info: /user/username/projects/myproject/random/random.ts :: Config file name: /user/username/projects/myproject/random/tsconfig.json -Info 51 [16:02:09.000] Creating configuration project /user/username/projects/myproject/random/tsconfig.json -Info 52 [16:02:10.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/random/tsconfig.json 2000 undefined Project: /user/username/projects/myproject/random/tsconfig.json WatchType: Config file -Info 53 [16:02:11.000] Config: /user/username/projects/myproject/random/tsconfig.json : { +Info 49 [00:02:07.000] Search path: /user/username/projects/myproject/random +Info 50 [00:02:08.000] For info: /user/username/projects/myproject/random/random.ts :: Config file name: /user/username/projects/myproject/random/tsconfig.json +Info 51 [00:02:09.000] Creating configuration project /user/username/projects/myproject/random/tsconfig.json +Info 52 [00:02:10.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/random/tsconfig.json 2000 undefined Project: /user/username/projects/myproject/random/tsconfig.json WatchType: Config file +Info 53 [00:02:11.000] Config: /user/username/projects/myproject/random/tsconfig.json : { "rootNames": [ "/user/username/projects/myproject/random/random.ts" ], @@ -443,17 +443,17 @@ Info 53 [16:02:11.000] Config: /user/username/projects/myproject/random/tsconf "configFilePath": "/user/username/projects/myproject/random/tsconfig.json" } } -Info 54 [16:02:12.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/random 1 undefined Config: /user/username/projects/myproject/random/tsconfig.json WatchType: Wild card directory -Info 55 [16:02:13.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/random 1 undefined Config: /user/username/projects/myproject/random/tsconfig.json WatchType: Wild card directory -Info 56 [16:02:14.000] Plugins were requested but not running in environment that supports 'require'. Nothing will be loaded -Info 57 [16:02:15.000] Starting updateGraphWorker: Project: /user/username/projects/myproject/random/tsconfig.json -Info 58 [16:02:16.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/random/node_modules/@types 1 undefined Project: /user/username/projects/myproject/random/tsconfig.json WatchType: Type roots -Info 59 [16:02:17.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/random/node_modules/@types 1 undefined Project: /user/username/projects/myproject/random/tsconfig.json WatchType: Type roots -Info 60 [16:02:18.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/random/tsconfig.json WatchType: Type roots -Info 61 [16:02:19.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/random/tsconfig.json WatchType: Type roots -Info 62 [16:02:20.000] Finishing updateGraphWorker: Project: /user/username/projects/myproject/random/tsconfig.json Version: 1 structureChanged: true structureIsReused:: Not Elapsed:: *ms -Info 63 [16:02:21.000] Project '/user/username/projects/myproject/random/tsconfig.json' (Configured) -Info 64 [16:02:22.000] Files (2) +Info 54 [00:02:12.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/random 1 undefined Config: /user/username/projects/myproject/random/tsconfig.json WatchType: Wild card directory +Info 55 [00:02:13.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/random 1 undefined Config: /user/username/projects/myproject/random/tsconfig.json WatchType: Wild card directory +Info 56 [00:02:14.000] Plugins were requested but not running in environment that supports 'require'. Nothing will be loaded +Info 57 [00:02:15.000] Starting updateGraphWorker: Project: /user/username/projects/myproject/random/tsconfig.json +Info 58 [00:02:16.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/random/node_modules/@types 1 undefined Project: /user/username/projects/myproject/random/tsconfig.json WatchType: Type roots +Info 59 [00:02:17.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/random/node_modules/@types 1 undefined Project: /user/username/projects/myproject/random/tsconfig.json WatchType: Type roots +Info 60 [00:02:18.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/random/tsconfig.json WatchType: Type roots +Info 61 [00:02:19.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/random/tsconfig.json WatchType: Type roots +Info 62 [00:02:20.000] Finishing updateGraphWorker: Project: /user/username/projects/myproject/random/tsconfig.json Version: 1 structureChanged: true structureIsReused:: Not Elapsed:: *ms +Info 63 [00:02:21.000] Project '/user/username/projects/myproject/random/tsconfig.json' (Configured) +Info 64 [00:02:22.000] Files (2) /a/lib/lib.d.ts /user/username/projects/myproject/random/random.ts @@ -463,26 +463,26 @@ Info 64 [16:02:22.000] Files (2) random.ts Matched by default include pattern '**/*' -Info 65 [16:02:23.000] ----------------------------------------------- -Info 66 [16:02:24.000] Project '/user/username/projects/myproject/main/tsconfig.json' (Configured) -Info 66 [16:02:25.000] Files (3) - -Info 66 [16:02:26.000] ----------------------------------------------- -Info 66 [16:02:27.000] Project '/user/username/projects/myproject/dependency/tsconfig.json' (Configured) -Info 66 [16:02:28.000] Files (2) - -Info 66 [16:02:29.000] ----------------------------------------------- -Info 66 [16:02:30.000] Project '/user/username/projects/myproject/random/tsconfig.json' (Configured) -Info 66 [16:02:31.000] Files (2) - -Info 66 [16:02:32.000] ----------------------------------------------- -Info 66 [16:02:33.000] Open files: -Info 66 [16:02:34.000] FileName: /user/username/projects/myproject/main/main.ts ProjectRootPath: undefined -Info 66 [16:02:35.000] Projects: /user/username/projects/myproject/main/tsconfig.json -Info 66 [16:02:36.000] FileName: /user/username/projects/myproject/dependency/FnS.ts ProjectRootPath: undefined -Info 66 [16:02:37.000] Projects: /user/username/projects/myproject/main/tsconfig.json,/user/username/projects/myproject/dependency/tsconfig.json -Info 66 [16:02:38.000] FileName: /user/username/projects/myproject/random/random.ts ProjectRootPath: undefined -Info 66 [16:02:39.000] Projects: /user/username/projects/myproject/random/tsconfig.json +Info 65 [00:02:23.000] ----------------------------------------------- +Info 66 [00:02:24.000] Project '/user/username/projects/myproject/main/tsconfig.json' (Configured) +Info 66 [00:02:25.000] Files (3) + +Info 66 [00:02:26.000] ----------------------------------------------- +Info 66 [00:02:27.000] Project '/user/username/projects/myproject/dependency/tsconfig.json' (Configured) +Info 66 [00:02:28.000] Files (2) + +Info 66 [00:02:29.000] ----------------------------------------------- +Info 66 [00:02:30.000] Project '/user/username/projects/myproject/random/tsconfig.json' (Configured) +Info 66 [00:02:31.000] Files (2) + +Info 66 [00:02:32.000] ----------------------------------------------- +Info 66 [00:02:33.000] Open files: +Info 66 [00:02:34.000] FileName: /user/username/projects/myproject/main/main.ts ProjectRootPath: undefined +Info 66 [00:02:35.000] Projects: /user/username/projects/myproject/main/tsconfig.json +Info 66 [00:02:36.000] FileName: /user/username/projects/myproject/dependency/FnS.ts ProjectRootPath: undefined +Info 66 [00:02:37.000] Projects: /user/username/projects/myproject/main/tsconfig.json,/user/username/projects/myproject/dependency/tsconfig.json +Info 66 [00:02:38.000] FileName: /user/username/projects/myproject/random/random.ts ProjectRootPath: undefined +Info 66 [00:02:39.000] Projects: /user/username/projects/myproject/random/tsconfig.json After request PolledWatches:: @@ -515,11 +515,11 @@ FsWatchesRecursive:: /user/username/projects/myproject/random: {} -Info 66 [16:02:40.000] response: +Info 66 [00:02:40.000] response: { "responseRequired": false } -Info 67 [16:02:41.000] request: +Info 67 [00:02:41.000] request: { "command": "definitionAndBoundSpan", "arguments": { @@ -594,7 +594,7 @@ FsWatchesRecursive:: /user/username/projects/myproject/random: {} -Info 68 [16:02:42.000] response: +Info 68 [00:02:42.000] response: { "response": { "definitions": [ @@ -631,7 +631,7 @@ Info 68 [16:02:42.000] response: }, "responseRequired": true } -Info 69 [16:02:43.000] request: +Info 69 [00:02:43.000] request: { "command": "rename", "arguments": { @@ -674,9 +674,9 @@ FsWatchesRecursive:: /user/username/projects/myproject/random: {} -Info 70 [16:02:44.000] Search path: /user/username/projects/myproject/dependency -Info 71 [16:02:45.000] For info: /user/username/projects/myproject/dependency/FnS.ts :: Config file name: /user/username/projects/myproject/dependency/tsconfig.json -Info 72 [16:02:46.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/decls/FnS.d.ts 2000 undefined Project: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Missing generated file +Info 70 [00:02:44.000] Search path: /user/username/projects/myproject/dependency +Info 71 [00:02:45.000] For info: /user/username/projects/myproject/dependency/FnS.ts :: Config file name: /user/username/projects/myproject/dependency/tsconfig.json +Info 72 [00:02:46.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/decls/FnS.d.ts 2000 undefined Project: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Missing generated file After request PolledWatches:: @@ -711,7 +711,7 @@ FsWatchesRecursive:: /user/username/projects/myproject/random: {} -Info 73 [16:02:47.000] response: +Info 73 [00:02:47.000] response: { "response": { "info": { @@ -792,18 +792,18 @@ Info 73 [16:02:47.000] response: }, "responseRequired": true } -Info 74 [16:02:50.000] FileWatcher:: Triggered with /user/username/projects/myproject/decls/FnS.d.ts 0:: WatchInfo: /user/username/projects/myproject/decls/FnS.d.ts 2000 undefined Project: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Missing generated file -Info 75 [16:02:51.000] Scheduled: /user/username/projects/myproject/dependency/tsconfig.json -Info 76 [16:02:52.000] Scheduled: *ensureProjectForOpenFiles* -Info 77 [16:02:53.000] Elapsed:: *ms FileWatcher:: Triggered with /user/username/projects/myproject/decls/FnS.d.ts 0:: WatchInfo: /user/username/projects/myproject/decls/FnS.d.ts 2000 undefined Project: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Missing generated file -Info 78 [16:02:54.000] FileWatcher:: Triggered with /user/username/projects/myproject/decls/FnS.d.ts 0:: WatchInfo: /user/username/projects/myproject/decls/FnS.d.ts 2000 undefined Project: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Missing generated file -Info 79 [16:02:55.000] Scheduled: /user/username/projects/myproject/dependency/tsconfig.json, Cancelled earlier one -Info 80 [16:02:56.000] Scheduled: *ensureProjectForOpenFiles*, Cancelled earlier one -Info 81 [16:02:57.000] Elapsed:: *ms FileWatcher:: Triggered with /user/username/projects/myproject/decls/FnS.d.ts 0:: WatchInfo: /user/username/projects/myproject/decls/FnS.d.ts 2000 undefined Project: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Missing generated file -Info 82 [16:02:58.000] DirectoryWatcher:: Triggered with /user/username/projects/myproject/decls/FnS.d.ts :: WatchInfo: /user/username/projects/myproject/decls 1 undefined Project: /user/username/projects/myproject/main/tsconfig.json WatchType: Failed Lookup Locations -Info 83 [16:02:59.000] Scheduled: /user/username/projects/myproject/main/tsconfig.jsonFailedLookupInvalidation -Info 84 [16:03:00.000] Elapsed:: *ms DirectoryWatcher:: Triggered with /user/username/projects/myproject/decls/FnS.d.ts :: WatchInfo: /user/username/projects/myproject/decls 1 undefined Project: /user/username/projects/myproject/main/tsconfig.json WatchType: Failed Lookup Locations -Info 85 [16:03:01.000] request: +Info 74 [00:02:50.000] FileWatcher:: Triggered with /user/username/projects/myproject/decls/FnS.d.ts 0:: WatchInfo: /user/username/projects/myproject/decls/FnS.d.ts 2000 undefined Project: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Missing generated file +Info 75 [00:02:51.000] Scheduled: /user/username/projects/myproject/dependency/tsconfig.json +Info 76 [00:02:52.000] Scheduled: *ensureProjectForOpenFiles* +Info 77 [00:02:53.000] Elapsed:: *ms FileWatcher:: Triggered with /user/username/projects/myproject/decls/FnS.d.ts 0:: WatchInfo: /user/username/projects/myproject/decls/FnS.d.ts 2000 undefined Project: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Missing generated file +Info 78 [00:02:54.000] FileWatcher:: Triggered with /user/username/projects/myproject/decls/FnS.d.ts 0:: WatchInfo: /user/username/projects/myproject/decls/FnS.d.ts 2000 undefined Project: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Missing generated file +Info 79 [00:02:55.000] Scheduled: /user/username/projects/myproject/dependency/tsconfig.json, Cancelled earlier one +Info 80 [00:02:56.000] Scheduled: *ensureProjectForOpenFiles*, Cancelled earlier one +Info 81 [00:02:57.000] Elapsed:: *ms FileWatcher:: Triggered with /user/username/projects/myproject/decls/FnS.d.ts 0:: WatchInfo: /user/username/projects/myproject/decls/FnS.d.ts 2000 undefined Project: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Missing generated file +Info 82 [00:02:58.000] DirectoryWatcher:: Triggered with /user/username/projects/myproject/decls/FnS.d.ts :: WatchInfo: /user/username/projects/myproject/decls 1 undefined Project: /user/username/projects/myproject/main/tsconfig.json WatchType: Failed Lookup Locations +Info 83 [00:02:59.000] Scheduled: /user/username/projects/myproject/main/tsconfig.jsonFailedLookupInvalidation +Info 84 [00:03:00.000] Elapsed:: *ms DirectoryWatcher:: Triggered with /user/username/projects/myproject/decls/FnS.d.ts :: WatchInfo: /user/username/projects/myproject/decls 1 undefined Project: /user/username/projects/myproject/main/tsconfig.json WatchType: Failed Lookup Locations +Info 85 [00:03:01.000] request: { "command": "definitionAndBoundSpan", "arguments": { @@ -890,7 +890,7 @@ FsWatchesRecursive:: /user/username/projects/myproject/random: {} -Info 86 [16:03:02.000] response: +Info 86 [00:03:02.000] response: { "response": { "definitions": [ @@ -927,7 +927,7 @@ Info 86 [16:03:02.000] response: }, "responseRequired": true } -Info 87 [16:03:03.000] request: +Info 87 [00:03:03.000] request: { "command": "definitionAndBoundSpan", "arguments": { @@ -1006,7 +1006,7 @@ FsWatchesRecursive:: /user/username/projects/myproject/random: {} -Info 88 [16:03:04.000] response: +Info 88 [00:03:04.000] response: { "response": { "definitions": [ @@ -1043,7 +1043,7 @@ Info 88 [16:03:04.000] response: }, "responseRequired": true } -Info 89 [16:03:05.000] request: +Info 89 [00:03:05.000] request: { "command": "definitionAndBoundSpan", "arguments": { @@ -1122,7 +1122,7 @@ FsWatchesRecursive:: /user/username/projects/myproject/random: {} -Info 90 [16:03:06.000] response: +Info 90 [00:03:06.000] response: { "response": { "definitions": [ @@ -1159,7 +1159,7 @@ Info 90 [16:03:06.000] response: }, "responseRequired": true } -Info 91 [16:03:07.000] request: +Info 91 [00:03:07.000] request: { "command": "definitionAndBoundSpan", "arguments": { @@ -1238,7 +1238,7 @@ FsWatchesRecursive:: /user/username/projects/myproject/random: {} -Info 92 [16:03:08.000] response: +Info 92 [00:03:08.000] response: { "response": { "definitions": [ @@ -1275,7 +1275,7 @@ Info 92 [16:03:08.000] response: }, "responseRequired": true } -Info 93 [16:03:09.000] request: +Info 93 [00:03:09.000] request: { "command": "definitionAndBoundSpan", "arguments": { @@ -1354,7 +1354,7 @@ FsWatchesRecursive:: /user/username/projects/myproject/random: {} -Info 94 [16:03:10.000] response: +Info 94 [00:03:10.000] response: { "response": { "definitions": [ @@ -1391,7 +1391,7 @@ Info 94 [16:03:10.000] response: }, "responseRequired": true } -Info 95 [16:03:11.000] request: +Info 95 [00:03:11.000] request: { "command": "rename", "arguments": { @@ -1436,12 +1436,12 @@ FsWatchesRecursive:: /user/username/projects/myproject/random: {} -Info 96 [16:03:12.000] Starting updateGraphWorker: Project: /user/username/projects/myproject/dependency/tsconfig.json -Info 97 [16:03:13.000] Finishing updateGraphWorker: Project: /user/username/projects/myproject/dependency/tsconfig.json Version: 2 structureChanged: false structureIsReused:: Not Elapsed:: *ms -Info 98 [16:03:14.000] Search path: /user/username/projects/myproject/dependency -Info 99 [16:03:15.000] For info: /user/username/projects/myproject/dependency/FnS.ts :: Config file name: /user/username/projects/myproject/dependency/tsconfig.json -Info 100 [16:03:16.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/decls/FnS.d.ts 500 undefined WatchType: Closed Script info -Info 101 [16:03:17.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/decls/FnS.d.ts.map 500 undefined WatchType: Closed Script info +Info 96 [00:03:12.000] Starting updateGraphWorker: Project: /user/username/projects/myproject/dependency/tsconfig.json +Info 97 [00:03:13.000] Finishing updateGraphWorker: Project: /user/username/projects/myproject/dependency/tsconfig.json Version: 2 structureChanged: false structureIsReused:: Not Elapsed:: *ms +Info 98 [00:03:14.000] Search path: /user/username/projects/myproject/dependency +Info 99 [00:03:15.000] For info: /user/username/projects/myproject/dependency/FnS.ts :: Config file name: /user/username/projects/myproject/dependency/tsconfig.json +Info 100 [00:03:16.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/decls/FnS.d.ts 500 undefined WatchType: Closed Script info +Info 101 [00:03:17.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/decls/FnS.d.ts.map 500 undefined WatchType: Closed Script info After request PolledWatches:: @@ -1478,7 +1478,7 @@ FsWatchesRecursive:: /user/username/projects/myproject/random: {} -Info 102 [16:03:18.000] response: +Info 102 [00:03:18.000] response: { "response": { "info": { @@ -1559,7 +1559,7 @@ Info 102 [16:03:18.000] response: }, "responseRequired": true } -Info 103 [16:03:19.000] request: +Info 103 [00:03:19.000] request: { "command": "rename", "arguments": { @@ -1606,8 +1606,8 @@ FsWatchesRecursive:: /user/username/projects/myproject/random: {} -Info 104 [16:03:20.000] Search path: /user/username/projects/myproject/dependency -Info 105 [16:03:21.000] For info: /user/username/projects/myproject/dependency/FnS.ts :: Config file name: /user/username/projects/myproject/dependency/tsconfig.json +Info 104 [00:03:20.000] Search path: /user/username/projects/myproject/dependency +Info 105 [00:03:21.000] For info: /user/username/projects/myproject/dependency/FnS.ts :: Config file name: /user/username/projects/myproject/dependency/tsconfig.json After request PolledWatches:: @@ -1644,7 +1644,7 @@ FsWatchesRecursive:: /user/username/projects/myproject/random: {} -Info 106 [16:03:22.000] response: +Info 106 [00:03:22.000] response: { "response": { "info": { @@ -1725,7 +1725,7 @@ Info 106 [16:03:22.000] response: }, "responseRequired": true } -Info 107 [16:03:23.000] request: +Info 107 [00:03:23.000] request: { "command": "rename", "arguments": { @@ -1772,8 +1772,8 @@ FsWatchesRecursive:: /user/username/projects/myproject/random: {} -Info 108 [16:03:24.000] Search path: /user/username/projects/myproject/dependency -Info 109 [16:03:25.000] For info: /user/username/projects/myproject/dependency/FnS.ts :: Config file name: /user/username/projects/myproject/dependency/tsconfig.json +Info 108 [00:03:24.000] Search path: /user/username/projects/myproject/dependency +Info 109 [00:03:25.000] For info: /user/username/projects/myproject/dependency/FnS.ts :: Config file name: /user/username/projects/myproject/dependency/tsconfig.json After request PolledWatches:: @@ -1810,7 +1810,7 @@ FsWatchesRecursive:: /user/username/projects/myproject/random: {} -Info 110 [16:03:26.000] response: +Info 110 [00:03:26.000] response: { "response": { "info": { @@ -1891,7 +1891,7 @@ Info 110 [16:03:26.000] response: }, "responseRequired": true } -Info 111 [16:03:27.000] request: +Info 111 [00:03:27.000] request: { "command": "rename", "arguments": { @@ -1938,8 +1938,8 @@ FsWatchesRecursive:: /user/username/projects/myproject/random: {} -Info 112 [16:03:28.000] Search path: /user/username/projects/myproject/dependency -Info 113 [16:03:29.000] For info: /user/username/projects/myproject/dependency/FnS.ts :: Config file name: /user/username/projects/myproject/dependency/tsconfig.json +Info 112 [00:03:28.000] Search path: /user/username/projects/myproject/dependency +Info 113 [00:03:29.000] For info: /user/username/projects/myproject/dependency/FnS.ts :: Config file name: /user/username/projects/myproject/dependency/tsconfig.json After request PolledWatches:: @@ -1976,7 +1976,7 @@ FsWatchesRecursive:: /user/username/projects/myproject/random: {} -Info 114 [16:03:30.000] response: +Info 114 [00:03:30.000] response: { "response": { "info": { @@ -2057,7 +2057,7 @@ Info 114 [16:03:30.000] response: }, "responseRequired": true } -Info 115 [16:03:31.000] request: +Info 115 [00:03:31.000] request: { "command": "rename", "arguments": { @@ -2104,8 +2104,8 @@ FsWatchesRecursive:: /user/username/projects/myproject/random: {} -Info 116 [16:03:32.000] Search path: /user/username/projects/myproject/dependency -Info 117 [16:03:33.000] For info: /user/username/projects/myproject/dependency/FnS.ts :: Config file name: /user/username/projects/myproject/dependency/tsconfig.json +Info 116 [00:03:32.000] Search path: /user/username/projects/myproject/dependency +Info 117 [00:03:33.000] For info: /user/username/projects/myproject/dependency/FnS.ts :: Config file name: /user/username/projects/myproject/dependency/tsconfig.json After request PolledWatches:: @@ -2142,7 +2142,7 @@ FsWatchesRecursive:: /user/username/projects/myproject/random: {} -Info 118 [16:03:34.000] response: +Info 118 [00:03:34.000] response: { "response": { "info": { @@ -2223,7 +2223,7 @@ Info 118 [16:03:34.000] response: }, "responseRequired": true } -Info 119 [16:03:35.000] request: +Info 119 [00:03:35.000] request: { "seq": 0, "type": "request", @@ -2268,24 +2268,24 @@ FsWatchesRecursive:: /user/username/projects/myproject/random: {} -Info 120 [16:03:36.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/random/random.ts 500 undefined WatchType: Closed Script info -Info 121 [16:03:37.000] Project '/user/username/projects/myproject/main/tsconfig.json' (Configured) -Info 121 [16:03:38.000] Files (3) +Info 120 [00:03:36.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/random/random.ts 500 undefined WatchType: Closed Script info +Info 121 [00:03:37.000] Project '/user/username/projects/myproject/main/tsconfig.json' (Configured) +Info 121 [00:03:38.000] Files (3) -Info 121 [16:03:39.000] ----------------------------------------------- -Info 121 [16:03:40.000] Project '/user/username/projects/myproject/dependency/tsconfig.json' (Configured) -Info 121 [16:03:41.000] Files (2) +Info 121 [00:03:39.000] ----------------------------------------------- +Info 121 [00:03:40.000] Project '/user/username/projects/myproject/dependency/tsconfig.json' (Configured) +Info 121 [00:03:41.000] Files (2) -Info 121 [16:03:42.000] ----------------------------------------------- -Info 121 [16:03:43.000] Project '/user/username/projects/myproject/random/tsconfig.json' (Configured) -Info 121 [16:03:44.000] Files (2) +Info 121 [00:03:42.000] ----------------------------------------------- +Info 121 [00:03:43.000] Project '/user/username/projects/myproject/random/tsconfig.json' (Configured) +Info 121 [00:03:44.000] Files (2) -Info 121 [16:03:45.000] ----------------------------------------------- -Info 121 [16:03:46.000] Open files: -Info 121 [16:03:47.000] FileName: /user/username/projects/myproject/main/main.ts ProjectRootPath: undefined -Info 121 [16:03:48.000] Projects: /user/username/projects/myproject/main/tsconfig.json -Info 121 [16:03:49.000] FileName: /user/username/projects/myproject/dependency/FnS.ts ProjectRootPath: undefined -Info 121 [16:03:50.000] Projects: /user/username/projects/myproject/main/tsconfig.json,/user/username/projects/myproject/dependency/tsconfig.json +Info 121 [00:03:45.000] ----------------------------------------------- +Info 121 [00:03:46.000] Open files: +Info 121 [00:03:47.000] FileName: /user/username/projects/myproject/main/main.ts ProjectRootPath: undefined +Info 121 [00:03:48.000] Projects: /user/username/projects/myproject/main/tsconfig.json +Info 121 [00:03:49.000] FileName: /user/username/projects/myproject/dependency/FnS.ts ProjectRootPath: undefined +Info 121 [00:03:50.000] Projects: /user/username/projects/myproject/main/tsconfig.json,/user/username/projects/myproject/dependency/tsconfig.json After request PolledWatches:: @@ -2324,11 +2324,11 @@ FsWatchesRecursive:: /user/username/projects/myproject/random: {} -Info 121 [16:03:51.000] response: +Info 121 [00:03:51.000] response: { "responseRequired": false } -Info 122 [16:03:52.000] request: +Info 122 [00:03:52.000] request: { "seq": 0, "type": "request", @@ -2375,28 +2375,28 @@ FsWatchesRecursive:: /user/username/projects/myproject/random: {} -Info 123 [16:03:53.000] FileWatcher:: Close:: WatchInfo: /user/username/projects/myproject/random/random.ts 500 undefined WatchType: Closed Script info -Info 124 [16:03:54.000] Search path: /user/username/projects/myproject/random -Info 125 [16:03:55.000] For info: /user/username/projects/myproject/random/random.ts :: Config file name: /user/username/projects/myproject/random/tsconfig.json -Info 126 [16:03:56.000] Project '/user/username/projects/myproject/main/tsconfig.json' (Configured) -Info 126 [16:03:57.000] Files (3) - -Info 126 [16:03:58.000] ----------------------------------------------- -Info 126 [16:03:59.000] Project '/user/username/projects/myproject/dependency/tsconfig.json' (Configured) -Info 126 [16:04:00.000] Files (2) - -Info 126 [16:04:01.000] ----------------------------------------------- -Info 126 [16:04:02.000] Project '/user/username/projects/myproject/random/tsconfig.json' (Configured) -Info 126 [16:04:03.000] Files (2) - -Info 126 [16:04:04.000] ----------------------------------------------- -Info 126 [16:04:05.000] Open files: -Info 126 [16:04:06.000] FileName: /user/username/projects/myproject/main/main.ts ProjectRootPath: undefined -Info 126 [16:04:07.000] Projects: /user/username/projects/myproject/main/tsconfig.json -Info 126 [16:04:08.000] FileName: /user/username/projects/myproject/dependency/FnS.ts ProjectRootPath: undefined -Info 126 [16:04:09.000] Projects: /user/username/projects/myproject/main/tsconfig.json,/user/username/projects/myproject/dependency/tsconfig.json -Info 126 [16:04:10.000] FileName: /user/username/projects/myproject/random/random.ts ProjectRootPath: undefined -Info 126 [16:04:11.000] Projects: /user/username/projects/myproject/random/tsconfig.json +Info 123 [00:03:53.000] FileWatcher:: Close:: WatchInfo: /user/username/projects/myproject/random/random.ts 500 undefined WatchType: Closed Script info +Info 124 [00:03:54.000] Search path: /user/username/projects/myproject/random +Info 125 [00:03:55.000] For info: /user/username/projects/myproject/random/random.ts :: Config file name: /user/username/projects/myproject/random/tsconfig.json +Info 126 [00:03:56.000] Project '/user/username/projects/myproject/main/tsconfig.json' (Configured) +Info 126 [00:03:57.000] Files (3) + +Info 126 [00:03:58.000] ----------------------------------------------- +Info 126 [00:03:59.000] Project '/user/username/projects/myproject/dependency/tsconfig.json' (Configured) +Info 126 [00:04:00.000] Files (2) + +Info 126 [00:04:01.000] ----------------------------------------------- +Info 126 [00:04:02.000] Project '/user/username/projects/myproject/random/tsconfig.json' (Configured) +Info 126 [00:04:03.000] Files (2) + +Info 126 [00:04:04.000] ----------------------------------------------- +Info 126 [00:04:05.000] Open files: +Info 126 [00:04:06.000] FileName: /user/username/projects/myproject/main/main.ts ProjectRootPath: undefined +Info 126 [00:04:07.000] Projects: /user/username/projects/myproject/main/tsconfig.json +Info 126 [00:04:08.000] FileName: /user/username/projects/myproject/dependency/FnS.ts ProjectRootPath: undefined +Info 126 [00:04:09.000] Projects: /user/username/projects/myproject/main/tsconfig.json,/user/username/projects/myproject/dependency/tsconfig.json +Info 126 [00:04:10.000] FileName: /user/username/projects/myproject/random/random.ts ProjectRootPath: undefined +Info 126 [00:04:11.000] Projects: /user/username/projects/myproject/random/tsconfig.json After request PolledWatches:: @@ -2433,11 +2433,11 @@ FsWatchesRecursive:: /user/username/projects/myproject/random: {} -Info 126 [16:04:12.000] response: +Info 126 [00:04:12.000] response: { "responseRequired": false } -Info 127 [16:04:13.000] request: +Info 127 [00:04:13.000] request: { "seq": 0, "type": "request", @@ -2482,24 +2482,24 @@ FsWatchesRecursive:: /user/username/projects/myproject/random: {} -Info 128 [16:04:14.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/main/main.ts 500 undefined WatchType: Closed Script info -Info 129 [16:04:15.000] Project '/user/username/projects/myproject/main/tsconfig.json' (Configured) -Info 129 [16:04:16.000] Files (3) +Info 128 [00:04:14.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/main/main.ts 500 undefined WatchType: Closed Script info +Info 129 [00:04:15.000] Project '/user/username/projects/myproject/main/tsconfig.json' (Configured) +Info 129 [00:04:16.000] Files (3) -Info 129 [16:04:17.000] ----------------------------------------------- -Info 129 [16:04:18.000] Project '/user/username/projects/myproject/dependency/tsconfig.json' (Configured) -Info 129 [16:04:19.000] Files (2) +Info 129 [00:04:17.000] ----------------------------------------------- +Info 129 [00:04:18.000] Project '/user/username/projects/myproject/dependency/tsconfig.json' (Configured) +Info 129 [00:04:19.000] Files (2) -Info 129 [16:04:20.000] ----------------------------------------------- -Info 129 [16:04:21.000] Project '/user/username/projects/myproject/random/tsconfig.json' (Configured) -Info 129 [16:04:22.000] Files (2) +Info 129 [00:04:20.000] ----------------------------------------------- +Info 129 [00:04:21.000] Project '/user/username/projects/myproject/random/tsconfig.json' (Configured) +Info 129 [00:04:22.000] Files (2) -Info 129 [16:04:23.000] ----------------------------------------------- -Info 129 [16:04:24.000] Open files: -Info 129 [16:04:25.000] FileName: /user/username/projects/myproject/dependency/FnS.ts ProjectRootPath: undefined -Info 129 [16:04:26.000] Projects: /user/username/projects/myproject/main/tsconfig.json,/user/username/projects/myproject/dependency/tsconfig.json -Info 129 [16:04:27.000] FileName: /user/username/projects/myproject/random/random.ts ProjectRootPath: undefined -Info 129 [16:04:28.000] Projects: /user/username/projects/myproject/random/tsconfig.json +Info 129 [00:04:23.000] ----------------------------------------------- +Info 129 [00:04:24.000] Open files: +Info 129 [00:04:25.000] FileName: /user/username/projects/myproject/dependency/FnS.ts ProjectRootPath: undefined +Info 129 [00:04:26.000] Projects: /user/username/projects/myproject/main/tsconfig.json,/user/username/projects/myproject/dependency/tsconfig.json +Info 129 [00:04:27.000] FileName: /user/username/projects/myproject/random/random.ts ProjectRootPath: undefined +Info 129 [00:04:28.000] Projects: /user/username/projects/myproject/random/tsconfig.json After request PolledWatches:: @@ -2538,11 +2538,11 @@ FsWatchesRecursive:: /user/username/projects/myproject/random: {} -Info 129 [16:04:29.000] response: +Info 129 [00:04:29.000] response: { "responseRequired": false } -Info 130 [16:04:30.000] request: +Info 130 [00:04:30.000] request: { "seq": 0, "type": "request", @@ -2589,22 +2589,22 @@ FsWatchesRecursive:: /user/username/projects/myproject/random: {} -Info 131 [16:04:31.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/dependency/FnS.ts 500 undefined WatchType: Closed Script info -Info 132 [16:04:32.000] Project '/user/username/projects/myproject/main/tsconfig.json' (Configured) -Info 132 [16:04:33.000] Files (3) +Info 131 [00:04:31.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/dependency/FnS.ts 500 undefined WatchType: Closed Script info +Info 132 [00:04:32.000] Project '/user/username/projects/myproject/main/tsconfig.json' (Configured) +Info 132 [00:04:33.000] Files (3) -Info 132 [16:04:34.000] ----------------------------------------------- -Info 132 [16:04:35.000] Project '/user/username/projects/myproject/dependency/tsconfig.json' (Configured) -Info 132 [16:04:36.000] Files (2) +Info 132 [00:04:34.000] ----------------------------------------------- +Info 132 [00:04:35.000] Project '/user/username/projects/myproject/dependency/tsconfig.json' (Configured) +Info 132 [00:04:36.000] Files (2) -Info 132 [16:04:37.000] ----------------------------------------------- -Info 132 [16:04:38.000] Project '/user/username/projects/myproject/random/tsconfig.json' (Configured) -Info 132 [16:04:39.000] Files (2) +Info 132 [00:04:37.000] ----------------------------------------------- +Info 132 [00:04:38.000] Project '/user/username/projects/myproject/random/tsconfig.json' (Configured) +Info 132 [00:04:39.000] Files (2) -Info 132 [16:04:40.000] ----------------------------------------------- -Info 132 [16:04:41.000] Open files: -Info 132 [16:04:42.000] FileName: /user/username/projects/myproject/random/random.ts ProjectRootPath: undefined -Info 132 [16:04:43.000] Projects: /user/username/projects/myproject/random/tsconfig.json +Info 132 [00:04:40.000] ----------------------------------------------- +Info 132 [00:04:41.000] Open files: +Info 132 [00:04:42.000] FileName: /user/username/projects/myproject/random/random.ts ProjectRootPath: undefined +Info 132 [00:04:43.000] Projects: /user/username/projects/myproject/random/tsconfig.json After request PolledWatches:: @@ -2645,11 +2645,11 @@ FsWatchesRecursive:: /user/username/projects/myproject/random: {} -Info 132 [16:04:44.000] response: +Info 132 [00:04:44.000] response: { "responseRequired": false } -Info 133 [16:04:45.000] request: +Info 133 [00:04:45.000] request: { "seq": 0, "type": "request", @@ -2698,20 +2698,20 @@ FsWatchesRecursive:: /user/username/projects/myproject/random: {} -Info 134 [16:04:46.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/random/random.ts 500 undefined WatchType: Closed Script info -Info 135 [16:04:47.000] Project '/user/username/projects/myproject/main/tsconfig.json' (Configured) -Info 135 [16:04:48.000] Files (3) +Info 134 [00:04:46.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/random/random.ts 500 undefined WatchType: Closed Script info +Info 135 [00:04:47.000] Project '/user/username/projects/myproject/main/tsconfig.json' (Configured) +Info 135 [00:04:48.000] Files (3) -Info 135 [16:04:49.000] ----------------------------------------------- -Info 135 [16:04:50.000] Project '/user/username/projects/myproject/dependency/tsconfig.json' (Configured) -Info 135 [16:04:51.000] Files (2) +Info 135 [00:04:49.000] ----------------------------------------------- +Info 135 [00:04:50.000] Project '/user/username/projects/myproject/dependency/tsconfig.json' (Configured) +Info 135 [00:04:51.000] Files (2) -Info 135 [16:04:52.000] ----------------------------------------------- -Info 135 [16:04:53.000] Project '/user/username/projects/myproject/random/tsconfig.json' (Configured) -Info 135 [16:04:54.000] Files (2) +Info 135 [00:04:52.000] ----------------------------------------------- +Info 135 [00:04:53.000] Project '/user/username/projects/myproject/random/tsconfig.json' (Configured) +Info 135 [00:04:54.000] Files (2) -Info 135 [16:04:55.000] ----------------------------------------------- -Info 135 [16:04:56.000] Open files: +Info 135 [00:04:55.000] ----------------------------------------------- +Info 135 [00:04:56.000] Open files: After request PolledWatches:: @@ -2754,11 +2754,11 @@ FsWatchesRecursive:: /user/username/projects/myproject/random: {} -Info 135 [16:04:57.000] response: +Info 135 [00:04:57.000] response: { "responseRequired": false } -Info 136 [16:04:58.000] request: +Info 136 [00:04:58.000] request: { "seq": 0, "type": "request", @@ -2809,12 +2809,12 @@ FsWatchesRecursive:: /user/username/projects/myproject/random: {} -Info 137 [16:04:59.000] FileWatcher:: Close:: WatchInfo: /user/username/projects/myproject/random/random.ts 500 undefined WatchType: Closed Script info -Info 138 [16:05:00.000] Search path: /user/username/projects/myproject/random -Info 139 [16:05:01.000] For info: /user/username/projects/myproject/random/random.ts :: Config file name: /user/username/projects/myproject/random/tsconfig.json -Info 140 [16:05:02.000] `remove Project:: -Info 141 [16:05:03.000] Project '/user/username/projects/myproject/main/tsconfig.json' (Configured) -Info 142 [16:05:04.000] Files (3) +Info 137 [00:04:59.000] FileWatcher:: Close:: WatchInfo: /user/username/projects/myproject/random/random.ts 500 undefined WatchType: Closed Script info +Info 138 [00:05:00.000] Search path: /user/username/projects/myproject/random +Info 139 [00:05:01.000] For info: /user/username/projects/myproject/random/random.ts :: Config file name: /user/username/projects/myproject/random/tsconfig.json +Info 140 [00:05:02.000] `remove Project:: +Info 141 [00:05:03.000] Project '/user/username/projects/myproject/main/tsconfig.json' (Configured) +Info 142 [00:05:04.000] Files (3) /a/lib/lib.d.ts /user/username/projects/myproject/dependency/FnS.ts /user/username/projects/myproject/main/main.ts @@ -2827,19 +2827,19 @@ Info 142 [16:05:04.000] Files (3) main.ts Matched by default include pattern '**/*' -Info 143 [16:05:05.000] ----------------------------------------------- -Info 144 [16:05:06.000] DirectoryWatcher:: Close:: WatchInfo: /user/username/projects/myproject/main 1 undefined Config: /user/username/projects/myproject/main/tsconfig.json WatchType: Wild card directory -Info 145 [16:05:07.000] 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 146 [16:05:08.000] FileWatcher:: Close:: WatchInfo: /user/username/projects/myproject/main/tsconfig.json 2000 undefined Project: /user/username/projects/myproject/main/tsconfig.json WatchType: Config file -Info 147 [16:05:09.000] DirectoryWatcher:: Close:: WatchInfo: /user/username/projects/myproject/decls 1 undefined Project: /user/username/projects/myproject/main/tsconfig.json WatchType: Failed Lookup Locations -Info 148 [16:05:10.000] 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 149 [16:05:11.000] 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 150 [16:05:12.000] 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 151 [16:05:13.000] DirectoryWatcher:: Close:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/main/tsconfig.json WatchType: Type roots -Info 152 [16:05:14.000] 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 153 [16:05:15.000] `remove Project:: -Info 154 [16:05:16.000] Project '/user/username/projects/myproject/dependency/tsconfig.json' (Configured) -Info 155 [16:05:17.000] Files (2) +Info 143 [00:05:05.000] ----------------------------------------------- +Info 144 [00:05:06.000] DirectoryWatcher:: Close:: WatchInfo: /user/username/projects/myproject/main 1 undefined Config: /user/username/projects/myproject/main/tsconfig.json WatchType: Wild card directory +Info 145 [00:05:07.000] 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 146 [00:05:08.000] FileWatcher:: Close:: WatchInfo: /user/username/projects/myproject/main/tsconfig.json 2000 undefined Project: /user/username/projects/myproject/main/tsconfig.json WatchType: Config file +Info 147 [00:05:09.000] DirectoryWatcher:: Close:: WatchInfo: /user/username/projects/myproject/decls 1 undefined Project: /user/username/projects/myproject/main/tsconfig.json WatchType: Failed Lookup Locations +Info 148 [00:05:10.000] 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 149 [00:05:11.000] 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 150 [00:05:12.000] 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 151 [00:05:13.000] DirectoryWatcher:: Close:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/main/tsconfig.json WatchType: Type roots +Info 152 [00:05:14.000] 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 153 [00:05:15.000] `remove Project:: +Info 154 [00:05:16.000] Project '/user/username/projects/myproject/dependency/tsconfig.json' (Configured) +Info 155 [00:05:17.000] Files (2) /a/lib/lib.d.ts /user/username/projects/myproject/dependency/FnS.ts @@ -2849,26 +2849,26 @@ Info 155 [16:05:17.000] Files (2) FnS.ts Matched by default include pattern '**/*' -Info 156 [16:05:18.000] ----------------------------------------------- -Info 157 [16:05:19.000] DirectoryWatcher:: Close:: WatchInfo: /user/username/projects/myproject/dependency 1 undefined Config: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Wild card directory -Info 158 [16:05:20.000] 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 159 [16:05:21.000] FileWatcher:: Close:: WatchInfo: /user/username/projects/myproject/dependency/tsconfig.json 2000 undefined Project: /user/username/projects/myproject/main/tsconfig.json WatchType: Config file -Info 160 [16:05:22.000] 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 161 [16:05:23.000] 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 162 [16:05:24.000] DirectoryWatcher:: Close:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Type roots -Info 163 [16:05:25.000] 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 164 [16:05:26.000] 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 165 [16:05:27.000] FileWatcher:: Close:: WatchInfo: /user/username/projects/myproject/main/main.ts 500 undefined WatchType: Closed Script info -Info 166 [16:05:28.000] FileWatcher:: Close:: WatchInfo: /user/username/projects/myproject/dependency/FnS.ts 500 undefined WatchType: Closed Script info -Info 167 [16:05:29.000] FileWatcher:: Close:: WatchInfo: /user/username/projects/myproject/decls/FnS.d.ts 500 undefined WatchType: Closed Script info -Info 168 [16:05:30.000] FileWatcher:: Close:: WatchInfo: /user/username/projects/myproject/decls/FnS.d.ts.map 500 undefined WatchType: Closed Script info -Info 169 [16:05:31.000] Project '/user/username/projects/myproject/random/tsconfig.json' (Configured) -Info 169 [16:05:32.000] Files (2) - -Info 169 [16:05:33.000] ----------------------------------------------- -Info 169 [16:05:34.000] Open files: -Info 169 [16:05:35.000] FileName: /user/username/projects/myproject/random/random.ts ProjectRootPath: undefined -Info 169 [16:05:36.000] Projects: /user/username/projects/myproject/random/tsconfig.json +Info 156 [00:05:18.000] ----------------------------------------------- +Info 157 [00:05:19.000] DirectoryWatcher:: Close:: WatchInfo: /user/username/projects/myproject/dependency 1 undefined Config: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Wild card directory +Info 158 [00:05:20.000] 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 159 [00:05:21.000] FileWatcher:: Close:: WatchInfo: /user/username/projects/myproject/dependency/tsconfig.json 2000 undefined Project: /user/username/projects/myproject/main/tsconfig.json WatchType: Config file +Info 160 [00:05:22.000] 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 161 [00:05:23.000] 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 162 [00:05:24.000] DirectoryWatcher:: Close:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Type roots +Info 163 [00:05:25.000] 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 164 [00:05:26.000] 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 165 [00:05:27.000] FileWatcher:: Close:: WatchInfo: /user/username/projects/myproject/main/main.ts 500 undefined WatchType: Closed Script info +Info 166 [00:05:28.000] FileWatcher:: Close:: WatchInfo: /user/username/projects/myproject/dependency/FnS.ts 500 undefined WatchType: Closed Script info +Info 167 [00:05:29.000] FileWatcher:: Close:: WatchInfo: /user/username/projects/myproject/decls/FnS.d.ts 500 undefined WatchType: Closed Script info +Info 168 [00:05:30.000] FileWatcher:: Close:: WatchInfo: /user/username/projects/myproject/decls/FnS.d.ts.map 500 undefined WatchType: Closed Script info +Info 169 [00:05:31.000] Project '/user/username/projects/myproject/random/tsconfig.json' (Configured) +Info 169 [00:05:32.000] Files (2) + +Info 169 [00:05:33.000] ----------------------------------------------- +Info 169 [00:05:34.000] Open files: +Info 169 [00:05:35.000] FileName: /user/username/projects/myproject/random/random.ts ProjectRootPath: undefined +Info 169 [00:05:36.000] Projects: /user/username/projects/myproject/random/tsconfig.json After request PolledWatches:: @@ -2887,7 +2887,7 @@ FsWatchesRecursive:: /user/username/projects/myproject/random: {} -Info 169 [16:05:37.000] response: +Info 169 [00:05:37.000] response: { "responseRequired": false } \ No newline at end of file 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 550a7107ff87e..2b9a7aebecebf 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 @@ -1,5 +1,5 @@ -Info 0 [16:01:00.000] Provided types map file "/a/lib/typesMap.json" doesn't exist -Info 1 [16:01:01.000] request: +Info 0 [00:01:00.000] Provided types map file "/a/lib/typesMap.json" doesn't exist +Info 1 [00:01:01.000] request: { "seq": 0, "type": "request", @@ -200,11 +200,11 @@ FsWatches:: FsWatchesRecursive:: -Info 2 [16:01:02.000] Search path: /user/username/projects/myproject/main -Info 3 [16:01:03.000] For info: /user/username/projects/myproject/main/main.ts :: Config file name: /user/username/projects/myproject/main/tsconfig.json -Info 4 [16:01:04.000] Creating configuration project /user/username/projects/myproject/main/tsconfig.json -Info 5 [16:01:05.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/main/tsconfig.json 2000 undefined Project: /user/username/projects/myproject/main/tsconfig.json WatchType: Config file -Info 6 [16:01:06.000] Config: /user/username/projects/myproject/main/tsconfig.json : { +Info 2 [00:01:02.000] Search path: /user/username/projects/myproject/main +Info 3 [00:01:03.000] For info: /user/username/projects/myproject/main/main.ts :: Config file name: /user/username/projects/myproject/main/tsconfig.json +Info 4 [00:01:04.000] Creating configuration project /user/username/projects/myproject/main/tsconfig.json +Info 5 [00:01:05.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/main/tsconfig.json 2000 undefined Project: /user/username/projects/myproject/main/tsconfig.json WatchType: Config file +Info 6 [00:01:06.000] Config: /user/username/projects/myproject/main/tsconfig.json : { "rootNames": [ "/user/username/projects/myproject/main/main.ts" ], @@ -220,11 +220,11 @@ Info 6 [16:01:06.000] Config: /user/username/projects/myproject/main/tsconfig } ] } -Info 7 [16:01:07.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/main 1 undefined Config: /user/username/projects/myproject/main/tsconfig.json WatchType: Wild card directory -Info 8 [16:01:08.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/main 1 undefined Config: /user/username/projects/myproject/main/tsconfig.json WatchType: Wild card directory -Info 9 [16:01:09.000] Plugins were requested but not running in environment that supports 'require'. Nothing will be loaded -Info 10 [16:01:10.000] Starting updateGraphWorker: Project: /user/username/projects/myproject/main/tsconfig.json -Info 11 [16:01:11.000] Config: /user/username/projects/myproject/dependency/tsconfig.json : { +Info 7 [00:01:07.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/main 1 undefined Config: /user/username/projects/myproject/main/tsconfig.json WatchType: Wild card directory +Info 8 [00:01:08.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/main 1 undefined Config: /user/username/projects/myproject/main/tsconfig.json WatchType: Wild card directory +Info 9 [00:01:09.000] Plugins were requested but not running in environment that supports 'require'. Nothing will be loaded +Info 10 [00:01:10.000] Starting updateGraphWorker: Project: /user/username/projects/myproject/main/tsconfig.json +Info 11 [00:01:11.000] Config: /user/username/projects/myproject/dependency/tsconfig.json : { "rootNames": [ "/user/username/projects/myproject/dependency/FnS.ts" ], @@ -235,20 +235,20 @@ Info 11 [16:01:11.000] Config: /user/username/projects/myproject/dependency/ts "configFilePath": "/user/username/projects/myproject/dependency/tsconfig.json" } } -Info 12 [16:01:12.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/dependency/tsconfig.json 2000 undefined Project: /user/username/projects/myproject/main/tsconfig.json WatchType: Config file -Info 13 [16:01:13.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/dependency 1 undefined Config: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Wild card directory -Info 14 [16:01:14.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/dependency 1 undefined Config: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Wild card directory -Info 15 [16:01:15.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/decls 1 undefined Project: /user/username/projects/myproject/main/tsconfig.json WatchType: Failed Lookup Locations -Info 16 [16:01:16.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/decls 1 undefined Project: /user/username/projects/myproject/main/tsconfig.json WatchType: Failed Lookup Locations -Info 17 [16:01:17.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/dependency/FnS.ts 500 undefined WatchType: Closed Script info -Info 18 [16:01:18.000] FileWatcher:: Added:: WatchInfo: /a/lib/lib.d.ts 500 undefined WatchType: Closed Script info -Info 19 [16:01:19.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/main/node_modules/@types 1 undefined Project: /user/username/projects/myproject/main/tsconfig.json WatchType: Type roots -Info 20 [16:01:20.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/main/node_modules/@types 1 undefined Project: /user/username/projects/myproject/main/tsconfig.json WatchType: Type roots -Info 21 [16:01:21.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/main/tsconfig.json WatchType: Type roots -Info 22 [16:01:22.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/main/tsconfig.json WatchType: Type roots -Info 23 [16:01:23.000] Finishing updateGraphWorker: Project: /user/username/projects/myproject/main/tsconfig.json Version: 1 structureChanged: true structureIsReused:: Not Elapsed:: *ms -Info 24 [16:01:24.000] Project '/user/username/projects/myproject/main/tsconfig.json' (Configured) -Info 25 [16:01:25.000] Files (3) +Info 12 [00:01:12.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/dependency/tsconfig.json 2000 undefined Project: /user/username/projects/myproject/main/tsconfig.json WatchType: Config file +Info 13 [00:01:13.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/dependency 1 undefined Config: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Wild card directory +Info 14 [00:01:14.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/dependency 1 undefined Config: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Wild card directory +Info 15 [00:01:15.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/decls 1 undefined Project: /user/username/projects/myproject/main/tsconfig.json WatchType: Failed Lookup Locations +Info 16 [00:01:16.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/decls 1 undefined Project: /user/username/projects/myproject/main/tsconfig.json WatchType: Failed Lookup Locations +Info 17 [00:01:17.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/dependency/FnS.ts 500 undefined WatchType: Closed Script info +Info 18 [00:01:18.000] FileWatcher:: Added:: WatchInfo: /a/lib/lib.d.ts 500 undefined WatchType: Closed Script info +Info 19 [00:01:19.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/main/node_modules/@types 1 undefined Project: /user/username/projects/myproject/main/tsconfig.json WatchType: Type roots +Info 20 [00:01:20.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/main/node_modules/@types 1 undefined Project: /user/username/projects/myproject/main/tsconfig.json WatchType: Type roots +Info 21 [00:01:21.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/main/tsconfig.json WatchType: Type roots +Info 22 [00:01:22.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/main/tsconfig.json WatchType: Type roots +Info 23 [00:01:23.000] Finishing updateGraphWorker: Project: /user/username/projects/myproject/main/tsconfig.json Version: 1 structureChanged: true structureIsReused:: Not Elapsed:: *ms +Info 24 [00:01:24.000] Project '/user/username/projects/myproject/main/tsconfig.json' (Configured) +Info 25 [00:01:25.000] Files (3) /a/lib/lib.d.ts /user/username/projects/myproject/dependency/FnS.ts /user/username/projects/myproject/main/main.ts @@ -261,16 +261,16 @@ Info 25 [16:01:25.000] Files (3) main.ts Matched by default include pattern '**/*' -Info 26 [16:01:26.000] ----------------------------------------------- -Info 27 [16:01:27.000] Search path: /user/username/projects/myproject/main -Info 28 [16:01:28.000] For info: /user/username/projects/myproject/main/tsconfig.json :: No config files found. -Info 29 [16:01:29.000] Project '/user/username/projects/myproject/main/tsconfig.json' (Configured) -Info 29 [16:01:30.000] Files (3) +Info 26 [00:01:26.000] ----------------------------------------------- +Info 27 [00:01:27.000] Search path: /user/username/projects/myproject/main +Info 28 [00:01:28.000] For info: /user/username/projects/myproject/main/tsconfig.json :: No config files found. +Info 29 [00:01:29.000] Project '/user/username/projects/myproject/main/tsconfig.json' (Configured) +Info 29 [00:01:30.000] Files (3) -Info 29 [16:01:31.000] ----------------------------------------------- -Info 29 [16:01:32.000] Open files: -Info 29 [16:01:33.000] FileName: /user/username/projects/myproject/main/main.ts ProjectRootPath: undefined -Info 29 [16:01:34.000] Projects: /user/username/projects/myproject/main/tsconfig.json +Info 29 [00:01:31.000] ----------------------------------------------- +Info 29 [00:01:32.000] Open files: +Info 29 [00:01:33.000] FileName: /user/username/projects/myproject/main/main.ts ProjectRootPath: undefined +Info 29 [00:01:34.000] Projects: /user/username/projects/myproject/main/tsconfig.json After request PolledWatches:: @@ -297,11 +297,11 @@ FsWatchesRecursive:: /user/username/projects/myproject/decls: {} -Info 29 [16:01:35.000] response: +Info 29 [00:01:35.000] response: { "responseRequired": false } -Info 30 [16:01:36.000] request: +Info 30 [00:01:36.000] request: { "seq": 0, "type": "request", @@ -336,19 +336,19 @@ FsWatchesRecursive:: /user/username/projects/myproject/decls: {} -Info 31 [16:01:37.000] FileWatcher:: Close:: WatchInfo: /user/username/projects/myproject/dependency/FnS.ts 500 undefined WatchType: Closed Script info -Info 32 [16:01:38.000] Search path: /user/username/projects/myproject/dependency -Info 33 [16:01:39.000] For info: /user/username/projects/myproject/dependency/FnS.ts :: Config file name: /user/username/projects/myproject/dependency/tsconfig.json -Info 34 [16:01:40.000] Creating configuration project /user/username/projects/myproject/dependency/tsconfig.json -Info 35 [16:01:41.000] Plugins were requested but not running in environment that supports 'require'. Nothing will be loaded -Info 36 [16:01:42.000] Starting updateGraphWorker: Project: /user/username/projects/myproject/dependency/tsconfig.json -Info 37 [16:01:43.000] 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 38 [16:01:44.000] 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 39 [16:01:45.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Type roots -Info 40 [16:01:46.000] 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 41 [16:01:47.000] Finishing updateGraphWorker: Project: /user/username/projects/myproject/dependency/tsconfig.json Version: 1 structureChanged: true structureIsReused:: Not Elapsed:: *ms -Info 42 [16:01:48.000] Project '/user/username/projects/myproject/dependency/tsconfig.json' (Configured) -Info 43 [16:01:49.000] Files (2) +Info 31 [00:01:37.000] FileWatcher:: Close:: WatchInfo: /user/username/projects/myproject/dependency/FnS.ts 500 undefined WatchType: Closed Script info +Info 32 [00:01:38.000] Search path: /user/username/projects/myproject/dependency +Info 33 [00:01:39.000] For info: /user/username/projects/myproject/dependency/FnS.ts :: Config file name: /user/username/projects/myproject/dependency/tsconfig.json +Info 34 [00:01:40.000] Creating configuration project /user/username/projects/myproject/dependency/tsconfig.json +Info 35 [00:01:41.000] Plugins were requested but not running in environment that supports 'require'. Nothing will be loaded +Info 36 [00:01:42.000] Starting updateGraphWorker: Project: /user/username/projects/myproject/dependency/tsconfig.json +Info 37 [00:01:43.000] 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 38 [00:01:44.000] 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 39 [00:01:45.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Type roots +Info 40 [00:01:46.000] 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 41 [00:01:47.000] Finishing updateGraphWorker: Project: /user/username/projects/myproject/dependency/tsconfig.json Version: 1 structureChanged: true structureIsReused:: Not Elapsed:: *ms +Info 42 [00:01:48.000] Project '/user/username/projects/myproject/dependency/tsconfig.json' (Configured) +Info 43 [00:01:49.000] Files (2) /a/lib/lib.d.ts /user/username/projects/myproject/dependency/FnS.ts @@ -358,22 +358,22 @@ Info 43 [16:01:49.000] Files (2) FnS.ts Matched by default include pattern '**/*' -Info 44 [16:01:50.000] ----------------------------------------------- -Info 45 [16:01:51.000] Search path: /user/username/projects/myproject/dependency -Info 46 [16:01:52.000] For info: /user/username/projects/myproject/dependency/tsconfig.json :: No config files found. -Info 47 [16:01:53.000] Project '/user/username/projects/myproject/main/tsconfig.json' (Configured) -Info 47 [16:01:54.000] Files (3) - -Info 47 [16:01:55.000] ----------------------------------------------- -Info 47 [16:01:56.000] Project '/user/username/projects/myproject/dependency/tsconfig.json' (Configured) -Info 47 [16:01:57.000] Files (2) - -Info 47 [16:01:58.000] ----------------------------------------------- -Info 47 [16:01:59.000] Open files: -Info 47 [16:02:00.000] FileName: /user/username/projects/myproject/main/main.ts ProjectRootPath: undefined -Info 47 [16:02:01.000] Projects: /user/username/projects/myproject/main/tsconfig.json -Info 47 [16:02:02.000] FileName: /user/username/projects/myproject/dependency/FnS.ts ProjectRootPath: undefined -Info 47 [16:02:03.000] Projects: /user/username/projects/myproject/main/tsconfig.json,/user/username/projects/myproject/dependency/tsconfig.json +Info 44 [00:01:50.000] ----------------------------------------------- +Info 45 [00:01:51.000] Search path: /user/username/projects/myproject/dependency +Info 46 [00:01:52.000] For info: /user/username/projects/myproject/dependency/tsconfig.json :: No config files found. +Info 47 [00:01:53.000] Project '/user/username/projects/myproject/main/tsconfig.json' (Configured) +Info 47 [00:01:54.000] Files (3) + +Info 47 [00:01:55.000] ----------------------------------------------- +Info 47 [00:01:56.000] Project '/user/username/projects/myproject/dependency/tsconfig.json' (Configured) +Info 47 [00:01:57.000] Files (2) + +Info 47 [00:01:58.000] ----------------------------------------------- +Info 47 [00:01:59.000] Open files: +Info 47 [00:02:00.000] FileName: /user/username/projects/myproject/main/main.ts ProjectRootPath: undefined +Info 47 [00:02:01.000] Projects: /user/username/projects/myproject/main/tsconfig.json +Info 47 [00:02:02.000] FileName: /user/username/projects/myproject/dependency/FnS.ts ProjectRootPath: undefined +Info 47 [00:02:03.000] Projects: /user/username/projects/myproject/main/tsconfig.json,/user/username/projects/myproject/dependency/tsconfig.json After request PolledWatches:: @@ -400,11 +400,11 @@ FsWatchesRecursive:: /user/username/projects/myproject/decls: {} -Info 47 [16:02:04.000] response: +Info 47 [00:02:04.000] response: { "responseRequired": false } -Info 48 [16:02:05.000] request: +Info 48 [00:02:05.000] request: { "seq": 0, "type": "request", @@ -439,11 +439,11 @@ FsWatchesRecursive:: /user/username/projects/myproject/decls: {} -Info 49 [16:02:06.000] Search path: /user/username/projects/myproject/random -Info 50 [16:02:07.000] For info: /user/username/projects/myproject/random/random.ts :: Config file name: /user/username/projects/myproject/random/tsconfig.json -Info 51 [16:02:08.000] Creating configuration project /user/username/projects/myproject/random/tsconfig.json -Info 52 [16:02:09.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/random/tsconfig.json 2000 undefined Project: /user/username/projects/myproject/random/tsconfig.json WatchType: Config file -Info 53 [16:02:10.000] Config: /user/username/projects/myproject/random/tsconfig.json : { +Info 49 [00:02:06.000] Search path: /user/username/projects/myproject/random +Info 50 [00:02:07.000] For info: /user/username/projects/myproject/random/random.ts :: Config file name: /user/username/projects/myproject/random/tsconfig.json +Info 51 [00:02:08.000] Creating configuration project /user/username/projects/myproject/random/tsconfig.json +Info 52 [00:02:09.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/random/tsconfig.json 2000 undefined Project: /user/username/projects/myproject/random/tsconfig.json WatchType: Config file +Info 53 [00:02:10.000] Config: /user/username/projects/myproject/random/tsconfig.json : { "rootNames": [ "/user/username/projects/myproject/random/random.ts" ], @@ -451,17 +451,17 @@ Info 53 [16:02:10.000] Config: /user/username/projects/myproject/random/tsconf "configFilePath": "/user/username/projects/myproject/random/tsconfig.json" } } -Info 54 [16:02:11.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/random 1 undefined Config: /user/username/projects/myproject/random/tsconfig.json WatchType: Wild card directory -Info 55 [16:02:12.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/random 1 undefined Config: /user/username/projects/myproject/random/tsconfig.json WatchType: Wild card directory -Info 56 [16:02:13.000] Plugins were requested but not running in environment that supports 'require'. Nothing will be loaded -Info 57 [16:02:14.000] Starting updateGraphWorker: Project: /user/username/projects/myproject/random/tsconfig.json -Info 58 [16:02:15.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/random/node_modules/@types 1 undefined Project: /user/username/projects/myproject/random/tsconfig.json WatchType: Type roots -Info 59 [16:02:16.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/random/node_modules/@types 1 undefined Project: /user/username/projects/myproject/random/tsconfig.json WatchType: Type roots -Info 60 [16:02:17.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/random/tsconfig.json WatchType: Type roots -Info 61 [16:02:18.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/random/tsconfig.json WatchType: Type roots -Info 62 [16:02:19.000] Finishing updateGraphWorker: Project: /user/username/projects/myproject/random/tsconfig.json Version: 1 structureChanged: true structureIsReused:: Not Elapsed:: *ms -Info 63 [16:02:20.000] Project '/user/username/projects/myproject/random/tsconfig.json' (Configured) -Info 64 [16:02:21.000] Files (2) +Info 54 [00:02:11.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/random 1 undefined Config: /user/username/projects/myproject/random/tsconfig.json WatchType: Wild card directory +Info 55 [00:02:12.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/random 1 undefined Config: /user/username/projects/myproject/random/tsconfig.json WatchType: Wild card directory +Info 56 [00:02:13.000] Plugins were requested but not running in environment that supports 'require'. Nothing will be loaded +Info 57 [00:02:14.000] Starting updateGraphWorker: Project: /user/username/projects/myproject/random/tsconfig.json +Info 58 [00:02:15.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/random/node_modules/@types 1 undefined Project: /user/username/projects/myproject/random/tsconfig.json WatchType: Type roots +Info 59 [00:02:16.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/random/node_modules/@types 1 undefined Project: /user/username/projects/myproject/random/tsconfig.json WatchType: Type roots +Info 60 [00:02:17.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/random/tsconfig.json WatchType: Type roots +Info 61 [00:02:18.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/random/tsconfig.json WatchType: Type roots +Info 62 [00:02:19.000] Finishing updateGraphWorker: Project: /user/username/projects/myproject/random/tsconfig.json Version: 1 structureChanged: true structureIsReused:: Not Elapsed:: *ms +Info 63 [00:02:20.000] Project '/user/username/projects/myproject/random/tsconfig.json' (Configured) +Info 64 [00:02:21.000] Files (2) /a/lib/lib.d.ts /user/username/projects/myproject/random/random.ts @@ -471,26 +471,26 @@ Info 64 [16:02:21.000] Files (2) random.ts Matched by default include pattern '**/*' -Info 65 [16:02:22.000] ----------------------------------------------- -Info 66 [16:02:23.000] Project '/user/username/projects/myproject/main/tsconfig.json' (Configured) -Info 66 [16:02:24.000] Files (3) - -Info 66 [16:02:25.000] ----------------------------------------------- -Info 66 [16:02:26.000] Project '/user/username/projects/myproject/dependency/tsconfig.json' (Configured) -Info 66 [16:02:27.000] Files (2) - -Info 66 [16:02:28.000] ----------------------------------------------- -Info 66 [16:02:29.000] Project '/user/username/projects/myproject/random/tsconfig.json' (Configured) -Info 66 [16:02:30.000] Files (2) - -Info 66 [16:02:31.000] ----------------------------------------------- -Info 66 [16:02:32.000] Open files: -Info 66 [16:02:33.000] FileName: /user/username/projects/myproject/main/main.ts ProjectRootPath: undefined -Info 66 [16:02:34.000] Projects: /user/username/projects/myproject/main/tsconfig.json -Info 66 [16:02:35.000] FileName: /user/username/projects/myproject/dependency/FnS.ts ProjectRootPath: undefined -Info 66 [16:02:36.000] Projects: /user/username/projects/myproject/main/tsconfig.json,/user/username/projects/myproject/dependency/tsconfig.json -Info 66 [16:02:37.000] FileName: /user/username/projects/myproject/random/random.ts ProjectRootPath: undefined -Info 66 [16:02:38.000] Projects: /user/username/projects/myproject/random/tsconfig.json +Info 65 [00:02:22.000] ----------------------------------------------- +Info 66 [00:02:23.000] Project '/user/username/projects/myproject/main/tsconfig.json' (Configured) +Info 66 [00:02:24.000] Files (3) + +Info 66 [00:02:25.000] ----------------------------------------------- +Info 66 [00:02:26.000] Project '/user/username/projects/myproject/dependency/tsconfig.json' (Configured) +Info 66 [00:02:27.000] Files (2) + +Info 66 [00:02:28.000] ----------------------------------------------- +Info 66 [00:02:29.000] Project '/user/username/projects/myproject/random/tsconfig.json' (Configured) +Info 66 [00:02:30.000] Files (2) + +Info 66 [00:02:31.000] ----------------------------------------------- +Info 66 [00:02:32.000] Open files: +Info 66 [00:02:33.000] FileName: /user/username/projects/myproject/main/main.ts ProjectRootPath: undefined +Info 66 [00:02:34.000] Projects: /user/username/projects/myproject/main/tsconfig.json +Info 66 [00:02:35.000] FileName: /user/username/projects/myproject/dependency/FnS.ts ProjectRootPath: undefined +Info 66 [00:02:36.000] Projects: /user/username/projects/myproject/main/tsconfig.json,/user/username/projects/myproject/dependency/tsconfig.json +Info 66 [00:02:37.000] FileName: /user/username/projects/myproject/random/random.ts ProjectRootPath: undefined +Info 66 [00:02:38.000] Projects: /user/username/projects/myproject/random/tsconfig.json After request PolledWatches:: @@ -523,11 +523,11 @@ FsWatchesRecursive:: /user/username/projects/myproject/random: {} -Info 66 [16:02:39.000] response: +Info 66 [00:02:39.000] response: { "responseRequired": false } -Info 67 [16:02:40.000] request: +Info 67 [00:02:40.000] request: { "command": "definitionAndBoundSpan", "arguments": { @@ -602,7 +602,7 @@ FsWatchesRecursive:: /user/username/projects/myproject/random: {} -Info 68 [16:02:41.000] response: +Info 68 [00:02:41.000] response: { "response": { "definitions": [ @@ -639,7 +639,7 @@ Info 68 [16:02:41.000] response: }, "responseRequired": true } -Info 69 [16:02:42.000] request: +Info 69 [00:02:42.000] request: { "command": "rename", "arguments": { @@ -682,10 +682,10 @@ FsWatchesRecursive:: /user/username/projects/myproject/random: {} -Info 70 [16:02:43.000] Search path: /user/username/projects/myproject/dependency -Info 71 [16:02:44.000] For info: /user/username/projects/myproject/dependency/FnS.ts :: Config file name: /user/username/projects/myproject/dependency/tsconfig.json -Info 72 [16:02:45.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/decls/FnS.d.ts 500 undefined WatchType: Closed Script info -Info 73 [16:02:46.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/decls/FnS.d.ts.map 500 undefined WatchType: Closed Script info +Info 70 [00:02:43.000] Search path: /user/username/projects/myproject/dependency +Info 71 [00:02:44.000] For info: /user/username/projects/myproject/dependency/FnS.ts :: Config file name: /user/username/projects/myproject/dependency/tsconfig.json +Info 72 [00:02:45.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/decls/FnS.d.ts 500 undefined WatchType: Closed Script info +Info 73 [00:02:46.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/decls/FnS.d.ts.map 500 undefined WatchType: Closed Script info After request PolledWatches:: @@ -722,7 +722,7 @@ FsWatchesRecursive:: /user/username/projects/myproject/random: {} -Info 74 [16:02:47.000] response: +Info 74 [00:02:47.000] response: { "response": { "info": { @@ -803,16 +803,16 @@ Info 74 [16:02:47.000] response: }, "responseRequired": true } -Info 75 [16:02:49.000] FileWatcher:: Triggered with /user/username/projects/myproject/decls/FnS.d.ts 2:: WatchInfo: /user/username/projects/myproject/decls/FnS.d.ts 500 undefined WatchType: Closed Script info -Info 76 [16:02:50.000] FileWatcher:: Close:: WatchInfo: /user/username/projects/myproject/decls/FnS.d.ts 500 undefined WatchType: Closed Script info -Info 77 [16:02:51.000] Scheduled: /user/username/projects/myproject/main/tsconfig.json -Info 78 [16:02:52.000] Scheduled: /user/username/projects/myproject/dependency/tsconfig.json -Info 79 [16:02:53.000] Scheduled: *ensureProjectForOpenFiles* -Info 80 [16:02:54.000] Elapsed:: *ms FileWatcher:: Triggered with /user/username/projects/myproject/decls/FnS.d.ts 2:: WatchInfo: /user/username/projects/myproject/decls/FnS.d.ts 500 undefined WatchType: Closed Script info -Info 81 [16:02:55.000] DirectoryWatcher:: Triggered with /user/username/projects/myproject/decls/FnS.d.ts :: WatchInfo: /user/username/projects/myproject/decls 1 undefined Project: /user/username/projects/myproject/main/tsconfig.json WatchType: Failed Lookup Locations -Info 82 [16:02:56.000] Scheduled: /user/username/projects/myproject/main/tsconfig.jsonFailedLookupInvalidation -Info 83 [16:02:57.000] Elapsed:: *ms DirectoryWatcher:: Triggered with /user/username/projects/myproject/decls/FnS.d.ts :: WatchInfo: /user/username/projects/myproject/decls 1 undefined Project: /user/username/projects/myproject/main/tsconfig.json WatchType: Failed Lookup Locations -Info 84 [16:02:58.000] request: +Info 75 [00:02:49.000] FileWatcher:: Triggered with /user/username/projects/myproject/decls/FnS.d.ts 2:: WatchInfo: /user/username/projects/myproject/decls/FnS.d.ts 500 undefined WatchType: Closed Script info +Info 76 [00:02:50.000] FileWatcher:: Close:: WatchInfo: /user/username/projects/myproject/decls/FnS.d.ts 500 undefined WatchType: Closed Script info +Info 77 [00:02:51.000] Scheduled: /user/username/projects/myproject/main/tsconfig.json +Info 78 [00:02:52.000] Scheduled: /user/username/projects/myproject/dependency/tsconfig.json +Info 79 [00:02:53.000] Scheduled: *ensureProjectForOpenFiles* +Info 80 [00:02:54.000] Elapsed:: *ms FileWatcher:: Triggered with /user/username/projects/myproject/decls/FnS.d.ts 2:: WatchInfo: /user/username/projects/myproject/decls/FnS.d.ts 500 undefined WatchType: Closed Script info +Info 81 [00:02:55.000] DirectoryWatcher:: Triggered with /user/username/projects/myproject/decls/FnS.d.ts :: WatchInfo: /user/username/projects/myproject/decls 1 undefined Project: /user/username/projects/myproject/main/tsconfig.json WatchType: Failed Lookup Locations +Info 82 [00:02:56.000] Scheduled: /user/username/projects/myproject/main/tsconfig.jsonFailedLookupInvalidation +Info 83 [00:02:57.000] Elapsed:: *ms DirectoryWatcher:: Triggered with /user/username/projects/myproject/decls/FnS.d.ts :: WatchInfo: /user/username/projects/myproject/decls 1 undefined Project: /user/username/projects/myproject/main/tsconfig.json WatchType: Failed Lookup Locations +Info 84 [00:02:58.000] request: { "command": "definitionAndBoundSpan", "arguments": { @@ -858,9 +858,9 @@ FsWatchesRecursive:: /user/username/projects/myproject/random: {} -Info 85 [16:02:59.000] Starting updateGraphWorker: Project: /user/username/projects/myproject/main/tsconfig.json -Info 86 [16:03:00.000] Finishing updateGraphWorker: Project: /user/username/projects/myproject/main/tsconfig.json Version: 2 structureChanged: false structureIsReused:: Completely Elapsed:: *ms -Info 87 [16:03:01.000] Different program with same set of files +Info 85 [00:02:59.000] Starting updateGraphWorker: Project: /user/username/projects/myproject/main/tsconfig.json +Info 86 [00:03:00.000] Finishing updateGraphWorker: Project: /user/username/projects/myproject/main/tsconfig.json Version: 2 structureChanged: false structureIsReused:: Completely Elapsed:: *ms +Info 87 [00:03:01.000] Different program with same set of files After request PolledWatches:: @@ -895,7 +895,7 @@ FsWatchesRecursive:: /user/username/projects/myproject/random: {} -Info 88 [16:03:02.000] response: +Info 88 [00:03:02.000] response: { "response": { "definitions": [ @@ -932,7 +932,7 @@ Info 88 [16:03:02.000] response: }, "responseRequired": true } -Info 89 [16:03:03.000] request: +Info 89 [00:03:03.000] request: { "command": "definitionAndBoundSpan", "arguments": { @@ -1011,7 +1011,7 @@ FsWatchesRecursive:: /user/username/projects/myproject/random: {} -Info 90 [16:03:04.000] response: +Info 90 [00:03:04.000] response: { "response": { "definitions": [ @@ -1048,7 +1048,7 @@ Info 90 [16:03:04.000] response: }, "responseRequired": true } -Info 91 [16:03:05.000] request: +Info 91 [00:03:05.000] request: { "command": "definitionAndBoundSpan", "arguments": { @@ -1127,7 +1127,7 @@ FsWatchesRecursive:: /user/username/projects/myproject/random: {} -Info 92 [16:03:06.000] response: +Info 92 [00:03:06.000] response: { "response": { "definitions": [ @@ -1164,7 +1164,7 @@ Info 92 [16:03:06.000] response: }, "responseRequired": true } -Info 93 [16:03:07.000] request: +Info 93 [00:03:07.000] request: { "command": "definitionAndBoundSpan", "arguments": { @@ -1243,7 +1243,7 @@ FsWatchesRecursive:: /user/username/projects/myproject/random: {} -Info 94 [16:03:08.000] response: +Info 94 [00:03:08.000] response: { "response": { "definitions": [ @@ -1280,7 +1280,7 @@ Info 94 [16:03:08.000] response: }, "responseRequired": true } -Info 95 [16:03:09.000] request: +Info 95 [00:03:09.000] request: { "command": "definitionAndBoundSpan", "arguments": { @@ -1359,7 +1359,7 @@ FsWatchesRecursive:: /user/username/projects/myproject/random: {} -Info 96 [16:03:10.000] response: +Info 96 [00:03:10.000] response: { "response": { "definitions": [ @@ -1396,7 +1396,7 @@ Info 96 [16:03:10.000] response: }, "responseRequired": true } -Info 97 [16:03:11.000] request: +Info 97 [00:03:11.000] request: { "command": "rename", "arguments": { @@ -1441,11 +1441,11 @@ FsWatchesRecursive:: /user/username/projects/myproject/random: {} -Info 98 [16:03:12.000] Starting updateGraphWorker: Project: /user/username/projects/myproject/dependency/tsconfig.json -Info 99 [16:03:13.000] Finishing updateGraphWorker: Project: /user/username/projects/myproject/dependency/tsconfig.json Version: 2 structureChanged: false structureIsReused:: Not Elapsed:: *ms -Info 100 [16:03:14.000] Search path: /user/username/projects/myproject/dependency -Info 101 [16:03:15.000] For info: /user/username/projects/myproject/dependency/FnS.ts :: Config file name: /user/username/projects/myproject/dependency/tsconfig.json -Info 102 [16:03:16.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/decls/FnS.d.ts 2000 undefined Project: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Missing generated file +Info 98 [00:03:12.000] Starting updateGraphWorker: Project: /user/username/projects/myproject/dependency/tsconfig.json +Info 99 [00:03:13.000] Finishing updateGraphWorker: Project: /user/username/projects/myproject/dependency/tsconfig.json Version: 2 structureChanged: false structureIsReused:: Not Elapsed:: *ms +Info 100 [00:03:14.000] Search path: /user/username/projects/myproject/dependency +Info 101 [00:03:15.000] For info: /user/username/projects/myproject/dependency/FnS.ts :: Config file name: /user/username/projects/myproject/dependency/tsconfig.json +Info 102 [00:03:16.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/decls/FnS.d.ts 2000 undefined Project: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Missing generated file After request PolledWatches:: @@ -1482,7 +1482,7 @@ FsWatchesRecursive:: /user/username/projects/myproject/random: {} -Info 103 [16:03:17.000] response: +Info 103 [00:03:17.000] response: { "response": { "info": { @@ -1563,7 +1563,7 @@ Info 103 [16:03:17.000] response: }, "responseRequired": true } -Info 104 [16:03:18.000] request: +Info 104 [00:03:18.000] request: { "command": "rename", "arguments": { @@ -1610,8 +1610,8 @@ FsWatchesRecursive:: /user/username/projects/myproject/random: {} -Info 105 [16:03:19.000] Search path: /user/username/projects/myproject/dependency -Info 106 [16:03:20.000] For info: /user/username/projects/myproject/dependency/FnS.ts :: Config file name: /user/username/projects/myproject/dependency/tsconfig.json +Info 105 [00:03:19.000] Search path: /user/username/projects/myproject/dependency +Info 106 [00:03:20.000] For info: /user/username/projects/myproject/dependency/FnS.ts :: Config file name: /user/username/projects/myproject/dependency/tsconfig.json After request PolledWatches:: @@ -1648,7 +1648,7 @@ FsWatchesRecursive:: /user/username/projects/myproject/random: {} -Info 107 [16:03:21.000] response: +Info 107 [00:03:21.000] response: { "response": { "info": { @@ -1729,7 +1729,7 @@ Info 107 [16:03:21.000] response: }, "responseRequired": true } -Info 108 [16:03:22.000] request: +Info 108 [00:03:22.000] request: { "command": "rename", "arguments": { @@ -1776,8 +1776,8 @@ FsWatchesRecursive:: /user/username/projects/myproject/random: {} -Info 109 [16:03:23.000] Search path: /user/username/projects/myproject/dependency -Info 110 [16:03:24.000] For info: /user/username/projects/myproject/dependency/FnS.ts :: Config file name: /user/username/projects/myproject/dependency/tsconfig.json +Info 109 [00:03:23.000] Search path: /user/username/projects/myproject/dependency +Info 110 [00:03:24.000] For info: /user/username/projects/myproject/dependency/FnS.ts :: Config file name: /user/username/projects/myproject/dependency/tsconfig.json After request PolledWatches:: @@ -1814,7 +1814,7 @@ FsWatchesRecursive:: /user/username/projects/myproject/random: {} -Info 111 [16:03:25.000] response: +Info 111 [00:03:25.000] response: { "response": { "info": { @@ -1895,7 +1895,7 @@ Info 111 [16:03:25.000] response: }, "responseRequired": true } -Info 112 [16:03:26.000] request: +Info 112 [00:03:26.000] request: { "command": "rename", "arguments": { @@ -1942,8 +1942,8 @@ FsWatchesRecursive:: /user/username/projects/myproject/random: {} -Info 113 [16:03:27.000] Search path: /user/username/projects/myproject/dependency -Info 114 [16:03:28.000] For info: /user/username/projects/myproject/dependency/FnS.ts :: Config file name: /user/username/projects/myproject/dependency/tsconfig.json +Info 113 [00:03:27.000] Search path: /user/username/projects/myproject/dependency +Info 114 [00:03:28.000] For info: /user/username/projects/myproject/dependency/FnS.ts :: Config file name: /user/username/projects/myproject/dependency/tsconfig.json After request PolledWatches:: @@ -1980,7 +1980,7 @@ FsWatchesRecursive:: /user/username/projects/myproject/random: {} -Info 115 [16:03:29.000] response: +Info 115 [00:03:29.000] response: { "response": { "info": { @@ -2061,7 +2061,7 @@ Info 115 [16:03:29.000] response: }, "responseRequired": true } -Info 116 [16:03:30.000] request: +Info 116 [00:03:30.000] request: { "command": "rename", "arguments": { @@ -2108,8 +2108,8 @@ FsWatchesRecursive:: /user/username/projects/myproject/random: {} -Info 117 [16:03:31.000] Search path: /user/username/projects/myproject/dependency -Info 118 [16:03:32.000] For info: /user/username/projects/myproject/dependency/FnS.ts :: Config file name: /user/username/projects/myproject/dependency/tsconfig.json +Info 117 [00:03:31.000] Search path: /user/username/projects/myproject/dependency +Info 118 [00:03:32.000] For info: /user/username/projects/myproject/dependency/FnS.ts :: Config file name: /user/username/projects/myproject/dependency/tsconfig.json After request PolledWatches:: @@ -2146,7 +2146,7 @@ FsWatchesRecursive:: /user/username/projects/myproject/random: {} -Info 119 [16:03:33.000] response: +Info 119 [00:03:33.000] response: { "response": { "info": { @@ -2227,7 +2227,7 @@ Info 119 [16:03:33.000] response: }, "responseRequired": true } -Info 120 [16:03:34.000] request: +Info 120 [00:03:34.000] request: { "seq": 0, "type": "request", @@ -2272,24 +2272,24 @@ FsWatchesRecursive:: /user/username/projects/myproject/random: {} -Info 121 [16:03:35.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/random/random.ts 500 undefined WatchType: Closed Script info -Info 122 [16:03:36.000] Project '/user/username/projects/myproject/main/tsconfig.json' (Configured) -Info 122 [16:03:37.000] Files (3) +Info 121 [00:03:35.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/random/random.ts 500 undefined WatchType: Closed Script info +Info 122 [00:03:36.000] Project '/user/username/projects/myproject/main/tsconfig.json' (Configured) +Info 122 [00:03:37.000] Files (3) -Info 122 [16:03:38.000] ----------------------------------------------- -Info 122 [16:03:39.000] Project '/user/username/projects/myproject/dependency/tsconfig.json' (Configured) -Info 122 [16:03:40.000] Files (2) +Info 122 [00:03:38.000] ----------------------------------------------- +Info 122 [00:03:39.000] Project '/user/username/projects/myproject/dependency/tsconfig.json' (Configured) +Info 122 [00:03:40.000] Files (2) -Info 122 [16:03:41.000] ----------------------------------------------- -Info 122 [16:03:42.000] Project '/user/username/projects/myproject/random/tsconfig.json' (Configured) -Info 122 [16:03:43.000] Files (2) +Info 122 [00:03:41.000] ----------------------------------------------- +Info 122 [00:03:42.000] Project '/user/username/projects/myproject/random/tsconfig.json' (Configured) +Info 122 [00:03:43.000] Files (2) -Info 122 [16:03:44.000] ----------------------------------------------- -Info 122 [16:03:45.000] Open files: -Info 122 [16:03:46.000] FileName: /user/username/projects/myproject/main/main.ts ProjectRootPath: undefined -Info 122 [16:03:47.000] Projects: /user/username/projects/myproject/main/tsconfig.json -Info 122 [16:03:48.000] FileName: /user/username/projects/myproject/dependency/FnS.ts ProjectRootPath: undefined -Info 122 [16:03:49.000] Projects: /user/username/projects/myproject/main/tsconfig.json,/user/username/projects/myproject/dependency/tsconfig.json +Info 122 [00:03:44.000] ----------------------------------------------- +Info 122 [00:03:45.000] Open files: +Info 122 [00:03:46.000] FileName: /user/username/projects/myproject/main/main.ts ProjectRootPath: undefined +Info 122 [00:03:47.000] Projects: /user/username/projects/myproject/main/tsconfig.json +Info 122 [00:03:48.000] FileName: /user/username/projects/myproject/dependency/FnS.ts ProjectRootPath: undefined +Info 122 [00:03:49.000] Projects: /user/username/projects/myproject/main/tsconfig.json,/user/username/projects/myproject/dependency/tsconfig.json After request PolledWatches:: @@ -2328,11 +2328,11 @@ FsWatchesRecursive:: /user/username/projects/myproject/random: {} -Info 122 [16:03:50.000] response: +Info 122 [00:03:50.000] response: { "responseRequired": false } -Info 123 [16:03:51.000] request: +Info 123 [00:03:51.000] request: { "seq": 0, "type": "request", @@ -2379,29 +2379,29 @@ FsWatchesRecursive:: /user/username/projects/myproject/random: {} -Info 124 [16:03:52.000] FileWatcher:: Close:: WatchInfo: /user/username/projects/myproject/random/random.ts 500 undefined WatchType: Closed Script info -Info 125 [16:03:53.000] Search path: /user/username/projects/myproject/random -Info 126 [16:03:54.000] For info: /user/username/projects/myproject/random/random.ts :: Config file name: /user/username/projects/myproject/random/tsconfig.json -Info 127 [16:03:55.000] FileWatcher:: Close:: WatchInfo: /user/username/projects/myproject/decls/FnS.d.ts.map 500 undefined WatchType: Closed Script info -Info 128 [16:03:56.000] Project '/user/username/projects/myproject/main/tsconfig.json' (Configured) -Info 128 [16:03:57.000] Files (3) - -Info 128 [16:03:58.000] ----------------------------------------------- -Info 128 [16:03:59.000] Project '/user/username/projects/myproject/dependency/tsconfig.json' (Configured) -Info 128 [16:04:00.000] Files (2) - -Info 128 [16:04:01.000] ----------------------------------------------- -Info 128 [16:04:02.000] Project '/user/username/projects/myproject/random/tsconfig.json' (Configured) -Info 128 [16:04:03.000] Files (2) - -Info 128 [16:04:04.000] ----------------------------------------------- -Info 128 [16:04:05.000] Open files: -Info 128 [16:04:06.000] FileName: /user/username/projects/myproject/main/main.ts ProjectRootPath: undefined -Info 128 [16:04:07.000] Projects: /user/username/projects/myproject/main/tsconfig.json -Info 128 [16:04:08.000] FileName: /user/username/projects/myproject/dependency/FnS.ts ProjectRootPath: undefined -Info 128 [16:04:09.000] Projects: /user/username/projects/myproject/main/tsconfig.json,/user/username/projects/myproject/dependency/tsconfig.json -Info 128 [16:04:10.000] FileName: /user/username/projects/myproject/random/random.ts ProjectRootPath: undefined -Info 128 [16:04:11.000] Projects: /user/username/projects/myproject/random/tsconfig.json +Info 124 [00:03:52.000] FileWatcher:: Close:: WatchInfo: /user/username/projects/myproject/random/random.ts 500 undefined WatchType: Closed Script info +Info 125 [00:03:53.000] Search path: /user/username/projects/myproject/random +Info 126 [00:03:54.000] For info: /user/username/projects/myproject/random/random.ts :: Config file name: /user/username/projects/myproject/random/tsconfig.json +Info 127 [00:03:55.000] FileWatcher:: Close:: WatchInfo: /user/username/projects/myproject/decls/FnS.d.ts.map 500 undefined WatchType: Closed Script info +Info 128 [00:03:56.000] Project '/user/username/projects/myproject/main/tsconfig.json' (Configured) +Info 128 [00:03:57.000] Files (3) + +Info 128 [00:03:58.000] ----------------------------------------------- +Info 128 [00:03:59.000] Project '/user/username/projects/myproject/dependency/tsconfig.json' (Configured) +Info 128 [00:04:00.000] Files (2) + +Info 128 [00:04:01.000] ----------------------------------------------- +Info 128 [00:04:02.000] Project '/user/username/projects/myproject/random/tsconfig.json' (Configured) +Info 128 [00:04:03.000] Files (2) + +Info 128 [00:04:04.000] ----------------------------------------------- +Info 128 [00:04:05.000] Open files: +Info 128 [00:04:06.000] FileName: /user/username/projects/myproject/main/main.ts ProjectRootPath: undefined +Info 128 [00:04:07.000] Projects: /user/username/projects/myproject/main/tsconfig.json +Info 128 [00:04:08.000] FileName: /user/username/projects/myproject/dependency/FnS.ts ProjectRootPath: undefined +Info 128 [00:04:09.000] Projects: /user/username/projects/myproject/main/tsconfig.json,/user/username/projects/myproject/dependency/tsconfig.json +Info 128 [00:04:10.000] FileName: /user/username/projects/myproject/random/random.ts ProjectRootPath: undefined +Info 128 [00:04:11.000] Projects: /user/username/projects/myproject/random/tsconfig.json After request PolledWatches:: @@ -2436,11 +2436,11 @@ FsWatchesRecursive:: /user/username/projects/myproject/random: {} -Info 128 [16:04:12.000] response: +Info 128 [00:04:12.000] response: { "responseRequired": false } -Info 129 [16:04:13.000] request: +Info 129 [00:04:13.000] request: { "seq": 0, "type": "request", @@ -2483,24 +2483,24 @@ FsWatchesRecursive:: /user/username/projects/myproject/random: {} -Info 130 [16:04:14.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/main/main.ts 500 undefined WatchType: Closed Script info -Info 131 [16:04:15.000] Project '/user/username/projects/myproject/main/tsconfig.json' (Configured) -Info 131 [16:04:16.000] Files (3) +Info 130 [00:04:14.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/main/main.ts 500 undefined WatchType: Closed Script info +Info 131 [00:04:15.000] Project '/user/username/projects/myproject/main/tsconfig.json' (Configured) +Info 131 [00:04:16.000] Files (3) -Info 131 [16:04:17.000] ----------------------------------------------- -Info 131 [16:04:18.000] Project '/user/username/projects/myproject/dependency/tsconfig.json' (Configured) -Info 131 [16:04:19.000] Files (2) +Info 131 [00:04:17.000] ----------------------------------------------- +Info 131 [00:04:18.000] Project '/user/username/projects/myproject/dependency/tsconfig.json' (Configured) +Info 131 [00:04:19.000] Files (2) -Info 131 [16:04:20.000] ----------------------------------------------- -Info 131 [16:04:21.000] Project '/user/username/projects/myproject/random/tsconfig.json' (Configured) -Info 131 [16:04:22.000] Files (2) +Info 131 [00:04:20.000] ----------------------------------------------- +Info 131 [00:04:21.000] Project '/user/username/projects/myproject/random/tsconfig.json' (Configured) +Info 131 [00:04:22.000] Files (2) -Info 131 [16:04:23.000] ----------------------------------------------- -Info 131 [16:04:24.000] Open files: -Info 131 [16:04:25.000] FileName: /user/username/projects/myproject/dependency/FnS.ts ProjectRootPath: undefined -Info 131 [16:04:26.000] Projects: /user/username/projects/myproject/main/tsconfig.json,/user/username/projects/myproject/dependency/tsconfig.json -Info 131 [16:04:27.000] FileName: /user/username/projects/myproject/random/random.ts ProjectRootPath: undefined -Info 131 [16:04:28.000] Projects: /user/username/projects/myproject/random/tsconfig.json +Info 131 [00:04:23.000] ----------------------------------------------- +Info 131 [00:04:24.000] Open files: +Info 131 [00:04:25.000] FileName: /user/username/projects/myproject/dependency/FnS.ts ProjectRootPath: undefined +Info 131 [00:04:26.000] Projects: /user/username/projects/myproject/main/tsconfig.json,/user/username/projects/myproject/dependency/tsconfig.json +Info 131 [00:04:27.000] FileName: /user/username/projects/myproject/random/random.ts ProjectRootPath: undefined +Info 131 [00:04:28.000] Projects: /user/username/projects/myproject/random/tsconfig.json After request PolledWatches:: @@ -2537,11 +2537,11 @@ FsWatchesRecursive:: /user/username/projects/myproject/random: {} -Info 131 [16:04:29.000] response: +Info 131 [00:04:29.000] response: { "responseRequired": false } -Info 132 [16:04:30.000] request: +Info 132 [00:04:30.000] request: { "seq": 0, "type": "request", @@ -2586,22 +2586,22 @@ FsWatchesRecursive:: /user/username/projects/myproject/random: {} -Info 133 [16:04:31.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/dependency/FnS.ts 500 undefined WatchType: Closed Script info -Info 134 [16:04:32.000] Project '/user/username/projects/myproject/main/tsconfig.json' (Configured) -Info 134 [16:04:33.000] Files (3) +Info 133 [00:04:31.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/dependency/FnS.ts 500 undefined WatchType: Closed Script info +Info 134 [00:04:32.000] Project '/user/username/projects/myproject/main/tsconfig.json' (Configured) +Info 134 [00:04:33.000] Files (3) -Info 134 [16:04:34.000] ----------------------------------------------- -Info 134 [16:04:35.000] Project '/user/username/projects/myproject/dependency/tsconfig.json' (Configured) -Info 134 [16:04:36.000] Files (2) +Info 134 [00:04:34.000] ----------------------------------------------- +Info 134 [00:04:35.000] Project '/user/username/projects/myproject/dependency/tsconfig.json' (Configured) +Info 134 [00:04:36.000] Files (2) -Info 134 [16:04:37.000] ----------------------------------------------- -Info 134 [16:04:38.000] Project '/user/username/projects/myproject/random/tsconfig.json' (Configured) -Info 134 [16:04:39.000] Files (2) +Info 134 [00:04:37.000] ----------------------------------------------- +Info 134 [00:04:38.000] Project '/user/username/projects/myproject/random/tsconfig.json' (Configured) +Info 134 [00:04:39.000] Files (2) -Info 134 [16:04:40.000] ----------------------------------------------- -Info 134 [16:04:41.000] Open files: -Info 134 [16:04:42.000] FileName: /user/username/projects/myproject/random/random.ts ProjectRootPath: undefined -Info 134 [16:04:43.000] Projects: /user/username/projects/myproject/random/tsconfig.json +Info 134 [00:04:40.000] ----------------------------------------------- +Info 134 [00:04:41.000] Open files: +Info 134 [00:04:42.000] FileName: /user/username/projects/myproject/random/random.ts ProjectRootPath: undefined +Info 134 [00:04:43.000] Projects: /user/username/projects/myproject/random/tsconfig.json After request PolledWatches:: @@ -2640,11 +2640,11 @@ FsWatchesRecursive:: /user/username/projects/myproject/random: {} -Info 134 [16:04:44.000] response: +Info 134 [00:04:44.000] response: { "responseRequired": false } -Info 135 [16:04:45.000] request: +Info 135 [00:04:45.000] request: { "seq": 0, "type": "request", @@ -2691,20 +2691,20 @@ FsWatchesRecursive:: /user/username/projects/myproject/random: {} -Info 136 [16:04:46.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/random/random.ts 500 undefined WatchType: Closed Script info -Info 137 [16:04:47.000] Project '/user/username/projects/myproject/main/tsconfig.json' (Configured) -Info 137 [16:04:48.000] Files (3) +Info 136 [00:04:46.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/random/random.ts 500 undefined WatchType: Closed Script info +Info 137 [00:04:47.000] Project '/user/username/projects/myproject/main/tsconfig.json' (Configured) +Info 137 [00:04:48.000] Files (3) -Info 137 [16:04:49.000] ----------------------------------------------- -Info 137 [16:04:50.000] Project '/user/username/projects/myproject/dependency/tsconfig.json' (Configured) -Info 137 [16:04:51.000] Files (2) +Info 137 [00:04:49.000] ----------------------------------------------- +Info 137 [00:04:50.000] Project '/user/username/projects/myproject/dependency/tsconfig.json' (Configured) +Info 137 [00:04:51.000] Files (2) -Info 137 [16:04:52.000] ----------------------------------------------- -Info 137 [16:04:53.000] Project '/user/username/projects/myproject/random/tsconfig.json' (Configured) -Info 137 [16:04:54.000] Files (2) +Info 137 [00:04:52.000] ----------------------------------------------- +Info 137 [00:04:53.000] Project '/user/username/projects/myproject/random/tsconfig.json' (Configured) +Info 137 [00:04:54.000] Files (2) -Info 137 [16:04:55.000] ----------------------------------------------- -Info 137 [16:04:56.000] Open files: +Info 137 [00:04:55.000] ----------------------------------------------- +Info 137 [00:04:56.000] Open files: After request PolledWatches:: @@ -2745,11 +2745,11 @@ FsWatchesRecursive:: /user/username/projects/myproject/random: {} -Info 137 [16:04:57.000] response: +Info 137 [00:04:57.000] response: { "responseRequired": false } -Info 138 [16:04:58.000] request: +Info 138 [00:04:58.000] request: { "seq": 0, "type": "request", @@ -2798,12 +2798,12 @@ FsWatchesRecursive:: /user/username/projects/myproject/random: {} -Info 139 [16:04:59.000] FileWatcher:: Close:: WatchInfo: /user/username/projects/myproject/random/random.ts 500 undefined WatchType: Closed Script info -Info 140 [16:05:00.000] Search path: /user/username/projects/myproject/random -Info 141 [16:05:01.000] For info: /user/username/projects/myproject/random/random.ts :: Config file name: /user/username/projects/myproject/random/tsconfig.json -Info 142 [16:05:02.000] `remove Project:: -Info 143 [16:05:03.000] Project '/user/username/projects/myproject/main/tsconfig.json' (Configured) -Info 144 [16:05:04.000] Files (3) +Info 139 [00:04:59.000] FileWatcher:: Close:: WatchInfo: /user/username/projects/myproject/random/random.ts 500 undefined WatchType: Closed Script info +Info 140 [00:05:00.000] Search path: /user/username/projects/myproject/random +Info 141 [00:05:01.000] For info: /user/username/projects/myproject/random/random.ts :: Config file name: /user/username/projects/myproject/random/tsconfig.json +Info 142 [00:05:02.000] `remove Project:: +Info 143 [00:05:03.000] Project '/user/username/projects/myproject/main/tsconfig.json' (Configured) +Info 144 [00:05:04.000] Files (3) /a/lib/lib.d.ts /user/username/projects/myproject/dependency/FnS.ts /user/username/projects/myproject/main/main.ts @@ -2816,19 +2816,19 @@ Info 144 [16:05:04.000] Files (3) main.ts Matched by default include pattern '**/*' -Info 145 [16:05:05.000] ----------------------------------------------- -Info 146 [16:05:06.000] DirectoryWatcher:: Close:: WatchInfo: /user/username/projects/myproject/main 1 undefined Config: /user/username/projects/myproject/main/tsconfig.json WatchType: Wild card directory -Info 147 [16:05:07.000] 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 148 [16:05:08.000] FileWatcher:: Close:: WatchInfo: /user/username/projects/myproject/main/tsconfig.json 2000 undefined Project: /user/username/projects/myproject/main/tsconfig.json WatchType: Config file -Info 149 [16:05:09.000] DirectoryWatcher:: Close:: WatchInfo: /user/username/projects/myproject/decls 1 undefined Project: /user/username/projects/myproject/main/tsconfig.json WatchType: Failed Lookup Locations -Info 150 [16:05:10.000] 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 151 [16:05:11.000] 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 152 [16:05:12.000] 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 153 [16:05:13.000] DirectoryWatcher:: Close:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/main/tsconfig.json WatchType: Type roots -Info 154 [16:05:14.000] 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 155 [16:05:15.000] `remove Project:: -Info 156 [16:05:16.000] Project '/user/username/projects/myproject/dependency/tsconfig.json' (Configured) -Info 157 [16:05:17.000] Files (2) +Info 145 [00:05:05.000] ----------------------------------------------- +Info 146 [00:05:06.000] DirectoryWatcher:: Close:: WatchInfo: /user/username/projects/myproject/main 1 undefined Config: /user/username/projects/myproject/main/tsconfig.json WatchType: Wild card directory +Info 147 [00:05:07.000] 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 148 [00:05:08.000] FileWatcher:: Close:: WatchInfo: /user/username/projects/myproject/main/tsconfig.json 2000 undefined Project: /user/username/projects/myproject/main/tsconfig.json WatchType: Config file +Info 149 [00:05:09.000] DirectoryWatcher:: Close:: WatchInfo: /user/username/projects/myproject/decls 1 undefined Project: /user/username/projects/myproject/main/tsconfig.json WatchType: Failed Lookup Locations +Info 150 [00:05:10.000] 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 151 [00:05:11.000] 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 152 [00:05:12.000] 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 153 [00:05:13.000] DirectoryWatcher:: Close:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/main/tsconfig.json WatchType: Type roots +Info 154 [00:05:14.000] 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 155 [00:05:15.000] `remove Project:: +Info 156 [00:05:16.000] Project '/user/username/projects/myproject/dependency/tsconfig.json' (Configured) +Info 157 [00:05:17.000] Files (2) /a/lib/lib.d.ts /user/username/projects/myproject/dependency/FnS.ts @@ -2838,24 +2838,24 @@ Info 157 [16:05:17.000] Files (2) FnS.ts Matched by default include pattern '**/*' -Info 158 [16:05:18.000] ----------------------------------------------- -Info 159 [16:05:19.000] DirectoryWatcher:: Close:: WatchInfo: /user/username/projects/myproject/dependency 1 undefined Config: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Wild card directory -Info 160 [16:05:20.000] 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 161 [16:05:21.000] FileWatcher:: Close:: WatchInfo: /user/username/projects/myproject/dependency/tsconfig.json 2000 undefined Project: /user/username/projects/myproject/main/tsconfig.json WatchType: Config file -Info 162 [16:05:22.000] 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 163 [16:05:23.000] 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 164 [16:05:24.000] DirectoryWatcher:: Close:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Type roots -Info 165 [16:05:25.000] 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 166 [16:05:26.000] 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 167 [16:05:27.000] FileWatcher:: Close:: WatchInfo: /user/username/projects/myproject/main/main.ts 500 undefined WatchType: Closed Script info -Info 168 [16:05:28.000] FileWatcher:: Close:: WatchInfo: /user/username/projects/myproject/dependency/FnS.ts 500 undefined WatchType: Closed Script info -Info 169 [16:05:29.000] Project '/user/username/projects/myproject/random/tsconfig.json' (Configured) -Info 169 [16:05:30.000] Files (2) - -Info 169 [16:05:31.000] ----------------------------------------------- -Info 169 [16:05:32.000] Open files: -Info 169 [16:05:33.000] FileName: /user/username/projects/myproject/random/random.ts ProjectRootPath: undefined -Info 169 [16:05:34.000] Projects: /user/username/projects/myproject/random/tsconfig.json +Info 158 [00:05:18.000] ----------------------------------------------- +Info 159 [00:05:19.000] DirectoryWatcher:: Close:: WatchInfo: /user/username/projects/myproject/dependency 1 undefined Config: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Wild card directory +Info 160 [00:05:20.000] 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 161 [00:05:21.000] FileWatcher:: Close:: WatchInfo: /user/username/projects/myproject/dependency/tsconfig.json 2000 undefined Project: /user/username/projects/myproject/main/tsconfig.json WatchType: Config file +Info 162 [00:05:22.000] 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 163 [00:05:23.000] 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 164 [00:05:24.000] DirectoryWatcher:: Close:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Type roots +Info 165 [00:05:25.000] 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 166 [00:05:26.000] 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 167 [00:05:27.000] FileWatcher:: Close:: WatchInfo: /user/username/projects/myproject/main/main.ts 500 undefined WatchType: Closed Script info +Info 168 [00:05:28.000] FileWatcher:: Close:: WatchInfo: /user/username/projects/myproject/dependency/FnS.ts 500 undefined WatchType: Closed Script info +Info 169 [00:05:29.000] Project '/user/username/projects/myproject/random/tsconfig.json' (Configured) +Info 169 [00:05:30.000] Files (2) + +Info 169 [00:05:31.000] ----------------------------------------------- +Info 169 [00:05:32.000] Open files: +Info 169 [00:05:33.000] FileName: /user/username/projects/myproject/random/random.ts ProjectRootPath: undefined +Info 169 [00:05:34.000] Projects: /user/username/projects/myproject/random/tsconfig.json After request PolledWatches:: @@ -2874,7 +2874,7 @@ FsWatchesRecursive:: /user/username/projects/myproject/random: {} -Info 169 [16:05:35.000] response: +Info 169 [00:05:35.000] response: { "responseRequired": false } \ No newline at end of file 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 def486080d5bd..92d7e5e1f44d9 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 @@ -1,5 +1,5 @@ -Info 0 [16:01:01.000] Provided types map file "/a/lib/typesMap.json" doesn't exist -Info 1 [16:01:02.000] request: +Info 0 [00:01:01.000] Provided types map file "/a/lib/typesMap.json" doesn't exist +Info 1 [00:01:02.000] request: { "seq": 0, "type": "request", @@ -192,11 +192,11 @@ FsWatches:: FsWatchesRecursive:: -Info 2 [16:01:03.000] Search path: /user/username/projects/myproject/main -Info 3 [16:01:04.000] For info: /user/username/projects/myproject/main/main.ts :: Config file name: /user/username/projects/myproject/main/tsconfig.json -Info 4 [16:01:05.000] Creating configuration project /user/username/projects/myproject/main/tsconfig.json -Info 5 [16:01:06.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/main/tsconfig.json 2000 undefined Project: /user/username/projects/myproject/main/tsconfig.json WatchType: Config file -Info 6 [16:01:07.000] Config: /user/username/projects/myproject/main/tsconfig.json : { +Info 2 [00:01:03.000] Search path: /user/username/projects/myproject/main +Info 3 [00:01:04.000] For info: /user/username/projects/myproject/main/main.ts :: Config file name: /user/username/projects/myproject/main/tsconfig.json +Info 4 [00:01:05.000] Creating configuration project /user/username/projects/myproject/main/tsconfig.json +Info 5 [00:01:06.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/main/tsconfig.json 2000 undefined Project: /user/username/projects/myproject/main/tsconfig.json WatchType: Config file +Info 6 [00:01:07.000] Config: /user/username/projects/myproject/main/tsconfig.json : { "rootNames": [ "/user/username/projects/myproject/main/main.ts" ], @@ -212,11 +212,11 @@ Info 6 [16:01:07.000] Config: /user/username/projects/myproject/main/tsconfig } ] } -Info 7 [16:01:08.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/main 1 undefined Config: /user/username/projects/myproject/main/tsconfig.json WatchType: Wild card directory -Info 8 [16:01:09.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/main 1 undefined Config: /user/username/projects/myproject/main/tsconfig.json WatchType: Wild card directory -Info 9 [16:01:10.000] Plugins were requested but not running in environment that supports 'require'. Nothing will be loaded -Info 10 [16:01:11.000] Starting updateGraphWorker: Project: /user/username/projects/myproject/main/tsconfig.json -Info 11 [16:01:12.000] Config: /user/username/projects/myproject/dependency/tsconfig.json : { +Info 7 [00:01:08.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/main 1 undefined Config: /user/username/projects/myproject/main/tsconfig.json WatchType: Wild card directory +Info 8 [00:01:09.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/main 1 undefined Config: /user/username/projects/myproject/main/tsconfig.json WatchType: Wild card directory +Info 9 [00:01:10.000] Plugins were requested but not running in environment that supports 'require'. Nothing will be loaded +Info 10 [00:01:11.000] Starting updateGraphWorker: Project: /user/username/projects/myproject/main/tsconfig.json +Info 11 [00:01:12.000] Config: /user/username/projects/myproject/dependency/tsconfig.json : { "rootNames": [ "/user/username/projects/myproject/dependency/FnS.ts" ], @@ -227,20 +227,20 @@ Info 11 [16:01:12.000] Config: /user/username/projects/myproject/dependency/ts "configFilePath": "/user/username/projects/myproject/dependency/tsconfig.json" } } -Info 12 [16:01:13.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/dependency/tsconfig.json 2000 undefined Project: /user/username/projects/myproject/main/tsconfig.json WatchType: Config file -Info 13 [16:01:14.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/dependency 1 undefined Config: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Wild card directory -Info 14 [16:01:15.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/dependency 1 undefined Config: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Wild card directory -Info 15 [16:01:16.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/decls 1 undefined Project: /user/username/projects/myproject/main/tsconfig.json WatchType: Failed Lookup Locations -Info 16 [16:01:17.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/decls 1 undefined Project: /user/username/projects/myproject/main/tsconfig.json WatchType: Failed Lookup Locations -Info 17 [16:01:18.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/dependency/FnS.ts 500 undefined WatchType: Closed Script info -Info 18 [16:01:19.000] FileWatcher:: Added:: WatchInfo: /a/lib/lib.d.ts 500 undefined WatchType: Closed Script info -Info 19 [16:01:20.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/main/node_modules/@types 1 undefined Project: /user/username/projects/myproject/main/tsconfig.json WatchType: Type roots -Info 20 [16:01:21.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/main/node_modules/@types 1 undefined Project: /user/username/projects/myproject/main/tsconfig.json WatchType: Type roots -Info 21 [16:01:22.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/main/tsconfig.json WatchType: Type roots -Info 22 [16:01:23.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/main/tsconfig.json WatchType: Type roots -Info 23 [16:01:24.000] Finishing updateGraphWorker: Project: /user/username/projects/myproject/main/tsconfig.json Version: 1 structureChanged: true structureIsReused:: Not Elapsed:: *ms -Info 24 [16:01:25.000] Project '/user/username/projects/myproject/main/tsconfig.json' (Configured) -Info 25 [16:01:26.000] Files (3) +Info 12 [00:01:13.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/dependency/tsconfig.json 2000 undefined Project: /user/username/projects/myproject/main/tsconfig.json WatchType: Config file +Info 13 [00:01:14.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/dependency 1 undefined Config: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Wild card directory +Info 14 [00:01:15.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/dependency 1 undefined Config: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Wild card directory +Info 15 [00:01:16.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/decls 1 undefined Project: /user/username/projects/myproject/main/tsconfig.json WatchType: Failed Lookup Locations +Info 16 [00:01:17.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/decls 1 undefined Project: /user/username/projects/myproject/main/tsconfig.json WatchType: Failed Lookup Locations +Info 17 [00:01:18.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/dependency/FnS.ts 500 undefined WatchType: Closed Script info +Info 18 [00:01:19.000] FileWatcher:: Added:: WatchInfo: /a/lib/lib.d.ts 500 undefined WatchType: Closed Script info +Info 19 [00:01:20.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/main/node_modules/@types 1 undefined Project: /user/username/projects/myproject/main/tsconfig.json WatchType: Type roots +Info 20 [00:01:21.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/main/node_modules/@types 1 undefined Project: /user/username/projects/myproject/main/tsconfig.json WatchType: Type roots +Info 21 [00:01:22.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/main/tsconfig.json WatchType: Type roots +Info 22 [00:01:23.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/main/tsconfig.json WatchType: Type roots +Info 23 [00:01:24.000] Finishing updateGraphWorker: Project: /user/username/projects/myproject/main/tsconfig.json Version: 1 structureChanged: true structureIsReused:: Not Elapsed:: *ms +Info 24 [00:01:25.000] Project '/user/username/projects/myproject/main/tsconfig.json' (Configured) +Info 25 [00:01:26.000] Files (3) /a/lib/lib.d.ts /user/username/projects/myproject/dependency/FnS.ts /user/username/projects/myproject/main/main.ts @@ -253,16 +253,16 @@ Info 25 [16:01:26.000] Files (3) main.ts Matched by default include pattern '**/*' -Info 26 [16:01:27.000] ----------------------------------------------- -Info 27 [16:01:28.000] Search path: /user/username/projects/myproject/main -Info 28 [16:01:29.000] For info: /user/username/projects/myproject/main/tsconfig.json :: No config files found. -Info 29 [16:01:30.000] Project '/user/username/projects/myproject/main/tsconfig.json' (Configured) -Info 29 [16:01:31.000] Files (3) +Info 26 [00:01:27.000] ----------------------------------------------- +Info 27 [00:01:28.000] Search path: /user/username/projects/myproject/main +Info 28 [00:01:29.000] For info: /user/username/projects/myproject/main/tsconfig.json :: No config files found. +Info 29 [00:01:30.000] Project '/user/username/projects/myproject/main/tsconfig.json' (Configured) +Info 29 [00:01:31.000] Files (3) -Info 29 [16:01:32.000] ----------------------------------------------- -Info 29 [16:01:33.000] Open files: -Info 29 [16:01:34.000] FileName: /user/username/projects/myproject/main/main.ts ProjectRootPath: undefined -Info 29 [16:01:35.000] Projects: /user/username/projects/myproject/main/tsconfig.json +Info 29 [00:01:32.000] ----------------------------------------------- +Info 29 [00:01:33.000] Open files: +Info 29 [00:01:34.000] FileName: /user/username/projects/myproject/main/main.ts ProjectRootPath: undefined +Info 29 [00:01:35.000] Projects: /user/username/projects/myproject/main/tsconfig.json After request PolledWatches:: @@ -289,11 +289,11 @@ FsWatchesRecursive:: /user/username/projects/myproject/decls: {} -Info 29 [16:01:36.000] response: +Info 29 [00:01:36.000] response: { "responseRequired": false } -Info 30 [16:01:37.000] request: +Info 30 [00:01:37.000] request: { "seq": 0, "type": "request", @@ -328,19 +328,19 @@ FsWatchesRecursive:: /user/username/projects/myproject/decls: {} -Info 31 [16:01:38.000] FileWatcher:: Close:: WatchInfo: /user/username/projects/myproject/dependency/FnS.ts 500 undefined WatchType: Closed Script info -Info 32 [16:01:39.000] Search path: /user/username/projects/myproject/dependency -Info 33 [16:01:40.000] For info: /user/username/projects/myproject/dependency/FnS.ts :: Config file name: /user/username/projects/myproject/dependency/tsconfig.json -Info 34 [16:01:41.000] Creating configuration project /user/username/projects/myproject/dependency/tsconfig.json -Info 35 [16:01:42.000] Plugins were requested but not running in environment that supports 'require'. Nothing will be loaded -Info 36 [16:01:43.000] Starting updateGraphWorker: Project: /user/username/projects/myproject/dependency/tsconfig.json -Info 37 [16:01:44.000] 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 38 [16:01:45.000] 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 39 [16:01:46.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Type roots -Info 40 [16:01:47.000] 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 41 [16:01:48.000] Finishing updateGraphWorker: Project: /user/username/projects/myproject/dependency/tsconfig.json Version: 1 structureChanged: true structureIsReused:: Not Elapsed:: *ms -Info 42 [16:01:49.000] Project '/user/username/projects/myproject/dependency/tsconfig.json' (Configured) -Info 43 [16:01:50.000] Files (2) +Info 31 [00:01:38.000] FileWatcher:: Close:: WatchInfo: /user/username/projects/myproject/dependency/FnS.ts 500 undefined WatchType: Closed Script info +Info 32 [00:01:39.000] Search path: /user/username/projects/myproject/dependency +Info 33 [00:01:40.000] For info: /user/username/projects/myproject/dependency/FnS.ts :: Config file name: /user/username/projects/myproject/dependency/tsconfig.json +Info 34 [00:01:41.000] Creating configuration project /user/username/projects/myproject/dependency/tsconfig.json +Info 35 [00:01:42.000] Plugins were requested but not running in environment that supports 'require'. Nothing will be loaded +Info 36 [00:01:43.000] Starting updateGraphWorker: Project: /user/username/projects/myproject/dependency/tsconfig.json +Info 37 [00:01:44.000] 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 38 [00:01:45.000] 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 39 [00:01:46.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Type roots +Info 40 [00:01:47.000] 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 41 [00:01:48.000] Finishing updateGraphWorker: Project: /user/username/projects/myproject/dependency/tsconfig.json Version: 1 structureChanged: true structureIsReused:: Not Elapsed:: *ms +Info 42 [00:01:49.000] Project '/user/username/projects/myproject/dependency/tsconfig.json' (Configured) +Info 43 [00:01:50.000] Files (2) /a/lib/lib.d.ts /user/username/projects/myproject/dependency/FnS.ts @@ -350,22 +350,22 @@ Info 43 [16:01:50.000] Files (2) FnS.ts Matched by default include pattern '**/*' -Info 44 [16:01:51.000] ----------------------------------------------- -Info 45 [16:01:52.000] Search path: /user/username/projects/myproject/dependency -Info 46 [16:01:53.000] For info: /user/username/projects/myproject/dependency/tsconfig.json :: No config files found. -Info 47 [16:01:54.000] Project '/user/username/projects/myproject/main/tsconfig.json' (Configured) -Info 47 [16:01:55.000] Files (3) - -Info 47 [16:01:56.000] ----------------------------------------------- -Info 47 [16:01:57.000] Project '/user/username/projects/myproject/dependency/tsconfig.json' (Configured) -Info 47 [16:01:58.000] Files (2) - -Info 47 [16:01:59.000] ----------------------------------------------- -Info 47 [16:02:00.000] Open files: -Info 47 [16:02:01.000] FileName: /user/username/projects/myproject/main/main.ts ProjectRootPath: undefined -Info 47 [16:02:02.000] Projects: /user/username/projects/myproject/main/tsconfig.json -Info 47 [16:02:03.000] FileName: /user/username/projects/myproject/dependency/FnS.ts ProjectRootPath: undefined -Info 47 [16:02:04.000] Projects: /user/username/projects/myproject/main/tsconfig.json,/user/username/projects/myproject/dependency/tsconfig.json +Info 44 [00:01:51.000] ----------------------------------------------- +Info 45 [00:01:52.000] Search path: /user/username/projects/myproject/dependency +Info 46 [00:01:53.000] For info: /user/username/projects/myproject/dependency/tsconfig.json :: No config files found. +Info 47 [00:01:54.000] Project '/user/username/projects/myproject/main/tsconfig.json' (Configured) +Info 47 [00:01:55.000] Files (3) + +Info 47 [00:01:56.000] ----------------------------------------------- +Info 47 [00:01:57.000] Project '/user/username/projects/myproject/dependency/tsconfig.json' (Configured) +Info 47 [00:01:58.000] Files (2) + +Info 47 [00:01:59.000] ----------------------------------------------- +Info 47 [00:02:00.000] Open files: +Info 47 [00:02:01.000] FileName: /user/username/projects/myproject/main/main.ts ProjectRootPath: undefined +Info 47 [00:02:02.000] Projects: /user/username/projects/myproject/main/tsconfig.json +Info 47 [00:02:03.000] FileName: /user/username/projects/myproject/dependency/FnS.ts ProjectRootPath: undefined +Info 47 [00:02:04.000] Projects: /user/username/projects/myproject/main/tsconfig.json,/user/username/projects/myproject/dependency/tsconfig.json After request PolledWatches:: @@ -392,11 +392,11 @@ FsWatchesRecursive:: /user/username/projects/myproject/decls: {} -Info 47 [16:02:05.000] response: +Info 47 [00:02:05.000] response: { "responseRequired": false } -Info 48 [16:02:06.000] request: +Info 48 [00:02:06.000] request: { "seq": 0, "type": "request", @@ -431,11 +431,11 @@ FsWatchesRecursive:: /user/username/projects/myproject/decls: {} -Info 49 [16:02:07.000] Search path: /user/username/projects/myproject/random -Info 50 [16:02:08.000] For info: /user/username/projects/myproject/random/random.ts :: Config file name: /user/username/projects/myproject/random/tsconfig.json -Info 51 [16:02:09.000] Creating configuration project /user/username/projects/myproject/random/tsconfig.json -Info 52 [16:02:10.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/random/tsconfig.json 2000 undefined Project: /user/username/projects/myproject/random/tsconfig.json WatchType: Config file -Info 53 [16:02:11.000] Config: /user/username/projects/myproject/random/tsconfig.json : { +Info 49 [00:02:07.000] Search path: /user/username/projects/myproject/random +Info 50 [00:02:08.000] For info: /user/username/projects/myproject/random/random.ts :: Config file name: /user/username/projects/myproject/random/tsconfig.json +Info 51 [00:02:09.000] Creating configuration project /user/username/projects/myproject/random/tsconfig.json +Info 52 [00:02:10.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/random/tsconfig.json 2000 undefined Project: /user/username/projects/myproject/random/tsconfig.json WatchType: Config file +Info 53 [00:02:11.000] Config: /user/username/projects/myproject/random/tsconfig.json : { "rootNames": [ "/user/username/projects/myproject/random/random.ts" ], @@ -443,17 +443,17 @@ Info 53 [16:02:11.000] Config: /user/username/projects/myproject/random/tsconf "configFilePath": "/user/username/projects/myproject/random/tsconfig.json" } } -Info 54 [16:02:12.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/random 1 undefined Config: /user/username/projects/myproject/random/tsconfig.json WatchType: Wild card directory -Info 55 [16:02:13.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/random 1 undefined Config: /user/username/projects/myproject/random/tsconfig.json WatchType: Wild card directory -Info 56 [16:02:14.000] Plugins were requested but not running in environment that supports 'require'. Nothing will be loaded -Info 57 [16:02:15.000] Starting updateGraphWorker: Project: /user/username/projects/myproject/random/tsconfig.json -Info 58 [16:02:16.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/random/node_modules/@types 1 undefined Project: /user/username/projects/myproject/random/tsconfig.json WatchType: Type roots -Info 59 [16:02:17.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/random/node_modules/@types 1 undefined Project: /user/username/projects/myproject/random/tsconfig.json WatchType: Type roots -Info 60 [16:02:18.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/random/tsconfig.json WatchType: Type roots -Info 61 [16:02:19.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/random/tsconfig.json WatchType: Type roots -Info 62 [16:02:20.000] Finishing updateGraphWorker: Project: /user/username/projects/myproject/random/tsconfig.json Version: 1 structureChanged: true structureIsReused:: Not Elapsed:: *ms -Info 63 [16:02:21.000] Project '/user/username/projects/myproject/random/tsconfig.json' (Configured) -Info 64 [16:02:22.000] Files (2) +Info 54 [00:02:12.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/random 1 undefined Config: /user/username/projects/myproject/random/tsconfig.json WatchType: Wild card directory +Info 55 [00:02:13.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/random 1 undefined Config: /user/username/projects/myproject/random/tsconfig.json WatchType: Wild card directory +Info 56 [00:02:14.000] Plugins were requested but not running in environment that supports 'require'. Nothing will be loaded +Info 57 [00:02:15.000] Starting updateGraphWorker: Project: /user/username/projects/myproject/random/tsconfig.json +Info 58 [00:02:16.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/random/node_modules/@types 1 undefined Project: /user/username/projects/myproject/random/tsconfig.json WatchType: Type roots +Info 59 [00:02:17.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/random/node_modules/@types 1 undefined Project: /user/username/projects/myproject/random/tsconfig.json WatchType: Type roots +Info 60 [00:02:18.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/random/tsconfig.json WatchType: Type roots +Info 61 [00:02:19.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/random/tsconfig.json WatchType: Type roots +Info 62 [00:02:20.000] Finishing updateGraphWorker: Project: /user/username/projects/myproject/random/tsconfig.json Version: 1 structureChanged: true structureIsReused:: Not Elapsed:: *ms +Info 63 [00:02:21.000] Project '/user/username/projects/myproject/random/tsconfig.json' (Configured) +Info 64 [00:02:22.000] Files (2) /a/lib/lib.d.ts /user/username/projects/myproject/random/random.ts @@ -463,26 +463,26 @@ Info 64 [16:02:22.000] Files (2) random.ts Matched by default include pattern '**/*' -Info 65 [16:02:23.000] ----------------------------------------------- -Info 66 [16:02:24.000] Project '/user/username/projects/myproject/main/tsconfig.json' (Configured) -Info 66 [16:02:25.000] Files (3) - -Info 66 [16:02:26.000] ----------------------------------------------- -Info 66 [16:02:27.000] Project '/user/username/projects/myproject/dependency/tsconfig.json' (Configured) -Info 66 [16:02:28.000] Files (2) - -Info 66 [16:02:29.000] ----------------------------------------------- -Info 66 [16:02:30.000] Project '/user/username/projects/myproject/random/tsconfig.json' (Configured) -Info 66 [16:02:31.000] Files (2) - -Info 66 [16:02:32.000] ----------------------------------------------- -Info 66 [16:02:33.000] Open files: -Info 66 [16:02:34.000] FileName: /user/username/projects/myproject/main/main.ts ProjectRootPath: undefined -Info 66 [16:02:35.000] Projects: /user/username/projects/myproject/main/tsconfig.json -Info 66 [16:02:36.000] FileName: /user/username/projects/myproject/dependency/FnS.ts ProjectRootPath: undefined -Info 66 [16:02:37.000] Projects: /user/username/projects/myproject/main/tsconfig.json,/user/username/projects/myproject/dependency/tsconfig.json -Info 66 [16:02:38.000] FileName: /user/username/projects/myproject/random/random.ts ProjectRootPath: undefined -Info 66 [16:02:39.000] Projects: /user/username/projects/myproject/random/tsconfig.json +Info 65 [00:02:23.000] ----------------------------------------------- +Info 66 [00:02:24.000] Project '/user/username/projects/myproject/main/tsconfig.json' (Configured) +Info 66 [00:02:25.000] Files (3) + +Info 66 [00:02:26.000] ----------------------------------------------- +Info 66 [00:02:27.000] Project '/user/username/projects/myproject/dependency/tsconfig.json' (Configured) +Info 66 [00:02:28.000] Files (2) + +Info 66 [00:02:29.000] ----------------------------------------------- +Info 66 [00:02:30.000] Project '/user/username/projects/myproject/random/tsconfig.json' (Configured) +Info 66 [00:02:31.000] Files (2) + +Info 66 [00:02:32.000] ----------------------------------------------- +Info 66 [00:02:33.000] Open files: +Info 66 [00:02:34.000] FileName: /user/username/projects/myproject/main/main.ts ProjectRootPath: undefined +Info 66 [00:02:35.000] Projects: /user/username/projects/myproject/main/tsconfig.json +Info 66 [00:02:36.000] FileName: /user/username/projects/myproject/dependency/FnS.ts ProjectRootPath: undefined +Info 66 [00:02:37.000] Projects: /user/username/projects/myproject/main/tsconfig.json,/user/username/projects/myproject/dependency/tsconfig.json +Info 66 [00:02:38.000] FileName: /user/username/projects/myproject/random/random.ts ProjectRootPath: undefined +Info 66 [00:02:39.000] Projects: /user/username/projects/myproject/random/tsconfig.json After request PolledWatches:: @@ -515,11 +515,11 @@ FsWatchesRecursive:: /user/username/projects/myproject/random: {} -Info 66 [16:02:40.000] response: +Info 66 [00:02:40.000] response: { "responseRequired": false } -Info 67 [16:02:41.000] request: +Info 67 [00:02:41.000] request: { "command": "definitionAndBoundSpan", "arguments": { @@ -594,7 +594,7 @@ FsWatchesRecursive:: /user/username/projects/myproject/random: {} -Info 68 [16:02:42.000] response: +Info 68 [00:02:42.000] response: { "response": { "definitions": [ @@ -631,7 +631,7 @@ Info 68 [16:02:42.000] response: }, "responseRequired": true } -Info 69 [16:02:43.000] request: +Info 69 [00:02:43.000] request: { "command": "definitionAndBoundSpan", "arguments": { @@ -706,7 +706,7 @@ FsWatchesRecursive:: /user/username/projects/myproject/random: {} -Info 70 [16:02:44.000] response: +Info 70 [00:02:44.000] response: { "response": { "definitions": [ @@ -743,7 +743,7 @@ Info 70 [16:02:44.000] response: }, "responseRequired": true } -Info 71 [16:02:45.000] request: +Info 71 [00:02:45.000] request: { "command": "definitionAndBoundSpan", "arguments": { @@ -818,7 +818,7 @@ FsWatchesRecursive:: /user/username/projects/myproject/random: {} -Info 72 [16:02:46.000] response: +Info 72 [00:02:46.000] response: { "response": { "definitions": [ @@ -855,7 +855,7 @@ Info 72 [16:02:46.000] response: }, "responseRequired": true } -Info 73 [16:02:47.000] request: +Info 73 [00:02:47.000] request: { "command": "definitionAndBoundSpan", "arguments": { @@ -930,7 +930,7 @@ FsWatchesRecursive:: /user/username/projects/myproject/random: {} -Info 74 [16:02:48.000] response: +Info 74 [00:02:48.000] response: { "response": { "definitions": [ @@ -967,7 +967,7 @@ Info 74 [16:02:48.000] response: }, "responseRequired": true } -Info 75 [16:02:49.000] request: +Info 75 [00:02:49.000] request: { "command": "definitionAndBoundSpan", "arguments": { @@ -1042,7 +1042,7 @@ FsWatchesRecursive:: /user/username/projects/myproject/random: {} -Info 76 [16:02:50.000] response: +Info 76 [00:02:50.000] response: { "response": { "definitions": [ @@ -1079,7 +1079,7 @@ Info 76 [16:02:50.000] response: }, "responseRequired": true } -Info 77 [16:02:51.000] request: +Info 77 [00:02:51.000] request: { "command": "rename", "arguments": { @@ -1122,9 +1122,9 @@ FsWatchesRecursive:: /user/username/projects/myproject/random: {} -Info 78 [16:02:52.000] Search path: /user/username/projects/myproject/dependency -Info 79 [16:02:53.000] For info: /user/username/projects/myproject/dependency/FnS.ts :: Config file name: /user/username/projects/myproject/dependency/tsconfig.json -Info 80 [16:02:54.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/decls/FnS.d.ts 2000 undefined Project: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Missing generated file +Info 78 [00:02:52.000] Search path: /user/username/projects/myproject/dependency +Info 79 [00:02:53.000] For info: /user/username/projects/myproject/dependency/FnS.ts :: Config file name: /user/username/projects/myproject/dependency/tsconfig.json +Info 80 [00:02:54.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/decls/FnS.d.ts 2000 undefined Project: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Missing generated file After request PolledWatches:: @@ -1159,7 +1159,7 @@ FsWatchesRecursive:: /user/username/projects/myproject/random: {} -Info 81 [16:02:55.000] response: +Info 81 [00:02:55.000] response: { "response": { "info": { @@ -1240,7 +1240,7 @@ Info 81 [16:02:55.000] response: }, "responseRequired": true } -Info 82 [16:02:56.000] request: +Info 82 [00:02:56.000] request: { "command": "rename", "arguments": { @@ -1285,8 +1285,8 @@ FsWatchesRecursive:: /user/username/projects/myproject/random: {} -Info 83 [16:02:57.000] Search path: /user/username/projects/myproject/dependency -Info 84 [16:02:58.000] For info: /user/username/projects/myproject/dependency/FnS.ts :: Config file name: /user/username/projects/myproject/dependency/tsconfig.json +Info 83 [00:02:57.000] Search path: /user/username/projects/myproject/dependency +Info 84 [00:02:58.000] For info: /user/username/projects/myproject/dependency/FnS.ts :: Config file name: /user/username/projects/myproject/dependency/tsconfig.json After request PolledWatches:: @@ -1321,7 +1321,7 @@ FsWatchesRecursive:: /user/username/projects/myproject/random: {} -Info 85 [16:02:59.000] response: +Info 85 [00:02:59.000] response: { "response": { "info": { @@ -1402,7 +1402,7 @@ Info 85 [16:02:59.000] response: }, "responseRequired": true } -Info 86 [16:03:00.000] request: +Info 86 [00:03:00.000] request: { "command": "rename", "arguments": { @@ -1447,8 +1447,8 @@ FsWatchesRecursive:: /user/username/projects/myproject/random: {} -Info 87 [16:03:01.000] Search path: /user/username/projects/myproject/dependency -Info 88 [16:03:02.000] For info: /user/username/projects/myproject/dependency/FnS.ts :: Config file name: /user/username/projects/myproject/dependency/tsconfig.json +Info 87 [00:03:01.000] Search path: /user/username/projects/myproject/dependency +Info 88 [00:03:02.000] For info: /user/username/projects/myproject/dependency/FnS.ts :: Config file name: /user/username/projects/myproject/dependency/tsconfig.json After request PolledWatches:: @@ -1483,7 +1483,7 @@ FsWatchesRecursive:: /user/username/projects/myproject/random: {} -Info 89 [16:03:03.000] response: +Info 89 [00:03:03.000] response: { "response": { "info": { @@ -1564,7 +1564,7 @@ Info 89 [16:03:03.000] response: }, "responseRequired": true } -Info 90 [16:03:04.000] request: +Info 90 [00:03:04.000] request: { "command": "rename", "arguments": { @@ -1609,8 +1609,8 @@ FsWatchesRecursive:: /user/username/projects/myproject/random: {} -Info 91 [16:03:05.000] Search path: /user/username/projects/myproject/dependency -Info 92 [16:03:06.000] For info: /user/username/projects/myproject/dependency/FnS.ts :: Config file name: /user/username/projects/myproject/dependency/tsconfig.json +Info 91 [00:03:05.000] Search path: /user/username/projects/myproject/dependency +Info 92 [00:03:06.000] For info: /user/username/projects/myproject/dependency/FnS.ts :: Config file name: /user/username/projects/myproject/dependency/tsconfig.json After request PolledWatches:: @@ -1645,7 +1645,7 @@ FsWatchesRecursive:: /user/username/projects/myproject/random: {} -Info 93 [16:03:07.000] response: +Info 93 [00:03:07.000] response: { "response": { "info": { @@ -1726,7 +1726,7 @@ Info 93 [16:03:07.000] response: }, "responseRequired": true } -Info 94 [16:03:08.000] request: +Info 94 [00:03:08.000] request: { "command": "rename", "arguments": { @@ -1771,8 +1771,8 @@ FsWatchesRecursive:: /user/username/projects/myproject/random: {} -Info 95 [16:03:09.000] Search path: /user/username/projects/myproject/dependency -Info 96 [16:03:10.000] For info: /user/username/projects/myproject/dependency/FnS.ts :: Config file name: /user/username/projects/myproject/dependency/tsconfig.json +Info 95 [00:03:09.000] Search path: /user/username/projects/myproject/dependency +Info 96 [00:03:10.000] For info: /user/username/projects/myproject/dependency/FnS.ts :: Config file name: /user/username/projects/myproject/dependency/tsconfig.json After request PolledWatches:: @@ -1807,7 +1807,7 @@ FsWatchesRecursive:: /user/username/projects/myproject/random: {} -Info 97 [16:03:11.000] response: +Info 97 [00:03:11.000] response: { "response": { "info": { @@ -1888,7 +1888,7 @@ Info 97 [16:03:11.000] response: }, "responseRequired": true } -Info 98 [16:03:12.000] request: +Info 98 [00:03:12.000] request: { "seq": 0, "type": "request", @@ -1931,24 +1931,24 @@ FsWatchesRecursive:: /user/username/projects/myproject/random: {} -Info 99 [16:03:13.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/random/random.ts 500 undefined WatchType: Closed Script info -Info 100 [16:03:14.000] Project '/user/username/projects/myproject/main/tsconfig.json' (Configured) -Info 100 [16:03:15.000] Files (3) +Info 99 [00:03:13.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/random/random.ts 500 undefined WatchType: Closed Script info +Info 100 [00:03:14.000] Project '/user/username/projects/myproject/main/tsconfig.json' (Configured) +Info 100 [00:03:15.000] Files (3) -Info 100 [16:03:16.000] ----------------------------------------------- -Info 100 [16:03:17.000] Project '/user/username/projects/myproject/dependency/tsconfig.json' (Configured) -Info 100 [16:03:18.000] Files (2) +Info 100 [00:03:16.000] ----------------------------------------------- +Info 100 [00:03:17.000] Project '/user/username/projects/myproject/dependency/tsconfig.json' (Configured) +Info 100 [00:03:18.000] Files (2) -Info 100 [16:03:19.000] ----------------------------------------------- -Info 100 [16:03:20.000] Project '/user/username/projects/myproject/random/tsconfig.json' (Configured) -Info 100 [16:03:21.000] Files (2) +Info 100 [00:03:19.000] ----------------------------------------------- +Info 100 [00:03:20.000] Project '/user/username/projects/myproject/random/tsconfig.json' (Configured) +Info 100 [00:03:21.000] Files (2) -Info 100 [16:03:22.000] ----------------------------------------------- -Info 100 [16:03:23.000] Open files: -Info 100 [16:03:24.000] FileName: /user/username/projects/myproject/main/main.ts ProjectRootPath: undefined -Info 100 [16:03:25.000] Projects: /user/username/projects/myproject/main/tsconfig.json -Info 100 [16:03:26.000] FileName: /user/username/projects/myproject/dependency/FnS.ts ProjectRootPath: undefined -Info 100 [16:03:27.000] Projects: /user/username/projects/myproject/main/tsconfig.json,/user/username/projects/myproject/dependency/tsconfig.json +Info 100 [00:03:22.000] ----------------------------------------------- +Info 100 [00:03:23.000] Open files: +Info 100 [00:03:24.000] FileName: /user/username/projects/myproject/main/main.ts ProjectRootPath: undefined +Info 100 [00:03:25.000] Projects: /user/username/projects/myproject/main/tsconfig.json +Info 100 [00:03:26.000] FileName: /user/username/projects/myproject/dependency/FnS.ts ProjectRootPath: undefined +Info 100 [00:03:27.000] Projects: /user/username/projects/myproject/main/tsconfig.json,/user/username/projects/myproject/dependency/tsconfig.json After request PolledWatches:: @@ -1985,11 +1985,11 @@ FsWatchesRecursive:: /user/username/projects/myproject/random: {} -Info 100 [16:03:28.000] response: +Info 100 [00:03:28.000] response: { "responseRequired": false } -Info 101 [16:03:29.000] request: +Info 101 [00:03:29.000] request: { "seq": 0, "type": "request", @@ -2034,28 +2034,28 @@ FsWatchesRecursive:: /user/username/projects/myproject/random: {} -Info 102 [16:03:30.000] FileWatcher:: Close:: WatchInfo: /user/username/projects/myproject/random/random.ts 500 undefined WatchType: Closed Script info -Info 103 [16:03:31.000] Search path: /user/username/projects/myproject/random -Info 104 [16:03:32.000] For info: /user/username/projects/myproject/random/random.ts :: Config file name: /user/username/projects/myproject/random/tsconfig.json -Info 105 [16:03:33.000] Project '/user/username/projects/myproject/main/tsconfig.json' (Configured) -Info 105 [16:03:34.000] Files (3) - -Info 105 [16:03:35.000] ----------------------------------------------- -Info 105 [16:03:36.000] Project '/user/username/projects/myproject/dependency/tsconfig.json' (Configured) -Info 105 [16:03:37.000] Files (2) - -Info 105 [16:03:38.000] ----------------------------------------------- -Info 105 [16:03:39.000] Project '/user/username/projects/myproject/random/tsconfig.json' (Configured) -Info 105 [16:03:40.000] Files (2) - -Info 105 [16:03:41.000] ----------------------------------------------- -Info 105 [16:03:42.000] Open files: -Info 105 [16:03:43.000] FileName: /user/username/projects/myproject/main/main.ts ProjectRootPath: undefined -Info 105 [16:03:44.000] Projects: /user/username/projects/myproject/main/tsconfig.json -Info 105 [16:03:45.000] FileName: /user/username/projects/myproject/dependency/FnS.ts ProjectRootPath: undefined -Info 105 [16:03:46.000] Projects: /user/username/projects/myproject/main/tsconfig.json,/user/username/projects/myproject/dependency/tsconfig.json -Info 105 [16:03:47.000] FileName: /user/username/projects/myproject/random/random.ts ProjectRootPath: undefined -Info 105 [16:03:48.000] Projects: /user/username/projects/myproject/random/tsconfig.json +Info 102 [00:03:30.000] FileWatcher:: Close:: WatchInfo: /user/username/projects/myproject/random/random.ts 500 undefined WatchType: Closed Script info +Info 103 [00:03:31.000] Search path: /user/username/projects/myproject/random +Info 104 [00:03:32.000] For info: /user/username/projects/myproject/random/random.ts :: Config file name: /user/username/projects/myproject/random/tsconfig.json +Info 105 [00:03:33.000] Project '/user/username/projects/myproject/main/tsconfig.json' (Configured) +Info 105 [00:03:34.000] Files (3) + +Info 105 [00:03:35.000] ----------------------------------------------- +Info 105 [00:03:36.000] Project '/user/username/projects/myproject/dependency/tsconfig.json' (Configured) +Info 105 [00:03:37.000] Files (2) + +Info 105 [00:03:38.000] ----------------------------------------------- +Info 105 [00:03:39.000] Project '/user/username/projects/myproject/random/tsconfig.json' (Configured) +Info 105 [00:03:40.000] Files (2) + +Info 105 [00:03:41.000] ----------------------------------------------- +Info 105 [00:03:42.000] Open files: +Info 105 [00:03:43.000] FileName: /user/username/projects/myproject/main/main.ts ProjectRootPath: undefined +Info 105 [00:03:44.000] Projects: /user/username/projects/myproject/main/tsconfig.json +Info 105 [00:03:45.000] FileName: /user/username/projects/myproject/dependency/FnS.ts ProjectRootPath: undefined +Info 105 [00:03:46.000] Projects: /user/username/projects/myproject/main/tsconfig.json,/user/username/projects/myproject/dependency/tsconfig.json +Info 105 [00:03:47.000] FileName: /user/username/projects/myproject/random/random.ts ProjectRootPath: undefined +Info 105 [00:03:48.000] Projects: /user/username/projects/myproject/random/tsconfig.json After request PolledWatches:: @@ -2090,11 +2090,11 @@ FsWatchesRecursive:: /user/username/projects/myproject/random: {} -Info 105 [16:03:49.000] response: +Info 105 [00:03:49.000] response: { "responseRequired": false } -Info 106 [16:03:50.000] request: +Info 106 [00:03:50.000] request: { "seq": 0, "type": "request", @@ -2137,24 +2137,24 @@ FsWatchesRecursive:: /user/username/projects/myproject/random: {} -Info 107 [16:03:51.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/main/main.ts 500 undefined WatchType: Closed Script info -Info 108 [16:03:52.000] Project '/user/username/projects/myproject/main/tsconfig.json' (Configured) -Info 108 [16:03:53.000] Files (3) +Info 107 [00:03:51.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/main/main.ts 500 undefined WatchType: Closed Script info +Info 108 [00:03:52.000] Project '/user/username/projects/myproject/main/tsconfig.json' (Configured) +Info 108 [00:03:53.000] Files (3) -Info 108 [16:03:54.000] ----------------------------------------------- -Info 108 [16:03:55.000] Project '/user/username/projects/myproject/dependency/tsconfig.json' (Configured) -Info 108 [16:03:56.000] Files (2) +Info 108 [00:03:54.000] ----------------------------------------------- +Info 108 [00:03:55.000] Project '/user/username/projects/myproject/dependency/tsconfig.json' (Configured) +Info 108 [00:03:56.000] Files (2) -Info 108 [16:03:57.000] ----------------------------------------------- -Info 108 [16:03:58.000] Project '/user/username/projects/myproject/random/tsconfig.json' (Configured) -Info 108 [16:03:59.000] Files (2) +Info 108 [00:03:57.000] ----------------------------------------------- +Info 108 [00:03:58.000] Project '/user/username/projects/myproject/random/tsconfig.json' (Configured) +Info 108 [00:03:59.000] Files (2) -Info 108 [16:04:00.000] ----------------------------------------------- -Info 108 [16:04:01.000] Open files: -Info 108 [16:04:02.000] FileName: /user/username/projects/myproject/dependency/FnS.ts ProjectRootPath: undefined -Info 108 [16:04:03.000] Projects: /user/username/projects/myproject/main/tsconfig.json,/user/username/projects/myproject/dependency/tsconfig.json -Info 108 [16:04:04.000] FileName: /user/username/projects/myproject/random/random.ts ProjectRootPath: undefined -Info 108 [16:04:05.000] Projects: /user/username/projects/myproject/random/tsconfig.json +Info 108 [00:04:00.000] ----------------------------------------------- +Info 108 [00:04:01.000] Open files: +Info 108 [00:04:02.000] FileName: /user/username/projects/myproject/dependency/FnS.ts ProjectRootPath: undefined +Info 108 [00:04:03.000] Projects: /user/username/projects/myproject/main/tsconfig.json,/user/username/projects/myproject/dependency/tsconfig.json +Info 108 [00:04:04.000] FileName: /user/username/projects/myproject/random/random.ts ProjectRootPath: undefined +Info 108 [00:04:05.000] Projects: /user/username/projects/myproject/random/tsconfig.json After request PolledWatches:: @@ -2191,11 +2191,11 @@ FsWatchesRecursive:: /user/username/projects/myproject/random: {} -Info 108 [16:04:06.000] response: +Info 108 [00:04:06.000] response: { "responseRequired": false } -Info 109 [16:04:07.000] request: +Info 109 [00:04:07.000] request: { "seq": 0, "type": "request", @@ -2240,22 +2240,22 @@ FsWatchesRecursive:: /user/username/projects/myproject/random: {} -Info 110 [16:04:08.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/dependency/FnS.ts 500 undefined WatchType: Closed Script info -Info 111 [16:04:09.000] Project '/user/username/projects/myproject/main/tsconfig.json' (Configured) -Info 111 [16:04:10.000] Files (3) +Info 110 [00:04:08.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/dependency/FnS.ts 500 undefined WatchType: Closed Script info +Info 111 [00:04:09.000] Project '/user/username/projects/myproject/main/tsconfig.json' (Configured) +Info 111 [00:04:10.000] Files (3) -Info 111 [16:04:11.000] ----------------------------------------------- -Info 111 [16:04:12.000] Project '/user/username/projects/myproject/dependency/tsconfig.json' (Configured) -Info 111 [16:04:13.000] Files (2) +Info 111 [00:04:11.000] ----------------------------------------------- +Info 111 [00:04:12.000] Project '/user/username/projects/myproject/dependency/tsconfig.json' (Configured) +Info 111 [00:04:13.000] Files (2) -Info 111 [16:04:14.000] ----------------------------------------------- -Info 111 [16:04:15.000] Project '/user/username/projects/myproject/random/tsconfig.json' (Configured) -Info 111 [16:04:16.000] Files (2) +Info 111 [00:04:14.000] ----------------------------------------------- +Info 111 [00:04:15.000] Project '/user/username/projects/myproject/random/tsconfig.json' (Configured) +Info 111 [00:04:16.000] Files (2) -Info 111 [16:04:17.000] ----------------------------------------------- -Info 111 [16:04:18.000] Open files: -Info 111 [16:04:19.000] FileName: /user/username/projects/myproject/random/random.ts ProjectRootPath: undefined -Info 111 [16:04:20.000] Projects: /user/username/projects/myproject/random/tsconfig.json +Info 111 [00:04:17.000] ----------------------------------------------- +Info 111 [00:04:18.000] Open files: +Info 111 [00:04:19.000] FileName: /user/username/projects/myproject/random/random.ts ProjectRootPath: undefined +Info 111 [00:04:20.000] Projects: /user/username/projects/myproject/random/tsconfig.json After request PolledWatches:: @@ -2294,11 +2294,11 @@ FsWatchesRecursive:: /user/username/projects/myproject/random: {} -Info 111 [16:04:21.000] response: +Info 111 [00:04:21.000] response: { "responseRequired": false } -Info 112 [16:04:22.000] request: +Info 112 [00:04:22.000] request: { "seq": 0, "type": "request", @@ -2345,20 +2345,20 @@ FsWatchesRecursive:: /user/username/projects/myproject/random: {} -Info 113 [16:04:23.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/random/random.ts 500 undefined WatchType: Closed Script info -Info 114 [16:04:24.000] Project '/user/username/projects/myproject/main/tsconfig.json' (Configured) -Info 114 [16:04:25.000] Files (3) +Info 113 [00:04:23.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/random/random.ts 500 undefined WatchType: Closed Script info +Info 114 [00:04:24.000] Project '/user/username/projects/myproject/main/tsconfig.json' (Configured) +Info 114 [00:04:25.000] Files (3) -Info 114 [16:04:26.000] ----------------------------------------------- -Info 114 [16:04:27.000] Project '/user/username/projects/myproject/dependency/tsconfig.json' (Configured) -Info 114 [16:04:28.000] Files (2) +Info 114 [00:04:26.000] ----------------------------------------------- +Info 114 [00:04:27.000] Project '/user/username/projects/myproject/dependency/tsconfig.json' (Configured) +Info 114 [00:04:28.000] Files (2) -Info 114 [16:04:29.000] ----------------------------------------------- -Info 114 [16:04:30.000] Project '/user/username/projects/myproject/random/tsconfig.json' (Configured) -Info 114 [16:04:31.000] Files (2) +Info 114 [00:04:29.000] ----------------------------------------------- +Info 114 [00:04:30.000] Project '/user/username/projects/myproject/random/tsconfig.json' (Configured) +Info 114 [00:04:31.000] Files (2) -Info 114 [16:04:32.000] ----------------------------------------------- -Info 114 [16:04:33.000] Open files: +Info 114 [00:04:32.000] ----------------------------------------------- +Info 114 [00:04:33.000] Open files: After request PolledWatches:: @@ -2399,11 +2399,11 @@ FsWatchesRecursive:: /user/username/projects/myproject/random: {} -Info 114 [16:04:34.000] response: +Info 114 [00:04:34.000] response: { "responseRequired": false } -Info 115 [16:04:35.000] request: +Info 115 [00:04:35.000] request: { "seq": 0, "type": "request", @@ -2452,12 +2452,12 @@ FsWatchesRecursive:: /user/username/projects/myproject/random: {} -Info 116 [16:04:36.000] FileWatcher:: Close:: WatchInfo: /user/username/projects/myproject/random/random.ts 500 undefined WatchType: Closed Script info -Info 117 [16:04:37.000] Search path: /user/username/projects/myproject/random -Info 118 [16:04:38.000] For info: /user/username/projects/myproject/random/random.ts :: Config file name: /user/username/projects/myproject/random/tsconfig.json -Info 119 [16:04:39.000] `remove Project:: -Info 120 [16:04:40.000] Project '/user/username/projects/myproject/main/tsconfig.json' (Configured) -Info 121 [16:04:41.000] Files (3) +Info 116 [00:04:36.000] FileWatcher:: Close:: WatchInfo: /user/username/projects/myproject/random/random.ts 500 undefined WatchType: Closed Script info +Info 117 [00:04:37.000] Search path: /user/username/projects/myproject/random +Info 118 [00:04:38.000] For info: /user/username/projects/myproject/random/random.ts :: Config file name: /user/username/projects/myproject/random/tsconfig.json +Info 119 [00:04:39.000] `remove Project:: +Info 120 [00:04:40.000] Project '/user/username/projects/myproject/main/tsconfig.json' (Configured) +Info 121 [00:04:41.000] Files (3) /a/lib/lib.d.ts /user/username/projects/myproject/dependency/FnS.ts /user/username/projects/myproject/main/main.ts @@ -2470,19 +2470,19 @@ Info 121 [16:04:41.000] Files (3) main.ts Matched by default include pattern '**/*' -Info 122 [16:04:42.000] ----------------------------------------------- -Info 123 [16:04:43.000] DirectoryWatcher:: Close:: WatchInfo: /user/username/projects/myproject/main 1 undefined Config: /user/username/projects/myproject/main/tsconfig.json WatchType: Wild card directory -Info 124 [16:04:44.000] 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 125 [16:04:45.000] FileWatcher:: Close:: WatchInfo: /user/username/projects/myproject/main/tsconfig.json 2000 undefined Project: /user/username/projects/myproject/main/tsconfig.json WatchType: Config file -Info 126 [16:04:46.000] DirectoryWatcher:: Close:: WatchInfo: /user/username/projects/myproject/decls 1 undefined Project: /user/username/projects/myproject/main/tsconfig.json WatchType: Failed Lookup Locations -Info 127 [16:04:47.000] 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 128 [16:04:48.000] 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 129 [16:04:49.000] 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 130 [16:04:50.000] DirectoryWatcher:: Close:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/main/tsconfig.json WatchType: Type roots -Info 131 [16:04:51.000] 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 132 [16:04:52.000] `remove Project:: -Info 133 [16:04:53.000] Project '/user/username/projects/myproject/dependency/tsconfig.json' (Configured) -Info 134 [16:04:54.000] Files (2) +Info 122 [00:04:42.000] ----------------------------------------------- +Info 123 [00:04:43.000] DirectoryWatcher:: Close:: WatchInfo: /user/username/projects/myproject/main 1 undefined Config: /user/username/projects/myproject/main/tsconfig.json WatchType: Wild card directory +Info 124 [00:04:44.000] 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 125 [00:04:45.000] FileWatcher:: Close:: WatchInfo: /user/username/projects/myproject/main/tsconfig.json 2000 undefined Project: /user/username/projects/myproject/main/tsconfig.json WatchType: Config file +Info 126 [00:04:46.000] DirectoryWatcher:: Close:: WatchInfo: /user/username/projects/myproject/decls 1 undefined Project: /user/username/projects/myproject/main/tsconfig.json WatchType: Failed Lookup Locations +Info 127 [00:04:47.000] 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 128 [00:04:48.000] 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 129 [00:04:49.000] 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 130 [00:04:50.000] DirectoryWatcher:: Close:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/main/tsconfig.json WatchType: Type roots +Info 131 [00:04:51.000] 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 132 [00:04:52.000] `remove Project:: +Info 133 [00:04:53.000] Project '/user/username/projects/myproject/dependency/tsconfig.json' (Configured) +Info 134 [00:04:54.000] Files (2) /a/lib/lib.d.ts /user/username/projects/myproject/dependency/FnS.ts @@ -2492,24 +2492,24 @@ Info 134 [16:04:54.000] Files (2) FnS.ts Matched by default include pattern '**/*' -Info 135 [16:04:55.000] ----------------------------------------------- -Info 136 [16:04:56.000] DirectoryWatcher:: Close:: WatchInfo: /user/username/projects/myproject/dependency 1 undefined Config: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Wild card directory -Info 137 [16:04:57.000] 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 138 [16:04:58.000] FileWatcher:: Close:: WatchInfo: /user/username/projects/myproject/dependency/tsconfig.json 2000 undefined Project: /user/username/projects/myproject/main/tsconfig.json WatchType: Config file -Info 139 [16:04:59.000] 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 140 [16:05:00.000] 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 141 [16:05:01.000] DirectoryWatcher:: Close:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Type roots -Info 142 [16:05:02.000] 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 143 [16:05:03.000] 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 144 [16:05:04.000] FileWatcher:: Close:: WatchInfo: /user/username/projects/myproject/main/main.ts 500 undefined WatchType: Closed Script info -Info 145 [16:05:05.000] FileWatcher:: Close:: WatchInfo: /user/username/projects/myproject/dependency/FnS.ts 500 undefined WatchType: Closed Script info -Info 146 [16:05:06.000] Project '/user/username/projects/myproject/random/tsconfig.json' (Configured) -Info 146 [16:05:07.000] Files (2) - -Info 146 [16:05:08.000] ----------------------------------------------- -Info 146 [16:05:09.000] Open files: -Info 146 [16:05:10.000] FileName: /user/username/projects/myproject/random/random.ts ProjectRootPath: undefined -Info 146 [16:05:11.000] Projects: /user/username/projects/myproject/random/tsconfig.json +Info 135 [00:04:55.000] ----------------------------------------------- +Info 136 [00:04:56.000] DirectoryWatcher:: Close:: WatchInfo: /user/username/projects/myproject/dependency 1 undefined Config: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Wild card directory +Info 137 [00:04:57.000] 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 138 [00:04:58.000] FileWatcher:: Close:: WatchInfo: /user/username/projects/myproject/dependency/tsconfig.json 2000 undefined Project: /user/username/projects/myproject/main/tsconfig.json WatchType: Config file +Info 139 [00:04:59.000] 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 140 [00:05:00.000] 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 141 [00:05:01.000] DirectoryWatcher:: Close:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Type roots +Info 142 [00:05:02.000] 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 143 [00:05:03.000] 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 144 [00:05:04.000] FileWatcher:: Close:: WatchInfo: /user/username/projects/myproject/main/main.ts 500 undefined WatchType: Closed Script info +Info 145 [00:05:05.000] FileWatcher:: Close:: WatchInfo: /user/username/projects/myproject/dependency/FnS.ts 500 undefined WatchType: Closed Script info +Info 146 [00:05:06.000] Project '/user/username/projects/myproject/random/tsconfig.json' (Configured) +Info 146 [00:05:07.000] Files (2) + +Info 146 [00:05:08.000] ----------------------------------------------- +Info 146 [00:05:09.000] Open files: +Info 146 [00:05:10.000] FileName: /user/username/projects/myproject/random/random.ts ProjectRootPath: undefined +Info 146 [00:05:11.000] Projects: /user/username/projects/myproject/random/tsconfig.json After request PolledWatches:: @@ -2528,7 +2528,7 @@ FsWatchesRecursive:: /user/username/projects/myproject/random: {} -Info 146 [16:05:12.000] response: +Info 146 [00:05:12.000] response: { "responseRequired": false } \ No newline at end of file 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 64df74a12f2a2..393f1cdd5e96d 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 @@ -1,5 +1,5 @@ -Info 0 [16:01:00.000] Provided types map file "/a/lib/typesMap.json" doesn't exist -Info 1 [16:01:01.000] request: +Info 0 [00:01:00.000] Provided types map file "/a/lib/typesMap.json" doesn't exist +Info 1 [00:01:01.000] request: { "seq": 0, "type": "request", @@ -200,11 +200,11 @@ FsWatches:: FsWatchesRecursive:: -Info 2 [16:01:02.000] Search path: /user/username/projects/myproject/main -Info 3 [16:01:03.000] For info: /user/username/projects/myproject/main/main.ts :: Config file name: /user/username/projects/myproject/main/tsconfig.json -Info 4 [16:01:04.000] Creating configuration project /user/username/projects/myproject/main/tsconfig.json -Info 5 [16:01:05.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/main/tsconfig.json 2000 undefined Project: /user/username/projects/myproject/main/tsconfig.json WatchType: Config file -Info 6 [16:01:06.000] Config: /user/username/projects/myproject/main/tsconfig.json : { +Info 2 [00:01:02.000] Search path: /user/username/projects/myproject/main +Info 3 [00:01:03.000] For info: /user/username/projects/myproject/main/main.ts :: Config file name: /user/username/projects/myproject/main/tsconfig.json +Info 4 [00:01:04.000] Creating configuration project /user/username/projects/myproject/main/tsconfig.json +Info 5 [00:01:05.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/main/tsconfig.json 2000 undefined Project: /user/username/projects/myproject/main/tsconfig.json WatchType: Config file +Info 6 [00:01:06.000] Config: /user/username/projects/myproject/main/tsconfig.json : { "rootNames": [ "/user/username/projects/myproject/main/main.ts" ], @@ -220,11 +220,11 @@ Info 6 [16:01:06.000] Config: /user/username/projects/myproject/main/tsconfig } ] } -Info 7 [16:01:07.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/main 1 undefined Config: /user/username/projects/myproject/main/tsconfig.json WatchType: Wild card directory -Info 8 [16:01:08.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/main 1 undefined Config: /user/username/projects/myproject/main/tsconfig.json WatchType: Wild card directory -Info 9 [16:01:09.000] Plugins were requested but not running in environment that supports 'require'. Nothing will be loaded -Info 10 [16:01:10.000] Starting updateGraphWorker: Project: /user/username/projects/myproject/main/tsconfig.json -Info 11 [16:01:11.000] Config: /user/username/projects/myproject/dependency/tsconfig.json : { +Info 7 [00:01:07.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/main 1 undefined Config: /user/username/projects/myproject/main/tsconfig.json WatchType: Wild card directory +Info 8 [00:01:08.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/main 1 undefined Config: /user/username/projects/myproject/main/tsconfig.json WatchType: Wild card directory +Info 9 [00:01:09.000] Plugins were requested but not running in environment that supports 'require'. Nothing will be loaded +Info 10 [00:01:10.000] Starting updateGraphWorker: Project: /user/username/projects/myproject/main/tsconfig.json +Info 11 [00:01:11.000] Config: /user/username/projects/myproject/dependency/tsconfig.json : { "rootNames": [ "/user/username/projects/myproject/dependency/FnS.ts" ], @@ -235,20 +235,20 @@ Info 11 [16:01:11.000] Config: /user/username/projects/myproject/dependency/ts "configFilePath": "/user/username/projects/myproject/dependency/tsconfig.json" } } -Info 12 [16:01:12.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/dependency/tsconfig.json 2000 undefined Project: /user/username/projects/myproject/main/tsconfig.json WatchType: Config file -Info 13 [16:01:13.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/dependency 1 undefined Config: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Wild card directory -Info 14 [16:01:14.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/dependency 1 undefined Config: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Wild card directory -Info 15 [16:01:15.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/decls 1 undefined Project: /user/username/projects/myproject/main/tsconfig.json WatchType: Failed Lookup Locations -Info 16 [16:01:16.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/decls 1 undefined Project: /user/username/projects/myproject/main/tsconfig.json WatchType: Failed Lookup Locations -Info 17 [16:01:17.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/dependency/FnS.ts 500 undefined WatchType: Closed Script info -Info 18 [16:01:18.000] FileWatcher:: Added:: WatchInfo: /a/lib/lib.d.ts 500 undefined WatchType: Closed Script info -Info 19 [16:01:19.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/main/node_modules/@types 1 undefined Project: /user/username/projects/myproject/main/tsconfig.json WatchType: Type roots -Info 20 [16:01:20.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/main/node_modules/@types 1 undefined Project: /user/username/projects/myproject/main/tsconfig.json WatchType: Type roots -Info 21 [16:01:21.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/main/tsconfig.json WatchType: Type roots -Info 22 [16:01:22.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/main/tsconfig.json WatchType: Type roots -Info 23 [16:01:23.000] Finishing updateGraphWorker: Project: /user/username/projects/myproject/main/tsconfig.json Version: 1 structureChanged: true structureIsReused:: Not Elapsed:: *ms -Info 24 [16:01:24.000] Project '/user/username/projects/myproject/main/tsconfig.json' (Configured) -Info 25 [16:01:25.000] Files (3) +Info 12 [00:01:12.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/dependency/tsconfig.json 2000 undefined Project: /user/username/projects/myproject/main/tsconfig.json WatchType: Config file +Info 13 [00:01:13.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/dependency 1 undefined Config: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Wild card directory +Info 14 [00:01:14.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/dependency 1 undefined Config: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Wild card directory +Info 15 [00:01:15.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/decls 1 undefined Project: /user/username/projects/myproject/main/tsconfig.json WatchType: Failed Lookup Locations +Info 16 [00:01:16.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/decls 1 undefined Project: /user/username/projects/myproject/main/tsconfig.json WatchType: Failed Lookup Locations +Info 17 [00:01:17.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/dependency/FnS.ts 500 undefined WatchType: Closed Script info +Info 18 [00:01:18.000] FileWatcher:: Added:: WatchInfo: /a/lib/lib.d.ts 500 undefined WatchType: Closed Script info +Info 19 [00:01:19.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/main/node_modules/@types 1 undefined Project: /user/username/projects/myproject/main/tsconfig.json WatchType: Type roots +Info 20 [00:01:20.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/main/node_modules/@types 1 undefined Project: /user/username/projects/myproject/main/tsconfig.json WatchType: Type roots +Info 21 [00:01:21.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/main/tsconfig.json WatchType: Type roots +Info 22 [00:01:22.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/main/tsconfig.json WatchType: Type roots +Info 23 [00:01:23.000] Finishing updateGraphWorker: Project: /user/username/projects/myproject/main/tsconfig.json Version: 1 structureChanged: true structureIsReused:: Not Elapsed:: *ms +Info 24 [00:01:24.000] Project '/user/username/projects/myproject/main/tsconfig.json' (Configured) +Info 25 [00:01:25.000] Files (3) /a/lib/lib.d.ts /user/username/projects/myproject/dependency/FnS.ts /user/username/projects/myproject/main/main.ts @@ -261,16 +261,16 @@ Info 25 [16:01:25.000] Files (3) main.ts Matched by default include pattern '**/*' -Info 26 [16:01:26.000] ----------------------------------------------- -Info 27 [16:01:27.000] Search path: /user/username/projects/myproject/main -Info 28 [16:01:28.000] For info: /user/username/projects/myproject/main/tsconfig.json :: No config files found. -Info 29 [16:01:29.000] Project '/user/username/projects/myproject/main/tsconfig.json' (Configured) -Info 29 [16:01:30.000] Files (3) +Info 26 [00:01:26.000] ----------------------------------------------- +Info 27 [00:01:27.000] Search path: /user/username/projects/myproject/main +Info 28 [00:01:28.000] For info: /user/username/projects/myproject/main/tsconfig.json :: No config files found. +Info 29 [00:01:29.000] Project '/user/username/projects/myproject/main/tsconfig.json' (Configured) +Info 29 [00:01:30.000] Files (3) -Info 29 [16:01:31.000] ----------------------------------------------- -Info 29 [16:01:32.000] Open files: -Info 29 [16:01:33.000] FileName: /user/username/projects/myproject/main/main.ts ProjectRootPath: undefined -Info 29 [16:01:34.000] Projects: /user/username/projects/myproject/main/tsconfig.json +Info 29 [00:01:31.000] ----------------------------------------------- +Info 29 [00:01:32.000] Open files: +Info 29 [00:01:33.000] FileName: /user/username/projects/myproject/main/main.ts ProjectRootPath: undefined +Info 29 [00:01:34.000] Projects: /user/username/projects/myproject/main/tsconfig.json After request PolledWatches:: @@ -297,11 +297,11 @@ FsWatchesRecursive:: /user/username/projects/myproject/decls: {} -Info 29 [16:01:35.000] response: +Info 29 [00:01:35.000] response: { "responseRequired": false } -Info 30 [16:01:36.000] request: +Info 30 [00:01:36.000] request: { "seq": 0, "type": "request", @@ -336,19 +336,19 @@ FsWatchesRecursive:: /user/username/projects/myproject/decls: {} -Info 31 [16:01:37.000] FileWatcher:: Close:: WatchInfo: /user/username/projects/myproject/dependency/FnS.ts 500 undefined WatchType: Closed Script info -Info 32 [16:01:38.000] Search path: /user/username/projects/myproject/dependency -Info 33 [16:01:39.000] For info: /user/username/projects/myproject/dependency/FnS.ts :: Config file name: /user/username/projects/myproject/dependency/tsconfig.json -Info 34 [16:01:40.000] Creating configuration project /user/username/projects/myproject/dependency/tsconfig.json -Info 35 [16:01:41.000] Plugins were requested but not running in environment that supports 'require'. Nothing will be loaded -Info 36 [16:01:42.000] Starting updateGraphWorker: Project: /user/username/projects/myproject/dependency/tsconfig.json -Info 37 [16:01:43.000] 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 38 [16:01:44.000] 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 39 [16:01:45.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Type roots -Info 40 [16:01:46.000] 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 41 [16:01:47.000] Finishing updateGraphWorker: Project: /user/username/projects/myproject/dependency/tsconfig.json Version: 1 structureChanged: true structureIsReused:: Not Elapsed:: *ms -Info 42 [16:01:48.000] Project '/user/username/projects/myproject/dependency/tsconfig.json' (Configured) -Info 43 [16:01:49.000] Files (2) +Info 31 [00:01:37.000] FileWatcher:: Close:: WatchInfo: /user/username/projects/myproject/dependency/FnS.ts 500 undefined WatchType: Closed Script info +Info 32 [00:01:38.000] Search path: /user/username/projects/myproject/dependency +Info 33 [00:01:39.000] For info: /user/username/projects/myproject/dependency/FnS.ts :: Config file name: /user/username/projects/myproject/dependency/tsconfig.json +Info 34 [00:01:40.000] Creating configuration project /user/username/projects/myproject/dependency/tsconfig.json +Info 35 [00:01:41.000] Plugins were requested but not running in environment that supports 'require'. Nothing will be loaded +Info 36 [00:01:42.000] Starting updateGraphWorker: Project: /user/username/projects/myproject/dependency/tsconfig.json +Info 37 [00:01:43.000] 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 38 [00:01:44.000] 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 39 [00:01:45.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Type roots +Info 40 [00:01:46.000] 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 41 [00:01:47.000] Finishing updateGraphWorker: Project: /user/username/projects/myproject/dependency/tsconfig.json Version: 1 structureChanged: true structureIsReused:: Not Elapsed:: *ms +Info 42 [00:01:48.000] Project '/user/username/projects/myproject/dependency/tsconfig.json' (Configured) +Info 43 [00:01:49.000] Files (2) /a/lib/lib.d.ts /user/username/projects/myproject/dependency/FnS.ts @@ -358,22 +358,22 @@ Info 43 [16:01:49.000] Files (2) FnS.ts Matched by default include pattern '**/*' -Info 44 [16:01:50.000] ----------------------------------------------- -Info 45 [16:01:51.000] Search path: /user/username/projects/myproject/dependency -Info 46 [16:01:52.000] For info: /user/username/projects/myproject/dependency/tsconfig.json :: No config files found. -Info 47 [16:01:53.000] Project '/user/username/projects/myproject/main/tsconfig.json' (Configured) -Info 47 [16:01:54.000] Files (3) - -Info 47 [16:01:55.000] ----------------------------------------------- -Info 47 [16:01:56.000] Project '/user/username/projects/myproject/dependency/tsconfig.json' (Configured) -Info 47 [16:01:57.000] Files (2) - -Info 47 [16:01:58.000] ----------------------------------------------- -Info 47 [16:01:59.000] Open files: -Info 47 [16:02:00.000] FileName: /user/username/projects/myproject/main/main.ts ProjectRootPath: undefined -Info 47 [16:02:01.000] Projects: /user/username/projects/myproject/main/tsconfig.json -Info 47 [16:02:02.000] FileName: /user/username/projects/myproject/dependency/FnS.ts ProjectRootPath: undefined -Info 47 [16:02:03.000] Projects: /user/username/projects/myproject/main/tsconfig.json,/user/username/projects/myproject/dependency/tsconfig.json +Info 44 [00:01:50.000] ----------------------------------------------- +Info 45 [00:01:51.000] Search path: /user/username/projects/myproject/dependency +Info 46 [00:01:52.000] For info: /user/username/projects/myproject/dependency/tsconfig.json :: No config files found. +Info 47 [00:01:53.000] Project '/user/username/projects/myproject/main/tsconfig.json' (Configured) +Info 47 [00:01:54.000] Files (3) + +Info 47 [00:01:55.000] ----------------------------------------------- +Info 47 [00:01:56.000] Project '/user/username/projects/myproject/dependency/tsconfig.json' (Configured) +Info 47 [00:01:57.000] Files (2) + +Info 47 [00:01:58.000] ----------------------------------------------- +Info 47 [00:01:59.000] Open files: +Info 47 [00:02:00.000] FileName: /user/username/projects/myproject/main/main.ts ProjectRootPath: undefined +Info 47 [00:02:01.000] Projects: /user/username/projects/myproject/main/tsconfig.json +Info 47 [00:02:02.000] FileName: /user/username/projects/myproject/dependency/FnS.ts ProjectRootPath: undefined +Info 47 [00:02:03.000] Projects: /user/username/projects/myproject/main/tsconfig.json,/user/username/projects/myproject/dependency/tsconfig.json After request PolledWatches:: @@ -400,11 +400,11 @@ FsWatchesRecursive:: /user/username/projects/myproject/decls: {} -Info 47 [16:02:04.000] response: +Info 47 [00:02:04.000] response: { "responseRequired": false } -Info 48 [16:02:05.000] request: +Info 48 [00:02:05.000] request: { "seq": 0, "type": "request", @@ -439,11 +439,11 @@ FsWatchesRecursive:: /user/username/projects/myproject/decls: {} -Info 49 [16:02:06.000] Search path: /user/username/projects/myproject/random -Info 50 [16:02:07.000] For info: /user/username/projects/myproject/random/random.ts :: Config file name: /user/username/projects/myproject/random/tsconfig.json -Info 51 [16:02:08.000] Creating configuration project /user/username/projects/myproject/random/tsconfig.json -Info 52 [16:02:09.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/random/tsconfig.json 2000 undefined Project: /user/username/projects/myproject/random/tsconfig.json WatchType: Config file -Info 53 [16:02:10.000] Config: /user/username/projects/myproject/random/tsconfig.json : { +Info 49 [00:02:06.000] Search path: /user/username/projects/myproject/random +Info 50 [00:02:07.000] For info: /user/username/projects/myproject/random/random.ts :: Config file name: /user/username/projects/myproject/random/tsconfig.json +Info 51 [00:02:08.000] Creating configuration project /user/username/projects/myproject/random/tsconfig.json +Info 52 [00:02:09.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/random/tsconfig.json 2000 undefined Project: /user/username/projects/myproject/random/tsconfig.json WatchType: Config file +Info 53 [00:02:10.000] Config: /user/username/projects/myproject/random/tsconfig.json : { "rootNames": [ "/user/username/projects/myproject/random/random.ts" ], @@ -451,17 +451,17 @@ Info 53 [16:02:10.000] Config: /user/username/projects/myproject/random/tsconf "configFilePath": "/user/username/projects/myproject/random/tsconfig.json" } } -Info 54 [16:02:11.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/random 1 undefined Config: /user/username/projects/myproject/random/tsconfig.json WatchType: Wild card directory -Info 55 [16:02:12.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/random 1 undefined Config: /user/username/projects/myproject/random/tsconfig.json WatchType: Wild card directory -Info 56 [16:02:13.000] Plugins were requested but not running in environment that supports 'require'. Nothing will be loaded -Info 57 [16:02:14.000] Starting updateGraphWorker: Project: /user/username/projects/myproject/random/tsconfig.json -Info 58 [16:02:15.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/random/node_modules/@types 1 undefined Project: /user/username/projects/myproject/random/tsconfig.json WatchType: Type roots -Info 59 [16:02:16.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/random/node_modules/@types 1 undefined Project: /user/username/projects/myproject/random/tsconfig.json WatchType: Type roots -Info 60 [16:02:17.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/random/tsconfig.json WatchType: Type roots -Info 61 [16:02:18.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/random/tsconfig.json WatchType: Type roots -Info 62 [16:02:19.000] Finishing updateGraphWorker: Project: /user/username/projects/myproject/random/tsconfig.json Version: 1 structureChanged: true structureIsReused:: Not Elapsed:: *ms -Info 63 [16:02:20.000] Project '/user/username/projects/myproject/random/tsconfig.json' (Configured) -Info 64 [16:02:21.000] Files (2) +Info 54 [00:02:11.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/random 1 undefined Config: /user/username/projects/myproject/random/tsconfig.json WatchType: Wild card directory +Info 55 [00:02:12.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/random 1 undefined Config: /user/username/projects/myproject/random/tsconfig.json WatchType: Wild card directory +Info 56 [00:02:13.000] Plugins were requested but not running in environment that supports 'require'. Nothing will be loaded +Info 57 [00:02:14.000] Starting updateGraphWorker: Project: /user/username/projects/myproject/random/tsconfig.json +Info 58 [00:02:15.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/random/node_modules/@types 1 undefined Project: /user/username/projects/myproject/random/tsconfig.json WatchType: Type roots +Info 59 [00:02:16.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/random/node_modules/@types 1 undefined Project: /user/username/projects/myproject/random/tsconfig.json WatchType: Type roots +Info 60 [00:02:17.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/random/tsconfig.json WatchType: Type roots +Info 61 [00:02:18.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/random/tsconfig.json WatchType: Type roots +Info 62 [00:02:19.000] Finishing updateGraphWorker: Project: /user/username/projects/myproject/random/tsconfig.json Version: 1 structureChanged: true structureIsReused:: Not Elapsed:: *ms +Info 63 [00:02:20.000] Project '/user/username/projects/myproject/random/tsconfig.json' (Configured) +Info 64 [00:02:21.000] Files (2) /a/lib/lib.d.ts /user/username/projects/myproject/random/random.ts @@ -471,26 +471,26 @@ Info 64 [16:02:21.000] Files (2) random.ts Matched by default include pattern '**/*' -Info 65 [16:02:22.000] ----------------------------------------------- -Info 66 [16:02:23.000] Project '/user/username/projects/myproject/main/tsconfig.json' (Configured) -Info 66 [16:02:24.000] Files (3) - -Info 66 [16:02:25.000] ----------------------------------------------- -Info 66 [16:02:26.000] Project '/user/username/projects/myproject/dependency/tsconfig.json' (Configured) -Info 66 [16:02:27.000] Files (2) - -Info 66 [16:02:28.000] ----------------------------------------------- -Info 66 [16:02:29.000] Project '/user/username/projects/myproject/random/tsconfig.json' (Configured) -Info 66 [16:02:30.000] Files (2) - -Info 66 [16:02:31.000] ----------------------------------------------- -Info 66 [16:02:32.000] Open files: -Info 66 [16:02:33.000] FileName: /user/username/projects/myproject/main/main.ts ProjectRootPath: undefined -Info 66 [16:02:34.000] Projects: /user/username/projects/myproject/main/tsconfig.json -Info 66 [16:02:35.000] FileName: /user/username/projects/myproject/dependency/FnS.ts ProjectRootPath: undefined -Info 66 [16:02:36.000] Projects: /user/username/projects/myproject/main/tsconfig.json,/user/username/projects/myproject/dependency/tsconfig.json -Info 66 [16:02:37.000] FileName: /user/username/projects/myproject/random/random.ts ProjectRootPath: undefined -Info 66 [16:02:38.000] Projects: /user/username/projects/myproject/random/tsconfig.json +Info 65 [00:02:22.000] ----------------------------------------------- +Info 66 [00:02:23.000] Project '/user/username/projects/myproject/main/tsconfig.json' (Configured) +Info 66 [00:02:24.000] Files (3) + +Info 66 [00:02:25.000] ----------------------------------------------- +Info 66 [00:02:26.000] Project '/user/username/projects/myproject/dependency/tsconfig.json' (Configured) +Info 66 [00:02:27.000] Files (2) + +Info 66 [00:02:28.000] ----------------------------------------------- +Info 66 [00:02:29.000] Project '/user/username/projects/myproject/random/tsconfig.json' (Configured) +Info 66 [00:02:30.000] Files (2) + +Info 66 [00:02:31.000] ----------------------------------------------- +Info 66 [00:02:32.000] Open files: +Info 66 [00:02:33.000] FileName: /user/username/projects/myproject/main/main.ts ProjectRootPath: undefined +Info 66 [00:02:34.000] Projects: /user/username/projects/myproject/main/tsconfig.json +Info 66 [00:02:35.000] FileName: /user/username/projects/myproject/dependency/FnS.ts ProjectRootPath: undefined +Info 66 [00:02:36.000] Projects: /user/username/projects/myproject/main/tsconfig.json,/user/username/projects/myproject/dependency/tsconfig.json +Info 66 [00:02:37.000] FileName: /user/username/projects/myproject/random/random.ts ProjectRootPath: undefined +Info 66 [00:02:38.000] Projects: /user/username/projects/myproject/random/tsconfig.json After request PolledWatches:: @@ -523,11 +523,11 @@ FsWatchesRecursive:: /user/username/projects/myproject/random: {} -Info 66 [16:02:39.000] response: +Info 66 [00:02:39.000] response: { "responseRequired": false } -Info 67 [16:02:40.000] request: +Info 67 [00:02:40.000] request: { "command": "definitionAndBoundSpan", "arguments": { @@ -602,7 +602,7 @@ FsWatchesRecursive:: /user/username/projects/myproject/random: {} -Info 68 [16:02:41.000] response: +Info 68 [00:02:41.000] response: { "response": { "definitions": [ @@ -639,7 +639,7 @@ Info 68 [16:02:41.000] response: }, "responseRequired": true } -Info 69 [16:02:42.000] request: +Info 69 [00:02:42.000] request: { "command": "rename", "arguments": { @@ -682,10 +682,10 @@ FsWatchesRecursive:: /user/username/projects/myproject/random: {} -Info 70 [16:02:43.000] Search path: /user/username/projects/myproject/dependency -Info 71 [16:02:44.000] For info: /user/username/projects/myproject/dependency/FnS.ts :: Config file name: /user/username/projects/myproject/dependency/tsconfig.json -Info 72 [16:02:45.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/decls/FnS.d.ts 500 undefined WatchType: Closed Script info -Info 73 [16:02:46.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/decls/FnS.d.ts.map 500 undefined WatchType: Closed Script info +Info 70 [00:02:43.000] Search path: /user/username/projects/myproject/dependency +Info 71 [00:02:44.000] For info: /user/username/projects/myproject/dependency/FnS.ts :: Config file name: /user/username/projects/myproject/dependency/tsconfig.json +Info 72 [00:02:45.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/decls/FnS.d.ts 500 undefined WatchType: Closed Script info +Info 73 [00:02:46.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/decls/FnS.d.ts.map 500 undefined WatchType: Closed Script info After request PolledWatches:: @@ -722,7 +722,7 @@ FsWatchesRecursive:: /user/username/projects/myproject/random: {} -Info 74 [16:02:47.000] response: +Info 74 [00:02:47.000] response: { "response": { "info": { @@ -803,11 +803,11 @@ Info 74 [16:02:47.000] response: }, "responseRequired": true } -Info 75 [16:02:51.000] FileWatcher:: Triggered with /user/username/projects/myproject/decls/FnS.d.ts.map 1:: WatchInfo: /user/username/projects/myproject/decls/FnS.d.ts.map 500 undefined WatchType: Closed Script info -Info 76 [16:02:52.000] Scheduled: /user/username/projects/myproject/main/tsconfig.json -Info 77 [16:02:53.000] Scheduled: /user/username/projects/myproject/dependency/tsconfig.json -Info 78 [16:02:54.000] Scheduled: *ensureProjectForOpenFiles* -Info 79 [16:02:55.000] Elapsed:: *ms FileWatcher:: Triggered with /user/username/projects/myproject/decls/FnS.d.ts.map 1:: WatchInfo: /user/username/projects/myproject/decls/FnS.d.ts.map 500 undefined WatchType: Closed Script info +Info 75 [00:02:51.000] FileWatcher:: Triggered with /user/username/projects/myproject/decls/FnS.d.ts.map 1:: WatchInfo: /user/username/projects/myproject/decls/FnS.d.ts.map 500 undefined WatchType: Closed Script info +Info 76 [00:02:52.000] Scheduled: /user/username/projects/myproject/main/tsconfig.json +Info 77 [00:02:53.000] Scheduled: /user/username/projects/myproject/dependency/tsconfig.json +Info 78 [00:02:54.000] Scheduled: *ensureProjectForOpenFiles* +Info 79 [00:02:55.000] Elapsed:: *ms FileWatcher:: Triggered with /user/username/projects/myproject/decls/FnS.d.ts.map 1:: WatchInfo: /user/username/projects/myproject/decls/FnS.d.ts.map 500 undefined WatchType: Closed Script info Before running timeout callbacks //// [/user/username/projects/myproject/decls/FnS.d.ts.map] {"version":3,"file":"FnS.d.ts","sourceRoot":"","sources":["../dependency/FnS.ts"],"names":[],"mappings":"AAAA,wBAAgB,GAAG,SAAM;AACzB,wBAAgB,GAAG,SAAM;AACzB,wBAAgB,GAAG,SAAM;AACzB,wBAAgB,GAAG,SAAM;AACzB,wBAAgB,GAAG,SAAM;AACzB,eAAO,MAAM,CAAC,KAAK,CAAC"} @@ -847,54 +847,54 @@ FsWatchesRecursive:: /user/username/projects/myproject/random: {} -Info 80 [16:02:56.000] Running: /user/username/projects/myproject/main/tsconfig.json -Info 81 [16:02:57.000] Starting updateGraphWorker: Project: /user/username/projects/myproject/main/tsconfig.json -Info 82 [16:02:58.000] Finishing updateGraphWorker: Project: /user/username/projects/myproject/main/tsconfig.json Version: 2 structureChanged: false structureIsReused:: Completely Elapsed:: *ms -Info 83 [16:02:59.000] Different program with same set of files -Info 84 [16:03:00.000] Running: /user/username/projects/myproject/dependency/tsconfig.json -Info 85 [16:03:01.000] Starting updateGraphWorker: Project: /user/username/projects/myproject/dependency/tsconfig.json -Info 86 [16:03:02.000] Finishing updateGraphWorker: Project: /user/username/projects/myproject/dependency/tsconfig.json Version: 2 structureChanged: false structureIsReused:: Not Elapsed:: *ms -Info 87 [16:03:03.000] Running: *ensureProjectForOpenFiles* -Info 88 [16:03:04.000] Before ensureProjectForOpenFiles: -Info 89 [16:03:05.000] Project '/user/username/projects/myproject/main/tsconfig.json' (Configured) -Info 89 [16:03:06.000] Files (3) - -Info 89 [16:03:07.000] ----------------------------------------------- -Info 89 [16:03:08.000] Project '/user/username/projects/myproject/dependency/tsconfig.json' (Configured) -Info 89 [16:03:09.000] Files (2) - -Info 89 [16:03:10.000] ----------------------------------------------- -Info 89 [16:03:11.000] Project '/user/username/projects/myproject/random/tsconfig.json' (Configured) -Info 89 [16:03:12.000] Files (2) - -Info 89 [16:03:13.000] ----------------------------------------------- -Info 89 [16:03:14.000] Open files: -Info 89 [16:03:15.000] FileName: /user/username/projects/myproject/main/main.ts ProjectRootPath: undefined -Info 89 [16:03:16.000] Projects: /user/username/projects/myproject/main/tsconfig.json -Info 89 [16:03:17.000] FileName: /user/username/projects/myproject/dependency/FnS.ts ProjectRootPath: undefined -Info 89 [16:03:18.000] Projects: /user/username/projects/myproject/main/tsconfig.json,/user/username/projects/myproject/dependency/tsconfig.json -Info 89 [16:03:19.000] FileName: /user/username/projects/myproject/random/random.ts ProjectRootPath: undefined -Info 89 [16:03:20.000] Projects: /user/username/projects/myproject/random/tsconfig.json -Info 89 [16:03:21.000] After ensureProjectForOpenFiles: -Info 90 [16:03:22.000] Project '/user/username/projects/myproject/main/tsconfig.json' (Configured) -Info 90 [16:03:23.000] Files (3) - -Info 90 [16:03:24.000] ----------------------------------------------- -Info 90 [16:03:25.000] Project '/user/username/projects/myproject/dependency/tsconfig.json' (Configured) -Info 90 [16:03:26.000] Files (2) - -Info 90 [16:03:27.000] ----------------------------------------------- -Info 90 [16:03:28.000] Project '/user/username/projects/myproject/random/tsconfig.json' (Configured) -Info 90 [16:03:29.000] Files (2) - -Info 90 [16:03:30.000] ----------------------------------------------- -Info 90 [16:03:31.000] Open files: -Info 90 [16:03:32.000] FileName: /user/username/projects/myproject/main/main.ts ProjectRootPath: undefined -Info 90 [16:03:33.000] Projects: /user/username/projects/myproject/main/tsconfig.json -Info 90 [16:03:34.000] FileName: /user/username/projects/myproject/dependency/FnS.ts ProjectRootPath: undefined -Info 90 [16:03:35.000] Projects: /user/username/projects/myproject/main/tsconfig.json,/user/username/projects/myproject/dependency/tsconfig.json -Info 90 [16:03:36.000] FileName: /user/username/projects/myproject/random/random.ts ProjectRootPath: undefined -Info 90 [16:03:37.000] Projects: /user/username/projects/myproject/random/tsconfig.json +Info 80 [00:02:56.000] Running: /user/username/projects/myproject/main/tsconfig.json +Info 81 [00:02:57.000] Starting updateGraphWorker: Project: /user/username/projects/myproject/main/tsconfig.json +Info 82 [00:02:58.000] Finishing updateGraphWorker: Project: /user/username/projects/myproject/main/tsconfig.json Version: 2 structureChanged: false structureIsReused:: Completely Elapsed:: *ms +Info 83 [00:02:59.000] Different program with same set of files +Info 84 [00:03:00.000] Running: /user/username/projects/myproject/dependency/tsconfig.json +Info 85 [00:03:01.000] Starting updateGraphWorker: Project: /user/username/projects/myproject/dependency/tsconfig.json +Info 86 [00:03:02.000] Finishing updateGraphWorker: Project: /user/username/projects/myproject/dependency/tsconfig.json Version: 2 structureChanged: false structureIsReused:: Not Elapsed:: *ms +Info 87 [00:03:03.000] Running: *ensureProjectForOpenFiles* +Info 88 [00:03:04.000] Before ensureProjectForOpenFiles: +Info 89 [00:03:05.000] Project '/user/username/projects/myproject/main/tsconfig.json' (Configured) +Info 89 [00:03:06.000] Files (3) + +Info 89 [00:03:07.000] ----------------------------------------------- +Info 89 [00:03:08.000] Project '/user/username/projects/myproject/dependency/tsconfig.json' (Configured) +Info 89 [00:03:09.000] Files (2) + +Info 89 [00:03:10.000] ----------------------------------------------- +Info 89 [00:03:11.000] Project '/user/username/projects/myproject/random/tsconfig.json' (Configured) +Info 89 [00:03:12.000] Files (2) + +Info 89 [00:03:13.000] ----------------------------------------------- +Info 89 [00:03:14.000] Open files: +Info 89 [00:03:15.000] FileName: /user/username/projects/myproject/main/main.ts ProjectRootPath: undefined +Info 89 [00:03:16.000] Projects: /user/username/projects/myproject/main/tsconfig.json +Info 89 [00:03:17.000] FileName: /user/username/projects/myproject/dependency/FnS.ts ProjectRootPath: undefined +Info 89 [00:03:18.000] Projects: /user/username/projects/myproject/main/tsconfig.json,/user/username/projects/myproject/dependency/tsconfig.json +Info 89 [00:03:19.000] FileName: /user/username/projects/myproject/random/random.ts ProjectRootPath: undefined +Info 89 [00:03:20.000] Projects: /user/username/projects/myproject/random/tsconfig.json +Info 89 [00:03:21.000] After ensureProjectForOpenFiles: +Info 90 [00:03:22.000] Project '/user/username/projects/myproject/main/tsconfig.json' (Configured) +Info 90 [00:03:23.000] Files (3) + +Info 90 [00:03:24.000] ----------------------------------------------- +Info 90 [00:03:25.000] Project '/user/username/projects/myproject/dependency/tsconfig.json' (Configured) +Info 90 [00:03:26.000] Files (2) + +Info 90 [00:03:27.000] ----------------------------------------------- +Info 90 [00:03:28.000] Project '/user/username/projects/myproject/random/tsconfig.json' (Configured) +Info 90 [00:03:29.000] Files (2) + +Info 90 [00:03:30.000] ----------------------------------------------- +Info 90 [00:03:31.000] Open files: +Info 90 [00:03:32.000] FileName: /user/username/projects/myproject/main/main.ts ProjectRootPath: undefined +Info 90 [00:03:33.000] Projects: /user/username/projects/myproject/main/tsconfig.json +Info 90 [00:03:34.000] FileName: /user/username/projects/myproject/dependency/FnS.ts ProjectRootPath: undefined +Info 90 [00:03:35.000] Projects: /user/username/projects/myproject/main/tsconfig.json,/user/username/projects/myproject/dependency/tsconfig.json +Info 90 [00:03:36.000] FileName: /user/username/projects/myproject/random/random.ts ProjectRootPath: undefined +Info 90 [00:03:37.000] Projects: /user/username/projects/myproject/random/tsconfig.json After running timeout callbacks PolledWatches:: @@ -931,7 +931,7 @@ FsWatchesRecursive:: /user/username/projects/myproject/random: {} -Info 90 [16:03:38.000] request: +Info 90 [00:03:38.000] request: { "command": "definitionAndBoundSpan", "arguments": { @@ -1014,7 +1014,7 @@ FsWatchesRecursive:: /user/username/projects/myproject/random: {} -Info 91 [16:03:39.000] response: +Info 91 [00:03:39.000] response: { "response": { "definitions": [ @@ -1051,7 +1051,7 @@ Info 91 [16:03:39.000] response: }, "responseRequired": true } -Info 92 [16:03:40.000] request: +Info 92 [00:03:40.000] request: { "command": "definitionAndBoundSpan", "arguments": { @@ -1134,7 +1134,7 @@ FsWatchesRecursive:: /user/username/projects/myproject/random: {} -Info 93 [16:03:41.000] response: +Info 93 [00:03:41.000] response: { "response": { "definitions": [ @@ -1171,7 +1171,7 @@ Info 93 [16:03:41.000] response: }, "responseRequired": true } -Info 94 [16:03:42.000] request: +Info 94 [00:03:42.000] request: { "command": "definitionAndBoundSpan", "arguments": { @@ -1254,7 +1254,7 @@ FsWatchesRecursive:: /user/username/projects/myproject/random: {} -Info 95 [16:03:43.000] response: +Info 95 [00:03:43.000] response: { "response": { "definitions": [ @@ -1291,7 +1291,7 @@ Info 95 [16:03:43.000] response: }, "responseRequired": true } -Info 96 [16:03:44.000] request: +Info 96 [00:03:44.000] request: { "command": "definitionAndBoundSpan", "arguments": { @@ -1374,7 +1374,7 @@ FsWatchesRecursive:: /user/username/projects/myproject/random: {} -Info 97 [16:03:45.000] response: +Info 97 [00:03:45.000] response: { "response": { "definitions": [ @@ -1411,7 +1411,7 @@ Info 97 [16:03:45.000] response: }, "responseRequired": true } -Info 98 [16:03:46.000] request: +Info 98 [00:03:46.000] request: { "command": "definitionAndBoundSpan", "arguments": { @@ -1494,7 +1494,7 @@ FsWatchesRecursive:: /user/username/projects/myproject/random: {} -Info 99 [16:03:47.000] response: +Info 99 [00:03:47.000] response: { "response": { "definitions": [ @@ -1531,7 +1531,7 @@ Info 99 [16:03:47.000] response: }, "responseRequired": true } -Info 100 [16:03:48.000] request: +Info 100 [00:03:48.000] request: { "command": "rename", "arguments": { @@ -1578,8 +1578,8 @@ FsWatchesRecursive:: /user/username/projects/myproject/random: {} -Info 101 [16:03:49.000] Search path: /user/username/projects/myproject/dependency -Info 102 [16:03:50.000] For info: /user/username/projects/myproject/dependency/FnS.ts :: Config file name: /user/username/projects/myproject/dependency/tsconfig.json +Info 101 [00:03:49.000] Search path: /user/username/projects/myproject/dependency +Info 102 [00:03:50.000] For info: /user/username/projects/myproject/dependency/FnS.ts :: Config file name: /user/username/projects/myproject/dependency/tsconfig.json After request PolledWatches:: @@ -1616,7 +1616,7 @@ FsWatchesRecursive:: /user/username/projects/myproject/random: {} -Info 103 [16:03:51.000] response: +Info 103 [00:03:51.000] response: { "response": { "info": { @@ -1697,7 +1697,7 @@ Info 103 [16:03:51.000] response: }, "responseRequired": true } -Info 104 [16:03:52.000] request: +Info 104 [00:03:52.000] request: { "command": "rename", "arguments": { @@ -1744,8 +1744,8 @@ FsWatchesRecursive:: /user/username/projects/myproject/random: {} -Info 105 [16:03:53.000] Search path: /user/username/projects/myproject/dependency -Info 106 [16:03:54.000] For info: /user/username/projects/myproject/dependency/FnS.ts :: Config file name: /user/username/projects/myproject/dependency/tsconfig.json +Info 105 [00:03:53.000] Search path: /user/username/projects/myproject/dependency +Info 106 [00:03:54.000] For info: /user/username/projects/myproject/dependency/FnS.ts :: Config file name: /user/username/projects/myproject/dependency/tsconfig.json After request PolledWatches:: @@ -1782,7 +1782,7 @@ FsWatchesRecursive:: /user/username/projects/myproject/random: {} -Info 107 [16:03:55.000] response: +Info 107 [00:03:55.000] response: { "response": { "info": { @@ -1863,7 +1863,7 @@ Info 107 [16:03:55.000] response: }, "responseRequired": true } -Info 108 [16:03:56.000] request: +Info 108 [00:03:56.000] request: { "command": "rename", "arguments": { @@ -1910,8 +1910,8 @@ FsWatchesRecursive:: /user/username/projects/myproject/random: {} -Info 109 [16:03:57.000] Search path: /user/username/projects/myproject/dependency -Info 110 [16:03:58.000] For info: /user/username/projects/myproject/dependency/FnS.ts :: Config file name: /user/username/projects/myproject/dependency/tsconfig.json +Info 109 [00:03:57.000] Search path: /user/username/projects/myproject/dependency +Info 110 [00:03:58.000] For info: /user/username/projects/myproject/dependency/FnS.ts :: Config file name: /user/username/projects/myproject/dependency/tsconfig.json After request PolledWatches:: @@ -1948,7 +1948,7 @@ FsWatchesRecursive:: /user/username/projects/myproject/random: {} -Info 111 [16:03:59.000] response: +Info 111 [00:03:59.000] response: { "response": { "info": { @@ -2029,7 +2029,7 @@ Info 111 [16:03:59.000] response: }, "responseRequired": true } -Info 112 [16:04:00.000] request: +Info 112 [00:04:00.000] request: { "command": "rename", "arguments": { @@ -2076,8 +2076,8 @@ FsWatchesRecursive:: /user/username/projects/myproject/random: {} -Info 113 [16:04:01.000] Search path: /user/username/projects/myproject/dependency -Info 114 [16:04:02.000] For info: /user/username/projects/myproject/dependency/FnS.ts :: Config file name: /user/username/projects/myproject/dependency/tsconfig.json +Info 113 [00:04:01.000] Search path: /user/username/projects/myproject/dependency +Info 114 [00:04:02.000] For info: /user/username/projects/myproject/dependency/FnS.ts :: Config file name: /user/username/projects/myproject/dependency/tsconfig.json After request PolledWatches:: @@ -2114,7 +2114,7 @@ FsWatchesRecursive:: /user/username/projects/myproject/random: {} -Info 115 [16:04:03.000] response: +Info 115 [00:04:03.000] response: { "response": { "info": { @@ -2195,7 +2195,7 @@ Info 115 [16:04:03.000] response: }, "responseRequired": true } -Info 116 [16:04:04.000] request: +Info 116 [00:04:04.000] request: { "command": "rename", "arguments": { @@ -2242,8 +2242,8 @@ FsWatchesRecursive:: /user/username/projects/myproject/random: {} -Info 117 [16:04:05.000] Search path: /user/username/projects/myproject/dependency -Info 118 [16:04:06.000] For info: /user/username/projects/myproject/dependency/FnS.ts :: Config file name: /user/username/projects/myproject/dependency/tsconfig.json +Info 117 [00:04:05.000] Search path: /user/username/projects/myproject/dependency +Info 118 [00:04:06.000] For info: /user/username/projects/myproject/dependency/FnS.ts :: Config file name: /user/username/projects/myproject/dependency/tsconfig.json After request PolledWatches:: @@ -2280,7 +2280,7 @@ FsWatchesRecursive:: /user/username/projects/myproject/random: {} -Info 119 [16:04:07.000] response: +Info 119 [00:04:07.000] response: { "response": { "info": { 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 2cca71b34c53a..154b9b7027f69 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 @@ -1,5 +1,5 @@ -Info 0 [16:01:00.000] Provided types map file "/a/lib/typesMap.json" doesn't exist -Info 1 [16:01:01.000] request: +Info 0 [00:01:00.000] Provided types map file "/a/lib/typesMap.json" doesn't exist +Info 1 [00:01:01.000] request: { "seq": 0, "type": "request", @@ -200,11 +200,11 @@ FsWatches:: FsWatchesRecursive:: -Info 2 [16:01:02.000] Search path: /user/username/projects/myproject/main -Info 3 [16:01:03.000] For info: /user/username/projects/myproject/main/main.ts :: Config file name: /user/username/projects/myproject/main/tsconfig.json -Info 4 [16:01:04.000] Creating configuration project /user/username/projects/myproject/main/tsconfig.json -Info 5 [16:01:05.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/main/tsconfig.json 2000 undefined Project: /user/username/projects/myproject/main/tsconfig.json WatchType: Config file -Info 6 [16:01:06.000] Config: /user/username/projects/myproject/main/tsconfig.json : { +Info 2 [00:01:02.000] Search path: /user/username/projects/myproject/main +Info 3 [00:01:03.000] For info: /user/username/projects/myproject/main/main.ts :: Config file name: /user/username/projects/myproject/main/tsconfig.json +Info 4 [00:01:04.000] Creating configuration project /user/username/projects/myproject/main/tsconfig.json +Info 5 [00:01:05.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/main/tsconfig.json 2000 undefined Project: /user/username/projects/myproject/main/tsconfig.json WatchType: Config file +Info 6 [00:01:06.000] Config: /user/username/projects/myproject/main/tsconfig.json : { "rootNames": [ "/user/username/projects/myproject/main/main.ts" ], @@ -220,11 +220,11 @@ Info 6 [16:01:06.000] Config: /user/username/projects/myproject/main/tsconfig } ] } -Info 7 [16:01:07.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/main 1 undefined Config: /user/username/projects/myproject/main/tsconfig.json WatchType: Wild card directory -Info 8 [16:01:08.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/main 1 undefined Config: /user/username/projects/myproject/main/tsconfig.json WatchType: Wild card directory -Info 9 [16:01:09.000] Plugins were requested but not running in environment that supports 'require'. Nothing will be loaded -Info 10 [16:01:10.000] Starting updateGraphWorker: Project: /user/username/projects/myproject/main/tsconfig.json -Info 11 [16:01:11.000] Config: /user/username/projects/myproject/dependency/tsconfig.json : { +Info 7 [00:01:07.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/main 1 undefined Config: /user/username/projects/myproject/main/tsconfig.json WatchType: Wild card directory +Info 8 [00:01:08.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/main 1 undefined Config: /user/username/projects/myproject/main/tsconfig.json WatchType: Wild card directory +Info 9 [00:01:09.000] Plugins were requested but not running in environment that supports 'require'. Nothing will be loaded +Info 10 [00:01:10.000] Starting updateGraphWorker: Project: /user/username/projects/myproject/main/tsconfig.json +Info 11 [00:01:11.000] Config: /user/username/projects/myproject/dependency/tsconfig.json : { "rootNames": [ "/user/username/projects/myproject/dependency/FnS.ts" ], @@ -235,20 +235,20 @@ Info 11 [16:01:11.000] Config: /user/username/projects/myproject/dependency/ts "configFilePath": "/user/username/projects/myproject/dependency/tsconfig.json" } } -Info 12 [16:01:12.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/dependency/tsconfig.json 2000 undefined Project: /user/username/projects/myproject/main/tsconfig.json WatchType: Config file -Info 13 [16:01:13.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/dependency 1 undefined Config: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Wild card directory -Info 14 [16:01:14.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/dependency 1 undefined Config: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Wild card directory -Info 15 [16:01:15.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/decls 1 undefined Project: /user/username/projects/myproject/main/tsconfig.json WatchType: Failed Lookup Locations -Info 16 [16:01:16.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/decls 1 undefined Project: /user/username/projects/myproject/main/tsconfig.json WatchType: Failed Lookup Locations -Info 17 [16:01:17.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/dependency/FnS.ts 500 undefined WatchType: Closed Script info -Info 18 [16:01:18.000] FileWatcher:: Added:: WatchInfo: /a/lib/lib.d.ts 500 undefined WatchType: Closed Script info -Info 19 [16:01:19.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/main/node_modules/@types 1 undefined Project: /user/username/projects/myproject/main/tsconfig.json WatchType: Type roots -Info 20 [16:01:20.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/main/node_modules/@types 1 undefined Project: /user/username/projects/myproject/main/tsconfig.json WatchType: Type roots -Info 21 [16:01:21.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/main/tsconfig.json WatchType: Type roots -Info 22 [16:01:22.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/main/tsconfig.json WatchType: Type roots -Info 23 [16:01:23.000] Finishing updateGraphWorker: Project: /user/username/projects/myproject/main/tsconfig.json Version: 1 structureChanged: true structureIsReused:: Not Elapsed:: *ms -Info 24 [16:01:24.000] Project '/user/username/projects/myproject/main/tsconfig.json' (Configured) -Info 25 [16:01:25.000] Files (3) +Info 12 [00:01:12.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/dependency/tsconfig.json 2000 undefined Project: /user/username/projects/myproject/main/tsconfig.json WatchType: Config file +Info 13 [00:01:13.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/dependency 1 undefined Config: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Wild card directory +Info 14 [00:01:14.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/dependency 1 undefined Config: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Wild card directory +Info 15 [00:01:15.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/decls 1 undefined Project: /user/username/projects/myproject/main/tsconfig.json WatchType: Failed Lookup Locations +Info 16 [00:01:16.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/decls 1 undefined Project: /user/username/projects/myproject/main/tsconfig.json WatchType: Failed Lookup Locations +Info 17 [00:01:17.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/dependency/FnS.ts 500 undefined WatchType: Closed Script info +Info 18 [00:01:18.000] FileWatcher:: Added:: WatchInfo: /a/lib/lib.d.ts 500 undefined WatchType: Closed Script info +Info 19 [00:01:19.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/main/node_modules/@types 1 undefined Project: /user/username/projects/myproject/main/tsconfig.json WatchType: Type roots +Info 20 [00:01:20.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/main/node_modules/@types 1 undefined Project: /user/username/projects/myproject/main/tsconfig.json WatchType: Type roots +Info 21 [00:01:21.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/main/tsconfig.json WatchType: Type roots +Info 22 [00:01:22.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/main/tsconfig.json WatchType: Type roots +Info 23 [00:01:23.000] Finishing updateGraphWorker: Project: /user/username/projects/myproject/main/tsconfig.json Version: 1 structureChanged: true structureIsReused:: Not Elapsed:: *ms +Info 24 [00:01:24.000] Project '/user/username/projects/myproject/main/tsconfig.json' (Configured) +Info 25 [00:01:25.000] Files (3) /a/lib/lib.d.ts /user/username/projects/myproject/dependency/FnS.ts /user/username/projects/myproject/main/main.ts @@ -261,16 +261,16 @@ Info 25 [16:01:25.000] Files (3) main.ts Matched by default include pattern '**/*' -Info 26 [16:01:26.000] ----------------------------------------------- -Info 27 [16:01:27.000] Search path: /user/username/projects/myproject/main -Info 28 [16:01:28.000] For info: /user/username/projects/myproject/main/tsconfig.json :: No config files found. -Info 29 [16:01:29.000] Project '/user/username/projects/myproject/main/tsconfig.json' (Configured) -Info 29 [16:01:30.000] Files (3) +Info 26 [00:01:26.000] ----------------------------------------------- +Info 27 [00:01:27.000] Search path: /user/username/projects/myproject/main +Info 28 [00:01:28.000] For info: /user/username/projects/myproject/main/tsconfig.json :: No config files found. +Info 29 [00:01:29.000] Project '/user/username/projects/myproject/main/tsconfig.json' (Configured) +Info 29 [00:01:30.000] Files (3) -Info 29 [16:01:31.000] ----------------------------------------------- -Info 29 [16:01:32.000] Open files: -Info 29 [16:01:33.000] FileName: /user/username/projects/myproject/main/main.ts ProjectRootPath: undefined -Info 29 [16:01:34.000] Projects: /user/username/projects/myproject/main/tsconfig.json +Info 29 [00:01:31.000] ----------------------------------------------- +Info 29 [00:01:32.000] Open files: +Info 29 [00:01:33.000] FileName: /user/username/projects/myproject/main/main.ts ProjectRootPath: undefined +Info 29 [00:01:34.000] Projects: /user/username/projects/myproject/main/tsconfig.json After request PolledWatches:: @@ -297,11 +297,11 @@ FsWatchesRecursive:: /user/username/projects/myproject/decls: {} -Info 29 [16:01:35.000] response: +Info 29 [00:01:35.000] response: { "responseRequired": false } -Info 30 [16:01:36.000] request: +Info 30 [00:01:36.000] request: { "seq": 0, "type": "request", @@ -336,19 +336,19 @@ FsWatchesRecursive:: /user/username/projects/myproject/decls: {} -Info 31 [16:01:37.000] FileWatcher:: Close:: WatchInfo: /user/username/projects/myproject/dependency/FnS.ts 500 undefined WatchType: Closed Script info -Info 32 [16:01:38.000] Search path: /user/username/projects/myproject/dependency -Info 33 [16:01:39.000] For info: /user/username/projects/myproject/dependency/FnS.ts :: Config file name: /user/username/projects/myproject/dependency/tsconfig.json -Info 34 [16:01:40.000] Creating configuration project /user/username/projects/myproject/dependency/tsconfig.json -Info 35 [16:01:41.000] Plugins were requested but not running in environment that supports 'require'. Nothing will be loaded -Info 36 [16:01:42.000] Starting updateGraphWorker: Project: /user/username/projects/myproject/dependency/tsconfig.json -Info 37 [16:01:43.000] 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 38 [16:01:44.000] 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 39 [16:01:45.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Type roots -Info 40 [16:01:46.000] 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 41 [16:01:47.000] Finishing updateGraphWorker: Project: /user/username/projects/myproject/dependency/tsconfig.json Version: 1 structureChanged: true structureIsReused:: Not Elapsed:: *ms -Info 42 [16:01:48.000] Project '/user/username/projects/myproject/dependency/tsconfig.json' (Configured) -Info 43 [16:01:49.000] Files (2) +Info 31 [00:01:37.000] FileWatcher:: Close:: WatchInfo: /user/username/projects/myproject/dependency/FnS.ts 500 undefined WatchType: Closed Script info +Info 32 [00:01:38.000] Search path: /user/username/projects/myproject/dependency +Info 33 [00:01:39.000] For info: /user/username/projects/myproject/dependency/FnS.ts :: Config file name: /user/username/projects/myproject/dependency/tsconfig.json +Info 34 [00:01:40.000] Creating configuration project /user/username/projects/myproject/dependency/tsconfig.json +Info 35 [00:01:41.000] Plugins were requested but not running in environment that supports 'require'. Nothing will be loaded +Info 36 [00:01:42.000] Starting updateGraphWorker: Project: /user/username/projects/myproject/dependency/tsconfig.json +Info 37 [00:01:43.000] 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 38 [00:01:44.000] 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 39 [00:01:45.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Type roots +Info 40 [00:01:46.000] 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 41 [00:01:47.000] Finishing updateGraphWorker: Project: /user/username/projects/myproject/dependency/tsconfig.json Version: 1 structureChanged: true structureIsReused:: Not Elapsed:: *ms +Info 42 [00:01:48.000] Project '/user/username/projects/myproject/dependency/tsconfig.json' (Configured) +Info 43 [00:01:49.000] Files (2) /a/lib/lib.d.ts /user/username/projects/myproject/dependency/FnS.ts @@ -358,22 +358,22 @@ Info 43 [16:01:49.000] Files (2) FnS.ts Matched by default include pattern '**/*' -Info 44 [16:01:50.000] ----------------------------------------------- -Info 45 [16:01:51.000] Search path: /user/username/projects/myproject/dependency -Info 46 [16:01:52.000] For info: /user/username/projects/myproject/dependency/tsconfig.json :: No config files found. -Info 47 [16:01:53.000] Project '/user/username/projects/myproject/main/tsconfig.json' (Configured) -Info 47 [16:01:54.000] Files (3) - -Info 47 [16:01:55.000] ----------------------------------------------- -Info 47 [16:01:56.000] Project '/user/username/projects/myproject/dependency/tsconfig.json' (Configured) -Info 47 [16:01:57.000] Files (2) - -Info 47 [16:01:58.000] ----------------------------------------------- -Info 47 [16:01:59.000] Open files: -Info 47 [16:02:00.000] FileName: /user/username/projects/myproject/main/main.ts ProjectRootPath: undefined -Info 47 [16:02:01.000] Projects: /user/username/projects/myproject/main/tsconfig.json -Info 47 [16:02:02.000] FileName: /user/username/projects/myproject/dependency/FnS.ts ProjectRootPath: undefined -Info 47 [16:02:03.000] Projects: /user/username/projects/myproject/main/tsconfig.json,/user/username/projects/myproject/dependency/tsconfig.json +Info 44 [00:01:50.000] ----------------------------------------------- +Info 45 [00:01:51.000] Search path: /user/username/projects/myproject/dependency +Info 46 [00:01:52.000] For info: /user/username/projects/myproject/dependency/tsconfig.json :: No config files found. +Info 47 [00:01:53.000] Project '/user/username/projects/myproject/main/tsconfig.json' (Configured) +Info 47 [00:01:54.000] Files (3) + +Info 47 [00:01:55.000] ----------------------------------------------- +Info 47 [00:01:56.000] Project '/user/username/projects/myproject/dependency/tsconfig.json' (Configured) +Info 47 [00:01:57.000] Files (2) + +Info 47 [00:01:58.000] ----------------------------------------------- +Info 47 [00:01:59.000] Open files: +Info 47 [00:02:00.000] FileName: /user/username/projects/myproject/main/main.ts ProjectRootPath: undefined +Info 47 [00:02:01.000] Projects: /user/username/projects/myproject/main/tsconfig.json +Info 47 [00:02:02.000] FileName: /user/username/projects/myproject/dependency/FnS.ts ProjectRootPath: undefined +Info 47 [00:02:03.000] Projects: /user/username/projects/myproject/main/tsconfig.json,/user/username/projects/myproject/dependency/tsconfig.json After request PolledWatches:: @@ -400,11 +400,11 @@ FsWatchesRecursive:: /user/username/projects/myproject/decls: {} -Info 47 [16:02:04.000] response: +Info 47 [00:02:04.000] response: { "responseRequired": false } -Info 48 [16:02:05.000] request: +Info 48 [00:02:05.000] request: { "seq": 0, "type": "request", @@ -439,11 +439,11 @@ FsWatchesRecursive:: /user/username/projects/myproject/decls: {} -Info 49 [16:02:06.000] Search path: /user/username/projects/myproject/random -Info 50 [16:02:07.000] For info: /user/username/projects/myproject/random/random.ts :: Config file name: /user/username/projects/myproject/random/tsconfig.json -Info 51 [16:02:08.000] Creating configuration project /user/username/projects/myproject/random/tsconfig.json -Info 52 [16:02:09.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/random/tsconfig.json 2000 undefined Project: /user/username/projects/myproject/random/tsconfig.json WatchType: Config file -Info 53 [16:02:10.000] Config: /user/username/projects/myproject/random/tsconfig.json : { +Info 49 [00:02:06.000] Search path: /user/username/projects/myproject/random +Info 50 [00:02:07.000] For info: /user/username/projects/myproject/random/random.ts :: Config file name: /user/username/projects/myproject/random/tsconfig.json +Info 51 [00:02:08.000] Creating configuration project /user/username/projects/myproject/random/tsconfig.json +Info 52 [00:02:09.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/random/tsconfig.json 2000 undefined Project: /user/username/projects/myproject/random/tsconfig.json WatchType: Config file +Info 53 [00:02:10.000] Config: /user/username/projects/myproject/random/tsconfig.json : { "rootNames": [ "/user/username/projects/myproject/random/random.ts" ], @@ -451,17 +451,17 @@ Info 53 [16:02:10.000] Config: /user/username/projects/myproject/random/tsconf "configFilePath": "/user/username/projects/myproject/random/tsconfig.json" } } -Info 54 [16:02:11.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/random 1 undefined Config: /user/username/projects/myproject/random/tsconfig.json WatchType: Wild card directory -Info 55 [16:02:12.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/random 1 undefined Config: /user/username/projects/myproject/random/tsconfig.json WatchType: Wild card directory -Info 56 [16:02:13.000] Plugins were requested but not running in environment that supports 'require'. Nothing will be loaded -Info 57 [16:02:14.000] Starting updateGraphWorker: Project: /user/username/projects/myproject/random/tsconfig.json -Info 58 [16:02:15.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/random/node_modules/@types 1 undefined Project: /user/username/projects/myproject/random/tsconfig.json WatchType: Type roots -Info 59 [16:02:16.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/random/node_modules/@types 1 undefined Project: /user/username/projects/myproject/random/tsconfig.json WatchType: Type roots -Info 60 [16:02:17.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/random/tsconfig.json WatchType: Type roots -Info 61 [16:02:18.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/random/tsconfig.json WatchType: Type roots -Info 62 [16:02:19.000] Finishing updateGraphWorker: Project: /user/username/projects/myproject/random/tsconfig.json Version: 1 structureChanged: true structureIsReused:: Not Elapsed:: *ms -Info 63 [16:02:20.000] Project '/user/username/projects/myproject/random/tsconfig.json' (Configured) -Info 64 [16:02:21.000] Files (2) +Info 54 [00:02:11.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/random 1 undefined Config: /user/username/projects/myproject/random/tsconfig.json WatchType: Wild card directory +Info 55 [00:02:12.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/random 1 undefined Config: /user/username/projects/myproject/random/tsconfig.json WatchType: Wild card directory +Info 56 [00:02:13.000] Plugins were requested but not running in environment that supports 'require'. Nothing will be loaded +Info 57 [00:02:14.000] Starting updateGraphWorker: Project: /user/username/projects/myproject/random/tsconfig.json +Info 58 [00:02:15.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/random/node_modules/@types 1 undefined Project: /user/username/projects/myproject/random/tsconfig.json WatchType: Type roots +Info 59 [00:02:16.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/random/node_modules/@types 1 undefined Project: /user/username/projects/myproject/random/tsconfig.json WatchType: Type roots +Info 60 [00:02:17.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/random/tsconfig.json WatchType: Type roots +Info 61 [00:02:18.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/random/tsconfig.json WatchType: Type roots +Info 62 [00:02:19.000] Finishing updateGraphWorker: Project: /user/username/projects/myproject/random/tsconfig.json Version: 1 structureChanged: true structureIsReused:: Not Elapsed:: *ms +Info 63 [00:02:20.000] Project '/user/username/projects/myproject/random/tsconfig.json' (Configured) +Info 64 [00:02:21.000] Files (2) /a/lib/lib.d.ts /user/username/projects/myproject/random/random.ts @@ -471,26 +471,26 @@ Info 64 [16:02:21.000] Files (2) random.ts Matched by default include pattern '**/*' -Info 65 [16:02:22.000] ----------------------------------------------- -Info 66 [16:02:23.000] Project '/user/username/projects/myproject/main/tsconfig.json' (Configured) -Info 66 [16:02:24.000] Files (3) - -Info 66 [16:02:25.000] ----------------------------------------------- -Info 66 [16:02:26.000] Project '/user/username/projects/myproject/dependency/tsconfig.json' (Configured) -Info 66 [16:02:27.000] Files (2) - -Info 66 [16:02:28.000] ----------------------------------------------- -Info 66 [16:02:29.000] Project '/user/username/projects/myproject/random/tsconfig.json' (Configured) -Info 66 [16:02:30.000] Files (2) - -Info 66 [16:02:31.000] ----------------------------------------------- -Info 66 [16:02:32.000] Open files: -Info 66 [16:02:33.000] FileName: /user/username/projects/myproject/main/main.ts ProjectRootPath: undefined -Info 66 [16:02:34.000] Projects: /user/username/projects/myproject/main/tsconfig.json -Info 66 [16:02:35.000] FileName: /user/username/projects/myproject/dependency/FnS.ts ProjectRootPath: undefined -Info 66 [16:02:36.000] Projects: /user/username/projects/myproject/main/tsconfig.json,/user/username/projects/myproject/dependency/tsconfig.json -Info 66 [16:02:37.000] FileName: /user/username/projects/myproject/random/random.ts ProjectRootPath: undefined -Info 66 [16:02:38.000] Projects: /user/username/projects/myproject/random/tsconfig.json +Info 65 [00:02:22.000] ----------------------------------------------- +Info 66 [00:02:23.000] Project '/user/username/projects/myproject/main/tsconfig.json' (Configured) +Info 66 [00:02:24.000] Files (3) + +Info 66 [00:02:25.000] ----------------------------------------------- +Info 66 [00:02:26.000] Project '/user/username/projects/myproject/dependency/tsconfig.json' (Configured) +Info 66 [00:02:27.000] Files (2) + +Info 66 [00:02:28.000] ----------------------------------------------- +Info 66 [00:02:29.000] Project '/user/username/projects/myproject/random/tsconfig.json' (Configured) +Info 66 [00:02:30.000] Files (2) + +Info 66 [00:02:31.000] ----------------------------------------------- +Info 66 [00:02:32.000] Open files: +Info 66 [00:02:33.000] FileName: /user/username/projects/myproject/main/main.ts ProjectRootPath: undefined +Info 66 [00:02:34.000] Projects: /user/username/projects/myproject/main/tsconfig.json +Info 66 [00:02:35.000] FileName: /user/username/projects/myproject/dependency/FnS.ts ProjectRootPath: undefined +Info 66 [00:02:36.000] Projects: /user/username/projects/myproject/main/tsconfig.json,/user/username/projects/myproject/dependency/tsconfig.json +Info 66 [00:02:37.000] FileName: /user/username/projects/myproject/random/random.ts ProjectRootPath: undefined +Info 66 [00:02:38.000] Projects: /user/username/projects/myproject/random/tsconfig.json After request PolledWatches:: @@ -523,11 +523,11 @@ FsWatchesRecursive:: /user/username/projects/myproject/random: {} -Info 66 [16:02:39.000] response: +Info 66 [00:02:39.000] response: { "responseRequired": false } -Info 67 [16:02:40.000] request: +Info 67 [00:02:40.000] request: { "command": "definitionAndBoundSpan", "arguments": { @@ -602,7 +602,7 @@ FsWatchesRecursive:: /user/username/projects/myproject/random: {} -Info 68 [16:02:41.000] response: +Info 68 [00:02:41.000] response: { "response": { "definitions": [ @@ -639,7 +639,7 @@ Info 68 [16:02:41.000] response: }, "responseRequired": true } -Info 69 [16:02:42.000] request: +Info 69 [00:02:42.000] request: { "command": "rename", "arguments": { @@ -682,10 +682,10 @@ FsWatchesRecursive:: /user/username/projects/myproject/random: {} -Info 70 [16:02:43.000] Search path: /user/username/projects/myproject/dependency -Info 71 [16:02:44.000] For info: /user/username/projects/myproject/dependency/FnS.ts :: Config file name: /user/username/projects/myproject/dependency/tsconfig.json -Info 72 [16:02:45.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/decls/FnS.d.ts 500 undefined WatchType: Closed Script info -Info 73 [16:02:46.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/decls/FnS.d.ts.map 500 undefined WatchType: Closed Script info +Info 70 [00:02:43.000] Search path: /user/username/projects/myproject/dependency +Info 71 [00:02:44.000] For info: /user/username/projects/myproject/dependency/FnS.ts :: Config file name: /user/username/projects/myproject/dependency/tsconfig.json +Info 72 [00:02:45.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/decls/FnS.d.ts 500 undefined WatchType: Closed Script info +Info 73 [00:02:46.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/decls/FnS.d.ts.map 500 undefined WatchType: Closed Script info After request PolledWatches:: @@ -722,7 +722,7 @@ FsWatchesRecursive:: /user/username/projects/myproject/random: {} -Info 74 [16:02:47.000] response: +Info 74 [00:02:47.000] response: { "response": { "info": { @@ -803,12 +803,12 @@ Info 74 [16:02:47.000] response: }, "responseRequired": true } -Info 75 [16:02:51.000] FileWatcher:: Triggered with /user/username/projects/myproject/decls/FnS.d.ts.map 1:: WatchInfo: /user/username/projects/myproject/decls/FnS.d.ts.map 500 undefined WatchType: Closed Script info -Info 76 [16:02:52.000] Scheduled: /user/username/projects/myproject/main/tsconfig.json -Info 77 [16:02:53.000] Scheduled: /user/username/projects/myproject/dependency/tsconfig.json -Info 78 [16:02:54.000] Scheduled: *ensureProjectForOpenFiles* -Info 79 [16:02:55.000] Elapsed:: *ms FileWatcher:: Triggered with /user/username/projects/myproject/decls/FnS.d.ts.map 1:: WatchInfo: /user/username/projects/myproject/decls/FnS.d.ts.map 500 undefined WatchType: Closed Script info -Info 80 [16:02:56.000] request: +Info 75 [00:02:51.000] FileWatcher:: Triggered with /user/username/projects/myproject/decls/FnS.d.ts.map 1:: WatchInfo: /user/username/projects/myproject/decls/FnS.d.ts.map 500 undefined WatchType: Closed Script info +Info 76 [00:02:52.000] Scheduled: /user/username/projects/myproject/main/tsconfig.json +Info 77 [00:02:53.000] Scheduled: /user/username/projects/myproject/dependency/tsconfig.json +Info 78 [00:02:54.000] Scheduled: *ensureProjectForOpenFiles* +Info 79 [00:02:55.000] Elapsed:: *ms FileWatcher:: Triggered with /user/username/projects/myproject/decls/FnS.d.ts.map 1:: WatchInfo: /user/username/projects/myproject/decls/FnS.d.ts.map 500 undefined WatchType: Closed Script info +Info 80 [00:02:56.000] request: { "command": "definitionAndBoundSpan", "arguments": { @@ -858,9 +858,9 @@ FsWatchesRecursive:: /user/username/projects/myproject/random: {} -Info 81 [16:02:57.000] Starting updateGraphWorker: Project: /user/username/projects/myproject/main/tsconfig.json -Info 82 [16:02:58.000] Finishing updateGraphWorker: Project: /user/username/projects/myproject/main/tsconfig.json Version: 2 structureChanged: false structureIsReused:: Completely Elapsed:: *ms -Info 83 [16:02:59.000] Different program with same set of files +Info 81 [00:02:57.000] Starting updateGraphWorker: Project: /user/username/projects/myproject/main/tsconfig.json +Info 82 [00:02:58.000] Finishing updateGraphWorker: Project: /user/username/projects/myproject/main/tsconfig.json Version: 2 structureChanged: false structureIsReused:: Completely Elapsed:: *ms +Info 83 [00:02:59.000] Different program with same set of files After request PolledWatches:: @@ -897,7 +897,7 @@ FsWatchesRecursive:: /user/username/projects/myproject/random: {} -Info 84 [16:03:00.000] response: +Info 84 [00:03:00.000] response: { "response": { "definitions": [ @@ -934,7 +934,7 @@ Info 84 [16:03:00.000] response: }, "responseRequired": true } -Info 85 [16:03:01.000] request: +Info 85 [00:03:01.000] request: { "command": "definitionAndBoundSpan", "arguments": { @@ -1017,7 +1017,7 @@ FsWatchesRecursive:: /user/username/projects/myproject/random: {} -Info 86 [16:03:02.000] response: +Info 86 [00:03:02.000] response: { "response": { "definitions": [ @@ -1054,7 +1054,7 @@ Info 86 [16:03:02.000] response: }, "responseRequired": true } -Info 87 [16:03:03.000] request: +Info 87 [00:03:03.000] request: { "command": "definitionAndBoundSpan", "arguments": { @@ -1137,7 +1137,7 @@ FsWatchesRecursive:: /user/username/projects/myproject/random: {} -Info 88 [16:03:04.000] response: +Info 88 [00:03:04.000] response: { "response": { "definitions": [ @@ -1174,7 +1174,7 @@ Info 88 [16:03:04.000] response: }, "responseRequired": true } -Info 89 [16:03:05.000] request: +Info 89 [00:03:05.000] request: { "command": "definitionAndBoundSpan", "arguments": { @@ -1257,7 +1257,7 @@ FsWatchesRecursive:: /user/username/projects/myproject/random: {} -Info 90 [16:03:06.000] response: +Info 90 [00:03:06.000] response: { "response": { "definitions": [ @@ -1294,7 +1294,7 @@ Info 90 [16:03:06.000] response: }, "responseRequired": true } -Info 91 [16:03:07.000] request: +Info 91 [00:03:07.000] request: { "command": "definitionAndBoundSpan", "arguments": { @@ -1377,7 +1377,7 @@ FsWatchesRecursive:: /user/username/projects/myproject/random: {} -Info 92 [16:03:08.000] response: +Info 92 [00:03:08.000] response: { "response": { "definitions": [ @@ -1414,7 +1414,7 @@ Info 92 [16:03:08.000] response: }, "responseRequired": true } -Info 93 [16:03:09.000] request: +Info 93 [00:03:09.000] request: { "command": "rename", "arguments": { @@ -1461,10 +1461,10 @@ FsWatchesRecursive:: /user/username/projects/myproject/random: {} -Info 94 [16:03:10.000] Starting updateGraphWorker: Project: /user/username/projects/myproject/dependency/tsconfig.json -Info 95 [16:03:11.000] Finishing updateGraphWorker: Project: /user/username/projects/myproject/dependency/tsconfig.json Version: 2 structureChanged: false structureIsReused:: Not Elapsed:: *ms -Info 96 [16:03:12.000] Search path: /user/username/projects/myproject/dependency -Info 97 [16:03:13.000] For info: /user/username/projects/myproject/dependency/FnS.ts :: Config file name: /user/username/projects/myproject/dependency/tsconfig.json +Info 94 [00:03:10.000] Starting updateGraphWorker: Project: /user/username/projects/myproject/dependency/tsconfig.json +Info 95 [00:03:11.000] Finishing updateGraphWorker: Project: /user/username/projects/myproject/dependency/tsconfig.json Version: 2 structureChanged: false structureIsReused:: Not Elapsed:: *ms +Info 96 [00:03:12.000] Search path: /user/username/projects/myproject/dependency +Info 97 [00:03:13.000] For info: /user/username/projects/myproject/dependency/FnS.ts :: Config file name: /user/username/projects/myproject/dependency/tsconfig.json After request PolledWatches:: @@ -1501,7 +1501,7 @@ FsWatchesRecursive:: /user/username/projects/myproject/random: {} -Info 98 [16:03:14.000] response: +Info 98 [00:03:14.000] response: { "response": { "info": { @@ -1582,7 +1582,7 @@ Info 98 [16:03:14.000] response: }, "responseRequired": true } -Info 99 [16:03:15.000] request: +Info 99 [00:03:15.000] request: { "command": "rename", "arguments": { @@ -1629,8 +1629,8 @@ FsWatchesRecursive:: /user/username/projects/myproject/random: {} -Info 100 [16:03:16.000] Search path: /user/username/projects/myproject/dependency -Info 101 [16:03:17.000] For info: /user/username/projects/myproject/dependency/FnS.ts :: Config file name: /user/username/projects/myproject/dependency/tsconfig.json +Info 100 [00:03:16.000] Search path: /user/username/projects/myproject/dependency +Info 101 [00:03:17.000] For info: /user/username/projects/myproject/dependency/FnS.ts :: Config file name: /user/username/projects/myproject/dependency/tsconfig.json After request PolledWatches:: @@ -1667,7 +1667,7 @@ FsWatchesRecursive:: /user/username/projects/myproject/random: {} -Info 102 [16:03:18.000] response: +Info 102 [00:03:18.000] response: { "response": { "info": { @@ -1748,7 +1748,7 @@ Info 102 [16:03:18.000] response: }, "responseRequired": true } -Info 103 [16:03:19.000] request: +Info 103 [00:03:19.000] request: { "command": "rename", "arguments": { @@ -1795,8 +1795,8 @@ FsWatchesRecursive:: /user/username/projects/myproject/random: {} -Info 104 [16:03:20.000] Search path: /user/username/projects/myproject/dependency -Info 105 [16:03:21.000] For info: /user/username/projects/myproject/dependency/FnS.ts :: Config file name: /user/username/projects/myproject/dependency/tsconfig.json +Info 104 [00:03:20.000] Search path: /user/username/projects/myproject/dependency +Info 105 [00:03:21.000] For info: /user/username/projects/myproject/dependency/FnS.ts :: Config file name: /user/username/projects/myproject/dependency/tsconfig.json After request PolledWatches:: @@ -1833,7 +1833,7 @@ FsWatchesRecursive:: /user/username/projects/myproject/random: {} -Info 106 [16:03:22.000] response: +Info 106 [00:03:22.000] response: { "response": { "info": { @@ -1914,7 +1914,7 @@ Info 106 [16:03:22.000] response: }, "responseRequired": true } -Info 107 [16:03:23.000] request: +Info 107 [00:03:23.000] request: { "command": "rename", "arguments": { @@ -1961,8 +1961,8 @@ FsWatchesRecursive:: /user/username/projects/myproject/random: {} -Info 108 [16:03:24.000] Search path: /user/username/projects/myproject/dependency -Info 109 [16:03:25.000] For info: /user/username/projects/myproject/dependency/FnS.ts :: Config file name: /user/username/projects/myproject/dependency/tsconfig.json +Info 108 [00:03:24.000] Search path: /user/username/projects/myproject/dependency +Info 109 [00:03:25.000] For info: /user/username/projects/myproject/dependency/FnS.ts :: Config file name: /user/username/projects/myproject/dependency/tsconfig.json After request PolledWatches:: @@ -1999,7 +1999,7 @@ FsWatchesRecursive:: /user/username/projects/myproject/random: {} -Info 110 [16:03:26.000] response: +Info 110 [00:03:26.000] response: { "response": { "info": { @@ -2080,7 +2080,7 @@ Info 110 [16:03:26.000] response: }, "responseRequired": true } -Info 111 [16:03:27.000] request: +Info 111 [00:03:27.000] request: { "command": "rename", "arguments": { @@ -2127,8 +2127,8 @@ FsWatchesRecursive:: /user/username/projects/myproject/random: {} -Info 112 [16:03:28.000] Search path: /user/username/projects/myproject/dependency -Info 113 [16:03:29.000] For info: /user/username/projects/myproject/dependency/FnS.ts :: Config file name: /user/username/projects/myproject/dependency/tsconfig.json +Info 112 [00:03:28.000] Search path: /user/username/projects/myproject/dependency +Info 113 [00:03:29.000] For info: /user/username/projects/myproject/dependency/FnS.ts :: Config file name: /user/username/projects/myproject/dependency/tsconfig.json After request PolledWatches:: @@ -2165,7 +2165,7 @@ FsWatchesRecursive:: /user/username/projects/myproject/random: {} -Info 114 [16:03:30.000] response: +Info 114 [00:03:30.000] response: { "response": { "info": { 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 b22d8146e6f88..3ef46e05a2f38 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 @@ -1,5 +1,5 @@ -Info 0 [16:01:01.000] Provided types map file "/a/lib/typesMap.json" doesn't exist -Info 1 [16:01:02.000] request: +Info 0 [00:01:01.000] Provided types map file "/a/lib/typesMap.json" doesn't exist +Info 1 [00:01:02.000] request: { "seq": 0, "type": "request", @@ -197,11 +197,11 @@ FsWatches:: FsWatchesRecursive:: -Info 2 [16:01:03.000] Search path: /user/username/projects/myproject/main -Info 3 [16:01:04.000] For info: /user/username/projects/myproject/main/main.ts :: Config file name: /user/username/projects/myproject/main/tsconfig.json -Info 4 [16:01:05.000] Creating configuration project /user/username/projects/myproject/main/tsconfig.json -Info 5 [16:01:06.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/main/tsconfig.json 2000 undefined Project: /user/username/projects/myproject/main/tsconfig.json WatchType: Config file -Info 6 [16:01:07.000] Config: /user/username/projects/myproject/main/tsconfig.json : { +Info 2 [00:01:03.000] Search path: /user/username/projects/myproject/main +Info 3 [00:01:04.000] For info: /user/username/projects/myproject/main/main.ts :: Config file name: /user/username/projects/myproject/main/tsconfig.json +Info 4 [00:01:05.000] Creating configuration project /user/username/projects/myproject/main/tsconfig.json +Info 5 [00:01:06.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/main/tsconfig.json 2000 undefined Project: /user/username/projects/myproject/main/tsconfig.json WatchType: Config file +Info 6 [00:01:07.000] Config: /user/username/projects/myproject/main/tsconfig.json : { "rootNames": [ "/user/username/projects/myproject/main/main.ts" ], @@ -217,11 +217,11 @@ Info 6 [16:01:07.000] Config: /user/username/projects/myproject/main/tsconfig } ] } -Info 7 [16:01:08.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/main 1 undefined Config: /user/username/projects/myproject/main/tsconfig.json WatchType: Wild card directory -Info 8 [16:01:09.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/main 1 undefined Config: /user/username/projects/myproject/main/tsconfig.json WatchType: Wild card directory -Info 9 [16:01:10.000] Plugins were requested but not running in environment that supports 'require'. Nothing will be loaded -Info 10 [16:01:11.000] Starting updateGraphWorker: Project: /user/username/projects/myproject/main/tsconfig.json -Info 11 [16:01:12.000] Config: /user/username/projects/myproject/dependency/tsconfig.json : { +Info 7 [00:01:08.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/main 1 undefined Config: /user/username/projects/myproject/main/tsconfig.json WatchType: Wild card directory +Info 8 [00:01:09.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/main 1 undefined Config: /user/username/projects/myproject/main/tsconfig.json WatchType: Wild card directory +Info 9 [00:01:10.000] Plugins were requested but not running in environment that supports 'require'. Nothing will be loaded +Info 10 [00:01:11.000] Starting updateGraphWorker: Project: /user/username/projects/myproject/main/tsconfig.json +Info 11 [00:01:12.000] Config: /user/username/projects/myproject/dependency/tsconfig.json : { "rootNames": [ "/user/username/projects/myproject/dependency/FnS.ts" ], @@ -232,20 +232,20 @@ Info 11 [16:01:12.000] Config: /user/username/projects/myproject/dependency/ts "configFilePath": "/user/username/projects/myproject/dependency/tsconfig.json" } } -Info 12 [16:01:13.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/dependency/tsconfig.json 2000 undefined Project: /user/username/projects/myproject/main/tsconfig.json WatchType: Config file -Info 13 [16:01:14.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/dependency 1 undefined Config: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Wild card directory -Info 14 [16:01:15.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/dependency 1 undefined Config: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Wild card directory -Info 15 [16:01:16.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/decls 1 undefined Project: /user/username/projects/myproject/main/tsconfig.json WatchType: Failed Lookup Locations -Info 16 [16:01:17.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/decls 1 undefined Project: /user/username/projects/myproject/main/tsconfig.json WatchType: Failed Lookup Locations -Info 17 [16:01:18.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/dependency/FnS.ts 500 undefined WatchType: Closed Script info -Info 18 [16:01:19.000] FileWatcher:: Added:: WatchInfo: /a/lib/lib.d.ts 500 undefined WatchType: Closed Script info -Info 19 [16:01:20.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/main/node_modules/@types 1 undefined Project: /user/username/projects/myproject/main/tsconfig.json WatchType: Type roots -Info 20 [16:01:21.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/main/node_modules/@types 1 undefined Project: /user/username/projects/myproject/main/tsconfig.json WatchType: Type roots -Info 21 [16:01:22.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/main/tsconfig.json WatchType: Type roots -Info 22 [16:01:23.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/main/tsconfig.json WatchType: Type roots -Info 23 [16:01:24.000] Finishing updateGraphWorker: Project: /user/username/projects/myproject/main/tsconfig.json Version: 1 structureChanged: true structureIsReused:: Not Elapsed:: *ms -Info 24 [16:01:25.000] Project '/user/username/projects/myproject/main/tsconfig.json' (Configured) -Info 25 [16:01:26.000] Files (3) +Info 12 [00:01:13.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/dependency/tsconfig.json 2000 undefined Project: /user/username/projects/myproject/main/tsconfig.json WatchType: Config file +Info 13 [00:01:14.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/dependency 1 undefined Config: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Wild card directory +Info 14 [00:01:15.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/dependency 1 undefined Config: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Wild card directory +Info 15 [00:01:16.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/decls 1 undefined Project: /user/username/projects/myproject/main/tsconfig.json WatchType: Failed Lookup Locations +Info 16 [00:01:17.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/decls 1 undefined Project: /user/username/projects/myproject/main/tsconfig.json WatchType: Failed Lookup Locations +Info 17 [00:01:18.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/dependency/FnS.ts 500 undefined WatchType: Closed Script info +Info 18 [00:01:19.000] FileWatcher:: Added:: WatchInfo: /a/lib/lib.d.ts 500 undefined WatchType: Closed Script info +Info 19 [00:01:20.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/main/node_modules/@types 1 undefined Project: /user/username/projects/myproject/main/tsconfig.json WatchType: Type roots +Info 20 [00:01:21.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/main/node_modules/@types 1 undefined Project: /user/username/projects/myproject/main/tsconfig.json WatchType: Type roots +Info 21 [00:01:22.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/main/tsconfig.json WatchType: Type roots +Info 22 [00:01:23.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/main/tsconfig.json WatchType: Type roots +Info 23 [00:01:24.000] Finishing updateGraphWorker: Project: /user/username/projects/myproject/main/tsconfig.json Version: 1 structureChanged: true structureIsReused:: Not Elapsed:: *ms +Info 24 [00:01:25.000] Project '/user/username/projects/myproject/main/tsconfig.json' (Configured) +Info 25 [00:01:26.000] Files (3) /a/lib/lib.d.ts /user/username/projects/myproject/dependency/FnS.ts /user/username/projects/myproject/main/main.ts @@ -258,16 +258,16 @@ Info 25 [16:01:26.000] Files (3) main.ts Matched by default include pattern '**/*' -Info 26 [16:01:27.000] ----------------------------------------------- -Info 27 [16:01:28.000] Search path: /user/username/projects/myproject/main -Info 28 [16:01:29.000] For info: /user/username/projects/myproject/main/tsconfig.json :: No config files found. -Info 29 [16:01:30.000] Project '/user/username/projects/myproject/main/tsconfig.json' (Configured) -Info 29 [16:01:31.000] Files (3) +Info 26 [00:01:27.000] ----------------------------------------------- +Info 27 [00:01:28.000] Search path: /user/username/projects/myproject/main +Info 28 [00:01:29.000] For info: /user/username/projects/myproject/main/tsconfig.json :: No config files found. +Info 29 [00:01:30.000] Project '/user/username/projects/myproject/main/tsconfig.json' (Configured) +Info 29 [00:01:31.000] Files (3) -Info 29 [16:01:32.000] ----------------------------------------------- -Info 29 [16:01:33.000] Open files: -Info 29 [16:01:34.000] FileName: /user/username/projects/myproject/main/main.ts ProjectRootPath: undefined -Info 29 [16:01:35.000] Projects: /user/username/projects/myproject/main/tsconfig.json +Info 29 [00:01:32.000] ----------------------------------------------- +Info 29 [00:01:33.000] Open files: +Info 29 [00:01:34.000] FileName: /user/username/projects/myproject/main/main.ts ProjectRootPath: undefined +Info 29 [00:01:35.000] Projects: /user/username/projects/myproject/main/tsconfig.json After request PolledWatches:: @@ -294,11 +294,11 @@ FsWatchesRecursive:: /user/username/projects/myproject/decls: {} -Info 29 [16:01:36.000] response: +Info 29 [00:01:36.000] response: { "responseRequired": false } -Info 30 [16:01:37.000] request: +Info 30 [00:01:37.000] request: { "seq": 0, "type": "request", @@ -333,19 +333,19 @@ FsWatchesRecursive:: /user/username/projects/myproject/decls: {} -Info 31 [16:01:38.000] FileWatcher:: Close:: WatchInfo: /user/username/projects/myproject/dependency/FnS.ts 500 undefined WatchType: Closed Script info -Info 32 [16:01:39.000] Search path: /user/username/projects/myproject/dependency -Info 33 [16:01:40.000] For info: /user/username/projects/myproject/dependency/FnS.ts :: Config file name: /user/username/projects/myproject/dependency/tsconfig.json -Info 34 [16:01:41.000] Creating configuration project /user/username/projects/myproject/dependency/tsconfig.json -Info 35 [16:01:42.000] Plugins were requested but not running in environment that supports 'require'. Nothing will be loaded -Info 36 [16:01:43.000] Starting updateGraphWorker: Project: /user/username/projects/myproject/dependency/tsconfig.json -Info 37 [16:01:44.000] 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 38 [16:01:45.000] 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 39 [16:01:46.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Type roots -Info 40 [16:01:47.000] 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 41 [16:01:48.000] Finishing updateGraphWorker: Project: /user/username/projects/myproject/dependency/tsconfig.json Version: 1 structureChanged: true structureIsReused:: Not Elapsed:: *ms -Info 42 [16:01:49.000] Project '/user/username/projects/myproject/dependency/tsconfig.json' (Configured) -Info 43 [16:01:50.000] Files (2) +Info 31 [00:01:38.000] FileWatcher:: Close:: WatchInfo: /user/username/projects/myproject/dependency/FnS.ts 500 undefined WatchType: Closed Script info +Info 32 [00:01:39.000] Search path: /user/username/projects/myproject/dependency +Info 33 [00:01:40.000] For info: /user/username/projects/myproject/dependency/FnS.ts :: Config file name: /user/username/projects/myproject/dependency/tsconfig.json +Info 34 [00:01:41.000] Creating configuration project /user/username/projects/myproject/dependency/tsconfig.json +Info 35 [00:01:42.000] Plugins were requested but not running in environment that supports 'require'. Nothing will be loaded +Info 36 [00:01:43.000] Starting updateGraphWorker: Project: /user/username/projects/myproject/dependency/tsconfig.json +Info 37 [00:01:44.000] 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 38 [00:01:45.000] 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 39 [00:01:46.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Type roots +Info 40 [00:01:47.000] 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 41 [00:01:48.000] Finishing updateGraphWorker: Project: /user/username/projects/myproject/dependency/tsconfig.json Version: 1 structureChanged: true structureIsReused:: Not Elapsed:: *ms +Info 42 [00:01:49.000] Project '/user/username/projects/myproject/dependency/tsconfig.json' (Configured) +Info 43 [00:01:50.000] Files (2) /a/lib/lib.d.ts /user/username/projects/myproject/dependency/FnS.ts @@ -355,22 +355,22 @@ Info 43 [16:01:50.000] Files (2) FnS.ts Matched by default include pattern '**/*' -Info 44 [16:01:51.000] ----------------------------------------------- -Info 45 [16:01:52.000] Search path: /user/username/projects/myproject/dependency -Info 46 [16:01:53.000] For info: /user/username/projects/myproject/dependency/tsconfig.json :: No config files found. -Info 47 [16:01:54.000] Project '/user/username/projects/myproject/main/tsconfig.json' (Configured) -Info 47 [16:01:55.000] Files (3) - -Info 47 [16:01:56.000] ----------------------------------------------- -Info 47 [16:01:57.000] Project '/user/username/projects/myproject/dependency/tsconfig.json' (Configured) -Info 47 [16:01:58.000] Files (2) - -Info 47 [16:01:59.000] ----------------------------------------------- -Info 47 [16:02:00.000] Open files: -Info 47 [16:02:01.000] FileName: /user/username/projects/myproject/main/main.ts ProjectRootPath: undefined -Info 47 [16:02:02.000] Projects: /user/username/projects/myproject/main/tsconfig.json -Info 47 [16:02:03.000] FileName: /user/username/projects/myproject/dependency/FnS.ts ProjectRootPath: undefined -Info 47 [16:02:04.000] Projects: /user/username/projects/myproject/main/tsconfig.json,/user/username/projects/myproject/dependency/tsconfig.json +Info 44 [00:01:51.000] ----------------------------------------------- +Info 45 [00:01:52.000] Search path: /user/username/projects/myproject/dependency +Info 46 [00:01:53.000] For info: /user/username/projects/myproject/dependency/tsconfig.json :: No config files found. +Info 47 [00:01:54.000] Project '/user/username/projects/myproject/main/tsconfig.json' (Configured) +Info 47 [00:01:55.000] Files (3) + +Info 47 [00:01:56.000] ----------------------------------------------- +Info 47 [00:01:57.000] Project '/user/username/projects/myproject/dependency/tsconfig.json' (Configured) +Info 47 [00:01:58.000] Files (2) + +Info 47 [00:01:59.000] ----------------------------------------------- +Info 47 [00:02:00.000] Open files: +Info 47 [00:02:01.000] FileName: /user/username/projects/myproject/main/main.ts ProjectRootPath: undefined +Info 47 [00:02:02.000] Projects: /user/username/projects/myproject/main/tsconfig.json +Info 47 [00:02:03.000] FileName: /user/username/projects/myproject/dependency/FnS.ts ProjectRootPath: undefined +Info 47 [00:02:04.000] Projects: /user/username/projects/myproject/main/tsconfig.json,/user/username/projects/myproject/dependency/tsconfig.json After request PolledWatches:: @@ -397,11 +397,11 @@ FsWatchesRecursive:: /user/username/projects/myproject/decls: {} -Info 47 [16:02:05.000] response: +Info 47 [00:02:05.000] response: { "responseRequired": false } -Info 48 [16:02:06.000] request: +Info 48 [00:02:06.000] request: { "seq": 0, "type": "request", @@ -436,11 +436,11 @@ FsWatchesRecursive:: /user/username/projects/myproject/decls: {} -Info 49 [16:02:07.000] Search path: /user/username/projects/myproject/random -Info 50 [16:02:08.000] For info: /user/username/projects/myproject/random/random.ts :: Config file name: /user/username/projects/myproject/random/tsconfig.json -Info 51 [16:02:09.000] Creating configuration project /user/username/projects/myproject/random/tsconfig.json -Info 52 [16:02:10.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/random/tsconfig.json 2000 undefined Project: /user/username/projects/myproject/random/tsconfig.json WatchType: Config file -Info 53 [16:02:11.000] Config: /user/username/projects/myproject/random/tsconfig.json : { +Info 49 [00:02:07.000] Search path: /user/username/projects/myproject/random +Info 50 [00:02:08.000] For info: /user/username/projects/myproject/random/random.ts :: Config file name: /user/username/projects/myproject/random/tsconfig.json +Info 51 [00:02:09.000] Creating configuration project /user/username/projects/myproject/random/tsconfig.json +Info 52 [00:02:10.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/random/tsconfig.json 2000 undefined Project: /user/username/projects/myproject/random/tsconfig.json WatchType: Config file +Info 53 [00:02:11.000] Config: /user/username/projects/myproject/random/tsconfig.json : { "rootNames": [ "/user/username/projects/myproject/random/random.ts" ], @@ -448,17 +448,17 @@ Info 53 [16:02:11.000] Config: /user/username/projects/myproject/random/tsconf "configFilePath": "/user/username/projects/myproject/random/tsconfig.json" } } -Info 54 [16:02:12.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/random 1 undefined Config: /user/username/projects/myproject/random/tsconfig.json WatchType: Wild card directory -Info 55 [16:02:13.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/random 1 undefined Config: /user/username/projects/myproject/random/tsconfig.json WatchType: Wild card directory -Info 56 [16:02:14.000] Plugins were requested but not running in environment that supports 'require'. Nothing will be loaded -Info 57 [16:02:15.000] Starting updateGraphWorker: Project: /user/username/projects/myproject/random/tsconfig.json -Info 58 [16:02:16.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/random/node_modules/@types 1 undefined Project: /user/username/projects/myproject/random/tsconfig.json WatchType: Type roots -Info 59 [16:02:17.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/random/node_modules/@types 1 undefined Project: /user/username/projects/myproject/random/tsconfig.json WatchType: Type roots -Info 60 [16:02:18.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/random/tsconfig.json WatchType: Type roots -Info 61 [16:02:19.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/random/tsconfig.json WatchType: Type roots -Info 62 [16:02:20.000] Finishing updateGraphWorker: Project: /user/username/projects/myproject/random/tsconfig.json Version: 1 structureChanged: true structureIsReused:: Not Elapsed:: *ms -Info 63 [16:02:21.000] Project '/user/username/projects/myproject/random/tsconfig.json' (Configured) -Info 64 [16:02:22.000] Files (2) +Info 54 [00:02:12.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/random 1 undefined Config: /user/username/projects/myproject/random/tsconfig.json WatchType: Wild card directory +Info 55 [00:02:13.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/random 1 undefined Config: /user/username/projects/myproject/random/tsconfig.json WatchType: Wild card directory +Info 56 [00:02:14.000] Plugins were requested but not running in environment that supports 'require'. Nothing will be loaded +Info 57 [00:02:15.000] Starting updateGraphWorker: Project: /user/username/projects/myproject/random/tsconfig.json +Info 58 [00:02:16.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/random/node_modules/@types 1 undefined Project: /user/username/projects/myproject/random/tsconfig.json WatchType: Type roots +Info 59 [00:02:17.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/random/node_modules/@types 1 undefined Project: /user/username/projects/myproject/random/tsconfig.json WatchType: Type roots +Info 60 [00:02:18.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/random/tsconfig.json WatchType: Type roots +Info 61 [00:02:19.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/random/tsconfig.json WatchType: Type roots +Info 62 [00:02:20.000] Finishing updateGraphWorker: Project: /user/username/projects/myproject/random/tsconfig.json Version: 1 structureChanged: true structureIsReused:: Not Elapsed:: *ms +Info 63 [00:02:21.000] Project '/user/username/projects/myproject/random/tsconfig.json' (Configured) +Info 64 [00:02:22.000] Files (2) /a/lib/lib.d.ts /user/username/projects/myproject/random/random.ts @@ -468,26 +468,26 @@ Info 64 [16:02:22.000] Files (2) random.ts Matched by default include pattern '**/*' -Info 65 [16:02:23.000] ----------------------------------------------- -Info 66 [16:02:24.000] Project '/user/username/projects/myproject/main/tsconfig.json' (Configured) -Info 66 [16:02:25.000] Files (3) - -Info 66 [16:02:26.000] ----------------------------------------------- -Info 66 [16:02:27.000] Project '/user/username/projects/myproject/dependency/tsconfig.json' (Configured) -Info 66 [16:02:28.000] Files (2) - -Info 66 [16:02:29.000] ----------------------------------------------- -Info 66 [16:02:30.000] Project '/user/username/projects/myproject/random/tsconfig.json' (Configured) -Info 66 [16:02:31.000] Files (2) - -Info 66 [16:02:32.000] ----------------------------------------------- -Info 66 [16:02:33.000] Open files: -Info 66 [16:02:34.000] FileName: /user/username/projects/myproject/main/main.ts ProjectRootPath: undefined -Info 66 [16:02:35.000] Projects: /user/username/projects/myproject/main/tsconfig.json -Info 66 [16:02:36.000] FileName: /user/username/projects/myproject/dependency/FnS.ts ProjectRootPath: undefined -Info 66 [16:02:37.000] Projects: /user/username/projects/myproject/main/tsconfig.json,/user/username/projects/myproject/dependency/tsconfig.json -Info 66 [16:02:38.000] FileName: /user/username/projects/myproject/random/random.ts ProjectRootPath: undefined -Info 66 [16:02:39.000] Projects: /user/username/projects/myproject/random/tsconfig.json +Info 65 [00:02:23.000] ----------------------------------------------- +Info 66 [00:02:24.000] Project '/user/username/projects/myproject/main/tsconfig.json' (Configured) +Info 66 [00:02:25.000] Files (3) + +Info 66 [00:02:26.000] ----------------------------------------------- +Info 66 [00:02:27.000] Project '/user/username/projects/myproject/dependency/tsconfig.json' (Configured) +Info 66 [00:02:28.000] Files (2) + +Info 66 [00:02:29.000] ----------------------------------------------- +Info 66 [00:02:30.000] Project '/user/username/projects/myproject/random/tsconfig.json' (Configured) +Info 66 [00:02:31.000] Files (2) + +Info 66 [00:02:32.000] ----------------------------------------------- +Info 66 [00:02:33.000] Open files: +Info 66 [00:02:34.000] FileName: /user/username/projects/myproject/main/main.ts ProjectRootPath: undefined +Info 66 [00:02:35.000] Projects: /user/username/projects/myproject/main/tsconfig.json +Info 66 [00:02:36.000] FileName: /user/username/projects/myproject/dependency/FnS.ts ProjectRootPath: undefined +Info 66 [00:02:37.000] Projects: /user/username/projects/myproject/main/tsconfig.json,/user/username/projects/myproject/dependency/tsconfig.json +Info 66 [00:02:38.000] FileName: /user/username/projects/myproject/random/random.ts ProjectRootPath: undefined +Info 66 [00:02:39.000] Projects: /user/username/projects/myproject/random/tsconfig.json After request PolledWatches:: @@ -520,11 +520,11 @@ FsWatchesRecursive:: /user/username/projects/myproject/random: {} -Info 66 [16:02:40.000] response: +Info 66 [00:02:40.000] response: { "responseRequired": false } -Info 67 [16:02:41.000] request: +Info 67 [00:02:41.000] request: { "command": "definitionAndBoundSpan", "arguments": { @@ -599,7 +599,7 @@ FsWatchesRecursive:: /user/username/projects/myproject/random: {} -Info 68 [16:02:42.000] response: +Info 68 [00:02:42.000] response: { "response": { "definitions": [ @@ -636,7 +636,7 @@ Info 68 [16:02:42.000] response: }, "responseRequired": true } -Info 69 [16:02:43.000] request: +Info 69 [00:02:43.000] request: { "command": "rename", "arguments": { @@ -679,10 +679,10 @@ FsWatchesRecursive:: /user/username/projects/myproject/random: {} -Info 70 [16:02:44.000] Search path: /user/username/projects/myproject/dependency -Info 71 [16:02:45.000] For info: /user/username/projects/myproject/dependency/FnS.ts :: Config file name: /user/username/projects/myproject/dependency/tsconfig.json -Info 72 [16:02:46.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/decls/FnS.d.ts 500 undefined WatchType: Closed Script info -Info 73 [16:02:47.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/decls/FnS.d.ts.map 2000 undefined WatchType: Missing source map file +Info 70 [00:02:44.000] Search path: /user/username/projects/myproject/dependency +Info 71 [00:02:45.000] For info: /user/username/projects/myproject/dependency/FnS.ts :: Config file name: /user/username/projects/myproject/dependency/tsconfig.json +Info 72 [00:02:46.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/decls/FnS.d.ts 500 undefined WatchType: Closed Script info +Info 73 [00:02:47.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/decls/FnS.d.ts.map 2000 undefined WatchType: Missing source map file After request PolledWatches:: @@ -719,7 +719,7 @@ FsWatchesRecursive:: /user/username/projects/myproject/random: {} -Info 74 [16:02:48.000] response: +Info 74 [00:02:48.000] response: { "response": { "info": { @@ -800,15 +800,15 @@ Info 74 [16:02:48.000] response: }, "responseRequired": true } -Info 75 [16:02:51.000] FileWatcher:: Triggered with /user/username/projects/myproject/decls/FnS.d.ts.map 0:: WatchInfo: /user/username/projects/myproject/decls/FnS.d.ts.map 2000 undefined WatchType: Missing source map file -Info 76 [16:02:52.000] Scheduled: /user/username/projects/myproject/main/tsconfig.json -Info 77 [16:02:53.000] Scheduled: /user/username/projects/myproject/dependency/tsconfig.json -Info 78 [16:02:54.000] Scheduled: *ensureProjectForOpenFiles* -Info 79 [16:02:55.000] FileWatcher:: Close:: WatchInfo: /user/username/projects/myproject/decls/FnS.d.ts.map 2000 undefined WatchType: Missing source map file -Info 80 [16:02:56.000] Elapsed:: *ms FileWatcher:: Triggered with /user/username/projects/myproject/decls/FnS.d.ts.map 0:: WatchInfo: /user/username/projects/myproject/decls/FnS.d.ts.map 2000 undefined WatchType: Missing source map file -Info 81 [16:02:57.000] DirectoryWatcher:: Triggered with /user/username/projects/myproject/decls/FnS.d.ts.map :: WatchInfo: /user/username/projects/myproject/decls 1 undefined Project: /user/username/projects/myproject/main/tsconfig.json WatchType: Failed Lookup Locations -Info 82 [16:02:58.000] Elapsed:: *ms DirectoryWatcher:: Triggered with /user/username/projects/myproject/decls/FnS.d.ts.map :: WatchInfo: /user/username/projects/myproject/decls 1 undefined Project: /user/username/projects/myproject/main/tsconfig.json WatchType: Failed Lookup Locations -Info 83 [16:02:59.000] request: +Info 75 [00:02:51.000] FileWatcher:: Triggered with /user/username/projects/myproject/decls/FnS.d.ts.map 0:: WatchInfo: /user/username/projects/myproject/decls/FnS.d.ts.map 2000 undefined WatchType: Missing source map file +Info 76 [00:02:52.000] Scheduled: /user/username/projects/myproject/main/tsconfig.json +Info 77 [00:02:53.000] Scheduled: /user/username/projects/myproject/dependency/tsconfig.json +Info 78 [00:02:54.000] Scheduled: *ensureProjectForOpenFiles* +Info 79 [00:02:55.000] FileWatcher:: Close:: WatchInfo: /user/username/projects/myproject/decls/FnS.d.ts.map 2000 undefined WatchType: Missing source map file +Info 80 [00:02:56.000] Elapsed:: *ms FileWatcher:: Triggered with /user/username/projects/myproject/decls/FnS.d.ts.map 0:: WatchInfo: /user/username/projects/myproject/decls/FnS.d.ts.map 2000 undefined WatchType: Missing source map file +Info 81 [00:02:57.000] DirectoryWatcher:: Triggered with /user/username/projects/myproject/decls/FnS.d.ts.map :: WatchInfo: /user/username/projects/myproject/decls 1 undefined Project: /user/username/projects/myproject/main/tsconfig.json WatchType: Failed Lookup Locations +Info 82 [00:02:58.000] Elapsed:: *ms DirectoryWatcher:: Triggered with /user/username/projects/myproject/decls/FnS.d.ts.map :: WatchInfo: /user/username/projects/myproject/decls 1 undefined Project: /user/username/projects/myproject/main/tsconfig.json WatchType: Failed Lookup Locations +Info 83 [00:02:59.000] request: { "command": "definitionAndBoundSpan", "arguments": { @@ -856,9 +856,9 @@ FsWatchesRecursive:: /user/username/projects/myproject/random: {} -Info 84 [16:03:00.000] Starting updateGraphWorker: Project: /user/username/projects/myproject/main/tsconfig.json -Info 85 [16:03:01.000] Finishing updateGraphWorker: Project: /user/username/projects/myproject/main/tsconfig.json Version: 2 structureChanged: false structureIsReused:: Completely Elapsed:: *ms -Info 86 [16:03:02.000] Different program with same set of files +Info 84 [00:03:00.000] Starting updateGraphWorker: Project: /user/username/projects/myproject/main/tsconfig.json +Info 85 [00:03:01.000] Finishing updateGraphWorker: Project: /user/username/projects/myproject/main/tsconfig.json Version: 2 structureChanged: false structureIsReused:: Completely Elapsed:: *ms +Info 86 [00:03:02.000] Different program with same set of files After request PolledWatches:: @@ -893,7 +893,7 @@ FsWatchesRecursive:: /user/username/projects/myproject/random: {} -Info 87 [16:03:03.000] response: +Info 87 [00:03:03.000] response: { "response": { "definitions": [ @@ -930,7 +930,7 @@ Info 87 [16:03:03.000] response: }, "responseRequired": true } -Info 88 [16:03:04.000] request: +Info 88 [00:03:04.000] request: { "command": "definitionAndBoundSpan", "arguments": { @@ -1009,7 +1009,7 @@ FsWatchesRecursive:: /user/username/projects/myproject/random: {} -Info 89 [16:03:05.000] response: +Info 89 [00:03:05.000] response: { "response": { "definitions": [ @@ -1046,7 +1046,7 @@ Info 89 [16:03:05.000] response: }, "responseRequired": true } -Info 90 [16:03:06.000] request: +Info 90 [00:03:06.000] request: { "command": "definitionAndBoundSpan", "arguments": { @@ -1125,7 +1125,7 @@ FsWatchesRecursive:: /user/username/projects/myproject/random: {} -Info 91 [16:03:07.000] response: +Info 91 [00:03:07.000] response: { "response": { "definitions": [ @@ -1162,7 +1162,7 @@ Info 91 [16:03:07.000] response: }, "responseRequired": true } -Info 92 [16:03:08.000] request: +Info 92 [00:03:08.000] request: { "command": "definitionAndBoundSpan", "arguments": { @@ -1241,7 +1241,7 @@ FsWatchesRecursive:: /user/username/projects/myproject/random: {} -Info 93 [16:03:09.000] response: +Info 93 [00:03:09.000] response: { "response": { "definitions": [ @@ -1278,7 +1278,7 @@ Info 93 [16:03:09.000] response: }, "responseRequired": true } -Info 94 [16:03:10.000] request: +Info 94 [00:03:10.000] request: { "command": "definitionAndBoundSpan", "arguments": { @@ -1357,7 +1357,7 @@ FsWatchesRecursive:: /user/username/projects/myproject/random: {} -Info 95 [16:03:11.000] response: +Info 95 [00:03:11.000] response: { "response": { "definitions": [ @@ -1394,7 +1394,7 @@ Info 95 [16:03:11.000] response: }, "responseRequired": true } -Info 96 [16:03:12.000] request: +Info 96 [00:03:12.000] request: { "command": "rename", "arguments": { @@ -1439,11 +1439,11 @@ FsWatchesRecursive:: /user/username/projects/myproject/random: {} -Info 97 [16:03:13.000] Starting updateGraphWorker: Project: /user/username/projects/myproject/dependency/tsconfig.json -Info 98 [16:03:14.000] Finishing updateGraphWorker: Project: /user/username/projects/myproject/dependency/tsconfig.json Version: 2 structureChanged: false structureIsReused:: Not Elapsed:: *ms -Info 99 [16:03:15.000] Search path: /user/username/projects/myproject/dependency -Info 100 [16:03:16.000] For info: /user/username/projects/myproject/dependency/FnS.ts :: Config file name: /user/username/projects/myproject/dependency/tsconfig.json -Info 101 [16:03:17.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/decls/FnS.d.ts.map 500 undefined WatchType: Closed Script info +Info 97 [00:03:13.000] Starting updateGraphWorker: Project: /user/username/projects/myproject/dependency/tsconfig.json +Info 98 [00:03:14.000] Finishing updateGraphWorker: Project: /user/username/projects/myproject/dependency/tsconfig.json Version: 2 structureChanged: false structureIsReused:: Not Elapsed:: *ms +Info 99 [00:03:15.000] Search path: /user/username/projects/myproject/dependency +Info 100 [00:03:16.000] For info: /user/username/projects/myproject/dependency/FnS.ts :: Config file name: /user/username/projects/myproject/dependency/tsconfig.json +Info 101 [00:03:17.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/decls/FnS.d.ts.map 500 undefined WatchType: Closed Script info After request PolledWatches:: @@ -1480,7 +1480,7 @@ FsWatchesRecursive:: /user/username/projects/myproject/random: {} -Info 102 [16:03:18.000] response: +Info 102 [00:03:18.000] response: { "response": { "info": { @@ -1561,7 +1561,7 @@ Info 102 [16:03:18.000] response: }, "responseRequired": true } -Info 103 [16:03:19.000] request: +Info 103 [00:03:19.000] request: { "command": "rename", "arguments": { @@ -1608,8 +1608,8 @@ FsWatchesRecursive:: /user/username/projects/myproject/random: {} -Info 104 [16:03:20.000] Search path: /user/username/projects/myproject/dependency -Info 105 [16:03:21.000] For info: /user/username/projects/myproject/dependency/FnS.ts :: Config file name: /user/username/projects/myproject/dependency/tsconfig.json +Info 104 [00:03:20.000] Search path: /user/username/projects/myproject/dependency +Info 105 [00:03:21.000] For info: /user/username/projects/myproject/dependency/FnS.ts :: Config file name: /user/username/projects/myproject/dependency/tsconfig.json After request PolledWatches:: @@ -1646,7 +1646,7 @@ FsWatchesRecursive:: /user/username/projects/myproject/random: {} -Info 106 [16:03:22.000] response: +Info 106 [00:03:22.000] response: { "response": { "info": { @@ -1727,7 +1727,7 @@ Info 106 [16:03:22.000] response: }, "responseRequired": true } -Info 107 [16:03:23.000] request: +Info 107 [00:03:23.000] request: { "command": "rename", "arguments": { @@ -1774,8 +1774,8 @@ FsWatchesRecursive:: /user/username/projects/myproject/random: {} -Info 108 [16:03:24.000] Search path: /user/username/projects/myproject/dependency -Info 109 [16:03:25.000] For info: /user/username/projects/myproject/dependency/FnS.ts :: Config file name: /user/username/projects/myproject/dependency/tsconfig.json +Info 108 [00:03:24.000] Search path: /user/username/projects/myproject/dependency +Info 109 [00:03:25.000] For info: /user/username/projects/myproject/dependency/FnS.ts :: Config file name: /user/username/projects/myproject/dependency/tsconfig.json After request PolledWatches:: @@ -1812,7 +1812,7 @@ FsWatchesRecursive:: /user/username/projects/myproject/random: {} -Info 110 [16:03:26.000] response: +Info 110 [00:03:26.000] response: { "response": { "info": { @@ -1893,7 +1893,7 @@ Info 110 [16:03:26.000] response: }, "responseRequired": true } -Info 111 [16:03:27.000] request: +Info 111 [00:03:27.000] request: { "command": "rename", "arguments": { @@ -1940,8 +1940,8 @@ FsWatchesRecursive:: /user/username/projects/myproject/random: {} -Info 112 [16:03:28.000] Search path: /user/username/projects/myproject/dependency -Info 113 [16:03:29.000] For info: /user/username/projects/myproject/dependency/FnS.ts :: Config file name: /user/username/projects/myproject/dependency/tsconfig.json +Info 112 [00:03:28.000] Search path: /user/username/projects/myproject/dependency +Info 113 [00:03:29.000] For info: /user/username/projects/myproject/dependency/FnS.ts :: Config file name: /user/username/projects/myproject/dependency/tsconfig.json After request PolledWatches:: @@ -1978,7 +1978,7 @@ FsWatchesRecursive:: /user/username/projects/myproject/random: {} -Info 114 [16:03:30.000] response: +Info 114 [00:03:30.000] response: { "response": { "info": { @@ -2059,7 +2059,7 @@ Info 114 [16:03:30.000] response: }, "responseRequired": true } -Info 115 [16:03:31.000] request: +Info 115 [00:03:31.000] request: { "command": "rename", "arguments": { @@ -2106,8 +2106,8 @@ FsWatchesRecursive:: /user/username/projects/myproject/random: {} -Info 116 [16:03:32.000] Search path: /user/username/projects/myproject/dependency -Info 117 [16:03:33.000] For info: /user/username/projects/myproject/dependency/FnS.ts :: Config file name: /user/username/projects/myproject/dependency/tsconfig.json +Info 116 [00:03:32.000] Search path: /user/username/projects/myproject/dependency +Info 117 [00:03:33.000] For info: /user/username/projects/myproject/dependency/FnS.ts :: Config file name: /user/username/projects/myproject/dependency/tsconfig.json After request PolledWatches:: @@ -2144,7 +2144,7 @@ FsWatchesRecursive:: /user/username/projects/myproject/random: {} -Info 118 [16:03:34.000] response: +Info 118 [00:03:34.000] response: { "response": { "info": { @@ -2225,7 +2225,7 @@ Info 118 [16:03:34.000] response: }, "responseRequired": true } -Info 119 [16:03:35.000] request: +Info 119 [00:03:35.000] request: { "seq": 0, "type": "request", @@ -2270,24 +2270,24 @@ FsWatchesRecursive:: /user/username/projects/myproject/random: {} -Info 120 [16:03:36.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/random/random.ts 500 undefined WatchType: Closed Script info -Info 121 [16:03:37.000] Project '/user/username/projects/myproject/main/tsconfig.json' (Configured) -Info 121 [16:03:38.000] Files (3) +Info 120 [00:03:36.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/random/random.ts 500 undefined WatchType: Closed Script info +Info 121 [00:03:37.000] Project '/user/username/projects/myproject/main/tsconfig.json' (Configured) +Info 121 [00:03:38.000] Files (3) -Info 121 [16:03:39.000] ----------------------------------------------- -Info 121 [16:03:40.000] Project '/user/username/projects/myproject/dependency/tsconfig.json' (Configured) -Info 121 [16:03:41.000] Files (2) +Info 121 [00:03:39.000] ----------------------------------------------- +Info 121 [00:03:40.000] Project '/user/username/projects/myproject/dependency/tsconfig.json' (Configured) +Info 121 [00:03:41.000] Files (2) -Info 121 [16:03:42.000] ----------------------------------------------- -Info 121 [16:03:43.000] Project '/user/username/projects/myproject/random/tsconfig.json' (Configured) -Info 121 [16:03:44.000] Files (2) +Info 121 [00:03:42.000] ----------------------------------------------- +Info 121 [00:03:43.000] Project '/user/username/projects/myproject/random/tsconfig.json' (Configured) +Info 121 [00:03:44.000] Files (2) -Info 121 [16:03:45.000] ----------------------------------------------- -Info 121 [16:03:46.000] Open files: -Info 121 [16:03:47.000] FileName: /user/username/projects/myproject/main/main.ts ProjectRootPath: undefined -Info 121 [16:03:48.000] Projects: /user/username/projects/myproject/main/tsconfig.json -Info 121 [16:03:49.000] FileName: /user/username/projects/myproject/dependency/FnS.ts ProjectRootPath: undefined -Info 121 [16:03:50.000] Projects: /user/username/projects/myproject/main/tsconfig.json,/user/username/projects/myproject/dependency/tsconfig.json +Info 121 [00:03:45.000] ----------------------------------------------- +Info 121 [00:03:46.000] Open files: +Info 121 [00:03:47.000] FileName: /user/username/projects/myproject/main/main.ts ProjectRootPath: undefined +Info 121 [00:03:48.000] Projects: /user/username/projects/myproject/main/tsconfig.json +Info 121 [00:03:49.000] FileName: /user/username/projects/myproject/dependency/FnS.ts ProjectRootPath: undefined +Info 121 [00:03:50.000] Projects: /user/username/projects/myproject/main/tsconfig.json,/user/username/projects/myproject/dependency/tsconfig.json After request PolledWatches:: @@ -2326,11 +2326,11 @@ FsWatchesRecursive:: /user/username/projects/myproject/random: {} -Info 121 [16:03:51.000] response: +Info 121 [00:03:51.000] response: { "responseRequired": false } -Info 122 [16:03:52.000] request: +Info 122 [00:03:52.000] request: { "seq": 0, "type": "request", @@ -2377,28 +2377,28 @@ FsWatchesRecursive:: /user/username/projects/myproject/random: {} -Info 123 [16:03:53.000] FileWatcher:: Close:: WatchInfo: /user/username/projects/myproject/random/random.ts 500 undefined WatchType: Closed Script info -Info 124 [16:03:54.000] Search path: /user/username/projects/myproject/random -Info 125 [16:03:55.000] For info: /user/username/projects/myproject/random/random.ts :: Config file name: /user/username/projects/myproject/random/tsconfig.json -Info 126 [16:03:56.000] Project '/user/username/projects/myproject/main/tsconfig.json' (Configured) -Info 126 [16:03:57.000] Files (3) - -Info 126 [16:03:58.000] ----------------------------------------------- -Info 126 [16:03:59.000] Project '/user/username/projects/myproject/dependency/tsconfig.json' (Configured) -Info 126 [16:04:00.000] Files (2) - -Info 126 [16:04:01.000] ----------------------------------------------- -Info 126 [16:04:02.000] Project '/user/username/projects/myproject/random/tsconfig.json' (Configured) -Info 126 [16:04:03.000] Files (2) - -Info 126 [16:04:04.000] ----------------------------------------------- -Info 126 [16:04:05.000] Open files: -Info 126 [16:04:06.000] FileName: /user/username/projects/myproject/main/main.ts ProjectRootPath: undefined -Info 126 [16:04:07.000] Projects: /user/username/projects/myproject/main/tsconfig.json -Info 126 [16:04:08.000] FileName: /user/username/projects/myproject/dependency/FnS.ts ProjectRootPath: undefined -Info 126 [16:04:09.000] Projects: /user/username/projects/myproject/main/tsconfig.json,/user/username/projects/myproject/dependency/tsconfig.json -Info 126 [16:04:10.000] FileName: /user/username/projects/myproject/random/random.ts ProjectRootPath: undefined -Info 126 [16:04:11.000] Projects: /user/username/projects/myproject/random/tsconfig.json +Info 123 [00:03:53.000] FileWatcher:: Close:: WatchInfo: /user/username/projects/myproject/random/random.ts 500 undefined WatchType: Closed Script info +Info 124 [00:03:54.000] Search path: /user/username/projects/myproject/random +Info 125 [00:03:55.000] For info: /user/username/projects/myproject/random/random.ts :: Config file name: /user/username/projects/myproject/random/tsconfig.json +Info 126 [00:03:56.000] Project '/user/username/projects/myproject/main/tsconfig.json' (Configured) +Info 126 [00:03:57.000] Files (3) + +Info 126 [00:03:58.000] ----------------------------------------------- +Info 126 [00:03:59.000] Project '/user/username/projects/myproject/dependency/tsconfig.json' (Configured) +Info 126 [00:04:00.000] Files (2) + +Info 126 [00:04:01.000] ----------------------------------------------- +Info 126 [00:04:02.000] Project '/user/username/projects/myproject/random/tsconfig.json' (Configured) +Info 126 [00:04:03.000] Files (2) + +Info 126 [00:04:04.000] ----------------------------------------------- +Info 126 [00:04:05.000] Open files: +Info 126 [00:04:06.000] FileName: /user/username/projects/myproject/main/main.ts ProjectRootPath: undefined +Info 126 [00:04:07.000] Projects: /user/username/projects/myproject/main/tsconfig.json +Info 126 [00:04:08.000] FileName: /user/username/projects/myproject/dependency/FnS.ts ProjectRootPath: undefined +Info 126 [00:04:09.000] Projects: /user/username/projects/myproject/main/tsconfig.json,/user/username/projects/myproject/dependency/tsconfig.json +Info 126 [00:04:10.000] FileName: /user/username/projects/myproject/random/random.ts ProjectRootPath: undefined +Info 126 [00:04:11.000] Projects: /user/username/projects/myproject/random/tsconfig.json After request PolledWatches:: @@ -2435,11 +2435,11 @@ FsWatchesRecursive:: /user/username/projects/myproject/random: {} -Info 126 [16:04:12.000] response: +Info 126 [00:04:12.000] response: { "responseRequired": false } -Info 127 [16:04:13.000] request: +Info 127 [00:04:13.000] request: { "seq": 0, "type": "request", @@ -2484,24 +2484,24 @@ FsWatchesRecursive:: /user/username/projects/myproject/random: {} -Info 128 [16:04:14.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/main/main.ts 500 undefined WatchType: Closed Script info -Info 129 [16:04:15.000] Project '/user/username/projects/myproject/main/tsconfig.json' (Configured) -Info 129 [16:04:16.000] Files (3) +Info 128 [00:04:14.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/main/main.ts 500 undefined WatchType: Closed Script info +Info 129 [00:04:15.000] Project '/user/username/projects/myproject/main/tsconfig.json' (Configured) +Info 129 [00:04:16.000] Files (3) -Info 129 [16:04:17.000] ----------------------------------------------- -Info 129 [16:04:18.000] Project '/user/username/projects/myproject/dependency/tsconfig.json' (Configured) -Info 129 [16:04:19.000] Files (2) +Info 129 [00:04:17.000] ----------------------------------------------- +Info 129 [00:04:18.000] Project '/user/username/projects/myproject/dependency/tsconfig.json' (Configured) +Info 129 [00:04:19.000] Files (2) -Info 129 [16:04:20.000] ----------------------------------------------- -Info 129 [16:04:21.000] Project '/user/username/projects/myproject/random/tsconfig.json' (Configured) -Info 129 [16:04:22.000] Files (2) +Info 129 [00:04:20.000] ----------------------------------------------- +Info 129 [00:04:21.000] Project '/user/username/projects/myproject/random/tsconfig.json' (Configured) +Info 129 [00:04:22.000] Files (2) -Info 129 [16:04:23.000] ----------------------------------------------- -Info 129 [16:04:24.000] Open files: -Info 129 [16:04:25.000] FileName: /user/username/projects/myproject/dependency/FnS.ts ProjectRootPath: undefined -Info 129 [16:04:26.000] Projects: /user/username/projects/myproject/main/tsconfig.json,/user/username/projects/myproject/dependency/tsconfig.json -Info 129 [16:04:27.000] FileName: /user/username/projects/myproject/random/random.ts ProjectRootPath: undefined -Info 129 [16:04:28.000] Projects: /user/username/projects/myproject/random/tsconfig.json +Info 129 [00:04:23.000] ----------------------------------------------- +Info 129 [00:04:24.000] Open files: +Info 129 [00:04:25.000] FileName: /user/username/projects/myproject/dependency/FnS.ts ProjectRootPath: undefined +Info 129 [00:04:26.000] Projects: /user/username/projects/myproject/main/tsconfig.json,/user/username/projects/myproject/dependency/tsconfig.json +Info 129 [00:04:27.000] FileName: /user/username/projects/myproject/random/random.ts ProjectRootPath: undefined +Info 129 [00:04:28.000] Projects: /user/username/projects/myproject/random/tsconfig.json After request PolledWatches:: @@ -2540,11 +2540,11 @@ FsWatchesRecursive:: /user/username/projects/myproject/random: {} -Info 129 [16:04:29.000] response: +Info 129 [00:04:29.000] response: { "responseRequired": false } -Info 130 [16:04:30.000] request: +Info 130 [00:04:30.000] request: { "seq": 0, "type": "request", @@ -2591,22 +2591,22 @@ FsWatchesRecursive:: /user/username/projects/myproject/random: {} -Info 131 [16:04:31.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/dependency/FnS.ts 500 undefined WatchType: Closed Script info -Info 132 [16:04:32.000] Project '/user/username/projects/myproject/main/tsconfig.json' (Configured) -Info 132 [16:04:33.000] Files (3) +Info 131 [00:04:31.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/dependency/FnS.ts 500 undefined WatchType: Closed Script info +Info 132 [00:04:32.000] Project '/user/username/projects/myproject/main/tsconfig.json' (Configured) +Info 132 [00:04:33.000] Files (3) -Info 132 [16:04:34.000] ----------------------------------------------- -Info 132 [16:04:35.000] Project '/user/username/projects/myproject/dependency/tsconfig.json' (Configured) -Info 132 [16:04:36.000] Files (2) +Info 132 [00:04:34.000] ----------------------------------------------- +Info 132 [00:04:35.000] Project '/user/username/projects/myproject/dependency/tsconfig.json' (Configured) +Info 132 [00:04:36.000] Files (2) -Info 132 [16:04:37.000] ----------------------------------------------- -Info 132 [16:04:38.000] Project '/user/username/projects/myproject/random/tsconfig.json' (Configured) -Info 132 [16:04:39.000] Files (2) +Info 132 [00:04:37.000] ----------------------------------------------- +Info 132 [00:04:38.000] Project '/user/username/projects/myproject/random/tsconfig.json' (Configured) +Info 132 [00:04:39.000] Files (2) -Info 132 [16:04:40.000] ----------------------------------------------- -Info 132 [16:04:41.000] Open files: -Info 132 [16:04:42.000] FileName: /user/username/projects/myproject/random/random.ts ProjectRootPath: undefined -Info 132 [16:04:43.000] Projects: /user/username/projects/myproject/random/tsconfig.json +Info 132 [00:04:40.000] ----------------------------------------------- +Info 132 [00:04:41.000] Open files: +Info 132 [00:04:42.000] FileName: /user/username/projects/myproject/random/random.ts ProjectRootPath: undefined +Info 132 [00:04:43.000] Projects: /user/username/projects/myproject/random/tsconfig.json After request PolledWatches:: @@ -2647,11 +2647,11 @@ FsWatchesRecursive:: /user/username/projects/myproject/random: {} -Info 132 [16:04:44.000] response: +Info 132 [00:04:44.000] response: { "responseRequired": false } -Info 133 [16:04:45.000] request: +Info 133 [00:04:45.000] request: { "seq": 0, "type": "request", @@ -2700,20 +2700,20 @@ FsWatchesRecursive:: /user/username/projects/myproject/random: {} -Info 134 [16:04:46.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/random/random.ts 500 undefined WatchType: Closed Script info -Info 135 [16:04:47.000] Project '/user/username/projects/myproject/main/tsconfig.json' (Configured) -Info 135 [16:04:48.000] Files (3) +Info 134 [00:04:46.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/random/random.ts 500 undefined WatchType: Closed Script info +Info 135 [00:04:47.000] Project '/user/username/projects/myproject/main/tsconfig.json' (Configured) +Info 135 [00:04:48.000] Files (3) -Info 135 [16:04:49.000] ----------------------------------------------- -Info 135 [16:04:50.000] Project '/user/username/projects/myproject/dependency/tsconfig.json' (Configured) -Info 135 [16:04:51.000] Files (2) +Info 135 [00:04:49.000] ----------------------------------------------- +Info 135 [00:04:50.000] Project '/user/username/projects/myproject/dependency/tsconfig.json' (Configured) +Info 135 [00:04:51.000] Files (2) -Info 135 [16:04:52.000] ----------------------------------------------- -Info 135 [16:04:53.000] Project '/user/username/projects/myproject/random/tsconfig.json' (Configured) -Info 135 [16:04:54.000] Files (2) +Info 135 [00:04:52.000] ----------------------------------------------- +Info 135 [00:04:53.000] Project '/user/username/projects/myproject/random/tsconfig.json' (Configured) +Info 135 [00:04:54.000] Files (2) -Info 135 [16:04:55.000] ----------------------------------------------- -Info 135 [16:04:56.000] Open files: +Info 135 [00:04:55.000] ----------------------------------------------- +Info 135 [00:04:56.000] Open files: After request PolledWatches:: @@ -2756,11 +2756,11 @@ FsWatchesRecursive:: /user/username/projects/myproject/random: {} -Info 135 [16:04:57.000] response: +Info 135 [00:04:57.000] response: { "responseRequired": false } -Info 136 [16:04:58.000] request: +Info 136 [00:04:58.000] request: { "seq": 0, "type": "request", @@ -2811,12 +2811,12 @@ FsWatchesRecursive:: /user/username/projects/myproject/random: {} -Info 137 [16:04:59.000] FileWatcher:: Close:: WatchInfo: /user/username/projects/myproject/random/random.ts 500 undefined WatchType: Closed Script info -Info 138 [16:05:00.000] Search path: /user/username/projects/myproject/random -Info 139 [16:05:01.000] For info: /user/username/projects/myproject/random/random.ts :: Config file name: /user/username/projects/myproject/random/tsconfig.json -Info 140 [16:05:02.000] `remove Project:: -Info 141 [16:05:03.000] Project '/user/username/projects/myproject/main/tsconfig.json' (Configured) -Info 142 [16:05:04.000] Files (3) +Info 137 [00:04:59.000] FileWatcher:: Close:: WatchInfo: /user/username/projects/myproject/random/random.ts 500 undefined WatchType: Closed Script info +Info 138 [00:05:00.000] Search path: /user/username/projects/myproject/random +Info 139 [00:05:01.000] For info: /user/username/projects/myproject/random/random.ts :: Config file name: /user/username/projects/myproject/random/tsconfig.json +Info 140 [00:05:02.000] `remove Project:: +Info 141 [00:05:03.000] Project '/user/username/projects/myproject/main/tsconfig.json' (Configured) +Info 142 [00:05:04.000] Files (3) /a/lib/lib.d.ts /user/username/projects/myproject/dependency/FnS.ts /user/username/projects/myproject/main/main.ts @@ -2829,19 +2829,19 @@ Info 142 [16:05:04.000] Files (3) main.ts Matched by default include pattern '**/*' -Info 143 [16:05:05.000] ----------------------------------------------- -Info 144 [16:05:06.000] DirectoryWatcher:: Close:: WatchInfo: /user/username/projects/myproject/main 1 undefined Config: /user/username/projects/myproject/main/tsconfig.json WatchType: Wild card directory -Info 145 [16:05:07.000] 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 146 [16:05:08.000] FileWatcher:: Close:: WatchInfo: /user/username/projects/myproject/main/tsconfig.json 2000 undefined Project: /user/username/projects/myproject/main/tsconfig.json WatchType: Config file -Info 147 [16:05:09.000] DirectoryWatcher:: Close:: WatchInfo: /user/username/projects/myproject/decls 1 undefined Project: /user/username/projects/myproject/main/tsconfig.json WatchType: Failed Lookup Locations -Info 148 [16:05:10.000] 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 149 [16:05:11.000] 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 150 [16:05:12.000] 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 151 [16:05:13.000] DirectoryWatcher:: Close:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/main/tsconfig.json WatchType: Type roots -Info 152 [16:05:14.000] 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 153 [16:05:15.000] `remove Project:: -Info 154 [16:05:16.000] Project '/user/username/projects/myproject/dependency/tsconfig.json' (Configured) -Info 155 [16:05:17.000] Files (2) +Info 143 [00:05:05.000] ----------------------------------------------- +Info 144 [00:05:06.000] DirectoryWatcher:: Close:: WatchInfo: /user/username/projects/myproject/main 1 undefined Config: /user/username/projects/myproject/main/tsconfig.json WatchType: Wild card directory +Info 145 [00:05:07.000] 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 146 [00:05:08.000] FileWatcher:: Close:: WatchInfo: /user/username/projects/myproject/main/tsconfig.json 2000 undefined Project: /user/username/projects/myproject/main/tsconfig.json WatchType: Config file +Info 147 [00:05:09.000] DirectoryWatcher:: Close:: WatchInfo: /user/username/projects/myproject/decls 1 undefined Project: /user/username/projects/myproject/main/tsconfig.json WatchType: Failed Lookup Locations +Info 148 [00:05:10.000] 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 149 [00:05:11.000] 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 150 [00:05:12.000] 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 151 [00:05:13.000] DirectoryWatcher:: Close:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/main/tsconfig.json WatchType: Type roots +Info 152 [00:05:14.000] 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 153 [00:05:15.000] `remove Project:: +Info 154 [00:05:16.000] Project '/user/username/projects/myproject/dependency/tsconfig.json' (Configured) +Info 155 [00:05:17.000] Files (2) /a/lib/lib.d.ts /user/username/projects/myproject/dependency/FnS.ts @@ -2851,25 +2851,25 @@ Info 155 [16:05:17.000] Files (2) FnS.ts Matched by default include pattern '**/*' -Info 156 [16:05:18.000] ----------------------------------------------- -Info 157 [16:05:19.000] DirectoryWatcher:: Close:: WatchInfo: /user/username/projects/myproject/dependency 1 undefined Config: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Wild card directory -Info 158 [16:05:20.000] 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 159 [16:05:21.000] FileWatcher:: Close:: WatchInfo: /user/username/projects/myproject/dependency/tsconfig.json 2000 undefined Project: /user/username/projects/myproject/main/tsconfig.json WatchType: Config file -Info 160 [16:05:22.000] 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 161 [16:05:23.000] 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 162 [16:05:24.000] DirectoryWatcher:: Close:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Type roots -Info 163 [16:05:25.000] 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 164 [16:05:26.000] FileWatcher:: Close:: WatchInfo: /user/username/projects/myproject/main/main.ts 500 undefined WatchType: Closed Script info -Info 165 [16:05:27.000] FileWatcher:: Close:: WatchInfo: /user/username/projects/myproject/dependency/FnS.ts 500 undefined WatchType: Closed Script info -Info 166 [16:05:28.000] FileWatcher:: Close:: WatchInfo: /user/username/projects/myproject/decls/FnS.d.ts 500 undefined WatchType: Closed Script info -Info 167 [16:05:29.000] FileWatcher:: Close:: WatchInfo: /user/username/projects/myproject/decls/FnS.d.ts.map 500 undefined WatchType: Closed Script info -Info 168 [16:05:30.000] Project '/user/username/projects/myproject/random/tsconfig.json' (Configured) -Info 168 [16:05:31.000] Files (2) - -Info 168 [16:05:32.000] ----------------------------------------------- -Info 168 [16:05:33.000] Open files: -Info 168 [16:05:34.000] FileName: /user/username/projects/myproject/random/random.ts ProjectRootPath: undefined -Info 168 [16:05:35.000] Projects: /user/username/projects/myproject/random/tsconfig.json +Info 156 [00:05:18.000] ----------------------------------------------- +Info 157 [00:05:19.000] DirectoryWatcher:: Close:: WatchInfo: /user/username/projects/myproject/dependency 1 undefined Config: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Wild card directory +Info 158 [00:05:20.000] 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 159 [00:05:21.000] FileWatcher:: Close:: WatchInfo: /user/username/projects/myproject/dependency/tsconfig.json 2000 undefined Project: /user/username/projects/myproject/main/tsconfig.json WatchType: Config file +Info 160 [00:05:22.000] 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 161 [00:05:23.000] 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 162 [00:05:24.000] DirectoryWatcher:: Close:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Type roots +Info 163 [00:05:25.000] 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 164 [00:05:26.000] FileWatcher:: Close:: WatchInfo: /user/username/projects/myproject/main/main.ts 500 undefined WatchType: Closed Script info +Info 165 [00:05:27.000] FileWatcher:: Close:: WatchInfo: /user/username/projects/myproject/dependency/FnS.ts 500 undefined WatchType: Closed Script info +Info 166 [00:05:28.000] FileWatcher:: Close:: WatchInfo: /user/username/projects/myproject/decls/FnS.d.ts 500 undefined WatchType: Closed Script info +Info 167 [00:05:29.000] FileWatcher:: Close:: WatchInfo: /user/username/projects/myproject/decls/FnS.d.ts.map 500 undefined WatchType: Closed Script info +Info 168 [00:05:30.000] Project '/user/username/projects/myproject/random/tsconfig.json' (Configured) +Info 168 [00:05:31.000] Files (2) + +Info 168 [00:05:32.000] ----------------------------------------------- +Info 168 [00:05:33.000] Open files: +Info 168 [00:05:34.000] FileName: /user/username/projects/myproject/random/random.ts ProjectRootPath: undefined +Info 168 [00:05:35.000] Projects: /user/username/projects/myproject/random/tsconfig.json After request PolledWatches:: @@ -2888,7 +2888,7 @@ FsWatchesRecursive:: /user/username/projects/myproject/random: {} -Info 168 [16:05:36.000] response: +Info 168 [00:05:36.000] response: { "responseRequired": false } \ No newline at end of file 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 3eb81e349c212..dc560003c9609 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 @@ -1,5 +1,5 @@ -Info 0 [16:01:00.000] Provided types map file "/a/lib/typesMap.json" doesn't exist -Info 1 [16:01:01.000] request: +Info 0 [00:01:00.000] Provided types map file "/a/lib/typesMap.json" doesn't exist +Info 1 [00:01:01.000] request: { "seq": 0, "type": "request", @@ -200,11 +200,11 @@ FsWatches:: FsWatchesRecursive:: -Info 2 [16:01:02.000] Search path: /user/username/projects/myproject/main -Info 3 [16:01:03.000] For info: /user/username/projects/myproject/main/main.ts :: Config file name: /user/username/projects/myproject/main/tsconfig.json -Info 4 [16:01:04.000] Creating configuration project /user/username/projects/myproject/main/tsconfig.json -Info 5 [16:01:05.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/main/tsconfig.json 2000 undefined Project: /user/username/projects/myproject/main/tsconfig.json WatchType: Config file -Info 6 [16:01:06.000] Config: /user/username/projects/myproject/main/tsconfig.json : { +Info 2 [00:01:02.000] Search path: /user/username/projects/myproject/main +Info 3 [00:01:03.000] For info: /user/username/projects/myproject/main/main.ts :: Config file name: /user/username/projects/myproject/main/tsconfig.json +Info 4 [00:01:04.000] Creating configuration project /user/username/projects/myproject/main/tsconfig.json +Info 5 [00:01:05.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/main/tsconfig.json 2000 undefined Project: /user/username/projects/myproject/main/tsconfig.json WatchType: Config file +Info 6 [00:01:06.000] Config: /user/username/projects/myproject/main/tsconfig.json : { "rootNames": [ "/user/username/projects/myproject/main/main.ts" ], @@ -220,11 +220,11 @@ Info 6 [16:01:06.000] Config: /user/username/projects/myproject/main/tsconfig } ] } -Info 7 [16:01:07.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/main 1 undefined Config: /user/username/projects/myproject/main/tsconfig.json WatchType: Wild card directory -Info 8 [16:01:08.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/main 1 undefined Config: /user/username/projects/myproject/main/tsconfig.json WatchType: Wild card directory -Info 9 [16:01:09.000] Plugins were requested but not running in environment that supports 'require'. Nothing will be loaded -Info 10 [16:01:10.000] Starting updateGraphWorker: Project: /user/username/projects/myproject/main/tsconfig.json -Info 11 [16:01:11.000] Config: /user/username/projects/myproject/dependency/tsconfig.json : { +Info 7 [00:01:07.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/main 1 undefined Config: /user/username/projects/myproject/main/tsconfig.json WatchType: Wild card directory +Info 8 [00:01:08.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/main 1 undefined Config: /user/username/projects/myproject/main/tsconfig.json WatchType: Wild card directory +Info 9 [00:01:09.000] Plugins were requested but not running in environment that supports 'require'. Nothing will be loaded +Info 10 [00:01:10.000] Starting updateGraphWorker: Project: /user/username/projects/myproject/main/tsconfig.json +Info 11 [00:01:11.000] Config: /user/username/projects/myproject/dependency/tsconfig.json : { "rootNames": [ "/user/username/projects/myproject/dependency/FnS.ts" ], @@ -235,20 +235,20 @@ Info 11 [16:01:11.000] Config: /user/username/projects/myproject/dependency/ts "configFilePath": "/user/username/projects/myproject/dependency/tsconfig.json" } } -Info 12 [16:01:12.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/dependency/tsconfig.json 2000 undefined Project: /user/username/projects/myproject/main/tsconfig.json WatchType: Config file -Info 13 [16:01:13.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/dependency 1 undefined Config: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Wild card directory -Info 14 [16:01:14.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/dependency 1 undefined Config: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Wild card directory -Info 15 [16:01:15.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/decls 1 undefined Project: /user/username/projects/myproject/main/tsconfig.json WatchType: Failed Lookup Locations -Info 16 [16:01:16.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/decls 1 undefined Project: /user/username/projects/myproject/main/tsconfig.json WatchType: Failed Lookup Locations -Info 17 [16:01:17.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/dependency/FnS.ts 500 undefined WatchType: Closed Script info -Info 18 [16:01:18.000] FileWatcher:: Added:: WatchInfo: /a/lib/lib.d.ts 500 undefined WatchType: Closed Script info -Info 19 [16:01:19.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/main/node_modules/@types 1 undefined Project: /user/username/projects/myproject/main/tsconfig.json WatchType: Type roots -Info 20 [16:01:20.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/main/node_modules/@types 1 undefined Project: /user/username/projects/myproject/main/tsconfig.json WatchType: Type roots -Info 21 [16:01:21.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/main/tsconfig.json WatchType: Type roots -Info 22 [16:01:22.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/main/tsconfig.json WatchType: Type roots -Info 23 [16:01:23.000] Finishing updateGraphWorker: Project: /user/username/projects/myproject/main/tsconfig.json Version: 1 structureChanged: true structureIsReused:: Not Elapsed:: *ms -Info 24 [16:01:24.000] Project '/user/username/projects/myproject/main/tsconfig.json' (Configured) -Info 25 [16:01:25.000] Files (3) +Info 12 [00:01:12.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/dependency/tsconfig.json 2000 undefined Project: /user/username/projects/myproject/main/tsconfig.json WatchType: Config file +Info 13 [00:01:13.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/dependency 1 undefined Config: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Wild card directory +Info 14 [00:01:14.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/dependency 1 undefined Config: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Wild card directory +Info 15 [00:01:15.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/decls 1 undefined Project: /user/username/projects/myproject/main/tsconfig.json WatchType: Failed Lookup Locations +Info 16 [00:01:16.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/decls 1 undefined Project: /user/username/projects/myproject/main/tsconfig.json WatchType: Failed Lookup Locations +Info 17 [00:01:17.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/dependency/FnS.ts 500 undefined WatchType: Closed Script info +Info 18 [00:01:18.000] FileWatcher:: Added:: WatchInfo: /a/lib/lib.d.ts 500 undefined WatchType: Closed Script info +Info 19 [00:01:19.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/main/node_modules/@types 1 undefined Project: /user/username/projects/myproject/main/tsconfig.json WatchType: Type roots +Info 20 [00:01:20.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/main/node_modules/@types 1 undefined Project: /user/username/projects/myproject/main/tsconfig.json WatchType: Type roots +Info 21 [00:01:21.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/main/tsconfig.json WatchType: Type roots +Info 22 [00:01:22.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/main/tsconfig.json WatchType: Type roots +Info 23 [00:01:23.000] Finishing updateGraphWorker: Project: /user/username/projects/myproject/main/tsconfig.json Version: 1 structureChanged: true structureIsReused:: Not Elapsed:: *ms +Info 24 [00:01:24.000] Project '/user/username/projects/myproject/main/tsconfig.json' (Configured) +Info 25 [00:01:25.000] Files (3) /a/lib/lib.d.ts /user/username/projects/myproject/dependency/FnS.ts /user/username/projects/myproject/main/main.ts @@ -261,16 +261,16 @@ Info 25 [16:01:25.000] Files (3) main.ts Matched by default include pattern '**/*' -Info 26 [16:01:26.000] ----------------------------------------------- -Info 27 [16:01:27.000] Search path: /user/username/projects/myproject/main -Info 28 [16:01:28.000] For info: /user/username/projects/myproject/main/tsconfig.json :: No config files found. -Info 29 [16:01:29.000] Project '/user/username/projects/myproject/main/tsconfig.json' (Configured) -Info 29 [16:01:30.000] Files (3) +Info 26 [00:01:26.000] ----------------------------------------------- +Info 27 [00:01:27.000] Search path: /user/username/projects/myproject/main +Info 28 [00:01:28.000] For info: /user/username/projects/myproject/main/tsconfig.json :: No config files found. +Info 29 [00:01:29.000] Project '/user/username/projects/myproject/main/tsconfig.json' (Configured) +Info 29 [00:01:30.000] Files (3) -Info 29 [16:01:31.000] ----------------------------------------------- -Info 29 [16:01:32.000] Open files: -Info 29 [16:01:33.000] FileName: /user/username/projects/myproject/main/main.ts ProjectRootPath: undefined -Info 29 [16:01:34.000] Projects: /user/username/projects/myproject/main/tsconfig.json +Info 29 [00:01:31.000] ----------------------------------------------- +Info 29 [00:01:32.000] Open files: +Info 29 [00:01:33.000] FileName: /user/username/projects/myproject/main/main.ts ProjectRootPath: undefined +Info 29 [00:01:34.000] Projects: /user/username/projects/myproject/main/tsconfig.json After request PolledWatches:: @@ -297,11 +297,11 @@ FsWatchesRecursive:: /user/username/projects/myproject/decls: {} -Info 29 [16:01:35.000] response: +Info 29 [00:01:35.000] response: { "responseRequired": false } -Info 30 [16:01:36.000] request: +Info 30 [00:01:36.000] request: { "seq": 0, "type": "request", @@ -336,19 +336,19 @@ FsWatchesRecursive:: /user/username/projects/myproject/decls: {} -Info 31 [16:01:37.000] FileWatcher:: Close:: WatchInfo: /user/username/projects/myproject/dependency/FnS.ts 500 undefined WatchType: Closed Script info -Info 32 [16:01:38.000] Search path: /user/username/projects/myproject/dependency -Info 33 [16:01:39.000] For info: /user/username/projects/myproject/dependency/FnS.ts :: Config file name: /user/username/projects/myproject/dependency/tsconfig.json -Info 34 [16:01:40.000] Creating configuration project /user/username/projects/myproject/dependency/tsconfig.json -Info 35 [16:01:41.000] Plugins were requested but not running in environment that supports 'require'. Nothing will be loaded -Info 36 [16:01:42.000] Starting updateGraphWorker: Project: /user/username/projects/myproject/dependency/tsconfig.json -Info 37 [16:01:43.000] 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 38 [16:01:44.000] 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 39 [16:01:45.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Type roots -Info 40 [16:01:46.000] 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 41 [16:01:47.000] Finishing updateGraphWorker: Project: /user/username/projects/myproject/dependency/tsconfig.json Version: 1 structureChanged: true structureIsReused:: Not Elapsed:: *ms -Info 42 [16:01:48.000] Project '/user/username/projects/myproject/dependency/tsconfig.json' (Configured) -Info 43 [16:01:49.000] Files (2) +Info 31 [00:01:37.000] FileWatcher:: Close:: WatchInfo: /user/username/projects/myproject/dependency/FnS.ts 500 undefined WatchType: Closed Script info +Info 32 [00:01:38.000] Search path: /user/username/projects/myproject/dependency +Info 33 [00:01:39.000] For info: /user/username/projects/myproject/dependency/FnS.ts :: Config file name: /user/username/projects/myproject/dependency/tsconfig.json +Info 34 [00:01:40.000] Creating configuration project /user/username/projects/myproject/dependency/tsconfig.json +Info 35 [00:01:41.000] Plugins were requested but not running in environment that supports 'require'. Nothing will be loaded +Info 36 [00:01:42.000] Starting updateGraphWorker: Project: /user/username/projects/myproject/dependency/tsconfig.json +Info 37 [00:01:43.000] 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 38 [00:01:44.000] 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 39 [00:01:45.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Type roots +Info 40 [00:01:46.000] 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 41 [00:01:47.000] Finishing updateGraphWorker: Project: /user/username/projects/myproject/dependency/tsconfig.json Version: 1 structureChanged: true structureIsReused:: Not Elapsed:: *ms +Info 42 [00:01:48.000] Project '/user/username/projects/myproject/dependency/tsconfig.json' (Configured) +Info 43 [00:01:49.000] Files (2) /a/lib/lib.d.ts /user/username/projects/myproject/dependency/FnS.ts @@ -358,22 +358,22 @@ Info 43 [16:01:49.000] Files (2) FnS.ts Matched by default include pattern '**/*' -Info 44 [16:01:50.000] ----------------------------------------------- -Info 45 [16:01:51.000] Search path: /user/username/projects/myproject/dependency -Info 46 [16:01:52.000] For info: /user/username/projects/myproject/dependency/tsconfig.json :: No config files found. -Info 47 [16:01:53.000] Project '/user/username/projects/myproject/main/tsconfig.json' (Configured) -Info 47 [16:01:54.000] Files (3) - -Info 47 [16:01:55.000] ----------------------------------------------- -Info 47 [16:01:56.000] Project '/user/username/projects/myproject/dependency/tsconfig.json' (Configured) -Info 47 [16:01:57.000] Files (2) - -Info 47 [16:01:58.000] ----------------------------------------------- -Info 47 [16:01:59.000] Open files: -Info 47 [16:02:00.000] FileName: /user/username/projects/myproject/main/main.ts ProjectRootPath: undefined -Info 47 [16:02:01.000] Projects: /user/username/projects/myproject/main/tsconfig.json -Info 47 [16:02:02.000] FileName: /user/username/projects/myproject/dependency/FnS.ts ProjectRootPath: undefined -Info 47 [16:02:03.000] Projects: /user/username/projects/myproject/main/tsconfig.json,/user/username/projects/myproject/dependency/tsconfig.json +Info 44 [00:01:50.000] ----------------------------------------------- +Info 45 [00:01:51.000] Search path: /user/username/projects/myproject/dependency +Info 46 [00:01:52.000] For info: /user/username/projects/myproject/dependency/tsconfig.json :: No config files found. +Info 47 [00:01:53.000] Project '/user/username/projects/myproject/main/tsconfig.json' (Configured) +Info 47 [00:01:54.000] Files (3) + +Info 47 [00:01:55.000] ----------------------------------------------- +Info 47 [00:01:56.000] Project '/user/username/projects/myproject/dependency/tsconfig.json' (Configured) +Info 47 [00:01:57.000] Files (2) + +Info 47 [00:01:58.000] ----------------------------------------------- +Info 47 [00:01:59.000] Open files: +Info 47 [00:02:00.000] FileName: /user/username/projects/myproject/main/main.ts ProjectRootPath: undefined +Info 47 [00:02:01.000] Projects: /user/username/projects/myproject/main/tsconfig.json +Info 47 [00:02:02.000] FileName: /user/username/projects/myproject/dependency/FnS.ts ProjectRootPath: undefined +Info 47 [00:02:03.000] Projects: /user/username/projects/myproject/main/tsconfig.json,/user/username/projects/myproject/dependency/tsconfig.json After request PolledWatches:: @@ -400,11 +400,11 @@ FsWatchesRecursive:: /user/username/projects/myproject/decls: {} -Info 47 [16:02:04.000] response: +Info 47 [00:02:04.000] response: { "responseRequired": false } -Info 48 [16:02:05.000] request: +Info 48 [00:02:05.000] request: { "seq": 0, "type": "request", @@ -439,11 +439,11 @@ FsWatchesRecursive:: /user/username/projects/myproject/decls: {} -Info 49 [16:02:06.000] Search path: /user/username/projects/myproject/random -Info 50 [16:02:07.000] For info: /user/username/projects/myproject/random/random.ts :: Config file name: /user/username/projects/myproject/random/tsconfig.json -Info 51 [16:02:08.000] Creating configuration project /user/username/projects/myproject/random/tsconfig.json -Info 52 [16:02:09.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/random/tsconfig.json 2000 undefined Project: /user/username/projects/myproject/random/tsconfig.json WatchType: Config file -Info 53 [16:02:10.000] Config: /user/username/projects/myproject/random/tsconfig.json : { +Info 49 [00:02:06.000] Search path: /user/username/projects/myproject/random +Info 50 [00:02:07.000] For info: /user/username/projects/myproject/random/random.ts :: Config file name: /user/username/projects/myproject/random/tsconfig.json +Info 51 [00:02:08.000] Creating configuration project /user/username/projects/myproject/random/tsconfig.json +Info 52 [00:02:09.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/random/tsconfig.json 2000 undefined Project: /user/username/projects/myproject/random/tsconfig.json WatchType: Config file +Info 53 [00:02:10.000] Config: /user/username/projects/myproject/random/tsconfig.json : { "rootNames": [ "/user/username/projects/myproject/random/random.ts" ], @@ -451,17 +451,17 @@ Info 53 [16:02:10.000] Config: /user/username/projects/myproject/random/tsconf "configFilePath": "/user/username/projects/myproject/random/tsconfig.json" } } -Info 54 [16:02:11.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/random 1 undefined Config: /user/username/projects/myproject/random/tsconfig.json WatchType: Wild card directory -Info 55 [16:02:12.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/random 1 undefined Config: /user/username/projects/myproject/random/tsconfig.json WatchType: Wild card directory -Info 56 [16:02:13.000] Plugins were requested but not running in environment that supports 'require'. Nothing will be loaded -Info 57 [16:02:14.000] Starting updateGraphWorker: Project: /user/username/projects/myproject/random/tsconfig.json -Info 58 [16:02:15.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/random/node_modules/@types 1 undefined Project: /user/username/projects/myproject/random/tsconfig.json WatchType: Type roots -Info 59 [16:02:16.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/random/node_modules/@types 1 undefined Project: /user/username/projects/myproject/random/tsconfig.json WatchType: Type roots -Info 60 [16:02:17.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/random/tsconfig.json WatchType: Type roots -Info 61 [16:02:18.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/random/tsconfig.json WatchType: Type roots -Info 62 [16:02:19.000] Finishing updateGraphWorker: Project: /user/username/projects/myproject/random/tsconfig.json Version: 1 structureChanged: true structureIsReused:: Not Elapsed:: *ms -Info 63 [16:02:20.000] Project '/user/username/projects/myproject/random/tsconfig.json' (Configured) -Info 64 [16:02:21.000] Files (2) +Info 54 [00:02:11.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/random 1 undefined Config: /user/username/projects/myproject/random/tsconfig.json WatchType: Wild card directory +Info 55 [00:02:12.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/random 1 undefined Config: /user/username/projects/myproject/random/tsconfig.json WatchType: Wild card directory +Info 56 [00:02:13.000] Plugins were requested but not running in environment that supports 'require'. Nothing will be loaded +Info 57 [00:02:14.000] Starting updateGraphWorker: Project: /user/username/projects/myproject/random/tsconfig.json +Info 58 [00:02:15.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/random/node_modules/@types 1 undefined Project: /user/username/projects/myproject/random/tsconfig.json WatchType: Type roots +Info 59 [00:02:16.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/random/node_modules/@types 1 undefined Project: /user/username/projects/myproject/random/tsconfig.json WatchType: Type roots +Info 60 [00:02:17.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/random/tsconfig.json WatchType: Type roots +Info 61 [00:02:18.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/random/tsconfig.json WatchType: Type roots +Info 62 [00:02:19.000] Finishing updateGraphWorker: Project: /user/username/projects/myproject/random/tsconfig.json Version: 1 structureChanged: true structureIsReused:: Not Elapsed:: *ms +Info 63 [00:02:20.000] Project '/user/username/projects/myproject/random/tsconfig.json' (Configured) +Info 64 [00:02:21.000] Files (2) /a/lib/lib.d.ts /user/username/projects/myproject/random/random.ts @@ -471,26 +471,26 @@ Info 64 [16:02:21.000] Files (2) random.ts Matched by default include pattern '**/*' -Info 65 [16:02:22.000] ----------------------------------------------- -Info 66 [16:02:23.000] Project '/user/username/projects/myproject/main/tsconfig.json' (Configured) -Info 66 [16:02:24.000] Files (3) - -Info 66 [16:02:25.000] ----------------------------------------------- -Info 66 [16:02:26.000] Project '/user/username/projects/myproject/dependency/tsconfig.json' (Configured) -Info 66 [16:02:27.000] Files (2) - -Info 66 [16:02:28.000] ----------------------------------------------- -Info 66 [16:02:29.000] Project '/user/username/projects/myproject/random/tsconfig.json' (Configured) -Info 66 [16:02:30.000] Files (2) - -Info 66 [16:02:31.000] ----------------------------------------------- -Info 66 [16:02:32.000] Open files: -Info 66 [16:02:33.000] FileName: /user/username/projects/myproject/main/main.ts ProjectRootPath: undefined -Info 66 [16:02:34.000] Projects: /user/username/projects/myproject/main/tsconfig.json -Info 66 [16:02:35.000] FileName: /user/username/projects/myproject/dependency/FnS.ts ProjectRootPath: undefined -Info 66 [16:02:36.000] Projects: /user/username/projects/myproject/main/tsconfig.json,/user/username/projects/myproject/dependency/tsconfig.json -Info 66 [16:02:37.000] FileName: /user/username/projects/myproject/random/random.ts ProjectRootPath: undefined -Info 66 [16:02:38.000] Projects: /user/username/projects/myproject/random/tsconfig.json +Info 65 [00:02:22.000] ----------------------------------------------- +Info 66 [00:02:23.000] Project '/user/username/projects/myproject/main/tsconfig.json' (Configured) +Info 66 [00:02:24.000] Files (3) + +Info 66 [00:02:25.000] ----------------------------------------------- +Info 66 [00:02:26.000] Project '/user/username/projects/myproject/dependency/tsconfig.json' (Configured) +Info 66 [00:02:27.000] Files (2) + +Info 66 [00:02:28.000] ----------------------------------------------- +Info 66 [00:02:29.000] Project '/user/username/projects/myproject/random/tsconfig.json' (Configured) +Info 66 [00:02:30.000] Files (2) + +Info 66 [00:02:31.000] ----------------------------------------------- +Info 66 [00:02:32.000] Open files: +Info 66 [00:02:33.000] FileName: /user/username/projects/myproject/main/main.ts ProjectRootPath: undefined +Info 66 [00:02:34.000] Projects: /user/username/projects/myproject/main/tsconfig.json +Info 66 [00:02:35.000] FileName: /user/username/projects/myproject/dependency/FnS.ts ProjectRootPath: undefined +Info 66 [00:02:36.000] Projects: /user/username/projects/myproject/main/tsconfig.json,/user/username/projects/myproject/dependency/tsconfig.json +Info 66 [00:02:37.000] FileName: /user/username/projects/myproject/random/random.ts ProjectRootPath: undefined +Info 66 [00:02:38.000] Projects: /user/username/projects/myproject/random/tsconfig.json After request PolledWatches:: @@ -523,11 +523,11 @@ FsWatchesRecursive:: /user/username/projects/myproject/random: {} -Info 66 [16:02:39.000] response: +Info 66 [00:02:39.000] response: { "responseRequired": false } -Info 67 [16:02:40.000] request: +Info 67 [00:02:40.000] request: { "command": "definitionAndBoundSpan", "arguments": { @@ -602,7 +602,7 @@ FsWatchesRecursive:: /user/username/projects/myproject/random: {} -Info 68 [16:02:41.000] response: +Info 68 [00:02:41.000] response: { "response": { "definitions": [ @@ -639,7 +639,7 @@ Info 68 [16:02:41.000] response: }, "responseRequired": true } -Info 69 [16:02:42.000] request: +Info 69 [00:02:42.000] request: { "command": "rename", "arguments": { @@ -682,10 +682,10 @@ FsWatchesRecursive:: /user/username/projects/myproject/random: {} -Info 70 [16:02:43.000] Search path: /user/username/projects/myproject/dependency -Info 71 [16:02:44.000] For info: /user/username/projects/myproject/dependency/FnS.ts :: Config file name: /user/username/projects/myproject/dependency/tsconfig.json -Info 72 [16:02:45.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/decls/FnS.d.ts 500 undefined WatchType: Closed Script info -Info 73 [16:02:46.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/decls/FnS.d.ts.map 500 undefined WatchType: Closed Script info +Info 70 [00:02:43.000] Search path: /user/username/projects/myproject/dependency +Info 71 [00:02:44.000] For info: /user/username/projects/myproject/dependency/FnS.ts :: Config file name: /user/username/projects/myproject/dependency/tsconfig.json +Info 72 [00:02:45.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/decls/FnS.d.ts 500 undefined WatchType: Closed Script info +Info 73 [00:02:46.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/decls/FnS.d.ts.map 500 undefined WatchType: Closed Script info After request PolledWatches:: @@ -722,7 +722,7 @@ FsWatchesRecursive:: /user/username/projects/myproject/random: {} -Info 74 [16:02:47.000] response: +Info 74 [00:02:47.000] response: { "response": { "info": { @@ -803,15 +803,15 @@ Info 74 [16:02:47.000] response: }, "responseRequired": true } -Info 75 [16:02:49.000] FileWatcher:: Triggered with /user/username/projects/myproject/decls/FnS.d.ts.map 2:: WatchInfo: /user/username/projects/myproject/decls/FnS.d.ts.map 500 undefined WatchType: Closed Script info -Info 76 [16:02:50.000] FileWatcher:: Close:: WatchInfo: /user/username/projects/myproject/decls/FnS.d.ts.map 500 undefined WatchType: Closed Script info -Info 77 [16:02:51.000] Scheduled: /user/username/projects/myproject/main/tsconfig.json -Info 78 [16:02:52.000] Scheduled: /user/username/projects/myproject/dependency/tsconfig.json -Info 79 [16:02:53.000] Scheduled: *ensureProjectForOpenFiles* -Info 80 [16:02:54.000] Elapsed:: *ms FileWatcher:: Triggered with /user/username/projects/myproject/decls/FnS.d.ts.map 2:: WatchInfo: /user/username/projects/myproject/decls/FnS.d.ts.map 500 undefined WatchType: Closed Script info -Info 81 [16:02:55.000] DirectoryWatcher:: Triggered with /user/username/projects/myproject/decls/FnS.d.ts.map :: WatchInfo: /user/username/projects/myproject/decls 1 undefined Project: /user/username/projects/myproject/main/tsconfig.json WatchType: Failed Lookup Locations -Info 82 [16:02:56.000] Elapsed:: *ms DirectoryWatcher:: Triggered with /user/username/projects/myproject/decls/FnS.d.ts.map :: WatchInfo: /user/username/projects/myproject/decls 1 undefined Project: /user/username/projects/myproject/main/tsconfig.json WatchType: Failed Lookup Locations -Info 83 [16:02:57.000] request: +Info 75 [00:02:49.000] FileWatcher:: Triggered with /user/username/projects/myproject/decls/FnS.d.ts.map 2:: WatchInfo: /user/username/projects/myproject/decls/FnS.d.ts.map 500 undefined WatchType: Closed Script info +Info 76 [00:02:50.000] FileWatcher:: Close:: WatchInfo: /user/username/projects/myproject/decls/FnS.d.ts.map 500 undefined WatchType: Closed Script info +Info 77 [00:02:51.000] Scheduled: /user/username/projects/myproject/main/tsconfig.json +Info 78 [00:02:52.000] Scheduled: /user/username/projects/myproject/dependency/tsconfig.json +Info 79 [00:02:53.000] Scheduled: *ensureProjectForOpenFiles* +Info 80 [00:02:54.000] Elapsed:: *ms FileWatcher:: Triggered with /user/username/projects/myproject/decls/FnS.d.ts.map 2:: WatchInfo: /user/username/projects/myproject/decls/FnS.d.ts.map 500 undefined WatchType: Closed Script info +Info 81 [00:02:55.000] DirectoryWatcher:: Triggered with /user/username/projects/myproject/decls/FnS.d.ts.map :: WatchInfo: /user/username/projects/myproject/decls 1 undefined Project: /user/username/projects/myproject/main/tsconfig.json WatchType: Failed Lookup Locations +Info 82 [00:02:56.000] Elapsed:: *ms DirectoryWatcher:: Triggered with /user/username/projects/myproject/decls/FnS.d.ts.map :: WatchInfo: /user/username/projects/myproject/decls 1 undefined Project: /user/username/projects/myproject/main/tsconfig.json WatchType: Failed Lookup Locations +Info 83 [00:02:57.000] request: { "command": "definitionAndBoundSpan", "arguments": { @@ -857,9 +857,9 @@ FsWatchesRecursive:: /user/username/projects/myproject/random: {} -Info 84 [16:02:58.000] Starting updateGraphWorker: Project: /user/username/projects/myproject/main/tsconfig.json -Info 85 [16:02:59.000] Finishing updateGraphWorker: Project: /user/username/projects/myproject/main/tsconfig.json Version: 2 structureChanged: false structureIsReused:: Completely Elapsed:: *ms -Info 86 [16:03:00.000] Different program with same set of files +Info 84 [00:02:58.000] Starting updateGraphWorker: Project: /user/username/projects/myproject/main/tsconfig.json +Info 85 [00:02:59.000] Finishing updateGraphWorker: Project: /user/username/projects/myproject/main/tsconfig.json Version: 2 structureChanged: false structureIsReused:: Completely Elapsed:: *ms +Info 86 [00:03:00.000] Different program with same set of files After request PolledWatches:: @@ -894,7 +894,7 @@ FsWatchesRecursive:: /user/username/projects/myproject/random: {} -Info 87 [16:03:01.000] response: +Info 87 [00:03:01.000] response: { "response": { "definitions": [ @@ -931,7 +931,7 @@ Info 87 [16:03:01.000] response: }, "responseRequired": true } -Info 88 [16:03:02.000] request: +Info 88 [00:03:02.000] request: { "command": "definitionAndBoundSpan", "arguments": { @@ -1010,7 +1010,7 @@ FsWatchesRecursive:: /user/username/projects/myproject/random: {} -Info 89 [16:03:03.000] response: +Info 89 [00:03:03.000] response: { "response": { "definitions": [ @@ -1047,7 +1047,7 @@ Info 89 [16:03:03.000] response: }, "responseRequired": true } -Info 90 [16:03:04.000] request: +Info 90 [00:03:04.000] request: { "command": "definitionAndBoundSpan", "arguments": { @@ -1126,7 +1126,7 @@ FsWatchesRecursive:: /user/username/projects/myproject/random: {} -Info 91 [16:03:05.000] response: +Info 91 [00:03:05.000] response: { "response": { "definitions": [ @@ -1163,7 +1163,7 @@ Info 91 [16:03:05.000] response: }, "responseRequired": true } -Info 92 [16:03:06.000] request: +Info 92 [00:03:06.000] request: { "command": "definitionAndBoundSpan", "arguments": { @@ -1242,7 +1242,7 @@ FsWatchesRecursive:: /user/username/projects/myproject/random: {} -Info 93 [16:03:07.000] response: +Info 93 [00:03:07.000] response: { "response": { "definitions": [ @@ -1279,7 +1279,7 @@ Info 93 [16:03:07.000] response: }, "responseRequired": true } -Info 94 [16:03:08.000] request: +Info 94 [00:03:08.000] request: { "command": "definitionAndBoundSpan", "arguments": { @@ -1358,7 +1358,7 @@ FsWatchesRecursive:: /user/username/projects/myproject/random: {} -Info 95 [16:03:09.000] response: +Info 95 [00:03:09.000] response: { "response": { "definitions": [ @@ -1395,7 +1395,7 @@ Info 95 [16:03:09.000] response: }, "responseRequired": true } -Info 96 [16:03:10.000] request: +Info 96 [00:03:10.000] request: { "command": "rename", "arguments": { @@ -1440,11 +1440,11 @@ FsWatchesRecursive:: /user/username/projects/myproject/random: {} -Info 97 [16:03:11.000] Starting updateGraphWorker: Project: /user/username/projects/myproject/dependency/tsconfig.json -Info 98 [16:03:12.000] Finishing updateGraphWorker: Project: /user/username/projects/myproject/dependency/tsconfig.json Version: 2 structureChanged: false structureIsReused:: Not Elapsed:: *ms -Info 99 [16:03:13.000] Search path: /user/username/projects/myproject/dependency -Info 100 [16:03:14.000] For info: /user/username/projects/myproject/dependency/FnS.ts :: Config file name: /user/username/projects/myproject/dependency/tsconfig.json -Info 101 [16:03:15.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/decls/FnS.d.ts.map 2000 undefined WatchType: Missing source map file +Info 97 [00:03:11.000] Starting updateGraphWorker: Project: /user/username/projects/myproject/dependency/tsconfig.json +Info 98 [00:03:12.000] Finishing updateGraphWorker: Project: /user/username/projects/myproject/dependency/tsconfig.json Version: 2 structureChanged: false structureIsReused:: Not Elapsed:: *ms +Info 99 [00:03:13.000] Search path: /user/username/projects/myproject/dependency +Info 100 [00:03:14.000] For info: /user/username/projects/myproject/dependency/FnS.ts :: Config file name: /user/username/projects/myproject/dependency/tsconfig.json +Info 101 [00:03:15.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/decls/FnS.d.ts.map 2000 undefined WatchType: Missing source map file After request PolledWatches:: @@ -1481,7 +1481,7 @@ FsWatchesRecursive:: /user/username/projects/myproject/random: {} -Info 102 [16:03:16.000] response: +Info 102 [00:03:16.000] response: { "response": { "info": { @@ -1562,7 +1562,7 @@ Info 102 [16:03:16.000] response: }, "responseRequired": true } -Info 103 [16:03:17.000] request: +Info 103 [00:03:17.000] request: { "command": "rename", "arguments": { @@ -1609,8 +1609,8 @@ FsWatchesRecursive:: /user/username/projects/myproject/random: {} -Info 104 [16:03:18.000] Search path: /user/username/projects/myproject/dependency -Info 105 [16:03:19.000] For info: /user/username/projects/myproject/dependency/FnS.ts :: Config file name: /user/username/projects/myproject/dependency/tsconfig.json +Info 104 [00:03:18.000] Search path: /user/username/projects/myproject/dependency +Info 105 [00:03:19.000] For info: /user/username/projects/myproject/dependency/FnS.ts :: Config file name: /user/username/projects/myproject/dependency/tsconfig.json After request PolledWatches:: @@ -1647,7 +1647,7 @@ FsWatchesRecursive:: /user/username/projects/myproject/random: {} -Info 106 [16:03:20.000] response: +Info 106 [00:03:20.000] response: { "response": { "info": { @@ -1728,7 +1728,7 @@ Info 106 [16:03:20.000] response: }, "responseRequired": true } -Info 107 [16:03:21.000] request: +Info 107 [00:03:21.000] request: { "command": "rename", "arguments": { @@ -1775,8 +1775,8 @@ FsWatchesRecursive:: /user/username/projects/myproject/random: {} -Info 108 [16:03:22.000] Search path: /user/username/projects/myproject/dependency -Info 109 [16:03:23.000] For info: /user/username/projects/myproject/dependency/FnS.ts :: Config file name: /user/username/projects/myproject/dependency/tsconfig.json +Info 108 [00:03:22.000] Search path: /user/username/projects/myproject/dependency +Info 109 [00:03:23.000] For info: /user/username/projects/myproject/dependency/FnS.ts :: Config file name: /user/username/projects/myproject/dependency/tsconfig.json After request PolledWatches:: @@ -1813,7 +1813,7 @@ FsWatchesRecursive:: /user/username/projects/myproject/random: {} -Info 110 [16:03:24.000] response: +Info 110 [00:03:24.000] response: { "response": { "info": { @@ -1894,7 +1894,7 @@ Info 110 [16:03:24.000] response: }, "responseRequired": true } -Info 111 [16:03:25.000] request: +Info 111 [00:03:25.000] request: { "command": "rename", "arguments": { @@ -1941,8 +1941,8 @@ FsWatchesRecursive:: /user/username/projects/myproject/random: {} -Info 112 [16:03:26.000] Search path: /user/username/projects/myproject/dependency -Info 113 [16:03:27.000] For info: /user/username/projects/myproject/dependency/FnS.ts :: Config file name: /user/username/projects/myproject/dependency/tsconfig.json +Info 112 [00:03:26.000] Search path: /user/username/projects/myproject/dependency +Info 113 [00:03:27.000] For info: /user/username/projects/myproject/dependency/FnS.ts :: Config file name: /user/username/projects/myproject/dependency/tsconfig.json After request PolledWatches:: @@ -1979,7 +1979,7 @@ FsWatchesRecursive:: /user/username/projects/myproject/random: {} -Info 114 [16:03:28.000] response: +Info 114 [00:03:28.000] response: { "response": { "info": { @@ -2060,7 +2060,7 @@ Info 114 [16:03:28.000] response: }, "responseRequired": true } -Info 115 [16:03:29.000] request: +Info 115 [00:03:29.000] request: { "command": "rename", "arguments": { @@ -2107,8 +2107,8 @@ FsWatchesRecursive:: /user/username/projects/myproject/random: {} -Info 116 [16:03:30.000] Search path: /user/username/projects/myproject/dependency -Info 117 [16:03:31.000] For info: /user/username/projects/myproject/dependency/FnS.ts :: Config file name: /user/username/projects/myproject/dependency/tsconfig.json +Info 116 [00:03:30.000] Search path: /user/username/projects/myproject/dependency +Info 117 [00:03:31.000] For info: /user/username/projects/myproject/dependency/FnS.ts :: Config file name: /user/username/projects/myproject/dependency/tsconfig.json After request PolledWatches:: @@ -2145,7 +2145,7 @@ FsWatchesRecursive:: /user/username/projects/myproject/random: {} -Info 118 [16:03:32.000] response: +Info 118 [00:03:32.000] response: { "response": { "info": { @@ -2226,7 +2226,7 @@ Info 118 [16:03:32.000] response: }, "responseRequired": true } -Info 119 [16:03:33.000] request: +Info 119 [00:03:33.000] request: { "seq": 0, "type": "request", @@ -2271,24 +2271,24 @@ FsWatchesRecursive:: /user/username/projects/myproject/random: {} -Info 120 [16:03:34.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/random/random.ts 500 undefined WatchType: Closed Script info -Info 121 [16:03:35.000] Project '/user/username/projects/myproject/main/tsconfig.json' (Configured) -Info 121 [16:03:36.000] Files (3) +Info 120 [00:03:34.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/random/random.ts 500 undefined WatchType: Closed Script info +Info 121 [00:03:35.000] Project '/user/username/projects/myproject/main/tsconfig.json' (Configured) +Info 121 [00:03:36.000] Files (3) -Info 121 [16:03:37.000] ----------------------------------------------- -Info 121 [16:03:38.000] Project '/user/username/projects/myproject/dependency/tsconfig.json' (Configured) -Info 121 [16:03:39.000] Files (2) +Info 121 [00:03:37.000] ----------------------------------------------- +Info 121 [00:03:38.000] Project '/user/username/projects/myproject/dependency/tsconfig.json' (Configured) +Info 121 [00:03:39.000] Files (2) -Info 121 [16:03:40.000] ----------------------------------------------- -Info 121 [16:03:41.000] Project '/user/username/projects/myproject/random/tsconfig.json' (Configured) -Info 121 [16:03:42.000] Files (2) +Info 121 [00:03:40.000] ----------------------------------------------- +Info 121 [00:03:41.000] Project '/user/username/projects/myproject/random/tsconfig.json' (Configured) +Info 121 [00:03:42.000] Files (2) -Info 121 [16:03:43.000] ----------------------------------------------- -Info 121 [16:03:44.000] Open files: -Info 121 [16:03:45.000] FileName: /user/username/projects/myproject/main/main.ts ProjectRootPath: undefined -Info 121 [16:03:46.000] Projects: /user/username/projects/myproject/main/tsconfig.json -Info 121 [16:03:47.000] FileName: /user/username/projects/myproject/dependency/FnS.ts ProjectRootPath: undefined -Info 121 [16:03:48.000] Projects: /user/username/projects/myproject/main/tsconfig.json,/user/username/projects/myproject/dependency/tsconfig.json +Info 121 [00:03:43.000] ----------------------------------------------- +Info 121 [00:03:44.000] Open files: +Info 121 [00:03:45.000] FileName: /user/username/projects/myproject/main/main.ts ProjectRootPath: undefined +Info 121 [00:03:46.000] Projects: /user/username/projects/myproject/main/tsconfig.json +Info 121 [00:03:47.000] FileName: /user/username/projects/myproject/dependency/FnS.ts ProjectRootPath: undefined +Info 121 [00:03:48.000] Projects: /user/username/projects/myproject/main/tsconfig.json,/user/username/projects/myproject/dependency/tsconfig.json After request PolledWatches:: @@ -2327,11 +2327,11 @@ FsWatchesRecursive:: /user/username/projects/myproject/random: {} -Info 121 [16:03:49.000] response: +Info 121 [00:03:49.000] response: { "responseRequired": false } -Info 122 [16:03:50.000] request: +Info 122 [00:03:50.000] request: { "seq": 0, "type": "request", @@ -2378,28 +2378,28 @@ FsWatchesRecursive:: /user/username/projects/myproject/random: {} -Info 123 [16:03:51.000] FileWatcher:: Close:: WatchInfo: /user/username/projects/myproject/random/random.ts 500 undefined WatchType: Closed Script info -Info 124 [16:03:52.000] Search path: /user/username/projects/myproject/random -Info 125 [16:03:53.000] For info: /user/username/projects/myproject/random/random.ts :: Config file name: /user/username/projects/myproject/random/tsconfig.json -Info 126 [16:03:54.000] Project '/user/username/projects/myproject/main/tsconfig.json' (Configured) -Info 126 [16:03:55.000] Files (3) - -Info 126 [16:03:56.000] ----------------------------------------------- -Info 126 [16:03:57.000] Project '/user/username/projects/myproject/dependency/tsconfig.json' (Configured) -Info 126 [16:03:58.000] Files (2) - -Info 126 [16:03:59.000] ----------------------------------------------- -Info 126 [16:04:00.000] Project '/user/username/projects/myproject/random/tsconfig.json' (Configured) -Info 126 [16:04:01.000] Files (2) - -Info 126 [16:04:02.000] ----------------------------------------------- -Info 126 [16:04:03.000] Open files: -Info 126 [16:04:04.000] FileName: /user/username/projects/myproject/main/main.ts ProjectRootPath: undefined -Info 126 [16:04:05.000] Projects: /user/username/projects/myproject/main/tsconfig.json -Info 126 [16:04:06.000] FileName: /user/username/projects/myproject/dependency/FnS.ts ProjectRootPath: undefined -Info 126 [16:04:07.000] Projects: /user/username/projects/myproject/main/tsconfig.json,/user/username/projects/myproject/dependency/tsconfig.json -Info 126 [16:04:08.000] FileName: /user/username/projects/myproject/random/random.ts ProjectRootPath: undefined -Info 126 [16:04:09.000] Projects: /user/username/projects/myproject/random/tsconfig.json +Info 123 [00:03:51.000] FileWatcher:: Close:: WatchInfo: /user/username/projects/myproject/random/random.ts 500 undefined WatchType: Closed Script info +Info 124 [00:03:52.000] Search path: /user/username/projects/myproject/random +Info 125 [00:03:53.000] For info: /user/username/projects/myproject/random/random.ts :: Config file name: /user/username/projects/myproject/random/tsconfig.json +Info 126 [00:03:54.000] Project '/user/username/projects/myproject/main/tsconfig.json' (Configured) +Info 126 [00:03:55.000] Files (3) + +Info 126 [00:03:56.000] ----------------------------------------------- +Info 126 [00:03:57.000] Project '/user/username/projects/myproject/dependency/tsconfig.json' (Configured) +Info 126 [00:03:58.000] Files (2) + +Info 126 [00:03:59.000] ----------------------------------------------- +Info 126 [00:04:00.000] Project '/user/username/projects/myproject/random/tsconfig.json' (Configured) +Info 126 [00:04:01.000] Files (2) + +Info 126 [00:04:02.000] ----------------------------------------------- +Info 126 [00:04:03.000] Open files: +Info 126 [00:04:04.000] FileName: /user/username/projects/myproject/main/main.ts ProjectRootPath: undefined +Info 126 [00:04:05.000] Projects: /user/username/projects/myproject/main/tsconfig.json +Info 126 [00:04:06.000] FileName: /user/username/projects/myproject/dependency/FnS.ts ProjectRootPath: undefined +Info 126 [00:04:07.000] Projects: /user/username/projects/myproject/main/tsconfig.json,/user/username/projects/myproject/dependency/tsconfig.json +Info 126 [00:04:08.000] FileName: /user/username/projects/myproject/random/random.ts ProjectRootPath: undefined +Info 126 [00:04:09.000] Projects: /user/username/projects/myproject/random/tsconfig.json After request PolledWatches:: @@ -2436,11 +2436,11 @@ FsWatchesRecursive:: /user/username/projects/myproject/random: {} -Info 126 [16:04:10.000] response: +Info 126 [00:04:10.000] response: { "responseRequired": false } -Info 127 [16:04:11.000] request: +Info 127 [00:04:11.000] request: { "seq": 0, "type": "request", @@ -2485,24 +2485,24 @@ FsWatchesRecursive:: /user/username/projects/myproject/random: {} -Info 128 [16:04:12.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/main/main.ts 500 undefined WatchType: Closed Script info -Info 129 [16:04:13.000] Project '/user/username/projects/myproject/main/tsconfig.json' (Configured) -Info 129 [16:04:14.000] Files (3) +Info 128 [00:04:12.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/main/main.ts 500 undefined WatchType: Closed Script info +Info 129 [00:04:13.000] Project '/user/username/projects/myproject/main/tsconfig.json' (Configured) +Info 129 [00:04:14.000] Files (3) -Info 129 [16:04:15.000] ----------------------------------------------- -Info 129 [16:04:16.000] Project '/user/username/projects/myproject/dependency/tsconfig.json' (Configured) -Info 129 [16:04:17.000] Files (2) +Info 129 [00:04:15.000] ----------------------------------------------- +Info 129 [00:04:16.000] Project '/user/username/projects/myproject/dependency/tsconfig.json' (Configured) +Info 129 [00:04:17.000] Files (2) -Info 129 [16:04:18.000] ----------------------------------------------- -Info 129 [16:04:19.000] Project '/user/username/projects/myproject/random/tsconfig.json' (Configured) -Info 129 [16:04:20.000] Files (2) +Info 129 [00:04:18.000] ----------------------------------------------- +Info 129 [00:04:19.000] Project '/user/username/projects/myproject/random/tsconfig.json' (Configured) +Info 129 [00:04:20.000] Files (2) -Info 129 [16:04:21.000] ----------------------------------------------- -Info 129 [16:04:22.000] Open files: -Info 129 [16:04:23.000] FileName: /user/username/projects/myproject/dependency/FnS.ts ProjectRootPath: undefined -Info 129 [16:04:24.000] Projects: /user/username/projects/myproject/main/tsconfig.json,/user/username/projects/myproject/dependency/tsconfig.json -Info 129 [16:04:25.000] FileName: /user/username/projects/myproject/random/random.ts ProjectRootPath: undefined -Info 129 [16:04:26.000] Projects: /user/username/projects/myproject/random/tsconfig.json +Info 129 [00:04:21.000] ----------------------------------------------- +Info 129 [00:04:22.000] Open files: +Info 129 [00:04:23.000] FileName: /user/username/projects/myproject/dependency/FnS.ts ProjectRootPath: undefined +Info 129 [00:04:24.000] Projects: /user/username/projects/myproject/main/tsconfig.json,/user/username/projects/myproject/dependency/tsconfig.json +Info 129 [00:04:25.000] FileName: /user/username/projects/myproject/random/random.ts ProjectRootPath: undefined +Info 129 [00:04:26.000] Projects: /user/username/projects/myproject/random/tsconfig.json After request PolledWatches:: @@ -2541,11 +2541,11 @@ FsWatchesRecursive:: /user/username/projects/myproject/random: {} -Info 129 [16:04:27.000] response: +Info 129 [00:04:27.000] response: { "responseRequired": false } -Info 130 [16:04:28.000] request: +Info 130 [00:04:28.000] request: { "seq": 0, "type": "request", @@ -2592,22 +2592,22 @@ FsWatchesRecursive:: /user/username/projects/myproject/random: {} -Info 131 [16:04:29.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/dependency/FnS.ts 500 undefined WatchType: Closed Script info -Info 132 [16:04:30.000] Project '/user/username/projects/myproject/main/tsconfig.json' (Configured) -Info 132 [16:04:31.000] Files (3) +Info 131 [00:04:29.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/dependency/FnS.ts 500 undefined WatchType: Closed Script info +Info 132 [00:04:30.000] Project '/user/username/projects/myproject/main/tsconfig.json' (Configured) +Info 132 [00:04:31.000] Files (3) -Info 132 [16:04:32.000] ----------------------------------------------- -Info 132 [16:04:33.000] Project '/user/username/projects/myproject/dependency/tsconfig.json' (Configured) -Info 132 [16:04:34.000] Files (2) +Info 132 [00:04:32.000] ----------------------------------------------- +Info 132 [00:04:33.000] Project '/user/username/projects/myproject/dependency/tsconfig.json' (Configured) +Info 132 [00:04:34.000] Files (2) -Info 132 [16:04:35.000] ----------------------------------------------- -Info 132 [16:04:36.000] Project '/user/username/projects/myproject/random/tsconfig.json' (Configured) -Info 132 [16:04:37.000] Files (2) +Info 132 [00:04:35.000] ----------------------------------------------- +Info 132 [00:04:36.000] Project '/user/username/projects/myproject/random/tsconfig.json' (Configured) +Info 132 [00:04:37.000] Files (2) -Info 132 [16:04:38.000] ----------------------------------------------- -Info 132 [16:04:39.000] Open files: -Info 132 [16:04:40.000] FileName: /user/username/projects/myproject/random/random.ts ProjectRootPath: undefined -Info 132 [16:04:41.000] Projects: /user/username/projects/myproject/random/tsconfig.json +Info 132 [00:04:38.000] ----------------------------------------------- +Info 132 [00:04:39.000] Open files: +Info 132 [00:04:40.000] FileName: /user/username/projects/myproject/random/random.ts ProjectRootPath: undefined +Info 132 [00:04:41.000] Projects: /user/username/projects/myproject/random/tsconfig.json After request PolledWatches:: @@ -2648,11 +2648,11 @@ FsWatchesRecursive:: /user/username/projects/myproject/random: {} -Info 132 [16:04:42.000] response: +Info 132 [00:04:42.000] response: { "responseRequired": false } -Info 133 [16:04:43.000] request: +Info 133 [00:04:43.000] request: { "seq": 0, "type": "request", @@ -2701,20 +2701,20 @@ FsWatchesRecursive:: /user/username/projects/myproject/random: {} -Info 134 [16:04:44.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/random/random.ts 500 undefined WatchType: Closed Script info -Info 135 [16:04:45.000] Project '/user/username/projects/myproject/main/tsconfig.json' (Configured) -Info 135 [16:04:46.000] Files (3) +Info 134 [00:04:44.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/random/random.ts 500 undefined WatchType: Closed Script info +Info 135 [00:04:45.000] Project '/user/username/projects/myproject/main/tsconfig.json' (Configured) +Info 135 [00:04:46.000] Files (3) -Info 135 [16:04:47.000] ----------------------------------------------- -Info 135 [16:04:48.000] Project '/user/username/projects/myproject/dependency/tsconfig.json' (Configured) -Info 135 [16:04:49.000] Files (2) +Info 135 [00:04:47.000] ----------------------------------------------- +Info 135 [00:04:48.000] Project '/user/username/projects/myproject/dependency/tsconfig.json' (Configured) +Info 135 [00:04:49.000] Files (2) -Info 135 [16:04:50.000] ----------------------------------------------- -Info 135 [16:04:51.000] Project '/user/username/projects/myproject/random/tsconfig.json' (Configured) -Info 135 [16:04:52.000] Files (2) +Info 135 [00:04:50.000] ----------------------------------------------- +Info 135 [00:04:51.000] Project '/user/username/projects/myproject/random/tsconfig.json' (Configured) +Info 135 [00:04:52.000] Files (2) -Info 135 [16:04:53.000] ----------------------------------------------- -Info 135 [16:04:54.000] Open files: +Info 135 [00:04:53.000] ----------------------------------------------- +Info 135 [00:04:54.000] Open files: After request PolledWatches:: @@ -2757,11 +2757,11 @@ FsWatchesRecursive:: /user/username/projects/myproject/random: {} -Info 135 [16:04:55.000] response: +Info 135 [00:04:55.000] response: { "responseRequired": false } -Info 136 [16:04:56.000] request: +Info 136 [00:04:56.000] request: { "seq": 0, "type": "request", @@ -2812,12 +2812,12 @@ FsWatchesRecursive:: /user/username/projects/myproject/random: {} -Info 137 [16:04:57.000] FileWatcher:: Close:: WatchInfo: /user/username/projects/myproject/random/random.ts 500 undefined WatchType: Closed Script info -Info 138 [16:04:58.000] Search path: /user/username/projects/myproject/random -Info 139 [16:04:59.000] For info: /user/username/projects/myproject/random/random.ts :: Config file name: /user/username/projects/myproject/random/tsconfig.json -Info 140 [16:05:00.000] `remove Project:: -Info 141 [16:05:01.000] Project '/user/username/projects/myproject/main/tsconfig.json' (Configured) -Info 142 [16:05:02.000] Files (3) +Info 137 [00:04:57.000] FileWatcher:: Close:: WatchInfo: /user/username/projects/myproject/random/random.ts 500 undefined WatchType: Closed Script info +Info 138 [00:04:58.000] Search path: /user/username/projects/myproject/random +Info 139 [00:04:59.000] For info: /user/username/projects/myproject/random/random.ts :: Config file name: /user/username/projects/myproject/random/tsconfig.json +Info 140 [00:05:00.000] `remove Project:: +Info 141 [00:05:01.000] Project '/user/username/projects/myproject/main/tsconfig.json' (Configured) +Info 142 [00:05:02.000] Files (3) /a/lib/lib.d.ts /user/username/projects/myproject/dependency/FnS.ts /user/username/projects/myproject/main/main.ts @@ -2830,19 +2830,19 @@ Info 142 [16:05:02.000] Files (3) main.ts Matched by default include pattern '**/*' -Info 143 [16:05:03.000] ----------------------------------------------- -Info 144 [16:05:04.000] DirectoryWatcher:: Close:: WatchInfo: /user/username/projects/myproject/main 1 undefined Config: /user/username/projects/myproject/main/tsconfig.json WatchType: Wild card directory -Info 145 [16:05:05.000] 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 146 [16:05:06.000] FileWatcher:: Close:: WatchInfo: /user/username/projects/myproject/main/tsconfig.json 2000 undefined Project: /user/username/projects/myproject/main/tsconfig.json WatchType: Config file -Info 147 [16:05:07.000] DirectoryWatcher:: Close:: WatchInfo: /user/username/projects/myproject/decls 1 undefined Project: /user/username/projects/myproject/main/tsconfig.json WatchType: Failed Lookup Locations -Info 148 [16:05:08.000] 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 149 [16:05:09.000] 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 150 [16:05:10.000] 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 151 [16:05:11.000] DirectoryWatcher:: Close:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/main/tsconfig.json WatchType: Type roots -Info 152 [16:05:12.000] 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 153 [16:05:13.000] `remove Project:: -Info 154 [16:05:14.000] Project '/user/username/projects/myproject/dependency/tsconfig.json' (Configured) -Info 155 [16:05:15.000] Files (2) +Info 143 [00:05:03.000] ----------------------------------------------- +Info 144 [00:05:04.000] DirectoryWatcher:: Close:: WatchInfo: /user/username/projects/myproject/main 1 undefined Config: /user/username/projects/myproject/main/tsconfig.json WatchType: Wild card directory +Info 145 [00:05:05.000] 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 146 [00:05:06.000] FileWatcher:: Close:: WatchInfo: /user/username/projects/myproject/main/tsconfig.json 2000 undefined Project: /user/username/projects/myproject/main/tsconfig.json WatchType: Config file +Info 147 [00:05:07.000] DirectoryWatcher:: Close:: WatchInfo: /user/username/projects/myproject/decls 1 undefined Project: /user/username/projects/myproject/main/tsconfig.json WatchType: Failed Lookup Locations +Info 148 [00:05:08.000] 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 149 [00:05:09.000] 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 150 [00:05:10.000] 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 151 [00:05:11.000] DirectoryWatcher:: Close:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/main/tsconfig.json WatchType: Type roots +Info 152 [00:05:12.000] 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 153 [00:05:13.000] `remove Project:: +Info 154 [00:05:14.000] Project '/user/username/projects/myproject/dependency/tsconfig.json' (Configured) +Info 155 [00:05:15.000] Files (2) /a/lib/lib.d.ts /user/username/projects/myproject/dependency/FnS.ts @@ -2852,25 +2852,25 @@ Info 155 [16:05:15.000] Files (2) FnS.ts Matched by default include pattern '**/*' -Info 156 [16:05:16.000] ----------------------------------------------- -Info 157 [16:05:17.000] DirectoryWatcher:: Close:: WatchInfo: /user/username/projects/myproject/dependency 1 undefined Config: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Wild card directory -Info 158 [16:05:18.000] 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 159 [16:05:19.000] FileWatcher:: Close:: WatchInfo: /user/username/projects/myproject/dependency/tsconfig.json 2000 undefined Project: /user/username/projects/myproject/main/tsconfig.json WatchType: Config file -Info 160 [16:05:20.000] 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 161 [16:05:21.000] 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 162 [16:05:22.000] DirectoryWatcher:: Close:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Type roots -Info 163 [16:05:23.000] 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 164 [16:05:24.000] FileWatcher:: Close:: WatchInfo: /user/username/projects/myproject/main/main.ts 500 undefined WatchType: Closed Script info -Info 165 [16:05:25.000] FileWatcher:: Close:: WatchInfo: /user/username/projects/myproject/dependency/FnS.ts 500 undefined WatchType: Closed Script info -Info 166 [16:05:26.000] FileWatcher:: Close:: WatchInfo: /user/username/projects/myproject/decls/FnS.d.ts 500 undefined WatchType: Closed Script info -Info 167 [16:05:27.000] FileWatcher:: Close:: WatchInfo: /user/username/projects/myproject/decls/FnS.d.ts.map 2000 undefined WatchType: Missing source map file -Info 168 [16:05:28.000] Project '/user/username/projects/myproject/random/tsconfig.json' (Configured) -Info 168 [16:05:29.000] Files (2) - -Info 168 [16:05:30.000] ----------------------------------------------- -Info 168 [16:05:31.000] Open files: -Info 168 [16:05:32.000] FileName: /user/username/projects/myproject/random/random.ts ProjectRootPath: undefined -Info 168 [16:05:33.000] Projects: /user/username/projects/myproject/random/tsconfig.json +Info 156 [00:05:16.000] ----------------------------------------------- +Info 157 [00:05:17.000] DirectoryWatcher:: Close:: WatchInfo: /user/username/projects/myproject/dependency 1 undefined Config: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Wild card directory +Info 158 [00:05:18.000] 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 159 [00:05:19.000] FileWatcher:: Close:: WatchInfo: /user/username/projects/myproject/dependency/tsconfig.json 2000 undefined Project: /user/username/projects/myproject/main/tsconfig.json WatchType: Config file +Info 160 [00:05:20.000] 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 161 [00:05:21.000] 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 162 [00:05:22.000] DirectoryWatcher:: Close:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Type roots +Info 163 [00:05:23.000] 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 164 [00:05:24.000] FileWatcher:: Close:: WatchInfo: /user/username/projects/myproject/main/main.ts 500 undefined WatchType: Closed Script info +Info 165 [00:05:25.000] FileWatcher:: Close:: WatchInfo: /user/username/projects/myproject/dependency/FnS.ts 500 undefined WatchType: Closed Script info +Info 166 [00:05:26.000] FileWatcher:: Close:: WatchInfo: /user/username/projects/myproject/decls/FnS.d.ts 500 undefined WatchType: Closed Script info +Info 167 [00:05:27.000] FileWatcher:: Close:: WatchInfo: /user/username/projects/myproject/decls/FnS.d.ts.map 2000 undefined WatchType: Missing source map file +Info 168 [00:05:28.000] Project '/user/username/projects/myproject/random/tsconfig.json' (Configured) +Info 168 [00:05:29.000] Files (2) + +Info 168 [00:05:30.000] ----------------------------------------------- +Info 168 [00:05:31.000] Open files: +Info 168 [00:05:32.000] FileName: /user/username/projects/myproject/random/random.ts ProjectRootPath: undefined +Info 168 [00:05:33.000] Projects: /user/username/projects/myproject/random/tsconfig.json After request PolledWatches:: @@ -2889,7 +2889,7 @@ FsWatchesRecursive:: /user/username/projects/myproject/random: {} -Info 168 [16:05:34.000] response: +Info 168 [00:05:34.000] response: { "responseRequired": false } \ No newline at end of file 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 b34d5f696c233..a485a0cf68d7a 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 @@ -1,5 +1,5 @@ -Info 0 [16:01:01.000] Provided types map file "/a/lib/typesMap.json" doesn't exist -Info 1 [16:01:02.000] request: +Info 0 [00:01:01.000] Provided types map file "/a/lib/typesMap.json" doesn't exist +Info 1 [00:01:02.000] request: { "seq": 0, "type": "request", @@ -197,11 +197,11 @@ FsWatches:: FsWatchesRecursive:: -Info 2 [16:01:03.000] Search path: /user/username/projects/myproject/main -Info 3 [16:01:04.000] For info: /user/username/projects/myproject/main/main.ts :: Config file name: /user/username/projects/myproject/main/tsconfig.json -Info 4 [16:01:05.000] Creating configuration project /user/username/projects/myproject/main/tsconfig.json -Info 5 [16:01:06.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/main/tsconfig.json 2000 undefined Project: /user/username/projects/myproject/main/tsconfig.json WatchType: Config file -Info 6 [16:01:07.000] Config: /user/username/projects/myproject/main/tsconfig.json : { +Info 2 [00:01:03.000] Search path: /user/username/projects/myproject/main +Info 3 [00:01:04.000] For info: /user/username/projects/myproject/main/main.ts :: Config file name: /user/username/projects/myproject/main/tsconfig.json +Info 4 [00:01:05.000] Creating configuration project /user/username/projects/myproject/main/tsconfig.json +Info 5 [00:01:06.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/main/tsconfig.json 2000 undefined Project: /user/username/projects/myproject/main/tsconfig.json WatchType: Config file +Info 6 [00:01:07.000] Config: /user/username/projects/myproject/main/tsconfig.json : { "rootNames": [ "/user/username/projects/myproject/main/main.ts" ], @@ -217,11 +217,11 @@ Info 6 [16:01:07.000] Config: /user/username/projects/myproject/main/tsconfig } ] } -Info 7 [16:01:08.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/main 1 undefined Config: /user/username/projects/myproject/main/tsconfig.json WatchType: Wild card directory -Info 8 [16:01:09.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/main 1 undefined Config: /user/username/projects/myproject/main/tsconfig.json WatchType: Wild card directory -Info 9 [16:01:10.000] Plugins were requested but not running in environment that supports 'require'. Nothing will be loaded -Info 10 [16:01:11.000] Starting updateGraphWorker: Project: /user/username/projects/myproject/main/tsconfig.json -Info 11 [16:01:12.000] Config: /user/username/projects/myproject/dependency/tsconfig.json : { +Info 7 [00:01:08.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/main 1 undefined Config: /user/username/projects/myproject/main/tsconfig.json WatchType: Wild card directory +Info 8 [00:01:09.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/main 1 undefined Config: /user/username/projects/myproject/main/tsconfig.json WatchType: Wild card directory +Info 9 [00:01:10.000] Plugins were requested but not running in environment that supports 'require'. Nothing will be loaded +Info 10 [00:01:11.000] Starting updateGraphWorker: Project: /user/username/projects/myproject/main/tsconfig.json +Info 11 [00:01:12.000] Config: /user/username/projects/myproject/dependency/tsconfig.json : { "rootNames": [ "/user/username/projects/myproject/dependency/FnS.ts" ], @@ -232,20 +232,20 @@ Info 11 [16:01:12.000] Config: /user/username/projects/myproject/dependency/ts "configFilePath": "/user/username/projects/myproject/dependency/tsconfig.json" } } -Info 12 [16:01:13.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/dependency/tsconfig.json 2000 undefined Project: /user/username/projects/myproject/main/tsconfig.json WatchType: Config file -Info 13 [16:01:14.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/dependency 1 undefined Config: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Wild card directory -Info 14 [16:01:15.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/dependency 1 undefined Config: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Wild card directory -Info 15 [16:01:16.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/decls 1 undefined Project: /user/username/projects/myproject/main/tsconfig.json WatchType: Failed Lookup Locations -Info 16 [16:01:17.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/decls 1 undefined Project: /user/username/projects/myproject/main/tsconfig.json WatchType: Failed Lookup Locations -Info 17 [16:01:18.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/dependency/FnS.ts 500 undefined WatchType: Closed Script info -Info 18 [16:01:19.000] FileWatcher:: Added:: WatchInfo: /a/lib/lib.d.ts 500 undefined WatchType: Closed Script info -Info 19 [16:01:20.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/main/node_modules/@types 1 undefined Project: /user/username/projects/myproject/main/tsconfig.json WatchType: Type roots -Info 20 [16:01:21.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/main/node_modules/@types 1 undefined Project: /user/username/projects/myproject/main/tsconfig.json WatchType: Type roots -Info 21 [16:01:22.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/main/tsconfig.json WatchType: Type roots -Info 22 [16:01:23.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/main/tsconfig.json WatchType: Type roots -Info 23 [16:01:24.000] Finishing updateGraphWorker: Project: /user/username/projects/myproject/main/tsconfig.json Version: 1 structureChanged: true structureIsReused:: Not Elapsed:: *ms -Info 24 [16:01:25.000] Project '/user/username/projects/myproject/main/tsconfig.json' (Configured) -Info 25 [16:01:26.000] Files (3) +Info 12 [00:01:13.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/dependency/tsconfig.json 2000 undefined Project: /user/username/projects/myproject/main/tsconfig.json WatchType: Config file +Info 13 [00:01:14.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/dependency 1 undefined Config: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Wild card directory +Info 14 [00:01:15.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/dependency 1 undefined Config: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Wild card directory +Info 15 [00:01:16.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/decls 1 undefined Project: /user/username/projects/myproject/main/tsconfig.json WatchType: Failed Lookup Locations +Info 16 [00:01:17.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/decls 1 undefined Project: /user/username/projects/myproject/main/tsconfig.json WatchType: Failed Lookup Locations +Info 17 [00:01:18.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/dependency/FnS.ts 500 undefined WatchType: Closed Script info +Info 18 [00:01:19.000] FileWatcher:: Added:: WatchInfo: /a/lib/lib.d.ts 500 undefined WatchType: Closed Script info +Info 19 [00:01:20.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/main/node_modules/@types 1 undefined Project: /user/username/projects/myproject/main/tsconfig.json WatchType: Type roots +Info 20 [00:01:21.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/main/node_modules/@types 1 undefined Project: /user/username/projects/myproject/main/tsconfig.json WatchType: Type roots +Info 21 [00:01:22.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/main/tsconfig.json WatchType: Type roots +Info 22 [00:01:23.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/main/tsconfig.json WatchType: Type roots +Info 23 [00:01:24.000] Finishing updateGraphWorker: Project: /user/username/projects/myproject/main/tsconfig.json Version: 1 structureChanged: true structureIsReused:: Not Elapsed:: *ms +Info 24 [00:01:25.000] Project '/user/username/projects/myproject/main/tsconfig.json' (Configured) +Info 25 [00:01:26.000] Files (3) /a/lib/lib.d.ts /user/username/projects/myproject/dependency/FnS.ts /user/username/projects/myproject/main/main.ts @@ -258,16 +258,16 @@ Info 25 [16:01:26.000] Files (3) main.ts Matched by default include pattern '**/*' -Info 26 [16:01:27.000] ----------------------------------------------- -Info 27 [16:01:28.000] Search path: /user/username/projects/myproject/main -Info 28 [16:01:29.000] For info: /user/username/projects/myproject/main/tsconfig.json :: No config files found. -Info 29 [16:01:30.000] Project '/user/username/projects/myproject/main/tsconfig.json' (Configured) -Info 29 [16:01:31.000] Files (3) +Info 26 [00:01:27.000] ----------------------------------------------- +Info 27 [00:01:28.000] Search path: /user/username/projects/myproject/main +Info 28 [00:01:29.000] For info: /user/username/projects/myproject/main/tsconfig.json :: No config files found. +Info 29 [00:01:30.000] Project '/user/username/projects/myproject/main/tsconfig.json' (Configured) +Info 29 [00:01:31.000] Files (3) -Info 29 [16:01:32.000] ----------------------------------------------- -Info 29 [16:01:33.000] Open files: -Info 29 [16:01:34.000] FileName: /user/username/projects/myproject/main/main.ts ProjectRootPath: undefined -Info 29 [16:01:35.000] Projects: /user/username/projects/myproject/main/tsconfig.json +Info 29 [00:01:32.000] ----------------------------------------------- +Info 29 [00:01:33.000] Open files: +Info 29 [00:01:34.000] FileName: /user/username/projects/myproject/main/main.ts ProjectRootPath: undefined +Info 29 [00:01:35.000] Projects: /user/username/projects/myproject/main/tsconfig.json After request PolledWatches:: @@ -294,11 +294,11 @@ FsWatchesRecursive:: /user/username/projects/myproject/decls: {} -Info 29 [16:01:36.000] response: +Info 29 [00:01:36.000] response: { "responseRequired": false } -Info 30 [16:01:37.000] request: +Info 30 [00:01:37.000] request: { "seq": 0, "type": "request", @@ -333,19 +333,19 @@ FsWatchesRecursive:: /user/username/projects/myproject/decls: {} -Info 31 [16:01:38.000] FileWatcher:: Close:: WatchInfo: /user/username/projects/myproject/dependency/FnS.ts 500 undefined WatchType: Closed Script info -Info 32 [16:01:39.000] Search path: /user/username/projects/myproject/dependency -Info 33 [16:01:40.000] For info: /user/username/projects/myproject/dependency/FnS.ts :: Config file name: /user/username/projects/myproject/dependency/tsconfig.json -Info 34 [16:01:41.000] Creating configuration project /user/username/projects/myproject/dependency/tsconfig.json -Info 35 [16:01:42.000] Plugins were requested but not running in environment that supports 'require'. Nothing will be loaded -Info 36 [16:01:43.000] Starting updateGraphWorker: Project: /user/username/projects/myproject/dependency/tsconfig.json -Info 37 [16:01:44.000] 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 38 [16:01:45.000] 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 39 [16:01:46.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Type roots -Info 40 [16:01:47.000] 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 41 [16:01:48.000] Finishing updateGraphWorker: Project: /user/username/projects/myproject/dependency/tsconfig.json Version: 1 structureChanged: true structureIsReused:: Not Elapsed:: *ms -Info 42 [16:01:49.000] Project '/user/username/projects/myproject/dependency/tsconfig.json' (Configured) -Info 43 [16:01:50.000] Files (2) +Info 31 [00:01:38.000] FileWatcher:: Close:: WatchInfo: /user/username/projects/myproject/dependency/FnS.ts 500 undefined WatchType: Closed Script info +Info 32 [00:01:39.000] Search path: /user/username/projects/myproject/dependency +Info 33 [00:01:40.000] For info: /user/username/projects/myproject/dependency/FnS.ts :: Config file name: /user/username/projects/myproject/dependency/tsconfig.json +Info 34 [00:01:41.000] Creating configuration project /user/username/projects/myproject/dependency/tsconfig.json +Info 35 [00:01:42.000] Plugins were requested but not running in environment that supports 'require'. Nothing will be loaded +Info 36 [00:01:43.000] Starting updateGraphWorker: Project: /user/username/projects/myproject/dependency/tsconfig.json +Info 37 [00:01:44.000] 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 38 [00:01:45.000] 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 39 [00:01:46.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Type roots +Info 40 [00:01:47.000] 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 41 [00:01:48.000] Finishing updateGraphWorker: Project: /user/username/projects/myproject/dependency/tsconfig.json Version: 1 structureChanged: true structureIsReused:: Not Elapsed:: *ms +Info 42 [00:01:49.000] Project '/user/username/projects/myproject/dependency/tsconfig.json' (Configured) +Info 43 [00:01:50.000] Files (2) /a/lib/lib.d.ts /user/username/projects/myproject/dependency/FnS.ts @@ -355,22 +355,22 @@ Info 43 [16:01:50.000] Files (2) FnS.ts Matched by default include pattern '**/*' -Info 44 [16:01:51.000] ----------------------------------------------- -Info 45 [16:01:52.000] Search path: /user/username/projects/myproject/dependency -Info 46 [16:01:53.000] For info: /user/username/projects/myproject/dependency/tsconfig.json :: No config files found. -Info 47 [16:01:54.000] Project '/user/username/projects/myproject/main/tsconfig.json' (Configured) -Info 47 [16:01:55.000] Files (3) - -Info 47 [16:01:56.000] ----------------------------------------------- -Info 47 [16:01:57.000] Project '/user/username/projects/myproject/dependency/tsconfig.json' (Configured) -Info 47 [16:01:58.000] Files (2) - -Info 47 [16:01:59.000] ----------------------------------------------- -Info 47 [16:02:00.000] Open files: -Info 47 [16:02:01.000] FileName: /user/username/projects/myproject/main/main.ts ProjectRootPath: undefined -Info 47 [16:02:02.000] Projects: /user/username/projects/myproject/main/tsconfig.json -Info 47 [16:02:03.000] FileName: /user/username/projects/myproject/dependency/FnS.ts ProjectRootPath: undefined -Info 47 [16:02:04.000] Projects: /user/username/projects/myproject/main/tsconfig.json,/user/username/projects/myproject/dependency/tsconfig.json +Info 44 [00:01:51.000] ----------------------------------------------- +Info 45 [00:01:52.000] Search path: /user/username/projects/myproject/dependency +Info 46 [00:01:53.000] For info: /user/username/projects/myproject/dependency/tsconfig.json :: No config files found. +Info 47 [00:01:54.000] Project '/user/username/projects/myproject/main/tsconfig.json' (Configured) +Info 47 [00:01:55.000] Files (3) + +Info 47 [00:01:56.000] ----------------------------------------------- +Info 47 [00:01:57.000] Project '/user/username/projects/myproject/dependency/tsconfig.json' (Configured) +Info 47 [00:01:58.000] Files (2) + +Info 47 [00:01:59.000] ----------------------------------------------- +Info 47 [00:02:00.000] Open files: +Info 47 [00:02:01.000] FileName: /user/username/projects/myproject/main/main.ts ProjectRootPath: undefined +Info 47 [00:02:02.000] Projects: /user/username/projects/myproject/main/tsconfig.json +Info 47 [00:02:03.000] FileName: /user/username/projects/myproject/dependency/FnS.ts ProjectRootPath: undefined +Info 47 [00:02:04.000] Projects: /user/username/projects/myproject/main/tsconfig.json,/user/username/projects/myproject/dependency/tsconfig.json After request PolledWatches:: @@ -397,11 +397,11 @@ FsWatchesRecursive:: /user/username/projects/myproject/decls: {} -Info 47 [16:02:05.000] response: +Info 47 [00:02:05.000] response: { "responseRequired": false } -Info 48 [16:02:06.000] request: +Info 48 [00:02:06.000] request: { "seq": 0, "type": "request", @@ -436,11 +436,11 @@ FsWatchesRecursive:: /user/username/projects/myproject/decls: {} -Info 49 [16:02:07.000] Search path: /user/username/projects/myproject/random -Info 50 [16:02:08.000] For info: /user/username/projects/myproject/random/random.ts :: Config file name: /user/username/projects/myproject/random/tsconfig.json -Info 51 [16:02:09.000] Creating configuration project /user/username/projects/myproject/random/tsconfig.json -Info 52 [16:02:10.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/random/tsconfig.json 2000 undefined Project: /user/username/projects/myproject/random/tsconfig.json WatchType: Config file -Info 53 [16:02:11.000] Config: /user/username/projects/myproject/random/tsconfig.json : { +Info 49 [00:02:07.000] Search path: /user/username/projects/myproject/random +Info 50 [00:02:08.000] For info: /user/username/projects/myproject/random/random.ts :: Config file name: /user/username/projects/myproject/random/tsconfig.json +Info 51 [00:02:09.000] Creating configuration project /user/username/projects/myproject/random/tsconfig.json +Info 52 [00:02:10.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/random/tsconfig.json 2000 undefined Project: /user/username/projects/myproject/random/tsconfig.json WatchType: Config file +Info 53 [00:02:11.000] Config: /user/username/projects/myproject/random/tsconfig.json : { "rootNames": [ "/user/username/projects/myproject/random/random.ts" ], @@ -448,17 +448,17 @@ Info 53 [16:02:11.000] Config: /user/username/projects/myproject/random/tsconf "configFilePath": "/user/username/projects/myproject/random/tsconfig.json" } } -Info 54 [16:02:12.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/random 1 undefined Config: /user/username/projects/myproject/random/tsconfig.json WatchType: Wild card directory -Info 55 [16:02:13.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/random 1 undefined Config: /user/username/projects/myproject/random/tsconfig.json WatchType: Wild card directory -Info 56 [16:02:14.000] Plugins were requested but not running in environment that supports 'require'. Nothing will be loaded -Info 57 [16:02:15.000] Starting updateGraphWorker: Project: /user/username/projects/myproject/random/tsconfig.json -Info 58 [16:02:16.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/random/node_modules/@types 1 undefined Project: /user/username/projects/myproject/random/tsconfig.json WatchType: Type roots -Info 59 [16:02:17.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/random/node_modules/@types 1 undefined Project: /user/username/projects/myproject/random/tsconfig.json WatchType: Type roots -Info 60 [16:02:18.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/random/tsconfig.json WatchType: Type roots -Info 61 [16:02:19.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/random/tsconfig.json WatchType: Type roots -Info 62 [16:02:20.000] Finishing updateGraphWorker: Project: /user/username/projects/myproject/random/tsconfig.json Version: 1 structureChanged: true structureIsReused:: Not Elapsed:: *ms -Info 63 [16:02:21.000] Project '/user/username/projects/myproject/random/tsconfig.json' (Configured) -Info 64 [16:02:22.000] Files (2) +Info 54 [00:02:12.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/random 1 undefined Config: /user/username/projects/myproject/random/tsconfig.json WatchType: Wild card directory +Info 55 [00:02:13.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/random 1 undefined Config: /user/username/projects/myproject/random/tsconfig.json WatchType: Wild card directory +Info 56 [00:02:14.000] Plugins were requested but not running in environment that supports 'require'. Nothing will be loaded +Info 57 [00:02:15.000] Starting updateGraphWorker: Project: /user/username/projects/myproject/random/tsconfig.json +Info 58 [00:02:16.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/random/node_modules/@types 1 undefined Project: /user/username/projects/myproject/random/tsconfig.json WatchType: Type roots +Info 59 [00:02:17.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/random/node_modules/@types 1 undefined Project: /user/username/projects/myproject/random/tsconfig.json WatchType: Type roots +Info 60 [00:02:18.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/random/tsconfig.json WatchType: Type roots +Info 61 [00:02:19.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/random/tsconfig.json WatchType: Type roots +Info 62 [00:02:20.000] Finishing updateGraphWorker: Project: /user/username/projects/myproject/random/tsconfig.json Version: 1 structureChanged: true structureIsReused:: Not Elapsed:: *ms +Info 63 [00:02:21.000] Project '/user/username/projects/myproject/random/tsconfig.json' (Configured) +Info 64 [00:02:22.000] Files (2) /a/lib/lib.d.ts /user/username/projects/myproject/random/random.ts @@ -468,26 +468,26 @@ Info 64 [16:02:22.000] Files (2) random.ts Matched by default include pattern '**/*' -Info 65 [16:02:23.000] ----------------------------------------------- -Info 66 [16:02:24.000] Project '/user/username/projects/myproject/main/tsconfig.json' (Configured) -Info 66 [16:02:25.000] Files (3) - -Info 66 [16:02:26.000] ----------------------------------------------- -Info 66 [16:02:27.000] Project '/user/username/projects/myproject/dependency/tsconfig.json' (Configured) -Info 66 [16:02:28.000] Files (2) - -Info 66 [16:02:29.000] ----------------------------------------------- -Info 66 [16:02:30.000] Project '/user/username/projects/myproject/random/tsconfig.json' (Configured) -Info 66 [16:02:31.000] Files (2) - -Info 66 [16:02:32.000] ----------------------------------------------- -Info 66 [16:02:33.000] Open files: -Info 66 [16:02:34.000] FileName: /user/username/projects/myproject/main/main.ts ProjectRootPath: undefined -Info 66 [16:02:35.000] Projects: /user/username/projects/myproject/main/tsconfig.json -Info 66 [16:02:36.000] FileName: /user/username/projects/myproject/dependency/FnS.ts ProjectRootPath: undefined -Info 66 [16:02:37.000] Projects: /user/username/projects/myproject/main/tsconfig.json,/user/username/projects/myproject/dependency/tsconfig.json -Info 66 [16:02:38.000] FileName: /user/username/projects/myproject/random/random.ts ProjectRootPath: undefined -Info 66 [16:02:39.000] Projects: /user/username/projects/myproject/random/tsconfig.json +Info 65 [00:02:23.000] ----------------------------------------------- +Info 66 [00:02:24.000] Project '/user/username/projects/myproject/main/tsconfig.json' (Configured) +Info 66 [00:02:25.000] Files (3) + +Info 66 [00:02:26.000] ----------------------------------------------- +Info 66 [00:02:27.000] Project '/user/username/projects/myproject/dependency/tsconfig.json' (Configured) +Info 66 [00:02:28.000] Files (2) + +Info 66 [00:02:29.000] ----------------------------------------------- +Info 66 [00:02:30.000] Project '/user/username/projects/myproject/random/tsconfig.json' (Configured) +Info 66 [00:02:31.000] Files (2) + +Info 66 [00:02:32.000] ----------------------------------------------- +Info 66 [00:02:33.000] Open files: +Info 66 [00:02:34.000] FileName: /user/username/projects/myproject/main/main.ts ProjectRootPath: undefined +Info 66 [00:02:35.000] Projects: /user/username/projects/myproject/main/tsconfig.json +Info 66 [00:02:36.000] FileName: /user/username/projects/myproject/dependency/FnS.ts ProjectRootPath: undefined +Info 66 [00:02:37.000] Projects: /user/username/projects/myproject/main/tsconfig.json,/user/username/projects/myproject/dependency/tsconfig.json +Info 66 [00:02:38.000] FileName: /user/username/projects/myproject/random/random.ts ProjectRootPath: undefined +Info 66 [00:02:39.000] Projects: /user/username/projects/myproject/random/tsconfig.json After request PolledWatches:: @@ -520,11 +520,11 @@ FsWatchesRecursive:: /user/username/projects/myproject/random: {} -Info 66 [16:02:40.000] response: +Info 66 [00:02:40.000] response: { "responseRequired": false } -Info 67 [16:02:41.000] request: +Info 67 [00:02:41.000] request: { "command": "definitionAndBoundSpan", "arguments": { @@ -599,7 +599,7 @@ FsWatchesRecursive:: /user/username/projects/myproject/random: {} -Info 68 [16:02:42.000] response: +Info 68 [00:02:42.000] response: { "response": { "definitions": [ @@ -636,7 +636,7 @@ Info 68 [16:02:42.000] response: }, "responseRequired": true } -Info 69 [16:02:43.000] request: +Info 69 [00:02:43.000] request: { "command": "definitionAndBoundSpan", "arguments": { @@ -711,7 +711,7 @@ FsWatchesRecursive:: /user/username/projects/myproject/random: {} -Info 70 [16:02:44.000] response: +Info 70 [00:02:44.000] response: { "response": { "definitions": [ @@ -748,7 +748,7 @@ Info 70 [16:02:44.000] response: }, "responseRequired": true } -Info 71 [16:02:45.000] request: +Info 71 [00:02:45.000] request: { "command": "definitionAndBoundSpan", "arguments": { @@ -823,7 +823,7 @@ FsWatchesRecursive:: /user/username/projects/myproject/random: {} -Info 72 [16:02:46.000] response: +Info 72 [00:02:46.000] response: { "response": { "definitions": [ @@ -860,7 +860,7 @@ Info 72 [16:02:46.000] response: }, "responseRequired": true } -Info 73 [16:02:47.000] request: +Info 73 [00:02:47.000] request: { "command": "definitionAndBoundSpan", "arguments": { @@ -935,7 +935,7 @@ FsWatchesRecursive:: /user/username/projects/myproject/random: {} -Info 74 [16:02:48.000] response: +Info 74 [00:02:48.000] response: { "response": { "definitions": [ @@ -972,7 +972,7 @@ Info 74 [16:02:48.000] response: }, "responseRequired": true } -Info 75 [16:02:49.000] request: +Info 75 [00:02:49.000] request: { "command": "definitionAndBoundSpan", "arguments": { @@ -1047,7 +1047,7 @@ FsWatchesRecursive:: /user/username/projects/myproject/random: {} -Info 76 [16:02:50.000] response: +Info 76 [00:02:50.000] response: { "response": { "definitions": [ @@ -1084,7 +1084,7 @@ Info 76 [16:02:50.000] response: }, "responseRequired": true } -Info 77 [16:02:51.000] request: +Info 77 [00:02:51.000] request: { "command": "rename", "arguments": { @@ -1127,10 +1127,10 @@ FsWatchesRecursive:: /user/username/projects/myproject/random: {} -Info 78 [16:02:52.000] Search path: /user/username/projects/myproject/dependency -Info 79 [16:02:53.000] For info: /user/username/projects/myproject/dependency/FnS.ts :: Config file name: /user/username/projects/myproject/dependency/tsconfig.json -Info 80 [16:02:54.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/decls/FnS.d.ts 500 undefined WatchType: Closed Script info -Info 81 [16:02:55.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/decls/FnS.d.ts.map 2000 undefined WatchType: Missing source map file +Info 78 [00:02:52.000] Search path: /user/username/projects/myproject/dependency +Info 79 [00:02:53.000] For info: /user/username/projects/myproject/dependency/FnS.ts :: Config file name: /user/username/projects/myproject/dependency/tsconfig.json +Info 80 [00:02:54.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/decls/FnS.d.ts 500 undefined WatchType: Closed Script info +Info 81 [00:02:55.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/decls/FnS.d.ts.map 2000 undefined WatchType: Missing source map file After request PolledWatches:: @@ -1167,7 +1167,7 @@ FsWatchesRecursive:: /user/username/projects/myproject/random: {} -Info 82 [16:02:56.000] response: +Info 82 [00:02:56.000] response: { "response": { "info": { @@ -1248,7 +1248,7 @@ Info 82 [16:02:56.000] response: }, "responseRequired": true } -Info 83 [16:02:57.000] request: +Info 83 [00:02:57.000] request: { "command": "rename", "arguments": { @@ -1295,8 +1295,8 @@ FsWatchesRecursive:: /user/username/projects/myproject/random: {} -Info 84 [16:02:58.000] Search path: /user/username/projects/myproject/dependency -Info 85 [16:02:59.000] For info: /user/username/projects/myproject/dependency/FnS.ts :: Config file name: /user/username/projects/myproject/dependency/tsconfig.json +Info 84 [00:02:58.000] Search path: /user/username/projects/myproject/dependency +Info 85 [00:02:59.000] For info: /user/username/projects/myproject/dependency/FnS.ts :: Config file name: /user/username/projects/myproject/dependency/tsconfig.json After request PolledWatches:: @@ -1333,7 +1333,7 @@ FsWatchesRecursive:: /user/username/projects/myproject/random: {} -Info 86 [16:03:00.000] response: +Info 86 [00:03:00.000] response: { "response": { "info": { @@ -1414,7 +1414,7 @@ Info 86 [16:03:00.000] response: }, "responseRequired": true } -Info 87 [16:03:01.000] request: +Info 87 [00:03:01.000] request: { "command": "rename", "arguments": { @@ -1461,8 +1461,8 @@ FsWatchesRecursive:: /user/username/projects/myproject/random: {} -Info 88 [16:03:02.000] Search path: /user/username/projects/myproject/dependency -Info 89 [16:03:03.000] For info: /user/username/projects/myproject/dependency/FnS.ts :: Config file name: /user/username/projects/myproject/dependency/tsconfig.json +Info 88 [00:03:02.000] Search path: /user/username/projects/myproject/dependency +Info 89 [00:03:03.000] For info: /user/username/projects/myproject/dependency/FnS.ts :: Config file name: /user/username/projects/myproject/dependency/tsconfig.json After request PolledWatches:: @@ -1499,7 +1499,7 @@ FsWatchesRecursive:: /user/username/projects/myproject/random: {} -Info 90 [16:03:04.000] response: +Info 90 [00:03:04.000] response: { "response": { "info": { @@ -1580,7 +1580,7 @@ Info 90 [16:03:04.000] response: }, "responseRequired": true } -Info 91 [16:03:05.000] request: +Info 91 [00:03:05.000] request: { "command": "rename", "arguments": { @@ -1627,8 +1627,8 @@ FsWatchesRecursive:: /user/username/projects/myproject/random: {} -Info 92 [16:03:06.000] Search path: /user/username/projects/myproject/dependency -Info 93 [16:03:07.000] For info: /user/username/projects/myproject/dependency/FnS.ts :: Config file name: /user/username/projects/myproject/dependency/tsconfig.json +Info 92 [00:03:06.000] Search path: /user/username/projects/myproject/dependency +Info 93 [00:03:07.000] For info: /user/username/projects/myproject/dependency/FnS.ts :: Config file name: /user/username/projects/myproject/dependency/tsconfig.json After request PolledWatches:: @@ -1665,7 +1665,7 @@ FsWatchesRecursive:: /user/username/projects/myproject/random: {} -Info 94 [16:03:08.000] response: +Info 94 [00:03:08.000] response: { "response": { "info": { @@ -1746,7 +1746,7 @@ Info 94 [16:03:08.000] response: }, "responseRequired": true } -Info 95 [16:03:09.000] request: +Info 95 [00:03:09.000] request: { "command": "rename", "arguments": { @@ -1793,8 +1793,8 @@ FsWatchesRecursive:: /user/username/projects/myproject/random: {} -Info 96 [16:03:10.000] Search path: /user/username/projects/myproject/dependency -Info 97 [16:03:11.000] For info: /user/username/projects/myproject/dependency/FnS.ts :: Config file name: /user/username/projects/myproject/dependency/tsconfig.json +Info 96 [00:03:10.000] Search path: /user/username/projects/myproject/dependency +Info 97 [00:03:11.000] For info: /user/username/projects/myproject/dependency/FnS.ts :: Config file name: /user/username/projects/myproject/dependency/tsconfig.json After request PolledWatches:: @@ -1831,7 +1831,7 @@ FsWatchesRecursive:: /user/username/projects/myproject/random: {} -Info 98 [16:03:12.000] response: +Info 98 [00:03:12.000] response: { "response": { "info": { @@ -1912,7 +1912,7 @@ Info 98 [16:03:12.000] response: }, "responseRequired": true } -Info 99 [16:03:13.000] request: +Info 99 [00:03:13.000] request: { "seq": 0, "type": "request", @@ -1957,24 +1957,24 @@ FsWatchesRecursive:: /user/username/projects/myproject/random: {} -Info 100 [16:03:14.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/random/random.ts 500 undefined WatchType: Closed Script info -Info 101 [16:03:15.000] Project '/user/username/projects/myproject/main/tsconfig.json' (Configured) -Info 101 [16:03:16.000] Files (3) +Info 100 [00:03:14.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/random/random.ts 500 undefined WatchType: Closed Script info +Info 101 [00:03:15.000] Project '/user/username/projects/myproject/main/tsconfig.json' (Configured) +Info 101 [00:03:16.000] Files (3) -Info 101 [16:03:17.000] ----------------------------------------------- -Info 101 [16:03:18.000] Project '/user/username/projects/myproject/dependency/tsconfig.json' (Configured) -Info 101 [16:03:19.000] Files (2) +Info 101 [00:03:17.000] ----------------------------------------------- +Info 101 [00:03:18.000] Project '/user/username/projects/myproject/dependency/tsconfig.json' (Configured) +Info 101 [00:03:19.000] Files (2) -Info 101 [16:03:20.000] ----------------------------------------------- -Info 101 [16:03:21.000] Project '/user/username/projects/myproject/random/tsconfig.json' (Configured) -Info 101 [16:03:22.000] Files (2) +Info 101 [00:03:20.000] ----------------------------------------------- +Info 101 [00:03:21.000] Project '/user/username/projects/myproject/random/tsconfig.json' (Configured) +Info 101 [00:03:22.000] Files (2) -Info 101 [16:03:23.000] ----------------------------------------------- -Info 101 [16:03:24.000] Open files: -Info 101 [16:03:25.000] FileName: /user/username/projects/myproject/main/main.ts ProjectRootPath: undefined -Info 101 [16:03:26.000] Projects: /user/username/projects/myproject/main/tsconfig.json -Info 101 [16:03:27.000] FileName: /user/username/projects/myproject/dependency/FnS.ts ProjectRootPath: undefined -Info 101 [16:03:28.000] Projects: /user/username/projects/myproject/main/tsconfig.json,/user/username/projects/myproject/dependency/tsconfig.json +Info 101 [00:03:23.000] ----------------------------------------------- +Info 101 [00:03:24.000] Open files: +Info 101 [00:03:25.000] FileName: /user/username/projects/myproject/main/main.ts ProjectRootPath: undefined +Info 101 [00:03:26.000] Projects: /user/username/projects/myproject/main/tsconfig.json +Info 101 [00:03:27.000] FileName: /user/username/projects/myproject/dependency/FnS.ts ProjectRootPath: undefined +Info 101 [00:03:28.000] Projects: /user/username/projects/myproject/main/tsconfig.json,/user/username/projects/myproject/dependency/tsconfig.json After request PolledWatches:: @@ -2013,11 +2013,11 @@ FsWatchesRecursive:: /user/username/projects/myproject/random: {} -Info 101 [16:03:29.000] response: +Info 101 [00:03:29.000] response: { "responseRequired": false } -Info 102 [16:03:30.000] request: +Info 102 [00:03:30.000] request: { "seq": 0, "type": "request", @@ -2064,28 +2064,28 @@ FsWatchesRecursive:: /user/username/projects/myproject/random: {} -Info 103 [16:03:31.000] FileWatcher:: Close:: WatchInfo: /user/username/projects/myproject/random/random.ts 500 undefined WatchType: Closed Script info -Info 104 [16:03:32.000] Search path: /user/username/projects/myproject/random -Info 105 [16:03:33.000] For info: /user/username/projects/myproject/random/random.ts :: Config file name: /user/username/projects/myproject/random/tsconfig.json -Info 106 [16:03:34.000] Project '/user/username/projects/myproject/main/tsconfig.json' (Configured) -Info 106 [16:03:35.000] Files (3) - -Info 106 [16:03:36.000] ----------------------------------------------- -Info 106 [16:03:37.000] Project '/user/username/projects/myproject/dependency/tsconfig.json' (Configured) -Info 106 [16:03:38.000] Files (2) - -Info 106 [16:03:39.000] ----------------------------------------------- -Info 106 [16:03:40.000] Project '/user/username/projects/myproject/random/tsconfig.json' (Configured) -Info 106 [16:03:41.000] Files (2) - -Info 106 [16:03:42.000] ----------------------------------------------- -Info 106 [16:03:43.000] Open files: -Info 106 [16:03:44.000] FileName: /user/username/projects/myproject/main/main.ts ProjectRootPath: undefined -Info 106 [16:03:45.000] Projects: /user/username/projects/myproject/main/tsconfig.json -Info 106 [16:03:46.000] FileName: /user/username/projects/myproject/dependency/FnS.ts ProjectRootPath: undefined -Info 106 [16:03:47.000] Projects: /user/username/projects/myproject/main/tsconfig.json,/user/username/projects/myproject/dependency/tsconfig.json -Info 106 [16:03:48.000] FileName: /user/username/projects/myproject/random/random.ts ProjectRootPath: undefined -Info 106 [16:03:49.000] Projects: /user/username/projects/myproject/random/tsconfig.json +Info 103 [00:03:31.000] FileWatcher:: Close:: WatchInfo: /user/username/projects/myproject/random/random.ts 500 undefined WatchType: Closed Script info +Info 104 [00:03:32.000] Search path: /user/username/projects/myproject/random +Info 105 [00:03:33.000] For info: /user/username/projects/myproject/random/random.ts :: Config file name: /user/username/projects/myproject/random/tsconfig.json +Info 106 [00:03:34.000] Project '/user/username/projects/myproject/main/tsconfig.json' (Configured) +Info 106 [00:03:35.000] Files (3) + +Info 106 [00:03:36.000] ----------------------------------------------- +Info 106 [00:03:37.000] Project '/user/username/projects/myproject/dependency/tsconfig.json' (Configured) +Info 106 [00:03:38.000] Files (2) + +Info 106 [00:03:39.000] ----------------------------------------------- +Info 106 [00:03:40.000] Project '/user/username/projects/myproject/random/tsconfig.json' (Configured) +Info 106 [00:03:41.000] Files (2) + +Info 106 [00:03:42.000] ----------------------------------------------- +Info 106 [00:03:43.000] Open files: +Info 106 [00:03:44.000] FileName: /user/username/projects/myproject/main/main.ts ProjectRootPath: undefined +Info 106 [00:03:45.000] Projects: /user/username/projects/myproject/main/tsconfig.json +Info 106 [00:03:46.000] FileName: /user/username/projects/myproject/dependency/FnS.ts ProjectRootPath: undefined +Info 106 [00:03:47.000] Projects: /user/username/projects/myproject/main/tsconfig.json,/user/username/projects/myproject/dependency/tsconfig.json +Info 106 [00:03:48.000] FileName: /user/username/projects/myproject/random/random.ts ProjectRootPath: undefined +Info 106 [00:03:49.000] Projects: /user/username/projects/myproject/random/tsconfig.json After request PolledWatches:: @@ -2122,11 +2122,11 @@ FsWatchesRecursive:: /user/username/projects/myproject/random: {} -Info 106 [16:03:50.000] response: +Info 106 [00:03:50.000] response: { "responseRequired": false } -Info 107 [16:03:51.000] request: +Info 107 [00:03:51.000] request: { "seq": 0, "type": "request", @@ -2171,24 +2171,24 @@ FsWatchesRecursive:: /user/username/projects/myproject/random: {} -Info 108 [16:03:52.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/main/main.ts 500 undefined WatchType: Closed Script info -Info 109 [16:03:53.000] Project '/user/username/projects/myproject/main/tsconfig.json' (Configured) -Info 109 [16:03:54.000] Files (3) +Info 108 [00:03:52.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/main/main.ts 500 undefined WatchType: Closed Script info +Info 109 [00:03:53.000] Project '/user/username/projects/myproject/main/tsconfig.json' (Configured) +Info 109 [00:03:54.000] Files (3) -Info 109 [16:03:55.000] ----------------------------------------------- -Info 109 [16:03:56.000] Project '/user/username/projects/myproject/dependency/tsconfig.json' (Configured) -Info 109 [16:03:57.000] Files (2) +Info 109 [00:03:55.000] ----------------------------------------------- +Info 109 [00:03:56.000] Project '/user/username/projects/myproject/dependency/tsconfig.json' (Configured) +Info 109 [00:03:57.000] Files (2) -Info 109 [16:03:58.000] ----------------------------------------------- -Info 109 [16:03:59.000] Project '/user/username/projects/myproject/random/tsconfig.json' (Configured) -Info 109 [16:04:00.000] Files (2) +Info 109 [00:03:58.000] ----------------------------------------------- +Info 109 [00:03:59.000] Project '/user/username/projects/myproject/random/tsconfig.json' (Configured) +Info 109 [00:04:00.000] Files (2) -Info 109 [16:04:01.000] ----------------------------------------------- -Info 109 [16:04:02.000] Open files: -Info 109 [16:04:03.000] FileName: /user/username/projects/myproject/dependency/FnS.ts ProjectRootPath: undefined -Info 109 [16:04:04.000] Projects: /user/username/projects/myproject/main/tsconfig.json,/user/username/projects/myproject/dependency/tsconfig.json -Info 109 [16:04:05.000] FileName: /user/username/projects/myproject/random/random.ts ProjectRootPath: undefined -Info 109 [16:04:06.000] Projects: /user/username/projects/myproject/random/tsconfig.json +Info 109 [00:04:01.000] ----------------------------------------------- +Info 109 [00:04:02.000] Open files: +Info 109 [00:04:03.000] FileName: /user/username/projects/myproject/dependency/FnS.ts ProjectRootPath: undefined +Info 109 [00:04:04.000] Projects: /user/username/projects/myproject/main/tsconfig.json,/user/username/projects/myproject/dependency/tsconfig.json +Info 109 [00:04:05.000] FileName: /user/username/projects/myproject/random/random.ts ProjectRootPath: undefined +Info 109 [00:04:06.000] Projects: /user/username/projects/myproject/random/tsconfig.json After request PolledWatches:: @@ -2227,11 +2227,11 @@ FsWatchesRecursive:: /user/username/projects/myproject/random: {} -Info 109 [16:04:07.000] response: +Info 109 [00:04:07.000] response: { "responseRequired": false } -Info 110 [16:04:08.000] request: +Info 110 [00:04:08.000] request: { "seq": 0, "type": "request", @@ -2278,22 +2278,22 @@ FsWatchesRecursive:: /user/username/projects/myproject/random: {} -Info 111 [16:04:09.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/dependency/FnS.ts 500 undefined WatchType: Closed Script info -Info 112 [16:04:10.000] Project '/user/username/projects/myproject/main/tsconfig.json' (Configured) -Info 112 [16:04:11.000] Files (3) +Info 111 [00:04:09.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/dependency/FnS.ts 500 undefined WatchType: Closed Script info +Info 112 [00:04:10.000] Project '/user/username/projects/myproject/main/tsconfig.json' (Configured) +Info 112 [00:04:11.000] Files (3) -Info 112 [16:04:12.000] ----------------------------------------------- -Info 112 [16:04:13.000] Project '/user/username/projects/myproject/dependency/tsconfig.json' (Configured) -Info 112 [16:04:14.000] Files (2) +Info 112 [00:04:12.000] ----------------------------------------------- +Info 112 [00:04:13.000] Project '/user/username/projects/myproject/dependency/tsconfig.json' (Configured) +Info 112 [00:04:14.000] Files (2) -Info 112 [16:04:15.000] ----------------------------------------------- -Info 112 [16:04:16.000] Project '/user/username/projects/myproject/random/tsconfig.json' (Configured) -Info 112 [16:04:17.000] Files (2) +Info 112 [00:04:15.000] ----------------------------------------------- +Info 112 [00:04:16.000] Project '/user/username/projects/myproject/random/tsconfig.json' (Configured) +Info 112 [00:04:17.000] Files (2) -Info 112 [16:04:18.000] ----------------------------------------------- -Info 112 [16:04:19.000] Open files: -Info 112 [16:04:20.000] FileName: /user/username/projects/myproject/random/random.ts ProjectRootPath: undefined -Info 112 [16:04:21.000] Projects: /user/username/projects/myproject/random/tsconfig.json +Info 112 [00:04:18.000] ----------------------------------------------- +Info 112 [00:04:19.000] Open files: +Info 112 [00:04:20.000] FileName: /user/username/projects/myproject/random/random.ts ProjectRootPath: undefined +Info 112 [00:04:21.000] Projects: /user/username/projects/myproject/random/tsconfig.json After request PolledWatches:: @@ -2334,11 +2334,11 @@ FsWatchesRecursive:: /user/username/projects/myproject/random: {} -Info 112 [16:04:22.000] response: +Info 112 [00:04:22.000] response: { "responseRequired": false } -Info 113 [16:04:23.000] request: +Info 113 [00:04:23.000] request: { "seq": 0, "type": "request", @@ -2387,20 +2387,20 @@ FsWatchesRecursive:: /user/username/projects/myproject/random: {} -Info 114 [16:04:24.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/random/random.ts 500 undefined WatchType: Closed Script info -Info 115 [16:04:25.000] Project '/user/username/projects/myproject/main/tsconfig.json' (Configured) -Info 115 [16:04:26.000] Files (3) +Info 114 [00:04:24.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/random/random.ts 500 undefined WatchType: Closed Script info +Info 115 [00:04:25.000] Project '/user/username/projects/myproject/main/tsconfig.json' (Configured) +Info 115 [00:04:26.000] Files (3) -Info 115 [16:04:27.000] ----------------------------------------------- -Info 115 [16:04:28.000] Project '/user/username/projects/myproject/dependency/tsconfig.json' (Configured) -Info 115 [16:04:29.000] Files (2) +Info 115 [00:04:27.000] ----------------------------------------------- +Info 115 [00:04:28.000] Project '/user/username/projects/myproject/dependency/tsconfig.json' (Configured) +Info 115 [00:04:29.000] Files (2) -Info 115 [16:04:30.000] ----------------------------------------------- -Info 115 [16:04:31.000] Project '/user/username/projects/myproject/random/tsconfig.json' (Configured) -Info 115 [16:04:32.000] Files (2) +Info 115 [00:04:30.000] ----------------------------------------------- +Info 115 [00:04:31.000] Project '/user/username/projects/myproject/random/tsconfig.json' (Configured) +Info 115 [00:04:32.000] Files (2) -Info 115 [16:04:33.000] ----------------------------------------------- -Info 115 [16:04:34.000] Open files: +Info 115 [00:04:33.000] ----------------------------------------------- +Info 115 [00:04:34.000] Open files: After request PolledWatches:: @@ -2443,11 +2443,11 @@ FsWatchesRecursive:: /user/username/projects/myproject/random: {} -Info 115 [16:04:35.000] response: +Info 115 [00:04:35.000] response: { "responseRequired": false } -Info 116 [16:04:36.000] request: +Info 116 [00:04:36.000] request: { "seq": 0, "type": "request", @@ -2498,12 +2498,12 @@ FsWatchesRecursive:: /user/username/projects/myproject/random: {} -Info 117 [16:04:37.000] FileWatcher:: Close:: WatchInfo: /user/username/projects/myproject/random/random.ts 500 undefined WatchType: Closed Script info -Info 118 [16:04:38.000] Search path: /user/username/projects/myproject/random -Info 119 [16:04:39.000] For info: /user/username/projects/myproject/random/random.ts :: Config file name: /user/username/projects/myproject/random/tsconfig.json -Info 120 [16:04:40.000] `remove Project:: -Info 121 [16:04:41.000] Project '/user/username/projects/myproject/main/tsconfig.json' (Configured) -Info 122 [16:04:42.000] Files (3) +Info 117 [00:04:37.000] FileWatcher:: Close:: WatchInfo: /user/username/projects/myproject/random/random.ts 500 undefined WatchType: Closed Script info +Info 118 [00:04:38.000] Search path: /user/username/projects/myproject/random +Info 119 [00:04:39.000] For info: /user/username/projects/myproject/random/random.ts :: Config file name: /user/username/projects/myproject/random/tsconfig.json +Info 120 [00:04:40.000] `remove Project:: +Info 121 [00:04:41.000] Project '/user/username/projects/myproject/main/tsconfig.json' (Configured) +Info 122 [00:04:42.000] Files (3) /a/lib/lib.d.ts /user/username/projects/myproject/dependency/FnS.ts /user/username/projects/myproject/main/main.ts @@ -2516,19 +2516,19 @@ Info 122 [16:04:42.000] Files (3) main.ts Matched by default include pattern '**/*' -Info 123 [16:04:43.000] ----------------------------------------------- -Info 124 [16:04:44.000] DirectoryWatcher:: Close:: WatchInfo: /user/username/projects/myproject/main 1 undefined Config: /user/username/projects/myproject/main/tsconfig.json WatchType: Wild card directory -Info 125 [16:04:45.000] 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 126 [16:04:46.000] FileWatcher:: Close:: WatchInfo: /user/username/projects/myproject/main/tsconfig.json 2000 undefined Project: /user/username/projects/myproject/main/tsconfig.json WatchType: Config file -Info 127 [16:04:47.000] DirectoryWatcher:: Close:: WatchInfo: /user/username/projects/myproject/decls 1 undefined Project: /user/username/projects/myproject/main/tsconfig.json WatchType: Failed Lookup Locations -Info 128 [16:04:48.000] 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 129 [16:04:49.000] 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 130 [16:04:50.000] 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 131 [16:04:51.000] DirectoryWatcher:: Close:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/main/tsconfig.json WatchType: Type roots -Info 132 [16:04:52.000] 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 133 [16:04:53.000] `remove Project:: -Info 134 [16:04:54.000] Project '/user/username/projects/myproject/dependency/tsconfig.json' (Configured) -Info 135 [16:04:55.000] Files (2) +Info 123 [00:04:43.000] ----------------------------------------------- +Info 124 [00:04:44.000] DirectoryWatcher:: Close:: WatchInfo: /user/username/projects/myproject/main 1 undefined Config: /user/username/projects/myproject/main/tsconfig.json WatchType: Wild card directory +Info 125 [00:04:45.000] 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 126 [00:04:46.000] FileWatcher:: Close:: WatchInfo: /user/username/projects/myproject/main/tsconfig.json 2000 undefined Project: /user/username/projects/myproject/main/tsconfig.json WatchType: Config file +Info 127 [00:04:47.000] DirectoryWatcher:: Close:: WatchInfo: /user/username/projects/myproject/decls 1 undefined Project: /user/username/projects/myproject/main/tsconfig.json WatchType: Failed Lookup Locations +Info 128 [00:04:48.000] 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 129 [00:04:49.000] 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 130 [00:04:50.000] 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 131 [00:04:51.000] DirectoryWatcher:: Close:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/main/tsconfig.json WatchType: Type roots +Info 132 [00:04:52.000] 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 133 [00:04:53.000] `remove Project:: +Info 134 [00:04:54.000] Project '/user/username/projects/myproject/dependency/tsconfig.json' (Configured) +Info 135 [00:04:55.000] Files (2) /a/lib/lib.d.ts /user/username/projects/myproject/dependency/FnS.ts @@ -2538,25 +2538,25 @@ Info 135 [16:04:55.000] Files (2) FnS.ts Matched by default include pattern '**/*' -Info 136 [16:04:56.000] ----------------------------------------------- -Info 137 [16:04:57.000] DirectoryWatcher:: Close:: WatchInfo: /user/username/projects/myproject/dependency 1 undefined Config: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Wild card directory -Info 138 [16:04:58.000] 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 139 [16:04:59.000] FileWatcher:: Close:: WatchInfo: /user/username/projects/myproject/dependency/tsconfig.json 2000 undefined Project: /user/username/projects/myproject/main/tsconfig.json WatchType: Config file -Info 140 [16:05:00.000] 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 141 [16:05:01.000] 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 142 [16:05:02.000] DirectoryWatcher:: Close:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Type roots -Info 143 [16:05:03.000] 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 144 [16:05:04.000] FileWatcher:: Close:: WatchInfo: /user/username/projects/myproject/main/main.ts 500 undefined WatchType: Closed Script info -Info 145 [16:05:05.000] FileWatcher:: Close:: WatchInfo: /user/username/projects/myproject/dependency/FnS.ts 500 undefined WatchType: Closed Script info -Info 146 [16:05:06.000] FileWatcher:: Close:: WatchInfo: /user/username/projects/myproject/decls/FnS.d.ts 500 undefined WatchType: Closed Script info -Info 147 [16:05:07.000] FileWatcher:: Close:: WatchInfo: /user/username/projects/myproject/decls/FnS.d.ts.map 2000 undefined WatchType: Missing source map file -Info 148 [16:05:08.000] Project '/user/username/projects/myproject/random/tsconfig.json' (Configured) -Info 148 [16:05:09.000] Files (2) - -Info 148 [16:05:10.000] ----------------------------------------------- -Info 148 [16:05:11.000] Open files: -Info 148 [16:05:12.000] FileName: /user/username/projects/myproject/random/random.ts ProjectRootPath: undefined -Info 148 [16:05:13.000] Projects: /user/username/projects/myproject/random/tsconfig.json +Info 136 [00:04:56.000] ----------------------------------------------- +Info 137 [00:04:57.000] DirectoryWatcher:: Close:: WatchInfo: /user/username/projects/myproject/dependency 1 undefined Config: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Wild card directory +Info 138 [00:04:58.000] 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 139 [00:04:59.000] FileWatcher:: Close:: WatchInfo: /user/username/projects/myproject/dependency/tsconfig.json 2000 undefined Project: /user/username/projects/myproject/main/tsconfig.json WatchType: Config file +Info 140 [00:05:00.000] 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 141 [00:05:01.000] 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 142 [00:05:02.000] DirectoryWatcher:: Close:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Type roots +Info 143 [00:05:03.000] 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 144 [00:05:04.000] FileWatcher:: Close:: WatchInfo: /user/username/projects/myproject/main/main.ts 500 undefined WatchType: Closed Script info +Info 145 [00:05:05.000] FileWatcher:: Close:: WatchInfo: /user/username/projects/myproject/dependency/FnS.ts 500 undefined WatchType: Closed Script info +Info 146 [00:05:06.000] FileWatcher:: Close:: WatchInfo: /user/username/projects/myproject/decls/FnS.d.ts 500 undefined WatchType: Closed Script info +Info 147 [00:05:07.000] FileWatcher:: Close:: WatchInfo: /user/username/projects/myproject/decls/FnS.d.ts.map 2000 undefined WatchType: Missing source map file +Info 148 [00:05:08.000] Project '/user/username/projects/myproject/random/tsconfig.json' (Configured) +Info 148 [00:05:09.000] Files (2) + +Info 148 [00:05:10.000] ----------------------------------------------- +Info 148 [00:05:11.000] Open files: +Info 148 [00:05:12.000] FileName: /user/username/projects/myproject/random/random.ts ProjectRootPath: undefined +Info 148 [00:05:13.000] Projects: /user/username/projects/myproject/random/tsconfig.json After request PolledWatches:: @@ -2575,7 +2575,7 @@ FsWatchesRecursive:: /user/username/projects/myproject/random: {} -Info 148 [16:05:14.000] response: +Info 148 [00:05:14.000] response: { "responseRequired": false } \ No newline at end of file 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 5dd0af6572d33..b16282efa5901 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 @@ -1,5 +1,5 @@ -Info 0 [16:01:00.000] Provided types map file "/a/lib/typesMap.json" doesn't exist -Info 1 [16:01:01.000] request: +Info 0 [00:01:00.000] Provided types map file "/a/lib/typesMap.json" doesn't exist +Info 1 [00:01:01.000] request: { "seq": 0, "type": "request", @@ -200,11 +200,11 @@ FsWatches:: FsWatchesRecursive:: -Info 2 [16:01:02.000] Search path: /user/username/projects/myproject/main -Info 3 [16:01:03.000] For info: /user/username/projects/myproject/main/main.ts :: Config file name: /user/username/projects/myproject/main/tsconfig.json -Info 4 [16:01:04.000] Creating configuration project /user/username/projects/myproject/main/tsconfig.json -Info 5 [16:01:05.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/main/tsconfig.json 2000 undefined Project: /user/username/projects/myproject/main/tsconfig.json WatchType: Config file -Info 6 [16:01:06.000] Config: /user/username/projects/myproject/main/tsconfig.json : { +Info 2 [00:01:02.000] Search path: /user/username/projects/myproject/main +Info 3 [00:01:03.000] For info: /user/username/projects/myproject/main/main.ts :: Config file name: /user/username/projects/myproject/main/tsconfig.json +Info 4 [00:01:04.000] Creating configuration project /user/username/projects/myproject/main/tsconfig.json +Info 5 [00:01:05.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/main/tsconfig.json 2000 undefined Project: /user/username/projects/myproject/main/tsconfig.json WatchType: Config file +Info 6 [00:01:06.000] Config: /user/username/projects/myproject/main/tsconfig.json : { "rootNames": [ "/user/username/projects/myproject/main/main.ts" ], @@ -220,11 +220,11 @@ Info 6 [16:01:06.000] Config: /user/username/projects/myproject/main/tsconfig } ] } -Info 7 [16:01:07.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/main 1 undefined Config: /user/username/projects/myproject/main/tsconfig.json WatchType: Wild card directory -Info 8 [16:01:08.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/main 1 undefined Config: /user/username/projects/myproject/main/tsconfig.json WatchType: Wild card directory -Info 9 [16:01:09.000] Plugins were requested but not running in environment that supports 'require'. Nothing will be loaded -Info 10 [16:01:10.000] Starting updateGraphWorker: Project: /user/username/projects/myproject/main/tsconfig.json -Info 11 [16:01:11.000] Config: /user/username/projects/myproject/dependency/tsconfig.json : { +Info 7 [00:01:07.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/main 1 undefined Config: /user/username/projects/myproject/main/tsconfig.json WatchType: Wild card directory +Info 8 [00:01:08.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/main 1 undefined Config: /user/username/projects/myproject/main/tsconfig.json WatchType: Wild card directory +Info 9 [00:01:09.000] Plugins were requested but not running in environment that supports 'require'. Nothing will be loaded +Info 10 [00:01:10.000] Starting updateGraphWorker: Project: /user/username/projects/myproject/main/tsconfig.json +Info 11 [00:01:11.000] Config: /user/username/projects/myproject/dependency/tsconfig.json : { "rootNames": [ "/user/username/projects/myproject/dependency/FnS.ts" ], @@ -235,20 +235,20 @@ Info 11 [16:01:11.000] Config: /user/username/projects/myproject/dependency/ts "configFilePath": "/user/username/projects/myproject/dependency/tsconfig.json" } } -Info 12 [16:01:12.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/dependency/tsconfig.json 2000 undefined Project: /user/username/projects/myproject/main/tsconfig.json WatchType: Config file -Info 13 [16:01:13.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/dependency 1 undefined Config: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Wild card directory -Info 14 [16:01:14.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/dependency 1 undefined Config: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Wild card directory -Info 15 [16:01:15.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/decls 1 undefined Project: /user/username/projects/myproject/main/tsconfig.json WatchType: Failed Lookup Locations -Info 16 [16:01:16.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/decls 1 undefined Project: /user/username/projects/myproject/main/tsconfig.json WatchType: Failed Lookup Locations -Info 17 [16:01:17.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/dependency/FnS.ts 500 undefined WatchType: Closed Script info -Info 18 [16:01:18.000] FileWatcher:: Added:: WatchInfo: /a/lib/lib.d.ts 500 undefined WatchType: Closed Script info -Info 19 [16:01:19.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/main/node_modules/@types 1 undefined Project: /user/username/projects/myproject/main/tsconfig.json WatchType: Type roots -Info 20 [16:01:20.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/main/node_modules/@types 1 undefined Project: /user/username/projects/myproject/main/tsconfig.json WatchType: Type roots -Info 21 [16:01:21.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/main/tsconfig.json WatchType: Type roots -Info 22 [16:01:22.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/main/tsconfig.json WatchType: Type roots -Info 23 [16:01:23.000] Finishing updateGraphWorker: Project: /user/username/projects/myproject/main/tsconfig.json Version: 1 structureChanged: true structureIsReused:: Not Elapsed:: *ms -Info 24 [16:01:24.000] Project '/user/username/projects/myproject/main/tsconfig.json' (Configured) -Info 25 [16:01:25.000] Files (3) +Info 12 [00:01:12.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/dependency/tsconfig.json 2000 undefined Project: /user/username/projects/myproject/main/tsconfig.json WatchType: Config file +Info 13 [00:01:13.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/dependency 1 undefined Config: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Wild card directory +Info 14 [00:01:14.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/dependency 1 undefined Config: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Wild card directory +Info 15 [00:01:15.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/decls 1 undefined Project: /user/username/projects/myproject/main/tsconfig.json WatchType: Failed Lookup Locations +Info 16 [00:01:16.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/decls 1 undefined Project: /user/username/projects/myproject/main/tsconfig.json WatchType: Failed Lookup Locations +Info 17 [00:01:17.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/dependency/FnS.ts 500 undefined WatchType: Closed Script info +Info 18 [00:01:18.000] FileWatcher:: Added:: WatchInfo: /a/lib/lib.d.ts 500 undefined WatchType: Closed Script info +Info 19 [00:01:19.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/main/node_modules/@types 1 undefined Project: /user/username/projects/myproject/main/tsconfig.json WatchType: Type roots +Info 20 [00:01:20.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/main/node_modules/@types 1 undefined Project: /user/username/projects/myproject/main/tsconfig.json WatchType: Type roots +Info 21 [00:01:21.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/main/tsconfig.json WatchType: Type roots +Info 22 [00:01:22.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/main/tsconfig.json WatchType: Type roots +Info 23 [00:01:23.000] Finishing updateGraphWorker: Project: /user/username/projects/myproject/main/tsconfig.json Version: 1 structureChanged: true structureIsReused:: Not Elapsed:: *ms +Info 24 [00:01:24.000] Project '/user/username/projects/myproject/main/tsconfig.json' (Configured) +Info 25 [00:01:25.000] Files (3) /a/lib/lib.d.ts /user/username/projects/myproject/dependency/FnS.ts /user/username/projects/myproject/main/main.ts @@ -261,16 +261,16 @@ Info 25 [16:01:25.000] Files (3) main.ts Matched by default include pattern '**/*' -Info 26 [16:01:26.000] ----------------------------------------------- -Info 27 [16:01:27.000] Search path: /user/username/projects/myproject/main -Info 28 [16:01:28.000] For info: /user/username/projects/myproject/main/tsconfig.json :: No config files found. -Info 29 [16:01:29.000] Project '/user/username/projects/myproject/main/tsconfig.json' (Configured) -Info 29 [16:01:30.000] Files (3) +Info 26 [00:01:26.000] ----------------------------------------------- +Info 27 [00:01:27.000] Search path: /user/username/projects/myproject/main +Info 28 [00:01:28.000] For info: /user/username/projects/myproject/main/tsconfig.json :: No config files found. +Info 29 [00:01:29.000] Project '/user/username/projects/myproject/main/tsconfig.json' (Configured) +Info 29 [00:01:30.000] Files (3) -Info 29 [16:01:31.000] ----------------------------------------------- -Info 29 [16:01:32.000] Open files: -Info 29 [16:01:33.000] FileName: /user/username/projects/myproject/main/main.ts ProjectRootPath: undefined -Info 29 [16:01:34.000] Projects: /user/username/projects/myproject/main/tsconfig.json +Info 29 [00:01:31.000] ----------------------------------------------- +Info 29 [00:01:32.000] Open files: +Info 29 [00:01:33.000] FileName: /user/username/projects/myproject/main/main.ts ProjectRootPath: undefined +Info 29 [00:01:34.000] Projects: /user/username/projects/myproject/main/tsconfig.json After request PolledWatches:: @@ -297,11 +297,11 @@ FsWatchesRecursive:: /user/username/projects/myproject/decls: {} -Info 29 [16:01:35.000] response: +Info 29 [00:01:35.000] response: { "responseRequired": false } -Info 30 [16:01:36.000] request: +Info 30 [00:01:36.000] request: { "seq": 0, "type": "request", @@ -336,19 +336,19 @@ FsWatchesRecursive:: /user/username/projects/myproject/decls: {} -Info 31 [16:01:37.000] FileWatcher:: Close:: WatchInfo: /user/username/projects/myproject/dependency/FnS.ts 500 undefined WatchType: Closed Script info -Info 32 [16:01:38.000] Search path: /user/username/projects/myproject/dependency -Info 33 [16:01:39.000] For info: /user/username/projects/myproject/dependency/FnS.ts :: Config file name: /user/username/projects/myproject/dependency/tsconfig.json -Info 34 [16:01:40.000] Creating configuration project /user/username/projects/myproject/dependency/tsconfig.json -Info 35 [16:01:41.000] Plugins were requested but not running in environment that supports 'require'. Nothing will be loaded -Info 36 [16:01:42.000] Starting updateGraphWorker: Project: /user/username/projects/myproject/dependency/tsconfig.json -Info 37 [16:01:43.000] 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 38 [16:01:44.000] 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 39 [16:01:45.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Type roots -Info 40 [16:01:46.000] 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 41 [16:01:47.000] Finishing updateGraphWorker: Project: /user/username/projects/myproject/dependency/tsconfig.json Version: 1 structureChanged: true structureIsReused:: Not Elapsed:: *ms -Info 42 [16:01:48.000] Project '/user/username/projects/myproject/dependency/tsconfig.json' (Configured) -Info 43 [16:01:49.000] Files (2) +Info 31 [00:01:37.000] FileWatcher:: Close:: WatchInfo: /user/username/projects/myproject/dependency/FnS.ts 500 undefined WatchType: Closed Script info +Info 32 [00:01:38.000] Search path: /user/username/projects/myproject/dependency +Info 33 [00:01:39.000] For info: /user/username/projects/myproject/dependency/FnS.ts :: Config file name: /user/username/projects/myproject/dependency/tsconfig.json +Info 34 [00:01:40.000] Creating configuration project /user/username/projects/myproject/dependency/tsconfig.json +Info 35 [00:01:41.000] Plugins were requested but not running in environment that supports 'require'. Nothing will be loaded +Info 36 [00:01:42.000] Starting updateGraphWorker: Project: /user/username/projects/myproject/dependency/tsconfig.json +Info 37 [00:01:43.000] 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 38 [00:01:44.000] 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 39 [00:01:45.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Type roots +Info 40 [00:01:46.000] 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 41 [00:01:47.000] Finishing updateGraphWorker: Project: /user/username/projects/myproject/dependency/tsconfig.json Version: 1 structureChanged: true structureIsReused:: Not Elapsed:: *ms +Info 42 [00:01:48.000] Project '/user/username/projects/myproject/dependency/tsconfig.json' (Configured) +Info 43 [00:01:49.000] Files (2) /a/lib/lib.d.ts /user/username/projects/myproject/dependency/FnS.ts @@ -358,22 +358,22 @@ Info 43 [16:01:49.000] Files (2) FnS.ts Matched by default include pattern '**/*' -Info 44 [16:01:50.000] ----------------------------------------------- -Info 45 [16:01:51.000] Search path: /user/username/projects/myproject/dependency -Info 46 [16:01:52.000] For info: /user/username/projects/myproject/dependency/tsconfig.json :: No config files found. -Info 47 [16:01:53.000] Project '/user/username/projects/myproject/main/tsconfig.json' (Configured) -Info 47 [16:01:54.000] Files (3) - -Info 47 [16:01:55.000] ----------------------------------------------- -Info 47 [16:01:56.000] Project '/user/username/projects/myproject/dependency/tsconfig.json' (Configured) -Info 47 [16:01:57.000] Files (2) - -Info 47 [16:01:58.000] ----------------------------------------------- -Info 47 [16:01:59.000] Open files: -Info 47 [16:02:00.000] FileName: /user/username/projects/myproject/main/main.ts ProjectRootPath: undefined -Info 47 [16:02:01.000] Projects: /user/username/projects/myproject/main/tsconfig.json -Info 47 [16:02:02.000] FileName: /user/username/projects/myproject/dependency/FnS.ts ProjectRootPath: undefined -Info 47 [16:02:03.000] Projects: /user/username/projects/myproject/main/tsconfig.json,/user/username/projects/myproject/dependency/tsconfig.json +Info 44 [00:01:50.000] ----------------------------------------------- +Info 45 [00:01:51.000] Search path: /user/username/projects/myproject/dependency +Info 46 [00:01:52.000] For info: /user/username/projects/myproject/dependency/tsconfig.json :: No config files found. +Info 47 [00:01:53.000] Project '/user/username/projects/myproject/main/tsconfig.json' (Configured) +Info 47 [00:01:54.000] Files (3) + +Info 47 [00:01:55.000] ----------------------------------------------- +Info 47 [00:01:56.000] Project '/user/username/projects/myproject/dependency/tsconfig.json' (Configured) +Info 47 [00:01:57.000] Files (2) + +Info 47 [00:01:58.000] ----------------------------------------------- +Info 47 [00:01:59.000] Open files: +Info 47 [00:02:00.000] FileName: /user/username/projects/myproject/main/main.ts ProjectRootPath: undefined +Info 47 [00:02:01.000] Projects: /user/username/projects/myproject/main/tsconfig.json +Info 47 [00:02:02.000] FileName: /user/username/projects/myproject/dependency/FnS.ts ProjectRootPath: undefined +Info 47 [00:02:03.000] Projects: /user/username/projects/myproject/main/tsconfig.json,/user/username/projects/myproject/dependency/tsconfig.json After request PolledWatches:: @@ -400,11 +400,11 @@ FsWatchesRecursive:: /user/username/projects/myproject/decls: {} -Info 47 [16:02:04.000] response: +Info 47 [00:02:04.000] response: { "responseRequired": false } -Info 48 [16:02:05.000] request: +Info 48 [00:02:05.000] request: { "seq": 0, "type": "request", @@ -439,11 +439,11 @@ FsWatchesRecursive:: /user/username/projects/myproject/decls: {} -Info 49 [16:02:06.000] Search path: /user/username/projects/myproject/random -Info 50 [16:02:07.000] For info: /user/username/projects/myproject/random/random.ts :: Config file name: /user/username/projects/myproject/random/tsconfig.json -Info 51 [16:02:08.000] Creating configuration project /user/username/projects/myproject/random/tsconfig.json -Info 52 [16:02:09.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/random/tsconfig.json 2000 undefined Project: /user/username/projects/myproject/random/tsconfig.json WatchType: Config file -Info 53 [16:02:10.000] Config: /user/username/projects/myproject/random/tsconfig.json : { +Info 49 [00:02:06.000] Search path: /user/username/projects/myproject/random +Info 50 [00:02:07.000] For info: /user/username/projects/myproject/random/random.ts :: Config file name: /user/username/projects/myproject/random/tsconfig.json +Info 51 [00:02:08.000] Creating configuration project /user/username/projects/myproject/random/tsconfig.json +Info 52 [00:02:09.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/random/tsconfig.json 2000 undefined Project: /user/username/projects/myproject/random/tsconfig.json WatchType: Config file +Info 53 [00:02:10.000] Config: /user/username/projects/myproject/random/tsconfig.json : { "rootNames": [ "/user/username/projects/myproject/random/random.ts" ], @@ -451,17 +451,17 @@ Info 53 [16:02:10.000] Config: /user/username/projects/myproject/random/tsconf "configFilePath": "/user/username/projects/myproject/random/tsconfig.json" } } -Info 54 [16:02:11.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/random 1 undefined Config: /user/username/projects/myproject/random/tsconfig.json WatchType: Wild card directory -Info 55 [16:02:12.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/random 1 undefined Config: /user/username/projects/myproject/random/tsconfig.json WatchType: Wild card directory -Info 56 [16:02:13.000] Plugins were requested but not running in environment that supports 'require'. Nothing will be loaded -Info 57 [16:02:14.000] Starting updateGraphWorker: Project: /user/username/projects/myproject/random/tsconfig.json -Info 58 [16:02:15.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/random/node_modules/@types 1 undefined Project: /user/username/projects/myproject/random/tsconfig.json WatchType: Type roots -Info 59 [16:02:16.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/random/node_modules/@types 1 undefined Project: /user/username/projects/myproject/random/tsconfig.json WatchType: Type roots -Info 60 [16:02:17.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/random/tsconfig.json WatchType: Type roots -Info 61 [16:02:18.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/random/tsconfig.json WatchType: Type roots -Info 62 [16:02:19.000] Finishing updateGraphWorker: Project: /user/username/projects/myproject/random/tsconfig.json Version: 1 structureChanged: true structureIsReused:: Not Elapsed:: *ms -Info 63 [16:02:20.000] Project '/user/username/projects/myproject/random/tsconfig.json' (Configured) -Info 64 [16:02:21.000] Files (2) +Info 54 [00:02:11.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/random 1 undefined Config: /user/username/projects/myproject/random/tsconfig.json WatchType: Wild card directory +Info 55 [00:02:12.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/random 1 undefined Config: /user/username/projects/myproject/random/tsconfig.json WatchType: Wild card directory +Info 56 [00:02:13.000] Plugins were requested but not running in environment that supports 'require'. Nothing will be loaded +Info 57 [00:02:14.000] Starting updateGraphWorker: Project: /user/username/projects/myproject/random/tsconfig.json +Info 58 [00:02:15.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/random/node_modules/@types 1 undefined Project: /user/username/projects/myproject/random/tsconfig.json WatchType: Type roots +Info 59 [00:02:16.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/random/node_modules/@types 1 undefined Project: /user/username/projects/myproject/random/tsconfig.json WatchType: Type roots +Info 60 [00:02:17.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/random/tsconfig.json WatchType: Type roots +Info 61 [00:02:18.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/random/tsconfig.json WatchType: Type roots +Info 62 [00:02:19.000] Finishing updateGraphWorker: Project: /user/username/projects/myproject/random/tsconfig.json Version: 1 structureChanged: true structureIsReused:: Not Elapsed:: *ms +Info 63 [00:02:20.000] Project '/user/username/projects/myproject/random/tsconfig.json' (Configured) +Info 64 [00:02:21.000] Files (2) /a/lib/lib.d.ts /user/username/projects/myproject/random/random.ts @@ -471,26 +471,26 @@ Info 64 [16:02:21.000] Files (2) random.ts Matched by default include pattern '**/*' -Info 65 [16:02:22.000] ----------------------------------------------- -Info 66 [16:02:23.000] Project '/user/username/projects/myproject/main/tsconfig.json' (Configured) -Info 66 [16:02:24.000] Files (3) - -Info 66 [16:02:25.000] ----------------------------------------------- -Info 66 [16:02:26.000] Project '/user/username/projects/myproject/dependency/tsconfig.json' (Configured) -Info 66 [16:02:27.000] Files (2) - -Info 66 [16:02:28.000] ----------------------------------------------- -Info 66 [16:02:29.000] Project '/user/username/projects/myproject/random/tsconfig.json' (Configured) -Info 66 [16:02:30.000] Files (2) - -Info 66 [16:02:31.000] ----------------------------------------------- -Info 66 [16:02:32.000] Open files: -Info 66 [16:02:33.000] FileName: /user/username/projects/myproject/main/main.ts ProjectRootPath: undefined -Info 66 [16:02:34.000] Projects: /user/username/projects/myproject/main/tsconfig.json -Info 66 [16:02:35.000] FileName: /user/username/projects/myproject/dependency/FnS.ts ProjectRootPath: undefined -Info 66 [16:02:36.000] Projects: /user/username/projects/myproject/main/tsconfig.json,/user/username/projects/myproject/dependency/tsconfig.json -Info 66 [16:02:37.000] FileName: /user/username/projects/myproject/random/random.ts ProjectRootPath: undefined -Info 66 [16:02:38.000] Projects: /user/username/projects/myproject/random/tsconfig.json +Info 65 [00:02:22.000] ----------------------------------------------- +Info 66 [00:02:23.000] Project '/user/username/projects/myproject/main/tsconfig.json' (Configured) +Info 66 [00:02:24.000] Files (3) + +Info 66 [00:02:25.000] ----------------------------------------------- +Info 66 [00:02:26.000] Project '/user/username/projects/myproject/dependency/tsconfig.json' (Configured) +Info 66 [00:02:27.000] Files (2) + +Info 66 [00:02:28.000] ----------------------------------------------- +Info 66 [00:02:29.000] Project '/user/username/projects/myproject/random/tsconfig.json' (Configured) +Info 66 [00:02:30.000] Files (2) + +Info 66 [00:02:31.000] ----------------------------------------------- +Info 66 [00:02:32.000] Open files: +Info 66 [00:02:33.000] FileName: /user/username/projects/myproject/main/main.ts ProjectRootPath: undefined +Info 66 [00:02:34.000] Projects: /user/username/projects/myproject/main/tsconfig.json +Info 66 [00:02:35.000] FileName: /user/username/projects/myproject/dependency/FnS.ts ProjectRootPath: undefined +Info 66 [00:02:36.000] Projects: /user/username/projects/myproject/main/tsconfig.json,/user/username/projects/myproject/dependency/tsconfig.json +Info 66 [00:02:37.000] FileName: /user/username/projects/myproject/random/random.ts ProjectRootPath: undefined +Info 66 [00:02:38.000] Projects: /user/username/projects/myproject/random/tsconfig.json After request PolledWatches:: @@ -523,11 +523,11 @@ FsWatchesRecursive:: /user/username/projects/myproject/random: {} -Info 66 [16:02:39.000] response: +Info 66 [00:02:39.000] response: { "responseRequired": false } -Info 67 [16:02:40.000] request: +Info 67 [00:02:40.000] request: { "command": "definitionAndBoundSpan", "arguments": { @@ -602,7 +602,7 @@ FsWatchesRecursive:: /user/username/projects/myproject/random: {} -Info 68 [16:02:41.000] response: +Info 68 [00:02:41.000] response: { "response": { "definitions": [ @@ -639,7 +639,7 @@ Info 68 [16:02:41.000] response: }, "responseRequired": true } -Info 69 [16:02:42.000] request: +Info 69 [00:02:42.000] request: { "command": "rename", "arguments": { @@ -682,10 +682,10 @@ FsWatchesRecursive:: /user/username/projects/myproject/random: {} -Info 70 [16:02:43.000] Search path: /user/username/projects/myproject/dependency -Info 71 [16:02:44.000] For info: /user/username/projects/myproject/dependency/FnS.ts :: Config file name: /user/username/projects/myproject/dependency/tsconfig.json -Info 72 [16:02:45.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/decls/FnS.d.ts 500 undefined WatchType: Closed Script info -Info 73 [16:02:46.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/decls/FnS.d.ts.map 500 undefined WatchType: Closed Script info +Info 70 [00:02:43.000] Search path: /user/username/projects/myproject/dependency +Info 71 [00:02:44.000] For info: /user/username/projects/myproject/dependency/FnS.ts :: Config file name: /user/username/projects/myproject/dependency/tsconfig.json +Info 72 [00:02:45.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/decls/FnS.d.ts 500 undefined WatchType: Closed Script info +Info 73 [00:02:46.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/decls/FnS.d.ts.map 500 undefined WatchType: Closed Script info After request PolledWatches:: @@ -722,7 +722,7 @@ FsWatchesRecursive:: /user/username/projects/myproject/random: {} -Info 74 [16:02:47.000] response: +Info 74 [00:02:47.000] response: { "response": { "info": { @@ -803,7 +803,7 @@ Info 74 [16:02:47.000] response: }, "responseRequired": true } -Info 75 [16:02:48.000] request: +Info 75 [00:02:48.000] request: { "command": "change", "arguments": { @@ -889,7 +889,7 @@ FsWatchesRecursive:: /user/username/projects/myproject/random: {} -Info 76 [16:02:49.000] response: +Info 76 [00:02:49.000] response: { "responseRequired": false } @@ -965,7 +965,7 @@ FsWatchesRecursive:: /user/username/projects/myproject/random: {} -Info 77 [16:02:50.000] request: +Info 77 [00:02:50.000] request: { "command": "definitionAndBoundSpan", "arguments": { @@ -1012,9 +1012,9 @@ FsWatchesRecursive:: /user/username/projects/myproject/random: {} -Info 78 [16:02:51.000] Starting updateGraphWorker: Project: /user/username/projects/myproject/main/tsconfig.json -Info 79 [16:02:52.000] Finishing updateGraphWorker: Project: /user/username/projects/myproject/main/tsconfig.json Version: 2 structureChanged: false structureIsReused:: Completely Elapsed:: *ms -Info 80 [16:02:53.000] Different program with same set of files +Info 78 [00:02:51.000] Starting updateGraphWorker: Project: /user/username/projects/myproject/main/tsconfig.json +Info 79 [00:02:52.000] Finishing updateGraphWorker: Project: /user/username/projects/myproject/main/tsconfig.json Version: 2 structureChanged: false structureIsReused:: Completely Elapsed:: *ms +Info 80 [00:02:53.000] Different program with same set of files After request PolledWatches:: @@ -1051,7 +1051,7 @@ FsWatchesRecursive:: /user/username/projects/myproject/random: {} -Info 81 [16:02:54.000] response: +Info 81 [00:02:54.000] response: { "response": { "definitions": [ @@ -1088,7 +1088,7 @@ Info 81 [16:02:54.000] response: }, "responseRequired": true } -Info 82 [16:02:55.000] request: +Info 82 [00:02:55.000] request: { "command": "definitionAndBoundSpan", "arguments": { @@ -1171,7 +1171,7 @@ FsWatchesRecursive:: /user/username/projects/myproject/random: {} -Info 83 [16:02:56.000] response: +Info 83 [00:02:56.000] response: { "response": { "definitions": [ @@ -1208,7 +1208,7 @@ Info 83 [16:02:56.000] response: }, "responseRequired": true } -Info 84 [16:02:57.000] request: +Info 84 [00:02:57.000] request: { "command": "definitionAndBoundSpan", "arguments": { @@ -1291,7 +1291,7 @@ FsWatchesRecursive:: /user/username/projects/myproject/random: {} -Info 85 [16:02:58.000] response: +Info 85 [00:02:58.000] response: { "response": { "definitions": [ @@ -1328,7 +1328,7 @@ Info 85 [16:02:58.000] response: }, "responseRequired": true } -Info 86 [16:02:59.000] request: +Info 86 [00:02:59.000] request: { "command": "definitionAndBoundSpan", "arguments": { @@ -1411,7 +1411,7 @@ FsWatchesRecursive:: /user/username/projects/myproject/random: {} -Info 87 [16:03:00.000] response: +Info 87 [00:03:00.000] response: { "response": { "definitions": [ @@ -1448,7 +1448,7 @@ Info 87 [16:03:00.000] response: }, "responseRequired": true } -Info 88 [16:03:01.000] request: +Info 88 [00:03:01.000] request: { "command": "definitionAndBoundSpan", "arguments": { @@ -1531,7 +1531,7 @@ FsWatchesRecursive:: /user/username/projects/myproject/random: {} -Info 89 [16:03:02.000] response: +Info 89 [00:03:02.000] response: { "response": { "definitions": [ @@ -1568,7 +1568,7 @@ Info 89 [16:03:02.000] response: }, "responseRequired": true } -Info 90 [16:03:03.000] request: +Info 90 [00:03:03.000] request: { "command": "rename", "arguments": { @@ -1615,11 +1615,11 @@ FsWatchesRecursive:: /user/username/projects/myproject/random: {} -Info 91 [16:03:04.000] Starting updateGraphWorker: Project: /user/username/projects/myproject/dependency/tsconfig.json -Info 92 [16:03:05.000] Finishing updateGraphWorker: Project: /user/username/projects/myproject/dependency/tsconfig.json Version: 2 structureChanged: false structureIsReused:: Completely Elapsed:: *ms -Info 93 [16:03:06.000] Different program with same set of files -Info 94 [16:03:07.000] Search path: /user/username/projects/myproject/dependency -Info 95 [16:03:08.000] For info: /user/username/projects/myproject/dependency/FnS.ts :: Config file name: /user/username/projects/myproject/dependency/tsconfig.json +Info 91 [00:03:04.000] Starting updateGraphWorker: Project: /user/username/projects/myproject/dependency/tsconfig.json +Info 92 [00:03:05.000] Finishing updateGraphWorker: Project: /user/username/projects/myproject/dependency/tsconfig.json Version: 2 structureChanged: false structureIsReused:: Completely Elapsed:: *ms +Info 93 [00:03:06.000] Different program with same set of files +Info 94 [00:03:07.000] Search path: /user/username/projects/myproject/dependency +Info 95 [00:03:08.000] For info: /user/username/projects/myproject/dependency/FnS.ts :: Config file name: /user/username/projects/myproject/dependency/tsconfig.json After request PolledWatches:: @@ -1656,7 +1656,7 @@ FsWatchesRecursive:: /user/username/projects/myproject/random: {} -Info 96 [16:03:09.000] response: +Info 96 [00:03:09.000] response: { "response": { "info": { @@ -1737,7 +1737,7 @@ Info 96 [16:03:09.000] response: }, "responseRequired": true } -Info 97 [16:03:10.000] request: +Info 97 [00:03:10.000] request: { "command": "rename", "arguments": { @@ -1784,8 +1784,8 @@ FsWatchesRecursive:: /user/username/projects/myproject/random: {} -Info 98 [16:03:11.000] Search path: /user/username/projects/myproject/dependency -Info 99 [16:03:12.000] For info: /user/username/projects/myproject/dependency/FnS.ts :: Config file name: /user/username/projects/myproject/dependency/tsconfig.json +Info 98 [00:03:11.000] Search path: /user/username/projects/myproject/dependency +Info 99 [00:03:12.000] For info: /user/username/projects/myproject/dependency/FnS.ts :: Config file name: /user/username/projects/myproject/dependency/tsconfig.json After request PolledWatches:: @@ -1822,7 +1822,7 @@ FsWatchesRecursive:: /user/username/projects/myproject/random: {} -Info 100 [16:03:13.000] response: +Info 100 [00:03:13.000] response: { "response": { "info": { @@ -1903,7 +1903,7 @@ Info 100 [16:03:13.000] response: }, "responseRequired": true } -Info 101 [16:03:14.000] request: +Info 101 [00:03:14.000] request: { "command": "rename", "arguments": { @@ -1950,8 +1950,8 @@ FsWatchesRecursive:: /user/username/projects/myproject/random: {} -Info 102 [16:03:15.000] Search path: /user/username/projects/myproject/dependency -Info 103 [16:03:16.000] For info: /user/username/projects/myproject/dependency/FnS.ts :: Config file name: /user/username/projects/myproject/dependency/tsconfig.json +Info 102 [00:03:15.000] Search path: /user/username/projects/myproject/dependency +Info 103 [00:03:16.000] For info: /user/username/projects/myproject/dependency/FnS.ts :: Config file name: /user/username/projects/myproject/dependency/tsconfig.json After request PolledWatches:: @@ -1988,7 +1988,7 @@ FsWatchesRecursive:: /user/username/projects/myproject/random: {} -Info 104 [16:03:17.000] response: +Info 104 [00:03:17.000] response: { "response": { "info": { @@ -2069,7 +2069,7 @@ Info 104 [16:03:17.000] response: }, "responseRequired": true } -Info 105 [16:03:18.000] request: +Info 105 [00:03:18.000] request: { "command": "rename", "arguments": { @@ -2116,8 +2116,8 @@ FsWatchesRecursive:: /user/username/projects/myproject/random: {} -Info 106 [16:03:19.000] Search path: /user/username/projects/myproject/dependency -Info 107 [16:03:20.000] For info: /user/username/projects/myproject/dependency/FnS.ts :: Config file name: /user/username/projects/myproject/dependency/tsconfig.json +Info 106 [00:03:19.000] Search path: /user/username/projects/myproject/dependency +Info 107 [00:03:20.000] For info: /user/username/projects/myproject/dependency/FnS.ts :: Config file name: /user/username/projects/myproject/dependency/tsconfig.json After request PolledWatches:: @@ -2154,7 +2154,7 @@ FsWatchesRecursive:: /user/username/projects/myproject/random: {} -Info 108 [16:03:21.000] response: +Info 108 [00:03:21.000] response: { "response": { "info": { @@ -2235,7 +2235,7 @@ Info 108 [16:03:21.000] response: }, "responseRequired": true } -Info 109 [16:03:22.000] request: +Info 109 [00:03:22.000] request: { "command": "rename", "arguments": { @@ -2282,8 +2282,8 @@ FsWatchesRecursive:: /user/username/projects/myproject/random: {} -Info 110 [16:03:23.000] Search path: /user/username/projects/myproject/dependency -Info 111 [16:03:24.000] For info: /user/username/projects/myproject/dependency/FnS.ts :: Config file name: /user/username/projects/myproject/dependency/tsconfig.json +Info 110 [00:03:23.000] Search path: /user/username/projects/myproject/dependency +Info 111 [00:03:24.000] For info: /user/username/projects/myproject/dependency/FnS.ts :: Config file name: /user/username/projects/myproject/dependency/tsconfig.json After request PolledWatches:: @@ -2320,7 +2320,7 @@ FsWatchesRecursive:: /user/username/projects/myproject/random: {} -Info 112 [16:03:25.000] response: +Info 112 [00:03:25.000] response: { "response": { "info": { 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 b39ca83ae2feb..41ca2822bd2e2 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 @@ -1,5 +1,5 @@ -Info 0 [16:01:00.000] Provided types map file "/a/lib/typesMap.json" doesn't exist -Info 1 [16:01:01.000] request: +Info 0 [00:01:00.000] Provided types map file "/a/lib/typesMap.json" doesn't exist +Info 1 [00:01:01.000] request: { "seq": 0, "type": "request", @@ -200,11 +200,11 @@ FsWatches:: FsWatchesRecursive:: -Info 2 [16:01:02.000] Search path: /user/username/projects/myproject/main -Info 3 [16:01:03.000] For info: /user/username/projects/myproject/main/main.ts :: Config file name: /user/username/projects/myproject/main/tsconfig.json -Info 4 [16:01:04.000] Creating configuration project /user/username/projects/myproject/main/tsconfig.json -Info 5 [16:01:05.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/main/tsconfig.json 2000 undefined Project: /user/username/projects/myproject/main/tsconfig.json WatchType: Config file -Info 6 [16:01:06.000] Config: /user/username/projects/myproject/main/tsconfig.json : { +Info 2 [00:01:02.000] Search path: /user/username/projects/myproject/main +Info 3 [00:01:03.000] For info: /user/username/projects/myproject/main/main.ts :: Config file name: /user/username/projects/myproject/main/tsconfig.json +Info 4 [00:01:04.000] Creating configuration project /user/username/projects/myproject/main/tsconfig.json +Info 5 [00:01:05.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/main/tsconfig.json 2000 undefined Project: /user/username/projects/myproject/main/tsconfig.json WatchType: Config file +Info 6 [00:01:06.000] Config: /user/username/projects/myproject/main/tsconfig.json : { "rootNames": [ "/user/username/projects/myproject/main/main.ts" ], @@ -220,11 +220,11 @@ Info 6 [16:01:06.000] Config: /user/username/projects/myproject/main/tsconfig } ] } -Info 7 [16:01:07.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/main 1 undefined Config: /user/username/projects/myproject/main/tsconfig.json WatchType: Wild card directory -Info 8 [16:01:08.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/main 1 undefined Config: /user/username/projects/myproject/main/tsconfig.json WatchType: Wild card directory -Info 9 [16:01:09.000] Plugins were requested but not running in environment that supports 'require'. Nothing will be loaded -Info 10 [16:01:10.000] Starting updateGraphWorker: Project: /user/username/projects/myproject/main/tsconfig.json -Info 11 [16:01:11.000] Config: /user/username/projects/myproject/dependency/tsconfig.json : { +Info 7 [00:01:07.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/main 1 undefined Config: /user/username/projects/myproject/main/tsconfig.json WatchType: Wild card directory +Info 8 [00:01:08.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/main 1 undefined Config: /user/username/projects/myproject/main/tsconfig.json WatchType: Wild card directory +Info 9 [00:01:09.000] Plugins were requested but not running in environment that supports 'require'. Nothing will be loaded +Info 10 [00:01:10.000] Starting updateGraphWorker: Project: /user/username/projects/myproject/main/tsconfig.json +Info 11 [00:01:11.000] Config: /user/username/projects/myproject/dependency/tsconfig.json : { "rootNames": [ "/user/username/projects/myproject/dependency/FnS.ts" ], @@ -235,20 +235,20 @@ Info 11 [16:01:11.000] Config: /user/username/projects/myproject/dependency/ts "configFilePath": "/user/username/projects/myproject/dependency/tsconfig.json" } } -Info 12 [16:01:12.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/dependency/tsconfig.json 2000 undefined Project: /user/username/projects/myproject/main/tsconfig.json WatchType: Config file -Info 13 [16:01:13.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/dependency 1 undefined Config: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Wild card directory -Info 14 [16:01:14.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/dependency 1 undefined Config: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Wild card directory -Info 15 [16:01:15.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/decls 1 undefined Project: /user/username/projects/myproject/main/tsconfig.json WatchType: Failed Lookup Locations -Info 16 [16:01:16.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/decls 1 undefined Project: /user/username/projects/myproject/main/tsconfig.json WatchType: Failed Lookup Locations -Info 17 [16:01:17.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/dependency/FnS.ts 500 undefined WatchType: Closed Script info -Info 18 [16:01:18.000] FileWatcher:: Added:: WatchInfo: /a/lib/lib.d.ts 500 undefined WatchType: Closed Script info -Info 19 [16:01:19.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/main/node_modules/@types 1 undefined Project: /user/username/projects/myproject/main/tsconfig.json WatchType: Type roots -Info 20 [16:01:20.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/main/node_modules/@types 1 undefined Project: /user/username/projects/myproject/main/tsconfig.json WatchType: Type roots -Info 21 [16:01:21.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/main/tsconfig.json WatchType: Type roots -Info 22 [16:01:22.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/main/tsconfig.json WatchType: Type roots -Info 23 [16:01:23.000] Finishing updateGraphWorker: Project: /user/username/projects/myproject/main/tsconfig.json Version: 1 structureChanged: true structureIsReused:: Not Elapsed:: *ms -Info 24 [16:01:24.000] Project '/user/username/projects/myproject/main/tsconfig.json' (Configured) -Info 25 [16:01:25.000] Files (3) +Info 12 [00:01:12.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/dependency/tsconfig.json 2000 undefined Project: /user/username/projects/myproject/main/tsconfig.json WatchType: Config file +Info 13 [00:01:13.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/dependency 1 undefined Config: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Wild card directory +Info 14 [00:01:14.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/dependency 1 undefined Config: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Wild card directory +Info 15 [00:01:15.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/decls 1 undefined Project: /user/username/projects/myproject/main/tsconfig.json WatchType: Failed Lookup Locations +Info 16 [00:01:16.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/decls 1 undefined Project: /user/username/projects/myproject/main/tsconfig.json WatchType: Failed Lookup Locations +Info 17 [00:01:17.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/dependency/FnS.ts 500 undefined WatchType: Closed Script info +Info 18 [00:01:18.000] FileWatcher:: Added:: WatchInfo: /a/lib/lib.d.ts 500 undefined WatchType: Closed Script info +Info 19 [00:01:19.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/main/node_modules/@types 1 undefined Project: /user/username/projects/myproject/main/tsconfig.json WatchType: Type roots +Info 20 [00:01:20.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/main/node_modules/@types 1 undefined Project: /user/username/projects/myproject/main/tsconfig.json WatchType: Type roots +Info 21 [00:01:21.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/main/tsconfig.json WatchType: Type roots +Info 22 [00:01:22.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/main/tsconfig.json WatchType: Type roots +Info 23 [00:01:23.000] Finishing updateGraphWorker: Project: /user/username/projects/myproject/main/tsconfig.json Version: 1 structureChanged: true structureIsReused:: Not Elapsed:: *ms +Info 24 [00:01:24.000] Project '/user/username/projects/myproject/main/tsconfig.json' (Configured) +Info 25 [00:01:25.000] Files (3) /a/lib/lib.d.ts /user/username/projects/myproject/dependency/FnS.ts /user/username/projects/myproject/main/main.ts @@ -261,16 +261,16 @@ Info 25 [16:01:25.000] Files (3) main.ts Matched by default include pattern '**/*' -Info 26 [16:01:26.000] ----------------------------------------------- -Info 27 [16:01:27.000] Search path: /user/username/projects/myproject/main -Info 28 [16:01:28.000] For info: /user/username/projects/myproject/main/tsconfig.json :: No config files found. -Info 29 [16:01:29.000] Project '/user/username/projects/myproject/main/tsconfig.json' (Configured) -Info 29 [16:01:30.000] Files (3) +Info 26 [00:01:26.000] ----------------------------------------------- +Info 27 [00:01:27.000] Search path: /user/username/projects/myproject/main +Info 28 [00:01:28.000] For info: /user/username/projects/myproject/main/tsconfig.json :: No config files found. +Info 29 [00:01:29.000] Project '/user/username/projects/myproject/main/tsconfig.json' (Configured) +Info 29 [00:01:30.000] Files (3) -Info 29 [16:01:31.000] ----------------------------------------------- -Info 29 [16:01:32.000] Open files: -Info 29 [16:01:33.000] FileName: /user/username/projects/myproject/main/main.ts ProjectRootPath: undefined -Info 29 [16:01:34.000] Projects: /user/username/projects/myproject/main/tsconfig.json +Info 29 [00:01:31.000] ----------------------------------------------- +Info 29 [00:01:32.000] Open files: +Info 29 [00:01:33.000] FileName: /user/username/projects/myproject/main/main.ts ProjectRootPath: undefined +Info 29 [00:01:34.000] Projects: /user/username/projects/myproject/main/tsconfig.json After request PolledWatches:: @@ -297,11 +297,11 @@ FsWatchesRecursive:: /user/username/projects/myproject/decls: {} -Info 29 [16:01:35.000] response: +Info 29 [00:01:35.000] response: { "responseRequired": false } -Info 30 [16:01:36.000] request: +Info 30 [00:01:36.000] request: { "seq": 0, "type": "request", @@ -336,19 +336,19 @@ FsWatchesRecursive:: /user/username/projects/myproject/decls: {} -Info 31 [16:01:37.000] FileWatcher:: Close:: WatchInfo: /user/username/projects/myproject/dependency/FnS.ts 500 undefined WatchType: Closed Script info -Info 32 [16:01:38.000] Search path: /user/username/projects/myproject/dependency -Info 33 [16:01:39.000] For info: /user/username/projects/myproject/dependency/FnS.ts :: Config file name: /user/username/projects/myproject/dependency/tsconfig.json -Info 34 [16:01:40.000] Creating configuration project /user/username/projects/myproject/dependency/tsconfig.json -Info 35 [16:01:41.000] Plugins were requested but not running in environment that supports 'require'. Nothing will be loaded -Info 36 [16:01:42.000] Starting updateGraphWorker: Project: /user/username/projects/myproject/dependency/tsconfig.json -Info 37 [16:01:43.000] 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 38 [16:01:44.000] 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 39 [16:01:45.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Type roots -Info 40 [16:01:46.000] 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 41 [16:01:47.000] Finishing updateGraphWorker: Project: /user/username/projects/myproject/dependency/tsconfig.json Version: 1 structureChanged: true structureIsReused:: Not Elapsed:: *ms -Info 42 [16:01:48.000] Project '/user/username/projects/myproject/dependency/tsconfig.json' (Configured) -Info 43 [16:01:49.000] Files (2) +Info 31 [00:01:37.000] FileWatcher:: Close:: WatchInfo: /user/username/projects/myproject/dependency/FnS.ts 500 undefined WatchType: Closed Script info +Info 32 [00:01:38.000] Search path: /user/username/projects/myproject/dependency +Info 33 [00:01:39.000] For info: /user/username/projects/myproject/dependency/FnS.ts :: Config file name: /user/username/projects/myproject/dependency/tsconfig.json +Info 34 [00:01:40.000] Creating configuration project /user/username/projects/myproject/dependency/tsconfig.json +Info 35 [00:01:41.000] Plugins were requested but not running in environment that supports 'require'. Nothing will be loaded +Info 36 [00:01:42.000] Starting updateGraphWorker: Project: /user/username/projects/myproject/dependency/tsconfig.json +Info 37 [00:01:43.000] 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 38 [00:01:44.000] 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 39 [00:01:45.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Type roots +Info 40 [00:01:46.000] 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 41 [00:01:47.000] Finishing updateGraphWorker: Project: /user/username/projects/myproject/dependency/tsconfig.json Version: 1 structureChanged: true structureIsReused:: Not Elapsed:: *ms +Info 42 [00:01:48.000] Project '/user/username/projects/myproject/dependency/tsconfig.json' (Configured) +Info 43 [00:01:49.000] Files (2) /a/lib/lib.d.ts /user/username/projects/myproject/dependency/FnS.ts @@ -358,22 +358,22 @@ Info 43 [16:01:49.000] Files (2) FnS.ts Matched by default include pattern '**/*' -Info 44 [16:01:50.000] ----------------------------------------------- -Info 45 [16:01:51.000] Search path: /user/username/projects/myproject/dependency -Info 46 [16:01:52.000] For info: /user/username/projects/myproject/dependency/tsconfig.json :: No config files found. -Info 47 [16:01:53.000] Project '/user/username/projects/myproject/main/tsconfig.json' (Configured) -Info 47 [16:01:54.000] Files (3) - -Info 47 [16:01:55.000] ----------------------------------------------- -Info 47 [16:01:56.000] Project '/user/username/projects/myproject/dependency/tsconfig.json' (Configured) -Info 47 [16:01:57.000] Files (2) - -Info 47 [16:01:58.000] ----------------------------------------------- -Info 47 [16:01:59.000] Open files: -Info 47 [16:02:00.000] FileName: /user/username/projects/myproject/main/main.ts ProjectRootPath: undefined -Info 47 [16:02:01.000] Projects: /user/username/projects/myproject/main/tsconfig.json -Info 47 [16:02:02.000] FileName: /user/username/projects/myproject/dependency/FnS.ts ProjectRootPath: undefined -Info 47 [16:02:03.000] Projects: /user/username/projects/myproject/main/tsconfig.json,/user/username/projects/myproject/dependency/tsconfig.json +Info 44 [00:01:50.000] ----------------------------------------------- +Info 45 [00:01:51.000] Search path: /user/username/projects/myproject/dependency +Info 46 [00:01:52.000] For info: /user/username/projects/myproject/dependency/tsconfig.json :: No config files found. +Info 47 [00:01:53.000] Project '/user/username/projects/myproject/main/tsconfig.json' (Configured) +Info 47 [00:01:54.000] Files (3) + +Info 47 [00:01:55.000] ----------------------------------------------- +Info 47 [00:01:56.000] Project '/user/username/projects/myproject/dependency/tsconfig.json' (Configured) +Info 47 [00:01:57.000] Files (2) + +Info 47 [00:01:58.000] ----------------------------------------------- +Info 47 [00:01:59.000] Open files: +Info 47 [00:02:00.000] FileName: /user/username/projects/myproject/main/main.ts ProjectRootPath: undefined +Info 47 [00:02:01.000] Projects: /user/username/projects/myproject/main/tsconfig.json +Info 47 [00:02:02.000] FileName: /user/username/projects/myproject/dependency/FnS.ts ProjectRootPath: undefined +Info 47 [00:02:03.000] Projects: /user/username/projects/myproject/main/tsconfig.json,/user/username/projects/myproject/dependency/tsconfig.json After request PolledWatches:: @@ -400,11 +400,11 @@ FsWatchesRecursive:: /user/username/projects/myproject/decls: {} -Info 47 [16:02:04.000] response: +Info 47 [00:02:04.000] response: { "responseRequired": false } -Info 48 [16:02:05.000] request: +Info 48 [00:02:05.000] request: { "seq": 0, "type": "request", @@ -439,11 +439,11 @@ FsWatchesRecursive:: /user/username/projects/myproject/decls: {} -Info 49 [16:02:06.000] Search path: /user/username/projects/myproject/random -Info 50 [16:02:07.000] For info: /user/username/projects/myproject/random/random.ts :: Config file name: /user/username/projects/myproject/random/tsconfig.json -Info 51 [16:02:08.000] Creating configuration project /user/username/projects/myproject/random/tsconfig.json -Info 52 [16:02:09.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/random/tsconfig.json 2000 undefined Project: /user/username/projects/myproject/random/tsconfig.json WatchType: Config file -Info 53 [16:02:10.000] Config: /user/username/projects/myproject/random/tsconfig.json : { +Info 49 [00:02:06.000] Search path: /user/username/projects/myproject/random +Info 50 [00:02:07.000] For info: /user/username/projects/myproject/random/random.ts :: Config file name: /user/username/projects/myproject/random/tsconfig.json +Info 51 [00:02:08.000] Creating configuration project /user/username/projects/myproject/random/tsconfig.json +Info 52 [00:02:09.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/random/tsconfig.json 2000 undefined Project: /user/username/projects/myproject/random/tsconfig.json WatchType: Config file +Info 53 [00:02:10.000] Config: /user/username/projects/myproject/random/tsconfig.json : { "rootNames": [ "/user/username/projects/myproject/random/random.ts" ], @@ -451,17 +451,17 @@ Info 53 [16:02:10.000] Config: /user/username/projects/myproject/random/tsconf "configFilePath": "/user/username/projects/myproject/random/tsconfig.json" } } -Info 54 [16:02:11.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/random 1 undefined Config: /user/username/projects/myproject/random/tsconfig.json WatchType: Wild card directory -Info 55 [16:02:12.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/random 1 undefined Config: /user/username/projects/myproject/random/tsconfig.json WatchType: Wild card directory -Info 56 [16:02:13.000] Plugins were requested but not running in environment that supports 'require'. Nothing will be loaded -Info 57 [16:02:14.000] Starting updateGraphWorker: Project: /user/username/projects/myproject/random/tsconfig.json -Info 58 [16:02:15.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/random/node_modules/@types 1 undefined Project: /user/username/projects/myproject/random/tsconfig.json WatchType: Type roots -Info 59 [16:02:16.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/random/node_modules/@types 1 undefined Project: /user/username/projects/myproject/random/tsconfig.json WatchType: Type roots -Info 60 [16:02:17.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/random/tsconfig.json WatchType: Type roots -Info 61 [16:02:18.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/random/tsconfig.json WatchType: Type roots -Info 62 [16:02:19.000] Finishing updateGraphWorker: Project: /user/username/projects/myproject/random/tsconfig.json Version: 1 structureChanged: true structureIsReused:: Not Elapsed:: *ms -Info 63 [16:02:20.000] Project '/user/username/projects/myproject/random/tsconfig.json' (Configured) -Info 64 [16:02:21.000] Files (2) +Info 54 [00:02:11.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/random 1 undefined Config: /user/username/projects/myproject/random/tsconfig.json WatchType: Wild card directory +Info 55 [00:02:12.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/random 1 undefined Config: /user/username/projects/myproject/random/tsconfig.json WatchType: Wild card directory +Info 56 [00:02:13.000] Plugins were requested but not running in environment that supports 'require'. Nothing will be loaded +Info 57 [00:02:14.000] Starting updateGraphWorker: Project: /user/username/projects/myproject/random/tsconfig.json +Info 58 [00:02:15.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/random/node_modules/@types 1 undefined Project: /user/username/projects/myproject/random/tsconfig.json WatchType: Type roots +Info 59 [00:02:16.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/random/node_modules/@types 1 undefined Project: /user/username/projects/myproject/random/tsconfig.json WatchType: Type roots +Info 60 [00:02:17.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/random/tsconfig.json WatchType: Type roots +Info 61 [00:02:18.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/random/tsconfig.json WatchType: Type roots +Info 62 [00:02:19.000] Finishing updateGraphWorker: Project: /user/username/projects/myproject/random/tsconfig.json Version: 1 structureChanged: true structureIsReused:: Not Elapsed:: *ms +Info 63 [00:02:20.000] Project '/user/username/projects/myproject/random/tsconfig.json' (Configured) +Info 64 [00:02:21.000] Files (2) /a/lib/lib.d.ts /user/username/projects/myproject/random/random.ts @@ -471,26 +471,26 @@ Info 64 [16:02:21.000] Files (2) random.ts Matched by default include pattern '**/*' -Info 65 [16:02:22.000] ----------------------------------------------- -Info 66 [16:02:23.000] Project '/user/username/projects/myproject/main/tsconfig.json' (Configured) -Info 66 [16:02:24.000] Files (3) - -Info 66 [16:02:25.000] ----------------------------------------------- -Info 66 [16:02:26.000] Project '/user/username/projects/myproject/dependency/tsconfig.json' (Configured) -Info 66 [16:02:27.000] Files (2) - -Info 66 [16:02:28.000] ----------------------------------------------- -Info 66 [16:02:29.000] Project '/user/username/projects/myproject/random/tsconfig.json' (Configured) -Info 66 [16:02:30.000] Files (2) - -Info 66 [16:02:31.000] ----------------------------------------------- -Info 66 [16:02:32.000] Open files: -Info 66 [16:02:33.000] FileName: /user/username/projects/myproject/main/main.ts ProjectRootPath: undefined -Info 66 [16:02:34.000] Projects: /user/username/projects/myproject/main/tsconfig.json -Info 66 [16:02:35.000] FileName: /user/username/projects/myproject/dependency/FnS.ts ProjectRootPath: undefined -Info 66 [16:02:36.000] Projects: /user/username/projects/myproject/main/tsconfig.json,/user/username/projects/myproject/dependency/tsconfig.json -Info 66 [16:02:37.000] FileName: /user/username/projects/myproject/random/random.ts ProjectRootPath: undefined -Info 66 [16:02:38.000] Projects: /user/username/projects/myproject/random/tsconfig.json +Info 65 [00:02:22.000] ----------------------------------------------- +Info 66 [00:02:23.000] Project '/user/username/projects/myproject/main/tsconfig.json' (Configured) +Info 66 [00:02:24.000] Files (3) + +Info 66 [00:02:25.000] ----------------------------------------------- +Info 66 [00:02:26.000] Project '/user/username/projects/myproject/dependency/tsconfig.json' (Configured) +Info 66 [00:02:27.000] Files (2) + +Info 66 [00:02:28.000] ----------------------------------------------- +Info 66 [00:02:29.000] Project '/user/username/projects/myproject/random/tsconfig.json' (Configured) +Info 66 [00:02:30.000] Files (2) + +Info 66 [00:02:31.000] ----------------------------------------------- +Info 66 [00:02:32.000] Open files: +Info 66 [00:02:33.000] FileName: /user/username/projects/myproject/main/main.ts ProjectRootPath: undefined +Info 66 [00:02:34.000] Projects: /user/username/projects/myproject/main/tsconfig.json +Info 66 [00:02:35.000] FileName: /user/username/projects/myproject/dependency/FnS.ts ProjectRootPath: undefined +Info 66 [00:02:36.000] Projects: /user/username/projects/myproject/main/tsconfig.json,/user/username/projects/myproject/dependency/tsconfig.json +Info 66 [00:02:37.000] FileName: /user/username/projects/myproject/random/random.ts ProjectRootPath: undefined +Info 66 [00:02:38.000] Projects: /user/username/projects/myproject/random/tsconfig.json After request PolledWatches:: @@ -523,11 +523,11 @@ FsWatchesRecursive:: /user/username/projects/myproject/random: {} -Info 66 [16:02:39.000] response: +Info 66 [00:02:39.000] response: { "responseRequired": false } -Info 67 [16:02:40.000] request: +Info 67 [00:02:40.000] request: { "command": "definitionAndBoundSpan", "arguments": { @@ -602,7 +602,7 @@ FsWatchesRecursive:: /user/username/projects/myproject/random: {} -Info 68 [16:02:41.000] response: +Info 68 [00:02:41.000] response: { "response": { "definitions": [ @@ -639,7 +639,7 @@ Info 68 [16:02:41.000] response: }, "responseRequired": true } -Info 69 [16:02:42.000] request: +Info 69 [00:02:42.000] request: { "command": "rename", "arguments": { @@ -682,10 +682,10 @@ FsWatchesRecursive:: /user/username/projects/myproject/random: {} -Info 70 [16:02:43.000] Search path: /user/username/projects/myproject/dependency -Info 71 [16:02:44.000] For info: /user/username/projects/myproject/dependency/FnS.ts :: Config file name: /user/username/projects/myproject/dependency/tsconfig.json -Info 72 [16:02:45.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/decls/FnS.d.ts 500 undefined WatchType: Closed Script info -Info 73 [16:02:46.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/decls/FnS.d.ts.map 500 undefined WatchType: Closed Script info +Info 70 [00:02:43.000] Search path: /user/username/projects/myproject/dependency +Info 71 [00:02:44.000] For info: /user/username/projects/myproject/dependency/FnS.ts :: Config file name: /user/username/projects/myproject/dependency/tsconfig.json +Info 72 [00:02:45.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/decls/FnS.d.ts 500 undefined WatchType: Closed Script info +Info 73 [00:02:46.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/decls/FnS.d.ts.map 500 undefined WatchType: Closed Script info After request PolledWatches:: @@ -722,7 +722,7 @@ FsWatchesRecursive:: /user/username/projects/myproject/random: {} -Info 74 [16:02:47.000] response: +Info 74 [00:02:47.000] response: { "response": { "info": { @@ -803,7 +803,7 @@ Info 74 [16:02:47.000] response: }, "responseRequired": true } -Info 75 [16:02:48.000] request: +Info 75 [00:02:48.000] request: { "command": "change", "arguments": { @@ -889,11 +889,11 @@ FsWatchesRecursive:: /user/username/projects/myproject/random: {} -Info 76 [16:02:49.000] response: +Info 76 [00:02:49.000] response: { "responseRequired": false } -Info 77 [16:02:50.000] request: +Info 77 [00:02:50.000] request: { "command": "definitionAndBoundSpan", "arguments": { @@ -940,9 +940,9 @@ FsWatchesRecursive:: /user/username/projects/myproject/random: {} -Info 78 [16:02:51.000] Starting updateGraphWorker: Project: /user/username/projects/myproject/main/tsconfig.json -Info 79 [16:02:52.000] Finishing updateGraphWorker: Project: /user/username/projects/myproject/main/tsconfig.json Version: 2 structureChanged: false structureIsReused:: Completely Elapsed:: *ms -Info 80 [16:02:53.000] Different program with same set of files +Info 78 [00:02:51.000] Starting updateGraphWorker: Project: /user/username/projects/myproject/main/tsconfig.json +Info 79 [00:02:52.000] Finishing updateGraphWorker: Project: /user/username/projects/myproject/main/tsconfig.json Version: 2 structureChanged: false structureIsReused:: Completely Elapsed:: *ms +Info 80 [00:02:53.000] Different program with same set of files After request PolledWatches:: @@ -979,7 +979,7 @@ FsWatchesRecursive:: /user/username/projects/myproject/random: {} -Info 81 [16:02:54.000] response: +Info 81 [00:02:54.000] response: { "response": { "definitions": [ @@ -1016,7 +1016,7 @@ Info 81 [16:02:54.000] response: }, "responseRequired": true } -Info 82 [16:02:55.000] request: +Info 82 [00:02:55.000] request: { "command": "definitionAndBoundSpan", "arguments": { @@ -1099,7 +1099,7 @@ FsWatchesRecursive:: /user/username/projects/myproject/random: {} -Info 83 [16:02:56.000] response: +Info 83 [00:02:56.000] response: { "response": { "definitions": [ @@ -1136,7 +1136,7 @@ Info 83 [16:02:56.000] response: }, "responseRequired": true } -Info 84 [16:02:57.000] request: +Info 84 [00:02:57.000] request: { "command": "definitionAndBoundSpan", "arguments": { @@ -1219,7 +1219,7 @@ FsWatchesRecursive:: /user/username/projects/myproject/random: {} -Info 85 [16:02:58.000] response: +Info 85 [00:02:58.000] response: { "response": { "definitions": [ @@ -1256,7 +1256,7 @@ Info 85 [16:02:58.000] response: }, "responseRequired": true } -Info 86 [16:02:59.000] request: +Info 86 [00:02:59.000] request: { "command": "definitionAndBoundSpan", "arguments": { @@ -1339,7 +1339,7 @@ FsWatchesRecursive:: /user/username/projects/myproject/random: {} -Info 87 [16:03:00.000] response: +Info 87 [00:03:00.000] response: { "response": { "definitions": [ @@ -1376,7 +1376,7 @@ Info 87 [16:03:00.000] response: }, "responseRequired": true } -Info 88 [16:03:01.000] request: +Info 88 [00:03:01.000] request: { "command": "definitionAndBoundSpan", "arguments": { @@ -1459,7 +1459,7 @@ FsWatchesRecursive:: /user/username/projects/myproject/random: {} -Info 89 [16:03:02.000] response: +Info 89 [00:03:02.000] response: { "response": { "definitions": [ @@ -1496,7 +1496,7 @@ Info 89 [16:03:02.000] response: }, "responseRequired": true } -Info 90 [16:03:03.000] request: +Info 90 [00:03:03.000] request: { "command": "rename", "arguments": { @@ -1543,11 +1543,11 @@ FsWatchesRecursive:: /user/username/projects/myproject/random: {} -Info 91 [16:03:04.000] Starting updateGraphWorker: Project: /user/username/projects/myproject/dependency/tsconfig.json -Info 92 [16:03:05.000] Finishing updateGraphWorker: Project: /user/username/projects/myproject/dependency/tsconfig.json Version: 2 structureChanged: false structureIsReused:: Completely Elapsed:: *ms -Info 93 [16:03:06.000] Different program with same set of files -Info 94 [16:03:07.000] Search path: /user/username/projects/myproject/dependency -Info 95 [16:03:08.000] For info: /user/username/projects/myproject/dependency/FnS.ts :: Config file name: /user/username/projects/myproject/dependency/tsconfig.json +Info 91 [00:03:04.000] Starting updateGraphWorker: Project: /user/username/projects/myproject/dependency/tsconfig.json +Info 92 [00:03:05.000] Finishing updateGraphWorker: Project: /user/username/projects/myproject/dependency/tsconfig.json Version: 2 structureChanged: false structureIsReused:: Completely Elapsed:: *ms +Info 93 [00:03:06.000] Different program with same set of files +Info 94 [00:03:07.000] Search path: /user/username/projects/myproject/dependency +Info 95 [00:03:08.000] For info: /user/username/projects/myproject/dependency/FnS.ts :: Config file name: /user/username/projects/myproject/dependency/tsconfig.json After request PolledWatches:: @@ -1584,7 +1584,7 @@ FsWatchesRecursive:: /user/username/projects/myproject/random: {} -Info 96 [16:03:09.000] response: +Info 96 [00:03:09.000] response: { "response": { "info": { @@ -1665,7 +1665,7 @@ Info 96 [16:03:09.000] response: }, "responseRequired": true } -Info 97 [16:03:10.000] request: +Info 97 [00:03:10.000] request: { "command": "rename", "arguments": { @@ -1712,8 +1712,8 @@ FsWatchesRecursive:: /user/username/projects/myproject/random: {} -Info 98 [16:03:11.000] Search path: /user/username/projects/myproject/dependency -Info 99 [16:03:12.000] For info: /user/username/projects/myproject/dependency/FnS.ts :: Config file name: /user/username/projects/myproject/dependency/tsconfig.json +Info 98 [00:03:11.000] Search path: /user/username/projects/myproject/dependency +Info 99 [00:03:12.000] For info: /user/username/projects/myproject/dependency/FnS.ts :: Config file name: /user/username/projects/myproject/dependency/tsconfig.json After request PolledWatches:: @@ -1750,7 +1750,7 @@ FsWatchesRecursive:: /user/username/projects/myproject/random: {} -Info 100 [16:03:13.000] response: +Info 100 [00:03:13.000] response: { "response": { "info": { @@ -1831,7 +1831,7 @@ Info 100 [16:03:13.000] response: }, "responseRequired": true } -Info 101 [16:03:14.000] request: +Info 101 [00:03:14.000] request: { "command": "rename", "arguments": { @@ -1878,8 +1878,8 @@ FsWatchesRecursive:: /user/username/projects/myproject/random: {} -Info 102 [16:03:15.000] Search path: /user/username/projects/myproject/dependency -Info 103 [16:03:16.000] For info: /user/username/projects/myproject/dependency/FnS.ts :: Config file name: /user/username/projects/myproject/dependency/tsconfig.json +Info 102 [00:03:15.000] Search path: /user/username/projects/myproject/dependency +Info 103 [00:03:16.000] For info: /user/username/projects/myproject/dependency/FnS.ts :: Config file name: /user/username/projects/myproject/dependency/tsconfig.json After request PolledWatches:: @@ -1916,7 +1916,7 @@ FsWatchesRecursive:: /user/username/projects/myproject/random: {} -Info 104 [16:03:17.000] response: +Info 104 [00:03:17.000] response: { "response": { "info": { @@ -1997,7 +1997,7 @@ Info 104 [16:03:17.000] response: }, "responseRequired": true } -Info 105 [16:03:18.000] request: +Info 105 [00:03:18.000] request: { "command": "rename", "arguments": { @@ -2044,8 +2044,8 @@ FsWatchesRecursive:: /user/username/projects/myproject/random: {} -Info 106 [16:03:19.000] Search path: /user/username/projects/myproject/dependency -Info 107 [16:03:20.000] For info: /user/username/projects/myproject/dependency/FnS.ts :: Config file name: /user/username/projects/myproject/dependency/tsconfig.json +Info 106 [00:03:19.000] Search path: /user/username/projects/myproject/dependency +Info 107 [00:03:20.000] For info: /user/username/projects/myproject/dependency/FnS.ts :: Config file name: /user/username/projects/myproject/dependency/tsconfig.json After request PolledWatches:: @@ -2082,7 +2082,7 @@ FsWatchesRecursive:: /user/username/projects/myproject/random: {} -Info 108 [16:03:21.000] response: +Info 108 [00:03:21.000] response: { "response": { "info": { @@ -2163,7 +2163,7 @@ Info 108 [16:03:21.000] response: }, "responseRequired": true } -Info 109 [16:03:22.000] request: +Info 109 [00:03:22.000] request: { "command": "rename", "arguments": { @@ -2210,8 +2210,8 @@ FsWatchesRecursive:: /user/username/projects/myproject/random: {} -Info 110 [16:03:23.000] Search path: /user/username/projects/myproject/dependency -Info 111 [16:03:24.000] For info: /user/username/projects/myproject/dependency/FnS.ts :: Config file name: /user/username/projects/myproject/dependency/tsconfig.json +Info 110 [00:03:23.000] Search path: /user/username/projects/myproject/dependency +Info 111 [00:03:24.000] For info: /user/username/projects/myproject/dependency/FnS.ts :: Config file name: /user/username/projects/myproject/dependency/tsconfig.json After request PolledWatches:: @@ -2248,7 +2248,7 @@ FsWatchesRecursive:: /user/username/projects/myproject/random: {} -Info 112 [16:03:25.000] response: +Info 112 [00:03:25.000] response: { "response": { "info": { 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 ca20cded833e3..443e73f51be22 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 @@ -1,5 +1,5 @@ -Info 0 [16:01:00.000] Provided types map file "/a/lib/typesMap.json" doesn't exist -Info 1 [16:01:01.000] request: +Info 0 [00:01:00.000] Provided types map file "/a/lib/typesMap.json" doesn't exist +Info 1 [00:01:01.000] request: { "seq": 0, "type": "request", @@ -200,11 +200,11 @@ FsWatches:: FsWatchesRecursive:: -Info 2 [16:01:02.000] Search path: /user/username/projects/myproject/main -Info 3 [16:01:03.000] For info: /user/username/projects/myproject/main/main.ts :: Config file name: /user/username/projects/myproject/main/tsconfig.json -Info 4 [16:01:04.000] Creating configuration project /user/username/projects/myproject/main/tsconfig.json -Info 5 [16:01:05.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/main/tsconfig.json 2000 undefined Project: /user/username/projects/myproject/main/tsconfig.json WatchType: Config file -Info 6 [16:01:06.000] Config: /user/username/projects/myproject/main/tsconfig.json : { +Info 2 [00:01:02.000] Search path: /user/username/projects/myproject/main +Info 3 [00:01:03.000] For info: /user/username/projects/myproject/main/main.ts :: Config file name: /user/username/projects/myproject/main/tsconfig.json +Info 4 [00:01:04.000] Creating configuration project /user/username/projects/myproject/main/tsconfig.json +Info 5 [00:01:05.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/main/tsconfig.json 2000 undefined Project: /user/username/projects/myproject/main/tsconfig.json WatchType: Config file +Info 6 [00:01:06.000] Config: /user/username/projects/myproject/main/tsconfig.json : { "rootNames": [ "/user/username/projects/myproject/main/main.ts" ], @@ -220,11 +220,11 @@ Info 6 [16:01:06.000] Config: /user/username/projects/myproject/main/tsconfig } ] } -Info 7 [16:01:07.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/main 1 undefined Config: /user/username/projects/myproject/main/tsconfig.json WatchType: Wild card directory -Info 8 [16:01:08.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/main 1 undefined Config: /user/username/projects/myproject/main/tsconfig.json WatchType: Wild card directory -Info 9 [16:01:09.000] Plugins were requested but not running in environment that supports 'require'. Nothing will be loaded -Info 10 [16:01:10.000] Starting updateGraphWorker: Project: /user/username/projects/myproject/main/tsconfig.json -Info 11 [16:01:11.000] Config: /user/username/projects/myproject/dependency/tsconfig.json : { +Info 7 [00:01:07.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/main 1 undefined Config: /user/username/projects/myproject/main/tsconfig.json WatchType: Wild card directory +Info 8 [00:01:08.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/main 1 undefined Config: /user/username/projects/myproject/main/tsconfig.json WatchType: Wild card directory +Info 9 [00:01:09.000] Plugins were requested but not running in environment that supports 'require'. Nothing will be loaded +Info 10 [00:01:10.000] Starting updateGraphWorker: Project: /user/username/projects/myproject/main/tsconfig.json +Info 11 [00:01:11.000] Config: /user/username/projects/myproject/dependency/tsconfig.json : { "rootNames": [ "/user/username/projects/myproject/dependency/FnS.ts" ], @@ -235,20 +235,20 @@ Info 11 [16:01:11.000] Config: /user/username/projects/myproject/dependency/ts "configFilePath": "/user/username/projects/myproject/dependency/tsconfig.json" } } -Info 12 [16:01:12.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/dependency/tsconfig.json 2000 undefined Project: /user/username/projects/myproject/main/tsconfig.json WatchType: Config file -Info 13 [16:01:13.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/dependency 1 undefined Config: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Wild card directory -Info 14 [16:01:14.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/dependency 1 undefined Config: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Wild card directory -Info 15 [16:01:15.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/decls 1 undefined Project: /user/username/projects/myproject/main/tsconfig.json WatchType: Failed Lookup Locations -Info 16 [16:01:16.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/decls 1 undefined Project: /user/username/projects/myproject/main/tsconfig.json WatchType: Failed Lookup Locations -Info 17 [16:01:17.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/dependency/FnS.ts 500 undefined WatchType: Closed Script info -Info 18 [16:01:18.000] FileWatcher:: Added:: WatchInfo: /a/lib/lib.d.ts 500 undefined WatchType: Closed Script info -Info 19 [16:01:19.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/main/node_modules/@types 1 undefined Project: /user/username/projects/myproject/main/tsconfig.json WatchType: Type roots -Info 20 [16:01:20.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/main/node_modules/@types 1 undefined Project: /user/username/projects/myproject/main/tsconfig.json WatchType: Type roots -Info 21 [16:01:21.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/main/tsconfig.json WatchType: Type roots -Info 22 [16:01:22.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/main/tsconfig.json WatchType: Type roots -Info 23 [16:01:23.000] Finishing updateGraphWorker: Project: /user/username/projects/myproject/main/tsconfig.json Version: 1 structureChanged: true structureIsReused:: Not Elapsed:: *ms -Info 24 [16:01:24.000] Project '/user/username/projects/myproject/main/tsconfig.json' (Configured) -Info 25 [16:01:25.000] Files (3) +Info 12 [00:01:12.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/dependency/tsconfig.json 2000 undefined Project: /user/username/projects/myproject/main/tsconfig.json WatchType: Config file +Info 13 [00:01:13.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/dependency 1 undefined Config: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Wild card directory +Info 14 [00:01:14.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/dependency 1 undefined Config: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Wild card directory +Info 15 [00:01:15.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/decls 1 undefined Project: /user/username/projects/myproject/main/tsconfig.json WatchType: Failed Lookup Locations +Info 16 [00:01:16.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/decls 1 undefined Project: /user/username/projects/myproject/main/tsconfig.json WatchType: Failed Lookup Locations +Info 17 [00:01:17.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/dependency/FnS.ts 500 undefined WatchType: Closed Script info +Info 18 [00:01:18.000] FileWatcher:: Added:: WatchInfo: /a/lib/lib.d.ts 500 undefined WatchType: Closed Script info +Info 19 [00:01:19.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/main/node_modules/@types 1 undefined Project: /user/username/projects/myproject/main/tsconfig.json WatchType: Type roots +Info 20 [00:01:20.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/main/node_modules/@types 1 undefined Project: /user/username/projects/myproject/main/tsconfig.json WatchType: Type roots +Info 21 [00:01:21.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/main/tsconfig.json WatchType: Type roots +Info 22 [00:01:22.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/main/tsconfig.json WatchType: Type roots +Info 23 [00:01:23.000] Finishing updateGraphWorker: Project: /user/username/projects/myproject/main/tsconfig.json Version: 1 structureChanged: true structureIsReused:: Not Elapsed:: *ms +Info 24 [00:01:24.000] Project '/user/username/projects/myproject/main/tsconfig.json' (Configured) +Info 25 [00:01:25.000] Files (3) /a/lib/lib.d.ts /user/username/projects/myproject/dependency/FnS.ts /user/username/projects/myproject/main/main.ts @@ -261,16 +261,16 @@ Info 25 [16:01:25.000] Files (3) main.ts Matched by default include pattern '**/*' -Info 26 [16:01:26.000] ----------------------------------------------- -Info 27 [16:01:27.000] Search path: /user/username/projects/myproject/main -Info 28 [16:01:28.000] For info: /user/username/projects/myproject/main/tsconfig.json :: No config files found. -Info 29 [16:01:29.000] Project '/user/username/projects/myproject/main/tsconfig.json' (Configured) -Info 29 [16:01:30.000] Files (3) +Info 26 [00:01:26.000] ----------------------------------------------- +Info 27 [00:01:27.000] Search path: /user/username/projects/myproject/main +Info 28 [00:01:28.000] For info: /user/username/projects/myproject/main/tsconfig.json :: No config files found. +Info 29 [00:01:29.000] Project '/user/username/projects/myproject/main/tsconfig.json' (Configured) +Info 29 [00:01:30.000] Files (3) -Info 29 [16:01:31.000] ----------------------------------------------- -Info 29 [16:01:32.000] Open files: -Info 29 [16:01:33.000] FileName: /user/username/projects/myproject/main/main.ts ProjectRootPath: undefined -Info 29 [16:01:34.000] Projects: /user/username/projects/myproject/main/tsconfig.json +Info 29 [00:01:31.000] ----------------------------------------------- +Info 29 [00:01:32.000] Open files: +Info 29 [00:01:33.000] FileName: /user/username/projects/myproject/main/main.ts ProjectRootPath: undefined +Info 29 [00:01:34.000] Projects: /user/username/projects/myproject/main/tsconfig.json After request PolledWatches:: @@ -297,11 +297,11 @@ FsWatchesRecursive:: /user/username/projects/myproject/decls: {} -Info 29 [16:01:35.000] response: +Info 29 [00:01:35.000] response: { "responseRequired": false } -Info 30 [16:01:36.000] request: +Info 30 [00:01:36.000] request: { "seq": 0, "type": "request", @@ -336,19 +336,19 @@ FsWatchesRecursive:: /user/username/projects/myproject/decls: {} -Info 31 [16:01:37.000] FileWatcher:: Close:: WatchInfo: /user/username/projects/myproject/dependency/FnS.ts 500 undefined WatchType: Closed Script info -Info 32 [16:01:38.000] Search path: /user/username/projects/myproject/dependency -Info 33 [16:01:39.000] For info: /user/username/projects/myproject/dependency/FnS.ts :: Config file name: /user/username/projects/myproject/dependency/tsconfig.json -Info 34 [16:01:40.000] Creating configuration project /user/username/projects/myproject/dependency/tsconfig.json -Info 35 [16:01:41.000] Plugins were requested but not running in environment that supports 'require'. Nothing will be loaded -Info 36 [16:01:42.000] Starting updateGraphWorker: Project: /user/username/projects/myproject/dependency/tsconfig.json -Info 37 [16:01:43.000] 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 38 [16:01:44.000] 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 39 [16:01:45.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Type roots -Info 40 [16:01:46.000] 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 41 [16:01:47.000] Finishing updateGraphWorker: Project: /user/username/projects/myproject/dependency/tsconfig.json Version: 1 structureChanged: true structureIsReused:: Not Elapsed:: *ms -Info 42 [16:01:48.000] Project '/user/username/projects/myproject/dependency/tsconfig.json' (Configured) -Info 43 [16:01:49.000] Files (2) +Info 31 [00:01:37.000] FileWatcher:: Close:: WatchInfo: /user/username/projects/myproject/dependency/FnS.ts 500 undefined WatchType: Closed Script info +Info 32 [00:01:38.000] Search path: /user/username/projects/myproject/dependency +Info 33 [00:01:39.000] For info: /user/username/projects/myproject/dependency/FnS.ts :: Config file name: /user/username/projects/myproject/dependency/tsconfig.json +Info 34 [00:01:40.000] Creating configuration project /user/username/projects/myproject/dependency/tsconfig.json +Info 35 [00:01:41.000] Plugins were requested but not running in environment that supports 'require'. Nothing will be loaded +Info 36 [00:01:42.000] Starting updateGraphWorker: Project: /user/username/projects/myproject/dependency/tsconfig.json +Info 37 [00:01:43.000] 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 38 [00:01:44.000] 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 39 [00:01:45.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Type roots +Info 40 [00:01:46.000] 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 41 [00:01:47.000] Finishing updateGraphWorker: Project: /user/username/projects/myproject/dependency/tsconfig.json Version: 1 structureChanged: true structureIsReused:: Not Elapsed:: *ms +Info 42 [00:01:48.000] Project '/user/username/projects/myproject/dependency/tsconfig.json' (Configured) +Info 43 [00:01:49.000] Files (2) /a/lib/lib.d.ts /user/username/projects/myproject/dependency/FnS.ts @@ -358,22 +358,22 @@ Info 43 [16:01:49.000] Files (2) FnS.ts Matched by default include pattern '**/*' -Info 44 [16:01:50.000] ----------------------------------------------- -Info 45 [16:01:51.000] Search path: /user/username/projects/myproject/dependency -Info 46 [16:01:52.000] For info: /user/username/projects/myproject/dependency/tsconfig.json :: No config files found. -Info 47 [16:01:53.000] Project '/user/username/projects/myproject/main/tsconfig.json' (Configured) -Info 47 [16:01:54.000] Files (3) - -Info 47 [16:01:55.000] ----------------------------------------------- -Info 47 [16:01:56.000] Project '/user/username/projects/myproject/dependency/tsconfig.json' (Configured) -Info 47 [16:01:57.000] Files (2) - -Info 47 [16:01:58.000] ----------------------------------------------- -Info 47 [16:01:59.000] Open files: -Info 47 [16:02:00.000] FileName: /user/username/projects/myproject/main/main.ts ProjectRootPath: undefined -Info 47 [16:02:01.000] Projects: /user/username/projects/myproject/main/tsconfig.json -Info 47 [16:02:02.000] FileName: /user/username/projects/myproject/dependency/FnS.ts ProjectRootPath: undefined -Info 47 [16:02:03.000] Projects: /user/username/projects/myproject/main/tsconfig.json,/user/username/projects/myproject/dependency/tsconfig.json +Info 44 [00:01:50.000] ----------------------------------------------- +Info 45 [00:01:51.000] Search path: /user/username/projects/myproject/dependency +Info 46 [00:01:52.000] For info: /user/username/projects/myproject/dependency/tsconfig.json :: No config files found. +Info 47 [00:01:53.000] Project '/user/username/projects/myproject/main/tsconfig.json' (Configured) +Info 47 [00:01:54.000] Files (3) + +Info 47 [00:01:55.000] ----------------------------------------------- +Info 47 [00:01:56.000] Project '/user/username/projects/myproject/dependency/tsconfig.json' (Configured) +Info 47 [00:01:57.000] Files (2) + +Info 47 [00:01:58.000] ----------------------------------------------- +Info 47 [00:01:59.000] Open files: +Info 47 [00:02:00.000] FileName: /user/username/projects/myproject/main/main.ts ProjectRootPath: undefined +Info 47 [00:02:01.000] Projects: /user/username/projects/myproject/main/tsconfig.json +Info 47 [00:02:02.000] FileName: /user/username/projects/myproject/dependency/FnS.ts ProjectRootPath: undefined +Info 47 [00:02:03.000] Projects: /user/username/projects/myproject/main/tsconfig.json,/user/username/projects/myproject/dependency/tsconfig.json After request PolledWatches:: @@ -400,11 +400,11 @@ FsWatchesRecursive:: /user/username/projects/myproject/decls: {} -Info 47 [16:02:04.000] response: +Info 47 [00:02:04.000] response: { "responseRequired": false } -Info 48 [16:02:05.000] request: +Info 48 [00:02:05.000] request: { "seq": 0, "type": "request", @@ -439,11 +439,11 @@ FsWatchesRecursive:: /user/username/projects/myproject/decls: {} -Info 49 [16:02:06.000] Search path: /user/username/projects/myproject/random -Info 50 [16:02:07.000] For info: /user/username/projects/myproject/random/random.ts :: Config file name: /user/username/projects/myproject/random/tsconfig.json -Info 51 [16:02:08.000] Creating configuration project /user/username/projects/myproject/random/tsconfig.json -Info 52 [16:02:09.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/random/tsconfig.json 2000 undefined Project: /user/username/projects/myproject/random/tsconfig.json WatchType: Config file -Info 53 [16:02:10.000] Config: /user/username/projects/myproject/random/tsconfig.json : { +Info 49 [00:02:06.000] Search path: /user/username/projects/myproject/random +Info 50 [00:02:07.000] For info: /user/username/projects/myproject/random/random.ts :: Config file name: /user/username/projects/myproject/random/tsconfig.json +Info 51 [00:02:08.000] Creating configuration project /user/username/projects/myproject/random/tsconfig.json +Info 52 [00:02:09.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/random/tsconfig.json 2000 undefined Project: /user/username/projects/myproject/random/tsconfig.json WatchType: Config file +Info 53 [00:02:10.000] Config: /user/username/projects/myproject/random/tsconfig.json : { "rootNames": [ "/user/username/projects/myproject/random/random.ts" ], @@ -451,17 +451,17 @@ Info 53 [16:02:10.000] Config: /user/username/projects/myproject/random/tsconf "configFilePath": "/user/username/projects/myproject/random/tsconfig.json" } } -Info 54 [16:02:11.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/random 1 undefined Config: /user/username/projects/myproject/random/tsconfig.json WatchType: Wild card directory -Info 55 [16:02:12.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/random 1 undefined Config: /user/username/projects/myproject/random/tsconfig.json WatchType: Wild card directory -Info 56 [16:02:13.000] Plugins were requested but not running in environment that supports 'require'. Nothing will be loaded -Info 57 [16:02:14.000] Starting updateGraphWorker: Project: /user/username/projects/myproject/random/tsconfig.json -Info 58 [16:02:15.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/random/node_modules/@types 1 undefined Project: /user/username/projects/myproject/random/tsconfig.json WatchType: Type roots -Info 59 [16:02:16.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/random/node_modules/@types 1 undefined Project: /user/username/projects/myproject/random/tsconfig.json WatchType: Type roots -Info 60 [16:02:17.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/random/tsconfig.json WatchType: Type roots -Info 61 [16:02:18.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/random/tsconfig.json WatchType: Type roots -Info 62 [16:02:19.000] Finishing updateGraphWorker: Project: /user/username/projects/myproject/random/tsconfig.json Version: 1 structureChanged: true structureIsReused:: Not Elapsed:: *ms -Info 63 [16:02:20.000] Project '/user/username/projects/myproject/random/tsconfig.json' (Configured) -Info 64 [16:02:21.000] Files (2) +Info 54 [00:02:11.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/random 1 undefined Config: /user/username/projects/myproject/random/tsconfig.json WatchType: Wild card directory +Info 55 [00:02:12.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/random 1 undefined Config: /user/username/projects/myproject/random/tsconfig.json WatchType: Wild card directory +Info 56 [00:02:13.000] Plugins were requested but not running in environment that supports 'require'. Nothing will be loaded +Info 57 [00:02:14.000] Starting updateGraphWorker: Project: /user/username/projects/myproject/random/tsconfig.json +Info 58 [00:02:15.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/random/node_modules/@types 1 undefined Project: /user/username/projects/myproject/random/tsconfig.json WatchType: Type roots +Info 59 [00:02:16.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/random/node_modules/@types 1 undefined Project: /user/username/projects/myproject/random/tsconfig.json WatchType: Type roots +Info 60 [00:02:17.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/random/tsconfig.json WatchType: Type roots +Info 61 [00:02:18.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/random/tsconfig.json WatchType: Type roots +Info 62 [00:02:19.000] Finishing updateGraphWorker: Project: /user/username/projects/myproject/random/tsconfig.json Version: 1 structureChanged: true structureIsReused:: Not Elapsed:: *ms +Info 63 [00:02:20.000] Project '/user/username/projects/myproject/random/tsconfig.json' (Configured) +Info 64 [00:02:21.000] Files (2) /a/lib/lib.d.ts /user/username/projects/myproject/random/random.ts @@ -471,26 +471,26 @@ Info 64 [16:02:21.000] Files (2) random.ts Matched by default include pattern '**/*' -Info 65 [16:02:22.000] ----------------------------------------------- -Info 66 [16:02:23.000] Project '/user/username/projects/myproject/main/tsconfig.json' (Configured) -Info 66 [16:02:24.000] Files (3) - -Info 66 [16:02:25.000] ----------------------------------------------- -Info 66 [16:02:26.000] Project '/user/username/projects/myproject/dependency/tsconfig.json' (Configured) -Info 66 [16:02:27.000] Files (2) - -Info 66 [16:02:28.000] ----------------------------------------------- -Info 66 [16:02:29.000] Project '/user/username/projects/myproject/random/tsconfig.json' (Configured) -Info 66 [16:02:30.000] Files (2) - -Info 66 [16:02:31.000] ----------------------------------------------- -Info 66 [16:02:32.000] Open files: -Info 66 [16:02:33.000] FileName: /user/username/projects/myproject/main/main.ts ProjectRootPath: undefined -Info 66 [16:02:34.000] Projects: /user/username/projects/myproject/main/tsconfig.json -Info 66 [16:02:35.000] FileName: /user/username/projects/myproject/dependency/FnS.ts ProjectRootPath: undefined -Info 66 [16:02:36.000] Projects: /user/username/projects/myproject/main/tsconfig.json,/user/username/projects/myproject/dependency/tsconfig.json -Info 66 [16:02:37.000] FileName: /user/username/projects/myproject/random/random.ts ProjectRootPath: undefined -Info 66 [16:02:38.000] Projects: /user/username/projects/myproject/random/tsconfig.json +Info 65 [00:02:22.000] ----------------------------------------------- +Info 66 [00:02:23.000] Project '/user/username/projects/myproject/main/tsconfig.json' (Configured) +Info 66 [00:02:24.000] Files (3) + +Info 66 [00:02:25.000] ----------------------------------------------- +Info 66 [00:02:26.000] Project '/user/username/projects/myproject/dependency/tsconfig.json' (Configured) +Info 66 [00:02:27.000] Files (2) + +Info 66 [00:02:28.000] ----------------------------------------------- +Info 66 [00:02:29.000] Project '/user/username/projects/myproject/random/tsconfig.json' (Configured) +Info 66 [00:02:30.000] Files (2) + +Info 66 [00:02:31.000] ----------------------------------------------- +Info 66 [00:02:32.000] Open files: +Info 66 [00:02:33.000] FileName: /user/username/projects/myproject/main/main.ts ProjectRootPath: undefined +Info 66 [00:02:34.000] Projects: /user/username/projects/myproject/main/tsconfig.json +Info 66 [00:02:35.000] FileName: /user/username/projects/myproject/dependency/FnS.ts ProjectRootPath: undefined +Info 66 [00:02:36.000] Projects: /user/username/projects/myproject/main/tsconfig.json,/user/username/projects/myproject/dependency/tsconfig.json +Info 66 [00:02:37.000] FileName: /user/username/projects/myproject/random/random.ts ProjectRootPath: undefined +Info 66 [00:02:38.000] Projects: /user/username/projects/myproject/random/tsconfig.json After request PolledWatches:: @@ -523,11 +523,11 @@ FsWatchesRecursive:: /user/username/projects/myproject/random: {} -Info 66 [16:02:39.000] response: +Info 66 [00:02:39.000] response: { "responseRequired": false } -Info 67 [16:02:40.000] request: +Info 67 [00:02:40.000] request: { "command": "definitionAndBoundSpan", "arguments": { @@ -602,7 +602,7 @@ FsWatchesRecursive:: /user/username/projects/myproject/random: {} -Info 68 [16:02:41.000] response: +Info 68 [00:02:41.000] response: { "response": { "definitions": [ @@ -639,7 +639,7 @@ Info 68 [16:02:41.000] response: }, "responseRequired": true } -Info 69 [16:02:42.000] request: +Info 69 [00:02:42.000] request: { "command": "definitionAndBoundSpan", "arguments": { @@ -714,7 +714,7 @@ FsWatchesRecursive:: /user/username/projects/myproject/random: {} -Info 70 [16:02:43.000] response: +Info 70 [00:02:43.000] response: { "response": { "definitions": [ @@ -751,7 +751,7 @@ Info 70 [16:02:43.000] response: }, "responseRequired": true } -Info 71 [16:02:44.000] request: +Info 71 [00:02:44.000] request: { "command": "definitionAndBoundSpan", "arguments": { @@ -826,7 +826,7 @@ FsWatchesRecursive:: /user/username/projects/myproject/random: {} -Info 72 [16:02:45.000] response: +Info 72 [00:02:45.000] response: { "response": { "definitions": [ @@ -863,7 +863,7 @@ Info 72 [16:02:45.000] response: }, "responseRequired": true } -Info 73 [16:02:46.000] request: +Info 73 [00:02:46.000] request: { "command": "definitionAndBoundSpan", "arguments": { @@ -938,7 +938,7 @@ FsWatchesRecursive:: /user/username/projects/myproject/random: {} -Info 74 [16:02:47.000] response: +Info 74 [00:02:47.000] response: { "response": { "definitions": [ @@ -975,7 +975,7 @@ Info 74 [16:02:47.000] response: }, "responseRequired": true } -Info 75 [16:02:48.000] request: +Info 75 [00:02:48.000] request: { "command": "definitionAndBoundSpan", "arguments": { @@ -1050,7 +1050,7 @@ FsWatchesRecursive:: /user/username/projects/myproject/random: {} -Info 76 [16:02:49.000] response: +Info 76 [00:02:49.000] response: { "response": { "definitions": [ @@ -1087,7 +1087,7 @@ Info 76 [16:02:49.000] response: }, "responseRequired": true } -Info 77 [16:02:50.000] request: +Info 77 [00:02:50.000] request: { "command": "rename", "arguments": { @@ -1130,10 +1130,10 @@ FsWatchesRecursive:: /user/username/projects/myproject/random: {} -Info 78 [16:02:51.000] Search path: /user/username/projects/myproject/dependency -Info 79 [16:02:52.000] For info: /user/username/projects/myproject/dependency/FnS.ts :: Config file name: /user/username/projects/myproject/dependency/tsconfig.json -Info 80 [16:02:53.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/decls/FnS.d.ts 500 undefined WatchType: Closed Script info -Info 81 [16:02:54.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/decls/FnS.d.ts.map 500 undefined WatchType: Closed Script info +Info 78 [00:02:51.000] Search path: /user/username/projects/myproject/dependency +Info 79 [00:02:52.000] For info: /user/username/projects/myproject/dependency/FnS.ts :: Config file name: /user/username/projects/myproject/dependency/tsconfig.json +Info 80 [00:02:53.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/decls/FnS.d.ts 500 undefined WatchType: Closed Script info +Info 81 [00:02:54.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/decls/FnS.d.ts.map 500 undefined WatchType: Closed Script info After request PolledWatches:: @@ -1170,7 +1170,7 @@ FsWatchesRecursive:: /user/username/projects/myproject/random: {} -Info 82 [16:02:55.000] response: +Info 82 [00:02:55.000] response: { "response": { "info": { @@ -1251,7 +1251,7 @@ Info 82 [16:02:55.000] response: }, "responseRequired": true } -Info 83 [16:02:56.000] request: +Info 83 [00:02:56.000] request: { "command": "rename", "arguments": { @@ -1298,8 +1298,8 @@ FsWatchesRecursive:: /user/username/projects/myproject/random: {} -Info 84 [16:02:57.000] Search path: /user/username/projects/myproject/dependency -Info 85 [16:02:58.000] For info: /user/username/projects/myproject/dependency/FnS.ts :: Config file name: /user/username/projects/myproject/dependency/tsconfig.json +Info 84 [00:02:57.000] Search path: /user/username/projects/myproject/dependency +Info 85 [00:02:58.000] For info: /user/username/projects/myproject/dependency/FnS.ts :: Config file name: /user/username/projects/myproject/dependency/tsconfig.json After request PolledWatches:: @@ -1336,7 +1336,7 @@ FsWatchesRecursive:: /user/username/projects/myproject/random: {} -Info 86 [16:02:59.000] response: +Info 86 [00:02:59.000] response: { "response": { "info": { @@ -1417,7 +1417,7 @@ Info 86 [16:02:59.000] response: }, "responseRequired": true } -Info 87 [16:03:00.000] request: +Info 87 [00:03:00.000] request: { "command": "rename", "arguments": { @@ -1464,8 +1464,8 @@ FsWatchesRecursive:: /user/username/projects/myproject/random: {} -Info 88 [16:03:01.000] Search path: /user/username/projects/myproject/dependency -Info 89 [16:03:02.000] For info: /user/username/projects/myproject/dependency/FnS.ts :: Config file name: /user/username/projects/myproject/dependency/tsconfig.json +Info 88 [00:03:01.000] Search path: /user/username/projects/myproject/dependency +Info 89 [00:03:02.000] For info: /user/username/projects/myproject/dependency/FnS.ts :: Config file name: /user/username/projects/myproject/dependency/tsconfig.json After request PolledWatches:: @@ -1502,7 +1502,7 @@ FsWatchesRecursive:: /user/username/projects/myproject/random: {} -Info 90 [16:03:03.000] response: +Info 90 [00:03:03.000] response: { "response": { "info": { @@ -1583,7 +1583,7 @@ Info 90 [16:03:03.000] response: }, "responseRequired": true } -Info 91 [16:03:04.000] request: +Info 91 [00:03:04.000] request: { "command": "rename", "arguments": { @@ -1630,8 +1630,8 @@ FsWatchesRecursive:: /user/username/projects/myproject/random: {} -Info 92 [16:03:05.000] Search path: /user/username/projects/myproject/dependency -Info 93 [16:03:06.000] For info: /user/username/projects/myproject/dependency/FnS.ts :: Config file name: /user/username/projects/myproject/dependency/tsconfig.json +Info 92 [00:03:05.000] Search path: /user/username/projects/myproject/dependency +Info 93 [00:03:06.000] For info: /user/username/projects/myproject/dependency/FnS.ts :: Config file name: /user/username/projects/myproject/dependency/tsconfig.json After request PolledWatches:: @@ -1668,7 +1668,7 @@ FsWatchesRecursive:: /user/username/projects/myproject/random: {} -Info 94 [16:03:07.000] response: +Info 94 [00:03:07.000] response: { "response": { "info": { @@ -1749,7 +1749,7 @@ Info 94 [16:03:07.000] response: }, "responseRequired": true } -Info 95 [16:03:08.000] request: +Info 95 [00:03:08.000] request: { "command": "rename", "arguments": { @@ -1796,8 +1796,8 @@ FsWatchesRecursive:: /user/username/projects/myproject/random: {} -Info 96 [16:03:09.000] Search path: /user/username/projects/myproject/dependency -Info 97 [16:03:10.000] For info: /user/username/projects/myproject/dependency/FnS.ts :: Config file name: /user/username/projects/myproject/dependency/tsconfig.json +Info 96 [00:03:09.000] Search path: /user/username/projects/myproject/dependency +Info 97 [00:03:10.000] For info: /user/username/projects/myproject/dependency/FnS.ts :: Config file name: /user/username/projects/myproject/dependency/tsconfig.json After request PolledWatches:: @@ -1834,7 +1834,7 @@ FsWatchesRecursive:: /user/username/projects/myproject/random: {} -Info 98 [16:03:11.000] response: +Info 98 [00:03:11.000] response: { "response": { "info": { @@ -1915,7 +1915,7 @@ Info 98 [16:03:11.000] response: }, "responseRequired": true } -Info 99 [16:03:12.000] request: +Info 99 [00:03:12.000] request: { "seq": 0, "type": "request", @@ -1960,24 +1960,24 @@ FsWatchesRecursive:: /user/username/projects/myproject/random: {} -Info 100 [16:03:13.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/random/random.ts 500 undefined WatchType: Closed Script info -Info 101 [16:03:14.000] Project '/user/username/projects/myproject/main/tsconfig.json' (Configured) -Info 101 [16:03:15.000] Files (3) +Info 100 [00:03:13.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/random/random.ts 500 undefined WatchType: Closed Script info +Info 101 [00:03:14.000] Project '/user/username/projects/myproject/main/tsconfig.json' (Configured) +Info 101 [00:03:15.000] Files (3) -Info 101 [16:03:16.000] ----------------------------------------------- -Info 101 [16:03:17.000] Project '/user/username/projects/myproject/dependency/tsconfig.json' (Configured) -Info 101 [16:03:18.000] Files (2) +Info 101 [00:03:16.000] ----------------------------------------------- +Info 101 [00:03:17.000] Project '/user/username/projects/myproject/dependency/tsconfig.json' (Configured) +Info 101 [00:03:18.000] Files (2) -Info 101 [16:03:19.000] ----------------------------------------------- -Info 101 [16:03:20.000] Project '/user/username/projects/myproject/random/tsconfig.json' (Configured) -Info 101 [16:03:21.000] Files (2) +Info 101 [00:03:19.000] ----------------------------------------------- +Info 101 [00:03:20.000] Project '/user/username/projects/myproject/random/tsconfig.json' (Configured) +Info 101 [00:03:21.000] Files (2) -Info 101 [16:03:22.000] ----------------------------------------------- -Info 101 [16:03:23.000] Open files: -Info 101 [16:03:24.000] FileName: /user/username/projects/myproject/main/main.ts ProjectRootPath: undefined -Info 101 [16:03:25.000] Projects: /user/username/projects/myproject/main/tsconfig.json -Info 101 [16:03:26.000] FileName: /user/username/projects/myproject/dependency/FnS.ts ProjectRootPath: undefined -Info 101 [16:03:27.000] Projects: /user/username/projects/myproject/main/tsconfig.json,/user/username/projects/myproject/dependency/tsconfig.json +Info 101 [00:03:22.000] ----------------------------------------------- +Info 101 [00:03:23.000] Open files: +Info 101 [00:03:24.000] FileName: /user/username/projects/myproject/main/main.ts ProjectRootPath: undefined +Info 101 [00:03:25.000] Projects: /user/username/projects/myproject/main/tsconfig.json +Info 101 [00:03:26.000] FileName: /user/username/projects/myproject/dependency/FnS.ts ProjectRootPath: undefined +Info 101 [00:03:27.000] Projects: /user/username/projects/myproject/main/tsconfig.json,/user/username/projects/myproject/dependency/tsconfig.json After request PolledWatches:: @@ -2016,11 +2016,11 @@ FsWatchesRecursive:: /user/username/projects/myproject/random: {} -Info 101 [16:03:28.000] response: +Info 101 [00:03:28.000] response: { "responseRequired": false } -Info 102 [16:03:29.000] request: +Info 102 [00:03:29.000] request: { "seq": 0, "type": "request", @@ -2067,28 +2067,28 @@ FsWatchesRecursive:: /user/username/projects/myproject/random: {} -Info 103 [16:03:30.000] FileWatcher:: Close:: WatchInfo: /user/username/projects/myproject/random/random.ts 500 undefined WatchType: Closed Script info -Info 104 [16:03:31.000] Search path: /user/username/projects/myproject/random -Info 105 [16:03:32.000] For info: /user/username/projects/myproject/random/random.ts :: Config file name: /user/username/projects/myproject/random/tsconfig.json -Info 106 [16:03:33.000] Project '/user/username/projects/myproject/main/tsconfig.json' (Configured) -Info 106 [16:03:34.000] Files (3) - -Info 106 [16:03:35.000] ----------------------------------------------- -Info 106 [16:03:36.000] Project '/user/username/projects/myproject/dependency/tsconfig.json' (Configured) -Info 106 [16:03:37.000] Files (2) - -Info 106 [16:03:38.000] ----------------------------------------------- -Info 106 [16:03:39.000] Project '/user/username/projects/myproject/random/tsconfig.json' (Configured) -Info 106 [16:03:40.000] Files (2) - -Info 106 [16:03:41.000] ----------------------------------------------- -Info 106 [16:03:42.000] Open files: -Info 106 [16:03:43.000] FileName: /user/username/projects/myproject/main/main.ts ProjectRootPath: undefined -Info 106 [16:03:44.000] Projects: /user/username/projects/myproject/main/tsconfig.json -Info 106 [16:03:45.000] FileName: /user/username/projects/myproject/dependency/FnS.ts ProjectRootPath: undefined -Info 106 [16:03:46.000] Projects: /user/username/projects/myproject/main/tsconfig.json,/user/username/projects/myproject/dependency/tsconfig.json -Info 106 [16:03:47.000] FileName: /user/username/projects/myproject/random/random.ts ProjectRootPath: undefined -Info 106 [16:03:48.000] Projects: /user/username/projects/myproject/random/tsconfig.json +Info 103 [00:03:30.000] FileWatcher:: Close:: WatchInfo: /user/username/projects/myproject/random/random.ts 500 undefined WatchType: Closed Script info +Info 104 [00:03:31.000] Search path: /user/username/projects/myproject/random +Info 105 [00:03:32.000] For info: /user/username/projects/myproject/random/random.ts :: Config file name: /user/username/projects/myproject/random/tsconfig.json +Info 106 [00:03:33.000] Project '/user/username/projects/myproject/main/tsconfig.json' (Configured) +Info 106 [00:03:34.000] Files (3) + +Info 106 [00:03:35.000] ----------------------------------------------- +Info 106 [00:03:36.000] Project '/user/username/projects/myproject/dependency/tsconfig.json' (Configured) +Info 106 [00:03:37.000] Files (2) + +Info 106 [00:03:38.000] ----------------------------------------------- +Info 106 [00:03:39.000] Project '/user/username/projects/myproject/random/tsconfig.json' (Configured) +Info 106 [00:03:40.000] Files (2) + +Info 106 [00:03:41.000] ----------------------------------------------- +Info 106 [00:03:42.000] Open files: +Info 106 [00:03:43.000] FileName: /user/username/projects/myproject/main/main.ts ProjectRootPath: undefined +Info 106 [00:03:44.000] Projects: /user/username/projects/myproject/main/tsconfig.json +Info 106 [00:03:45.000] FileName: /user/username/projects/myproject/dependency/FnS.ts ProjectRootPath: undefined +Info 106 [00:03:46.000] Projects: /user/username/projects/myproject/main/tsconfig.json,/user/username/projects/myproject/dependency/tsconfig.json +Info 106 [00:03:47.000] FileName: /user/username/projects/myproject/random/random.ts ProjectRootPath: undefined +Info 106 [00:03:48.000] Projects: /user/username/projects/myproject/random/tsconfig.json After request PolledWatches:: @@ -2125,11 +2125,11 @@ FsWatchesRecursive:: /user/username/projects/myproject/random: {} -Info 106 [16:03:49.000] response: +Info 106 [00:03:49.000] response: { "responseRequired": false } -Info 107 [16:03:50.000] request: +Info 107 [00:03:50.000] request: { "seq": 0, "type": "request", @@ -2174,24 +2174,24 @@ FsWatchesRecursive:: /user/username/projects/myproject/random: {} -Info 108 [16:03:51.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/main/main.ts 500 undefined WatchType: Closed Script info -Info 109 [16:03:52.000] Project '/user/username/projects/myproject/main/tsconfig.json' (Configured) -Info 109 [16:03:53.000] Files (3) +Info 108 [00:03:51.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/main/main.ts 500 undefined WatchType: Closed Script info +Info 109 [00:03:52.000] Project '/user/username/projects/myproject/main/tsconfig.json' (Configured) +Info 109 [00:03:53.000] Files (3) -Info 109 [16:03:54.000] ----------------------------------------------- -Info 109 [16:03:55.000] Project '/user/username/projects/myproject/dependency/tsconfig.json' (Configured) -Info 109 [16:03:56.000] Files (2) +Info 109 [00:03:54.000] ----------------------------------------------- +Info 109 [00:03:55.000] Project '/user/username/projects/myproject/dependency/tsconfig.json' (Configured) +Info 109 [00:03:56.000] Files (2) -Info 109 [16:03:57.000] ----------------------------------------------- -Info 109 [16:03:58.000] Project '/user/username/projects/myproject/random/tsconfig.json' (Configured) -Info 109 [16:03:59.000] Files (2) +Info 109 [00:03:57.000] ----------------------------------------------- +Info 109 [00:03:58.000] Project '/user/username/projects/myproject/random/tsconfig.json' (Configured) +Info 109 [00:03:59.000] Files (2) -Info 109 [16:04:00.000] ----------------------------------------------- -Info 109 [16:04:01.000] Open files: -Info 109 [16:04:02.000] FileName: /user/username/projects/myproject/dependency/FnS.ts ProjectRootPath: undefined -Info 109 [16:04:03.000] Projects: /user/username/projects/myproject/main/tsconfig.json,/user/username/projects/myproject/dependency/tsconfig.json -Info 109 [16:04:04.000] FileName: /user/username/projects/myproject/random/random.ts ProjectRootPath: undefined -Info 109 [16:04:05.000] Projects: /user/username/projects/myproject/random/tsconfig.json +Info 109 [00:04:00.000] ----------------------------------------------- +Info 109 [00:04:01.000] Open files: +Info 109 [00:04:02.000] FileName: /user/username/projects/myproject/dependency/FnS.ts ProjectRootPath: undefined +Info 109 [00:04:03.000] Projects: /user/username/projects/myproject/main/tsconfig.json,/user/username/projects/myproject/dependency/tsconfig.json +Info 109 [00:04:04.000] FileName: /user/username/projects/myproject/random/random.ts ProjectRootPath: undefined +Info 109 [00:04:05.000] Projects: /user/username/projects/myproject/random/tsconfig.json After request PolledWatches:: @@ -2230,11 +2230,11 @@ FsWatchesRecursive:: /user/username/projects/myproject/random: {} -Info 109 [16:04:06.000] response: +Info 109 [00:04:06.000] response: { "responseRequired": false } -Info 110 [16:04:07.000] request: +Info 110 [00:04:07.000] request: { "seq": 0, "type": "request", @@ -2281,22 +2281,22 @@ FsWatchesRecursive:: /user/username/projects/myproject/random: {} -Info 111 [16:04:08.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/dependency/FnS.ts 500 undefined WatchType: Closed Script info -Info 112 [16:04:09.000] Project '/user/username/projects/myproject/main/tsconfig.json' (Configured) -Info 112 [16:04:10.000] Files (3) +Info 111 [00:04:08.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/dependency/FnS.ts 500 undefined WatchType: Closed Script info +Info 112 [00:04:09.000] Project '/user/username/projects/myproject/main/tsconfig.json' (Configured) +Info 112 [00:04:10.000] Files (3) -Info 112 [16:04:11.000] ----------------------------------------------- -Info 112 [16:04:12.000] Project '/user/username/projects/myproject/dependency/tsconfig.json' (Configured) -Info 112 [16:04:13.000] Files (2) +Info 112 [00:04:11.000] ----------------------------------------------- +Info 112 [00:04:12.000] Project '/user/username/projects/myproject/dependency/tsconfig.json' (Configured) +Info 112 [00:04:13.000] Files (2) -Info 112 [16:04:14.000] ----------------------------------------------- -Info 112 [16:04:15.000] Project '/user/username/projects/myproject/random/tsconfig.json' (Configured) -Info 112 [16:04:16.000] Files (2) +Info 112 [00:04:14.000] ----------------------------------------------- +Info 112 [00:04:15.000] Project '/user/username/projects/myproject/random/tsconfig.json' (Configured) +Info 112 [00:04:16.000] Files (2) -Info 112 [16:04:17.000] ----------------------------------------------- -Info 112 [16:04:18.000] Open files: -Info 112 [16:04:19.000] FileName: /user/username/projects/myproject/random/random.ts ProjectRootPath: undefined -Info 112 [16:04:20.000] Projects: /user/username/projects/myproject/random/tsconfig.json +Info 112 [00:04:17.000] ----------------------------------------------- +Info 112 [00:04:18.000] Open files: +Info 112 [00:04:19.000] FileName: /user/username/projects/myproject/random/random.ts ProjectRootPath: undefined +Info 112 [00:04:20.000] Projects: /user/username/projects/myproject/random/tsconfig.json After request PolledWatches:: @@ -2337,11 +2337,11 @@ FsWatchesRecursive:: /user/username/projects/myproject/random: {} -Info 112 [16:04:21.000] response: +Info 112 [00:04:21.000] response: { "responseRequired": false } -Info 113 [16:04:22.000] request: +Info 113 [00:04:22.000] request: { "seq": 0, "type": "request", @@ -2390,20 +2390,20 @@ FsWatchesRecursive:: /user/username/projects/myproject/random: {} -Info 114 [16:04:23.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/random/random.ts 500 undefined WatchType: Closed Script info -Info 115 [16:04:24.000] Project '/user/username/projects/myproject/main/tsconfig.json' (Configured) -Info 115 [16:04:25.000] Files (3) +Info 114 [00:04:23.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/random/random.ts 500 undefined WatchType: Closed Script info +Info 115 [00:04:24.000] Project '/user/username/projects/myproject/main/tsconfig.json' (Configured) +Info 115 [00:04:25.000] Files (3) -Info 115 [16:04:26.000] ----------------------------------------------- -Info 115 [16:04:27.000] Project '/user/username/projects/myproject/dependency/tsconfig.json' (Configured) -Info 115 [16:04:28.000] Files (2) +Info 115 [00:04:26.000] ----------------------------------------------- +Info 115 [00:04:27.000] Project '/user/username/projects/myproject/dependency/tsconfig.json' (Configured) +Info 115 [00:04:28.000] Files (2) -Info 115 [16:04:29.000] ----------------------------------------------- -Info 115 [16:04:30.000] Project '/user/username/projects/myproject/random/tsconfig.json' (Configured) -Info 115 [16:04:31.000] Files (2) +Info 115 [00:04:29.000] ----------------------------------------------- +Info 115 [00:04:30.000] Project '/user/username/projects/myproject/random/tsconfig.json' (Configured) +Info 115 [00:04:31.000] Files (2) -Info 115 [16:04:32.000] ----------------------------------------------- -Info 115 [16:04:33.000] Open files: +Info 115 [00:04:32.000] ----------------------------------------------- +Info 115 [00:04:33.000] Open files: After request PolledWatches:: @@ -2446,11 +2446,11 @@ FsWatchesRecursive:: /user/username/projects/myproject/random: {} -Info 115 [16:04:34.000] response: +Info 115 [00:04:34.000] response: { "responseRequired": false } -Info 116 [16:04:35.000] request: +Info 116 [00:04:35.000] request: { "seq": 0, "type": "request", @@ -2501,12 +2501,12 @@ FsWatchesRecursive:: /user/username/projects/myproject/random: {} -Info 117 [16:04:36.000] FileWatcher:: Close:: WatchInfo: /user/username/projects/myproject/random/random.ts 500 undefined WatchType: Closed Script info -Info 118 [16:04:37.000] Search path: /user/username/projects/myproject/random -Info 119 [16:04:38.000] For info: /user/username/projects/myproject/random/random.ts :: Config file name: /user/username/projects/myproject/random/tsconfig.json -Info 120 [16:04:39.000] `remove Project:: -Info 121 [16:04:40.000] Project '/user/username/projects/myproject/main/tsconfig.json' (Configured) -Info 122 [16:04:41.000] Files (3) +Info 117 [00:04:36.000] FileWatcher:: Close:: WatchInfo: /user/username/projects/myproject/random/random.ts 500 undefined WatchType: Closed Script info +Info 118 [00:04:37.000] Search path: /user/username/projects/myproject/random +Info 119 [00:04:38.000] For info: /user/username/projects/myproject/random/random.ts :: Config file name: /user/username/projects/myproject/random/tsconfig.json +Info 120 [00:04:39.000] `remove Project:: +Info 121 [00:04:40.000] Project '/user/username/projects/myproject/main/tsconfig.json' (Configured) +Info 122 [00:04:41.000] Files (3) /a/lib/lib.d.ts /user/username/projects/myproject/dependency/FnS.ts /user/username/projects/myproject/main/main.ts @@ -2519,19 +2519,19 @@ Info 122 [16:04:41.000] Files (3) main.ts Matched by default include pattern '**/*' -Info 123 [16:04:42.000] ----------------------------------------------- -Info 124 [16:04:43.000] DirectoryWatcher:: Close:: WatchInfo: /user/username/projects/myproject/main 1 undefined Config: /user/username/projects/myproject/main/tsconfig.json WatchType: Wild card directory -Info 125 [16:04:44.000] 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 126 [16:04:45.000] FileWatcher:: Close:: WatchInfo: /user/username/projects/myproject/main/tsconfig.json 2000 undefined Project: /user/username/projects/myproject/main/tsconfig.json WatchType: Config file -Info 127 [16:04:46.000] DirectoryWatcher:: Close:: WatchInfo: /user/username/projects/myproject/decls 1 undefined Project: /user/username/projects/myproject/main/tsconfig.json WatchType: Failed Lookup Locations -Info 128 [16:04:47.000] 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 129 [16:04:48.000] 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 130 [16:04:49.000] 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 131 [16:04:50.000] DirectoryWatcher:: Close:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/main/tsconfig.json WatchType: Type roots -Info 132 [16:04:51.000] 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 133 [16:04:52.000] `remove Project:: -Info 134 [16:04:53.000] Project '/user/username/projects/myproject/dependency/tsconfig.json' (Configured) -Info 135 [16:04:54.000] Files (2) +Info 123 [00:04:42.000] ----------------------------------------------- +Info 124 [00:04:43.000] DirectoryWatcher:: Close:: WatchInfo: /user/username/projects/myproject/main 1 undefined Config: /user/username/projects/myproject/main/tsconfig.json WatchType: Wild card directory +Info 125 [00:04:44.000] 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 126 [00:04:45.000] FileWatcher:: Close:: WatchInfo: /user/username/projects/myproject/main/tsconfig.json 2000 undefined Project: /user/username/projects/myproject/main/tsconfig.json WatchType: Config file +Info 127 [00:04:46.000] DirectoryWatcher:: Close:: WatchInfo: /user/username/projects/myproject/decls 1 undefined Project: /user/username/projects/myproject/main/tsconfig.json WatchType: Failed Lookup Locations +Info 128 [00:04:47.000] 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 129 [00:04:48.000] 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 130 [00:04:49.000] 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 131 [00:04:50.000] DirectoryWatcher:: Close:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/main/tsconfig.json WatchType: Type roots +Info 132 [00:04:51.000] 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 133 [00:04:52.000] `remove Project:: +Info 134 [00:04:53.000] Project '/user/username/projects/myproject/dependency/tsconfig.json' (Configured) +Info 135 [00:04:54.000] Files (2) /a/lib/lib.d.ts /user/username/projects/myproject/dependency/FnS.ts @@ -2541,25 +2541,25 @@ Info 135 [16:04:54.000] Files (2) FnS.ts Matched by default include pattern '**/*' -Info 136 [16:04:55.000] ----------------------------------------------- -Info 137 [16:04:56.000] DirectoryWatcher:: Close:: WatchInfo: /user/username/projects/myproject/dependency 1 undefined Config: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Wild card directory -Info 138 [16:04:57.000] 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 139 [16:04:58.000] FileWatcher:: Close:: WatchInfo: /user/username/projects/myproject/dependency/tsconfig.json 2000 undefined Project: /user/username/projects/myproject/main/tsconfig.json WatchType: Config file -Info 140 [16:04:59.000] 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 141 [16:05:00.000] 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 142 [16:05:01.000] DirectoryWatcher:: Close:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Type roots -Info 143 [16:05:02.000] 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 144 [16:05:03.000] FileWatcher:: Close:: WatchInfo: /user/username/projects/myproject/main/main.ts 500 undefined WatchType: Closed Script info -Info 145 [16:05:04.000] FileWatcher:: Close:: WatchInfo: /user/username/projects/myproject/dependency/FnS.ts 500 undefined WatchType: Closed Script info -Info 146 [16:05:05.000] FileWatcher:: Close:: WatchInfo: /user/username/projects/myproject/decls/FnS.d.ts 500 undefined WatchType: Closed Script info -Info 147 [16:05:06.000] FileWatcher:: Close:: WatchInfo: /user/username/projects/myproject/decls/FnS.d.ts.map 500 undefined WatchType: Closed Script info -Info 148 [16:05:07.000] Project '/user/username/projects/myproject/random/tsconfig.json' (Configured) -Info 148 [16:05:08.000] Files (2) - -Info 148 [16:05:09.000] ----------------------------------------------- -Info 148 [16:05:10.000] Open files: -Info 148 [16:05:11.000] FileName: /user/username/projects/myproject/random/random.ts ProjectRootPath: undefined -Info 148 [16:05:12.000] Projects: /user/username/projects/myproject/random/tsconfig.json +Info 136 [00:04:55.000] ----------------------------------------------- +Info 137 [00:04:56.000] DirectoryWatcher:: Close:: WatchInfo: /user/username/projects/myproject/dependency 1 undefined Config: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Wild card directory +Info 138 [00:04:57.000] 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 139 [00:04:58.000] FileWatcher:: Close:: WatchInfo: /user/username/projects/myproject/dependency/tsconfig.json 2000 undefined Project: /user/username/projects/myproject/main/tsconfig.json WatchType: Config file +Info 140 [00:04:59.000] 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 141 [00:05:00.000] 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 142 [00:05:01.000] DirectoryWatcher:: Close:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Type roots +Info 143 [00:05:02.000] 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 144 [00:05:03.000] FileWatcher:: Close:: WatchInfo: /user/username/projects/myproject/main/main.ts 500 undefined WatchType: Closed Script info +Info 145 [00:05:04.000] FileWatcher:: Close:: WatchInfo: /user/username/projects/myproject/dependency/FnS.ts 500 undefined WatchType: Closed Script info +Info 146 [00:05:05.000] FileWatcher:: Close:: WatchInfo: /user/username/projects/myproject/decls/FnS.d.ts 500 undefined WatchType: Closed Script info +Info 147 [00:05:06.000] FileWatcher:: Close:: WatchInfo: /user/username/projects/myproject/decls/FnS.d.ts.map 500 undefined WatchType: Closed Script info +Info 148 [00:05:07.000] Project '/user/username/projects/myproject/random/tsconfig.json' (Configured) +Info 148 [00:05:08.000] Files (2) + +Info 148 [00:05:09.000] ----------------------------------------------- +Info 148 [00:05:10.000] Open files: +Info 148 [00:05:11.000] FileName: /user/username/projects/myproject/random/random.ts ProjectRootPath: undefined +Info 148 [00:05:12.000] Projects: /user/username/projects/myproject/random/tsconfig.json After request PolledWatches:: @@ -2578,7 +2578,7 @@ FsWatchesRecursive:: /user/username/projects/myproject/random: {} -Info 148 [16:05:13.000] response: +Info 148 [00:05:13.000] response: { "responseRequired": false } \ No newline at end of file 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 ce1435f66bcb6..bda2dfb55a068 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 @@ -1,5 +1,5 @@ -Info 0 [16:01:00.000] Provided types map file "/a/lib/typesMap.json" doesn't exist -Info 1 [16:01:01.000] request: +Info 0 [00:01:00.000] Provided types map file "/a/lib/typesMap.json" doesn't exist +Info 1 [00:01:01.000] request: { "seq": 0, "type": "request", @@ -200,11 +200,11 @@ FsWatches:: FsWatchesRecursive:: -Info 2 [16:01:02.000] Search path: /user/username/projects/myproject/main -Info 3 [16:01:03.000] For info: /user/username/projects/myproject/main/main.ts :: Config file name: /user/username/projects/myproject/main/tsconfig.json -Info 4 [16:01:04.000] Creating configuration project /user/username/projects/myproject/main/tsconfig.json -Info 5 [16:01:05.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/main/tsconfig.json 2000 undefined Project: /user/username/projects/myproject/main/tsconfig.json WatchType: Config file -Info 6 [16:01:06.000] Config: /user/username/projects/myproject/main/tsconfig.json : { +Info 2 [00:01:02.000] Search path: /user/username/projects/myproject/main +Info 3 [00:01:03.000] For info: /user/username/projects/myproject/main/main.ts :: Config file name: /user/username/projects/myproject/main/tsconfig.json +Info 4 [00:01:04.000] Creating configuration project /user/username/projects/myproject/main/tsconfig.json +Info 5 [00:01:05.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/main/tsconfig.json 2000 undefined Project: /user/username/projects/myproject/main/tsconfig.json WatchType: Config file +Info 6 [00:01:06.000] Config: /user/username/projects/myproject/main/tsconfig.json : { "rootNames": [ "/user/username/projects/myproject/main/main.ts" ], @@ -220,11 +220,11 @@ Info 6 [16:01:06.000] Config: /user/username/projects/myproject/main/tsconfig } ] } -Info 7 [16:01:07.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/main 1 undefined Config: /user/username/projects/myproject/main/tsconfig.json WatchType: Wild card directory -Info 8 [16:01:08.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/main 1 undefined Config: /user/username/projects/myproject/main/tsconfig.json WatchType: Wild card directory -Info 9 [16:01:09.000] Plugins were requested but not running in environment that supports 'require'. Nothing will be loaded -Info 10 [16:01:10.000] Starting updateGraphWorker: Project: /user/username/projects/myproject/main/tsconfig.json -Info 11 [16:01:11.000] Config: /user/username/projects/myproject/dependency/tsconfig.json : { +Info 7 [00:01:07.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/main 1 undefined Config: /user/username/projects/myproject/main/tsconfig.json WatchType: Wild card directory +Info 8 [00:01:08.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/main 1 undefined Config: /user/username/projects/myproject/main/tsconfig.json WatchType: Wild card directory +Info 9 [00:01:09.000] Plugins were requested but not running in environment that supports 'require'. Nothing will be loaded +Info 10 [00:01:10.000] Starting updateGraphWorker: Project: /user/username/projects/myproject/main/tsconfig.json +Info 11 [00:01:11.000] Config: /user/username/projects/myproject/dependency/tsconfig.json : { "rootNames": [ "/user/username/projects/myproject/dependency/FnS.ts" ], @@ -235,20 +235,20 @@ Info 11 [16:01:11.000] Config: /user/username/projects/myproject/dependency/ts "configFilePath": "/user/username/projects/myproject/dependency/tsconfig.json" } } -Info 12 [16:01:12.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/dependency/tsconfig.json 2000 undefined Project: /user/username/projects/myproject/main/tsconfig.json WatchType: Config file -Info 13 [16:01:13.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/dependency 1 undefined Config: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Wild card directory -Info 14 [16:01:14.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/dependency 1 undefined Config: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Wild card directory -Info 15 [16:01:15.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/decls 1 undefined Project: /user/username/projects/myproject/main/tsconfig.json WatchType: Failed Lookup Locations -Info 16 [16:01:16.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/decls 1 undefined Project: /user/username/projects/myproject/main/tsconfig.json WatchType: Failed Lookup Locations -Info 17 [16:01:17.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/dependency/FnS.ts 500 undefined WatchType: Closed Script info -Info 18 [16:01:18.000] FileWatcher:: Added:: WatchInfo: /a/lib/lib.d.ts 500 undefined WatchType: Closed Script info -Info 19 [16:01:19.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/main/node_modules/@types 1 undefined Project: /user/username/projects/myproject/main/tsconfig.json WatchType: Type roots -Info 20 [16:01:20.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/main/node_modules/@types 1 undefined Project: /user/username/projects/myproject/main/tsconfig.json WatchType: Type roots -Info 21 [16:01:21.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/main/tsconfig.json WatchType: Type roots -Info 22 [16:01:22.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/main/tsconfig.json WatchType: Type roots -Info 23 [16:01:23.000] Finishing updateGraphWorker: Project: /user/username/projects/myproject/main/tsconfig.json Version: 1 structureChanged: true structureIsReused:: Not Elapsed:: *ms -Info 24 [16:01:24.000] Project '/user/username/projects/myproject/main/tsconfig.json' (Configured) -Info 25 [16:01:25.000] Files (3) +Info 12 [00:01:12.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/dependency/tsconfig.json 2000 undefined Project: /user/username/projects/myproject/main/tsconfig.json WatchType: Config file +Info 13 [00:01:13.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/dependency 1 undefined Config: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Wild card directory +Info 14 [00:01:14.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/dependency 1 undefined Config: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Wild card directory +Info 15 [00:01:15.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/decls 1 undefined Project: /user/username/projects/myproject/main/tsconfig.json WatchType: Failed Lookup Locations +Info 16 [00:01:16.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/decls 1 undefined Project: /user/username/projects/myproject/main/tsconfig.json WatchType: Failed Lookup Locations +Info 17 [00:01:17.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/dependency/FnS.ts 500 undefined WatchType: Closed Script info +Info 18 [00:01:18.000] FileWatcher:: Added:: WatchInfo: /a/lib/lib.d.ts 500 undefined WatchType: Closed Script info +Info 19 [00:01:19.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/main/node_modules/@types 1 undefined Project: /user/username/projects/myproject/main/tsconfig.json WatchType: Type roots +Info 20 [00:01:20.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/main/node_modules/@types 1 undefined Project: /user/username/projects/myproject/main/tsconfig.json WatchType: Type roots +Info 21 [00:01:21.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/main/tsconfig.json WatchType: Type roots +Info 22 [00:01:22.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/main/tsconfig.json WatchType: Type roots +Info 23 [00:01:23.000] Finishing updateGraphWorker: Project: /user/username/projects/myproject/main/tsconfig.json Version: 1 structureChanged: true structureIsReused:: Not Elapsed:: *ms +Info 24 [00:01:24.000] Project '/user/username/projects/myproject/main/tsconfig.json' (Configured) +Info 25 [00:01:25.000] Files (3) /a/lib/lib.d.ts /user/username/projects/myproject/dependency/FnS.ts /user/username/projects/myproject/main/main.ts @@ -261,16 +261,16 @@ Info 25 [16:01:25.000] Files (3) main.ts Matched by default include pattern '**/*' -Info 26 [16:01:26.000] ----------------------------------------------- -Info 27 [16:01:27.000] Search path: /user/username/projects/myproject/main -Info 28 [16:01:28.000] For info: /user/username/projects/myproject/main/tsconfig.json :: No config files found. -Info 29 [16:01:29.000] Project '/user/username/projects/myproject/main/tsconfig.json' (Configured) -Info 29 [16:01:30.000] Files (3) +Info 26 [00:01:26.000] ----------------------------------------------- +Info 27 [00:01:27.000] Search path: /user/username/projects/myproject/main +Info 28 [00:01:28.000] For info: /user/username/projects/myproject/main/tsconfig.json :: No config files found. +Info 29 [00:01:29.000] Project '/user/username/projects/myproject/main/tsconfig.json' (Configured) +Info 29 [00:01:30.000] Files (3) -Info 29 [16:01:31.000] ----------------------------------------------- -Info 29 [16:01:32.000] Open files: -Info 29 [16:01:33.000] FileName: /user/username/projects/myproject/main/main.ts ProjectRootPath: undefined -Info 29 [16:01:34.000] Projects: /user/username/projects/myproject/main/tsconfig.json +Info 29 [00:01:31.000] ----------------------------------------------- +Info 29 [00:01:32.000] Open files: +Info 29 [00:01:33.000] FileName: /user/username/projects/myproject/main/main.ts ProjectRootPath: undefined +Info 29 [00:01:34.000] Projects: /user/username/projects/myproject/main/tsconfig.json After request PolledWatches:: @@ -297,11 +297,11 @@ FsWatchesRecursive:: /user/username/projects/myproject/decls: {} -Info 29 [16:01:35.000] response: +Info 29 [00:01:35.000] response: { "responseRequired": false } -Info 30 [16:01:36.000] request: +Info 30 [00:01:36.000] request: { "seq": 0, "type": "request", @@ -336,19 +336,19 @@ FsWatchesRecursive:: /user/username/projects/myproject/decls: {} -Info 31 [16:01:37.000] FileWatcher:: Close:: WatchInfo: /user/username/projects/myproject/dependency/FnS.ts 500 undefined WatchType: Closed Script info -Info 32 [16:01:38.000] Search path: /user/username/projects/myproject/dependency -Info 33 [16:01:39.000] For info: /user/username/projects/myproject/dependency/FnS.ts :: Config file name: /user/username/projects/myproject/dependency/tsconfig.json -Info 34 [16:01:40.000] Creating configuration project /user/username/projects/myproject/dependency/tsconfig.json -Info 35 [16:01:41.000] Plugins were requested but not running in environment that supports 'require'. Nothing will be loaded -Info 36 [16:01:42.000] Starting updateGraphWorker: Project: /user/username/projects/myproject/dependency/tsconfig.json -Info 37 [16:01:43.000] 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 38 [16:01:44.000] 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 39 [16:01:45.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Type roots -Info 40 [16:01:46.000] 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 41 [16:01:47.000] Finishing updateGraphWorker: Project: /user/username/projects/myproject/dependency/tsconfig.json Version: 1 structureChanged: true structureIsReused:: Not Elapsed:: *ms -Info 42 [16:01:48.000] Project '/user/username/projects/myproject/dependency/tsconfig.json' (Configured) -Info 43 [16:01:49.000] Files (2) +Info 31 [00:01:37.000] FileWatcher:: Close:: WatchInfo: /user/username/projects/myproject/dependency/FnS.ts 500 undefined WatchType: Closed Script info +Info 32 [00:01:38.000] Search path: /user/username/projects/myproject/dependency +Info 33 [00:01:39.000] For info: /user/username/projects/myproject/dependency/FnS.ts :: Config file name: /user/username/projects/myproject/dependency/tsconfig.json +Info 34 [00:01:40.000] Creating configuration project /user/username/projects/myproject/dependency/tsconfig.json +Info 35 [00:01:41.000] Plugins were requested but not running in environment that supports 'require'. Nothing will be loaded +Info 36 [00:01:42.000] Starting updateGraphWorker: Project: /user/username/projects/myproject/dependency/tsconfig.json +Info 37 [00:01:43.000] 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 38 [00:01:44.000] 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 39 [00:01:45.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Type roots +Info 40 [00:01:46.000] 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 41 [00:01:47.000] Finishing updateGraphWorker: Project: /user/username/projects/myproject/dependency/tsconfig.json Version: 1 structureChanged: true structureIsReused:: Not Elapsed:: *ms +Info 42 [00:01:48.000] Project '/user/username/projects/myproject/dependency/tsconfig.json' (Configured) +Info 43 [00:01:49.000] Files (2) /a/lib/lib.d.ts /user/username/projects/myproject/dependency/FnS.ts @@ -358,22 +358,22 @@ Info 43 [16:01:49.000] Files (2) FnS.ts Matched by default include pattern '**/*' -Info 44 [16:01:50.000] ----------------------------------------------- -Info 45 [16:01:51.000] Search path: /user/username/projects/myproject/dependency -Info 46 [16:01:52.000] For info: /user/username/projects/myproject/dependency/tsconfig.json :: No config files found. -Info 47 [16:01:53.000] Project '/user/username/projects/myproject/main/tsconfig.json' (Configured) -Info 47 [16:01:54.000] Files (3) - -Info 47 [16:01:55.000] ----------------------------------------------- -Info 47 [16:01:56.000] Project '/user/username/projects/myproject/dependency/tsconfig.json' (Configured) -Info 47 [16:01:57.000] Files (2) - -Info 47 [16:01:58.000] ----------------------------------------------- -Info 47 [16:01:59.000] Open files: -Info 47 [16:02:00.000] FileName: /user/username/projects/myproject/main/main.ts ProjectRootPath: undefined -Info 47 [16:02:01.000] Projects: /user/username/projects/myproject/main/tsconfig.json -Info 47 [16:02:02.000] FileName: /user/username/projects/myproject/dependency/FnS.ts ProjectRootPath: undefined -Info 47 [16:02:03.000] Projects: /user/username/projects/myproject/main/tsconfig.json,/user/username/projects/myproject/dependency/tsconfig.json +Info 44 [00:01:50.000] ----------------------------------------------- +Info 45 [00:01:51.000] Search path: /user/username/projects/myproject/dependency +Info 46 [00:01:52.000] For info: /user/username/projects/myproject/dependency/tsconfig.json :: No config files found. +Info 47 [00:01:53.000] Project '/user/username/projects/myproject/main/tsconfig.json' (Configured) +Info 47 [00:01:54.000] Files (3) + +Info 47 [00:01:55.000] ----------------------------------------------- +Info 47 [00:01:56.000] Project '/user/username/projects/myproject/dependency/tsconfig.json' (Configured) +Info 47 [00:01:57.000] Files (2) + +Info 47 [00:01:58.000] ----------------------------------------------- +Info 47 [00:01:59.000] Open files: +Info 47 [00:02:00.000] FileName: /user/username/projects/myproject/main/main.ts ProjectRootPath: undefined +Info 47 [00:02:01.000] Projects: /user/username/projects/myproject/main/tsconfig.json +Info 47 [00:02:02.000] FileName: /user/username/projects/myproject/dependency/FnS.ts ProjectRootPath: undefined +Info 47 [00:02:03.000] Projects: /user/username/projects/myproject/main/tsconfig.json,/user/username/projects/myproject/dependency/tsconfig.json After request PolledWatches:: @@ -400,11 +400,11 @@ FsWatchesRecursive:: /user/username/projects/myproject/decls: {} -Info 47 [16:02:04.000] response: +Info 47 [00:02:04.000] response: { "responseRequired": false } -Info 48 [16:02:05.000] request: +Info 48 [00:02:05.000] request: { "seq": 0, "type": "request", @@ -439,11 +439,11 @@ FsWatchesRecursive:: /user/username/projects/myproject/decls: {} -Info 49 [16:02:06.000] Search path: /user/username/projects/myproject/random -Info 50 [16:02:07.000] For info: /user/username/projects/myproject/random/random.ts :: Config file name: /user/username/projects/myproject/random/tsconfig.json -Info 51 [16:02:08.000] Creating configuration project /user/username/projects/myproject/random/tsconfig.json -Info 52 [16:02:09.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/random/tsconfig.json 2000 undefined Project: /user/username/projects/myproject/random/tsconfig.json WatchType: Config file -Info 53 [16:02:10.000] Config: /user/username/projects/myproject/random/tsconfig.json : { +Info 49 [00:02:06.000] Search path: /user/username/projects/myproject/random +Info 50 [00:02:07.000] For info: /user/username/projects/myproject/random/random.ts :: Config file name: /user/username/projects/myproject/random/tsconfig.json +Info 51 [00:02:08.000] Creating configuration project /user/username/projects/myproject/random/tsconfig.json +Info 52 [00:02:09.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/random/tsconfig.json 2000 undefined Project: /user/username/projects/myproject/random/tsconfig.json WatchType: Config file +Info 53 [00:02:10.000] Config: /user/username/projects/myproject/random/tsconfig.json : { "rootNames": [ "/user/username/projects/myproject/random/random.ts" ], @@ -451,17 +451,17 @@ Info 53 [16:02:10.000] Config: /user/username/projects/myproject/random/tsconf "configFilePath": "/user/username/projects/myproject/random/tsconfig.json" } } -Info 54 [16:02:11.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/random 1 undefined Config: /user/username/projects/myproject/random/tsconfig.json WatchType: Wild card directory -Info 55 [16:02:12.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/random 1 undefined Config: /user/username/projects/myproject/random/tsconfig.json WatchType: Wild card directory -Info 56 [16:02:13.000] Plugins were requested but not running in environment that supports 'require'. Nothing will be loaded -Info 57 [16:02:14.000] Starting updateGraphWorker: Project: /user/username/projects/myproject/random/tsconfig.json -Info 58 [16:02:15.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/random/node_modules/@types 1 undefined Project: /user/username/projects/myproject/random/tsconfig.json WatchType: Type roots -Info 59 [16:02:16.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/random/node_modules/@types 1 undefined Project: /user/username/projects/myproject/random/tsconfig.json WatchType: Type roots -Info 60 [16:02:17.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/random/tsconfig.json WatchType: Type roots -Info 61 [16:02:18.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/random/tsconfig.json WatchType: Type roots -Info 62 [16:02:19.000] Finishing updateGraphWorker: Project: /user/username/projects/myproject/random/tsconfig.json Version: 1 structureChanged: true structureIsReused:: Not Elapsed:: *ms -Info 63 [16:02:20.000] Project '/user/username/projects/myproject/random/tsconfig.json' (Configured) -Info 64 [16:02:21.000] Files (2) +Info 54 [00:02:11.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/random 1 undefined Config: /user/username/projects/myproject/random/tsconfig.json WatchType: Wild card directory +Info 55 [00:02:12.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/random 1 undefined Config: /user/username/projects/myproject/random/tsconfig.json WatchType: Wild card directory +Info 56 [00:02:13.000] Plugins were requested but not running in environment that supports 'require'. Nothing will be loaded +Info 57 [00:02:14.000] Starting updateGraphWorker: Project: /user/username/projects/myproject/random/tsconfig.json +Info 58 [00:02:15.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/random/node_modules/@types 1 undefined Project: /user/username/projects/myproject/random/tsconfig.json WatchType: Type roots +Info 59 [00:02:16.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/random/node_modules/@types 1 undefined Project: /user/username/projects/myproject/random/tsconfig.json WatchType: Type roots +Info 60 [00:02:17.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/random/tsconfig.json WatchType: Type roots +Info 61 [00:02:18.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/random/tsconfig.json WatchType: Type roots +Info 62 [00:02:19.000] Finishing updateGraphWorker: Project: /user/username/projects/myproject/random/tsconfig.json Version: 1 structureChanged: true structureIsReused:: Not Elapsed:: *ms +Info 63 [00:02:20.000] Project '/user/username/projects/myproject/random/tsconfig.json' (Configured) +Info 64 [00:02:21.000] Files (2) /a/lib/lib.d.ts /user/username/projects/myproject/random/random.ts @@ -471,26 +471,26 @@ Info 64 [16:02:21.000] Files (2) random.ts Matched by default include pattern '**/*' -Info 65 [16:02:22.000] ----------------------------------------------- -Info 66 [16:02:23.000] Project '/user/username/projects/myproject/main/tsconfig.json' (Configured) -Info 66 [16:02:24.000] Files (3) - -Info 66 [16:02:25.000] ----------------------------------------------- -Info 66 [16:02:26.000] Project '/user/username/projects/myproject/dependency/tsconfig.json' (Configured) -Info 66 [16:02:27.000] Files (2) - -Info 66 [16:02:28.000] ----------------------------------------------- -Info 66 [16:02:29.000] Project '/user/username/projects/myproject/random/tsconfig.json' (Configured) -Info 66 [16:02:30.000] Files (2) - -Info 66 [16:02:31.000] ----------------------------------------------- -Info 66 [16:02:32.000] Open files: -Info 66 [16:02:33.000] FileName: /user/username/projects/myproject/main/main.ts ProjectRootPath: undefined -Info 66 [16:02:34.000] Projects: /user/username/projects/myproject/main/tsconfig.json -Info 66 [16:02:35.000] FileName: /user/username/projects/myproject/dependency/FnS.ts ProjectRootPath: undefined -Info 66 [16:02:36.000] Projects: /user/username/projects/myproject/main/tsconfig.json,/user/username/projects/myproject/dependency/tsconfig.json -Info 66 [16:02:37.000] FileName: /user/username/projects/myproject/random/random.ts ProjectRootPath: undefined -Info 66 [16:02:38.000] Projects: /user/username/projects/myproject/random/tsconfig.json +Info 65 [00:02:22.000] ----------------------------------------------- +Info 66 [00:02:23.000] Project '/user/username/projects/myproject/main/tsconfig.json' (Configured) +Info 66 [00:02:24.000] Files (3) + +Info 66 [00:02:25.000] ----------------------------------------------- +Info 66 [00:02:26.000] Project '/user/username/projects/myproject/dependency/tsconfig.json' (Configured) +Info 66 [00:02:27.000] Files (2) + +Info 66 [00:02:28.000] ----------------------------------------------- +Info 66 [00:02:29.000] Project '/user/username/projects/myproject/random/tsconfig.json' (Configured) +Info 66 [00:02:30.000] Files (2) + +Info 66 [00:02:31.000] ----------------------------------------------- +Info 66 [00:02:32.000] Open files: +Info 66 [00:02:33.000] FileName: /user/username/projects/myproject/main/main.ts ProjectRootPath: undefined +Info 66 [00:02:34.000] Projects: /user/username/projects/myproject/main/tsconfig.json +Info 66 [00:02:35.000] FileName: /user/username/projects/myproject/dependency/FnS.ts ProjectRootPath: undefined +Info 66 [00:02:36.000] Projects: /user/username/projects/myproject/main/tsconfig.json,/user/username/projects/myproject/dependency/tsconfig.json +Info 66 [00:02:37.000] FileName: /user/username/projects/myproject/random/random.ts ProjectRootPath: undefined +Info 66 [00:02:38.000] Projects: /user/username/projects/myproject/random/tsconfig.json After request PolledWatches:: @@ -523,11 +523,11 @@ FsWatchesRecursive:: /user/username/projects/myproject/random: {} -Info 66 [16:02:39.000] response: +Info 66 [00:02:39.000] response: { "responseRequired": false } -Info 67 [16:02:40.000] request: +Info 67 [00:02:40.000] request: { "command": "definitionAndBoundSpan", "arguments": { @@ -602,7 +602,7 @@ FsWatchesRecursive:: /user/username/projects/myproject/random: {} -Info 68 [16:02:41.000] response: +Info 68 [00:02:41.000] response: { "response": { "definitions": [ @@ -639,7 +639,7 @@ Info 68 [16:02:41.000] response: }, "responseRequired": true } -Info 69 [16:02:42.000] request: +Info 69 [00:02:42.000] request: { "command": "rename", "arguments": { @@ -682,10 +682,10 @@ FsWatchesRecursive:: /user/username/projects/myproject/random: {} -Info 70 [16:02:43.000] Search path: /user/username/projects/myproject/dependency -Info 71 [16:02:44.000] For info: /user/username/projects/myproject/dependency/FnS.ts :: Config file name: /user/username/projects/myproject/dependency/tsconfig.json -Info 72 [16:02:45.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/decls/FnS.d.ts 500 undefined WatchType: Closed Script info -Info 73 [16:02:46.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/decls/FnS.d.ts.map 500 undefined WatchType: Closed Script info +Info 70 [00:02:43.000] Search path: /user/username/projects/myproject/dependency +Info 71 [00:02:44.000] For info: /user/username/projects/myproject/dependency/FnS.ts :: Config file name: /user/username/projects/myproject/dependency/tsconfig.json +Info 72 [00:02:45.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/decls/FnS.d.ts 500 undefined WatchType: Closed Script info +Info 73 [00:02:46.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/decls/FnS.d.ts.map 500 undefined WatchType: Closed Script info After request PolledWatches:: @@ -722,7 +722,7 @@ FsWatchesRecursive:: /user/username/projects/myproject/random: {} -Info 74 [16:02:47.000] response: +Info 74 [00:02:47.000] response: { "response": { "info": { @@ -803,7 +803,7 @@ Info 74 [16:02:47.000] response: }, "responseRequired": true } -Info 75 [16:02:48.000] request: +Info 75 [00:02:48.000] request: { "command": "change", "arguments": { @@ -889,11 +889,11 @@ FsWatchesRecursive:: /user/username/projects/myproject/random: {} -Info 76 [16:02:49.000] response: +Info 76 [00:02:49.000] response: { "responseRequired": false } -Info 77 [16:02:50.000] request: +Info 77 [00:02:50.000] request: { "command": "change", "arguments": { @@ -979,7 +979,7 @@ FsWatchesRecursive:: /user/username/projects/myproject/random: {} -Info 78 [16:02:51.000] response: +Info 78 [00:02:51.000] response: { "responseRequired": false } @@ -1055,7 +1055,7 @@ FsWatchesRecursive:: /user/username/projects/myproject/random: {} -Info 79 [16:02:52.000] request: +Info 79 [00:02:52.000] request: { "command": "definitionAndBoundSpan", "arguments": { @@ -1102,9 +1102,9 @@ FsWatchesRecursive:: /user/username/projects/myproject/random: {} -Info 80 [16:02:53.000] Starting updateGraphWorker: Project: /user/username/projects/myproject/main/tsconfig.json -Info 81 [16:02:54.000] Finishing updateGraphWorker: Project: /user/username/projects/myproject/main/tsconfig.json Version: 2 structureChanged: false structureIsReused:: Completely Elapsed:: *ms -Info 82 [16:02:55.000] Different program with same set of files +Info 80 [00:02:53.000] Starting updateGraphWorker: Project: /user/username/projects/myproject/main/tsconfig.json +Info 81 [00:02:54.000] Finishing updateGraphWorker: Project: /user/username/projects/myproject/main/tsconfig.json Version: 2 structureChanged: false structureIsReused:: Completely Elapsed:: *ms +Info 82 [00:02:55.000] Different program with same set of files After request PolledWatches:: @@ -1141,7 +1141,7 @@ FsWatchesRecursive:: /user/username/projects/myproject/random: {} -Info 83 [16:02:56.000] response: +Info 83 [00:02:56.000] response: { "response": { "definitions": [ @@ -1178,7 +1178,7 @@ Info 83 [16:02:56.000] response: }, "responseRequired": true } -Info 84 [16:02:57.000] request: +Info 84 [00:02:57.000] request: { "command": "definitionAndBoundSpan", "arguments": { @@ -1261,7 +1261,7 @@ FsWatchesRecursive:: /user/username/projects/myproject/random: {} -Info 85 [16:02:58.000] response: +Info 85 [00:02:58.000] response: { "response": { "definitions": [ @@ -1298,7 +1298,7 @@ Info 85 [16:02:58.000] response: }, "responseRequired": true } -Info 86 [16:02:59.000] request: +Info 86 [00:02:59.000] request: { "command": "definitionAndBoundSpan", "arguments": { @@ -1381,7 +1381,7 @@ FsWatchesRecursive:: /user/username/projects/myproject/random: {} -Info 87 [16:03:00.000] response: +Info 87 [00:03:00.000] response: { "response": { "definitions": [ @@ -1418,7 +1418,7 @@ Info 87 [16:03:00.000] response: }, "responseRequired": true } -Info 88 [16:03:01.000] request: +Info 88 [00:03:01.000] request: { "command": "definitionAndBoundSpan", "arguments": { @@ -1501,7 +1501,7 @@ FsWatchesRecursive:: /user/username/projects/myproject/random: {} -Info 89 [16:03:02.000] response: +Info 89 [00:03:02.000] response: { "response": { "definitions": [ @@ -1538,7 +1538,7 @@ Info 89 [16:03:02.000] response: }, "responseRequired": true } -Info 90 [16:03:03.000] request: +Info 90 [00:03:03.000] request: { "command": "definitionAndBoundSpan", "arguments": { @@ -1621,7 +1621,7 @@ FsWatchesRecursive:: /user/username/projects/myproject/random: {} -Info 91 [16:03:04.000] response: +Info 91 [00:03:04.000] response: { "response": { "definitions": [ @@ -1658,7 +1658,7 @@ Info 91 [16:03:04.000] response: }, "responseRequired": true } -Info 92 [16:03:05.000] request: +Info 92 [00:03:05.000] request: { "command": "rename", "arguments": { @@ -1705,11 +1705,11 @@ FsWatchesRecursive:: /user/username/projects/myproject/random: {} -Info 93 [16:03:06.000] Starting updateGraphWorker: Project: /user/username/projects/myproject/dependency/tsconfig.json -Info 94 [16:03:07.000] Finishing updateGraphWorker: Project: /user/username/projects/myproject/dependency/tsconfig.json Version: 2 structureChanged: false structureIsReused:: Completely Elapsed:: *ms -Info 95 [16:03:08.000] Different program with same set of files -Info 96 [16:03:09.000] Search path: /user/username/projects/myproject/dependency -Info 97 [16:03:10.000] For info: /user/username/projects/myproject/dependency/FnS.ts :: Config file name: /user/username/projects/myproject/dependency/tsconfig.json +Info 93 [00:03:06.000] Starting updateGraphWorker: Project: /user/username/projects/myproject/dependency/tsconfig.json +Info 94 [00:03:07.000] Finishing updateGraphWorker: Project: /user/username/projects/myproject/dependency/tsconfig.json Version: 2 structureChanged: false structureIsReused:: Completely Elapsed:: *ms +Info 95 [00:03:08.000] Different program with same set of files +Info 96 [00:03:09.000] Search path: /user/username/projects/myproject/dependency +Info 97 [00:03:10.000] For info: /user/username/projects/myproject/dependency/FnS.ts :: Config file name: /user/username/projects/myproject/dependency/tsconfig.json After request PolledWatches:: @@ -1746,7 +1746,7 @@ FsWatchesRecursive:: /user/username/projects/myproject/random: {} -Info 98 [16:03:11.000] response: +Info 98 [00:03:11.000] response: { "response": { "info": { @@ -1827,7 +1827,7 @@ Info 98 [16:03:11.000] response: }, "responseRequired": true } -Info 99 [16:03:12.000] request: +Info 99 [00:03:12.000] request: { "command": "rename", "arguments": { @@ -1874,8 +1874,8 @@ FsWatchesRecursive:: /user/username/projects/myproject/random: {} -Info 100 [16:03:13.000] Search path: /user/username/projects/myproject/dependency -Info 101 [16:03:14.000] For info: /user/username/projects/myproject/dependency/FnS.ts :: Config file name: /user/username/projects/myproject/dependency/tsconfig.json +Info 100 [00:03:13.000] Search path: /user/username/projects/myproject/dependency +Info 101 [00:03:14.000] For info: /user/username/projects/myproject/dependency/FnS.ts :: Config file name: /user/username/projects/myproject/dependency/tsconfig.json After request PolledWatches:: @@ -1912,7 +1912,7 @@ FsWatchesRecursive:: /user/username/projects/myproject/random: {} -Info 102 [16:03:15.000] response: +Info 102 [00:03:15.000] response: { "response": { "info": { @@ -1993,7 +1993,7 @@ Info 102 [16:03:15.000] response: }, "responseRequired": true } -Info 103 [16:03:16.000] request: +Info 103 [00:03:16.000] request: { "command": "rename", "arguments": { @@ -2040,8 +2040,8 @@ FsWatchesRecursive:: /user/username/projects/myproject/random: {} -Info 104 [16:03:17.000] Search path: /user/username/projects/myproject/dependency -Info 105 [16:03:18.000] For info: /user/username/projects/myproject/dependency/FnS.ts :: Config file name: /user/username/projects/myproject/dependency/tsconfig.json +Info 104 [00:03:17.000] Search path: /user/username/projects/myproject/dependency +Info 105 [00:03:18.000] For info: /user/username/projects/myproject/dependency/FnS.ts :: Config file name: /user/username/projects/myproject/dependency/tsconfig.json After request PolledWatches:: @@ -2078,7 +2078,7 @@ FsWatchesRecursive:: /user/username/projects/myproject/random: {} -Info 106 [16:03:19.000] response: +Info 106 [00:03:19.000] response: { "response": { "info": { @@ -2159,7 +2159,7 @@ Info 106 [16:03:19.000] response: }, "responseRequired": true } -Info 107 [16:03:20.000] request: +Info 107 [00:03:20.000] request: { "command": "rename", "arguments": { @@ -2206,8 +2206,8 @@ FsWatchesRecursive:: /user/username/projects/myproject/random: {} -Info 108 [16:03:21.000] Search path: /user/username/projects/myproject/dependency -Info 109 [16:03:22.000] For info: /user/username/projects/myproject/dependency/FnS.ts :: Config file name: /user/username/projects/myproject/dependency/tsconfig.json +Info 108 [00:03:21.000] Search path: /user/username/projects/myproject/dependency +Info 109 [00:03:22.000] For info: /user/username/projects/myproject/dependency/FnS.ts :: Config file name: /user/username/projects/myproject/dependency/tsconfig.json After request PolledWatches:: @@ -2244,7 +2244,7 @@ FsWatchesRecursive:: /user/username/projects/myproject/random: {} -Info 110 [16:03:23.000] response: +Info 110 [00:03:23.000] response: { "response": { "info": { @@ -2325,7 +2325,7 @@ Info 110 [16:03:23.000] response: }, "responseRequired": true } -Info 111 [16:03:24.000] request: +Info 111 [00:03:24.000] request: { "command": "rename", "arguments": { @@ -2372,8 +2372,8 @@ FsWatchesRecursive:: /user/username/projects/myproject/random: {} -Info 112 [16:03:25.000] Search path: /user/username/projects/myproject/dependency -Info 113 [16:03:26.000] For info: /user/username/projects/myproject/dependency/FnS.ts :: Config file name: /user/username/projects/myproject/dependency/tsconfig.json +Info 112 [00:03:25.000] Search path: /user/username/projects/myproject/dependency +Info 113 [00:03:26.000] For info: /user/username/projects/myproject/dependency/FnS.ts :: Config file name: /user/username/projects/myproject/dependency/tsconfig.json After request PolledWatches:: @@ -2410,7 +2410,7 @@ FsWatchesRecursive:: /user/username/projects/myproject/random: {} -Info 114 [16:03:27.000] response: +Info 114 [00:03:27.000] response: { "response": { "info": { 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 220fce413c656..e695069c2444c 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 @@ -1,5 +1,5 @@ -Info 0 [16:01:00.000] Provided types map file "/a/lib/typesMap.json" doesn't exist -Info 1 [16:01:01.000] request: +Info 0 [00:01:00.000] Provided types map file "/a/lib/typesMap.json" doesn't exist +Info 1 [00:01:01.000] request: { "seq": 0, "type": "request", @@ -200,11 +200,11 @@ FsWatches:: FsWatchesRecursive:: -Info 2 [16:01:02.000] Search path: /user/username/projects/myproject/main -Info 3 [16:01:03.000] For info: /user/username/projects/myproject/main/main.ts :: Config file name: /user/username/projects/myproject/main/tsconfig.json -Info 4 [16:01:04.000] Creating configuration project /user/username/projects/myproject/main/tsconfig.json -Info 5 [16:01:05.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/main/tsconfig.json 2000 undefined Project: /user/username/projects/myproject/main/tsconfig.json WatchType: Config file -Info 6 [16:01:06.000] Config: /user/username/projects/myproject/main/tsconfig.json : { +Info 2 [00:01:02.000] Search path: /user/username/projects/myproject/main +Info 3 [00:01:03.000] For info: /user/username/projects/myproject/main/main.ts :: Config file name: /user/username/projects/myproject/main/tsconfig.json +Info 4 [00:01:04.000] Creating configuration project /user/username/projects/myproject/main/tsconfig.json +Info 5 [00:01:05.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/main/tsconfig.json 2000 undefined Project: /user/username/projects/myproject/main/tsconfig.json WatchType: Config file +Info 6 [00:01:06.000] Config: /user/username/projects/myproject/main/tsconfig.json : { "rootNames": [ "/user/username/projects/myproject/main/main.ts" ], @@ -220,11 +220,11 @@ Info 6 [16:01:06.000] Config: /user/username/projects/myproject/main/tsconfig } ] } -Info 7 [16:01:07.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/main 1 undefined Config: /user/username/projects/myproject/main/tsconfig.json WatchType: Wild card directory -Info 8 [16:01:08.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/main 1 undefined Config: /user/username/projects/myproject/main/tsconfig.json WatchType: Wild card directory -Info 9 [16:01:09.000] Plugins were requested but not running in environment that supports 'require'. Nothing will be loaded -Info 10 [16:01:10.000] Starting updateGraphWorker: Project: /user/username/projects/myproject/main/tsconfig.json -Info 11 [16:01:11.000] Config: /user/username/projects/myproject/dependency/tsconfig.json : { +Info 7 [00:01:07.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/main 1 undefined Config: /user/username/projects/myproject/main/tsconfig.json WatchType: Wild card directory +Info 8 [00:01:08.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/main 1 undefined Config: /user/username/projects/myproject/main/tsconfig.json WatchType: Wild card directory +Info 9 [00:01:09.000] Plugins were requested but not running in environment that supports 'require'. Nothing will be loaded +Info 10 [00:01:10.000] Starting updateGraphWorker: Project: /user/username/projects/myproject/main/tsconfig.json +Info 11 [00:01:11.000] Config: /user/username/projects/myproject/dependency/tsconfig.json : { "rootNames": [ "/user/username/projects/myproject/dependency/FnS.ts" ], @@ -235,20 +235,20 @@ Info 11 [16:01:11.000] Config: /user/username/projects/myproject/dependency/ts "configFilePath": "/user/username/projects/myproject/dependency/tsconfig.json" } } -Info 12 [16:01:12.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/dependency/tsconfig.json 2000 undefined Project: /user/username/projects/myproject/main/tsconfig.json WatchType: Config file -Info 13 [16:01:13.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/dependency 1 undefined Config: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Wild card directory -Info 14 [16:01:14.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/dependency 1 undefined Config: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Wild card directory -Info 15 [16:01:15.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/decls 1 undefined Project: /user/username/projects/myproject/main/tsconfig.json WatchType: Failed Lookup Locations -Info 16 [16:01:16.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/decls 1 undefined Project: /user/username/projects/myproject/main/tsconfig.json WatchType: Failed Lookup Locations -Info 17 [16:01:17.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/dependency/FnS.ts 500 undefined WatchType: Closed Script info -Info 18 [16:01:18.000] FileWatcher:: Added:: WatchInfo: /a/lib/lib.d.ts 500 undefined WatchType: Closed Script info -Info 19 [16:01:19.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/main/node_modules/@types 1 undefined Project: /user/username/projects/myproject/main/tsconfig.json WatchType: Type roots -Info 20 [16:01:20.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/main/node_modules/@types 1 undefined Project: /user/username/projects/myproject/main/tsconfig.json WatchType: Type roots -Info 21 [16:01:21.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/main/tsconfig.json WatchType: Type roots -Info 22 [16:01:22.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/main/tsconfig.json WatchType: Type roots -Info 23 [16:01:23.000] Finishing updateGraphWorker: Project: /user/username/projects/myproject/main/tsconfig.json Version: 1 structureChanged: true structureIsReused:: Not Elapsed:: *ms -Info 24 [16:01:24.000] Project '/user/username/projects/myproject/main/tsconfig.json' (Configured) -Info 25 [16:01:25.000] Files (3) +Info 12 [00:01:12.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/dependency/tsconfig.json 2000 undefined Project: /user/username/projects/myproject/main/tsconfig.json WatchType: Config file +Info 13 [00:01:13.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/dependency 1 undefined Config: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Wild card directory +Info 14 [00:01:14.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/dependency 1 undefined Config: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Wild card directory +Info 15 [00:01:15.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/decls 1 undefined Project: /user/username/projects/myproject/main/tsconfig.json WatchType: Failed Lookup Locations +Info 16 [00:01:16.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/decls 1 undefined Project: /user/username/projects/myproject/main/tsconfig.json WatchType: Failed Lookup Locations +Info 17 [00:01:17.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/dependency/FnS.ts 500 undefined WatchType: Closed Script info +Info 18 [00:01:18.000] FileWatcher:: Added:: WatchInfo: /a/lib/lib.d.ts 500 undefined WatchType: Closed Script info +Info 19 [00:01:19.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/main/node_modules/@types 1 undefined Project: /user/username/projects/myproject/main/tsconfig.json WatchType: Type roots +Info 20 [00:01:20.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/main/node_modules/@types 1 undefined Project: /user/username/projects/myproject/main/tsconfig.json WatchType: Type roots +Info 21 [00:01:21.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/main/tsconfig.json WatchType: Type roots +Info 22 [00:01:22.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/main/tsconfig.json WatchType: Type roots +Info 23 [00:01:23.000] Finishing updateGraphWorker: Project: /user/username/projects/myproject/main/tsconfig.json Version: 1 structureChanged: true structureIsReused:: Not Elapsed:: *ms +Info 24 [00:01:24.000] Project '/user/username/projects/myproject/main/tsconfig.json' (Configured) +Info 25 [00:01:25.000] Files (3) /a/lib/lib.d.ts /user/username/projects/myproject/dependency/FnS.ts /user/username/projects/myproject/main/main.ts @@ -261,16 +261,16 @@ Info 25 [16:01:25.000] Files (3) main.ts Matched by default include pattern '**/*' -Info 26 [16:01:26.000] ----------------------------------------------- -Info 27 [16:01:27.000] Search path: /user/username/projects/myproject/main -Info 28 [16:01:28.000] For info: /user/username/projects/myproject/main/tsconfig.json :: No config files found. -Info 29 [16:01:29.000] Project '/user/username/projects/myproject/main/tsconfig.json' (Configured) -Info 29 [16:01:30.000] Files (3) +Info 26 [00:01:26.000] ----------------------------------------------- +Info 27 [00:01:27.000] Search path: /user/username/projects/myproject/main +Info 28 [00:01:28.000] For info: /user/username/projects/myproject/main/tsconfig.json :: No config files found. +Info 29 [00:01:29.000] Project '/user/username/projects/myproject/main/tsconfig.json' (Configured) +Info 29 [00:01:30.000] Files (3) -Info 29 [16:01:31.000] ----------------------------------------------- -Info 29 [16:01:32.000] Open files: -Info 29 [16:01:33.000] FileName: /user/username/projects/myproject/main/main.ts ProjectRootPath: undefined -Info 29 [16:01:34.000] Projects: /user/username/projects/myproject/main/tsconfig.json +Info 29 [00:01:31.000] ----------------------------------------------- +Info 29 [00:01:32.000] Open files: +Info 29 [00:01:33.000] FileName: /user/username/projects/myproject/main/main.ts ProjectRootPath: undefined +Info 29 [00:01:34.000] Projects: /user/username/projects/myproject/main/tsconfig.json After request PolledWatches:: @@ -297,11 +297,11 @@ FsWatchesRecursive:: /user/username/projects/myproject/decls: {} -Info 29 [16:01:35.000] response: +Info 29 [00:01:35.000] response: { "responseRequired": false } -Info 30 [16:01:36.000] request: +Info 30 [00:01:36.000] request: { "seq": 0, "type": "request", @@ -336,19 +336,19 @@ FsWatchesRecursive:: /user/username/projects/myproject/decls: {} -Info 31 [16:01:37.000] FileWatcher:: Close:: WatchInfo: /user/username/projects/myproject/dependency/FnS.ts 500 undefined WatchType: Closed Script info -Info 32 [16:01:38.000] Search path: /user/username/projects/myproject/dependency -Info 33 [16:01:39.000] For info: /user/username/projects/myproject/dependency/FnS.ts :: Config file name: /user/username/projects/myproject/dependency/tsconfig.json -Info 34 [16:01:40.000] Creating configuration project /user/username/projects/myproject/dependency/tsconfig.json -Info 35 [16:01:41.000] Plugins were requested but not running in environment that supports 'require'. Nothing will be loaded -Info 36 [16:01:42.000] Starting updateGraphWorker: Project: /user/username/projects/myproject/dependency/tsconfig.json -Info 37 [16:01:43.000] 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 38 [16:01:44.000] 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 39 [16:01:45.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Type roots -Info 40 [16:01:46.000] 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 41 [16:01:47.000] Finishing updateGraphWorker: Project: /user/username/projects/myproject/dependency/tsconfig.json Version: 1 structureChanged: true structureIsReused:: Not Elapsed:: *ms -Info 42 [16:01:48.000] Project '/user/username/projects/myproject/dependency/tsconfig.json' (Configured) -Info 43 [16:01:49.000] Files (2) +Info 31 [00:01:37.000] FileWatcher:: Close:: WatchInfo: /user/username/projects/myproject/dependency/FnS.ts 500 undefined WatchType: Closed Script info +Info 32 [00:01:38.000] Search path: /user/username/projects/myproject/dependency +Info 33 [00:01:39.000] For info: /user/username/projects/myproject/dependency/FnS.ts :: Config file name: /user/username/projects/myproject/dependency/tsconfig.json +Info 34 [00:01:40.000] Creating configuration project /user/username/projects/myproject/dependency/tsconfig.json +Info 35 [00:01:41.000] Plugins were requested but not running in environment that supports 'require'. Nothing will be loaded +Info 36 [00:01:42.000] Starting updateGraphWorker: Project: /user/username/projects/myproject/dependency/tsconfig.json +Info 37 [00:01:43.000] 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 38 [00:01:44.000] 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 39 [00:01:45.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Type roots +Info 40 [00:01:46.000] 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 41 [00:01:47.000] Finishing updateGraphWorker: Project: /user/username/projects/myproject/dependency/tsconfig.json Version: 1 structureChanged: true structureIsReused:: Not Elapsed:: *ms +Info 42 [00:01:48.000] Project '/user/username/projects/myproject/dependency/tsconfig.json' (Configured) +Info 43 [00:01:49.000] Files (2) /a/lib/lib.d.ts /user/username/projects/myproject/dependency/FnS.ts @@ -358,22 +358,22 @@ Info 43 [16:01:49.000] Files (2) FnS.ts Matched by default include pattern '**/*' -Info 44 [16:01:50.000] ----------------------------------------------- -Info 45 [16:01:51.000] Search path: /user/username/projects/myproject/dependency -Info 46 [16:01:52.000] For info: /user/username/projects/myproject/dependency/tsconfig.json :: No config files found. -Info 47 [16:01:53.000] Project '/user/username/projects/myproject/main/tsconfig.json' (Configured) -Info 47 [16:01:54.000] Files (3) - -Info 47 [16:01:55.000] ----------------------------------------------- -Info 47 [16:01:56.000] Project '/user/username/projects/myproject/dependency/tsconfig.json' (Configured) -Info 47 [16:01:57.000] Files (2) - -Info 47 [16:01:58.000] ----------------------------------------------- -Info 47 [16:01:59.000] Open files: -Info 47 [16:02:00.000] FileName: /user/username/projects/myproject/main/main.ts ProjectRootPath: undefined -Info 47 [16:02:01.000] Projects: /user/username/projects/myproject/main/tsconfig.json -Info 47 [16:02:02.000] FileName: /user/username/projects/myproject/dependency/FnS.ts ProjectRootPath: undefined -Info 47 [16:02:03.000] Projects: /user/username/projects/myproject/main/tsconfig.json,/user/username/projects/myproject/dependency/tsconfig.json +Info 44 [00:01:50.000] ----------------------------------------------- +Info 45 [00:01:51.000] Search path: /user/username/projects/myproject/dependency +Info 46 [00:01:52.000] For info: /user/username/projects/myproject/dependency/tsconfig.json :: No config files found. +Info 47 [00:01:53.000] Project '/user/username/projects/myproject/main/tsconfig.json' (Configured) +Info 47 [00:01:54.000] Files (3) + +Info 47 [00:01:55.000] ----------------------------------------------- +Info 47 [00:01:56.000] Project '/user/username/projects/myproject/dependency/tsconfig.json' (Configured) +Info 47 [00:01:57.000] Files (2) + +Info 47 [00:01:58.000] ----------------------------------------------- +Info 47 [00:01:59.000] Open files: +Info 47 [00:02:00.000] FileName: /user/username/projects/myproject/main/main.ts ProjectRootPath: undefined +Info 47 [00:02:01.000] Projects: /user/username/projects/myproject/main/tsconfig.json +Info 47 [00:02:02.000] FileName: /user/username/projects/myproject/dependency/FnS.ts ProjectRootPath: undefined +Info 47 [00:02:03.000] Projects: /user/username/projects/myproject/main/tsconfig.json,/user/username/projects/myproject/dependency/tsconfig.json After request PolledWatches:: @@ -400,11 +400,11 @@ FsWatchesRecursive:: /user/username/projects/myproject/decls: {} -Info 47 [16:02:04.000] response: +Info 47 [00:02:04.000] response: { "responseRequired": false } -Info 48 [16:02:05.000] request: +Info 48 [00:02:05.000] request: { "seq": 0, "type": "request", @@ -439,11 +439,11 @@ FsWatchesRecursive:: /user/username/projects/myproject/decls: {} -Info 49 [16:02:06.000] Search path: /user/username/projects/myproject/random -Info 50 [16:02:07.000] For info: /user/username/projects/myproject/random/random.ts :: Config file name: /user/username/projects/myproject/random/tsconfig.json -Info 51 [16:02:08.000] Creating configuration project /user/username/projects/myproject/random/tsconfig.json -Info 52 [16:02:09.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/random/tsconfig.json 2000 undefined Project: /user/username/projects/myproject/random/tsconfig.json WatchType: Config file -Info 53 [16:02:10.000] Config: /user/username/projects/myproject/random/tsconfig.json : { +Info 49 [00:02:06.000] Search path: /user/username/projects/myproject/random +Info 50 [00:02:07.000] For info: /user/username/projects/myproject/random/random.ts :: Config file name: /user/username/projects/myproject/random/tsconfig.json +Info 51 [00:02:08.000] Creating configuration project /user/username/projects/myproject/random/tsconfig.json +Info 52 [00:02:09.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/random/tsconfig.json 2000 undefined Project: /user/username/projects/myproject/random/tsconfig.json WatchType: Config file +Info 53 [00:02:10.000] Config: /user/username/projects/myproject/random/tsconfig.json : { "rootNames": [ "/user/username/projects/myproject/random/random.ts" ], @@ -451,17 +451,17 @@ Info 53 [16:02:10.000] Config: /user/username/projects/myproject/random/tsconf "configFilePath": "/user/username/projects/myproject/random/tsconfig.json" } } -Info 54 [16:02:11.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/random 1 undefined Config: /user/username/projects/myproject/random/tsconfig.json WatchType: Wild card directory -Info 55 [16:02:12.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/random 1 undefined Config: /user/username/projects/myproject/random/tsconfig.json WatchType: Wild card directory -Info 56 [16:02:13.000] Plugins were requested but not running in environment that supports 'require'. Nothing will be loaded -Info 57 [16:02:14.000] Starting updateGraphWorker: Project: /user/username/projects/myproject/random/tsconfig.json -Info 58 [16:02:15.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/random/node_modules/@types 1 undefined Project: /user/username/projects/myproject/random/tsconfig.json WatchType: Type roots -Info 59 [16:02:16.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/random/node_modules/@types 1 undefined Project: /user/username/projects/myproject/random/tsconfig.json WatchType: Type roots -Info 60 [16:02:17.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/random/tsconfig.json WatchType: Type roots -Info 61 [16:02:18.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/random/tsconfig.json WatchType: Type roots -Info 62 [16:02:19.000] Finishing updateGraphWorker: Project: /user/username/projects/myproject/random/tsconfig.json Version: 1 structureChanged: true structureIsReused:: Not Elapsed:: *ms -Info 63 [16:02:20.000] Project '/user/username/projects/myproject/random/tsconfig.json' (Configured) -Info 64 [16:02:21.000] Files (2) +Info 54 [00:02:11.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/random 1 undefined Config: /user/username/projects/myproject/random/tsconfig.json WatchType: Wild card directory +Info 55 [00:02:12.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/random 1 undefined Config: /user/username/projects/myproject/random/tsconfig.json WatchType: Wild card directory +Info 56 [00:02:13.000] Plugins were requested but not running in environment that supports 'require'. Nothing will be loaded +Info 57 [00:02:14.000] Starting updateGraphWorker: Project: /user/username/projects/myproject/random/tsconfig.json +Info 58 [00:02:15.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/random/node_modules/@types 1 undefined Project: /user/username/projects/myproject/random/tsconfig.json WatchType: Type roots +Info 59 [00:02:16.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/random/node_modules/@types 1 undefined Project: /user/username/projects/myproject/random/tsconfig.json WatchType: Type roots +Info 60 [00:02:17.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/random/tsconfig.json WatchType: Type roots +Info 61 [00:02:18.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/random/tsconfig.json WatchType: Type roots +Info 62 [00:02:19.000] Finishing updateGraphWorker: Project: /user/username/projects/myproject/random/tsconfig.json Version: 1 structureChanged: true structureIsReused:: Not Elapsed:: *ms +Info 63 [00:02:20.000] Project '/user/username/projects/myproject/random/tsconfig.json' (Configured) +Info 64 [00:02:21.000] Files (2) /a/lib/lib.d.ts /user/username/projects/myproject/random/random.ts @@ -471,26 +471,26 @@ Info 64 [16:02:21.000] Files (2) random.ts Matched by default include pattern '**/*' -Info 65 [16:02:22.000] ----------------------------------------------- -Info 66 [16:02:23.000] Project '/user/username/projects/myproject/main/tsconfig.json' (Configured) -Info 66 [16:02:24.000] Files (3) - -Info 66 [16:02:25.000] ----------------------------------------------- -Info 66 [16:02:26.000] Project '/user/username/projects/myproject/dependency/tsconfig.json' (Configured) -Info 66 [16:02:27.000] Files (2) - -Info 66 [16:02:28.000] ----------------------------------------------- -Info 66 [16:02:29.000] Project '/user/username/projects/myproject/random/tsconfig.json' (Configured) -Info 66 [16:02:30.000] Files (2) - -Info 66 [16:02:31.000] ----------------------------------------------- -Info 66 [16:02:32.000] Open files: -Info 66 [16:02:33.000] FileName: /user/username/projects/myproject/main/main.ts ProjectRootPath: undefined -Info 66 [16:02:34.000] Projects: /user/username/projects/myproject/main/tsconfig.json -Info 66 [16:02:35.000] FileName: /user/username/projects/myproject/dependency/FnS.ts ProjectRootPath: undefined -Info 66 [16:02:36.000] Projects: /user/username/projects/myproject/main/tsconfig.json,/user/username/projects/myproject/dependency/tsconfig.json -Info 66 [16:02:37.000] FileName: /user/username/projects/myproject/random/random.ts ProjectRootPath: undefined -Info 66 [16:02:38.000] Projects: /user/username/projects/myproject/random/tsconfig.json +Info 65 [00:02:22.000] ----------------------------------------------- +Info 66 [00:02:23.000] Project '/user/username/projects/myproject/main/tsconfig.json' (Configured) +Info 66 [00:02:24.000] Files (3) + +Info 66 [00:02:25.000] ----------------------------------------------- +Info 66 [00:02:26.000] Project '/user/username/projects/myproject/dependency/tsconfig.json' (Configured) +Info 66 [00:02:27.000] Files (2) + +Info 66 [00:02:28.000] ----------------------------------------------- +Info 66 [00:02:29.000] Project '/user/username/projects/myproject/random/tsconfig.json' (Configured) +Info 66 [00:02:30.000] Files (2) + +Info 66 [00:02:31.000] ----------------------------------------------- +Info 66 [00:02:32.000] Open files: +Info 66 [00:02:33.000] FileName: /user/username/projects/myproject/main/main.ts ProjectRootPath: undefined +Info 66 [00:02:34.000] Projects: /user/username/projects/myproject/main/tsconfig.json +Info 66 [00:02:35.000] FileName: /user/username/projects/myproject/dependency/FnS.ts ProjectRootPath: undefined +Info 66 [00:02:36.000] Projects: /user/username/projects/myproject/main/tsconfig.json,/user/username/projects/myproject/dependency/tsconfig.json +Info 66 [00:02:37.000] FileName: /user/username/projects/myproject/random/random.ts ProjectRootPath: undefined +Info 66 [00:02:38.000] Projects: /user/username/projects/myproject/random/tsconfig.json After request PolledWatches:: @@ -523,11 +523,11 @@ FsWatchesRecursive:: /user/username/projects/myproject/random: {} -Info 66 [16:02:39.000] response: +Info 66 [00:02:39.000] response: { "responseRequired": false } -Info 67 [16:02:40.000] request: +Info 67 [00:02:40.000] request: { "command": "definitionAndBoundSpan", "arguments": { @@ -602,7 +602,7 @@ FsWatchesRecursive:: /user/username/projects/myproject/random: {} -Info 68 [16:02:41.000] response: +Info 68 [00:02:41.000] response: { "response": { "definitions": [ @@ -639,7 +639,7 @@ Info 68 [16:02:41.000] response: }, "responseRequired": true } -Info 69 [16:02:42.000] request: +Info 69 [00:02:42.000] request: { "command": "rename", "arguments": { @@ -682,10 +682,10 @@ FsWatchesRecursive:: /user/username/projects/myproject/random: {} -Info 70 [16:02:43.000] Search path: /user/username/projects/myproject/dependency -Info 71 [16:02:44.000] For info: /user/username/projects/myproject/dependency/FnS.ts :: Config file name: /user/username/projects/myproject/dependency/tsconfig.json -Info 72 [16:02:45.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/decls/FnS.d.ts 500 undefined WatchType: Closed Script info -Info 73 [16:02:46.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/decls/FnS.d.ts.map 500 undefined WatchType: Closed Script info +Info 70 [00:02:43.000] Search path: /user/username/projects/myproject/dependency +Info 71 [00:02:44.000] For info: /user/username/projects/myproject/dependency/FnS.ts :: Config file name: /user/username/projects/myproject/dependency/tsconfig.json +Info 72 [00:02:45.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/decls/FnS.d.ts 500 undefined WatchType: Closed Script info +Info 73 [00:02:46.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/decls/FnS.d.ts.map 500 undefined WatchType: Closed Script info After request PolledWatches:: @@ -722,7 +722,7 @@ FsWatchesRecursive:: /user/username/projects/myproject/random: {} -Info 74 [16:02:47.000] response: +Info 74 [00:02:47.000] response: { "response": { "info": { @@ -803,7 +803,7 @@ Info 74 [16:02:47.000] response: }, "responseRequired": true } -Info 75 [16:02:48.000] request: +Info 75 [00:02:48.000] request: { "command": "change", "arguments": { @@ -889,11 +889,11 @@ FsWatchesRecursive:: /user/username/projects/myproject/random: {} -Info 76 [16:02:49.000] response: +Info 76 [00:02:49.000] response: { "responseRequired": false } -Info 77 [16:02:50.000] request: +Info 77 [00:02:50.000] request: { "command": "change", "arguments": { @@ -979,11 +979,11 @@ FsWatchesRecursive:: /user/username/projects/myproject/random: {} -Info 78 [16:02:51.000] response: +Info 78 [00:02:51.000] response: { "responseRequired": false } -Info 79 [16:02:52.000] request: +Info 79 [00:02:52.000] request: { "command": "definitionAndBoundSpan", "arguments": { @@ -1030,9 +1030,9 @@ FsWatchesRecursive:: /user/username/projects/myproject/random: {} -Info 80 [16:02:53.000] Starting updateGraphWorker: Project: /user/username/projects/myproject/main/tsconfig.json -Info 81 [16:02:54.000] Finishing updateGraphWorker: Project: /user/username/projects/myproject/main/tsconfig.json Version: 2 structureChanged: false structureIsReused:: Completely Elapsed:: *ms -Info 82 [16:02:55.000] Different program with same set of files +Info 80 [00:02:53.000] Starting updateGraphWorker: Project: /user/username/projects/myproject/main/tsconfig.json +Info 81 [00:02:54.000] Finishing updateGraphWorker: Project: /user/username/projects/myproject/main/tsconfig.json Version: 2 structureChanged: false structureIsReused:: Completely Elapsed:: *ms +Info 82 [00:02:55.000] Different program with same set of files After request PolledWatches:: @@ -1069,7 +1069,7 @@ FsWatchesRecursive:: /user/username/projects/myproject/random: {} -Info 83 [16:02:56.000] response: +Info 83 [00:02:56.000] response: { "response": { "definitions": [ @@ -1106,7 +1106,7 @@ Info 83 [16:02:56.000] response: }, "responseRequired": true } -Info 84 [16:02:57.000] request: +Info 84 [00:02:57.000] request: { "command": "definitionAndBoundSpan", "arguments": { @@ -1189,7 +1189,7 @@ FsWatchesRecursive:: /user/username/projects/myproject/random: {} -Info 85 [16:02:58.000] response: +Info 85 [00:02:58.000] response: { "response": { "definitions": [ @@ -1226,7 +1226,7 @@ Info 85 [16:02:58.000] response: }, "responseRequired": true } -Info 86 [16:02:59.000] request: +Info 86 [00:02:59.000] request: { "command": "definitionAndBoundSpan", "arguments": { @@ -1309,7 +1309,7 @@ FsWatchesRecursive:: /user/username/projects/myproject/random: {} -Info 87 [16:03:00.000] response: +Info 87 [00:03:00.000] response: { "response": { "definitions": [ @@ -1346,7 +1346,7 @@ Info 87 [16:03:00.000] response: }, "responseRequired": true } -Info 88 [16:03:01.000] request: +Info 88 [00:03:01.000] request: { "command": "definitionAndBoundSpan", "arguments": { @@ -1429,7 +1429,7 @@ FsWatchesRecursive:: /user/username/projects/myproject/random: {} -Info 89 [16:03:02.000] response: +Info 89 [00:03:02.000] response: { "response": { "definitions": [ @@ -1466,7 +1466,7 @@ Info 89 [16:03:02.000] response: }, "responseRequired": true } -Info 90 [16:03:03.000] request: +Info 90 [00:03:03.000] request: { "command": "definitionAndBoundSpan", "arguments": { @@ -1549,7 +1549,7 @@ FsWatchesRecursive:: /user/username/projects/myproject/random: {} -Info 91 [16:03:04.000] response: +Info 91 [00:03:04.000] response: { "response": { "definitions": [ @@ -1586,7 +1586,7 @@ Info 91 [16:03:04.000] response: }, "responseRequired": true } -Info 92 [16:03:05.000] request: +Info 92 [00:03:05.000] request: { "command": "rename", "arguments": { @@ -1633,11 +1633,11 @@ FsWatchesRecursive:: /user/username/projects/myproject/random: {} -Info 93 [16:03:06.000] Starting updateGraphWorker: Project: /user/username/projects/myproject/dependency/tsconfig.json -Info 94 [16:03:07.000] Finishing updateGraphWorker: Project: /user/username/projects/myproject/dependency/tsconfig.json Version: 2 structureChanged: false structureIsReused:: Completely Elapsed:: *ms -Info 95 [16:03:08.000] Different program with same set of files -Info 96 [16:03:09.000] Search path: /user/username/projects/myproject/dependency -Info 97 [16:03:10.000] For info: /user/username/projects/myproject/dependency/FnS.ts :: Config file name: /user/username/projects/myproject/dependency/tsconfig.json +Info 93 [00:03:06.000] Starting updateGraphWorker: Project: /user/username/projects/myproject/dependency/tsconfig.json +Info 94 [00:03:07.000] Finishing updateGraphWorker: Project: /user/username/projects/myproject/dependency/tsconfig.json Version: 2 structureChanged: false structureIsReused:: Completely Elapsed:: *ms +Info 95 [00:03:08.000] Different program with same set of files +Info 96 [00:03:09.000] Search path: /user/username/projects/myproject/dependency +Info 97 [00:03:10.000] For info: /user/username/projects/myproject/dependency/FnS.ts :: Config file name: /user/username/projects/myproject/dependency/tsconfig.json After request PolledWatches:: @@ -1674,7 +1674,7 @@ FsWatchesRecursive:: /user/username/projects/myproject/random: {} -Info 98 [16:03:11.000] response: +Info 98 [00:03:11.000] response: { "response": { "info": { @@ -1755,7 +1755,7 @@ Info 98 [16:03:11.000] response: }, "responseRequired": true } -Info 99 [16:03:12.000] request: +Info 99 [00:03:12.000] request: { "command": "rename", "arguments": { @@ -1802,8 +1802,8 @@ FsWatchesRecursive:: /user/username/projects/myproject/random: {} -Info 100 [16:03:13.000] Search path: /user/username/projects/myproject/dependency -Info 101 [16:03:14.000] For info: /user/username/projects/myproject/dependency/FnS.ts :: Config file name: /user/username/projects/myproject/dependency/tsconfig.json +Info 100 [00:03:13.000] Search path: /user/username/projects/myproject/dependency +Info 101 [00:03:14.000] For info: /user/username/projects/myproject/dependency/FnS.ts :: Config file name: /user/username/projects/myproject/dependency/tsconfig.json After request PolledWatches:: @@ -1840,7 +1840,7 @@ FsWatchesRecursive:: /user/username/projects/myproject/random: {} -Info 102 [16:03:15.000] response: +Info 102 [00:03:15.000] response: { "response": { "info": { @@ -1921,7 +1921,7 @@ Info 102 [16:03:15.000] response: }, "responseRequired": true } -Info 103 [16:03:16.000] request: +Info 103 [00:03:16.000] request: { "command": "rename", "arguments": { @@ -1968,8 +1968,8 @@ FsWatchesRecursive:: /user/username/projects/myproject/random: {} -Info 104 [16:03:17.000] Search path: /user/username/projects/myproject/dependency -Info 105 [16:03:18.000] For info: /user/username/projects/myproject/dependency/FnS.ts :: Config file name: /user/username/projects/myproject/dependency/tsconfig.json +Info 104 [00:03:17.000] Search path: /user/username/projects/myproject/dependency +Info 105 [00:03:18.000] For info: /user/username/projects/myproject/dependency/FnS.ts :: Config file name: /user/username/projects/myproject/dependency/tsconfig.json After request PolledWatches:: @@ -2006,7 +2006,7 @@ FsWatchesRecursive:: /user/username/projects/myproject/random: {} -Info 106 [16:03:19.000] response: +Info 106 [00:03:19.000] response: { "response": { "info": { @@ -2087,7 +2087,7 @@ Info 106 [16:03:19.000] response: }, "responseRequired": true } -Info 107 [16:03:20.000] request: +Info 107 [00:03:20.000] request: { "command": "rename", "arguments": { @@ -2134,8 +2134,8 @@ FsWatchesRecursive:: /user/username/projects/myproject/random: {} -Info 108 [16:03:21.000] Search path: /user/username/projects/myproject/dependency -Info 109 [16:03:22.000] For info: /user/username/projects/myproject/dependency/FnS.ts :: Config file name: /user/username/projects/myproject/dependency/tsconfig.json +Info 108 [00:03:21.000] Search path: /user/username/projects/myproject/dependency +Info 109 [00:03:22.000] For info: /user/username/projects/myproject/dependency/FnS.ts :: Config file name: /user/username/projects/myproject/dependency/tsconfig.json After request PolledWatches:: @@ -2172,7 +2172,7 @@ FsWatchesRecursive:: /user/username/projects/myproject/random: {} -Info 110 [16:03:23.000] response: +Info 110 [00:03:23.000] response: { "response": { "info": { @@ -2253,7 +2253,7 @@ Info 110 [16:03:23.000] response: }, "responseRequired": true } -Info 111 [16:03:24.000] request: +Info 111 [00:03:24.000] request: { "command": "rename", "arguments": { @@ -2300,8 +2300,8 @@ FsWatchesRecursive:: /user/username/projects/myproject/random: {} -Info 112 [16:03:25.000] Search path: /user/username/projects/myproject/dependency -Info 113 [16:03:26.000] For info: /user/username/projects/myproject/dependency/FnS.ts :: Config file name: /user/username/projects/myproject/dependency/tsconfig.json +Info 112 [00:03:25.000] Search path: /user/username/projects/myproject/dependency +Info 113 [00:03:26.000] For info: /user/username/projects/myproject/dependency/FnS.ts :: Config file name: /user/username/projects/myproject/dependency/tsconfig.json After request PolledWatches:: @@ -2338,7 +2338,7 @@ FsWatchesRecursive:: /user/username/projects/myproject/random: {} -Info 114 [16:03:27.000] response: +Info 114 [00:03:27.000] response: { "response": { "info": { 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 11bbbbd0dda47..6577ad9d0086f 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 @@ -1,5 +1,5 @@ -Info 0 [16:00:35.000] Provided types map file "/a/lib/typesMap.json" doesn't exist -Info 1 [16:00:36.000] request: +Info 0 [00:00:35.000] Provided types map file "/a/lib/typesMap.json" doesn't exist +Info 1 [00:00:36.000] request: { "seq": 0, "type": "request", @@ -65,11 +65,11 @@ FsWatches:: FsWatchesRecursive:: -Info 2 [16:00:37.000] Search path: /user/username/projects/myproject/main -Info 3 [16:00:38.000] For info: /user/username/projects/myproject/main/main.ts :: Config file name: /user/username/projects/myproject/main/tsconfig.json -Info 4 [16:00:39.000] Creating configuration project /user/username/projects/myproject/main/tsconfig.json -Info 5 [16:00:40.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/main/tsconfig.json 2000 undefined Project: /user/username/projects/myproject/main/tsconfig.json WatchType: Config file -Info 6 [16:00:41.000] Config: /user/username/projects/myproject/main/tsconfig.json : { +Info 2 [00:00:37.000] Search path: /user/username/projects/myproject/main +Info 3 [00:00:38.000] For info: /user/username/projects/myproject/main/main.ts :: Config file name: /user/username/projects/myproject/main/tsconfig.json +Info 4 [00:00:39.000] Creating configuration project /user/username/projects/myproject/main/tsconfig.json +Info 5 [00:00:40.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/main/tsconfig.json 2000 undefined Project: /user/username/projects/myproject/main/tsconfig.json WatchType: Config file +Info 6 [00:00:41.000] Config: /user/username/projects/myproject/main/tsconfig.json : { "rootNames": [ "/user/username/projects/myproject/main/main.ts" ], @@ -85,11 +85,11 @@ Info 6 [16:00:41.000] Config: /user/username/projects/myproject/main/tsconfig } ] } -Info 7 [16:00:42.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/main 1 undefined Config: /user/username/projects/myproject/main/tsconfig.json WatchType: Wild card directory -Info 8 [16:00:43.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/main 1 undefined Config: /user/username/projects/myproject/main/tsconfig.json WatchType: Wild card directory -Info 9 [16:00:44.000] Plugins were requested but not running in environment that supports 'require'. Nothing will be loaded -Info 10 [16:00:45.000] Starting updateGraphWorker: Project: /user/username/projects/myproject/main/tsconfig.json -Info 11 [16:00:46.000] Config: /user/username/projects/myproject/dependency/tsconfig.json : { +Info 7 [00:00:42.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/main 1 undefined Config: /user/username/projects/myproject/main/tsconfig.json WatchType: Wild card directory +Info 8 [00:00:43.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/main 1 undefined Config: /user/username/projects/myproject/main/tsconfig.json WatchType: Wild card directory +Info 9 [00:00:44.000] Plugins were requested but not running in environment that supports 'require'. Nothing will be loaded +Info 10 [00:00:45.000] Starting updateGraphWorker: Project: /user/username/projects/myproject/main/tsconfig.json +Info 11 [00:00:46.000] Config: /user/username/projects/myproject/dependency/tsconfig.json : { "rootNames": [ "/user/username/projects/myproject/dependency/FnS.ts" ], @@ -100,20 +100,20 @@ Info 11 [16:00:46.000] Config: /user/username/projects/myproject/dependency/ts "configFilePath": "/user/username/projects/myproject/dependency/tsconfig.json" } } -Info 12 [16:00:47.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/dependency/tsconfig.json 2000 undefined Project: /user/username/projects/myproject/main/tsconfig.json WatchType: Config file -Info 13 [16:00:48.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/dependency 1 undefined Config: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Wild card directory -Info 14 [16:00:49.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/dependency 1 undefined Config: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Wild card directory -Info 15 [16:00:50.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/decls 1 undefined Project: /user/username/projects/myproject/main/tsconfig.json WatchType: Failed Lookup Locations -Info 16 [16:00:51.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/decls 1 undefined Project: /user/username/projects/myproject/main/tsconfig.json WatchType: Failed Lookup Locations -Info 17 [16:00:52.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/dependency/FnS.ts 500 undefined WatchType: Closed Script info -Info 18 [16:00:53.000] FileWatcher:: Added:: WatchInfo: /a/lib/lib.d.ts 500 undefined WatchType: Closed Script info -Info 19 [16:00:54.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/main/node_modules/@types 1 undefined Project: /user/username/projects/myproject/main/tsconfig.json WatchType: Type roots -Info 20 [16:00:55.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/main/node_modules/@types 1 undefined Project: /user/username/projects/myproject/main/tsconfig.json WatchType: Type roots -Info 21 [16:00:56.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/main/tsconfig.json WatchType: Type roots -Info 22 [16:00:57.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/main/tsconfig.json WatchType: Type roots -Info 23 [16:00:58.000] Finishing updateGraphWorker: Project: /user/username/projects/myproject/main/tsconfig.json Version: 1 structureChanged: true structureIsReused:: Not Elapsed:: *ms -Info 24 [16:00:59.000] Project '/user/username/projects/myproject/main/tsconfig.json' (Configured) -Info 25 [16:01:00.000] Files (3) +Info 12 [00:00:47.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/dependency/tsconfig.json 2000 undefined Project: /user/username/projects/myproject/main/tsconfig.json WatchType: Config file +Info 13 [00:00:48.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/dependency 1 undefined Config: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Wild card directory +Info 14 [00:00:49.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/dependency 1 undefined Config: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Wild card directory +Info 15 [00:00:50.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/decls 1 undefined Project: /user/username/projects/myproject/main/tsconfig.json WatchType: Failed Lookup Locations +Info 16 [00:00:51.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/decls 1 undefined Project: /user/username/projects/myproject/main/tsconfig.json WatchType: Failed Lookup Locations +Info 17 [00:00:52.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/dependency/FnS.ts 500 undefined WatchType: Closed Script info +Info 18 [00:00:53.000] FileWatcher:: Added:: WatchInfo: /a/lib/lib.d.ts 500 undefined WatchType: Closed Script info +Info 19 [00:00:54.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/main/node_modules/@types 1 undefined Project: /user/username/projects/myproject/main/tsconfig.json WatchType: Type roots +Info 20 [00:00:55.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/main/node_modules/@types 1 undefined Project: /user/username/projects/myproject/main/tsconfig.json WatchType: Type roots +Info 21 [00:00:56.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/main/tsconfig.json WatchType: Type roots +Info 22 [00:00:57.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/main/tsconfig.json WatchType: Type roots +Info 23 [00:00:58.000] Finishing updateGraphWorker: Project: /user/username/projects/myproject/main/tsconfig.json Version: 1 structureChanged: true structureIsReused:: Not Elapsed:: *ms +Info 24 [00:00:59.000] Project '/user/username/projects/myproject/main/tsconfig.json' (Configured) +Info 25 [00:01:00.000] Files (3) /a/lib/lib.d.ts /user/username/projects/myproject/dependency/FnS.ts /user/username/projects/myproject/main/main.ts @@ -126,16 +126,16 @@ Info 25 [16:01:00.000] Files (3) main.ts Matched by default include pattern '**/*' -Info 26 [16:01:01.000] ----------------------------------------------- -Info 27 [16:01:02.000] Search path: /user/username/projects/myproject/main -Info 28 [16:01:03.000] For info: /user/username/projects/myproject/main/tsconfig.json :: No config files found. -Info 29 [16:01:04.000] Project '/user/username/projects/myproject/main/tsconfig.json' (Configured) -Info 29 [16:01:05.000] Files (3) +Info 26 [00:01:01.000] ----------------------------------------------- +Info 27 [00:01:02.000] Search path: /user/username/projects/myproject/main +Info 28 [00:01:03.000] For info: /user/username/projects/myproject/main/tsconfig.json :: No config files found. +Info 29 [00:01:04.000] Project '/user/username/projects/myproject/main/tsconfig.json' (Configured) +Info 29 [00:01:05.000] Files (3) -Info 29 [16:01:06.000] ----------------------------------------------- -Info 29 [16:01:07.000] Open files: -Info 29 [16:01:08.000] FileName: /user/username/projects/myproject/main/main.ts ProjectRootPath: undefined -Info 29 [16:01:09.000] Projects: /user/username/projects/myproject/main/tsconfig.json +Info 29 [00:01:06.000] ----------------------------------------------- +Info 29 [00:01:07.000] Open files: +Info 29 [00:01:08.000] FileName: /user/username/projects/myproject/main/main.ts ProjectRootPath: undefined +Info 29 [00:01:09.000] Projects: /user/username/projects/myproject/main/tsconfig.json After request PolledWatches:: @@ -162,11 +162,11 @@ FsWatchesRecursive:: /user/username/projects/myproject/dependency: {} -Info 29 [16:01:10.000] response: +Info 29 [00:01:10.000] response: { "responseRequired": false } -Info 30 [16:01:11.000] request: +Info 30 [00:01:11.000] request: { "seq": 0, "type": "request", @@ -201,19 +201,19 @@ FsWatchesRecursive:: /user/username/projects/myproject/dependency: {} -Info 31 [16:01:12.000] FileWatcher:: Close:: WatchInfo: /user/username/projects/myproject/dependency/FnS.ts 500 undefined WatchType: Closed Script info -Info 32 [16:01:13.000] Search path: /user/username/projects/myproject/dependency -Info 33 [16:01:14.000] For info: /user/username/projects/myproject/dependency/FnS.ts :: Config file name: /user/username/projects/myproject/dependency/tsconfig.json -Info 34 [16:01:15.000] Creating configuration project /user/username/projects/myproject/dependency/tsconfig.json -Info 35 [16:01:16.000] Plugins were requested but not running in environment that supports 'require'. Nothing will be loaded -Info 36 [16:01:17.000] Starting updateGraphWorker: Project: /user/username/projects/myproject/dependency/tsconfig.json -Info 37 [16:01:18.000] 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 38 [16:01:19.000] 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 39 [16:01:20.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Type roots -Info 40 [16:01:21.000] 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 41 [16:01:22.000] Finishing updateGraphWorker: Project: /user/username/projects/myproject/dependency/tsconfig.json Version: 1 structureChanged: true structureIsReused:: Not Elapsed:: *ms -Info 42 [16:01:23.000] Project '/user/username/projects/myproject/dependency/tsconfig.json' (Configured) -Info 43 [16:01:24.000] Files (2) +Info 31 [00:01:12.000] FileWatcher:: Close:: WatchInfo: /user/username/projects/myproject/dependency/FnS.ts 500 undefined WatchType: Closed Script info +Info 32 [00:01:13.000] Search path: /user/username/projects/myproject/dependency +Info 33 [00:01:14.000] For info: /user/username/projects/myproject/dependency/FnS.ts :: Config file name: /user/username/projects/myproject/dependency/tsconfig.json +Info 34 [00:01:15.000] Creating configuration project /user/username/projects/myproject/dependency/tsconfig.json +Info 35 [00:01:16.000] Plugins were requested but not running in environment that supports 'require'. Nothing will be loaded +Info 36 [00:01:17.000] Starting updateGraphWorker: Project: /user/username/projects/myproject/dependency/tsconfig.json +Info 37 [00:01:18.000] 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 38 [00:01:19.000] 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 39 [00:01:20.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Type roots +Info 40 [00:01:21.000] 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 41 [00:01:22.000] Finishing updateGraphWorker: Project: /user/username/projects/myproject/dependency/tsconfig.json Version: 1 structureChanged: true structureIsReused:: Not Elapsed:: *ms +Info 42 [00:01:23.000] Project '/user/username/projects/myproject/dependency/tsconfig.json' (Configured) +Info 43 [00:01:24.000] Files (2) /a/lib/lib.d.ts /user/username/projects/myproject/dependency/FnS.ts @@ -223,22 +223,22 @@ Info 43 [16:01:24.000] Files (2) FnS.ts Matched by default include pattern '**/*' -Info 44 [16:01:25.000] ----------------------------------------------- -Info 45 [16:01:26.000] Search path: /user/username/projects/myproject/dependency -Info 46 [16:01:27.000] For info: /user/username/projects/myproject/dependency/tsconfig.json :: No config files found. -Info 47 [16:01:28.000] Project '/user/username/projects/myproject/main/tsconfig.json' (Configured) -Info 47 [16:01:29.000] Files (3) - -Info 47 [16:01:30.000] ----------------------------------------------- -Info 47 [16:01:31.000] Project '/user/username/projects/myproject/dependency/tsconfig.json' (Configured) -Info 47 [16:01:32.000] Files (2) - -Info 47 [16:01:33.000] ----------------------------------------------- -Info 47 [16:01:34.000] Open files: -Info 47 [16:01:35.000] FileName: /user/username/projects/myproject/main/main.ts ProjectRootPath: undefined -Info 47 [16:01:36.000] Projects: /user/username/projects/myproject/main/tsconfig.json -Info 47 [16:01:37.000] FileName: /user/username/projects/myproject/dependency/FnS.ts ProjectRootPath: undefined -Info 47 [16:01:38.000] Projects: /user/username/projects/myproject/main/tsconfig.json,/user/username/projects/myproject/dependency/tsconfig.json +Info 44 [00:01:25.000] ----------------------------------------------- +Info 45 [00:01:26.000] Search path: /user/username/projects/myproject/dependency +Info 46 [00:01:27.000] For info: /user/username/projects/myproject/dependency/tsconfig.json :: No config files found. +Info 47 [00:01:28.000] Project '/user/username/projects/myproject/main/tsconfig.json' (Configured) +Info 47 [00:01:29.000] Files (3) + +Info 47 [00:01:30.000] ----------------------------------------------- +Info 47 [00:01:31.000] Project '/user/username/projects/myproject/dependency/tsconfig.json' (Configured) +Info 47 [00:01:32.000] Files (2) + +Info 47 [00:01:33.000] ----------------------------------------------- +Info 47 [00:01:34.000] Open files: +Info 47 [00:01:35.000] FileName: /user/username/projects/myproject/main/main.ts ProjectRootPath: undefined +Info 47 [00:01:36.000] Projects: /user/username/projects/myproject/main/tsconfig.json +Info 47 [00:01:37.000] FileName: /user/username/projects/myproject/dependency/FnS.ts ProjectRootPath: undefined +Info 47 [00:01:38.000] Projects: /user/username/projects/myproject/main/tsconfig.json,/user/username/projects/myproject/dependency/tsconfig.json After request PolledWatches:: @@ -265,11 +265,11 @@ FsWatchesRecursive:: /user/username/projects/myproject/dependency: {} -Info 47 [16:01:39.000] response: +Info 47 [00:01:39.000] response: { "responseRequired": false } -Info 48 [16:01:40.000] request: +Info 48 [00:01:40.000] request: { "seq": 0, "type": "request", @@ -304,11 +304,11 @@ FsWatchesRecursive:: /user/username/projects/myproject/dependency: {} -Info 49 [16:01:41.000] Search path: /user/username/projects/myproject/random -Info 50 [16:01:42.000] For info: /user/username/projects/myproject/random/random.ts :: Config file name: /user/username/projects/myproject/random/tsconfig.json -Info 51 [16:01:43.000] Creating configuration project /user/username/projects/myproject/random/tsconfig.json -Info 52 [16:01:44.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/random/tsconfig.json 2000 undefined Project: /user/username/projects/myproject/random/tsconfig.json WatchType: Config file -Info 53 [16:01:45.000] Config: /user/username/projects/myproject/random/tsconfig.json : { +Info 49 [00:01:41.000] Search path: /user/username/projects/myproject/random +Info 50 [00:01:42.000] For info: /user/username/projects/myproject/random/random.ts :: Config file name: /user/username/projects/myproject/random/tsconfig.json +Info 51 [00:01:43.000] Creating configuration project /user/username/projects/myproject/random/tsconfig.json +Info 52 [00:01:44.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/random/tsconfig.json 2000 undefined Project: /user/username/projects/myproject/random/tsconfig.json WatchType: Config file +Info 53 [00:01:45.000] Config: /user/username/projects/myproject/random/tsconfig.json : { "rootNames": [ "/user/username/projects/myproject/random/random.ts" ], @@ -316,17 +316,17 @@ Info 53 [16:01:45.000] Config: /user/username/projects/myproject/random/tsconf "configFilePath": "/user/username/projects/myproject/random/tsconfig.json" } } -Info 54 [16:01:46.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/random 1 undefined Config: /user/username/projects/myproject/random/tsconfig.json WatchType: Wild card directory -Info 55 [16:01:47.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/random 1 undefined Config: /user/username/projects/myproject/random/tsconfig.json WatchType: Wild card directory -Info 56 [16:01:48.000] Plugins were requested but not running in environment that supports 'require'. Nothing will be loaded -Info 57 [16:01:49.000] Starting updateGraphWorker: Project: /user/username/projects/myproject/random/tsconfig.json -Info 58 [16:01:50.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/random/node_modules/@types 1 undefined Project: /user/username/projects/myproject/random/tsconfig.json WatchType: Type roots -Info 59 [16:01:51.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/random/node_modules/@types 1 undefined Project: /user/username/projects/myproject/random/tsconfig.json WatchType: Type roots -Info 60 [16:01:52.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/random/tsconfig.json WatchType: Type roots -Info 61 [16:01:53.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/random/tsconfig.json WatchType: Type roots -Info 62 [16:01:54.000] Finishing updateGraphWorker: Project: /user/username/projects/myproject/random/tsconfig.json Version: 1 structureChanged: true structureIsReused:: Not Elapsed:: *ms -Info 63 [16:01:55.000] Project '/user/username/projects/myproject/random/tsconfig.json' (Configured) -Info 64 [16:01:56.000] Files (2) +Info 54 [00:01:46.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/random 1 undefined Config: /user/username/projects/myproject/random/tsconfig.json WatchType: Wild card directory +Info 55 [00:01:47.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/random 1 undefined Config: /user/username/projects/myproject/random/tsconfig.json WatchType: Wild card directory +Info 56 [00:01:48.000] Plugins were requested but not running in environment that supports 'require'. Nothing will be loaded +Info 57 [00:01:49.000] Starting updateGraphWorker: Project: /user/username/projects/myproject/random/tsconfig.json +Info 58 [00:01:50.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/random/node_modules/@types 1 undefined Project: /user/username/projects/myproject/random/tsconfig.json WatchType: Type roots +Info 59 [00:01:51.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/random/node_modules/@types 1 undefined Project: /user/username/projects/myproject/random/tsconfig.json WatchType: Type roots +Info 60 [00:01:52.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/random/tsconfig.json WatchType: Type roots +Info 61 [00:01:53.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/random/tsconfig.json WatchType: Type roots +Info 62 [00:01:54.000] Finishing updateGraphWorker: Project: /user/username/projects/myproject/random/tsconfig.json Version: 1 structureChanged: true structureIsReused:: Not Elapsed:: *ms +Info 63 [00:01:55.000] Project '/user/username/projects/myproject/random/tsconfig.json' (Configured) +Info 64 [00:01:56.000] Files (2) /a/lib/lib.d.ts /user/username/projects/myproject/random/random.ts @@ -336,26 +336,26 @@ Info 64 [16:01:56.000] Files (2) random.ts Matched by default include pattern '**/*' -Info 65 [16:01:57.000] ----------------------------------------------- -Info 66 [16:01:58.000] Project '/user/username/projects/myproject/main/tsconfig.json' (Configured) -Info 66 [16:01:59.000] Files (3) - -Info 66 [16:02:00.000] ----------------------------------------------- -Info 66 [16:02:01.000] Project '/user/username/projects/myproject/dependency/tsconfig.json' (Configured) -Info 66 [16:02:02.000] Files (2) - -Info 66 [16:02:03.000] ----------------------------------------------- -Info 66 [16:02:04.000] Project '/user/username/projects/myproject/random/tsconfig.json' (Configured) -Info 66 [16:02:05.000] Files (2) - -Info 66 [16:02:06.000] ----------------------------------------------- -Info 66 [16:02:07.000] Open files: -Info 66 [16:02:08.000] FileName: /user/username/projects/myproject/main/main.ts ProjectRootPath: undefined -Info 66 [16:02:09.000] Projects: /user/username/projects/myproject/main/tsconfig.json -Info 66 [16:02:10.000] FileName: /user/username/projects/myproject/dependency/FnS.ts ProjectRootPath: undefined -Info 66 [16:02:11.000] Projects: /user/username/projects/myproject/main/tsconfig.json,/user/username/projects/myproject/dependency/tsconfig.json -Info 66 [16:02:12.000] FileName: /user/username/projects/myproject/random/random.ts ProjectRootPath: undefined -Info 66 [16:02:13.000] Projects: /user/username/projects/myproject/random/tsconfig.json +Info 65 [00:01:57.000] ----------------------------------------------- +Info 66 [00:01:58.000] Project '/user/username/projects/myproject/main/tsconfig.json' (Configured) +Info 66 [00:01:59.000] Files (3) + +Info 66 [00:02:00.000] ----------------------------------------------- +Info 66 [00:02:01.000] Project '/user/username/projects/myproject/dependency/tsconfig.json' (Configured) +Info 66 [00:02:02.000] Files (2) + +Info 66 [00:02:03.000] ----------------------------------------------- +Info 66 [00:02:04.000] Project '/user/username/projects/myproject/random/tsconfig.json' (Configured) +Info 66 [00:02:05.000] Files (2) + +Info 66 [00:02:06.000] ----------------------------------------------- +Info 66 [00:02:07.000] Open files: +Info 66 [00:02:08.000] FileName: /user/username/projects/myproject/main/main.ts ProjectRootPath: undefined +Info 66 [00:02:09.000] Projects: /user/username/projects/myproject/main/tsconfig.json +Info 66 [00:02:10.000] FileName: /user/username/projects/myproject/dependency/FnS.ts ProjectRootPath: undefined +Info 66 [00:02:11.000] Projects: /user/username/projects/myproject/main/tsconfig.json,/user/username/projects/myproject/dependency/tsconfig.json +Info 66 [00:02:12.000] FileName: /user/username/projects/myproject/random/random.ts ProjectRootPath: undefined +Info 66 [00:02:13.000] Projects: /user/username/projects/myproject/random/tsconfig.json After request PolledWatches:: @@ -388,11 +388,11 @@ FsWatchesRecursive:: /user/username/projects/myproject/random: {} -Info 66 [16:02:14.000] response: +Info 66 [00:02:14.000] response: { "responseRequired": false } -Info 67 [16:02:15.000] request: +Info 67 [00:02:15.000] request: { "command": "definitionAndBoundSpan", "arguments": { @@ -467,7 +467,7 @@ FsWatchesRecursive:: /user/username/projects/myproject/random: {} -Info 68 [16:02:16.000] response: +Info 68 [00:02:16.000] response: { "response": { "definitions": [ @@ -504,7 +504,7 @@ Info 68 [16:02:16.000] response: }, "responseRequired": true } -Info 69 [16:02:17.000] request: +Info 69 [00:02:17.000] request: { "command": "definitionAndBoundSpan", "arguments": { @@ -579,7 +579,7 @@ FsWatchesRecursive:: /user/username/projects/myproject/random: {} -Info 70 [16:02:18.000] response: +Info 70 [00:02:18.000] response: { "response": { "definitions": [ @@ -616,7 +616,7 @@ Info 70 [16:02:18.000] response: }, "responseRequired": true } -Info 71 [16:02:19.000] request: +Info 71 [00:02:19.000] request: { "command": "definitionAndBoundSpan", "arguments": { @@ -691,7 +691,7 @@ FsWatchesRecursive:: /user/username/projects/myproject/random: {} -Info 72 [16:02:20.000] response: +Info 72 [00:02:20.000] response: { "response": { "definitions": [ @@ -728,7 +728,7 @@ Info 72 [16:02:20.000] response: }, "responseRequired": true } -Info 73 [16:02:21.000] request: +Info 73 [00:02:21.000] request: { "command": "definitionAndBoundSpan", "arguments": { @@ -803,7 +803,7 @@ FsWatchesRecursive:: /user/username/projects/myproject/random: {} -Info 74 [16:02:22.000] response: +Info 74 [00:02:22.000] response: { "response": { "definitions": [ @@ -840,7 +840,7 @@ Info 74 [16:02:22.000] response: }, "responseRequired": true } -Info 75 [16:02:23.000] request: +Info 75 [00:02:23.000] request: { "command": "definitionAndBoundSpan", "arguments": { @@ -915,7 +915,7 @@ FsWatchesRecursive:: /user/username/projects/myproject/random: {} -Info 76 [16:02:24.000] response: +Info 76 [00:02:24.000] response: { "response": { "definitions": [ @@ -952,7 +952,7 @@ Info 76 [16:02:24.000] response: }, "responseRequired": true } -Info 77 [16:02:25.000] request: +Info 77 [00:02:25.000] request: { "command": "rename", "arguments": { @@ -995,9 +995,9 @@ FsWatchesRecursive:: /user/username/projects/myproject/random: {} -Info 78 [16:02:26.000] Search path: /user/username/projects/myproject/dependency -Info 79 [16:02:27.000] For info: /user/username/projects/myproject/dependency/FnS.ts :: Config file name: /user/username/projects/myproject/dependency/tsconfig.json -Info 80 [16:02:28.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/decls/FnS.d.ts 2000 undefined Project: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Missing generated file +Info 78 [00:02:26.000] Search path: /user/username/projects/myproject/dependency +Info 79 [00:02:27.000] For info: /user/username/projects/myproject/dependency/FnS.ts :: Config file name: /user/username/projects/myproject/dependency/tsconfig.json +Info 80 [00:02:28.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/decls/FnS.d.ts 2000 undefined Project: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Missing generated file After request PolledWatches:: @@ -1032,7 +1032,7 @@ FsWatchesRecursive:: /user/username/projects/myproject/random: {} -Info 81 [16:02:29.000] response: +Info 81 [00:02:29.000] response: { "response": { "info": { @@ -1113,7 +1113,7 @@ Info 81 [16:02:29.000] response: }, "responseRequired": true } -Info 82 [16:02:30.000] request: +Info 82 [00:02:30.000] request: { "command": "rename", "arguments": { @@ -1158,8 +1158,8 @@ FsWatchesRecursive:: /user/username/projects/myproject/random: {} -Info 83 [16:02:31.000] Search path: /user/username/projects/myproject/dependency -Info 84 [16:02:32.000] For info: /user/username/projects/myproject/dependency/FnS.ts :: Config file name: /user/username/projects/myproject/dependency/tsconfig.json +Info 83 [00:02:31.000] Search path: /user/username/projects/myproject/dependency +Info 84 [00:02:32.000] For info: /user/username/projects/myproject/dependency/FnS.ts :: Config file name: /user/username/projects/myproject/dependency/tsconfig.json After request PolledWatches:: @@ -1194,7 +1194,7 @@ FsWatchesRecursive:: /user/username/projects/myproject/random: {} -Info 85 [16:02:33.000] response: +Info 85 [00:02:33.000] response: { "response": { "info": { @@ -1275,7 +1275,7 @@ Info 85 [16:02:33.000] response: }, "responseRequired": true } -Info 86 [16:02:34.000] request: +Info 86 [00:02:34.000] request: { "command": "rename", "arguments": { @@ -1320,8 +1320,8 @@ FsWatchesRecursive:: /user/username/projects/myproject/random: {} -Info 87 [16:02:35.000] Search path: /user/username/projects/myproject/dependency -Info 88 [16:02:36.000] For info: /user/username/projects/myproject/dependency/FnS.ts :: Config file name: /user/username/projects/myproject/dependency/tsconfig.json +Info 87 [00:02:35.000] Search path: /user/username/projects/myproject/dependency +Info 88 [00:02:36.000] For info: /user/username/projects/myproject/dependency/FnS.ts :: Config file name: /user/username/projects/myproject/dependency/tsconfig.json After request PolledWatches:: @@ -1356,7 +1356,7 @@ FsWatchesRecursive:: /user/username/projects/myproject/random: {} -Info 89 [16:02:37.000] response: +Info 89 [00:02:37.000] response: { "response": { "info": { @@ -1437,7 +1437,7 @@ Info 89 [16:02:37.000] response: }, "responseRequired": true } -Info 90 [16:02:38.000] request: +Info 90 [00:02:38.000] request: { "command": "rename", "arguments": { @@ -1482,8 +1482,8 @@ FsWatchesRecursive:: /user/username/projects/myproject/random: {} -Info 91 [16:02:39.000] Search path: /user/username/projects/myproject/dependency -Info 92 [16:02:40.000] For info: /user/username/projects/myproject/dependency/FnS.ts :: Config file name: /user/username/projects/myproject/dependency/tsconfig.json +Info 91 [00:02:39.000] Search path: /user/username/projects/myproject/dependency +Info 92 [00:02:40.000] For info: /user/username/projects/myproject/dependency/FnS.ts :: Config file name: /user/username/projects/myproject/dependency/tsconfig.json After request PolledWatches:: @@ -1518,7 +1518,7 @@ FsWatchesRecursive:: /user/username/projects/myproject/random: {} -Info 93 [16:02:41.000] response: +Info 93 [00:02:41.000] response: { "response": { "info": { @@ -1599,7 +1599,7 @@ Info 93 [16:02:41.000] response: }, "responseRequired": true } -Info 94 [16:02:42.000] request: +Info 94 [00:02:42.000] request: { "command": "rename", "arguments": { @@ -1644,8 +1644,8 @@ FsWatchesRecursive:: /user/username/projects/myproject/random: {} -Info 95 [16:02:43.000] Search path: /user/username/projects/myproject/dependency -Info 96 [16:02:44.000] For info: /user/username/projects/myproject/dependency/FnS.ts :: Config file name: /user/username/projects/myproject/dependency/tsconfig.json +Info 95 [00:02:43.000] Search path: /user/username/projects/myproject/dependency +Info 96 [00:02:44.000] For info: /user/username/projects/myproject/dependency/FnS.ts :: Config file name: /user/username/projects/myproject/dependency/tsconfig.json After request PolledWatches:: @@ -1680,7 +1680,7 @@ FsWatchesRecursive:: /user/username/projects/myproject/random: {} -Info 97 [16:02:45.000] response: +Info 97 [00:02:45.000] response: { "response": { "info": { @@ -1761,7 +1761,7 @@ Info 97 [16:02:45.000] response: }, "responseRequired": true } -Info 98 [16:02:46.000] request: +Info 98 [00:02:46.000] request: { "seq": 0, "type": "request", @@ -1804,24 +1804,24 @@ FsWatchesRecursive:: /user/username/projects/myproject/random: {} -Info 99 [16:02:47.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/random/random.ts 500 undefined WatchType: Closed Script info -Info 100 [16:02:48.000] Project '/user/username/projects/myproject/main/tsconfig.json' (Configured) -Info 100 [16:02:49.000] Files (3) +Info 99 [00:02:47.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/random/random.ts 500 undefined WatchType: Closed Script info +Info 100 [00:02:48.000] Project '/user/username/projects/myproject/main/tsconfig.json' (Configured) +Info 100 [00:02:49.000] Files (3) -Info 100 [16:02:50.000] ----------------------------------------------- -Info 100 [16:02:51.000] Project '/user/username/projects/myproject/dependency/tsconfig.json' (Configured) -Info 100 [16:02:52.000] Files (2) +Info 100 [00:02:50.000] ----------------------------------------------- +Info 100 [00:02:51.000] Project '/user/username/projects/myproject/dependency/tsconfig.json' (Configured) +Info 100 [00:02:52.000] Files (2) -Info 100 [16:02:53.000] ----------------------------------------------- -Info 100 [16:02:54.000] Project '/user/username/projects/myproject/random/tsconfig.json' (Configured) -Info 100 [16:02:55.000] Files (2) +Info 100 [00:02:53.000] ----------------------------------------------- +Info 100 [00:02:54.000] Project '/user/username/projects/myproject/random/tsconfig.json' (Configured) +Info 100 [00:02:55.000] Files (2) -Info 100 [16:02:56.000] ----------------------------------------------- -Info 100 [16:02:57.000] Open files: -Info 100 [16:02:58.000] FileName: /user/username/projects/myproject/main/main.ts ProjectRootPath: undefined -Info 100 [16:02:59.000] Projects: /user/username/projects/myproject/main/tsconfig.json -Info 100 [16:03:00.000] FileName: /user/username/projects/myproject/dependency/FnS.ts ProjectRootPath: undefined -Info 100 [16:03:01.000] Projects: /user/username/projects/myproject/main/tsconfig.json,/user/username/projects/myproject/dependency/tsconfig.json +Info 100 [00:02:56.000] ----------------------------------------------- +Info 100 [00:02:57.000] Open files: +Info 100 [00:02:58.000] FileName: /user/username/projects/myproject/main/main.ts ProjectRootPath: undefined +Info 100 [00:02:59.000] Projects: /user/username/projects/myproject/main/tsconfig.json +Info 100 [00:03:00.000] FileName: /user/username/projects/myproject/dependency/FnS.ts ProjectRootPath: undefined +Info 100 [00:03:01.000] Projects: /user/username/projects/myproject/main/tsconfig.json,/user/username/projects/myproject/dependency/tsconfig.json After request PolledWatches:: @@ -1858,11 +1858,11 @@ FsWatchesRecursive:: /user/username/projects/myproject/random: {} -Info 100 [16:03:02.000] response: +Info 100 [00:03:02.000] response: { "responseRequired": false } -Info 101 [16:03:03.000] request: +Info 101 [00:03:03.000] request: { "seq": 0, "type": "request", @@ -1907,28 +1907,28 @@ FsWatchesRecursive:: /user/username/projects/myproject/random: {} -Info 102 [16:03:04.000] FileWatcher:: Close:: WatchInfo: /user/username/projects/myproject/random/random.ts 500 undefined WatchType: Closed Script info -Info 103 [16:03:05.000] Search path: /user/username/projects/myproject/random -Info 104 [16:03:06.000] For info: /user/username/projects/myproject/random/random.ts :: Config file name: /user/username/projects/myproject/random/tsconfig.json -Info 105 [16:03:07.000] Project '/user/username/projects/myproject/main/tsconfig.json' (Configured) -Info 105 [16:03:08.000] Files (3) - -Info 105 [16:03:09.000] ----------------------------------------------- -Info 105 [16:03:10.000] Project '/user/username/projects/myproject/dependency/tsconfig.json' (Configured) -Info 105 [16:03:11.000] Files (2) - -Info 105 [16:03:12.000] ----------------------------------------------- -Info 105 [16:03:13.000] Project '/user/username/projects/myproject/random/tsconfig.json' (Configured) -Info 105 [16:03:14.000] Files (2) - -Info 105 [16:03:15.000] ----------------------------------------------- -Info 105 [16:03:16.000] Open files: -Info 105 [16:03:17.000] FileName: /user/username/projects/myproject/main/main.ts ProjectRootPath: undefined -Info 105 [16:03:18.000] Projects: /user/username/projects/myproject/main/tsconfig.json -Info 105 [16:03:19.000] FileName: /user/username/projects/myproject/dependency/FnS.ts ProjectRootPath: undefined -Info 105 [16:03:20.000] Projects: /user/username/projects/myproject/main/tsconfig.json,/user/username/projects/myproject/dependency/tsconfig.json -Info 105 [16:03:21.000] FileName: /user/username/projects/myproject/random/random.ts ProjectRootPath: undefined -Info 105 [16:03:22.000] Projects: /user/username/projects/myproject/random/tsconfig.json +Info 102 [00:03:04.000] FileWatcher:: Close:: WatchInfo: /user/username/projects/myproject/random/random.ts 500 undefined WatchType: Closed Script info +Info 103 [00:03:05.000] Search path: /user/username/projects/myproject/random +Info 104 [00:03:06.000] For info: /user/username/projects/myproject/random/random.ts :: Config file name: /user/username/projects/myproject/random/tsconfig.json +Info 105 [00:03:07.000] Project '/user/username/projects/myproject/main/tsconfig.json' (Configured) +Info 105 [00:03:08.000] Files (3) + +Info 105 [00:03:09.000] ----------------------------------------------- +Info 105 [00:03:10.000] Project '/user/username/projects/myproject/dependency/tsconfig.json' (Configured) +Info 105 [00:03:11.000] Files (2) + +Info 105 [00:03:12.000] ----------------------------------------------- +Info 105 [00:03:13.000] Project '/user/username/projects/myproject/random/tsconfig.json' (Configured) +Info 105 [00:03:14.000] Files (2) + +Info 105 [00:03:15.000] ----------------------------------------------- +Info 105 [00:03:16.000] Open files: +Info 105 [00:03:17.000] FileName: /user/username/projects/myproject/main/main.ts ProjectRootPath: undefined +Info 105 [00:03:18.000] Projects: /user/username/projects/myproject/main/tsconfig.json +Info 105 [00:03:19.000] FileName: /user/username/projects/myproject/dependency/FnS.ts ProjectRootPath: undefined +Info 105 [00:03:20.000] Projects: /user/username/projects/myproject/main/tsconfig.json,/user/username/projects/myproject/dependency/tsconfig.json +Info 105 [00:03:21.000] FileName: /user/username/projects/myproject/random/random.ts ProjectRootPath: undefined +Info 105 [00:03:22.000] Projects: /user/username/projects/myproject/random/tsconfig.json After request PolledWatches:: @@ -1963,11 +1963,11 @@ FsWatchesRecursive:: /user/username/projects/myproject/random: {} -Info 105 [16:03:23.000] response: +Info 105 [00:03:23.000] response: { "responseRequired": false } -Info 106 [16:03:24.000] request: +Info 106 [00:03:24.000] request: { "seq": 0, "type": "request", @@ -2010,24 +2010,24 @@ FsWatchesRecursive:: /user/username/projects/myproject/random: {} -Info 107 [16:03:25.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/main/main.ts 500 undefined WatchType: Closed Script info -Info 108 [16:03:26.000] Project '/user/username/projects/myproject/main/tsconfig.json' (Configured) -Info 108 [16:03:27.000] Files (3) +Info 107 [00:03:25.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/main/main.ts 500 undefined WatchType: Closed Script info +Info 108 [00:03:26.000] Project '/user/username/projects/myproject/main/tsconfig.json' (Configured) +Info 108 [00:03:27.000] Files (3) -Info 108 [16:03:28.000] ----------------------------------------------- -Info 108 [16:03:29.000] Project '/user/username/projects/myproject/dependency/tsconfig.json' (Configured) -Info 108 [16:03:30.000] Files (2) +Info 108 [00:03:28.000] ----------------------------------------------- +Info 108 [00:03:29.000] Project '/user/username/projects/myproject/dependency/tsconfig.json' (Configured) +Info 108 [00:03:30.000] Files (2) -Info 108 [16:03:31.000] ----------------------------------------------- -Info 108 [16:03:32.000] Project '/user/username/projects/myproject/random/tsconfig.json' (Configured) -Info 108 [16:03:33.000] Files (2) +Info 108 [00:03:31.000] ----------------------------------------------- +Info 108 [00:03:32.000] Project '/user/username/projects/myproject/random/tsconfig.json' (Configured) +Info 108 [00:03:33.000] Files (2) -Info 108 [16:03:34.000] ----------------------------------------------- -Info 108 [16:03:35.000] Open files: -Info 108 [16:03:36.000] FileName: /user/username/projects/myproject/dependency/FnS.ts ProjectRootPath: undefined -Info 108 [16:03:37.000] Projects: /user/username/projects/myproject/main/tsconfig.json,/user/username/projects/myproject/dependency/tsconfig.json -Info 108 [16:03:38.000] FileName: /user/username/projects/myproject/random/random.ts ProjectRootPath: undefined -Info 108 [16:03:39.000] Projects: /user/username/projects/myproject/random/tsconfig.json +Info 108 [00:03:34.000] ----------------------------------------------- +Info 108 [00:03:35.000] Open files: +Info 108 [00:03:36.000] FileName: /user/username/projects/myproject/dependency/FnS.ts ProjectRootPath: undefined +Info 108 [00:03:37.000] Projects: /user/username/projects/myproject/main/tsconfig.json,/user/username/projects/myproject/dependency/tsconfig.json +Info 108 [00:03:38.000] FileName: /user/username/projects/myproject/random/random.ts ProjectRootPath: undefined +Info 108 [00:03:39.000] Projects: /user/username/projects/myproject/random/tsconfig.json After request PolledWatches:: @@ -2064,11 +2064,11 @@ FsWatchesRecursive:: /user/username/projects/myproject/random: {} -Info 108 [16:03:40.000] response: +Info 108 [00:03:40.000] response: { "responseRequired": false } -Info 109 [16:03:41.000] request: +Info 109 [00:03:41.000] request: { "seq": 0, "type": "request", @@ -2113,22 +2113,22 @@ FsWatchesRecursive:: /user/username/projects/myproject/random: {} -Info 110 [16:03:42.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/dependency/FnS.ts 500 undefined WatchType: Closed Script info -Info 111 [16:03:43.000] Project '/user/username/projects/myproject/main/tsconfig.json' (Configured) -Info 111 [16:03:44.000] Files (3) +Info 110 [00:03:42.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/dependency/FnS.ts 500 undefined WatchType: Closed Script info +Info 111 [00:03:43.000] Project '/user/username/projects/myproject/main/tsconfig.json' (Configured) +Info 111 [00:03:44.000] Files (3) -Info 111 [16:03:45.000] ----------------------------------------------- -Info 111 [16:03:46.000] Project '/user/username/projects/myproject/dependency/tsconfig.json' (Configured) -Info 111 [16:03:47.000] Files (2) +Info 111 [00:03:45.000] ----------------------------------------------- +Info 111 [00:03:46.000] Project '/user/username/projects/myproject/dependency/tsconfig.json' (Configured) +Info 111 [00:03:47.000] Files (2) -Info 111 [16:03:48.000] ----------------------------------------------- -Info 111 [16:03:49.000] Project '/user/username/projects/myproject/random/tsconfig.json' (Configured) -Info 111 [16:03:50.000] Files (2) +Info 111 [00:03:48.000] ----------------------------------------------- +Info 111 [00:03:49.000] Project '/user/username/projects/myproject/random/tsconfig.json' (Configured) +Info 111 [00:03:50.000] Files (2) -Info 111 [16:03:51.000] ----------------------------------------------- -Info 111 [16:03:52.000] Open files: -Info 111 [16:03:53.000] FileName: /user/username/projects/myproject/random/random.ts ProjectRootPath: undefined -Info 111 [16:03:54.000] Projects: /user/username/projects/myproject/random/tsconfig.json +Info 111 [00:03:51.000] ----------------------------------------------- +Info 111 [00:03:52.000] Open files: +Info 111 [00:03:53.000] FileName: /user/username/projects/myproject/random/random.ts ProjectRootPath: undefined +Info 111 [00:03:54.000] Projects: /user/username/projects/myproject/random/tsconfig.json After request PolledWatches:: @@ -2167,11 +2167,11 @@ FsWatchesRecursive:: /user/username/projects/myproject/random: {} -Info 111 [16:03:55.000] response: +Info 111 [00:03:55.000] response: { "responseRequired": false } -Info 112 [16:03:56.000] request: +Info 112 [00:03:56.000] request: { "seq": 0, "type": "request", @@ -2218,20 +2218,20 @@ FsWatchesRecursive:: /user/username/projects/myproject/random: {} -Info 113 [16:03:57.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/random/random.ts 500 undefined WatchType: Closed Script info -Info 114 [16:03:58.000] Project '/user/username/projects/myproject/main/tsconfig.json' (Configured) -Info 114 [16:03:59.000] Files (3) +Info 113 [00:03:57.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/random/random.ts 500 undefined WatchType: Closed Script info +Info 114 [00:03:58.000] Project '/user/username/projects/myproject/main/tsconfig.json' (Configured) +Info 114 [00:03:59.000] Files (3) -Info 114 [16:04:00.000] ----------------------------------------------- -Info 114 [16:04:01.000] Project '/user/username/projects/myproject/dependency/tsconfig.json' (Configured) -Info 114 [16:04:02.000] Files (2) +Info 114 [00:04:00.000] ----------------------------------------------- +Info 114 [00:04:01.000] Project '/user/username/projects/myproject/dependency/tsconfig.json' (Configured) +Info 114 [00:04:02.000] Files (2) -Info 114 [16:04:03.000] ----------------------------------------------- -Info 114 [16:04:04.000] Project '/user/username/projects/myproject/random/tsconfig.json' (Configured) -Info 114 [16:04:05.000] Files (2) +Info 114 [00:04:03.000] ----------------------------------------------- +Info 114 [00:04:04.000] Project '/user/username/projects/myproject/random/tsconfig.json' (Configured) +Info 114 [00:04:05.000] Files (2) -Info 114 [16:04:06.000] ----------------------------------------------- -Info 114 [16:04:07.000] Open files: +Info 114 [00:04:06.000] ----------------------------------------------- +Info 114 [00:04:07.000] Open files: After request PolledWatches:: @@ -2272,11 +2272,11 @@ FsWatchesRecursive:: /user/username/projects/myproject/random: {} -Info 114 [16:04:08.000] response: +Info 114 [00:04:08.000] response: { "responseRequired": false } -Info 115 [16:04:09.000] request: +Info 115 [00:04:09.000] request: { "seq": 0, "type": "request", @@ -2325,12 +2325,12 @@ FsWatchesRecursive:: /user/username/projects/myproject/random: {} -Info 116 [16:04:10.000] FileWatcher:: Close:: WatchInfo: /user/username/projects/myproject/random/random.ts 500 undefined WatchType: Closed Script info -Info 117 [16:04:11.000] Search path: /user/username/projects/myproject/random -Info 118 [16:04:12.000] For info: /user/username/projects/myproject/random/random.ts :: Config file name: /user/username/projects/myproject/random/tsconfig.json -Info 119 [16:04:13.000] `remove Project:: -Info 120 [16:04:14.000] Project '/user/username/projects/myproject/main/tsconfig.json' (Configured) -Info 121 [16:04:15.000] Files (3) +Info 116 [00:04:10.000] FileWatcher:: Close:: WatchInfo: /user/username/projects/myproject/random/random.ts 500 undefined WatchType: Closed Script info +Info 117 [00:04:11.000] Search path: /user/username/projects/myproject/random +Info 118 [00:04:12.000] For info: /user/username/projects/myproject/random/random.ts :: Config file name: /user/username/projects/myproject/random/tsconfig.json +Info 119 [00:04:13.000] `remove Project:: +Info 120 [00:04:14.000] Project '/user/username/projects/myproject/main/tsconfig.json' (Configured) +Info 121 [00:04:15.000] Files (3) /a/lib/lib.d.ts /user/username/projects/myproject/dependency/FnS.ts /user/username/projects/myproject/main/main.ts @@ -2343,19 +2343,19 @@ Info 121 [16:04:15.000] Files (3) main.ts Matched by default include pattern '**/*' -Info 122 [16:04:16.000] ----------------------------------------------- -Info 123 [16:04:17.000] DirectoryWatcher:: Close:: WatchInfo: /user/username/projects/myproject/main 1 undefined Config: /user/username/projects/myproject/main/tsconfig.json WatchType: Wild card directory -Info 124 [16:04:18.000] 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 125 [16:04:19.000] FileWatcher:: Close:: WatchInfo: /user/username/projects/myproject/main/tsconfig.json 2000 undefined Project: /user/username/projects/myproject/main/tsconfig.json WatchType: Config file -Info 126 [16:04:20.000] DirectoryWatcher:: Close:: WatchInfo: /user/username/projects/myproject/decls 1 undefined Project: /user/username/projects/myproject/main/tsconfig.json WatchType: Failed Lookup Locations -Info 127 [16:04:21.000] 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 128 [16:04:22.000] 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 129 [16:04:23.000] 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 130 [16:04:24.000] DirectoryWatcher:: Close:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/main/tsconfig.json WatchType: Type roots -Info 131 [16:04:25.000] 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 132 [16:04:26.000] `remove Project:: -Info 133 [16:04:27.000] Project '/user/username/projects/myproject/dependency/tsconfig.json' (Configured) -Info 134 [16:04:28.000] Files (2) +Info 122 [00:04:16.000] ----------------------------------------------- +Info 123 [00:04:17.000] DirectoryWatcher:: Close:: WatchInfo: /user/username/projects/myproject/main 1 undefined Config: /user/username/projects/myproject/main/tsconfig.json WatchType: Wild card directory +Info 124 [00:04:18.000] 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 125 [00:04:19.000] FileWatcher:: Close:: WatchInfo: /user/username/projects/myproject/main/tsconfig.json 2000 undefined Project: /user/username/projects/myproject/main/tsconfig.json WatchType: Config file +Info 126 [00:04:20.000] DirectoryWatcher:: Close:: WatchInfo: /user/username/projects/myproject/decls 1 undefined Project: /user/username/projects/myproject/main/tsconfig.json WatchType: Failed Lookup Locations +Info 127 [00:04:21.000] 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 128 [00:04:22.000] 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 129 [00:04:23.000] 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 130 [00:04:24.000] DirectoryWatcher:: Close:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/main/tsconfig.json WatchType: Type roots +Info 131 [00:04:25.000] 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 132 [00:04:26.000] `remove Project:: +Info 133 [00:04:27.000] Project '/user/username/projects/myproject/dependency/tsconfig.json' (Configured) +Info 134 [00:04:28.000] Files (2) /a/lib/lib.d.ts /user/username/projects/myproject/dependency/FnS.ts @@ -2365,24 +2365,24 @@ Info 134 [16:04:28.000] Files (2) FnS.ts Matched by default include pattern '**/*' -Info 135 [16:04:29.000] ----------------------------------------------- -Info 136 [16:04:30.000] DirectoryWatcher:: Close:: WatchInfo: /user/username/projects/myproject/dependency 1 undefined Config: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Wild card directory -Info 137 [16:04:31.000] 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 138 [16:04:32.000] FileWatcher:: Close:: WatchInfo: /user/username/projects/myproject/dependency/tsconfig.json 2000 undefined Project: /user/username/projects/myproject/main/tsconfig.json WatchType: Config file -Info 139 [16:04:33.000] 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 140 [16:04:34.000] 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 141 [16:04:35.000] DirectoryWatcher:: Close:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Type roots -Info 142 [16:04:36.000] 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 143 [16:04:37.000] 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 144 [16:04:38.000] FileWatcher:: Close:: WatchInfo: /user/username/projects/myproject/main/main.ts 500 undefined WatchType: Closed Script info -Info 145 [16:04:39.000] FileWatcher:: Close:: WatchInfo: /user/username/projects/myproject/dependency/FnS.ts 500 undefined WatchType: Closed Script info -Info 146 [16:04:40.000] Project '/user/username/projects/myproject/random/tsconfig.json' (Configured) -Info 146 [16:04:41.000] Files (2) - -Info 146 [16:04:42.000] ----------------------------------------------- -Info 146 [16:04:43.000] Open files: -Info 146 [16:04:44.000] FileName: /user/username/projects/myproject/random/random.ts ProjectRootPath: undefined -Info 146 [16:04:45.000] Projects: /user/username/projects/myproject/random/tsconfig.json +Info 135 [00:04:29.000] ----------------------------------------------- +Info 136 [00:04:30.000] DirectoryWatcher:: Close:: WatchInfo: /user/username/projects/myproject/dependency 1 undefined Config: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Wild card directory +Info 137 [00:04:31.000] 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 138 [00:04:32.000] FileWatcher:: Close:: WatchInfo: /user/username/projects/myproject/dependency/tsconfig.json 2000 undefined Project: /user/username/projects/myproject/main/tsconfig.json WatchType: Config file +Info 139 [00:04:33.000] 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 140 [00:04:34.000] 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 141 [00:04:35.000] DirectoryWatcher:: Close:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Type roots +Info 142 [00:04:36.000] 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 143 [00:04:37.000] 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 144 [00:04:38.000] FileWatcher:: Close:: WatchInfo: /user/username/projects/myproject/main/main.ts 500 undefined WatchType: Closed Script info +Info 145 [00:04:39.000] FileWatcher:: Close:: WatchInfo: /user/username/projects/myproject/dependency/FnS.ts 500 undefined WatchType: Closed Script info +Info 146 [00:04:40.000] Project '/user/username/projects/myproject/random/tsconfig.json' (Configured) +Info 146 [00:04:41.000] Files (2) + +Info 146 [00:04:42.000] ----------------------------------------------- +Info 146 [00:04:43.000] Open files: +Info 146 [00:04:44.000] FileName: /user/username/projects/myproject/random/random.ts ProjectRootPath: undefined +Info 146 [00:04:45.000] Projects: /user/username/projects/myproject/random/tsconfig.json After request PolledWatches:: @@ -2401,7 +2401,7 @@ FsWatchesRecursive:: /user/username/projects/myproject/random: {} -Info 146 [16:04:46.000] response: +Info 146 [00:04:46.000] response: { "responseRequired": false } \ No newline at end of file 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 8d11ede5a440f..e969bbace417a 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 @@ -1,5 +1,5 @@ -Info 0 [16:01:03.000] Provided types map file "/a/lib/typesMap.json" doesn't exist -Info 1 [16:01:04.000] request: +Info 0 [00:01:03.000] Provided types map file "/a/lib/typesMap.json" doesn't exist +Info 1 [00:01:04.000] request: { "seq": 0, "type": "request", @@ -200,11 +200,11 @@ FsWatches:: FsWatchesRecursive:: -Info 2 [16:01:05.000] Search path: /user/username/projects/myproject/main -Info 3 [16:01:06.000] For info: /user/username/projects/myproject/main/main.ts :: Config file name: /user/username/projects/myproject/main/tsconfig.json -Info 4 [16:01:07.000] Creating configuration project /user/username/projects/myproject/main/tsconfig.json -Info 5 [16:01:08.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/main/tsconfig.json 2000 undefined Project: /user/username/projects/myproject/main/tsconfig.json WatchType: Config file -Info 6 [16:01:09.000] Config: /user/username/projects/myproject/main/tsconfig.json : { +Info 2 [00:01:05.000] Search path: /user/username/projects/myproject/main +Info 3 [00:01:06.000] For info: /user/username/projects/myproject/main/main.ts :: Config file name: /user/username/projects/myproject/main/tsconfig.json +Info 4 [00:01:07.000] Creating configuration project /user/username/projects/myproject/main/tsconfig.json +Info 5 [00:01:08.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/main/tsconfig.json 2000 undefined Project: /user/username/projects/myproject/main/tsconfig.json WatchType: Config file +Info 6 [00:01:09.000] Config: /user/username/projects/myproject/main/tsconfig.json : { "rootNames": [ "/user/username/projects/myproject/main/main.ts" ], @@ -221,11 +221,11 @@ Info 6 [16:01:09.000] Config: /user/username/projects/myproject/main/tsconfig } ] } -Info 7 [16:01:10.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/main 1 undefined Config: /user/username/projects/myproject/main/tsconfig.json WatchType: Wild card directory -Info 8 [16:01:11.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/main 1 undefined Config: /user/username/projects/myproject/main/tsconfig.json WatchType: Wild card directory -Info 9 [16:01:12.000] Plugins were requested but not running in environment that supports 'require'. Nothing will be loaded -Info 10 [16:01:13.000] Starting updateGraphWorker: Project: /user/username/projects/myproject/main/tsconfig.json -Info 11 [16:01:14.000] Config: /user/username/projects/myproject/dependency/tsconfig.json : { +Info 7 [00:01:10.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/main 1 undefined Config: /user/username/projects/myproject/main/tsconfig.json WatchType: Wild card directory +Info 8 [00:01:11.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/main 1 undefined Config: /user/username/projects/myproject/main/tsconfig.json WatchType: Wild card directory +Info 9 [00:01:12.000] Plugins were requested but not running in environment that supports 'require'. Nothing will be loaded +Info 10 [00:01:13.000] Starting updateGraphWorker: Project: /user/username/projects/myproject/main/tsconfig.json +Info 11 [00:01:14.000] Config: /user/username/projects/myproject/dependency/tsconfig.json : { "rootNames": [ "/user/username/projects/myproject/dependency/FnS.ts" ], @@ -236,20 +236,20 @@ Info 11 [16:01:14.000] Config: /user/username/projects/myproject/dependency/ts "configFilePath": "/user/username/projects/myproject/dependency/tsconfig.json" } } -Info 12 [16:01:15.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/dependency/tsconfig.json 2000 undefined Project: /user/username/projects/myproject/main/tsconfig.json WatchType: Config file -Info 13 [16:01:16.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/dependency 1 undefined Config: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Wild card directory -Info 14 [16:01:17.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/dependency 1 undefined Config: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Wild card directory -Info 15 [16:01:18.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/decls 1 undefined Project: /user/username/projects/myproject/main/tsconfig.json WatchType: Failed Lookup Locations -Info 16 [16:01:19.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/decls 1 undefined Project: /user/username/projects/myproject/main/tsconfig.json WatchType: Failed Lookup Locations -Info 17 [16:01:20.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/decls/fns.d.ts 500 undefined WatchType: Closed Script info -Info 18 [16:01:21.000] FileWatcher:: Added:: WatchInfo: /a/lib/lib.d.ts 500 undefined WatchType: Closed Script info -Info 19 [16:01:22.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/main/node_modules/@types 1 undefined Project: /user/username/projects/myproject/main/tsconfig.json WatchType: Type roots -Info 20 [16:01:23.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/main/node_modules/@types 1 undefined Project: /user/username/projects/myproject/main/tsconfig.json WatchType: Type roots -Info 21 [16:01:24.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/main/tsconfig.json WatchType: Type roots -Info 22 [16:01:25.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/main/tsconfig.json WatchType: Type roots -Info 23 [16:01:26.000] Finishing updateGraphWorker: Project: /user/username/projects/myproject/main/tsconfig.json Version: 1 structureChanged: true structureIsReused:: Not Elapsed:: *ms -Info 24 [16:01:27.000] Project '/user/username/projects/myproject/main/tsconfig.json' (Configured) -Info 25 [16:01:28.000] Files (3) +Info 12 [00:01:15.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/dependency/tsconfig.json 2000 undefined Project: /user/username/projects/myproject/main/tsconfig.json WatchType: Config file +Info 13 [00:01:16.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/dependency 1 undefined Config: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Wild card directory +Info 14 [00:01:17.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/dependency 1 undefined Config: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Wild card directory +Info 15 [00:01:18.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/decls 1 undefined Project: /user/username/projects/myproject/main/tsconfig.json WatchType: Failed Lookup Locations +Info 16 [00:01:19.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/decls 1 undefined Project: /user/username/projects/myproject/main/tsconfig.json WatchType: Failed Lookup Locations +Info 17 [00:01:20.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/decls/fns.d.ts 500 undefined WatchType: Closed Script info +Info 18 [00:01:21.000] FileWatcher:: Added:: WatchInfo: /a/lib/lib.d.ts 500 undefined WatchType: Closed Script info +Info 19 [00:01:22.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/main/node_modules/@types 1 undefined Project: /user/username/projects/myproject/main/tsconfig.json WatchType: Type roots +Info 20 [00:01:23.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/main/node_modules/@types 1 undefined Project: /user/username/projects/myproject/main/tsconfig.json WatchType: Type roots +Info 21 [00:01:24.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/main/tsconfig.json WatchType: Type roots +Info 22 [00:01:25.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/main/tsconfig.json WatchType: Type roots +Info 23 [00:01:26.000] Finishing updateGraphWorker: Project: /user/username/projects/myproject/main/tsconfig.json Version: 1 structureChanged: true structureIsReused:: Not Elapsed:: *ms +Info 24 [00:01:27.000] Project '/user/username/projects/myproject/main/tsconfig.json' (Configured) +Info 25 [00:01:28.000] Files (3) /a/lib/lib.d.ts /user/username/projects/myproject/decls/fns.d.ts /user/username/projects/myproject/main/main.ts @@ -262,16 +262,16 @@ Info 25 [16:01:28.000] Files (3) main.ts Matched by default include pattern '**/*' -Info 26 [16:01:29.000] ----------------------------------------------- -Info 27 [16:01:30.000] Search path: /user/username/projects/myproject/main -Info 28 [16:01:31.000] For info: /user/username/projects/myproject/main/tsconfig.json :: No config files found. -Info 29 [16:01:32.000] Project '/user/username/projects/myproject/main/tsconfig.json' (Configured) -Info 29 [16:01:33.000] Files (3) +Info 26 [00:01:29.000] ----------------------------------------------- +Info 27 [00:01:30.000] Search path: /user/username/projects/myproject/main +Info 28 [00:01:31.000] For info: /user/username/projects/myproject/main/tsconfig.json :: No config files found. +Info 29 [00:01:32.000] Project '/user/username/projects/myproject/main/tsconfig.json' (Configured) +Info 29 [00:01:33.000] Files (3) -Info 29 [16:01:34.000] ----------------------------------------------- -Info 29 [16:01:35.000] Open files: -Info 29 [16:01:36.000] FileName: /user/username/projects/myproject/main/main.ts ProjectRootPath: undefined -Info 29 [16:01:37.000] Projects: /user/username/projects/myproject/main/tsconfig.json +Info 29 [00:01:34.000] ----------------------------------------------- +Info 29 [00:01:35.000] Open files: +Info 29 [00:01:36.000] FileName: /user/username/projects/myproject/main/main.ts ProjectRootPath: undefined +Info 29 [00:01:37.000] Projects: /user/username/projects/myproject/main/tsconfig.json After request PolledWatches:: @@ -298,11 +298,11 @@ FsWatchesRecursive:: /user/username/projects/myproject/decls: {} -Info 29 [16:01:38.000] response: +Info 29 [00:01:38.000] response: { "responseRequired": false } -Info 30 [16:01:39.000] request: +Info 30 [00:01:39.000] request: { "seq": 0, "type": "request", @@ -337,18 +337,18 @@ FsWatchesRecursive:: /user/username/projects/myproject/decls: {} -Info 31 [16:01:40.000] Search path: /user/username/projects/myproject/dependency -Info 32 [16:01:41.000] For info: /user/username/projects/myproject/dependency/FnS.ts :: Config file name: /user/username/projects/myproject/dependency/tsconfig.json -Info 33 [16:01:42.000] Creating configuration project /user/username/projects/myproject/dependency/tsconfig.json -Info 34 [16:01:43.000] Plugins were requested but not running in environment that supports 'require'. Nothing will be loaded -Info 35 [16:01:44.000] Starting updateGraphWorker: Project: /user/username/projects/myproject/dependency/tsconfig.json -Info 36 [16:01:45.000] 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 37 [16:01:46.000] 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 38 [16:01:47.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Type roots -Info 39 [16:01:48.000] 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 40 [16:01:49.000] Finishing updateGraphWorker: Project: /user/username/projects/myproject/dependency/tsconfig.json Version: 1 structureChanged: true structureIsReused:: Not Elapsed:: *ms -Info 41 [16:01:50.000] Project '/user/username/projects/myproject/dependency/tsconfig.json' (Configured) -Info 42 [16:01:51.000] Files (2) +Info 31 [00:01:40.000] Search path: /user/username/projects/myproject/dependency +Info 32 [00:01:41.000] For info: /user/username/projects/myproject/dependency/FnS.ts :: Config file name: /user/username/projects/myproject/dependency/tsconfig.json +Info 33 [00:01:42.000] Creating configuration project /user/username/projects/myproject/dependency/tsconfig.json +Info 34 [00:01:43.000] Plugins were requested but not running in environment that supports 'require'. Nothing will be loaded +Info 35 [00:01:44.000] Starting updateGraphWorker: Project: /user/username/projects/myproject/dependency/tsconfig.json +Info 36 [00:01:45.000] 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 37 [00:01:46.000] 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 38 [00:01:47.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Type roots +Info 39 [00:01:48.000] 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 40 [00:01:49.000] Finishing updateGraphWorker: Project: /user/username/projects/myproject/dependency/tsconfig.json Version: 1 structureChanged: true structureIsReused:: Not Elapsed:: *ms +Info 41 [00:01:50.000] Project '/user/username/projects/myproject/dependency/tsconfig.json' (Configured) +Info 42 [00:01:51.000] Files (2) /a/lib/lib.d.ts /user/username/projects/myproject/dependency/FnS.ts @@ -358,22 +358,22 @@ Info 42 [16:01:51.000] Files (2) FnS.ts Matched by default include pattern '**/*' -Info 43 [16:01:52.000] ----------------------------------------------- -Info 44 [16:01:53.000] Search path: /user/username/projects/myproject/dependency -Info 45 [16:01:54.000] For info: /user/username/projects/myproject/dependency/tsconfig.json :: No config files found. -Info 46 [16:01:55.000] Project '/user/username/projects/myproject/main/tsconfig.json' (Configured) -Info 46 [16:01:56.000] Files (3) - -Info 46 [16:01:57.000] ----------------------------------------------- -Info 46 [16:01:58.000] Project '/user/username/projects/myproject/dependency/tsconfig.json' (Configured) -Info 46 [16:01:59.000] Files (2) - -Info 46 [16:02:00.000] ----------------------------------------------- -Info 46 [16:02:01.000] Open files: -Info 46 [16:02:02.000] FileName: /user/username/projects/myproject/main/main.ts ProjectRootPath: undefined -Info 46 [16:02:03.000] Projects: /user/username/projects/myproject/main/tsconfig.json -Info 46 [16:02:04.000] FileName: /user/username/projects/myproject/dependency/FnS.ts ProjectRootPath: undefined -Info 46 [16:02:05.000] Projects: /user/username/projects/myproject/dependency/tsconfig.json +Info 43 [00:01:52.000] ----------------------------------------------- +Info 44 [00:01:53.000] Search path: /user/username/projects/myproject/dependency +Info 45 [00:01:54.000] For info: /user/username/projects/myproject/dependency/tsconfig.json :: No config files found. +Info 46 [00:01:55.000] Project '/user/username/projects/myproject/main/tsconfig.json' (Configured) +Info 46 [00:01:56.000] Files (3) + +Info 46 [00:01:57.000] ----------------------------------------------- +Info 46 [00:01:58.000] Project '/user/username/projects/myproject/dependency/tsconfig.json' (Configured) +Info 46 [00:01:59.000] Files (2) + +Info 46 [00:02:00.000] ----------------------------------------------- +Info 46 [00:02:01.000] Open files: +Info 46 [00:02:02.000] FileName: /user/username/projects/myproject/main/main.ts ProjectRootPath: undefined +Info 46 [00:02:03.000] Projects: /user/username/projects/myproject/main/tsconfig.json +Info 46 [00:02:04.000] FileName: /user/username/projects/myproject/dependency/FnS.ts ProjectRootPath: undefined +Info 46 [00:02:05.000] Projects: /user/username/projects/myproject/dependency/tsconfig.json After request PolledWatches:: @@ -402,11 +402,11 @@ FsWatchesRecursive:: /user/username/projects/myproject/decls: {} -Info 46 [16:02:06.000] response: +Info 46 [00:02:06.000] response: { "responseRequired": false } -Info 47 [16:02:07.000] request: +Info 47 [00:02:07.000] request: { "seq": 0, "type": "request", @@ -443,11 +443,11 @@ FsWatchesRecursive:: /user/username/projects/myproject/decls: {} -Info 48 [16:02:08.000] Search path: /user/username/projects/myproject/random -Info 49 [16:02:09.000] For info: /user/username/projects/myproject/random/random.ts :: Config file name: /user/username/projects/myproject/random/tsconfig.json -Info 50 [16:02:10.000] Creating configuration project /user/username/projects/myproject/random/tsconfig.json -Info 51 [16:02:11.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/random/tsconfig.json 2000 undefined Project: /user/username/projects/myproject/random/tsconfig.json WatchType: Config file -Info 52 [16:02:12.000] Config: /user/username/projects/myproject/random/tsconfig.json : { +Info 48 [00:02:08.000] Search path: /user/username/projects/myproject/random +Info 49 [00:02:09.000] For info: /user/username/projects/myproject/random/random.ts :: Config file name: /user/username/projects/myproject/random/tsconfig.json +Info 50 [00:02:10.000] Creating configuration project /user/username/projects/myproject/random/tsconfig.json +Info 51 [00:02:11.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/random/tsconfig.json 2000 undefined Project: /user/username/projects/myproject/random/tsconfig.json WatchType: Config file +Info 52 [00:02:12.000] Config: /user/username/projects/myproject/random/tsconfig.json : { "rootNames": [ "/user/username/projects/myproject/random/random.ts" ], @@ -455,17 +455,17 @@ Info 52 [16:02:12.000] Config: /user/username/projects/myproject/random/tsconf "configFilePath": "/user/username/projects/myproject/random/tsconfig.json" } } -Info 53 [16:02:13.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/random 1 undefined Config: /user/username/projects/myproject/random/tsconfig.json WatchType: Wild card directory -Info 54 [16:02:14.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/random 1 undefined Config: /user/username/projects/myproject/random/tsconfig.json WatchType: Wild card directory -Info 55 [16:02:15.000] Plugins were requested but not running in environment that supports 'require'. Nothing will be loaded -Info 56 [16:02:16.000] Starting updateGraphWorker: Project: /user/username/projects/myproject/random/tsconfig.json -Info 57 [16:02:17.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/random/node_modules/@types 1 undefined Project: /user/username/projects/myproject/random/tsconfig.json WatchType: Type roots -Info 58 [16:02:18.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/random/node_modules/@types 1 undefined Project: /user/username/projects/myproject/random/tsconfig.json WatchType: Type roots -Info 59 [16:02:19.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/random/tsconfig.json WatchType: Type roots -Info 60 [16:02:20.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/random/tsconfig.json WatchType: Type roots -Info 61 [16:02:21.000] Finishing updateGraphWorker: Project: /user/username/projects/myproject/random/tsconfig.json Version: 1 structureChanged: true structureIsReused:: Not Elapsed:: *ms -Info 62 [16:02:22.000] Project '/user/username/projects/myproject/random/tsconfig.json' (Configured) -Info 63 [16:02:23.000] Files (2) +Info 53 [00:02:13.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/random 1 undefined Config: /user/username/projects/myproject/random/tsconfig.json WatchType: Wild card directory +Info 54 [00:02:14.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/random 1 undefined Config: /user/username/projects/myproject/random/tsconfig.json WatchType: Wild card directory +Info 55 [00:02:15.000] Plugins were requested but not running in environment that supports 'require'. Nothing will be loaded +Info 56 [00:02:16.000] Starting updateGraphWorker: Project: /user/username/projects/myproject/random/tsconfig.json +Info 57 [00:02:17.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/random/node_modules/@types 1 undefined Project: /user/username/projects/myproject/random/tsconfig.json WatchType: Type roots +Info 58 [00:02:18.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/random/node_modules/@types 1 undefined Project: /user/username/projects/myproject/random/tsconfig.json WatchType: Type roots +Info 59 [00:02:19.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/random/tsconfig.json WatchType: Type roots +Info 60 [00:02:20.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/random/tsconfig.json WatchType: Type roots +Info 61 [00:02:21.000] Finishing updateGraphWorker: Project: /user/username/projects/myproject/random/tsconfig.json Version: 1 structureChanged: true structureIsReused:: Not Elapsed:: *ms +Info 62 [00:02:22.000] Project '/user/username/projects/myproject/random/tsconfig.json' (Configured) +Info 63 [00:02:23.000] Files (2) /a/lib/lib.d.ts /user/username/projects/myproject/random/random.ts @@ -475,26 +475,26 @@ Info 63 [16:02:23.000] Files (2) random.ts Matched by default include pattern '**/*' -Info 64 [16:02:24.000] ----------------------------------------------- -Info 65 [16:02:25.000] Project '/user/username/projects/myproject/main/tsconfig.json' (Configured) -Info 65 [16:02:26.000] Files (3) - -Info 65 [16:02:27.000] ----------------------------------------------- -Info 65 [16:02:28.000] Project '/user/username/projects/myproject/dependency/tsconfig.json' (Configured) -Info 65 [16:02:29.000] Files (2) - -Info 65 [16:02:30.000] ----------------------------------------------- -Info 65 [16:02:31.000] Project '/user/username/projects/myproject/random/tsconfig.json' (Configured) -Info 65 [16:02:32.000] Files (2) - -Info 65 [16:02:33.000] ----------------------------------------------- -Info 65 [16:02:34.000] Open files: -Info 65 [16:02:35.000] FileName: /user/username/projects/myproject/main/main.ts ProjectRootPath: undefined -Info 65 [16:02:36.000] Projects: /user/username/projects/myproject/main/tsconfig.json -Info 65 [16:02:37.000] FileName: /user/username/projects/myproject/dependency/FnS.ts ProjectRootPath: undefined -Info 65 [16:02:38.000] Projects: /user/username/projects/myproject/dependency/tsconfig.json -Info 65 [16:02:39.000] FileName: /user/username/projects/myproject/random/random.ts ProjectRootPath: undefined -Info 65 [16:02:40.000] Projects: /user/username/projects/myproject/random/tsconfig.json +Info 64 [00:02:24.000] ----------------------------------------------- +Info 65 [00:02:25.000] Project '/user/username/projects/myproject/main/tsconfig.json' (Configured) +Info 65 [00:02:26.000] Files (3) + +Info 65 [00:02:27.000] ----------------------------------------------- +Info 65 [00:02:28.000] Project '/user/username/projects/myproject/dependency/tsconfig.json' (Configured) +Info 65 [00:02:29.000] Files (2) + +Info 65 [00:02:30.000] ----------------------------------------------- +Info 65 [00:02:31.000] Project '/user/username/projects/myproject/random/tsconfig.json' (Configured) +Info 65 [00:02:32.000] Files (2) + +Info 65 [00:02:33.000] ----------------------------------------------- +Info 65 [00:02:34.000] Open files: +Info 65 [00:02:35.000] FileName: /user/username/projects/myproject/main/main.ts ProjectRootPath: undefined +Info 65 [00:02:36.000] Projects: /user/username/projects/myproject/main/tsconfig.json +Info 65 [00:02:37.000] FileName: /user/username/projects/myproject/dependency/FnS.ts ProjectRootPath: undefined +Info 65 [00:02:38.000] Projects: /user/username/projects/myproject/dependency/tsconfig.json +Info 65 [00:02:39.000] FileName: /user/username/projects/myproject/random/random.ts ProjectRootPath: undefined +Info 65 [00:02:40.000] Projects: /user/username/projects/myproject/random/tsconfig.json After request PolledWatches:: @@ -529,11 +529,11 @@ FsWatchesRecursive:: /user/username/projects/myproject/random: {} -Info 65 [16:02:41.000] response: +Info 65 [00:02:41.000] response: { "responseRequired": false } -Info 66 [16:02:42.000] request: +Info 66 [00:02:42.000] request: { "command": "definitionAndBoundSpan", "arguments": { @@ -578,7 +578,7 @@ FsWatchesRecursive:: /user/username/projects/myproject/random: {} -Info 67 [16:02:43.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/decls/FnS.d.ts.map 500 undefined WatchType: Closed Script info +Info 67 [00:02:43.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/decls/FnS.d.ts.map 500 undefined WatchType: Closed Script info After request PolledWatches:: @@ -615,7 +615,7 @@ FsWatchesRecursive:: /user/username/projects/myproject/random: {} -Info 68 [16:02:44.000] response: +Info 68 [00:02:44.000] response: { "response": { "definitions": [ @@ -652,7 +652,7 @@ Info 68 [16:02:44.000] response: }, "responseRequired": true } -Info 69 [16:02:45.000] request: +Info 69 [00:02:45.000] request: { "command": "rename", "arguments": { @@ -699,8 +699,8 @@ FsWatchesRecursive:: /user/username/projects/myproject/random: {} -Info 70 [16:02:46.000] Search path: /user/username/projects/myproject/dependency -Info 71 [16:02:47.000] For info: /user/username/projects/myproject/dependency/FnS.ts :: Config file name: /user/username/projects/myproject/dependency/tsconfig.json +Info 70 [00:02:46.000] Search path: /user/username/projects/myproject/dependency +Info 71 [00:02:47.000] For info: /user/username/projects/myproject/dependency/FnS.ts :: Config file name: /user/username/projects/myproject/dependency/tsconfig.json After request PolledWatches:: @@ -737,7 +737,7 @@ FsWatchesRecursive:: /user/username/projects/myproject/random: {} -Info 72 [16:02:48.000] response: +Info 72 [00:02:48.000] response: { "response": { "info": { @@ -818,12 +818,12 @@ Info 72 [16:02:48.000] response: }, "responseRequired": true } -Info 73 [16:02:52.000] FileWatcher:: Triggered with /user/username/projects/myproject/decls/fns.d.ts 1:: WatchInfo: /user/username/projects/myproject/decls/fns.d.ts 500 undefined WatchType: Closed Script info -Info 74 [16:02:53.000] Scheduled: /user/username/projects/myproject/main/tsconfig.json -Info 75 [16:02:54.000] Scheduled: *ensureProjectForOpenFiles* -Info 76 [16:02:55.000] Scheduled: /user/username/projects/myproject/dependency/tsconfig.json -Info 77 [16:02:56.000] Scheduled: *ensureProjectForOpenFiles*, Cancelled earlier one -Info 78 [16:02:57.000] Elapsed:: *ms FileWatcher:: Triggered with /user/username/projects/myproject/decls/fns.d.ts 1:: WatchInfo: /user/username/projects/myproject/decls/fns.d.ts 500 undefined WatchType: Closed Script info +Info 73 [00:02:52.000] FileWatcher:: Triggered with /user/username/projects/myproject/decls/fns.d.ts 1:: WatchInfo: /user/username/projects/myproject/decls/fns.d.ts 500 undefined WatchType: Closed Script info +Info 74 [00:02:53.000] Scheduled: /user/username/projects/myproject/main/tsconfig.json +Info 75 [00:02:54.000] Scheduled: *ensureProjectForOpenFiles* +Info 76 [00:02:55.000] Scheduled: /user/username/projects/myproject/dependency/tsconfig.json +Info 77 [00:02:56.000] Scheduled: *ensureProjectForOpenFiles*, Cancelled earlier one +Info 78 [00:02:57.000] Elapsed:: *ms FileWatcher:: Triggered with /user/username/projects/myproject/decls/fns.d.ts 1:: WatchInfo: /user/username/projects/myproject/decls/fns.d.ts 500 undefined WatchType: Closed Script info Before running timeout callbacks //// [/user/username/projects/myproject/decls/FnS.d.ts] export declare function fn1(): void; @@ -869,54 +869,54 @@ FsWatchesRecursive:: /user/username/projects/myproject/random: {} -Info 79 [16:02:58.000] Running: /user/username/projects/myproject/main/tsconfig.json -Info 80 [16:02:59.000] Starting updateGraphWorker: Project: /user/username/projects/myproject/main/tsconfig.json -Info 81 [16:03:00.000] Finishing updateGraphWorker: Project: /user/username/projects/myproject/main/tsconfig.json Version: 2 structureChanged: false structureIsReused:: Completely Elapsed:: *ms -Info 82 [16:03:01.000] Different program with same set of files -Info 83 [16:03:02.000] Running: /user/username/projects/myproject/dependency/tsconfig.json -Info 84 [16:03:03.000] Starting updateGraphWorker: Project: /user/username/projects/myproject/dependency/tsconfig.json -Info 85 [16:03:04.000] Finishing updateGraphWorker: Project: /user/username/projects/myproject/dependency/tsconfig.json Version: 2 structureChanged: false structureIsReused:: Not Elapsed:: *ms -Info 86 [16:03:05.000] Running: *ensureProjectForOpenFiles* -Info 87 [16:03:06.000] Before ensureProjectForOpenFiles: -Info 88 [16:03:07.000] Project '/user/username/projects/myproject/main/tsconfig.json' (Configured) -Info 88 [16:03:08.000] Files (3) - -Info 88 [16:03:09.000] ----------------------------------------------- -Info 88 [16:03:10.000] Project '/user/username/projects/myproject/dependency/tsconfig.json' (Configured) -Info 88 [16:03:11.000] Files (2) - -Info 88 [16:03:12.000] ----------------------------------------------- -Info 88 [16:03:13.000] Project '/user/username/projects/myproject/random/tsconfig.json' (Configured) -Info 88 [16:03:14.000] Files (2) - -Info 88 [16:03:15.000] ----------------------------------------------- -Info 88 [16:03:16.000] Open files: -Info 88 [16:03:17.000] FileName: /user/username/projects/myproject/main/main.ts ProjectRootPath: undefined -Info 88 [16:03:18.000] Projects: /user/username/projects/myproject/main/tsconfig.json -Info 88 [16:03:19.000] FileName: /user/username/projects/myproject/dependency/FnS.ts ProjectRootPath: undefined -Info 88 [16:03:20.000] Projects: /user/username/projects/myproject/dependency/tsconfig.json -Info 88 [16:03:21.000] FileName: /user/username/projects/myproject/random/random.ts ProjectRootPath: undefined -Info 88 [16:03:22.000] Projects: /user/username/projects/myproject/random/tsconfig.json -Info 88 [16:03:23.000] After ensureProjectForOpenFiles: -Info 89 [16:03:24.000] Project '/user/username/projects/myproject/main/tsconfig.json' (Configured) -Info 89 [16:03:25.000] Files (3) - -Info 89 [16:03:26.000] ----------------------------------------------- -Info 89 [16:03:27.000] Project '/user/username/projects/myproject/dependency/tsconfig.json' (Configured) -Info 89 [16:03:28.000] Files (2) - -Info 89 [16:03:29.000] ----------------------------------------------- -Info 89 [16:03:30.000] Project '/user/username/projects/myproject/random/tsconfig.json' (Configured) -Info 89 [16:03:31.000] Files (2) - -Info 89 [16:03:32.000] ----------------------------------------------- -Info 89 [16:03:33.000] Open files: -Info 89 [16:03:34.000] FileName: /user/username/projects/myproject/main/main.ts ProjectRootPath: undefined -Info 89 [16:03:35.000] Projects: /user/username/projects/myproject/main/tsconfig.json -Info 89 [16:03:36.000] FileName: /user/username/projects/myproject/dependency/FnS.ts ProjectRootPath: undefined -Info 89 [16:03:37.000] Projects: /user/username/projects/myproject/dependency/tsconfig.json -Info 89 [16:03:38.000] FileName: /user/username/projects/myproject/random/random.ts ProjectRootPath: undefined -Info 89 [16:03:39.000] Projects: /user/username/projects/myproject/random/tsconfig.json +Info 79 [00:02:58.000] Running: /user/username/projects/myproject/main/tsconfig.json +Info 80 [00:02:59.000] Starting updateGraphWorker: Project: /user/username/projects/myproject/main/tsconfig.json +Info 81 [00:03:00.000] Finishing updateGraphWorker: Project: /user/username/projects/myproject/main/tsconfig.json Version: 2 structureChanged: false structureIsReused:: Completely Elapsed:: *ms +Info 82 [00:03:01.000] Different program with same set of files +Info 83 [00:03:02.000] Running: /user/username/projects/myproject/dependency/tsconfig.json +Info 84 [00:03:03.000] Starting updateGraphWorker: Project: /user/username/projects/myproject/dependency/tsconfig.json +Info 85 [00:03:04.000] Finishing updateGraphWorker: Project: /user/username/projects/myproject/dependency/tsconfig.json Version: 2 structureChanged: false structureIsReused:: Not Elapsed:: *ms +Info 86 [00:03:05.000] Running: *ensureProjectForOpenFiles* +Info 87 [00:03:06.000] Before ensureProjectForOpenFiles: +Info 88 [00:03:07.000] Project '/user/username/projects/myproject/main/tsconfig.json' (Configured) +Info 88 [00:03:08.000] Files (3) + +Info 88 [00:03:09.000] ----------------------------------------------- +Info 88 [00:03:10.000] Project '/user/username/projects/myproject/dependency/tsconfig.json' (Configured) +Info 88 [00:03:11.000] Files (2) + +Info 88 [00:03:12.000] ----------------------------------------------- +Info 88 [00:03:13.000] Project '/user/username/projects/myproject/random/tsconfig.json' (Configured) +Info 88 [00:03:14.000] Files (2) + +Info 88 [00:03:15.000] ----------------------------------------------- +Info 88 [00:03:16.000] Open files: +Info 88 [00:03:17.000] FileName: /user/username/projects/myproject/main/main.ts ProjectRootPath: undefined +Info 88 [00:03:18.000] Projects: /user/username/projects/myproject/main/tsconfig.json +Info 88 [00:03:19.000] FileName: /user/username/projects/myproject/dependency/FnS.ts ProjectRootPath: undefined +Info 88 [00:03:20.000] Projects: /user/username/projects/myproject/dependency/tsconfig.json +Info 88 [00:03:21.000] FileName: /user/username/projects/myproject/random/random.ts ProjectRootPath: undefined +Info 88 [00:03:22.000] Projects: /user/username/projects/myproject/random/tsconfig.json +Info 88 [00:03:23.000] After ensureProjectForOpenFiles: +Info 89 [00:03:24.000] Project '/user/username/projects/myproject/main/tsconfig.json' (Configured) +Info 89 [00:03:25.000] Files (3) + +Info 89 [00:03:26.000] ----------------------------------------------- +Info 89 [00:03:27.000] Project '/user/username/projects/myproject/dependency/tsconfig.json' (Configured) +Info 89 [00:03:28.000] Files (2) + +Info 89 [00:03:29.000] ----------------------------------------------- +Info 89 [00:03:30.000] Project '/user/username/projects/myproject/random/tsconfig.json' (Configured) +Info 89 [00:03:31.000] Files (2) + +Info 89 [00:03:32.000] ----------------------------------------------- +Info 89 [00:03:33.000] Open files: +Info 89 [00:03:34.000] FileName: /user/username/projects/myproject/main/main.ts ProjectRootPath: undefined +Info 89 [00:03:35.000] Projects: /user/username/projects/myproject/main/tsconfig.json +Info 89 [00:03:36.000] FileName: /user/username/projects/myproject/dependency/FnS.ts ProjectRootPath: undefined +Info 89 [00:03:37.000] Projects: /user/username/projects/myproject/dependency/tsconfig.json +Info 89 [00:03:38.000] FileName: /user/username/projects/myproject/random/random.ts ProjectRootPath: undefined +Info 89 [00:03:39.000] Projects: /user/username/projects/myproject/random/tsconfig.json After running timeout callbacks PolledWatches:: @@ -953,7 +953,7 @@ FsWatchesRecursive:: /user/username/projects/myproject/random: {} -Info 89 [16:03:40.000] request: +Info 89 [00:03:40.000] request: { "command": "definitionAndBoundSpan", "arguments": { @@ -1036,7 +1036,7 @@ FsWatchesRecursive:: /user/username/projects/myproject/random: {} -Info 90 [16:03:41.000] response: +Info 90 [00:03:41.000] response: { "response": { "definitions": [ @@ -1073,7 +1073,7 @@ Info 90 [16:03:41.000] response: }, "responseRequired": true } -Info 91 [16:03:42.000] request: +Info 91 [00:03:42.000] request: { "command": "definitionAndBoundSpan", "arguments": { @@ -1156,7 +1156,7 @@ FsWatchesRecursive:: /user/username/projects/myproject/random: {} -Info 92 [16:03:43.000] response: +Info 92 [00:03:43.000] response: { "response": { "definitions": [ @@ -1193,7 +1193,7 @@ Info 92 [16:03:43.000] response: }, "responseRequired": true } -Info 93 [16:03:44.000] request: +Info 93 [00:03:44.000] request: { "command": "definitionAndBoundSpan", "arguments": { @@ -1276,7 +1276,7 @@ FsWatchesRecursive:: /user/username/projects/myproject/random: {} -Info 94 [16:03:45.000] response: +Info 94 [00:03:45.000] response: { "response": { "definitions": [ @@ -1313,7 +1313,7 @@ Info 94 [16:03:45.000] response: }, "responseRequired": true } -Info 95 [16:03:46.000] request: +Info 95 [00:03:46.000] request: { "command": "definitionAndBoundSpan", "arguments": { @@ -1396,7 +1396,7 @@ FsWatchesRecursive:: /user/username/projects/myproject/random: {} -Info 96 [16:03:47.000] response: +Info 96 [00:03:47.000] response: { "response": { "definitions": [ @@ -1433,7 +1433,7 @@ Info 96 [16:03:47.000] response: }, "responseRequired": true } -Info 97 [16:03:48.000] request: +Info 97 [00:03:48.000] request: { "command": "definitionAndBoundSpan", "arguments": { @@ -1516,7 +1516,7 @@ FsWatchesRecursive:: /user/username/projects/myproject/random: {} -Info 98 [16:03:49.000] response: +Info 98 [00:03:49.000] response: { "response": { "definitions": [ @@ -1553,7 +1553,7 @@ Info 98 [16:03:49.000] response: }, "responseRequired": true } -Info 99 [16:03:50.000] request: +Info 99 [00:03:50.000] request: { "command": "rename", "arguments": { @@ -1600,8 +1600,8 @@ FsWatchesRecursive:: /user/username/projects/myproject/random: {} -Info 100 [16:03:51.000] Search path: /user/username/projects/myproject/dependency -Info 101 [16:03:52.000] For info: /user/username/projects/myproject/dependency/FnS.ts :: Config file name: /user/username/projects/myproject/dependency/tsconfig.json +Info 100 [00:03:51.000] Search path: /user/username/projects/myproject/dependency +Info 101 [00:03:52.000] For info: /user/username/projects/myproject/dependency/FnS.ts :: Config file name: /user/username/projects/myproject/dependency/tsconfig.json After request PolledWatches:: @@ -1638,7 +1638,7 @@ FsWatchesRecursive:: /user/username/projects/myproject/random: {} -Info 102 [16:03:53.000] response: +Info 102 [00:03:53.000] response: { "response": { "info": { @@ -1719,7 +1719,7 @@ Info 102 [16:03:53.000] response: }, "responseRequired": true } -Info 103 [16:03:54.000] request: +Info 103 [00:03:54.000] request: { "command": "rename", "arguments": { @@ -1766,8 +1766,8 @@ FsWatchesRecursive:: /user/username/projects/myproject/random: {} -Info 104 [16:03:55.000] Search path: /user/username/projects/myproject/dependency -Info 105 [16:03:56.000] For info: /user/username/projects/myproject/dependency/FnS.ts :: Config file name: /user/username/projects/myproject/dependency/tsconfig.json +Info 104 [00:03:55.000] Search path: /user/username/projects/myproject/dependency +Info 105 [00:03:56.000] For info: /user/username/projects/myproject/dependency/FnS.ts :: Config file name: /user/username/projects/myproject/dependency/tsconfig.json After request PolledWatches:: @@ -1804,7 +1804,7 @@ FsWatchesRecursive:: /user/username/projects/myproject/random: {} -Info 106 [16:03:57.000] response: +Info 106 [00:03:57.000] response: { "response": { "info": { @@ -1885,7 +1885,7 @@ Info 106 [16:03:57.000] response: }, "responseRequired": true } -Info 107 [16:03:58.000] request: +Info 107 [00:03:58.000] request: { "command": "rename", "arguments": { @@ -1932,8 +1932,8 @@ FsWatchesRecursive:: /user/username/projects/myproject/random: {} -Info 108 [16:03:59.000] Search path: /user/username/projects/myproject/dependency -Info 109 [16:04:00.000] For info: /user/username/projects/myproject/dependency/FnS.ts :: Config file name: /user/username/projects/myproject/dependency/tsconfig.json +Info 108 [00:03:59.000] Search path: /user/username/projects/myproject/dependency +Info 109 [00:04:00.000] For info: /user/username/projects/myproject/dependency/FnS.ts :: Config file name: /user/username/projects/myproject/dependency/tsconfig.json After request PolledWatches:: @@ -1970,7 +1970,7 @@ FsWatchesRecursive:: /user/username/projects/myproject/random: {} -Info 110 [16:04:01.000] response: +Info 110 [00:04:01.000] response: { "response": { "info": { @@ -2051,7 +2051,7 @@ Info 110 [16:04:01.000] response: }, "responseRequired": true } -Info 111 [16:04:02.000] request: +Info 111 [00:04:02.000] request: { "command": "rename", "arguments": { @@ -2098,8 +2098,8 @@ FsWatchesRecursive:: /user/username/projects/myproject/random: {} -Info 112 [16:04:03.000] Search path: /user/username/projects/myproject/dependency -Info 113 [16:04:04.000] For info: /user/username/projects/myproject/dependency/FnS.ts :: Config file name: /user/username/projects/myproject/dependency/tsconfig.json +Info 112 [00:04:03.000] Search path: /user/username/projects/myproject/dependency +Info 113 [00:04:04.000] For info: /user/username/projects/myproject/dependency/FnS.ts :: Config file name: /user/username/projects/myproject/dependency/tsconfig.json After request PolledWatches:: @@ -2136,7 +2136,7 @@ FsWatchesRecursive:: /user/username/projects/myproject/random: {} -Info 114 [16:04:05.000] response: +Info 114 [00:04:05.000] response: { "response": { "info": { @@ -2217,7 +2217,7 @@ Info 114 [16:04:05.000] response: }, "responseRequired": true } -Info 115 [16:04:06.000] request: +Info 115 [00:04:06.000] request: { "command": "rename", "arguments": { @@ -2264,8 +2264,8 @@ FsWatchesRecursive:: /user/username/projects/myproject/random: {} -Info 116 [16:04:07.000] Search path: /user/username/projects/myproject/dependency -Info 117 [16:04:08.000] For info: /user/username/projects/myproject/dependency/FnS.ts :: Config file name: /user/username/projects/myproject/dependency/tsconfig.json +Info 116 [00:04:07.000] Search path: /user/username/projects/myproject/dependency +Info 117 [00:04:08.000] For info: /user/username/projects/myproject/dependency/FnS.ts :: Config file name: /user/username/projects/myproject/dependency/tsconfig.json After request PolledWatches:: @@ -2302,7 +2302,7 @@ FsWatchesRecursive:: /user/username/projects/myproject/random: {} -Info 118 [16:04:09.000] response: +Info 118 [00:04:09.000] response: { "response": { "info": { 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 9cab17bfa77a8..d4d5a3447f365 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 @@ -1,5 +1,5 @@ -Info 0 [16:01:03.000] Provided types map file "/a/lib/typesMap.json" doesn't exist -Info 1 [16:01:04.000] request: +Info 0 [00:01:03.000] Provided types map file "/a/lib/typesMap.json" doesn't exist +Info 1 [00:01:04.000] request: { "seq": 0, "type": "request", @@ -200,11 +200,11 @@ FsWatches:: FsWatchesRecursive:: -Info 2 [16:01:05.000] Search path: /user/username/projects/myproject/main -Info 3 [16:01:06.000] For info: /user/username/projects/myproject/main/main.ts :: Config file name: /user/username/projects/myproject/main/tsconfig.json -Info 4 [16:01:07.000] Creating configuration project /user/username/projects/myproject/main/tsconfig.json -Info 5 [16:01:08.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/main/tsconfig.json 2000 undefined Project: /user/username/projects/myproject/main/tsconfig.json WatchType: Config file -Info 6 [16:01:09.000] Config: /user/username/projects/myproject/main/tsconfig.json : { +Info 2 [00:01:05.000] Search path: /user/username/projects/myproject/main +Info 3 [00:01:06.000] For info: /user/username/projects/myproject/main/main.ts :: Config file name: /user/username/projects/myproject/main/tsconfig.json +Info 4 [00:01:07.000] Creating configuration project /user/username/projects/myproject/main/tsconfig.json +Info 5 [00:01:08.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/main/tsconfig.json 2000 undefined Project: /user/username/projects/myproject/main/tsconfig.json WatchType: Config file +Info 6 [00:01:09.000] Config: /user/username/projects/myproject/main/tsconfig.json : { "rootNames": [ "/user/username/projects/myproject/main/main.ts" ], @@ -221,11 +221,11 @@ Info 6 [16:01:09.000] Config: /user/username/projects/myproject/main/tsconfig } ] } -Info 7 [16:01:10.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/main 1 undefined Config: /user/username/projects/myproject/main/tsconfig.json WatchType: Wild card directory -Info 8 [16:01:11.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/main 1 undefined Config: /user/username/projects/myproject/main/tsconfig.json WatchType: Wild card directory -Info 9 [16:01:12.000] Plugins were requested but not running in environment that supports 'require'. Nothing will be loaded -Info 10 [16:01:13.000] Starting updateGraphWorker: Project: /user/username/projects/myproject/main/tsconfig.json -Info 11 [16:01:14.000] Config: /user/username/projects/myproject/dependency/tsconfig.json : { +Info 7 [00:01:10.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/main 1 undefined Config: /user/username/projects/myproject/main/tsconfig.json WatchType: Wild card directory +Info 8 [00:01:11.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/main 1 undefined Config: /user/username/projects/myproject/main/tsconfig.json WatchType: Wild card directory +Info 9 [00:01:12.000] Plugins were requested but not running in environment that supports 'require'. Nothing will be loaded +Info 10 [00:01:13.000] Starting updateGraphWorker: Project: /user/username/projects/myproject/main/tsconfig.json +Info 11 [00:01:14.000] Config: /user/username/projects/myproject/dependency/tsconfig.json : { "rootNames": [ "/user/username/projects/myproject/dependency/FnS.ts" ], @@ -236,20 +236,20 @@ Info 11 [16:01:14.000] Config: /user/username/projects/myproject/dependency/ts "configFilePath": "/user/username/projects/myproject/dependency/tsconfig.json" } } -Info 12 [16:01:15.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/dependency/tsconfig.json 2000 undefined Project: /user/username/projects/myproject/main/tsconfig.json WatchType: Config file -Info 13 [16:01:16.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/dependency 1 undefined Config: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Wild card directory -Info 14 [16:01:17.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/dependency 1 undefined Config: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Wild card directory -Info 15 [16:01:18.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/decls 1 undefined Project: /user/username/projects/myproject/main/tsconfig.json WatchType: Failed Lookup Locations -Info 16 [16:01:19.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/decls 1 undefined Project: /user/username/projects/myproject/main/tsconfig.json WatchType: Failed Lookup Locations -Info 17 [16:01:20.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/decls/fns.d.ts 500 undefined WatchType: Closed Script info -Info 18 [16:01:21.000] FileWatcher:: Added:: WatchInfo: /a/lib/lib.d.ts 500 undefined WatchType: Closed Script info -Info 19 [16:01:22.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/main/node_modules/@types 1 undefined Project: /user/username/projects/myproject/main/tsconfig.json WatchType: Type roots -Info 20 [16:01:23.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/main/node_modules/@types 1 undefined Project: /user/username/projects/myproject/main/tsconfig.json WatchType: Type roots -Info 21 [16:01:24.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/main/tsconfig.json WatchType: Type roots -Info 22 [16:01:25.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/main/tsconfig.json WatchType: Type roots -Info 23 [16:01:26.000] Finishing updateGraphWorker: Project: /user/username/projects/myproject/main/tsconfig.json Version: 1 structureChanged: true structureIsReused:: Not Elapsed:: *ms -Info 24 [16:01:27.000] Project '/user/username/projects/myproject/main/tsconfig.json' (Configured) -Info 25 [16:01:28.000] Files (3) +Info 12 [00:01:15.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/dependency/tsconfig.json 2000 undefined Project: /user/username/projects/myproject/main/tsconfig.json WatchType: Config file +Info 13 [00:01:16.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/dependency 1 undefined Config: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Wild card directory +Info 14 [00:01:17.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/dependency 1 undefined Config: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Wild card directory +Info 15 [00:01:18.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/decls 1 undefined Project: /user/username/projects/myproject/main/tsconfig.json WatchType: Failed Lookup Locations +Info 16 [00:01:19.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/decls 1 undefined Project: /user/username/projects/myproject/main/tsconfig.json WatchType: Failed Lookup Locations +Info 17 [00:01:20.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/decls/fns.d.ts 500 undefined WatchType: Closed Script info +Info 18 [00:01:21.000] FileWatcher:: Added:: WatchInfo: /a/lib/lib.d.ts 500 undefined WatchType: Closed Script info +Info 19 [00:01:22.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/main/node_modules/@types 1 undefined Project: /user/username/projects/myproject/main/tsconfig.json WatchType: Type roots +Info 20 [00:01:23.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/main/node_modules/@types 1 undefined Project: /user/username/projects/myproject/main/tsconfig.json WatchType: Type roots +Info 21 [00:01:24.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/main/tsconfig.json WatchType: Type roots +Info 22 [00:01:25.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/main/tsconfig.json WatchType: Type roots +Info 23 [00:01:26.000] Finishing updateGraphWorker: Project: /user/username/projects/myproject/main/tsconfig.json Version: 1 structureChanged: true structureIsReused:: Not Elapsed:: *ms +Info 24 [00:01:27.000] Project '/user/username/projects/myproject/main/tsconfig.json' (Configured) +Info 25 [00:01:28.000] Files (3) /a/lib/lib.d.ts /user/username/projects/myproject/decls/fns.d.ts /user/username/projects/myproject/main/main.ts @@ -262,16 +262,16 @@ Info 25 [16:01:28.000] Files (3) main.ts Matched by default include pattern '**/*' -Info 26 [16:01:29.000] ----------------------------------------------- -Info 27 [16:01:30.000] Search path: /user/username/projects/myproject/main -Info 28 [16:01:31.000] For info: /user/username/projects/myproject/main/tsconfig.json :: No config files found. -Info 29 [16:01:32.000] Project '/user/username/projects/myproject/main/tsconfig.json' (Configured) -Info 29 [16:01:33.000] Files (3) +Info 26 [00:01:29.000] ----------------------------------------------- +Info 27 [00:01:30.000] Search path: /user/username/projects/myproject/main +Info 28 [00:01:31.000] For info: /user/username/projects/myproject/main/tsconfig.json :: No config files found. +Info 29 [00:01:32.000] Project '/user/username/projects/myproject/main/tsconfig.json' (Configured) +Info 29 [00:01:33.000] Files (3) -Info 29 [16:01:34.000] ----------------------------------------------- -Info 29 [16:01:35.000] Open files: -Info 29 [16:01:36.000] FileName: /user/username/projects/myproject/main/main.ts ProjectRootPath: undefined -Info 29 [16:01:37.000] Projects: /user/username/projects/myproject/main/tsconfig.json +Info 29 [00:01:34.000] ----------------------------------------------- +Info 29 [00:01:35.000] Open files: +Info 29 [00:01:36.000] FileName: /user/username/projects/myproject/main/main.ts ProjectRootPath: undefined +Info 29 [00:01:37.000] Projects: /user/username/projects/myproject/main/tsconfig.json After request PolledWatches:: @@ -298,11 +298,11 @@ FsWatchesRecursive:: /user/username/projects/myproject/decls: {} -Info 29 [16:01:38.000] response: +Info 29 [00:01:38.000] response: { "responseRequired": false } -Info 30 [16:01:39.000] request: +Info 30 [00:01:39.000] request: { "seq": 0, "type": "request", @@ -337,18 +337,18 @@ FsWatchesRecursive:: /user/username/projects/myproject/decls: {} -Info 31 [16:01:40.000] Search path: /user/username/projects/myproject/dependency -Info 32 [16:01:41.000] For info: /user/username/projects/myproject/dependency/FnS.ts :: Config file name: /user/username/projects/myproject/dependency/tsconfig.json -Info 33 [16:01:42.000] Creating configuration project /user/username/projects/myproject/dependency/tsconfig.json -Info 34 [16:01:43.000] Plugins were requested but not running in environment that supports 'require'. Nothing will be loaded -Info 35 [16:01:44.000] Starting updateGraphWorker: Project: /user/username/projects/myproject/dependency/tsconfig.json -Info 36 [16:01:45.000] 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 37 [16:01:46.000] 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 38 [16:01:47.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Type roots -Info 39 [16:01:48.000] 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 40 [16:01:49.000] Finishing updateGraphWorker: Project: /user/username/projects/myproject/dependency/tsconfig.json Version: 1 structureChanged: true structureIsReused:: Not Elapsed:: *ms -Info 41 [16:01:50.000] Project '/user/username/projects/myproject/dependency/tsconfig.json' (Configured) -Info 42 [16:01:51.000] Files (2) +Info 31 [00:01:40.000] Search path: /user/username/projects/myproject/dependency +Info 32 [00:01:41.000] For info: /user/username/projects/myproject/dependency/FnS.ts :: Config file name: /user/username/projects/myproject/dependency/tsconfig.json +Info 33 [00:01:42.000] Creating configuration project /user/username/projects/myproject/dependency/tsconfig.json +Info 34 [00:01:43.000] Plugins were requested but not running in environment that supports 'require'. Nothing will be loaded +Info 35 [00:01:44.000] Starting updateGraphWorker: Project: /user/username/projects/myproject/dependency/tsconfig.json +Info 36 [00:01:45.000] 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 37 [00:01:46.000] 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 38 [00:01:47.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Type roots +Info 39 [00:01:48.000] 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 40 [00:01:49.000] Finishing updateGraphWorker: Project: /user/username/projects/myproject/dependency/tsconfig.json Version: 1 structureChanged: true structureIsReused:: Not Elapsed:: *ms +Info 41 [00:01:50.000] Project '/user/username/projects/myproject/dependency/tsconfig.json' (Configured) +Info 42 [00:01:51.000] Files (2) /a/lib/lib.d.ts /user/username/projects/myproject/dependency/FnS.ts @@ -358,22 +358,22 @@ Info 42 [16:01:51.000] Files (2) FnS.ts Matched by default include pattern '**/*' -Info 43 [16:01:52.000] ----------------------------------------------- -Info 44 [16:01:53.000] Search path: /user/username/projects/myproject/dependency -Info 45 [16:01:54.000] For info: /user/username/projects/myproject/dependency/tsconfig.json :: No config files found. -Info 46 [16:01:55.000] Project '/user/username/projects/myproject/main/tsconfig.json' (Configured) -Info 46 [16:01:56.000] Files (3) - -Info 46 [16:01:57.000] ----------------------------------------------- -Info 46 [16:01:58.000] Project '/user/username/projects/myproject/dependency/tsconfig.json' (Configured) -Info 46 [16:01:59.000] Files (2) - -Info 46 [16:02:00.000] ----------------------------------------------- -Info 46 [16:02:01.000] Open files: -Info 46 [16:02:02.000] FileName: /user/username/projects/myproject/main/main.ts ProjectRootPath: undefined -Info 46 [16:02:03.000] Projects: /user/username/projects/myproject/main/tsconfig.json -Info 46 [16:02:04.000] FileName: /user/username/projects/myproject/dependency/FnS.ts ProjectRootPath: undefined -Info 46 [16:02:05.000] Projects: /user/username/projects/myproject/dependency/tsconfig.json +Info 43 [00:01:52.000] ----------------------------------------------- +Info 44 [00:01:53.000] Search path: /user/username/projects/myproject/dependency +Info 45 [00:01:54.000] For info: /user/username/projects/myproject/dependency/tsconfig.json :: No config files found. +Info 46 [00:01:55.000] Project '/user/username/projects/myproject/main/tsconfig.json' (Configured) +Info 46 [00:01:56.000] Files (3) + +Info 46 [00:01:57.000] ----------------------------------------------- +Info 46 [00:01:58.000] Project '/user/username/projects/myproject/dependency/tsconfig.json' (Configured) +Info 46 [00:01:59.000] Files (2) + +Info 46 [00:02:00.000] ----------------------------------------------- +Info 46 [00:02:01.000] Open files: +Info 46 [00:02:02.000] FileName: /user/username/projects/myproject/main/main.ts ProjectRootPath: undefined +Info 46 [00:02:03.000] Projects: /user/username/projects/myproject/main/tsconfig.json +Info 46 [00:02:04.000] FileName: /user/username/projects/myproject/dependency/FnS.ts ProjectRootPath: undefined +Info 46 [00:02:05.000] Projects: /user/username/projects/myproject/dependency/tsconfig.json After request PolledWatches:: @@ -402,11 +402,11 @@ FsWatchesRecursive:: /user/username/projects/myproject/decls: {} -Info 46 [16:02:06.000] response: +Info 46 [00:02:06.000] response: { "responseRequired": false } -Info 47 [16:02:07.000] request: +Info 47 [00:02:07.000] request: { "seq": 0, "type": "request", @@ -443,11 +443,11 @@ FsWatchesRecursive:: /user/username/projects/myproject/decls: {} -Info 48 [16:02:08.000] Search path: /user/username/projects/myproject/random -Info 49 [16:02:09.000] For info: /user/username/projects/myproject/random/random.ts :: Config file name: /user/username/projects/myproject/random/tsconfig.json -Info 50 [16:02:10.000] Creating configuration project /user/username/projects/myproject/random/tsconfig.json -Info 51 [16:02:11.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/random/tsconfig.json 2000 undefined Project: /user/username/projects/myproject/random/tsconfig.json WatchType: Config file -Info 52 [16:02:12.000] Config: /user/username/projects/myproject/random/tsconfig.json : { +Info 48 [00:02:08.000] Search path: /user/username/projects/myproject/random +Info 49 [00:02:09.000] For info: /user/username/projects/myproject/random/random.ts :: Config file name: /user/username/projects/myproject/random/tsconfig.json +Info 50 [00:02:10.000] Creating configuration project /user/username/projects/myproject/random/tsconfig.json +Info 51 [00:02:11.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/random/tsconfig.json 2000 undefined Project: /user/username/projects/myproject/random/tsconfig.json WatchType: Config file +Info 52 [00:02:12.000] Config: /user/username/projects/myproject/random/tsconfig.json : { "rootNames": [ "/user/username/projects/myproject/random/random.ts" ], @@ -455,17 +455,17 @@ Info 52 [16:02:12.000] Config: /user/username/projects/myproject/random/tsconf "configFilePath": "/user/username/projects/myproject/random/tsconfig.json" } } -Info 53 [16:02:13.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/random 1 undefined Config: /user/username/projects/myproject/random/tsconfig.json WatchType: Wild card directory -Info 54 [16:02:14.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/random 1 undefined Config: /user/username/projects/myproject/random/tsconfig.json WatchType: Wild card directory -Info 55 [16:02:15.000] Plugins were requested but not running in environment that supports 'require'. Nothing will be loaded -Info 56 [16:02:16.000] Starting updateGraphWorker: Project: /user/username/projects/myproject/random/tsconfig.json -Info 57 [16:02:17.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/random/node_modules/@types 1 undefined Project: /user/username/projects/myproject/random/tsconfig.json WatchType: Type roots -Info 58 [16:02:18.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/random/node_modules/@types 1 undefined Project: /user/username/projects/myproject/random/tsconfig.json WatchType: Type roots -Info 59 [16:02:19.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/random/tsconfig.json WatchType: Type roots -Info 60 [16:02:20.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/random/tsconfig.json WatchType: Type roots -Info 61 [16:02:21.000] Finishing updateGraphWorker: Project: /user/username/projects/myproject/random/tsconfig.json Version: 1 structureChanged: true structureIsReused:: Not Elapsed:: *ms -Info 62 [16:02:22.000] Project '/user/username/projects/myproject/random/tsconfig.json' (Configured) -Info 63 [16:02:23.000] Files (2) +Info 53 [00:02:13.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/random 1 undefined Config: /user/username/projects/myproject/random/tsconfig.json WatchType: Wild card directory +Info 54 [00:02:14.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/random 1 undefined Config: /user/username/projects/myproject/random/tsconfig.json WatchType: Wild card directory +Info 55 [00:02:15.000] Plugins were requested but not running in environment that supports 'require'. Nothing will be loaded +Info 56 [00:02:16.000] Starting updateGraphWorker: Project: /user/username/projects/myproject/random/tsconfig.json +Info 57 [00:02:17.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/random/node_modules/@types 1 undefined Project: /user/username/projects/myproject/random/tsconfig.json WatchType: Type roots +Info 58 [00:02:18.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/random/node_modules/@types 1 undefined Project: /user/username/projects/myproject/random/tsconfig.json WatchType: Type roots +Info 59 [00:02:19.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/random/tsconfig.json WatchType: Type roots +Info 60 [00:02:20.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/random/tsconfig.json WatchType: Type roots +Info 61 [00:02:21.000] Finishing updateGraphWorker: Project: /user/username/projects/myproject/random/tsconfig.json Version: 1 structureChanged: true structureIsReused:: Not Elapsed:: *ms +Info 62 [00:02:22.000] Project '/user/username/projects/myproject/random/tsconfig.json' (Configured) +Info 63 [00:02:23.000] Files (2) /a/lib/lib.d.ts /user/username/projects/myproject/random/random.ts @@ -475,26 +475,26 @@ Info 63 [16:02:23.000] Files (2) random.ts Matched by default include pattern '**/*' -Info 64 [16:02:24.000] ----------------------------------------------- -Info 65 [16:02:25.000] Project '/user/username/projects/myproject/main/tsconfig.json' (Configured) -Info 65 [16:02:26.000] Files (3) - -Info 65 [16:02:27.000] ----------------------------------------------- -Info 65 [16:02:28.000] Project '/user/username/projects/myproject/dependency/tsconfig.json' (Configured) -Info 65 [16:02:29.000] Files (2) - -Info 65 [16:02:30.000] ----------------------------------------------- -Info 65 [16:02:31.000] Project '/user/username/projects/myproject/random/tsconfig.json' (Configured) -Info 65 [16:02:32.000] Files (2) - -Info 65 [16:02:33.000] ----------------------------------------------- -Info 65 [16:02:34.000] Open files: -Info 65 [16:02:35.000] FileName: /user/username/projects/myproject/main/main.ts ProjectRootPath: undefined -Info 65 [16:02:36.000] Projects: /user/username/projects/myproject/main/tsconfig.json -Info 65 [16:02:37.000] FileName: /user/username/projects/myproject/dependency/FnS.ts ProjectRootPath: undefined -Info 65 [16:02:38.000] Projects: /user/username/projects/myproject/dependency/tsconfig.json -Info 65 [16:02:39.000] FileName: /user/username/projects/myproject/random/random.ts ProjectRootPath: undefined -Info 65 [16:02:40.000] Projects: /user/username/projects/myproject/random/tsconfig.json +Info 64 [00:02:24.000] ----------------------------------------------- +Info 65 [00:02:25.000] Project '/user/username/projects/myproject/main/tsconfig.json' (Configured) +Info 65 [00:02:26.000] Files (3) + +Info 65 [00:02:27.000] ----------------------------------------------- +Info 65 [00:02:28.000] Project '/user/username/projects/myproject/dependency/tsconfig.json' (Configured) +Info 65 [00:02:29.000] Files (2) + +Info 65 [00:02:30.000] ----------------------------------------------- +Info 65 [00:02:31.000] Project '/user/username/projects/myproject/random/tsconfig.json' (Configured) +Info 65 [00:02:32.000] Files (2) + +Info 65 [00:02:33.000] ----------------------------------------------- +Info 65 [00:02:34.000] Open files: +Info 65 [00:02:35.000] FileName: /user/username/projects/myproject/main/main.ts ProjectRootPath: undefined +Info 65 [00:02:36.000] Projects: /user/username/projects/myproject/main/tsconfig.json +Info 65 [00:02:37.000] FileName: /user/username/projects/myproject/dependency/FnS.ts ProjectRootPath: undefined +Info 65 [00:02:38.000] Projects: /user/username/projects/myproject/dependency/tsconfig.json +Info 65 [00:02:39.000] FileName: /user/username/projects/myproject/random/random.ts ProjectRootPath: undefined +Info 65 [00:02:40.000] Projects: /user/username/projects/myproject/random/tsconfig.json After request PolledWatches:: @@ -529,11 +529,11 @@ FsWatchesRecursive:: /user/username/projects/myproject/random: {} -Info 65 [16:02:41.000] response: +Info 65 [00:02:41.000] response: { "responseRequired": false } -Info 66 [16:02:42.000] request: +Info 66 [00:02:42.000] request: { "command": "definitionAndBoundSpan", "arguments": { @@ -578,7 +578,7 @@ FsWatchesRecursive:: /user/username/projects/myproject/random: {} -Info 67 [16:02:43.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/decls/FnS.d.ts.map 500 undefined WatchType: Closed Script info +Info 67 [00:02:43.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/decls/FnS.d.ts.map 500 undefined WatchType: Closed Script info After request PolledWatches:: @@ -615,7 +615,7 @@ FsWatchesRecursive:: /user/username/projects/myproject/random: {} -Info 68 [16:02:44.000] response: +Info 68 [00:02:44.000] response: { "response": { "definitions": [ @@ -652,7 +652,7 @@ Info 68 [16:02:44.000] response: }, "responseRequired": true } -Info 69 [16:02:45.000] request: +Info 69 [00:02:45.000] request: { "command": "rename", "arguments": { @@ -699,8 +699,8 @@ FsWatchesRecursive:: /user/username/projects/myproject/random: {} -Info 70 [16:02:46.000] Search path: /user/username/projects/myproject/dependency -Info 71 [16:02:47.000] For info: /user/username/projects/myproject/dependency/FnS.ts :: Config file name: /user/username/projects/myproject/dependency/tsconfig.json +Info 70 [00:02:46.000] Search path: /user/username/projects/myproject/dependency +Info 71 [00:02:47.000] For info: /user/username/projects/myproject/dependency/FnS.ts :: Config file name: /user/username/projects/myproject/dependency/tsconfig.json After request PolledWatches:: @@ -737,7 +737,7 @@ FsWatchesRecursive:: /user/username/projects/myproject/random: {} -Info 72 [16:02:48.000] response: +Info 72 [00:02:48.000] response: { "response": { "info": { @@ -818,13 +818,13 @@ Info 72 [16:02:48.000] response: }, "responseRequired": true } -Info 73 [16:02:52.000] FileWatcher:: Triggered with /user/username/projects/myproject/decls/fns.d.ts 1:: WatchInfo: /user/username/projects/myproject/decls/fns.d.ts 500 undefined WatchType: Closed Script info -Info 74 [16:02:53.000] Scheduled: /user/username/projects/myproject/main/tsconfig.json -Info 75 [16:02:54.000] Scheduled: *ensureProjectForOpenFiles* -Info 76 [16:02:55.000] Scheduled: /user/username/projects/myproject/dependency/tsconfig.json -Info 77 [16:02:56.000] Scheduled: *ensureProjectForOpenFiles*, Cancelled earlier one -Info 78 [16:02:57.000] Elapsed:: *ms FileWatcher:: Triggered with /user/username/projects/myproject/decls/fns.d.ts 1:: WatchInfo: /user/username/projects/myproject/decls/fns.d.ts 500 undefined WatchType: Closed Script info -Info 79 [16:02:58.000] request: +Info 73 [00:02:52.000] FileWatcher:: Triggered with /user/username/projects/myproject/decls/fns.d.ts 1:: WatchInfo: /user/username/projects/myproject/decls/fns.d.ts 500 undefined WatchType: Closed Script info +Info 74 [00:02:53.000] Scheduled: /user/username/projects/myproject/main/tsconfig.json +Info 75 [00:02:54.000] Scheduled: *ensureProjectForOpenFiles* +Info 76 [00:02:55.000] Scheduled: /user/username/projects/myproject/dependency/tsconfig.json +Info 77 [00:02:56.000] Scheduled: *ensureProjectForOpenFiles*, Cancelled earlier one +Info 78 [00:02:57.000] Elapsed:: *ms FileWatcher:: Triggered with /user/username/projects/myproject/decls/fns.d.ts 1:: WatchInfo: /user/username/projects/myproject/decls/fns.d.ts 500 undefined WatchType: Closed Script info +Info 79 [00:02:58.000] request: { "command": "definitionAndBoundSpan", "arguments": { @@ -880,9 +880,9 @@ FsWatchesRecursive:: /user/username/projects/myproject/random: {} -Info 80 [16:02:59.000] Starting updateGraphWorker: Project: /user/username/projects/myproject/main/tsconfig.json -Info 81 [16:03:00.000] Finishing updateGraphWorker: Project: /user/username/projects/myproject/main/tsconfig.json Version: 2 structureChanged: false structureIsReused:: Completely Elapsed:: *ms -Info 82 [16:03:01.000] Different program with same set of files +Info 80 [00:02:59.000] Starting updateGraphWorker: Project: /user/username/projects/myproject/main/tsconfig.json +Info 81 [00:03:00.000] Finishing updateGraphWorker: Project: /user/username/projects/myproject/main/tsconfig.json Version: 2 structureChanged: false structureIsReused:: Completely Elapsed:: *ms +Info 82 [00:03:01.000] Different program with same set of files After request PolledWatches:: @@ -919,7 +919,7 @@ FsWatchesRecursive:: /user/username/projects/myproject/random: {} -Info 83 [16:03:02.000] response: +Info 83 [00:03:02.000] response: { "response": { "definitions": [ @@ -956,7 +956,7 @@ Info 83 [16:03:02.000] response: }, "responseRequired": true } -Info 84 [16:03:03.000] request: +Info 84 [00:03:03.000] request: { "command": "definitionAndBoundSpan", "arguments": { @@ -1039,7 +1039,7 @@ FsWatchesRecursive:: /user/username/projects/myproject/random: {} -Info 85 [16:03:04.000] response: +Info 85 [00:03:04.000] response: { "response": { "definitions": [ @@ -1076,7 +1076,7 @@ Info 85 [16:03:04.000] response: }, "responseRequired": true } -Info 86 [16:03:05.000] request: +Info 86 [00:03:05.000] request: { "command": "definitionAndBoundSpan", "arguments": { @@ -1159,7 +1159,7 @@ FsWatchesRecursive:: /user/username/projects/myproject/random: {} -Info 87 [16:03:06.000] response: +Info 87 [00:03:06.000] response: { "response": { "definitions": [ @@ -1196,7 +1196,7 @@ Info 87 [16:03:06.000] response: }, "responseRequired": true } -Info 88 [16:03:07.000] request: +Info 88 [00:03:07.000] request: { "command": "definitionAndBoundSpan", "arguments": { @@ -1279,7 +1279,7 @@ FsWatchesRecursive:: /user/username/projects/myproject/random: {} -Info 89 [16:03:08.000] response: +Info 89 [00:03:08.000] response: { "response": { "definitions": [ @@ -1316,7 +1316,7 @@ Info 89 [16:03:08.000] response: }, "responseRequired": true } -Info 90 [16:03:09.000] request: +Info 90 [00:03:09.000] request: { "command": "definitionAndBoundSpan", "arguments": { @@ -1399,7 +1399,7 @@ FsWatchesRecursive:: /user/username/projects/myproject/random: {} -Info 91 [16:03:10.000] response: +Info 91 [00:03:10.000] response: { "response": { "definitions": [ @@ -1436,7 +1436,7 @@ Info 91 [16:03:10.000] response: }, "responseRequired": true } -Info 92 [16:03:11.000] request: +Info 92 [00:03:11.000] request: { "command": "rename", "arguments": { @@ -1483,10 +1483,10 @@ FsWatchesRecursive:: /user/username/projects/myproject/random: {} -Info 93 [16:03:12.000] Starting updateGraphWorker: Project: /user/username/projects/myproject/dependency/tsconfig.json -Info 94 [16:03:13.000] Finishing updateGraphWorker: Project: /user/username/projects/myproject/dependency/tsconfig.json Version: 2 structureChanged: false structureIsReused:: Not Elapsed:: *ms -Info 95 [16:03:14.000] Search path: /user/username/projects/myproject/dependency -Info 96 [16:03:15.000] For info: /user/username/projects/myproject/dependency/FnS.ts :: Config file name: /user/username/projects/myproject/dependency/tsconfig.json +Info 93 [00:03:12.000] Starting updateGraphWorker: Project: /user/username/projects/myproject/dependency/tsconfig.json +Info 94 [00:03:13.000] Finishing updateGraphWorker: Project: /user/username/projects/myproject/dependency/tsconfig.json Version: 2 structureChanged: false structureIsReused:: Not Elapsed:: *ms +Info 95 [00:03:14.000] Search path: /user/username/projects/myproject/dependency +Info 96 [00:03:15.000] For info: /user/username/projects/myproject/dependency/FnS.ts :: Config file name: /user/username/projects/myproject/dependency/tsconfig.json After request PolledWatches:: @@ -1523,7 +1523,7 @@ FsWatchesRecursive:: /user/username/projects/myproject/random: {} -Info 97 [16:03:16.000] response: +Info 97 [00:03:16.000] response: { "response": { "info": { @@ -1604,7 +1604,7 @@ Info 97 [16:03:16.000] response: }, "responseRequired": true } -Info 98 [16:03:17.000] request: +Info 98 [00:03:17.000] request: { "command": "rename", "arguments": { @@ -1651,8 +1651,8 @@ FsWatchesRecursive:: /user/username/projects/myproject/random: {} -Info 99 [16:03:18.000] Search path: /user/username/projects/myproject/dependency -Info 100 [16:03:19.000] For info: /user/username/projects/myproject/dependency/FnS.ts :: Config file name: /user/username/projects/myproject/dependency/tsconfig.json +Info 99 [00:03:18.000] Search path: /user/username/projects/myproject/dependency +Info 100 [00:03:19.000] For info: /user/username/projects/myproject/dependency/FnS.ts :: Config file name: /user/username/projects/myproject/dependency/tsconfig.json After request PolledWatches:: @@ -1689,7 +1689,7 @@ FsWatchesRecursive:: /user/username/projects/myproject/random: {} -Info 101 [16:03:20.000] response: +Info 101 [00:03:20.000] response: { "response": { "info": { @@ -1770,7 +1770,7 @@ Info 101 [16:03:20.000] response: }, "responseRequired": true } -Info 102 [16:03:21.000] request: +Info 102 [00:03:21.000] request: { "command": "rename", "arguments": { @@ -1817,8 +1817,8 @@ FsWatchesRecursive:: /user/username/projects/myproject/random: {} -Info 103 [16:03:22.000] Search path: /user/username/projects/myproject/dependency -Info 104 [16:03:23.000] For info: /user/username/projects/myproject/dependency/FnS.ts :: Config file name: /user/username/projects/myproject/dependency/tsconfig.json +Info 103 [00:03:22.000] Search path: /user/username/projects/myproject/dependency +Info 104 [00:03:23.000] For info: /user/username/projects/myproject/dependency/FnS.ts :: Config file name: /user/username/projects/myproject/dependency/tsconfig.json After request PolledWatches:: @@ -1855,7 +1855,7 @@ FsWatchesRecursive:: /user/username/projects/myproject/random: {} -Info 105 [16:03:24.000] response: +Info 105 [00:03:24.000] response: { "response": { "info": { @@ -1936,7 +1936,7 @@ Info 105 [16:03:24.000] response: }, "responseRequired": true } -Info 106 [16:03:25.000] request: +Info 106 [00:03:25.000] request: { "command": "rename", "arguments": { @@ -1983,8 +1983,8 @@ FsWatchesRecursive:: /user/username/projects/myproject/random: {} -Info 107 [16:03:26.000] Search path: /user/username/projects/myproject/dependency -Info 108 [16:03:27.000] For info: /user/username/projects/myproject/dependency/FnS.ts :: Config file name: /user/username/projects/myproject/dependency/tsconfig.json +Info 107 [00:03:26.000] Search path: /user/username/projects/myproject/dependency +Info 108 [00:03:27.000] For info: /user/username/projects/myproject/dependency/FnS.ts :: Config file name: /user/username/projects/myproject/dependency/tsconfig.json After request PolledWatches:: @@ -2021,7 +2021,7 @@ FsWatchesRecursive:: /user/username/projects/myproject/random: {} -Info 109 [16:03:28.000] response: +Info 109 [00:03:28.000] response: { "response": { "info": { @@ -2102,7 +2102,7 @@ Info 109 [16:03:28.000] response: }, "responseRequired": true } -Info 110 [16:03:29.000] request: +Info 110 [00:03:29.000] request: { "command": "rename", "arguments": { @@ -2149,8 +2149,8 @@ FsWatchesRecursive:: /user/username/projects/myproject/random: {} -Info 111 [16:03:30.000] Search path: /user/username/projects/myproject/dependency -Info 112 [16:03:31.000] For info: /user/username/projects/myproject/dependency/FnS.ts :: Config file name: /user/username/projects/myproject/dependency/tsconfig.json +Info 111 [00:03:30.000] Search path: /user/username/projects/myproject/dependency +Info 112 [00:03:31.000] For info: /user/username/projects/myproject/dependency/FnS.ts :: Config file name: /user/username/projects/myproject/dependency/tsconfig.json After request PolledWatches:: @@ -2187,7 +2187,7 @@ FsWatchesRecursive:: /user/username/projects/myproject/random: {} -Info 113 [16:03:32.000] response: +Info 113 [00:03:32.000] response: { "response": { "info": { 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 c382bac1961ab..65f2e4fc2ca62 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 @@ -1,5 +1,5 @@ -Info 0 [16:01:04.000] Provided types map file "/a/lib/typesMap.json" doesn't exist -Info 1 [16:01:05.000] request: +Info 0 [00:01:04.000] Provided types map file "/a/lib/typesMap.json" doesn't exist +Info 1 [00:01:05.000] request: { "seq": 0, "type": "request", @@ -192,11 +192,11 @@ FsWatches:: FsWatchesRecursive:: -Info 2 [16:01:06.000] Search path: /user/username/projects/myproject/main -Info 3 [16:01:07.000] For info: /user/username/projects/myproject/main/main.ts :: Config file name: /user/username/projects/myproject/main/tsconfig.json -Info 4 [16:01:08.000] Creating configuration project /user/username/projects/myproject/main/tsconfig.json -Info 5 [16:01:09.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/main/tsconfig.json 2000 undefined Project: /user/username/projects/myproject/main/tsconfig.json WatchType: Config file -Info 6 [16:01:10.000] Config: /user/username/projects/myproject/main/tsconfig.json : { +Info 2 [00:01:06.000] Search path: /user/username/projects/myproject/main +Info 3 [00:01:07.000] For info: /user/username/projects/myproject/main/main.ts :: Config file name: /user/username/projects/myproject/main/tsconfig.json +Info 4 [00:01:08.000] Creating configuration project /user/username/projects/myproject/main/tsconfig.json +Info 5 [00:01:09.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/main/tsconfig.json 2000 undefined Project: /user/username/projects/myproject/main/tsconfig.json WatchType: Config file +Info 6 [00:01:10.000] Config: /user/username/projects/myproject/main/tsconfig.json : { "rootNames": [ "/user/username/projects/myproject/main/main.ts" ], @@ -213,11 +213,11 @@ Info 6 [16:01:10.000] Config: /user/username/projects/myproject/main/tsconfig } ] } -Info 7 [16:01:11.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/main 1 undefined Config: /user/username/projects/myproject/main/tsconfig.json WatchType: Wild card directory -Info 8 [16:01:12.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/main 1 undefined Config: /user/username/projects/myproject/main/tsconfig.json WatchType: Wild card directory -Info 9 [16:01:13.000] Plugins were requested but not running in environment that supports 'require'. Nothing will be loaded -Info 10 [16:01:14.000] Starting updateGraphWorker: Project: /user/username/projects/myproject/main/tsconfig.json -Info 11 [16:01:15.000] Config: /user/username/projects/myproject/dependency/tsconfig.json : { +Info 7 [00:01:11.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/main 1 undefined Config: /user/username/projects/myproject/main/tsconfig.json WatchType: Wild card directory +Info 8 [00:01:12.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/main 1 undefined Config: /user/username/projects/myproject/main/tsconfig.json WatchType: Wild card directory +Info 9 [00:01:13.000] Plugins were requested but not running in environment that supports 'require'. Nothing will be loaded +Info 10 [00:01:14.000] Starting updateGraphWorker: Project: /user/username/projects/myproject/main/tsconfig.json +Info 11 [00:01:15.000] Config: /user/username/projects/myproject/dependency/tsconfig.json : { "rootNames": [ "/user/username/projects/myproject/dependency/FnS.ts" ], @@ -228,19 +228,19 @@ Info 11 [16:01:15.000] Config: /user/username/projects/myproject/dependency/ts "configFilePath": "/user/username/projects/myproject/dependency/tsconfig.json" } } -Info 12 [16:01:16.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/dependency/tsconfig.json 2000 undefined Project: /user/username/projects/myproject/main/tsconfig.json WatchType: Config file -Info 13 [16:01:17.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/dependency 1 undefined Config: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Wild card directory -Info 14 [16:01:18.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/dependency 1 undefined Config: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Wild card directory -Info 15 [16:01:19.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/decls 1 undefined Project: /user/username/projects/myproject/main/tsconfig.json WatchType: Failed Lookup Locations -Info 16 [16:01:20.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/decls 1 undefined Project: /user/username/projects/myproject/main/tsconfig.json WatchType: Failed Lookup Locations -Info 17 [16:01:21.000] FileWatcher:: Added:: WatchInfo: /a/lib/lib.d.ts 500 undefined WatchType: Closed Script info -Info 18 [16:01:22.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/main/node_modules/@types 1 undefined Project: /user/username/projects/myproject/main/tsconfig.json WatchType: Type roots -Info 19 [16:01:23.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/main/node_modules/@types 1 undefined Project: /user/username/projects/myproject/main/tsconfig.json WatchType: Type roots -Info 20 [16:01:24.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/main/tsconfig.json WatchType: Type roots -Info 21 [16:01:25.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/main/tsconfig.json WatchType: Type roots -Info 22 [16:01:26.000] Finishing updateGraphWorker: Project: /user/username/projects/myproject/main/tsconfig.json Version: 1 structureChanged: true structureIsReused:: Not Elapsed:: *ms -Info 23 [16:01:27.000] Project '/user/username/projects/myproject/main/tsconfig.json' (Configured) -Info 24 [16:01:28.000] Files (2) +Info 12 [00:01:16.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/dependency/tsconfig.json 2000 undefined Project: /user/username/projects/myproject/main/tsconfig.json WatchType: Config file +Info 13 [00:01:17.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/dependency 1 undefined Config: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Wild card directory +Info 14 [00:01:18.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/dependency 1 undefined Config: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Wild card directory +Info 15 [00:01:19.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/decls 1 undefined Project: /user/username/projects/myproject/main/tsconfig.json WatchType: Failed Lookup Locations +Info 16 [00:01:20.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/decls 1 undefined Project: /user/username/projects/myproject/main/tsconfig.json WatchType: Failed Lookup Locations +Info 17 [00:01:21.000] FileWatcher:: Added:: WatchInfo: /a/lib/lib.d.ts 500 undefined WatchType: Closed Script info +Info 18 [00:01:22.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/main/node_modules/@types 1 undefined Project: /user/username/projects/myproject/main/tsconfig.json WatchType: Type roots +Info 19 [00:01:23.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/main/node_modules/@types 1 undefined Project: /user/username/projects/myproject/main/tsconfig.json WatchType: Type roots +Info 20 [00:01:24.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/main/tsconfig.json WatchType: Type roots +Info 21 [00:01:25.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/main/tsconfig.json WatchType: Type roots +Info 22 [00:01:26.000] Finishing updateGraphWorker: Project: /user/username/projects/myproject/main/tsconfig.json Version: 1 structureChanged: true structureIsReused:: Not Elapsed:: *ms +Info 23 [00:01:27.000] Project '/user/username/projects/myproject/main/tsconfig.json' (Configured) +Info 24 [00:01:28.000] Files (2) /a/lib/lib.d.ts /user/username/projects/myproject/main/main.ts @@ -250,16 +250,16 @@ Info 24 [16:01:28.000] Files (2) main.ts Matched by default include pattern '**/*' -Info 25 [16:01:29.000] ----------------------------------------------- -Info 26 [16:01:30.000] Search path: /user/username/projects/myproject/main -Info 27 [16:01:31.000] For info: /user/username/projects/myproject/main/tsconfig.json :: No config files found. -Info 28 [16:01:32.000] Project '/user/username/projects/myproject/main/tsconfig.json' (Configured) -Info 28 [16:01:33.000] Files (2) +Info 25 [00:01:29.000] ----------------------------------------------- +Info 26 [00:01:30.000] Search path: /user/username/projects/myproject/main +Info 27 [00:01:31.000] For info: /user/username/projects/myproject/main/tsconfig.json :: No config files found. +Info 28 [00:01:32.000] Project '/user/username/projects/myproject/main/tsconfig.json' (Configured) +Info 28 [00:01:33.000] Files (2) -Info 28 [16:01:34.000] ----------------------------------------------- -Info 28 [16:01:35.000] Open files: -Info 28 [16:01:36.000] FileName: /user/username/projects/myproject/main/main.ts ProjectRootPath: undefined -Info 28 [16:01:37.000] Projects: /user/username/projects/myproject/main/tsconfig.json +Info 28 [00:01:34.000] ----------------------------------------------- +Info 28 [00:01:35.000] Open files: +Info 28 [00:01:36.000] FileName: /user/username/projects/myproject/main/main.ts ProjectRootPath: undefined +Info 28 [00:01:37.000] Projects: /user/username/projects/myproject/main/tsconfig.json After request PolledWatches:: @@ -284,11 +284,11 @@ FsWatchesRecursive:: /user/username/projects/myproject/decls: {} -Info 28 [16:01:38.000] response: +Info 28 [00:01:38.000] response: { "responseRequired": false } -Info 29 [16:01:39.000] request: +Info 29 [00:01:39.000] request: { "seq": 0, "type": "request", @@ -321,18 +321,18 @@ FsWatchesRecursive:: /user/username/projects/myproject/decls: {} -Info 30 [16:01:40.000] Search path: /user/username/projects/myproject/dependency -Info 31 [16:01:41.000] For info: /user/username/projects/myproject/dependency/FnS.ts :: Config file name: /user/username/projects/myproject/dependency/tsconfig.json -Info 32 [16:01:42.000] Creating configuration project /user/username/projects/myproject/dependency/tsconfig.json -Info 33 [16:01:43.000] Plugins were requested but not running in environment that supports 'require'. Nothing will be loaded -Info 34 [16:01:44.000] Starting updateGraphWorker: Project: /user/username/projects/myproject/dependency/tsconfig.json -Info 35 [16:01:45.000] 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 36 [16:01:46.000] 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 37 [16:01:47.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Type roots -Info 38 [16:01:48.000] 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 39 [16:01:49.000] Finishing updateGraphWorker: Project: /user/username/projects/myproject/dependency/tsconfig.json Version: 1 structureChanged: true structureIsReused:: Not Elapsed:: *ms -Info 40 [16:01:50.000] Project '/user/username/projects/myproject/dependency/tsconfig.json' (Configured) -Info 41 [16:01:51.000] Files (2) +Info 30 [00:01:40.000] Search path: /user/username/projects/myproject/dependency +Info 31 [00:01:41.000] For info: /user/username/projects/myproject/dependency/FnS.ts :: Config file name: /user/username/projects/myproject/dependency/tsconfig.json +Info 32 [00:01:42.000] Creating configuration project /user/username/projects/myproject/dependency/tsconfig.json +Info 33 [00:01:43.000] Plugins were requested but not running in environment that supports 'require'. Nothing will be loaded +Info 34 [00:01:44.000] Starting updateGraphWorker: Project: /user/username/projects/myproject/dependency/tsconfig.json +Info 35 [00:01:45.000] 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 36 [00:01:46.000] 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 37 [00:01:47.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Type roots +Info 38 [00:01:48.000] 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 39 [00:01:49.000] Finishing updateGraphWorker: Project: /user/username/projects/myproject/dependency/tsconfig.json Version: 1 structureChanged: true structureIsReused:: Not Elapsed:: *ms +Info 40 [00:01:50.000] Project '/user/username/projects/myproject/dependency/tsconfig.json' (Configured) +Info 41 [00:01:51.000] Files (2) /a/lib/lib.d.ts /user/username/projects/myproject/dependency/FnS.ts @@ -342,22 +342,22 @@ Info 41 [16:01:51.000] Files (2) FnS.ts Matched by default include pattern '**/*' -Info 42 [16:01:52.000] ----------------------------------------------- -Info 43 [16:01:53.000] Search path: /user/username/projects/myproject/dependency -Info 44 [16:01:54.000] For info: /user/username/projects/myproject/dependency/tsconfig.json :: No config files found. -Info 45 [16:01:55.000] Project '/user/username/projects/myproject/main/tsconfig.json' (Configured) -Info 45 [16:01:56.000] Files (2) - -Info 45 [16:01:57.000] ----------------------------------------------- -Info 45 [16:01:58.000] Project '/user/username/projects/myproject/dependency/tsconfig.json' (Configured) -Info 45 [16:01:59.000] Files (2) - -Info 45 [16:02:00.000] ----------------------------------------------- -Info 45 [16:02:01.000] Open files: -Info 45 [16:02:02.000] FileName: /user/username/projects/myproject/main/main.ts ProjectRootPath: undefined -Info 45 [16:02:03.000] Projects: /user/username/projects/myproject/main/tsconfig.json -Info 45 [16:02:04.000] FileName: /user/username/projects/myproject/dependency/FnS.ts ProjectRootPath: undefined -Info 45 [16:02:05.000] Projects: /user/username/projects/myproject/dependency/tsconfig.json +Info 42 [00:01:52.000] ----------------------------------------------- +Info 43 [00:01:53.000] Search path: /user/username/projects/myproject/dependency +Info 44 [00:01:54.000] For info: /user/username/projects/myproject/dependency/tsconfig.json :: No config files found. +Info 45 [00:01:55.000] Project '/user/username/projects/myproject/main/tsconfig.json' (Configured) +Info 45 [00:01:56.000] Files (2) + +Info 45 [00:01:57.000] ----------------------------------------------- +Info 45 [00:01:58.000] Project '/user/username/projects/myproject/dependency/tsconfig.json' (Configured) +Info 45 [00:01:59.000] Files (2) + +Info 45 [00:02:00.000] ----------------------------------------------- +Info 45 [00:02:01.000] Open files: +Info 45 [00:02:02.000] FileName: /user/username/projects/myproject/main/main.ts ProjectRootPath: undefined +Info 45 [00:02:03.000] Projects: /user/username/projects/myproject/main/tsconfig.json +Info 45 [00:02:04.000] FileName: /user/username/projects/myproject/dependency/FnS.ts ProjectRootPath: undefined +Info 45 [00:02:05.000] Projects: /user/username/projects/myproject/dependency/tsconfig.json After request PolledWatches:: @@ -384,11 +384,11 @@ FsWatchesRecursive:: /user/username/projects/myproject/decls: {} -Info 45 [16:02:06.000] response: +Info 45 [00:02:06.000] response: { "responseRequired": false } -Info 46 [16:02:07.000] request: +Info 46 [00:02:07.000] request: { "seq": 0, "type": "request", @@ -423,11 +423,11 @@ FsWatchesRecursive:: /user/username/projects/myproject/decls: {} -Info 47 [16:02:08.000] Search path: /user/username/projects/myproject/random -Info 48 [16:02:09.000] For info: /user/username/projects/myproject/random/random.ts :: Config file name: /user/username/projects/myproject/random/tsconfig.json -Info 49 [16:02:10.000] Creating configuration project /user/username/projects/myproject/random/tsconfig.json -Info 50 [16:02:11.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/random/tsconfig.json 2000 undefined Project: /user/username/projects/myproject/random/tsconfig.json WatchType: Config file -Info 51 [16:02:12.000] Config: /user/username/projects/myproject/random/tsconfig.json : { +Info 47 [00:02:08.000] Search path: /user/username/projects/myproject/random +Info 48 [00:02:09.000] For info: /user/username/projects/myproject/random/random.ts :: Config file name: /user/username/projects/myproject/random/tsconfig.json +Info 49 [00:02:10.000] Creating configuration project /user/username/projects/myproject/random/tsconfig.json +Info 50 [00:02:11.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/random/tsconfig.json 2000 undefined Project: /user/username/projects/myproject/random/tsconfig.json WatchType: Config file +Info 51 [00:02:12.000] Config: /user/username/projects/myproject/random/tsconfig.json : { "rootNames": [ "/user/username/projects/myproject/random/random.ts" ], @@ -435,17 +435,17 @@ Info 51 [16:02:12.000] Config: /user/username/projects/myproject/random/tsconf "configFilePath": "/user/username/projects/myproject/random/tsconfig.json" } } -Info 52 [16:02:13.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/random 1 undefined Config: /user/username/projects/myproject/random/tsconfig.json WatchType: Wild card directory -Info 53 [16:02:14.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/random 1 undefined Config: /user/username/projects/myproject/random/tsconfig.json WatchType: Wild card directory -Info 54 [16:02:15.000] Plugins were requested but not running in environment that supports 'require'. Nothing will be loaded -Info 55 [16:02:16.000] Starting updateGraphWorker: Project: /user/username/projects/myproject/random/tsconfig.json -Info 56 [16:02:17.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/random/node_modules/@types 1 undefined Project: /user/username/projects/myproject/random/tsconfig.json WatchType: Type roots -Info 57 [16:02:18.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/random/node_modules/@types 1 undefined Project: /user/username/projects/myproject/random/tsconfig.json WatchType: Type roots -Info 58 [16:02:19.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/random/tsconfig.json WatchType: Type roots -Info 59 [16:02:20.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/random/tsconfig.json WatchType: Type roots -Info 60 [16:02:21.000] Finishing updateGraphWorker: Project: /user/username/projects/myproject/random/tsconfig.json Version: 1 structureChanged: true structureIsReused:: Not Elapsed:: *ms -Info 61 [16:02:22.000] Project '/user/username/projects/myproject/random/tsconfig.json' (Configured) -Info 62 [16:02:23.000] Files (2) +Info 52 [00:02:13.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/random 1 undefined Config: /user/username/projects/myproject/random/tsconfig.json WatchType: Wild card directory +Info 53 [00:02:14.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/random 1 undefined Config: /user/username/projects/myproject/random/tsconfig.json WatchType: Wild card directory +Info 54 [00:02:15.000] Plugins were requested but not running in environment that supports 'require'. Nothing will be loaded +Info 55 [00:02:16.000] Starting updateGraphWorker: Project: /user/username/projects/myproject/random/tsconfig.json +Info 56 [00:02:17.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/random/node_modules/@types 1 undefined Project: /user/username/projects/myproject/random/tsconfig.json WatchType: Type roots +Info 57 [00:02:18.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/random/node_modules/@types 1 undefined Project: /user/username/projects/myproject/random/tsconfig.json WatchType: Type roots +Info 58 [00:02:19.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/random/tsconfig.json WatchType: Type roots +Info 59 [00:02:20.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/random/tsconfig.json WatchType: Type roots +Info 60 [00:02:21.000] Finishing updateGraphWorker: Project: /user/username/projects/myproject/random/tsconfig.json Version: 1 structureChanged: true structureIsReused:: Not Elapsed:: *ms +Info 61 [00:02:22.000] Project '/user/username/projects/myproject/random/tsconfig.json' (Configured) +Info 62 [00:02:23.000] Files (2) /a/lib/lib.d.ts /user/username/projects/myproject/random/random.ts @@ -455,26 +455,26 @@ Info 62 [16:02:23.000] Files (2) random.ts Matched by default include pattern '**/*' -Info 63 [16:02:24.000] ----------------------------------------------- -Info 64 [16:02:25.000] Project '/user/username/projects/myproject/main/tsconfig.json' (Configured) -Info 64 [16:02:26.000] Files (2) - -Info 64 [16:02:27.000] ----------------------------------------------- -Info 64 [16:02:28.000] Project '/user/username/projects/myproject/dependency/tsconfig.json' (Configured) -Info 64 [16:02:29.000] Files (2) - -Info 64 [16:02:30.000] ----------------------------------------------- -Info 64 [16:02:31.000] Project '/user/username/projects/myproject/random/tsconfig.json' (Configured) -Info 64 [16:02:32.000] Files (2) - -Info 64 [16:02:33.000] ----------------------------------------------- -Info 64 [16:02:34.000] Open files: -Info 64 [16:02:35.000] FileName: /user/username/projects/myproject/main/main.ts ProjectRootPath: undefined -Info 64 [16:02:36.000] Projects: /user/username/projects/myproject/main/tsconfig.json -Info 64 [16:02:37.000] FileName: /user/username/projects/myproject/dependency/FnS.ts ProjectRootPath: undefined -Info 64 [16:02:38.000] Projects: /user/username/projects/myproject/dependency/tsconfig.json -Info 64 [16:02:39.000] FileName: /user/username/projects/myproject/random/random.ts ProjectRootPath: undefined -Info 64 [16:02:40.000] Projects: /user/username/projects/myproject/random/tsconfig.json +Info 63 [00:02:24.000] ----------------------------------------------- +Info 64 [00:02:25.000] Project '/user/username/projects/myproject/main/tsconfig.json' (Configured) +Info 64 [00:02:26.000] Files (2) + +Info 64 [00:02:27.000] ----------------------------------------------- +Info 64 [00:02:28.000] Project '/user/username/projects/myproject/dependency/tsconfig.json' (Configured) +Info 64 [00:02:29.000] Files (2) + +Info 64 [00:02:30.000] ----------------------------------------------- +Info 64 [00:02:31.000] Project '/user/username/projects/myproject/random/tsconfig.json' (Configured) +Info 64 [00:02:32.000] Files (2) + +Info 64 [00:02:33.000] ----------------------------------------------- +Info 64 [00:02:34.000] Open files: +Info 64 [00:02:35.000] FileName: /user/username/projects/myproject/main/main.ts ProjectRootPath: undefined +Info 64 [00:02:36.000] Projects: /user/username/projects/myproject/main/tsconfig.json +Info 64 [00:02:37.000] FileName: /user/username/projects/myproject/dependency/FnS.ts ProjectRootPath: undefined +Info 64 [00:02:38.000] Projects: /user/username/projects/myproject/dependency/tsconfig.json +Info 64 [00:02:39.000] FileName: /user/username/projects/myproject/random/random.ts ProjectRootPath: undefined +Info 64 [00:02:40.000] Projects: /user/username/projects/myproject/random/tsconfig.json After request PolledWatches:: @@ -507,11 +507,11 @@ FsWatchesRecursive:: /user/username/projects/myproject/random: {} -Info 64 [16:02:41.000] response: +Info 64 [00:02:41.000] response: { "responseRequired": false } -Info 65 [16:02:42.000] request: +Info 65 [00:02:42.000] request: { "command": "definitionAndBoundSpan", "arguments": { @@ -586,7 +586,7 @@ FsWatchesRecursive:: /user/username/projects/myproject/random: {} -Info 66 [16:02:43.000] response: +Info 66 [00:02:43.000] response: { "response": { "definitions": [ @@ -623,7 +623,7 @@ Info 66 [16:02:43.000] response: }, "responseRequired": true } -Info 67 [16:02:44.000] request: +Info 67 [00:02:44.000] request: { "command": "rename", "arguments": { @@ -666,7 +666,7 @@ FsWatchesRecursive:: /user/username/projects/myproject/random: {} -Info 68 [16:02:45.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/decls/FnS.d.ts 2000 undefined Project: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Missing generated file +Info 68 [00:02:45.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/decls/FnS.d.ts 2000 undefined Project: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Missing generated file After request PolledWatches:: @@ -701,7 +701,7 @@ FsWatchesRecursive:: /user/username/projects/myproject/random: {} -Info 69 [16:02:46.000] response: +Info 69 [00:02:46.000] response: { "response": { "info": { @@ -749,18 +749,18 @@ Info 69 [16:02:46.000] response: }, "responseRequired": true } -Info 70 [16:02:49.000] FileWatcher:: Triggered with /user/username/projects/myproject/decls/FnS.d.ts 0:: WatchInfo: /user/username/projects/myproject/decls/FnS.d.ts 2000 undefined Project: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Missing generated file -Info 71 [16:02:50.000] Scheduled: /user/username/projects/myproject/dependency/tsconfig.json -Info 72 [16:02:51.000] Scheduled: *ensureProjectForOpenFiles* -Info 73 [16:02:52.000] Elapsed:: *ms FileWatcher:: Triggered with /user/username/projects/myproject/decls/FnS.d.ts 0:: WatchInfo: /user/username/projects/myproject/decls/FnS.d.ts 2000 undefined Project: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Missing generated file -Info 74 [16:02:53.000] FileWatcher:: Triggered with /user/username/projects/myproject/decls/FnS.d.ts 0:: WatchInfo: /user/username/projects/myproject/decls/FnS.d.ts 2000 undefined Project: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Missing generated file -Info 75 [16:02:54.000] Scheduled: /user/username/projects/myproject/dependency/tsconfig.json, Cancelled earlier one -Info 76 [16:02:55.000] Scheduled: *ensureProjectForOpenFiles*, Cancelled earlier one -Info 77 [16:02:56.000] Elapsed:: *ms FileWatcher:: Triggered with /user/username/projects/myproject/decls/FnS.d.ts 0:: WatchInfo: /user/username/projects/myproject/decls/FnS.d.ts 2000 undefined Project: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Missing generated file -Info 78 [16:02:57.000] DirectoryWatcher:: Triggered with /user/username/projects/myproject/decls/FnS.d.ts :: WatchInfo: /user/username/projects/myproject/decls 1 undefined Project: /user/username/projects/myproject/main/tsconfig.json WatchType: Failed Lookup Locations -Info 79 [16:02:58.000] Scheduled: /user/username/projects/myproject/main/tsconfig.jsonFailedLookupInvalidation -Info 80 [16:02:59.000] Elapsed:: *ms DirectoryWatcher:: Triggered with /user/username/projects/myproject/decls/FnS.d.ts :: WatchInfo: /user/username/projects/myproject/decls 1 undefined Project: /user/username/projects/myproject/main/tsconfig.json WatchType: Failed Lookup Locations -Info 81 [16:03:00.000] request: +Info 70 [00:02:49.000] FileWatcher:: Triggered with /user/username/projects/myproject/decls/FnS.d.ts 0:: WatchInfo: /user/username/projects/myproject/decls/FnS.d.ts 2000 undefined Project: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Missing generated file +Info 71 [00:02:50.000] Scheduled: /user/username/projects/myproject/dependency/tsconfig.json +Info 72 [00:02:51.000] Scheduled: *ensureProjectForOpenFiles* +Info 73 [00:02:52.000] Elapsed:: *ms FileWatcher:: Triggered with /user/username/projects/myproject/decls/FnS.d.ts 0:: WatchInfo: /user/username/projects/myproject/decls/FnS.d.ts 2000 undefined Project: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Missing generated file +Info 74 [00:02:53.000] FileWatcher:: Triggered with /user/username/projects/myproject/decls/FnS.d.ts 0:: WatchInfo: /user/username/projects/myproject/decls/FnS.d.ts 2000 undefined Project: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Missing generated file +Info 75 [00:02:54.000] Scheduled: /user/username/projects/myproject/dependency/tsconfig.json, Cancelled earlier one +Info 76 [00:02:55.000] Scheduled: *ensureProjectForOpenFiles*, Cancelled earlier one +Info 77 [00:02:56.000] Elapsed:: *ms FileWatcher:: Triggered with /user/username/projects/myproject/decls/FnS.d.ts 0:: WatchInfo: /user/username/projects/myproject/decls/FnS.d.ts 2000 undefined Project: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Missing generated file +Info 78 [00:02:57.000] DirectoryWatcher:: Triggered with /user/username/projects/myproject/decls/FnS.d.ts :: WatchInfo: /user/username/projects/myproject/decls 1 undefined Project: /user/username/projects/myproject/main/tsconfig.json WatchType: Failed Lookup Locations +Info 79 [00:02:58.000] Scheduled: /user/username/projects/myproject/main/tsconfig.jsonFailedLookupInvalidation +Info 80 [00:02:59.000] Elapsed:: *ms DirectoryWatcher:: Triggered with /user/username/projects/myproject/decls/FnS.d.ts :: WatchInfo: /user/username/projects/myproject/decls 1 undefined Project: /user/username/projects/myproject/main/tsconfig.json WatchType: Failed Lookup Locations +Info 81 [00:03:00.000] request: { "command": "definitionAndBoundSpan", "arguments": { @@ -813,12 +813,12 @@ FsWatchesRecursive:: /user/username/projects/myproject/random: {} -Info 82 [16:03:01.000] Scheduled: *ensureProjectForOpenFiles*, Cancelled earlier one -Info 83 [16:03:02.000] Starting updateGraphWorker: Project: /user/username/projects/myproject/main/tsconfig.json -Info 84 [16:03:03.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/decls/fns.d.ts 500 undefined WatchType: Closed Script info -Info 85 [16:03:04.000] Finishing updateGraphWorker: Project: /user/username/projects/myproject/main/tsconfig.json Version: 2 structureChanged: true structureIsReused:: SafeModules Elapsed:: *ms -Info 86 [16:03:05.000] Project '/user/username/projects/myproject/main/tsconfig.json' (Configured) -Info 87 [16:03:06.000] Files (3) +Info 82 [00:03:01.000] Scheduled: *ensureProjectForOpenFiles*, Cancelled earlier one +Info 83 [00:03:02.000] Starting updateGraphWorker: Project: /user/username/projects/myproject/main/tsconfig.json +Info 84 [00:03:03.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/decls/fns.d.ts 500 undefined WatchType: Closed Script info +Info 85 [00:03:04.000] Finishing updateGraphWorker: Project: /user/username/projects/myproject/main/tsconfig.json Version: 2 structureChanged: true structureIsReused:: SafeModules Elapsed:: *ms +Info 86 [00:03:05.000] Project '/user/username/projects/myproject/main/tsconfig.json' (Configured) +Info 87 [00:03:06.000] Files (3) /a/lib/lib.d.ts /user/username/projects/myproject/decls/fns.d.ts /user/username/projects/myproject/main/main.ts @@ -831,8 +831,8 @@ Info 87 [16:03:06.000] Files (3) main.ts Matched by default include pattern '**/*' -Info 88 [16:03:07.000] ----------------------------------------------- -Info 89 [16:03:08.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/decls/FnS.d.ts.map 500 undefined WatchType: Closed Script info +Info 88 [00:03:07.000] ----------------------------------------------- +Info 89 [00:03:08.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/decls/FnS.d.ts.map 500 undefined WatchType: Closed Script info After request PolledWatches:: @@ -869,7 +869,7 @@ FsWatchesRecursive:: /user/username/projects/myproject/random: {} -Info 90 [16:03:09.000] response: +Info 90 [00:03:09.000] response: { "response": { "definitions": [ @@ -906,7 +906,7 @@ Info 90 [16:03:09.000] response: }, "responseRequired": true } -Info 91 [16:03:10.000] request: +Info 91 [00:03:10.000] request: { "command": "definitionAndBoundSpan", "arguments": { @@ -989,7 +989,7 @@ FsWatchesRecursive:: /user/username/projects/myproject/random: {} -Info 92 [16:03:11.000] response: +Info 92 [00:03:11.000] response: { "response": { "definitions": [ @@ -1026,7 +1026,7 @@ Info 92 [16:03:11.000] response: }, "responseRequired": true } -Info 93 [16:03:12.000] request: +Info 93 [00:03:12.000] request: { "command": "definitionAndBoundSpan", "arguments": { @@ -1109,7 +1109,7 @@ FsWatchesRecursive:: /user/username/projects/myproject/random: {} -Info 94 [16:03:13.000] response: +Info 94 [00:03:13.000] response: { "response": { "definitions": [ @@ -1146,7 +1146,7 @@ Info 94 [16:03:13.000] response: }, "responseRequired": true } -Info 95 [16:03:14.000] request: +Info 95 [00:03:14.000] request: { "command": "definitionAndBoundSpan", "arguments": { @@ -1229,7 +1229,7 @@ FsWatchesRecursive:: /user/username/projects/myproject/random: {} -Info 96 [16:03:15.000] response: +Info 96 [00:03:15.000] response: { "response": { "definitions": [ @@ -1266,7 +1266,7 @@ Info 96 [16:03:15.000] response: }, "responseRequired": true } -Info 97 [16:03:16.000] request: +Info 97 [00:03:16.000] request: { "command": "definitionAndBoundSpan", "arguments": { @@ -1349,7 +1349,7 @@ FsWatchesRecursive:: /user/username/projects/myproject/random: {} -Info 98 [16:03:17.000] response: +Info 98 [00:03:17.000] response: { "response": { "definitions": [ @@ -1386,7 +1386,7 @@ Info 98 [16:03:17.000] response: }, "responseRequired": true } -Info 99 [16:03:18.000] request: +Info 99 [00:03:18.000] request: { "command": "rename", "arguments": { @@ -1433,10 +1433,10 @@ FsWatchesRecursive:: /user/username/projects/myproject/random: {} -Info 100 [16:03:19.000] Starting updateGraphWorker: Project: /user/username/projects/myproject/dependency/tsconfig.json -Info 101 [16:03:20.000] Finishing updateGraphWorker: Project: /user/username/projects/myproject/dependency/tsconfig.json Version: 2 structureChanged: false structureIsReused:: Not Elapsed:: *ms -Info 102 [16:03:21.000] Search path: /user/username/projects/myproject/dependency -Info 103 [16:03:22.000] For info: /user/username/projects/myproject/dependency/FnS.ts :: Config file name: /user/username/projects/myproject/dependency/tsconfig.json +Info 100 [00:03:19.000] Starting updateGraphWorker: Project: /user/username/projects/myproject/dependency/tsconfig.json +Info 101 [00:03:20.000] Finishing updateGraphWorker: Project: /user/username/projects/myproject/dependency/tsconfig.json Version: 2 structureChanged: false structureIsReused:: Not Elapsed:: *ms +Info 102 [00:03:21.000] Search path: /user/username/projects/myproject/dependency +Info 103 [00:03:22.000] For info: /user/username/projects/myproject/dependency/FnS.ts :: Config file name: /user/username/projects/myproject/dependency/tsconfig.json After request PolledWatches:: @@ -1473,7 +1473,7 @@ FsWatchesRecursive:: /user/username/projects/myproject/random: {} -Info 104 [16:03:23.000] response: +Info 104 [00:03:23.000] response: { "response": { "info": { @@ -1554,7 +1554,7 @@ Info 104 [16:03:23.000] response: }, "responseRequired": true } -Info 105 [16:03:24.000] request: +Info 105 [00:03:24.000] request: { "command": "rename", "arguments": { @@ -1601,8 +1601,8 @@ FsWatchesRecursive:: /user/username/projects/myproject/random: {} -Info 106 [16:03:25.000] Search path: /user/username/projects/myproject/dependency -Info 107 [16:03:26.000] For info: /user/username/projects/myproject/dependency/FnS.ts :: Config file name: /user/username/projects/myproject/dependency/tsconfig.json +Info 106 [00:03:25.000] Search path: /user/username/projects/myproject/dependency +Info 107 [00:03:26.000] For info: /user/username/projects/myproject/dependency/FnS.ts :: Config file name: /user/username/projects/myproject/dependency/tsconfig.json After request PolledWatches:: @@ -1639,7 +1639,7 @@ FsWatchesRecursive:: /user/username/projects/myproject/random: {} -Info 108 [16:03:27.000] response: +Info 108 [00:03:27.000] response: { "response": { "info": { @@ -1720,7 +1720,7 @@ Info 108 [16:03:27.000] response: }, "responseRequired": true } -Info 109 [16:03:28.000] request: +Info 109 [00:03:28.000] request: { "command": "rename", "arguments": { @@ -1767,8 +1767,8 @@ FsWatchesRecursive:: /user/username/projects/myproject/random: {} -Info 110 [16:03:29.000] Search path: /user/username/projects/myproject/dependency -Info 111 [16:03:30.000] For info: /user/username/projects/myproject/dependency/FnS.ts :: Config file name: /user/username/projects/myproject/dependency/tsconfig.json +Info 110 [00:03:29.000] Search path: /user/username/projects/myproject/dependency +Info 111 [00:03:30.000] For info: /user/username/projects/myproject/dependency/FnS.ts :: Config file name: /user/username/projects/myproject/dependency/tsconfig.json After request PolledWatches:: @@ -1805,7 +1805,7 @@ FsWatchesRecursive:: /user/username/projects/myproject/random: {} -Info 112 [16:03:31.000] response: +Info 112 [00:03:31.000] response: { "response": { "info": { @@ -1886,7 +1886,7 @@ Info 112 [16:03:31.000] response: }, "responseRequired": true } -Info 113 [16:03:32.000] request: +Info 113 [00:03:32.000] request: { "command": "rename", "arguments": { @@ -1933,8 +1933,8 @@ FsWatchesRecursive:: /user/username/projects/myproject/random: {} -Info 114 [16:03:33.000] Search path: /user/username/projects/myproject/dependency -Info 115 [16:03:34.000] For info: /user/username/projects/myproject/dependency/FnS.ts :: Config file name: /user/username/projects/myproject/dependency/tsconfig.json +Info 114 [00:03:33.000] Search path: /user/username/projects/myproject/dependency +Info 115 [00:03:34.000] For info: /user/username/projects/myproject/dependency/FnS.ts :: Config file name: /user/username/projects/myproject/dependency/tsconfig.json After request PolledWatches:: @@ -1971,7 +1971,7 @@ FsWatchesRecursive:: /user/username/projects/myproject/random: {} -Info 116 [16:03:35.000] response: +Info 116 [00:03:35.000] response: { "response": { "info": { @@ -2052,7 +2052,7 @@ Info 116 [16:03:35.000] response: }, "responseRequired": true } -Info 117 [16:03:36.000] request: +Info 117 [00:03:36.000] request: { "command": "rename", "arguments": { @@ -2099,8 +2099,8 @@ FsWatchesRecursive:: /user/username/projects/myproject/random: {} -Info 118 [16:03:37.000] Search path: /user/username/projects/myproject/dependency -Info 119 [16:03:38.000] For info: /user/username/projects/myproject/dependency/FnS.ts :: Config file name: /user/username/projects/myproject/dependency/tsconfig.json +Info 118 [00:03:37.000] Search path: /user/username/projects/myproject/dependency +Info 119 [00:03:38.000] For info: /user/username/projects/myproject/dependency/FnS.ts :: Config file name: /user/username/projects/myproject/dependency/tsconfig.json After request PolledWatches:: @@ -2137,7 +2137,7 @@ FsWatchesRecursive:: /user/username/projects/myproject/random: {} -Info 120 [16:03:39.000] response: +Info 120 [00:03:39.000] response: { "response": { "info": { @@ -2218,7 +2218,7 @@ Info 120 [16:03:39.000] response: }, "responseRequired": true } -Info 121 [16:03:40.000] request: +Info 121 [00:03:40.000] request: { "seq": 0, "type": "request", @@ -2263,24 +2263,24 @@ FsWatchesRecursive:: /user/username/projects/myproject/random: {} -Info 122 [16:03:41.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/random/random.ts 500 undefined WatchType: Closed Script info -Info 123 [16:03:42.000] Project '/user/username/projects/myproject/main/tsconfig.json' (Configured) -Info 123 [16:03:43.000] Files (3) +Info 122 [00:03:41.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/random/random.ts 500 undefined WatchType: Closed Script info +Info 123 [00:03:42.000] Project '/user/username/projects/myproject/main/tsconfig.json' (Configured) +Info 123 [00:03:43.000] Files (3) -Info 123 [16:03:44.000] ----------------------------------------------- -Info 123 [16:03:45.000] Project '/user/username/projects/myproject/dependency/tsconfig.json' (Configured) -Info 123 [16:03:46.000] Files (2) +Info 123 [00:03:44.000] ----------------------------------------------- +Info 123 [00:03:45.000] Project '/user/username/projects/myproject/dependency/tsconfig.json' (Configured) +Info 123 [00:03:46.000] Files (2) -Info 123 [16:03:47.000] ----------------------------------------------- -Info 123 [16:03:48.000] Project '/user/username/projects/myproject/random/tsconfig.json' (Configured) -Info 123 [16:03:49.000] Files (2) +Info 123 [00:03:47.000] ----------------------------------------------- +Info 123 [00:03:48.000] Project '/user/username/projects/myproject/random/tsconfig.json' (Configured) +Info 123 [00:03:49.000] Files (2) -Info 123 [16:03:50.000] ----------------------------------------------- -Info 123 [16:03:51.000] Open files: -Info 123 [16:03:52.000] FileName: /user/username/projects/myproject/main/main.ts ProjectRootPath: undefined -Info 123 [16:03:53.000] Projects: /user/username/projects/myproject/main/tsconfig.json -Info 123 [16:03:54.000] FileName: /user/username/projects/myproject/dependency/FnS.ts ProjectRootPath: undefined -Info 123 [16:03:55.000] Projects: /user/username/projects/myproject/dependency/tsconfig.json +Info 123 [00:03:50.000] ----------------------------------------------- +Info 123 [00:03:51.000] Open files: +Info 123 [00:03:52.000] FileName: /user/username/projects/myproject/main/main.ts ProjectRootPath: undefined +Info 123 [00:03:53.000] Projects: /user/username/projects/myproject/main/tsconfig.json +Info 123 [00:03:54.000] FileName: /user/username/projects/myproject/dependency/FnS.ts ProjectRootPath: undefined +Info 123 [00:03:55.000] Projects: /user/username/projects/myproject/dependency/tsconfig.json After request PolledWatches:: @@ -2319,11 +2319,11 @@ FsWatchesRecursive:: /user/username/projects/myproject/random: {} -Info 123 [16:03:56.000] response: +Info 123 [00:03:56.000] response: { "responseRequired": false } -Info 124 [16:03:57.000] request: +Info 124 [00:03:57.000] request: { "seq": 0, "type": "request", @@ -2370,28 +2370,28 @@ FsWatchesRecursive:: /user/username/projects/myproject/random: {} -Info 125 [16:03:58.000] FileWatcher:: Close:: WatchInfo: /user/username/projects/myproject/random/random.ts 500 undefined WatchType: Closed Script info -Info 126 [16:03:59.000] Search path: /user/username/projects/myproject/random -Info 127 [16:04:00.000] For info: /user/username/projects/myproject/random/random.ts :: Config file name: /user/username/projects/myproject/random/tsconfig.json -Info 128 [16:04:01.000] Project '/user/username/projects/myproject/main/tsconfig.json' (Configured) -Info 128 [16:04:02.000] Files (3) - -Info 128 [16:04:03.000] ----------------------------------------------- -Info 128 [16:04:04.000] Project '/user/username/projects/myproject/dependency/tsconfig.json' (Configured) -Info 128 [16:04:05.000] Files (2) - -Info 128 [16:04:06.000] ----------------------------------------------- -Info 128 [16:04:07.000] Project '/user/username/projects/myproject/random/tsconfig.json' (Configured) -Info 128 [16:04:08.000] Files (2) - -Info 128 [16:04:09.000] ----------------------------------------------- -Info 128 [16:04:10.000] Open files: -Info 128 [16:04:11.000] FileName: /user/username/projects/myproject/main/main.ts ProjectRootPath: undefined -Info 128 [16:04:12.000] Projects: /user/username/projects/myproject/main/tsconfig.json -Info 128 [16:04:13.000] FileName: /user/username/projects/myproject/dependency/FnS.ts ProjectRootPath: undefined -Info 128 [16:04:14.000] Projects: /user/username/projects/myproject/dependency/tsconfig.json -Info 128 [16:04:15.000] FileName: /user/username/projects/myproject/random/random.ts ProjectRootPath: undefined -Info 128 [16:04:16.000] Projects: /user/username/projects/myproject/random/tsconfig.json +Info 125 [00:03:58.000] FileWatcher:: Close:: WatchInfo: /user/username/projects/myproject/random/random.ts 500 undefined WatchType: Closed Script info +Info 126 [00:03:59.000] Search path: /user/username/projects/myproject/random +Info 127 [00:04:00.000] For info: /user/username/projects/myproject/random/random.ts :: Config file name: /user/username/projects/myproject/random/tsconfig.json +Info 128 [00:04:01.000] Project '/user/username/projects/myproject/main/tsconfig.json' (Configured) +Info 128 [00:04:02.000] Files (3) + +Info 128 [00:04:03.000] ----------------------------------------------- +Info 128 [00:04:04.000] Project '/user/username/projects/myproject/dependency/tsconfig.json' (Configured) +Info 128 [00:04:05.000] Files (2) + +Info 128 [00:04:06.000] ----------------------------------------------- +Info 128 [00:04:07.000] Project '/user/username/projects/myproject/random/tsconfig.json' (Configured) +Info 128 [00:04:08.000] Files (2) + +Info 128 [00:04:09.000] ----------------------------------------------- +Info 128 [00:04:10.000] Open files: +Info 128 [00:04:11.000] FileName: /user/username/projects/myproject/main/main.ts ProjectRootPath: undefined +Info 128 [00:04:12.000] Projects: /user/username/projects/myproject/main/tsconfig.json +Info 128 [00:04:13.000] FileName: /user/username/projects/myproject/dependency/FnS.ts ProjectRootPath: undefined +Info 128 [00:04:14.000] Projects: /user/username/projects/myproject/dependency/tsconfig.json +Info 128 [00:04:15.000] FileName: /user/username/projects/myproject/random/random.ts ProjectRootPath: undefined +Info 128 [00:04:16.000] Projects: /user/username/projects/myproject/random/tsconfig.json After request PolledWatches:: @@ -2428,11 +2428,11 @@ FsWatchesRecursive:: /user/username/projects/myproject/random: {} -Info 128 [16:04:17.000] response: +Info 128 [00:04:17.000] response: { "responseRequired": false } -Info 129 [16:04:18.000] request: +Info 129 [00:04:18.000] request: { "seq": 0, "type": "request", @@ -2477,24 +2477,24 @@ FsWatchesRecursive:: /user/username/projects/myproject/random: {} -Info 130 [16:04:19.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/main/main.ts 500 undefined WatchType: Closed Script info -Info 131 [16:04:20.000] Project '/user/username/projects/myproject/main/tsconfig.json' (Configured) -Info 131 [16:04:21.000] Files (3) +Info 130 [00:04:19.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/main/main.ts 500 undefined WatchType: Closed Script info +Info 131 [00:04:20.000] Project '/user/username/projects/myproject/main/tsconfig.json' (Configured) +Info 131 [00:04:21.000] Files (3) -Info 131 [16:04:22.000] ----------------------------------------------- -Info 131 [16:04:23.000] Project '/user/username/projects/myproject/dependency/tsconfig.json' (Configured) -Info 131 [16:04:24.000] Files (2) +Info 131 [00:04:22.000] ----------------------------------------------- +Info 131 [00:04:23.000] Project '/user/username/projects/myproject/dependency/tsconfig.json' (Configured) +Info 131 [00:04:24.000] Files (2) -Info 131 [16:04:25.000] ----------------------------------------------- -Info 131 [16:04:26.000] Project '/user/username/projects/myproject/random/tsconfig.json' (Configured) -Info 131 [16:04:27.000] Files (2) +Info 131 [00:04:25.000] ----------------------------------------------- +Info 131 [00:04:26.000] Project '/user/username/projects/myproject/random/tsconfig.json' (Configured) +Info 131 [00:04:27.000] Files (2) -Info 131 [16:04:28.000] ----------------------------------------------- -Info 131 [16:04:29.000] Open files: -Info 131 [16:04:30.000] FileName: /user/username/projects/myproject/dependency/FnS.ts ProjectRootPath: undefined -Info 131 [16:04:31.000] Projects: /user/username/projects/myproject/dependency/tsconfig.json -Info 131 [16:04:32.000] FileName: /user/username/projects/myproject/random/random.ts ProjectRootPath: undefined -Info 131 [16:04:33.000] Projects: /user/username/projects/myproject/random/tsconfig.json +Info 131 [00:04:28.000] ----------------------------------------------- +Info 131 [00:04:29.000] Open files: +Info 131 [00:04:30.000] FileName: /user/username/projects/myproject/dependency/FnS.ts ProjectRootPath: undefined +Info 131 [00:04:31.000] Projects: /user/username/projects/myproject/dependency/tsconfig.json +Info 131 [00:04:32.000] FileName: /user/username/projects/myproject/random/random.ts ProjectRootPath: undefined +Info 131 [00:04:33.000] Projects: /user/username/projects/myproject/random/tsconfig.json After request PolledWatches:: @@ -2533,11 +2533,11 @@ FsWatchesRecursive:: /user/username/projects/myproject/random: {} -Info 131 [16:04:34.000] response: +Info 131 [00:04:34.000] response: { "responseRequired": false } -Info 132 [16:04:35.000] request: +Info 132 [00:04:35.000] request: { "seq": 0, "type": "request", @@ -2584,22 +2584,22 @@ FsWatchesRecursive:: /user/username/projects/myproject/random: {} -Info 133 [16:04:36.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/dependency/FnS.ts 500 undefined WatchType: Closed Script info -Info 134 [16:04:37.000] Project '/user/username/projects/myproject/main/tsconfig.json' (Configured) -Info 134 [16:04:38.000] Files (3) +Info 133 [00:04:36.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/dependency/FnS.ts 500 undefined WatchType: Closed Script info +Info 134 [00:04:37.000] Project '/user/username/projects/myproject/main/tsconfig.json' (Configured) +Info 134 [00:04:38.000] Files (3) -Info 134 [16:04:39.000] ----------------------------------------------- -Info 134 [16:04:40.000] Project '/user/username/projects/myproject/dependency/tsconfig.json' (Configured) -Info 134 [16:04:41.000] Files (2) +Info 134 [00:04:39.000] ----------------------------------------------- +Info 134 [00:04:40.000] Project '/user/username/projects/myproject/dependency/tsconfig.json' (Configured) +Info 134 [00:04:41.000] Files (2) -Info 134 [16:04:42.000] ----------------------------------------------- -Info 134 [16:04:43.000] Project '/user/username/projects/myproject/random/tsconfig.json' (Configured) -Info 134 [16:04:44.000] Files (2) +Info 134 [00:04:42.000] ----------------------------------------------- +Info 134 [00:04:43.000] Project '/user/username/projects/myproject/random/tsconfig.json' (Configured) +Info 134 [00:04:44.000] Files (2) -Info 134 [16:04:45.000] ----------------------------------------------- -Info 134 [16:04:46.000] Open files: -Info 134 [16:04:47.000] FileName: /user/username/projects/myproject/random/random.ts ProjectRootPath: undefined -Info 134 [16:04:48.000] Projects: /user/username/projects/myproject/random/tsconfig.json +Info 134 [00:04:45.000] ----------------------------------------------- +Info 134 [00:04:46.000] Open files: +Info 134 [00:04:47.000] FileName: /user/username/projects/myproject/random/random.ts ProjectRootPath: undefined +Info 134 [00:04:48.000] Projects: /user/username/projects/myproject/random/tsconfig.json After request PolledWatches:: @@ -2640,11 +2640,11 @@ FsWatchesRecursive:: /user/username/projects/myproject/random: {} -Info 134 [16:04:49.000] response: +Info 134 [00:04:49.000] response: { "responseRequired": false } -Info 135 [16:04:50.000] request: +Info 135 [00:04:50.000] request: { "seq": 0, "type": "request", @@ -2693,20 +2693,20 @@ FsWatchesRecursive:: /user/username/projects/myproject/random: {} -Info 136 [16:04:51.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/random/random.ts 500 undefined WatchType: Closed Script info -Info 137 [16:04:52.000] Project '/user/username/projects/myproject/main/tsconfig.json' (Configured) -Info 137 [16:04:53.000] Files (3) +Info 136 [00:04:51.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/random/random.ts 500 undefined WatchType: Closed Script info +Info 137 [00:04:52.000] Project '/user/username/projects/myproject/main/tsconfig.json' (Configured) +Info 137 [00:04:53.000] Files (3) -Info 137 [16:04:54.000] ----------------------------------------------- -Info 137 [16:04:55.000] Project '/user/username/projects/myproject/dependency/tsconfig.json' (Configured) -Info 137 [16:04:56.000] Files (2) +Info 137 [00:04:54.000] ----------------------------------------------- +Info 137 [00:04:55.000] Project '/user/username/projects/myproject/dependency/tsconfig.json' (Configured) +Info 137 [00:04:56.000] Files (2) -Info 137 [16:04:57.000] ----------------------------------------------- -Info 137 [16:04:58.000] Project '/user/username/projects/myproject/random/tsconfig.json' (Configured) -Info 137 [16:04:59.000] Files (2) +Info 137 [00:04:57.000] ----------------------------------------------- +Info 137 [00:04:58.000] Project '/user/username/projects/myproject/random/tsconfig.json' (Configured) +Info 137 [00:04:59.000] Files (2) -Info 137 [16:05:00.000] ----------------------------------------------- -Info 137 [16:05:01.000] Open files: +Info 137 [00:05:00.000] ----------------------------------------------- +Info 137 [00:05:01.000] Open files: After request PolledWatches:: @@ -2749,11 +2749,11 @@ FsWatchesRecursive:: /user/username/projects/myproject/random: {} -Info 137 [16:05:02.000] response: +Info 137 [00:05:02.000] response: { "responseRequired": false } -Info 138 [16:05:03.000] request: +Info 138 [00:05:03.000] request: { "seq": 0, "type": "request", @@ -2804,12 +2804,12 @@ FsWatchesRecursive:: /user/username/projects/myproject/random: {} -Info 139 [16:05:04.000] FileWatcher:: Close:: WatchInfo: /user/username/projects/myproject/random/random.ts 500 undefined WatchType: Closed Script info -Info 140 [16:05:05.000] Search path: /user/username/projects/myproject/random -Info 141 [16:05:06.000] For info: /user/username/projects/myproject/random/random.ts :: Config file name: /user/username/projects/myproject/random/tsconfig.json -Info 142 [16:05:07.000] `remove Project:: -Info 143 [16:05:08.000] Project '/user/username/projects/myproject/main/tsconfig.json' (Configured) -Info 144 [16:05:09.000] Files (3) +Info 139 [00:05:04.000] FileWatcher:: Close:: WatchInfo: /user/username/projects/myproject/random/random.ts 500 undefined WatchType: Closed Script info +Info 140 [00:05:05.000] Search path: /user/username/projects/myproject/random +Info 141 [00:05:06.000] For info: /user/username/projects/myproject/random/random.ts :: Config file name: /user/username/projects/myproject/random/tsconfig.json +Info 142 [00:05:07.000] `remove Project:: +Info 143 [00:05:08.000] Project '/user/username/projects/myproject/main/tsconfig.json' (Configured) +Info 144 [00:05:09.000] Files (3) /a/lib/lib.d.ts /user/username/projects/myproject/decls/fns.d.ts /user/username/projects/myproject/main/main.ts @@ -2822,19 +2822,19 @@ Info 144 [16:05:09.000] Files (3) main.ts Matched by default include pattern '**/*' -Info 145 [16:05:10.000] ----------------------------------------------- -Info 146 [16:05:11.000] DirectoryWatcher:: Close:: WatchInfo: /user/username/projects/myproject/main 1 undefined Config: /user/username/projects/myproject/main/tsconfig.json WatchType: Wild card directory -Info 147 [16:05:12.000] 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 148 [16:05:13.000] FileWatcher:: Close:: WatchInfo: /user/username/projects/myproject/main/tsconfig.json 2000 undefined Project: /user/username/projects/myproject/main/tsconfig.json WatchType: Config file -Info 149 [16:05:14.000] DirectoryWatcher:: Close:: WatchInfo: /user/username/projects/myproject/decls 1 undefined Project: /user/username/projects/myproject/main/tsconfig.json WatchType: Failed Lookup Locations -Info 150 [16:05:15.000] 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 151 [16:05:16.000] 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 152 [16:05:17.000] 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 153 [16:05:18.000] DirectoryWatcher:: Close:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/main/tsconfig.json WatchType: Type roots -Info 154 [16:05:19.000] 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 155 [16:05:20.000] `remove Project:: -Info 156 [16:05:21.000] Project '/user/username/projects/myproject/dependency/tsconfig.json' (Configured) -Info 157 [16:05:22.000] Files (2) +Info 145 [00:05:10.000] ----------------------------------------------- +Info 146 [00:05:11.000] DirectoryWatcher:: Close:: WatchInfo: /user/username/projects/myproject/main 1 undefined Config: /user/username/projects/myproject/main/tsconfig.json WatchType: Wild card directory +Info 147 [00:05:12.000] 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 148 [00:05:13.000] FileWatcher:: Close:: WatchInfo: /user/username/projects/myproject/main/tsconfig.json 2000 undefined Project: /user/username/projects/myproject/main/tsconfig.json WatchType: Config file +Info 149 [00:05:14.000] DirectoryWatcher:: Close:: WatchInfo: /user/username/projects/myproject/decls 1 undefined Project: /user/username/projects/myproject/main/tsconfig.json WatchType: Failed Lookup Locations +Info 150 [00:05:15.000] 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 151 [00:05:16.000] 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 152 [00:05:17.000] 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 153 [00:05:18.000] DirectoryWatcher:: Close:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/main/tsconfig.json WatchType: Type roots +Info 154 [00:05:19.000] 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 155 [00:05:20.000] `remove Project:: +Info 156 [00:05:21.000] Project '/user/username/projects/myproject/dependency/tsconfig.json' (Configured) +Info 157 [00:05:22.000] Files (2) /a/lib/lib.d.ts /user/username/projects/myproject/dependency/FnS.ts @@ -2844,26 +2844,26 @@ Info 157 [16:05:22.000] Files (2) FnS.ts Matched by default include pattern '**/*' -Info 158 [16:05:23.000] ----------------------------------------------- -Info 159 [16:05:24.000] DirectoryWatcher:: Close:: WatchInfo: /user/username/projects/myproject/dependency 1 undefined Config: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Wild card directory -Info 160 [16:05:25.000] 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 161 [16:05:26.000] FileWatcher:: Close:: WatchInfo: /user/username/projects/myproject/dependency/tsconfig.json 2000 undefined Project: /user/username/projects/myproject/main/tsconfig.json WatchType: Config file -Info 162 [16:05:27.000] 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 163 [16:05:28.000] 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 164 [16:05:29.000] DirectoryWatcher:: Close:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Type roots -Info 165 [16:05:30.000] 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 166 [16:05:31.000] 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 167 [16:05:32.000] FileWatcher:: Close:: WatchInfo: /user/username/projects/myproject/main/main.ts 500 undefined WatchType: Closed Script info -Info 168 [16:05:33.000] FileWatcher:: Close:: WatchInfo: /user/username/projects/myproject/dependency/FnS.ts 500 undefined WatchType: Closed Script info -Info 169 [16:05:34.000] FileWatcher:: Close:: WatchInfo: /user/username/projects/myproject/decls/fns.d.ts 500 undefined WatchType: Closed Script info -Info 170 [16:05:35.000] FileWatcher:: Close:: WatchInfo: /user/username/projects/myproject/decls/FnS.d.ts.map 500 undefined WatchType: Closed Script info -Info 171 [16:05:36.000] Project '/user/username/projects/myproject/random/tsconfig.json' (Configured) -Info 171 [16:05:37.000] Files (2) - -Info 171 [16:05:38.000] ----------------------------------------------- -Info 171 [16:05:39.000] Open files: -Info 171 [16:05:40.000] FileName: /user/username/projects/myproject/random/random.ts ProjectRootPath: undefined -Info 171 [16:05:41.000] Projects: /user/username/projects/myproject/random/tsconfig.json +Info 158 [00:05:23.000] ----------------------------------------------- +Info 159 [00:05:24.000] DirectoryWatcher:: Close:: WatchInfo: /user/username/projects/myproject/dependency 1 undefined Config: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Wild card directory +Info 160 [00:05:25.000] 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 161 [00:05:26.000] FileWatcher:: Close:: WatchInfo: /user/username/projects/myproject/dependency/tsconfig.json 2000 undefined Project: /user/username/projects/myproject/main/tsconfig.json WatchType: Config file +Info 162 [00:05:27.000] 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 163 [00:05:28.000] 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 164 [00:05:29.000] DirectoryWatcher:: Close:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Type roots +Info 165 [00:05:30.000] 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 166 [00:05:31.000] 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 167 [00:05:32.000] FileWatcher:: Close:: WatchInfo: /user/username/projects/myproject/main/main.ts 500 undefined WatchType: Closed Script info +Info 168 [00:05:33.000] FileWatcher:: Close:: WatchInfo: /user/username/projects/myproject/dependency/FnS.ts 500 undefined WatchType: Closed Script info +Info 169 [00:05:34.000] FileWatcher:: Close:: WatchInfo: /user/username/projects/myproject/decls/fns.d.ts 500 undefined WatchType: Closed Script info +Info 170 [00:05:35.000] FileWatcher:: Close:: WatchInfo: /user/username/projects/myproject/decls/FnS.d.ts.map 500 undefined WatchType: Closed Script info +Info 171 [00:05:36.000] Project '/user/username/projects/myproject/random/tsconfig.json' (Configured) +Info 171 [00:05:37.000] Files (2) + +Info 171 [00:05:38.000] ----------------------------------------------- +Info 171 [00:05:39.000] Open files: +Info 171 [00:05:40.000] FileName: /user/username/projects/myproject/random/random.ts ProjectRootPath: undefined +Info 171 [00:05:41.000] Projects: /user/username/projects/myproject/random/tsconfig.json After request PolledWatches:: @@ -2882,7 +2882,7 @@ FsWatchesRecursive:: /user/username/projects/myproject/random: {} -Info 171 [16:05:42.000] response: +Info 171 [00:05:42.000] response: { "responseRequired": false } \ No newline at end of file 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 50966ccc13b36..67b6f85f8d937 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 @@ -1,5 +1,5 @@ -Info 0 [16:01:03.000] Provided types map file "/a/lib/typesMap.json" doesn't exist -Info 1 [16:01:04.000] request: +Info 0 [00:01:03.000] Provided types map file "/a/lib/typesMap.json" doesn't exist +Info 1 [00:01:04.000] request: { "seq": 0, "type": "request", @@ -200,11 +200,11 @@ FsWatches:: FsWatchesRecursive:: -Info 2 [16:01:05.000] Search path: /user/username/projects/myproject/main -Info 3 [16:01:06.000] For info: /user/username/projects/myproject/main/main.ts :: Config file name: /user/username/projects/myproject/main/tsconfig.json -Info 4 [16:01:07.000] Creating configuration project /user/username/projects/myproject/main/tsconfig.json -Info 5 [16:01:08.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/main/tsconfig.json 2000 undefined Project: /user/username/projects/myproject/main/tsconfig.json WatchType: Config file -Info 6 [16:01:09.000] Config: /user/username/projects/myproject/main/tsconfig.json : { +Info 2 [00:01:05.000] Search path: /user/username/projects/myproject/main +Info 3 [00:01:06.000] For info: /user/username/projects/myproject/main/main.ts :: Config file name: /user/username/projects/myproject/main/tsconfig.json +Info 4 [00:01:07.000] Creating configuration project /user/username/projects/myproject/main/tsconfig.json +Info 5 [00:01:08.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/main/tsconfig.json 2000 undefined Project: /user/username/projects/myproject/main/tsconfig.json WatchType: Config file +Info 6 [00:01:09.000] Config: /user/username/projects/myproject/main/tsconfig.json : { "rootNames": [ "/user/username/projects/myproject/main/main.ts" ], @@ -221,11 +221,11 @@ Info 6 [16:01:09.000] Config: /user/username/projects/myproject/main/tsconfig } ] } -Info 7 [16:01:10.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/main 1 undefined Config: /user/username/projects/myproject/main/tsconfig.json WatchType: Wild card directory -Info 8 [16:01:11.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/main 1 undefined Config: /user/username/projects/myproject/main/tsconfig.json WatchType: Wild card directory -Info 9 [16:01:12.000] Plugins were requested but not running in environment that supports 'require'. Nothing will be loaded -Info 10 [16:01:13.000] Starting updateGraphWorker: Project: /user/username/projects/myproject/main/tsconfig.json -Info 11 [16:01:14.000] Config: /user/username/projects/myproject/dependency/tsconfig.json : { +Info 7 [00:01:10.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/main 1 undefined Config: /user/username/projects/myproject/main/tsconfig.json WatchType: Wild card directory +Info 8 [00:01:11.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/main 1 undefined Config: /user/username/projects/myproject/main/tsconfig.json WatchType: Wild card directory +Info 9 [00:01:12.000] Plugins were requested but not running in environment that supports 'require'. Nothing will be loaded +Info 10 [00:01:13.000] Starting updateGraphWorker: Project: /user/username/projects/myproject/main/tsconfig.json +Info 11 [00:01:14.000] Config: /user/username/projects/myproject/dependency/tsconfig.json : { "rootNames": [ "/user/username/projects/myproject/dependency/FnS.ts" ], @@ -236,20 +236,20 @@ Info 11 [16:01:14.000] Config: /user/username/projects/myproject/dependency/ts "configFilePath": "/user/username/projects/myproject/dependency/tsconfig.json" } } -Info 12 [16:01:15.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/dependency/tsconfig.json 2000 undefined Project: /user/username/projects/myproject/main/tsconfig.json WatchType: Config file -Info 13 [16:01:16.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/dependency 1 undefined Config: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Wild card directory -Info 14 [16:01:17.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/dependency 1 undefined Config: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Wild card directory -Info 15 [16:01:18.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/decls 1 undefined Project: /user/username/projects/myproject/main/tsconfig.json WatchType: Failed Lookup Locations -Info 16 [16:01:19.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/decls 1 undefined Project: /user/username/projects/myproject/main/tsconfig.json WatchType: Failed Lookup Locations -Info 17 [16:01:20.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/decls/fns.d.ts 500 undefined WatchType: Closed Script info -Info 18 [16:01:21.000] FileWatcher:: Added:: WatchInfo: /a/lib/lib.d.ts 500 undefined WatchType: Closed Script info -Info 19 [16:01:22.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/main/node_modules/@types 1 undefined Project: /user/username/projects/myproject/main/tsconfig.json WatchType: Type roots -Info 20 [16:01:23.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/main/node_modules/@types 1 undefined Project: /user/username/projects/myproject/main/tsconfig.json WatchType: Type roots -Info 21 [16:01:24.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/main/tsconfig.json WatchType: Type roots -Info 22 [16:01:25.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/main/tsconfig.json WatchType: Type roots -Info 23 [16:01:26.000] Finishing updateGraphWorker: Project: /user/username/projects/myproject/main/tsconfig.json Version: 1 structureChanged: true structureIsReused:: Not Elapsed:: *ms -Info 24 [16:01:27.000] Project '/user/username/projects/myproject/main/tsconfig.json' (Configured) -Info 25 [16:01:28.000] Files (3) +Info 12 [00:01:15.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/dependency/tsconfig.json 2000 undefined Project: /user/username/projects/myproject/main/tsconfig.json WatchType: Config file +Info 13 [00:01:16.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/dependency 1 undefined Config: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Wild card directory +Info 14 [00:01:17.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/dependency 1 undefined Config: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Wild card directory +Info 15 [00:01:18.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/decls 1 undefined Project: /user/username/projects/myproject/main/tsconfig.json WatchType: Failed Lookup Locations +Info 16 [00:01:19.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/decls 1 undefined Project: /user/username/projects/myproject/main/tsconfig.json WatchType: Failed Lookup Locations +Info 17 [00:01:20.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/decls/fns.d.ts 500 undefined WatchType: Closed Script info +Info 18 [00:01:21.000] FileWatcher:: Added:: WatchInfo: /a/lib/lib.d.ts 500 undefined WatchType: Closed Script info +Info 19 [00:01:22.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/main/node_modules/@types 1 undefined Project: /user/username/projects/myproject/main/tsconfig.json WatchType: Type roots +Info 20 [00:01:23.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/main/node_modules/@types 1 undefined Project: /user/username/projects/myproject/main/tsconfig.json WatchType: Type roots +Info 21 [00:01:24.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/main/tsconfig.json WatchType: Type roots +Info 22 [00:01:25.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/main/tsconfig.json WatchType: Type roots +Info 23 [00:01:26.000] Finishing updateGraphWorker: Project: /user/username/projects/myproject/main/tsconfig.json Version: 1 structureChanged: true structureIsReused:: Not Elapsed:: *ms +Info 24 [00:01:27.000] Project '/user/username/projects/myproject/main/tsconfig.json' (Configured) +Info 25 [00:01:28.000] Files (3) /a/lib/lib.d.ts /user/username/projects/myproject/decls/fns.d.ts /user/username/projects/myproject/main/main.ts @@ -262,16 +262,16 @@ Info 25 [16:01:28.000] Files (3) main.ts Matched by default include pattern '**/*' -Info 26 [16:01:29.000] ----------------------------------------------- -Info 27 [16:01:30.000] Search path: /user/username/projects/myproject/main -Info 28 [16:01:31.000] For info: /user/username/projects/myproject/main/tsconfig.json :: No config files found. -Info 29 [16:01:32.000] Project '/user/username/projects/myproject/main/tsconfig.json' (Configured) -Info 29 [16:01:33.000] Files (3) +Info 26 [00:01:29.000] ----------------------------------------------- +Info 27 [00:01:30.000] Search path: /user/username/projects/myproject/main +Info 28 [00:01:31.000] For info: /user/username/projects/myproject/main/tsconfig.json :: No config files found. +Info 29 [00:01:32.000] Project '/user/username/projects/myproject/main/tsconfig.json' (Configured) +Info 29 [00:01:33.000] Files (3) -Info 29 [16:01:34.000] ----------------------------------------------- -Info 29 [16:01:35.000] Open files: -Info 29 [16:01:36.000] FileName: /user/username/projects/myproject/main/main.ts ProjectRootPath: undefined -Info 29 [16:01:37.000] Projects: /user/username/projects/myproject/main/tsconfig.json +Info 29 [00:01:34.000] ----------------------------------------------- +Info 29 [00:01:35.000] Open files: +Info 29 [00:01:36.000] FileName: /user/username/projects/myproject/main/main.ts ProjectRootPath: undefined +Info 29 [00:01:37.000] Projects: /user/username/projects/myproject/main/tsconfig.json After request PolledWatches:: @@ -298,11 +298,11 @@ FsWatchesRecursive:: /user/username/projects/myproject/decls: {} -Info 29 [16:01:38.000] response: +Info 29 [00:01:38.000] response: { "responseRequired": false } -Info 30 [16:01:39.000] request: +Info 30 [00:01:39.000] request: { "seq": 0, "type": "request", @@ -337,18 +337,18 @@ FsWatchesRecursive:: /user/username/projects/myproject/decls: {} -Info 31 [16:01:40.000] Search path: /user/username/projects/myproject/dependency -Info 32 [16:01:41.000] For info: /user/username/projects/myproject/dependency/FnS.ts :: Config file name: /user/username/projects/myproject/dependency/tsconfig.json -Info 33 [16:01:42.000] Creating configuration project /user/username/projects/myproject/dependency/tsconfig.json -Info 34 [16:01:43.000] Plugins were requested but not running in environment that supports 'require'. Nothing will be loaded -Info 35 [16:01:44.000] Starting updateGraphWorker: Project: /user/username/projects/myproject/dependency/tsconfig.json -Info 36 [16:01:45.000] 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 37 [16:01:46.000] 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 38 [16:01:47.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Type roots -Info 39 [16:01:48.000] 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 40 [16:01:49.000] Finishing updateGraphWorker: Project: /user/username/projects/myproject/dependency/tsconfig.json Version: 1 structureChanged: true structureIsReused:: Not Elapsed:: *ms -Info 41 [16:01:50.000] Project '/user/username/projects/myproject/dependency/tsconfig.json' (Configured) -Info 42 [16:01:51.000] Files (2) +Info 31 [00:01:40.000] Search path: /user/username/projects/myproject/dependency +Info 32 [00:01:41.000] For info: /user/username/projects/myproject/dependency/FnS.ts :: Config file name: /user/username/projects/myproject/dependency/tsconfig.json +Info 33 [00:01:42.000] Creating configuration project /user/username/projects/myproject/dependency/tsconfig.json +Info 34 [00:01:43.000] Plugins were requested but not running in environment that supports 'require'. Nothing will be loaded +Info 35 [00:01:44.000] Starting updateGraphWorker: Project: /user/username/projects/myproject/dependency/tsconfig.json +Info 36 [00:01:45.000] 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 37 [00:01:46.000] 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 38 [00:01:47.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Type roots +Info 39 [00:01:48.000] 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 40 [00:01:49.000] Finishing updateGraphWorker: Project: /user/username/projects/myproject/dependency/tsconfig.json Version: 1 structureChanged: true structureIsReused:: Not Elapsed:: *ms +Info 41 [00:01:50.000] Project '/user/username/projects/myproject/dependency/tsconfig.json' (Configured) +Info 42 [00:01:51.000] Files (2) /a/lib/lib.d.ts /user/username/projects/myproject/dependency/FnS.ts @@ -358,22 +358,22 @@ Info 42 [16:01:51.000] Files (2) FnS.ts Matched by default include pattern '**/*' -Info 43 [16:01:52.000] ----------------------------------------------- -Info 44 [16:01:53.000] Search path: /user/username/projects/myproject/dependency -Info 45 [16:01:54.000] For info: /user/username/projects/myproject/dependency/tsconfig.json :: No config files found. -Info 46 [16:01:55.000] Project '/user/username/projects/myproject/main/tsconfig.json' (Configured) -Info 46 [16:01:56.000] Files (3) - -Info 46 [16:01:57.000] ----------------------------------------------- -Info 46 [16:01:58.000] Project '/user/username/projects/myproject/dependency/tsconfig.json' (Configured) -Info 46 [16:01:59.000] Files (2) - -Info 46 [16:02:00.000] ----------------------------------------------- -Info 46 [16:02:01.000] Open files: -Info 46 [16:02:02.000] FileName: /user/username/projects/myproject/main/main.ts ProjectRootPath: undefined -Info 46 [16:02:03.000] Projects: /user/username/projects/myproject/main/tsconfig.json -Info 46 [16:02:04.000] FileName: /user/username/projects/myproject/dependency/FnS.ts ProjectRootPath: undefined -Info 46 [16:02:05.000] Projects: /user/username/projects/myproject/dependency/tsconfig.json +Info 43 [00:01:52.000] ----------------------------------------------- +Info 44 [00:01:53.000] Search path: /user/username/projects/myproject/dependency +Info 45 [00:01:54.000] For info: /user/username/projects/myproject/dependency/tsconfig.json :: No config files found. +Info 46 [00:01:55.000] Project '/user/username/projects/myproject/main/tsconfig.json' (Configured) +Info 46 [00:01:56.000] Files (3) + +Info 46 [00:01:57.000] ----------------------------------------------- +Info 46 [00:01:58.000] Project '/user/username/projects/myproject/dependency/tsconfig.json' (Configured) +Info 46 [00:01:59.000] Files (2) + +Info 46 [00:02:00.000] ----------------------------------------------- +Info 46 [00:02:01.000] Open files: +Info 46 [00:02:02.000] FileName: /user/username/projects/myproject/main/main.ts ProjectRootPath: undefined +Info 46 [00:02:03.000] Projects: /user/username/projects/myproject/main/tsconfig.json +Info 46 [00:02:04.000] FileName: /user/username/projects/myproject/dependency/FnS.ts ProjectRootPath: undefined +Info 46 [00:02:05.000] Projects: /user/username/projects/myproject/dependency/tsconfig.json After request PolledWatches:: @@ -402,11 +402,11 @@ FsWatchesRecursive:: /user/username/projects/myproject/decls: {} -Info 46 [16:02:06.000] response: +Info 46 [00:02:06.000] response: { "responseRequired": false } -Info 47 [16:02:07.000] request: +Info 47 [00:02:07.000] request: { "seq": 0, "type": "request", @@ -443,11 +443,11 @@ FsWatchesRecursive:: /user/username/projects/myproject/decls: {} -Info 48 [16:02:08.000] Search path: /user/username/projects/myproject/random -Info 49 [16:02:09.000] For info: /user/username/projects/myproject/random/random.ts :: Config file name: /user/username/projects/myproject/random/tsconfig.json -Info 50 [16:02:10.000] Creating configuration project /user/username/projects/myproject/random/tsconfig.json -Info 51 [16:02:11.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/random/tsconfig.json 2000 undefined Project: /user/username/projects/myproject/random/tsconfig.json WatchType: Config file -Info 52 [16:02:12.000] Config: /user/username/projects/myproject/random/tsconfig.json : { +Info 48 [00:02:08.000] Search path: /user/username/projects/myproject/random +Info 49 [00:02:09.000] For info: /user/username/projects/myproject/random/random.ts :: Config file name: /user/username/projects/myproject/random/tsconfig.json +Info 50 [00:02:10.000] Creating configuration project /user/username/projects/myproject/random/tsconfig.json +Info 51 [00:02:11.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/random/tsconfig.json 2000 undefined Project: /user/username/projects/myproject/random/tsconfig.json WatchType: Config file +Info 52 [00:02:12.000] Config: /user/username/projects/myproject/random/tsconfig.json : { "rootNames": [ "/user/username/projects/myproject/random/random.ts" ], @@ -455,17 +455,17 @@ Info 52 [16:02:12.000] Config: /user/username/projects/myproject/random/tsconf "configFilePath": "/user/username/projects/myproject/random/tsconfig.json" } } -Info 53 [16:02:13.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/random 1 undefined Config: /user/username/projects/myproject/random/tsconfig.json WatchType: Wild card directory -Info 54 [16:02:14.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/random 1 undefined Config: /user/username/projects/myproject/random/tsconfig.json WatchType: Wild card directory -Info 55 [16:02:15.000] Plugins were requested but not running in environment that supports 'require'. Nothing will be loaded -Info 56 [16:02:16.000] Starting updateGraphWorker: Project: /user/username/projects/myproject/random/tsconfig.json -Info 57 [16:02:17.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/random/node_modules/@types 1 undefined Project: /user/username/projects/myproject/random/tsconfig.json WatchType: Type roots -Info 58 [16:02:18.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/random/node_modules/@types 1 undefined Project: /user/username/projects/myproject/random/tsconfig.json WatchType: Type roots -Info 59 [16:02:19.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/random/tsconfig.json WatchType: Type roots -Info 60 [16:02:20.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/random/tsconfig.json WatchType: Type roots -Info 61 [16:02:21.000] Finishing updateGraphWorker: Project: /user/username/projects/myproject/random/tsconfig.json Version: 1 structureChanged: true structureIsReused:: Not Elapsed:: *ms -Info 62 [16:02:22.000] Project '/user/username/projects/myproject/random/tsconfig.json' (Configured) -Info 63 [16:02:23.000] Files (2) +Info 53 [00:02:13.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/random 1 undefined Config: /user/username/projects/myproject/random/tsconfig.json WatchType: Wild card directory +Info 54 [00:02:14.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/random 1 undefined Config: /user/username/projects/myproject/random/tsconfig.json WatchType: Wild card directory +Info 55 [00:02:15.000] Plugins were requested but not running in environment that supports 'require'. Nothing will be loaded +Info 56 [00:02:16.000] Starting updateGraphWorker: Project: /user/username/projects/myproject/random/tsconfig.json +Info 57 [00:02:17.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/random/node_modules/@types 1 undefined Project: /user/username/projects/myproject/random/tsconfig.json WatchType: Type roots +Info 58 [00:02:18.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/random/node_modules/@types 1 undefined Project: /user/username/projects/myproject/random/tsconfig.json WatchType: Type roots +Info 59 [00:02:19.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/random/tsconfig.json WatchType: Type roots +Info 60 [00:02:20.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/random/tsconfig.json WatchType: Type roots +Info 61 [00:02:21.000] Finishing updateGraphWorker: Project: /user/username/projects/myproject/random/tsconfig.json Version: 1 structureChanged: true structureIsReused:: Not Elapsed:: *ms +Info 62 [00:02:22.000] Project '/user/username/projects/myproject/random/tsconfig.json' (Configured) +Info 63 [00:02:23.000] Files (2) /a/lib/lib.d.ts /user/username/projects/myproject/random/random.ts @@ -475,26 +475,26 @@ Info 63 [16:02:23.000] Files (2) random.ts Matched by default include pattern '**/*' -Info 64 [16:02:24.000] ----------------------------------------------- -Info 65 [16:02:25.000] Project '/user/username/projects/myproject/main/tsconfig.json' (Configured) -Info 65 [16:02:26.000] Files (3) - -Info 65 [16:02:27.000] ----------------------------------------------- -Info 65 [16:02:28.000] Project '/user/username/projects/myproject/dependency/tsconfig.json' (Configured) -Info 65 [16:02:29.000] Files (2) - -Info 65 [16:02:30.000] ----------------------------------------------- -Info 65 [16:02:31.000] Project '/user/username/projects/myproject/random/tsconfig.json' (Configured) -Info 65 [16:02:32.000] Files (2) - -Info 65 [16:02:33.000] ----------------------------------------------- -Info 65 [16:02:34.000] Open files: -Info 65 [16:02:35.000] FileName: /user/username/projects/myproject/main/main.ts ProjectRootPath: undefined -Info 65 [16:02:36.000] Projects: /user/username/projects/myproject/main/tsconfig.json -Info 65 [16:02:37.000] FileName: /user/username/projects/myproject/dependency/FnS.ts ProjectRootPath: undefined -Info 65 [16:02:38.000] Projects: /user/username/projects/myproject/dependency/tsconfig.json -Info 65 [16:02:39.000] FileName: /user/username/projects/myproject/random/random.ts ProjectRootPath: undefined -Info 65 [16:02:40.000] Projects: /user/username/projects/myproject/random/tsconfig.json +Info 64 [00:02:24.000] ----------------------------------------------- +Info 65 [00:02:25.000] Project '/user/username/projects/myproject/main/tsconfig.json' (Configured) +Info 65 [00:02:26.000] Files (3) + +Info 65 [00:02:27.000] ----------------------------------------------- +Info 65 [00:02:28.000] Project '/user/username/projects/myproject/dependency/tsconfig.json' (Configured) +Info 65 [00:02:29.000] Files (2) + +Info 65 [00:02:30.000] ----------------------------------------------- +Info 65 [00:02:31.000] Project '/user/username/projects/myproject/random/tsconfig.json' (Configured) +Info 65 [00:02:32.000] Files (2) + +Info 65 [00:02:33.000] ----------------------------------------------- +Info 65 [00:02:34.000] Open files: +Info 65 [00:02:35.000] FileName: /user/username/projects/myproject/main/main.ts ProjectRootPath: undefined +Info 65 [00:02:36.000] Projects: /user/username/projects/myproject/main/tsconfig.json +Info 65 [00:02:37.000] FileName: /user/username/projects/myproject/dependency/FnS.ts ProjectRootPath: undefined +Info 65 [00:02:38.000] Projects: /user/username/projects/myproject/dependency/tsconfig.json +Info 65 [00:02:39.000] FileName: /user/username/projects/myproject/random/random.ts ProjectRootPath: undefined +Info 65 [00:02:40.000] Projects: /user/username/projects/myproject/random/tsconfig.json After request PolledWatches:: @@ -529,11 +529,11 @@ FsWatchesRecursive:: /user/username/projects/myproject/random: {} -Info 65 [16:02:41.000] response: +Info 65 [00:02:41.000] response: { "responseRequired": false } -Info 66 [16:02:42.000] request: +Info 66 [00:02:42.000] request: { "command": "definitionAndBoundSpan", "arguments": { @@ -578,7 +578,7 @@ FsWatchesRecursive:: /user/username/projects/myproject/random: {} -Info 67 [16:02:43.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/decls/FnS.d.ts.map 500 undefined WatchType: Closed Script info +Info 67 [00:02:43.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/decls/FnS.d.ts.map 500 undefined WatchType: Closed Script info After request PolledWatches:: @@ -615,7 +615,7 @@ FsWatchesRecursive:: /user/username/projects/myproject/random: {} -Info 68 [16:02:44.000] response: +Info 68 [00:02:44.000] response: { "response": { "definitions": [ @@ -652,7 +652,7 @@ Info 68 [16:02:44.000] response: }, "responseRequired": true } -Info 69 [16:02:45.000] request: +Info 69 [00:02:45.000] request: { "command": "rename", "arguments": { @@ -699,8 +699,8 @@ FsWatchesRecursive:: /user/username/projects/myproject/random: {} -Info 70 [16:02:46.000] Search path: /user/username/projects/myproject/dependency -Info 71 [16:02:47.000] For info: /user/username/projects/myproject/dependency/FnS.ts :: Config file name: /user/username/projects/myproject/dependency/tsconfig.json +Info 70 [00:02:46.000] Search path: /user/username/projects/myproject/dependency +Info 71 [00:02:47.000] For info: /user/username/projects/myproject/dependency/FnS.ts :: Config file name: /user/username/projects/myproject/dependency/tsconfig.json After request PolledWatches:: @@ -737,7 +737,7 @@ FsWatchesRecursive:: /user/username/projects/myproject/random: {} -Info 72 [16:02:48.000] response: +Info 72 [00:02:48.000] response: { "response": { "info": { @@ -818,17 +818,17 @@ Info 72 [16:02:48.000] response: }, "responseRequired": true } -Info 73 [16:02:50.000] FileWatcher:: Triggered with /user/username/projects/myproject/decls/fns.d.ts 2:: WatchInfo: /user/username/projects/myproject/decls/fns.d.ts 500 undefined WatchType: Closed Script info -Info 74 [16:02:51.000] FileWatcher:: Close:: WatchInfo: /user/username/projects/myproject/decls/fns.d.ts 500 undefined WatchType: Closed Script info -Info 75 [16:02:52.000] Scheduled: /user/username/projects/myproject/main/tsconfig.json -Info 76 [16:02:53.000] Scheduled: *ensureProjectForOpenFiles* -Info 77 [16:02:54.000] Scheduled: /user/username/projects/myproject/dependency/tsconfig.json -Info 78 [16:02:55.000] Scheduled: *ensureProjectForOpenFiles*, Cancelled earlier one -Info 79 [16:02:56.000] Elapsed:: *ms FileWatcher:: Triggered with /user/username/projects/myproject/decls/fns.d.ts 2:: WatchInfo: /user/username/projects/myproject/decls/fns.d.ts 500 undefined WatchType: Closed Script info -Info 80 [16:02:57.000] DirectoryWatcher:: Triggered with /user/username/projects/myproject/decls/FnS.d.ts :: WatchInfo: /user/username/projects/myproject/decls 1 undefined Project: /user/username/projects/myproject/main/tsconfig.json WatchType: Failed Lookup Locations -Info 81 [16:02:58.000] Scheduled: /user/username/projects/myproject/main/tsconfig.jsonFailedLookupInvalidation -Info 82 [16:02:59.000] Elapsed:: *ms DirectoryWatcher:: Triggered with /user/username/projects/myproject/decls/FnS.d.ts :: WatchInfo: /user/username/projects/myproject/decls 1 undefined Project: /user/username/projects/myproject/main/tsconfig.json WatchType: Failed Lookup Locations -Info 83 [16:03:00.000] request: +Info 73 [00:02:50.000] FileWatcher:: Triggered with /user/username/projects/myproject/decls/fns.d.ts 2:: WatchInfo: /user/username/projects/myproject/decls/fns.d.ts 500 undefined WatchType: Closed Script info +Info 74 [00:02:51.000] FileWatcher:: Close:: WatchInfo: /user/username/projects/myproject/decls/fns.d.ts 500 undefined WatchType: Closed Script info +Info 75 [00:02:52.000] Scheduled: /user/username/projects/myproject/main/tsconfig.json +Info 76 [00:02:53.000] Scheduled: *ensureProjectForOpenFiles* +Info 77 [00:02:54.000] Scheduled: /user/username/projects/myproject/dependency/tsconfig.json +Info 78 [00:02:55.000] Scheduled: *ensureProjectForOpenFiles*, Cancelled earlier one +Info 79 [00:02:56.000] Elapsed:: *ms FileWatcher:: Triggered with /user/username/projects/myproject/decls/fns.d.ts 2:: WatchInfo: /user/username/projects/myproject/decls/fns.d.ts 500 undefined WatchType: Closed Script info +Info 80 [00:02:57.000] DirectoryWatcher:: Triggered with /user/username/projects/myproject/decls/FnS.d.ts :: WatchInfo: /user/username/projects/myproject/decls 1 undefined Project: /user/username/projects/myproject/main/tsconfig.json WatchType: Failed Lookup Locations +Info 81 [00:02:58.000] Scheduled: /user/username/projects/myproject/main/tsconfig.jsonFailedLookupInvalidation +Info 82 [00:02:59.000] Elapsed:: *ms DirectoryWatcher:: Triggered with /user/username/projects/myproject/decls/FnS.d.ts :: WatchInfo: /user/username/projects/myproject/decls 1 undefined Project: /user/username/projects/myproject/main/tsconfig.json WatchType: Failed Lookup Locations +Info 83 [00:03:00.000] request: { "command": "definitionAndBoundSpan", "arguments": { @@ -874,10 +874,10 @@ FsWatchesRecursive:: /user/username/projects/myproject/random: {} -Info 84 [16:03:01.000] Starting updateGraphWorker: Project: /user/username/projects/myproject/main/tsconfig.json -Info 85 [16:03:02.000] Finishing updateGraphWorker: Project: /user/username/projects/myproject/main/tsconfig.json Version: 2 structureChanged: true structureIsReused:: Not Elapsed:: *ms -Info 86 [16:03:03.000] Project '/user/username/projects/myproject/main/tsconfig.json' (Configured) -Info 87 [16:03:04.000] Files (2) +Info 84 [00:03:01.000] Starting updateGraphWorker: Project: /user/username/projects/myproject/main/tsconfig.json +Info 85 [00:03:02.000] Finishing updateGraphWorker: Project: /user/username/projects/myproject/main/tsconfig.json Version: 2 structureChanged: true structureIsReused:: Not Elapsed:: *ms +Info 86 [00:03:03.000] Project '/user/username/projects/myproject/main/tsconfig.json' (Configured) +Info 87 [00:03:04.000] Files (2) /a/lib/lib.d.ts /user/username/projects/myproject/main/main.ts @@ -887,7 +887,7 @@ Info 87 [16:03:04.000] Files (2) main.ts Matched by default include pattern '**/*' -Info 88 [16:03:05.000] ----------------------------------------------- +Info 88 [00:03:05.000] ----------------------------------------------- After request PolledWatches:: @@ -922,7 +922,7 @@ FsWatchesRecursive:: /user/username/projects/myproject/random: {} -Info 89 [16:03:06.000] response: +Info 89 [00:03:06.000] response: { "response": { "definitions": [ @@ -959,7 +959,7 @@ Info 89 [16:03:06.000] response: }, "responseRequired": true } -Info 90 [16:03:07.000] request: +Info 90 [00:03:07.000] request: { "command": "definitionAndBoundSpan", "arguments": { @@ -1038,7 +1038,7 @@ FsWatchesRecursive:: /user/username/projects/myproject/random: {} -Info 91 [16:03:08.000] response: +Info 91 [00:03:08.000] response: { "response": { "definitions": [ @@ -1075,7 +1075,7 @@ Info 91 [16:03:08.000] response: }, "responseRequired": true } -Info 92 [16:03:09.000] request: +Info 92 [00:03:09.000] request: { "command": "definitionAndBoundSpan", "arguments": { @@ -1154,7 +1154,7 @@ FsWatchesRecursive:: /user/username/projects/myproject/random: {} -Info 93 [16:03:10.000] response: +Info 93 [00:03:10.000] response: { "response": { "definitions": [ @@ -1191,7 +1191,7 @@ Info 93 [16:03:10.000] response: }, "responseRequired": true } -Info 94 [16:03:11.000] request: +Info 94 [00:03:11.000] request: { "command": "definitionAndBoundSpan", "arguments": { @@ -1270,7 +1270,7 @@ FsWatchesRecursive:: /user/username/projects/myproject/random: {} -Info 95 [16:03:12.000] response: +Info 95 [00:03:12.000] response: { "response": { "definitions": [ @@ -1307,7 +1307,7 @@ Info 95 [16:03:12.000] response: }, "responseRequired": true } -Info 96 [16:03:13.000] request: +Info 96 [00:03:13.000] request: { "command": "definitionAndBoundSpan", "arguments": { @@ -1386,7 +1386,7 @@ FsWatchesRecursive:: /user/username/projects/myproject/random: {} -Info 97 [16:03:14.000] response: +Info 97 [00:03:14.000] response: { "response": { "definitions": [ @@ -1423,7 +1423,7 @@ Info 97 [16:03:14.000] response: }, "responseRequired": true } -Info 98 [16:03:15.000] request: +Info 98 [00:03:15.000] request: { "command": "rename", "arguments": { @@ -1468,9 +1468,9 @@ FsWatchesRecursive:: /user/username/projects/myproject/random: {} -Info 99 [16:03:16.000] Starting updateGraphWorker: Project: /user/username/projects/myproject/dependency/tsconfig.json -Info 100 [16:03:17.000] Finishing updateGraphWorker: Project: /user/username/projects/myproject/dependency/tsconfig.json Version: 2 structureChanged: false structureIsReused:: Not Elapsed:: *ms -Info 101 [16:03:18.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/decls/FnS.d.ts 2000 undefined Project: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Missing generated file +Info 99 [00:03:16.000] Starting updateGraphWorker: Project: /user/username/projects/myproject/dependency/tsconfig.json +Info 100 [00:03:17.000] Finishing updateGraphWorker: Project: /user/username/projects/myproject/dependency/tsconfig.json Version: 2 structureChanged: false structureIsReused:: Not Elapsed:: *ms +Info 101 [00:03:18.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/decls/FnS.d.ts 2000 undefined Project: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Missing generated file After request PolledWatches:: @@ -1507,7 +1507,7 @@ FsWatchesRecursive:: /user/username/projects/myproject/random: {} -Info 102 [16:03:19.000] response: +Info 102 [00:03:19.000] response: { "response": { "info": { @@ -1555,7 +1555,7 @@ Info 102 [16:03:19.000] response: }, "responseRequired": true } -Info 103 [16:03:20.000] request: +Info 103 [00:03:20.000] request: { "command": "rename", "arguments": { @@ -1638,7 +1638,7 @@ FsWatchesRecursive:: /user/username/projects/myproject/random: {} -Info 104 [16:03:21.000] response: +Info 104 [00:03:21.000] response: { "response": { "info": { @@ -1686,7 +1686,7 @@ Info 104 [16:03:21.000] response: }, "responseRequired": true } -Info 105 [16:03:22.000] request: +Info 105 [00:03:22.000] request: { "command": "rename", "arguments": { @@ -1769,7 +1769,7 @@ FsWatchesRecursive:: /user/username/projects/myproject/random: {} -Info 106 [16:03:23.000] response: +Info 106 [00:03:23.000] response: { "response": { "info": { @@ -1817,7 +1817,7 @@ Info 106 [16:03:23.000] response: }, "responseRequired": true } -Info 107 [16:03:24.000] request: +Info 107 [00:03:24.000] request: { "command": "rename", "arguments": { @@ -1900,7 +1900,7 @@ FsWatchesRecursive:: /user/username/projects/myproject/random: {} -Info 108 [16:03:25.000] response: +Info 108 [00:03:25.000] response: { "response": { "info": { @@ -1948,7 +1948,7 @@ Info 108 [16:03:25.000] response: }, "responseRequired": true } -Info 109 [16:03:26.000] request: +Info 109 [00:03:26.000] request: { "command": "rename", "arguments": { @@ -2031,7 +2031,7 @@ FsWatchesRecursive:: /user/username/projects/myproject/random: {} -Info 110 [16:03:27.000] response: +Info 110 [00:03:27.000] response: { "response": { "info": { @@ -2079,7 +2079,7 @@ Info 110 [16:03:27.000] response: }, "responseRequired": true } -Info 111 [16:03:28.000] request: +Info 111 [00:03:28.000] request: { "seq": 0, "type": "request", @@ -2124,24 +2124,24 @@ FsWatchesRecursive:: /user/username/projects/myproject/random: {} -Info 112 [16:03:29.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/random/random.ts 500 undefined WatchType: Closed Script info -Info 113 [16:03:30.000] Project '/user/username/projects/myproject/main/tsconfig.json' (Configured) -Info 113 [16:03:31.000] Files (2) +Info 112 [00:03:29.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/random/random.ts 500 undefined WatchType: Closed Script info +Info 113 [00:03:30.000] Project '/user/username/projects/myproject/main/tsconfig.json' (Configured) +Info 113 [00:03:31.000] Files (2) -Info 113 [16:03:32.000] ----------------------------------------------- -Info 113 [16:03:33.000] Project '/user/username/projects/myproject/dependency/tsconfig.json' (Configured) -Info 113 [16:03:34.000] Files (2) +Info 113 [00:03:32.000] ----------------------------------------------- +Info 113 [00:03:33.000] Project '/user/username/projects/myproject/dependency/tsconfig.json' (Configured) +Info 113 [00:03:34.000] Files (2) -Info 113 [16:03:35.000] ----------------------------------------------- -Info 113 [16:03:36.000] Project '/user/username/projects/myproject/random/tsconfig.json' (Configured) -Info 113 [16:03:37.000] Files (2) +Info 113 [00:03:35.000] ----------------------------------------------- +Info 113 [00:03:36.000] Project '/user/username/projects/myproject/random/tsconfig.json' (Configured) +Info 113 [00:03:37.000] Files (2) -Info 113 [16:03:38.000] ----------------------------------------------- -Info 113 [16:03:39.000] Open files: -Info 113 [16:03:40.000] FileName: /user/username/projects/myproject/main/main.ts ProjectRootPath: undefined -Info 113 [16:03:41.000] Projects: /user/username/projects/myproject/main/tsconfig.json -Info 113 [16:03:42.000] FileName: /user/username/projects/myproject/dependency/FnS.ts ProjectRootPath: undefined -Info 113 [16:03:43.000] Projects: /user/username/projects/myproject/dependency/tsconfig.json +Info 113 [00:03:38.000] ----------------------------------------------- +Info 113 [00:03:39.000] Open files: +Info 113 [00:03:40.000] FileName: /user/username/projects/myproject/main/main.ts ProjectRootPath: undefined +Info 113 [00:03:41.000] Projects: /user/username/projects/myproject/main/tsconfig.json +Info 113 [00:03:42.000] FileName: /user/username/projects/myproject/dependency/FnS.ts ProjectRootPath: undefined +Info 113 [00:03:43.000] Projects: /user/username/projects/myproject/dependency/tsconfig.json After request PolledWatches:: @@ -2180,11 +2180,11 @@ FsWatchesRecursive:: /user/username/projects/myproject/random: {} -Info 113 [16:03:44.000] response: +Info 113 [00:03:44.000] response: { "responseRequired": false } -Info 114 [16:03:45.000] request: +Info 114 [00:03:45.000] request: { "seq": 0, "type": "request", @@ -2231,29 +2231,29 @@ FsWatchesRecursive:: /user/username/projects/myproject/random: {} -Info 115 [16:03:46.000] FileWatcher:: Close:: WatchInfo: /user/username/projects/myproject/random/random.ts 500 undefined WatchType: Closed Script info -Info 116 [16:03:47.000] Search path: /user/username/projects/myproject/random -Info 117 [16:03:48.000] For info: /user/username/projects/myproject/random/random.ts :: Config file name: /user/username/projects/myproject/random/tsconfig.json -Info 118 [16:03:49.000] FileWatcher:: Close:: WatchInfo: /user/username/projects/myproject/decls/FnS.d.ts.map 500 undefined WatchType: Closed Script info -Info 119 [16:03:50.000] Project '/user/username/projects/myproject/main/tsconfig.json' (Configured) -Info 119 [16:03:51.000] Files (2) - -Info 119 [16:03:52.000] ----------------------------------------------- -Info 119 [16:03:53.000] Project '/user/username/projects/myproject/dependency/tsconfig.json' (Configured) -Info 119 [16:03:54.000] Files (2) - -Info 119 [16:03:55.000] ----------------------------------------------- -Info 119 [16:03:56.000] Project '/user/username/projects/myproject/random/tsconfig.json' (Configured) -Info 119 [16:03:57.000] Files (2) - -Info 119 [16:03:58.000] ----------------------------------------------- -Info 119 [16:03:59.000] Open files: -Info 119 [16:04:00.000] FileName: /user/username/projects/myproject/main/main.ts ProjectRootPath: undefined -Info 119 [16:04:01.000] Projects: /user/username/projects/myproject/main/tsconfig.json -Info 119 [16:04:02.000] FileName: /user/username/projects/myproject/dependency/FnS.ts ProjectRootPath: undefined -Info 119 [16:04:03.000] Projects: /user/username/projects/myproject/dependency/tsconfig.json -Info 119 [16:04:04.000] FileName: /user/username/projects/myproject/random/random.ts ProjectRootPath: undefined -Info 119 [16:04:05.000] Projects: /user/username/projects/myproject/random/tsconfig.json +Info 115 [00:03:46.000] FileWatcher:: Close:: WatchInfo: /user/username/projects/myproject/random/random.ts 500 undefined WatchType: Closed Script info +Info 116 [00:03:47.000] Search path: /user/username/projects/myproject/random +Info 117 [00:03:48.000] For info: /user/username/projects/myproject/random/random.ts :: Config file name: /user/username/projects/myproject/random/tsconfig.json +Info 118 [00:03:49.000] FileWatcher:: Close:: WatchInfo: /user/username/projects/myproject/decls/FnS.d.ts.map 500 undefined WatchType: Closed Script info +Info 119 [00:03:50.000] Project '/user/username/projects/myproject/main/tsconfig.json' (Configured) +Info 119 [00:03:51.000] Files (2) + +Info 119 [00:03:52.000] ----------------------------------------------- +Info 119 [00:03:53.000] Project '/user/username/projects/myproject/dependency/tsconfig.json' (Configured) +Info 119 [00:03:54.000] Files (2) + +Info 119 [00:03:55.000] ----------------------------------------------- +Info 119 [00:03:56.000] Project '/user/username/projects/myproject/random/tsconfig.json' (Configured) +Info 119 [00:03:57.000] Files (2) + +Info 119 [00:03:58.000] ----------------------------------------------- +Info 119 [00:03:59.000] Open files: +Info 119 [00:04:00.000] FileName: /user/username/projects/myproject/main/main.ts ProjectRootPath: undefined +Info 119 [00:04:01.000] Projects: /user/username/projects/myproject/main/tsconfig.json +Info 119 [00:04:02.000] FileName: /user/username/projects/myproject/dependency/FnS.ts ProjectRootPath: undefined +Info 119 [00:04:03.000] Projects: /user/username/projects/myproject/dependency/tsconfig.json +Info 119 [00:04:04.000] FileName: /user/username/projects/myproject/random/random.ts ProjectRootPath: undefined +Info 119 [00:04:05.000] Projects: /user/username/projects/myproject/random/tsconfig.json After request PolledWatches:: @@ -2288,11 +2288,11 @@ FsWatchesRecursive:: /user/username/projects/myproject/random: {} -Info 119 [16:04:06.000] response: +Info 119 [00:04:06.000] response: { "responseRequired": false } -Info 120 [16:04:07.000] request: +Info 120 [00:04:07.000] request: { "seq": 0, "type": "request", @@ -2335,24 +2335,24 @@ FsWatchesRecursive:: /user/username/projects/myproject/random: {} -Info 121 [16:04:08.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/main/main.ts 500 undefined WatchType: Closed Script info -Info 122 [16:04:09.000] Project '/user/username/projects/myproject/main/tsconfig.json' (Configured) -Info 122 [16:04:10.000] Files (2) +Info 121 [00:04:08.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/main/main.ts 500 undefined WatchType: Closed Script info +Info 122 [00:04:09.000] Project '/user/username/projects/myproject/main/tsconfig.json' (Configured) +Info 122 [00:04:10.000] Files (2) -Info 122 [16:04:11.000] ----------------------------------------------- -Info 122 [16:04:12.000] Project '/user/username/projects/myproject/dependency/tsconfig.json' (Configured) -Info 122 [16:04:13.000] Files (2) +Info 122 [00:04:11.000] ----------------------------------------------- +Info 122 [00:04:12.000] Project '/user/username/projects/myproject/dependency/tsconfig.json' (Configured) +Info 122 [00:04:13.000] Files (2) -Info 122 [16:04:14.000] ----------------------------------------------- -Info 122 [16:04:15.000] Project '/user/username/projects/myproject/random/tsconfig.json' (Configured) -Info 122 [16:04:16.000] Files (2) +Info 122 [00:04:14.000] ----------------------------------------------- +Info 122 [00:04:15.000] Project '/user/username/projects/myproject/random/tsconfig.json' (Configured) +Info 122 [00:04:16.000] Files (2) -Info 122 [16:04:17.000] ----------------------------------------------- -Info 122 [16:04:18.000] Open files: -Info 122 [16:04:19.000] FileName: /user/username/projects/myproject/dependency/FnS.ts ProjectRootPath: undefined -Info 122 [16:04:20.000] Projects: /user/username/projects/myproject/dependency/tsconfig.json -Info 122 [16:04:21.000] FileName: /user/username/projects/myproject/random/random.ts ProjectRootPath: undefined -Info 122 [16:04:22.000] Projects: /user/username/projects/myproject/random/tsconfig.json +Info 122 [00:04:17.000] ----------------------------------------------- +Info 122 [00:04:18.000] Open files: +Info 122 [00:04:19.000] FileName: /user/username/projects/myproject/dependency/FnS.ts ProjectRootPath: undefined +Info 122 [00:04:20.000] Projects: /user/username/projects/myproject/dependency/tsconfig.json +Info 122 [00:04:21.000] FileName: /user/username/projects/myproject/random/random.ts ProjectRootPath: undefined +Info 122 [00:04:22.000] Projects: /user/username/projects/myproject/random/tsconfig.json After request PolledWatches:: @@ -2389,11 +2389,11 @@ FsWatchesRecursive:: /user/username/projects/myproject/random: {} -Info 122 [16:04:23.000] response: +Info 122 [00:04:23.000] response: { "responseRequired": false } -Info 123 [16:04:24.000] request: +Info 123 [00:04:24.000] request: { "seq": 0, "type": "request", @@ -2438,22 +2438,22 @@ FsWatchesRecursive:: /user/username/projects/myproject/random: {} -Info 124 [16:04:25.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/dependency/FnS.ts 500 undefined WatchType: Closed Script info -Info 125 [16:04:26.000] Project '/user/username/projects/myproject/main/tsconfig.json' (Configured) -Info 125 [16:04:27.000] Files (2) +Info 124 [00:04:25.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/dependency/FnS.ts 500 undefined WatchType: Closed Script info +Info 125 [00:04:26.000] Project '/user/username/projects/myproject/main/tsconfig.json' (Configured) +Info 125 [00:04:27.000] Files (2) -Info 125 [16:04:28.000] ----------------------------------------------- -Info 125 [16:04:29.000] Project '/user/username/projects/myproject/dependency/tsconfig.json' (Configured) -Info 125 [16:04:30.000] Files (2) +Info 125 [00:04:28.000] ----------------------------------------------- +Info 125 [00:04:29.000] Project '/user/username/projects/myproject/dependency/tsconfig.json' (Configured) +Info 125 [00:04:30.000] Files (2) -Info 125 [16:04:31.000] ----------------------------------------------- -Info 125 [16:04:32.000] Project '/user/username/projects/myproject/random/tsconfig.json' (Configured) -Info 125 [16:04:33.000] Files (2) +Info 125 [00:04:31.000] ----------------------------------------------- +Info 125 [00:04:32.000] Project '/user/username/projects/myproject/random/tsconfig.json' (Configured) +Info 125 [00:04:33.000] Files (2) -Info 125 [16:04:34.000] ----------------------------------------------- -Info 125 [16:04:35.000] Open files: -Info 125 [16:04:36.000] FileName: /user/username/projects/myproject/random/random.ts ProjectRootPath: undefined -Info 125 [16:04:37.000] Projects: /user/username/projects/myproject/random/tsconfig.json +Info 125 [00:04:34.000] ----------------------------------------------- +Info 125 [00:04:35.000] Open files: +Info 125 [00:04:36.000] FileName: /user/username/projects/myproject/random/random.ts ProjectRootPath: undefined +Info 125 [00:04:37.000] Projects: /user/username/projects/myproject/random/tsconfig.json After request PolledWatches:: @@ -2492,11 +2492,11 @@ FsWatchesRecursive:: /user/username/projects/myproject/random: {} -Info 125 [16:04:38.000] response: +Info 125 [00:04:38.000] response: { "responseRequired": false } -Info 126 [16:04:39.000] request: +Info 126 [00:04:39.000] request: { "seq": 0, "type": "request", @@ -2543,20 +2543,20 @@ FsWatchesRecursive:: /user/username/projects/myproject/random: {} -Info 127 [16:04:40.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/random/random.ts 500 undefined WatchType: Closed Script info -Info 128 [16:04:41.000] Project '/user/username/projects/myproject/main/tsconfig.json' (Configured) -Info 128 [16:04:42.000] Files (2) +Info 127 [00:04:40.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/random/random.ts 500 undefined WatchType: Closed Script info +Info 128 [00:04:41.000] Project '/user/username/projects/myproject/main/tsconfig.json' (Configured) +Info 128 [00:04:42.000] Files (2) -Info 128 [16:04:43.000] ----------------------------------------------- -Info 128 [16:04:44.000] Project '/user/username/projects/myproject/dependency/tsconfig.json' (Configured) -Info 128 [16:04:45.000] Files (2) +Info 128 [00:04:43.000] ----------------------------------------------- +Info 128 [00:04:44.000] Project '/user/username/projects/myproject/dependency/tsconfig.json' (Configured) +Info 128 [00:04:45.000] Files (2) -Info 128 [16:04:46.000] ----------------------------------------------- -Info 128 [16:04:47.000] Project '/user/username/projects/myproject/random/tsconfig.json' (Configured) -Info 128 [16:04:48.000] Files (2) +Info 128 [00:04:46.000] ----------------------------------------------- +Info 128 [00:04:47.000] Project '/user/username/projects/myproject/random/tsconfig.json' (Configured) +Info 128 [00:04:48.000] Files (2) -Info 128 [16:04:49.000] ----------------------------------------------- -Info 128 [16:04:50.000] Open files: +Info 128 [00:04:49.000] ----------------------------------------------- +Info 128 [00:04:50.000] Open files: After request PolledWatches:: @@ -2597,11 +2597,11 @@ FsWatchesRecursive:: /user/username/projects/myproject/random: {} -Info 128 [16:04:51.000] response: +Info 128 [00:04:51.000] response: { "responseRequired": false } -Info 129 [16:04:52.000] request: +Info 129 [00:04:52.000] request: { "seq": 0, "type": "request", @@ -2650,12 +2650,12 @@ FsWatchesRecursive:: /user/username/projects/myproject/random: {} -Info 130 [16:04:53.000] FileWatcher:: Close:: WatchInfo: /user/username/projects/myproject/random/random.ts 500 undefined WatchType: Closed Script info -Info 131 [16:04:54.000] Search path: /user/username/projects/myproject/random -Info 132 [16:04:55.000] For info: /user/username/projects/myproject/random/random.ts :: Config file name: /user/username/projects/myproject/random/tsconfig.json -Info 133 [16:04:56.000] `remove Project:: -Info 134 [16:04:57.000] Project '/user/username/projects/myproject/main/tsconfig.json' (Configured) -Info 135 [16:04:58.000] Files (2) +Info 130 [00:04:53.000] FileWatcher:: Close:: WatchInfo: /user/username/projects/myproject/random/random.ts 500 undefined WatchType: Closed Script info +Info 131 [00:04:54.000] Search path: /user/username/projects/myproject/random +Info 132 [00:04:55.000] For info: /user/username/projects/myproject/random/random.ts :: Config file name: /user/username/projects/myproject/random/tsconfig.json +Info 133 [00:04:56.000] `remove Project:: +Info 134 [00:04:57.000] Project '/user/username/projects/myproject/main/tsconfig.json' (Configured) +Info 135 [00:04:58.000] Files (2) /a/lib/lib.d.ts /user/username/projects/myproject/main/main.ts @@ -2665,19 +2665,19 @@ Info 135 [16:04:58.000] Files (2) main.ts Matched by default include pattern '**/*' -Info 136 [16:04:59.000] ----------------------------------------------- -Info 137 [16:05:00.000] DirectoryWatcher:: Close:: WatchInfo: /user/username/projects/myproject/main 1 undefined Config: /user/username/projects/myproject/main/tsconfig.json WatchType: Wild card directory -Info 138 [16:05:01.000] 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 139 [16:05:02.000] FileWatcher:: Close:: WatchInfo: /user/username/projects/myproject/main/tsconfig.json 2000 undefined Project: /user/username/projects/myproject/main/tsconfig.json WatchType: Config file -Info 140 [16:05:03.000] DirectoryWatcher:: Close:: WatchInfo: /user/username/projects/myproject/decls 1 undefined Project: /user/username/projects/myproject/main/tsconfig.json WatchType: Failed Lookup Locations -Info 141 [16:05:04.000] 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 142 [16:05:05.000] 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 143 [16:05:06.000] 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 144 [16:05:07.000] DirectoryWatcher:: Close:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/main/tsconfig.json WatchType: Type roots -Info 145 [16:05:08.000] 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 146 [16:05:09.000] `remove Project:: -Info 147 [16:05:10.000] Project '/user/username/projects/myproject/dependency/tsconfig.json' (Configured) -Info 148 [16:05:11.000] Files (2) +Info 136 [00:04:59.000] ----------------------------------------------- +Info 137 [00:05:00.000] DirectoryWatcher:: Close:: WatchInfo: /user/username/projects/myproject/main 1 undefined Config: /user/username/projects/myproject/main/tsconfig.json WatchType: Wild card directory +Info 138 [00:05:01.000] 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 139 [00:05:02.000] FileWatcher:: Close:: WatchInfo: /user/username/projects/myproject/main/tsconfig.json 2000 undefined Project: /user/username/projects/myproject/main/tsconfig.json WatchType: Config file +Info 140 [00:05:03.000] DirectoryWatcher:: Close:: WatchInfo: /user/username/projects/myproject/decls 1 undefined Project: /user/username/projects/myproject/main/tsconfig.json WatchType: Failed Lookup Locations +Info 141 [00:05:04.000] 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 142 [00:05:05.000] 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 143 [00:05:06.000] 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 144 [00:05:07.000] DirectoryWatcher:: Close:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/main/tsconfig.json WatchType: Type roots +Info 145 [00:05:08.000] 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 146 [00:05:09.000] `remove Project:: +Info 147 [00:05:10.000] Project '/user/username/projects/myproject/dependency/tsconfig.json' (Configured) +Info 148 [00:05:11.000] Files (2) /a/lib/lib.d.ts /user/username/projects/myproject/dependency/FnS.ts @@ -2687,24 +2687,24 @@ Info 148 [16:05:11.000] Files (2) FnS.ts Matched by default include pattern '**/*' -Info 149 [16:05:12.000] ----------------------------------------------- -Info 150 [16:05:13.000] DirectoryWatcher:: Close:: WatchInfo: /user/username/projects/myproject/dependency 1 undefined Config: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Wild card directory -Info 151 [16:05:14.000] 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 152 [16:05:15.000] FileWatcher:: Close:: WatchInfo: /user/username/projects/myproject/dependency/tsconfig.json 2000 undefined Project: /user/username/projects/myproject/main/tsconfig.json WatchType: Config file -Info 153 [16:05:16.000] 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 154 [16:05:17.000] 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 155 [16:05:18.000] DirectoryWatcher:: Close:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Type roots -Info 156 [16:05:19.000] 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 157 [16:05:20.000] 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 158 [16:05:21.000] FileWatcher:: Close:: WatchInfo: /user/username/projects/myproject/main/main.ts 500 undefined WatchType: Closed Script info -Info 159 [16:05:22.000] FileWatcher:: Close:: WatchInfo: /user/username/projects/myproject/dependency/FnS.ts 500 undefined WatchType: Closed Script info -Info 160 [16:05:23.000] Project '/user/username/projects/myproject/random/tsconfig.json' (Configured) -Info 160 [16:05:24.000] Files (2) - -Info 160 [16:05:25.000] ----------------------------------------------- -Info 160 [16:05:26.000] Open files: -Info 160 [16:05:27.000] FileName: /user/username/projects/myproject/random/random.ts ProjectRootPath: undefined -Info 160 [16:05:28.000] Projects: /user/username/projects/myproject/random/tsconfig.json +Info 149 [00:05:12.000] ----------------------------------------------- +Info 150 [00:05:13.000] DirectoryWatcher:: Close:: WatchInfo: /user/username/projects/myproject/dependency 1 undefined Config: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Wild card directory +Info 151 [00:05:14.000] 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 152 [00:05:15.000] FileWatcher:: Close:: WatchInfo: /user/username/projects/myproject/dependency/tsconfig.json 2000 undefined Project: /user/username/projects/myproject/main/tsconfig.json WatchType: Config file +Info 153 [00:05:16.000] 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 154 [00:05:17.000] 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 155 [00:05:18.000] DirectoryWatcher:: Close:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Type roots +Info 156 [00:05:19.000] 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 157 [00:05:20.000] 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 158 [00:05:21.000] FileWatcher:: Close:: WatchInfo: /user/username/projects/myproject/main/main.ts 500 undefined WatchType: Closed Script info +Info 159 [00:05:22.000] FileWatcher:: Close:: WatchInfo: /user/username/projects/myproject/dependency/FnS.ts 500 undefined WatchType: Closed Script info +Info 160 [00:05:23.000] Project '/user/username/projects/myproject/random/tsconfig.json' (Configured) +Info 160 [00:05:24.000] Files (2) + +Info 160 [00:05:25.000] ----------------------------------------------- +Info 160 [00:05:26.000] Open files: +Info 160 [00:05:27.000] FileName: /user/username/projects/myproject/random/random.ts ProjectRootPath: undefined +Info 160 [00:05:28.000] Projects: /user/username/projects/myproject/random/tsconfig.json After request PolledWatches:: @@ -2723,7 +2723,7 @@ FsWatchesRecursive:: /user/username/projects/myproject/random: {} -Info 160 [16:05:29.000] response: +Info 160 [00:05:29.000] response: { "responseRequired": false } \ No newline at end of file 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 4b576a0c5dfce..ebb9acaf12911 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 @@ -1,5 +1,5 @@ -Info 0 [16:01:04.000] Provided types map file "/a/lib/typesMap.json" doesn't exist -Info 1 [16:01:05.000] request: +Info 0 [00:01:04.000] Provided types map file "/a/lib/typesMap.json" doesn't exist +Info 1 [00:01:05.000] request: { "seq": 0, "type": "request", @@ -192,11 +192,11 @@ FsWatches:: FsWatchesRecursive:: -Info 2 [16:01:06.000] Search path: /user/username/projects/myproject/main -Info 3 [16:01:07.000] For info: /user/username/projects/myproject/main/main.ts :: Config file name: /user/username/projects/myproject/main/tsconfig.json -Info 4 [16:01:08.000] Creating configuration project /user/username/projects/myproject/main/tsconfig.json -Info 5 [16:01:09.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/main/tsconfig.json 2000 undefined Project: /user/username/projects/myproject/main/tsconfig.json WatchType: Config file -Info 6 [16:01:10.000] Config: /user/username/projects/myproject/main/tsconfig.json : { +Info 2 [00:01:06.000] Search path: /user/username/projects/myproject/main +Info 3 [00:01:07.000] For info: /user/username/projects/myproject/main/main.ts :: Config file name: /user/username/projects/myproject/main/tsconfig.json +Info 4 [00:01:08.000] Creating configuration project /user/username/projects/myproject/main/tsconfig.json +Info 5 [00:01:09.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/main/tsconfig.json 2000 undefined Project: /user/username/projects/myproject/main/tsconfig.json WatchType: Config file +Info 6 [00:01:10.000] Config: /user/username/projects/myproject/main/tsconfig.json : { "rootNames": [ "/user/username/projects/myproject/main/main.ts" ], @@ -213,11 +213,11 @@ Info 6 [16:01:10.000] Config: /user/username/projects/myproject/main/tsconfig } ] } -Info 7 [16:01:11.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/main 1 undefined Config: /user/username/projects/myproject/main/tsconfig.json WatchType: Wild card directory -Info 8 [16:01:12.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/main 1 undefined Config: /user/username/projects/myproject/main/tsconfig.json WatchType: Wild card directory -Info 9 [16:01:13.000] Plugins were requested but not running in environment that supports 'require'. Nothing will be loaded -Info 10 [16:01:14.000] Starting updateGraphWorker: Project: /user/username/projects/myproject/main/tsconfig.json -Info 11 [16:01:15.000] Config: /user/username/projects/myproject/dependency/tsconfig.json : { +Info 7 [00:01:11.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/main 1 undefined Config: /user/username/projects/myproject/main/tsconfig.json WatchType: Wild card directory +Info 8 [00:01:12.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/main 1 undefined Config: /user/username/projects/myproject/main/tsconfig.json WatchType: Wild card directory +Info 9 [00:01:13.000] Plugins were requested but not running in environment that supports 'require'. Nothing will be loaded +Info 10 [00:01:14.000] Starting updateGraphWorker: Project: /user/username/projects/myproject/main/tsconfig.json +Info 11 [00:01:15.000] Config: /user/username/projects/myproject/dependency/tsconfig.json : { "rootNames": [ "/user/username/projects/myproject/dependency/FnS.ts" ], @@ -228,19 +228,19 @@ Info 11 [16:01:15.000] Config: /user/username/projects/myproject/dependency/ts "configFilePath": "/user/username/projects/myproject/dependency/tsconfig.json" } } -Info 12 [16:01:16.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/dependency/tsconfig.json 2000 undefined Project: /user/username/projects/myproject/main/tsconfig.json WatchType: Config file -Info 13 [16:01:17.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/dependency 1 undefined Config: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Wild card directory -Info 14 [16:01:18.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/dependency 1 undefined Config: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Wild card directory -Info 15 [16:01:19.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/decls 1 undefined Project: /user/username/projects/myproject/main/tsconfig.json WatchType: Failed Lookup Locations -Info 16 [16:01:20.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/decls 1 undefined Project: /user/username/projects/myproject/main/tsconfig.json WatchType: Failed Lookup Locations -Info 17 [16:01:21.000] FileWatcher:: Added:: WatchInfo: /a/lib/lib.d.ts 500 undefined WatchType: Closed Script info -Info 18 [16:01:22.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/main/node_modules/@types 1 undefined Project: /user/username/projects/myproject/main/tsconfig.json WatchType: Type roots -Info 19 [16:01:23.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/main/node_modules/@types 1 undefined Project: /user/username/projects/myproject/main/tsconfig.json WatchType: Type roots -Info 20 [16:01:24.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/main/tsconfig.json WatchType: Type roots -Info 21 [16:01:25.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/main/tsconfig.json WatchType: Type roots -Info 22 [16:01:26.000] Finishing updateGraphWorker: Project: /user/username/projects/myproject/main/tsconfig.json Version: 1 structureChanged: true structureIsReused:: Not Elapsed:: *ms -Info 23 [16:01:27.000] Project '/user/username/projects/myproject/main/tsconfig.json' (Configured) -Info 24 [16:01:28.000] Files (2) +Info 12 [00:01:16.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/dependency/tsconfig.json 2000 undefined Project: /user/username/projects/myproject/main/tsconfig.json WatchType: Config file +Info 13 [00:01:17.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/dependency 1 undefined Config: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Wild card directory +Info 14 [00:01:18.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/dependency 1 undefined Config: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Wild card directory +Info 15 [00:01:19.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/decls 1 undefined Project: /user/username/projects/myproject/main/tsconfig.json WatchType: Failed Lookup Locations +Info 16 [00:01:20.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/decls 1 undefined Project: /user/username/projects/myproject/main/tsconfig.json WatchType: Failed Lookup Locations +Info 17 [00:01:21.000] FileWatcher:: Added:: WatchInfo: /a/lib/lib.d.ts 500 undefined WatchType: Closed Script info +Info 18 [00:01:22.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/main/node_modules/@types 1 undefined Project: /user/username/projects/myproject/main/tsconfig.json WatchType: Type roots +Info 19 [00:01:23.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/main/node_modules/@types 1 undefined Project: /user/username/projects/myproject/main/tsconfig.json WatchType: Type roots +Info 20 [00:01:24.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/main/tsconfig.json WatchType: Type roots +Info 21 [00:01:25.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/main/tsconfig.json WatchType: Type roots +Info 22 [00:01:26.000] Finishing updateGraphWorker: Project: /user/username/projects/myproject/main/tsconfig.json Version: 1 structureChanged: true structureIsReused:: Not Elapsed:: *ms +Info 23 [00:01:27.000] Project '/user/username/projects/myproject/main/tsconfig.json' (Configured) +Info 24 [00:01:28.000] Files (2) /a/lib/lib.d.ts /user/username/projects/myproject/main/main.ts @@ -250,16 +250,16 @@ Info 24 [16:01:28.000] Files (2) main.ts Matched by default include pattern '**/*' -Info 25 [16:01:29.000] ----------------------------------------------- -Info 26 [16:01:30.000] Search path: /user/username/projects/myproject/main -Info 27 [16:01:31.000] For info: /user/username/projects/myproject/main/tsconfig.json :: No config files found. -Info 28 [16:01:32.000] Project '/user/username/projects/myproject/main/tsconfig.json' (Configured) -Info 28 [16:01:33.000] Files (2) +Info 25 [00:01:29.000] ----------------------------------------------- +Info 26 [00:01:30.000] Search path: /user/username/projects/myproject/main +Info 27 [00:01:31.000] For info: /user/username/projects/myproject/main/tsconfig.json :: No config files found. +Info 28 [00:01:32.000] Project '/user/username/projects/myproject/main/tsconfig.json' (Configured) +Info 28 [00:01:33.000] Files (2) -Info 28 [16:01:34.000] ----------------------------------------------- -Info 28 [16:01:35.000] Open files: -Info 28 [16:01:36.000] FileName: /user/username/projects/myproject/main/main.ts ProjectRootPath: undefined -Info 28 [16:01:37.000] Projects: /user/username/projects/myproject/main/tsconfig.json +Info 28 [00:01:34.000] ----------------------------------------------- +Info 28 [00:01:35.000] Open files: +Info 28 [00:01:36.000] FileName: /user/username/projects/myproject/main/main.ts ProjectRootPath: undefined +Info 28 [00:01:37.000] Projects: /user/username/projects/myproject/main/tsconfig.json After request PolledWatches:: @@ -284,11 +284,11 @@ FsWatchesRecursive:: /user/username/projects/myproject/decls: {} -Info 28 [16:01:38.000] response: +Info 28 [00:01:38.000] response: { "responseRequired": false } -Info 29 [16:01:39.000] request: +Info 29 [00:01:39.000] request: { "seq": 0, "type": "request", @@ -321,18 +321,18 @@ FsWatchesRecursive:: /user/username/projects/myproject/decls: {} -Info 30 [16:01:40.000] Search path: /user/username/projects/myproject/dependency -Info 31 [16:01:41.000] For info: /user/username/projects/myproject/dependency/FnS.ts :: Config file name: /user/username/projects/myproject/dependency/tsconfig.json -Info 32 [16:01:42.000] Creating configuration project /user/username/projects/myproject/dependency/tsconfig.json -Info 33 [16:01:43.000] Plugins were requested but not running in environment that supports 'require'. Nothing will be loaded -Info 34 [16:01:44.000] Starting updateGraphWorker: Project: /user/username/projects/myproject/dependency/tsconfig.json -Info 35 [16:01:45.000] 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 36 [16:01:46.000] 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 37 [16:01:47.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Type roots -Info 38 [16:01:48.000] 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 39 [16:01:49.000] Finishing updateGraphWorker: Project: /user/username/projects/myproject/dependency/tsconfig.json Version: 1 structureChanged: true structureIsReused:: Not Elapsed:: *ms -Info 40 [16:01:50.000] Project '/user/username/projects/myproject/dependency/tsconfig.json' (Configured) -Info 41 [16:01:51.000] Files (2) +Info 30 [00:01:40.000] Search path: /user/username/projects/myproject/dependency +Info 31 [00:01:41.000] For info: /user/username/projects/myproject/dependency/FnS.ts :: Config file name: /user/username/projects/myproject/dependency/tsconfig.json +Info 32 [00:01:42.000] Creating configuration project /user/username/projects/myproject/dependency/tsconfig.json +Info 33 [00:01:43.000] Plugins were requested but not running in environment that supports 'require'. Nothing will be loaded +Info 34 [00:01:44.000] Starting updateGraphWorker: Project: /user/username/projects/myproject/dependency/tsconfig.json +Info 35 [00:01:45.000] 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 36 [00:01:46.000] 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 37 [00:01:47.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Type roots +Info 38 [00:01:48.000] 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 39 [00:01:49.000] Finishing updateGraphWorker: Project: /user/username/projects/myproject/dependency/tsconfig.json Version: 1 structureChanged: true structureIsReused:: Not Elapsed:: *ms +Info 40 [00:01:50.000] Project '/user/username/projects/myproject/dependency/tsconfig.json' (Configured) +Info 41 [00:01:51.000] Files (2) /a/lib/lib.d.ts /user/username/projects/myproject/dependency/FnS.ts @@ -342,22 +342,22 @@ Info 41 [16:01:51.000] Files (2) FnS.ts Matched by default include pattern '**/*' -Info 42 [16:01:52.000] ----------------------------------------------- -Info 43 [16:01:53.000] Search path: /user/username/projects/myproject/dependency -Info 44 [16:01:54.000] For info: /user/username/projects/myproject/dependency/tsconfig.json :: No config files found. -Info 45 [16:01:55.000] Project '/user/username/projects/myproject/main/tsconfig.json' (Configured) -Info 45 [16:01:56.000] Files (2) - -Info 45 [16:01:57.000] ----------------------------------------------- -Info 45 [16:01:58.000] Project '/user/username/projects/myproject/dependency/tsconfig.json' (Configured) -Info 45 [16:01:59.000] Files (2) - -Info 45 [16:02:00.000] ----------------------------------------------- -Info 45 [16:02:01.000] Open files: -Info 45 [16:02:02.000] FileName: /user/username/projects/myproject/main/main.ts ProjectRootPath: undefined -Info 45 [16:02:03.000] Projects: /user/username/projects/myproject/main/tsconfig.json -Info 45 [16:02:04.000] FileName: /user/username/projects/myproject/dependency/FnS.ts ProjectRootPath: undefined -Info 45 [16:02:05.000] Projects: /user/username/projects/myproject/dependency/tsconfig.json +Info 42 [00:01:52.000] ----------------------------------------------- +Info 43 [00:01:53.000] Search path: /user/username/projects/myproject/dependency +Info 44 [00:01:54.000] For info: /user/username/projects/myproject/dependency/tsconfig.json :: No config files found. +Info 45 [00:01:55.000] Project '/user/username/projects/myproject/main/tsconfig.json' (Configured) +Info 45 [00:01:56.000] Files (2) + +Info 45 [00:01:57.000] ----------------------------------------------- +Info 45 [00:01:58.000] Project '/user/username/projects/myproject/dependency/tsconfig.json' (Configured) +Info 45 [00:01:59.000] Files (2) + +Info 45 [00:02:00.000] ----------------------------------------------- +Info 45 [00:02:01.000] Open files: +Info 45 [00:02:02.000] FileName: /user/username/projects/myproject/main/main.ts ProjectRootPath: undefined +Info 45 [00:02:03.000] Projects: /user/username/projects/myproject/main/tsconfig.json +Info 45 [00:02:04.000] FileName: /user/username/projects/myproject/dependency/FnS.ts ProjectRootPath: undefined +Info 45 [00:02:05.000] Projects: /user/username/projects/myproject/dependency/tsconfig.json After request PolledWatches:: @@ -384,11 +384,11 @@ FsWatchesRecursive:: /user/username/projects/myproject/decls: {} -Info 45 [16:02:06.000] response: +Info 45 [00:02:06.000] response: { "responseRequired": false } -Info 46 [16:02:07.000] request: +Info 46 [00:02:07.000] request: { "seq": 0, "type": "request", @@ -423,11 +423,11 @@ FsWatchesRecursive:: /user/username/projects/myproject/decls: {} -Info 47 [16:02:08.000] Search path: /user/username/projects/myproject/random -Info 48 [16:02:09.000] For info: /user/username/projects/myproject/random/random.ts :: Config file name: /user/username/projects/myproject/random/tsconfig.json -Info 49 [16:02:10.000] Creating configuration project /user/username/projects/myproject/random/tsconfig.json -Info 50 [16:02:11.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/random/tsconfig.json 2000 undefined Project: /user/username/projects/myproject/random/tsconfig.json WatchType: Config file -Info 51 [16:02:12.000] Config: /user/username/projects/myproject/random/tsconfig.json : { +Info 47 [00:02:08.000] Search path: /user/username/projects/myproject/random +Info 48 [00:02:09.000] For info: /user/username/projects/myproject/random/random.ts :: Config file name: /user/username/projects/myproject/random/tsconfig.json +Info 49 [00:02:10.000] Creating configuration project /user/username/projects/myproject/random/tsconfig.json +Info 50 [00:02:11.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/random/tsconfig.json 2000 undefined Project: /user/username/projects/myproject/random/tsconfig.json WatchType: Config file +Info 51 [00:02:12.000] Config: /user/username/projects/myproject/random/tsconfig.json : { "rootNames": [ "/user/username/projects/myproject/random/random.ts" ], @@ -435,17 +435,17 @@ Info 51 [16:02:12.000] Config: /user/username/projects/myproject/random/tsconf "configFilePath": "/user/username/projects/myproject/random/tsconfig.json" } } -Info 52 [16:02:13.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/random 1 undefined Config: /user/username/projects/myproject/random/tsconfig.json WatchType: Wild card directory -Info 53 [16:02:14.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/random 1 undefined Config: /user/username/projects/myproject/random/tsconfig.json WatchType: Wild card directory -Info 54 [16:02:15.000] Plugins were requested but not running in environment that supports 'require'. Nothing will be loaded -Info 55 [16:02:16.000] Starting updateGraphWorker: Project: /user/username/projects/myproject/random/tsconfig.json -Info 56 [16:02:17.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/random/node_modules/@types 1 undefined Project: /user/username/projects/myproject/random/tsconfig.json WatchType: Type roots -Info 57 [16:02:18.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/random/node_modules/@types 1 undefined Project: /user/username/projects/myproject/random/tsconfig.json WatchType: Type roots -Info 58 [16:02:19.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/random/tsconfig.json WatchType: Type roots -Info 59 [16:02:20.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/random/tsconfig.json WatchType: Type roots -Info 60 [16:02:21.000] Finishing updateGraphWorker: Project: /user/username/projects/myproject/random/tsconfig.json Version: 1 structureChanged: true structureIsReused:: Not Elapsed:: *ms -Info 61 [16:02:22.000] Project '/user/username/projects/myproject/random/tsconfig.json' (Configured) -Info 62 [16:02:23.000] Files (2) +Info 52 [00:02:13.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/random 1 undefined Config: /user/username/projects/myproject/random/tsconfig.json WatchType: Wild card directory +Info 53 [00:02:14.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/random 1 undefined Config: /user/username/projects/myproject/random/tsconfig.json WatchType: Wild card directory +Info 54 [00:02:15.000] Plugins were requested but not running in environment that supports 'require'. Nothing will be loaded +Info 55 [00:02:16.000] Starting updateGraphWorker: Project: /user/username/projects/myproject/random/tsconfig.json +Info 56 [00:02:17.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/random/node_modules/@types 1 undefined Project: /user/username/projects/myproject/random/tsconfig.json WatchType: Type roots +Info 57 [00:02:18.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/random/node_modules/@types 1 undefined Project: /user/username/projects/myproject/random/tsconfig.json WatchType: Type roots +Info 58 [00:02:19.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/random/tsconfig.json WatchType: Type roots +Info 59 [00:02:20.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/random/tsconfig.json WatchType: Type roots +Info 60 [00:02:21.000] Finishing updateGraphWorker: Project: /user/username/projects/myproject/random/tsconfig.json Version: 1 structureChanged: true structureIsReused:: Not Elapsed:: *ms +Info 61 [00:02:22.000] Project '/user/username/projects/myproject/random/tsconfig.json' (Configured) +Info 62 [00:02:23.000] Files (2) /a/lib/lib.d.ts /user/username/projects/myproject/random/random.ts @@ -455,26 +455,26 @@ Info 62 [16:02:23.000] Files (2) random.ts Matched by default include pattern '**/*' -Info 63 [16:02:24.000] ----------------------------------------------- -Info 64 [16:02:25.000] Project '/user/username/projects/myproject/main/tsconfig.json' (Configured) -Info 64 [16:02:26.000] Files (2) - -Info 64 [16:02:27.000] ----------------------------------------------- -Info 64 [16:02:28.000] Project '/user/username/projects/myproject/dependency/tsconfig.json' (Configured) -Info 64 [16:02:29.000] Files (2) - -Info 64 [16:02:30.000] ----------------------------------------------- -Info 64 [16:02:31.000] Project '/user/username/projects/myproject/random/tsconfig.json' (Configured) -Info 64 [16:02:32.000] Files (2) - -Info 64 [16:02:33.000] ----------------------------------------------- -Info 64 [16:02:34.000] Open files: -Info 64 [16:02:35.000] FileName: /user/username/projects/myproject/main/main.ts ProjectRootPath: undefined -Info 64 [16:02:36.000] Projects: /user/username/projects/myproject/main/tsconfig.json -Info 64 [16:02:37.000] FileName: /user/username/projects/myproject/dependency/FnS.ts ProjectRootPath: undefined -Info 64 [16:02:38.000] Projects: /user/username/projects/myproject/dependency/tsconfig.json -Info 64 [16:02:39.000] FileName: /user/username/projects/myproject/random/random.ts ProjectRootPath: undefined -Info 64 [16:02:40.000] Projects: /user/username/projects/myproject/random/tsconfig.json +Info 63 [00:02:24.000] ----------------------------------------------- +Info 64 [00:02:25.000] Project '/user/username/projects/myproject/main/tsconfig.json' (Configured) +Info 64 [00:02:26.000] Files (2) + +Info 64 [00:02:27.000] ----------------------------------------------- +Info 64 [00:02:28.000] Project '/user/username/projects/myproject/dependency/tsconfig.json' (Configured) +Info 64 [00:02:29.000] Files (2) + +Info 64 [00:02:30.000] ----------------------------------------------- +Info 64 [00:02:31.000] Project '/user/username/projects/myproject/random/tsconfig.json' (Configured) +Info 64 [00:02:32.000] Files (2) + +Info 64 [00:02:33.000] ----------------------------------------------- +Info 64 [00:02:34.000] Open files: +Info 64 [00:02:35.000] FileName: /user/username/projects/myproject/main/main.ts ProjectRootPath: undefined +Info 64 [00:02:36.000] Projects: /user/username/projects/myproject/main/tsconfig.json +Info 64 [00:02:37.000] FileName: /user/username/projects/myproject/dependency/FnS.ts ProjectRootPath: undefined +Info 64 [00:02:38.000] Projects: /user/username/projects/myproject/dependency/tsconfig.json +Info 64 [00:02:39.000] FileName: /user/username/projects/myproject/random/random.ts ProjectRootPath: undefined +Info 64 [00:02:40.000] Projects: /user/username/projects/myproject/random/tsconfig.json After request PolledWatches:: @@ -507,11 +507,11 @@ FsWatchesRecursive:: /user/username/projects/myproject/random: {} -Info 64 [16:02:41.000] response: +Info 64 [00:02:41.000] response: { "responseRequired": false } -Info 65 [16:02:42.000] request: +Info 65 [00:02:42.000] request: { "command": "definitionAndBoundSpan", "arguments": { @@ -586,7 +586,7 @@ FsWatchesRecursive:: /user/username/projects/myproject/random: {} -Info 66 [16:02:43.000] response: +Info 66 [00:02:43.000] response: { "response": { "definitions": [ @@ -623,7 +623,7 @@ Info 66 [16:02:43.000] response: }, "responseRequired": true } -Info 67 [16:02:44.000] request: +Info 67 [00:02:44.000] request: { "command": "definitionAndBoundSpan", "arguments": { @@ -698,7 +698,7 @@ FsWatchesRecursive:: /user/username/projects/myproject/random: {} -Info 68 [16:02:45.000] response: +Info 68 [00:02:45.000] response: { "response": { "definitions": [ @@ -735,7 +735,7 @@ Info 68 [16:02:45.000] response: }, "responseRequired": true } -Info 69 [16:02:46.000] request: +Info 69 [00:02:46.000] request: { "command": "definitionAndBoundSpan", "arguments": { @@ -810,7 +810,7 @@ FsWatchesRecursive:: /user/username/projects/myproject/random: {} -Info 70 [16:02:47.000] response: +Info 70 [00:02:47.000] response: { "response": { "definitions": [ @@ -847,7 +847,7 @@ Info 70 [16:02:47.000] response: }, "responseRequired": true } -Info 71 [16:02:48.000] request: +Info 71 [00:02:48.000] request: { "command": "definitionAndBoundSpan", "arguments": { @@ -922,7 +922,7 @@ FsWatchesRecursive:: /user/username/projects/myproject/random: {} -Info 72 [16:02:49.000] response: +Info 72 [00:02:49.000] response: { "response": { "definitions": [ @@ -959,7 +959,7 @@ Info 72 [16:02:49.000] response: }, "responseRequired": true } -Info 73 [16:02:50.000] request: +Info 73 [00:02:50.000] request: { "command": "definitionAndBoundSpan", "arguments": { @@ -1034,7 +1034,7 @@ FsWatchesRecursive:: /user/username/projects/myproject/random: {} -Info 74 [16:02:51.000] response: +Info 74 [00:02:51.000] response: { "response": { "definitions": [ @@ -1071,7 +1071,7 @@ Info 74 [16:02:51.000] response: }, "responseRequired": true } -Info 75 [16:02:52.000] request: +Info 75 [00:02:52.000] request: { "command": "rename", "arguments": { @@ -1114,7 +1114,7 @@ FsWatchesRecursive:: /user/username/projects/myproject/random: {} -Info 76 [16:02:53.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/decls/FnS.d.ts 2000 undefined Project: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Missing generated file +Info 76 [00:02:53.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/decls/FnS.d.ts 2000 undefined Project: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Missing generated file After request PolledWatches:: @@ -1149,7 +1149,7 @@ FsWatchesRecursive:: /user/username/projects/myproject/random: {} -Info 77 [16:02:54.000] response: +Info 77 [00:02:54.000] response: { "response": { "info": { @@ -1197,7 +1197,7 @@ Info 77 [16:02:54.000] response: }, "responseRequired": true } -Info 78 [16:02:55.000] request: +Info 78 [00:02:55.000] request: { "command": "rename", "arguments": { @@ -1276,7 +1276,7 @@ FsWatchesRecursive:: /user/username/projects/myproject/random: {} -Info 79 [16:02:56.000] response: +Info 79 [00:02:56.000] response: { "response": { "info": { @@ -1324,7 +1324,7 @@ Info 79 [16:02:56.000] response: }, "responseRequired": true } -Info 80 [16:02:57.000] request: +Info 80 [00:02:57.000] request: { "command": "rename", "arguments": { @@ -1403,7 +1403,7 @@ FsWatchesRecursive:: /user/username/projects/myproject/random: {} -Info 81 [16:02:58.000] response: +Info 81 [00:02:58.000] response: { "response": { "info": { @@ -1451,7 +1451,7 @@ Info 81 [16:02:58.000] response: }, "responseRequired": true } -Info 82 [16:02:59.000] request: +Info 82 [00:02:59.000] request: { "command": "rename", "arguments": { @@ -1530,7 +1530,7 @@ FsWatchesRecursive:: /user/username/projects/myproject/random: {} -Info 83 [16:03:00.000] response: +Info 83 [00:03:00.000] response: { "response": { "info": { @@ -1578,7 +1578,7 @@ Info 83 [16:03:00.000] response: }, "responseRequired": true } -Info 84 [16:03:01.000] request: +Info 84 [00:03:01.000] request: { "command": "rename", "arguments": { @@ -1657,7 +1657,7 @@ FsWatchesRecursive:: /user/username/projects/myproject/random: {} -Info 85 [16:03:02.000] response: +Info 85 [00:03:02.000] response: { "response": { "info": { @@ -1705,7 +1705,7 @@ Info 85 [16:03:02.000] response: }, "responseRequired": true } -Info 86 [16:03:03.000] request: +Info 86 [00:03:03.000] request: { "seq": 0, "type": "request", @@ -1748,24 +1748,24 @@ FsWatchesRecursive:: /user/username/projects/myproject/random: {} -Info 87 [16:03:04.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/random/random.ts 500 undefined WatchType: Closed Script info -Info 88 [16:03:05.000] Project '/user/username/projects/myproject/main/tsconfig.json' (Configured) -Info 88 [16:03:06.000] Files (2) +Info 87 [00:03:04.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/random/random.ts 500 undefined WatchType: Closed Script info +Info 88 [00:03:05.000] Project '/user/username/projects/myproject/main/tsconfig.json' (Configured) +Info 88 [00:03:06.000] Files (2) -Info 88 [16:03:07.000] ----------------------------------------------- -Info 88 [16:03:08.000] Project '/user/username/projects/myproject/dependency/tsconfig.json' (Configured) -Info 88 [16:03:09.000] Files (2) +Info 88 [00:03:07.000] ----------------------------------------------- +Info 88 [00:03:08.000] Project '/user/username/projects/myproject/dependency/tsconfig.json' (Configured) +Info 88 [00:03:09.000] Files (2) -Info 88 [16:03:10.000] ----------------------------------------------- -Info 88 [16:03:11.000] Project '/user/username/projects/myproject/random/tsconfig.json' (Configured) -Info 88 [16:03:12.000] Files (2) +Info 88 [00:03:10.000] ----------------------------------------------- +Info 88 [00:03:11.000] Project '/user/username/projects/myproject/random/tsconfig.json' (Configured) +Info 88 [00:03:12.000] Files (2) -Info 88 [16:03:13.000] ----------------------------------------------- -Info 88 [16:03:14.000] Open files: -Info 88 [16:03:15.000] FileName: /user/username/projects/myproject/main/main.ts ProjectRootPath: undefined -Info 88 [16:03:16.000] Projects: /user/username/projects/myproject/main/tsconfig.json -Info 88 [16:03:17.000] FileName: /user/username/projects/myproject/dependency/FnS.ts ProjectRootPath: undefined -Info 88 [16:03:18.000] Projects: /user/username/projects/myproject/dependency/tsconfig.json +Info 88 [00:03:13.000] ----------------------------------------------- +Info 88 [00:03:14.000] Open files: +Info 88 [00:03:15.000] FileName: /user/username/projects/myproject/main/main.ts ProjectRootPath: undefined +Info 88 [00:03:16.000] Projects: /user/username/projects/myproject/main/tsconfig.json +Info 88 [00:03:17.000] FileName: /user/username/projects/myproject/dependency/FnS.ts ProjectRootPath: undefined +Info 88 [00:03:18.000] Projects: /user/username/projects/myproject/dependency/tsconfig.json After request PolledWatches:: @@ -1802,11 +1802,11 @@ FsWatchesRecursive:: /user/username/projects/myproject/random: {} -Info 88 [16:03:19.000] response: +Info 88 [00:03:19.000] response: { "responseRequired": false } -Info 89 [16:03:20.000] request: +Info 89 [00:03:20.000] request: { "seq": 0, "type": "request", @@ -1851,28 +1851,28 @@ FsWatchesRecursive:: /user/username/projects/myproject/random: {} -Info 90 [16:03:21.000] FileWatcher:: Close:: WatchInfo: /user/username/projects/myproject/random/random.ts 500 undefined WatchType: Closed Script info -Info 91 [16:03:22.000] Search path: /user/username/projects/myproject/random -Info 92 [16:03:23.000] For info: /user/username/projects/myproject/random/random.ts :: Config file name: /user/username/projects/myproject/random/tsconfig.json -Info 93 [16:03:24.000] Project '/user/username/projects/myproject/main/tsconfig.json' (Configured) -Info 93 [16:03:25.000] Files (2) - -Info 93 [16:03:26.000] ----------------------------------------------- -Info 93 [16:03:27.000] Project '/user/username/projects/myproject/dependency/tsconfig.json' (Configured) -Info 93 [16:03:28.000] Files (2) - -Info 93 [16:03:29.000] ----------------------------------------------- -Info 93 [16:03:30.000] Project '/user/username/projects/myproject/random/tsconfig.json' (Configured) -Info 93 [16:03:31.000] Files (2) - -Info 93 [16:03:32.000] ----------------------------------------------- -Info 93 [16:03:33.000] Open files: -Info 93 [16:03:34.000] FileName: /user/username/projects/myproject/main/main.ts ProjectRootPath: undefined -Info 93 [16:03:35.000] Projects: /user/username/projects/myproject/main/tsconfig.json -Info 93 [16:03:36.000] FileName: /user/username/projects/myproject/dependency/FnS.ts ProjectRootPath: undefined -Info 93 [16:03:37.000] Projects: /user/username/projects/myproject/dependency/tsconfig.json -Info 93 [16:03:38.000] FileName: /user/username/projects/myproject/random/random.ts ProjectRootPath: undefined -Info 93 [16:03:39.000] Projects: /user/username/projects/myproject/random/tsconfig.json +Info 90 [00:03:21.000] FileWatcher:: Close:: WatchInfo: /user/username/projects/myproject/random/random.ts 500 undefined WatchType: Closed Script info +Info 91 [00:03:22.000] Search path: /user/username/projects/myproject/random +Info 92 [00:03:23.000] For info: /user/username/projects/myproject/random/random.ts :: Config file name: /user/username/projects/myproject/random/tsconfig.json +Info 93 [00:03:24.000] Project '/user/username/projects/myproject/main/tsconfig.json' (Configured) +Info 93 [00:03:25.000] Files (2) + +Info 93 [00:03:26.000] ----------------------------------------------- +Info 93 [00:03:27.000] Project '/user/username/projects/myproject/dependency/tsconfig.json' (Configured) +Info 93 [00:03:28.000] Files (2) + +Info 93 [00:03:29.000] ----------------------------------------------- +Info 93 [00:03:30.000] Project '/user/username/projects/myproject/random/tsconfig.json' (Configured) +Info 93 [00:03:31.000] Files (2) + +Info 93 [00:03:32.000] ----------------------------------------------- +Info 93 [00:03:33.000] Open files: +Info 93 [00:03:34.000] FileName: /user/username/projects/myproject/main/main.ts ProjectRootPath: undefined +Info 93 [00:03:35.000] Projects: /user/username/projects/myproject/main/tsconfig.json +Info 93 [00:03:36.000] FileName: /user/username/projects/myproject/dependency/FnS.ts ProjectRootPath: undefined +Info 93 [00:03:37.000] Projects: /user/username/projects/myproject/dependency/tsconfig.json +Info 93 [00:03:38.000] FileName: /user/username/projects/myproject/random/random.ts ProjectRootPath: undefined +Info 93 [00:03:39.000] Projects: /user/username/projects/myproject/random/tsconfig.json After request PolledWatches:: @@ -1907,11 +1907,11 @@ FsWatchesRecursive:: /user/username/projects/myproject/random: {} -Info 93 [16:03:40.000] response: +Info 93 [00:03:40.000] response: { "responseRequired": false } -Info 94 [16:03:41.000] request: +Info 94 [00:03:41.000] request: { "seq": 0, "type": "request", @@ -1954,24 +1954,24 @@ FsWatchesRecursive:: /user/username/projects/myproject/random: {} -Info 95 [16:03:42.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/main/main.ts 500 undefined WatchType: Closed Script info -Info 96 [16:03:43.000] Project '/user/username/projects/myproject/main/tsconfig.json' (Configured) -Info 96 [16:03:44.000] Files (2) +Info 95 [00:03:42.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/main/main.ts 500 undefined WatchType: Closed Script info +Info 96 [00:03:43.000] Project '/user/username/projects/myproject/main/tsconfig.json' (Configured) +Info 96 [00:03:44.000] Files (2) -Info 96 [16:03:45.000] ----------------------------------------------- -Info 96 [16:03:46.000] Project '/user/username/projects/myproject/dependency/tsconfig.json' (Configured) -Info 96 [16:03:47.000] Files (2) +Info 96 [00:03:45.000] ----------------------------------------------- +Info 96 [00:03:46.000] Project '/user/username/projects/myproject/dependency/tsconfig.json' (Configured) +Info 96 [00:03:47.000] Files (2) -Info 96 [16:03:48.000] ----------------------------------------------- -Info 96 [16:03:49.000] Project '/user/username/projects/myproject/random/tsconfig.json' (Configured) -Info 96 [16:03:50.000] Files (2) +Info 96 [00:03:48.000] ----------------------------------------------- +Info 96 [00:03:49.000] Project '/user/username/projects/myproject/random/tsconfig.json' (Configured) +Info 96 [00:03:50.000] Files (2) -Info 96 [16:03:51.000] ----------------------------------------------- -Info 96 [16:03:52.000] Open files: -Info 96 [16:03:53.000] FileName: /user/username/projects/myproject/dependency/FnS.ts ProjectRootPath: undefined -Info 96 [16:03:54.000] Projects: /user/username/projects/myproject/dependency/tsconfig.json -Info 96 [16:03:55.000] FileName: /user/username/projects/myproject/random/random.ts ProjectRootPath: undefined -Info 96 [16:03:56.000] Projects: /user/username/projects/myproject/random/tsconfig.json +Info 96 [00:03:51.000] ----------------------------------------------- +Info 96 [00:03:52.000] Open files: +Info 96 [00:03:53.000] FileName: /user/username/projects/myproject/dependency/FnS.ts ProjectRootPath: undefined +Info 96 [00:03:54.000] Projects: /user/username/projects/myproject/dependency/tsconfig.json +Info 96 [00:03:55.000] FileName: /user/username/projects/myproject/random/random.ts ProjectRootPath: undefined +Info 96 [00:03:56.000] Projects: /user/username/projects/myproject/random/tsconfig.json After request PolledWatches:: @@ -2008,11 +2008,11 @@ FsWatchesRecursive:: /user/username/projects/myproject/random: {} -Info 96 [16:03:57.000] response: +Info 96 [00:03:57.000] response: { "responseRequired": false } -Info 97 [16:03:58.000] request: +Info 97 [00:03:58.000] request: { "seq": 0, "type": "request", @@ -2057,22 +2057,22 @@ FsWatchesRecursive:: /user/username/projects/myproject/random: {} -Info 98 [16:03:59.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/dependency/FnS.ts 500 undefined WatchType: Closed Script info -Info 99 [16:04:00.000] Project '/user/username/projects/myproject/main/tsconfig.json' (Configured) -Info 99 [16:04:01.000] Files (2) +Info 98 [00:03:59.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/dependency/FnS.ts 500 undefined WatchType: Closed Script info +Info 99 [00:04:00.000] Project '/user/username/projects/myproject/main/tsconfig.json' (Configured) +Info 99 [00:04:01.000] Files (2) -Info 99 [16:04:02.000] ----------------------------------------------- -Info 99 [16:04:03.000] Project '/user/username/projects/myproject/dependency/tsconfig.json' (Configured) -Info 99 [16:04:04.000] Files (2) +Info 99 [00:04:02.000] ----------------------------------------------- +Info 99 [00:04:03.000] Project '/user/username/projects/myproject/dependency/tsconfig.json' (Configured) +Info 99 [00:04:04.000] Files (2) -Info 99 [16:04:05.000] ----------------------------------------------- -Info 99 [16:04:06.000] Project '/user/username/projects/myproject/random/tsconfig.json' (Configured) -Info 99 [16:04:07.000] Files (2) +Info 99 [00:04:05.000] ----------------------------------------------- +Info 99 [00:04:06.000] Project '/user/username/projects/myproject/random/tsconfig.json' (Configured) +Info 99 [00:04:07.000] Files (2) -Info 99 [16:04:08.000] ----------------------------------------------- -Info 99 [16:04:09.000] Open files: -Info 99 [16:04:10.000] FileName: /user/username/projects/myproject/random/random.ts ProjectRootPath: undefined -Info 99 [16:04:11.000] Projects: /user/username/projects/myproject/random/tsconfig.json +Info 99 [00:04:08.000] ----------------------------------------------- +Info 99 [00:04:09.000] Open files: +Info 99 [00:04:10.000] FileName: /user/username/projects/myproject/random/random.ts ProjectRootPath: undefined +Info 99 [00:04:11.000] Projects: /user/username/projects/myproject/random/tsconfig.json After request PolledWatches:: @@ -2111,11 +2111,11 @@ FsWatchesRecursive:: /user/username/projects/myproject/random: {} -Info 99 [16:04:12.000] response: +Info 99 [00:04:12.000] response: { "responseRequired": false } -Info 100 [16:04:13.000] request: +Info 100 [00:04:13.000] request: { "seq": 0, "type": "request", @@ -2162,20 +2162,20 @@ FsWatchesRecursive:: /user/username/projects/myproject/random: {} -Info 101 [16:04:14.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/random/random.ts 500 undefined WatchType: Closed Script info -Info 102 [16:04:15.000] Project '/user/username/projects/myproject/main/tsconfig.json' (Configured) -Info 102 [16:04:16.000] Files (2) +Info 101 [00:04:14.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/random/random.ts 500 undefined WatchType: Closed Script info +Info 102 [00:04:15.000] Project '/user/username/projects/myproject/main/tsconfig.json' (Configured) +Info 102 [00:04:16.000] Files (2) -Info 102 [16:04:17.000] ----------------------------------------------- -Info 102 [16:04:18.000] Project '/user/username/projects/myproject/dependency/tsconfig.json' (Configured) -Info 102 [16:04:19.000] Files (2) +Info 102 [00:04:17.000] ----------------------------------------------- +Info 102 [00:04:18.000] Project '/user/username/projects/myproject/dependency/tsconfig.json' (Configured) +Info 102 [00:04:19.000] Files (2) -Info 102 [16:04:20.000] ----------------------------------------------- -Info 102 [16:04:21.000] Project '/user/username/projects/myproject/random/tsconfig.json' (Configured) -Info 102 [16:04:22.000] Files (2) +Info 102 [00:04:20.000] ----------------------------------------------- +Info 102 [00:04:21.000] Project '/user/username/projects/myproject/random/tsconfig.json' (Configured) +Info 102 [00:04:22.000] Files (2) -Info 102 [16:04:23.000] ----------------------------------------------- -Info 102 [16:04:24.000] Open files: +Info 102 [00:04:23.000] ----------------------------------------------- +Info 102 [00:04:24.000] Open files: After request PolledWatches:: @@ -2216,11 +2216,11 @@ FsWatchesRecursive:: /user/username/projects/myproject/random: {} -Info 102 [16:04:25.000] response: +Info 102 [00:04:25.000] response: { "responseRequired": false } -Info 103 [16:04:26.000] request: +Info 103 [00:04:26.000] request: { "seq": 0, "type": "request", @@ -2269,12 +2269,12 @@ FsWatchesRecursive:: /user/username/projects/myproject/random: {} -Info 104 [16:04:27.000] FileWatcher:: Close:: WatchInfo: /user/username/projects/myproject/random/random.ts 500 undefined WatchType: Closed Script info -Info 105 [16:04:28.000] Search path: /user/username/projects/myproject/random -Info 106 [16:04:29.000] For info: /user/username/projects/myproject/random/random.ts :: Config file name: /user/username/projects/myproject/random/tsconfig.json -Info 107 [16:04:30.000] `remove Project:: -Info 108 [16:04:31.000] Project '/user/username/projects/myproject/main/tsconfig.json' (Configured) -Info 109 [16:04:32.000] Files (2) +Info 104 [00:04:27.000] FileWatcher:: Close:: WatchInfo: /user/username/projects/myproject/random/random.ts 500 undefined WatchType: Closed Script info +Info 105 [00:04:28.000] Search path: /user/username/projects/myproject/random +Info 106 [00:04:29.000] For info: /user/username/projects/myproject/random/random.ts :: Config file name: /user/username/projects/myproject/random/tsconfig.json +Info 107 [00:04:30.000] `remove Project:: +Info 108 [00:04:31.000] Project '/user/username/projects/myproject/main/tsconfig.json' (Configured) +Info 109 [00:04:32.000] Files (2) /a/lib/lib.d.ts /user/username/projects/myproject/main/main.ts @@ -2284,19 +2284,19 @@ Info 109 [16:04:32.000] Files (2) main.ts Matched by default include pattern '**/*' -Info 110 [16:04:33.000] ----------------------------------------------- -Info 111 [16:04:34.000] DirectoryWatcher:: Close:: WatchInfo: /user/username/projects/myproject/main 1 undefined Config: /user/username/projects/myproject/main/tsconfig.json WatchType: Wild card directory -Info 112 [16:04:35.000] 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 113 [16:04:36.000] FileWatcher:: Close:: WatchInfo: /user/username/projects/myproject/main/tsconfig.json 2000 undefined Project: /user/username/projects/myproject/main/tsconfig.json WatchType: Config file -Info 114 [16:04:37.000] DirectoryWatcher:: Close:: WatchInfo: /user/username/projects/myproject/decls 1 undefined Project: /user/username/projects/myproject/main/tsconfig.json WatchType: Failed Lookup Locations -Info 115 [16:04:38.000] 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 116 [16:04:39.000] 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 117 [16:04:40.000] 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 118 [16:04:41.000] DirectoryWatcher:: Close:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/main/tsconfig.json WatchType: Type roots -Info 119 [16:04:42.000] 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 120 [16:04:43.000] `remove Project:: -Info 121 [16:04:44.000] Project '/user/username/projects/myproject/dependency/tsconfig.json' (Configured) -Info 122 [16:04:45.000] Files (2) +Info 110 [00:04:33.000] ----------------------------------------------- +Info 111 [00:04:34.000] DirectoryWatcher:: Close:: WatchInfo: /user/username/projects/myproject/main 1 undefined Config: /user/username/projects/myproject/main/tsconfig.json WatchType: Wild card directory +Info 112 [00:04:35.000] 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 113 [00:04:36.000] FileWatcher:: Close:: WatchInfo: /user/username/projects/myproject/main/tsconfig.json 2000 undefined Project: /user/username/projects/myproject/main/tsconfig.json WatchType: Config file +Info 114 [00:04:37.000] DirectoryWatcher:: Close:: WatchInfo: /user/username/projects/myproject/decls 1 undefined Project: /user/username/projects/myproject/main/tsconfig.json WatchType: Failed Lookup Locations +Info 115 [00:04:38.000] 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 116 [00:04:39.000] 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 117 [00:04:40.000] 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 118 [00:04:41.000] DirectoryWatcher:: Close:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/main/tsconfig.json WatchType: Type roots +Info 119 [00:04:42.000] 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 120 [00:04:43.000] `remove Project:: +Info 121 [00:04:44.000] Project '/user/username/projects/myproject/dependency/tsconfig.json' (Configured) +Info 122 [00:04:45.000] Files (2) /a/lib/lib.d.ts /user/username/projects/myproject/dependency/FnS.ts @@ -2306,24 +2306,24 @@ Info 122 [16:04:45.000] Files (2) FnS.ts Matched by default include pattern '**/*' -Info 123 [16:04:46.000] ----------------------------------------------- -Info 124 [16:04:47.000] DirectoryWatcher:: Close:: WatchInfo: /user/username/projects/myproject/dependency 1 undefined Config: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Wild card directory -Info 125 [16:04:48.000] 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 126 [16:04:49.000] FileWatcher:: Close:: WatchInfo: /user/username/projects/myproject/dependency/tsconfig.json 2000 undefined Project: /user/username/projects/myproject/main/tsconfig.json WatchType: Config file -Info 127 [16:04:50.000] 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 128 [16:04:51.000] 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 129 [16:04:52.000] DirectoryWatcher:: Close:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Type roots -Info 130 [16:04:53.000] 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 131 [16:04:54.000] 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 132 [16:04:55.000] FileWatcher:: Close:: WatchInfo: /user/username/projects/myproject/main/main.ts 500 undefined WatchType: Closed Script info -Info 133 [16:04:56.000] FileWatcher:: Close:: WatchInfo: /user/username/projects/myproject/dependency/FnS.ts 500 undefined WatchType: Closed Script info -Info 134 [16:04:57.000] Project '/user/username/projects/myproject/random/tsconfig.json' (Configured) -Info 134 [16:04:58.000] Files (2) - -Info 134 [16:04:59.000] ----------------------------------------------- -Info 134 [16:05:00.000] Open files: -Info 134 [16:05:01.000] FileName: /user/username/projects/myproject/random/random.ts ProjectRootPath: undefined -Info 134 [16:05:02.000] Projects: /user/username/projects/myproject/random/tsconfig.json +Info 123 [00:04:46.000] ----------------------------------------------- +Info 124 [00:04:47.000] DirectoryWatcher:: Close:: WatchInfo: /user/username/projects/myproject/dependency 1 undefined Config: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Wild card directory +Info 125 [00:04:48.000] 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 126 [00:04:49.000] FileWatcher:: Close:: WatchInfo: /user/username/projects/myproject/dependency/tsconfig.json 2000 undefined Project: /user/username/projects/myproject/main/tsconfig.json WatchType: Config file +Info 127 [00:04:50.000] 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 128 [00:04:51.000] 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 129 [00:04:52.000] DirectoryWatcher:: Close:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Type roots +Info 130 [00:04:53.000] 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 131 [00:04:54.000] 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 132 [00:04:55.000] FileWatcher:: Close:: WatchInfo: /user/username/projects/myproject/main/main.ts 500 undefined WatchType: Closed Script info +Info 133 [00:04:56.000] FileWatcher:: Close:: WatchInfo: /user/username/projects/myproject/dependency/FnS.ts 500 undefined WatchType: Closed Script info +Info 134 [00:04:57.000] Project '/user/username/projects/myproject/random/tsconfig.json' (Configured) +Info 134 [00:04:58.000] Files (2) + +Info 134 [00:04:59.000] ----------------------------------------------- +Info 134 [00:05:00.000] Open files: +Info 134 [00:05:01.000] FileName: /user/username/projects/myproject/random/random.ts ProjectRootPath: undefined +Info 134 [00:05:02.000] Projects: /user/username/projects/myproject/random/tsconfig.json After request PolledWatches:: @@ -2342,7 +2342,7 @@ FsWatchesRecursive:: /user/username/projects/myproject/random: {} -Info 134 [16:05:03.000] response: +Info 134 [00:05:03.000] response: { "responseRequired": false } \ No newline at end of file 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 022f8b46461cd..0c4d9cc1c14d6 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 @@ -1,5 +1,5 @@ -Info 0 [16:01:03.000] Provided types map file "/a/lib/typesMap.json" doesn't exist -Info 1 [16:01:04.000] request: +Info 0 [00:01:03.000] Provided types map file "/a/lib/typesMap.json" doesn't exist +Info 1 [00:01:04.000] request: { "seq": 0, "type": "request", @@ -200,11 +200,11 @@ FsWatches:: FsWatchesRecursive:: -Info 2 [16:01:05.000] Search path: /user/username/projects/myproject/main -Info 3 [16:01:06.000] For info: /user/username/projects/myproject/main/main.ts :: Config file name: /user/username/projects/myproject/main/tsconfig.json -Info 4 [16:01:07.000] Creating configuration project /user/username/projects/myproject/main/tsconfig.json -Info 5 [16:01:08.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/main/tsconfig.json 2000 undefined Project: /user/username/projects/myproject/main/tsconfig.json WatchType: Config file -Info 6 [16:01:09.000] Config: /user/username/projects/myproject/main/tsconfig.json : { +Info 2 [00:01:05.000] Search path: /user/username/projects/myproject/main +Info 3 [00:01:06.000] For info: /user/username/projects/myproject/main/main.ts :: Config file name: /user/username/projects/myproject/main/tsconfig.json +Info 4 [00:01:07.000] Creating configuration project /user/username/projects/myproject/main/tsconfig.json +Info 5 [00:01:08.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/main/tsconfig.json 2000 undefined Project: /user/username/projects/myproject/main/tsconfig.json WatchType: Config file +Info 6 [00:01:09.000] Config: /user/username/projects/myproject/main/tsconfig.json : { "rootNames": [ "/user/username/projects/myproject/main/main.ts" ], @@ -221,11 +221,11 @@ Info 6 [16:01:09.000] Config: /user/username/projects/myproject/main/tsconfig } ] } -Info 7 [16:01:10.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/main 1 undefined Config: /user/username/projects/myproject/main/tsconfig.json WatchType: Wild card directory -Info 8 [16:01:11.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/main 1 undefined Config: /user/username/projects/myproject/main/tsconfig.json WatchType: Wild card directory -Info 9 [16:01:12.000] Plugins were requested but not running in environment that supports 'require'. Nothing will be loaded -Info 10 [16:01:13.000] Starting updateGraphWorker: Project: /user/username/projects/myproject/main/tsconfig.json -Info 11 [16:01:14.000] Config: /user/username/projects/myproject/dependency/tsconfig.json : { +Info 7 [00:01:10.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/main 1 undefined Config: /user/username/projects/myproject/main/tsconfig.json WatchType: Wild card directory +Info 8 [00:01:11.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/main 1 undefined Config: /user/username/projects/myproject/main/tsconfig.json WatchType: Wild card directory +Info 9 [00:01:12.000] Plugins were requested but not running in environment that supports 'require'. Nothing will be loaded +Info 10 [00:01:13.000] Starting updateGraphWorker: Project: /user/username/projects/myproject/main/tsconfig.json +Info 11 [00:01:14.000] Config: /user/username/projects/myproject/dependency/tsconfig.json : { "rootNames": [ "/user/username/projects/myproject/dependency/FnS.ts" ], @@ -236,20 +236,20 @@ Info 11 [16:01:14.000] Config: /user/username/projects/myproject/dependency/ts "configFilePath": "/user/username/projects/myproject/dependency/tsconfig.json" } } -Info 12 [16:01:15.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/dependency/tsconfig.json 2000 undefined Project: /user/username/projects/myproject/main/tsconfig.json WatchType: Config file -Info 13 [16:01:16.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/dependency 1 undefined Config: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Wild card directory -Info 14 [16:01:17.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/dependency 1 undefined Config: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Wild card directory -Info 15 [16:01:18.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/decls 1 undefined Project: /user/username/projects/myproject/main/tsconfig.json WatchType: Failed Lookup Locations -Info 16 [16:01:19.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/decls 1 undefined Project: /user/username/projects/myproject/main/tsconfig.json WatchType: Failed Lookup Locations -Info 17 [16:01:20.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/decls/fns.d.ts 500 undefined WatchType: Closed Script info -Info 18 [16:01:21.000] FileWatcher:: Added:: WatchInfo: /a/lib/lib.d.ts 500 undefined WatchType: Closed Script info -Info 19 [16:01:22.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/main/node_modules/@types 1 undefined Project: /user/username/projects/myproject/main/tsconfig.json WatchType: Type roots -Info 20 [16:01:23.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/main/node_modules/@types 1 undefined Project: /user/username/projects/myproject/main/tsconfig.json WatchType: Type roots -Info 21 [16:01:24.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/main/tsconfig.json WatchType: Type roots -Info 22 [16:01:25.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/main/tsconfig.json WatchType: Type roots -Info 23 [16:01:26.000] Finishing updateGraphWorker: Project: /user/username/projects/myproject/main/tsconfig.json Version: 1 structureChanged: true structureIsReused:: Not Elapsed:: *ms -Info 24 [16:01:27.000] Project '/user/username/projects/myproject/main/tsconfig.json' (Configured) -Info 25 [16:01:28.000] Files (3) +Info 12 [00:01:15.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/dependency/tsconfig.json 2000 undefined Project: /user/username/projects/myproject/main/tsconfig.json WatchType: Config file +Info 13 [00:01:16.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/dependency 1 undefined Config: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Wild card directory +Info 14 [00:01:17.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/dependency 1 undefined Config: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Wild card directory +Info 15 [00:01:18.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/decls 1 undefined Project: /user/username/projects/myproject/main/tsconfig.json WatchType: Failed Lookup Locations +Info 16 [00:01:19.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/decls 1 undefined Project: /user/username/projects/myproject/main/tsconfig.json WatchType: Failed Lookup Locations +Info 17 [00:01:20.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/decls/fns.d.ts 500 undefined WatchType: Closed Script info +Info 18 [00:01:21.000] FileWatcher:: Added:: WatchInfo: /a/lib/lib.d.ts 500 undefined WatchType: Closed Script info +Info 19 [00:01:22.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/main/node_modules/@types 1 undefined Project: /user/username/projects/myproject/main/tsconfig.json WatchType: Type roots +Info 20 [00:01:23.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/main/node_modules/@types 1 undefined Project: /user/username/projects/myproject/main/tsconfig.json WatchType: Type roots +Info 21 [00:01:24.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/main/tsconfig.json WatchType: Type roots +Info 22 [00:01:25.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/main/tsconfig.json WatchType: Type roots +Info 23 [00:01:26.000] Finishing updateGraphWorker: Project: /user/username/projects/myproject/main/tsconfig.json Version: 1 structureChanged: true structureIsReused:: Not Elapsed:: *ms +Info 24 [00:01:27.000] Project '/user/username/projects/myproject/main/tsconfig.json' (Configured) +Info 25 [00:01:28.000] Files (3) /a/lib/lib.d.ts /user/username/projects/myproject/decls/fns.d.ts /user/username/projects/myproject/main/main.ts @@ -262,16 +262,16 @@ Info 25 [16:01:28.000] Files (3) main.ts Matched by default include pattern '**/*' -Info 26 [16:01:29.000] ----------------------------------------------- -Info 27 [16:01:30.000] Search path: /user/username/projects/myproject/main -Info 28 [16:01:31.000] For info: /user/username/projects/myproject/main/tsconfig.json :: No config files found. -Info 29 [16:01:32.000] Project '/user/username/projects/myproject/main/tsconfig.json' (Configured) -Info 29 [16:01:33.000] Files (3) +Info 26 [00:01:29.000] ----------------------------------------------- +Info 27 [00:01:30.000] Search path: /user/username/projects/myproject/main +Info 28 [00:01:31.000] For info: /user/username/projects/myproject/main/tsconfig.json :: No config files found. +Info 29 [00:01:32.000] Project '/user/username/projects/myproject/main/tsconfig.json' (Configured) +Info 29 [00:01:33.000] Files (3) -Info 29 [16:01:34.000] ----------------------------------------------- -Info 29 [16:01:35.000] Open files: -Info 29 [16:01:36.000] FileName: /user/username/projects/myproject/main/main.ts ProjectRootPath: undefined -Info 29 [16:01:37.000] Projects: /user/username/projects/myproject/main/tsconfig.json +Info 29 [00:01:34.000] ----------------------------------------------- +Info 29 [00:01:35.000] Open files: +Info 29 [00:01:36.000] FileName: /user/username/projects/myproject/main/main.ts ProjectRootPath: undefined +Info 29 [00:01:37.000] Projects: /user/username/projects/myproject/main/tsconfig.json After request PolledWatches:: @@ -298,11 +298,11 @@ FsWatchesRecursive:: /user/username/projects/myproject/decls: {} -Info 29 [16:01:38.000] response: +Info 29 [00:01:38.000] response: { "responseRequired": false } -Info 30 [16:01:39.000] request: +Info 30 [00:01:39.000] request: { "seq": 0, "type": "request", @@ -337,18 +337,18 @@ FsWatchesRecursive:: /user/username/projects/myproject/decls: {} -Info 31 [16:01:40.000] Search path: /user/username/projects/myproject/dependency -Info 32 [16:01:41.000] For info: /user/username/projects/myproject/dependency/FnS.ts :: Config file name: /user/username/projects/myproject/dependency/tsconfig.json -Info 33 [16:01:42.000] Creating configuration project /user/username/projects/myproject/dependency/tsconfig.json -Info 34 [16:01:43.000] Plugins were requested but not running in environment that supports 'require'. Nothing will be loaded -Info 35 [16:01:44.000] Starting updateGraphWorker: Project: /user/username/projects/myproject/dependency/tsconfig.json -Info 36 [16:01:45.000] 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 37 [16:01:46.000] 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 38 [16:01:47.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Type roots -Info 39 [16:01:48.000] 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 40 [16:01:49.000] Finishing updateGraphWorker: Project: /user/username/projects/myproject/dependency/tsconfig.json Version: 1 structureChanged: true structureIsReused:: Not Elapsed:: *ms -Info 41 [16:01:50.000] Project '/user/username/projects/myproject/dependency/tsconfig.json' (Configured) -Info 42 [16:01:51.000] Files (2) +Info 31 [00:01:40.000] Search path: /user/username/projects/myproject/dependency +Info 32 [00:01:41.000] For info: /user/username/projects/myproject/dependency/FnS.ts :: Config file name: /user/username/projects/myproject/dependency/tsconfig.json +Info 33 [00:01:42.000] Creating configuration project /user/username/projects/myproject/dependency/tsconfig.json +Info 34 [00:01:43.000] Plugins were requested but not running in environment that supports 'require'. Nothing will be loaded +Info 35 [00:01:44.000] Starting updateGraphWorker: Project: /user/username/projects/myproject/dependency/tsconfig.json +Info 36 [00:01:45.000] 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 37 [00:01:46.000] 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 38 [00:01:47.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Type roots +Info 39 [00:01:48.000] 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 40 [00:01:49.000] Finishing updateGraphWorker: Project: /user/username/projects/myproject/dependency/tsconfig.json Version: 1 structureChanged: true structureIsReused:: Not Elapsed:: *ms +Info 41 [00:01:50.000] Project '/user/username/projects/myproject/dependency/tsconfig.json' (Configured) +Info 42 [00:01:51.000] Files (2) /a/lib/lib.d.ts /user/username/projects/myproject/dependency/FnS.ts @@ -358,22 +358,22 @@ Info 42 [16:01:51.000] Files (2) FnS.ts Matched by default include pattern '**/*' -Info 43 [16:01:52.000] ----------------------------------------------- -Info 44 [16:01:53.000] Search path: /user/username/projects/myproject/dependency -Info 45 [16:01:54.000] For info: /user/username/projects/myproject/dependency/tsconfig.json :: No config files found. -Info 46 [16:01:55.000] Project '/user/username/projects/myproject/main/tsconfig.json' (Configured) -Info 46 [16:01:56.000] Files (3) - -Info 46 [16:01:57.000] ----------------------------------------------- -Info 46 [16:01:58.000] Project '/user/username/projects/myproject/dependency/tsconfig.json' (Configured) -Info 46 [16:01:59.000] Files (2) - -Info 46 [16:02:00.000] ----------------------------------------------- -Info 46 [16:02:01.000] Open files: -Info 46 [16:02:02.000] FileName: /user/username/projects/myproject/main/main.ts ProjectRootPath: undefined -Info 46 [16:02:03.000] Projects: /user/username/projects/myproject/main/tsconfig.json -Info 46 [16:02:04.000] FileName: /user/username/projects/myproject/dependency/FnS.ts ProjectRootPath: undefined -Info 46 [16:02:05.000] Projects: /user/username/projects/myproject/dependency/tsconfig.json +Info 43 [00:01:52.000] ----------------------------------------------- +Info 44 [00:01:53.000] Search path: /user/username/projects/myproject/dependency +Info 45 [00:01:54.000] For info: /user/username/projects/myproject/dependency/tsconfig.json :: No config files found. +Info 46 [00:01:55.000] Project '/user/username/projects/myproject/main/tsconfig.json' (Configured) +Info 46 [00:01:56.000] Files (3) + +Info 46 [00:01:57.000] ----------------------------------------------- +Info 46 [00:01:58.000] Project '/user/username/projects/myproject/dependency/tsconfig.json' (Configured) +Info 46 [00:01:59.000] Files (2) + +Info 46 [00:02:00.000] ----------------------------------------------- +Info 46 [00:02:01.000] Open files: +Info 46 [00:02:02.000] FileName: /user/username/projects/myproject/main/main.ts ProjectRootPath: undefined +Info 46 [00:02:03.000] Projects: /user/username/projects/myproject/main/tsconfig.json +Info 46 [00:02:04.000] FileName: /user/username/projects/myproject/dependency/FnS.ts ProjectRootPath: undefined +Info 46 [00:02:05.000] Projects: /user/username/projects/myproject/dependency/tsconfig.json After request PolledWatches:: @@ -402,11 +402,11 @@ FsWatchesRecursive:: /user/username/projects/myproject/decls: {} -Info 46 [16:02:06.000] response: +Info 46 [00:02:06.000] response: { "responseRequired": false } -Info 47 [16:02:07.000] request: +Info 47 [00:02:07.000] request: { "seq": 0, "type": "request", @@ -443,11 +443,11 @@ FsWatchesRecursive:: /user/username/projects/myproject/decls: {} -Info 48 [16:02:08.000] Search path: /user/username/projects/myproject/random -Info 49 [16:02:09.000] For info: /user/username/projects/myproject/random/random.ts :: Config file name: /user/username/projects/myproject/random/tsconfig.json -Info 50 [16:02:10.000] Creating configuration project /user/username/projects/myproject/random/tsconfig.json -Info 51 [16:02:11.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/random/tsconfig.json 2000 undefined Project: /user/username/projects/myproject/random/tsconfig.json WatchType: Config file -Info 52 [16:02:12.000] Config: /user/username/projects/myproject/random/tsconfig.json : { +Info 48 [00:02:08.000] Search path: /user/username/projects/myproject/random +Info 49 [00:02:09.000] For info: /user/username/projects/myproject/random/random.ts :: Config file name: /user/username/projects/myproject/random/tsconfig.json +Info 50 [00:02:10.000] Creating configuration project /user/username/projects/myproject/random/tsconfig.json +Info 51 [00:02:11.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/random/tsconfig.json 2000 undefined Project: /user/username/projects/myproject/random/tsconfig.json WatchType: Config file +Info 52 [00:02:12.000] Config: /user/username/projects/myproject/random/tsconfig.json : { "rootNames": [ "/user/username/projects/myproject/random/random.ts" ], @@ -455,17 +455,17 @@ Info 52 [16:02:12.000] Config: /user/username/projects/myproject/random/tsconf "configFilePath": "/user/username/projects/myproject/random/tsconfig.json" } } -Info 53 [16:02:13.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/random 1 undefined Config: /user/username/projects/myproject/random/tsconfig.json WatchType: Wild card directory -Info 54 [16:02:14.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/random 1 undefined Config: /user/username/projects/myproject/random/tsconfig.json WatchType: Wild card directory -Info 55 [16:02:15.000] Plugins were requested but not running in environment that supports 'require'. Nothing will be loaded -Info 56 [16:02:16.000] Starting updateGraphWorker: Project: /user/username/projects/myproject/random/tsconfig.json -Info 57 [16:02:17.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/random/node_modules/@types 1 undefined Project: /user/username/projects/myproject/random/tsconfig.json WatchType: Type roots -Info 58 [16:02:18.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/random/node_modules/@types 1 undefined Project: /user/username/projects/myproject/random/tsconfig.json WatchType: Type roots -Info 59 [16:02:19.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/random/tsconfig.json WatchType: Type roots -Info 60 [16:02:20.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/random/tsconfig.json WatchType: Type roots -Info 61 [16:02:21.000] Finishing updateGraphWorker: Project: /user/username/projects/myproject/random/tsconfig.json Version: 1 structureChanged: true structureIsReused:: Not Elapsed:: *ms -Info 62 [16:02:22.000] Project '/user/username/projects/myproject/random/tsconfig.json' (Configured) -Info 63 [16:02:23.000] Files (2) +Info 53 [00:02:13.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/random 1 undefined Config: /user/username/projects/myproject/random/tsconfig.json WatchType: Wild card directory +Info 54 [00:02:14.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/random 1 undefined Config: /user/username/projects/myproject/random/tsconfig.json WatchType: Wild card directory +Info 55 [00:02:15.000] Plugins were requested but not running in environment that supports 'require'. Nothing will be loaded +Info 56 [00:02:16.000] Starting updateGraphWorker: Project: /user/username/projects/myproject/random/tsconfig.json +Info 57 [00:02:17.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/random/node_modules/@types 1 undefined Project: /user/username/projects/myproject/random/tsconfig.json WatchType: Type roots +Info 58 [00:02:18.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/random/node_modules/@types 1 undefined Project: /user/username/projects/myproject/random/tsconfig.json WatchType: Type roots +Info 59 [00:02:19.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/random/tsconfig.json WatchType: Type roots +Info 60 [00:02:20.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/random/tsconfig.json WatchType: Type roots +Info 61 [00:02:21.000] Finishing updateGraphWorker: Project: /user/username/projects/myproject/random/tsconfig.json Version: 1 structureChanged: true structureIsReused:: Not Elapsed:: *ms +Info 62 [00:02:22.000] Project '/user/username/projects/myproject/random/tsconfig.json' (Configured) +Info 63 [00:02:23.000] Files (2) /a/lib/lib.d.ts /user/username/projects/myproject/random/random.ts @@ -475,26 +475,26 @@ Info 63 [16:02:23.000] Files (2) random.ts Matched by default include pattern '**/*' -Info 64 [16:02:24.000] ----------------------------------------------- -Info 65 [16:02:25.000] Project '/user/username/projects/myproject/main/tsconfig.json' (Configured) -Info 65 [16:02:26.000] Files (3) - -Info 65 [16:02:27.000] ----------------------------------------------- -Info 65 [16:02:28.000] Project '/user/username/projects/myproject/dependency/tsconfig.json' (Configured) -Info 65 [16:02:29.000] Files (2) - -Info 65 [16:02:30.000] ----------------------------------------------- -Info 65 [16:02:31.000] Project '/user/username/projects/myproject/random/tsconfig.json' (Configured) -Info 65 [16:02:32.000] Files (2) - -Info 65 [16:02:33.000] ----------------------------------------------- -Info 65 [16:02:34.000] Open files: -Info 65 [16:02:35.000] FileName: /user/username/projects/myproject/main/main.ts ProjectRootPath: undefined -Info 65 [16:02:36.000] Projects: /user/username/projects/myproject/main/tsconfig.json -Info 65 [16:02:37.000] FileName: /user/username/projects/myproject/dependency/FnS.ts ProjectRootPath: undefined -Info 65 [16:02:38.000] Projects: /user/username/projects/myproject/dependency/tsconfig.json -Info 65 [16:02:39.000] FileName: /user/username/projects/myproject/random/random.ts ProjectRootPath: undefined -Info 65 [16:02:40.000] Projects: /user/username/projects/myproject/random/tsconfig.json +Info 64 [00:02:24.000] ----------------------------------------------- +Info 65 [00:02:25.000] Project '/user/username/projects/myproject/main/tsconfig.json' (Configured) +Info 65 [00:02:26.000] Files (3) + +Info 65 [00:02:27.000] ----------------------------------------------- +Info 65 [00:02:28.000] Project '/user/username/projects/myproject/dependency/tsconfig.json' (Configured) +Info 65 [00:02:29.000] Files (2) + +Info 65 [00:02:30.000] ----------------------------------------------- +Info 65 [00:02:31.000] Project '/user/username/projects/myproject/random/tsconfig.json' (Configured) +Info 65 [00:02:32.000] Files (2) + +Info 65 [00:02:33.000] ----------------------------------------------- +Info 65 [00:02:34.000] Open files: +Info 65 [00:02:35.000] FileName: /user/username/projects/myproject/main/main.ts ProjectRootPath: undefined +Info 65 [00:02:36.000] Projects: /user/username/projects/myproject/main/tsconfig.json +Info 65 [00:02:37.000] FileName: /user/username/projects/myproject/dependency/FnS.ts ProjectRootPath: undefined +Info 65 [00:02:38.000] Projects: /user/username/projects/myproject/dependency/tsconfig.json +Info 65 [00:02:39.000] FileName: /user/username/projects/myproject/random/random.ts ProjectRootPath: undefined +Info 65 [00:02:40.000] Projects: /user/username/projects/myproject/random/tsconfig.json After request PolledWatches:: @@ -529,11 +529,11 @@ FsWatchesRecursive:: /user/username/projects/myproject/random: {} -Info 65 [16:02:41.000] response: +Info 65 [00:02:41.000] response: { "responseRequired": false } -Info 66 [16:02:42.000] request: +Info 66 [00:02:42.000] request: { "command": "definitionAndBoundSpan", "arguments": { @@ -578,7 +578,7 @@ FsWatchesRecursive:: /user/username/projects/myproject/random: {} -Info 67 [16:02:43.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/decls/FnS.d.ts.map 500 undefined WatchType: Closed Script info +Info 67 [00:02:43.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/decls/FnS.d.ts.map 500 undefined WatchType: Closed Script info After request PolledWatches:: @@ -615,7 +615,7 @@ FsWatchesRecursive:: /user/username/projects/myproject/random: {} -Info 68 [16:02:44.000] response: +Info 68 [00:02:44.000] response: { "response": { "definitions": [ @@ -652,7 +652,7 @@ Info 68 [16:02:44.000] response: }, "responseRequired": true } -Info 69 [16:02:45.000] request: +Info 69 [00:02:45.000] request: { "command": "rename", "arguments": { @@ -699,8 +699,8 @@ FsWatchesRecursive:: /user/username/projects/myproject/random: {} -Info 70 [16:02:46.000] Search path: /user/username/projects/myproject/dependency -Info 71 [16:02:47.000] For info: /user/username/projects/myproject/dependency/FnS.ts :: Config file name: /user/username/projects/myproject/dependency/tsconfig.json +Info 70 [00:02:46.000] Search path: /user/username/projects/myproject/dependency +Info 71 [00:02:47.000] For info: /user/username/projects/myproject/dependency/FnS.ts :: Config file name: /user/username/projects/myproject/dependency/tsconfig.json After request PolledWatches:: @@ -737,7 +737,7 @@ FsWatchesRecursive:: /user/username/projects/myproject/random: {} -Info 72 [16:02:48.000] response: +Info 72 [00:02:48.000] response: { "response": { "info": { @@ -818,12 +818,12 @@ Info 72 [16:02:48.000] response: }, "responseRequired": true } -Info 73 [16:02:52.000] FileWatcher:: Triggered with /user/username/projects/myproject/decls/FnS.d.ts.map 1:: WatchInfo: /user/username/projects/myproject/decls/FnS.d.ts.map 500 undefined WatchType: Closed Script info -Info 74 [16:02:53.000] Scheduled: /user/username/projects/myproject/dependency/tsconfig.json -Info 75 [16:02:54.000] Scheduled: *ensureProjectForOpenFiles* -Info 76 [16:02:55.000] Scheduled: /user/username/projects/myproject/main/tsconfig.json -Info 77 [16:02:56.000] Scheduled: *ensureProjectForOpenFiles*, Cancelled earlier one -Info 78 [16:02:57.000] Elapsed:: *ms FileWatcher:: Triggered with /user/username/projects/myproject/decls/FnS.d.ts.map 1:: WatchInfo: /user/username/projects/myproject/decls/FnS.d.ts.map 500 undefined WatchType: Closed Script info +Info 73 [00:02:52.000] FileWatcher:: Triggered with /user/username/projects/myproject/decls/FnS.d.ts.map 1:: WatchInfo: /user/username/projects/myproject/decls/FnS.d.ts.map 500 undefined WatchType: Closed Script info +Info 74 [00:02:53.000] Scheduled: /user/username/projects/myproject/dependency/tsconfig.json +Info 75 [00:02:54.000] Scheduled: *ensureProjectForOpenFiles* +Info 76 [00:02:55.000] Scheduled: /user/username/projects/myproject/main/tsconfig.json +Info 77 [00:02:56.000] Scheduled: *ensureProjectForOpenFiles*, Cancelled earlier one +Info 78 [00:02:57.000] Elapsed:: *ms FileWatcher:: Triggered with /user/username/projects/myproject/decls/FnS.d.ts.map 1:: WatchInfo: /user/username/projects/myproject/decls/FnS.d.ts.map 500 undefined WatchType: Closed Script info Before running timeout callbacks //// [/user/username/projects/myproject/decls/FnS.d.ts.map] {"version":3,"file":"FnS.d.ts","sourceRoot":"","sources":["../dependency/FnS.ts"],"names":[],"mappings":"AAAA,wBAAgB,GAAG,SAAM;AACzB,wBAAgB,GAAG,SAAM;AACzB,wBAAgB,GAAG,SAAM;AACzB,wBAAgB,GAAG,SAAM;AACzB,wBAAgB,GAAG,SAAM;AACzB,eAAO,MAAM,CAAC,KAAK,CAAC"} @@ -863,53 +863,53 @@ FsWatchesRecursive:: /user/username/projects/myproject/random: {} -Info 79 [16:02:58.000] Running: /user/username/projects/myproject/dependency/tsconfig.json -Info 80 [16:02:59.000] Starting updateGraphWorker: Project: /user/username/projects/myproject/dependency/tsconfig.json -Info 81 [16:03:00.000] Finishing updateGraphWorker: Project: /user/username/projects/myproject/dependency/tsconfig.json Version: 2 structureChanged: false structureIsReused:: Not Elapsed:: *ms -Info 82 [16:03:01.000] Running: /user/username/projects/myproject/main/tsconfig.json -Info 83 [16:03:02.000] Starting updateGraphWorker: Project: /user/username/projects/myproject/main/tsconfig.json -Info 84 [16:03:03.000] Finishing updateGraphWorker: Project: /user/username/projects/myproject/main/tsconfig.json Version: 2 structureChanged: false structureIsReused:: Not Elapsed:: *ms -Info 85 [16:03:04.000] Running: *ensureProjectForOpenFiles* -Info 86 [16:03:05.000] Before ensureProjectForOpenFiles: -Info 87 [16:03:06.000] Project '/user/username/projects/myproject/main/tsconfig.json' (Configured) -Info 87 [16:03:07.000] Files (3) - -Info 87 [16:03:08.000] ----------------------------------------------- -Info 87 [16:03:09.000] Project '/user/username/projects/myproject/dependency/tsconfig.json' (Configured) -Info 87 [16:03:10.000] Files (2) - -Info 87 [16:03:11.000] ----------------------------------------------- -Info 87 [16:03:12.000] Project '/user/username/projects/myproject/random/tsconfig.json' (Configured) -Info 87 [16:03:13.000] Files (2) - -Info 87 [16:03:14.000] ----------------------------------------------- -Info 87 [16:03:15.000] Open files: -Info 87 [16:03:16.000] FileName: /user/username/projects/myproject/main/main.ts ProjectRootPath: undefined -Info 87 [16:03:17.000] Projects: /user/username/projects/myproject/main/tsconfig.json -Info 87 [16:03:18.000] FileName: /user/username/projects/myproject/dependency/FnS.ts ProjectRootPath: undefined -Info 87 [16:03:19.000] Projects: /user/username/projects/myproject/dependency/tsconfig.json -Info 87 [16:03:20.000] FileName: /user/username/projects/myproject/random/random.ts ProjectRootPath: undefined -Info 87 [16:03:21.000] Projects: /user/username/projects/myproject/random/tsconfig.json -Info 87 [16:03:22.000] After ensureProjectForOpenFiles: -Info 88 [16:03:23.000] Project '/user/username/projects/myproject/main/tsconfig.json' (Configured) -Info 88 [16:03:24.000] Files (3) - -Info 88 [16:03:25.000] ----------------------------------------------- -Info 88 [16:03:26.000] Project '/user/username/projects/myproject/dependency/tsconfig.json' (Configured) -Info 88 [16:03:27.000] Files (2) - -Info 88 [16:03:28.000] ----------------------------------------------- -Info 88 [16:03:29.000] Project '/user/username/projects/myproject/random/tsconfig.json' (Configured) -Info 88 [16:03:30.000] Files (2) - -Info 88 [16:03:31.000] ----------------------------------------------- -Info 88 [16:03:32.000] Open files: -Info 88 [16:03:33.000] FileName: /user/username/projects/myproject/main/main.ts ProjectRootPath: undefined -Info 88 [16:03:34.000] Projects: /user/username/projects/myproject/main/tsconfig.json -Info 88 [16:03:35.000] FileName: /user/username/projects/myproject/dependency/FnS.ts ProjectRootPath: undefined -Info 88 [16:03:36.000] Projects: /user/username/projects/myproject/dependency/tsconfig.json -Info 88 [16:03:37.000] FileName: /user/username/projects/myproject/random/random.ts ProjectRootPath: undefined -Info 88 [16:03:38.000] Projects: /user/username/projects/myproject/random/tsconfig.json +Info 79 [00:02:58.000] Running: /user/username/projects/myproject/dependency/tsconfig.json +Info 80 [00:02:59.000] Starting updateGraphWorker: Project: /user/username/projects/myproject/dependency/tsconfig.json +Info 81 [00:03:00.000] Finishing updateGraphWorker: Project: /user/username/projects/myproject/dependency/tsconfig.json Version: 2 structureChanged: false structureIsReused:: Not Elapsed:: *ms +Info 82 [00:03:01.000] Running: /user/username/projects/myproject/main/tsconfig.json +Info 83 [00:03:02.000] Starting updateGraphWorker: Project: /user/username/projects/myproject/main/tsconfig.json +Info 84 [00:03:03.000] Finishing updateGraphWorker: Project: /user/username/projects/myproject/main/tsconfig.json Version: 2 structureChanged: false structureIsReused:: Not Elapsed:: *ms +Info 85 [00:03:04.000] Running: *ensureProjectForOpenFiles* +Info 86 [00:03:05.000] Before ensureProjectForOpenFiles: +Info 87 [00:03:06.000] Project '/user/username/projects/myproject/main/tsconfig.json' (Configured) +Info 87 [00:03:07.000] Files (3) + +Info 87 [00:03:08.000] ----------------------------------------------- +Info 87 [00:03:09.000] Project '/user/username/projects/myproject/dependency/tsconfig.json' (Configured) +Info 87 [00:03:10.000] Files (2) + +Info 87 [00:03:11.000] ----------------------------------------------- +Info 87 [00:03:12.000] Project '/user/username/projects/myproject/random/tsconfig.json' (Configured) +Info 87 [00:03:13.000] Files (2) + +Info 87 [00:03:14.000] ----------------------------------------------- +Info 87 [00:03:15.000] Open files: +Info 87 [00:03:16.000] FileName: /user/username/projects/myproject/main/main.ts ProjectRootPath: undefined +Info 87 [00:03:17.000] Projects: /user/username/projects/myproject/main/tsconfig.json +Info 87 [00:03:18.000] FileName: /user/username/projects/myproject/dependency/FnS.ts ProjectRootPath: undefined +Info 87 [00:03:19.000] Projects: /user/username/projects/myproject/dependency/tsconfig.json +Info 87 [00:03:20.000] FileName: /user/username/projects/myproject/random/random.ts ProjectRootPath: undefined +Info 87 [00:03:21.000] Projects: /user/username/projects/myproject/random/tsconfig.json +Info 87 [00:03:22.000] After ensureProjectForOpenFiles: +Info 88 [00:03:23.000] Project '/user/username/projects/myproject/main/tsconfig.json' (Configured) +Info 88 [00:03:24.000] Files (3) + +Info 88 [00:03:25.000] ----------------------------------------------- +Info 88 [00:03:26.000] Project '/user/username/projects/myproject/dependency/tsconfig.json' (Configured) +Info 88 [00:03:27.000] Files (2) + +Info 88 [00:03:28.000] ----------------------------------------------- +Info 88 [00:03:29.000] Project '/user/username/projects/myproject/random/tsconfig.json' (Configured) +Info 88 [00:03:30.000] Files (2) + +Info 88 [00:03:31.000] ----------------------------------------------- +Info 88 [00:03:32.000] Open files: +Info 88 [00:03:33.000] FileName: /user/username/projects/myproject/main/main.ts ProjectRootPath: undefined +Info 88 [00:03:34.000] Projects: /user/username/projects/myproject/main/tsconfig.json +Info 88 [00:03:35.000] FileName: /user/username/projects/myproject/dependency/FnS.ts ProjectRootPath: undefined +Info 88 [00:03:36.000] Projects: /user/username/projects/myproject/dependency/tsconfig.json +Info 88 [00:03:37.000] FileName: /user/username/projects/myproject/random/random.ts ProjectRootPath: undefined +Info 88 [00:03:38.000] Projects: /user/username/projects/myproject/random/tsconfig.json After running timeout callbacks PolledWatches:: @@ -946,7 +946,7 @@ FsWatchesRecursive:: /user/username/projects/myproject/random: {} -Info 88 [16:03:39.000] request: +Info 88 [00:03:39.000] request: { "command": "definitionAndBoundSpan", "arguments": { @@ -1029,7 +1029,7 @@ FsWatchesRecursive:: /user/username/projects/myproject/random: {} -Info 89 [16:03:40.000] response: +Info 89 [00:03:40.000] response: { "response": { "definitions": [ @@ -1066,7 +1066,7 @@ Info 89 [16:03:40.000] response: }, "responseRequired": true } -Info 90 [16:03:41.000] request: +Info 90 [00:03:41.000] request: { "command": "definitionAndBoundSpan", "arguments": { @@ -1149,7 +1149,7 @@ FsWatchesRecursive:: /user/username/projects/myproject/random: {} -Info 91 [16:03:42.000] response: +Info 91 [00:03:42.000] response: { "response": { "definitions": [ @@ -1186,7 +1186,7 @@ Info 91 [16:03:42.000] response: }, "responseRequired": true } -Info 92 [16:03:43.000] request: +Info 92 [00:03:43.000] request: { "command": "definitionAndBoundSpan", "arguments": { @@ -1269,7 +1269,7 @@ FsWatchesRecursive:: /user/username/projects/myproject/random: {} -Info 93 [16:03:44.000] response: +Info 93 [00:03:44.000] response: { "response": { "definitions": [ @@ -1306,7 +1306,7 @@ Info 93 [16:03:44.000] response: }, "responseRequired": true } -Info 94 [16:03:45.000] request: +Info 94 [00:03:45.000] request: { "command": "definitionAndBoundSpan", "arguments": { @@ -1389,7 +1389,7 @@ FsWatchesRecursive:: /user/username/projects/myproject/random: {} -Info 95 [16:03:46.000] response: +Info 95 [00:03:46.000] response: { "response": { "definitions": [ @@ -1426,7 +1426,7 @@ Info 95 [16:03:46.000] response: }, "responseRequired": true } -Info 96 [16:03:47.000] request: +Info 96 [00:03:47.000] request: { "command": "definitionAndBoundSpan", "arguments": { @@ -1509,7 +1509,7 @@ FsWatchesRecursive:: /user/username/projects/myproject/random: {} -Info 97 [16:03:48.000] response: +Info 97 [00:03:48.000] response: { "response": { "definitions": [ @@ -1546,7 +1546,7 @@ Info 97 [16:03:48.000] response: }, "responseRequired": true } -Info 98 [16:03:49.000] request: +Info 98 [00:03:49.000] request: { "command": "rename", "arguments": { @@ -1593,8 +1593,8 @@ FsWatchesRecursive:: /user/username/projects/myproject/random: {} -Info 99 [16:03:50.000] Search path: /user/username/projects/myproject/dependency -Info 100 [16:03:51.000] For info: /user/username/projects/myproject/dependency/FnS.ts :: Config file name: /user/username/projects/myproject/dependency/tsconfig.json +Info 99 [00:03:50.000] Search path: /user/username/projects/myproject/dependency +Info 100 [00:03:51.000] For info: /user/username/projects/myproject/dependency/FnS.ts :: Config file name: /user/username/projects/myproject/dependency/tsconfig.json After request PolledWatches:: @@ -1631,7 +1631,7 @@ FsWatchesRecursive:: /user/username/projects/myproject/random: {} -Info 101 [16:03:52.000] response: +Info 101 [00:03:52.000] response: { "response": { "info": { @@ -1712,7 +1712,7 @@ Info 101 [16:03:52.000] response: }, "responseRequired": true } -Info 102 [16:03:53.000] request: +Info 102 [00:03:53.000] request: { "command": "rename", "arguments": { @@ -1759,8 +1759,8 @@ FsWatchesRecursive:: /user/username/projects/myproject/random: {} -Info 103 [16:03:54.000] Search path: /user/username/projects/myproject/dependency -Info 104 [16:03:55.000] For info: /user/username/projects/myproject/dependency/FnS.ts :: Config file name: /user/username/projects/myproject/dependency/tsconfig.json +Info 103 [00:03:54.000] Search path: /user/username/projects/myproject/dependency +Info 104 [00:03:55.000] For info: /user/username/projects/myproject/dependency/FnS.ts :: Config file name: /user/username/projects/myproject/dependency/tsconfig.json After request PolledWatches:: @@ -1797,7 +1797,7 @@ FsWatchesRecursive:: /user/username/projects/myproject/random: {} -Info 105 [16:03:56.000] response: +Info 105 [00:03:56.000] response: { "response": { "info": { @@ -1878,7 +1878,7 @@ Info 105 [16:03:56.000] response: }, "responseRequired": true } -Info 106 [16:03:57.000] request: +Info 106 [00:03:57.000] request: { "command": "rename", "arguments": { @@ -1925,8 +1925,8 @@ FsWatchesRecursive:: /user/username/projects/myproject/random: {} -Info 107 [16:03:58.000] Search path: /user/username/projects/myproject/dependency -Info 108 [16:03:59.000] For info: /user/username/projects/myproject/dependency/FnS.ts :: Config file name: /user/username/projects/myproject/dependency/tsconfig.json +Info 107 [00:03:58.000] Search path: /user/username/projects/myproject/dependency +Info 108 [00:03:59.000] For info: /user/username/projects/myproject/dependency/FnS.ts :: Config file name: /user/username/projects/myproject/dependency/tsconfig.json After request PolledWatches:: @@ -1963,7 +1963,7 @@ FsWatchesRecursive:: /user/username/projects/myproject/random: {} -Info 109 [16:04:00.000] response: +Info 109 [00:04:00.000] response: { "response": { "info": { @@ -2044,7 +2044,7 @@ Info 109 [16:04:00.000] response: }, "responseRequired": true } -Info 110 [16:04:01.000] request: +Info 110 [00:04:01.000] request: { "command": "rename", "arguments": { @@ -2091,8 +2091,8 @@ FsWatchesRecursive:: /user/username/projects/myproject/random: {} -Info 111 [16:04:02.000] Search path: /user/username/projects/myproject/dependency -Info 112 [16:04:03.000] For info: /user/username/projects/myproject/dependency/FnS.ts :: Config file name: /user/username/projects/myproject/dependency/tsconfig.json +Info 111 [00:04:02.000] Search path: /user/username/projects/myproject/dependency +Info 112 [00:04:03.000] For info: /user/username/projects/myproject/dependency/FnS.ts :: Config file name: /user/username/projects/myproject/dependency/tsconfig.json After request PolledWatches:: @@ -2129,7 +2129,7 @@ FsWatchesRecursive:: /user/username/projects/myproject/random: {} -Info 113 [16:04:04.000] response: +Info 113 [00:04:04.000] response: { "response": { "info": { @@ -2210,7 +2210,7 @@ Info 113 [16:04:04.000] response: }, "responseRequired": true } -Info 114 [16:04:05.000] request: +Info 114 [00:04:05.000] request: { "command": "rename", "arguments": { @@ -2257,8 +2257,8 @@ FsWatchesRecursive:: /user/username/projects/myproject/random: {} -Info 115 [16:04:06.000] Search path: /user/username/projects/myproject/dependency -Info 116 [16:04:07.000] For info: /user/username/projects/myproject/dependency/FnS.ts :: Config file name: /user/username/projects/myproject/dependency/tsconfig.json +Info 115 [00:04:06.000] Search path: /user/username/projects/myproject/dependency +Info 116 [00:04:07.000] For info: /user/username/projects/myproject/dependency/FnS.ts :: Config file name: /user/username/projects/myproject/dependency/tsconfig.json After request PolledWatches:: @@ -2295,7 +2295,7 @@ FsWatchesRecursive:: /user/username/projects/myproject/random: {} -Info 117 [16:04:08.000] response: +Info 117 [00:04:08.000] response: { "response": { "info": { 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 7c6299c3849a6..ae8c98ac30251 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 @@ -1,5 +1,5 @@ -Info 0 [16:01:03.000] Provided types map file "/a/lib/typesMap.json" doesn't exist -Info 1 [16:01:04.000] request: +Info 0 [00:01:03.000] Provided types map file "/a/lib/typesMap.json" doesn't exist +Info 1 [00:01:04.000] request: { "seq": 0, "type": "request", @@ -200,11 +200,11 @@ FsWatches:: FsWatchesRecursive:: -Info 2 [16:01:05.000] Search path: /user/username/projects/myproject/main -Info 3 [16:01:06.000] For info: /user/username/projects/myproject/main/main.ts :: Config file name: /user/username/projects/myproject/main/tsconfig.json -Info 4 [16:01:07.000] Creating configuration project /user/username/projects/myproject/main/tsconfig.json -Info 5 [16:01:08.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/main/tsconfig.json 2000 undefined Project: /user/username/projects/myproject/main/tsconfig.json WatchType: Config file -Info 6 [16:01:09.000] Config: /user/username/projects/myproject/main/tsconfig.json : { +Info 2 [00:01:05.000] Search path: /user/username/projects/myproject/main +Info 3 [00:01:06.000] For info: /user/username/projects/myproject/main/main.ts :: Config file name: /user/username/projects/myproject/main/tsconfig.json +Info 4 [00:01:07.000] Creating configuration project /user/username/projects/myproject/main/tsconfig.json +Info 5 [00:01:08.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/main/tsconfig.json 2000 undefined Project: /user/username/projects/myproject/main/tsconfig.json WatchType: Config file +Info 6 [00:01:09.000] Config: /user/username/projects/myproject/main/tsconfig.json : { "rootNames": [ "/user/username/projects/myproject/main/main.ts" ], @@ -221,11 +221,11 @@ Info 6 [16:01:09.000] Config: /user/username/projects/myproject/main/tsconfig } ] } -Info 7 [16:01:10.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/main 1 undefined Config: /user/username/projects/myproject/main/tsconfig.json WatchType: Wild card directory -Info 8 [16:01:11.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/main 1 undefined Config: /user/username/projects/myproject/main/tsconfig.json WatchType: Wild card directory -Info 9 [16:01:12.000] Plugins were requested but not running in environment that supports 'require'. Nothing will be loaded -Info 10 [16:01:13.000] Starting updateGraphWorker: Project: /user/username/projects/myproject/main/tsconfig.json -Info 11 [16:01:14.000] Config: /user/username/projects/myproject/dependency/tsconfig.json : { +Info 7 [00:01:10.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/main 1 undefined Config: /user/username/projects/myproject/main/tsconfig.json WatchType: Wild card directory +Info 8 [00:01:11.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/main 1 undefined Config: /user/username/projects/myproject/main/tsconfig.json WatchType: Wild card directory +Info 9 [00:01:12.000] Plugins were requested but not running in environment that supports 'require'. Nothing will be loaded +Info 10 [00:01:13.000] Starting updateGraphWorker: Project: /user/username/projects/myproject/main/tsconfig.json +Info 11 [00:01:14.000] Config: /user/username/projects/myproject/dependency/tsconfig.json : { "rootNames": [ "/user/username/projects/myproject/dependency/FnS.ts" ], @@ -236,20 +236,20 @@ Info 11 [16:01:14.000] Config: /user/username/projects/myproject/dependency/ts "configFilePath": "/user/username/projects/myproject/dependency/tsconfig.json" } } -Info 12 [16:01:15.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/dependency/tsconfig.json 2000 undefined Project: /user/username/projects/myproject/main/tsconfig.json WatchType: Config file -Info 13 [16:01:16.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/dependency 1 undefined Config: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Wild card directory -Info 14 [16:01:17.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/dependency 1 undefined Config: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Wild card directory -Info 15 [16:01:18.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/decls 1 undefined Project: /user/username/projects/myproject/main/tsconfig.json WatchType: Failed Lookup Locations -Info 16 [16:01:19.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/decls 1 undefined Project: /user/username/projects/myproject/main/tsconfig.json WatchType: Failed Lookup Locations -Info 17 [16:01:20.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/decls/fns.d.ts 500 undefined WatchType: Closed Script info -Info 18 [16:01:21.000] FileWatcher:: Added:: WatchInfo: /a/lib/lib.d.ts 500 undefined WatchType: Closed Script info -Info 19 [16:01:22.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/main/node_modules/@types 1 undefined Project: /user/username/projects/myproject/main/tsconfig.json WatchType: Type roots -Info 20 [16:01:23.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/main/node_modules/@types 1 undefined Project: /user/username/projects/myproject/main/tsconfig.json WatchType: Type roots -Info 21 [16:01:24.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/main/tsconfig.json WatchType: Type roots -Info 22 [16:01:25.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/main/tsconfig.json WatchType: Type roots -Info 23 [16:01:26.000] Finishing updateGraphWorker: Project: /user/username/projects/myproject/main/tsconfig.json Version: 1 structureChanged: true structureIsReused:: Not Elapsed:: *ms -Info 24 [16:01:27.000] Project '/user/username/projects/myproject/main/tsconfig.json' (Configured) -Info 25 [16:01:28.000] Files (3) +Info 12 [00:01:15.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/dependency/tsconfig.json 2000 undefined Project: /user/username/projects/myproject/main/tsconfig.json WatchType: Config file +Info 13 [00:01:16.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/dependency 1 undefined Config: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Wild card directory +Info 14 [00:01:17.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/dependency 1 undefined Config: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Wild card directory +Info 15 [00:01:18.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/decls 1 undefined Project: /user/username/projects/myproject/main/tsconfig.json WatchType: Failed Lookup Locations +Info 16 [00:01:19.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/decls 1 undefined Project: /user/username/projects/myproject/main/tsconfig.json WatchType: Failed Lookup Locations +Info 17 [00:01:20.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/decls/fns.d.ts 500 undefined WatchType: Closed Script info +Info 18 [00:01:21.000] FileWatcher:: Added:: WatchInfo: /a/lib/lib.d.ts 500 undefined WatchType: Closed Script info +Info 19 [00:01:22.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/main/node_modules/@types 1 undefined Project: /user/username/projects/myproject/main/tsconfig.json WatchType: Type roots +Info 20 [00:01:23.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/main/node_modules/@types 1 undefined Project: /user/username/projects/myproject/main/tsconfig.json WatchType: Type roots +Info 21 [00:01:24.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/main/tsconfig.json WatchType: Type roots +Info 22 [00:01:25.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/main/tsconfig.json WatchType: Type roots +Info 23 [00:01:26.000] Finishing updateGraphWorker: Project: /user/username/projects/myproject/main/tsconfig.json Version: 1 structureChanged: true structureIsReused:: Not Elapsed:: *ms +Info 24 [00:01:27.000] Project '/user/username/projects/myproject/main/tsconfig.json' (Configured) +Info 25 [00:01:28.000] Files (3) /a/lib/lib.d.ts /user/username/projects/myproject/decls/fns.d.ts /user/username/projects/myproject/main/main.ts @@ -262,16 +262,16 @@ Info 25 [16:01:28.000] Files (3) main.ts Matched by default include pattern '**/*' -Info 26 [16:01:29.000] ----------------------------------------------- -Info 27 [16:01:30.000] Search path: /user/username/projects/myproject/main -Info 28 [16:01:31.000] For info: /user/username/projects/myproject/main/tsconfig.json :: No config files found. -Info 29 [16:01:32.000] Project '/user/username/projects/myproject/main/tsconfig.json' (Configured) -Info 29 [16:01:33.000] Files (3) +Info 26 [00:01:29.000] ----------------------------------------------- +Info 27 [00:01:30.000] Search path: /user/username/projects/myproject/main +Info 28 [00:01:31.000] For info: /user/username/projects/myproject/main/tsconfig.json :: No config files found. +Info 29 [00:01:32.000] Project '/user/username/projects/myproject/main/tsconfig.json' (Configured) +Info 29 [00:01:33.000] Files (3) -Info 29 [16:01:34.000] ----------------------------------------------- -Info 29 [16:01:35.000] Open files: -Info 29 [16:01:36.000] FileName: /user/username/projects/myproject/main/main.ts ProjectRootPath: undefined -Info 29 [16:01:37.000] Projects: /user/username/projects/myproject/main/tsconfig.json +Info 29 [00:01:34.000] ----------------------------------------------- +Info 29 [00:01:35.000] Open files: +Info 29 [00:01:36.000] FileName: /user/username/projects/myproject/main/main.ts ProjectRootPath: undefined +Info 29 [00:01:37.000] Projects: /user/username/projects/myproject/main/tsconfig.json After request PolledWatches:: @@ -298,11 +298,11 @@ FsWatchesRecursive:: /user/username/projects/myproject/decls: {} -Info 29 [16:01:38.000] response: +Info 29 [00:01:38.000] response: { "responseRequired": false } -Info 30 [16:01:39.000] request: +Info 30 [00:01:39.000] request: { "seq": 0, "type": "request", @@ -337,18 +337,18 @@ FsWatchesRecursive:: /user/username/projects/myproject/decls: {} -Info 31 [16:01:40.000] Search path: /user/username/projects/myproject/dependency -Info 32 [16:01:41.000] For info: /user/username/projects/myproject/dependency/FnS.ts :: Config file name: /user/username/projects/myproject/dependency/tsconfig.json -Info 33 [16:01:42.000] Creating configuration project /user/username/projects/myproject/dependency/tsconfig.json -Info 34 [16:01:43.000] Plugins were requested but not running in environment that supports 'require'. Nothing will be loaded -Info 35 [16:01:44.000] Starting updateGraphWorker: Project: /user/username/projects/myproject/dependency/tsconfig.json -Info 36 [16:01:45.000] 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 37 [16:01:46.000] 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 38 [16:01:47.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Type roots -Info 39 [16:01:48.000] 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 40 [16:01:49.000] Finishing updateGraphWorker: Project: /user/username/projects/myproject/dependency/tsconfig.json Version: 1 structureChanged: true structureIsReused:: Not Elapsed:: *ms -Info 41 [16:01:50.000] Project '/user/username/projects/myproject/dependency/tsconfig.json' (Configured) -Info 42 [16:01:51.000] Files (2) +Info 31 [00:01:40.000] Search path: /user/username/projects/myproject/dependency +Info 32 [00:01:41.000] For info: /user/username/projects/myproject/dependency/FnS.ts :: Config file name: /user/username/projects/myproject/dependency/tsconfig.json +Info 33 [00:01:42.000] Creating configuration project /user/username/projects/myproject/dependency/tsconfig.json +Info 34 [00:01:43.000] Plugins were requested but not running in environment that supports 'require'. Nothing will be loaded +Info 35 [00:01:44.000] Starting updateGraphWorker: Project: /user/username/projects/myproject/dependency/tsconfig.json +Info 36 [00:01:45.000] 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 37 [00:01:46.000] 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 38 [00:01:47.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Type roots +Info 39 [00:01:48.000] 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 40 [00:01:49.000] Finishing updateGraphWorker: Project: /user/username/projects/myproject/dependency/tsconfig.json Version: 1 structureChanged: true structureIsReused:: Not Elapsed:: *ms +Info 41 [00:01:50.000] Project '/user/username/projects/myproject/dependency/tsconfig.json' (Configured) +Info 42 [00:01:51.000] Files (2) /a/lib/lib.d.ts /user/username/projects/myproject/dependency/FnS.ts @@ -358,22 +358,22 @@ Info 42 [16:01:51.000] Files (2) FnS.ts Matched by default include pattern '**/*' -Info 43 [16:01:52.000] ----------------------------------------------- -Info 44 [16:01:53.000] Search path: /user/username/projects/myproject/dependency -Info 45 [16:01:54.000] For info: /user/username/projects/myproject/dependency/tsconfig.json :: No config files found. -Info 46 [16:01:55.000] Project '/user/username/projects/myproject/main/tsconfig.json' (Configured) -Info 46 [16:01:56.000] Files (3) - -Info 46 [16:01:57.000] ----------------------------------------------- -Info 46 [16:01:58.000] Project '/user/username/projects/myproject/dependency/tsconfig.json' (Configured) -Info 46 [16:01:59.000] Files (2) - -Info 46 [16:02:00.000] ----------------------------------------------- -Info 46 [16:02:01.000] Open files: -Info 46 [16:02:02.000] FileName: /user/username/projects/myproject/main/main.ts ProjectRootPath: undefined -Info 46 [16:02:03.000] Projects: /user/username/projects/myproject/main/tsconfig.json -Info 46 [16:02:04.000] FileName: /user/username/projects/myproject/dependency/FnS.ts ProjectRootPath: undefined -Info 46 [16:02:05.000] Projects: /user/username/projects/myproject/dependency/tsconfig.json +Info 43 [00:01:52.000] ----------------------------------------------- +Info 44 [00:01:53.000] Search path: /user/username/projects/myproject/dependency +Info 45 [00:01:54.000] For info: /user/username/projects/myproject/dependency/tsconfig.json :: No config files found. +Info 46 [00:01:55.000] Project '/user/username/projects/myproject/main/tsconfig.json' (Configured) +Info 46 [00:01:56.000] Files (3) + +Info 46 [00:01:57.000] ----------------------------------------------- +Info 46 [00:01:58.000] Project '/user/username/projects/myproject/dependency/tsconfig.json' (Configured) +Info 46 [00:01:59.000] Files (2) + +Info 46 [00:02:00.000] ----------------------------------------------- +Info 46 [00:02:01.000] Open files: +Info 46 [00:02:02.000] FileName: /user/username/projects/myproject/main/main.ts ProjectRootPath: undefined +Info 46 [00:02:03.000] Projects: /user/username/projects/myproject/main/tsconfig.json +Info 46 [00:02:04.000] FileName: /user/username/projects/myproject/dependency/FnS.ts ProjectRootPath: undefined +Info 46 [00:02:05.000] Projects: /user/username/projects/myproject/dependency/tsconfig.json After request PolledWatches:: @@ -402,11 +402,11 @@ FsWatchesRecursive:: /user/username/projects/myproject/decls: {} -Info 46 [16:02:06.000] response: +Info 46 [00:02:06.000] response: { "responseRequired": false } -Info 47 [16:02:07.000] request: +Info 47 [00:02:07.000] request: { "seq": 0, "type": "request", @@ -443,11 +443,11 @@ FsWatchesRecursive:: /user/username/projects/myproject/decls: {} -Info 48 [16:02:08.000] Search path: /user/username/projects/myproject/random -Info 49 [16:02:09.000] For info: /user/username/projects/myproject/random/random.ts :: Config file name: /user/username/projects/myproject/random/tsconfig.json -Info 50 [16:02:10.000] Creating configuration project /user/username/projects/myproject/random/tsconfig.json -Info 51 [16:02:11.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/random/tsconfig.json 2000 undefined Project: /user/username/projects/myproject/random/tsconfig.json WatchType: Config file -Info 52 [16:02:12.000] Config: /user/username/projects/myproject/random/tsconfig.json : { +Info 48 [00:02:08.000] Search path: /user/username/projects/myproject/random +Info 49 [00:02:09.000] For info: /user/username/projects/myproject/random/random.ts :: Config file name: /user/username/projects/myproject/random/tsconfig.json +Info 50 [00:02:10.000] Creating configuration project /user/username/projects/myproject/random/tsconfig.json +Info 51 [00:02:11.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/random/tsconfig.json 2000 undefined Project: /user/username/projects/myproject/random/tsconfig.json WatchType: Config file +Info 52 [00:02:12.000] Config: /user/username/projects/myproject/random/tsconfig.json : { "rootNames": [ "/user/username/projects/myproject/random/random.ts" ], @@ -455,17 +455,17 @@ Info 52 [16:02:12.000] Config: /user/username/projects/myproject/random/tsconf "configFilePath": "/user/username/projects/myproject/random/tsconfig.json" } } -Info 53 [16:02:13.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/random 1 undefined Config: /user/username/projects/myproject/random/tsconfig.json WatchType: Wild card directory -Info 54 [16:02:14.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/random 1 undefined Config: /user/username/projects/myproject/random/tsconfig.json WatchType: Wild card directory -Info 55 [16:02:15.000] Plugins were requested but not running in environment that supports 'require'. Nothing will be loaded -Info 56 [16:02:16.000] Starting updateGraphWorker: Project: /user/username/projects/myproject/random/tsconfig.json -Info 57 [16:02:17.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/random/node_modules/@types 1 undefined Project: /user/username/projects/myproject/random/tsconfig.json WatchType: Type roots -Info 58 [16:02:18.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/random/node_modules/@types 1 undefined Project: /user/username/projects/myproject/random/tsconfig.json WatchType: Type roots -Info 59 [16:02:19.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/random/tsconfig.json WatchType: Type roots -Info 60 [16:02:20.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/random/tsconfig.json WatchType: Type roots -Info 61 [16:02:21.000] Finishing updateGraphWorker: Project: /user/username/projects/myproject/random/tsconfig.json Version: 1 structureChanged: true structureIsReused:: Not Elapsed:: *ms -Info 62 [16:02:22.000] Project '/user/username/projects/myproject/random/tsconfig.json' (Configured) -Info 63 [16:02:23.000] Files (2) +Info 53 [00:02:13.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/random 1 undefined Config: /user/username/projects/myproject/random/tsconfig.json WatchType: Wild card directory +Info 54 [00:02:14.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/random 1 undefined Config: /user/username/projects/myproject/random/tsconfig.json WatchType: Wild card directory +Info 55 [00:02:15.000] Plugins were requested but not running in environment that supports 'require'. Nothing will be loaded +Info 56 [00:02:16.000] Starting updateGraphWorker: Project: /user/username/projects/myproject/random/tsconfig.json +Info 57 [00:02:17.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/random/node_modules/@types 1 undefined Project: /user/username/projects/myproject/random/tsconfig.json WatchType: Type roots +Info 58 [00:02:18.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/random/node_modules/@types 1 undefined Project: /user/username/projects/myproject/random/tsconfig.json WatchType: Type roots +Info 59 [00:02:19.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/random/tsconfig.json WatchType: Type roots +Info 60 [00:02:20.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/random/tsconfig.json WatchType: Type roots +Info 61 [00:02:21.000] Finishing updateGraphWorker: Project: /user/username/projects/myproject/random/tsconfig.json Version: 1 structureChanged: true structureIsReused:: Not Elapsed:: *ms +Info 62 [00:02:22.000] Project '/user/username/projects/myproject/random/tsconfig.json' (Configured) +Info 63 [00:02:23.000] Files (2) /a/lib/lib.d.ts /user/username/projects/myproject/random/random.ts @@ -475,26 +475,26 @@ Info 63 [16:02:23.000] Files (2) random.ts Matched by default include pattern '**/*' -Info 64 [16:02:24.000] ----------------------------------------------- -Info 65 [16:02:25.000] Project '/user/username/projects/myproject/main/tsconfig.json' (Configured) -Info 65 [16:02:26.000] Files (3) - -Info 65 [16:02:27.000] ----------------------------------------------- -Info 65 [16:02:28.000] Project '/user/username/projects/myproject/dependency/tsconfig.json' (Configured) -Info 65 [16:02:29.000] Files (2) - -Info 65 [16:02:30.000] ----------------------------------------------- -Info 65 [16:02:31.000] Project '/user/username/projects/myproject/random/tsconfig.json' (Configured) -Info 65 [16:02:32.000] Files (2) - -Info 65 [16:02:33.000] ----------------------------------------------- -Info 65 [16:02:34.000] Open files: -Info 65 [16:02:35.000] FileName: /user/username/projects/myproject/main/main.ts ProjectRootPath: undefined -Info 65 [16:02:36.000] Projects: /user/username/projects/myproject/main/tsconfig.json -Info 65 [16:02:37.000] FileName: /user/username/projects/myproject/dependency/FnS.ts ProjectRootPath: undefined -Info 65 [16:02:38.000] Projects: /user/username/projects/myproject/dependency/tsconfig.json -Info 65 [16:02:39.000] FileName: /user/username/projects/myproject/random/random.ts ProjectRootPath: undefined -Info 65 [16:02:40.000] Projects: /user/username/projects/myproject/random/tsconfig.json +Info 64 [00:02:24.000] ----------------------------------------------- +Info 65 [00:02:25.000] Project '/user/username/projects/myproject/main/tsconfig.json' (Configured) +Info 65 [00:02:26.000] Files (3) + +Info 65 [00:02:27.000] ----------------------------------------------- +Info 65 [00:02:28.000] Project '/user/username/projects/myproject/dependency/tsconfig.json' (Configured) +Info 65 [00:02:29.000] Files (2) + +Info 65 [00:02:30.000] ----------------------------------------------- +Info 65 [00:02:31.000] Project '/user/username/projects/myproject/random/tsconfig.json' (Configured) +Info 65 [00:02:32.000] Files (2) + +Info 65 [00:02:33.000] ----------------------------------------------- +Info 65 [00:02:34.000] Open files: +Info 65 [00:02:35.000] FileName: /user/username/projects/myproject/main/main.ts ProjectRootPath: undefined +Info 65 [00:02:36.000] Projects: /user/username/projects/myproject/main/tsconfig.json +Info 65 [00:02:37.000] FileName: /user/username/projects/myproject/dependency/FnS.ts ProjectRootPath: undefined +Info 65 [00:02:38.000] Projects: /user/username/projects/myproject/dependency/tsconfig.json +Info 65 [00:02:39.000] FileName: /user/username/projects/myproject/random/random.ts ProjectRootPath: undefined +Info 65 [00:02:40.000] Projects: /user/username/projects/myproject/random/tsconfig.json After request PolledWatches:: @@ -529,11 +529,11 @@ FsWatchesRecursive:: /user/username/projects/myproject/random: {} -Info 65 [16:02:41.000] response: +Info 65 [00:02:41.000] response: { "responseRequired": false } -Info 66 [16:02:42.000] request: +Info 66 [00:02:42.000] request: { "command": "definitionAndBoundSpan", "arguments": { @@ -578,7 +578,7 @@ FsWatchesRecursive:: /user/username/projects/myproject/random: {} -Info 67 [16:02:43.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/decls/FnS.d.ts.map 500 undefined WatchType: Closed Script info +Info 67 [00:02:43.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/decls/FnS.d.ts.map 500 undefined WatchType: Closed Script info After request PolledWatches:: @@ -615,7 +615,7 @@ FsWatchesRecursive:: /user/username/projects/myproject/random: {} -Info 68 [16:02:44.000] response: +Info 68 [00:02:44.000] response: { "response": { "definitions": [ @@ -652,7 +652,7 @@ Info 68 [16:02:44.000] response: }, "responseRequired": true } -Info 69 [16:02:45.000] request: +Info 69 [00:02:45.000] request: { "command": "rename", "arguments": { @@ -699,8 +699,8 @@ FsWatchesRecursive:: /user/username/projects/myproject/random: {} -Info 70 [16:02:46.000] Search path: /user/username/projects/myproject/dependency -Info 71 [16:02:47.000] For info: /user/username/projects/myproject/dependency/FnS.ts :: Config file name: /user/username/projects/myproject/dependency/tsconfig.json +Info 70 [00:02:46.000] Search path: /user/username/projects/myproject/dependency +Info 71 [00:02:47.000] For info: /user/username/projects/myproject/dependency/FnS.ts :: Config file name: /user/username/projects/myproject/dependency/tsconfig.json After request PolledWatches:: @@ -737,7 +737,7 @@ FsWatchesRecursive:: /user/username/projects/myproject/random: {} -Info 72 [16:02:48.000] response: +Info 72 [00:02:48.000] response: { "response": { "info": { @@ -818,13 +818,13 @@ Info 72 [16:02:48.000] response: }, "responseRequired": true } -Info 73 [16:02:52.000] FileWatcher:: Triggered with /user/username/projects/myproject/decls/FnS.d.ts.map 1:: WatchInfo: /user/username/projects/myproject/decls/FnS.d.ts.map 500 undefined WatchType: Closed Script info -Info 74 [16:02:53.000] Scheduled: /user/username/projects/myproject/dependency/tsconfig.json -Info 75 [16:02:54.000] Scheduled: *ensureProjectForOpenFiles* -Info 76 [16:02:55.000] Scheduled: /user/username/projects/myproject/main/tsconfig.json -Info 77 [16:02:56.000] Scheduled: *ensureProjectForOpenFiles*, Cancelled earlier one -Info 78 [16:02:57.000] Elapsed:: *ms FileWatcher:: Triggered with /user/username/projects/myproject/decls/FnS.d.ts.map 1:: WatchInfo: /user/username/projects/myproject/decls/FnS.d.ts.map 500 undefined WatchType: Closed Script info -Info 79 [16:02:58.000] request: +Info 73 [00:02:52.000] FileWatcher:: Triggered with /user/username/projects/myproject/decls/FnS.d.ts.map 1:: WatchInfo: /user/username/projects/myproject/decls/FnS.d.ts.map 500 undefined WatchType: Closed Script info +Info 74 [00:02:53.000] Scheduled: /user/username/projects/myproject/dependency/tsconfig.json +Info 75 [00:02:54.000] Scheduled: *ensureProjectForOpenFiles* +Info 76 [00:02:55.000] Scheduled: /user/username/projects/myproject/main/tsconfig.json +Info 77 [00:02:56.000] Scheduled: *ensureProjectForOpenFiles*, Cancelled earlier one +Info 78 [00:02:57.000] Elapsed:: *ms FileWatcher:: Triggered with /user/username/projects/myproject/decls/FnS.d.ts.map 1:: WatchInfo: /user/username/projects/myproject/decls/FnS.d.ts.map 500 undefined WatchType: Closed Script info +Info 79 [00:02:58.000] request: { "command": "definitionAndBoundSpan", "arguments": { @@ -874,8 +874,8 @@ FsWatchesRecursive:: /user/username/projects/myproject/random: {} -Info 80 [16:02:59.000] Starting updateGraphWorker: Project: /user/username/projects/myproject/main/tsconfig.json -Info 81 [16:03:00.000] Finishing updateGraphWorker: Project: /user/username/projects/myproject/main/tsconfig.json Version: 2 structureChanged: false structureIsReused:: Not Elapsed:: *ms +Info 80 [00:02:59.000] Starting updateGraphWorker: Project: /user/username/projects/myproject/main/tsconfig.json +Info 81 [00:03:00.000] Finishing updateGraphWorker: Project: /user/username/projects/myproject/main/tsconfig.json Version: 2 structureChanged: false structureIsReused:: Not Elapsed:: *ms After request PolledWatches:: @@ -912,7 +912,7 @@ FsWatchesRecursive:: /user/username/projects/myproject/random: {} -Info 82 [16:03:01.000] response: +Info 82 [00:03:01.000] response: { "response": { "definitions": [ @@ -949,7 +949,7 @@ Info 82 [16:03:01.000] response: }, "responseRequired": true } -Info 83 [16:03:02.000] request: +Info 83 [00:03:02.000] request: { "command": "definitionAndBoundSpan", "arguments": { @@ -1032,7 +1032,7 @@ FsWatchesRecursive:: /user/username/projects/myproject/random: {} -Info 84 [16:03:03.000] response: +Info 84 [00:03:03.000] response: { "response": { "definitions": [ @@ -1069,7 +1069,7 @@ Info 84 [16:03:03.000] response: }, "responseRequired": true } -Info 85 [16:03:04.000] request: +Info 85 [00:03:04.000] request: { "command": "definitionAndBoundSpan", "arguments": { @@ -1152,7 +1152,7 @@ FsWatchesRecursive:: /user/username/projects/myproject/random: {} -Info 86 [16:03:05.000] response: +Info 86 [00:03:05.000] response: { "response": { "definitions": [ @@ -1189,7 +1189,7 @@ Info 86 [16:03:05.000] response: }, "responseRequired": true } -Info 87 [16:03:06.000] request: +Info 87 [00:03:06.000] request: { "command": "definitionAndBoundSpan", "arguments": { @@ -1272,7 +1272,7 @@ FsWatchesRecursive:: /user/username/projects/myproject/random: {} -Info 88 [16:03:07.000] response: +Info 88 [00:03:07.000] response: { "response": { "definitions": [ @@ -1309,7 +1309,7 @@ Info 88 [16:03:07.000] response: }, "responseRequired": true } -Info 89 [16:03:08.000] request: +Info 89 [00:03:08.000] request: { "command": "definitionAndBoundSpan", "arguments": { @@ -1392,7 +1392,7 @@ FsWatchesRecursive:: /user/username/projects/myproject/random: {} -Info 90 [16:03:09.000] response: +Info 90 [00:03:09.000] response: { "response": { "definitions": [ @@ -1429,7 +1429,7 @@ Info 90 [16:03:09.000] response: }, "responseRequired": true } -Info 91 [16:03:10.000] request: +Info 91 [00:03:10.000] request: { "command": "rename", "arguments": { @@ -1476,10 +1476,10 @@ FsWatchesRecursive:: /user/username/projects/myproject/random: {} -Info 92 [16:03:11.000] Starting updateGraphWorker: Project: /user/username/projects/myproject/dependency/tsconfig.json -Info 93 [16:03:12.000] Finishing updateGraphWorker: Project: /user/username/projects/myproject/dependency/tsconfig.json Version: 2 structureChanged: false structureIsReused:: Not Elapsed:: *ms -Info 94 [16:03:13.000] Search path: /user/username/projects/myproject/dependency -Info 95 [16:03:14.000] For info: /user/username/projects/myproject/dependency/FnS.ts :: Config file name: /user/username/projects/myproject/dependency/tsconfig.json +Info 92 [00:03:11.000] Starting updateGraphWorker: Project: /user/username/projects/myproject/dependency/tsconfig.json +Info 93 [00:03:12.000] Finishing updateGraphWorker: Project: /user/username/projects/myproject/dependency/tsconfig.json Version: 2 structureChanged: false structureIsReused:: Not Elapsed:: *ms +Info 94 [00:03:13.000] Search path: /user/username/projects/myproject/dependency +Info 95 [00:03:14.000] For info: /user/username/projects/myproject/dependency/FnS.ts :: Config file name: /user/username/projects/myproject/dependency/tsconfig.json After request PolledWatches:: @@ -1516,7 +1516,7 @@ FsWatchesRecursive:: /user/username/projects/myproject/random: {} -Info 96 [16:03:15.000] response: +Info 96 [00:03:15.000] response: { "response": { "info": { @@ -1597,7 +1597,7 @@ Info 96 [16:03:15.000] response: }, "responseRequired": true } -Info 97 [16:03:16.000] request: +Info 97 [00:03:16.000] request: { "command": "rename", "arguments": { @@ -1644,8 +1644,8 @@ FsWatchesRecursive:: /user/username/projects/myproject/random: {} -Info 98 [16:03:17.000] Search path: /user/username/projects/myproject/dependency -Info 99 [16:03:18.000] For info: /user/username/projects/myproject/dependency/FnS.ts :: Config file name: /user/username/projects/myproject/dependency/tsconfig.json +Info 98 [00:03:17.000] Search path: /user/username/projects/myproject/dependency +Info 99 [00:03:18.000] For info: /user/username/projects/myproject/dependency/FnS.ts :: Config file name: /user/username/projects/myproject/dependency/tsconfig.json After request PolledWatches:: @@ -1682,7 +1682,7 @@ FsWatchesRecursive:: /user/username/projects/myproject/random: {} -Info 100 [16:03:19.000] response: +Info 100 [00:03:19.000] response: { "response": { "info": { @@ -1763,7 +1763,7 @@ Info 100 [16:03:19.000] response: }, "responseRequired": true } -Info 101 [16:03:20.000] request: +Info 101 [00:03:20.000] request: { "command": "rename", "arguments": { @@ -1810,8 +1810,8 @@ FsWatchesRecursive:: /user/username/projects/myproject/random: {} -Info 102 [16:03:21.000] Search path: /user/username/projects/myproject/dependency -Info 103 [16:03:22.000] For info: /user/username/projects/myproject/dependency/FnS.ts :: Config file name: /user/username/projects/myproject/dependency/tsconfig.json +Info 102 [00:03:21.000] Search path: /user/username/projects/myproject/dependency +Info 103 [00:03:22.000] For info: /user/username/projects/myproject/dependency/FnS.ts :: Config file name: /user/username/projects/myproject/dependency/tsconfig.json After request PolledWatches:: @@ -1848,7 +1848,7 @@ FsWatchesRecursive:: /user/username/projects/myproject/random: {} -Info 104 [16:03:23.000] response: +Info 104 [00:03:23.000] response: { "response": { "info": { @@ -1929,7 +1929,7 @@ Info 104 [16:03:23.000] response: }, "responseRequired": true } -Info 105 [16:03:24.000] request: +Info 105 [00:03:24.000] request: { "command": "rename", "arguments": { @@ -1976,8 +1976,8 @@ FsWatchesRecursive:: /user/username/projects/myproject/random: {} -Info 106 [16:03:25.000] Search path: /user/username/projects/myproject/dependency -Info 107 [16:03:26.000] For info: /user/username/projects/myproject/dependency/FnS.ts :: Config file name: /user/username/projects/myproject/dependency/tsconfig.json +Info 106 [00:03:25.000] Search path: /user/username/projects/myproject/dependency +Info 107 [00:03:26.000] For info: /user/username/projects/myproject/dependency/FnS.ts :: Config file name: /user/username/projects/myproject/dependency/tsconfig.json After request PolledWatches:: @@ -2014,7 +2014,7 @@ FsWatchesRecursive:: /user/username/projects/myproject/random: {} -Info 108 [16:03:27.000] response: +Info 108 [00:03:27.000] response: { "response": { "info": { @@ -2095,7 +2095,7 @@ Info 108 [16:03:27.000] response: }, "responseRequired": true } -Info 109 [16:03:28.000] request: +Info 109 [00:03:28.000] request: { "command": "rename", "arguments": { @@ -2142,8 +2142,8 @@ FsWatchesRecursive:: /user/username/projects/myproject/random: {} -Info 110 [16:03:29.000] Search path: /user/username/projects/myproject/dependency -Info 111 [16:03:30.000] For info: /user/username/projects/myproject/dependency/FnS.ts :: Config file name: /user/username/projects/myproject/dependency/tsconfig.json +Info 110 [00:03:29.000] Search path: /user/username/projects/myproject/dependency +Info 111 [00:03:30.000] For info: /user/username/projects/myproject/dependency/FnS.ts :: Config file name: /user/username/projects/myproject/dependency/tsconfig.json After request PolledWatches:: @@ -2180,7 +2180,7 @@ FsWatchesRecursive:: /user/username/projects/myproject/random: {} -Info 112 [16:03:31.000] response: +Info 112 [00:03:31.000] response: { "response": { "info": { 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 4a898d5024a11..adf6e151fb037 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 @@ -1,5 +1,5 @@ -Info 0 [16:01:04.000] Provided types map file "/a/lib/typesMap.json" doesn't exist -Info 1 [16:01:05.000] request: +Info 0 [00:01:04.000] Provided types map file "/a/lib/typesMap.json" doesn't exist +Info 1 [00:01:05.000] request: { "seq": 0, "type": "request", @@ -197,11 +197,11 @@ FsWatches:: FsWatchesRecursive:: -Info 2 [16:01:06.000] Search path: /user/username/projects/myproject/main -Info 3 [16:01:07.000] For info: /user/username/projects/myproject/main/main.ts :: Config file name: /user/username/projects/myproject/main/tsconfig.json -Info 4 [16:01:08.000] Creating configuration project /user/username/projects/myproject/main/tsconfig.json -Info 5 [16:01:09.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/main/tsconfig.json 2000 undefined Project: /user/username/projects/myproject/main/tsconfig.json WatchType: Config file -Info 6 [16:01:10.000] Config: /user/username/projects/myproject/main/tsconfig.json : { +Info 2 [00:01:06.000] Search path: /user/username/projects/myproject/main +Info 3 [00:01:07.000] For info: /user/username/projects/myproject/main/main.ts :: Config file name: /user/username/projects/myproject/main/tsconfig.json +Info 4 [00:01:08.000] Creating configuration project /user/username/projects/myproject/main/tsconfig.json +Info 5 [00:01:09.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/main/tsconfig.json 2000 undefined Project: /user/username/projects/myproject/main/tsconfig.json WatchType: Config file +Info 6 [00:01:10.000] Config: /user/username/projects/myproject/main/tsconfig.json : { "rootNames": [ "/user/username/projects/myproject/main/main.ts" ], @@ -218,11 +218,11 @@ Info 6 [16:01:10.000] Config: /user/username/projects/myproject/main/tsconfig } ] } -Info 7 [16:01:11.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/main 1 undefined Config: /user/username/projects/myproject/main/tsconfig.json WatchType: Wild card directory -Info 8 [16:01:12.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/main 1 undefined Config: /user/username/projects/myproject/main/tsconfig.json WatchType: Wild card directory -Info 9 [16:01:13.000] Plugins were requested but not running in environment that supports 'require'. Nothing will be loaded -Info 10 [16:01:14.000] Starting updateGraphWorker: Project: /user/username/projects/myproject/main/tsconfig.json -Info 11 [16:01:15.000] Config: /user/username/projects/myproject/dependency/tsconfig.json : { +Info 7 [00:01:11.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/main 1 undefined Config: /user/username/projects/myproject/main/tsconfig.json WatchType: Wild card directory +Info 8 [00:01:12.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/main 1 undefined Config: /user/username/projects/myproject/main/tsconfig.json WatchType: Wild card directory +Info 9 [00:01:13.000] Plugins were requested but not running in environment that supports 'require'. Nothing will be loaded +Info 10 [00:01:14.000] Starting updateGraphWorker: Project: /user/username/projects/myproject/main/tsconfig.json +Info 11 [00:01:15.000] Config: /user/username/projects/myproject/dependency/tsconfig.json : { "rootNames": [ "/user/username/projects/myproject/dependency/FnS.ts" ], @@ -233,20 +233,20 @@ Info 11 [16:01:15.000] Config: /user/username/projects/myproject/dependency/ts "configFilePath": "/user/username/projects/myproject/dependency/tsconfig.json" } } -Info 12 [16:01:16.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/dependency/tsconfig.json 2000 undefined Project: /user/username/projects/myproject/main/tsconfig.json WatchType: Config file -Info 13 [16:01:17.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/dependency 1 undefined Config: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Wild card directory -Info 14 [16:01:18.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/dependency 1 undefined Config: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Wild card directory -Info 15 [16:01:19.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/decls 1 undefined Project: /user/username/projects/myproject/main/tsconfig.json WatchType: Failed Lookup Locations -Info 16 [16:01:20.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/decls 1 undefined Project: /user/username/projects/myproject/main/tsconfig.json WatchType: Failed Lookup Locations -Info 17 [16:01:21.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/decls/fns.d.ts 500 undefined WatchType: Closed Script info -Info 18 [16:01:22.000] FileWatcher:: Added:: WatchInfo: /a/lib/lib.d.ts 500 undefined WatchType: Closed Script info -Info 19 [16:01:23.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/main/node_modules/@types 1 undefined Project: /user/username/projects/myproject/main/tsconfig.json WatchType: Type roots -Info 20 [16:01:24.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/main/node_modules/@types 1 undefined Project: /user/username/projects/myproject/main/tsconfig.json WatchType: Type roots -Info 21 [16:01:25.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/main/tsconfig.json WatchType: Type roots -Info 22 [16:01:26.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/main/tsconfig.json WatchType: Type roots -Info 23 [16:01:27.000] Finishing updateGraphWorker: Project: /user/username/projects/myproject/main/tsconfig.json Version: 1 structureChanged: true structureIsReused:: Not Elapsed:: *ms -Info 24 [16:01:28.000] Project '/user/username/projects/myproject/main/tsconfig.json' (Configured) -Info 25 [16:01:29.000] Files (3) +Info 12 [00:01:16.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/dependency/tsconfig.json 2000 undefined Project: /user/username/projects/myproject/main/tsconfig.json WatchType: Config file +Info 13 [00:01:17.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/dependency 1 undefined Config: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Wild card directory +Info 14 [00:01:18.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/dependency 1 undefined Config: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Wild card directory +Info 15 [00:01:19.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/decls 1 undefined Project: /user/username/projects/myproject/main/tsconfig.json WatchType: Failed Lookup Locations +Info 16 [00:01:20.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/decls 1 undefined Project: /user/username/projects/myproject/main/tsconfig.json WatchType: Failed Lookup Locations +Info 17 [00:01:21.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/decls/fns.d.ts 500 undefined WatchType: Closed Script info +Info 18 [00:01:22.000] FileWatcher:: Added:: WatchInfo: /a/lib/lib.d.ts 500 undefined WatchType: Closed Script info +Info 19 [00:01:23.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/main/node_modules/@types 1 undefined Project: /user/username/projects/myproject/main/tsconfig.json WatchType: Type roots +Info 20 [00:01:24.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/main/node_modules/@types 1 undefined Project: /user/username/projects/myproject/main/tsconfig.json WatchType: Type roots +Info 21 [00:01:25.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/main/tsconfig.json WatchType: Type roots +Info 22 [00:01:26.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/main/tsconfig.json WatchType: Type roots +Info 23 [00:01:27.000] Finishing updateGraphWorker: Project: /user/username/projects/myproject/main/tsconfig.json Version: 1 structureChanged: true structureIsReused:: Not Elapsed:: *ms +Info 24 [00:01:28.000] Project '/user/username/projects/myproject/main/tsconfig.json' (Configured) +Info 25 [00:01:29.000] Files (3) /a/lib/lib.d.ts /user/username/projects/myproject/decls/fns.d.ts /user/username/projects/myproject/main/main.ts @@ -259,16 +259,16 @@ Info 25 [16:01:29.000] Files (3) main.ts Matched by default include pattern '**/*' -Info 26 [16:01:30.000] ----------------------------------------------- -Info 27 [16:01:31.000] Search path: /user/username/projects/myproject/main -Info 28 [16:01:32.000] For info: /user/username/projects/myproject/main/tsconfig.json :: No config files found. -Info 29 [16:01:33.000] Project '/user/username/projects/myproject/main/tsconfig.json' (Configured) -Info 29 [16:01:34.000] Files (3) +Info 26 [00:01:30.000] ----------------------------------------------- +Info 27 [00:01:31.000] Search path: /user/username/projects/myproject/main +Info 28 [00:01:32.000] For info: /user/username/projects/myproject/main/tsconfig.json :: No config files found. +Info 29 [00:01:33.000] Project '/user/username/projects/myproject/main/tsconfig.json' (Configured) +Info 29 [00:01:34.000] Files (3) -Info 29 [16:01:35.000] ----------------------------------------------- -Info 29 [16:01:36.000] Open files: -Info 29 [16:01:37.000] FileName: /user/username/projects/myproject/main/main.ts ProjectRootPath: undefined -Info 29 [16:01:38.000] Projects: /user/username/projects/myproject/main/tsconfig.json +Info 29 [00:01:35.000] ----------------------------------------------- +Info 29 [00:01:36.000] Open files: +Info 29 [00:01:37.000] FileName: /user/username/projects/myproject/main/main.ts ProjectRootPath: undefined +Info 29 [00:01:38.000] Projects: /user/username/projects/myproject/main/tsconfig.json After request PolledWatches:: @@ -295,11 +295,11 @@ FsWatchesRecursive:: /user/username/projects/myproject/decls: {} -Info 29 [16:01:39.000] response: +Info 29 [00:01:39.000] response: { "responseRequired": false } -Info 30 [16:01:40.000] request: +Info 30 [00:01:40.000] request: { "seq": 0, "type": "request", @@ -334,18 +334,18 @@ FsWatchesRecursive:: /user/username/projects/myproject/decls: {} -Info 31 [16:01:41.000] Search path: /user/username/projects/myproject/dependency -Info 32 [16:01:42.000] For info: /user/username/projects/myproject/dependency/FnS.ts :: Config file name: /user/username/projects/myproject/dependency/tsconfig.json -Info 33 [16:01:43.000] Creating configuration project /user/username/projects/myproject/dependency/tsconfig.json -Info 34 [16:01:44.000] Plugins were requested but not running in environment that supports 'require'. Nothing will be loaded -Info 35 [16:01:45.000] Starting updateGraphWorker: Project: /user/username/projects/myproject/dependency/tsconfig.json -Info 36 [16:01:46.000] 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 37 [16:01:47.000] 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 38 [16:01:48.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Type roots -Info 39 [16:01:49.000] 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 40 [16:01:50.000] Finishing updateGraphWorker: Project: /user/username/projects/myproject/dependency/tsconfig.json Version: 1 structureChanged: true structureIsReused:: Not Elapsed:: *ms -Info 41 [16:01:51.000] Project '/user/username/projects/myproject/dependency/tsconfig.json' (Configured) -Info 42 [16:01:52.000] Files (2) +Info 31 [00:01:41.000] Search path: /user/username/projects/myproject/dependency +Info 32 [00:01:42.000] For info: /user/username/projects/myproject/dependency/FnS.ts :: Config file name: /user/username/projects/myproject/dependency/tsconfig.json +Info 33 [00:01:43.000] Creating configuration project /user/username/projects/myproject/dependency/tsconfig.json +Info 34 [00:01:44.000] Plugins were requested but not running in environment that supports 'require'. Nothing will be loaded +Info 35 [00:01:45.000] Starting updateGraphWorker: Project: /user/username/projects/myproject/dependency/tsconfig.json +Info 36 [00:01:46.000] 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 37 [00:01:47.000] 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 38 [00:01:48.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Type roots +Info 39 [00:01:49.000] 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 40 [00:01:50.000] Finishing updateGraphWorker: Project: /user/username/projects/myproject/dependency/tsconfig.json Version: 1 structureChanged: true structureIsReused:: Not Elapsed:: *ms +Info 41 [00:01:51.000] Project '/user/username/projects/myproject/dependency/tsconfig.json' (Configured) +Info 42 [00:01:52.000] Files (2) /a/lib/lib.d.ts /user/username/projects/myproject/dependency/FnS.ts @@ -355,22 +355,22 @@ Info 42 [16:01:52.000] Files (2) FnS.ts Matched by default include pattern '**/*' -Info 43 [16:01:53.000] ----------------------------------------------- -Info 44 [16:01:54.000] Search path: /user/username/projects/myproject/dependency -Info 45 [16:01:55.000] For info: /user/username/projects/myproject/dependency/tsconfig.json :: No config files found. -Info 46 [16:01:56.000] Project '/user/username/projects/myproject/main/tsconfig.json' (Configured) -Info 46 [16:01:57.000] Files (3) - -Info 46 [16:01:58.000] ----------------------------------------------- -Info 46 [16:01:59.000] Project '/user/username/projects/myproject/dependency/tsconfig.json' (Configured) -Info 46 [16:02:00.000] Files (2) - -Info 46 [16:02:01.000] ----------------------------------------------- -Info 46 [16:02:02.000] Open files: -Info 46 [16:02:03.000] FileName: /user/username/projects/myproject/main/main.ts ProjectRootPath: undefined -Info 46 [16:02:04.000] Projects: /user/username/projects/myproject/main/tsconfig.json -Info 46 [16:02:05.000] FileName: /user/username/projects/myproject/dependency/FnS.ts ProjectRootPath: undefined -Info 46 [16:02:06.000] Projects: /user/username/projects/myproject/dependency/tsconfig.json +Info 43 [00:01:53.000] ----------------------------------------------- +Info 44 [00:01:54.000] Search path: /user/username/projects/myproject/dependency +Info 45 [00:01:55.000] For info: /user/username/projects/myproject/dependency/tsconfig.json :: No config files found. +Info 46 [00:01:56.000] Project '/user/username/projects/myproject/main/tsconfig.json' (Configured) +Info 46 [00:01:57.000] Files (3) + +Info 46 [00:01:58.000] ----------------------------------------------- +Info 46 [00:01:59.000] Project '/user/username/projects/myproject/dependency/tsconfig.json' (Configured) +Info 46 [00:02:00.000] Files (2) + +Info 46 [00:02:01.000] ----------------------------------------------- +Info 46 [00:02:02.000] Open files: +Info 46 [00:02:03.000] FileName: /user/username/projects/myproject/main/main.ts ProjectRootPath: undefined +Info 46 [00:02:04.000] Projects: /user/username/projects/myproject/main/tsconfig.json +Info 46 [00:02:05.000] FileName: /user/username/projects/myproject/dependency/FnS.ts ProjectRootPath: undefined +Info 46 [00:02:06.000] Projects: /user/username/projects/myproject/dependency/tsconfig.json After request PolledWatches:: @@ -399,11 +399,11 @@ FsWatchesRecursive:: /user/username/projects/myproject/decls: {} -Info 46 [16:02:07.000] response: +Info 46 [00:02:07.000] response: { "responseRequired": false } -Info 47 [16:02:08.000] request: +Info 47 [00:02:08.000] request: { "seq": 0, "type": "request", @@ -440,11 +440,11 @@ FsWatchesRecursive:: /user/username/projects/myproject/decls: {} -Info 48 [16:02:09.000] Search path: /user/username/projects/myproject/random -Info 49 [16:02:10.000] For info: /user/username/projects/myproject/random/random.ts :: Config file name: /user/username/projects/myproject/random/tsconfig.json -Info 50 [16:02:11.000] Creating configuration project /user/username/projects/myproject/random/tsconfig.json -Info 51 [16:02:12.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/random/tsconfig.json 2000 undefined Project: /user/username/projects/myproject/random/tsconfig.json WatchType: Config file -Info 52 [16:02:13.000] Config: /user/username/projects/myproject/random/tsconfig.json : { +Info 48 [00:02:09.000] Search path: /user/username/projects/myproject/random +Info 49 [00:02:10.000] For info: /user/username/projects/myproject/random/random.ts :: Config file name: /user/username/projects/myproject/random/tsconfig.json +Info 50 [00:02:11.000] Creating configuration project /user/username/projects/myproject/random/tsconfig.json +Info 51 [00:02:12.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/random/tsconfig.json 2000 undefined Project: /user/username/projects/myproject/random/tsconfig.json WatchType: Config file +Info 52 [00:02:13.000] Config: /user/username/projects/myproject/random/tsconfig.json : { "rootNames": [ "/user/username/projects/myproject/random/random.ts" ], @@ -452,17 +452,17 @@ Info 52 [16:02:13.000] Config: /user/username/projects/myproject/random/tsconf "configFilePath": "/user/username/projects/myproject/random/tsconfig.json" } } -Info 53 [16:02:14.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/random 1 undefined Config: /user/username/projects/myproject/random/tsconfig.json WatchType: Wild card directory -Info 54 [16:02:15.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/random 1 undefined Config: /user/username/projects/myproject/random/tsconfig.json WatchType: Wild card directory -Info 55 [16:02:16.000] Plugins were requested but not running in environment that supports 'require'. Nothing will be loaded -Info 56 [16:02:17.000] Starting updateGraphWorker: Project: /user/username/projects/myproject/random/tsconfig.json -Info 57 [16:02:18.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/random/node_modules/@types 1 undefined Project: /user/username/projects/myproject/random/tsconfig.json WatchType: Type roots -Info 58 [16:02:19.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/random/node_modules/@types 1 undefined Project: /user/username/projects/myproject/random/tsconfig.json WatchType: Type roots -Info 59 [16:02:20.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/random/tsconfig.json WatchType: Type roots -Info 60 [16:02:21.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/random/tsconfig.json WatchType: Type roots -Info 61 [16:02:22.000] Finishing updateGraphWorker: Project: /user/username/projects/myproject/random/tsconfig.json Version: 1 structureChanged: true structureIsReused:: Not Elapsed:: *ms -Info 62 [16:02:23.000] Project '/user/username/projects/myproject/random/tsconfig.json' (Configured) -Info 63 [16:02:24.000] Files (2) +Info 53 [00:02:14.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/random 1 undefined Config: /user/username/projects/myproject/random/tsconfig.json WatchType: Wild card directory +Info 54 [00:02:15.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/random 1 undefined Config: /user/username/projects/myproject/random/tsconfig.json WatchType: Wild card directory +Info 55 [00:02:16.000] Plugins were requested but not running in environment that supports 'require'. Nothing will be loaded +Info 56 [00:02:17.000] Starting updateGraphWorker: Project: /user/username/projects/myproject/random/tsconfig.json +Info 57 [00:02:18.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/random/node_modules/@types 1 undefined Project: /user/username/projects/myproject/random/tsconfig.json WatchType: Type roots +Info 58 [00:02:19.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/random/node_modules/@types 1 undefined Project: /user/username/projects/myproject/random/tsconfig.json WatchType: Type roots +Info 59 [00:02:20.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/random/tsconfig.json WatchType: Type roots +Info 60 [00:02:21.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/random/tsconfig.json WatchType: Type roots +Info 61 [00:02:22.000] Finishing updateGraphWorker: Project: /user/username/projects/myproject/random/tsconfig.json Version: 1 structureChanged: true structureIsReused:: Not Elapsed:: *ms +Info 62 [00:02:23.000] Project '/user/username/projects/myproject/random/tsconfig.json' (Configured) +Info 63 [00:02:24.000] Files (2) /a/lib/lib.d.ts /user/username/projects/myproject/random/random.ts @@ -472,26 +472,26 @@ Info 63 [16:02:24.000] Files (2) random.ts Matched by default include pattern '**/*' -Info 64 [16:02:25.000] ----------------------------------------------- -Info 65 [16:02:26.000] Project '/user/username/projects/myproject/main/tsconfig.json' (Configured) -Info 65 [16:02:27.000] Files (3) - -Info 65 [16:02:28.000] ----------------------------------------------- -Info 65 [16:02:29.000] Project '/user/username/projects/myproject/dependency/tsconfig.json' (Configured) -Info 65 [16:02:30.000] Files (2) - -Info 65 [16:02:31.000] ----------------------------------------------- -Info 65 [16:02:32.000] Project '/user/username/projects/myproject/random/tsconfig.json' (Configured) -Info 65 [16:02:33.000] Files (2) - -Info 65 [16:02:34.000] ----------------------------------------------- -Info 65 [16:02:35.000] Open files: -Info 65 [16:02:36.000] FileName: /user/username/projects/myproject/main/main.ts ProjectRootPath: undefined -Info 65 [16:02:37.000] Projects: /user/username/projects/myproject/main/tsconfig.json -Info 65 [16:02:38.000] FileName: /user/username/projects/myproject/dependency/FnS.ts ProjectRootPath: undefined -Info 65 [16:02:39.000] Projects: /user/username/projects/myproject/dependency/tsconfig.json -Info 65 [16:02:40.000] FileName: /user/username/projects/myproject/random/random.ts ProjectRootPath: undefined -Info 65 [16:02:41.000] Projects: /user/username/projects/myproject/random/tsconfig.json +Info 64 [00:02:25.000] ----------------------------------------------- +Info 65 [00:02:26.000] Project '/user/username/projects/myproject/main/tsconfig.json' (Configured) +Info 65 [00:02:27.000] Files (3) + +Info 65 [00:02:28.000] ----------------------------------------------- +Info 65 [00:02:29.000] Project '/user/username/projects/myproject/dependency/tsconfig.json' (Configured) +Info 65 [00:02:30.000] Files (2) + +Info 65 [00:02:31.000] ----------------------------------------------- +Info 65 [00:02:32.000] Project '/user/username/projects/myproject/random/tsconfig.json' (Configured) +Info 65 [00:02:33.000] Files (2) + +Info 65 [00:02:34.000] ----------------------------------------------- +Info 65 [00:02:35.000] Open files: +Info 65 [00:02:36.000] FileName: /user/username/projects/myproject/main/main.ts ProjectRootPath: undefined +Info 65 [00:02:37.000] Projects: /user/username/projects/myproject/main/tsconfig.json +Info 65 [00:02:38.000] FileName: /user/username/projects/myproject/dependency/FnS.ts ProjectRootPath: undefined +Info 65 [00:02:39.000] Projects: /user/username/projects/myproject/dependency/tsconfig.json +Info 65 [00:02:40.000] FileName: /user/username/projects/myproject/random/random.ts ProjectRootPath: undefined +Info 65 [00:02:41.000] Projects: /user/username/projects/myproject/random/tsconfig.json After request PolledWatches:: @@ -526,11 +526,11 @@ FsWatchesRecursive:: /user/username/projects/myproject/random: {} -Info 65 [16:02:42.000] response: +Info 65 [00:02:42.000] response: { "responseRequired": false } -Info 66 [16:02:43.000] request: +Info 66 [00:02:43.000] request: { "command": "definitionAndBoundSpan", "arguments": { @@ -575,7 +575,7 @@ FsWatchesRecursive:: /user/username/projects/myproject/random: {} -Info 67 [16:02:44.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/decls/FnS.d.ts.map 2000 undefined WatchType: Missing source map file +Info 67 [00:02:44.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/decls/FnS.d.ts.map 2000 undefined WatchType: Missing source map file After request PolledWatches:: @@ -612,7 +612,7 @@ FsWatchesRecursive:: /user/username/projects/myproject/random: {} -Info 68 [16:02:45.000] response: +Info 68 [00:02:45.000] response: { "response": { "definitions": [ @@ -649,7 +649,7 @@ Info 68 [16:02:45.000] response: }, "responseRequired": true } -Info 69 [16:02:46.000] request: +Info 69 [00:02:46.000] request: { "command": "rename", "arguments": { @@ -732,7 +732,7 @@ FsWatchesRecursive:: /user/username/projects/myproject/random: {} -Info 70 [16:02:47.000] response: +Info 70 [00:02:47.000] response: { "response": { "info": { @@ -780,16 +780,16 @@ Info 70 [16:02:47.000] response: }, "responseRequired": true } -Info 71 [16:02:50.000] FileWatcher:: Triggered with /user/username/projects/myproject/decls/FnS.d.ts.map 0:: WatchInfo: /user/username/projects/myproject/decls/FnS.d.ts.map 2000 undefined WatchType: Missing source map file -Info 72 [16:02:51.000] Scheduled: /user/username/projects/myproject/main/tsconfig.json -Info 73 [16:02:52.000] Scheduled: *ensureProjectForOpenFiles* -Info 74 [16:02:53.000] Scheduled: /user/username/projects/myproject/dependency/tsconfig.json -Info 75 [16:02:54.000] Scheduled: *ensureProjectForOpenFiles*, Cancelled earlier one -Info 76 [16:02:55.000] FileWatcher:: Close:: WatchInfo: /user/username/projects/myproject/decls/FnS.d.ts.map 2000 undefined WatchType: Missing source map file -Info 77 [16:02:56.000] Elapsed:: *ms FileWatcher:: Triggered with /user/username/projects/myproject/decls/FnS.d.ts.map 0:: WatchInfo: /user/username/projects/myproject/decls/FnS.d.ts.map 2000 undefined WatchType: Missing source map file -Info 78 [16:02:57.000] DirectoryWatcher:: Triggered with /user/username/projects/myproject/decls/FnS.d.ts.map :: WatchInfo: /user/username/projects/myproject/decls 1 undefined Project: /user/username/projects/myproject/main/tsconfig.json WatchType: Failed Lookup Locations -Info 79 [16:02:58.000] Elapsed:: *ms DirectoryWatcher:: Triggered with /user/username/projects/myproject/decls/FnS.d.ts.map :: WatchInfo: /user/username/projects/myproject/decls 1 undefined Project: /user/username/projects/myproject/main/tsconfig.json WatchType: Failed Lookup Locations -Info 80 [16:02:59.000] request: +Info 71 [00:02:50.000] FileWatcher:: Triggered with /user/username/projects/myproject/decls/FnS.d.ts.map 0:: WatchInfo: /user/username/projects/myproject/decls/FnS.d.ts.map 2000 undefined WatchType: Missing source map file +Info 72 [00:02:51.000] Scheduled: /user/username/projects/myproject/main/tsconfig.json +Info 73 [00:02:52.000] Scheduled: *ensureProjectForOpenFiles* +Info 74 [00:02:53.000] Scheduled: /user/username/projects/myproject/dependency/tsconfig.json +Info 75 [00:02:54.000] Scheduled: *ensureProjectForOpenFiles*, Cancelled earlier one +Info 76 [00:02:55.000] FileWatcher:: Close:: WatchInfo: /user/username/projects/myproject/decls/FnS.d.ts.map 2000 undefined WatchType: Missing source map file +Info 77 [00:02:56.000] Elapsed:: *ms FileWatcher:: Triggered with /user/username/projects/myproject/decls/FnS.d.ts.map 0:: WatchInfo: /user/username/projects/myproject/decls/FnS.d.ts.map 2000 undefined WatchType: Missing source map file +Info 78 [00:02:57.000] DirectoryWatcher:: Triggered with /user/username/projects/myproject/decls/FnS.d.ts.map :: WatchInfo: /user/username/projects/myproject/decls 1 undefined Project: /user/username/projects/myproject/main/tsconfig.json WatchType: Failed Lookup Locations +Info 79 [00:02:58.000] Elapsed:: *ms DirectoryWatcher:: Triggered with /user/username/projects/myproject/decls/FnS.d.ts.map :: WatchInfo: /user/username/projects/myproject/decls 1 undefined Project: /user/username/projects/myproject/main/tsconfig.json WatchType: Failed Lookup Locations +Info 80 [00:02:59.000] request: { "command": "definitionAndBoundSpan", "arguments": { @@ -837,9 +837,9 @@ FsWatchesRecursive:: /user/username/projects/myproject/random: {} -Info 81 [16:03:00.000] Starting updateGraphWorker: Project: /user/username/projects/myproject/main/tsconfig.json -Info 82 [16:03:01.000] Finishing updateGraphWorker: Project: /user/username/projects/myproject/main/tsconfig.json Version: 2 structureChanged: false structureIsReused:: Not Elapsed:: *ms -Info 83 [16:03:02.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/decls/FnS.d.ts.map 500 undefined WatchType: Closed Script info +Info 81 [00:03:00.000] Starting updateGraphWorker: Project: /user/username/projects/myproject/main/tsconfig.json +Info 82 [00:03:01.000] Finishing updateGraphWorker: Project: /user/username/projects/myproject/main/tsconfig.json Version: 2 structureChanged: false structureIsReused:: Not Elapsed:: *ms +Info 83 [00:03:02.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/decls/FnS.d.ts.map 500 undefined WatchType: Closed Script info After request PolledWatches:: @@ -876,7 +876,7 @@ FsWatchesRecursive:: /user/username/projects/myproject/random: {} -Info 84 [16:03:03.000] response: +Info 84 [00:03:03.000] response: { "response": { "definitions": [ @@ -913,7 +913,7 @@ Info 84 [16:03:03.000] response: }, "responseRequired": true } -Info 85 [16:03:04.000] request: +Info 85 [00:03:04.000] request: { "command": "definitionAndBoundSpan", "arguments": { @@ -996,7 +996,7 @@ FsWatchesRecursive:: /user/username/projects/myproject/random: {} -Info 86 [16:03:05.000] response: +Info 86 [00:03:05.000] response: { "response": { "definitions": [ @@ -1033,7 +1033,7 @@ Info 86 [16:03:05.000] response: }, "responseRequired": true } -Info 87 [16:03:06.000] request: +Info 87 [00:03:06.000] request: { "command": "definitionAndBoundSpan", "arguments": { @@ -1116,7 +1116,7 @@ FsWatchesRecursive:: /user/username/projects/myproject/random: {} -Info 88 [16:03:07.000] response: +Info 88 [00:03:07.000] response: { "response": { "definitions": [ @@ -1153,7 +1153,7 @@ Info 88 [16:03:07.000] response: }, "responseRequired": true } -Info 89 [16:03:08.000] request: +Info 89 [00:03:08.000] request: { "command": "definitionAndBoundSpan", "arguments": { @@ -1236,7 +1236,7 @@ FsWatchesRecursive:: /user/username/projects/myproject/random: {} -Info 90 [16:03:09.000] response: +Info 90 [00:03:09.000] response: { "response": { "definitions": [ @@ -1273,7 +1273,7 @@ Info 90 [16:03:09.000] response: }, "responseRequired": true } -Info 91 [16:03:10.000] request: +Info 91 [00:03:10.000] request: { "command": "definitionAndBoundSpan", "arguments": { @@ -1356,7 +1356,7 @@ FsWatchesRecursive:: /user/username/projects/myproject/random: {} -Info 92 [16:03:11.000] response: +Info 92 [00:03:11.000] response: { "response": { "definitions": [ @@ -1393,7 +1393,7 @@ Info 92 [16:03:11.000] response: }, "responseRequired": true } -Info 93 [16:03:12.000] request: +Info 93 [00:03:12.000] request: { "command": "rename", "arguments": { @@ -1440,10 +1440,10 @@ FsWatchesRecursive:: /user/username/projects/myproject/random: {} -Info 94 [16:03:13.000] Starting updateGraphWorker: Project: /user/username/projects/myproject/dependency/tsconfig.json -Info 95 [16:03:14.000] Finishing updateGraphWorker: Project: /user/username/projects/myproject/dependency/tsconfig.json Version: 2 structureChanged: false structureIsReused:: Not Elapsed:: *ms -Info 96 [16:03:15.000] Search path: /user/username/projects/myproject/dependency -Info 97 [16:03:16.000] For info: /user/username/projects/myproject/dependency/FnS.ts :: Config file name: /user/username/projects/myproject/dependency/tsconfig.json +Info 94 [00:03:13.000] Starting updateGraphWorker: Project: /user/username/projects/myproject/dependency/tsconfig.json +Info 95 [00:03:14.000] Finishing updateGraphWorker: Project: /user/username/projects/myproject/dependency/tsconfig.json Version: 2 structureChanged: false structureIsReused:: Not Elapsed:: *ms +Info 96 [00:03:15.000] Search path: /user/username/projects/myproject/dependency +Info 97 [00:03:16.000] For info: /user/username/projects/myproject/dependency/FnS.ts :: Config file name: /user/username/projects/myproject/dependency/tsconfig.json After request PolledWatches:: @@ -1480,7 +1480,7 @@ FsWatchesRecursive:: /user/username/projects/myproject/random: {} -Info 98 [16:03:17.000] response: +Info 98 [00:03:17.000] response: { "response": { "info": { @@ -1561,7 +1561,7 @@ Info 98 [16:03:17.000] response: }, "responseRequired": true } -Info 99 [16:03:18.000] request: +Info 99 [00:03:18.000] request: { "command": "rename", "arguments": { @@ -1608,8 +1608,8 @@ FsWatchesRecursive:: /user/username/projects/myproject/random: {} -Info 100 [16:03:19.000] Search path: /user/username/projects/myproject/dependency -Info 101 [16:03:20.000] For info: /user/username/projects/myproject/dependency/FnS.ts :: Config file name: /user/username/projects/myproject/dependency/tsconfig.json +Info 100 [00:03:19.000] Search path: /user/username/projects/myproject/dependency +Info 101 [00:03:20.000] For info: /user/username/projects/myproject/dependency/FnS.ts :: Config file name: /user/username/projects/myproject/dependency/tsconfig.json After request PolledWatches:: @@ -1646,7 +1646,7 @@ FsWatchesRecursive:: /user/username/projects/myproject/random: {} -Info 102 [16:03:21.000] response: +Info 102 [00:03:21.000] response: { "response": { "info": { @@ -1727,7 +1727,7 @@ Info 102 [16:03:21.000] response: }, "responseRequired": true } -Info 103 [16:03:22.000] request: +Info 103 [00:03:22.000] request: { "command": "rename", "arguments": { @@ -1774,8 +1774,8 @@ FsWatchesRecursive:: /user/username/projects/myproject/random: {} -Info 104 [16:03:23.000] Search path: /user/username/projects/myproject/dependency -Info 105 [16:03:24.000] For info: /user/username/projects/myproject/dependency/FnS.ts :: Config file name: /user/username/projects/myproject/dependency/tsconfig.json +Info 104 [00:03:23.000] Search path: /user/username/projects/myproject/dependency +Info 105 [00:03:24.000] For info: /user/username/projects/myproject/dependency/FnS.ts :: Config file name: /user/username/projects/myproject/dependency/tsconfig.json After request PolledWatches:: @@ -1812,7 +1812,7 @@ FsWatchesRecursive:: /user/username/projects/myproject/random: {} -Info 106 [16:03:25.000] response: +Info 106 [00:03:25.000] response: { "response": { "info": { @@ -1893,7 +1893,7 @@ Info 106 [16:03:25.000] response: }, "responseRequired": true } -Info 107 [16:03:26.000] request: +Info 107 [00:03:26.000] request: { "command": "rename", "arguments": { @@ -1940,8 +1940,8 @@ FsWatchesRecursive:: /user/username/projects/myproject/random: {} -Info 108 [16:03:27.000] Search path: /user/username/projects/myproject/dependency -Info 109 [16:03:28.000] For info: /user/username/projects/myproject/dependency/FnS.ts :: Config file name: /user/username/projects/myproject/dependency/tsconfig.json +Info 108 [00:03:27.000] Search path: /user/username/projects/myproject/dependency +Info 109 [00:03:28.000] For info: /user/username/projects/myproject/dependency/FnS.ts :: Config file name: /user/username/projects/myproject/dependency/tsconfig.json After request PolledWatches:: @@ -1978,7 +1978,7 @@ FsWatchesRecursive:: /user/username/projects/myproject/random: {} -Info 110 [16:03:29.000] response: +Info 110 [00:03:29.000] response: { "response": { "info": { @@ -2059,7 +2059,7 @@ Info 110 [16:03:29.000] response: }, "responseRequired": true } -Info 111 [16:03:30.000] request: +Info 111 [00:03:30.000] request: { "command": "rename", "arguments": { @@ -2106,8 +2106,8 @@ FsWatchesRecursive:: /user/username/projects/myproject/random: {} -Info 112 [16:03:31.000] Search path: /user/username/projects/myproject/dependency -Info 113 [16:03:32.000] For info: /user/username/projects/myproject/dependency/FnS.ts :: Config file name: /user/username/projects/myproject/dependency/tsconfig.json +Info 112 [00:03:31.000] Search path: /user/username/projects/myproject/dependency +Info 113 [00:03:32.000] For info: /user/username/projects/myproject/dependency/FnS.ts :: Config file name: /user/username/projects/myproject/dependency/tsconfig.json After request PolledWatches:: @@ -2144,7 +2144,7 @@ FsWatchesRecursive:: /user/username/projects/myproject/random: {} -Info 114 [16:03:33.000] response: +Info 114 [00:03:33.000] response: { "response": { "info": { @@ -2225,7 +2225,7 @@ Info 114 [16:03:33.000] response: }, "responseRequired": true } -Info 115 [16:03:34.000] request: +Info 115 [00:03:34.000] request: { "seq": 0, "type": "request", @@ -2270,24 +2270,24 @@ FsWatchesRecursive:: /user/username/projects/myproject/random: {} -Info 116 [16:03:35.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/random/random.ts 500 undefined WatchType: Closed Script info -Info 117 [16:03:36.000] Project '/user/username/projects/myproject/main/tsconfig.json' (Configured) -Info 117 [16:03:37.000] Files (3) +Info 116 [00:03:35.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/random/random.ts 500 undefined WatchType: Closed Script info +Info 117 [00:03:36.000] Project '/user/username/projects/myproject/main/tsconfig.json' (Configured) +Info 117 [00:03:37.000] Files (3) -Info 117 [16:03:38.000] ----------------------------------------------- -Info 117 [16:03:39.000] Project '/user/username/projects/myproject/dependency/tsconfig.json' (Configured) -Info 117 [16:03:40.000] Files (2) +Info 117 [00:03:38.000] ----------------------------------------------- +Info 117 [00:03:39.000] Project '/user/username/projects/myproject/dependency/tsconfig.json' (Configured) +Info 117 [00:03:40.000] Files (2) -Info 117 [16:03:41.000] ----------------------------------------------- -Info 117 [16:03:42.000] Project '/user/username/projects/myproject/random/tsconfig.json' (Configured) -Info 117 [16:03:43.000] Files (2) +Info 117 [00:03:41.000] ----------------------------------------------- +Info 117 [00:03:42.000] Project '/user/username/projects/myproject/random/tsconfig.json' (Configured) +Info 117 [00:03:43.000] Files (2) -Info 117 [16:03:44.000] ----------------------------------------------- -Info 117 [16:03:45.000] Open files: -Info 117 [16:03:46.000] FileName: /user/username/projects/myproject/main/main.ts ProjectRootPath: undefined -Info 117 [16:03:47.000] Projects: /user/username/projects/myproject/main/tsconfig.json -Info 117 [16:03:48.000] FileName: /user/username/projects/myproject/dependency/FnS.ts ProjectRootPath: undefined -Info 117 [16:03:49.000] Projects: /user/username/projects/myproject/dependency/tsconfig.json +Info 117 [00:03:44.000] ----------------------------------------------- +Info 117 [00:03:45.000] Open files: +Info 117 [00:03:46.000] FileName: /user/username/projects/myproject/main/main.ts ProjectRootPath: undefined +Info 117 [00:03:47.000] Projects: /user/username/projects/myproject/main/tsconfig.json +Info 117 [00:03:48.000] FileName: /user/username/projects/myproject/dependency/FnS.ts ProjectRootPath: undefined +Info 117 [00:03:49.000] Projects: /user/username/projects/myproject/dependency/tsconfig.json After request PolledWatches:: @@ -2326,11 +2326,11 @@ FsWatchesRecursive:: /user/username/projects/myproject/random: {} -Info 117 [16:03:50.000] response: +Info 117 [00:03:50.000] response: { "responseRequired": false } -Info 118 [16:03:51.000] request: +Info 118 [00:03:51.000] request: { "seq": 0, "type": "request", @@ -2377,28 +2377,28 @@ FsWatchesRecursive:: /user/username/projects/myproject/random: {} -Info 119 [16:03:52.000] FileWatcher:: Close:: WatchInfo: /user/username/projects/myproject/random/random.ts 500 undefined WatchType: Closed Script info -Info 120 [16:03:53.000] Search path: /user/username/projects/myproject/random -Info 121 [16:03:54.000] For info: /user/username/projects/myproject/random/random.ts :: Config file name: /user/username/projects/myproject/random/tsconfig.json -Info 122 [16:03:55.000] Project '/user/username/projects/myproject/main/tsconfig.json' (Configured) -Info 122 [16:03:56.000] Files (3) - -Info 122 [16:03:57.000] ----------------------------------------------- -Info 122 [16:03:58.000] Project '/user/username/projects/myproject/dependency/tsconfig.json' (Configured) -Info 122 [16:03:59.000] Files (2) - -Info 122 [16:04:00.000] ----------------------------------------------- -Info 122 [16:04:01.000] Project '/user/username/projects/myproject/random/tsconfig.json' (Configured) -Info 122 [16:04:02.000] Files (2) - -Info 122 [16:04:03.000] ----------------------------------------------- -Info 122 [16:04:04.000] Open files: -Info 122 [16:04:05.000] FileName: /user/username/projects/myproject/main/main.ts ProjectRootPath: undefined -Info 122 [16:04:06.000] Projects: /user/username/projects/myproject/main/tsconfig.json -Info 122 [16:04:07.000] FileName: /user/username/projects/myproject/dependency/FnS.ts ProjectRootPath: undefined -Info 122 [16:04:08.000] Projects: /user/username/projects/myproject/dependency/tsconfig.json -Info 122 [16:04:09.000] FileName: /user/username/projects/myproject/random/random.ts ProjectRootPath: undefined -Info 122 [16:04:10.000] Projects: /user/username/projects/myproject/random/tsconfig.json +Info 119 [00:03:52.000] FileWatcher:: Close:: WatchInfo: /user/username/projects/myproject/random/random.ts 500 undefined WatchType: Closed Script info +Info 120 [00:03:53.000] Search path: /user/username/projects/myproject/random +Info 121 [00:03:54.000] For info: /user/username/projects/myproject/random/random.ts :: Config file name: /user/username/projects/myproject/random/tsconfig.json +Info 122 [00:03:55.000] Project '/user/username/projects/myproject/main/tsconfig.json' (Configured) +Info 122 [00:03:56.000] Files (3) + +Info 122 [00:03:57.000] ----------------------------------------------- +Info 122 [00:03:58.000] Project '/user/username/projects/myproject/dependency/tsconfig.json' (Configured) +Info 122 [00:03:59.000] Files (2) + +Info 122 [00:04:00.000] ----------------------------------------------- +Info 122 [00:04:01.000] Project '/user/username/projects/myproject/random/tsconfig.json' (Configured) +Info 122 [00:04:02.000] Files (2) + +Info 122 [00:04:03.000] ----------------------------------------------- +Info 122 [00:04:04.000] Open files: +Info 122 [00:04:05.000] FileName: /user/username/projects/myproject/main/main.ts ProjectRootPath: undefined +Info 122 [00:04:06.000] Projects: /user/username/projects/myproject/main/tsconfig.json +Info 122 [00:04:07.000] FileName: /user/username/projects/myproject/dependency/FnS.ts ProjectRootPath: undefined +Info 122 [00:04:08.000] Projects: /user/username/projects/myproject/dependency/tsconfig.json +Info 122 [00:04:09.000] FileName: /user/username/projects/myproject/random/random.ts ProjectRootPath: undefined +Info 122 [00:04:10.000] Projects: /user/username/projects/myproject/random/tsconfig.json After request PolledWatches:: @@ -2435,11 +2435,11 @@ FsWatchesRecursive:: /user/username/projects/myproject/random: {} -Info 122 [16:04:11.000] response: +Info 122 [00:04:11.000] response: { "responseRequired": false } -Info 123 [16:04:12.000] request: +Info 123 [00:04:12.000] request: { "seq": 0, "type": "request", @@ -2484,24 +2484,24 @@ FsWatchesRecursive:: /user/username/projects/myproject/random: {} -Info 124 [16:04:13.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/main/main.ts 500 undefined WatchType: Closed Script info -Info 125 [16:04:14.000] Project '/user/username/projects/myproject/main/tsconfig.json' (Configured) -Info 125 [16:04:15.000] Files (3) +Info 124 [00:04:13.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/main/main.ts 500 undefined WatchType: Closed Script info +Info 125 [00:04:14.000] Project '/user/username/projects/myproject/main/tsconfig.json' (Configured) +Info 125 [00:04:15.000] Files (3) -Info 125 [16:04:16.000] ----------------------------------------------- -Info 125 [16:04:17.000] Project '/user/username/projects/myproject/dependency/tsconfig.json' (Configured) -Info 125 [16:04:18.000] Files (2) +Info 125 [00:04:16.000] ----------------------------------------------- +Info 125 [00:04:17.000] Project '/user/username/projects/myproject/dependency/tsconfig.json' (Configured) +Info 125 [00:04:18.000] Files (2) -Info 125 [16:04:19.000] ----------------------------------------------- -Info 125 [16:04:20.000] Project '/user/username/projects/myproject/random/tsconfig.json' (Configured) -Info 125 [16:04:21.000] Files (2) +Info 125 [00:04:19.000] ----------------------------------------------- +Info 125 [00:04:20.000] Project '/user/username/projects/myproject/random/tsconfig.json' (Configured) +Info 125 [00:04:21.000] Files (2) -Info 125 [16:04:22.000] ----------------------------------------------- -Info 125 [16:04:23.000] Open files: -Info 125 [16:04:24.000] FileName: /user/username/projects/myproject/dependency/FnS.ts ProjectRootPath: undefined -Info 125 [16:04:25.000] Projects: /user/username/projects/myproject/dependency/tsconfig.json -Info 125 [16:04:26.000] FileName: /user/username/projects/myproject/random/random.ts ProjectRootPath: undefined -Info 125 [16:04:27.000] Projects: /user/username/projects/myproject/random/tsconfig.json +Info 125 [00:04:22.000] ----------------------------------------------- +Info 125 [00:04:23.000] Open files: +Info 125 [00:04:24.000] FileName: /user/username/projects/myproject/dependency/FnS.ts ProjectRootPath: undefined +Info 125 [00:04:25.000] Projects: /user/username/projects/myproject/dependency/tsconfig.json +Info 125 [00:04:26.000] FileName: /user/username/projects/myproject/random/random.ts ProjectRootPath: undefined +Info 125 [00:04:27.000] Projects: /user/username/projects/myproject/random/tsconfig.json After request PolledWatches:: @@ -2540,11 +2540,11 @@ FsWatchesRecursive:: /user/username/projects/myproject/random: {} -Info 125 [16:04:28.000] response: +Info 125 [00:04:28.000] response: { "responseRequired": false } -Info 126 [16:04:29.000] request: +Info 126 [00:04:29.000] request: { "seq": 0, "type": "request", @@ -2591,22 +2591,22 @@ FsWatchesRecursive:: /user/username/projects/myproject/random: {} -Info 127 [16:04:30.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/dependency/FnS.ts 500 undefined WatchType: Closed Script info -Info 128 [16:04:31.000] Project '/user/username/projects/myproject/main/tsconfig.json' (Configured) -Info 128 [16:04:32.000] Files (3) +Info 127 [00:04:30.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/dependency/FnS.ts 500 undefined WatchType: Closed Script info +Info 128 [00:04:31.000] Project '/user/username/projects/myproject/main/tsconfig.json' (Configured) +Info 128 [00:04:32.000] Files (3) -Info 128 [16:04:33.000] ----------------------------------------------- -Info 128 [16:04:34.000] Project '/user/username/projects/myproject/dependency/tsconfig.json' (Configured) -Info 128 [16:04:35.000] Files (2) +Info 128 [00:04:33.000] ----------------------------------------------- +Info 128 [00:04:34.000] Project '/user/username/projects/myproject/dependency/tsconfig.json' (Configured) +Info 128 [00:04:35.000] Files (2) -Info 128 [16:04:36.000] ----------------------------------------------- -Info 128 [16:04:37.000] Project '/user/username/projects/myproject/random/tsconfig.json' (Configured) -Info 128 [16:04:38.000] Files (2) +Info 128 [00:04:36.000] ----------------------------------------------- +Info 128 [00:04:37.000] Project '/user/username/projects/myproject/random/tsconfig.json' (Configured) +Info 128 [00:04:38.000] Files (2) -Info 128 [16:04:39.000] ----------------------------------------------- -Info 128 [16:04:40.000] Open files: -Info 128 [16:04:41.000] FileName: /user/username/projects/myproject/random/random.ts ProjectRootPath: undefined -Info 128 [16:04:42.000] Projects: /user/username/projects/myproject/random/tsconfig.json +Info 128 [00:04:39.000] ----------------------------------------------- +Info 128 [00:04:40.000] Open files: +Info 128 [00:04:41.000] FileName: /user/username/projects/myproject/random/random.ts ProjectRootPath: undefined +Info 128 [00:04:42.000] Projects: /user/username/projects/myproject/random/tsconfig.json After request PolledWatches:: @@ -2647,11 +2647,11 @@ FsWatchesRecursive:: /user/username/projects/myproject/random: {} -Info 128 [16:04:43.000] response: +Info 128 [00:04:43.000] response: { "responseRequired": false } -Info 129 [16:04:44.000] request: +Info 129 [00:04:44.000] request: { "seq": 0, "type": "request", @@ -2700,20 +2700,20 @@ FsWatchesRecursive:: /user/username/projects/myproject/random: {} -Info 130 [16:04:45.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/random/random.ts 500 undefined WatchType: Closed Script info -Info 131 [16:04:46.000] Project '/user/username/projects/myproject/main/tsconfig.json' (Configured) -Info 131 [16:04:47.000] Files (3) +Info 130 [00:04:45.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/random/random.ts 500 undefined WatchType: Closed Script info +Info 131 [00:04:46.000] Project '/user/username/projects/myproject/main/tsconfig.json' (Configured) +Info 131 [00:04:47.000] Files (3) -Info 131 [16:04:48.000] ----------------------------------------------- -Info 131 [16:04:49.000] Project '/user/username/projects/myproject/dependency/tsconfig.json' (Configured) -Info 131 [16:04:50.000] Files (2) +Info 131 [00:04:48.000] ----------------------------------------------- +Info 131 [00:04:49.000] Project '/user/username/projects/myproject/dependency/tsconfig.json' (Configured) +Info 131 [00:04:50.000] Files (2) -Info 131 [16:04:51.000] ----------------------------------------------- -Info 131 [16:04:52.000] Project '/user/username/projects/myproject/random/tsconfig.json' (Configured) -Info 131 [16:04:53.000] Files (2) +Info 131 [00:04:51.000] ----------------------------------------------- +Info 131 [00:04:52.000] Project '/user/username/projects/myproject/random/tsconfig.json' (Configured) +Info 131 [00:04:53.000] Files (2) -Info 131 [16:04:54.000] ----------------------------------------------- -Info 131 [16:04:55.000] Open files: +Info 131 [00:04:54.000] ----------------------------------------------- +Info 131 [00:04:55.000] Open files: After request PolledWatches:: @@ -2756,11 +2756,11 @@ FsWatchesRecursive:: /user/username/projects/myproject/random: {} -Info 131 [16:04:56.000] response: +Info 131 [00:04:56.000] response: { "responseRequired": false } -Info 132 [16:04:57.000] request: +Info 132 [00:04:57.000] request: { "seq": 0, "type": "request", @@ -2811,12 +2811,12 @@ FsWatchesRecursive:: /user/username/projects/myproject/random: {} -Info 133 [16:04:58.000] FileWatcher:: Close:: WatchInfo: /user/username/projects/myproject/random/random.ts 500 undefined WatchType: Closed Script info -Info 134 [16:04:59.000] Search path: /user/username/projects/myproject/random -Info 135 [16:05:00.000] For info: /user/username/projects/myproject/random/random.ts :: Config file name: /user/username/projects/myproject/random/tsconfig.json -Info 136 [16:05:01.000] `remove Project:: -Info 137 [16:05:02.000] Project '/user/username/projects/myproject/main/tsconfig.json' (Configured) -Info 138 [16:05:03.000] Files (3) +Info 133 [00:04:58.000] FileWatcher:: Close:: WatchInfo: /user/username/projects/myproject/random/random.ts 500 undefined WatchType: Closed Script info +Info 134 [00:04:59.000] Search path: /user/username/projects/myproject/random +Info 135 [00:05:00.000] For info: /user/username/projects/myproject/random/random.ts :: Config file name: /user/username/projects/myproject/random/tsconfig.json +Info 136 [00:05:01.000] `remove Project:: +Info 137 [00:05:02.000] Project '/user/username/projects/myproject/main/tsconfig.json' (Configured) +Info 138 [00:05:03.000] Files (3) /a/lib/lib.d.ts /user/username/projects/myproject/decls/fns.d.ts /user/username/projects/myproject/main/main.ts @@ -2829,19 +2829,19 @@ Info 138 [16:05:03.000] Files (3) main.ts Matched by default include pattern '**/*' -Info 139 [16:05:04.000] ----------------------------------------------- -Info 140 [16:05:05.000] DirectoryWatcher:: Close:: WatchInfo: /user/username/projects/myproject/main 1 undefined Config: /user/username/projects/myproject/main/tsconfig.json WatchType: Wild card directory -Info 141 [16:05:06.000] 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 142 [16:05:07.000] FileWatcher:: Close:: WatchInfo: /user/username/projects/myproject/main/tsconfig.json 2000 undefined Project: /user/username/projects/myproject/main/tsconfig.json WatchType: Config file -Info 143 [16:05:08.000] DirectoryWatcher:: Close:: WatchInfo: /user/username/projects/myproject/decls 1 undefined Project: /user/username/projects/myproject/main/tsconfig.json WatchType: Failed Lookup Locations -Info 144 [16:05:09.000] 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 145 [16:05:10.000] 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 146 [16:05:11.000] 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 147 [16:05:12.000] DirectoryWatcher:: Close:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/main/tsconfig.json WatchType: Type roots -Info 148 [16:05:13.000] 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 149 [16:05:14.000] `remove Project:: -Info 150 [16:05:15.000] Project '/user/username/projects/myproject/dependency/tsconfig.json' (Configured) -Info 151 [16:05:16.000] Files (2) +Info 139 [00:05:04.000] ----------------------------------------------- +Info 140 [00:05:05.000] DirectoryWatcher:: Close:: WatchInfo: /user/username/projects/myproject/main 1 undefined Config: /user/username/projects/myproject/main/tsconfig.json WatchType: Wild card directory +Info 141 [00:05:06.000] 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 142 [00:05:07.000] FileWatcher:: Close:: WatchInfo: /user/username/projects/myproject/main/tsconfig.json 2000 undefined Project: /user/username/projects/myproject/main/tsconfig.json WatchType: Config file +Info 143 [00:05:08.000] DirectoryWatcher:: Close:: WatchInfo: /user/username/projects/myproject/decls 1 undefined Project: /user/username/projects/myproject/main/tsconfig.json WatchType: Failed Lookup Locations +Info 144 [00:05:09.000] 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 145 [00:05:10.000] 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 146 [00:05:11.000] 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 147 [00:05:12.000] DirectoryWatcher:: Close:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/main/tsconfig.json WatchType: Type roots +Info 148 [00:05:13.000] 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 149 [00:05:14.000] `remove Project:: +Info 150 [00:05:15.000] Project '/user/username/projects/myproject/dependency/tsconfig.json' (Configured) +Info 151 [00:05:16.000] Files (2) /a/lib/lib.d.ts /user/username/projects/myproject/dependency/FnS.ts @@ -2851,25 +2851,25 @@ Info 151 [16:05:16.000] Files (2) FnS.ts Matched by default include pattern '**/*' -Info 152 [16:05:17.000] ----------------------------------------------- -Info 153 [16:05:18.000] DirectoryWatcher:: Close:: WatchInfo: /user/username/projects/myproject/dependency 1 undefined Config: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Wild card directory -Info 154 [16:05:19.000] 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 155 [16:05:20.000] FileWatcher:: Close:: WatchInfo: /user/username/projects/myproject/dependency/tsconfig.json 2000 undefined Project: /user/username/projects/myproject/main/tsconfig.json WatchType: Config file -Info 156 [16:05:21.000] 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 157 [16:05:22.000] 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 158 [16:05:23.000] DirectoryWatcher:: Close:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Type roots -Info 159 [16:05:24.000] 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 160 [16:05:25.000] FileWatcher:: Close:: WatchInfo: /user/username/projects/myproject/main/main.ts 500 undefined WatchType: Closed Script info -Info 161 [16:05:26.000] FileWatcher:: Close:: WatchInfo: /user/username/projects/myproject/decls/fns.d.ts 500 undefined WatchType: Closed Script info -Info 162 [16:05:27.000] FileWatcher:: Close:: WatchInfo: /user/username/projects/myproject/dependency/FnS.ts 500 undefined WatchType: Closed Script info -Info 163 [16:05:28.000] FileWatcher:: Close:: WatchInfo: /user/username/projects/myproject/decls/FnS.d.ts.map 500 undefined WatchType: Closed Script info -Info 164 [16:05:29.000] Project '/user/username/projects/myproject/random/tsconfig.json' (Configured) -Info 164 [16:05:30.000] Files (2) - -Info 164 [16:05:31.000] ----------------------------------------------- -Info 164 [16:05:32.000] Open files: -Info 164 [16:05:33.000] FileName: /user/username/projects/myproject/random/random.ts ProjectRootPath: undefined -Info 164 [16:05:34.000] Projects: /user/username/projects/myproject/random/tsconfig.json +Info 152 [00:05:17.000] ----------------------------------------------- +Info 153 [00:05:18.000] DirectoryWatcher:: Close:: WatchInfo: /user/username/projects/myproject/dependency 1 undefined Config: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Wild card directory +Info 154 [00:05:19.000] 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 155 [00:05:20.000] FileWatcher:: Close:: WatchInfo: /user/username/projects/myproject/dependency/tsconfig.json 2000 undefined Project: /user/username/projects/myproject/main/tsconfig.json WatchType: Config file +Info 156 [00:05:21.000] 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 157 [00:05:22.000] 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 158 [00:05:23.000] DirectoryWatcher:: Close:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Type roots +Info 159 [00:05:24.000] 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 160 [00:05:25.000] FileWatcher:: Close:: WatchInfo: /user/username/projects/myproject/main/main.ts 500 undefined WatchType: Closed Script info +Info 161 [00:05:26.000] FileWatcher:: Close:: WatchInfo: /user/username/projects/myproject/decls/fns.d.ts 500 undefined WatchType: Closed Script info +Info 162 [00:05:27.000] FileWatcher:: Close:: WatchInfo: /user/username/projects/myproject/dependency/FnS.ts 500 undefined WatchType: Closed Script info +Info 163 [00:05:28.000] FileWatcher:: Close:: WatchInfo: /user/username/projects/myproject/decls/FnS.d.ts.map 500 undefined WatchType: Closed Script info +Info 164 [00:05:29.000] Project '/user/username/projects/myproject/random/tsconfig.json' (Configured) +Info 164 [00:05:30.000] Files (2) + +Info 164 [00:05:31.000] ----------------------------------------------- +Info 164 [00:05:32.000] Open files: +Info 164 [00:05:33.000] FileName: /user/username/projects/myproject/random/random.ts ProjectRootPath: undefined +Info 164 [00:05:34.000] Projects: /user/username/projects/myproject/random/tsconfig.json After request PolledWatches:: @@ -2888,7 +2888,7 @@ FsWatchesRecursive:: /user/username/projects/myproject/random: {} -Info 164 [16:05:35.000] response: +Info 164 [00:05:35.000] response: { "responseRequired": false } \ No newline at end of file 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 a4e2fe2c4be47..881f8085f4b88 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 @@ -1,5 +1,5 @@ -Info 0 [16:01:03.000] Provided types map file "/a/lib/typesMap.json" doesn't exist -Info 1 [16:01:04.000] request: +Info 0 [00:01:03.000] Provided types map file "/a/lib/typesMap.json" doesn't exist +Info 1 [00:01:04.000] request: { "seq": 0, "type": "request", @@ -200,11 +200,11 @@ FsWatches:: FsWatchesRecursive:: -Info 2 [16:01:05.000] Search path: /user/username/projects/myproject/main -Info 3 [16:01:06.000] For info: /user/username/projects/myproject/main/main.ts :: Config file name: /user/username/projects/myproject/main/tsconfig.json -Info 4 [16:01:07.000] Creating configuration project /user/username/projects/myproject/main/tsconfig.json -Info 5 [16:01:08.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/main/tsconfig.json 2000 undefined Project: /user/username/projects/myproject/main/tsconfig.json WatchType: Config file -Info 6 [16:01:09.000] Config: /user/username/projects/myproject/main/tsconfig.json : { +Info 2 [00:01:05.000] Search path: /user/username/projects/myproject/main +Info 3 [00:01:06.000] For info: /user/username/projects/myproject/main/main.ts :: Config file name: /user/username/projects/myproject/main/tsconfig.json +Info 4 [00:01:07.000] Creating configuration project /user/username/projects/myproject/main/tsconfig.json +Info 5 [00:01:08.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/main/tsconfig.json 2000 undefined Project: /user/username/projects/myproject/main/tsconfig.json WatchType: Config file +Info 6 [00:01:09.000] Config: /user/username/projects/myproject/main/tsconfig.json : { "rootNames": [ "/user/username/projects/myproject/main/main.ts" ], @@ -221,11 +221,11 @@ Info 6 [16:01:09.000] Config: /user/username/projects/myproject/main/tsconfig } ] } -Info 7 [16:01:10.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/main 1 undefined Config: /user/username/projects/myproject/main/tsconfig.json WatchType: Wild card directory -Info 8 [16:01:11.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/main 1 undefined Config: /user/username/projects/myproject/main/tsconfig.json WatchType: Wild card directory -Info 9 [16:01:12.000] Plugins were requested but not running in environment that supports 'require'. Nothing will be loaded -Info 10 [16:01:13.000] Starting updateGraphWorker: Project: /user/username/projects/myproject/main/tsconfig.json -Info 11 [16:01:14.000] Config: /user/username/projects/myproject/dependency/tsconfig.json : { +Info 7 [00:01:10.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/main 1 undefined Config: /user/username/projects/myproject/main/tsconfig.json WatchType: Wild card directory +Info 8 [00:01:11.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/main 1 undefined Config: /user/username/projects/myproject/main/tsconfig.json WatchType: Wild card directory +Info 9 [00:01:12.000] Plugins were requested but not running in environment that supports 'require'. Nothing will be loaded +Info 10 [00:01:13.000] Starting updateGraphWorker: Project: /user/username/projects/myproject/main/tsconfig.json +Info 11 [00:01:14.000] Config: /user/username/projects/myproject/dependency/tsconfig.json : { "rootNames": [ "/user/username/projects/myproject/dependency/FnS.ts" ], @@ -236,20 +236,20 @@ Info 11 [16:01:14.000] Config: /user/username/projects/myproject/dependency/ts "configFilePath": "/user/username/projects/myproject/dependency/tsconfig.json" } } -Info 12 [16:01:15.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/dependency/tsconfig.json 2000 undefined Project: /user/username/projects/myproject/main/tsconfig.json WatchType: Config file -Info 13 [16:01:16.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/dependency 1 undefined Config: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Wild card directory -Info 14 [16:01:17.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/dependency 1 undefined Config: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Wild card directory -Info 15 [16:01:18.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/decls 1 undefined Project: /user/username/projects/myproject/main/tsconfig.json WatchType: Failed Lookup Locations -Info 16 [16:01:19.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/decls 1 undefined Project: /user/username/projects/myproject/main/tsconfig.json WatchType: Failed Lookup Locations -Info 17 [16:01:20.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/decls/fns.d.ts 500 undefined WatchType: Closed Script info -Info 18 [16:01:21.000] FileWatcher:: Added:: WatchInfo: /a/lib/lib.d.ts 500 undefined WatchType: Closed Script info -Info 19 [16:01:22.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/main/node_modules/@types 1 undefined Project: /user/username/projects/myproject/main/tsconfig.json WatchType: Type roots -Info 20 [16:01:23.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/main/node_modules/@types 1 undefined Project: /user/username/projects/myproject/main/tsconfig.json WatchType: Type roots -Info 21 [16:01:24.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/main/tsconfig.json WatchType: Type roots -Info 22 [16:01:25.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/main/tsconfig.json WatchType: Type roots -Info 23 [16:01:26.000] Finishing updateGraphWorker: Project: /user/username/projects/myproject/main/tsconfig.json Version: 1 structureChanged: true structureIsReused:: Not Elapsed:: *ms -Info 24 [16:01:27.000] Project '/user/username/projects/myproject/main/tsconfig.json' (Configured) -Info 25 [16:01:28.000] Files (3) +Info 12 [00:01:15.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/dependency/tsconfig.json 2000 undefined Project: /user/username/projects/myproject/main/tsconfig.json WatchType: Config file +Info 13 [00:01:16.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/dependency 1 undefined Config: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Wild card directory +Info 14 [00:01:17.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/dependency 1 undefined Config: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Wild card directory +Info 15 [00:01:18.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/decls 1 undefined Project: /user/username/projects/myproject/main/tsconfig.json WatchType: Failed Lookup Locations +Info 16 [00:01:19.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/decls 1 undefined Project: /user/username/projects/myproject/main/tsconfig.json WatchType: Failed Lookup Locations +Info 17 [00:01:20.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/decls/fns.d.ts 500 undefined WatchType: Closed Script info +Info 18 [00:01:21.000] FileWatcher:: Added:: WatchInfo: /a/lib/lib.d.ts 500 undefined WatchType: Closed Script info +Info 19 [00:01:22.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/main/node_modules/@types 1 undefined Project: /user/username/projects/myproject/main/tsconfig.json WatchType: Type roots +Info 20 [00:01:23.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/main/node_modules/@types 1 undefined Project: /user/username/projects/myproject/main/tsconfig.json WatchType: Type roots +Info 21 [00:01:24.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/main/tsconfig.json WatchType: Type roots +Info 22 [00:01:25.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/main/tsconfig.json WatchType: Type roots +Info 23 [00:01:26.000] Finishing updateGraphWorker: Project: /user/username/projects/myproject/main/tsconfig.json Version: 1 structureChanged: true structureIsReused:: Not Elapsed:: *ms +Info 24 [00:01:27.000] Project '/user/username/projects/myproject/main/tsconfig.json' (Configured) +Info 25 [00:01:28.000] Files (3) /a/lib/lib.d.ts /user/username/projects/myproject/decls/fns.d.ts /user/username/projects/myproject/main/main.ts @@ -262,16 +262,16 @@ Info 25 [16:01:28.000] Files (3) main.ts Matched by default include pattern '**/*' -Info 26 [16:01:29.000] ----------------------------------------------- -Info 27 [16:01:30.000] Search path: /user/username/projects/myproject/main -Info 28 [16:01:31.000] For info: /user/username/projects/myproject/main/tsconfig.json :: No config files found. -Info 29 [16:01:32.000] Project '/user/username/projects/myproject/main/tsconfig.json' (Configured) -Info 29 [16:01:33.000] Files (3) +Info 26 [00:01:29.000] ----------------------------------------------- +Info 27 [00:01:30.000] Search path: /user/username/projects/myproject/main +Info 28 [00:01:31.000] For info: /user/username/projects/myproject/main/tsconfig.json :: No config files found. +Info 29 [00:01:32.000] Project '/user/username/projects/myproject/main/tsconfig.json' (Configured) +Info 29 [00:01:33.000] Files (3) -Info 29 [16:01:34.000] ----------------------------------------------- -Info 29 [16:01:35.000] Open files: -Info 29 [16:01:36.000] FileName: /user/username/projects/myproject/main/main.ts ProjectRootPath: undefined -Info 29 [16:01:37.000] Projects: /user/username/projects/myproject/main/tsconfig.json +Info 29 [00:01:34.000] ----------------------------------------------- +Info 29 [00:01:35.000] Open files: +Info 29 [00:01:36.000] FileName: /user/username/projects/myproject/main/main.ts ProjectRootPath: undefined +Info 29 [00:01:37.000] Projects: /user/username/projects/myproject/main/tsconfig.json After request PolledWatches:: @@ -298,11 +298,11 @@ FsWatchesRecursive:: /user/username/projects/myproject/decls: {} -Info 29 [16:01:38.000] response: +Info 29 [00:01:38.000] response: { "responseRequired": false } -Info 30 [16:01:39.000] request: +Info 30 [00:01:39.000] request: { "seq": 0, "type": "request", @@ -337,18 +337,18 @@ FsWatchesRecursive:: /user/username/projects/myproject/decls: {} -Info 31 [16:01:40.000] Search path: /user/username/projects/myproject/dependency -Info 32 [16:01:41.000] For info: /user/username/projects/myproject/dependency/FnS.ts :: Config file name: /user/username/projects/myproject/dependency/tsconfig.json -Info 33 [16:01:42.000] Creating configuration project /user/username/projects/myproject/dependency/tsconfig.json -Info 34 [16:01:43.000] Plugins were requested but not running in environment that supports 'require'. Nothing will be loaded -Info 35 [16:01:44.000] Starting updateGraphWorker: Project: /user/username/projects/myproject/dependency/tsconfig.json -Info 36 [16:01:45.000] 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 37 [16:01:46.000] 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 38 [16:01:47.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Type roots -Info 39 [16:01:48.000] 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 40 [16:01:49.000] Finishing updateGraphWorker: Project: /user/username/projects/myproject/dependency/tsconfig.json Version: 1 structureChanged: true structureIsReused:: Not Elapsed:: *ms -Info 41 [16:01:50.000] Project '/user/username/projects/myproject/dependency/tsconfig.json' (Configured) -Info 42 [16:01:51.000] Files (2) +Info 31 [00:01:40.000] Search path: /user/username/projects/myproject/dependency +Info 32 [00:01:41.000] For info: /user/username/projects/myproject/dependency/FnS.ts :: Config file name: /user/username/projects/myproject/dependency/tsconfig.json +Info 33 [00:01:42.000] Creating configuration project /user/username/projects/myproject/dependency/tsconfig.json +Info 34 [00:01:43.000] Plugins were requested but not running in environment that supports 'require'. Nothing will be loaded +Info 35 [00:01:44.000] Starting updateGraphWorker: Project: /user/username/projects/myproject/dependency/tsconfig.json +Info 36 [00:01:45.000] 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 37 [00:01:46.000] 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 38 [00:01:47.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Type roots +Info 39 [00:01:48.000] 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 40 [00:01:49.000] Finishing updateGraphWorker: Project: /user/username/projects/myproject/dependency/tsconfig.json Version: 1 structureChanged: true structureIsReused:: Not Elapsed:: *ms +Info 41 [00:01:50.000] Project '/user/username/projects/myproject/dependency/tsconfig.json' (Configured) +Info 42 [00:01:51.000] Files (2) /a/lib/lib.d.ts /user/username/projects/myproject/dependency/FnS.ts @@ -358,22 +358,22 @@ Info 42 [16:01:51.000] Files (2) FnS.ts Matched by default include pattern '**/*' -Info 43 [16:01:52.000] ----------------------------------------------- -Info 44 [16:01:53.000] Search path: /user/username/projects/myproject/dependency -Info 45 [16:01:54.000] For info: /user/username/projects/myproject/dependency/tsconfig.json :: No config files found. -Info 46 [16:01:55.000] Project '/user/username/projects/myproject/main/tsconfig.json' (Configured) -Info 46 [16:01:56.000] Files (3) - -Info 46 [16:01:57.000] ----------------------------------------------- -Info 46 [16:01:58.000] Project '/user/username/projects/myproject/dependency/tsconfig.json' (Configured) -Info 46 [16:01:59.000] Files (2) - -Info 46 [16:02:00.000] ----------------------------------------------- -Info 46 [16:02:01.000] Open files: -Info 46 [16:02:02.000] FileName: /user/username/projects/myproject/main/main.ts ProjectRootPath: undefined -Info 46 [16:02:03.000] Projects: /user/username/projects/myproject/main/tsconfig.json -Info 46 [16:02:04.000] FileName: /user/username/projects/myproject/dependency/FnS.ts ProjectRootPath: undefined -Info 46 [16:02:05.000] Projects: /user/username/projects/myproject/dependency/tsconfig.json +Info 43 [00:01:52.000] ----------------------------------------------- +Info 44 [00:01:53.000] Search path: /user/username/projects/myproject/dependency +Info 45 [00:01:54.000] For info: /user/username/projects/myproject/dependency/tsconfig.json :: No config files found. +Info 46 [00:01:55.000] Project '/user/username/projects/myproject/main/tsconfig.json' (Configured) +Info 46 [00:01:56.000] Files (3) + +Info 46 [00:01:57.000] ----------------------------------------------- +Info 46 [00:01:58.000] Project '/user/username/projects/myproject/dependency/tsconfig.json' (Configured) +Info 46 [00:01:59.000] Files (2) + +Info 46 [00:02:00.000] ----------------------------------------------- +Info 46 [00:02:01.000] Open files: +Info 46 [00:02:02.000] FileName: /user/username/projects/myproject/main/main.ts ProjectRootPath: undefined +Info 46 [00:02:03.000] Projects: /user/username/projects/myproject/main/tsconfig.json +Info 46 [00:02:04.000] FileName: /user/username/projects/myproject/dependency/FnS.ts ProjectRootPath: undefined +Info 46 [00:02:05.000] Projects: /user/username/projects/myproject/dependency/tsconfig.json After request PolledWatches:: @@ -402,11 +402,11 @@ FsWatchesRecursive:: /user/username/projects/myproject/decls: {} -Info 46 [16:02:06.000] response: +Info 46 [00:02:06.000] response: { "responseRequired": false } -Info 47 [16:02:07.000] request: +Info 47 [00:02:07.000] request: { "seq": 0, "type": "request", @@ -443,11 +443,11 @@ FsWatchesRecursive:: /user/username/projects/myproject/decls: {} -Info 48 [16:02:08.000] Search path: /user/username/projects/myproject/random -Info 49 [16:02:09.000] For info: /user/username/projects/myproject/random/random.ts :: Config file name: /user/username/projects/myproject/random/tsconfig.json -Info 50 [16:02:10.000] Creating configuration project /user/username/projects/myproject/random/tsconfig.json -Info 51 [16:02:11.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/random/tsconfig.json 2000 undefined Project: /user/username/projects/myproject/random/tsconfig.json WatchType: Config file -Info 52 [16:02:12.000] Config: /user/username/projects/myproject/random/tsconfig.json : { +Info 48 [00:02:08.000] Search path: /user/username/projects/myproject/random +Info 49 [00:02:09.000] For info: /user/username/projects/myproject/random/random.ts :: Config file name: /user/username/projects/myproject/random/tsconfig.json +Info 50 [00:02:10.000] Creating configuration project /user/username/projects/myproject/random/tsconfig.json +Info 51 [00:02:11.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/random/tsconfig.json 2000 undefined Project: /user/username/projects/myproject/random/tsconfig.json WatchType: Config file +Info 52 [00:02:12.000] Config: /user/username/projects/myproject/random/tsconfig.json : { "rootNames": [ "/user/username/projects/myproject/random/random.ts" ], @@ -455,17 +455,17 @@ Info 52 [16:02:12.000] Config: /user/username/projects/myproject/random/tsconf "configFilePath": "/user/username/projects/myproject/random/tsconfig.json" } } -Info 53 [16:02:13.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/random 1 undefined Config: /user/username/projects/myproject/random/tsconfig.json WatchType: Wild card directory -Info 54 [16:02:14.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/random 1 undefined Config: /user/username/projects/myproject/random/tsconfig.json WatchType: Wild card directory -Info 55 [16:02:15.000] Plugins were requested but not running in environment that supports 'require'. Nothing will be loaded -Info 56 [16:02:16.000] Starting updateGraphWorker: Project: /user/username/projects/myproject/random/tsconfig.json -Info 57 [16:02:17.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/random/node_modules/@types 1 undefined Project: /user/username/projects/myproject/random/tsconfig.json WatchType: Type roots -Info 58 [16:02:18.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/random/node_modules/@types 1 undefined Project: /user/username/projects/myproject/random/tsconfig.json WatchType: Type roots -Info 59 [16:02:19.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/random/tsconfig.json WatchType: Type roots -Info 60 [16:02:20.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/random/tsconfig.json WatchType: Type roots -Info 61 [16:02:21.000] Finishing updateGraphWorker: Project: /user/username/projects/myproject/random/tsconfig.json Version: 1 structureChanged: true structureIsReused:: Not Elapsed:: *ms -Info 62 [16:02:22.000] Project '/user/username/projects/myproject/random/tsconfig.json' (Configured) -Info 63 [16:02:23.000] Files (2) +Info 53 [00:02:13.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/random 1 undefined Config: /user/username/projects/myproject/random/tsconfig.json WatchType: Wild card directory +Info 54 [00:02:14.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/random 1 undefined Config: /user/username/projects/myproject/random/tsconfig.json WatchType: Wild card directory +Info 55 [00:02:15.000] Plugins were requested but not running in environment that supports 'require'. Nothing will be loaded +Info 56 [00:02:16.000] Starting updateGraphWorker: Project: /user/username/projects/myproject/random/tsconfig.json +Info 57 [00:02:17.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/random/node_modules/@types 1 undefined Project: /user/username/projects/myproject/random/tsconfig.json WatchType: Type roots +Info 58 [00:02:18.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/random/node_modules/@types 1 undefined Project: /user/username/projects/myproject/random/tsconfig.json WatchType: Type roots +Info 59 [00:02:19.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/random/tsconfig.json WatchType: Type roots +Info 60 [00:02:20.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/random/tsconfig.json WatchType: Type roots +Info 61 [00:02:21.000] Finishing updateGraphWorker: Project: /user/username/projects/myproject/random/tsconfig.json Version: 1 structureChanged: true structureIsReused:: Not Elapsed:: *ms +Info 62 [00:02:22.000] Project '/user/username/projects/myproject/random/tsconfig.json' (Configured) +Info 63 [00:02:23.000] Files (2) /a/lib/lib.d.ts /user/username/projects/myproject/random/random.ts @@ -475,26 +475,26 @@ Info 63 [16:02:23.000] Files (2) random.ts Matched by default include pattern '**/*' -Info 64 [16:02:24.000] ----------------------------------------------- -Info 65 [16:02:25.000] Project '/user/username/projects/myproject/main/tsconfig.json' (Configured) -Info 65 [16:02:26.000] Files (3) - -Info 65 [16:02:27.000] ----------------------------------------------- -Info 65 [16:02:28.000] Project '/user/username/projects/myproject/dependency/tsconfig.json' (Configured) -Info 65 [16:02:29.000] Files (2) - -Info 65 [16:02:30.000] ----------------------------------------------- -Info 65 [16:02:31.000] Project '/user/username/projects/myproject/random/tsconfig.json' (Configured) -Info 65 [16:02:32.000] Files (2) - -Info 65 [16:02:33.000] ----------------------------------------------- -Info 65 [16:02:34.000] Open files: -Info 65 [16:02:35.000] FileName: /user/username/projects/myproject/main/main.ts ProjectRootPath: undefined -Info 65 [16:02:36.000] Projects: /user/username/projects/myproject/main/tsconfig.json -Info 65 [16:02:37.000] FileName: /user/username/projects/myproject/dependency/FnS.ts ProjectRootPath: undefined -Info 65 [16:02:38.000] Projects: /user/username/projects/myproject/dependency/tsconfig.json -Info 65 [16:02:39.000] FileName: /user/username/projects/myproject/random/random.ts ProjectRootPath: undefined -Info 65 [16:02:40.000] Projects: /user/username/projects/myproject/random/tsconfig.json +Info 64 [00:02:24.000] ----------------------------------------------- +Info 65 [00:02:25.000] Project '/user/username/projects/myproject/main/tsconfig.json' (Configured) +Info 65 [00:02:26.000] Files (3) + +Info 65 [00:02:27.000] ----------------------------------------------- +Info 65 [00:02:28.000] Project '/user/username/projects/myproject/dependency/tsconfig.json' (Configured) +Info 65 [00:02:29.000] Files (2) + +Info 65 [00:02:30.000] ----------------------------------------------- +Info 65 [00:02:31.000] Project '/user/username/projects/myproject/random/tsconfig.json' (Configured) +Info 65 [00:02:32.000] Files (2) + +Info 65 [00:02:33.000] ----------------------------------------------- +Info 65 [00:02:34.000] Open files: +Info 65 [00:02:35.000] FileName: /user/username/projects/myproject/main/main.ts ProjectRootPath: undefined +Info 65 [00:02:36.000] Projects: /user/username/projects/myproject/main/tsconfig.json +Info 65 [00:02:37.000] FileName: /user/username/projects/myproject/dependency/FnS.ts ProjectRootPath: undefined +Info 65 [00:02:38.000] Projects: /user/username/projects/myproject/dependency/tsconfig.json +Info 65 [00:02:39.000] FileName: /user/username/projects/myproject/random/random.ts ProjectRootPath: undefined +Info 65 [00:02:40.000] Projects: /user/username/projects/myproject/random/tsconfig.json After request PolledWatches:: @@ -529,11 +529,11 @@ FsWatchesRecursive:: /user/username/projects/myproject/random: {} -Info 65 [16:02:41.000] response: +Info 65 [00:02:41.000] response: { "responseRequired": false } -Info 66 [16:02:42.000] request: +Info 66 [00:02:42.000] request: { "command": "definitionAndBoundSpan", "arguments": { @@ -578,7 +578,7 @@ FsWatchesRecursive:: /user/username/projects/myproject/random: {} -Info 67 [16:02:43.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/decls/FnS.d.ts.map 500 undefined WatchType: Closed Script info +Info 67 [00:02:43.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/decls/FnS.d.ts.map 500 undefined WatchType: Closed Script info After request PolledWatches:: @@ -615,7 +615,7 @@ FsWatchesRecursive:: /user/username/projects/myproject/random: {} -Info 68 [16:02:44.000] response: +Info 68 [00:02:44.000] response: { "response": { "definitions": [ @@ -652,7 +652,7 @@ Info 68 [16:02:44.000] response: }, "responseRequired": true } -Info 69 [16:02:45.000] request: +Info 69 [00:02:45.000] request: { "command": "rename", "arguments": { @@ -699,8 +699,8 @@ FsWatchesRecursive:: /user/username/projects/myproject/random: {} -Info 70 [16:02:46.000] Search path: /user/username/projects/myproject/dependency -Info 71 [16:02:47.000] For info: /user/username/projects/myproject/dependency/FnS.ts :: Config file name: /user/username/projects/myproject/dependency/tsconfig.json +Info 70 [00:02:46.000] Search path: /user/username/projects/myproject/dependency +Info 71 [00:02:47.000] For info: /user/username/projects/myproject/dependency/FnS.ts :: Config file name: /user/username/projects/myproject/dependency/tsconfig.json After request PolledWatches:: @@ -737,7 +737,7 @@ FsWatchesRecursive:: /user/username/projects/myproject/random: {} -Info 72 [16:02:48.000] response: +Info 72 [00:02:48.000] response: { "response": { "info": { @@ -818,16 +818,16 @@ Info 72 [16:02:48.000] response: }, "responseRequired": true } -Info 73 [16:02:50.000] FileWatcher:: Triggered with /user/username/projects/myproject/decls/FnS.d.ts.map 2:: WatchInfo: /user/username/projects/myproject/decls/FnS.d.ts.map 500 undefined WatchType: Closed Script info -Info 74 [16:02:51.000] FileWatcher:: Close:: WatchInfo: /user/username/projects/myproject/decls/FnS.d.ts.map 500 undefined WatchType: Closed Script info -Info 75 [16:02:52.000] Scheduled: /user/username/projects/myproject/dependency/tsconfig.json -Info 76 [16:02:53.000] Scheduled: *ensureProjectForOpenFiles* -Info 77 [16:02:54.000] Scheduled: /user/username/projects/myproject/main/tsconfig.json -Info 78 [16:02:55.000] Scheduled: *ensureProjectForOpenFiles*, Cancelled earlier one -Info 79 [16:02:56.000] Elapsed:: *ms FileWatcher:: Triggered with /user/username/projects/myproject/decls/FnS.d.ts.map 2:: WatchInfo: /user/username/projects/myproject/decls/FnS.d.ts.map 500 undefined WatchType: Closed Script info -Info 80 [16:02:57.000] DirectoryWatcher:: Triggered with /user/username/projects/myproject/decls/FnS.d.ts.map :: WatchInfo: /user/username/projects/myproject/decls 1 undefined Project: /user/username/projects/myproject/main/tsconfig.json WatchType: Failed Lookup Locations -Info 81 [16:02:58.000] Elapsed:: *ms DirectoryWatcher:: Triggered with /user/username/projects/myproject/decls/FnS.d.ts.map :: WatchInfo: /user/username/projects/myproject/decls 1 undefined Project: /user/username/projects/myproject/main/tsconfig.json WatchType: Failed Lookup Locations -Info 82 [16:02:59.000] request: +Info 73 [00:02:50.000] FileWatcher:: Triggered with /user/username/projects/myproject/decls/FnS.d.ts.map 2:: WatchInfo: /user/username/projects/myproject/decls/FnS.d.ts.map 500 undefined WatchType: Closed Script info +Info 74 [00:02:51.000] FileWatcher:: Close:: WatchInfo: /user/username/projects/myproject/decls/FnS.d.ts.map 500 undefined WatchType: Closed Script info +Info 75 [00:02:52.000] Scheduled: /user/username/projects/myproject/dependency/tsconfig.json +Info 76 [00:02:53.000] Scheduled: *ensureProjectForOpenFiles* +Info 77 [00:02:54.000] Scheduled: /user/username/projects/myproject/main/tsconfig.json +Info 78 [00:02:55.000] Scheduled: *ensureProjectForOpenFiles*, Cancelled earlier one +Info 79 [00:02:56.000] Elapsed:: *ms FileWatcher:: Triggered with /user/username/projects/myproject/decls/FnS.d.ts.map 2:: WatchInfo: /user/username/projects/myproject/decls/FnS.d.ts.map 500 undefined WatchType: Closed Script info +Info 80 [00:02:57.000] DirectoryWatcher:: Triggered with /user/username/projects/myproject/decls/FnS.d.ts.map :: WatchInfo: /user/username/projects/myproject/decls 1 undefined Project: /user/username/projects/myproject/main/tsconfig.json WatchType: Failed Lookup Locations +Info 81 [00:02:58.000] Elapsed:: *ms DirectoryWatcher:: Triggered with /user/username/projects/myproject/decls/FnS.d.ts.map :: WatchInfo: /user/username/projects/myproject/decls 1 undefined Project: /user/username/projects/myproject/main/tsconfig.json WatchType: Failed Lookup Locations +Info 82 [00:02:59.000] request: { "command": "definitionAndBoundSpan", "arguments": { @@ -873,9 +873,9 @@ FsWatchesRecursive:: /user/username/projects/myproject/random: {} -Info 83 [16:03:00.000] Starting updateGraphWorker: Project: /user/username/projects/myproject/main/tsconfig.json -Info 84 [16:03:01.000] Finishing updateGraphWorker: Project: /user/username/projects/myproject/main/tsconfig.json Version: 2 structureChanged: false structureIsReused:: Not Elapsed:: *ms -Info 85 [16:03:02.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/decls/FnS.d.ts.map 2000 undefined WatchType: Missing source map file +Info 83 [00:03:00.000] Starting updateGraphWorker: Project: /user/username/projects/myproject/main/tsconfig.json +Info 84 [00:03:01.000] Finishing updateGraphWorker: Project: /user/username/projects/myproject/main/tsconfig.json Version: 2 structureChanged: false structureIsReused:: Not Elapsed:: *ms +Info 85 [00:03:02.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/decls/FnS.d.ts.map 2000 undefined WatchType: Missing source map file After request PolledWatches:: @@ -912,7 +912,7 @@ FsWatchesRecursive:: /user/username/projects/myproject/random: {} -Info 86 [16:03:03.000] response: +Info 86 [00:03:03.000] response: { "response": { "definitions": [ @@ -949,7 +949,7 @@ Info 86 [16:03:03.000] response: }, "responseRequired": true } -Info 87 [16:03:04.000] request: +Info 87 [00:03:04.000] request: { "command": "definitionAndBoundSpan", "arguments": { @@ -1032,7 +1032,7 @@ FsWatchesRecursive:: /user/username/projects/myproject/random: {} -Info 88 [16:03:05.000] response: +Info 88 [00:03:05.000] response: { "response": { "definitions": [ @@ -1069,7 +1069,7 @@ Info 88 [16:03:05.000] response: }, "responseRequired": true } -Info 89 [16:03:06.000] request: +Info 89 [00:03:06.000] request: { "command": "definitionAndBoundSpan", "arguments": { @@ -1152,7 +1152,7 @@ FsWatchesRecursive:: /user/username/projects/myproject/random: {} -Info 90 [16:03:07.000] response: +Info 90 [00:03:07.000] response: { "response": { "definitions": [ @@ -1189,7 +1189,7 @@ Info 90 [16:03:07.000] response: }, "responseRequired": true } -Info 91 [16:03:08.000] request: +Info 91 [00:03:08.000] request: { "command": "definitionAndBoundSpan", "arguments": { @@ -1272,7 +1272,7 @@ FsWatchesRecursive:: /user/username/projects/myproject/random: {} -Info 92 [16:03:09.000] response: +Info 92 [00:03:09.000] response: { "response": { "definitions": [ @@ -1309,7 +1309,7 @@ Info 92 [16:03:09.000] response: }, "responseRequired": true } -Info 93 [16:03:10.000] request: +Info 93 [00:03:10.000] request: { "command": "definitionAndBoundSpan", "arguments": { @@ -1392,7 +1392,7 @@ FsWatchesRecursive:: /user/username/projects/myproject/random: {} -Info 94 [16:03:11.000] response: +Info 94 [00:03:11.000] response: { "response": { "definitions": [ @@ -1429,7 +1429,7 @@ Info 94 [16:03:11.000] response: }, "responseRequired": true } -Info 95 [16:03:12.000] request: +Info 95 [00:03:12.000] request: { "command": "rename", "arguments": { @@ -1476,8 +1476,8 @@ FsWatchesRecursive:: /user/username/projects/myproject/random: {} -Info 96 [16:03:13.000] Starting updateGraphWorker: Project: /user/username/projects/myproject/dependency/tsconfig.json -Info 97 [16:03:14.000] Finishing updateGraphWorker: Project: /user/username/projects/myproject/dependency/tsconfig.json Version: 2 structureChanged: false structureIsReused:: Not Elapsed:: *ms +Info 96 [00:03:13.000] Starting updateGraphWorker: Project: /user/username/projects/myproject/dependency/tsconfig.json +Info 97 [00:03:14.000] Finishing updateGraphWorker: Project: /user/username/projects/myproject/dependency/tsconfig.json Version: 2 structureChanged: false structureIsReused:: Not Elapsed:: *ms After request PolledWatches:: @@ -1514,7 +1514,7 @@ FsWatchesRecursive:: /user/username/projects/myproject/random: {} -Info 98 [16:03:15.000] response: +Info 98 [00:03:15.000] response: { "response": { "info": { @@ -1562,7 +1562,7 @@ Info 98 [16:03:15.000] response: }, "responseRequired": true } -Info 99 [16:03:16.000] request: +Info 99 [00:03:16.000] request: { "command": "rename", "arguments": { @@ -1645,7 +1645,7 @@ FsWatchesRecursive:: /user/username/projects/myproject/random: {} -Info 100 [16:03:17.000] response: +Info 100 [00:03:17.000] response: { "response": { "info": { @@ -1693,7 +1693,7 @@ Info 100 [16:03:17.000] response: }, "responseRequired": true } -Info 101 [16:03:18.000] request: +Info 101 [00:03:18.000] request: { "command": "rename", "arguments": { @@ -1776,7 +1776,7 @@ FsWatchesRecursive:: /user/username/projects/myproject/random: {} -Info 102 [16:03:19.000] response: +Info 102 [00:03:19.000] response: { "response": { "info": { @@ -1824,7 +1824,7 @@ Info 102 [16:03:19.000] response: }, "responseRequired": true } -Info 103 [16:03:20.000] request: +Info 103 [00:03:20.000] request: { "command": "rename", "arguments": { @@ -1907,7 +1907,7 @@ FsWatchesRecursive:: /user/username/projects/myproject/random: {} -Info 104 [16:03:21.000] response: +Info 104 [00:03:21.000] response: { "response": { "info": { @@ -1955,7 +1955,7 @@ Info 104 [16:03:21.000] response: }, "responseRequired": true } -Info 105 [16:03:22.000] request: +Info 105 [00:03:22.000] request: { "command": "rename", "arguments": { @@ -2038,7 +2038,7 @@ FsWatchesRecursive:: /user/username/projects/myproject/random: {} -Info 106 [16:03:23.000] response: +Info 106 [00:03:23.000] response: { "response": { "info": { @@ -2086,7 +2086,7 @@ Info 106 [16:03:23.000] response: }, "responseRequired": true } -Info 107 [16:03:24.000] request: +Info 107 [00:03:24.000] request: { "seq": 0, "type": "request", @@ -2131,24 +2131,24 @@ FsWatchesRecursive:: /user/username/projects/myproject/random: {} -Info 108 [16:03:25.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/random/random.ts 500 undefined WatchType: Closed Script info -Info 109 [16:03:26.000] Project '/user/username/projects/myproject/main/tsconfig.json' (Configured) -Info 109 [16:03:27.000] Files (3) +Info 108 [00:03:25.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/random/random.ts 500 undefined WatchType: Closed Script info +Info 109 [00:03:26.000] Project '/user/username/projects/myproject/main/tsconfig.json' (Configured) +Info 109 [00:03:27.000] Files (3) -Info 109 [16:03:28.000] ----------------------------------------------- -Info 109 [16:03:29.000] Project '/user/username/projects/myproject/dependency/tsconfig.json' (Configured) -Info 109 [16:03:30.000] Files (2) +Info 109 [00:03:28.000] ----------------------------------------------- +Info 109 [00:03:29.000] Project '/user/username/projects/myproject/dependency/tsconfig.json' (Configured) +Info 109 [00:03:30.000] Files (2) -Info 109 [16:03:31.000] ----------------------------------------------- -Info 109 [16:03:32.000] Project '/user/username/projects/myproject/random/tsconfig.json' (Configured) -Info 109 [16:03:33.000] Files (2) +Info 109 [00:03:31.000] ----------------------------------------------- +Info 109 [00:03:32.000] Project '/user/username/projects/myproject/random/tsconfig.json' (Configured) +Info 109 [00:03:33.000] Files (2) -Info 109 [16:03:34.000] ----------------------------------------------- -Info 109 [16:03:35.000] Open files: -Info 109 [16:03:36.000] FileName: /user/username/projects/myproject/main/main.ts ProjectRootPath: undefined -Info 109 [16:03:37.000] Projects: /user/username/projects/myproject/main/tsconfig.json -Info 109 [16:03:38.000] FileName: /user/username/projects/myproject/dependency/FnS.ts ProjectRootPath: undefined -Info 109 [16:03:39.000] Projects: /user/username/projects/myproject/dependency/tsconfig.json +Info 109 [00:03:34.000] ----------------------------------------------- +Info 109 [00:03:35.000] Open files: +Info 109 [00:03:36.000] FileName: /user/username/projects/myproject/main/main.ts ProjectRootPath: undefined +Info 109 [00:03:37.000] Projects: /user/username/projects/myproject/main/tsconfig.json +Info 109 [00:03:38.000] FileName: /user/username/projects/myproject/dependency/FnS.ts ProjectRootPath: undefined +Info 109 [00:03:39.000] Projects: /user/username/projects/myproject/dependency/tsconfig.json After request PolledWatches:: @@ -2187,11 +2187,11 @@ FsWatchesRecursive:: /user/username/projects/myproject/random: {} -Info 109 [16:03:40.000] response: +Info 109 [00:03:40.000] response: { "responseRequired": false } -Info 110 [16:03:41.000] request: +Info 110 [00:03:41.000] request: { "seq": 0, "type": "request", @@ -2238,28 +2238,28 @@ FsWatchesRecursive:: /user/username/projects/myproject/random: {} -Info 111 [16:03:42.000] FileWatcher:: Close:: WatchInfo: /user/username/projects/myproject/random/random.ts 500 undefined WatchType: Closed Script info -Info 112 [16:03:43.000] Search path: /user/username/projects/myproject/random -Info 113 [16:03:44.000] For info: /user/username/projects/myproject/random/random.ts :: Config file name: /user/username/projects/myproject/random/tsconfig.json -Info 114 [16:03:45.000] Project '/user/username/projects/myproject/main/tsconfig.json' (Configured) -Info 114 [16:03:46.000] Files (3) - -Info 114 [16:03:47.000] ----------------------------------------------- -Info 114 [16:03:48.000] Project '/user/username/projects/myproject/dependency/tsconfig.json' (Configured) -Info 114 [16:03:49.000] Files (2) - -Info 114 [16:03:50.000] ----------------------------------------------- -Info 114 [16:03:51.000] Project '/user/username/projects/myproject/random/tsconfig.json' (Configured) -Info 114 [16:03:52.000] Files (2) - -Info 114 [16:03:53.000] ----------------------------------------------- -Info 114 [16:03:54.000] Open files: -Info 114 [16:03:55.000] FileName: /user/username/projects/myproject/main/main.ts ProjectRootPath: undefined -Info 114 [16:03:56.000] Projects: /user/username/projects/myproject/main/tsconfig.json -Info 114 [16:03:57.000] FileName: /user/username/projects/myproject/dependency/FnS.ts ProjectRootPath: undefined -Info 114 [16:03:58.000] Projects: /user/username/projects/myproject/dependency/tsconfig.json -Info 114 [16:03:59.000] FileName: /user/username/projects/myproject/random/random.ts ProjectRootPath: undefined -Info 114 [16:04:00.000] Projects: /user/username/projects/myproject/random/tsconfig.json +Info 111 [00:03:42.000] FileWatcher:: Close:: WatchInfo: /user/username/projects/myproject/random/random.ts 500 undefined WatchType: Closed Script info +Info 112 [00:03:43.000] Search path: /user/username/projects/myproject/random +Info 113 [00:03:44.000] For info: /user/username/projects/myproject/random/random.ts :: Config file name: /user/username/projects/myproject/random/tsconfig.json +Info 114 [00:03:45.000] Project '/user/username/projects/myproject/main/tsconfig.json' (Configured) +Info 114 [00:03:46.000] Files (3) + +Info 114 [00:03:47.000] ----------------------------------------------- +Info 114 [00:03:48.000] Project '/user/username/projects/myproject/dependency/tsconfig.json' (Configured) +Info 114 [00:03:49.000] Files (2) + +Info 114 [00:03:50.000] ----------------------------------------------- +Info 114 [00:03:51.000] Project '/user/username/projects/myproject/random/tsconfig.json' (Configured) +Info 114 [00:03:52.000] Files (2) + +Info 114 [00:03:53.000] ----------------------------------------------- +Info 114 [00:03:54.000] Open files: +Info 114 [00:03:55.000] FileName: /user/username/projects/myproject/main/main.ts ProjectRootPath: undefined +Info 114 [00:03:56.000] Projects: /user/username/projects/myproject/main/tsconfig.json +Info 114 [00:03:57.000] FileName: /user/username/projects/myproject/dependency/FnS.ts ProjectRootPath: undefined +Info 114 [00:03:58.000] Projects: /user/username/projects/myproject/dependency/tsconfig.json +Info 114 [00:03:59.000] FileName: /user/username/projects/myproject/random/random.ts ProjectRootPath: undefined +Info 114 [00:04:00.000] Projects: /user/username/projects/myproject/random/tsconfig.json After request PolledWatches:: @@ -2296,11 +2296,11 @@ FsWatchesRecursive:: /user/username/projects/myproject/random: {} -Info 114 [16:04:01.000] response: +Info 114 [00:04:01.000] response: { "responseRequired": false } -Info 115 [16:04:02.000] request: +Info 115 [00:04:02.000] request: { "seq": 0, "type": "request", @@ -2345,24 +2345,24 @@ FsWatchesRecursive:: /user/username/projects/myproject/random: {} -Info 116 [16:04:03.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/main/main.ts 500 undefined WatchType: Closed Script info -Info 117 [16:04:04.000] Project '/user/username/projects/myproject/main/tsconfig.json' (Configured) -Info 117 [16:04:05.000] Files (3) +Info 116 [00:04:03.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/main/main.ts 500 undefined WatchType: Closed Script info +Info 117 [00:04:04.000] Project '/user/username/projects/myproject/main/tsconfig.json' (Configured) +Info 117 [00:04:05.000] Files (3) -Info 117 [16:04:06.000] ----------------------------------------------- -Info 117 [16:04:07.000] Project '/user/username/projects/myproject/dependency/tsconfig.json' (Configured) -Info 117 [16:04:08.000] Files (2) +Info 117 [00:04:06.000] ----------------------------------------------- +Info 117 [00:04:07.000] Project '/user/username/projects/myproject/dependency/tsconfig.json' (Configured) +Info 117 [00:04:08.000] Files (2) -Info 117 [16:04:09.000] ----------------------------------------------- -Info 117 [16:04:10.000] Project '/user/username/projects/myproject/random/tsconfig.json' (Configured) -Info 117 [16:04:11.000] Files (2) +Info 117 [00:04:09.000] ----------------------------------------------- +Info 117 [00:04:10.000] Project '/user/username/projects/myproject/random/tsconfig.json' (Configured) +Info 117 [00:04:11.000] Files (2) -Info 117 [16:04:12.000] ----------------------------------------------- -Info 117 [16:04:13.000] Open files: -Info 117 [16:04:14.000] FileName: /user/username/projects/myproject/dependency/FnS.ts ProjectRootPath: undefined -Info 117 [16:04:15.000] Projects: /user/username/projects/myproject/dependency/tsconfig.json -Info 117 [16:04:16.000] FileName: /user/username/projects/myproject/random/random.ts ProjectRootPath: undefined -Info 117 [16:04:17.000] Projects: /user/username/projects/myproject/random/tsconfig.json +Info 117 [00:04:12.000] ----------------------------------------------- +Info 117 [00:04:13.000] Open files: +Info 117 [00:04:14.000] FileName: /user/username/projects/myproject/dependency/FnS.ts ProjectRootPath: undefined +Info 117 [00:04:15.000] Projects: /user/username/projects/myproject/dependency/tsconfig.json +Info 117 [00:04:16.000] FileName: /user/username/projects/myproject/random/random.ts ProjectRootPath: undefined +Info 117 [00:04:17.000] Projects: /user/username/projects/myproject/random/tsconfig.json After request PolledWatches:: @@ -2401,11 +2401,11 @@ FsWatchesRecursive:: /user/username/projects/myproject/random: {} -Info 117 [16:04:18.000] response: +Info 117 [00:04:18.000] response: { "responseRequired": false } -Info 118 [16:04:19.000] request: +Info 118 [00:04:19.000] request: { "seq": 0, "type": "request", @@ -2452,22 +2452,22 @@ FsWatchesRecursive:: /user/username/projects/myproject/random: {} -Info 119 [16:04:20.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/dependency/FnS.ts 500 undefined WatchType: Closed Script info -Info 120 [16:04:21.000] Project '/user/username/projects/myproject/main/tsconfig.json' (Configured) -Info 120 [16:04:22.000] Files (3) +Info 119 [00:04:20.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/dependency/FnS.ts 500 undefined WatchType: Closed Script info +Info 120 [00:04:21.000] Project '/user/username/projects/myproject/main/tsconfig.json' (Configured) +Info 120 [00:04:22.000] Files (3) -Info 120 [16:04:23.000] ----------------------------------------------- -Info 120 [16:04:24.000] Project '/user/username/projects/myproject/dependency/tsconfig.json' (Configured) -Info 120 [16:04:25.000] Files (2) +Info 120 [00:04:23.000] ----------------------------------------------- +Info 120 [00:04:24.000] Project '/user/username/projects/myproject/dependency/tsconfig.json' (Configured) +Info 120 [00:04:25.000] Files (2) -Info 120 [16:04:26.000] ----------------------------------------------- -Info 120 [16:04:27.000] Project '/user/username/projects/myproject/random/tsconfig.json' (Configured) -Info 120 [16:04:28.000] Files (2) +Info 120 [00:04:26.000] ----------------------------------------------- +Info 120 [00:04:27.000] Project '/user/username/projects/myproject/random/tsconfig.json' (Configured) +Info 120 [00:04:28.000] Files (2) -Info 120 [16:04:29.000] ----------------------------------------------- -Info 120 [16:04:30.000] Open files: -Info 120 [16:04:31.000] FileName: /user/username/projects/myproject/random/random.ts ProjectRootPath: undefined -Info 120 [16:04:32.000] Projects: /user/username/projects/myproject/random/tsconfig.json +Info 120 [00:04:29.000] ----------------------------------------------- +Info 120 [00:04:30.000] Open files: +Info 120 [00:04:31.000] FileName: /user/username/projects/myproject/random/random.ts ProjectRootPath: undefined +Info 120 [00:04:32.000] Projects: /user/username/projects/myproject/random/tsconfig.json After request PolledWatches:: @@ -2508,11 +2508,11 @@ FsWatchesRecursive:: /user/username/projects/myproject/random: {} -Info 120 [16:04:33.000] response: +Info 120 [00:04:33.000] response: { "responseRequired": false } -Info 121 [16:04:34.000] request: +Info 121 [00:04:34.000] request: { "seq": 0, "type": "request", @@ -2561,20 +2561,20 @@ FsWatchesRecursive:: /user/username/projects/myproject/random: {} -Info 122 [16:04:35.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/random/random.ts 500 undefined WatchType: Closed Script info -Info 123 [16:04:36.000] Project '/user/username/projects/myproject/main/tsconfig.json' (Configured) -Info 123 [16:04:37.000] Files (3) +Info 122 [00:04:35.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/random/random.ts 500 undefined WatchType: Closed Script info +Info 123 [00:04:36.000] Project '/user/username/projects/myproject/main/tsconfig.json' (Configured) +Info 123 [00:04:37.000] Files (3) -Info 123 [16:04:38.000] ----------------------------------------------- -Info 123 [16:04:39.000] Project '/user/username/projects/myproject/dependency/tsconfig.json' (Configured) -Info 123 [16:04:40.000] Files (2) +Info 123 [00:04:38.000] ----------------------------------------------- +Info 123 [00:04:39.000] Project '/user/username/projects/myproject/dependency/tsconfig.json' (Configured) +Info 123 [00:04:40.000] Files (2) -Info 123 [16:04:41.000] ----------------------------------------------- -Info 123 [16:04:42.000] Project '/user/username/projects/myproject/random/tsconfig.json' (Configured) -Info 123 [16:04:43.000] Files (2) +Info 123 [00:04:41.000] ----------------------------------------------- +Info 123 [00:04:42.000] Project '/user/username/projects/myproject/random/tsconfig.json' (Configured) +Info 123 [00:04:43.000] Files (2) -Info 123 [16:04:44.000] ----------------------------------------------- -Info 123 [16:04:45.000] Open files: +Info 123 [00:04:44.000] ----------------------------------------------- +Info 123 [00:04:45.000] Open files: After request PolledWatches:: @@ -2617,11 +2617,11 @@ FsWatchesRecursive:: /user/username/projects/myproject/random: {} -Info 123 [16:04:46.000] response: +Info 123 [00:04:46.000] response: { "responseRequired": false } -Info 124 [16:04:47.000] request: +Info 124 [00:04:47.000] request: { "seq": 0, "type": "request", @@ -2672,12 +2672,12 @@ FsWatchesRecursive:: /user/username/projects/myproject/random: {} -Info 125 [16:04:48.000] FileWatcher:: Close:: WatchInfo: /user/username/projects/myproject/random/random.ts 500 undefined WatchType: Closed Script info -Info 126 [16:04:49.000] Search path: /user/username/projects/myproject/random -Info 127 [16:04:50.000] For info: /user/username/projects/myproject/random/random.ts :: Config file name: /user/username/projects/myproject/random/tsconfig.json -Info 128 [16:04:51.000] `remove Project:: -Info 129 [16:04:52.000] Project '/user/username/projects/myproject/main/tsconfig.json' (Configured) -Info 130 [16:04:53.000] Files (3) +Info 125 [00:04:48.000] FileWatcher:: Close:: WatchInfo: /user/username/projects/myproject/random/random.ts 500 undefined WatchType: Closed Script info +Info 126 [00:04:49.000] Search path: /user/username/projects/myproject/random +Info 127 [00:04:50.000] For info: /user/username/projects/myproject/random/random.ts :: Config file name: /user/username/projects/myproject/random/tsconfig.json +Info 128 [00:04:51.000] `remove Project:: +Info 129 [00:04:52.000] Project '/user/username/projects/myproject/main/tsconfig.json' (Configured) +Info 130 [00:04:53.000] Files (3) /a/lib/lib.d.ts /user/username/projects/myproject/decls/fns.d.ts /user/username/projects/myproject/main/main.ts @@ -2690,19 +2690,19 @@ Info 130 [16:04:53.000] Files (3) main.ts Matched by default include pattern '**/*' -Info 131 [16:04:54.000] ----------------------------------------------- -Info 132 [16:04:55.000] DirectoryWatcher:: Close:: WatchInfo: /user/username/projects/myproject/main 1 undefined Config: /user/username/projects/myproject/main/tsconfig.json WatchType: Wild card directory -Info 133 [16:04:56.000] 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 134 [16:04:57.000] FileWatcher:: Close:: WatchInfo: /user/username/projects/myproject/main/tsconfig.json 2000 undefined Project: /user/username/projects/myproject/main/tsconfig.json WatchType: Config file -Info 135 [16:04:58.000] DirectoryWatcher:: Close:: WatchInfo: /user/username/projects/myproject/decls 1 undefined Project: /user/username/projects/myproject/main/tsconfig.json WatchType: Failed Lookup Locations -Info 136 [16:04:59.000] 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 137 [16:05:00.000] 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 138 [16:05:01.000] 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 139 [16:05:02.000] DirectoryWatcher:: Close:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/main/tsconfig.json WatchType: Type roots -Info 140 [16:05:03.000] 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 141 [16:05:04.000] `remove Project:: -Info 142 [16:05:05.000] Project '/user/username/projects/myproject/dependency/tsconfig.json' (Configured) -Info 143 [16:05:06.000] Files (2) +Info 131 [00:04:54.000] ----------------------------------------------- +Info 132 [00:04:55.000] DirectoryWatcher:: Close:: WatchInfo: /user/username/projects/myproject/main 1 undefined Config: /user/username/projects/myproject/main/tsconfig.json WatchType: Wild card directory +Info 133 [00:04:56.000] 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 134 [00:04:57.000] FileWatcher:: Close:: WatchInfo: /user/username/projects/myproject/main/tsconfig.json 2000 undefined Project: /user/username/projects/myproject/main/tsconfig.json WatchType: Config file +Info 135 [00:04:58.000] DirectoryWatcher:: Close:: WatchInfo: /user/username/projects/myproject/decls 1 undefined Project: /user/username/projects/myproject/main/tsconfig.json WatchType: Failed Lookup Locations +Info 136 [00:04:59.000] 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 137 [00:05:00.000] 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 138 [00:05:01.000] 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 139 [00:05:02.000] DirectoryWatcher:: Close:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/main/tsconfig.json WatchType: Type roots +Info 140 [00:05:03.000] 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 141 [00:05:04.000] `remove Project:: +Info 142 [00:05:05.000] Project '/user/username/projects/myproject/dependency/tsconfig.json' (Configured) +Info 143 [00:05:06.000] Files (2) /a/lib/lib.d.ts /user/username/projects/myproject/dependency/FnS.ts @@ -2712,25 +2712,25 @@ Info 143 [16:05:06.000] Files (2) FnS.ts Matched by default include pattern '**/*' -Info 144 [16:05:07.000] ----------------------------------------------- -Info 145 [16:05:08.000] DirectoryWatcher:: Close:: WatchInfo: /user/username/projects/myproject/dependency 1 undefined Config: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Wild card directory -Info 146 [16:05:09.000] 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 147 [16:05:10.000] FileWatcher:: Close:: WatchInfo: /user/username/projects/myproject/dependency/tsconfig.json 2000 undefined Project: /user/username/projects/myproject/main/tsconfig.json WatchType: Config file -Info 148 [16:05:11.000] 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 149 [16:05:12.000] 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 150 [16:05:13.000] DirectoryWatcher:: Close:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Type roots -Info 151 [16:05:14.000] 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 152 [16:05:15.000] FileWatcher:: Close:: WatchInfo: /user/username/projects/myproject/main/main.ts 500 undefined WatchType: Closed Script info -Info 153 [16:05:16.000] FileWatcher:: Close:: WatchInfo: /user/username/projects/myproject/decls/fns.d.ts 500 undefined WatchType: Closed Script info -Info 154 [16:05:17.000] FileWatcher:: Close:: WatchInfo: /user/username/projects/myproject/decls/FnS.d.ts.map 2000 undefined WatchType: Missing source map file -Info 155 [16:05:18.000] FileWatcher:: Close:: WatchInfo: /user/username/projects/myproject/dependency/FnS.ts 500 undefined WatchType: Closed Script info -Info 156 [16:05:19.000] Project '/user/username/projects/myproject/random/tsconfig.json' (Configured) -Info 156 [16:05:20.000] Files (2) - -Info 156 [16:05:21.000] ----------------------------------------------- -Info 156 [16:05:22.000] Open files: -Info 156 [16:05:23.000] FileName: /user/username/projects/myproject/random/random.ts ProjectRootPath: undefined -Info 156 [16:05:24.000] Projects: /user/username/projects/myproject/random/tsconfig.json +Info 144 [00:05:07.000] ----------------------------------------------- +Info 145 [00:05:08.000] DirectoryWatcher:: Close:: WatchInfo: /user/username/projects/myproject/dependency 1 undefined Config: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Wild card directory +Info 146 [00:05:09.000] 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 147 [00:05:10.000] FileWatcher:: Close:: WatchInfo: /user/username/projects/myproject/dependency/tsconfig.json 2000 undefined Project: /user/username/projects/myproject/main/tsconfig.json WatchType: Config file +Info 148 [00:05:11.000] 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 149 [00:05:12.000] 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 150 [00:05:13.000] DirectoryWatcher:: Close:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Type roots +Info 151 [00:05:14.000] 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 152 [00:05:15.000] FileWatcher:: Close:: WatchInfo: /user/username/projects/myproject/main/main.ts 500 undefined WatchType: Closed Script info +Info 153 [00:05:16.000] FileWatcher:: Close:: WatchInfo: /user/username/projects/myproject/decls/fns.d.ts 500 undefined WatchType: Closed Script info +Info 154 [00:05:17.000] FileWatcher:: Close:: WatchInfo: /user/username/projects/myproject/decls/FnS.d.ts.map 2000 undefined WatchType: Missing source map file +Info 155 [00:05:18.000] FileWatcher:: Close:: WatchInfo: /user/username/projects/myproject/dependency/FnS.ts 500 undefined WatchType: Closed Script info +Info 156 [00:05:19.000] Project '/user/username/projects/myproject/random/tsconfig.json' (Configured) +Info 156 [00:05:20.000] Files (2) + +Info 156 [00:05:21.000] ----------------------------------------------- +Info 156 [00:05:22.000] Open files: +Info 156 [00:05:23.000] FileName: /user/username/projects/myproject/random/random.ts ProjectRootPath: undefined +Info 156 [00:05:24.000] Projects: /user/username/projects/myproject/random/tsconfig.json After request PolledWatches:: @@ -2749,7 +2749,7 @@ FsWatchesRecursive:: /user/username/projects/myproject/random: {} -Info 156 [16:05:25.000] response: +Info 156 [00:05:25.000] response: { "responseRequired": false } \ No newline at end of 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 c683836b1737c..d9b35adf70ec7 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 @@ -1,5 +1,5 @@ -Info 0 [16:01:04.000] Provided types map file "/a/lib/typesMap.json" doesn't exist -Info 1 [16:01:05.000] request: +Info 0 [00:01:04.000] Provided types map file "/a/lib/typesMap.json" doesn't exist +Info 1 [00:01:05.000] request: { "seq": 0, "type": "request", @@ -197,11 +197,11 @@ FsWatches:: FsWatchesRecursive:: -Info 2 [16:01:06.000] Search path: /user/username/projects/myproject/main -Info 3 [16:01:07.000] For info: /user/username/projects/myproject/main/main.ts :: Config file name: /user/username/projects/myproject/main/tsconfig.json -Info 4 [16:01:08.000] Creating configuration project /user/username/projects/myproject/main/tsconfig.json -Info 5 [16:01:09.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/main/tsconfig.json 2000 undefined Project: /user/username/projects/myproject/main/tsconfig.json WatchType: Config file -Info 6 [16:01:10.000] Config: /user/username/projects/myproject/main/tsconfig.json : { +Info 2 [00:01:06.000] Search path: /user/username/projects/myproject/main +Info 3 [00:01:07.000] For info: /user/username/projects/myproject/main/main.ts :: Config file name: /user/username/projects/myproject/main/tsconfig.json +Info 4 [00:01:08.000] Creating configuration project /user/username/projects/myproject/main/tsconfig.json +Info 5 [00:01:09.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/main/tsconfig.json 2000 undefined Project: /user/username/projects/myproject/main/tsconfig.json WatchType: Config file +Info 6 [00:01:10.000] Config: /user/username/projects/myproject/main/tsconfig.json : { "rootNames": [ "/user/username/projects/myproject/main/main.ts" ], @@ -218,11 +218,11 @@ Info 6 [16:01:10.000] Config: /user/username/projects/myproject/main/tsconfig } ] } -Info 7 [16:01:11.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/main 1 undefined Config: /user/username/projects/myproject/main/tsconfig.json WatchType: Wild card directory -Info 8 [16:01:12.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/main 1 undefined Config: /user/username/projects/myproject/main/tsconfig.json WatchType: Wild card directory -Info 9 [16:01:13.000] Plugins were requested but not running in environment that supports 'require'. Nothing will be loaded -Info 10 [16:01:14.000] Starting updateGraphWorker: Project: /user/username/projects/myproject/main/tsconfig.json -Info 11 [16:01:15.000] Config: /user/username/projects/myproject/dependency/tsconfig.json : { +Info 7 [00:01:11.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/main 1 undefined Config: /user/username/projects/myproject/main/tsconfig.json WatchType: Wild card directory +Info 8 [00:01:12.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/main 1 undefined Config: /user/username/projects/myproject/main/tsconfig.json WatchType: Wild card directory +Info 9 [00:01:13.000] Plugins were requested but not running in environment that supports 'require'. Nothing will be loaded +Info 10 [00:01:14.000] Starting updateGraphWorker: Project: /user/username/projects/myproject/main/tsconfig.json +Info 11 [00:01:15.000] Config: /user/username/projects/myproject/dependency/tsconfig.json : { "rootNames": [ "/user/username/projects/myproject/dependency/FnS.ts" ], @@ -233,20 +233,20 @@ Info 11 [16:01:15.000] Config: /user/username/projects/myproject/dependency/ts "configFilePath": "/user/username/projects/myproject/dependency/tsconfig.json" } } -Info 12 [16:01:16.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/dependency/tsconfig.json 2000 undefined Project: /user/username/projects/myproject/main/tsconfig.json WatchType: Config file -Info 13 [16:01:17.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/dependency 1 undefined Config: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Wild card directory -Info 14 [16:01:18.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/dependency 1 undefined Config: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Wild card directory -Info 15 [16:01:19.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/decls 1 undefined Project: /user/username/projects/myproject/main/tsconfig.json WatchType: Failed Lookup Locations -Info 16 [16:01:20.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/decls 1 undefined Project: /user/username/projects/myproject/main/tsconfig.json WatchType: Failed Lookup Locations -Info 17 [16:01:21.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/decls/fns.d.ts 500 undefined WatchType: Closed Script info -Info 18 [16:01:22.000] FileWatcher:: Added:: WatchInfo: /a/lib/lib.d.ts 500 undefined WatchType: Closed Script info -Info 19 [16:01:23.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/main/node_modules/@types 1 undefined Project: /user/username/projects/myproject/main/tsconfig.json WatchType: Type roots -Info 20 [16:01:24.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/main/node_modules/@types 1 undefined Project: /user/username/projects/myproject/main/tsconfig.json WatchType: Type roots -Info 21 [16:01:25.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/main/tsconfig.json WatchType: Type roots -Info 22 [16:01:26.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/main/tsconfig.json WatchType: Type roots -Info 23 [16:01:27.000] Finishing updateGraphWorker: Project: /user/username/projects/myproject/main/tsconfig.json Version: 1 structureChanged: true structureIsReused:: Not Elapsed:: *ms -Info 24 [16:01:28.000] Project '/user/username/projects/myproject/main/tsconfig.json' (Configured) -Info 25 [16:01:29.000] Files (3) +Info 12 [00:01:16.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/dependency/tsconfig.json 2000 undefined Project: /user/username/projects/myproject/main/tsconfig.json WatchType: Config file +Info 13 [00:01:17.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/dependency 1 undefined Config: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Wild card directory +Info 14 [00:01:18.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/dependency 1 undefined Config: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Wild card directory +Info 15 [00:01:19.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/decls 1 undefined Project: /user/username/projects/myproject/main/tsconfig.json WatchType: Failed Lookup Locations +Info 16 [00:01:20.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/decls 1 undefined Project: /user/username/projects/myproject/main/tsconfig.json WatchType: Failed Lookup Locations +Info 17 [00:01:21.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/decls/fns.d.ts 500 undefined WatchType: Closed Script info +Info 18 [00:01:22.000] FileWatcher:: Added:: WatchInfo: /a/lib/lib.d.ts 500 undefined WatchType: Closed Script info +Info 19 [00:01:23.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/main/node_modules/@types 1 undefined Project: /user/username/projects/myproject/main/tsconfig.json WatchType: Type roots +Info 20 [00:01:24.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/main/node_modules/@types 1 undefined Project: /user/username/projects/myproject/main/tsconfig.json WatchType: Type roots +Info 21 [00:01:25.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/main/tsconfig.json WatchType: Type roots +Info 22 [00:01:26.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/main/tsconfig.json WatchType: Type roots +Info 23 [00:01:27.000] Finishing updateGraphWorker: Project: /user/username/projects/myproject/main/tsconfig.json Version: 1 structureChanged: true structureIsReused:: Not Elapsed:: *ms +Info 24 [00:01:28.000] Project '/user/username/projects/myproject/main/tsconfig.json' (Configured) +Info 25 [00:01:29.000] Files (3) /a/lib/lib.d.ts /user/username/projects/myproject/decls/fns.d.ts /user/username/projects/myproject/main/main.ts @@ -259,16 +259,16 @@ Info 25 [16:01:29.000] Files (3) main.ts Matched by default include pattern '**/*' -Info 26 [16:01:30.000] ----------------------------------------------- -Info 27 [16:01:31.000] Search path: /user/username/projects/myproject/main -Info 28 [16:01:32.000] For info: /user/username/projects/myproject/main/tsconfig.json :: No config files found. -Info 29 [16:01:33.000] Project '/user/username/projects/myproject/main/tsconfig.json' (Configured) -Info 29 [16:01:34.000] Files (3) +Info 26 [00:01:30.000] ----------------------------------------------- +Info 27 [00:01:31.000] Search path: /user/username/projects/myproject/main +Info 28 [00:01:32.000] For info: /user/username/projects/myproject/main/tsconfig.json :: No config files found. +Info 29 [00:01:33.000] Project '/user/username/projects/myproject/main/tsconfig.json' (Configured) +Info 29 [00:01:34.000] Files (3) -Info 29 [16:01:35.000] ----------------------------------------------- -Info 29 [16:01:36.000] Open files: -Info 29 [16:01:37.000] FileName: /user/username/projects/myproject/main/main.ts ProjectRootPath: undefined -Info 29 [16:01:38.000] Projects: /user/username/projects/myproject/main/tsconfig.json +Info 29 [00:01:35.000] ----------------------------------------------- +Info 29 [00:01:36.000] Open files: +Info 29 [00:01:37.000] FileName: /user/username/projects/myproject/main/main.ts ProjectRootPath: undefined +Info 29 [00:01:38.000] Projects: /user/username/projects/myproject/main/tsconfig.json After request PolledWatches:: @@ -295,11 +295,11 @@ FsWatchesRecursive:: /user/username/projects/myproject/decls: {} -Info 29 [16:01:39.000] response: +Info 29 [00:01:39.000] response: { "responseRequired": false } -Info 30 [16:01:40.000] request: +Info 30 [00:01:40.000] request: { "seq": 0, "type": "request", @@ -334,18 +334,18 @@ FsWatchesRecursive:: /user/username/projects/myproject/decls: {} -Info 31 [16:01:41.000] Search path: /user/username/projects/myproject/dependency -Info 32 [16:01:42.000] For info: /user/username/projects/myproject/dependency/FnS.ts :: Config file name: /user/username/projects/myproject/dependency/tsconfig.json -Info 33 [16:01:43.000] Creating configuration project /user/username/projects/myproject/dependency/tsconfig.json -Info 34 [16:01:44.000] Plugins were requested but not running in environment that supports 'require'. Nothing will be loaded -Info 35 [16:01:45.000] Starting updateGraphWorker: Project: /user/username/projects/myproject/dependency/tsconfig.json -Info 36 [16:01:46.000] 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 37 [16:01:47.000] 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 38 [16:01:48.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Type roots -Info 39 [16:01:49.000] 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 40 [16:01:50.000] Finishing updateGraphWorker: Project: /user/username/projects/myproject/dependency/tsconfig.json Version: 1 structureChanged: true structureIsReused:: Not Elapsed:: *ms -Info 41 [16:01:51.000] Project '/user/username/projects/myproject/dependency/tsconfig.json' (Configured) -Info 42 [16:01:52.000] Files (2) +Info 31 [00:01:41.000] Search path: /user/username/projects/myproject/dependency +Info 32 [00:01:42.000] For info: /user/username/projects/myproject/dependency/FnS.ts :: Config file name: /user/username/projects/myproject/dependency/tsconfig.json +Info 33 [00:01:43.000] Creating configuration project /user/username/projects/myproject/dependency/tsconfig.json +Info 34 [00:01:44.000] Plugins were requested but not running in environment that supports 'require'. Nothing will be loaded +Info 35 [00:01:45.000] Starting updateGraphWorker: Project: /user/username/projects/myproject/dependency/tsconfig.json +Info 36 [00:01:46.000] 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 37 [00:01:47.000] 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 38 [00:01:48.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Type roots +Info 39 [00:01:49.000] 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 40 [00:01:50.000] Finishing updateGraphWorker: Project: /user/username/projects/myproject/dependency/tsconfig.json Version: 1 structureChanged: true structureIsReused:: Not Elapsed:: *ms +Info 41 [00:01:51.000] Project '/user/username/projects/myproject/dependency/tsconfig.json' (Configured) +Info 42 [00:01:52.000] Files (2) /a/lib/lib.d.ts /user/username/projects/myproject/dependency/FnS.ts @@ -355,22 +355,22 @@ Info 42 [16:01:52.000] Files (2) FnS.ts Matched by default include pattern '**/*' -Info 43 [16:01:53.000] ----------------------------------------------- -Info 44 [16:01:54.000] Search path: /user/username/projects/myproject/dependency -Info 45 [16:01:55.000] For info: /user/username/projects/myproject/dependency/tsconfig.json :: No config files found. -Info 46 [16:01:56.000] Project '/user/username/projects/myproject/main/tsconfig.json' (Configured) -Info 46 [16:01:57.000] Files (3) - -Info 46 [16:01:58.000] ----------------------------------------------- -Info 46 [16:01:59.000] Project '/user/username/projects/myproject/dependency/tsconfig.json' (Configured) -Info 46 [16:02:00.000] Files (2) - -Info 46 [16:02:01.000] ----------------------------------------------- -Info 46 [16:02:02.000] Open files: -Info 46 [16:02:03.000] FileName: /user/username/projects/myproject/main/main.ts ProjectRootPath: undefined -Info 46 [16:02:04.000] Projects: /user/username/projects/myproject/main/tsconfig.json -Info 46 [16:02:05.000] FileName: /user/username/projects/myproject/dependency/FnS.ts ProjectRootPath: undefined -Info 46 [16:02:06.000] Projects: /user/username/projects/myproject/dependency/tsconfig.json +Info 43 [00:01:53.000] ----------------------------------------------- +Info 44 [00:01:54.000] Search path: /user/username/projects/myproject/dependency +Info 45 [00:01:55.000] For info: /user/username/projects/myproject/dependency/tsconfig.json :: No config files found. +Info 46 [00:01:56.000] Project '/user/username/projects/myproject/main/tsconfig.json' (Configured) +Info 46 [00:01:57.000] Files (3) + +Info 46 [00:01:58.000] ----------------------------------------------- +Info 46 [00:01:59.000] Project '/user/username/projects/myproject/dependency/tsconfig.json' (Configured) +Info 46 [00:02:00.000] Files (2) + +Info 46 [00:02:01.000] ----------------------------------------------- +Info 46 [00:02:02.000] Open files: +Info 46 [00:02:03.000] FileName: /user/username/projects/myproject/main/main.ts ProjectRootPath: undefined +Info 46 [00:02:04.000] Projects: /user/username/projects/myproject/main/tsconfig.json +Info 46 [00:02:05.000] FileName: /user/username/projects/myproject/dependency/FnS.ts ProjectRootPath: undefined +Info 46 [00:02:06.000] Projects: /user/username/projects/myproject/dependency/tsconfig.json After request PolledWatches:: @@ -399,11 +399,11 @@ FsWatchesRecursive:: /user/username/projects/myproject/decls: {} -Info 46 [16:02:07.000] response: +Info 46 [00:02:07.000] response: { "responseRequired": false } -Info 47 [16:02:08.000] request: +Info 47 [00:02:08.000] request: { "seq": 0, "type": "request", @@ -440,11 +440,11 @@ FsWatchesRecursive:: /user/username/projects/myproject/decls: {} -Info 48 [16:02:09.000] Search path: /user/username/projects/myproject/random -Info 49 [16:02:10.000] For info: /user/username/projects/myproject/random/random.ts :: Config file name: /user/username/projects/myproject/random/tsconfig.json -Info 50 [16:02:11.000] Creating configuration project /user/username/projects/myproject/random/tsconfig.json -Info 51 [16:02:12.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/random/tsconfig.json 2000 undefined Project: /user/username/projects/myproject/random/tsconfig.json WatchType: Config file -Info 52 [16:02:13.000] Config: /user/username/projects/myproject/random/tsconfig.json : { +Info 48 [00:02:09.000] Search path: /user/username/projects/myproject/random +Info 49 [00:02:10.000] For info: /user/username/projects/myproject/random/random.ts :: Config file name: /user/username/projects/myproject/random/tsconfig.json +Info 50 [00:02:11.000] Creating configuration project /user/username/projects/myproject/random/tsconfig.json +Info 51 [00:02:12.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/random/tsconfig.json 2000 undefined Project: /user/username/projects/myproject/random/tsconfig.json WatchType: Config file +Info 52 [00:02:13.000] Config: /user/username/projects/myproject/random/tsconfig.json : { "rootNames": [ "/user/username/projects/myproject/random/random.ts" ], @@ -452,17 +452,17 @@ Info 52 [16:02:13.000] Config: /user/username/projects/myproject/random/tsconf "configFilePath": "/user/username/projects/myproject/random/tsconfig.json" } } -Info 53 [16:02:14.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/random 1 undefined Config: /user/username/projects/myproject/random/tsconfig.json WatchType: Wild card directory -Info 54 [16:02:15.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/random 1 undefined Config: /user/username/projects/myproject/random/tsconfig.json WatchType: Wild card directory -Info 55 [16:02:16.000] Plugins were requested but not running in environment that supports 'require'. Nothing will be loaded -Info 56 [16:02:17.000] Starting updateGraphWorker: Project: /user/username/projects/myproject/random/tsconfig.json -Info 57 [16:02:18.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/random/node_modules/@types 1 undefined Project: /user/username/projects/myproject/random/tsconfig.json WatchType: Type roots -Info 58 [16:02:19.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/random/node_modules/@types 1 undefined Project: /user/username/projects/myproject/random/tsconfig.json WatchType: Type roots -Info 59 [16:02:20.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/random/tsconfig.json WatchType: Type roots -Info 60 [16:02:21.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/random/tsconfig.json WatchType: Type roots -Info 61 [16:02:22.000] Finishing updateGraphWorker: Project: /user/username/projects/myproject/random/tsconfig.json Version: 1 structureChanged: true structureIsReused:: Not Elapsed:: *ms -Info 62 [16:02:23.000] Project '/user/username/projects/myproject/random/tsconfig.json' (Configured) -Info 63 [16:02:24.000] Files (2) +Info 53 [00:02:14.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/random 1 undefined Config: /user/username/projects/myproject/random/tsconfig.json WatchType: Wild card directory +Info 54 [00:02:15.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/random 1 undefined Config: /user/username/projects/myproject/random/tsconfig.json WatchType: Wild card directory +Info 55 [00:02:16.000] Plugins were requested but not running in environment that supports 'require'. Nothing will be loaded +Info 56 [00:02:17.000] Starting updateGraphWorker: Project: /user/username/projects/myproject/random/tsconfig.json +Info 57 [00:02:18.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/random/node_modules/@types 1 undefined Project: /user/username/projects/myproject/random/tsconfig.json WatchType: Type roots +Info 58 [00:02:19.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/random/node_modules/@types 1 undefined Project: /user/username/projects/myproject/random/tsconfig.json WatchType: Type roots +Info 59 [00:02:20.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/random/tsconfig.json WatchType: Type roots +Info 60 [00:02:21.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/random/tsconfig.json WatchType: Type roots +Info 61 [00:02:22.000] Finishing updateGraphWorker: Project: /user/username/projects/myproject/random/tsconfig.json Version: 1 structureChanged: true structureIsReused:: Not Elapsed:: *ms +Info 62 [00:02:23.000] Project '/user/username/projects/myproject/random/tsconfig.json' (Configured) +Info 63 [00:02:24.000] Files (2) /a/lib/lib.d.ts /user/username/projects/myproject/random/random.ts @@ -472,26 +472,26 @@ Info 63 [16:02:24.000] Files (2) random.ts Matched by default include pattern '**/*' -Info 64 [16:02:25.000] ----------------------------------------------- -Info 65 [16:02:26.000] Project '/user/username/projects/myproject/main/tsconfig.json' (Configured) -Info 65 [16:02:27.000] Files (3) - -Info 65 [16:02:28.000] ----------------------------------------------- -Info 65 [16:02:29.000] Project '/user/username/projects/myproject/dependency/tsconfig.json' (Configured) -Info 65 [16:02:30.000] Files (2) - -Info 65 [16:02:31.000] ----------------------------------------------- -Info 65 [16:02:32.000] Project '/user/username/projects/myproject/random/tsconfig.json' (Configured) -Info 65 [16:02:33.000] Files (2) - -Info 65 [16:02:34.000] ----------------------------------------------- -Info 65 [16:02:35.000] Open files: -Info 65 [16:02:36.000] FileName: /user/username/projects/myproject/main/main.ts ProjectRootPath: undefined -Info 65 [16:02:37.000] Projects: /user/username/projects/myproject/main/tsconfig.json -Info 65 [16:02:38.000] FileName: /user/username/projects/myproject/dependency/FnS.ts ProjectRootPath: undefined -Info 65 [16:02:39.000] Projects: /user/username/projects/myproject/dependency/tsconfig.json -Info 65 [16:02:40.000] FileName: /user/username/projects/myproject/random/random.ts ProjectRootPath: undefined -Info 65 [16:02:41.000] Projects: /user/username/projects/myproject/random/tsconfig.json +Info 64 [00:02:25.000] ----------------------------------------------- +Info 65 [00:02:26.000] Project '/user/username/projects/myproject/main/tsconfig.json' (Configured) +Info 65 [00:02:27.000] Files (3) + +Info 65 [00:02:28.000] ----------------------------------------------- +Info 65 [00:02:29.000] Project '/user/username/projects/myproject/dependency/tsconfig.json' (Configured) +Info 65 [00:02:30.000] Files (2) + +Info 65 [00:02:31.000] ----------------------------------------------- +Info 65 [00:02:32.000] Project '/user/username/projects/myproject/random/tsconfig.json' (Configured) +Info 65 [00:02:33.000] Files (2) + +Info 65 [00:02:34.000] ----------------------------------------------- +Info 65 [00:02:35.000] Open files: +Info 65 [00:02:36.000] FileName: /user/username/projects/myproject/main/main.ts ProjectRootPath: undefined +Info 65 [00:02:37.000] Projects: /user/username/projects/myproject/main/tsconfig.json +Info 65 [00:02:38.000] FileName: /user/username/projects/myproject/dependency/FnS.ts ProjectRootPath: undefined +Info 65 [00:02:39.000] Projects: /user/username/projects/myproject/dependency/tsconfig.json +Info 65 [00:02:40.000] FileName: /user/username/projects/myproject/random/random.ts ProjectRootPath: undefined +Info 65 [00:02:41.000] Projects: /user/username/projects/myproject/random/tsconfig.json After request PolledWatches:: @@ -526,11 +526,11 @@ FsWatchesRecursive:: /user/username/projects/myproject/random: {} -Info 65 [16:02:42.000] response: +Info 65 [00:02:42.000] response: { "responseRequired": false } -Info 66 [16:02:43.000] request: +Info 66 [00:02:43.000] request: { "command": "definitionAndBoundSpan", "arguments": { @@ -575,7 +575,7 @@ FsWatchesRecursive:: /user/username/projects/myproject/random: {} -Info 67 [16:02:44.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/decls/FnS.d.ts.map 2000 undefined WatchType: Missing source map file +Info 67 [00:02:44.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/decls/FnS.d.ts.map 2000 undefined WatchType: Missing source map file After request PolledWatches:: @@ -612,7 +612,7 @@ FsWatchesRecursive:: /user/username/projects/myproject/random: {} -Info 68 [16:02:45.000] response: +Info 68 [00:02:45.000] response: { "response": { "definitions": [ @@ -649,7 +649,7 @@ Info 68 [16:02:45.000] response: }, "responseRequired": true } -Info 69 [16:02:46.000] request: +Info 69 [00:02:46.000] request: { "command": "definitionAndBoundSpan", "arguments": { @@ -732,7 +732,7 @@ FsWatchesRecursive:: /user/username/projects/myproject/random: {} -Info 70 [16:02:47.000] response: +Info 70 [00:02:47.000] response: { "response": { "definitions": [ @@ -769,7 +769,7 @@ Info 70 [16:02:47.000] response: }, "responseRequired": true } -Info 71 [16:02:48.000] request: +Info 71 [00:02:48.000] request: { "command": "definitionAndBoundSpan", "arguments": { @@ -852,7 +852,7 @@ FsWatchesRecursive:: /user/username/projects/myproject/random: {} -Info 72 [16:02:49.000] response: +Info 72 [00:02:49.000] response: { "response": { "definitions": [ @@ -889,7 +889,7 @@ Info 72 [16:02:49.000] response: }, "responseRequired": true } -Info 73 [16:02:50.000] request: +Info 73 [00:02:50.000] request: { "command": "definitionAndBoundSpan", "arguments": { @@ -972,7 +972,7 @@ FsWatchesRecursive:: /user/username/projects/myproject/random: {} -Info 74 [16:02:51.000] response: +Info 74 [00:02:51.000] response: { "response": { "definitions": [ @@ -1009,7 +1009,7 @@ Info 74 [16:02:51.000] response: }, "responseRequired": true } -Info 75 [16:02:52.000] request: +Info 75 [00:02:52.000] request: { "command": "definitionAndBoundSpan", "arguments": { @@ -1092,7 +1092,7 @@ FsWatchesRecursive:: /user/username/projects/myproject/random: {} -Info 76 [16:02:53.000] response: +Info 76 [00:02:53.000] response: { "response": { "definitions": [ @@ -1129,7 +1129,7 @@ Info 76 [16:02:53.000] response: }, "responseRequired": true } -Info 77 [16:02:54.000] request: +Info 77 [00:02:54.000] request: { "command": "rename", "arguments": { @@ -1212,7 +1212,7 @@ FsWatchesRecursive:: /user/username/projects/myproject/random: {} -Info 78 [16:02:55.000] response: +Info 78 [00:02:55.000] response: { "response": { "info": { @@ -1260,7 +1260,7 @@ Info 78 [16:02:55.000] response: }, "responseRequired": true } -Info 79 [16:02:56.000] request: +Info 79 [00:02:56.000] request: { "command": "rename", "arguments": { @@ -1343,7 +1343,7 @@ FsWatchesRecursive:: /user/username/projects/myproject/random: {} -Info 80 [16:02:57.000] response: +Info 80 [00:02:57.000] response: { "response": { "info": { @@ -1391,7 +1391,7 @@ Info 80 [16:02:57.000] response: }, "responseRequired": true } -Info 81 [16:02:58.000] request: +Info 81 [00:02:58.000] request: { "command": "rename", "arguments": { @@ -1474,7 +1474,7 @@ FsWatchesRecursive:: /user/username/projects/myproject/random: {} -Info 82 [16:02:59.000] response: +Info 82 [00:02:59.000] response: { "response": { "info": { @@ -1522,7 +1522,7 @@ Info 82 [16:02:59.000] response: }, "responseRequired": true } -Info 83 [16:03:00.000] request: +Info 83 [00:03:00.000] request: { "command": "rename", "arguments": { @@ -1605,7 +1605,7 @@ FsWatchesRecursive:: /user/username/projects/myproject/random: {} -Info 84 [16:03:01.000] response: +Info 84 [00:03:01.000] response: { "response": { "info": { @@ -1653,7 +1653,7 @@ Info 84 [16:03:01.000] response: }, "responseRequired": true } -Info 85 [16:03:02.000] request: +Info 85 [00:03:02.000] request: { "command": "rename", "arguments": { @@ -1736,7 +1736,7 @@ FsWatchesRecursive:: /user/username/projects/myproject/random: {} -Info 86 [16:03:03.000] response: +Info 86 [00:03:03.000] response: { "response": { "info": { @@ -1784,7 +1784,7 @@ Info 86 [16:03:03.000] response: }, "responseRequired": true } -Info 87 [16:03:04.000] request: +Info 87 [00:03:04.000] request: { "seq": 0, "type": "request", @@ -1829,24 +1829,24 @@ FsWatchesRecursive:: /user/username/projects/myproject/random: {} -Info 88 [16:03:05.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/random/random.ts 500 undefined WatchType: Closed Script info -Info 89 [16:03:06.000] Project '/user/username/projects/myproject/main/tsconfig.json' (Configured) -Info 89 [16:03:07.000] Files (3) +Info 88 [00:03:05.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/random/random.ts 500 undefined WatchType: Closed Script info +Info 89 [00:03:06.000] Project '/user/username/projects/myproject/main/tsconfig.json' (Configured) +Info 89 [00:03:07.000] Files (3) -Info 89 [16:03:08.000] ----------------------------------------------- -Info 89 [16:03:09.000] Project '/user/username/projects/myproject/dependency/tsconfig.json' (Configured) -Info 89 [16:03:10.000] Files (2) +Info 89 [00:03:08.000] ----------------------------------------------- +Info 89 [00:03:09.000] Project '/user/username/projects/myproject/dependency/tsconfig.json' (Configured) +Info 89 [00:03:10.000] Files (2) -Info 89 [16:03:11.000] ----------------------------------------------- -Info 89 [16:03:12.000] Project '/user/username/projects/myproject/random/tsconfig.json' (Configured) -Info 89 [16:03:13.000] Files (2) +Info 89 [00:03:11.000] ----------------------------------------------- +Info 89 [00:03:12.000] Project '/user/username/projects/myproject/random/tsconfig.json' (Configured) +Info 89 [00:03:13.000] Files (2) -Info 89 [16:03:14.000] ----------------------------------------------- -Info 89 [16:03:15.000] Open files: -Info 89 [16:03:16.000] FileName: /user/username/projects/myproject/main/main.ts ProjectRootPath: undefined -Info 89 [16:03:17.000] Projects: /user/username/projects/myproject/main/tsconfig.json -Info 89 [16:03:18.000] FileName: /user/username/projects/myproject/dependency/FnS.ts ProjectRootPath: undefined -Info 89 [16:03:19.000] Projects: /user/username/projects/myproject/dependency/tsconfig.json +Info 89 [00:03:14.000] ----------------------------------------------- +Info 89 [00:03:15.000] Open files: +Info 89 [00:03:16.000] FileName: /user/username/projects/myproject/main/main.ts ProjectRootPath: undefined +Info 89 [00:03:17.000] Projects: /user/username/projects/myproject/main/tsconfig.json +Info 89 [00:03:18.000] FileName: /user/username/projects/myproject/dependency/FnS.ts ProjectRootPath: undefined +Info 89 [00:03:19.000] Projects: /user/username/projects/myproject/dependency/tsconfig.json After request PolledWatches:: @@ -1885,11 +1885,11 @@ FsWatchesRecursive:: /user/username/projects/myproject/random: {} -Info 89 [16:03:20.000] response: +Info 89 [00:03:20.000] response: { "responseRequired": false } -Info 90 [16:03:21.000] request: +Info 90 [00:03:21.000] request: { "seq": 0, "type": "request", @@ -1936,28 +1936,28 @@ FsWatchesRecursive:: /user/username/projects/myproject/random: {} -Info 91 [16:03:22.000] FileWatcher:: Close:: WatchInfo: /user/username/projects/myproject/random/random.ts 500 undefined WatchType: Closed Script info -Info 92 [16:03:23.000] Search path: /user/username/projects/myproject/random -Info 93 [16:03:24.000] For info: /user/username/projects/myproject/random/random.ts :: Config file name: /user/username/projects/myproject/random/tsconfig.json -Info 94 [16:03:25.000] Project '/user/username/projects/myproject/main/tsconfig.json' (Configured) -Info 94 [16:03:26.000] Files (3) - -Info 94 [16:03:27.000] ----------------------------------------------- -Info 94 [16:03:28.000] Project '/user/username/projects/myproject/dependency/tsconfig.json' (Configured) -Info 94 [16:03:29.000] Files (2) - -Info 94 [16:03:30.000] ----------------------------------------------- -Info 94 [16:03:31.000] Project '/user/username/projects/myproject/random/tsconfig.json' (Configured) -Info 94 [16:03:32.000] Files (2) - -Info 94 [16:03:33.000] ----------------------------------------------- -Info 94 [16:03:34.000] Open files: -Info 94 [16:03:35.000] FileName: /user/username/projects/myproject/main/main.ts ProjectRootPath: undefined -Info 94 [16:03:36.000] Projects: /user/username/projects/myproject/main/tsconfig.json -Info 94 [16:03:37.000] FileName: /user/username/projects/myproject/dependency/FnS.ts ProjectRootPath: undefined -Info 94 [16:03:38.000] Projects: /user/username/projects/myproject/dependency/tsconfig.json -Info 94 [16:03:39.000] FileName: /user/username/projects/myproject/random/random.ts ProjectRootPath: undefined -Info 94 [16:03:40.000] Projects: /user/username/projects/myproject/random/tsconfig.json +Info 91 [00:03:22.000] FileWatcher:: Close:: WatchInfo: /user/username/projects/myproject/random/random.ts 500 undefined WatchType: Closed Script info +Info 92 [00:03:23.000] Search path: /user/username/projects/myproject/random +Info 93 [00:03:24.000] For info: /user/username/projects/myproject/random/random.ts :: Config file name: /user/username/projects/myproject/random/tsconfig.json +Info 94 [00:03:25.000] Project '/user/username/projects/myproject/main/tsconfig.json' (Configured) +Info 94 [00:03:26.000] Files (3) + +Info 94 [00:03:27.000] ----------------------------------------------- +Info 94 [00:03:28.000] Project '/user/username/projects/myproject/dependency/tsconfig.json' (Configured) +Info 94 [00:03:29.000] Files (2) + +Info 94 [00:03:30.000] ----------------------------------------------- +Info 94 [00:03:31.000] Project '/user/username/projects/myproject/random/tsconfig.json' (Configured) +Info 94 [00:03:32.000] Files (2) + +Info 94 [00:03:33.000] ----------------------------------------------- +Info 94 [00:03:34.000] Open files: +Info 94 [00:03:35.000] FileName: /user/username/projects/myproject/main/main.ts ProjectRootPath: undefined +Info 94 [00:03:36.000] Projects: /user/username/projects/myproject/main/tsconfig.json +Info 94 [00:03:37.000] FileName: /user/username/projects/myproject/dependency/FnS.ts ProjectRootPath: undefined +Info 94 [00:03:38.000] Projects: /user/username/projects/myproject/dependency/tsconfig.json +Info 94 [00:03:39.000] FileName: /user/username/projects/myproject/random/random.ts ProjectRootPath: undefined +Info 94 [00:03:40.000] Projects: /user/username/projects/myproject/random/tsconfig.json After request PolledWatches:: @@ -1994,11 +1994,11 @@ FsWatchesRecursive:: /user/username/projects/myproject/random: {} -Info 94 [16:03:41.000] response: +Info 94 [00:03:41.000] response: { "responseRequired": false } -Info 95 [16:03:42.000] request: +Info 95 [00:03:42.000] request: { "seq": 0, "type": "request", @@ -2043,24 +2043,24 @@ FsWatchesRecursive:: /user/username/projects/myproject/random: {} -Info 96 [16:03:43.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/main/main.ts 500 undefined WatchType: Closed Script info -Info 97 [16:03:44.000] Project '/user/username/projects/myproject/main/tsconfig.json' (Configured) -Info 97 [16:03:45.000] Files (3) +Info 96 [00:03:43.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/main/main.ts 500 undefined WatchType: Closed Script info +Info 97 [00:03:44.000] Project '/user/username/projects/myproject/main/tsconfig.json' (Configured) +Info 97 [00:03:45.000] Files (3) -Info 97 [16:03:46.000] ----------------------------------------------- -Info 97 [16:03:47.000] Project '/user/username/projects/myproject/dependency/tsconfig.json' (Configured) -Info 97 [16:03:48.000] Files (2) +Info 97 [00:03:46.000] ----------------------------------------------- +Info 97 [00:03:47.000] Project '/user/username/projects/myproject/dependency/tsconfig.json' (Configured) +Info 97 [00:03:48.000] Files (2) -Info 97 [16:03:49.000] ----------------------------------------------- -Info 97 [16:03:50.000] Project '/user/username/projects/myproject/random/tsconfig.json' (Configured) -Info 97 [16:03:51.000] Files (2) +Info 97 [00:03:49.000] ----------------------------------------------- +Info 97 [00:03:50.000] Project '/user/username/projects/myproject/random/tsconfig.json' (Configured) +Info 97 [00:03:51.000] Files (2) -Info 97 [16:03:52.000] ----------------------------------------------- -Info 97 [16:03:53.000] Open files: -Info 97 [16:03:54.000] FileName: /user/username/projects/myproject/dependency/FnS.ts ProjectRootPath: undefined -Info 97 [16:03:55.000] Projects: /user/username/projects/myproject/dependency/tsconfig.json -Info 97 [16:03:56.000] FileName: /user/username/projects/myproject/random/random.ts ProjectRootPath: undefined -Info 97 [16:03:57.000] Projects: /user/username/projects/myproject/random/tsconfig.json +Info 97 [00:03:52.000] ----------------------------------------------- +Info 97 [00:03:53.000] Open files: +Info 97 [00:03:54.000] FileName: /user/username/projects/myproject/dependency/FnS.ts ProjectRootPath: undefined +Info 97 [00:03:55.000] Projects: /user/username/projects/myproject/dependency/tsconfig.json +Info 97 [00:03:56.000] FileName: /user/username/projects/myproject/random/random.ts ProjectRootPath: undefined +Info 97 [00:03:57.000] Projects: /user/username/projects/myproject/random/tsconfig.json After request PolledWatches:: @@ -2099,11 +2099,11 @@ FsWatchesRecursive:: /user/username/projects/myproject/random: {} -Info 97 [16:03:58.000] response: +Info 97 [00:03:58.000] response: { "responseRequired": false } -Info 98 [16:03:59.000] request: +Info 98 [00:03:59.000] request: { "seq": 0, "type": "request", @@ -2150,22 +2150,22 @@ FsWatchesRecursive:: /user/username/projects/myproject/random: {} -Info 99 [16:04:00.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/dependency/FnS.ts 500 undefined WatchType: Closed Script info -Info 100 [16:04:01.000] Project '/user/username/projects/myproject/main/tsconfig.json' (Configured) -Info 100 [16:04:02.000] Files (3) +Info 99 [00:04:00.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/dependency/FnS.ts 500 undefined WatchType: Closed Script info +Info 100 [00:04:01.000] Project '/user/username/projects/myproject/main/tsconfig.json' (Configured) +Info 100 [00:04:02.000] Files (3) -Info 100 [16:04:03.000] ----------------------------------------------- -Info 100 [16:04:04.000] Project '/user/username/projects/myproject/dependency/tsconfig.json' (Configured) -Info 100 [16:04:05.000] Files (2) +Info 100 [00:04:03.000] ----------------------------------------------- +Info 100 [00:04:04.000] Project '/user/username/projects/myproject/dependency/tsconfig.json' (Configured) +Info 100 [00:04:05.000] Files (2) -Info 100 [16:04:06.000] ----------------------------------------------- -Info 100 [16:04:07.000] Project '/user/username/projects/myproject/random/tsconfig.json' (Configured) -Info 100 [16:04:08.000] Files (2) +Info 100 [00:04:06.000] ----------------------------------------------- +Info 100 [00:04:07.000] Project '/user/username/projects/myproject/random/tsconfig.json' (Configured) +Info 100 [00:04:08.000] Files (2) -Info 100 [16:04:09.000] ----------------------------------------------- -Info 100 [16:04:10.000] Open files: -Info 100 [16:04:11.000] FileName: /user/username/projects/myproject/random/random.ts ProjectRootPath: undefined -Info 100 [16:04:12.000] Projects: /user/username/projects/myproject/random/tsconfig.json +Info 100 [00:04:09.000] ----------------------------------------------- +Info 100 [00:04:10.000] Open files: +Info 100 [00:04:11.000] FileName: /user/username/projects/myproject/random/random.ts ProjectRootPath: undefined +Info 100 [00:04:12.000] Projects: /user/username/projects/myproject/random/tsconfig.json After request PolledWatches:: @@ -2206,11 +2206,11 @@ FsWatchesRecursive:: /user/username/projects/myproject/random: {} -Info 100 [16:04:13.000] response: +Info 100 [00:04:13.000] response: { "responseRequired": false } -Info 101 [16:04:14.000] request: +Info 101 [00:04:14.000] request: { "seq": 0, "type": "request", @@ -2259,20 +2259,20 @@ FsWatchesRecursive:: /user/username/projects/myproject/random: {} -Info 102 [16:04:15.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/random/random.ts 500 undefined WatchType: Closed Script info -Info 103 [16:04:16.000] Project '/user/username/projects/myproject/main/tsconfig.json' (Configured) -Info 103 [16:04:17.000] Files (3) +Info 102 [00:04:15.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/random/random.ts 500 undefined WatchType: Closed Script info +Info 103 [00:04:16.000] Project '/user/username/projects/myproject/main/tsconfig.json' (Configured) +Info 103 [00:04:17.000] Files (3) -Info 103 [16:04:18.000] ----------------------------------------------- -Info 103 [16:04:19.000] Project '/user/username/projects/myproject/dependency/tsconfig.json' (Configured) -Info 103 [16:04:20.000] Files (2) +Info 103 [00:04:18.000] ----------------------------------------------- +Info 103 [00:04:19.000] Project '/user/username/projects/myproject/dependency/tsconfig.json' (Configured) +Info 103 [00:04:20.000] Files (2) -Info 103 [16:04:21.000] ----------------------------------------------- -Info 103 [16:04:22.000] Project '/user/username/projects/myproject/random/tsconfig.json' (Configured) -Info 103 [16:04:23.000] Files (2) +Info 103 [00:04:21.000] ----------------------------------------------- +Info 103 [00:04:22.000] Project '/user/username/projects/myproject/random/tsconfig.json' (Configured) +Info 103 [00:04:23.000] Files (2) -Info 103 [16:04:24.000] ----------------------------------------------- -Info 103 [16:04:25.000] Open files: +Info 103 [00:04:24.000] ----------------------------------------------- +Info 103 [00:04:25.000] Open files: After request PolledWatches:: @@ -2315,11 +2315,11 @@ FsWatchesRecursive:: /user/username/projects/myproject/random: {} -Info 103 [16:04:26.000] response: +Info 103 [00:04:26.000] response: { "responseRequired": false } -Info 104 [16:04:27.000] request: +Info 104 [00:04:27.000] request: { "seq": 0, "type": "request", @@ -2370,12 +2370,12 @@ FsWatchesRecursive:: /user/username/projects/myproject/random: {} -Info 105 [16:04:28.000] FileWatcher:: Close:: WatchInfo: /user/username/projects/myproject/random/random.ts 500 undefined WatchType: Closed Script info -Info 106 [16:04:29.000] Search path: /user/username/projects/myproject/random -Info 107 [16:04:30.000] For info: /user/username/projects/myproject/random/random.ts :: Config file name: /user/username/projects/myproject/random/tsconfig.json -Info 108 [16:04:31.000] `remove Project:: -Info 109 [16:04:32.000] Project '/user/username/projects/myproject/main/tsconfig.json' (Configured) -Info 110 [16:04:33.000] Files (3) +Info 105 [00:04:28.000] FileWatcher:: Close:: WatchInfo: /user/username/projects/myproject/random/random.ts 500 undefined WatchType: Closed Script info +Info 106 [00:04:29.000] Search path: /user/username/projects/myproject/random +Info 107 [00:04:30.000] For info: /user/username/projects/myproject/random/random.ts :: Config file name: /user/username/projects/myproject/random/tsconfig.json +Info 108 [00:04:31.000] `remove Project:: +Info 109 [00:04:32.000] Project '/user/username/projects/myproject/main/tsconfig.json' (Configured) +Info 110 [00:04:33.000] Files (3) /a/lib/lib.d.ts /user/username/projects/myproject/decls/fns.d.ts /user/username/projects/myproject/main/main.ts @@ -2388,19 +2388,19 @@ Info 110 [16:04:33.000] Files (3) main.ts Matched by default include pattern '**/*' -Info 111 [16:04:34.000] ----------------------------------------------- -Info 112 [16:04:35.000] DirectoryWatcher:: Close:: WatchInfo: /user/username/projects/myproject/main 1 undefined Config: /user/username/projects/myproject/main/tsconfig.json WatchType: Wild card directory -Info 113 [16:04:36.000] 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 114 [16:04:37.000] FileWatcher:: Close:: WatchInfo: /user/username/projects/myproject/main/tsconfig.json 2000 undefined Project: /user/username/projects/myproject/main/tsconfig.json WatchType: Config file -Info 115 [16:04:38.000] DirectoryWatcher:: Close:: WatchInfo: /user/username/projects/myproject/decls 1 undefined Project: /user/username/projects/myproject/main/tsconfig.json WatchType: Failed Lookup Locations -Info 116 [16:04:39.000] 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 117 [16:04:40.000] 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 118 [16:04:41.000] 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 119 [16:04:42.000] DirectoryWatcher:: Close:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/main/tsconfig.json WatchType: Type roots -Info 120 [16:04:43.000] 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 121 [16:04:44.000] `remove Project:: -Info 122 [16:04:45.000] Project '/user/username/projects/myproject/dependency/tsconfig.json' (Configured) -Info 123 [16:04:46.000] Files (2) +Info 111 [00:04:34.000] ----------------------------------------------- +Info 112 [00:04:35.000] DirectoryWatcher:: Close:: WatchInfo: /user/username/projects/myproject/main 1 undefined Config: /user/username/projects/myproject/main/tsconfig.json WatchType: Wild card directory +Info 113 [00:04:36.000] 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 114 [00:04:37.000] FileWatcher:: Close:: WatchInfo: /user/username/projects/myproject/main/tsconfig.json 2000 undefined Project: /user/username/projects/myproject/main/tsconfig.json WatchType: Config file +Info 115 [00:04:38.000] DirectoryWatcher:: Close:: WatchInfo: /user/username/projects/myproject/decls 1 undefined Project: /user/username/projects/myproject/main/tsconfig.json WatchType: Failed Lookup Locations +Info 116 [00:04:39.000] 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 117 [00:04:40.000] 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 118 [00:04:41.000] 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 119 [00:04:42.000] DirectoryWatcher:: Close:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/main/tsconfig.json WatchType: Type roots +Info 120 [00:04:43.000] 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 121 [00:04:44.000] `remove Project:: +Info 122 [00:04:45.000] Project '/user/username/projects/myproject/dependency/tsconfig.json' (Configured) +Info 123 [00:04:46.000] Files (2) /a/lib/lib.d.ts /user/username/projects/myproject/dependency/FnS.ts @@ -2410,25 +2410,25 @@ Info 123 [16:04:46.000] Files (2) FnS.ts Matched by default include pattern '**/*' -Info 124 [16:04:47.000] ----------------------------------------------- -Info 125 [16:04:48.000] DirectoryWatcher:: Close:: WatchInfo: /user/username/projects/myproject/dependency 1 undefined Config: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Wild card directory -Info 126 [16:04:49.000] 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 127 [16:04:50.000] FileWatcher:: Close:: WatchInfo: /user/username/projects/myproject/dependency/tsconfig.json 2000 undefined Project: /user/username/projects/myproject/main/tsconfig.json WatchType: Config file -Info 128 [16:04:51.000] 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 129 [16:04:52.000] 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 130 [16:04:53.000] DirectoryWatcher:: Close:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Type roots -Info 131 [16:04:54.000] 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 132 [16:04:55.000] FileWatcher:: Close:: WatchInfo: /user/username/projects/myproject/main/main.ts 500 undefined WatchType: Closed Script info -Info 133 [16:04:56.000] FileWatcher:: Close:: WatchInfo: /user/username/projects/myproject/decls/fns.d.ts 500 undefined WatchType: Closed Script info -Info 134 [16:04:57.000] FileWatcher:: Close:: WatchInfo: /user/username/projects/myproject/decls/FnS.d.ts.map 2000 undefined WatchType: Missing source map file -Info 135 [16:04:58.000] FileWatcher:: Close:: WatchInfo: /user/username/projects/myproject/dependency/FnS.ts 500 undefined WatchType: Closed Script info -Info 136 [16:04:59.000] Project '/user/username/projects/myproject/random/tsconfig.json' (Configured) -Info 136 [16:05:00.000] Files (2) - -Info 136 [16:05:01.000] ----------------------------------------------- -Info 136 [16:05:02.000] Open files: -Info 136 [16:05:03.000] FileName: /user/username/projects/myproject/random/random.ts ProjectRootPath: undefined -Info 136 [16:05:04.000] Projects: /user/username/projects/myproject/random/tsconfig.json +Info 124 [00:04:47.000] ----------------------------------------------- +Info 125 [00:04:48.000] DirectoryWatcher:: Close:: WatchInfo: /user/username/projects/myproject/dependency 1 undefined Config: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Wild card directory +Info 126 [00:04:49.000] 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 127 [00:04:50.000] FileWatcher:: Close:: WatchInfo: /user/username/projects/myproject/dependency/tsconfig.json 2000 undefined Project: /user/username/projects/myproject/main/tsconfig.json WatchType: Config file +Info 128 [00:04:51.000] 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 129 [00:04:52.000] 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 130 [00:04:53.000] DirectoryWatcher:: Close:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Type roots +Info 131 [00:04:54.000] 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 132 [00:04:55.000] FileWatcher:: Close:: WatchInfo: /user/username/projects/myproject/main/main.ts 500 undefined WatchType: Closed Script info +Info 133 [00:04:56.000] FileWatcher:: Close:: WatchInfo: /user/username/projects/myproject/decls/fns.d.ts 500 undefined WatchType: Closed Script info +Info 134 [00:04:57.000] FileWatcher:: Close:: WatchInfo: /user/username/projects/myproject/decls/FnS.d.ts.map 2000 undefined WatchType: Missing source map file +Info 135 [00:04:58.000] FileWatcher:: Close:: WatchInfo: /user/username/projects/myproject/dependency/FnS.ts 500 undefined WatchType: Closed Script info +Info 136 [00:04:59.000] Project '/user/username/projects/myproject/random/tsconfig.json' (Configured) +Info 136 [00:05:00.000] Files (2) + +Info 136 [00:05:01.000] ----------------------------------------------- +Info 136 [00:05:02.000] Open files: +Info 136 [00:05:03.000] FileName: /user/username/projects/myproject/random/random.ts ProjectRootPath: undefined +Info 136 [00:05:04.000] Projects: /user/username/projects/myproject/random/tsconfig.json After request PolledWatches:: @@ -2447,7 +2447,7 @@ FsWatchesRecursive:: /user/username/projects/myproject/random: {} -Info 136 [16:05:05.000] response: +Info 136 [00:05:05.000] response: { "responseRequired": false } \ No newline at end of file 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 c4aee4c2e1dee..5b23d62e94369 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 @@ -1,5 +1,5 @@ -Info 0 [16:01:03.000] Provided types map file "/a/lib/typesMap.json" doesn't exist -Info 1 [16:01:04.000] request: +Info 0 [00:01:03.000] Provided types map file "/a/lib/typesMap.json" doesn't exist +Info 1 [00:01:04.000] request: { "seq": 0, "type": "request", @@ -200,11 +200,11 @@ FsWatches:: FsWatchesRecursive:: -Info 2 [16:01:05.000] Search path: /user/username/projects/myproject/main -Info 3 [16:01:06.000] For info: /user/username/projects/myproject/main/main.ts :: Config file name: /user/username/projects/myproject/main/tsconfig.json -Info 4 [16:01:07.000] Creating configuration project /user/username/projects/myproject/main/tsconfig.json -Info 5 [16:01:08.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/main/tsconfig.json 2000 undefined Project: /user/username/projects/myproject/main/tsconfig.json WatchType: Config file -Info 6 [16:01:09.000] Config: /user/username/projects/myproject/main/tsconfig.json : { +Info 2 [00:01:05.000] Search path: /user/username/projects/myproject/main +Info 3 [00:01:06.000] For info: /user/username/projects/myproject/main/main.ts :: Config file name: /user/username/projects/myproject/main/tsconfig.json +Info 4 [00:01:07.000] Creating configuration project /user/username/projects/myproject/main/tsconfig.json +Info 5 [00:01:08.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/main/tsconfig.json 2000 undefined Project: /user/username/projects/myproject/main/tsconfig.json WatchType: Config file +Info 6 [00:01:09.000] Config: /user/username/projects/myproject/main/tsconfig.json : { "rootNames": [ "/user/username/projects/myproject/main/main.ts" ], @@ -221,11 +221,11 @@ Info 6 [16:01:09.000] Config: /user/username/projects/myproject/main/tsconfig } ] } -Info 7 [16:01:10.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/main 1 undefined Config: /user/username/projects/myproject/main/tsconfig.json WatchType: Wild card directory -Info 8 [16:01:11.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/main 1 undefined Config: /user/username/projects/myproject/main/tsconfig.json WatchType: Wild card directory -Info 9 [16:01:12.000] Plugins were requested but not running in environment that supports 'require'. Nothing will be loaded -Info 10 [16:01:13.000] Starting updateGraphWorker: Project: /user/username/projects/myproject/main/tsconfig.json -Info 11 [16:01:14.000] Config: /user/username/projects/myproject/dependency/tsconfig.json : { +Info 7 [00:01:10.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/main 1 undefined Config: /user/username/projects/myproject/main/tsconfig.json WatchType: Wild card directory +Info 8 [00:01:11.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/main 1 undefined Config: /user/username/projects/myproject/main/tsconfig.json WatchType: Wild card directory +Info 9 [00:01:12.000] Plugins were requested but not running in environment that supports 'require'. Nothing will be loaded +Info 10 [00:01:13.000] Starting updateGraphWorker: Project: /user/username/projects/myproject/main/tsconfig.json +Info 11 [00:01:14.000] Config: /user/username/projects/myproject/dependency/tsconfig.json : { "rootNames": [ "/user/username/projects/myproject/dependency/FnS.ts" ], @@ -236,20 +236,20 @@ Info 11 [16:01:14.000] Config: /user/username/projects/myproject/dependency/ts "configFilePath": "/user/username/projects/myproject/dependency/tsconfig.json" } } -Info 12 [16:01:15.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/dependency/tsconfig.json 2000 undefined Project: /user/username/projects/myproject/main/tsconfig.json WatchType: Config file -Info 13 [16:01:16.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/dependency 1 undefined Config: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Wild card directory -Info 14 [16:01:17.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/dependency 1 undefined Config: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Wild card directory -Info 15 [16:01:18.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/decls 1 undefined Project: /user/username/projects/myproject/main/tsconfig.json WatchType: Failed Lookup Locations -Info 16 [16:01:19.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/decls 1 undefined Project: /user/username/projects/myproject/main/tsconfig.json WatchType: Failed Lookup Locations -Info 17 [16:01:20.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/decls/fns.d.ts 500 undefined WatchType: Closed Script info -Info 18 [16:01:21.000] FileWatcher:: Added:: WatchInfo: /a/lib/lib.d.ts 500 undefined WatchType: Closed Script info -Info 19 [16:01:22.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/main/node_modules/@types 1 undefined Project: /user/username/projects/myproject/main/tsconfig.json WatchType: Type roots -Info 20 [16:01:23.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/main/node_modules/@types 1 undefined Project: /user/username/projects/myproject/main/tsconfig.json WatchType: Type roots -Info 21 [16:01:24.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/main/tsconfig.json WatchType: Type roots -Info 22 [16:01:25.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/main/tsconfig.json WatchType: Type roots -Info 23 [16:01:26.000] Finishing updateGraphWorker: Project: /user/username/projects/myproject/main/tsconfig.json Version: 1 structureChanged: true structureIsReused:: Not Elapsed:: *ms -Info 24 [16:01:27.000] Project '/user/username/projects/myproject/main/tsconfig.json' (Configured) -Info 25 [16:01:28.000] Files (3) +Info 12 [00:01:15.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/dependency/tsconfig.json 2000 undefined Project: /user/username/projects/myproject/main/tsconfig.json WatchType: Config file +Info 13 [00:01:16.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/dependency 1 undefined Config: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Wild card directory +Info 14 [00:01:17.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/dependency 1 undefined Config: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Wild card directory +Info 15 [00:01:18.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/decls 1 undefined Project: /user/username/projects/myproject/main/tsconfig.json WatchType: Failed Lookup Locations +Info 16 [00:01:19.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/decls 1 undefined Project: /user/username/projects/myproject/main/tsconfig.json WatchType: Failed Lookup Locations +Info 17 [00:01:20.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/decls/fns.d.ts 500 undefined WatchType: Closed Script info +Info 18 [00:01:21.000] FileWatcher:: Added:: WatchInfo: /a/lib/lib.d.ts 500 undefined WatchType: Closed Script info +Info 19 [00:01:22.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/main/node_modules/@types 1 undefined Project: /user/username/projects/myproject/main/tsconfig.json WatchType: Type roots +Info 20 [00:01:23.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/main/node_modules/@types 1 undefined Project: /user/username/projects/myproject/main/tsconfig.json WatchType: Type roots +Info 21 [00:01:24.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/main/tsconfig.json WatchType: Type roots +Info 22 [00:01:25.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/main/tsconfig.json WatchType: Type roots +Info 23 [00:01:26.000] Finishing updateGraphWorker: Project: /user/username/projects/myproject/main/tsconfig.json Version: 1 structureChanged: true structureIsReused:: Not Elapsed:: *ms +Info 24 [00:01:27.000] Project '/user/username/projects/myproject/main/tsconfig.json' (Configured) +Info 25 [00:01:28.000] Files (3) /a/lib/lib.d.ts /user/username/projects/myproject/decls/fns.d.ts /user/username/projects/myproject/main/main.ts @@ -262,16 +262,16 @@ Info 25 [16:01:28.000] Files (3) main.ts Matched by default include pattern '**/*' -Info 26 [16:01:29.000] ----------------------------------------------- -Info 27 [16:01:30.000] Search path: /user/username/projects/myproject/main -Info 28 [16:01:31.000] For info: /user/username/projects/myproject/main/tsconfig.json :: No config files found. -Info 29 [16:01:32.000] Project '/user/username/projects/myproject/main/tsconfig.json' (Configured) -Info 29 [16:01:33.000] Files (3) +Info 26 [00:01:29.000] ----------------------------------------------- +Info 27 [00:01:30.000] Search path: /user/username/projects/myproject/main +Info 28 [00:01:31.000] For info: /user/username/projects/myproject/main/tsconfig.json :: No config files found. +Info 29 [00:01:32.000] Project '/user/username/projects/myproject/main/tsconfig.json' (Configured) +Info 29 [00:01:33.000] Files (3) -Info 29 [16:01:34.000] ----------------------------------------------- -Info 29 [16:01:35.000] Open files: -Info 29 [16:01:36.000] FileName: /user/username/projects/myproject/main/main.ts ProjectRootPath: undefined -Info 29 [16:01:37.000] Projects: /user/username/projects/myproject/main/tsconfig.json +Info 29 [00:01:34.000] ----------------------------------------------- +Info 29 [00:01:35.000] Open files: +Info 29 [00:01:36.000] FileName: /user/username/projects/myproject/main/main.ts ProjectRootPath: undefined +Info 29 [00:01:37.000] Projects: /user/username/projects/myproject/main/tsconfig.json After request PolledWatches:: @@ -298,11 +298,11 @@ FsWatchesRecursive:: /user/username/projects/myproject/decls: {} -Info 29 [16:01:38.000] response: +Info 29 [00:01:38.000] response: { "responseRequired": false } -Info 30 [16:01:39.000] request: +Info 30 [00:01:39.000] request: { "seq": 0, "type": "request", @@ -337,18 +337,18 @@ FsWatchesRecursive:: /user/username/projects/myproject/decls: {} -Info 31 [16:01:40.000] Search path: /user/username/projects/myproject/dependency -Info 32 [16:01:41.000] For info: /user/username/projects/myproject/dependency/FnS.ts :: Config file name: /user/username/projects/myproject/dependency/tsconfig.json -Info 33 [16:01:42.000] Creating configuration project /user/username/projects/myproject/dependency/tsconfig.json -Info 34 [16:01:43.000] Plugins were requested but not running in environment that supports 'require'. Nothing will be loaded -Info 35 [16:01:44.000] Starting updateGraphWorker: Project: /user/username/projects/myproject/dependency/tsconfig.json -Info 36 [16:01:45.000] 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 37 [16:01:46.000] 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 38 [16:01:47.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Type roots -Info 39 [16:01:48.000] 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 40 [16:01:49.000] Finishing updateGraphWorker: Project: /user/username/projects/myproject/dependency/tsconfig.json Version: 1 structureChanged: true structureIsReused:: Not Elapsed:: *ms -Info 41 [16:01:50.000] Project '/user/username/projects/myproject/dependency/tsconfig.json' (Configured) -Info 42 [16:01:51.000] Files (2) +Info 31 [00:01:40.000] Search path: /user/username/projects/myproject/dependency +Info 32 [00:01:41.000] For info: /user/username/projects/myproject/dependency/FnS.ts :: Config file name: /user/username/projects/myproject/dependency/tsconfig.json +Info 33 [00:01:42.000] Creating configuration project /user/username/projects/myproject/dependency/tsconfig.json +Info 34 [00:01:43.000] Plugins were requested but not running in environment that supports 'require'. Nothing will be loaded +Info 35 [00:01:44.000] Starting updateGraphWorker: Project: /user/username/projects/myproject/dependency/tsconfig.json +Info 36 [00:01:45.000] 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 37 [00:01:46.000] 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 38 [00:01:47.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Type roots +Info 39 [00:01:48.000] 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 40 [00:01:49.000] Finishing updateGraphWorker: Project: /user/username/projects/myproject/dependency/tsconfig.json Version: 1 structureChanged: true structureIsReused:: Not Elapsed:: *ms +Info 41 [00:01:50.000] Project '/user/username/projects/myproject/dependency/tsconfig.json' (Configured) +Info 42 [00:01:51.000] Files (2) /a/lib/lib.d.ts /user/username/projects/myproject/dependency/FnS.ts @@ -358,22 +358,22 @@ Info 42 [16:01:51.000] Files (2) FnS.ts Matched by default include pattern '**/*' -Info 43 [16:01:52.000] ----------------------------------------------- -Info 44 [16:01:53.000] Search path: /user/username/projects/myproject/dependency -Info 45 [16:01:54.000] For info: /user/username/projects/myproject/dependency/tsconfig.json :: No config files found. -Info 46 [16:01:55.000] Project '/user/username/projects/myproject/main/tsconfig.json' (Configured) -Info 46 [16:01:56.000] Files (3) - -Info 46 [16:01:57.000] ----------------------------------------------- -Info 46 [16:01:58.000] Project '/user/username/projects/myproject/dependency/tsconfig.json' (Configured) -Info 46 [16:01:59.000] Files (2) - -Info 46 [16:02:00.000] ----------------------------------------------- -Info 46 [16:02:01.000] Open files: -Info 46 [16:02:02.000] FileName: /user/username/projects/myproject/main/main.ts ProjectRootPath: undefined -Info 46 [16:02:03.000] Projects: /user/username/projects/myproject/main/tsconfig.json -Info 46 [16:02:04.000] FileName: /user/username/projects/myproject/dependency/FnS.ts ProjectRootPath: undefined -Info 46 [16:02:05.000] Projects: /user/username/projects/myproject/dependency/tsconfig.json +Info 43 [00:01:52.000] ----------------------------------------------- +Info 44 [00:01:53.000] Search path: /user/username/projects/myproject/dependency +Info 45 [00:01:54.000] For info: /user/username/projects/myproject/dependency/tsconfig.json :: No config files found. +Info 46 [00:01:55.000] Project '/user/username/projects/myproject/main/tsconfig.json' (Configured) +Info 46 [00:01:56.000] Files (3) + +Info 46 [00:01:57.000] ----------------------------------------------- +Info 46 [00:01:58.000] Project '/user/username/projects/myproject/dependency/tsconfig.json' (Configured) +Info 46 [00:01:59.000] Files (2) + +Info 46 [00:02:00.000] ----------------------------------------------- +Info 46 [00:02:01.000] Open files: +Info 46 [00:02:02.000] FileName: /user/username/projects/myproject/main/main.ts ProjectRootPath: undefined +Info 46 [00:02:03.000] Projects: /user/username/projects/myproject/main/tsconfig.json +Info 46 [00:02:04.000] FileName: /user/username/projects/myproject/dependency/FnS.ts ProjectRootPath: undefined +Info 46 [00:02:05.000] Projects: /user/username/projects/myproject/dependency/tsconfig.json After request PolledWatches:: @@ -402,11 +402,11 @@ FsWatchesRecursive:: /user/username/projects/myproject/decls: {} -Info 46 [16:02:06.000] response: +Info 46 [00:02:06.000] response: { "responseRequired": false } -Info 47 [16:02:07.000] request: +Info 47 [00:02:07.000] request: { "seq": 0, "type": "request", @@ -443,11 +443,11 @@ FsWatchesRecursive:: /user/username/projects/myproject/decls: {} -Info 48 [16:02:08.000] Search path: /user/username/projects/myproject/random -Info 49 [16:02:09.000] For info: /user/username/projects/myproject/random/random.ts :: Config file name: /user/username/projects/myproject/random/tsconfig.json -Info 50 [16:02:10.000] Creating configuration project /user/username/projects/myproject/random/tsconfig.json -Info 51 [16:02:11.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/random/tsconfig.json 2000 undefined Project: /user/username/projects/myproject/random/tsconfig.json WatchType: Config file -Info 52 [16:02:12.000] Config: /user/username/projects/myproject/random/tsconfig.json : { +Info 48 [00:02:08.000] Search path: /user/username/projects/myproject/random +Info 49 [00:02:09.000] For info: /user/username/projects/myproject/random/random.ts :: Config file name: /user/username/projects/myproject/random/tsconfig.json +Info 50 [00:02:10.000] Creating configuration project /user/username/projects/myproject/random/tsconfig.json +Info 51 [00:02:11.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/random/tsconfig.json 2000 undefined Project: /user/username/projects/myproject/random/tsconfig.json WatchType: Config file +Info 52 [00:02:12.000] Config: /user/username/projects/myproject/random/tsconfig.json : { "rootNames": [ "/user/username/projects/myproject/random/random.ts" ], @@ -455,17 +455,17 @@ Info 52 [16:02:12.000] Config: /user/username/projects/myproject/random/tsconf "configFilePath": "/user/username/projects/myproject/random/tsconfig.json" } } -Info 53 [16:02:13.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/random 1 undefined Config: /user/username/projects/myproject/random/tsconfig.json WatchType: Wild card directory -Info 54 [16:02:14.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/random 1 undefined Config: /user/username/projects/myproject/random/tsconfig.json WatchType: Wild card directory -Info 55 [16:02:15.000] Plugins were requested but not running in environment that supports 'require'. Nothing will be loaded -Info 56 [16:02:16.000] Starting updateGraphWorker: Project: /user/username/projects/myproject/random/tsconfig.json -Info 57 [16:02:17.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/random/node_modules/@types 1 undefined Project: /user/username/projects/myproject/random/tsconfig.json WatchType: Type roots -Info 58 [16:02:18.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/random/node_modules/@types 1 undefined Project: /user/username/projects/myproject/random/tsconfig.json WatchType: Type roots -Info 59 [16:02:19.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/random/tsconfig.json WatchType: Type roots -Info 60 [16:02:20.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/random/tsconfig.json WatchType: Type roots -Info 61 [16:02:21.000] Finishing updateGraphWorker: Project: /user/username/projects/myproject/random/tsconfig.json Version: 1 structureChanged: true structureIsReused:: Not Elapsed:: *ms -Info 62 [16:02:22.000] Project '/user/username/projects/myproject/random/tsconfig.json' (Configured) -Info 63 [16:02:23.000] Files (2) +Info 53 [00:02:13.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/random 1 undefined Config: /user/username/projects/myproject/random/tsconfig.json WatchType: Wild card directory +Info 54 [00:02:14.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/random 1 undefined Config: /user/username/projects/myproject/random/tsconfig.json WatchType: Wild card directory +Info 55 [00:02:15.000] Plugins were requested but not running in environment that supports 'require'. Nothing will be loaded +Info 56 [00:02:16.000] Starting updateGraphWorker: Project: /user/username/projects/myproject/random/tsconfig.json +Info 57 [00:02:17.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/random/node_modules/@types 1 undefined Project: /user/username/projects/myproject/random/tsconfig.json WatchType: Type roots +Info 58 [00:02:18.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/random/node_modules/@types 1 undefined Project: /user/username/projects/myproject/random/tsconfig.json WatchType: Type roots +Info 59 [00:02:19.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/random/tsconfig.json WatchType: Type roots +Info 60 [00:02:20.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/random/tsconfig.json WatchType: Type roots +Info 61 [00:02:21.000] Finishing updateGraphWorker: Project: /user/username/projects/myproject/random/tsconfig.json Version: 1 structureChanged: true structureIsReused:: Not Elapsed:: *ms +Info 62 [00:02:22.000] Project '/user/username/projects/myproject/random/tsconfig.json' (Configured) +Info 63 [00:02:23.000] Files (2) /a/lib/lib.d.ts /user/username/projects/myproject/random/random.ts @@ -475,26 +475,26 @@ Info 63 [16:02:23.000] Files (2) random.ts Matched by default include pattern '**/*' -Info 64 [16:02:24.000] ----------------------------------------------- -Info 65 [16:02:25.000] Project '/user/username/projects/myproject/main/tsconfig.json' (Configured) -Info 65 [16:02:26.000] Files (3) - -Info 65 [16:02:27.000] ----------------------------------------------- -Info 65 [16:02:28.000] Project '/user/username/projects/myproject/dependency/tsconfig.json' (Configured) -Info 65 [16:02:29.000] Files (2) - -Info 65 [16:02:30.000] ----------------------------------------------- -Info 65 [16:02:31.000] Project '/user/username/projects/myproject/random/tsconfig.json' (Configured) -Info 65 [16:02:32.000] Files (2) - -Info 65 [16:02:33.000] ----------------------------------------------- -Info 65 [16:02:34.000] Open files: -Info 65 [16:02:35.000] FileName: /user/username/projects/myproject/main/main.ts ProjectRootPath: undefined -Info 65 [16:02:36.000] Projects: /user/username/projects/myproject/main/tsconfig.json -Info 65 [16:02:37.000] FileName: /user/username/projects/myproject/dependency/FnS.ts ProjectRootPath: undefined -Info 65 [16:02:38.000] Projects: /user/username/projects/myproject/dependency/tsconfig.json -Info 65 [16:02:39.000] FileName: /user/username/projects/myproject/random/random.ts ProjectRootPath: undefined -Info 65 [16:02:40.000] Projects: /user/username/projects/myproject/random/tsconfig.json +Info 64 [00:02:24.000] ----------------------------------------------- +Info 65 [00:02:25.000] Project '/user/username/projects/myproject/main/tsconfig.json' (Configured) +Info 65 [00:02:26.000] Files (3) + +Info 65 [00:02:27.000] ----------------------------------------------- +Info 65 [00:02:28.000] Project '/user/username/projects/myproject/dependency/tsconfig.json' (Configured) +Info 65 [00:02:29.000] Files (2) + +Info 65 [00:02:30.000] ----------------------------------------------- +Info 65 [00:02:31.000] Project '/user/username/projects/myproject/random/tsconfig.json' (Configured) +Info 65 [00:02:32.000] Files (2) + +Info 65 [00:02:33.000] ----------------------------------------------- +Info 65 [00:02:34.000] Open files: +Info 65 [00:02:35.000] FileName: /user/username/projects/myproject/main/main.ts ProjectRootPath: undefined +Info 65 [00:02:36.000] Projects: /user/username/projects/myproject/main/tsconfig.json +Info 65 [00:02:37.000] FileName: /user/username/projects/myproject/dependency/FnS.ts ProjectRootPath: undefined +Info 65 [00:02:38.000] Projects: /user/username/projects/myproject/dependency/tsconfig.json +Info 65 [00:02:39.000] FileName: /user/username/projects/myproject/random/random.ts ProjectRootPath: undefined +Info 65 [00:02:40.000] Projects: /user/username/projects/myproject/random/tsconfig.json After request PolledWatches:: @@ -529,11 +529,11 @@ FsWatchesRecursive:: /user/username/projects/myproject/random: {} -Info 65 [16:02:41.000] response: +Info 65 [00:02:41.000] response: { "responseRequired": false } -Info 66 [16:02:42.000] request: +Info 66 [00:02:42.000] request: { "command": "definitionAndBoundSpan", "arguments": { @@ -578,7 +578,7 @@ FsWatchesRecursive:: /user/username/projects/myproject/random: {} -Info 67 [16:02:43.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/decls/FnS.d.ts.map 500 undefined WatchType: Closed Script info +Info 67 [00:02:43.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/decls/FnS.d.ts.map 500 undefined WatchType: Closed Script info After request PolledWatches:: @@ -615,7 +615,7 @@ FsWatchesRecursive:: /user/username/projects/myproject/random: {} -Info 68 [16:02:44.000] response: +Info 68 [00:02:44.000] response: { "response": { "definitions": [ @@ -652,7 +652,7 @@ Info 68 [16:02:44.000] response: }, "responseRequired": true } -Info 69 [16:02:45.000] request: +Info 69 [00:02:45.000] request: { "command": "definitionAndBoundSpan", "arguments": { @@ -735,7 +735,7 @@ FsWatchesRecursive:: /user/username/projects/myproject/random: {} -Info 70 [16:02:46.000] response: +Info 70 [00:02:46.000] response: { "response": { "definitions": [ @@ -772,7 +772,7 @@ Info 70 [16:02:46.000] response: }, "responseRequired": true } -Info 71 [16:02:47.000] request: +Info 71 [00:02:47.000] request: { "command": "definitionAndBoundSpan", "arguments": { @@ -855,7 +855,7 @@ FsWatchesRecursive:: /user/username/projects/myproject/random: {} -Info 72 [16:02:48.000] response: +Info 72 [00:02:48.000] response: { "response": { "definitions": [ @@ -892,7 +892,7 @@ Info 72 [16:02:48.000] response: }, "responseRequired": true } -Info 73 [16:02:49.000] request: +Info 73 [00:02:49.000] request: { "command": "definitionAndBoundSpan", "arguments": { @@ -975,7 +975,7 @@ FsWatchesRecursive:: /user/username/projects/myproject/random: {} -Info 74 [16:02:50.000] response: +Info 74 [00:02:50.000] response: { "response": { "definitions": [ @@ -1012,7 +1012,7 @@ Info 74 [16:02:50.000] response: }, "responseRequired": true } -Info 75 [16:02:51.000] request: +Info 75 [00:02:51.000] request: { "command": "definitionAndBoundSpan", "arguments": { @@ -1095,7 +1095,7 @@ FsWatchesRecursive:: /user/username/projects/myproject/random: {} -Info 76 [16:02:52.000] response: +Info 76 [00:02:52.000] response: { "response": { "definitions": [ @@ -1132,7 +1132,7 @@ Info 76 [16:02:52.000] response: }, "responseRequired": true } -Info 77 [16:02:53.000] request: +Info 77 [00:02:53.000] request: { "command": "rename", "arguments": { @@ -1179,8 +1179,8 @@ FsWatchesRecursive:: /user/username/projects/myproject/random: {} -Info 78 [16:02:54.000] Search path: /user/username/projects/myproject/dependency -Info 79 [16:02:55.000] For info: /user/username/projects/myproject/dependency/FnS.ts :: Config file name: /user/username/projects/myproject/dependency/tsconfig.json +Info 78 [00:02:54.000] Search path: /user/username/projects/myproject/dependency +Info 79 [00:02:55.000] For info: /user/username/projects/myproject/dependency/FnS.ts :: Config file name: /user/username/projects/myproject/dependency/tsconfig.json After request PolledWatches:: @@ -1217,7 +1217,7 @@ FsWatchesRecursive:: /user/username/projects/myproject/random: {} -Info 80 [16:02:56.000] response: +Info 80 [00:02:56.000] response: { "response": { "info": { @@ -1298,7 +1298,7 @@ Info 80 [16:02:56.000] response: }, "responseRequired": true } -Info 81 [16:02:57.000] request: +Info 81 [00:02:57.000] request: { "command": "rename", "arguments": { @@ -1345,8 +1345,8 @@ FsWatchesRecursive:: /user/username/projects/myproject/random: {} -Info 82 [16:02:58.000] Search path: /user/username/projects/myproject/dependency -Info 83 [16:02:59.000] For info: /user/username/projects/myproject/dependency/FnS.ts :: Config file name: /user/username/projects/myproject/dependency/tsconfig.json +Info 82 [00:02:58.000] Search path: /user/username/projects/myproject/dependency +Info 83 [00:02:59.000] For info: /user/username/projects/myproject/dependency/FnS.ts :: Config file name: /user/username/projects/myproject/dependency/tsconfig.json After request PolledWatches:: @@ -1383,7 +1383,7 @@ FsWatchesRecursive:: /user/username/projects/myproject/random: {} -Info 84 [16:03:00.000] response: +Info 84 [00:03:00.000] response: { "response": { "info": { @@ -1464,7 +1464,7 @@ Info 84 [16:03:00.000] response: }, "responseRequired": true } -Info 85 [16:03:01.000] request: +Info 85 [00:03:01.000] request: { "command": "rename", "arguments": { @@ -1511,8 +1511,8 @@ FsWatchesRecursive:: /user/username/projects/myproject/random: {} -Info 86 [16:03:02.000] Search path: /user/username/projects/myproject/dependency -Info 87 [16:03:03.000] For info: /user/username/projects/myproject/dependency/FnS.ts :: Config file name: /user/username/projects/myproject/dependency/tsconfig.json +Info 86 [00:03:02.000] Search path: /user/username/projects/myproject/dependency +Info 87 [00:03:03.000] For info: /user/username/projects/myproject/dependency/FnS.ts :: Config file name: /user/username/projects/myproject/dependency/tsconfig.json After request PolledWatches:: @@ -1549,7 +1549,7 @@ FsWatchesRecursive:: /user/username/projects/myproject/random: {} -Info 88 [16:03:04.000] response: +Info 88 [00:03:04.000] response: { "response": { "info": { @@ -1630,7 +1630,7 @@ Info 88 [16:03:04.000] response: }, "responseRequired": true } -Info 89 [16:03:05.000] request: +Info 89 [00:03:05.000] request: { "command": "rename", "arguments": { @@ -1677,8 +1677,8 @@ FsWatchesRecursive:: /user/username/projects/myproject/random: {} -Info 90 [16:03:06.000] Search path: /user/username/projects/myproject/dependency -Info 91 [16:03:07.000] For info: /user/username/projects/myproject/dependency/FnS.ts :: Config file name: /user/username/projects/myproject/dependency/tsconfig.json +Info 90 [00:03:06.000] Search path: /user/username/projects/myproject/dependency +Info 91 [00:03:07.000] For info: /user/username/projects/myproject/dependency/FnS.ts :: Config file name: /user/username/projects/myproject/dependency/tsconfig.json After request PolledWatches:: @@ -1715,7 +1715,7 @@ FsWatchesRecursive:: /user/username/projects/myproject/random: {} -Info 92 [16:03:08.000] response: +Info 92 [00:03:08.000] response: { "response": { "info": { @@ -1796,7 +1796,7 @@ Info 92 [16:03:08.000] response: }, "responseRequired": true } -Info 93 [16:03:09.000] request: +Info 93 [00:03:09.000] request: { "command": "rename", "arguments": { @@ -1843,8 +1843,8 @@ FsWatchesRecursive:: /user/username/projects/myproject/random: {} -Info 94 [16:03:10.000] Search path: /user/username/projects/myproject/dependency -Info 95 [16:03:11.000] For info: /user/username/projects/myproject/dependency/FnS.ts :: Config file name: /user/username/projects/myproject/dependency/tsconfig.json +Info 94 [00:03:10.000] Search path: /user/username/projects/myproject/dependency +Info 95 [00:03:11.000] For info: /user/username/projects/myproject/dependency/FnS.ts :: Config file name: /user/username/projects/myproject/dependency/tsconfig.json After request PolledWatches:: @@ -1881,7 +1881,7 @@ FsWatchesRecursive:: /user/username/projects/myproject/random: {} -Info 96 [16:03:12.000] response: +Info 96 [00:03:12.000] response: { "response": { "info": { @@ -1962,7 +1962,7 @@ Info 96 [16:03:12.000] response: }, "responseRequired": true } -Info 97 [16:03:13.000] request: +Info 97 [00:03:13.000] request: { "seq": 0, "type": "request", @@ -2007,24 +2007,24 @@ FsWatchesRecursive:: /user/username/projects/myproject/random: {} -Info 98 [16:03:14.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/random/random.ts 500 undefined WatchType: Closed Script info -Info 99 [16:03:15.000] Project '/user/username/projects/myproject/main/tsconfig.json' (Configured) -Info 99 [16:03:16.000] Files (3) +Info 98 [00:03:14.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/random/random.ts 500 undefined WatchType: Closed Script info +Info 99 [00:03:15.000] Project '/user/username/projects/myproject/main/tsconfig.json' (Configured) +Info 99 [00:03:16.000] Files (3) -Info 99 [16:03:17.000] ----------------------------------------------- -Info 99 [16:03:18.000] Project '/user/username/projects/myproject/dependency/tsconfig.json' (Configured) -Info 99 [16:03:19.000] Files (2) +Info 99 [00:03:17.000] ----------------------------------------------- +Info 99 [00:03:18.000] Project '/user/username/projects/myproject/dependency/tsconfig.json' (Configured) +Info 99 [00:03:19.000] Files (2) -Info 99 [16:03:20.000] ----------------------------------------------- -Info 99 [16:03:21.000] Project '/user/username/projects/myproject/random/tsconfig.json' (Configured) -Info 99 [16:03:22.000] Files (2) +Info 99 [00:03:20.000] ----------------------------------------------- +Info 99 [00:03:21.000] Project '/user/username/projects/myproject/random/tsconfig.json' (Configured) +Info 99 [00:03:22.000] Files (2) -Info 99 [16:03:23.000] ----------------------------------------------- -Info 99 [16:03:24.000] Open files: -Info 99 [16:03:25.000] FileName: /user/username/projects/myproject/main/main.ts ProjectRootPath: undefined -Info 99 [16:03:26.000] Projects: /user/username/projects/myproject/main/tsconfig.json -Info 99 [16:03:27.000] FileName: /user/username/projects/myproject/dependency/FnS.ts ProjectRootPath: undefined -Info 99 [16:03:28.000] Projects: /user/username/projects/myproject/dependency/tsconfig.json +Info 99 [00:03:23.000] ----------------------------------------------- +Info 99 [00:03:24.000] Open files: +Info 99 [00:03:25.000] FileName: /user/username/projects/myproject/main/main.ts ProjectRootPath: undefined +Info 99 [00:03:26.000] Projects: /user/username/projects/myproject/main/tsconfig.json +Info 99 [00:03:27.000] FileName: /user/username/projects/myproject/dependency/FnS.ts ProjectRootPath: undefined +Info 99 [00:03:28.000] Projects: /user/username/projects/myproject/dependency/tsconfig.json After request PolledWatches:: @@ -2063,11 +2063,11 @@ FsWatchesRecursive:: /user/username/projects/myproject/random: {} -Info 99 [16:03:29.000] response: +Info 99 [00:03:29.000] response: { "responseRequired": false } -Info 100 [16:03:30.000] request: +Info 100 [00:03:30.000] request: { "seq": 0, "type": "request", @@ -2114,28 +2114,28 @@ FsWatchesRecursive:: /user/username/projects/myproject/random: {} -Info 101 [16:03:31.000] FileWatcher:: Close:: WatchInfo: /user/username/projects/myproject/random/random.ts 500 undefined WatchType: Closed Script info -Info 102 [16:03:32.000] Search path: /user/username/projects/myproject/random -Info 103 [16:03:33.000] For info: /user/username/projects/myproject/random/random.ts :: Config file name: /user/username/projects/myproject/random/tsconfig.json -Info 104 [16:03:34.000] Project '/user/username/projects/myproject/main/tsconfig.json' (Configured) -Info 104 [16:03:35.000] Files (3) - -Info 104 [16:03:36.000] ----------------------------------------------- -Info 104 [16:03:37.000] Project '/user/username/projects/myproject/dependency/tsconfig.json' (Configured) -Info 104 [16:03:38.000] Files (2) - -Info 104 [16:03:39.000] ----------------------------------------------- -Info 104 [16:03:40.000] Project '/user/username/projects/myproject/random/tsconfig.json' (Configured) -Info 104 [16:03:41.000] Files (2) - -Info 104 [16:03:42.000] ----------------------------------------------- -Info 104 [16:03:43.000] Open files: -Info 104 [16:03:44.000] FileName: /user/username/projects/myproject/main/main.ts ProjectRootPath: undefined -Info 104 [16:03:45.000] Projects: /user/username/projects/myproject/main/tsconfig.json -Info 104 [16:03:46.000] FileName: /user/username/projects/myproject/dependency/FnS.ts ProjectRootPath: undefined -Info 104 [16:03:47.000] Projects: /user/username/projects/myproject/dependency/tsconfig.json -Info 104 [16:03:48.000] FileName: /user/username/projects/myproject/random/random.ts ProjectRootPath: undefined -Info 104 [16:03:49.000] Projects: /user/username/projects/myproject/random/tsconfig.json +Info 101 [00:03:31.000] FileWatcher:: Close:: WatchInfo: /user/username/projects/myproject/random/random.ts 500 undefined WatchType: Closed Script info +Info 102 [00:03:32.000] Search path: /user/username/projects/myproject/random +Info 103 [00:03:33.000] For info: /user/username/projects/myproject/random/random.ts :: Config file name: /user/username/projects/myproject/random/tsconfig.json +Info 104 [00:03:34.000] Project '/user/username/projects/myproject/main/tsconfig.json' (Configured) +Info 104 [00:03:35.000] Files (3) + +Info 104 [00:03:36.000] ----------------------------------------------- +Info 104 [00:03:37.000] Project '/user/username/projects/myproject/dependency/tsconfig.json' (Configured) +Info 104 [00:03:38.000] Files (2) + +Info 104 [00:03:39.000] ----------------------------------------------- +Info 104 [00:03:40.000] Project '/user/username/projects/myproject/random/tsconfig.json' (Configured) +Info 104 [00:03:41.000] Files (2) + +Info 104 [00:03:42.000] ----------------------------------------------- +Info 104 [00:03:43.000] Open files: +Info 104 [00:03:44.000] FileName: /user/username/projects/myproject/main/main.ts ProjectRootPath: undefined +Info 104 [00:03:45.000] Projects: /user/username/projects/myproject/main/tsconfig.json +Info 104 [00:03:46.000] FileName: /user/username/projects/myproject/dependency/FnS.ts ProjectRootPath: undefined +Info 104 [00:03:47.000] Projects: /user/username/projects/myproject/dependency/tsconfig.json +Info 104 [00:03:48.000] FileName: /user/username/projects/myproject/random/random.ts ProjectRootPath: undefined +Info 104 [00:03:49.000] Projects: /user/username/projects/myproject/random/tsconfig.json After request PolledWatches:: @@ -2172,11 +2172,11 @@ FsWatchesRecursive:: /user/username/projects/myproject/random: {} -Info 104 [16:03:50.000] response: +Info 104 [00:03:50.000] response: { "responseRequired": false } -Info 105 [16:03:51.000] request: +Info 105 [00:03:51.000] request: { "seq": 0, "type": "request", @@ -2221,24 +2221,24 @@ FsWatchesRecursive:: /user/username/projects/myproject/random: {} -Info 106 [16:03:52.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/main/main.ts 500 undefined WatchType: Closed Script info -Info 107 [16:03:53.000] Project '/user/username/projects/myproject/main/tsconfig.json' (Configured) -Info 107 [16:03:54.000] Files (3) +Info 106 [00:03:52.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/main/main.ts 500 undefined WatchType: Closed Script info +Info 107 [00:03:53.000] Project '/user/username/projects/myproject/main/tsconfig.json' (Configured) +Info 107 [00:03:54.000] Files (3) -Info 107 [16:03:55.000] ----------------------------------------------- -Info 107 [16:03:56.000] Project '/user/username/projects/myproject/dependency/tsconfig.json' (Configured) -Info 107 [16:03:57.000] Files (2) +Info 107 [00:03:55.000] ----------------------------------------------- +Info 107 [00:03:56.000] Project '/user/username/projects/myproject/dependency/tsconfig.json' (Configured) +Info 107 [00:03:57.000] Files (2) -Info 107 [16:03:58.000] ----------------------------------------------- -Info 107 [16:03:59.000] Project '/user/username/projects/myproject/random/tsconfig.json' (Configured) -Info 107 [16:04:00.000] Files (2) +Info 107 [00:03:58.000] ----------------------------------------------- +Info 107 [00:03:59.000] Project '/user/username/projects/myproject/random/tsconfig.json' (Configured) +Info 107 [00:04:00.000] Files (2) -Info 107 [16:04:01.000] ----------------------------------------------- -Info 107 [16:04:02.000] Open files: -Info 107 [16:04:03.000] FileName: /user/username/projects/myproject/dependency/FnS.ts ProjectRootPath: undefined -Info 107 [16:04:04.000] Projects: /user/username/projects/myproject/dependency/tsconfig.json -Info 107 [16:04:05.000] FileName: /user/username/projects/myproject/random/random.ts ProjectRootPath: undefined -Info 107 [16:04:06.000] Projects: /user/username/projects/myproject/random/tsconfig.json +Info 107 [00:04:01.000] ----------------------------------------------- +Info 107 [00:04:02.000] Open files: +Info 107 [00:04:03.000] FileName: /user/username/projects/myproject/dependency/FnS.ts ProjectRootPath: undefined +Info 107 [00:04:04.000] Projects: /user/username/projects/myproject/dependency/tsconfig.json +Info 107 [00:04:05.000] FileName: /user/username/projects/myproject/random/random.ts ProjectRootPath: undefined +Info 107 [00:04:06.000] Projects: /user/username/projects/myproject/random/tsconfig.json After request PolledWatches:: @@ -2277,11 +2277,11 @@ FsWatchesRecursive:: /user/username/projects/myproject/random: {} -Info 107 [16:04:07.000] response: +Info 107 [00:04:07.000] response: { "responseRequired": false } -Info 108 [16:04:08.000] request: +Info 108 [00:04:08.000] request: { "seq": 0, "type": "request", @@ -2328,22 +2328,22 @@ FsWatchesRecursive:: /user/username/projects/myproject/random: {} -Info 109 [16:04:09.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/dependency/FnS.ts 500 undefined WatchType: Closed Script info -Info 110 [16:04:10.000] Project '/user/username/projects/myproject/main/tsconfig.json' (Configured) -Info 110 [16:04:11.000] Files (3) +Info 109 [00:04:09.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/dependency/FnS.ts 500 undefined WatchType: Closed Script info +Info 110 [00:04:10.000] Project '/user/username/projects/myproject/main/tsconfig.json' (Configured) +Info 110 [00:04:11.000] Files (3) -Info 110 [16:04:12.000] ----------------------------------------------- -Info 110 [16:04:13.000] Project '/user/username/projects/myproject/dependency/tsconfig.json' (Configured) -Info 110 [16:04:14.000] Files (2) +Info 110 [00:04:12.000] ----------------------------------------------- +Info 110 [00:04:13.000] Project '/user/username/projects/myproject/dependency/tsconfig.json' (Configured) +Info 110 [00:04:14.000] Files (2) -Info 110 [16:04:15.000] ----------------------------------------------- -Info 110 [16:04:16.000] Project '/user/username/projects/myproject/random/tsconfig.json' (Configured) -Info 110 [16:04:17.000] Files (2) +Info 110 [00:04:15.000] ----------------------------------------------- +Info 110 [00:04:16.000] Project '/user/username/projects/myproject/random/tsconfig.json' (Configured) +Info 110 [00:04:17.000] Files (2) -Info 110 [16:04:18.000] ----------------------------------------------- -Info 110 [16:04:19.000] Open files: -Info 110 [16:04:20.000] FileName: /user/username/projects/myproject/random/random.ts ProjectRootPath: undefined -Info 110 [16:04:21.000] Projects: /user/username/projects/myproject/random/tsconfig.json +Info 110 [00:04:18.000] ----------------------------------------------- +Info 110 [00:04:19.000] Open files: +Info 110 [00:04:20.000] FileName: /user/username/projects/myproject/random/random.ts ProjectRootPath: undefined +Info 110 [00:04:21.000] Projects: /user/username/projects/myproject/random/tsconfig.json After request PolledWatches:: @@ -2384,11 +2384,11 @@ FsWatchesRecursive:: /user/username/projects/myproject/random: {} -Info 110 [16:04:22.000] response: +Info 110 [00:04:22.000] response: { "responseRequired": false } -Info 111 [16:04:23.000] request: +Info 111 [00:04:23.000] request: { "seq": 0, "type": "request", @@ -2437,20 +2437,20 @@ FsWatchesRecursive:: /user/username/projects/myproject/random: {} -Info 112 [16:04:24.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/random/random.ts 500 undefined WatchType: Closed Script info -Info 113 [16:04:25.000] Project '/user/username/projects/myproject/main/tsconfig.json' (Configured) -Info 113 [16:04:26.000] Files (3) +Info 112 [00:04:24.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/random/random.ts 500 undefined WatchType: Closed Script info +Info 113 [00:04:25.000] Project '/user/username/projects/myproject/main/tsconfig.json' (Configured) +Info 113 [00:04:26.000] Files (3) -Info 113 [16:04:27.000] ----------------------------------------------- -Info 113 [16:04:28.000] Project '/user/username/projects/myproject/dependency/tsconfig.json' (Configured) -Info 113 [16:04:29.000] Files (2) +Info 113 [00:04:27.000] ----------------------------------------------- +Info 113 [00:04:28.000] Project '/user/username/projects/myproject/dependency/tsconfig.json' (Configured) +Info 113 [00:04:29.000] Files (2) -Info 113 [16:04:30.000] ----------------------------------------------- -Info 113 [16:04:31.000] Project '/user/username/projects/myproject/random/tsconfig.json' (Configured) -Info 113 [16:04:32.000] Files (2) +Info 113 [00:04:30.000] ----------------------------------------------- +Info 113 [00:04:31.000] Project '/user/username/projects/myproject/random/tsconfig.json' (Configured) +Info 113 [00:04:32.000] Files (2) -Info 113 [16:04:33.000] ----------------------------------------------- -Info 113 [16:04:34.000] Open files: +Info 113 [00:04:33.000] ----------------------------------------------- +Info 113 [00:04:34.000] Open files: After request PolledWatches:: @@ -2493,11 +2493,11 @@ FsWatchesRecursive:: /user/username/projects/myproject/random: {} -Info 113 [16:04:35.000] response: +Info 113 [00:04:35.000] response: { "responseRequired": false } -Info 114 [16:04:36.000] request: +Info 114 [00:04:36.000] request: { "seq": 0, "type": "request", @@ -2548,12 +2548,12 @@ FsWatchesRecursive:: /user/username/projects/myproject/random: {} -Info 115 [16:04:37.000] FileWatcher:: Close:: WatchInfo: /user/username/projects/myproject/random/random.ts 500 undefined WatchType: Closed Script info -Info 116 [16:04:38.000] Search path: /user/username/projects/myproject/random -Info 117 [16:04:39.000] For info: /user/username/projects/myproject/random/random.ts :: Config file name: /user/username/projects/myproject/random/tsconfig.json -Info 118 [16:04:40.000] `remove Project:: -Info 119 [16:04:41.000] Project '/user/username/projects/myproject/main/tsconfig.json' (Configured) -Info 120 [16:04:42.000] Files (3) +Info 115 [00:04:37.000] FileWatcher:: Close:: WatchInfo: /user/username/projects/myproject/random/random.ts 500 undefined WatchType: Closed Script info +Info 116 [00:04:38.000] Search path: /user/username/projects/myproject/random +Info 117 [00:04:39.000] For info: /user/username/projects/myproject/random/random.ts :: Config file name: /user/username/projects/myproject/random/tsconfig.json +Info 118 [00:04:40.000] `remove Project:: +Info 119 [00:04:41.000] Project '/user/username/projects/myproject/main/tsconfig.json' (Configured) +Info 120 [00:04:42.000] Files (3) /a/lib/lib.d.ts /user/username/projects/myproject/decls/fns.d.ts /user/username/projects/myproject/main/main.ts @@ -2566,19 +2566,19 @@ Info 120 [16:04:42.000] Files (3) main.ts Matched by default include pattern '**/*' -Info 121 [16:04:43.000] ----------------------------------------------- -Info 122 [16:04:44.000] DirectoryWatcher:: Close:: WatchInfo: /user/username/projects/myproject/main 1 undefined Config: /user/username/projects/myproject/main/tsconfig.json WatchType: Wild card directory -Info 123 [16:04:45.000] 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 124 [16:04:46.000] FileWatcher:: Close:: WatchInfo: /user/username/projects/myproject/main/tsconfig.json 2000 undefined Project: /user/username/projects/myproject/main/tsconfig.json WatchType: Config file -Info 125 [16:04:47.000] DirectoryWatcher:: Close:: WatchInfo: /user/username/projects/myproject/decls 1 undefined Project: /user/username/projects/myproject/main/tsconfig.json WatchType: Failed Lookup Locations -Info 126 [16:04:48.000] 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 127 [16:04:49.000] 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 128 [16:04:50.000] 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 129 [16:04:51.000] DirectoryWatcher:: Close:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/main/tsconfig.json WatchType: Type roots -Info 130 [16:04:52.000] 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 131 [16:04:53.000] `remove Project:: -Info 132 [16:04:54.000] Project '/user/username/projects/myproject/dependency/tsconfig.json' (Configured) -Info 133 [16:04:55.000] Files (2) +Info 121 [00:04:43.000] ----------------------------------------------- +Info 122 [00:04:44.000] DirectoryWatcher:: Close:: WatchInfo: /user/username/projects/myproject/main 1 undefined Config: /user/username/projects/myproject/main/tsconfig.json WatchType: Wild card directory +Info 123 [00:04:45.000] 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 124 [00:04:46.000] FileWatcher:: Close:: WatchInfo: /user/username/projects/myproject/main/tsconfig.json 2000 undefined Project: /user/username/projects/myproject/main/tsconfig.json WatchType: Config file +Info 125 [00:04:47.000] DirectoryWatcher:: Close:: WatchInfo: /user/username/projects/myproject/decls 1 undefined Project: /user/username/projects/myproject/main/tsconfig.json WatchType: Failed Lookup Locations +Info 126 [00:04:48.000] 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 127 [00:04:49.000] 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 128 [00:04:50.000] 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 129 [00:04:51.000] DirectoryWatcher:: Close:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/main/tsconfig.json WatchType: Type roots +Info 130 [00:04:52.000] 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 131 [00:04:53.000] `remove Project:: +Info 132 [00:04:54.000] Project '/user/username/projects/myproject/dependency/tsconfig.json' (Configured) +Info 133 [00:04:55.000] Files (2) /a/lib/lib.d.ts /user/username/projects/myproject/dependency/FnS.ts @@ -2588,25 +2588,25 @@ Info 133 [16:04:55.000] Files (2) FnS.ts Matched by default include pattern '**/*' -Info 134 [16:04:56.000] ----------------------------------------------- -Info 135 [16:04:57.000] DirectoryWatcher:: Close:: WatchInfo: /user/username/projects/myproject/dependency 1 undefined Config: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Wild card directory -Info 136 [16:04:58.000] 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 137 [16:04:59.000] FileWatcher:: Close:: WatchInfo: /user/username/projects/myproject/dependency/tsconfig.json 2000 undefined Project: /user/username/projects/myproject/main/tsconfig.json WatchType: Config file -Info 138 [16:05:00.000] 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 139 [16:05:01.000] 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 140 [16:05:02.000] DirectoryWatcher:: Close:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Type roots -Info 141 [16:05:03.000] 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 142 [16:05:04.000] FileWatcher:: Close:: WatchInfo: /user/username/projects/myproject/main/main.ts 500 undefined WatchType: Closed Script info -Info 143 [16:05:05.000] FileWatcher:: Close:: WatchInfo: /user/username/projects/myproject/decls/fns.d.ts 500 undefined WatchType: Closed Script info -Info 144 [16:05:06.000] FileWatcher:: Close:: WatchInfo: /user/username/projects/myproject/dependency/FnS.ts 500 undefined WatchType: Closed Script info -Info 145 [16:05:07.000] FileWatcher:: Close:: WatchInfo: /user/username/projects/myproject/decls/FnS.d.ts.map 500 undefined WatchType: Closed Script info -Info 146 [16:05:08.000] Project '/user/username/projects/myproject/random/tsconfig.json' (Configured) -Info 146 [16:05:09.000] Files (2) - -Info 146 [16:05:10.000] ----------------------------------------------- -Info 146 [16:05:11.000] Open files: -Info 146 [16:05:12.000] FileName: /user/username/projects/myproject/random/random.ts ProjectRootPath: undefined -Info 146 [16:05:13.000] Projects: /user/username/projects/myproject/random/tsconfig.json +Info 134 [00:04:56.000] ----------------------------------------------- +Info 135 [00:04:57.000] DirectoryWatcher:: Close:: WatchInfo: /user/username/projects/myproject/dependency 1 undefined Config: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Wild card directory +Info 136 [00:04:58.000] 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 137 [00:04:59.000] FileWatcher:: Close:: WatchInfo: /user/username/projects/myproject/dependency/tsconfig.json 2000 undefined Project: /user/username/projects/myproject/main/tsconfig.json WatchType: Config file +Info 138 [00:05:00.000] 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 139 [00:05:01.000] 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 140 [00:05:02.000] DirectoryWatcher:: Close:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Type roots +Info 141 [00:05:03.000] 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 142 [00:05:04.000] FileWatcher:: Close:: WatchInfo: /user/username/projects/myproject/main/main.ts 500 undefined WatchType: Closed Script info +Info 143 [00:05:05.000] FileWatcher:: Close:: WatchInfo: /user/username/projects/myproject/decls/fns.d.ts 500 undefined WatchType: Closed Script info +Info 144 [00:05:06.000] FileWatcher:: Close:: WatchInfo: /user/username/projects/myproject/dependency/FnS.ts 500 undefined WatchType: Closed Script info +Info 145 [00:05:07.000] FileWatcher:: Close:: WatchInfo: /user/username/projects/myproject/decls/FnS.d.ts.map 500 undefined WatchType: Closed Script info +Info 146 [00:05:08.000] Project '/user/username/projects/myproject/random/tsconfig.json' (Configured) +Info 146 [00:05:09.000] Files (2) + +Info 146 [00:05:10.000] ----------------------------------------------- +Info 146 [00:05:11.000] Open files: +Info 146 [00:05:12.000] FileName: /user/username/projects/myproject/random/random.ts ProjectRootPath: undefined +Info 146 [00:05:13.000] Projects: /user/username/projects/myproject/random/tsconfig.json After request PolledWatches:: @@ -2625,7 +2625,7 @@ FsWatchesRecursive:: /user/username/projects/myproject/random: {} -Info 146 [16:05:14.000] response: +Info 146 [00:05:14.000] response: { "responseRequired": false } \ No newline at end of file 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 3103dd540811e..21e77ddfc214f 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 @@ -1,5 +1,5 @@ -Info 0 [16:01:03.000] Provided types map file "/a/lib/typesMap.json" doesn't exist -Info 1 [16:01:04.000] request: +Info 0 [00:01:03.000] Provided types map file "/a/lib/typesMap.json" doesn't exist +Info 1 [00:01:04.000] request: { "seq": 0, "type": "request", @@ -200,11 +200,11 @@ FsWatches:: FsWatchesRecursive:: -Info 2 [16:01:05.000] Search path: /user/username/projects/myproject/main -Info 3 [16:01:06.000] For info: /user/username/projects/myproject/main/main.ts :: Config file name: /user/username/projects/myproject/main/tsconfig.json -Info 4 [16:01:07.000] Creating configuration project /user/username/projects/myproject/main/tsconfig.json -Info 5 [16:01:08.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/main/tsconfig.json 2000 undefined Project: /user/username/projects/myproject/main/tsconfig.json WatchType: Config file -Info 6 [16:01:09.000] Config: /user/username/projects/myproject/main/tsconfig.json : { +Info 2 [00:01:05.000] Search path: /user/username/projects/myproject/main +Info 3 [00:01:06.000] For info: /user/username/projects/myproject/main/main.ts :: Config file name: /user/username/projects/myproject/main/tsconfig.json +Info 4 [00:01:07.000] Creating configuration project /user/username/projects/myproject/main/tsconfig.json +Info 5 [00:01:08.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/main/tsconfig.json 2000 undefined Project: /user/username/projects/myproject/main/tsconfig.json WatchType: Config file +Info 6 [00:01:09.000] Config: /user/username/projects/myproject/main/tsconfig.json : { "rootNames": [ "/user/username/projects/myproject/main/main.ts" ], @@ -221,11 +221,11 @@ Info 6 [16:01:09.000] Config: /user/username/projects/myproject/main/tsconfig } ] } -Info 7 [16:01:10.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/main 1 undefined Config: /user/username/projects/myproject/main/tsconfig.json WatchType: Wild card directory -Info 8 [16:01:11.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/main 1 undefined Config: /user/username/projects/myproject/main/tsconfig.json WatchType: Wild card directory -Info 9 [16:01:12.000] Plugins were requested but not running in environment that supports 'require'. Nothing will be loaded -Info 10 [16:01:13.000] Starting updateGraphWorker: Project: /user/username/projects/myproject/main/tsconfig.json -Info 11 [16:01:14.000] Config: /user/username/projects/myproject/dependency/tsconfig.json : { +Info 7 [00:01:10.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/main 1 undefined Config: /user/username/projects/myproject/main/tsconfig.json WatchType: Wild card directory +Info 8 [00:01:11.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/main 1 undefined Config: /user/username/projects/myproject/main/tsconfig.json WatchType: Wild card directory +Info 9 [00:01:12.000] Plugins were requested but not running in environment that supports 'require'. Nothing will be loaded +Info 10 [00:01:13.000] Starting updateGraphWorker: Project: /user/username/projects/myproject/main/tsconfig.json +Info 11 [00:01:14.000] Config: /user/username/projects/myproject/dependency/tsconfig.json : { "rootNames": [ "/user/username/projects/myproject/dependency/FnS.ts" ], @@ -236,20 +236,20 @@ Info 11 [16:01:14.000] Config: /user/username/projects/myproject/dependency/ts "configFilePath": "/user/username/projects/myproject/dependency/tsconfig.json" } } -Info 12 [16:01:15.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/dependency/tsconfig.json 2000 undefined Project: /user/username/projects/myproject/main/tsconfig.json WatchType: Config file -Info 13 [16:01:16.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/dependency 1 undefined Config: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Wild card directory -Info 14 [16:01:17.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/dependency 1 undefined Config: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Wild card directory -Info 15 [16:01:18.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/decls 1 undefined Project: /user/username/projects/myproject/main/tsconfig.json WatchType: Failed Lookup Locations -Info 16 [16:01:19.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/decls 1 undefined Project: /user/username/projects/myproject/main/tsconfig.json WatchType: Failed Lookup Locations -Info 17 [16:01:20.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/decls/fns.d.ts 500 undefined WatchType: Closed Script info -Info 18 [16:01:21.000] FileWatcher:: Added:: WatchInfo: /a/lib/lib.d.ts 500 undefined WatchType: Closed Script info -Info 19 [16:01:22.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/main/node_modules/@types 1 undefined Project: /user/username/projects/myproject/main/tsconfig.json WatchType: Type roots -Info 20 [16:01:23.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/main/node_modules/@types 1 undefined Project: /user/username/projects/myproject/main/tsconfig.json WatchType: Type roots -Info 21 [16:01:24.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/main/tsconfig.json WatchType: Type roots -Info 22 [16:01:25.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/main/tsconfig.json WatchType: Type roots -Info 23 [16:01:26.000] Finishing updateGraphWorker: Project: /user/username/projects/myproject/main/tsconfig.json Version: 1 structureChanged: true structureIsReused:: Not Elapsed:: *ms -Info 24 [16:01:27.000] Project '/user/username/projects/myproject/main/tsconfig.json' (Configured) -Info 25 [16:01:28.000] Files (3) +Info 12 [00:01:15.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/dependency/tsconfig.json 2000 undefined Project: /user/username/projects/myproject/main/tsconfig.json WatchType: Config file +Info 13 [00:01:16.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/dependency 1 undefined Config: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Wild card directory +Info 14 [00:01:17.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/dependency 1 undefined Config: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Wild card directory +Info 15 [00:01:18.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/decls 1 undefined Project: /user/username/projects/myproject/main/tsconfig.json WatchType: Failed Lookup Locations +Info 16 [00:01:19.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/decls 1 undefined Project: /user/username/projects/myproject/main/tsconfig.json WatchType: Failed Lookup Locations +Info 17 [00:01:20.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/decls/fns.d.ts 500 undefined WatchType: Closed Script info +Info 18 [00:01:21.000] FileWatcher:: Added:: WatchInfo: /a/lib/lib.d.ts 500 undefined WatchType: Closed Script info +Info 19 [00:01:22.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/main/node_modules/@types 1 undefined Project: /user/username/projects/myproject/main/tsconfig.json WatchType: Type roots +Info 20 [00:01:23.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/main/node_modules/@types 1 undefined Project: /user/username/projects/myproject/main/tsconfig.json WatchType: Type roots +Info 21 [00:01:24.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/main/tsconfig.json WatchType: Type roots +Info 22 [00:01:25.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/main/tsconfig.json WatchType: Type roots +Info 23 [00:01:26.000] Finishing updateGraphWorker: Project: /user/username/projects/myproject/main/tsconfig.json Version: 1 structureChanged: true structureIsReused:: Not Elapsed:: *ms +Info 24 [00:01:27.000] Project '/user/username/projects/myproject/main/tsconfig.json' (Configured) +Info 25 [00:01:28.000] Files (3) /a/lib/lib.d.ts /user/username/projects/myproject/decls/fns.d.ts /user/username/projects/myproject/main/main.ts @@ -262,16 +262,16 @@ Info 25 [16:01:28.000] Files (3) main.ts Matched by default include pattern '**/*' -Info 26 [16:01:29.000] ----------------------------------------------- -Info 27 [16:01:30.000] Search path: /user/username/projects/myproject/main -Info 28 [16:01:31.000] For info: /user/username/projects/myproject/main/tsconfig.json :: No config files found. -Info 29 [16:01:32.000] Project '/user/username/projects/myproject/main/tsconfig.json' (Configured) -Info 29 [16:01:33.000] Files (3) +Info 26 [00:01:29.000] ----------------------------------------------- +Info 27 [00:01:30.000] Search path: /user/username/projects/myproject/main +Info 28 [00:01:31.000] For info: /user/username/projects/myproject/main/tsconfig.json :: No config files found. +Info 29 [00:01:32.000] Project '/user/username/projects/myproject/main/tsconfig.json' (Configured) +Info 29 [00:01:33.000] Files (3) -Info 29 [16:01:34.000] ----------------------------------------------- -Info 29 [16:01:35.000] Open files: -Info 29 [16:01:36.000] FileName: /user/username/projects/myproject/main/main.ts ProjectRootPath: undefined -Info 29 [16:01:37.000] Projects: /user/username/projects/myproject/main/tsconfig.json +Info 29 [00:01:34.000] ----------------------------------------------- +Info 29 [00:01:35.000] Open files: +Info 29 [00:01:36.000] FileName: /user/username/projects/myproject/main/main.ts ProjectRootPath: undefined +Info 29 [00:01:37.000] Projects: /user/username/projects/myproject/main/tsconfig.json After request PolledWatches:: @@ -298,11 +298,11 @@ FsWatchesRecursive:: /user/username/projects/myproject/decls: {} -Info 29 [16:01:38.000] response: +Info 29 [00:01:38.000] response: { "responseRequired": false } -Info 30 [16:01:39.000] request: +Info 30 [00:01:39.000] request: { "seq": 0, "type": "request", @@ -337,18 +337,18 @@ FsWatchesRecursive:: /user/username/projects/myproject/decls: {} -Info 31 [16:01:40.000] Search path: /user/username/projects/myproject/dependency -Info 32 [16:01:41.000] For info: /user/username/projects/myproject/dependency/FnS.ts :: Config file name: /user/username/projects/myproject/dependency/tsconfig.json -Info 33 [16:01:42.000] Creating configuration project /user/username/projects/myproject/dependency/tsconfig.json -Info 34 [16:01:43.000] Plugins were requested but not running in environment that supports 'require'. Nothing will be loaded -Info 35 [16:01:44.000] Starting updateGraphWorker: Project: /user/username/projects/myproject/dependency/tsconfig.json -Info 36 [16:01:45.000] 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 37 [16:01:46.000] 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 38 [16:01:47.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Type roots -Info 39 [16:01:48.000] 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 40 [16:01:49.000] Finishing updateGraphWorker: Project: /user/username/projects/myproject/dependency/tsconfig.json Version: 1 structureChanged: true structureIsReused:: Not Elapsed:: *ms -Info 41 [16:01:50.000] Project '/user/username/projects/myproject/dependency/tsconfig.json' (Configured) -Info 42 [16:01:51.000] Files (2) +Info 31 [00:01:40.000] Search path: /user/username/projects/myproject/dependency +Info 32 [00:01:41.000] For info: /user/username/projects/myproject/dependency/FnS.ts :: Config file name: /user/username/projects/myproject/dependency/tsconfig.json +Info 33 [00:01:42.000] Creating configuration project /user/username/projects/myproject/dependency/tsconfig.json +Info 34 [00:01:43.000] Plugins were requested but not running in environment that supports 'require'. Nothing will be loaded +Info 35 [00:01:44.000] Starting updateGraphWorker: Project: /user/username/projects/myproject/dependency/tsconfig.json +Info 36 [00:01:45.000] 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 37 [00:01:46.000] 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 38 [00:01:47.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Type roots +Info 39 [00:01:48.000] 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 40 [00:01:49.000] Finishing updateGraphWorker: Project: /user/username/projects/myproject/dependency/tsconfig.json Version: 1 structureChanged: true structureIsReused:: Not Elapsed:: *ms +Info 41 [00:01:50.000] Project '/user/username/projects/myproject/dependency/tsconfig.json' (Configured) +Info 42 [00:01:51.000] Files (2) /a/lib/lib.d.ts /user/username/projects/myproject/dependency/FnS.ts @@ -358,22 +358,22 @@ Info 42 [16:01:51.000] Files (2) FnS.ts Matched by default include pattern '**/*' -Info 43 [16:01:52.000] ----------------------------------------------- -Info 44 [16:01:53.000] Search path: /user/username/projects/myproject/dependency -Info 45 [16:01:54.000] For info: /user/username/projects/myproject/dependency/tsconfig.json :: No config files found. -Info 46 [16:01:55.000] Project '/user/username/projects/myproject/main/tsconfig.json' (Configured) -Info 46 [16:01:56.000] Files (3) - -Info 46 [16:01:57.000] ----------------------------------------------- -Info 46 [16:01:58.000] Project '/user/username/projects/myproject/dependency/tsconfig.json' (Configured) -Info 46 [16:01:59.000] Files (2) - -Info 46 [16:02:00.000] ----------------------------------------------- -Info 46 [16:02:01.000] Open files: -Info 46 [16:02:02.000] FileName: /user/username/projects/myproject/main/main.ts ProjectRootPath: undefined -Info 46 [16:02:03.000] Projects: /user/username/projects/myproject/main/tsconfig.json -Info 46 [16:02:04.000] FileName: /user/username/projects/myproject/dependency/FnS.ts ProjectRootPath: undefined -Info 46 [16:02:05.000] Projects: /user/username/projects/myproject/dependency/tsconfig.json +Info 43 [00:01:52.000] ----------------------------------------------- +Info 44 [00:01:53.000] Search path: /user/username/projects/myproject/dependency +Info 45 [00:01:54.000] For info: /user/username/projects/myproject/dependency/tsconfig.json :: No config files found. +Info 46 [00:01:55.000] Project '/user/username/projects/myproject/main/tsconfig.json' (Configured) +Info 46 [00:01:56.000] Files (3) + +Info 46 [00:01:57.000] ----------------------------------------------- +Info 46 [00:01:58.000] Project '/user/username/projects/myproject/dependency/tsconfig.json' (Configured) +Info 46 [00:01:59.000] Files (2) + +Info 46 [00:02:00.000] ----------------------------------------------- +Info 46 [00:02:01.000] Open files: +Info 46 [00:02:02.000] FileName: /user/username/projects/myproject/main/main.ts ProjectRootPath: undefined +Info 46 [00:02:03.000] Projects: /user/username/projects/myproject/main/tsconfig.json +Info 46 [00:02:04.000] FileName: /user/username/projects/myproject/dependency/FnS.ts ProjectRootPath: undefined +Info 46 [00:02:05.000] Projects: /user/username/projects/myproject/dependency/tsconfig.json After request PolledWatches:: @@ -402,11 +402,11 @@ FsWatchesRecursive:: /user/username/projects/myproject/decls: {} -Info 46 [16:02:06.000] response: +Info 46 [00:02:06.000] response: { "responseRequired": false } -Info 47 [16:02:07.000] request: +Info 47 [00:02:07.000] request: { "seq": 0, "type": "request", @@ -443,11 +443,11 @@ FsWatchesRecursive:: /user/username/projects/myproject/decls: {} -Info 48 [16:02:08.000] Search path: /user/username/projects/myproject/random -Info 49 [16:02:09.000] For info: /user/username/projects/myproject/random/random.ts :: Config file name: /user/username/projects/myproject/random/tsconfig.json -Info 50 [16:02:10.000] Creating configuration project /user/username/projects/myproject/random/tsconfig.json -Info 51 [16:02:11.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/random/tsconfig.json 2000 undefined Project: /user/username/projects/myproject/random/tsconfig.json WatchType: Config file -Info 52 [16:02:12.000] Config: /user/username/projects/myproject/random/tsconfig.json : { +Info 48 [00:02:08.000] Search path: /user/username/projects/myproject/random +Info 49 [00:02:09.000] For info: /user/username/projects/myproject/random/random.ts :: Config file name: /user/username/projects/myproject/random/tsconfig.json +Info 50 [00:02:10.000] Creating configuration project /user/username/projects/myproject/random/tsconfig.json +Info 51 [00:02:11.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/random/tsconfig.json 2000 undefined Project: /user/username/projects/myproject/random/tsconfig.json WatchType: Config file +Info 52 [00:02:12.000] Config: /user/username/projects/myproject/random/tsconfig.json : { "rootNames": [ "/user/username/projects/myproject/random/random.ts" ], @@ -455,17 +455,17 @@ Info 52 [16:02:12.000] Config: /user/username/projects/myproject/random/tsconf "configFilePath": "/user/username/projects/myproject/random/tsconfig.json" } } -Info 53 [16:02:13.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/random 1 undefined Config: /user/username/projects/myproject/random/tsconfig.json WatchType: Wild card directory -Info 54 [16:02:14.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/random 1 undefined Config: /user/username/projects/myproject/random/tsconfig.json WatchType: Wild card directory -Info 55 [16:02:15.000] Plugins were requested but not running in environment that supports 'require'. Nothing will be loaded -Info 56 [16:02:16.000] Starting updateGraphWorker: Project: /user/username/projects/myproject/random/tsconfig.json -Info 57 [16:02:17.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/random/node_modules/@types 1 undefined Project: /user/username/projects/myproject/random/tsconfig.json WatchType: Type roots -Info 58 [16:02:18.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/random/node_modules/@types 1 undefined Project: /user/username/projects/myproject/random/tsconfig.json WatchType: Type roots -Info 59 [16:02:19.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/random/tsconfig.json WatchType: Type roots -Info 60 [16:02:20.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/random/tsconfig.json WatchType: Type roots -Info 61 [16:02:21.000] Finishing updateGraphWorker: Project: /user/username/projects/myproject/random/tsconfig.json Version: 1 structureChanged: true structureIsReused:: Not Elapsed:: *ms -Info 62 [16:02:22.000] Project '/user/username/projects/myproject/random/tsconfig.json' (Configured) -Info 63 [16:02:23.000] Files (2) +Info 53 [00:02:13.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/random 1 undefined Config: /user/username/projects/myproject/random/tsconfig.json WatchType: Wild card directory +Info 54 [00:02:14.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/random 1 undefined Config: /user/username/projects/myproject/random/tsconfig.json WatchType: Wild card directory +Info 55 [00:02:15.000] Plugins were requested but not running in environment that supports 'require'. Nothing will be loaded +Info 56 [00:02:16.000] Starting updateGraphWorker: Project: /user/username/projects/myproject/random/tsconfig.json +Info 57 [00:02:17.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/random/node_modules/@types 1 undefined Project: /user/username/projects/myproject/random/tsconfig.json WatchType: Type roots +Info 58 [00:02:18.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/random/node_modules/@types 1 undefined Project: /user/username/projects/myproject/random/tsconfig.json WatchType: Type roots +Info 59 [00:02:19.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/random/tsconfig.json WatchType: Type roots +Info 60 [00:02:20.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/random/tsconfig.json WatchType: Type roots +Info 61 [00:02:21.000] Finishing updateGraphWorker: Project: /user/username/projects/myproject/random/tsconfig.json Version: 1 structureChanged: true structureIsReused:: Not Elapsed:: *ms +Info 62 [00:02:22.000] Project '/user/username/projects/myproject/random/tsconfig.json' (Configured) +Info 63 [00:02:23.000] Files (2) /a/lib/lib.d.ts /user/username/projects/myproject/random/random.ts @@ -475,26 +475,26 @@ Info 63 [16:02:23.000] Files (2) random.ts Matched by default include pattern '**/*' -Info 64 [16:02:24.000] ----------------------------------------------- -Info 65 [16:02:25.000] Project '/user/username/projects/myproject/main/tsconfig.json' (Configured) -Info 65 [16:02:26.000] Files (3) - -Info 65 [16:02:27.000] ----------------------------------------------- -Info 65 [16:02:28.000] Project '/user/username/projects/myproject/dependency/tsconfig.json' (Configured) -Info 65 [16:02:29.000] Files (2) - -Info 65 [16:02:30.000] ----------------------------------------------- -Info 65 [16:02:31.000] Project '/user/username/projects/myproject/random/tsconfig.json' (Configured) -Info 65 [16:02:32.000] Files (2) - -Info 65 [16:02:33.000] ----------------------------------------------- -Info 65 [16:02:34.000] Open files: -Info 65 [16:02:35.000] FileName: /user/username/projects/myproject/main/main.ts ProjectRootPath: undefined -Info 65 [16:02:36.000] Projects: /user/username/projects/myproject/main/tsconfig.json -Info 65 [16:02:37.000] FileName: /user/username/projects/myproject/dependency/FnS.ts ProjectRootPath: undefined -Info 65 [16:02:38.000] Projects: /user/username/projects/myproject/dependency/tsconfig.json -Info 65 [16:02:39.000] FileName: /user/username/projects/myproject/random/random.ts ProjectRootPath: undefined -Info 65 [16:02:40.000] Projects: /user/username/projects/myproject/random/tsconfig.json +Info 64 [00:02:24.000] ----------------------------------------------- +Info 65 [00:02:25.000] Project '/user/username/projects/myproject/main/tsconfig.json' (Configured) +Info 65 [00:02:26.000] Files (3) + +Info 65 [00:02:27.000] ----------------------------------------------- +Info 65 [00:02:28.000] Project '/user/username/projects/myproject/dependency/tsconfig.json' (Configured) +Info 65 [00:02:29.000] Files (2) + +Info 65 [00:02:30.000] ----------------------------------------------- +Info 65 [00:02:31.000] Project '/user/username/projects/myproject/random/tsconfig.json' (Configured) +Info 65 [00:02:32.000] Files (2) + +Info 65 [00:02:33.000] ----------------------------------------------- +Info 65 [00:02:34.000] Open files: +Info 65 [00:02:35.000] FileName: /user/username/projects/myproject/main/main.ts ProjectRootPath: undefined +Info 65 [00:02:36.000] Projects: /user/username/projects/myproject/main/tsconfig.json +Info 65 [00:02:37.000] FileName: /user/username/projects/myproject/dependency/FnS.ts ProjectRootPath: undefined +Info 65 [00:02:38.000] Projects: /user/username/projects/myproject/dependency/tsconfig.json +Info 65 [00:02:39.000] FileName: /user/username/projects/myproject/random/random.ts ProjectRootPath: undefined +Info 65 [00:02:40.000] Projects: /user/username/projects/myproject/random/tsconfig.json After request PolledWatches:: @@ -529,11 +529,11 @@ FsWatchesRecursive:: /user/username/projects/myproject/random: {} -Info 65 [16:02:41.000] response: +Info 65 [00:02:41.000] response: { "responseRequired": false } -Info 66 [16:02:42.000] request: +Info 66 [00:02:42.000] request: { "command": "definitionAndBoundSpan", "arguments": { @@ -578,7 +578,7 @@ FsWatchesRecursive:: /user/username/projects/myproject/random: {} -Info 67 [16:02:43.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/decls/FnS.d.ts.map 500 undefined WatchType: Closed Script info +Info 67 [00:02:43.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/decls/FnS.d.ts.map 500 undefined WatchType: Closed Script info After request PolledWatches:: @@ -615,7 +615,7 @@ FsWatchesRecursive:: /user/username/projects/myproject/random: {} -Info 68 [16:02:44.000] response: +Info 68 [00:02:44.000] response: { "response": { "definitions": [ @@ -652,7 +652,7 @@ Info 68 [16:02:44.000] response: }, "responseRequired": true } -Info 69 [16:02:45.000] request: +Info 69 [00:02:45.000] request: { "command": "rename", "arguments": { @@ -699,8 +699,8 @@ FsWatchesRecursive:: /user/username/projects/myproject/random: {} -Info 70 [16:02:46.000] Search path: /user/username/projects/myproject/dependency -Info 71 [16:02:47.000] For info: /user/username/projects/myproject/dependency/FnS.ts :: Config file name: /user/username/projects/myproject/dependency/tsconfig.json +Info 70 [00:02:46.000] Search path: /user/username/projects/myproject/dependency +Info 71 [00:02:47.000] For info: /user/username/projects/myproject/dependency/FnS.ts :: Config file name: /user/username/projects/myproject/dependency/tsconfig.json After request PolledWatches:: @@ -737,7 +737,7 @@ FsWatchesRecursive:: /user/username/projects/myproject/random: {} -Info 72 [16:02:48.000] response: +Info 72 [00:02:48.000] response: { "response": { "info": { @@ -818,7 +818,7 @@ Info 72 [16:02:48.000] response: }, "responseRequired": true } -Info 73 [16:02:49.000] request: +Info 73 [00:02:49.000] request: { "command": "change", "arguments": { @@ -904,11 +904,11 @@ FsWatchesRecursive:: /user/username/projects/myproject/random: {} -Info 74 [16:02:50.000] response: +Info 74 [00:02:50.000] response: { "responseRequired": false } -Info 75 [16:02:51.000] request: +Info 75 [00:02:51.000] request: { "command": "change", "arguments": { @@ -994,7 +994,7 @@ FsWatchesRecursive:: /user/username/projects/myproject/random: {} -Info 76 [16:02:52.000] response: +Info 76 [00:02:52.000] response: { "responseRequired": false } @@ -1070,7 +1070,7 @@ FsWatchesRecursive:: /user/username/projects/myproject/random: {} -Info 77 [16:02:53.000] request: +Info 77 [00:02:53.000] request: { "command": "definitionAndBoundSpan", "arguments": { @@ -1117,9 +1117,9 @@ FsWatchesRecursive:: /user/username/projects/myproject/random: {} -Info 78 [16:02:54.000] Starting updateGraphWorker: Project: /user/username/projects/myproject/main/tsconfig.json -Info 79 [16:02:55.000] Finishing updateGraphWorker: Project: /user/username/projects/myproject/main/tsconfig.json Version: 2 structureChanged: false structureIsReused:: Completely Elapsed:: *ms -Info 80 [16:02:56.000] Different program with same set of files +Info 78 [00:02:54.000] Starting updateGraphWorker: Project: /user/username/projects/myproject/main/tsconfig.json +Info 79 [00:02:55.000] Finishing updateGraphWorker: Project: /user/username/projects/myproject/main/tsconfig.json Version: 2 structureChanged: false structureIsReused:: Completely Elapsed:: *ms +Info 80 [00:02:56.000] Different program with same set of files After request PolledWatches:: @@ -1156,7 +1156,7 @@ FsWatchesRecursive:: /user/username/projects/myproject/random: {} -Info 81 [16:02:57.000] response: +Info 81 [00:02:57.000] response: { "response": { "definitions": [ @@ -1193,7 +1193,7 @@ Info 81 [16:02:57.000] response: }, "responseRequired": true } -Info 82 [16:02:58.000] request: +Info 82 [00:02:58.000] request: { "command": "definitionAndBoundSpan", "arguments": { @@ -1276,7 +1276,7 @@ FsWatchesRecursive:: /user/username/projects/myproject/random: {} -Info 83 [16:02:59.000] response: +Info 83 [00:02:59.000] response: { "response": { "definitions": [ @@ -1313,7 +1313,7 @@ Info 83 [16:02:59.000] response: }, "responseRequired": true } -Info 84 [16:03:00.000] request: +Info 84 [00:03:00.000] request: { "command": "definitionAndBoundSpan", "arguments": { @@ -1396,7 +1396,7 @@ FsWatchesRecursive:: /user/username/projects/myproject/random: {} -Info 85 [16:03:01.000] response: +Info 85 [00:03:01.000] response: { "response": { "definitions": [ @@ -1433,7 +1433,7 @@ Info 85 [16:03:01.000] response: }, "responseRequired": true } -Info 86 [16:03:02.000] request: +Info 86 [00:03:02.000] request: { "command": "definitionAndBoundSpan", "arguments": { @@ -1516,7 +1516,7 @@ FsWatchesRecursive:: /user/username/projects/myproject/random: {} -Info 87 [16:03:03.000] response: +Info 87 [00:03:03.000] response: { "response": { "definitions": [ @@ -1553,7 +1553,7 @@ Info 87 [16:03:03.000] response: }, "responseRequired": true } -Info 88 [16:03:04.000] request: +Info 88 [00:03:04.000] request: { "command": "definitionAndBoundSpan", "arguments": { @@ -1636,7 +1636,7 @@ FsWatchesRecursive:: /user/username/projects/myproject/random: {} -Info 89 [16:03:05.000] response: +Info 89 [00:03:05.000] response: { "response": { "definitions": [ @@ -1673,7 +1673,7 @@ Info 89 [16:03:05.000] response: }, "responseRequired": true } -Info 90 [16:03:06.000] request: +Info 90 [00:03:06.000] request: { "command": "rename", "arguments": { @@ -1720,11 +1720,11 @@ FsWatchesRecursive:: /user/username/projects/myproject/random: {} -Info 91 [16:03:07.000] Starting updateGraphWorker: Project: /user/username/projects/myproject/dependency/tsconfig.json -Info 92 [16:03:08.000] Finishing updateGraphWorker: Project: /user/username/projects/myproject/dependency/tsconfig.json Version: 2 structureChanged: false structureIsReused:: Completely Elapsed:: *ms -Info 93 [16:03:09.000] Different program with same set of files -Info 94 [16:03:10.000] Search path: /user/username/projects/myproject/dependency -Info 95 [16:03:11.000] For info: /user/username/projects/myproject/dependency/FnS.ts :: Config file name: /user/username/projects/myproject/dependency/tsconfig.json +Info 91 [00:03:07.000] Starting updateGraphWorker: Project: /user/username/projects/myproject/dependency/tsconfig.json +Info 92 [00:03:08.000] Finishing updateGraphWorker: Project: /user/username/projects/myproject/dependency/tsconfig.json Version: 2 structureChanged: false structureIsReused:: Completely Elapsed:: *ms +Info 93 [00:03:09.000] Different program with same set of files +Info 94 [00:03:10.000] Search path: /user/username/projects/myproject/dependency +Info 95 [00:03:11.000] For info: /user/username/projects/myproject/dependency/FnS.ts :: Config file name: /user/username/projects/myproject/dependency/tsconfig.json After request PolledWatches:: @@ -1761,7 +1761,7 @@ FsWatchesRecursive:: /user/username/projects/myproject/random: {} -Info 96 [16:03:12.000] response: +Info 96 [00:03:12.000] response: { "response": { "info": { @@ -1842,7 +1842,7 @@ Info 96 [16:03:12.000] response: }, "responseRequired": true } -Info 97 [16:03:13.000] request: +Info 97 [00:03:13.000] request: { "command": "rename", "arguments": { @@ -1889,8 +1889,8 @@ FsWatchesRecursive:: /user/username/projects/myproject/random: {} -Info 98 [16:03:14.000] Search path: /user/username/projects/myproject/dependency -Info 99 [16:03:15.000] For info: /user/username/projects/myproject/dependency/FnS.ts :: Config file name: /user/username/projects/myproject/dependency/tsconfig.json +Info 98 [00:03:14.000] Search path: /user/username/projects/myproject/dependency +Info 99 [00:03:15.000] For info: /user/username/projects/myproject/dependency/FnS.ts :: Config file name: /user/username/projects/myproject/dependency/tsconfig.json After request PolledWatches:: @@ -1927,7 +1927,7 @@ FsWatchesRecursive:: /user/username/projects/myproject/random: {} -Info 100 [16:03:16.000] response: +Info 100 [00:03:16.000] response: { "response": { "info": { @@ -2008,7 +2008,7 @@ Info 100 [16:03:16.000] response: }, "responseRequired": true } -Info 101 [16:03:17.000] request: +Info 101 [00:03:17.000] request: { "command": "rename", "arguments": { @@ -2055,8 +2055,8 @@ FsWatchesRecursive:: /user/username/projects/myproject/random: {} -Info 102 [16:03:18.000] Search path: /user/username/projects/myproject/dependency -Info 103 [16:03:19.000] For info: /user/username/projects/myproject/dependency/FnS.ts :: Config file name: /user/username/projects/myproject/dependency/tsconfig.json +Info 102 [00:03:18.000] Search path: /user/username/projects/myproject/dependency +Info 103 [00:03:19.000] For info: /user/username/projects/myproject/dependency/FnS.ts :: Config file name: /user/username/projects/myproject/dependency/tsconfig.json After request PolledWatches:: @@ -2093,7 +2093,7 @@ FsWatchesRecursive:: /user/username/projects/myproject/random: {} -Info 104 [16:03:20.000] response: +Info 104 [00:03:20.000] response: { "response": { "info": { @@ -2174,7 +2174,7 @@ Info 104 [16:03:20.000] response: }, "responseRequired": true } -Info 105 [16:03:21.000] request: +Info 105 [00:03:21.000] request: { "command": "rename", "arguments": { @@ -2221,8 +2221,8 @@ FsWatchesRecursive:: /user/username/projects/myproject/random: {} -Info 106 [16:03:22.000] Search path: /user/username/projects/myproject/dependency -Info 107 [16:03:23.000] For info: /user/username/projects/myproject/dependency/FnS.ts :: Config file name: /user/username/projects/myproject/dependency/tsconfig.json +Info 106 [00:03:22.000] Search path: /user/username/projects/myproject/dependency +Info 107 [00:03:23.000] For info: /user/username/projects/myproject/dependency/FnS.ts :: Config file name: /user/username/projects/myproject/dependency/tsconfig.json After request PolledWatches:: @@ -2259,7 +2259,7 @@ FsWatchesRecursive:: /user/username/projects/myproject/random: {} -Info 108 [16:03:24.000] response: +Info 108 [00:03:24.000] response: { "response": { "info": { @@ -2340,7 +2340,7 @@ Info 108 [16:03:24.000] response: }, "responseRequired": true } -Info 109 [16:03:25.000] request: +Info 109 [00:03:25.000] request: { "command": "rename", "arguments": { @@ -2387,8 +2387,8 @@ FsWatchesRecursive:: /user/username/projects/myproject/random: {} -Info 110 [16:03:26.000] Search path: /user/username/projects/myproject/dependency -Info 111 [16:03:27.000] For info: /user/username/projects/myproject/dependency/FnS.ts :: Config file name: /user/username/projects/myproject/dependency/tsconfig.json +Info 110 [00:03:26.000] Search path: /user/username/projects/myproject/dependency +Info 111 [00:03:27.000] For info: /user/username/projects/myproject/dependency/FnS.ts :: Config file name: /user/username/projects/myproject/dependency/tsconfig.json After request PolledWatches:: @@ -2425,7 +2425,7 @@ FsWatchesRecursive:: /user/username/projects/myproject/random: {} -Info 112 [16:03:28.000] response: +Info 112 [00:03:28.000] response: { "response": { "info": { 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 69b8b65a1dd5c..90be3449e9bb3 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 @@ -1,5 +1,5 @@ -Info 0 [16:01:03.000] Provided types map file "/a/lib/typesMap.json" doesn't exist -Info 1 [16:01:04.000] request: +Info 0 [00:01:03.000] Provided types map file "/a/lib/typesMap.json" doesn't exist +Info 1 [00:01:04.000] request: { "seq": 0, "type": "request", @@ -200,11 +200,11 @@ FsWatches:: FsWatchesRecursive:: -Info 2 [16:01:05.000] Search path: /user/username/projects/myproject/main -Info 3 [16:01:06.000] For info: /user/username/projects/myproject/main/main.ts :: Config file name: /user/username/projects/myproject/main/tsconfig.json -Info 4 [16:01:07.000] Creating configuration project /user/username/projects/myproject/main/tsconfig.json -Info 5 [16:01:08.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/main/tsconfig.json 2000 undefined Project: /user/username/projects/myproject/main/tsconfig.json WatchType: Config file -Info 6 [16:01:09.000] Config: /user/username/projects/myproject/main/tsconfig.json : { +Info 2 [00:01:05.000] Search path: /user/username/projects/myproject/main +Info 3 [00:01:06.000] For info: /user/username/projects/myproject/main/main.ts :: Config file name: /user/username/projects/myproject/main/tsconfig.json +Info 4 [00:01:07.000] Creating configuration project /user/username/projects/myproject/main/tsconfig.json +Info 5 [00:01:08.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/main/tsconfig.json 2000 undefined Project: /user/username/projects/myproject/main/tsconfig.json WatchType: Config file +Info 6 [00:01:09.000] Config: /user/username/projects/myproject/main/tsconfig.json : { "rootNames": [ "/user/username/projects/myproject/main/main.ts" ], @@ -221,11 +221,11 @@ Info 6 [16:01:09.000] Config: /user/username/projects/myproject/main/tsconfig } ] } -Info 7 [16:01:10.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/main 1 undefined Config: /user/username/projects/myproject/main/tsconfig.json WatchType: Wild card directory -Info 8 [16:01:11.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/main 1 undefined Config: /user/username/projects/myproject/main/tsconfig.json WatchType: Wild card directory -Info 9 [16:01:12.000] Plugins were requested but not running in environment that supports 'require'. Nothing will be loaded -Info 10 [16:01:13.000] Starting updateGraphWorker: Project: /user/username/projects/myproject/main/tsconfig.json -Info 11 [16:01:14.000] Config: /user/username/projects/myproject/dependency/tsconfig.json : { +Info 7 [00:01:10.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/main 1 undefined Config: /user/username/projects/myproject/main/tsconfig.json WatchType: Wild card directory +Info 8 [00:01:11.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/main 1 undefined Config: /user/username/projects/myproject/main/tsconfig.json WatchType: Wild card directory +Info 9 [00:01:12.000] Plugins were requested but not running in environment that supports 'require'. Nothing will be loaded +Info 10 [00:01:13.000] Starting updateGraphWorker: Project: /user/username/projects/myproject/main/tsconfig.json +Info 11 [00:01:14.000] Config: /user/username/projects/myproject/dependency/tsconfig.json : { "rootNames": [ "/user/username/projects/myproject/dependency/FnS.ts" ], @@ -236,20 +236,20 @@ Info 11 [16:01:14.000] Config: /user/username/projects/myproject/dependency/ts "configFilePath": "/user/username/projects/myproject/dependency/tsconfig.json" } } -Info 12 [16:01:15.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/dependency/tsconfig.json 2000 undefined Project: /user/username/projects/myproject/main/tsconfig.json WatchType: Config file -Info 13 [16:01:16.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/dependency 1 undefined Config: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Wild card directory -Info 14 [16:01:17.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/dependency 1 undefined Config: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Wild card directory -Info 15 [16:01:18.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/decls 1 undefined Project: /user/username/projects/myproject/main/tsconfig.json WatchType: Failed Lookup Locations -Info 16 [16:01:19.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/decls 1 undefined Project: /user/username/projects/myproject/main/tsconfig.json WatchType: Failed Lookup Locations -Info 17 [16:01:20.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/decls/fns.d.ts 500 undefined WatchType: Closed Script info -Info 18 [16:01:21.000] FileWatcher:: Added:: WatchInfo: /a/lib/lib.d.ts 500 undefined WatchType: Closed Script info -Info 19 [16:01:22.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/main/node_modules/@types 1 undefined Project: /user/username/projects/myproject/main/tsconfig.json WatchType: Type roots -Info 20 [16:01:23.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/main/node_modules/@types 1 undefined Project: /user/username/projects/myproject/main/tsconfig.json WatchType: Type roots -Info 21 [16:01:24.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/main/tsconfig.json WatchType: Type roots -Info 22 [16:01:25.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/main/tsconfig.json WatchType: Type roots -Info 23 [16:01:26.000] Finishing updateGraphWorker: Project: /user/username/projects/myproject/main/tsconfig.json Version: 1 structureChanged: true structureIsReused:: Not Elapsed:: *ms -Info 24 [16:01:27.000] Project '/user/username/projects/myproject/main/tsconfig.json' (Configured) -Info 25 [16:01:28.000] Files (3) +Info 12 [00:01:15.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/dependency/tsconfig.json 2000 undefined Project: /user/username/projects/myproject/main/tsconfig.json WatchType: Config file +Info 13 [00:01:16.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/dependency 1 undefined Config: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Wild card directory +Info 14 [00:01:17.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/dependency 1 undefined Config: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Wild card directory +Info 15 [00:01:18.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/decls 1 undefined Project: /user/username/projects/myproject/main/tsconfig.json WatchType: Failed Lookup Locations +Info 16 [00:01:19.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/decls 1 undefined Project: /user/username/projects/myproject/main/tsconfig.json WatchType: Failed Lookup Locations +Info 17 [00:01:20.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/decls/fns.d.ts 500 undefined WatchType: Closed Script info +Info 18 [00:01:21.000] FileWatcher:: Added:: WatchInfo: /a/lib/lib.d.ts 500 undefined WatchType: Closed Script info +Info 19 [00:01:22.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/main/node_modules/@types 1 undefined Project: /user/username/projects/myproject/main/tsconfig.json WatchType: Type roots +Info 20 [00:01:23.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/main/node_modules/@types 1 undefined Project: /user/username/projects/myproject/main/tsconfig.json WatchType: Type roots +Info 21 [00:01:24.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/main/tsconfig.json WatchType: Type roots +Info 22 [00:01:25.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/main/tsconfig.json WatchType: Type roots +Info 23 [00:01:26.000] Finishing updateGraphWorker: Project: /user/username/projects/myproject/main/tsconfig.json Version: 1 structureChanged: true structureIsReused:: Not Elapsed:: *ms +Info 24 [00:01:27.000] Project '/user/username/projects/myproject/main/tsconfig.json' (Configured) +Info 25 [00:01:28.000] Files (3) /a/lib/lib.d.ts /user/username/projects/myproject/decls/fns.d.ts /user/username/projects/myproject/main/main.ts @@ -262,16 +262,16 @@ Info 25 [16:01:28.000] Files (3) main.ts Matched by default include pattern '**/*' -Info 26 [16:01:29.000] ----------------------------------------------- -Info 27 [16:01:30.000] Search path: /user/username/projects/myproject/main -Info 28 [16:01:31.000] For info: /user/username/projects/myproject/main/tsconfig.json :: No config files found. -Info 29 [16:01:32.000] Project '/user/username/projects/myproject/main/tsconfig.json' (Configured) -Info 29 [16:01:33.000] Files (3) +Info 26 [00:01:29.000] ----------------------------------------------- +Info 27 [00:01:30.000] Search path: /user/username/projects/myproject/main +Info 28 [00:01:31.000] For info: /user/username/projects/myproject/main/tsconfig.json :: No config files found. +Info 29 [00:01:32.000] Project '/user/username/projects/myproject/main/tsconfig.json' (Configured) +Info 29 [00:01:33.000] Files (3) -Info 29 [16:01:34.000] ----------------------------------------------- -Info 29 [16:01:35.000] Open files: -Info 29 [16:01:36.000] FileName: /user/username/projects/myproject/main/main.ts ProjectRootPath: undefined -Info 29 [16:01:37.000] Projects: /user/username/projects/myproject/main/tsconfig.json +Info 29 [00:01:34.000] ----------------------------------------------- +Info 29 [00:01:35.000] Open files: +Info 29 [00:01:36.000] FileName: /user/username/projects/myproject/main/main.ts ProjectRootPath: undefined +Info 29 [00:01:37.000] Projects: /user/username/projects/myproject/main/tsconfig.json After request PolledWatches:: @@ -298,11 +298,11 @@ FsWatchesRecursive:: /user/username/projects/myproject/decls: {} -Info 29 [16:01:38.000] response: +Info 29 [00:01:38.000] response: { "responseRequired": false } -Info 30 [16:01:39.000] request: +Info 30 [00:01:39.000] request: { "seq": 0, "type": "request", @@ -337,18 +337,18 @@ FsWatchesRecursive:: /user/username/projects/myproject/decls: {} -Info 31 [16:01:40.000] Search path: /user/username/projects/myproject/dependency -Info 32 [16:01:41.000] For info: /user/username/projects/myproject/dependency/FnS.ts :: Config file name: /user/username/projects/myproject/dependency/tsconfig.json -Info 33 [16:01:42.000] Creating configuration project /user/username/projects/myproject/dependency/tsconfig.json -Info 34 [16:01:43.000] Plugins were requested but not running in environment that supports 'require'. Nothing will be loaded -Info 35 [16:01:44.000] Starting updateGraphWorker: Project: /user/username/projects/myproject/dependency/tsconfig.json -Info 36 [16:01:45.000] 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 37 [16:01:46.000] 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 38 [16:01:47.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Type roots -Info 39 [16:01:48.000] 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 40 [16:01:49.000] Finishing updateGraphWorker: Project: /user/username/projects/myproject/dependency/tsconfig.json Version: 1 structureChanged: true structureIsReused:: Not Elapsed:: *ms -Info 41 [16:01:50.000] Project '/user/username/projects/myproject/dependency/tsconfig.json' (Configured) -Info 42 [16:01:51.000] Files (2) +Info 31 [00:01:40.000] Search path: /user/username/projects/myproject/dependency +Info 32 [00:01:41.000] For info: /user/username/projects/myproject/dependency/FnS.ts :: Config file name: /user/username/projects/myproject/dependency/tsconfig.json +Info 33 [00:01:42.000] Creating configuration project /user/username/projects/myproject/dependency/tsconfig.json +Info 34 [00:01:43.000] Plugins were requested but not running in environment that supports 'require'. Nothing will be loaded +Info 35 [00:01:44.000] Starting updateGraphWorker: Project: /user/username/projects/myproject/dependency/tsconfig.json +Info 36 [00:01:45.000] 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 37 [00:01:46.000] 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 38 [00:01:47.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Type roots +Info 39 [00:01:48.000] 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 40 [00:01:49.000] Finishing updateGraphWorker: Project: /user/username/projects/myproject/dependency/tsconfig.json Version: 1 structureChanged: true structureIsReused:: Not Elapsed:: *ms +Info 41 [00:01:50.000] Project '/user/username/projects/myproject/dependency/tsconfig.json' (Configured) +Info 42 [00:01:51.000] Files (2) /a/lib/lib.d.ts /user/username/projects/myproject/dependency/FnS.ts @@ -358,22 +358,22 @@ Info 42 [16:01:51.000] Files (2) FnS.ts Matched by default include pattern '**/*' -Info 43 [16:01:52.000] ----------------------------------------------- -Info 44 [16:01:53.000] Search path: /user/username/projects/myproject/dependency -Info 45 [16:01:54.000] For info: /user/username/projects/myproject/dependency/tsconfig.json :: No config files found. -Info 46 [16:01:55.000] Project '/user/username/projects/myproject/main/tsconfig.json' (Configured) -Info 46 [16:01:56.000] Files (3) - -Info 46 [16:01:57.000] ----------------------------------------------- -Info 46 [16:01:58.000] Project '/user/username/projects/myproject/dependency/tsconfig.json' (Configured) -Info 46 [16:01:59.000] Files (2) - -Info 46 [16:02:00.000] ----------------------------------------------- -Info 46 [16:02:01.000] Open files: -Info 46 [16:02:02.000] FileName: /user/username/projects/myproject/main/main.ts ProjectRootPath: undefined -Info 46 [16:02:03.000] Projects: /user/username/projects/myproject/main/tsconfig.json -Info 46 [16:02:04.000] FileName: /user/username/projects/myproject/dependency/FnS.ts ProjectRootPath: undefined -Info 46 [16:02:05.000] Projects: /user/username/projects/myproject/dependency/tsconfig.json +Info 43 [00:01:52.000] ----------------------------------------------- +Info 44 [00:01:53.000] Search path: /user/username/projects/myproject/dependency +Info 45 [00:01:54.000] For info: /user/username/projects/myproject/dependency/tsconfig.json :: No config files found. +Info 46 [00:01:55.000] Project '/user/username/projects/myproject/main/tsconfig.json' (Configured) +Info 46 [00:01:56.000] Files (3) + +Info 46 [00:01:57.000] ----------------------------------------------- +Info 46 [00:01:58.000] Project '/user/username/projects/myproject/dependency/tsconfig.json' (Configured) +Info 46 [00:01:59.000] Files (2) + +Info 46 [00:02:00.000] ----------------------------------------------- +Info 46 [00:02:01.000] Open files: +Info 46 [00:02:02.000] FileName: /user/username/projects/myproject/main/main.ts ProjectRootPath: undefined +Info 46 [00:02:03.000] Projects: /user/username/projects/myproject/main/tsconfig.json +Info 46 [00:02:04.000] FileName: /user/username/projects/myproject/dependency/FnS.ts ProjectRootPath: undefined +Info 46 [00:02:05.000] Projects: /user/username/projects/myproject/dependency/tsconfig.json After request PolledWatches:: @@ -402,11 +402,11 @@ FsWatchesRecursive:: /user/username/projects/myproject/decls: {} -Info 46 [16:02:06.000] response: +Info 46 [00:02:06.000] response: { "responseRequired": false } -Info 47 [16:02:07.000] request: +Info 47 [00:02:07.000] request: { "seq": 0, "type": "request", @@ -443,11 +443,11 @@ FsWatchesRecursive:: /user/username/projects/myproject/decls: {} -Info 48 [16:02:08.000] Search path: /user/username/projects/myproject/random -Info 49 [16:02:09.000] For info: /user/username/projects/myproject/random/random.ts :: Config file name: /user/username/projects/myproject/random/tsconfig.json -Info 50 [16:02:10.000] Creating configuration project /user/username/projects/myproject/random/tsconfig.json -Info 51 [16:02:11.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/random/tsconfig.json 2000 undefined Project: /user/username/projects/myproject/random/tsconfig.json WatchType: Config file -Info 52 [16:02:12.000] Config: /user/username/projects/myproject/random/tsconfig.json : { +Info 48 [00:02:08.000] Search path: /user/username/projects/myproject/random +Info 49 [00:02:09.000] For info: /user/username/projects/myproject/random/random.ts :: Config file name: /user/username/projects/myproject/random/tsconfig.json +Info 50 [00:02:10.000] Creating configuration project /user/username/projects/myproject/random/tsconfig.json +Info 51 [00:02:11.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/random/tsconfig.json 2000 undefined Project: /user/username/projects/myproject/random/tsconfig.json WatchType: Config file +Info 52 [00:02:12.000] Config: /user/username/projects/myproject/random/tsconfig.json : { "rootNames": [ "/user/username/projects/myproject/random/random.ts" ], @@ -455,17 +455,17 @@ Info 52 [16:02:12.000] Config: /user/username/projects/myproject/random/tsconf "configFilePath": "/user/username/projects/myproject/random/tsconfig.json" } } -Info 53 [16:02:13.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/random 1 undefined Config: /user/username/projects/myproject/random/tsconfig.json WatchType: Wild card directory -Info 54 [16:02:14.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/random 1 undefined Config: /user/username/projects/myproject/random/tsconfig.json WatchType: Wild card directory -Info 55 [16:02:15.000] Plugins were requested but not running in environment that supports 'require'. Nothing will be loaded -Info 56 [16:02:16.000] Starting updateGraphWorker: Project: /user/username/projects/myproject/random/tsconfig.json -Info 57 [16:02:17.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/random/node_modules/@types 1 undefined Project: /user/username/projects/myproject/random/tsconfig.json WatchType: Type roots -Info 58 [16:02:18.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/random/node_modules/@types 1 undefined Project: /user/username/projects/myproject/random/tsconfig.json WatchType: Type roots -Info 59 [16:02:19.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/random/tsconfig.json WatchType: Type roots -Info 60 [16:02:20.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/random/tsconfig.json WatchType: Type roots -Info 61 [16:02:21.000] Finishing updateGraphWorker: Project: /user/username/projects/myproject/random/tsconfig.json Version: 1 structureChanged: true structureIsReused:: Not Elapsed:: *ms -Info 62 [16:02:22.000] Project '/user/username/projects/myproject/random/tsconfig.json' (Configured) -Info 63 [16:02:23.000] Files (2) +Info 53 [00:02:13.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/random 1 undefined Config: /user/username/projects/myproject/random/tsconfig.json WatchType: Wild card directory +Info 54 [00:02:14.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/random 1 undefined Config: /user/username/projects/myproject/random/tsconfig.json WatchType: Wild card directory +Info 55 [00:02:15.000] Plugins were requested but not running in environment that supports 'require'. Nothing will be loaded +Info 56 [00:02:16.000] Starting updateGraphWorker: Project: /user/username/projects/myproject/random/tsconfig.json +Info 57 [00:02:17.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/random/node_modules/@types 1 undefined Project: /user/username/projects/myproject/random/tsconfig.json WatchType: Type roots +Info 58 [00:02:18.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/random/node_modules/@types 1 undefined Project: /user/username/projects/myproject/random/tsconfig.json WatchType: Type roots +Info 59 [00:02:19.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/random/tsconfig.json WatchType: Type roots +Info 60 [00:02:20.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/random/tsconfig.json WatchType: Type roots +Info 61 [00:02:21.000] Finishing updateGraphWorker: Project: /user/username/projects/myproject/random/tsconfig.json Version: 1 structureChanged: true structureIsReused:: Not Elapsed:: *ms +Info 62 [00:02:22.000] Project '/user/username/projects/myproject/random/tsconfig.json' (Configured) +Info 63 [00:02:23.000] Files (2) /a/lib/lib.d.ts /user/username/projects/myproject/random/random.ts @@ -475,26 +475,26 @@ Info 63 [16:02:23.000] Files (2) random.ts Matched by default include pattern '**/*' -Info 64 [16:02:24.000] ----------------------------------------------- -Info 65 [16:02:25.000] Project '/user/username/projects/myproject/main/tsconfig.json' (Configured) -Info 65 [16:02:26.000] Files (3) - -Info 65 [16:02:27.000] ----------------------------------------------- -Info 65 [16:02:28.000] Project '/user/username/projects/myproject/dependency/tsconfig.json' (Configured) -Info 65 [16:02:29.000] Files (2) - -Info 65 [16:02:30.000] ----------------------------------------------- -Info 65 [16:02:31.000] Project '/user/username/projects/myproject/random/tsconfig.json' (Configured) -Info 65 [16:02:32.000] Files (2) - -Info 65 [16:02:33.000] ----------------------------------------------- -Info 65 [16:02:34.000] Open files: -Info 65 [16:02:35.000] FileName: /user/username/projects/myproject/main/main.ts ProjectRootPath: undefined -Info 65 [16:02:36.000] Projects: /user/username/projects/myproject/main/tsconfig.json -Info 65 [16:02:37.000] FileName: /user/username/projects/myproject/dependency/FnS.ts ProjectRootPath: undefined -Info 65 [16:02:38.000] Projects: /user/username/projects/myproject/dependency/tsconfig.json -Info 65 [16:02:39.000] FileName: /user/username/projects/myproject/random/random.ts ProjectRootPath: undefined -Info 65 [16:02:40.000] Projects: /user/username/projects/myproject/random/tsconfig.json +Info 64 [00:02:24.000] ----------------------------------------------- +Info 65 [00:02:25.000] Project '/user/username/projects/myproject/main/tsconfig.json' (Configured) +Info 65 [00:02:26.000] Files (3) + +Info 65 [00:02:27.000] ----------------------------------------------- +Info 65 [00:02:28.000] Project '/user/username/projects/myproject/dependency/tsconfig.json' (Configured) +Info 65 [00:02:29.000] Files (2) + +Info 65 [00:02:30.000] ----------------------------------------------- +Info 65 [00:02:31.000] Project '/user/username/projects/myproject/random/tsconfig.json' (Configured) +Info 65 [00:02:32.000] Files (2) + +Info 65 [00:02:33.000] ----------------------------------------------- +Info 65 [00:02:34.000] Open files: +Info 65 [00:02:35.000] FileName: /user/username/projects/myproject/main/main.ts ProjectRootPath: undefined +Info 65 [00:02:36.000] Projects: /user/username/projects/myproject/main/tsconfig.json +Info 65 [00:02:37.000] FileName: /user/username/projects/myproject/dependency/FnS.ts ProjectRootPath: undefined +Info 65 [00:02:38.000] Projects: /user/username/projects/myproject/dependency/tsconfig.json +Info 65 [00:02:39.000] FileName: /user/username/projects/myproject/random/random.ts ProjectRootPath: undefined +Info 65 [00:02:40.000] Projects: /user/username/projects/myproject/random/tsconfig.json After request PolledWatches:: @@ -529,11 +529,11 @@ FsWatchesRecursive:: /user/username/projects/myproject/random: {} -Info 65 [16:02:41.000] response: +Info 65 [00:02:41.000] response: { "responseRequired": false } -Info 66 [16:02:42.000] request: +Info 66 [00:02:42.000] request: { "command": "definitionAndBoundSpan", "arguments": { @@ -578,7 +578,7 @@ FsWatchesRecursive:: /user/username/projects/myproject/random: {} -Info 67 [16:02:43.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/decls/FnS.d.ts.map 500 undefined WatchType: Closed Script info +Info 67 [00:02:43.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/decls/FnS.d.ts.map 500 undefined WatchType: Closed Script info After request PolledWatches:: @@ -615,7 +615,7 @@ FsWatchesRecursive:: /user/username/projects/myproject/random: {} -Info 68 [16:02:44.000] response: +Info 68 [00:02:44.000] response: { "response": { "definitions": [ @@ -652,7 +652,7 @@ Info 68 [16:02:44.000] response: }, "responseRequired": true } -Info 69 [16:02:45.000] request: +Info 69 [00:02:45.000] request: { "command": "rename", "arguments": { @@ -699,8 +699,8 @@ FsWatchesRecursive:: /user/username/projects/myproject/random: {} -Info 70 [16:02:46.000] Search path: /user/username/projects/myproject/dependency -Info 71 [16:02:47.000] For info: /user/username/projects/myproject/dependency/FnS.ts :: Config file name: /user/username/projects/myproject/dependency/tsconfig.json +Info 70 [00:02:46.000] Search path: /user/username/projects/myproject/dependency +Info 71 [00:02:47.000] For info: /user/username/projects/myproject/dependency/FnS.ts :: Config file name: /user/username/projects/myproject/dependency/tsconfig.json After request PolledWatches:: @@ -737,7 +737,7 @@ FsWatchesRecursive:: /user/username/projects/myproject/random: {} -Info 72 [16:02:48.000] response: +Info 72 [00:02:48.000] response: { "response": { "info": { @@ -818,7 +818,7 @@ Info 72 [16:02:48.000] response: }, "responseRequired": true } -Info 73 [16:02:49.000] request: +Info 73 [00:02:49.000] request: { "command": "change", "arguments": { @@ -904,11 +904,11 @@ FsWatchesRecursive:: /user/username/projects/myproject/random: {} -Info 74 [16:02:50.000] response: +Info 74 [00:02:50.000] response: { "responseRequired": false } -Info 75 [16:02:51.000] request: +Info 75 [00:02:51.000] request: { "command": "change", "arguments": { @@ -994,11 +994,11 @@ FsWatchesRecursive:: /user/username/projects/myproject/random: {} -Info 76 [16:02:52.000] response: +Info 76 [00:02:52.000] response: { "responseRequired": false } -Info 77 [16:02:53.000] request: +Info 77 [00:02:53.000] request: { "command": "definitionAndBoundSpan", "arguments": { @@ -1045,9 +1045,9 @@ FsWatchesRecursive:: /user/username/projects/myproject/random: {} -Info 78 [16:02:54.000] Starting updateGraphWorker: Project: /user/username/projects/myproject/main/tsconfig.json -Info 79 [16:02:55.000] Finishing updateGraphWorker: Project: /user/username/projects/myproject/main/tsconfig.json Version: 2 structureChanged: false structureIsReused:: Completely Elapsed:: *ms -Info 80 [16:02:56.000] Different program with same set of files +Info 78 [00:02:54.000] Starting updateGraphWorker: Project: /user/username/projects/myproject/main/tsconfig.json +Info 79 [00:02:55.000] Finishing updateGraphWorker: Project: /user/username/projects/myproject/main/tsconfig.json Version: 2 structureChanged: false structureIsReused:: Completely Elapsed:: *ms +Info 80 [00:02:56.000] Different program with same set of files After request PolledWatches:: @@ -1084,7 +1084,7 @@ FsWatchesRecursive:: /user/username/projects/myproject/random: {} -Info 81 [16:02:57.000] response: +Info 81 [00:02:57.000] response: { "response": { "definitions": [ @@ -1121,7 +1121,7 @@ Info 81 [16:02:57.000] response: }, "responseRequired": true } -Info 82 [16:02:58.000] request: +Info 82 [00:02:58.000] request: { "command": "definitionAndBoundSpan", "arguments": { @@ -1204,7 +1204,7 @@ FsWatchesRecursive:: /user/username/projects/myproject/random: {} -Info 83 [16:02:59.000] response: +Info 83 [00:02:59.000] response: { "response": { "definitions": [ @@ -1241,7 +1241,7 @@ Info 83 [16:02:59.000] response: }, "responseRequired": true } -Info 84 [16:03:00.000] request: +Info 84 [00:03:00.000] request: { "command": "definitionAndBoundSpan", "arguments": { @@ -1324,7 +1324,7 @@ FsWatchesRecursive:: /user/username/projects/myproject/random: {} -Info 85 [16:03:01.000] response: +Info 85 [00:03:01.000] response: { "response": { "definitions": [ @@ -1361,7 +1361,7 @@ Info 85 [16:03:01.000] response: }, "responseRequired": true } -Info 86 [16:03:02.000] request: +Info 86 [00:03:02.000] request: { "command": "definitionAndBoundSpan", "arguments": { @@ -1444,7 +1444,7 @@ FsWatchesRecursive:: /user/username/projects/myproject/random: {} -Info 87 [16:03:03.000] response: +Info 87 [00:03:03.000] response: { "response": { "definitions": [ @@ -1481,7 +1481,7 @@ Info 87 [16:03:03.000] response: }, "responseRequired": true } -Info 88 [16:03:04.000] request: +Info 88 [00:03:04.000] request: { "command": "definitionAndBoundSpan", "arguments": { @@ -1564,7 +1564,7 @@ FsWatchesRecursive:: /user/username/projects/myproject/random: {} -Info 89 [16:03:05.000] response: +Info 89 [00:03:05.000] response: { "response": { "definitions": [ @@ -1601,7 +1601,7 @@ Info 89 [16:03:05.000] response: }, "responseRequired": true } -Info 90 [16:03:06.000] request: +Info 90 [00:03:06.000] request: { "command": "rename", "arguments": { @@ -1648,11 +1648,11 @@ FsWatchesRecursive:: /user/username/projects/myproject/random: {} -Info 91 [16:03:07.000] Starting updateGraphWorker: Project: /user/username/projects/myproject/dependency/tsconfig.json -Info 92 [16:03:08.000] Finishing updateGraphWorker: Project: /user/username/projects/myproject/dependency/tsconfig.json Version: 2 structureChanged: false structureIsReused:: Completely Elapsed:: *ms -Info 93 [16:03:09.000] Different program with same set of files -Info 94 [16:03:10.000] Search path: /user/username/projects/myproject/dependency -Info 95 [16:03:11.000] For info: /user/username/projects/myproject/dependency/FnS.ts :: Config file name: /user/username/projects/myproject/dependency/tsconfig.json +Info 91 [00:03:07.000] Starting updateGraphWorker: Project: /user/username/projects/myproject/dependency/tsconfig.json +Info 92 [00:03:08.000] Finishing updateGraphWorker: Project: /user/username/projects/myproject/dependency/tsconfig.json Version: 2 structureChanged: false structureIsReused:: Completely Elapsed:: *ms +Info 93 [00:03:09.000] Different program with same set of files +Info 94 [00:03:10.000] Search path: /user/username/projects/myproject/dependency +Info 95 [00:03:11.000] For info: /user/username/projects/myproject/dependency/FnS.ts :: Config file name: /user/username/projects/myproject/dependency/tsconfig.json After request PolledWatches:: @@ -1689,7 +1689,7 @@ FsWatchesRecursive:: /user/username/projects/myproject/random: {} -Info 96 [16:03:12.000] response: +Info 96 [00:03:12.000] response: { "response": { "info": { @@ -1770,7 +1770,7 @@ Info 96 [16:03:12.000] response: }, "responseRequired": true } -Info 97 [16:03:13.000] request: +Info 97 [00:03:13.000] request: { "command": "rename", "arguments": { @@ -1817,8 +1817,8 @@ FsWatchesRecursive:: /user/username/projects/myproject/random: {} -Info 98 [16:03:14.000] Search path: /user/username/projects/myproject/dependency -Info 99 [16:03:15.000] For info: /user/username/projects/myproject/dependency/FnS.ts :: Config file name: /user/username/projects/myproject/dependency/tsconfig.json +Info 98 [00:03:14.000] Search path: /user/username/projects/myproject/dependency +Info 99 [00:03:15.000] For info: /user/username/projects/myproject/dependency/FnS.ts :: Config file name: /user/username/projects/myproject/dependency/tsconfig.json After request PolledWatches:: @@ -1855,7 +1855,7 @@ FsWatchesRecursive:: /user/username/projects/myproject/random: {} -Info 100 [16:03:16.000] response: +Info 100 [00:03:16.000] response: { "response": { "info": { @@ -1936,7 +1936,7 @@ Info 100 [16:03:16.000] response: }, "responseRequired": true } -Info 101 [16:03:17.000] request: +Info 101 [00:03:17.000] request: { "command": "rename", "arguments": { @@ -1983,8 +1983,8 @@ FsWatchesRecursive:: /user/username/projects/myproject/random: {} -Info 102 [16:03:18.000] Search path: /user/username/projects/myproject/dependency -Info 103 [16:03:19.000] For info: /user/username/projects/myproject/dependency/FnS.ts :: Config file name: /user/username/projects/myproject/dependency/tsconfig.json +Info 102 [00:03:18.000] Search path: /user/username/projects/myproject/dependency +Info 103 [00:03:19.000] For info: /user/username/projects/myproject/dependency/FnS.ts :: Config file name: /user/username/projects/myproject/dependency/tsconfig.json After request PolledWatches:: @@ -2021,7 +2021,7 @@ FsWatchesRecursive:: /user/username/projects/myproject/random: {} -Info 104 [16:03:20.000] response: +Info 104 [00:03:20.000] response: { "response": { "info": { @@ -2102,7 +2102,7 @@ Info 104 [16:03:20.000] response: }, "responseRequired": true } -Info 105 [16:03:21.000] request: +Info 105 [00:03:21.000] request: { "command": "rename", "arguments": { @@ -2149,8 +2149,8 @@ FsWatchesRecursive:: /user/username/projects/myproject/random: {} -Info 106 [16:03:22.000] Search path: /user/username/projects/myproject/dependency -Info 107 [16:03:23.000] For info: /user/username/projects/myproject/dependency/FnS.ts :: Config file name: /user/username/projects/myproject/dependency/tsconfig.json +Info 106 [00:03:22.000] Search path: /user/username/projects/myproject/dependency +Info 107 [00:03:23.000] For info: /user/username/projects/myproject/dependency/FnS.ts :: Config file name: /user/username/projects/myproject/dependency/tsconfig.json After request PolledWatches:: @@ -2187,7 +2187,7 @@ FsWatchesRecursive:: /user/username/projects/myproject/random: {} -Info 108 [16:03:24.000] response: +Info 108 [00:03:24.000] response: { "response": { "info": { @@ -2268,7 +2268,7 @@ Info 108 [16:03:24.000] response: }, "responseRequired": true } -Info 109 [16:03:25.000] request: +Info 109 [00:03:25.000] request: { "command": "rename", "arguments": { @@ -2315,8 +2315,8 @@ FsWatchesRecursive:: /user/username/projects/myproject/random: {} -Info 110 [16:03:26.000] Search path: /user/username/projects/myproject/dependency -Info 111 [16:03:27.000] For info: /user/username/projects/myproject/dependency/FnS.ts :: Config file name: /user/username/projects/myproject/dependency/tsconfig.json +Info 110 [00:03:26.000] Search path: /user/username/projects/myproject/dependency +Info 111 [00:03:27.000] For info: /user/username/projects/myproject/dependency/FnS.ts :: Config file name: /user/username/projects/myproject/dependency/tsconfig.json After request PolledWatches:: @@ -2353,7 +2353,7 @@ FsWatchesRecursive:: /user/username/projects/myproject/random: {} -Info 112 [16:03:28.000] response: +Info 112 [00:03:28.000] response: { "response": { "info": { 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 c744bc3f9d2c7..0479a67e4e1b6 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 @@ -1,5 +1,5 @@ -Info 0 [16:01:03.000] Provided types map file "/a/lib/typesMap.json" doesn't exist -Info 1 [16:01:04.000] request: +Info 0 [00:01:03.000] Provided types map file "/a/lib/typesMap.json" doesn't exist +Info 1 [00:01:04.000] request: { "seq": 0, "type": "request", @@ -200,11 +200,11 @@ FsWatches:: FsWatchesRecursive:: -Info 2 [16:01:05.000] Search path: /user/username/projects/myproject/main -Info 3 [16:01:06.000] For info: /user/username/projects/myproject/main/main.ts :: Config file name: /user/username/projects/myproject/main/tsconfig.json -Info 4 [16:01:07.000] Creating configuration project /user/username/projects/myproject/main/tsconfig.json -Info 5 [16:01:08.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/main/tsconfig.json 2000 undefined Project: /user/username/projects/myproject/main/tsconfig.json WatchType: Config file -Info 6 [16:01:09.000] Config: /user/username/projects/myproject/main/tsconfig.json : { +Info 2 [00:01:05.000] Search path: /user/username/projects/myproject/main +Info 3 [00:01:06.000] For info: /user/username/projects/myproject/main/main.ts :: Config file name: /user/username/projects/myproject/main/tsconfig.json +Info 4 [00:01:07.000] Creating configuration project /user/username/projects/myproject/main/tsconfig.json +Info 5 [00:01:08.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/main/tsconfig.json 2000 undefined Project: /user/username/projects/myproject/main/tsconfig.json WatchType: Config file +Info 6 [00:01:09.000] Config: /user/username/projects/myproject/main/tsconfig.json : { "rootNames": [ "/user/username/projects/myproject/main/main.ts" ], @@ -214,21 +214,21 @@ Info 6 [16:01:09.000] Config: /user/username/projects/myproject/main/tsconfig "configFilePath": "/user/username/projects/myproject/main/tsconfig.json" } } -Info 7 [16:01:10.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/main 1 undefined Config: /user/username/projects/myproject/main/tsconfig.json WatchType: Wild card directory -Info 8 [16:01:11.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/main 1 undefined Config: /user/username/projects/myproject/main/tsconfig.json WatchType: Wild card directory -Info 9 [16:01:12.000] Plugins were requested but not running in environment that supports 'require'. Nothing will be loaded -Info 10 [16:01:13.000] Starting updateGraphWorker: Project: /user/username/projects/myproject/main/tsconfig.json -Info 11 [16:01:14.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/decls 1 undefined Project: /user/username/projects/myproject/main/tsconfig.json WatchType: Failed Lookup Locations -Info 12 [16:01:15.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/decls 1 undefined Project: /user/username/projects/myproject/main/tsconfig.json WatchType: Failed Lookup Locations -Info 13 [16:01:16.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/decls/fns.d.ts 500 undefined WatchType: Closed Script info -Info 14 [16:01:17.000] FileWatcher:: Added:: WatchInfo: /a/lib/lib.d.ts 500 undefined WatchType: Closed Script info -Info 15 [16:01:18.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/main/node_modules/@types 1 undefined Project: /user/username/projects/myproject/main/tsconfig.json WatchType: Type roots -Info 16 [16:01:19.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/main/node_modules/@types 1 undefined Project: /user/username/projects/myproject/main/tsconfig.json WatchType: Type roots -Info 17 [16:01:20.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/main/tsconfig.json WatchType: Type roots -Info 18 [16:01:21.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/main/tsconfig.json WatchType: Type roots -Info 19 [16:01:22.000] Finishing updateGraphWorker: Project: /user/username/projects/myproject/main/tsconfig.json Version: 1 structureChanged: true structureIsReused:: Not Elapsed:: *ms -Info 20 [16:01:23.000] Project '/user/username/projects/myproject/main/tsconfig.json' (Configured) -Info 21 [16:01:24.000] Files (3) +Info 7 [00:01:10.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/main 1 undefined Config: /user/username/projects/myproject/main/tsconfig.json WatchType: Wild card directory +Info 8 [00:01:11.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/main 1 undefined Config: /user/username/projects/myproject/main/tsconfig.json WatchType: Wild card directory +Info 9 [00:01:12.000] Plugins were requested but not running in environment that supports 'require'. Nothing will be loaded +Info 10 [00:01:13.000] Starting updateGraphWorker: Project: /user/username/projects/myproject/main/tsconfig.json +Info 11 [00:01:14.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/decls 1 undefined Project: /user/username/projects/myproject/main/tsconfig.json WatchType: Failed Lookup Locations +Info 12 [00:01:15.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/decls 1 undefined Project: /user/username/projects/myproject/main/tsconfig.json WatchType: Failed Lookup Locations +Info 13 [00:01:16.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/decls/fns.d.ts 500 undefined WatchType: Closed Script info +Info 14 [00:01:17.000] FileWatcher:: Added:: WatchInfo: /a/lib/lib.d.ts 500 undefined WatchType: Closed Script info +Info 15 [00:01:18.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/main/node_modules/@types 1 undefined Project: /user/username/projects/myproject/main/tsconfig.json WatchType: Type roots +Info 16 [00:01:19.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/main/node_modules/@types 1 undefined Project: /user/username/projects/myproject/main/tsconfig.json WatchType: Type roots +Info 17 [00:01:20.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/main/tsconfig.json WatchType: Type roots +Info 18 [00:01:21.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/main/tsconfig.json WatchType: Type roots +Info 19 [00:01:22.000] Finishing updateGraphWorker: Project: /user/username/projects/myproject/main/tsconfig.json Version: 1 structureChanged: true structureIsReused:: Not Elapsed:: *ms +Info 20 [00:01:23.000] Project '/user/username/projects/myproject/main/tsconfig.json' (Configured) +Info 21 [00:01:24.000] Files (3) /a/lib/lib.d.ts /user/username/projects/myproject/decls/fns.d.ts /user/username/projects/myproject/main/main.ts @@ -241,16 +241,16 @@ Info 21 [16:01:24.000] Files (3) main.ts Matched by default include pattern '**/*' -Info 22 [16:01:25.000] ----------------------------------------------- -Info 23 [16:01:26.000] Search path: /user/username/projects/myproject/main -Info 24 [16:01:27.000] For info: /user/username/projects/myproject/main/tsconfig.json :: No config files found. -Info 25 [16:01:28.000] Project '/user/username/projects/myproject/main/tsconfig.json' (Configured) -Info 25 [16:01:29.000] Files (3) +Info 22 [00:01:25.000] ----------------------------------------------- +Info 23 [00:01:26.000] Search path: /user/username/projects/myproject/main +Info 24 [00:01:27.000] For info: /user/username/projects/myproject/main/tsconfig.json :: No config files found. +Info 25 [00:01:28.000] Project '/user/username/projects/myproject/main/tsconfig.json' (Configured) +Info 25 [00:01:29.000] Files (3) -Info 25 [16:01:30.000] ----------------------------------------------- -Info 25 [16:01:31.000] Open files: -Info 25 [16:01:32.000] FileName: /user/username/projects/myproject/main/main.ts ProjectRootPath: undefined -Info 25 [16:01:33.000] Projects: /user/username/projects/myproject/main/tsconfig.json +Info 25 [00:01:30.000] ----------------------------------------------- +Info 25 [00:01:31.000] Open files: +Info 25 [00:01:32.000] FileName: /user/username/projects/myproject/main/main.ts ProjectRootPath: undefined +Info 25 [00:01:33.000] Projects: /user/username/projects/myproject/main/tsconfig.json After request PolledWatches:: @@ -273,11 +273,11 @@ FsWatchesRecursive:: /user/username/projects/myproject/decls: {} -Info 25 [16:01:34.000] response: +Info 25 [00:01:34.000] response: { "responseRequired": false } -Info 26 [16:01:35.000] request: +Info 26 [00:01:35.000] request: { "seq": 0, "type": "request", @@ -308,11 +308,11 @@ FsWatchesRecursive:: /user/username/projects/myproject/decls: {} -Info 27 [16:01:36.000] Search path: /user/username/projects/myproject/random -Info 28 [16:01:37.000] For info: /user/username/projects/myproject/random/random.ts :: Config file name: /user/username/projects/myproject/random/tsconfig.json -Info 29 [16:01:38.000] Creating configuration project /user/username/projects/myproject/random/tsconfig.json -Info 30 [16:01:39.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/random/tsconfig.json 2000 undefined Project: /user/username/projects/myproject/random/tsconfig.json WatchType: Config file -Info 31 [16:01:40.000] Config: /user/username/projects/myproject/random/tsconfig.json : { +Info 27 [00:01:36.000] Search path: /user/username/projects/myproject/random +Info 28 [00:01:37.000] For info: /user/username/projects/myproject/random/random.ts :: Config file name: /user/username/projects/myproject/random/tsconfig.json +Info 29 [00:01:38.000] Creating configuration project /user/username/projects/myproject/random/tsconfig.json +Info 30 [00:01:39.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/random/tsconfig.json 2000 undefined Project: /user/username/projects/myproject/random/tsconfig.json WatchType: Config file +Info 31 [00:01:40.000] Config: /user/username/projects/myproject/random/tsconfig.json : { "rootNames": [ "/user/username/projects/myproject/random/random.ts" ], @@ -320,17 +320,17 @@ Info 31 [16:01:40.000] Config: /user/username/projects/myproject/random/tsconf "configFilePath": "/user/username/projects/myproject/random/tsconfig.json" } } -Info 32 [16:01:41.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/random 1 undefined Config: /user/username/projects/myproject/random/tsconfig.json WatchType: Wild card directory -Info 33 [16:01:42.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/random 1 undefined Config: /user/username/projects/myproject/random/tsconfig.json WatchType: Wild card directory -Info 34 [16:01:43.000] Plugins were requested but not running in environment that supports 'require'. Nothing will be loaded -Info 35 [16:01:44.000] Starting updateGraphWorker: Project: /user/username/projects/myproject/random/tsconfig.json -Info 36 [16:01:45.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/random/node_modules/@types 1 undefined Project: /user/username/projects/myproject/random/tsconfig.json WatchType: Type roots -Info 37 [16:01:46.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/random/node_modules/@types 1 undefined Project: /user/username/projects/myproject/random/tsconfig.json WatchType: Type roots -Info 38 [16:01:47.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/random/tsconfig.json WatchType: Type roots -Info 39 [16:01:48.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/random/tsconfig.json WatchType: Type roots -Info 40 [16:01:49.000] Finishing updateGraphWorker: Project: /user/username/projects/myproject/random/tsconfig.json Version: 1 structureChanged: true structureIsReused:: Not Elapsed:: *ms -Info 41 [16:01:50.000] Project '/user/username/projects/myproject/random/tsconfig.json' (Configured) -Info 42 [16:01:51.000] Files (2) +Info 32 [00:01:41.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/random 1 undefined Config: /user/username/projects/myproject/random/tsconfig.json WatchType: Wild card directory +Info 33 [00:01:42.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/random 1 undefined Config: /user/username/projects/myproject/random/tsconfig.json WatchType: Wild card directory +Info 34 [00:01:43.000] Plugins were requested but not running in environment that supports 'require'. Nothing will be loaded +Info 35 [00:01:44.000] Starting updateGraphWorker: Project: /user/username/projects/myproject/random/tsconfig.json +Info 36 [00:01:45.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/random/node_modules/@types 1 undefined Project: /user/username/projects/myproject/random/tsconfig.json WatchType: Type roots +Info 37 [00:01:46.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/random/node_modules/@types 1 undefined Project: /user/username/projects/myproject/random/tsconfig.json WatchType: Type roots +Info 38 [00:01:47.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/random/tsconfig.json WatchType: Type roots +Info 39 [00:01:48.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/random/tsconfig.json WatchType: Type roots +Info 40 [00:01:49.000] Finishing updateGraphWorker: Project: /user/username/projects/myproject/random/tsconfig.json Version: 1 structureChanged: true structureIsReused:: Not Elapsed:: *ms +Info 41 [00:01:50.000] Project '/user/username/projects/myproject/random/tsconfig.json' (Configured) +Info 42 [00:01:51.000] Files (2) /a/lib/lib.d.ts /user/username/projects/myproject/random/random.ts @@ -340,20 +340,20 @@ Info 42 [16:01:51.000] Files (2) random.ts Matched by default include pattern '**/*' -Info 43 [16:01:52.000] ----------------------------------------------- -Info 44 [16:01:53.000] Project '/user/username/projects/myproject/main/tsconfig.json' (Configured) -Info 44 [16:01:54.000] Files (3) +Info 43 [00:01:52.000] ----------------------------------------------- +Info 44 [00:01:53.000] Project '/user/username/projects/myproject/main/tsconfig.json' (Configured) +Info 44 [00:01:54.000] Files (3) -Info 44 [16:01:55.000] ----------------------------------------------- -Info 44 [16:01:56.000] Project '/user/username/projects/myproject/random/tsconfig.json' (Configured) -Info 44 [16:01:57.000] Files (2) +Info 44 [00:01:55.000] ----------------------------------------------- +Info 44 [00:01:56.000] Project '/user/username/projects/myproject/random/tsconfig.json' (Configured) +Info 44 [00:01:57.000] Files (2) -Info 44 [16:01:58.000] ----------------------------------------------- -Info 44 [16:01:59.000] Open files: -Info 44 [16:02:00.000] FileName: /user/username/projects/myproject/main/main.ts ProjectRootPath: undefined -Info 44 [16:02:01.000] Projects: /user/username/projects/myproject/main/tsconfig.json -Info 44 [16:02:02.000] FileName: /user/username/projects/myproject/random/random.ts ProjectRootPath: undefined -Info 44 [16:02:03.000] Projects: /user/username/projects/myproject/random/tsconfig.json +Info 44 [00:01:58.000] ----------------------------------------------- +Info 44 [00:01:59.000] Open files: +Info 44 [00:02:00.000] FileName: /user/username/projects/myproject/main/main.ts ProjectRootPath: undefined +Info 44 [00:02:01.000] Projects: /user/username/projects/myproject/main/tsconfig.json +Info 44 [00:02:02.000] FileName: /user/username/projects/myproject/random/random.ts ProjectRootPath: undefined +Info 44 [00:02:03.000] Projects: /user/username/projects/myproject/random/tsconfig.json After request PolledWatches:: @@ -382,11 +382,11 @@ FsWatchesRecursive:: /user/username/projects/myproject/random: {} -Info 44 [16:02:04.000] response: +Info 44 [00:02:04.000] response: { "responseRequired": false } -Info 45 [16:02:05.000] request: +Info 45 [00:02:05.000] request: { "command": "definitionAndBoundSpan", "arguments": { @@ -425,8 +425,8 @@ FsWatchesRecursive:: /user/username/projects/myproject/random: {} -Info 46 [16:02:06.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/decls/FnS.d.ts.map 500 undefined WatchType: Closed Script info -Info 47 [16:02:07.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/dependency/FnS.ts 500 undefined WatchType: Closed Script info +Info 46 [00:02:06.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/decls/FnS.d.ts.map 500 undefined WatchType: Closed Script info +Info 47 [00:02:07.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/dependency/FnS.ts 500 undefined WatchType: Closed Script info After request PolledWatches:: @@ -459,7 +459,7 @@ FsWatchesRecursive:: /user/username/projects/myproject/random: {} -Info 48 [16:02:08.000] response: +Info 48 [00:02:08.000] response: { "response": { "definitions": [ @@ -496,7 +496,7 @@ Info 48 [16:02:08.000] response: }, "responseRequired": true } -Info 49 [16:02:09.000] request: +Info 49 [00:02:09.000] request: { "command": "definitionAndBoundSpan", "arguments": { @@ -571,7 +571,7 @@ FsWatchesRecursive:: /user/username/projects/myproject/random: {} -Info 50 [16:02:10.000] response: +Info 50 [00:02:10.000] response: { "response": { "definitions": [ @@ -608,7 +608,7 @@ Info 50 [16:02:10.000] response: }, "responseRequired": true } -Info 51 [16:02:11.000] request: +Info 51 [00:02:11.000] request: { "command": "definitionAndBoundSpan", "arguments": { @@ -683,7 +683,7 @@ FsWatchesRecursive:: /user/username/projects/myproject/random: {} -Info 52 [16:02:12.000] response: +Info 52 [00:02:12.000] response: { "response": { "definitions": [ @@ -720,7 +720,7 @@ Info 52 [16:02:12.000] response: }, "responseRequired": true } -Info 53 [16:02:13.000] request: +Info 53 [00:02:13.000] request: { "command": "definitionAndBoundSpan", "arguments": { @@ -795,7 +795,7 @@ FsWatchesRecursive:: /user/username/projects/myproject/random: {} -Info 54 [16:02:14.000] response: +Info 54 [00:02:14.000] response: { "response": { "definitions": [ @@ -832,7 +832,7 @@ Info 54 [16:02:14.000] response: }, "responseRequired": true } -Info 55 [16:02:15.000] request: +Info 55 [00:02:15.000] request: { "command": "definitionAndBoundSpan", "arguments": { @@ -907,7 +907,7 @@ FsWatchesRecursive:: /user/username/projects/myproject/random: {} -Info 56 [16:02:16.000] response: +Info 56 [00:02:16.000] response: { "response": { "definitions": [ @@ -944,7 +944,7 @@ Info 56 [16:02:16.000] response: }, "responseRequired": true } -Info 57 [16:02:17.000] request: +Info 57 [00:02:17.000] request: { "seq": 0, "type": "request", @@ -985,18 +985,18 @@ FsWatchesRecursive:: /user/username/projects/myproject/random: {} -Info 58 [16:02:18.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/random/random.ts 500 undefined WatchType: Closed Script info -Info 59 [16:02:19.000] Project '/user/username/projects/myproject/main/tsconfig.json' (Configured) -Info 59 [16:02:20.000] Files (3) +Info 58 [00:02:18.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/random/random.ts 500 undefined WatchType: Closed Script info +Info 59 [00:02:19.000] Project '/user/username/projects/myproject/main/tsconfig.json' (Configured) +Info 59 [00:02:20.000] Files (3) -Info 59 [16:02:21.000] ----------------------------------------------- -Info 59 [16:02:22.000] Project '/user/username/projects/myproject/random/tsconfig.json' (Configured) -Info 59 [16:02:23.000] Files (2) +Info 59 [00:02:21.000] ----------------------------------------------- +Info 59 [00:02:22.000] Project '/user/username/projects/myproject/random/tsconfig.json' (Configured) +Info 59 [00:02:23.000] Files (2) -Info 59 [16:02:24.000] ----------------------------------------------- -Info 59 [16:02:25.000] Open files: -Info 59 [16:02:26.000] FileName: /user/username/projects/myproject/main/main.ts ProjectRootPath: undefined -Info 59 [16:02:27.000] Projects: /user/username/projects/myproject/main/tsconfig.json +Info 59 [00:02:24.000] ----------------------------------------------- +Info 59 [00:02:25.000] Open files: +Info 59 [00:02:26.000] FileName: /user/username/projects/myproject/main/main.ts ProjectRootPath: undefined +Info 59 [00:02:27.000] Projects: /user/username/projects/myproject/main/tsconfig.json After request PolledWatches:: @@ -1031,11 +1031,11 @@ FsWatchesRecursive:: /user/username/projects/myproject/random: {} -Info 59 [16:02:28.000] response: +Info 59 [00:02:28.000] response: { "responseRequired": false } -Info 60 [16:02:29.000] request: +Info 60 [00:02:29.000] request: { "seq": 0, "type": "request", @@ -1078,22 +1078,22 @@ FsWatchesRecursive:: /user/username/projects/myproject/random: {} -Info 61 [16:02:30.000] FileWatcher:: Close:: WatchInfo: /user/username/projects/myproject/random/random.ts 500 undefined WatchType: Closed Script info -Info 62 [16:02:31.000] Search path: /user/username/projects/myproject/random -Info 63 [16:02:32.000] For info: /user/username/projects/myproject/random/random.ts :: Config file name: /user/username/projects/myproject/random/tsconfig.json -Info 64 [16:02:33.000] Project '/user/username/projects/myproject/main/tsconfig.json' (Configured) -Info 64 [16:02:34.000] Files (3) +Info 61 [00:02:30.000] FileWatcher:: Close:: WatchInfo: /user/username/projects/myproject/random/random.ts 500 undefined WatchType: Closed Script info +Info 62 [00:02:31.000] Search path: /user/username/projects/myproject/random +Info 63 [00:02:32.000] For info: /user/username/projects/myproject/random/random.ts :: Config file name: /user/username/projects/myproject/random/tsconfig.json +Info 64 [00:02:33.000] Project '/user/username/projects/myproject/main/tsconfig.json' (Configured) +Info 64 [00:02:34.000] Files (3) -Info 64 [16:02:35.000] ----------------------------------------------- -Info 64 [16:02:36.000] Project '/user/username/projects/myproject/random/tsconfig.json' (Configured) -Info 64 [16:02:37.000] Files (2) +Info 64 [00:02:35.000] ----------------------------------------------- +Info 64 [00:02:36.000] Project '/user/username/projects/myproject/random/tsconfig.json' (Configured) +Info 64 [00:02:37.000] Files (2) -Info 64 [16:02:38.000] ----------------------------------------------- -Info 64 [16:02:39.000] Open files: -Info 64 [16:02:40.000] FileName: /user/username/projects/myproject/main/main.ts ProjectRootPath: undefined -Info 64 [16:02:41.000] Projects: /user/username/projects/myproject/main/tsconfig.json -Info 64 [16:02:42.000] FileName: /user/username/projects/myproject/random/random.ts ProjectRootPath: undefined -Info 64 [16:02:43.000] Projects: /user/username/projects/myproject/random/tsconfig.json +Info 64 [00:02:38.000] ----------------------------------------------- +Info 64 [00:02:39.000] Open files: +Info 64 [00:02:40.000] FileName: /user/username/projects/myproject/main/main.ts ProjectRootPath: undefined +Info 64 [00:02:41.000] Projects: /user/username/projects/myproject/main/tsconfig.json +Info 64 [00:02:42.000] FileName: /user/username/projects/myproject/random/random.ts ProjectRootPath: undefined +Info 64 [00:02:43.000] Projects: /user/username/projects/myproject/random/tsconfig.json After request PolledWatches:: @@ -1126,11 +1126,11 @@ FsWatchesRecursive:: /user/username/projects/myproject/random: {} -Info 64 [16:02:44.000] response: +Info 64 [00:02:44.000] response: { "responseRequired": false } -Info 65 [16:02:45.000] request: +Info 65 [00:02:45.000] request: { "seq": 0, "type": "request", @@ -1171,18 +1171,18 @@ FsWatchesRecursive:: /user/username/projects/myproject/random: {} -Info 66 [16:02:46.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/main/main.ts 500 undefined WatchType: Closed Script info -Info 67 [16:02:47.000] Project '/user/username/projects/myproject/main/tsconfig.json' (Configured) -Info 67 [16:02:48.000] Files (3) +Info 66 [00:02:46.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/main/main.ts 500 undefined WatchType: Closed Script info +Info 67 [00:02:47.000] Project '/user/username/projects/myproject/main/tsconfig.json' (Configured) +Info 67 [00:02:48.000] Files (3) -Info 67 [16:02:49.000] ----------------------------------------------- -Info 67 [16:02:50.000] Project '/user/username/projects/myproject/random/tsconfig.json' (Configured) -Info 67 [16:02:51.000] Files (2) +Info 67 [00:02:49.000] ----------------------------------------------- +Info 67 [00:02:50.000] Project '/user/username/projects/myproject/random/tsconfig.json' (Configured) +Info 67 [00:02:51.000] Files (2) -Info 67 [16:02:52.000] ----------------------------------------------- -Info 67 [16:02:53.000] Open files: -Info 67 [16:02:54.000] FileName: /user/username/projects/myproject/random/random.ts ProjectRootPath: undefined -Info 67 [16:02:55.000] Projects: /user/username/projects/myproject/random/tsconfig.json +Info 67 [00:02:52.000] ----------------------------------------------- +Info 67 [00:02:53.000] Open files: +Info 67 [00:02:54.000] FileName: /user/username/projects/myproject/random/random.ts ProjectRootPath: undefined +Info 67 [00:02:55.000] Projects: /user/username/projects/myproject/random/tsconfig.json After request PolledWatches:: @@ -1217,11 +1217,11 @@ FsWatchesRecursive:: /user/username/projects/myproject/random: {} -Info 67 [16:02:56.000] response: +Info 67 [00:02:56.000] response: { "responseRequired": false } -Info 68 [16:02:57.000] request: +Info 68 [00:02:57.000] request: { "seq": 0, "type": "request", @@ -1264,16 +1264,16 @@ FsWatchesRecursive:: /user/username/projects/myproject/random: {} -Info 69 [16:02:58.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/random/random.ts 500 undefined WatchType: Closed Script info -Info 70 [16:02:59.000] Project '/user/username/projects/myproject/main/tsconfig.json' (Configured) -Info 70 [16:03:00.000] Files (3) +Info 69 [00:02:58.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/random/random.ts 500 undefined WatchType: Closed Script info +Info 70 [00:02:59.000] Project '/user/username/projects/myproject/main/tsconfig.json' (Configured) +Info 70 [00:03:00.000] Files (3) -Info 70 [16:03:01.000] ----------------------------------------------- -Info 70 [16:03:02.000] Project '/user/username/projects/myproject/random/tsconfig.json' (Configured) -Info 70 [16:03:03.000] Files (2) +Info 70 [00:03:01.000] ----------------------------------------------- +Info 70 [00:03:02.000] Project '/user/username/projects/myproject/random/tsconfig.json' (Configured) +Info 70 [00:03:03.000] Files (2) -Info 70 [16:03:04.000] ----------------------------------------------- -Info 70 [16:03:05.000] Open files: +Info 70 [00:03:04.000] ----------------------------------------------- +Info 70 [00:03:05.000] Open files: After request PolledWatches:: @@ -1310,11 +1310,11 @@ FsWatchesRecursive:: /user/username/projects/myproject/random: {} -Info 70 [16:03:06.000] response: +Info 70 [00:03:06.000] response: { "responseRequired": false } -Info 71 [16:03:07.000] request: +Info 71 [00:03:07.000] request: { "seq": 0, "type": "request", @@ -1359,12 +1359,12 @@ FsWatchesRecursive:: /user/username/projects/myproject/random: {} -Info 72 [16:03:08.000] FileWatcher:: Close:: WatchInfo: /user/username/projects/myproject/random/random.ts 500 undefined WatchType: Closed Script info -Info 73 [16:03:09.000] Search path: /user/username/projects/myproject/random -Info 74 [16:03:10.000] For info: /user/username/projects/myproject/random/random.ts :: Config file name: /user/username/projects/myproject/random/tsconfig.json -Info 75 [16:03:11.000] `remove Project:: -Info 76 [16:03:12.000] Project '/user/username/projects/myproject/main/tsconfig.json' (Configured) -Info 77 [16:03:13.000] Files (3) +Info 72 [00:03:08.000] FileWatcher:: Close:: WatchInfo: /user/username/projects/myproject/random/random.ts 500 undefined WatchType: Closed Script info +Info 73 [00:03:09.000] Search path: /user/username/projects/myproject/random +Info 74 [00:03:10.000] For info: /user/username/projects/myproject/random/random.ts :: Config file name: /user/username/projects/myproject/random/tsconfig.json +Info 75 [00:03:11.000] `remove Project:: +Info 76 [00:03:12.000] Project '/user/username/projects/myproject/main/tsconfig.json' (Configured) +Info 77 [00:03:13.000] Files (3) /a/lib/lib.d.ts /user/username/projects/myproject/decls/fns.d.ts /user/username/projects/myproject/main/main.ts @@ -1377,27 +1377,27 @@ Info 77 [16:03:13.000] Files (3) main.ts Matched by default include pattern '**/*' -Info 78 [16:03:14.000] ----------------------------------------------- -Info 79 [16:03:15.000] DirectoryWatcher:: Close:: WatchInfo: /user/username/projects/myproject/main 1 undefined Config: /user/username/projects/myproject/main/tsconfig.json WatchType: Wild card directory -Info 80 [16:03:16.000] 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 81 [16:03:17.000] FileWatcher:: Close:: WatchInfo: /user/username/projects/myproject/main/tsconfig.json 2000 undefined Project: /user/username/projects/myproject/main/tsconfig.json WatchType: Config file -Info 82 [16:03:18.000] DirectoryWatcher:: Close:: WatchInfo: /user/username/projects/myproject/decls 1 undefined Project: /user/username/projects/myproject/main/tsconfig.json WatchType: Failed Lookup Locations -Info 83 [16:03:19.000] 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 84 [16:03:20.000] 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 85 [16:03:21.000] 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 86 [16:03:22.000] DirectoryWatcher:: Close:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/main/tsconfig.json WatchType: Type roots -Info 87 [16:03:23.000] 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 88 [16:03:24.000] FileWatcher:: Close:: WatchInfo: /user/username/projects/myproject/main/main.ts 500 undefined WatchType: Closed Script info -Info 89 [16:03:25.000] FileWatcher:: Close:: WatchInfo: /user/username/projects/myproject/decls/fns.d.ts 500 undefined WatchType: Closed Script info -Info 90 [16:03:26.000] FileWatcher:: Close:: WatchInfo: /user/username/projects/myproject/decls/FnS.d.ts.map 500 undefined WatchType: Closed Script info -Info 91 [16:03:27.000] FileWatcher:: Close:: WatchInfo: /user/username/projects/myproject/dependency/FnS.ts 500 undefined WatchType: Closed Script info -Info 92 [16:03:28.000] Project '/user/username/projects/myproject/random/tsconfig.json' (Configured) -Info 92 [16:03:29.000] Files (2) - -Info 92 [16:03:30.000] ----------------------------------------------- -Info 92 [16:03:31.000] Open files: -Info 92 [16:03:32.000] FileName: /user/username/projects/myproject/random/random.ts ProjectRootPath: undefined -Info 92 [16:03:33.000] Projects: /user/username/projects/myproject/random/tsconfig.json +Info 78 [00:03:14.000] ----------------------------------------------- +Info 79 [00:03:15.000] DirectoryWatcher:: Close:: WatchInfo: /user/username/projects/myproject/main 1 undefined Config: /user/username/projects/myproject/main/tsconfig.json WatchType: Wild card directory +Info 80 [00:03:16.000] 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 81 [00:03:17.000] FileWatcher:: Close:: WatchInfo: /user/username/projects/myproject/main/tsconfig.json 2000 undefined Project: /user/username/projects/myproject/main/tsconfig.json WatchType: Config file +Info 82 [00:03:18.000] DirectoryWatcher:: Close:: WatchInfo: /user/username/projects/myproject/decls 1 undefined Project: /user/username/projects/myproject/main/tsconfig.json WatchType: Failed Lookup Locations +Info 83 [00:03:19.000] 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 84 [00:03:20.000] 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 85 [00:03:21.000] 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 86 [00:03:22.000] DirectoryWatcher:: Close:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/main/tsconfig.json WatchType: Type roots +Info 87 [00:03:23.000] 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 88 [00:03:24.000] FileWatcher:: Close:: WatchInfo: /user/username/projects/myproject/main/main.ts 500 undefined WatchType: Closed Script info +Info 89 [00:03:25.000] FileWatcher:: Close:: WatchInfo: /user/username/projects/myproject/decls/fns.d.ts 500 undefined WatchType: Closed Script info +Info 90 [00:03:26.000] FileWatcher:: Close:: WatchInfo: /user/username/projects/myproject/decls/FnS.d.ts.map 500 undefined WatchType: Closed Script info +Info 91 [00:03:27.000] FileWatcher:: Close:: WatchInfo: /user/username/projects/myproject/dependency/FnS.ts 500 undefined WatchType: Closed Script info +Info 92 [00:03:28.000] Project '/user/username/projects/myproject/random/tsconfig.json' (Configured) +Info 92 [00:03:29.000] Files (2) + +Info 92 [00:03:30.000] ----------------------------------------------- +Info 92 [00:03:31.000] Open files: +Info 92 [00:03:32.000] FileName: /user/username/projects/myproject/random/random.ts ProjectRootPath: undefined +Info 92 [00:03:33.000] Projects: /user/username/projects/myproject/random/tsconfig.json After request PolledWatches:: @@ -1416,7 +1416,7 @@ FsWatchesRecursive:: /user/username/projects/myproject/random: {} -Info 92 [16:03:34.000] response: +Info 92 [00:03:34.000] response: { "responseRequired": false } \ No newline at end of file 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 ae678a01a4495..2798959f46a57 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 @@ -1,5 +1,5 @@ -Info 0 [16:01:03.000] Provided types map file "/a/lib/typesMap.json" doesn't exist -Info 1 [16:01:04.000] request: +Info 0 [00:01:03.000] Provided types map file "/a/lib/typesMap.json" doesn't exist +Info 1 [00:01:04.000] request: { "seq": 0, "type": "request", @@ -200,11 +200,11 @@ FsWatches:: FsWatchesRecursive:: -Info 2 [16:01:05.000] Search path: /user/username/projects/myproject/main -Info 3 [16:01:06.000] For info: /user/username/projects/myproject/main/main.ts :: Config file name: /user/username/projects/myproject/main/tsconfig.json -Info 4 [16:01:07.000] Creating configuration project /user/username/projects/myproject/main/tsconfig.json -Info 5 [16:01:08.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/main/tsconfig.json 2000 undefined Project: /user/username/projects/myproject/main/tsconfig.json WatchType: Config file -Info 6 [16:01:09.000] Config: /user/username/projects/myproject/main/tsconfig.json : { +Info 2 [00:01:05.000] Search path: /user/username/projects/myproject/main +Info 3 [00:01:06.000] For info: /user/username/projects/myproject/main/main.ts :: Config file name: /user/username/projects/myproject/main/tsconfig.json +Info 4 [00:01:07.000] Creating configuration project /user/username/projects/myproject/main/tsconfig.json +Info 5 [00:01:08.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/main/tsconfig.json 2000 undefined Project: /user/username/projects/myproject/main/tsconfig.json WatchType: Config file +Info 6 [00:01:09.000] Config: /user/username/projects/myproject/main/tsconfig.json : { "rootNames": [ "/user/username/projects/myproject/main/main.ts" ], @@ -214,21 +214,21 @@ Info 6 [16:01:09.000] Config: /user/username/projects/myproject/main/tsconfig "configFilePath": "/user/username/projects/myproject/main/tsconfig.json" } } -Info 7 [16:01:10.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/main 1 undefined Config: /user/username/projects/myproject/main/tsconfig.json WatchType: Wild card directory -Info 8 [16:01:11.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/main 1 undefined Config: /user/username/projects/myproject/main/tsconfig.json WatchType: Wild card directory -Info 9 [16:01:12.000] Plugins were requested but not running in environment that supports 'require'. Nothing will be loaded -Info 10 [16:01:13.000] Starting updateGraphWorker: Project: /user/username/projects/myproject/main/tsconfig.json -Info 11 [16:01:14.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/decls 1 undefined Project: /user/username/projects/myproject/main/tsconfig.json WatchType: Failed Lookup Locations -Info 12 [16:01:15.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/decls 1 undefined Project: /user/username/projects/myproject/main/tsconfig.json WatchType: Failed Lookup Locations -Info 13 [16:01:16.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/decls/fns.d.ts 500 undefined WatchType: Closed Script info -Info 14 [16:01:17.000] FileWatcher:: Added:: WatchInfo: /a/lib/lib.d.ts 500 undefined WatchType: Closed Script info -Info 15 [16:01:18.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/main/node_modules/@types 1 undefined Project: /user/username/projects/myproject/main/tsconfig.json WatchType: Type roots -Info 16 [16:01:19.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/main/node_modules/@types 1 undefined Project: /user/username/projects/myproject/main/tsconfig.json WatchType: Type roots -Info 17 [16:01:20.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/main/tsconfig.json WatchType: Type roots -Info 18 [16:01:21.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/main/tsconfig.json WatchType: Type roots -Info 19 [16:01:22.000] Finishing updateGraphWorker: Project: /user/username/projects/myproject/main/tsconfig.json Version: 1 structureChanged: true structureIsReused:: Not Elapsed:: *ms -Info 20 [16:01:23.000] Project '/user/username/projects/myproject/main/tsconfig.json' (Configured) -Info 21 [16:01:24.000] Files (3) +Info 7 [00:01:10.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/main 1 undefined Config: /user/username/projects/myproject/main/tsconfig.json WatchType: Wild card directory +Info 8 [00:01:11.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/main 1 undefined Config: /user/username/projects/myproject/main/tsconfig.json WatchType: Wild card directory +Info 9 [00:01:12.000] Plugins were requested but not running in environment that supports 'require'. Nothing will be loaded +Info 10 [00:01:13.000] Starting updateGraphWorker: Project: /user/username/projects/myproject/main/tsconfig.json +Info 11 [00:01:14.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/decls 1 undefined Project: /user/username/projects/myproject/main/tsconfig.json WatchType: Failed Lookup Locations +Info 12 [00:01:15.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/decls 1 undefined Project: /user/username/projects/myproject/main/tsconfig.json WatchType: Failed Lookup Locations +Info 13 [00:01:16.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/decls/fns.d.ts 500 undefined WatchType: Closed Script info +Info 14 [00:01:17.000] FileWatcher:: Added:: WatchInfo: /a/lib/lib.d.ts 500 undefined WatchType: Closed Script info +Info 15 [00:01:18.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/main/node_modules/@types 1 undefined Project: /user/username/projects/myproject/main/tsconfig.json WatchType: Type roots +Info 16 [00:01:19.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/main/node_modules/@types 1 undefined Project: /user/username/projects/myproject/main/tsconfig.json WatchType: Type roots +Info 17 [00:01:20.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/main/tsconfig.json WatchType: Type roots +Info 18 [00:01:21.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/main/tsconfig.json WatchType: Type roots +Info 19 [00:01:22.000] Finishing updateGraphWorker: Project: /user/username/projects/myproject/main/tsconfig.json Version: 1 structureChanged: true structureIsReused:: Not Elapsed:: *ms +Info 20 [00:01:23.000] Project '/user/username/projects/myproject/main/tsconfig.json' (Configured) +Info 21 [00:01:24.000] Files (3) /a/lib/lib.d.ts /user/username/projects/myproject/decls/fns.d.ts /user/username/projects/myproject/main/main.ts @@ -241,16 +241,16 @@ Info 21 [16:01:24.000] Files (3) main.ts Matched by default include pattern '**/*' -Info 22 [16:01:25.000] ----------------------------------------------- -Info 23 [16:01:26.000] Search path: /user/username/projects/myproject/main -Info 24 [16:01:27.000] For info: /user/username/projects/myproject/main/tsconfig.json :: No config files found. -Info 25 [16:01:28.000] Project '/user/username/projects/myproject/main/tsconfig.json' (Configured) -Info 25 [16:01:29.000] Files (3) +Info 22 [00:01:25.000] ----------------------------------------------- +Info 23 [00:01:26.000] Search path: /user/username/projects/myproject/main +Info 24 [00:01:27.000] For info: /user/username/projects/myproject/main/tsconfig.json :: No config files found. +Info 25 [00:01:28.000] Project '/user/username/projects/myproject/main/tsconfig.json' (Configured) +Info 25 [00:01:29.000] Files (3) -Info 25 [16:01:30.000] ----------------------------------------------- -Info 25 [16:01:31.000] Open files: -Info 25 [16:01:32.000] FileName: /user/username/projects/myproject/main/main.ts ProjectRootPath: undefined -Info 25 [16:01:33.000] Projects: /user/username/projects/myproject/main/tsconfig.json +Info 25 [00:01:30.000] ----------------------------------------------- +Info 25 [00:01:31.000] Open files: +Info 25 [00:01:32.000] FileName: /user/username/projects/myproject/main/main.ts ProjectRootPath: undefined +Info 25 [00:01:33.000] Projects: /user/username/projects/myproject/main/tsconfig.json After request PolledWatches:: @@ -273,11 +273,11 @@ FsWatchesRecursive:: /user/username/projects/myproject/decls: {} -Info 25 [16:01:34.000] response: +Info 25 [00:01:34.000] response: { "responseRequired": false } -Info 26 [16:01:35.000] request: +Info 26 [00:01:35.000] request: { "seq": 0, "type": "request", @@ -308,11 +308,11 @@ FsWatchesRecursive:: /user/username/projects/myproject/decls: {} -Info 27 [16:01:36.000] Search path: /user/username/projects/myproject/random -Info 28 [16:01:37.000] For info: /user/username/projects/myproject/random/random.ts :: Config file name: /user/username/projects/myproject/random/tsconfig.json -Info 29 [16:01:38.000] Creating configuration project /user/username/projects/myproject/random/tsconfig.json -Info 30 [16:01:39.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/random/tsconfig.json 2000 undefined Project: /user/username/projects/myproject/random/tsconfig.json WatchType: Config file -Info 31 [16:01:40.000] Config: /user/username/projects/myproject/random/tsconfig.json : { +Info 27 [00:01:36.000] Search path: /user/username/projects/myproject/random +Info 28 [00:01:37.000] For info: /user/username/projects/myproject/random/random.ts :: Config file name: /user/username/projects/myproject/random/tsconfig.json +Info 29 [00:01:38.000] Creating configuration project /user/username/projects/myproject/random/tsconfig.json +Info 30 [00:01:39.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/random/tsconfig.json 2000 undefined Project: /user/username/projects/myproject/random/tsconfig.json WatchType: Config file +Info 31 [00:01:40.000] Config: /user/username/projects/myproject/random/tsconfig.json : { "rootNames": [ "/user/username/projects/myproject/random/random.ts" ], @@ -320,17 +320,17 @@ Info 31 [16:01:40.000] Config: /user/username/projects/myproject/random/tsconf "configFilePath": "/user/username/projects/myproject/random/tsconfig.json" } } -Info 32 [16:01:41.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/random 1 undefined Config: /user/username/projects/myproject/random/tsconfig.json WatchType: Wild card directory -Info 33 [16:01:42.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/random 1 undefined Config: /user/username/projects/myproject/random/tsconfig.json WatchType: Wild card directory -Info 34 [16:01:43.000] Plugins were requested but not running in environment that supports 'require'. Nothing will be loaded -Info 35 [16:01:44.000] Starting updateGraphWorker: Project: /user/username/projects/myproject/random/tsconfig.json -Info 36 [16:01:45.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/random/node_modules/@types 1 undefined Project: /user/username/projects/myproject/random/tsconfig.json WatchType: Type roots -Info 37 [16:01:46.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/random/node_modules/@types 1 undefined Project: /user/username/projects/myproject/random/tsconfig.json WatchType: Type roots -Info 38 [16:01:47.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/random/tsconfig.json WatchType: Type roots -Info 39 [16:01:48.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/random/tsconfig.json WatchType: Type roots -Info 40 [16:01:49.000] Finishing updateGraphWorker: Project: /user/username/projects/myproject/random/tsconfig.json Version: 1 structureChanged: true structureIsReused:: Not Elapsed:: *ms -Info 41 [16:01:50.000] Project '/user/username/projects/myproject/random/tsconfig.json' (Configured) -Info 42 [16:01:51.000] Files (2) +Info 32 [00:01:41.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/random 1 undefined Config: /user/username/projects/myproject/random/tsconfig.json WatchType: Wild card directory +Info 33 [00:01:42.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/random 1 undefined Config: /user/username/projects/myproject/random/tsconfig.json WatchType: Wild card directory +Info 34 [00:01:43.000] Plugins were requested but not running in environment that supports 'require'. Nothing will be loaded +Info 35 [00:01:44.000] Starting updateGraphWorker: Project: /user/username/projects/myproject/random/tsconfig.json +Info 36 [00:01:45.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/random/node_modules/@types 1 undefined Project: /user/username/projects/myproject/random/tsconfig.json WatchType: Type roots +Info 37 [00:01:46.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/random/node_modules/@types 1 undefined Project: /user/username/projects/myproject/random/tsconfig.json WatchType: Type roots +Info 38 [00:01:47.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/random/tsconfig.json WatchType: Type roots +Info 39 [00:01:48.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/random/tsconfig.json WatchType: Type roots +Info 40 [00:01:49.000] Finishing updateGraphWorker: Project: /user/username/projects/myproject/random/tsconfig.json Version: 1 structureChanged: true structureIsReused:: Not Elapsed:: *ms +Info 41 [00:01:50.000] Project '/user/username/projects/myproject/random/tsconfig.json' (Configured) +Info 42 [00:01:51.000] Files (2) /a/lib/lib.d.ts /user/username/projects/myproject/random/random.ts @@ -340,20 +340,20 @@ Info 42 [16:01:51.000] Files (2) random.ts Matched by default include pattern '**/*' -Info 43 [16:01:52.000] ----------------------------------------------- -Info 44 [16:01:53.000] Project '/user/username/projects/myproject/main/tsconfig.json' (Configured) -Info 44 [16:01:54.000] Files (3) +Info 43 [00:01:52.000] ----------------------------------------------- +Info 44 [00:01:53.000] Project '/user/username/projects/myproject/main/tsconfig.json' (Configured) +Info 44 [00:01:54.000] Files (3) -Info 44 [16:01:55.000] ----------------------------------------------- -Info 44 [16:01:56.000] Project '/user/username/projects/myproject/random/tsconfig.json' (Configured) -Info 44 [16:01:57.000] Files (2) +Info 44 [00:01:55.000] ----------------------------------------------- +Info 44 [00:01:56.000] Project '/user/username/projects/myproject/random/tsconfig.json' (Configured) +Info 44 [00:01:57.000] Files (2) -Info 44 [16:01:58.000] ----------------------------------------------- -Info 44 [16:01:59.000] Open files: -Info 44 [16:02:00.000] FileName: /user/username/projects/myproject/main/main.ts ProjectRootPath: undefined -Info 44 [16:02:01.000] Projects: /user/username/projects/myproject/main/tsconfig.json -Info 44 [16:02:02.000] FileName: /user/username/projects/myproject/random/random.ts ProjectRootPath: undefined -Info 44 [16:02:03.000] Projects: /user/username/projects/myproject/random/tsconfig.json +Info 44 [00:01:58.000] ----------------------------------------------- +Info 44 [00:01:59.000] Open files: +Info 44 [00:02:00.000] FileName: /user/username/projects/myproject/main/main.ts ProjectRootPath: undefined +Info 44 [00:02:01.000] Projects: /user/username/projects/myproject/main/tsconfig.json +Info 44 [00:02:02.000] FileName: /user/username/projects/myproject/random/random.ts ProjectRootPath: undefined +Info 44 [00:02:03.000] Projects: /user/username/projects/myproject/random/tsconfig.json After request PolledWatches:: @@ -382,11 +382,11 @@ FsWatchesRecursive:: /user/username/projects/myproject/random: {} -Info 44 [16:02:04.000] response: +Info 44 [00:02:04.000] response: { "responseRequired": false } -Info 45 [16:02:05.000] request: +Info 45 [00:02:05.000] request: { "command": "definitionAndBoundSpan", "arguments": { @@ -425,8 +425,8 @@ FsWatchesRecursive:: /user/username/projects/myproject/random: {} -Info 46 [16:02:06.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/decls/FnS.d.ts.map 500 undefined WatchType: Closed Script info -Info 47 [16:02:07.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/dependency/FnS.ts 500 undefined WatchType: Closed Script info +Info 46 [00:02:06.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/decls/FnS.d.ts.map 500 undefined WatchType: Closed Script info +Info 47 [00:02:07.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/dependency/FnS.ts 500 undefined WatchType: Closed Script info After request PolledWatches:: @@ -459,7 +459,7 @@ FsWatchesRecursive:: /user/username/projects/myproject/random: {} -Info 48 [16:02:08.000] response: +Info 48 [00:02:08.000] response: { "response": { "definitions": [ @@ -496,10 +496,10 @@ Info 48 [16:02:08.000] response: }, "responseRequired": true } -Info 49 [16:02:12.000] FileWatcher:: Triggered with /user/username/projects/myproject/decls/fns.d.ts 1:: WatchInfo: /user/username/projects/myproject/decls/fns.d.ts 500 undefined WatchType: Closed Script info -Info 50 [16:02:13.000] Scheduled: /user/username/projects/myproject/main/tsconfig.json -Info 51 [16:02:14.000] Scheduled: *ensureProjectForOpenFiles* -Info 52 [16:02:15.000] Elapsed:: *ms FileWatcher:: Triggered with /user/username/projects/myproject/decls/fns.d.ts 1:: WatchInfo: /user/username/projects/myproject/decls/fns.d.ts 500 undefined WatchType: Closed Script info +Info 49 [00:02:12.000] FileWatcher:: Triggered with /user/username/projects/myproject/decls/fns.d.ts 1:: WatchInfo: /user/username/projects/myproject/decls/fns.d.ts 500 undefined WatchType: Closed Script info +Info 50 [00:02:13.000] Scheduled: /user/username/projects/myproject/main/tsconfig.json +Info 51 [00:02:14.000] Scheduled: *ensureProjectForOpenFiles* +Info 52 [00:02:15.000] Elapsed:: *ms FileWatcher:: Triggered with /user/username/projects/myproject/decls/fns.d.ts 1:: WatchInfo: /user/username/projects/myproject/decls/fns.d.ts 500 undefined WatchType: Closed Script info Before running timeout callbacks //// [/user/username/projects/myproject/decls/FnS.d.ts] export declare function fn1(): void; @@ -541,39 +541,39 @@ FsWatchesRecursive:: /user/username/projects/myproject/random: {} -Info 53 [16:02:16.000] Running: /user/username/projects/myproject/main/tsconfig.json -Info 54 [16:02:17.000] Starting updateGraphWorker: Project: /user/username/projects/myproject/main/tsconfig.json -Info 55 [16:02:18.000] Finishing updateGraphWorker: Project: /user/username/projects/myproject/main/tsconfig.json Version: 2 structureChanged: false structureIsReused:: Completely Elapsed:: *ms -Info 56 [16:02:19.000] Different program with same set of files -Info 57 [16:02:20.000] Running: *ensureProjectForOpenFiles* -Info 58 [16:02:21.000] Before ensureProjectForOpenFiles: -Info 59 [16:02:22.000] Project '/user/username/projects/myproject/main/tsconfig.json' (Configured) -Info 59 [16:02:23.000] Files (3) - -Info 59 [16:02:24.000] ----------------------------------------------- -Info 59 [16:02:25.000] Project '/user/username/projects/myproject/random/tsconfig.json' (Configured) -Info 59 [16:02:26.000] Files (2) - -Info 59 [16:02:27.000] ----------------------------------------------- -Info 59 [16:02:28.000] Open files: -Info 59 [16:02:29.000] FileName: /user/username/projects/myproject/main/main.ts ProjectRootPath: undefined -Info 59 [16:02:30.000] Projects: /user/username/projects/myproject/main/tsconfig.json -Info 59 [16:02:31.000] FileName: /user/username/projects/myproject/random/random.ts ProjectRootPath: undefined -Info 59 [16:02:32.000] Projects: /user/username/projects/myproject/random/tsconfig.json -Info 59 [16:02:33.000] After ensureProjectForOpenFiles: -Info 60 [16:02:34.000] Project '/user/username/projects/myproject/main/tsconfig.json' (Configured) -Info 60 [16:02:35.000] Files (3) - -Info 60 [16:02:36.000] ----------------------------------------------- -Info 60 [16:02:37.000] Project '/user/username/projects/myproject/random/tsconfig.json' (Configured) -Info 60 [16:02:38.000] Files (2) - -Info 60 [16:02:39.000] ----------------------------------------------- -Info 60 [16:02:40.000] Open files: -Info 60 [16:02:41.000] FileName: /user/username/projects/myproject/main/main.ts ProjectRootPath: undefined -Info 60 [16:02:42.000] Projects: /user/username/projects/myproject/main/tsconfig.json -Info 60 [16:02:43.000] FileName: /user/username/projects/myproject/random/random.ts ProjectRootPath: undefined -Info 60 [16:02:44.000] Projects: /user/username/projects/myproject/random/tsconfig.json +Info 53 [00:02:16.000] Running: /user/username/projects/myproject/main/tsconfig.json +Info 54 [00:02:17.000] Starting updateGraphWorker: Project: /user/username/projects/myproject/main/tsconfig.json +Info 55 [00:02:18.000] Finishing updateGraphWorker: Project: /user/username/projects/myproject/main/tsconfig.json Version: 2 structureChanged: false structureIsReused:: Completely Elapsed:: *ms +Info 56 [00:02:19.000] Different program with same set of files +Info 57 [00:02:20.000] Running: *ensureProjectForOpenFiles* +Info 58 [00:02:21.000] Before ensureProjectForOpenFiles: +Info 59 [00:02:22.000] Project '/user/username/projects/myproject/main/tsconfig.json' (Configured) +Info 59 [00:02:23.000] Files (3) + +Info 59 [00:02:24.000] ----------------------------------------------- +Info 59 [00:02:25.000] Project '/user/username/projects/myproject/random/tsconfig.json' (Configured) +Info 59 [00:02:26.000] Files (2) + +Info 59 [00:02:27.000] ----------------------------------------------- +Info 59 [00:02:28.000] Open files: +Info 59 [00:02:29.000] FileName: /user/username/projects/myproject/main/main.ts ProjectRootPath: undefined +Info 59 [00:02:30.000] Projects: /user/username/projects/myproject/main/tsconfig.json +Info 59 [00:02:31.000] FileName: /user/username/projects/myproject/random/random.ts ProjectRootPath: undefined +Info 59 [00:02:32.000] Projects: /user/username/projects/myproject/random/tsconfig.json +Info 59 [00:02:33.000] After ensureProjectForOpenFiles: +Info 60 [00:02:34.000] Project '/user/username/projects/myproject/main/tsconfig.json' (Configured) +Info 60 [00:02:35.000] Files (3) + +Info 60 [00:02:36.000] ----------------------------------------------- +Info 60 [00:02:37.000] Project '/user/username/projects/myproject/random/tsconfig.json' (Configured) +Info 60 [00:02:38.000] Files (2) + +Info 60 [00:02:39.000] ----------------------------------------------- +Info 60 [00:02:40.000] Open files: +Info 60 [00:02:41.000] FileName: /user/username/projects/myproject/main/main.ts ProjectRootPath: undefined +Info 60 [00:02:42.000] Projects: /user/username/projects/myproject/main/tsconfig.json +Info 60 [00:02:43.000] FileName: /user/username/projects/myproject/random/random.ts ProjectRootPath: undefined +Info 60 [00:02:44.000] Projects: /user/username/projects/myproject/random/tsconfig.json After running timeout callbacks PolledWatches:: @@ -606,7 +606,7 @@ FsWatchesRecursive:: /user/username/projects/myproject/random: {} -Info 60 [16:02:45.000] request: +Info 60 [00:02:45.000] request: { "command": "definitionAndBoundSpan", "arguments": { @@ -681,7 +681,7 @@ FsWatchesRecursive:: /user/username/projects/myproject/random: {} -Info 61 [16:02:46.000] response: +Info 61 [00:02:46.000] response: { "response": { "definitions": [ @@ -718,7 +718,7 @@ Info 61 [16:02:46.000] response: }, "responseRequired": true } -Info 62 [16:02:47.000] request: +Info 62 [00:02:47.000] request: { "command": "definitionAndBoundSpan", "arguments": { @@ -793,7 +793,7 @@ FsWatchesRecursive:: /user/username/projects/myproject/random: {} -Info 63 [16:02:48.000] response: +Info 63 [00:02:48.000] response: { "response": { "definitions": [ @@ -830,7 +830,7 @@ Info 63 [16:02:48.000] response: }, "responseRequired": true } -Info 64 [16:02:49.000] request: +Info 64 [00:02:49.000] request: { "command": "definitionAndBoundSpan", "arguments": { @@ -905,7 +905,7 @@ FsWatchesRecursive:: /user/username/projects/myproject/random: {} -Info 65 [16:02:50.000] response: +Info 65 [00:02:50.000] response: { "response": { "definitions": [ @@ -942,7 +942,7 @@ Info 65 [16:02:50.000] response: }, "responseRequired": true } -Info 66 [16:02:51.000] request: +Info 66 [00:02:51.000] request: { "command": "definitionAndBoundSpan", "arguments": { @@ -1017,7 +1017,7 @@ FsWatchesRecursive:: /user/username/projects/myproject/random: {} -Info 67 [16:02:52.000] response: +Info 67 [00:02:52.000] response: { "response": { "definitions": [ @@ -1054,7 +1054,7 @@ Info 67 [16:02:52.000] response: }, "responseRequired": true } -Info 68 [16:02:53.000] request: +Info 68 [00:02:53.000] request: { "command": "definitionAndBoundSpan", "arguments": { @@ -1129,7 +1129,7 @@ FsWatchesRecursive:: /user/username/projects/myproject/random: {} -Info 69 [16:02:54.000] response: +Info 69 [00:02:54.000] response: { "response": { "definitions": [ 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 60e688c1cfa33..38ddef7d41ed5 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 @@ -1,5 +1,5 @@ -Info 0 [16:01:03.000] Provided types map file "/a/lib/typesMap.json" doesn't exist -Info 1 [16:01:04.000] request: +Info 0 [00:01:03.000] Provided types map file "/a/lib/typesMap.json" doesn't exist +Info 1 [00:01:04.000] request: { "seq": 0, "type": "request", @@ -200,11 +200,11 @@ FsWatches:: FsWatchesRecursive:: -Info 2 [16:01:05.000] Search path: /user/username/projects/myproject/main -Info 3 [16:01:06.000] For info: /user/username/projects/myproject/main/main.ts :: Config file name: /user/username/projects/myproject/main/tsconfig.json -Info 4 [16:01:07.000] Creating configuration project /user/username/projects/myproject/main/tsconfig.json -Info 5 [16:01:08.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/main/tsconfig.json 2000 undefined Project: /user/username/projects/myproject/main/tsconfig.json WatchType: Config file -Info 6 [16:01:09.000] Config: /user/username/projects/myproject/main/tsconfig.json : { +Info 2 [00:01:05.000] Search path: /user/username/projects/myproject/main +Info 3 [00:01:06.000] For info: /user/username/projects/myproject/main/main.ts :: Config file name: /user/username/projects/myproject/main/tsconfig.json +Info 4 [00:01:07.000] Creating configuration project /user/username/projects/myproject/main/tsconfig.json +Info 5 [00:01:08.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/main/tsconfig.json 2000 undefined Project: /user/username/projects/myproject/main/tsconfig.json WatchType: Config file +Info 6 [00:01:09.000] Config: /user/username/projects/myproject/main/tsconfig.json : { "rootNames": [ "/user/username/projects/myproject/main/main.ts" ], @@ -214,21 +214,21 @@ Info 6 [16:01:09.000] Config: /user/username/projects/myproject/main/tsconfig "configFilePath": "/user/username/projects/myproject/main/tsconfig.json" } } -Info 7 [16:01:10.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/main 1 undefined Config: /user/username/projects/myproject/main/tsconfig.json WatchType: Wild card directory -Info 8 [16:01:11.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/main 1 undefined Config: /user/username/projects/myproject/main/tsconfig.json WatchType: Wild card directory -Info 9 [16:01:12.000] Plugins were requested but not running in environment that supports 'require'. Nothing will be loaded -Info 10 [16:01:13.000] Starting updateGraphWorker: Project: /user/username/projects/myproject/main/tsconfig.json -Info 11 [16:01:14.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/decls 1 undefined Project: /user/username/projects/myproject/main/tsconfig.json WatchType: Failed Lookup Locations -Info 12 [16:01:15.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/decls 1 undefined Project: /user/username/projects/myproject/main/tsconfig.json WatchType: Failed Lookup Locations -Info 13 [16:01:16.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/decls/fns.d.ts 500 undefined WatchType: Closed Script info -Info 14 [16:01:17.000] FileWatcher:: Added:: WatchInfo: /a/lib/lib.d.ts 500 undefined WatchType: Closed Script info -Info 15 [16:01:18.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/main/node_modules/@types 1 undefined Project: /user/username/projects/myproject/main/tsconfig.json WatchType: Type roots -Info 16 [16:01:19.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/main/node_modules/@types 1 undefined Project: /user/username/projects/myproject/main/tsconfig.json WatchType: Type roots -Info 17 [16:01:20.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/main/tsconfig.json WatchType: Type roots -Info 18 [16:01:21.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/main/tsconfig.json WatchType: Type roots -Info 19 [16:01:22.000] Finishing updateGraphWorker: Project: /user/username/projects/myproject/main/tsconfig.json Version: 1 structureChanged: true structureIsReused:: Not Elapsed:: *ms -Info 20 [16:01:23.000] Project '/user/username/projects/myproject/main/tsconfig.json' (Configured) -Info 21 [16:01:24.000] Files (3) +Info 7 [00:01:10.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/main 1 undefined Config: /user/username/projects/myproject/main/tsconfig.json WatchType: Wild card directory +Info 8 [00:01:11.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/main 1 undefined Config: /user/username/projects/myproject/main/tsconfig.json WatchType: Wild card directory +Info 9 [00:01:12.000] Plugins were requested but not running in environment that supports 'require'. Nothing will be loaded +Info 10 [00:01:13.000] Starting updateGraphWorker: Project: /user/username/projects/myproject/main/tsconfig.json +Info 11 [00:01:14.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/decls 1 undefined Project: /user/username/projects/myproject/main/tsconfig.json WatchType: Failed Lookup Locations +Info 12 [00:01:15.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/decls 1 undefined Project: /user/username/projects/myproject/main/tsconfig.json WatchType: Failed Lookup Locations +Info 13 [00:01:16.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/decls/fns.d.ts 500 undefined WatchType: Closed Script info +Info 14 [00:01:17.000] FileWatcher:: Added:: WatchInfo: /a/lib/lib.d.ts 500 undefined WatchType: Closed Script info +Info 15 [00:01:18.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/main/node_modules/@types 1 undefined Project: /user/username/projects/myproject/main/tsconfig.json WatchType: Type roots +Info 16 [00:01:19.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/main/node_modules/@types 1 undefined Project: /user/username/projects/myproject/main/tsconfig.json WatchType: Type roots +Info 17 [00:01:20.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/main/tsconfig.json WatchType: Type roots +Info 18 [00:01:21.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/main/tsconfig.json WatchType: Type roots +Info 19 [00:01:22.000] Finishing updateGraphWorker: Project: /user/username/projects/myproject/main/tsconfig.json Version: 1 structureChanged: true structureIsReused:: Not Elapsed:: *ms +Info 20 [00:01:23.000] Project '/user/username/projects/myproject/main/tsconfig.json' (Configured) +Info 21 [00:01:24.000] Files (3) /a/lib/lib.d.ts /user/username/projects/myproject/decls/fns.d.ts /user/username/projects/myproject/main/main.ts @@ -241,16 +241,16 @@ Info 21 [16:01:24.000] Files (3) main.ts Matched by default include pattern '**/*' -Info 22 [16:01:25.000] ----------------------------------------------- -Info 23 [16:01:26.000] Search path: /user/username/projects/myproject/main -Info 24 [16:01:27.000] For info: /user/username/projects/myproject/main/tsconfig.json :: No config files found. -Info 25 [16:01:28.000] Project '/user/username/projects/myproject/main/tsconfig.json' (Configured) -Info 25 [16:01:29.000] Files (3) +Info 22 [00:01:25.000] ----------------------------------------------- +Info 23 [00:01:26.000] Search path: /user/username/projects/myproject/main +Info 24 [00:01:27.000] For info: /user/username/projects/myproject/main/tsconfig.json :: No config files found. +Info 25 [00:01:28.000] Project '/user/username/projects/myproject/main/tsconfig.json' (Configured) +Info 25 [00:01:29.000] Files (3) -Info 25 [16:01:30.000] ----------------------------------------------- -Info 25 [16:01:31.000] Open files: -Info 25 [16:01:32.000] FileName: /user/username/projects/myproject/main/main.ts ProjectRootPath: undefined -Info 25 [16:01:33.000] Projects: /user/username/projects/myproject/main/tsconfig.json +Info 25 [00:01:30.000] ----------------------------------------------- +Info 25 [00:01:31.000] Open files: +Info 25 [00:01:32.000] FileName: /user/username/projects/myproject/main/main.ts ProjectRootPath: undefined +Info 25 [00:01:33.000] Projects: /user/username/projects/myproject/main/tsconfig.json After request PolledWatches:: @@ -273,11 +273,11 @@ FsWatchesRecursive:: /user/username/projects/myproject/decls: {} -Info 25 [16:01:34.000] response: +Info 25 [00:01:34.000] response: { "responseRequired": false } -Info 26 [16:01:35.000] request: +Info 26 [00:01:35.000] request: { "seq": 0, "type": "request", @@ -308,11 +308,11 @@ FsWatchesRecursive:: /user/username/projects/myproject/decls: {} -Info 27 [16:01:36.000] Search path: /user/username/projects/myproject/random -Info 28 [16:01:37.000] For info: /user/username/projects/myproject/random/random.ts :: Config file name: /user/username/projects/myproject/random/tsconfig.json -Info 29 [16:01:38.000] Creating configuration project /user/username/projects/myproject/random/tsconfig.json -Info 30 [16:01:39.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/random/tsconfig.json 2000 undefined Project: /user/username/projects/myproject/random/tsconfig.json WatchType: Config file -Info 31 [16:01:40.000] Config: /user/username/projects/myproject/random/tsconfig.json : { +Info 27 [00:01:36.000] Search path: /user/username/projects/myproject/random +Info 28 [00:01:37.000] For info: /user/username/projects/myproject/random/random.ts :: Config file name: /user/username/projects/myproject/random/tsconfig.json +Info 29 [00:01:38.000] Creating configuration project /user/username/projects/myproject/random/tsconfig.json +Info 30 [00:01:39.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/random/tsconfig.json 2000 undefined Project: /user/username/projects/myproject/random/tsconfig.json WatchType: Config file +Info 31 [00:01:40.000] Config: /user/username/projects/myproject/random/tsconfig.json : { "rootNames": [ "/user/username/projects/myproject/random/random.ts" ], @@ -320,17 +320,17 @@ Info 31 [16:01:40.000] Config: /user/username/projects/myproject/random/tsconf "configFilePath": "/user/username/projects/myproject/random/tsconfig.json" } } -Info 32 [16:01:41.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/random 1 undefined Config: /user/username/projects/myproject/random/tsconfig.json WatchType: Wild card directory -Info 33 [16:01:42.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/random 1 undefined Config: /user/username/projects/myproject/random/tsconfig.json WatchType: Wild card directory -Info 34 [16:01:43.000] Plugins were requested but not running in environment that supports 'require'. Nothing will be loaded -Info 35 [16:01:44.000] Starting updateGraphWorker: Project: /user/username/projects/myproject/random/tsconfig.json -Info 36 [16:01:45.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/random/node_modules/@types 1 undefined Project: /user/username/projects/myproject/random/tsconfig.json WatchType: Type roots -Info 37 [16:01:46.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/random/node_modules/@types 1 undefined Project: /user/username/projects/myproject/random/tsconfig.json WatchType: Type roots -Info 38 [16:01:47.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/random/tsconfig.json WatchType: Type roots -Info 39 [16:01:48.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/random/tsconfig.json WatchType: Type roots -Info 40 [16:01:49.000] Finishing updateGraphWorker: Project: /user/username/projects/myproject/random/tsconfig.json Version: 1 structureChanged: true structureIsReused:: Not Elapsed:: *ms -Info 41 [16:01:50.000] Project '/user/username/projects/myproject/random/tsconfig.json' (Configured) -Info 42 [16:01:51.000] Files (2) +Info 32 [00:01:41.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/random 1 undefined Config: /user/username/projects/myproject/random/tsconfig.json WatchType: Wild card directory +Info 33 [00:01:42.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/random 1 undefined Config: /user/username/projects/myproject/random/tsconfig.json WatchType: Wild card directory +Info 34 [00:01:43.000] Plugins were requested but not running in environment that supports 'require'. Nothing will be loaded +Info 35 [00:01:44.000] Starting updateGraphWorker: Project: /user/username/projects/myproject/random/tsconfig.json +Info 36 [00:01:45.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/random/node_modules/@types 1 undefined Project: /user/username/projects/myproject/random/tsconfig.json WatchType: Type roots +Info 37 [00:01:46.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/random/node_modules/@types 1 undefined Project: /user/username/projects/myproject/random/tsconfig.json WatchType: Type roots +Info 38 [00:01:47.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/random/tsconfig.json WatchType: Type roots +Info 39 [00:01:48.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/random/tsconfig.json WatchType: Type roots +Info 40 [00:01:49.000] Finishing updateGraphWorker: Project: /user/username/projects/myproject/random/tsconfig.json Version: 1 structureChanged: true structureIsReused:: Not Elapsed:: *ms +Info 41 [00:01:50.000] Project '/user/username/projects/myproject/random/tsconfig.json' (Configured) +Info 42 [00:01:51.000] Files (2) /a/lib/lib.d.ts /user/username/projects/myproject/random/random.ts @@ -340,20 +340,20 @@ Info 42 [16:01:51.000] Files (2) random.ts Matched by default include pattern '**/*' -Info 43 [16:01:52.000] ----------------------------------------------- -Info 44 [16:01:53.000] Project '/user/username/projects/myproject/main/tsconfig.json' (Configured) -Info 44 [16:01:54.000] Files (3) +Info 43 [00:01:52.000] ----------------------------------------------- +Info 44 [00:01:53.000] Project '/user/username/projects/myproject/main/tsconfig.json' (Configured) +Info 44 [00:01:54.000] Files (3) -Info 44 [16:01:55.000] ----------------------------------------------- -Info 44 [16:01:56.000] Project '/user/username/projects/myproject/random/tsconfig.json' (Configured) -Info 44 [16:01:57.000] Files (2) +Info 44 [00:01:55.000] ----------------------------------------------- +Info 44 [00:01:56.000] Project '/user/username/projects/myproject/random/tsconfig.json' (Configured) +Info 44 [00:01:57.000] Files (2) -Info 44 [16:01:58.000] ----------------------------------------------- -Info 44 [16:01:59.000] Open files: -Info 44 [16:02:00.000] FileName: /user/username/projects/myproject/main/main.ts ProjectRootPath: undefined -Info 44 [16:02:01.000] Projects: /user/username/projects/myproject/main/tsconfig.json -Info 44 [16:02:02.000] FileName: /user/username/projects/myproject/random/random.ts ProjectRootPath: undefined -Info 44 [16:02:03.000] Projects: /user/username/projects/myproject/random/tsconfig.json +Info 44 [00:01:58.000] ----------------------------------------------- +Info 44 [00:01:59.000] Open files: +Info 44 [00:02:00.000] FileName: /user/username/projects/myproject/main/main.ts ProjectRootPath: undefined +Info 44 [00:02:01.000] Projects: /user/username/projects/myproject/main/tsconfig.json +Info 44 [00:02:02.000] FileName: /user/username/projects/myproject/random/random.ts ProjectRootPath: undefined +Info 44 [00:02:03.000] Projects: /user/username/projects/myproject/random/tsconfig.json After request PolledWatches:: @@ -382,11 +382,11 @@ FsWatchesRecursive:: /user/username/projects/myproject/random: {} -Info 44 [16:02:04.000] response: +Info 44 [00:02:04.000] response: { "responseRequired": false } -Info 45 [16:02:05.000] request: +Info 45 [00:02:05.000] request: { "command": "definitionAndBoundSpan", "arguments": { @@ -425,8 +425,8 @@ FsWatchesRecursive:: /user/username/projects/myproject/random: {} -Info 46 [16:02:06.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/decls/FnS.d.ts.map 500 undefined WatchType: Closed Script info -Info 47 [16:02:07.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/dependency/FnS.ts 500 undefined WatchType: Closed Script info +Info 46 [00:02:06.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/decls/FnS.d.ts.map 500 undefined WatchType: Closed Script info +Info 47 [00:02:07.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/dependency/FnS.ts 500 undefined WatchType: Closed Script info After request PolledWatches:: @@ -459,7 +459,7 @@ FsWatchesRecursive:: /user/username/projects/myproject/random: {} -Info 48 [16:02:08.000] response: +Info 48 [00:02:08.000] response: { "response": { "definitions": [ @@ -496,11 +496,11 @@ Info 48 [16:02:08.000] response: }, "responseRequired": true } -Info 49 [16:02:12.000] FileWatcher:: Triggered with /user/username/projects/myproject/decls/fns.d.ts 1:: WatchInfo: /user/username/projects/myproject/decls/fns.d.ts 500 undefined WatchType: Closed Script info -Info 50 [16:02:13.000] Scheduled: /user/username/projects/myproject/main/tsconfig.json -Info 51 [16:02:14.000] Scheduled: *ensureProjectForOpenFiles* -Info 52 [16:02:15.000] Elapsed:: *ms FileWatcher:: Triggered with /user/username/projects/myproject/decls/fns.d.ts 1:: WatchInfo: /user/username/projects/myproject/decls/fns.d.ts 500 undefined WatchType: Closed Script info -Info 53 [16:02:16.000] request: +Info 49 [00:02:12.000] FileWatcher:: Triggered with /user/username/projects/myproject/decls/fns.d.ts 1:: WatchInfo: /user/username/projects/myproject/decls/fns.d.ts 500 undefined WatchType: Closed Script info +Info 50 [00:02:13.000] Scheduled: /user/username/projects/myproject/main/tsconfig.json +Info 51 [00:02:14.000] Scheduled: *ensureProjectForOpenFiles* +Info 52 [00:02:15.000] Elapsed:: *ms FileWatcher:: Triggered with /user/username/projects/myproject/decls/fns.d.ts 1:: WatchInfo: /user/username/projects/myproject/decls/fns.d.ts 500 undefined WatchType: Closed Script info +Info 53 [00:02:16.000] request: { "command": "definitionAndBoundSpan", "arguments": { @@ -552,9 +552,9 @@ FsWatchesRecursive:: /user/username/projects/myproject/random: {} -Info 54 [16:02:17.000] Starting updateGraphWorker: Project: /user/username/projects/myproject/main/tsconfig.json -Info 55 [16:02:18.000] Finishing updateGraphWorker: Project: /user/username/projects/myproject/main/tsconfig.json Version: 2 structureChanged: false structureIsReused:: Completely Elapsed:: *ms -Info 56 [16:02:19.000] Different program with same set of files +Info 54 [00:02:17.000] Starting updateGraphWorker: Project: /user/username/projects/myproject/main/tsconfig.json +Info 55 [00:02:18.000] Finishing updateGraphWorker: Project: /user/username/projects/myproject/main/tsconfig.json Version: 2 structureChanged: false structureIsReused:: Completely Elapsed:: *ms +Info 56 [00:02:19.000] Different program with same set of files After request PolledWatches:: @@ -587,7 +587,7 @@ FsWatchesRecursive:: /user/username/projects/myproject/random: {} -Info 57 [16:02:20.000] response: +Info 57 [00:02:20.000] response: { "response": { "definitions": [ @@ -624,7 +624,7 @@ Info 57 [16:02:20.000] response: }, "responseRequired": true } -Info 58 [16:02:21.000] request: +Info 58 [00:02:21.000] request: { "command": "definitionAndBoundSpan", "arguments": { @@ -699,7 +699,7 @@ FsWatchesRecursive:: /user/username/projects/myproject/random: {} -Info 59 [16:02:22.000] response: +Info 59 [00:02:22.000] response: { "response": { "definitions": [ @@ -736,7 +736,7 @@ Info 59 [16:02:22.000] response: }, "responseRequired": true } -Info 60 [16:02:23.000] request: +Info 60 [00:02:23.000] request: { "command": "definitionAndBoundSpan", "arguments": { @@ -811,7 +811,7 @@ FsWatchesRecursive:: /user/username/projects/myproject/random: {} -Info 61 [16:02:24.000] response: +Info 61 [00:02:24.000] response: { "response": { "definitions": [ @@ -848,7 +848,7 @@ Info 61 [16:02:24.000] response: }, "responseRequired": true } -Info 62 [16:02:25.000] request: +Info 62 [00:02:25.000] request: { "command": "definitionAndBoundSpan", "arguments": { @@ -923,7 +923,7 @@ FsWatchesRecursive:: /user/username/projects/myproject/random: {} -Info 63 [16:02:26.000] response: +Info 63 [00:02:26.000] response: { "response": { "definitions": [ @@ -960,7 +960,7 @@ Info 63 [16:02:26.000] response: }, "responseRequired": true } -Info 64 [16:02:27.000] request: +Info 64 [00:02:27.000] request: { "command": "definitionAndBoundSpan", "arguments": { @@ -1035,7 +1035,7 @@ FsWatchesRecursive:: /user/username/projects/myproject/random: {} -Info 65 [16:02:28.000] response: +Info 65 [00:02:28.000] response: { "response": { "definitions": [ 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 6b4df2cf9f15e..86024cc2b6b7c 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 @@ -1,5 +1,5 @@ -Info 0 [16:01:04.000] Provided types map file "/a/lib/typesMap.json" doesn't exist -Info 1 [16:01:05.000] request: +Info 0 [00:01:04.000] Provided types map file "/a/lib/typesMap.json" doesn't exist +Info 1 [00:01:05.000] request: { "seq": 0, "type": "request", @@ -192,11 +192,11 @@ FsWatches:: FsWatchesRecursive:: -Info 2 [16:01:06.000] Search path: /user/username/projects/myproject/main -Info 3 [16:01:07.000] For info: /user/username/projects/myproject/main/main.ts :: Config file name: /user/username/projects/myproject/main/tsconfig.json -Info 4 [16:01:08.000] Creating configuration project /user/username/projects/myproject/main/tsconfig.json -Info 5 [16:01:09.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/main/tsconfig.json 2000 undefined Project: /user/username/projects/myproject/main/tsconfig.json WatchType: Config file -Info 6 [16:01:10.000] Config: /user/username/projects/myproject/main/tsconfig.json : { +Info 2 [00:01:06.000] Search path: /user/username/projects/myproject/main +Info 3 [00:01:07.000] For info: /user/username/projects/myproject/main/main.ts :: Config file name: /user/username/projects/myproject/main/tsconfig.json +Info 4 [00:01:08.000] Creating configuration project /user/username/projects/myproject/main/tsconfig.json +Info 5 [00:01:09.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/main/tsconfig.json 2000 undefined Project: /user/username/projects/myproject/main/tsconfig.json WatchType: Config file +Info 6 [00:01:10.000] Config: /user/username/projects/myproject/main/tsconfig.json : { "rootNames": [ "/user/username/projects/myproject/main/main.ts" ], @@ -206,20 +206,20 @@ Info 6 [16:01:10.000] Config: /user/username/projects/myproject/main/tsconfig "configFilePath": "/user/username/projects/myproject/main/tsconfig.json" } } -Info 7 [16:01:11.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/main 1 undefined Config: /user/username/projects/myproject/main/tsconfig.json WatchType: Wild card directory -Info 8 [16:01:12.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/main 1 undefined Config: /user/username/projects/myproject/main/tsconfig.json WatchType: Wild card directory -Info 9 [16:01:13.000] Plugins were requested but not running in environment that supports 'require'. Nothing will be loaded -Info 10 [16:01:14.000] Starting updateGraphWorker: Project: /user/username/projects/myproject/main/tsconfig.json -Info 11 [16:01:15.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/decls 1 undefined Project: /user/username/projects/myproject/main/tsconfig.json WatchType: Failed Lookup Locations -Info 12 [16:01:16.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/decls 1 undefined Project: /user/username/projects/myproject/main/tsconfig.json WatchType: Failed Lookup Locations -Info 13 [16:01:17.000] FileWatcher:: Added:: WatchInfo: /a/lib/lib.d.ts 500 undefined WatchType: Closed Script info -Info 14 [16:01:18.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/main/node_modules/@types 1 undefined Project: /user/username/projects/myproject/main/tsconfig.json WatchType: Type roots -Info 15 [16:01:19.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/main/node_modules/@types 1 undefined Project: /user/username/projects/myproject/main/tsconfig.json WatchType: Type roots -Info 16 [16:01:20.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/main/tsconfig.json WatchType: Type roots -Info 17 [16:01:21.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/main/tsconfig.json WatchType: Type roots -Info 18 [16:01:22.000] Finishing updateGraphWorker: Project: /user/username/projects/myproject/main/tsconfig.json Version: 1 structureChanged: true structureIsReused:: Not Elapsed:: *ms -Info 19 [16:01:23.000] Project '/user/username/projects/myproject/main/tsconfig.json' (Configured) -Info 20 [16:01:24.000] Files (2) +Info 7 [00:01:11.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/main 1 undefined Config: /user/username/projects/myproject/main/tsconfig.json WatchType: Wild card directory +Info 8 [00:01:12.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/main 1 undefined Config: /user/username/projects/myproject/main/tsconfig.json WatchType: Wild card directory +Info 9 [00:01:13.000] Plugins were requested but not running in environment that supports 'require'. Nothing will be loaded +Info 10 [00:01:14.000] Starting updateGraphWorker: Project: /user/username/projects/myproject/main/tsconfig.json +Info 11 [00:01:15.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/decls 1 undefined Project: /user/username/projects/myproject/main/tsconfig.json WatchType: Failed Lookup Locations +Info 12 [00:01:16.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/decls 1 undefined Project: /user/username/projects/myproject/main/tsconfig.json WatchType: Failed Lookup Locations +Info 13 [00:01:17.000] FileWatcher:: Added:: WatchInfo: /a/lib/lib.d.ts 500 undefined WatchType: Closed Script info +Info 14 [00:01:18.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/main/node_modules/@types 1 undefined Project: /user/username/projects/myproject/main/tsconfig.json WatchType: Type roots +Info 15 [00:01:19.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/main/node_modules/@types 1 undefined Project: /user/username/projects/myproject/main/tsconfig.json WatchType: Type roots +Info 16 [00:01:20.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/main/tsconfig.json WatchType: Type roots +Info 17 [00:01:21.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/main/tsconfig.json WatchType: Type roots +Info 18 [00:01:22.000] Finishing updateGraphWorker: Project: /user/username/projects/myproject/main/tsconfig.json Version: 1 structureChanged: true structureIsReused:: Not Elapsed:: *ms +Info 19 [00:01:23.000] Project '/user/username/projects/myproject/main/tsconfig.json' (Configured) +Info 20 [00:01:24.000] Files (2) /a/lib/lib.d.ts /user/username/projects/myproject/main/main.ts @@ -229,16 +229,16 @@ Info 20 [16:01:24.000] Files (2) main.ts Matched by default include pattern '**/*' -Info 21 [16:01:25.000] ----------------------------------------------- -Info 22 [16:01:26.000] Search path: /user/username/projects/myproject/main -Info 23 [16:01:27.000] For info: /user/username/projects/myproject/main/tsconfig.json :: No config files found. -Info 24 [16:01:28.000] Project '/user/username/projects/myproject/main/tsconfig.json' (Configured) -Info 24 [16:01:29.000] Files (2) +Info 21 [00:01:25.000] ----------------------------------------------- +Info 22 [00:01:26.000] Search path: /user/username/projects/myproject/main +Info 23 [00:01:27.000] For info: /user/username/projects/myproject/main/tsconfig.json :: No config files found. +Info 24 [00:01:28.000] Project '/user/username/projects/myproject/main/tsconfig.json' (Configured) +Info 24 [00:01:29.000] Files (2) -Info 24 [16:01:30.000] ----------------------------------------------- -Info 24 [16:01:31.000] Open files: -Info 24 [16:01:32.000] FileName: /user/username/projects/myproject/main/main.ts ProjectRootPath: undefined -Info 24 [16:01:33.000] Projects: /user/username/projects/myproject/main/tsconfig.json +Info 24 [00:01:30.000] ----------------------------------------------- +Info 24 [00:01:31.000] Open files: +Info 24 [00:01:32.000] FileName: /user/username/projects/myproject/main/main.ts ProjectRootPath: undefined +Info 24 [00:01:33.000] Projects: /user/username/projects/myproject/main/tsconfig.json After request PolledWatches:: @@ -259,11 +259,11 @@ FsWatchesRecursive:: /user/username/projects/myproject/decls: {} -Info 24 [16:01:34.000] response: +Info 24 [00:01:34.000] response: { "responseRequired": false } -Info 25 [16:01:35.000] request: +Info 25 [00:01:35.000] request: { "seq": 0, "type": "request", @@ -292,11 +292,11 @@ FsWatchesRecursive:: /user/username/projects/myproject/decls: {} -Info 26 [16:01:36.000] Search path: /user/username/projects/myproject/random -Info 27 [16:01:37.000] For info: /user/username/projects/myproject/random/random.ts :: Config file name: /user/username/projects/myproject/random/tsconfig.json -Info 28 [16:01:38.000] Creating configuration project /user/username/projects/myproject/random/tsconfig.json -Info 29 [16:01:39.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/random/tsconfig.json 2000 undefined Project: /user/username/projects/myproject/random/tsconfig.json WatchType: Config file -Info 30 [16:01:40.000] Config: /user/username/projects/myproject/random/tsconfig.json : { +Info 26 [00:01:36.000] Search path: /user/username/projects/myproject/random +Info 27 [00:01:37.000] For info: /user/username/projects/myproject/random/random.ts :: Config file name: /user/username/projects/myproject/random/tsconfig.json +Info 28 [00:01:38.000] Creating configuration project /user/username/projects/myproject/random/tsconfig.json +Info 29 [00:01:39.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/random/tsconfig.json 2000 undefined Project: /user/username/projects/myproject/random/tsconfig.json WatchType: Config file +Info 30 [00:01:40.000] Config: /user/username/projects/myproject/random/tsconfig.json : { "rootNames": [ "/user/username/projects/myproject/random/random.ts" ], @@ -304,17 +304,17 @@ Info 30 [16:01:40.000] Config: /user/username/projects/myproject/random/tsconf "configFilePath": "/user/username/projects/myproject/random/tsconfig.json" } } -Info 31 [16:01:41.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/random 1 undefined Config: /user/username/projects/myproject/random/tsconfig.json WatchType: Wild card directory -Info 32 [16:01:42.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/random 1 undefined Config: /user/username/projects/myproject/random/tsconfig.json WatchType: Wild card directory -Info 33 [16:01:43.000] Plugins were requested but not running in environment that supports 'require'. Nothing will be loaded -Info 34 [16:01:44.000] Starting updateGraphWorker: Project: /user/username/projects/myproject/random/tsconfig.json -Info 35 [16:01:45.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/random/node_modules/@types 1 undefined Project: /user/username/projects/myproject/random/tsconfig.json WatchType: Type roots -Info 36 [16:01:46.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/random/node_modules/@types 1 undefined Project: /user/username/projects/myproject/random/tsconfig.json WatchType: Type roots -Info 37 [16:01:47.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/random/tsconfig.json WatchType: Type roots -Info 38 [16:01:48.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/random/tsconfig.json WatchType: Type roots -Info 39 [16:01:49.000] Finishing updateGraphWorker: Project: /user/username/projects/myproject/random/tsconfig.json Version: 1 structureChanged: true structureIsReused:: Not Elapsed:: *ms -Info 40 [16:01:50.000] Project '/user/username/projects/myproject/random/tsconfig.json' (Configured) -Info 41 [16:01:51.000] Files (2) +Info 31 [00:01:41.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/random 1 undefined Config: /user/username/projects/myproject/random/tsconfig.json WatchType: Wild card directory +Info 32 [00:01:42.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/random 1 undefined Config: /user/username/projects/myproject/random/tsconfig.json WatchType: Wild card directory +Info 33 [00:01:43.000] Plugins were requested but not running in environment that supports 'require'. Nothing will be loaded +Info 34 [00:01:44.000] Starting updateGraphWorker: Project: /user/username/projects/myproject/random/tsconfig.json +Info 35 [00:01:45.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/random/node_modules/@types 1 undefined Project: /user/username/projects/myproject/random/tsconfig.json WatchType: Type roots +Info 36 [00:01:46.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/random/node_modules/@types 1 undefined Project: /user/username/projects/myproject/random/tsconfig.json WatchType: Type roots +Info 37 [00:01:47.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/random/tsconfig.json WatchType: Type roots +Info 38 [00:01:48.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/random/tsconfig.json WatchType: Type roots +Info 39 [00:01:49.000] Finishing updateGraphWorker: Project: /user/username/projects/myproject/random/tsconfig.json Version: 1 structureChanged: true structureIsReused:: Not Elapsed:: *ms +Info 40 [00:01:50.000] Project '/user/username/projects/myproject/random/tsconfig.json' (Configured) +Info 41 [00:01:51.000] Files (2) /a/lib/lib.d.ts /user/username/projects/myproject/random/random.ts @@ -324,20 +324,20 @@ Info 41 [16:01:51.000] Files (2) random.ts Matched by default include pattern '**/*' -Info 42 [16:01:52.000] ----------------------------------------------- -Info 43 [16:01:53.000] Project '/user/username/projects/myproject/main/tsconfig.json' (Configured) -Info 43 [16:01:54.000] Files (2) +Info 42 [00:01:52.000] ----------------------------------------------- +Info 43 [00:01:53.000] Project '/user/username/projects/myproject/main/tsconfig.json' (Configured) +Info 43 [00:01:54.000] Files (2) -Info 43 [16:01:55.000] ----------------------------------------------- -Info 43 [16:01:56.000] Project '/user/username/projects/myproject/random/tsconfig.json' (Configured) -Info 43 [16:01:57.000] Files (2) +Info 43 [00:01:55.000] ----------------------------------------------- +Info 43 [00:01:56.000] Project '/user/username/projects/myproject/random/tsconfig.json' (Configured) +Info 43 [00:01:57.000] Files (2) -Info 43 [16:01:58.000] ----------------------------------------------- -Info 43 [16:01:59.000] Open files: -Info 43 [16:02:00.000] FileName: /user/username/projects/myproject/main/main.ts ProjectRootPath: undefined -Info 43 [16:02:01.000] Projects: /user/username/projects/myproject/main/tsconfig.json -Info 43 [16:02:02.000] FileName: /user/username/projects/myproject/random/random.ts ProjectRootPath: undefined -Info 43 [16:02:03.000] Projects: /user/username/projects/myproject/random/tsconfig.json +Info 43 [00:01:58.000] ----------------------------------------------- +Info 43 [00:01:59.000] Open files: +Info 43 [00:02:00.000] FileName: /user/username/projects/myproject/main/main.ts ProjectRootPath: undefined +Info 43 [00:02:01.000] Projects: /user/username/projects/myproject/main/tsconfig.json +Info 43 [00:02:02.000] FileName: /user/username/projects/myproject/random/random.ts ProjectRootPath: undefined +Info 43 [00:02:03.000] Projects: /user/username/projects/myproject/random/tsconfig.json After request PolledWatches:: @@ -364,11 +364,11 @@ FsWatchesRecursive:: /user/username/projects/myproject/random: {} -Info 43 [16:02:04.000] response: +Info 43 [00:02:04.000] response: { "responseRequired": false } -Info 44 [16:02:05.000] request: +Info 44 [00:02:05.000] request: { "command": "definitionAndBoundSpan", "arguments": { @@ -431,7 +431,7 @@ FsWatchesRecursive:: /user/username/projects/myproject/random: {} -Info 45 [16:02:06.000] response: +Info 45 [00:02:06.000] response: { "response": { "definitions": [ @@ -468,10 +468,10 @@ Info 45 [16:02:06.000] response: }, "responseRequired": true } -Info 46 [16:02:09.000] DirectoryWatcher:: Triggered with /user/username/projects/myproject/decls/FnS.d.ts :: WatchInfo: /user/username/projects/myproject/decls 1 undefined Project: /user/username/projects/myproject/main/tsconfig.json WatchType: Failed Lookup Locations -Info 47 [16:02:10.000] Scheduled: /user/username/projects/myproject/main/tsconfig.jsonFailedLookupInvalidation -Info 48 [16:02:11.000] Elapsed:: *ms DirectoryWatcher:: Triggered with /user/username/projects/myproject/decls/FnS.d.ts :: WatchInfo: /user/username/projects/myproject/decls 1 undefined Project: /user/username/projects/myproject/main/tsconfig.json WatchType: Failed Lookup Locations -Info 49 [16:02:12.000] request: +Info 46 [00:02:09.000] DirectoryWatcher:: Triggered with /user/username/projects/myproject/decls/FnS.d.ts :: WatchInfo: /user/username/projects/myproject/decls 1 undefined Project: /user/username/projects/myproject/main/tsconfig.json WatchType: Failed Lookup Locations +Info 47 [00:02:10.000] Scheduled: /user/username/projects/myproject/main/tsconfig.jsonFailedLookupInvalidation +Info 48 [00:02:11.000] Elapsed:: *ms DirectoryWatcher:: Triggered with /user/username/projects/myproject/decls/FnS.d.ts :: WatchInfo: /user/username/projects/myproject/decls 1 undefined Project: /user/username/projects/myproject/main/tsconfig.json WatchType: Failed Lookup Locations +Info 49 [00:02:12.000] request: { "command": "definitionAndBoundSpan", "arguments": { @@ -516,12 +516,12 @@ FsWatchesRecursive:: /user/username/projects/myproject/random: {} -Info 50 [16:02:13.000] Scheduled: *ensureProjectForOpenFiles* -Info 51 [16:02:14.000] Starting updateGraphWorker: Project: /user/username/projects/myproject/main/tsconfig.json -Info 52 [16:02:15.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/decls/fns.d.ts 500 undefined WatchType: Closed Script info -Info 53 [16:02:16.000] Finishing updateGraphWorker: Project: /user/username/projects/myproject/main/tsconfig.json Version: 2 structureChanged: true structureIsReused:: SafeModules Elapsed:: *ms -Info 54 [16:02:17.000] Project '/user/username/projects/myproject/main/tsconfig.json' (Configured) -Info 55 [16:02:18.000] Files (3) +Info 50 [00:02:13.000] Scheduled: *ensureProjectForOpenFiles* +Info 51 [00:02:14.000] Starting updateGraphWorker: Project: /user/username/projects/myproject/main/tsconfig.json +Info 52 [00:02:15.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/decls/fns.d.ts 500 undefined WatchType: Closed Script info +Info 53 [00:02:16.000] Finishing updateGraphWorker: Project: /user/username/projects/myproject/main/tsconfig.json Version: 2 structureChanged: true structureIsReused:: SafeModules Elapsed:: *ms +Info 54 [00:02:17.000] Project '/user/username/projects/myproject/main/tsconfig.json' (Configured) +Info 55 [00:02:18.000] Files (3) /a/lib/lib.d.ts /user/username/projects/myproject/decls/fns.d.ts /user/username/projects/myproject/main/main.ts @@ -534,9 +534,9 @@ Info 55 [16:02:18.000] Files (3) main.ts Matched by default include pattern '**/*' -Info 56 [16:02:19.000] ----------------------------------------------- -Info 57 [16:02:20.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/decls/FnS.d.ts.map 500 undefined WatchType: Closed Script info -Info 58 [16:02:21.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/dependency/FnS.ts 500 undefined WatchType: Closed Script info +Info 56 [00:02:19.000] ----------------------------------------------- +Info 57 [00:02:20.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/decls/FnS.d.ts.map 500 undefined WatchType: Closed Script info +Info 58 [00:02:21.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/dependency/FnS.ts 500 undefined WatchType: Closed Script info After request PolledWatches:: @@ -569,7 +569,7 @@ FsWatchesRecursive:: /user/username/projects/myproject/random: {} -Info 59 [16:02:22.000] response: +Info 59 [00:02:22.000] response: { "response": { "definitions": [ @@ -606,7 +606,7 @@ Info 59 [16:02:22.000] response: }, "responseRequired": true } -Info 60 [16:02:23.000] request: +Info 60 [00:02:23.000] request: { "command": "definitionAndBoundSpan", "arguments": { @@ -681,7 +681,7 @@ FsWatchesRecursive:: /user/username/projects/myproject/random: {} -Info 61 [16:02:24.000] response: +Info 61 [00:02:24.000] response: { "response": { "definitions": [ @@ -718,7 +718,7 @@ Info 61 [16:02:24.000] response: }, "responseRequired": true } -Info 62 [16:02:25.000] request: +Info 62 [00:02:25.000] request: { "command": "definitionAndBoundSpan", "arguments": { @@ -793,7 +793,7 @@ FsWatchesRecursive:: /user/username/projects/myproject/random: {} -Info 63 [16:02:26.000] response: +Info 63 [00:02:26.000] response: { "response": { "definitions": [ @@ -830,7 +830,7 @@ Info 63 [16:02:26.000] response: }, "responseRequired": true } -Info 64 [16:02:27.000] request: +Info 64 [00:02:27.000] request: { "command": "definitionAndBoundSpan", "arguments": { @@ -905,7 +905,7 @@ FsWatchesRecursive:: /user/username/projects/myproject/random: {} -Info 65 [16:02:28.000] response: +Info 65 [00:02:28.000] response: { "response": { "definitions": [ @@ -942,7 +942,7 @@ Info 65 [16:02:28.000] response: }, "responseRequired": true } -Info 66 [16:02:29.000] request: +Info 66 [00:02:29.000] request: { "command": "definitionAndBoundSpan", "arguments": { @@ -1017,7 +1017,7 @@ FsWatchesRecursive:: /user/username/projects/myproject/random: {} -Info 67 [16:02:30.000] response: +Info 67 [00:02:30.000] response: { "response": { "definitions": [ @@ -1054,7 +1054,7 @@ Info 67 [16:02:30.000] response: }, "responseRequired": true } -Info 68 [16:02:31.000] request: +Info 68 [00:02:31.000] request: { "seq": 0, "type": "request", @@ -1095,18 +1095,18 @@ FsWatchesRecursive:: /user/username/projects/myproject/random: {} -Info 69 [16:02:32.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/random/random.ts 500 undefined WatchType: Closed Script info -Info 70 [16:02:33.000] Project '/user/username/projects/myproject/main/tsconfig.json' (Configured) -Info 70 [16:02:34.000] Files (3) +Info 69 [00:02:32.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/random/random.ts 500 undefined WatchType: Closed Script info +Info 70 [00:02:33.000] Project '/user/username/projects/myproject/main/tsconfig.json' (Configured) +Info 70 [00:02:34.000] Files (3) -Info 70 [16:02:35.000] ----------------------------------------------- -Info 70 [16:02:36.000] Project '/user/username/projects/myproject/random/tsconfig.json' (Configured) -Info 70 [16:02:37.000] Files (2) +Info 70 [00:02:35.000] ----------------------------------------------- +Info 70 [00:02:36.000] Project '/user/username/projects/myproject/random/tsconfig.json' (Configured) +Info 70 [00:02:37.000] Files (2) -Info 70 [16:02:38.000] ----------------------------------------------- -Info 70 [16:02:39.000] Open files: -Info 70 [16:02:40.000] FileName: /user/username/projects/myproject/main/main.ts ProjectRootPath: undefined -Info 70 [16:02:41.000] Projects: /user/username/projects/myproject/main/tsconfig.json +Info 70 [00:02:38.000] ----------------------------------------------- +Info 70 [00:02:39.000] Open files: +Info 70 [00:02:40.000] FileName: /user/username/projects/myproject/main/main.ts ProjectRootPath: undefined +Info 70 [00:02:41.000] Projects: /user/username/projects/myproject/main/tsconfig.json After request PolledWatches:: @@ -1141,11 +1141,11 @@ FsWatchesRecursive:: /user/username/projects/myproject/random: {} -Info 70 [16:02:42.000] response: +Info 70 [00:02:42.000] response: { "responseRequired": false } -Info 71 [16:02:43.000] request: +Info 71 [00:02:43.000] request: { "seq": 0, "type": "request", @@ -1188,22 +1188,22 @@ FsWatchesRecursive:: /user/username/projects/myproject/random: {} -Info 72 [16:02:44.000] FileWatcher:: Close:: WatchInfo: /user/username/projects/myproject/random/random.ts 500 undefined WatchType: Closed Script info -Info 73 [16:02:45.000] Search path: /user/username/projects/myproject/random -Info 74 [16:02:46.000] For info: /user/username/projects/myproject/random/random.ts :: Config file name: /user/username/projects/myproject/random/tsconfig.json -Info 75 [16:02:47.000] Project '/user/username/projects/myproject/main/tsconfig.json' (Configured) -Info 75 [16:02:48.000] Files (3) +Info 72 [00:02:44.000] FileWatcher:: Close:: WatchInfo: /user/username/projects/myproject/random/random.ts 500 undefined WatchType: Closed Script info +Info 73 [00:02:45.000] Search path: /user/username/projects/myproject/random +Info 74 [00:02:46.000] For info: /user/username/projects/myproject/random/random.ts :: Config file name: /user/username/projects/myproject/random/tsconfig.json +Info 75 [00:02:47.000] Project '/user/username/projects/myproject/main/tsconfig.json' (Configured) +Info 75 [00:02:48.000] Files (3) -Info 75 [16:02:49.000] ----------------------------------------------- -Info 75 [16:02:50.000] Project '/user/username/projects/myproject/random/tsconfig.json' (Configured) -Info 75 [16:02:51.000] Files (2) +Info 75 [00:02:49.000] ----------------------------------------------- +Info 75 [00:02:50.000] Project '/user/username/projects/myproject/random/tsconfig.json' (Configured) +Info 75 [00:02:51.000] Files (2) -Info 75 [16:02:52.000] ----------------------------------------------- -Info 75 [16:02:53.000] Open files: -Info 75 [16:02:54.000] FileName: /user/username/projects/myproject/main/main.ts ProjectRootPath: undefined -Info 75 [16:02:55.000] Projects: /user/username/projects/myproject/main/tsconfig.json -Info 75 [16:02:56.000] FileName: /user/username/projects/myproject/random/random.ts ProjectRootPath: undefined -Info 75 [16:02:57.000] Projects: /user/username/projects/myproject/random/tsconfig.json +Info 75 [00:02:52.000] ----------------------------------------------- +Info 75 [00:02:53.000] Open files: +Info 75 [00:02:54.000] FileName: /user/username/projects/myproject/main/main.ts ProjectRootPath: undefined +Info 75 [00:02:55.000] Projects: /user/username/projects/myproject/main/tsconfig.json +Info 75 [00:02:56.000] FileName: /user/username/projects/myproject/random/random.ts ProjectRootPath: undefined +Info 75 [00:02:57.000] Projects: /user/username/projects/myproject/random/tsconfig.json After request PolledWatches:: @@ -1236,11 +1236,11 @@ FsWatchesRecursive:: /user/username/projects/myproject/random: {} -Info 75 [16:02:58.000] response: +Info 75 [00:02:58.000] response: { "responseRequired": false } -Info 76 [16:02:59.000] request: +Info 76 [00:02:59.000] request: { "seq": 0, "type": "request", @@ -1281,18 +1281,18 @@ FsWatchesRecursive:: /user/username/projects/myproject/random: {} -Info 77 [16:03:00.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/main/main.ts 500 undefined WatchType: Closed Script info -Info 78 [16:03:01.000] Project '/user/username/projects/myproject/main/tsconfig.json' (Configured) -Info 78 [16:03:02.000] Files (3) +Info 77 [00:03:00.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/main/main.ts 500 undefined WatchType: Closed Script info +Info 78 [00:03:01.000] Project '/user/username/projects/myproject/main/tsconfig.json' (Configured) +Info 78 [00:03:02.000] Files (3) -Info 78 [16:03:03.000] ----------------------------------------------- -Info 78 [16:03:04.000] Project '/user/username/projects/myproject/random/tsconfig.json' (Configured) -Info 78 [16:03:05.000] Files (2) +Info 78 [00:03:03.000] ----------------------------------------------- +Info 78 [00:03:04.000] Project '/user/username/projects/myproject/random/tsconfig.json' (Configured) +Info 78 [00:03:05.000] Files (2) -Info 78 [16:03:06.000] ----------------------------------------------- -Info 78 [16:03:07.000] Open files: -Info 78 [16:03:08.000] FileName: /user/username/projects/myproject/random/random.ts ProjectRootPath: undefined -Info 78 [16:03:09.000] Projects: /user/username/projects/myproject/random/tsconfig.json +Info 78 [00:03:06.000] ----------------------------------------------- +Info 78 [00:03:07.000] Open files: +Info 78 [00:03:08.000] FileName: /user/username/projects/myproject/random/random.ts ProjectRootPath: undefined +Info 78 [00:03:09.000] Projects: /user/username/projects/myproject/random/tsconfig.json After request PolledWatches:: @@ -1327,11 +1327,11 @@ FsWatchesRecursive:: /user/username/projects/myproject/random: {} -Info 78 [16:03:10.000] response: +Info 78 [00:03:10.000] response: { "responseRequired": false } -Info 79 [16:03:11.000] request: +Info 79 [00:03:11.000] request: { "seq": 0, "type": "request", @@ -1374,16 +1374,16 @@ FsWatchesRecursive:: /user/username/projects/myproject/random: {} -Info 80 [16:03:12.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/random/random.ts 500 undefined WatchType: Closed Script info -Info 81 [16:03:13.000] Project '/user/username/projects/myproject/main/tsconfig.json' (Configured) -Info 81 [16:03:14.000] Files (3) +Info 80 [00:03:12.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/random/random.ts 500 undefined WatchType: Closed Script info +Info 81 [00:03:13.000] Project '/user/username/projects/myproject/main/tsconfig.json' (Configured) +Info 81 [00:03:14.000] Files (3) -Info 81 [16:03:15.000] ----------------------------------------------- -Info 81 [16:03:16.000] Project '/user/username/projects/myproject/random/tsconfig.json' (Configured) -Info 81 [16:03:17.000] Files (2) +Info 81 [00:03:15.000] ----------------------------------------------- +Info 81 [00:03:16.000] Project '/user/username/projects/myproject/random/tsconfig.json' (Configured) +Info 81 [00:03:17.000] Files (2) -Info 81 [16:03:18.000] ----------------------------------------------- -Info 81 [16:03:19.000] Open files: +Info 81 [00:03:18.000] ----------------------------------------------- +Info 81 [00:03:19.000] Open files: After request PolledWatches:: @@ -1420,11 +1420,11 @@ FsWatchesRecursive:: /user/username/projects/myproject/random: {} -Info 81 [16:03:20.000] response: +Info 81 [00:03:20.000] response: { "responseRequired": false } -Info 82 [16:03:21.000] request: +Info 82 [00:03:21.000] request: { "seq": 0, "type": "request", @@ -1469,12 +1469,12 @@ FsWatchesRecursive:: /user/username/projects/myproject/random: {} -Info 83 [16:03:22.000] FileWatcher:: Close:: WatchInfo: /user/username/projects/myproject/random/random.ts 500 undefined WatchType: Closed Script info -Info 84 [16:03:23.000] Search path: /user/username/projects/myproject/random -Info 85 [16:03:24.000] For info: /user/username/projects/myproject/random/random.ts :: Config file name: /user/username/projects/myproject/random/tsconfig.json -Info 86 [16:03:25.000] `remove Project:: -Info 87 [16:03:26.000] Project '/user/username/projects/myproject/main/tsconfig.json' (Configured) -Info 88 [16:03:27.000] Files (3) +Info 83 [00:03:22.000] FileWatcher:: Close:: WatchInfo: /user/username/projects/myproject/random/random.ts 500 undefined WatchType: Closed Script info +Info 84 [00:03:23.000] Search path: /user/username/projects/myproject/random +Info 85 [00:03:24.000] For info: /user/username/projects/myproject/random/random.ts :: Config file name: /user/username/projects/myproject/random/tsconfig.json +Info 86 [00:03:25.000] `remove Project:: +Info 87 [00:03:26.000] Project '/user/username/projects/myproject/main/tsconfig.json' (Configured) +Info 88 [00:03:27.000] Files (3) /a/lib/lib.d.ts /user/username/projects/myproject/decls/fns.d.ts /user/username/projects/myproject/main/main.ts @@ -1487,27 +1487,27 @@ Info 88 [16:03:27.000] Files (3) main.ts Matched by default include pattern '**/*' -Info 89 [16:03:28.000] ----------------------------------------------- -Info 90 [16:03:29.000] DirectoryWatcher:: Close:: WatchInfo: /user/username/projects/myproject/main 1 undefined Config: /user/username/projects/myproject/main/tsconfig.json WatchType: Wild card directory -Info 91 [16:03:30.000] 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 92 [16:03:31.000] FileWatcher:: Close:: WatchInfo: /user/username/projects/myproject/main/tsconfig.json 2000 undefined Project: /user/username/projects/myproject/main/tsconfig.json WatchType: Config file -Info 93 [16:03:32.000] DirectoryWatcher:: Close:: WatchInfo: /user/username/projects/myproject/decls 1 undefined Project: /user/username/projects/myproject/main/tsconfig.json WatchType: Failed Lookup Locations -Info 94 [16:03:33.000] 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 95 [16:03:34.000] 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 96 [16:03:35.000] 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 97 [16:03:36.000] DirectoryWatcher:: Close:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/main/tsconfig.json WatchType: Type roots -Info 98 [16:03:37.000] 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 99 [16:03:38.000] FileWatcher:: Close:: WatchInfo: /user/username/projects/myproject/main/main.ts 500 undefined WatchType: Closed Script info -Info 100 [16:03:39.000] FileWatcher:: Close:: WatchInfo: /user/username/projects/myproject/decls/fns.d.ts 500 undefined WatchType: Closed Script info -Info 101 [16:03:40.000] FileWatcher:: Close:: WatchInfo: /user/username/projects/myproject/decls/FnS.d.ts.map 500 undefined WatchType: Closed Script info -Info 102 [16:03:41.000] FileWatcher:: Close:: WatchInfo: /user/username/projects/myproject/dependency/FnS.ts 500 undefined WatchType: Closed Script info -Info 103 [16:03:42.000] Project '/user/username/projects/myproject/random/tsconfig.json' (Configured) -Info 103 [16:03:43.000] Files (2) - -Info 103 [16:03:44.000] ----------------------------------------------- -Info 103 [16:03:45.000] Open files: -Info 103 [16:03:46.000] FileName: /user/username/projects/myproject/random/random.ts ProjectRootPath: undefined -Info 103 [16:03:47.000] Projects: /user/username/projects/myproject/random/tsconfig.json +Info 89 [00:03:28.000] ----------------------------------------------- +Info 90 [00:03:29.000] DirectoryWatcher:: Close:: WatchInfo: /user/username/projects/myproject/main 1 undefined Config: /user/username/projects/myproject/main/tsconfig.json WatchType: Wild card directory +Info 91 [00:03:30.000] 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 92 [00:03:31.000] FileWatcher:: Close:: WatchInfo: /user/username/projects/myproject/main/tsconfig.json 2000 undefined Project: /user/username/projects/myproject/main/tsconfig.json WatchType: Config file +Info 93 [00:03:32.000] DirectoryWatcher:: Close:: WatchInfo: /user/username/projects/myproject/decls 1 undefined Project: /user/username/projects/myproject/main/tsconfig.json WatchType: Failed Lookup Locations +Info 94 [00:03:33.000] 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 95 [00:03:34.000] 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 96 [00:03:35.000] 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 97 [00:03:36.000] DirectoryWatcher:: Close:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/main/tsconfig.json WatchType: Type roots +Info 98 [00:03:37.000] 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 99 [00:03:38.000] FileWatcher:: Close:: WatchInfo: /user/username/projects/myproject/main/main.ts 500 undefined WatchType: Closed Script info +Info 100 [00:03:39.000] FileWatcher:: Close:: WatchInfo: /user/username/projects/myproject/decls/fns.d.ts 500 undefined WatchType: Closed Script info +Info 101 [00:03:40.000] FileWatcher:: Close:: WatchInfo: /user/username/projects/myproject/decls/FnS.d.ts.map 500 undefined WatchType: Closed Script info +Info 102 [00:03:41.000] FileWatcher:: Close:: WatchInfo: /user/username/projects/myproject/dependency/FnS.ts 500 undefined WatchType: Closed Script info +Info 103 [00:03:42.000] Project '/user/username/projects/myproject/random/tsconfig.json' (Configured) +Info 103 [00:03:43.000] Files (2) + +Info 103 [00:03:44.000] ----------------------------------------------- +Info 103 [00:03:45.000] Open files: +Info 103 [00:03:46.000] FileName: /user/username/projects/myproject/random/random.ts ProjectRootPath: undefined +Info 103 [00:03:47.000] Projects: /user/username/projects/myproject/random/tsconfig.json After request PolledWatches:: @@ -1526,7 +1526,7 @@ FsWatchesRecursive:: /user/username/projects/myproject/random: {} -Info 103 [16:03:48.000] response: +Info 103 [00:03:48.000] response: { "responseRequired": false } \ No newline at end of file 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 6c404224a7091..f8b58b612948c 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 @@ -1,5 +1,5 @@ -Info 0 [16:01:03.000] Provided types map file "/a/lib/typesMap.json" doesn't exist -Info 1 [16:01:04.000] request: +Info 0 [00:01:03.000] Provided types map file "/a/lib/typesMap.json" doesn't exist +Info 1 [00:01:04.000] request: { "seq": 0, "type": "request", @@ -200,11 +200,11 @@ FsWatches:: FsWatchesRecursive:: -Info 2 [16:01:05.000] Search path: /user/username/projects/myproject/main -Info 3 [16:01:06.000] For info: /user/username/projects/myproject/main/main.ts :: Config file name: /user/username/projects/myproject/main/tsconfig.json -Info 4 [16:01:07.000] Creating configuration project /user/username/projects/myproject/main/tsconfig.json -Info 5 [16:01:08.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/main/tsconfig.json 2000 undefined Project: /user/username/projects/myproject/main/tsconfig.json WatchType: Config file -Info 6 [16:01:09.000] Config: /user/username/projects/myproject/main/tsconfig.json : { +Info 2 [00:01:05.000] Search path: /user/username/projects/myproject/main +Info 3 [00:01:06.000] For info: /user/username/projects/myproject/main/main.ts :: Config file name: /user/username/projects/myproject/main/tsconfig.json +Info 4 [00:01:07.000] Creating configuration project /user/username/projects/myproject/main/tsconfig.json +Info 5 [00:01:08.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/main/tsconfig.json 2000 undefined Project: /user/username/projects/myproject/main/tsconfig.json WatchType: Config file +Info 6 [00:01:09.000] Config: /user/username/projects/myproject/main/tsconfig.json : { "rootNames": [ "/user/username/projects/myproject/main/main.ts" ], @@ -214,21 +214,21 @@ Info 6 [16:01:09.000] Config: /user/username/projects/myproject/main/tsconfig "configFilePath": "/user/username/projects/myproject/main/tsconfig.json" } } -Info 7 [16:01:10.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/main 1 undefined Config: /user/username/projects/myproject/main/tsconfig.json WatchType: Wild card directory -Info 8 [16:01:11.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/main 1 undefined Config: /user/username/projects/myproject/main/tsconfig.json WatchType: Wild card directory -Info 9 [16:01:12.000] Plugins were requested but not running in environment that supports 'require'. Nothing will be loaded -Info 10 [16:01:13.000] Starting updateGraphWorker: Project: /user/username/projects/myproject/main/tsconfig.json -Info 11 [16:01:14.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/decls 1 undefined Project: /user/username/projects/myproject/main/tsconfig.json WatchType: Failed Lookup Locations -Info 12 [16:01:15.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/decls 1 undefined Project: /user/username/projects/myproject/main/tsconfig.json WatchType: Failed Lookup Locations -Info 13 [16:01:16.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/decls/fns.d.ts 500 undefined WatchType: Closed Script info -Info 14 [16:01:17.000] FileWatcher:: Added:: WatchInfo: /a/lib/lib.d.ts 500 undefined WatchType: Closed Script info -Info 15 [16:01:18.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/main/node_modules/@types 1 undefined Project: /user/username/projects/myproject/main/tsconfig.json WatchType: Type roots -Info 16 [16:01:19.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/main/node_modules/@types 1 undefined Project: /user/username/projects/myproject/main/tsconfig.json WatchType: Type roots -Info 17 [16:01:20.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/main/tsconfig.json WatchType: Type roots -Info 18 [16:01:21.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/main/tsconfig.json WatchType: Type roots -Info 19 [16:01:22.000] Finishing updateGraphWorker: Project: /user/username/projects/myproject/main/tsconfig.json Version: 1 structureChanged: true structureIsReused:: Not Elapsed:: *ms -Info 20 [16:01:23.000] Project '/user/username/projects/myproject/main/tsconfig.json' (Configured) -Info 21 [16:01:24.000] Files (3) +Info 7 [00:01:10.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/main 1 undefined Config: /user/username/projects/myproject/main/tsconfig.json WatchType: Wild card directory +Info 8 [00:01:11.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/main 1 undefined Config: /user/username/projects/myproject/main/tsconfig.json WatchType: Wild card directory +Info 9 [00:01:12.000] Plugins were requested but not running in environment that supports 'require'. Nothing will be loaded +Info 10 [00:01:13.000] Starting updateGraphWorker: Project: /user/username/projects/myproject/main/tsconfig.json +Info 11 [00:01:14.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/decls 1 undefined Project: /user/username/projects/myproject/main/tsconfig.json WatchType: Failed Lookup Locations +Info 12 [00:01:15.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/decls 1 undefined Project: /user/username/projects/myproject/main/tsconfig.json WatchType: Failed Lookup Locations +Info 13 [00:01:16.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/decls/fns.d.ts 500 undefined WatchType: Closed Script info +Info 14 [00:01:17.000] FileWatcher:: Added:: WatchInfo: /a/lib/lib.d.ts 500 undefined WatchType: Closed Script info +Info 15 [00:01:18.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/main/node_modules/@types 1 undefined Project: /user/username/projects/myproject/main/tsconfig.json WatchType: Type roots +Info 16 [00:01:19.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/main/node_modules/@types 1 undefined Project: /user/username/projects/myproject/main/tsconfig.json WatchType: Type roots +Info 17 [00:01:20.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/main/tsconfig.json WatchType: Type roots +Info 18 [00:01:21.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/main/tsconfig.json WatchType: Type roots +Info 19 [00:01:22.000] Finishing updateGraphWorker: Project: /user/username/projects/myproject/main/tsconfig.json Version: 1 structureChanged: true structureIsReused:: Not Elapsed:: *ms +Info 20 [00:01:23.000] Project '/user/username/projects/myproject/main/tsconfig.json' (Configured) +Info 21 [00:01:24.000] Files (3) /a/lib/lib.d.ts /user/username/projects/myproject/decls/fns.d.ts /user/username/projects/myproject/main/main.ts @@ -241,16 +241,16 @@ Info 21 [16:01:24.000] Files (3) main.ts Matched by default include pattern '**/*' -Info 22 [16:01:25.000] ----------------------------------------------- -Info 23 [16:01:26.000] Search path: /user/username/projects/myproject/main -Info 24 [16:01:27.000] For info: /user/username/projects/myproject/main/tsconfig.json :: No config files found. -Info 25 [16:01:28.000] Project '/user/username/projects/myproject/main/tsconfig.json' (Configured) -Info 25 [16:01:29.000] Files (3) +Info 22 [00:01:25.000] ----------------------------------------------- +Info 23 [00:01:26.000] Search path: /user/username/projects/myproject/main +Info 24 [00:01:27.000] For info: /user/username/projects/myproject/main/tsconfig.json :: No config files found. +Info 25 [00:01:28.000] Project '/user/username/projects/myproject/main/tsconfig.json' (Configured) +Info 25 [00:01:29.000] Files (3) -Info 25 [16:01:30.000] ----------------------------------------------- -Info 25 [16:01:31.000] Open files: -Info 25 [16:01:32.000] FileName: /user/username/projects/myproject/main/main.ts ProjectRootPath: undefined -Info 25 [16:01:33.000] Projects: /user/username/projects/myproject/main/tsconfig.json +Info 25 [00:01:30.000] ----------------------------------------------- +Info 25 [00:01:31.000] Open files: +Info 25 [00:01:32.000] FileName: /user/username/projects/myproject/main/main.ts ProjectRootPath: undefined +Info 25 [00:01:33.000] Projects: /user/username/projects/myproject/main/tsconfig.json After request PolledWatches:: @@ -273,11 +273,11 @@ FsWatchesRecursive:: /user/username/projects/myproject/decls: {} -Info 25 [16:01:34.000] response: +Info 25 [00:01:34.000] response: { "responseRequired": false } -Info 26 [16:01:35.000] request: +Info 26 [00:01:35.000] request: { "seq": 0, "type": "request", @@ -308,11 +308,11 @@ FsWatchesRecursive:: /user/username/projects/myproject/decls: {} -Info 27 [16:01:36.000] Search path: /user/username/projects/myproject/random -Info 28 [16:01:37.000] For info: /user/username/projects/myproject/random/random.ts :: Config file name: /user/username/projects/myproject/random/tsconfig.json -Info 29 [16:01:38.000] Creating configuration project /user/username/projects/myproject/random/tsconfig.json -Info 30 [16:01:39.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/random/tsconfig.json 2000 undefined Project: /user/username/projects/myproject/random/tsconfig.json WatchType: Config file -Info 31 [16:01:40.000] Config: /user/username/projects/myproject/random/tsconfig.json : { +Info 27 [00:01:36.000] Search path: /user/username/projects/myproject/random +Info 28 [00:01:37.000] For info: /user/username/projects/myproject/random/random.ts :: Config file name: /user/username/projects/myproject/random/tsconfig.json +Info 29 [00:01:38.000] Creating configuration project /user/username/projects/myproject/random/tsconfig.json +Info 30 [00:01:39.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/random/tsconfig.json 2000 undefined Project: /user/username/projects/myproject/random/tsconfig.json WatchType: Config file +Info 31 [00:01:40.000] Config: /user/username/projects/myproject/random/tsconfig.json : { "rootNames": [ "/user/username/projects/myproject/random/random.ts" ], @@ -320,17 +320,17 @@ Info 31 [16:01:40.000] Config: /user/username/projects/myproject/random/tsconf "configFilePath": "/user/username/projects/myproject/random/tsconfig.json" } } -Info 32 [16:01:41.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/random 1 undefined Config: /user/username/projects/myproject/random/tsconfig.json WatchType: Wild card directory -Info 33 [16:01:42.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/random 1 undefined Config: /user/username/projects/myproject/random/tsconfig.json WatchType: Wild card directory -Info 34 [16:01:43.000] Plugins were requested but not running in environment that supports 'require'. Nothing will be loaded -Info 35 [16:01:44.000] Starting updateGraphWorker: Project: /user/username/projects/myproject/random/tsconfig.json -Info 36 [16:01:45.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/random/node_modules/@types 1 undefined Project: /user/username/projects/myproject/random/tsconfig.json WatchType: Type roots -Info 37 [16:01:46.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/random/node_modules/@types 1 undefined Project: /user/username/projects/myproject/random/tsconfig.json WatchType: Type roots -Info 38 [16:01:47.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/random/tsconfig.json WatchType: Type roots -Info 39 [16:01:48.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/random/tsconfig.json WatchType: Type roots -Info 40 [16:01:49.000] Finishing updateGraphWorker: Project: /user/username/projects/myproject/random/tsconfig.json Version: 1 structureChanged: true structureIsReused:: Not Elapsed:: *ms -Info 41 [16:01:50.000] Project '/user/username/projects/myproject/random/tsconfig.json' (Configured) -Info 42 [16:01:51.000] Files (2) +Info 32 [00:01:41.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/random 1 undefined Config: /user/username/projects/myproject/random/tsconfig.json WatchType: Wild card directory +Info 33 [00:01:42.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/random 1 undefined Config: /user/username/projects/myproject/random/tsconfig.json WatchType: Wild card directory +Info 34 [00:01:43.000] Plugins were requested but not running in environment that supports 'require'. Nothing will be loaded +Info 35 [00:01:44.000] Starting updateGraphWorker: Project: /user/username/projects/myproject/random/tsconfig.json +Info 36 [00:01:45.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/random/node_modules/@types 1 undefined Project: /user/username/projects/myproject/random/tsconfig.json WatchType: Type roots +Info 37 [00:01:46.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/random/node_modules/@types 1 undefined Project: /user/username/projects/myproject/random/tsconfig.json WatchType: Type roots +Info 38 [00:01:47.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/random/tsconfig.json WatchType: Type roots +Info 39 [00:01:48.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/random/tsconfig.json WatchType: Type roots +Info 40 [00:01:49.000] Finishing updateGraphWorker: Project: /user/username/projects/myproject/random/tsconfig.json Version: 1 structureChanged: true structureIsReused:: Not Elapsed:: *ms +Info 41 [00:01:50.000] Project '/user/username/projects/myproject/random/tsconfig.json' (Configured) +Info 42 [00:01:51.000] Files (2) /a/lib/lib.d.ts /user/username/projects/myproject/random/random.ts @@ -340,20 +340,20 @@ Info 42 [16:01:51.000] Files (2) random.ts Matched by default include pattern '**/*' -Info 43 [16:01:52.000] ----------------------------------------------- -Info 44 [16:01:53.000] Project '/user/username/projects/myproject/main/tsconfig.json' (Configured) -Info 44 [16:01:54.000] Files (3) +Info 43 [00:01:52.000] ----------------------------------------------- +Info 44 [00:01:53.000] Project '/user/username/projects/myproject/main/tsconfig.json' (Configured) +Info 44 [00:01:54.000] Files (3) -Info 44 [16:01:55.000] ----------------------------------------------- -Info 44 [16:01:56.000] Project '/user/username/projects/myproject/random/tsconfig.json' (Configured) -Info 44 [16:01:57.000] Files (2) +Info 44 [00:01:55.000] ----------------------------------------------- +Info 44 [00:01:56.000] Project '/user/username/projects/myproject/random/tsconfig.json' (Configured) +Info 44 [00:01:57.000] Files (2) -Info 44 [16:01:58.000] ----------------------------------------------- -Info 44 [16:01:59.000] Open files: -Info 44 [16:02:00.000] FileName: /user/username/projects/myproject/main/main.ts ProjectRootPath: undefined -Info 44 [16:02:01.000] Projects: /user/username/projects/myproject/main/tsconfig.json -Info 44 [16:02:02.000] FileName: /user/username/projects/myproject/random/random.ts ProjectRootPath: undefined -Info 44 [16:02:03.000] Projects: /user/username/projects/myproject/random/tsconfig.json +Info 44 [00:01:58.000] ----------------------------------------------- +Info 44 [00:01:59.000] Open files: +Info 44 [00:02:00.000] FileName: /user/username/projects/myproject/main/main.ts ProjectRootPath: undefined +Info 44 [00:02:01.000] Projects: /user/username/projects/myproject/main/tsconfig.json +Info 44 [00:02:02.000] FileName: /user/username/projects/myproject/random/random.ts ProjectRootPath: undefined +Info 44 [00:02:03.000] Projects: /user/username/projects/myproject/random/tsconfig.json After request PolledWatches:: @@ -382,11 +382,11 @@ FsWatchesRecursive:: /user/username/projects/myproject/random: {} -Info 44 [16:02:04.000] response: +Info 44 [00:02:04.000] response: { "responseRequired": false } -Info 45 [16:02:05.000] request: +Info 45 [00:02:05.000] request: { "command": "definitionAndBoundSpan", "arguments": { @@ -425,8 +425,8 @@ FsWatchesRecursive:: /user/username/projects/myproject/random: {} -Info 46 [16:02:06.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/decls/FnS.d.ts.map 500 undefined WatchType: Closed Script info -Info 47 [16:02:07.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/dependency/FnS.ts 500 undefined WatchType: Closed Script info +Info 46 [00:02:06.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/decls/FnS.d.ts.map 500 undefined WatchType: Closed Script info +Info 47 [00:02:07.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/dependency/FnS.ts 500 undefined WatchType: Closed Script info After request PolledWatches:: @@ -459,7 +459,7 @@ FsWatchesRecursive:: /user/username/projects/myproject/random: {} -Info 48 [16:02:08.000] response: +Info 48 [00:02:08.000] response: { "response": { "definitions": [ @@ -496,15 +496,15 @@ Info 48 [16:02:08.000] response: }, "responseRequired": true } -Info 49 [16:02:10.000] FileWatcher:: Triggered with /user/username/projects/myproject/decls/fns.d.ts 2:: WatchInfo: /user/username/projects/myproject/decls/fns.d.ts 500 undefined WatchType: Closed Script info -Info 50 [16:02:11.000] FileWatcher:: Close:: WatchInfo: /user/username/projects/myproject/decls/fns.d.ts 500 undefined WatchType: Closed Script info -Info 51 [16:02:12.000] Scheduled: /user/username/projects/myproject/main/tsconfig.json -Info 52 [16:02:13.000] Scheduled: *ensureProjectForOpenFiles* -Info 53 [16:02:14.000] Elapsed:: *ms FileWatcher:: Triggered with /user/username/projects/myproject/decls/fns.d.ts 2:: WatchInfo: /user/username/projects/myproject/decls/fns.d.ts 500 undefined WatchType: Closed Script info -Info 54 [16:02:15.000] DirectoryWatcher:: Triggered with /user/username/projects/myproject/decls/FnS.d.ts :: WatchInfo: /user/username/projects/myproject/decls 1 undefined Project: /user/username/projects/myproject/main/tsconfig.json WatchType: Failed Lookup Locations -Info 55 [16:02:16.000] Scheduled: /user/username/projects/myproject/main/tsconfig.jsonFailedLookupInvalidation -Info 56 [16:02:17.000] Elapsed:: *ms DirectoryWatcher:: Triggered with /user/username/projects/myproject/decls/FnS.d.ts :: WatchInfo: /user/username/projects/myproject/decls 1 undefined Project: /user/username/projects/myproject/main/tsconfig.json WatchType: Failed Lookup Locations -Info 57 [16:02:18.000] request: +Info 49 [00:02:10.000] FileWatcher:: Triggered with /user/username/projects/myproject/decls/fns.d.ts 2:: WatchInfo: /user/username/projects/myproject/decls/fns.d.ts 500 undefined WatchType: Closed Script info +Info 50 [00:02:11.000] FileWatcher:: Close:: WatchInfo: /user/username/projects/myproject/decls/fns.d.ts 500 undefined WatchType: Closed Script info +Info 51 [00:02:12.000] Scheduled: /user/username/projects/myproject/main/tsconfig.json +Info 52 [00:02:13.000] Scheduled: *ensureProjectForOpenFiles* +Info 53 [00:02:14.000] Elapsed:: *ms FileWatcher:: Triggered with /user/username/projects/myproject/decls/fns.d.ts 2:: WatchInfo: /user/username/projects/myproject/decls/fns.d.ts 500 undefined WatchType: Closed Script info +Info 54 [00:02:15.000] DirectoryWatcher:: Triggered with /user/username/projects/myproject/decls/FnS.d.ts :: WatchInfo: /user/username/projects/myproject/decls 1 undefined Project: /user/username/projects/myproject/main/tsconfig.json WatchType: Failed Lookup Locations +Info 55 [00:02:16.000] Scheduled: /user/username/projects/myproject/main/tsconfig.jsonFailedLookupInvalidation +Info 56 [00:02:17.000] Elapsed:: *ms DirectoryWatcher:: Triggered with /user/username/projects/myproject/decls/FnS.d.ts :: WatchInfo: /user/username/projects/myproject/decls 1 undefined Project: /user/username/projects/myproject/main/tsconfig.json WatchType: Failed Lookup Locations +Info 57 [00:02:18.000] request: { "command": "definitionAndBoundSpan", "arguments": { @@ -546,10 +546,10 @@ FsWatchesRecursive:: /user/username/projects/myproject/random: {} -Info 58 [16:02:19.000] Starting updateGraphWorker: Project: /user/username/projects/myproject/main/tsconfig.json -Info 59 [16:02:20.000] Finishing updateGraphWorker: Project: /user/username/projects/myproject/main/tsconfig.json Version: 2 structureChanged: true structureIsReused:: Not Elapsed:: *ms -Info 60 [16:02:21.000] Project '/user/username/projects/myproject/main/tsconfig.json' (Configured) -Info 61 [16:02:22.000] Files (2) +Info 58 [00:02:19.000] Starting updateGraphWorker: Project: /user/username/projects/myproject/main/tsconfig.json +Info 59 [00:02:20.000] Finishing updateGraphWorker: Project: /user/username/projects/myproject/main/tsconfig.json Version: 2 structureChanged: true structureIsReused:: Not Elapsed:: *ms +Info 60 [00:02:21.000] Project '/user/username/projects/myproject/main/tsconfig.json' (Configured) +Info 61 [00:02:22.000] Files (2) /a/lib/lib.d.ts /user/username/projects/myproject/main/main.ts @@ -559,7 +559,7 @@ Info 61 [16:02:22.000] Files (2) main.ts Matched by default include pattern '**/*' -Info 62 [16:02:23.000] ----------------------------------------------- +Info 62 [00:02:23.000] ----------------------------------------------- After request PolledWatches:: @@ -590,7 +590,7 @@ FsWatchesRecursive:: /user/username/projects/myproject/random: {} -Info 63 [16:02:24.000] response: +Info 63 [00:02:24.000] response: { "response": { "definitions": [ @@ -627,7 +627,7 @@ Info 63 [16:02:24.000] response: }, "responseRequired": true } -Info 64 [16:02:25.000] request: +Info 64 [00:02:25.000] request: { "command": "definitionAndBoundSpan", "arguments": { @@ -698,7 +698,7 @@ FsWatchesRecursive:: /user/username/projects/myproject/random: {} -Info 65 [16:02:26.000] response: +Info 65 [00:02:26.000] response: { "response": { "definitions": [ @@ -735,7 +735,7 @@ Info 65 [16:02:26.000] response: }, "responseRequired": true } -Info 66 [16:02:27.000] request: +Info 66 [00:02:27.000] request: { "command": "definitionAndBoundSpan", "arguments": { @@ -806,7 +806,7 @@ FsWatchesRecursive:: /user/username/projects/myproject/random: {} -Info 67 [16:02:28.000] response: +Info 67 [00:02:28.000] response: { "response": { "definitions": [ @@ -843,7 +843,7 @@ Info 67 [16:02:28.000] response: }, "responseRequired": true } -Info 68 [16:02:29.000] request: +Info 68 [00:02:29.000] request: { "command": "definitionAndBoundSpan", "arguments": { @@ -914,7 +914,7 @@ FsWatchesRecursive:: /user/username/projects/myproject/random: {} -Info 69 [16:02:30.000] response: +Info 69 [00:02:30.000] response: { "response": { "definitions": [ @@ -951,7 +951,7 @@ Info 69 [16:02:30.000] response: }, "responseRequired": true } -Info 70 [16:02:31.000] request: +Info 70 [00:02:31.000] request: { "command": "definitionAndBoundSpan", "arguments": { @@ -1022,7 +1022,7 @@ FsWatchesRecursive:: /user/username/projects/myproject/random: {} -Info 71 [16:02:32.000] response: +Info 71 [00:02:32.000] response: { "response": { "definitions": [ @@ -1059,7 +1059,7 @@ Info 71 [16:02:32.000] response: }, "responseRequired": true } -Info 72 [16:02:33.000] request: +Info 72 [00:02:33.000] request: { "seq": 0, "type": "request", @@ -1098,18 +1098,18 @@ FsWatchesRecursive:: /user/username/projects/myproject/random: {} -Info 73 [16:02:34.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/random/random.ts 500 undefined WatchType: Closed Script info -Info 74 [16:02:35.000] Project '/user/username/projects/myproject/main/tsconfig.json' (Configured) -Info 74 [16:02:36.000] Files (2) +Info 73 [00:02:34.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/random/random.ts 500 undefined WatchType: Closed Script info +Info 74 [00:02:35.000] Project '/user/username/projects/myproject/main/tsconfig.json' (Configured) +Info 74 [00:02:36.000] Files (2) -Info 74 [16:02:37.000] ----------------------------------------------- -Info 74 [16:02:38.000] Project '/user/username/projects/myproject/random/tsconfig.json' (Configured) -Info 74 [16:02:39.000] Files (2) +Info 74 [00:02:37.000] ----------------------------------------------- +Info 74 [00:02:38.000] Project '/user/username/projects/myproject/random/tsconfig.json' (Configured) +Info 74 [00:02:39.000] Files (2) -Info 74 [16:02:40.000] ----------------------------------------------- -Info 74 [16:02:41.000] Open files: -Info 74 [16:02:42.000] FileName: /user/username/projects/myproject/main/main.ts ProjectRootPath: undefined -Info 74 [16:02:43.000] Projects: /user/username/projects/myproject/main/tsconfig.json +Info 74 [00:02:40.000] ----------------------------------------------- +Info 74 [00:02:41.000] Open files: +Info 74 [00:02:42.000] FileName: /user/username/projects/myproject/main/main.ts ProjectRootPath: undefined +Info 74 [00:02:43.000] Projects: /user/username/projects/myproject/main/tsconfig.json After request PolledWatches:: @@ -1142,11 +1142,11 @@ FsWatchesRecursive:: /user/username/projects/myproject/random: {} -Info 74 [16:02:44.000] response: +Info 74 [00:02:44.000] response: { "responseRequired": false } -Info 75 [16:02:45.000] request: +Info 75 [00:02:45.000] request: { "seq": 0, "type": "request", @@ -1187,24 +1187,24 @@ FsWatchesRecursive:: /user/username/projects/myproject/random: {} -Info 76 [16:02:46.000] FileWatcher:: Close:: WatchInfo: /user/username/projects/myproject/random/random.ts 500 undefined WatchType: Closed Script info -Info 77 [16:02:47.000] Search path: /user/username/projects/myproject/random -Info 78 [16:02:48.000] For info: /user/username/projects/myproject/random/random.ts :: Config file name: /user/username/projects/myproject/random/tsconfig.json -Info 79 [16:02:49.000] FileWatcher:: Close:: WatchInfo: /user/username/projects/myproject/decls/FnS.d.ts.map 500 undefined WatchType: Closed Script info -Info 80 [16:02:50.000] FileWatcher:: Close:: WatchInfo: /user/username/projects/myproject/dependency/FnS.ts 500 undefined WatchType: Closed Script info -Info 81 [16:02:51.000] Project '/user/username/projects/myproject/main/tsconfig.json' (Configured) -Info 81 [16:02:52.000] Files (2) - -Info 81 [16:02:53.000] ----------------------------------------------- -Info 81 [16:02:54.000] Project '/user/username/projects/myproject/random/tsconfig.json' (Configured) -Info 81 [16:02:55.000] Files (2) - -Info 81 [16:02:56.000] ----------------------------------------------- -Info 81 [16:02:57.000] Open files: -Info 81 [16:02:58.000] FileName: /user/username/projects/myproject/main/main.ts ProjectRootPath: undefined -Info 81 [16:02:59.000] Projects: /user/username/projects/myproject/main/tsconfig.json -Info 81 [16:03:00.000] FileName: /user/username/projects/myproject/random/random.ts ProjectRootPath: undefined -Info 81 [16:03:01.000] Projects: /user/username/projects/myproject/random/tsconfig.json +Info 76 [00:02:46.000] FileWatcher:: Close:: WatchInfo: /user/username/projects/myproject/random/random.ts 500 undefined WatchType: Closed Script info +Info 77 [00:02:47.000] Search path: /user/username/projects/myproject/random +Info 78 [00:02:48.000] For info: /user/username/projects/myproject/random/random.ts :: Config file name: /user/username/projects/myproject/random/tsconfig.json +Info 79 [00:02:49.000] FileWatcher:: Close:: WatchInfo: /user/username/projects/myproject/decls/FnS.d.ts.map 500 undefined WatchType: Closed Script info +Info 80 [00:02:50.000] FileWatcher:: Close:: WatchInfo: /user/username/projects/myproject/dependency/FnS.ts 500 undefined WatchType: Closed Script info +Info 81 [00:02:51.000] Project '/user/username/projects/myproject/main/tsconfig.json' (Configured) +Info 81 [00:02:52.000] Files (2) + +Info 81 [00:02:53.000] ----------------------------------------------- +Info 81 [00:02:54.000] Project '/user/username/projects/myproject/random/tsconfig.json' (Configured) +Info 81 [00:02:55.000] Files (2) + +Info 81 [00:02:56.000] ----------------------------------------------- +Info 81 [00:02:57.000] Open files: +Info 81 [00:02:58.000] FileName: /user/username/projects/myproject/main/main.ts ProjectRootPath: undefined +Info 81 [00:02:59.000] Projects: /user/username/projects/myproject/main/tsconfig.json +Info 81 [00:03:00.000] FileName: /user/username/projects/myproject/random/random.ts ProjectRootPath: undefined +Info 81 [00:03:01.000] Projects: /user/username/projects/myproject/random/tsconfig.json After request PolledWatches:: @@ -1231,11 +1231,11 @@ FsWatchesRecursive:: /user/username/projects/myproject/random: {} -Info 81 [16:03:02.000] response: +Info 81 [00:03:02.000] response: { "responseRequired": false } -Info 82 [16:03:03.000] request: +Info 82 [00:03:03.000] request: { "seq": 0, "type": "request", @@ -1270,18 +1270,18 @@ FsWatchesRecursive:: /user/username/projects/myproject/random: {} -Info 83 [16:03:04.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/main/main.ts 500 undefined WatchType: Closed Script info -Info 84 [16:03:05.000] Project '/user/username/projects/myproject/main/tsconfig.json' (Configured) -Info 84 [16:03:06.000] Files (2) +Info 83 [00:03:04.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/main/main.ts 500 undefined WatchType: Closed Script info +Info 84 [00:03:05.000] Project '/user/username/projects/myproject/main/tsconfig.json' (Configured) +Info 84 [00:03:06.000] Files (2) -Info 84 [16:03:07.000] ----------------------------------------------- -Info 84 [16:03:08.000] Project '/user/username/projects/myproject/random/tsconfig.json' (Configured) -Info 84 [16:03:09.000] Files (2) +Info 84 [00:03:07.000] ----------------------------------------------- +Info 84 [00:03:08.000] Project '/user/username/projects/myproject/random/tsconfig.json' (Configured) +Info 84 [00:03:09.000] Files (2) -Info 84 [16:03:10.000] ----------------------------------------------- -Info 84 [16:03:11.000] Open files: -Info 84 [16:03:12.000] FileName: /user/username/projects/myproject/random/random.ts ProjectRootPath: undefined -Info 84 [16:03:13.000] Projects: /user/username/projects/myproject/random/tsconfig.json +Info 84 [00:03:10.000] ----------------------------------------------- +Info 84 [00:03:11.000] Open files: +Info 84 [00:03:12.000] FileName: /user/username/projects/myproject/random/random.ts ProjectRootPath: undefined +Info 84 [00:03:13.000] Projects: /user/username/projects/myproject/random/tsconfig.json After request PolledWatches:: @@ -1310,11 +1310,11 @@ FsWatchesRecursive:: /user/username/projects/myproject/random: {} -Info 84 [16:03:14.000] response: +Info 84 [00:03:14.000] response: { "responseRequired": false } -Info 85 [16:03:15.000] request: +Info 85 [00:03:15.000] request: { "seq": 0, "type": "request", @@ -1351,16 +1351,16 @@ FsWatchesRecursive:: /user/username/projects/myproject/random: {} -Info 86 [16:03:16.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/random/random.ts 500 undefined WatchType: Closed Script info -Info 87 [16:03:17.000] Project '/user/username/projects/myproject/main/tsconfig.json' (Configured) -Info 87 [16:03:18.000] Files (2) +Info 86 [00:03:16.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/random/random.ts 500 undefined WatchType: Closed Script info +Info 87 [00:03:17.000] Project '/user/username/projects/myproject/main/tsconfig.json' (Configured) +Info 87 [00:03:18.000] Files (2) -Info 87 [16:03:19.000] ----------------------------------------------- -Info 87 [16:03:20.000] Project '/user/username/projects/myproject/random/tsconfig.json' (Configured) -Info 87 [16:03:21.000] Files (2) +Info 87 [00:03:19.000] ----------------------------------------------- +Info 87 [00:03:20.000] Project '/user/username/projects/myproject/random/tsconfig.json' (Configured) +Info 87 [00:03:21.000] Files (2) -Info 87 [16:03:22.000] ----------------------------------------------- -Info 87 [16:03:23.000] Open files: +Info 87 [00:03:22.000] ----------------------------------------------- +Info 87 [00:03:23.000] Open files: After request PolledWatches:: @@ -1391,11 +1391,11 @@ FsWatchesRecursive:: /user/username/projects/myproject/random: {} -Info 87 [16:03:24.000] response: +Info 87 [00:03:24.000] response: { "responseRequired": false } -Info 88 [16:03:25.000] request: +Info 88 [00:03:25.000] request: { "seq": 0, "type": "request", @@ -1434,12 +1434,12 @@ FsWatchesRecursive:: /user/username/projects/myproject/random: {} -Info 89 [16:03:26.000] FileWatcher:: Close:: WatchInfo: /user/username/projects/myproject/random/random.ts 500 undefined WatchType: Closed Script info -Info 90 [16:03:27.000] Search path: /user/username/projects/myproject/random -Info 91 [16:03:28.000] For info: /user/username/projects/myproject/random/random.ts :: Config file name: /user/username/projects/myproject/random/tsconfig.json -Info 92 [16:03:29.000] `remove Project:: -Info 93 [16:03:30.000] Project '/user/username/projects/myproject/main/tsconfig.json' (Configured) -Info 94 [16:03:31.000] Files (2) +Info 89 [00:03:26.000] FileWatcher:: Close:: WatchInfo: /user/username/projects/myproject/random/random.ts 500 undefined WatchType: Closed Script info +Info 90 [00:03:27.000] Search path: /user/username/projects/myproject/random +Info 91 [00:03:28.000] For info: /user/username/projects/myproject/random/random.ts :: Config file name: /user/username/projects/myproject/random/tsconfig.json +Info 92 [00:03:29.000] `remove Project:: +Info 93 [00:03:30.000] Project '/user/username/projects/myproject/main/tsconfig.json' (Configured) +Info 94 [00:03:31.000] Files (2) /a/lib/lib.d.ts /user/username/projects/myproject/main/main.ts @@ -1449,24 +1449,24 @@ Info 94 [16:03:31.000] Files (2) main.ts Matched by default include pattern '**/*' -Info 95 [16:03:32.000] ----------------------------------------------- -Info 96 [16:03:33.000] DirectoryWatcher:: Close:: WatchInfo: /user/username/projects/myproject/main 1 undefined Config: /user/username/projects/myproject/main/tsconfig.json WatchType: Wild card directory -Info 97 [16:03:34.000] 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 98 [16:03:35.000] FileWatcher:: Close:: WatchInfo: /user/username/projects/myproject/main/tsconfig.json 2000 undefined Project: /user/username/projects/myproject/main/tsconfig.json WatchType: Config file -Info 99 [16:03:36.000] DirectoryWatcher:: Close:: WatchInfo: /user/username/projects/myproject/decls 1 undefined Project: /user/username/projects/myproject/main/tsconfig.json WatchType: Failed Lookup Locations -Info 100 [16:03:37.000] 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 101 [16:03:38.000] 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 102 [16:03:39.000] 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 103 [16:03:40.000] DirectoryWatcher:: Close:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/main/tsconfig.json WatchType: Type roots -Info 104 [16:03:41.000] 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 105 [16:03:42.000] FileWatcher:: Close:: WatchInfo: /user/username/projects/myproject/main/main.ts 500 undefined WatchType: Closed Script info -Info 106 [16:03:43.000] Project '/user/username/projects/myproject/random/tsconfig.json' (Configured) -Info 106 [16:03:44.000] Files (2) - -Info 106 [16:03:45.000] ----------------------------------------------- -Info 106 [16:03:46.000] Open files: -Info 106 [16:03:47.000] FileName: /user/username/projects/myproject/random/random.ts ProjectRootPath: undefined -Info 106 [16:03:48.000] Projects: /user/username/projects/myproject/random/tsconfig.json +Info 95 [00:03:32.000] ----------------------------------------------- +Info 96 [00:03:33.000] DirectoryWatcher:: Close:: WatchInfo: /user/username/projects/myproject/main 1 undefined Config: /user/username/projects/myproject/main/tsconfig.json WatchType: Wild card directory +Info 97 [00:03:34.000] 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 98 [00:03:35.000] FileWatcher:: Close:: WatchInfo: /user/username/projects/myproject/main/tsconfig.json 2000 undefined Project: /user/username/projects/myproject/main/tsconfig.json WatchType: Config file +Info 99 [00:03:36.000] DirectoryWatcher:: Close:: WatchInfo: /user/username/projects/myproject/decls 1 undefined Project: /user/username/projects/myproject/main/tsconfig.json WatchType: Failed Lookup Locations +Info 100 [00:03:37.000] 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 101 [00:03:38.000] 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 102 [00:03:39.000] 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 103 [00:03:40.000] DirectoryWatcher:: Close:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/main/tsconfig.json WatchType: Type roots +Info 104 [00:03:41.000] 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 105 [00:03:42.000] FileWatcher:: Close:: WatchInfo: /user/username/projects/myproject/main/main.ts 500 undefined WatchType: Closed Script info +Info 106 [00:03:43.000] Project '/user/username/projects/myproject/random/tsconfig.json' (Configured) +Info 106 [00:03:44.000] Files (2) + +Info 106 [00:03:45.000] ----------------------------------------------- +Info 106 [00:03:46.000] Open files: +Info 106 [00:03:47.000] FileName: /user/username/projects/myproject/random/random.ts ProjectRootPath: undefined +Info 106 [00:03:48.000] Projects: /user/username/projects/myproject/random/tsconfig.json After request PolledWatches:: @@ -1485,7 +1485,7 @@ FsWatchesRecursive:: /user/username/projects/myproject/random: {} -Info 106 [16:03:49.000] response: +Info 106 [00:03:49.000] response: { "responseRequired": false } \ No newline at end of file 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 e18b31b8492a1..b08f6c59b03c3 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 @@ -1,5 +1,5 @@ -Info 0 [16:01:04.000] Provided types map file "/a/lib/typesMap.json" doesn't exist -Info 1 [16:01:05.000] request: +Info 0 [00:01:04.000] Provided types map file "/a/lib/typesMap.json" doesn't exist +Info 1 [00:01:05.000] request: { "seq": 0, "type": "request", @@ -192,11 +192,11 @@ FsWatches:: FsWatchesRecursive:: -Info 2 [16:01:06.000] Search path: /user/username/projects/myproject/main -Info 3 [16:01:07.000] For info: /user/username/projects/myproject/main/main.ts :: Config file name: /user/username/projects/myproject/main/tsconfig.json -Info 4 [16:01:08.000] Creating configuration project /user/username/projects/myproject/main/tsconfig.json -Info 5 [16:01:09.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/main/tsconfig.json 2000 undefined Project: /user/username/projects/myproject/main/tsconfig.json WatchType: Config file -Info 6 [16:01:10.000] Config: /user/username/projects/myproject/main/tsconfig.json : { +Info 2 [00:01:06.000] Search path: /user/username/projects/myproject/main +Info 3 [00:01:07.000] For info: /user/username/projects/myproject/main/main.ts :: Config file name: /user/username/projects/myproject/main/tsconfig.json +Info 4 [00:01:08.000] Creating configuration project /user/username/projects/myproject/main/tsconfig.json +Info 5 [00:01:09.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/main/tsconfig.json 2000 undefined Project: /user/username/projects/myproject/main/tsconfig.json WatchType: Config file +Info 6 [00:01:10.000] Config: /user/username/projects/myproject/main/tsconfig.json : { "rootNames": [ "/user/username/projects/myproject/main/main.ts" ], @@ -206,20 +206,20 @@ Info 6 [16:01:10.000] Config: /user/username/projects/myproject/main/tsconfig "configFilePath": "/user/username/projects/myproject/main/tsconfig.json" } } -Info 7 [16:01:11.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/main 1 undefined Config: /user/username/projects/myproject/main/tsconfig.json WatchType: Wild card directory -Info 8 [16:01:12.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/main 1 undefined Config: /user/username/projects/myproject/main/tsconfig.json WatchType: Wild card directory -Info 9 [16:01:13.000] Plugins were requested but not running in environment that supports 'require'. Nothing will be loaded -Info 10 [16:01:14.000] Starting updateGraphWorker: Project: /user/username/projects/myproject/main/tsconfig.json -Info 11 [16:01:15.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/decls 1 undefined Project: /user/username/projects/myproject/main/tsconfig.json WatchType: Failed Lookup Locations -Info 12 [16:01:16.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/decls 1 undefined Project: /user/username/projects/myproject/main/tsconfig.json WatchType: Failed Lookup Locations -Info 13 [16:01:17.000] FileWatcher:: Added:: WatchInfo: /a/lib/lib.d.ts 500 undefined WatchType: Closed Script info -Info 14 [16:01:18.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/main/node_modules/@types 1 undefined Project: /user/username/projects/myproject/main/tsconfig.json WatchType: Type roots -Info 15 [16:01:19.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/main/node_modules/@types 1 undefined Project: /user/username/projects/myproject/main/tsconfig.json WatchType: Type roots -Info 16 [16:01:20.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/main/tsconfig.json WatchType: Type roots -Info 17 [16:01:21.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/main/tsconfig.json WatchType: Type roots -Info 18 [16:01:22.000] Finishing updateGraphWorker: Project: /user/username/projects/myproject/main/tsconfig.json Version: 1 structureChanged: true structureIsReused:: Not Elapsed:: *ms -Info 19 [16:01:23.000] Project '/user/username/projects/myproject/main/tsconfig.json' (Configured) -Info 20 [16:01:24.000] Files (2) +Info 7 [00:01:11.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/main 1 undefined Config: /user/username/projects/myproject/main/tsconfig.json WatchType: Wild card directory +Info 8 [00:01:12.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/main 1 undefined Config: /user/username/projects/myproject/main/tsconfig.json WatchType: Wild card directory +Info 9 [00:01:13.000] Plugins were requested but not running in environment that supports 'require'. Nothing will be loaded +Info 10 [00:01:14.000] Starting updateGraphWorker: Project: /user/username/projects/myproject/main/tsconfig.json +Info 11 [00:01:15.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/decls 1 undefined Project: /user/username/projects/myproject/main/tsconfig.json WatchType: Failed Lookup Locations +Info 12 [00:01:16.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/decls 1 undefined Project: /user/username/projects/myproject/main/tsconfig.json WatchType: Failed Lookup Locations +Info 13 [00:01:17.000] FileWatcher:: Added:: WatchInfo: /a/lib/lib.d.ts 500 undefined WatchType: Closed Script info +Info 14 [00:01:18.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/main/node_modules/@types 1 undefined Project: /user/username/projects/myproject/main/tsconfig.json WatchType: Type roots +Info 15 [00:01:19.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/main/node_modules/@types 1 undefined Project: /user/username/projects/myproject/main/tsconfig.json WatchType: Type roots +Info 16 [00:01:20.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/main/tsconfig.json WatchType: Type roots +Info 17 [00:01:21.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/main/tsconfig.json WatchType: Type roots +Info 18 [00:01:22.000] Finishing updateGraphWorker: Project: /user/username/projects/myproject/main/tsconfig.json Version: 1 structureChanged: true structureIsReused:: Not Elapsed:: *ms +Info 19 [00:01:23.000] Project '/user/username/projects/myproject/main/tsconfig.json' (Configured) +Info 20 [00:01:24.000] Files (2) /a/lib/lib.d.ts /user/username/projects/myproject/main/main.ts @@ -229,16 +229,16 @@ Info 20 [16:01:24.000] Files (2) main.ts Matched by default include pattern '**/*' -Info 21 [16:01:25.000] ----------------------------------------------- -Info 22 [16:01:26.000] Search path: /user/username/projects/myproject/main -Info 23 [16:01:27.000] For info: /user/username/projects/myproject/main/tsconfig.json :: No config files found. -Info 24 [16:01:28.000] Project '/user/username/projects/myproject/main/tsconfig.json' (Configured) -Info 24 [16:01:29.000] Files (2) +Info 21 [00:01:25.000] ----------------------------------------------- +Info 22 [00:01:26.000] Search path: /user/username/projects/myproject/main +Info 23 [00:01:27.000] For info: /user/username/projects/myproject/main/tsconfig.json :: No config files found. +Info 24 [00:01:28.000] Project '/user/username/projects/myproject/main/tsconfig.json' (Configured) +Info 24 [00:01:29.000] Files (2) -Info 24 [16:01:30.000] ----------------------------------------------- -Info 24 [16:01:31.000] Open files: -Info 24 [16:01:32.000] FileName: /user/username/projects/myproject/main/main.ts ProjectRootPath: undefined -Info 24 [16:01:33.000] Projects: /user/username/projects/myproject/main/tsconfig.json +Info 24 [00:01:30.000] ----------------------------------------------- +Info 24 [00:01:31.000] Open files: +Info 24 [00:01:32.000] FileName: /user/username/projects/myproject/main/main.ts ProjectRootPath: undefined +Info 24 [00:01:33.000] Projects: /user/username/projects/myproject/main/tsconfig.json After request PolledWatches:: @@ -259,11 +259,11 @@ FsWatchesRecursive:: /user/username/projects/myproject/decls: {} -Info 24 [16:01:34.000] response: +Info 24 [00:01:34.000] response: { "responseRequired": false } -Info 25 [16:01:35.000] request: +Info 25 [00:01:35.000] request: { "seq": 0, "type": "request", @@ -292,11 +292,11 @@ FsWatchesRecursive:: /user/username/projects/myproject/decls: {} -Info 26 [16:01:36.000] Search path: /user/username/projects/myproject/random -Info 27 [16:01:37.000] For info: /user/username/projects/myproject/random/random.ts :: Config file name: /user/username/projects/myproject/random/tsconfig.json -Info 28 [16:01:38.000] Creating configuration project /user/username/projects/myproject/random/tsconfig.json -Info 29 [16:01:39.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/random/tsconfig.json 2000 undefined Project: /user/username/projects/myproject/random/tsconfig.json WatchType: Config file -Info 30 [16:01:40.000] Config: /user/username/projects/myproject/random/tsconfig.json : { +Info 26 [00:01:36.000] Search path: /user/username/projects/myproject/random +Info 27 [00:01:37.000] For info: /user/username/projects/myproject/random/random.ts :: Config file name: /user/username/projects/myproject/random/tsconfig.json +Info 28 [00:01:38.000] Creating configuration project /user/username/projects/myproject/random/tsconfig.json +Info 29 [00:01:39.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/random/tsconfig.json 2000 undefined Project: /user/username/projects/myproject/random/tsconfig.json WatchType: Config file +Info 30 [00:01:40.000] Config: /user/username/projects/myproject/random/tsconfig.json : { "rootNames": [ "/user/username/projects/myproject/random/random.ts" ], @@ -304,17 +304,17 @@ Info 30 [16:01:40.000] Config: /user/username/projects/myproject/random/tsconf "configFilePath": "/user/username/projects/myproject/random/tsconfig.json" } } -Info 31 [16:01:41.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/random 1 undefined Config: /user/username/projects/myproject/random/tsconfig.json WatchType: Wild card directory -Info 32 [16:01:42.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/random 1 undefined Config: /user/username/projects/myproject/random/tsconfig.json WatchType: Wild card directory -Info 33 [16:01:43.000] Plugins were requested but not running in environment that supports 'require'. Nothing will be loaded -Info 34 [16:01:44.000] Starting updateGraphWorker: Project: /user/username/projects/myproject/random/tsconfig.json -Info 35 [16:01:45.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/random/node_modules/@types 1 undefined Project: /user/username/projects/myproject/random/tsconfig.json WatchType: Type roots -Info 36 [16:01:46.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/random/node_modules/@types 1 undefined Project: /user/username/projects/myproject/random/tsconfig.json WatchType: Type roots -Info 37 [16:01:47.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/random/tsconfig.json WatchType: Type roots -Info 38 [16:01:48.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/random/tsconfig.json WatchType: Type roots -Info 39 [16:01:49.000] Finishing updateGraphWorker: Project: /user/username/projects/myproject/random/tsconfig.json Version: 1 structureChanged: true structureIsReused:: Not Elapsed:: *ms -Info 40 [16:01:50.000] Project '/user/username/projects/myproject/random/tsconfig.json' (Configured) -Info 41 [16:01:51.000] Files (2) +Info 31 [00:01:41.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/random 1 undefined Config: /user/username/projects/myproject/random/tsconfig.json WatchType: Wild card directory +Info 32 [00:01:42.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/random 1 undefined Config: /user/username/projects/myproject/random/tsconfig.json WatchType: Wild card directory +Info 33 [00:01:43.000] Plugins were requested but not running in environment that supports 'require'. Nothing will be loaded +Info 34 [00:01:44.000] Starting updateGraphWorker: Project: /user/username/projects/myproject/random/tsconfig.json +Info 35 [00:01:45.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/random/node_modules/@types 1 undefined Project: /user/username/projects/myproject/random/tsconfig.json WatchType: Type roots +Info 36 [00:01:46.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/random/node_modules/@types 1 undefined Project: /user/username/projects/myproject/random/tsconfig.json WatchType: Type roots +Info 37 [00:01:47.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/random/tsconfig.json WatchType: Type roots +Info 38 [00:01:48.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/random/tsconfig.json WatchType: Type roots +Info 39 [00:01:49.000] Finishing updateGraphWorker: Project: /user/username/projects/myproject/random/tsconfig.json Version: 1 structureChanged: true structureIsReused:: Not Elapsed:: *ms +Info 40 [00:01:50.000] Project '/user/username/projects/myproject/random/tsconfig.json' (Configured) +Info 41 [00:01:51.000] Files (2) /a/lib/lib.d.ts /user/username/projects/myproject/random/random.ts @@ -324,20 +324,20 @@ Info 41 [16:01:51.000] Files (2) random.ts Matched by default include pattern '**/*' -Info 42 [16:01:52.000] ----------------------------------------------- -Info 43 [16:01:53.000] Project '/user/username/projects/myproject/main/tsconfig.json' (Configured) -Info 43 [16:01:54.000] Files (2) +Info 42 [00:01:52.000] ----------------------------------------------- +Info 43 [00:01:53.000] Project '/user/username/projects/myproject/main/tsconfig.json' (Configured) +Info 43 [00:01:54.000] Files (2) -Info 43 [16:01:55.000] ----------------------------------------------- -Info 43 [16:01:56.000] Project '/user/username/projects/myproject/random/tsconfig.json' (Configured) -Info 43 [16:01:57.000] Files (2) +Info 43 [00:01:55.000] ----------------------------------------------- +Info 43 [00:01:56.000] Project '/user/username/projects/myproject/random/tsconfig.json' (Configured) +Info 43 [00:01:57.000] Files (2) -Info 43 [16:01:58.000] ----------------------------------------------- -Info 43 [16:01:59.000] Open files: -Info 43 [16:02:00.000] FileName: /user/username/projects/myproject/main/main.ts ProjectRootPath: undefined -Info 43 [16:02:01.000] Projects: /user/username/projects/myproject/main/tsconfig.json -Info 43 [16:02:02.000] FileName: /user/username/projects/myproject/random/random.ts ProjectRootPath: undefined -Info 43 [16:02:03.000] Projects: /user/username/projects/myproject/random/tsconfig.json +Info 43 [00:01:58.000] ----------------------------------------------- +Info 43 [00:01:59.000] Open files: +Info 43 [00:02:00.000] FileName: /user/username/projects/myproject/main/main.ts ProjectRootPath: undefined +Info 43 [00:02:01.000] Projects: /user/username/projects/myproject/main/tsconfig.json +Info 43 [00:02:02.000] FileName: /user/username/projects/myproject/random/random.ts ProjectRootPath: undefined +Info 43 [00:02:03.000] Projects: /user/username/projects/myproject/random/tsconfig.json After request PolledWatches:: @@ -364,11 +364,11 @@ FsWatchesRecursive:: /user/username/projects/myproject/random: {} -Info 43 [16:02:04.000] response: +Info 43 [00:02:04.000] response: { "responseRequired": false } -Info 44 [16:02:05.000] request: +Info 44 [00:02:05.000] request: { "command": "definitionAndBoundSpan", "arguments": { @@ -431,7 +431,7 @@ FsWatchesRecursive:: /user/username/projects/myproject/random: {} -Info 45 [16:02:06.000] response: +Info 45 [00:02:06.000] response: { "response": { "definitions": [ @@ -468,7 +468,7 @@ Info 45 [16:02:06.000] response: }, "responseRequired": true } -Info 46 [16:02:07.000] request: +Info 46 [00:02:07.000] request: { "command": "definitionAndBoundSpan", "arguments": { @@ -531,7 +531,7 @@ FsWatchesRecursive:: /user/username/projects/myproject/random: {} -Info 47 [16:02:08.000] response: +Info 47 [00:02:08.000] response: { "response": { "definitions": [ @@ -568,7 +568,7 @@ Info 47 [16:02:08.000] response: }, "responseRequired": true } -Info 48 [16:02:09.000] request: +Info 48 [00:02:09.000] request: { "command": "definitionAndBoundSpan", "arguments": { @@ -631,7 +631,7 @@ FsWatchesRecursive:: /user/username/projects/myproject/random: {} -Info 49 [16:02:10.000] response: +Info 49 [00:02:10.000] response: { "response": { "definitions": [ @@ -668,7 +668,7 @@ Info 49 [16:02:10.000] response: }, "responseRequired": true } -Info 50 [16:02:11.000] request: +Info 50 [00:02:11.000] request: { "command": "definitionAndBoundSpan", "arguments": { @@ -731,7 +731,7 @@ FsWatchesRecursive:: /user/username/projects/myproject/random: {} -Info 51 [16:02:12.000] response: +Info 51 [00:02:12.000] response: { "response": { "definitions": [ @@ -768,7 +768,7 @@ Info 51 [16:02:12.000] response: }, "responseRequired": true } -Info 52 [16:02:13.000] request: +Info 52 [00:02:13.000] request: { "command": "definitionAndBoundSpan", "arguments": { @@ -831,7 +831,7 @@ FsWatchesRecursive:: /user/username/projects/myproject/random: {} -Info 53 [16:02:14.000] response: +Info 53 [00:02:14.000] response: { "response": { "definitions": [ @@ -868,7 +868,7 @@ Info 53 [16:02:14.000] response: }, "responseRequired": true } -Info 54 [16:02:15.000] request: +Info 54 [00:02:15.000] request: { "seq": 0, "type": "request", @@ -903,18 +903,18 @@ FsWatchesRecursive:: /user/username/projects/myproject/random: {} -Info 55 [16:02:16.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/random/random.ts 500 undefined WatchType: Closed Script info -Info 56 [16:02:17.000] Project '/user/username/projects/myproject/main/tsconfig.json' (Configured) -Info 56 [16:02:18.000] Files (2) +Info 55 [00:02:16.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/random/random.ts 500 undefined WatchType: Closed Script info +Info 56 [00:02:17.000] Project '/user/username/projects/myproject/main/tsconfig.json' (Configured) +Info 56 [00:02:18.000] Files (2) -Info 56 [16:02:19.000] ----------------------------------------------- -Info 56 [16:02:20.000] Project '/user/username/projects/myproject/random/tsconfig.json' (Configured) -Info 56 [16:02:21.000] Files (2) +Info 56 [00:02:19.000] ----------------------------------------------- +Info 56 [00:02:20.000] Project '/user/username/projects/myproject/random/tsconfig.json' (Configured) +Info 56 [00:02:21.000] Files (2) -Info 56 [16:02:22.000] ----------------------------------------------- -Info 56 [16:02:23.000] Open files: -Info 56 [16:02:24.000] FileName: /user/username/projects/myproject/main/main.ts ProjectRootPath: undefined -Info 56 [16:02:25.000] Projects: /user/username/projects/myproject/main/tsconfig.json +Info 56 [00:02:22.000] ----------------------------------------------- +Info 56 [00:02:23.000] Open files: +Info 56 [00:02:24.000] FileName: /user/username/projects/myproject/main/main.ts ProjectRootPath: undefined +Info 56 [00:02:25.000] Projects: /user/username/projects/myproject/main/tsconfig.json After request PolledWatches:: @@ -943,11 +943,11 @@ FsWatchesRecursive:: /user/username/projects/myproject/random: {} -Info 56 [16:02:26.000] response: +Info 56 [00:02:26.000] response: { "responseRequired": false } -Info 57 [16:02:27.000] request: +Info 57 [00:02:27.000] request: { "seq": 0, "type": "request", @@ -984,22 +984,22 @@ FsWatchesRecursive:: /user/username/projects/myproject/random: {} -Info 58 [16:02:28.000] FileWatcher:: Close:: WatchInfo: /user/username/projects/myproject/random/random.ts 500 undefined WatchType: Closed Script info -Info 59 [16:02:29.000] Search path: /user/username/projects/myproject/random -Info 60 [16:02:30.000] For info: /user/username/projects/myproject/random/random.ts :: Config file name: /user/username/projects/myproject/random/tsconfig.json -Info 61 [16:02:31.000] Project '/user/username/projects/myproject/main/tsconfig.json' (Configured) -Info 61 [16:02:32.000] Files (2) +Info 58 [00:02:28.000] FileWatcher:: Close:: WatchInfo: /user/username/projects/myproject/random/random.ts 500 undefined WatchType: Closed Script info +Info 59 [00:02:29.000] Search path: /user/username/projects/myproject/random +Info 60 [00:02:30.000] For info: /user/username/projects/myproject/random/random.ts :: Config file name: /user/username/projects/myproject/random/tsconfig.json +Info 61 [00:02:31.000] Project '/user/username/projects/myproject/main/tsconfig.json' (Configured) +Info 61 [00:02:32.000] Files (2) -Info 61 [16:02:33.000] ----------------------------------------------- -Info 61 [16:02:34.000] Project '/user/username/projects/myproject/random/tsconfig.json' (Configured) -Info 61 [16:02:35.000] Files (2) +Info 61 [00:02:33.000] ----------------------------------------------- +Info 61 [00:02:34.000] Project '/user/username/projects/myproject/random/tsconfig.json' (Configured) +Info 61 [00:02:35.000] Files (2) -Info 61 [16:02:36.000] ----------------------------------------------- -Info 61 [16:02:37.000] Open files: -Info 61 [16:02:38.000] FileName: /user/username/projects/myproject/main/main.ts ProjectRootPath: undefined -Info 61 [16:02:39.000] Projects: /user/username/projects/myproject/main/tsconfig.json -Info 61 [16:02:40.000] FileName: /user/username/projects/myproject/random/random.ts ProjectRootPath: undefined -Info 61 [16:02:41.000] Projects: /user/username/projects/myproject/random/tsconfig.json +Info 61 [00:02:36.000] ----------------------------------------------- +Info 61 [00:02:37.000] Open files: +Info 61 [00:02:38.000] FileName: /user/username/projects/myproject/main/main.ts ProjectRootPath: undefined +Info 61 [00:02:39.000] Projects: /user/username/projects/myproject/main/tsconfig.json +Info 61 [00:02:40.000] FileName: /user/username/projects/myproject/random/random.ts ProjectRootPath: undefined +Info 61 [00:02:41.000] Projects: /user/username/projects/myproject/random/tsconfig.json After request PolledWatches:: @@ -1026,11 +1026,11 @@ FsWatchesRecursive:: /user/username/projects/myproject/random: {} -Info 61 [16:02:42.000] response: +Info 61 [00:02:42.000] response: { "responseRequired": false } -Info 62 [16:02:43.000] request: +Info 62 [00:02:43.000] request: { "seq": 0, "type": "request", @@ -1065,18 +1065,18 @@ FsWatchesRecursive:: /user/username/projects/myproject/random: {} -Info 63 [16:02:44.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/main/main.ts 500 undefined WatchType: Closed Script info -Info 64 [16:02:45.000] Project '/user/username/projects/myproject/main/tsconfig.json' (Configured) -Info 64 [16:02:46.000] Files (2) +Info 63 [00:02:44.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/main/main.ts 500 undefined WatchType: Closed Script info +Info 64 [00:02:45.000] Project '/user/username/projects/myproject/main/tsconfig.json' (Configured) +Info 64 [00:02:46.000] Files (2) -Info 64 [16:02:47.000] ----------------------------------------------- -Info 64 [16:02:48.000] Project '/user/username/projects/myproject/random/tsconfig.json' (Configured) -Info 64 [16:02:49.000] Files (2) +Info 64 [00:02:47.000] ----------------------------------------------- +Info 64 [00:02:48.000] Project '/user/username/projects/myproject/random/tsconfig.json' (Configured) +Info 64 [00:02:49.000] Files (2) -Info 64 [16:02:50.000] ----------------------------------------------- -Info 64 [16:02:51.000] Open files: -Info 64 [16:02:52.000] FileName: /user/username/projects/myproject/random/random.ts ProjectRootPath: undefined -Info 64 [16:02:53.000] Projects: /user/username/projects/myproject/random/tsconfig.json +Info 64 [00:02:50.000] ----------------------------------------------- +Info 64 [00:02:51.000] Open files: +Info 64 [00:02:52.000] FileName: /user/username/projects/myproject/random/random.ts ProjectRootPath: undefined +Info 64 [00:02:53.000] Projects: /user/username/projects/myproject/random/tsconfig.json After request PolledWatches:: @@ -1105,11 +1105,11 @@ FsWatchesRecursive:: /user/username/projects/myproject/random: {} -Info 64 [16:02:54.000] response: +Info 64 [00:02:54.000] response: { "responseRequired": false } -Info 65 [16:02:55.000] request: +Info 65 [00:02:55.000] request: { "seq": 0, "type": "request", @@ -1146,16 +1146,16 @@ FsWatchesRecursive:: /user/username/projects/myproject/random: {} -Info 66 [16:02:56.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/random/random.ts 500 undefined WatchType: Closed Script info -Info 67 [16:02:57.000] Project '/user/username/projects/myproject/main/tsconfig.json' (Configured) -Info 67 [16:02:58.000] Files (2) +Info 66 [00:02:56.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/random/random.ts 500 undefined WatchType: Closed Script info +Info 67 [00:02:57.000] Project '/user/username/projects/myproject/main/tsconfig.json' (Configured) +Info 67 [00:02:58.000] Files (2) -Info 67 [16:02:59.000] ----------------------------------------------- -Info 67 [16:03:00.000] Project '/user/username/projects/myproject/random/tsconfig.json' (Configured) -Info 67 [16:03:01.000] Files (2) +Info 67 [00:02:59.000] ----------------------------------------------- +Info 67 [00:03:00.000] Project '/user/username/projects/myproject/random/tsconfig.json' (Configured) +Info 67 [00:03:01.000] Files (2) -Info 67 [16:03:02.000] ----------------------------------------------- -Info 67 [16:03:03.000] Open files: +Info 67 [00:03:02.000] ----------------------------------------------- +Info 67 [00:03:03.000] Open files: After request PolledWatches:: @@ -1186,11 +1186,11 @@ FsWatchesRecursive:: /user/username/projects/myproject/random: {} -Info 67 [16:03:04.000] response: +Info 67 [00:03:04.000] response: { "responseRequired": false } -Info 68 [16:03:05.000] request: +Info 68 [00:03:05.000] request: { "seq": 0, "type": "request", @@ -1229,12 +1229,12 @@ FsWatchesRecursive:: /user/username/projects/myproject/random: {} -Info 69 [16:03:06.000] FileWatcher:: Close:: WatchInfo: /user/username/projects/myproject/random/random.ts 500 undefined WatchType: Closed Script info -Info 70 [16:03:07.000] Search path: /user/username/projects/myproject/random -Info 71 [16:03:08.000] For info: /user/username/projects/myproject/random/random.ts :: Config file name: /user/username/projects/myproject/random/tsconfig.json -Info 72 [16:03:09.000] `remove Project:: -Info 73 [16:03:10.000] Project '/user/username/projects/myproject/main/tsconfig.json' (Configured) -Info 74 [16:03:11.000] Files (2) +Info 69 [00:03:06.000] FileWatcher:: Close:: WatchInfo: /user/username/projects/myproject/random/random.ts 500 undefined WatchType: Closed Script info +Info 70 [00:03:07.000] Search path: /user/username/projects/myproject/random +Info 71 [00:03:08.000] For info: /user/username/projects/myproject/random/random.ts :: Config file name: /user/username/projects/myproject/random/tsconfig.json +Info 72 [00:03:09.000] `remove Project:: +Info 73 [00:03:10.000] Project '/user/username/projects/myproject/main/tsconfig.json' (Configured) +Info 74 [00:03:11.000] Files (2) /a/lib/lib.d.ts /user/username/projects/myproject/main/main.ts @@ -1244,24 +1244,24 @@ Info 74 [16:03:11.000] Files (2) main.ts Matched by default include pattern '**/*' -Info 75 [16:03:12.000] ----------------------------------------------- -Info 76 [16:03:13.000] DirectoryWatcher:: Close:: WatchInfo: /user/username/projects/myproject/main 1 undefined Config: /user/username/projects/myproject/main/tsconfig.json WatchType: Wild card directory -Info 77 [16:03:14.000] 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 78 [16:03:15.000] FileWatcher:: Close:: WatchInfo: /user/username/projects/myproject/main/tsconfig.json 2000 undefined Project: /user/username/projects/myproject/main/tsconfig.json WatchType: Config file -Info 79 [16:03:16.000] DirectoryWatcher:: Close:: WatchInfo: /user/username/projects/myproject/decls 1 undefined Project: /user/username/projects/myproject/main/tsconfig.json WatchType: Failed Lookup Locations -Info 80 [16:03:17.000] 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 81 [16:03:18.000] 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 82 [16:03:19.000] 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 83 [16:03:20.000] DirectoryWatcher:: Close:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/main/tsconfig.json WatchType: Type roots -Info 84 [16:03:21.000] 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 85 [16:03:22.000] FileWatcher:: Close:: WatchInfo: /user/username/projects/myproject/main/main.ts 500 undefined WatchType: Closed Script info -Info 86 [16:03:23.000] Project '/user/username/projects/myproject/random/tsconfig.json' (Configured) -Info 86 [16:03:24.000] Files (2) - -Info 86 [16:03:25.000] ----------------------------------------------- -Info 86 [16:03:26.000] Open files: -Info 86 [16:03:27.000] FileName: /user/username/projects/myproject/random/random.ts ProjectRootPath: undefined -Info 86 [16:03:28.000] Projects: /user/username/projects/myproject/random/tsconfig.json +Info 75 [00:03:12.000] ----------------------------------------------- +Info 76 [00:03:13.000] DirectoryWatcher:: Close:: WatchInfo: /user/username/projects/myproject/main 1 undefined Config: /user/username/projects/myproject/main/tsconfig.json WatchType: Wild card directory +Info 77 [00:03:14.000] 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 78 [00:03:15.000] FileWatcher:: Close:: WatchInfo: /user/username/projects/myproject/main/tsconfig.json 2000 undefined Project: /user/username/projects/myproject/main/tsconfig.json WatchType: Config file +Info 79 [00:03:16.000] DirectoryWatcher:: Close:: WatchInfo: /user/username/projects/myproject/decls 1 undefined Project: /user/username/projects/myproject/main/tsconfig.json WatchType: Failed Lookup Locations +Info 80 [00:03:17.000] 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 81 [00:03:18.000] 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 82 [00:03:19.000] 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 83 [00:03:20.000] DirectoryWatcher:: Close:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/main/tsconfig.json WatchType: Type roots +Info 84 [00:03:21.000] 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 85 [00:03:22.000] FileWatcher:: Close:: WatchInfo: /user/username/projects/myproject/main/main.ts 500 undefined WatchType: Closed Script info +Info 86 [00:03:23.000] Project '/user/username/projects/myproject/random/tsconfig.json' (Configured) +Info 86 [00:03:24.000] Files (2) + +Info 86 [00:03:25.000] ----------------------------------------------- +Info 86 [00:03:26.000] Open files: +Info 86 [00:03:27.000] FileName: /user/username/projects/myproject/random/random.ts ProjectRootPath: undefined +Info 86 [00:03:28.000] Projects: /user/username/projects/myproject/random/tsconfig.json After request PolledWatches:: @@ -1280,7 +1280,7 @@ FsWatchesRecursive:: /user/username/projects/myproject/random: {} -Info 86 [16:03:29.000] response: +Info 86 [00:03:29.000] response: { "responseRequired": false } \ No newline at end of file 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 fe634f9aac42a..9677f9def45db 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 @@ -1,5 +1,5 @@ -Info 0 [16:01:03.000] Provided types map file "/a/lib/typesMap.json" doesn't exist -Info 1 [16:01:04.000] request: +Info 0 [00:01:03.000] Provided types map file "/a/lib/typesMap.json" doesn't exist +Info 1 [00:01:04.000] request: { "seq": 0, "type": "request", @@ -200,11 +200,11 @@ FsWatches:: FsWatchesRecursive:: -Info 2 [16:01:05.000] Search path: /user/username/projects/myproject/main -Info 3 [16:01:06.000] For info: /user/username/projects/myproject/main/main.ts :: Config file name: /user/username/projects/myproject/main/tsconfig.json -Info 4 [16:01:07.000] Creating configuration project /user/username/projects/myproject/main/tsconfig.json -Info 5 [16:01:08.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/main/tsconfig.json 2000 undefined Project: /user/username/projects/myproject/main/tsconfig.json WatchType: Config file -Info 6 [16:01:09.000] Config: /user/username/projects/myproject/main/tsconfig.json : { +Info 2 [00:01:05.000] Search path: /user/username/projects/myproject/main +Info 3 [00:01:06.000] For info: /user/username/projects/myproject/main/main.ts :: Config file name: /user/username/projects/myproject/main/tsconfig.json +Info 4 [00:01:07.000] Creating configuration project /user/username/projects/myproject/main/tsconfig.json +Info 5 [00:01:08.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/main/tsconfig.json 2000 undefined Project: /user/username/projects/myproject/main/tsconfig.json WatchType: Config file +Info 6 [00:01:09.000] Config: /user/username/projects/myproject/main/tsconfig.json : { "rootNames": [ "/user/username/projects/myproject/main/main.ts" ], @@ -214,21 +214,21 @@ Info 6 [16:01:09.000] Config: /user/username/projects/myproject/main/tsconfig "configFilePath": "/user/username/projects/myproject/main/tsconfig.json" } } -Info 7 [16:01:10.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/main 1 undefined Config: /user/username/projects/myproject/main/tsconfig.json WatchType: Wild card directory -Info 8 [16:01:11.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/main 1 undefined Config: /user/username/projects/myproject/main/tsconfig.json WatchType: Wild card directory -Info 9 [16:01:12.000] Plugins were requested but not running in environment that supports 'require'. Nothing will be loaded -Info 10 [16:01:13.000] Starting updateGraphWorker: Project: /user/username/projects/myproject/main/tsconfig.json -Info 11 [16:01:14.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/decls 1 undefined Project: /user/username/projects/myproject/main/tsconfig.json WatchType: Failed Lookup Locations -Info 12 [16:01:15.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/decls 1 undefined Project: /user/username/projects/myproject/main/tsconfig.json WatchType: Failed Lookup Locations -Info 13 [16:01:16.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/decls/fns.d.ts 500 undefined WatchType: Closed Script info -Info 14 [16:01:17.000] FileWatcher:: Added:: WatchInfo: /a/lib/lib.d.ts 500 undefined WatchType: Closed Script info -Info 15 [16:01:18.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/main/node_modules/@types 1 undefined Project: /user/username/projects/myproject/main/tsconfig.json WatchType: Type roots -Info 16 [16:01:19.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/main/node_modules/@types 1 undefined Project: /user/username/projects/myproject/main/tsconfig.json WatchType: Type roots -Info 17 [16:01:20.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/main/tsconfig.json WatchType: Type roots -Info 18 [16:01:21.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/main/tsconfig.json WatchType: Type roots -Info 19 [16:01:22.000] Finishing updateGraphWorker: Project: /user/username/projects/myproject/main/tsconfig.json Version: 1 structureChanged: true structureIsReused:: Not Elapsed:: *ms -Info 20 [16:01:23.000] Project '/user/username/projects/myproject/main/tsconfig.json' (Configured) -Info 21 [16:01:24.000] Files (3) +Info 7 [00:01:10.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/main 1 undefined Config: /user/username/projects/myproject/main/tsconfig.json WatchType: Wild card directory +Info 8 [00:01:11.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/main 1 undefined Config: /user/username/projects/myproject/main/tsconfig.json WatchType: Wild card directory +Info 9 [00:01:12.000] Plugins were requested but not running in environment that supports 'require'. Nothing will be loaded +Info 10 [00:01:13.000] Starting updateGraphWorker: Project: /user/username/projects/myproject/main/tsconfig.json +Info 11 [00:01:14.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/decls 1 undefined Project: /user/username/projects/myproject/main/tsconfig.json WatchType: Failed Lookup Locations +Info 12 [00:01:15.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/decls 1 undefined Project: /user/username/projects/myproject/main/tsconfig.json WatchType: Failed Lookup Locations +Info 13 [00:01:16.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/decls/fns.d.ts 500 undefined WatchType: Closed Script info +Info 14 [00:01:17.000] FileWatcher:: Added:: WatchInfo: /a/lib/lib.d.ts 500 undefined WatchType: Closed Script info +Info 15 [00:01:18.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/main/node_modules/@types 1 undefined Project: /user/username/projects/myproject/main/tsconfig.json WatchType: Type roots +Info 16 [00:01:19.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/main/node_modules/@types 1 undefined Project: /user/username/projects/myproject/main/tsconfig.json WatchType: Type roots +Info 17 [00:01:20.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/main/tsconfig.json WatchType: Type roots +Info 18 [00:01:21.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/main/tsconfig.json WatchType: Type roots +Info 19 [00:01:22.000] Finishing updateGraphWorker: Project: /user/username/projects/myproject/main/tsconfig.json Version: 1 structureChanged: true structureIsReused:: Not Elapsed:: *ms +Info 20 [00:01:23.000] Project '/user/username/projects/myproject/main/tsconfig.json' (Configured) +Info 21 [00:01:24.000] Files (3) /a/lib/lib.d.ts /user/username/projects/myproject/decls/fns.d.ts /user/username/projects/myproject/main/main.ts @@ -241,16 +241,16 @@ Info 21 [16:01:24.000] Files (3) main.ts Matched by default include pattern '**/*' -Info 22 [16:01:25.000] ----------------------------------------------- -Info 23 [16:01:26.000] Search path: /user/username/projects/myproject/main -Info 24 [16:01:27.000] For info: /user/username/projects/myproject/main/tsconfig.json :: No config files found. -Info 25 [16:01:28.000] Project '/user/username/projects/myproject/main/tsconfig.json' (Configured) -Info 25 [16:01:29.000] Files (3) +Info 22 [00:01:25.000] ----------------------------------------------- +Info 23 [00:01:26.000] Search path: /user/username/projects/myproject/main +Info 24 [00:01:27.000] For info: /user/username/projects/myproject/main/tsconfig.json :: No config files found. +Info 25 [00:01:28.000] Project '/user/username/projects/myproject/main/tsconfig.json' (Configured) +Info 25 [00:01:29.000] Files (3) -Info 25 [16:01:30.000] ----------------------------------------------- -Info 25 [16:01:31.000] Open files: -Info 25 [16:01:32.000] FileName: /user/username/projects/myproject/main/main.ts ProjectRootPath: undefined -Info 25 [16:01:33.000] Projects: /user/username/projects/myproject/main/tsconfig.json +Info 25 [00:01:30.000] ----------------------------------------------- +Info 25 [00:01:31.000] Open files: +Info 25 [00:01:32.000] FileName: /user/username/projects/myproject/main/main.ts ProjectRootPath: undefined +Info 25 [00:01:33.000] Projects: /user/username/projects/myproject/main/tsconfig.json After request PolledWatches:: @@ -273,11 +273,11 @@ FsWatchesRecursive:: /user/username/projects/myproject/decls: {} -Info 25 [16:01:34.000] response: +Info 25 [00:01:34.000] response: { "responseRequired": false } -Info 26 [16:01:35.000] request: +Info 26 [00:01:35.000] request: { "seq": 0, "type": "request", @@ -308,11 +308,11 @@ FsWatchesRecursive:: /user/username/projects/myproject/decls: {} -Info 27 [16:01:36.000] Search path: /user/username/projects/myproject/random -Info 28 [16:01:37.000] For info: /user/username/projects/myproject/random/random.ts :: Config file name: /user/username/projects/myproject/random/tsconfig.json -Info 29 [16:01:38.000] Creating configuration project /user/username/projects/myproject/random/tsconfig.json -Info 30 [16:01:39.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/random/tsconfig.json 2000 undefined Project: /user/username/projects/myproject/random/tsconfig.json WatchType: Config file -Info 31 [16:01:40.000] Config: /user/username/projects/myproject/random/tsconfig.json : { +Info 27 [00:01:36.000] Search path: /user/username/projects/myproject/random +Info 28 [00:01:37.000] For info: /user/username/projects/myproject/random/random.ts :: Config file name: /user/username/projects/myproject/random/tsconfig.json +Info 29 [00:01:38.000] Creating configuration project /user/username/projects/myproject/random/tsconfig.json +Info 30 [00:01:39.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/random/tsconfig.json 2000 undefined Project: /user/username/projects/myproject/random/tsconfig.json WatchType: Config file +Info 31 [00:01:40.000] Config: /user/username/projects/myproject/random/tsconfig.json : { "rootNames": [ "/user/username/projects/myproject/random/random.ts" ], @@ -320,17 +320,17 @@ Info 31 [16:01:40.000] Config: /user/username/projects/myproject/random/tsconf "configFilePath": "/user/username/projects/myproject/random/tsconfig.json" } } -Info 32 [16:01:41.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/random 1 undefined Config: /user/username/projects/myproject/random/tsconfig.json WatchType: Wild card directory -Info 33 [16:01:42.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/random 1 undefined Config: /user/username/projects/myproject/random/tsconfig.json WatchType: Wild card directory -Info 34 [16:01:43.000] Plugins were requested but not running in environment that supports 'require'. Nothing will be loaded -Info 35 [16:01:44.000] Starting updateGraphWorker: Project: /user/username/projects/myproject/random/tsconfig.json -Info 36 [16:01:45.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/random/node_modules/@types 1 undefined Project: /user/username/projects/myproject/random/tsconfig.json WatchType: Type roots -Info 37 [16:01:46.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/random/node_modules/@types 1 undefined Project: /user/username/projects/myproject/random/tsconfig.json WatchType: Type roots -Info 38 [16:01:47.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/random/tsconfig.json WatchType: Type roots -Info 39 [16:01:48.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/random/tsconfig.json WatchType: Type roots -Info 40 [16:01:49.000] Finishing updateGraphWorker: Project: /user/username/projects/myproject/random/tsconfig.json Version: 1 structureChanged: true structureIsReused:: Not Elapsed:: *ms -Info 41 [16:01:50.000] Project '/user/username/projects/myproject/random/tsconfig.json' (Configured) -Info 42 [16:01:51.000] Files (2) +Info 32 [00:01:41.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/random 1 undefined Config: /user/username/projects/myproject/random/tsconfig.json WatchType: Wild card directory +Info 33 [00:01:42.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/random 1 undefined Config: /user/username/projects/myproject/random/tsconfig.json WatchType: Wild card directory +Info 34 [00:01:43.000] Plugins were requested but not running in environment that supports 'require'. Nothing will be loaded +Info 35 [00:01:44.000] Starting updateGraphWorker: Project: /user/username/projects/myproject/random/tsconfig.json +Info 36 [00:01:45.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/random/node_modules/@types 1 undefined Project: /user/username/projects/myproject/random/tsconfig.json WatchType: Type roots +Info 37 [00:01:46.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/random/node_modules/@types 1 undefined Project: /user/username/projects/myproject/random/tsconfig.json WatchType: Type roots +Info 38 [00:01:47.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/random/tsconfig.json WatchType: Type roots +Info 39 [00:01:48.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/random/tsconfig.json WatchType: Type roots +Info 40 [00:01:49.000] Finishing updateGraphWorker: Project: /user/username/projects/myproject/random/tsconfig.json Version: 1 structureChanged: true structureIsReused:: Not Elapsed:: *ms +Info 41 [00:01:50.000] Project '/user/username/projects/myproject/random/tsconfig.json' (Configured) +Info 42 [00:01:51.000] Files (2) /a/lib/lib.d.ts /user/username/projects/myproject/random/random.ts @@ -340,20 +340,20 @@ Info 42 [16:01:51.000] Files (2) random.ts Matched by default include pattern '**/*' -Info 43 [16:01:52.000] ----------------------------------------------- -Info 44 [16:01:53.000] Project '/user/username/projects/myproject/main/tsconfig.json' (Configured) -Info 44 [16:01:54.000] Files (3) +Info 43 [00:01:52.000] ----------------------------------------------- +Info 44 [00:01:53.000] Project '/user/username/projects/myproject/main/tsconfig.json' (Configured) +Info 44 [00:01:54.000] Files (3) -Info 44 [16:01:55.000] ----------------------------------------------- -Info 44 [16:01:56.000] Project '/user/username/projects/myproject/random/tsconfig.json' (Configured) -Info 44 [16:01:57.000] Files (2) +Info 44 [00:01:55.000] ----------------------------------------------- +Info 44 [00:01:56.000] Project '/user/username/projects/myproject/random/tsconfig.json' (Configured) +Info 44 [00:01:57.000] Files (2) -Info 44 [16:01:58.000] ----------------------------------------------- -Info 44 [16:01:59.000] Open files: -Info 44 [16:02:00.000] FileName: /user/username/projects/myproject/main/main.ts ProjectRootPath: undefined -Info 44 [16:02:01.000] Projects: /user/username/projects/myproject/main/tsconfig.json -Info 44 [16:02:02.000] FileName: /user/username/projects/myproject/random/random.ts ProjectRootPath: undefined -Info 44 [16:02:03.000] Projects: /user/username/projects/myproject/random/tsconfig.json +Info 44 [00:01:58.000] ----------------------------------------------- +Info 44 [00:01:59.000] Open files: +Info 44 [00:02:00.000] FileName: /user/username/projects/myproject/main/main.ts ProjectRootPath: undefined +Info 44 [00:02:01.000] Projects: /user/username/projects/myproject/main/tsconfig.json +Info 44 [00:02:02.000] FileName: /user/username/projects/myproject/random/random.ts ProjectRootPath: undefined +Info 44 [00:02:03.000] Projects: /user/username/projects/myproject/random/tsconfig.json After request PolledWatches:: @@ -382,11 +382,11 @@ FsWatchesRecursive:: /user/username/projects/myproject/random: {} -Info 44 [16:02:04.000] response: +Info 44 [00:02:04.000] response: { "responseRequired": false } -Info 45 [16:02:05.000] request: +Info 45 [00:02:05.000] request: { "command": "definitionAndBoundSpan", "arguments": { @@ -425,8 +425,8 @@ FsWatchesRecursive:: /user/username/projects/myproject/random: {} -Info 46 [16:02:06.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/decls/FnS.d.ts.map 500 undefined WatchType: Closed Script info -Info 47 [16:02:07.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/dependency/FnS.ts 500 undefined WatchType: Closed Script info +Info 46 [00:02:06.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/decls/FnS.d.ts.map 500 undefined WatchType: Closed Script info +Info 47 [00:02:07.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/dependency/FnS.ts 500 undefined WatchType: Closed Script info After request PolledWatches:: @@ -459,7 +459,7 @@ FsWatchesRecursive:: /user/username/projects/myproject/random: {} -Info 48 [16:02:08.000] response: +Info 48 [00:02:08.000] response: { "response": { "definitions": [ @@ -496,10 +496,10 @@ Info 48 [16:02:08.000] response: }, "responseRequired": true } -Info 49 [16:02:12.000] FileWatcher:: Triggered with /user/username/projects/myproject/decls/FnS.d.ts.map 1:: WatchInfo: /user/username/projects/myproject/decls/FnS.d.ts.map 500 undefined WatchType: Closed Script info -Info 50 [16:02:13.000] Scheduled: /user/username/projects/myproject/main/tsconfig.json -Info 51 [16:02:14.000] Scheduled: *ensureProjectForOpenFiles* -Info 52 [16:02:15.000] Elapsed:: *ms FileWatcher:: Triggered with /user/username/projects/myproject/decls/FnS.d.ts.map 1:: WatchInfo: /user/username/projects/myproject/decls/FnS.d.ts.map 500 undefined WatchType: Closed Script info +Info 49 [00:02:12.000] FileWatcher:: Triggered with /user/username/projects/myproject/decls/FnS.d.ts.map 1:: WatchInfo: /user/username/projects/myproject/decls/FnS.d.ts.map 500 undefined WatchType: Closed Script info +Info 50 [00:02:13.000] Scheduled: /user/username/projects/myproject/main/tsconfig.json +Info 51 [00:02:14.000] Scheduled: *ensureProjectForOpenFiles* +Info 52 [00:02:15.000] Elapsed:: *ms FileWatcher:: Triggered with /user/username/projects/myproject/decls/FnS.d.ts.map 1:: WatchInfo: /user/username/projects/myproject/decls/FnS.d.ts.map 500 undefined WatchType: Closed Script info Before running timeout callbacks //// [/user/username/projects/myproject/decls/FnS.d.ts.map] {"version":3,"file":"FnS.d.ts","sourceRoot":"","sources":["../dependency/FnS.ts"],"names":[],"mappings":"AAAA,wBAAgB,GAAG,SAAM;AACzB,wBAAgB,GAAG,SAAM;AACzB,wBAAgB,GAAG,SAAM;AACzB,wBAAgB,GAAG,SAAM;AACzB,wBAAgB,GAAG,SAAM;AACzB,eAAO,MAAM,CAAC,KAAK,CAAC"} @@ -535,38 +535,38 @@ FsWatchesRecursive:: /user/username/projects/myproject/random: {} -Info 53 [16:02:16.000] Running: /user/username/projects/myproject/main/tsconfig.json -Info 54 [16:02:17.000] Starting updateGraphWorker: Project: /user/username/projects/myproject/main/tsconfig.json -Info 55 [16:02:18.000] Finishing updateGraphWorker: Project: /user/username/projects/myproject/main/tsconfig.json Version: 2 structureChanged: false structureIsReused:: Not Elapsed:: *ms -Info 56 [16:02:19.000] Running: *ensureProjectForOpenFiles* -Info 57 [16:02:20.000] Before ensureProjectForOpenFiles: -Info 58 [16:02:21.000] Project '/user/username/projects/myproject/main/tsconfig.json' (Configured) -Info 58 [16:02:22.000] Files (3) - -Info 58 [16:02:23.000] ----------------------------------------------- -Info 58 [16:02:24.000] Project '/user/username/projects/myproject/random/tsconfig.json' (Configured) -Info 58 [16:02:25.000] Files (2) - -Info 58 [16:02:26.000] ----------------------------------------------- -Info 58 [16:02:27.000] Open files: -Info 58 [16:02:28.000] FileName: /user/username/projects/myproject/main/main.ts ProjectRootPath: undefined -Info 58 [16:02:29.000] Projects: /user/username/projects/myproject/main/tsconfig.json -Info 58 [16:02:30.000] FileName: /user/username/projects/myproject/random/random.ts ProjectRootPath: undefined -Info 58 [16:02:31.000] Projects: /user/username/projects/myproject/random/tsconfig.json -Info 58 [16:02:32.000] After ensureProjectForOpenFiles: -Info 59 [16:02:33.000] Project '/user/username/projects/myproject/main/tsconfig.json' (Configured) -Info 59 [16:02:34.000] Files (3) - -Info 59 [16:02:35.000] ----------------------------------------------- -Info 59 [16:02:36.000] Project '/user/username/projects/myproject/random/tsconfig.json' (Configured) -Info 59 [16:02:37.000] Files (2) - -Info 59 [16:02:38.000] ----------------------------------------------- -Info 59 [16:02:39.000] Open files: -Info 59 [16:02:40.000] FileName: /user/username/projects/myproject/main/main.ts ProjectRootPath: undefined -Info 59 [16:02:41.000] Projects: /user/username/projects/myproject/main/tsconfig.json -Info 59 [16:02:42.000] FileName: /user/username/projects/myproject/random/random.ts ProjectRootPath: undefined -Info 59 [16:02:43.000] Projects: /user/username/projects/myproject/random/tsconfig.json +Info 53 [00:02:16.000] Running: /user/username/projects/myproject/main/tsconfig.json +Info 54 [00:02:17.000] Starting updateGraphWorker: Project: /user/username/projects/myproject/main/tsconfig.json +Info 55 [00:02:18.000] Finishing updateGraphWorker: Project: /user/username/projects/myproject/main/tsconfig.json Version: 2 structureChanged: false structureIsReused:: Not Elapsed:: *ms +Info 56 [00:02:19.000] Running: *ensureProjectForOpenFiles* +Info 57 [00:02:20.000] Before ensureProjectForOpenFiles: +Info 58 [00:02:21.000] Project '/user/username/projects/myproject/main/tsconfig.json' (Configured) +Info 58 [00:02:22.000] Files (3) + +Info 58 [00:02:23.000] ----------------------------------------------- +Info 58 [00:02:24.000] Project '/user/username/projects/myproject/random/tsconfig.json' (Configured) +Info 58 [00:02:25.000] Files (2) + +Info 58 [00:02:26.000] ----------------------------------------------- +Info 58 [00:02:27.000] Open files: +Info 58 [00:02:28.000] FileName: /user/username/projects/myproject/main/main.ts ProjectRootPath: undefined +Info 58 [00:02:29.000] Projects: /user/username/projects/myproject/main/tsconfig.json +Info 58 [00:02:30.000] FileName: /user/username/projects/myproject/random/random.ts ProjectRootPath: undefined +Info 58 [00:02:31.000] Projects: /user/username/projects/myproject/random/tsconfig.json +Info 58 [00:02:32.000] After ensureProjectForOpenFiles: +Info 59 [00:02:33.000] Project '/user/username/projects/myproject/main/tsconfig.json' (Configured) +Info 59 [00:02:34.000] Files (3) + +Info 59 [00:02:35.000] ----------------------------------------------- +Info 59 [00:02:36.000] Project '/user/username/projects/myproject/random/tsconfig.json' (Configured) +Info 59 [00:02:37.000] Files (2) + +Info 59 [00:02:38.000] ----------------------------------------------- +Info 59 [00:02:39.000] Open files: +Info 59 [00:02:40.000] FileName: /user/username/projects/myproject/main/main.ts ProjectRootPath: undefined +Info 59 [00:02:41.000] Projects: /user/username/projects/myproject/main/tsconfig.json +Info 59 [00:02:42.000] FileName: /user/username/projects/myproject/random/random.ts ProjectRootPath: undefined +Info 59 [00:02:43.000] Projects: /user/username/projects/myproject/random/tsconfig.json After running timeout callbacks PolledWatches:: @@ -599,7 +599,7 @@ FsWatchesRecursive:: /user/username/projects/myproject/random: {} -Info 59 [16:02:44.000] request: +Info 59 [00:02:44.000] request: { "command": "definitionAndBoundSpan", "arguments": { @@ -674,7 +674,7 @@ FsWatchesRecursive:: /user/username/projects/myproject/random: {} -Info 60 [16:02:45.000] response: +Info 60 [00:02:45.000] response: { "response": { "definitions": [ @@ -711,7 +711,7 @@ Info 60 [16:02:45.000] response: }, "responseRequired": true } -Info 61 [16:02:46.000] request: +Info 61 [00:02:46.000] request: { "command": "definitionAndBoundSpan", "arguments": { @@ -786,7 +786,7 @@ FsWatchesRecursive:: /user/username/projects/myproject/random: {} -Info 62 [16:02:47.000] response: +Info 62 [00:02:47.000] response: { "response": { "definitions": [ @@ -823,7 +823,7 @@ Info 62 [16:02:47.000] response: }, "responseRequired": true } -Info 63 [16:02:48.000] request: +Info 63 [00:02:48.000] request: { "command": "definitionAndBoundSpan", "arguments": { @@ -898,7 +898,7 @@ FsWatchesRecursive:: /user/username/projects/myproject/random: {} -Info 64 [16:02:49.000] response: +Info 64 [00:02:49.000] response: { "response": { "definitions": [ @@ -935,7 +935,7 @@ Info 64 [16:02:49.000] response: }, "responseRequired": true } -Info 65 [16:02:50.000] request: +Info 65 [00:02:50.000] request: { "command": "definitionAndBoundSpan", "arguments": { @@ -1010,7 +1010,7 @@ FsWatchesRecursive:: /user/username/projects/myproject/random: {} -Info 66 [16:02:51.000] response: +Info 66 [00:02:51.000] response: { "response": { "definitions": [ @@ -1047,7 +1047,7 @@ Info 66 [16:02:51.000] response: }, "responseRequired": true } -Info 67 [16:02:52.000] request: +Info 67 [00:02:52.000] request: { "command": "definitionAndBoundSpan", "arguments": { @@ -1122,7 +1122,7 @@ FsWatchesRecursive:: /user/username/projects/myproject/random: {} -Info 68 [16:02:53.000] response: +Info 68 [00:02:53.000] response: { "response": { "definitions": [ 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 bd50e3c3f022c..3bb64b0e7d9c4 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 @@ -1,5 +1,5 @@ -Info 0 [16:01:03.000] Provided types map file "/a/lib/typesMap.json" doesn't exist -Info 1 [16:01:04.000] request: +Info 0 [00:01:03.000] Provided types map file "/a/lib/typesMap.json" doesn't exist +Info 1 [00:01:04.000] request: { "seq": 0, "type": "request", @@ -200,11 +200,11 @@ FsWatches:: FsWatchesRecursive:: -Info 2 [16:01:05.000] Search path: /user/username/projects/myproject/main -Info 3 [16:01:06.000] For info: /user/username/projects/myproject/main/main.ts :: Config file name: /user/username/projects/myproject/main/tsconfig.json -Info 4 [16:01:07.000] Creating configuration project /user/username/projects/myproject/main/tsconfig.json -Info 5 [16:01:08.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/main/tsconfig.json 2000 undefined Project: /user/username/projects/myproject/main/tsconfig.json WatchType: Config file -Info 6 [16:01:09.000] Config: /user/username/projects/myproject/main/tsconfig.json : { +Info 2 [00:01:05.000] Search path: /user/username/projects/myproject/main +Info 3 [00:01:06.000] For info: /user/username/projects/myproject/main/main.ts :: Config file name: /user/username/projects/myproject/main/tsconfig.json +Info 4 [00:01:07.000] Creating configuration project /user/username/projects/myproject/main/tsconfig.json +Info 5 [00:01:08.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/main/tsconfig.json 2000 undefined Project: /user/username/projects/myproject/main/tsconfig.json WatchType: Config file +Info 6 [00:01:09.000] Config: /user/username/projects/myproject/main/tsconfig.json : { "rootNames": [ "/user/username/projects/myproject/main/main.ts" ], @@ -214,21 +214,21 @@ Info 6 [16:01:09.000] Config: /user/username/projects/myproject/main/tsconfig "configFilePath": "/user/username/projects/myproject/main/tsconfig.json" } } -Info 7 [16:01:10.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/main 1 undefined Config: /user/username/projects/myproject/main/tsconfig.json WatchType: Wild card directory -Info 8 [16:01:11.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/main 1 undefined Config: /user/username/projects/myproject/main/tsconfig.json WatchType: Wild card directory -Info 9 [16:01:12.000] Plugins were requested but not running in environment that supports 'require'. Nothing will be loaded -Info 10 [16:01:13.000] Starting updateGraphWorker: Project: /user/username/projects/myproject/main/tsconfig.json -Info 11 [16:01:14.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/decls 1 undefined Project: /user/username/projects/myproject/main/tsconfig.json WatchType: Failed Lookup Locations -Info 12 [16:01:15.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/decls 1 undefined Project: /user/username/projects/myproject/main/tsconfig.json WatchType: Failed Lookup Locations -Info 13 [16:01:16.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/decls/fns.d.ts 500 undefined WatchType: Closed Script info -Info 14 [16:01:17.000] FileWatcher:: Added:: WatchInfo: /a/lib/lib.d.ts 500 undefined WatchType: Closed Script info -Info 15 [16:01:18.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/main/node_modules/@types 1 undefined Project: /user/username/projects/myproject/main/tsconfig.json WatchType: Type roots -Info 16 [16:01:19.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/main/node_modules/@types 1 undefined Project: /user/username/projects/myproject/main/tsconfig.json WatchType: Type roots -Info 17 [16:01:20.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/main/tsconfig.json WatchType: Type roots -Info 18 [16:01:21.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/main/tsconfig.json WatchType: Type roots -Info 19 [16:01:22.000] Finishing updateGraphWorker: Project: /user/username/projects/myproject/main/tsconfig.json Version: 1 structureChanged: true structureIsReused:: Not Elapsed:: *ms -Info 20 [16:01:23.000] Project '/user/username/projects/myproject/main/tsconfig.json' (Configured) -Info 21 [16:01:24.000] Files (3) +Info 7 [00:01:10.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/main 1 undefined Config: /user/username/projects/myproject/main/tsconfig.json WatchType: Wild card directory +Info 8 [00:01:11.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/main 1 undefined Config: /user/username/projects/myproject/main/tsconfig.json WatchType: Wild card directory +Info 9 [00:01:12.000] Plugins were requested but not running in environment that supports 'require'. Nothing will be loaded +Info 10 [00:01:13.000] Starting updateGraphWorker: Project: /user/username/projects/myproject/main/tsconfig.json +Info 11 [00:01:14.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/decls 1 undefined Project: /user/username/projects/myproject/main/tsconfig.json WatchType: Failed Lookup Locations +Info 12 [00:01:15.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/decls 1 undefined Project: /user/username/projects/myproject/main/tsconfig.json WatchType: Failed Lookup Locations +Info 13 [00:01:16.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/decls/fns.d.ts 500 undefined WatchType: Closed Script info +Info 14 [00:01:17.000] FileWatcher:: Added:: WatchInfo: /a/lib/lib.d.ts 500 undefined WatchType: Closed Script info +Info 15 [00:01:18.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/main/node_modules/@types 1 undefined Project: /user/username/projects/myproject/main/tsconfig.json WatchType: Type roots +Info 16 [00:01:19.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/main/node_modules/@types 1 undefined Project: /user/username/projects/myproject/main/tsconfig.json WatchType: Type roots +Info 17 [00:01:20.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/main/tsconfig.json WatchType: Type roots +Info 18 [00:01:21.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/main/tsconfig.json WatchType: Type roots +Info 19 [00:01:22.000] Finishing updateGraphWorker: Project: /user/username/projects/myproject/main/tsconfig.json Version: 1 structureChanged: true structureIsReused:: Not Elapsed:: *ms +Info 20 [00:01:23.000] Project '/user/username/projects/myproject/main/tsconfig.json' (Configured) +Info 21 [00:01:24.000] Files (3) /a/lib/lib.d.ts /user/username/projects/myproject/decls/fns.d.ts /user/username/projects/myproject/main/main.ts @@ -241,16 +241,16 @@ Info 21 [16:01:24.000] Files (3) main.ts Matched by default include pattern '**/*' -Info 22 [16:01:25.000] ----------------------------------------------- -Info 23 [16:01:26.000] Search path: /user/username/projects/myproject/main -Info 24 [16:01:27.000] For info: /user/username/projects/myproject/main/tsconfig.json :: No config files found. -Info 25 [16:01:28.000] Project '/user/username/projects/myproject/main/tsconfig.json' (Configured) -Info 25 [16:01:29.000] Files (3) +Info 22 [00:01:25.000] ----------------------------------------------- +Info 23 [00:01:26.000] Search path: /user/username/projects/myproject/main +Info 24 [00:01:27.000] For info: /user/username/projects/myproject/main/tsconfig.json :: No config files found. +Info 25 [00:01:28.000] Project '/user/username/projects/myproject/main/tsconfig.json' (Configured) +Info 25 [00:01:29.000] Files (3) -Info 25 [16:01:30.000] ----------------------------------------------- -Info 25 [16:01:31.000] Open files: -Info 25 [16:01:32.000] FileName: /user/username/projects/myproject/main/main.ts ProjectRootPath: undefined -Info 25 [16:01:33.000] Projects: /user/username/projects/myproject/main/tsconfig.json +Info 25 [00:01:30.000] ----------------------------------------------- +Info 25 [00:01:31.000] Open files: +Info 25 [00:01:32.000] FileName: /user/username/projects/myproject/main/main.ts ProjectRootPath: undefined +Info 25 [00:01:33.000] Projects: /user/username/projects/myproject/main/tsconfig.json After request PolledWatches:: @@ -273,11 +273,11 @@ FsWatchesRecursive:: /user/username/projects/myproject/decls: {} -Info 25 [16:01:34.000] response: +Info 25 [00:01:34.000] response: { "responseRequired": false } -Info 26 [16:01:35.000] request: +Info 26 [00:01:35.000] request: { "seq": 0, "type": "request", @@ -308,11 +308,11 @@ FsWatchesRecursive:: /user/username/projects/myproject/decls: {} -Info 27 [16:01:36.000] Search path: /user/username/projects/myproject/random -Info 28 [16:01:37.000] For info: /user/username/projects/myproject/random/random.ts :: Config file name: /user/username/projects/myproject/random/tsconfig.json -Info 29 [16:01:38.000] Creating configuration project /user/username/projects/myproject/random/tsconfig.json -Info 30 [16:01:39.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/random/tsconfig.json 2000 undefined Project: /user/username/projects/myproject/random/tsconfig.json WatchType: Config file -Info 31 [16:01:40.000] Config: /user/username/projects/myproject/random/tsconfig.json : { +Info 27 [00:01:36.000] Search path: /user/username/projects/myproject/random +Info 28 [00:01:37.000] For info: /user/username/projects/myproject/random/random.ts :: Config file name: /user/username/projects/myproject/random/tsconfig.json +Info 29 [00:01:38.000] Creating configuration project /user/username/projects/myproject/random/tsconfig.json +Info 30 [00:01:39.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/random/tsconfig.json 2000 undefined Project: /user/username/projects/myproject/random/tsconfig.json WatchType: Config file +Info 31 [00:01:40.000] Config: /user/username/projects/myproject/random/tsconfig.json : { "rootNames": [ "/user/username/projects/myproject/random/random.ts" ], @@ -320,17 +320,17 @@ Info 31 [16:01:40.000] Config: /user/username/projects/myproject/random/tsconf "configFilePath": "/user/username/projects/myproject/random/tsconfig.json" } } -Info 32 [16:01:41.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/random 1 undefined Config: /user/username/projects/myproject/random/tsconfig.json WatchType: Wild card directory -Info 33 [16:01:42.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/random 1 undefined Config: /user/username/projects/myproject/random/tsconfig.json WatchType: Wild card directory -Info 34 [16:01:43.000] Plugins were requested but not running in environment that supports 'require'. Nothing will be loaded -Info 35 [16:01:44.000] Starting updateGraphWorker: Project: /user/username/projects/myproject/random/tsconfig.json -Info 36 [16:01:45.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/random/node_modules/@types 1 undefined Project: /user/username/projects/myproject/random/tsconfig.json WatchType: Type roots -Info 37 [16:01:46.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/random/node_modules/@types 1 undefined Project: /user/username/projects/myproject/random/tsconfig.json WatchType: Type roots -Info 38 [16:01:47.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/random/tsconfig.json WatchType: Type roots -Info 39 [16:01:48.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/random/tsconfig.json WatchType: Type roots -Info 40 [16:01:49.000] Finishing updateGraphWorker: Project: /user/username/projects/myproject/random/tsconfig.json Version: 1 structureChanged: true structureIsReused:: Not Elapsed:: *ms -Info 41 [16:01:50.000] Project '/user/username/projects/myproject/random/tsconfig.json' (Configured) -Info 42 [16:01:51.000] Files (2) +Info 32 [00:01:41.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/random 1 undefined Config: /user/username/projects/myproject/random/tsconfig.json WatchType: Wild card directory +Info 33 [00:01:42.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/random 1 undefined Config: /user/username/projects/myproject/random/tsconfig.json WatchType: Wild card directory +Info 34 [00:01:43.000] Plugins were requested but not running in environment that supports 'require'. Nothing will be loaded +Info 35 [00:01:44.000] Starting updateGraphWorker: Project: /user/username/projects/myproject/random/tsconfig.json +Info 36 [00:01:45.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/random/node_modules/@types 1 undefined Project: /user/username/projects/myproject/random/tsconfig.json WatchType: Type roots +Info 37 [00:01:46.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/random/node_modules/@types 1 undefined Project: /user/username/projects/myproject/random/tsconfig.json WatchType: Type roots +Info 38 [00:01:47.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/random/tsconfig.json WatchType: Type roots +Info 39 [00:01:48.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/random/tsconfig.json WatchType: Type roots +Info 40 [00:01:49.000] Finishing updateGraphWorker: Project: /user/username/projects/myproject/random/tsconfig.json Version: 1 structureChanged: true structureIsReused:: Not Elapsed:: *ms +Info 41 [00:01:50.000] Project '/user/username/projects/myproject/random/tsconfig.json' (Configured) +Info 42 [00:01:51.000] Files (2) /a/lib/lib.d.ts /user/username/projects/myproject/random/random.ts @@ -340,20 +340,20 @@ Info 42 [16:01:51.000] Files (2) random.ts Matched by default include pattern '**/*' -Info 43 [16:01:52.000] ----------------------------------------------- -Info 44 [16:01:53.000] Project '/user/username/projects/myproject/main/tsconfig.json' (Configured) -Info 44 [16:01:54.000] Files (3) +Info 43 [00:01:52.000] ----------------------------------------------- +Info 44 [00:01:53.000] Project '/user/username/projects/myproject/main/tsconfig.json' (Configured) +Info 44 [00:01:54.000] Files (3) -Info 44 [16:01:55.000] ----------------------------------------------- -Info 44 [16:01:56.000] Project '/user/username/projects/myproject/random/tsconfig.json' (Configured) -Info 44 [16:01:57.000] Files (2) +Info 44 [00:01:55.000] ----------------------------------------------- +Info 44 [00:01:56.000] Project '/user/username/projects/myproject/random/tsconfig.json' (Configured) +Info 44 [00:01:57.000] Files (2) -Info 44 [16:01:58.000] ----------------------------------------------- -Info 44 [16:01:59.000] Open files: -Info 44 [16:02:00.000] FileName: /user/username/projects/myproject/main/main.ts ProjectRootPath: undefined -Info 44 [16:02:01.000] Projects: /user/username/projects/myproject/main/tsconfig.json -Info 44 [16:02:02.000] FileName: /user/username/projects/myproject/random/random.ts ProjectRootPath: undefined -Info 44 [16:02:03.000] Projects: /user/username/projects/myproject/random/tsconfig.json +Info 44 [00:01:58.000] ----------------------------------------------- +Info 44 [00:01:59.000] Open files: +Info 44 [00:02:00.000] FileName: /user/username/projects/myproject/main/main.ts ProjectRootPath: undefined +Info 44 [00:02:01.000] Projects: /user/username/projects/myproject/main/tsconfig.json +Info 44 [00:02:02.000] FileName: /user/username/projects/myproject/random/random.ts ProjectRootPath: undefined +Info 44 [00:02:03.000] Projects: /user/username/projects/myproject/random/tsconfig.json After request PolledWatches:: @@ -382,11 +382,11 @@ FsWatchesRecursive:: /user/username/projects/myproject/random: {} -Info 44 [16:02:04.000] response: +Info 44 [00:02:04.000] response: { "responseRequired": false } -Info 45 [16:02:05.000] request: +Info 45 [00:02:05.000] request: { "command": "definitionAndBoundSpan", "arguments": { @@ -425,8 +425,8 @@ FsWatchesRecursive:: /user/username/projects/myproject/random: {} -Info 46 [16:02:06.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/decls/FnS.d.ts.map 500 undefined WatchType: Closed Script info -Info 47 [16:02:07.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/dependency/FnS.ts 500 undefined WatchType: Closed Script info +Info 46 [00:02:06.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/decls/FnS.d.ts.map 500 undefined WatchType: Closed Script info +Info 47 [00:02:07.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/dependency/FnS.ts 500 undefined WatchType: Closed Script info After request PolledWatches:: @@ -459,7 +459,7 @@ FsWatchesRecursive:: /user/username/projects/myproject/random: {} -Info 48 [16:02:08.000] response: +Info 48 [00:02:08.000] response: { "response": { "definitions": [ @@ -496,11 +496,11 @@ Info 48 [16:02:08.000] response: }, "responseRequired": true } -Info 49 [16:02:12.000] FileWatcher:: Triggered with /user/username/projects/myproject/decls/FnS.d.ts.map 1:: WatchInfo: /user/username/projects/myproject/decls/FnS.d.ts.map 500 undefined WatchType: Closed Script info -Info 50 [16:02:13.000] Scheduled: /user/username/projects/myproject/main/tsconfig.json -Info 51 [16:02:14.000] Scheduled: *ensureProjectForOpenFiles* -Info 52 [16:02:15.000] Elapsed:: *ms FileWatcher:: Triggered with /user/username/projects/myproject/decls/FnS.d.ts.map 1:: WatchInfo: /user/username/projects/myproject/decls/FnS.d.ts.map 500 undefined WatchType: Closed Script info -Info 53 [16:02:16.000] request: +Info 49 [00:02:12.000] FileWatcher:: Triggered with /user/username/projects/myproject/decls/FnS.d.ts.map 1:: WatchInfo: /user/username/projects/myproject/decls/FnS.d.ts.map 500 undefined WatchType: Closed Script info +Info 50 [00:02:13.000] Scheduled: /user/username/projects/myproject/main/tsconfig.json +Info 51 [00:02:14.000] Scheduled: *ensureProjectForOpenFiles* +Info 52 [00:02:15.000] Elapsed:: *ms FileWatcher:: Triggered with /user/username/projects/myproject/decls/FnS.d.ts.map 1:: WatchInfo: /user/username/projects/myproject/decls/FnS.d.ts.map 500 undefined WatchType: Closed Script info +Info 53 [00:02:16.000] request: { "command": "definitionAndBoundSpan", "arguments": { @@ -546,8 +546,8 @@ FsWatchesRecursive:: /user/username/projects/myproject/random: {} -Info 54 [16:02:17.000] Starting updateGraphWorker: Project: /user/username/projects/myproject/main/tsconfig.json -Info 55 [16:02:18.000] Finishing updateGraphWorker: Project: /user/username/projects/myproject/main/tsconfig.json Version: 2 structureChanged: false structureIsReused:: Not Elapsed:: *ms +Info 54 [00:02:17.000] Starting updateGraphWorker: Project: /user/username/projects/myproject/main/tsconfig.json +Info 55 [00:02:18.000] Finishing updateGraphWorker: Project: /user/username/projects/myproject/main/tsconfig.json Version: 2 structureChanged: false structureIsReused:: Not Elapsed:: *ms After request PolledWatches:: @@ -580,7 +580,7 @@ FsWatchesRecursive:: /user/username/projects/myproject/random: {} -Info 56 [16:02:19.000] response: +Info 56 [00:02:19.000] response: { "response": { "definitions": [ @@ -617,7 +617,7 @@ Info 56 [16:02:19.000] response: }, "responseRequired": true } -Info 57 [16:02:20.000] request: +Info 57 [00:02:20.000] request: { "command": "definitionAndBoundSpan", "arguments": { @@ -692,7 +692,7 @@ FsWatchesRecursive:: /user/username/projects/myproject/random: {} -Info 58 [16:02:21.000] response: +Info 58 [00:02:21.000] response: { "response": { "definitions": [ @@ -729,7 +729,7 @@ Info 58 [16:02:21.000] response: }, "responseRequired": true } -Info 59 [16:02:22.000] request: +Info 59 [00:02:22.000] request: { "command": "definitionAndBoundSpan", "arguments": { @@ -804,7 +804,7 @@ FsWatchesRecursive:: /user/username/projects/myproject/random: {} -Info 60 [16:02:23.000] response: +Info 60 [00:02:23.000] response: { "response": { "definitions": [ @@ -841,7 +841,7 @@ Info 60 [16:02:23.000] response: }, "responseRequired": true } -Info 61 [16:02:24.000] request: +Info 61 [00:02:24.000] request: { "command": "definitionAndBoundSpan", "arguments": { @@ -916,7 +916,7 @@ FsWatchesRecursive:: /user/username/projects/myproject/random: {} -Info 62 [16:02:25.000] response: +Info 62 [00:02:25.000] response: { "response": { "definitions": [ @@ -953,7 +953,7 @@ Info 62 [16:02:25.000] response: }, "responseRequired": true } -Info 63 [16:02:26.000] request: +Info 63 [00:02:26.000] request: { "command": "definitionAndBoundSpan", "arguments": { @@ -1028,7 +1028,7 @@ FsWatchesRecursive:: /user/username/projects/myproject/random: {} -Info 64 [16:02:27.000] response: +Info 64 [00:02:27.000] response: { "response": { "definitions": [ 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 65862b63576e9..cea109d4c66f2 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 @@ -1,5 +1,5 @@ -Info 0 [16:01:04.000] Provided types map file "/a/lib/typesMap.json" doesn't exist -Info 1 [16:01:05.000] request: +Info 0 [00:01:04.000] Provided types map file "/a/lib/typesMap.json" doesn't exist +Info 1 [00:01:05.000] request: { "seq": 0, "type": "request", @@ -197,11 +197,11 @@ FsWatches:: FsWatchesRecursive:: -Info 2 [16:01:06.000] Search path: /user/username/projects/myproject/main -Info 3 [16:01:07.000] For info: /user/username/projects/myproject/main/main.ts :: Config file name: /user/username/projects/myproject/main/tsconfig.json -Info 4 [16:01:08.000] Creating configuration project /user/username/projects/myproject/main/tsconfig.json -Info 5 [16:01:09.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/main/tsconfig.json 2000 undefined Project: /user/username/projects/myproject/main/tsconfig.json WatchType: Config file -Info 6 [16:01:10.000] Config: /user/username/projects/myproject/main/tsconfig.json : { +Info 2 [00:01:06.000] Search path: /user/username/projects/myproject/main +Info 3 [00:01:07.000] For info: /user/username/projects/myproject/main/main.ts :: Config file name: /user/username/projects/myproject/main/tsconfig.json +Info 4 [00:01:08.000] Creating configuration project /user/username/projects/myproject/main/tsconfig.json +Info 5 [00:01:09.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/main/tsconfig.json 2000 undefined Project: /user/username/projects/myproject/main/tsconfig.json WatchType: Config file +Info 6 [00:01:10.000] Config: /user/username/projects/myproject/main/tsconfig.json : { "rootNames": [ "/user/username/projects/myproject/main/main.ts" ], @@ -211,21 +211,21 @@ Info 6 [16:01:10.000] Config: /user/username/projects/myproject/main/tsconfig "configFilePath": "/user/username/projects/myproject/main/tsconfig.json" } } -Info 7 [16:01:11.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/main 1 undefined Config: /user/username/projects/myproject/main/tsconfig.json WatchType: Wild card directory -Info 8 [16:01:12.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/main 1 undefined Config: /user/username/projects/myproject/main/tsconfig.json WatchType: Wild card directory -Info 9 [16:01:13.000] Plugins were requested but not running in environment that supports 'require'. Nothing will be loaded -Info 10 [16:01:14.000] Starting updateGraphWorker: Project: /user/username/projects/myproject/main/tsconfig.json -Info 11 [16:01:15.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/decls 1 undefined Project: /user/username/projects/myproject/main/tsconfig.json WatchType: Failed Lookup Locations -Info 12 [16:01:16.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/decls 1 undefined Project: /user/username/projects/myproject/main/tsconfig.json WatchType: Failed Lookup Locations -Info 13 [16:01:17.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/decls/fns.d.ts 500 undefined WatchType: Closed Script info -Info 14 [16:01:18.000] FileWatcher:: Added:: WatchInfo: /a/lib/lib.d.ts 500 undefined WatchType: Closed Script info -Info 15 [16:01:19.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/main/node_modules/@types 1 undefined Project: /user/username/projects/myproject/main/tsconfig.json WatchType: Type roots -Info 16 [16:01:20.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/main/node_modules/@types 1 undefined Project: /user/username/projects/myproject/main/tsconfig.json WatchType: Type roots -Info 17 [16:01:21.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/main/tsconfig.json WatchType: Type roots -Info 18 [16:01:22.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/main/tsconfig.json WatchType: Type roots -Info 19 [16:01:23.000] Finishing updateGraphWorker: Project: /user/username/projects/myproject/main/tsconfig.json Version: 1 structureChanged: true structureIsReused:: Not Elapsed:: *ms -Info 20 [16:01:24.000] Project '/user/username/projects/myproject/main/tsconfig.json' (Configured) -Info 21 [16:01:25.000] Files (3) +Info 7 [00:01:11.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/main 1 undefined Config: /user/username/projects/myproject/main/tsconfig.json WatchType: Wild card directory +Info 8 [00:01:12.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/main 1 undefined Config: /user/username/projects/myproject/main/tsconfig.json WatchType: Wild card directory +Info 9 [00:01:13.000] Plugins were requested but not running in environment that supports 'require'. Nothing will be loaded +Info 10 [00:01:14.000] Starting updateGraphWorker: Project: /user/username/projects/myproject/main/tsconfig.json +Info 11 [00:01:15.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/decls 1 undefined Project: /user/username/projects/myproject/main/tsconfig.json WatchType: Failed Lookup Locations +Info 12 [00:01:16.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/decls 1 undefined Project: /user/username/projects/myproject/main/tsconfig.json WatchType: Failed Lookup Locations +Info 13 [00:01:17.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/decls/fns.d.ts 500 undefined WatchType: Closed Script info +Info 14 [00:01:18.000] FileWatcher:: Added:: WatchInfo: /a/lib/lib.d.ts 500 undefined WatchType: Closed Script info +Info 15 [00:01:19.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/main/node_modules/@types 1 undefined Project: /user/username/projects/myproject/main/tsconfig.json WatchType: Type roots +Info 16 [00:01:20.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/main/node_modules/@types 1 undefined Project: /user/username/projects/myproject/main/tsconfig.json WatchType: Type roots +Info 17 [00:01:21.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/main/tsconfig.json WatchType: Type roots +Info 18 [00:01:22.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/main/tsconfig.json WatchType: Type roots +Info 19 [00:01:23.000] Finishing updateGraphWorker: Project: /user/username/projects/myproject/main/tsconfig.json Version: 1 structureChanged: true structureIsReused:: Not Elapsed:: *ms +Info 20 [00:01:24.000] Project '/user/username/projects/myproject/main/tsconfig.json' (Configured) +Info 21 [00:01:25.000] Files (3) /a/lib/lib.d.ts /user/username/projects/myproject/decls/fns.d.ts /user/username/projects/myproject/main/main.ts @@ -238,16 +238,16 @@ Info 21 [16:01:25.000] Files (3) main.ts Matched by default include pattern '**/*' -Info 22 [16:01:26.000] ----------------------------------------------- -Info 23 [16:01:27.000] Search path: /user/username/projects/myproject/main -Info 24 [16:01:28.000] For info: /user/username/projects/myproject/main/tsconfig.json :: No config files found. -Info 25 [16:01:29.000] Project '/user/username/projects/myproject/main/tsconfig.json' (Configured) -Info 25 [16:01:30.000] Files (3) +Info 22 [00:01:26.000] ----------------------------------------------- +Info 23 [00:01:27.000] Search path: /user/username/projects/myproject/main +Info 24 [00:01:28.000] For info: /user/username/projects/myproject/main/tsconfig.json :: No config files found. +Info 25 [00:01:29.000] Project '/user/username/projects/myproject/main/tsconfig.json' (Configured) +Info 25 [00:01:30.000] Files (3) -Info 25 [16:01:31.000] ----------------------------------------------- -Info 25 [16:01:32.000] Open files: -Info 25 [16:01:33.000] FileName: /user/username/projects/myproject/main/main.ts ProjectRootPath: undefined -Info 25 [16:01:34.000] Projects: /user/username/projects/myproject/main/tsconfig.json +Info 25 [00:01:31.000] ----------------------------------------------- +Info 25 [00:01:32.000] Open files: +Info 25 [00:01:33.000] FileName: /user/username/projects/myproject/main/main.ts ProjectRootPath: undefined +Info 25 [00:01:34.000] Projects: /user/username/projects/myproject/main/tsconfig.json After request PolledWatches:: @@ -270,11 +270,11 @@ FsWatchesRecursive:: /user/username/projects/myproject/decls: {} -Info 25 [16:01:35.000] response: +Info 25 [00:01:35.000] response: { "responseRequired": false } -Info 26 [16:01:36.000] request: +Info 26 [00:01:36.000] request: { "seq": 0, "type": "request", @@ -305,11 +305,11 @@ FsWatchesRecursive:: /user/username/projects/myproject/decls: {} -Info 27 [16:01:37.000] Search path: /user/username/projects/myproject/random -Info 28 [16:01:38.000] For info: /user/username/projects/myproject/random/random.ts :: Config file name: /user/username/projects/myproject/random/tsconfig.json -Info 29 [16:01:39.000] Creating configuration project /user/username/projects/myproject/random/tsconfig.json -Info 30 [16:01:40.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/random/tsconfig.json 2000 undefined Project: /user/username/projects/myproject/random/tsconfig.json WatchType: Config file -Info 31 [16:01:41.000] Config: /user/username/projects/myproject/random/tsconfig.json : { +Info 27 [00:01:37.000] Search path: /user/username/projects/myproject/random +Info 28 [00:01:38.000] For info: /user/username/projects/myproject/random/random.ts :: Config file name: /user/username/projects/myproject/random/tsconfig.json +Info 29 [00:01:39.000] Creating configuration project /user/username/projects/myproject/random/tsconfig.json +Info 30 [00:01:40.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/random/tsconfig.json 2000 undefined Project: /user/username/projects/myproject/random/tsconfig.json WatchType: Config file +Info 31 [00:01:41.000] Config: /user/username/projects/myproject/random/tsconfig.json : { "rootNames": [ "/user/username/projects/myproject/random/random.ts" ], @@ -317,17 +317,17 @@ Info 31 [16:01:41.000] Config: /user/username/projects/myproject/random/tsconf "configFilePath": "/user/username/projects/myproject/random/tsconfig.json" } } -Info 32 [16:01:42.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/random 1 undefined Config: /user/username/projects/myproject/random/tsconfig.json WatchType: Wild card directory -Info 33 [16:01:43.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/random 1 undefined Config: /user/username/projects/myproject/random/tsconfig.json WatchType: Wild card directory -Info 34 [16:01:44.000] Plugins were requested but not running in environment that supports 'require'. Nothing will be loaded -Info 35 [16:01:45.000] Starting updateGraphWorker: Project: /user/username/projects/myproject/random/tsconfig.json -Info 36 [16:01:46.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/random/node_modules/@types 1 undefined Project: /user/username/projects/myproject/random/tsconfig.json WatchType: Type roots -Info 37 [16:01:47.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/random/node_modules/@types 1 undefined Project: /user/username/projects/myproject/random/tsconfig.json WatchType: Type roots -Info 38 [16:01:48.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/random/tsconfig.json WatchType: Type roots -Info 39 [16:01:49.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/random/tsconfig.json WatchType: Type roots -Info 40 [16:01:50.000] Finishing updateGraphWorker: Project: /user/username/projects/myproject/random/tsconfig.json Version: 1 structureChanged: true structureIsReused:: Not Elapsed:: *ms -Info 41 [16:01:51.000] Project '/user/username/projects/myproject/random/tsconfig.json' (Configured) -Info 42 [16:01:52.000] Files (2) +Info 32 [00:01:42.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/random 1 undefined Config: /user/username/projects/myproject/random/tsconfig.json WatchType: Wild card directory +Info 33 [00:01:43.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/random 1 undefined Config: /user/username/projects/myproject/random/tsconfig.json WatchType: Wild card directory +Info 34 [00:01:44.000] Plugins were requested but not running in environment that supports 'require'. Nothing will be loaded +Info 35 [00:01:45.000] Starting updateGraphWorker: Project: /user/username/projects/myproject/random/tsconfig.json +Info 36 [00:01:46.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/random/node_modules/@types 1 undefined Project: /user/username/projects/myproject/random/tsconfig.json WatchType: Type roots +Info 37 [00:01:47.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/random/node_modules/@types 1 undefined Project: /user/username/projects/myproject/random/tsconfig.json WatchType: Type roots +Info 38 [00:01:48.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/random/tsconfig.json WatchType: Type roots +Info 39 [00:01:49.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/random/tsconfig.json WatchType: Type roots +Info 40 [00:01:50.000] Finishing updateGraphWorker: Project: /user/username/projects/myproject/random/tsconfig.json Version: 1 structureChanged: true structureIsReused:: Not Elapsed:: *ms +Info 41 [00:01:51.000] Project '/user/username/projects/myproject/random/tsconfig.json' (Configured) +Info 42 [00:01:52.000] Files (2) /a/lib/lib.d.ts /user/username/projects/myproject/random/random.ts @@ -337,20 +337,20 @@ Info 42 [16:01:52.000] Files (2) random.ts Matched by default include pattern '**/*' -Info 43 [16:01:53.000] ----------------------------------------------- -Info 44 [16:01:54.000] Project '/user/username/projects/myproject/main/tsconfig.json' (Configured) -Info 44 [16:01:55.000] Files (3) +Info 43 [00:01:53.000] ----------------------------------------------- +Info 44 [00:01:54.000] Project '/user/username/projects/myproject/main/tsconfig.json' (Configured) +Info 44 [00:01:55.000] Files (3) -Info 44 [16:01:56.000] ----------------------------------------------- -Info 44 [16:01:57.000] Project '/user/username/projects/myproject/random/tsconfig.json' (Configured) -Info 44 [16:01:58.000] Files (2) +Info 44 [00:01:56.000] ----------------------------------------------- +Info 44 [00:01:57.000] Project '/user/username/projects/myproject/random/tsconfig.json' (Configured) +Info 44 [00:01:58.000] Files (2) -Info 44 [16:01:59.000] ----------------------------------------------- -Info 44 [16:02:00.000] Open files: -Info 44 [16:02:01.000] FileName: /user/username/projects/myproject/main/main.ts ProjectRootPath: undefined -Info 44 [16:02:02.000] Projects: /user/username/projects/myproject/main/tsconfig.json -Info 44 [16:02:03.000] FileName: /user/username/projects/myproject/random/random.ts ProjectRootPath: undefined -Info 44 [16:02:04.000] Projects: /user/username/projects/myproject/random/tsconfig.json +Info 44 [00:01:59.000] ----------------------------------------------- +Info 44 [00:02:00.000] Open files: +Info 44 [00:02:01.000] FileName: /user/username/projects/myproject/main/main.ts ProjectRootPath: undefined +Info 44 [00:02:02.000] Projects: /user/username/projects/myproject/main/tsconfig.json +Info 44 [00:02:03.000] FileName: /user/username/projects/myproject/random/random.ts ProjectRootPath: undefined +Info 44 [00:02:04.000] Projects: /user/username/projects/myproject/random/tsconfig.json After request PolledWatches:: @@ -379,11 +379,11 @@ FsWatchesRecursive:: /user/username/projects/myproject/random: {} -Info 44 [16:02:05.000] response: +Info 44 [00:02:05.000] response: { "responseRequired": false } -Info 45 [16:02:06.000] request: +Info 45 [00:02:06.000] request: { "command": "definitionAndBoundSpan", "arguments": { @@ -422,7 +422,7 @@ FsWatchesRecursive:: /user/username/projects/myproject/random: {} -Info 46 [16:02:07.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/decls/FnS.d.ts.map 2000 undefined WatchType: Missing source map file +Info 46 [00:02:07.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/decls/FnS.d.ts.map 2000 undefined WatchType: Missing source map file After request PolledWatches:: @@ -453,7 +453,7 @@ FsWatchesRecursive:: /user/username/projects/myproject/random: {} -Info 47 [16:02:08.000] response: +Info 47 [00:02:08.000] response: { "response": { "definitions": [ @@ -490,14 +490,14 @@ Info 47 [16:02:08.000] response: }, "responseRequired": true } -Info 48 [16:02:11.000] FileWatcher:: Triggered with /user/username/projects/myproject/decls/FnS.d.ts.map 0:: WatchInfo: /user/username/projects/myproject/decls/FnS.d.ts.map 2000 undefined WatchType: Missing source map file -Info 49 [16:02:12.000] Scheduled: /user/username/projects/myproject/main/tsconfig.json -Info 50 [16:02:13.000] Scheduled: *ensureProjectForOpenFiles* -Info 51 [16:02:14.000] FileWatcher:: Close:: WatchInfo: /user/username/projects/myproject/decls/FnS.d.ts.map 2000 undefined WatchType: Missing source map file -Info 52 [16:02:15.000] Elapsed:: *ms FileWatcher:: Triggered with /user/username/projects/myproject/decls/FnS.d.ts.map 0:: WatchInfo: /user/username/projects/myproject/decls/FnS.d.ts.map 2000 undefined WatchType: Missing source map file -Info 53 [16:02:16.000] DirectoryWatcher:: Triggered with /user/username/projects/myproject/decls/FnS.d.ts.map :: WatchInfo: /user/username/projects/myproject/decls 1 undefined Project: /user/username/projects/myproject/main/tsconfig.json WatchType: Failed Lookup Locations -Info 54 [16:02:17.000] Elapsed:: *ms DirectoryWatcher:: Triggered with /user/username/projects/myproject/decls/FnS.d.ts.map :: WatchInfo: /user/username/projects/myproject/decls 1 undefined Project: /user/username/projects/myproject/main/tsconfig.json WatchType: Failed Lookup Locations -Info 55 [16:02:18.000] request: +Info 48 [00:02:11.000] FileWatcher:: Triggered with /user/username/projects/myproject/decls/FnS.d.ts.map 0:: WatchInfo: /user/username/projects/myproject/decls/FnS.d.ts.map 2000 undefined WatchType: Missing source map file +Info 49 [00:02:12.000] Scheduled: /user/username/projects/myproject/main/tsconfig.json +Info 50 [00:02:13.000] Scheduled: *ensureProjectForOpenFiles* +Info 51 [00:02:14.000] FileWatcher:: Close:: WatchInfo: /user/username/projects/myproject/decls/FnS.d.ts.map 2000 undefined WatchType: Missing source map file +Info 52 [00:02:15.000] Elapsed:: *ms FileWatcher:: Triggered with /user/username/projects/myproject/decls/FnS.d.ts.map 0:: WatchInfo: /user/username/projects/myproject/decls/FnS.d.ts.map 2000 undefined WatchType: Missing source map file +Info 53 [00:02:16.000] DirectoryWatcher:: Triggered with /user/username/projects/myproject/decls/FnS.d.ts.map :: WatchInfo: /user/username/projects/myproject/decls 1 undefined Project: /user/username/projects/myproject/main/tsconfig.json WatchType: Failed Lookup Locations +Info 54 [00:02:17.000] Elapsed:: *ms DirectoryWatcher:: Triggered with /user/username/projects/myproject/decls/FnS.d.ts.map :: WatchInfo: /user/username/projects/myproject/decls 1 undefined Project: /user/username/projects/myproject/main/tsconfig.json WatchType: Failed Lookup Locations +Info 55 [00:02:18.000] request: { "command": "definitionAndBoundSpan", "arguments": { @@ -539,10 +539,10 @@ FsWatchesRecursive:: /user/username/projects/myproject/random: {} -Info 56 [16:02:19.000] Starting updateGraphWorker: Project: /user/username/projects/myproject/main/tsconfig.json -Info 57 [16:02:20.000] Finishing updateGraphWorker: Project: /user/username/projects/myproject/main/tsconfig.json Version: 2 structureChanged: false structureIsReused:: Not Elapsed:: *ms -Info 58 [16:02:21.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/decls/FnS.d.ts.map 500 undefined WatchType: Closed Script info -Info 59 [16:02:22.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/dependency/FnS.ts 500 undefined WatchType: Closed Script info +Info 56 [00:02:19.000] Starting updateGraphWorker: Project: /user/username/projects/myproject/main/tsconfig.json +Info 57 [00:02:20.000] Finishing updateGraphWorker: Project: /user/username/projects/myproject/main/tsconfig.json Version: 2 structureChanged: false structureIsReused:: Not Elapsed:: *ms +Info 58 [00:02:21.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/decls/FnS.d.ts.map 500 undefined WatchType: Closed Script info +Info 59 [00:02:22.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/dependency/FnS.ts 500 undefined WatchType: Closed Script info After request PolledWatches:: @@ -575,7 +575,7 @@ FsWatchesRecursive:: /user/username/projects/myproject/random: {} -Info 60 [16:02:23.000] response: +Info 60 [00:02:23.000] response: { "response": { "definitions": [ @@ -612,7 +612,7 @@ Info 60 [16:02:23.000] response: }, "responseRequired": true } -Info 61 [16:02:24.000] request: +Info 61 [00:02:24.000] request: { "command": "definitionAndBoundSpan", "arguments": { @@ -687,7 +687,7 @@ FsWatchesRecursive:: /user/username/projects/myproject/random: {} -Info 62 [16:02:25.000] response: +Info 62 [00:02:25.000] response: { "response": { "definitions": [ @@ -724,7 +724,7 @@ Info 62 [16:02:25.000] response: }, "responseRequired": true } -Info 63 [16:02:26.000] request: +Info 63 [00:02:26.000] request: { "command": "definitionAndBoundSpan", "arguments": { @@ -799,7 +799,7 @@ FsWatchesRecursive:: /user/username/projects/myproject/random: {} -Info 64 [16:02:27.000] response: +Info 64 [00:02:27.000] response: { "response": { "definitions": [ @@ -836,7 +836,7 @@ Info 64 [16:02:27.000] response: }, "responseRequired": true } -Info 65 [16:02:28.000] request: +Info 65 [00:02:28.000] request: { "command": "definitionAndBoundSpan", "arguments": { @@ -911,7 +911,7 @@ FsWatchesRecursive:: /user/username/projects/myproject/random: {} -Info 66 [16:02:29.000] response: +Info 66 [00:02:29.000] response: { "response": { "definitions": [ @@ -948,7 +948,7 @@ Info 66 [16:02:29.000] response: }, "responseRequired": true } -Info 67 [16:02:30.000] request: +Info 67 [00:02:30.000] request: { "command": "definitionAndBoundSpan", "arguments": { @@ -1023,7 +1023,7 @@ FsWatchesRecursive:: /user/username/projects/myproject/random: {} -Info 68 [16:02:31.000] response: +Info 68 [00:02:31.000] response: { "response": { "definitions": [ @@ -1060,7 +1060,7 @@ Info 68 [16:02:31.000] response: }, "responseRequired": true } -Info 69 [16:02:32.000] request: +Info 69 [00:02:32.000] request: { "seq": 0, "type": "request", @@ -1101,18 +1101,18 @@ FsWatchesRecursive:: /user/username/projects/myproject/random: {} -Info 70 [16:02:33.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/random/random.ts 500 undefined WatchType: Closed Script info -Info 71 [16:02:34.000] Project '/user/username/projects/myproject/main/tsconfig.json' (Configured) -Info 71 [16:02:35.000] Files (3) +Info 70 [00:02:33.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/random/random.ts 500 undefined WatchType: Closed Script info +Info 71 [00:02:34.000] Project '/user/username/projects/myproject/main/tsconfig.json' (Configured) +Info 71 [00:02:35.000] Files (3) -Info 71 [16:02:36.000] ----------------------------------------------- -Info 71 [16:02:37.000] Project '/user/username/projects/myproject/random/tsconfig.json' (Configured) -Info 71 [16:02:38.000] Files (2) +Info 71 [00:02:36.000] ----------------------------------------------- +Info 71 [00:02:37.000] Project '/user/username/projects/myproject/random/tsconfig.json' (Configured) +Info 71 [00:02:38.000] Files (2) -Info 71 [16:02:39.000] ----------------------------------------------- -Info 71 [16:02:40.000] Open files: -Info 71 [16:02:41.000] FileName: /user/username/projects/myproject/main/main.ts ProjectRootPath: undefined -Info 71 [16:02:42.000] Projects: /user/username/projects/myproject/main/tsconfig.json +Info 71 [00:02:39.000] ----------------------------------------------- +Info 71 [00:02:40.000] Open files: +Info 71 [00:02:41.000] FileName: /user/username/projects/myproject/main/main.ts ProjectRootPath: undefined +Info 71 [00:02:42.000] Projects: /user/username/projects/myproject/main/tsconfig.json After request PolledWatches:: @@ -1147,11 +1147,11 @@ FsWatchesRecursive:: /user/username/projects/myproject/random: {} -Info 71 [16:02:43.000] response: +Info 71 [00:02:43.000] response: { "responseRequired": false } -Info 72 [16:02:44.000] request: +Info 72 [00:02:44.000] request: { "seq": 0, "type": "request", @@ -1194,22 +1194,22 @@ FsWatchesRecursive:: /user/username/projects/myproject/random: {} -Info 73 [16:02:45.000] FileWatcher:: Close:: WatchInfo: /user/username/projects/myproject/random/random.ts 500 undefined WatchType: Closed Script info -Info 74 [16:02:46.000] Search path: /user/username/projects/myproject/random -Info 75 [16:02:47.000] For info: /user/username/projects/myproject/random/random.ts :: Config file name: /user/username/projects/myproject/random/tsconfig.json -Info 76 [16:02:48.000] Project '/user/username/projects/myproject/main/tsconfig.json' (Configured) -Info 76 [16:02:49.000] Files (3) +Info 73 [00:02:45.000] FileWatcher:: Close:: WatchInfo: /user/username/projects/myproject/random/random.ts 500 undefined WatchType: Closed Script info +Info 74 [00:02:46.000] Search path: /user/username/projects/myproject/random +Info 75 [00:02:47.000] For info: /user/username/projects/myproject/random/random.ts :: Config file name: /user/username/projects/myproject/random/tsconfig.json +Info 76 [00:02:48.000] Project '/user/username/projects/myproject/main/tsconfig.json' (Configured) +Info 76 [00:02:49.000] Files (3) -Info 76 [16:02:50.000] ----------------------------------------------- -Info 76 [16:02:51.000] Project '/user/username/projects/myproject/random/tsconfig.json' (Configured) -Info 76 [16:02:52.000] Files (2) +Info 76 [00:02:50.000] ----------------------------------------------- +Info 76 [00:02:51.000] Project '/user/username/projects/myproject/random/tsconfig.json' (Configured) +Info 76 [00:02:52.000] Files (2) -Info 76 [16:02:53.000] ----------------------------------------------- -Info 76 [16:02:54.000] Open files: -Info 76 [16:02:55.000] FileName: /user/username/projects/myproject/main/main.ts ProjectRootPath: undefined -Info 76 [16:02:56.000] Projects: /user/username/projects/myproject/main/tsconfig.json -Info 76 [16:02:57.000] FileName: /user/username/projects/myproject/random/random.ts ProjectRootPath: undefined -Info 76 [16:02:58.000] Projects: /user/username/projects/myproject/random/tsconfig.json +Info 76 [00:02:53.000] ----------------------------------------------- +Info 76 [00:02:54.000] Open files: +Info 76 [00:02:55.000] FileName: /user/username/projects/myproject/main/main.ts ProjectRootPath: undefined +Info 76 [00:02:56.000] Projects: /user/username/projects/myproject/main/tsconfig.json +Info 76 [00:02:57.000] FileName: /user/username/projects/myproject/random/random.ts ProjectRootPath: undefined +Info 76 [00:02:58.000] Projects: /user/username/projects/myproject/random/tsconfig.json After request PolledWatches:: @@ -1242,11 +1242,11 @@ FsWatchesRecursive:: /user/username/projects/myproject/random: {} -Info 76 [16:02:59.000] response: +Info 76 [00:02:59.000] response: { "responseRequired": false } -Info 77 [16:03:00.000] request: +Info 77 [00:03:00.000] request: { "seq": 0, "type": "request", @@ -1287,18 +1287,18 @@ FsWatchesRecursive:: /user/username/projects/myproject/random: {} -Info 78 [16:03:01.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/main/main.ts 500 undefined WatchType: Closed Script info -Info 79 [16:03:02.000] Project '/user/username/projects/myproject/main/tsconfig.json' (Configured) -Info 79 [16:03:03.000] Files (3) +Info 78 [00:03:01.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/main/main.ts 500 undefined WatchType: Closed Script info +Info 79 [00:03:02.000] Project '/user/username/projects/myproject/main/tsconfig.json' (Configured) +Info 79 [00:03:03.000] Files (3) -Info 79 [16:03:04.000] ----------------------------------------------- -Info 79 [16:03:05.000] Project '/user/username/projects/myproject/random/tsconfig.json' (Configured) -Info 79 [16:03:06.000] Files (2) +Info 79 [00:03:04.000] ----------------------------------------------- +Info 79 [00:03:05.000] Project '/user/username/projects/myproject/random/tsconfig.json' (Configured) +Info 79 [00:03:06.000] Files (2) -Info 79 [16:03:07.000] ----------------------------------------------- -Info 79 [16:03:08.000] Open files: -Info 79 [16:03:09.000] FileName: /user/username/projects/myproject/random/random.ts ProjectRootPath: undefined -Info 79 [16:03:10.000] Projects: /user/username/projects/myproject/random/tsconfig.json +Info 79 [00:03:07.000] ----------------------------------------------- +Info 79 [00:03:08.000] Open files: +Info 79 [00:03:09.000] FileName: /user/username/projects/myproject/random/random.ts ProjectRootPath: undefined +Info 79 [00:03:10.000] Projects: /user/username/projects/myproject/random/tsconfig.json After request PolledWatches:: @@ -1333,11 +1333,11 @@ FsWatchesRecursive:: /user/username/projects/myproject/random: {} -Info 79 [16:03:11.000] response: +Info 79 [00:03:11.000] response: { "responseRequired": false } -Info 80 [16:03:12.000] request: +Info 80 [00:03:12.000] request: { "seq": 0, "type": "request", @@ -1380,16 +1380,16 @@ FsWatchesRecursive:: /user/username/projects/myproject/random: {} -Info 81 [16:03:13.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/random/random.ts 500 undefined WatchType: Closed Script info -Info 82 [16:03:14.000] Project '/user/username/projects/myproject/main/tsconfig.json' (Configured) -Info 82 [16:03:15.000] Files (3) +Info 81 [00:03:13.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/random/random.ts 500 undefined WatchType: Closed Script info +Info 82 [00:03:14.000] Project '/user/username/projects/myproject/main/tsconfig.json' (Configured) +Info 82 [00:03:15.000] Files (3) -Info 82 [16:03:16.000] ----------------------------------------------- -Info 82 [16:03:17.000] Project '/user/username/projects/myproject/random/tsconfig.json' (Configured) -Info 82 [16:03:18.000] Files (2) +Info 82 [00:03:16.000] ----------------------------------------------- +Info 82 [00:03:17.000] Project '/user/username/projects/myproject/random/tsconfig.json' (Configured) +Info 82 [00:03:18.000] Files (2) -Info 82 [16:03:19.000] ----------------------------------------------- -Info 82 [16:03:20.000] Open files: +Info 82 [00:03:19.000] ----------------------------------------------- +Info 82 [00:03:20.000] Open files: After request PolledWatches:: @@ -1426,11 +1426,11 @@ FsWatchesRecursive:: /user/username/projects/myproject/random: {} -Info 82 [16:03:21.000] response: +Info 82 [00:03:21.000] response: { "responseRequired": false } -Info 83 [16:03:22.000] request: +Info 83 [00:03:22.000] request: { "seq": 0, "type": "request", @@ -1475,12 +1475,12 @@ FsWatchesRecursive:: /user/username/projects/myproject/random: {} -Info 84 [16:03:23.000] FileWatcher:: Close:: WatchInfo: /user/username/projects/myproject/random/random.ts 500 undefined WatchType: Closed Script info -Info 85 [16:03:24.000] Search path: /user/username/projects/myproject/random -Info 86 [16:03:25.000] For info: /user/username/projects/myproject/random/random.ts :: Config file name: /user/username/projects/myproject/random/tsconfig.json -Info 87 [16:03:26.000] `remove Project:: -Info 88 [16:03:27.000] Project '/user/username/projects/myproject/main/tsconfig.json' (Configured) -Info 89 [16:03:28.000] Files (3) +Info 84 [00:03:23.000] FileWatcher:: Close:: WatchInfo: /user/username/projects/myproject/random/random.ts 500 undefined WatchType: Closed Script info +Info 85 [00:03:24.000] Search path: /user/username/projects/myproject/random +Info 86 [00:03:25.000] For info: /user/username/projects/myproject/random/random.ts :: Config file name: /user/username/projects/myproject/random/tsconfig.json +Info 87 [00:03:26.000] `remove Project:: +Info 88 [00:03:27.000] Project '/user/username/projects/myproject/main/tsconfig.json' (Configured) +Info 89 [00:03:28.000] Files (3) /a/lib/lib.d.ts /user/username/projects/myproject/decls/fns.d.ts /user/username/projects/myproject/main/main.ts @@ -1493,27 +1493,27 @@ Info 89 [16:03:28.000] Files (3) main.ts Matched by default include pattern '**/*' -Info 90 [16:03:29.000] ----------------------------------------------- -Info 91 [16:03:30.000] DirectoryWatcher:: Close:: WatchInfo: /user/username/projects/myproject/main 1 undefined Config: /user/username/projects/myproject/main/tsconfig.json WatchType: Wild card directory -Info 92 [16:03:31.000] 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 93 [16:03:32.000] FileWatcher:: Close:: WatchInfo: /user/username/projects/myproject/main/tsconfig.json 2000 undefined Project: /user/username/projects/myproject/main/tsconfig.json WatchType: Config file -Info 94 [16:03:33.000] DirectoryWatcher:: Close:: WatchInfo: /user/username/projects/myproject/decls 1 undefined Project: /user/username/projects/myproject/main/tsconfig.json WatchType: Failed Lookup Locations -Info 95 [16:03:34.000] 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 96 [16:03:35.000] 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 97 [16:03:36.000] 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 98 [16:03:37.000] DirectoryWatcher:: Close:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/main/tsconfig.json WatchType: Type roots -Info 99 [16:03:38.000] 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 100 [16:03:39.000] FileWatcher:: Close:: WatchInfo: /user/username/projects/myproject/main/main.ts 500 undefined WatchType: Closed Script info -Info 101 [16:03:40.000] FileWatcher:: Close:: WatchInfo: /user/username/projects/myproject/decls/fns.d.ts 500 undefined WatchType: Closed Script info -Info 102 [16:03:41.000] FileWatcher:: Close:: WatchInfo: /user/username/projects/myproject/decls/FnS.d.ts.map 500 undefined WatchType: Closed Script info -Info 103 [16:03:42.000] FileWatcher:: Close:: WatchInfo: /user/username/projects/myproject/dependency/FnS.ts 500 undefined WatchType: Closed Script info -Info 104 [16:03:43.000] Project '/user/username/projects/myproject/random/tsconfig.json' (Configured) -Info 104 [16:03:44.000] Files (2) - -Info 104 [16:03:45.000] ----------------------------------------------- -Info 104 [16:03:46.000] Open files: -Info 104 [16:03:47.000] FileName: /user/username/projects/myproject/random/random.ts ProjectRootPath: undefined -Info 104 [16:03:48.000] Projects: /user/username/projects/myproject/random/tsconfig.json +Info 90 [00:03:29.000] ----------------------------------------------- +Info 91 [00:03:30.000] DirectoryWatcher:: Close:: WatchInfo: /user/username/projects/myproject/main 1 undefined Config: /user/username/projects/myproject/main/tsconfig.json WatchType: Wild card directory +Info 92 [00:03:31.000] 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 93 [00:03:32.000] FileWatcher:: Close:: WatchInfo: /user/username/projects/myproject/main/tsconfig.json 2000 undefined Project: /user/username/projects/myproject/main/tsconfig.json WatchType: Config file +Info 94 [00:03:33.000] DirectoryWatcher:: Close:: WatchInfo: /user/username/projects/myproject/decls 1 undefined Project: /user/username/projects/myproject/main/tsconfig.json WatchType: Failed Lookup Locations +Info 95 [00:03:34.000] 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 96 [00:03:35.000] 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 97 [00:03:36.000] 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 98 [00:03:37.000] DirectoryWatcher:: Close:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/main/tsconfig.json WatchType: Type roots +Info 99 [00:03:38.000] 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 100 [00:03:39.000] FileWatcher:: Close:: WatchInfo: /user/username/projects/myproject/main/main.ts 500 undefined WatchType: Closed Script info +Info 101 [00:03:40.000] FileWatcher:: Close:: WatchInfo: /user/username/projects/myproject/decls/fns.d.ts 500 undefined WatchType: Closed Script info +Info 102 [00:03:41.000] FileWatcher:: Close:: WatchInfo: /user/username/projects/myproject/decls/FnS.d.ts.map 500 undefined WatchType: Closed Script info +Info 103 [00:03:42.000] FileWatcher:: Close:: WatchInfo: /user/username/projects/myproject/dependency/FnS.ts 500 undefined WatchType: Closed Script info +Info 104 [00:03:43.000] Project '/user/username/projects/myproject/random/tsconfig.json' (Configured) +Info 104 [00:03:44.000] Files (2) + +Info 104 [00:03:45.000] ----------------------------------------------- +Info 104 [00:03:46.000] Open files: +Info 104 [00:03:47.000] FileName: /user/username/projects/myproject/random/random.ts ProjectRootPath: undefined +Info 104 [00:03:48.000] Projects: /user/username/projects/myproject/random/tsconfig.json After request PolledWatches:: @@ -1532,7 +1532,7 @@ FsWatchesRecursive:: /user/username/projects/myproject/random: {} -Info 104 [16:03:49.000] response: +Info 104 [00:03:49.000] response: { "responseRequired": false } \ No newline at end of file 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 8ed48c1d00b1a..5adcd4e6463b1 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 @@ -1,5 +1,5 @@ -Info 0 [16:01:03.000] Provided types map file "/a/lib/typesMap.json" doesn't exist -Info 1 [16:01:04.000] request: +Info 0 [00:01:03.000] Provided types map file "/a/lib/typesMap.json" doesn't exist +Info 1 [00:01:04.000] request: { "seq": 0, "type": "request", @@ -200,11 +200,11 @@ FsWatches:: FsWatchesRecursive:: -Info 2 [16:01:05.000] Search path: /user/username/projects/myproject/main -Info 3 [16:01:06.000] For info: /user/username/projects/myproject/main/main.ts :: Config file name: /user/username/projects/myproject/main/tsconfig.json -Info 4 [16:01:07.000] Creating configuration project /user/username/projects/myproject/main/tsconfig.json -Info 5 [16:01:08.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/main/tsconfig.json 2000 undefined Project: /user/username/projects/myproject/main/tsconfig.json WatchType: Config file -Info 6 [16:01:09.000] Config: /user/username/projects/myproject/main/tsconfig.json : { +Info 2 [00:01:05.000] Search path: /user/username/projects/myproject/main +Info 3 [00:01:06.000] For info: /user/username/projects/myproject/main/main.ts :: Config file name: /user/username/projects/myproject/main/tsconfig.json +Info 4 [00:01:07.000] Creating configuration project /user/username/projects/myproject/main/tsconfig.json +Info 5 [00:01:08.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/main/tsconfig.json 2000 undefined Project: /user/username/projects/myproject/main/tsconfig.json WatchType: Config file +Info 6 [00:01:09.000] Config: /user/username/projects/myproject/main/tsconfig.json : { "rootNames": [ "/user/username/projects/myproject/main/main.ts" ], @@ -214,21 +214,21 @@ Info 6 [16:01:09.000] Config: /user/username/projects/myproject/main/tsconfig "configFilePath": "/user/username/projects/myproject/main/tsconfig.json" } } -Info 7 [16:01:10.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/main 1 undefined Config: /user/username/projects/myproject/main/tsconfig.json WatchType: Wild card directory -Info 8 [16:01:11.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/main 1 undefined Config: /user/username/projects/myproject/main/tsconfig.json WatchType: Wild card directory -Info 9 [16:01:12.000] Plugins were requested but not running in environment that supports 'require'. Nothing will be loaded -Info 10 [16:01:13.000] Starting updateGraphWorker: Project: /user/username/projects/myproject/main/tsconfig.json -Info 11 [16:01:14.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/decls 1 undefined Project: /user/username/projects/myproject/main/tsconfig.json WatchType: Failed Lookup Locations -Info 12 [16:01:15.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/decls 1 undefined Project: /user/username/projects/myproject/main/tsconfig.json WatchType: Failed Lookup Locations -Info 13 [16:01:16.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/decls/fns.d.ts 500 undefined WatchType: Closed Script info -Info 14 [16:01:17.000] FileWatcher:: Added:: WatchInfo: /a/lib/lib.d.ts 500 undefined WatchType: Closed Script info -Info 15 [16:01:18.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/main/node_modules/@types 1 undefined Project: /user/username/projects/myproject/main/tsconfig.json WatchType: Type roots -Info 16 [16:01:19.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/main/node_modules/@types 1 undefined Project: /user/username/projects/myproject/main/tsconfig.json WatchType: Type roots -Info 17 [16:01:20.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/main/tsconfig.json WatchType: Type roots -Info 18 [16:01:21.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/main/tsconfig.json WatchType: Type roots -Info 19 [16:01:22.000] Finishing updateGraphWorker: Project: /user/username/projects/myproject/main/tsconfig.json Version: 1 structureChanged: true structureIsReused:: Not Elapsed:: *ms -Info 20 [16:01:23.000] Project '/user/username/projects/myproject/main/tsconfig.json' (Configured) -Info 21 [16:01:24.000] Files (3) +Info 7 [00:01:10.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/main 1 undefined Config: /user/username/projects/myproject/main/tsconfig.json WatchType: Wild card directory +Info 8 [00:01:11.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/main 1 undefined Config: /user/username/projects/myproject/main/tsconfig.json WatchType: Wild card directory +Info 9 [00:01:12.000] Plugins were requested but not running in environment that supports 'require'. Nothing will be loaded +Info 10 [00:01:13.000] Starting updateGraphWorker: Project: /user/username/projects/myproject/main/tsconfig.json +Info 11 [00:01:14.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/decls 1 undefined Project: /user/username/projects/myproject/main/tsconfig.json WatchType: Failed Lookup Locations +Info 12 [00:01:15.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/decls 1 undefined Project: /user/username/projects/myproject/main/tsconfig.json WatchType: Failed Lookup Locations +Info 13 [00:01:16.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/decls/fns.d.ts 500 undefined WatchType: Closed Script info +Info 14 [00:01:17.000] FileWatcher:: Added:: WatchInfo: /a/lib/lib.d.ts 500 undefined WatchType: Closed Script info +Info 15 [00:01:18.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/main/node_modules/@types 1 undefined Project: /user/username/projects/myproject/main/tsconfig.json WatchType: Type roots +Info 16 [00:01:19.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/main/node_modules/@types 1 undefined Project: /user/username/projects/myproject/main/tsconfig.json WatchType: Type roots +Info 17 [00:01:20.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/main/tsconfig.json WatchType: Type roots +Info 18 [00:01:21.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/main/tsconfig.json WatchType: Type roots +Info 19 [00:01:22.000] Finishing updateGraphWorker: Project: /user/username/projects/myproject/main/tsconfig.json Version: 1 structureChanged: true structureIsReused:: Not Elapsed:: *ms +Info 20 [00:01:23.000] Project '/user/username/projects/myproject/main/tsconfig.json' (Configured) +Info 21 [00:01:24.000] Files (3) /a/lib/lib.d.ts /user/username/projects/myproject/decls/fns.d.ts /user/username/projects/myproject/main/main.ts @@ -241,16 +241,16 @@ Info 21 [16:01:24.000] Files (3) main.ts Matched by default include pattern '**/*' -Info 22 [16:01:25.000] ----------------------------------------------- -Info 23 [16:01:26.000] Search path: /user/username/projects/myproject/main -Info 24 [16:01:27.000] For info: /user/username/projects/myproject/main/tsconfig.json :: No config files found. -Info 25 [16:01:28.000] Project '/user/username/projects/myproject/main/tsconfig.json' (Configured) -Info 25 [16:01:29.000] Files (3) +Info 22 [00:01:25.000] ----------------------------------------------- +Info 23 [00:01:26.000] Search path: /user/username/projects/myproject/main +Info 24 [00:01:27.000] For info: /user/username/projects/myproject/main/tsconfig.json :: No config files found. +Info 25 [00:01:28.000] Project '/user/username/projects/myproject/main/tsconfig.json' (Configured) +Info 25 [00:01:29.000] Files (3) -Info 25 [16:01:30.000] ----------------------------------------------- -Info 25 [16:01:31.000] Open files: -Info 25 [16:01:32.000] FileName: /user/username/projects/myproject/main/main.ts ProjectRootPath: undefined -Info 25 [16:01:33.000] Projects: /user/username/projects/myproject/main/tsconfig.json +Info 25 [00:01:30.000] ----------------------------------------------- +Info 25 [00:01:31.000] Open files: +Info 25 [00:01:32.000] FileName: /user/username/projects/myproject/main/main.ts ProjectRootPath: undefined +Info 25 [00:01:33.000] Projects: /user/username/projects/myproject/main/tsconfig.json After request PolledWatches:: @@ -273,11 +273,11 @@ FsWatchesRecursive:: /user/username/projects/myproject/decls: {} -Info 25 [16:01:34.000] response: +Info 25 [00:01:34.000] response: { "responseRequired": false } -Info 26 [16:01:35.000] request: +Info 26 [00:01:35.000] request: { "seq": 0, "type": "request", @@ -308,11 +308,11 @@ FsWatchesRecursive:: /user/username/projects/myproject/decls: {} -Info 27 [16:01:36.000] Search path: /user/username/projects/myproject/random -Info 28 [16:01:37.000] For info: /user/username/projects/myproject/random/random.ts :: Config file name: /user/username/projects/myproject/random/tsconfig.json -Info 29 [16:01:38.000] Creating configuration project /user/username/projects/myproject/random/tsconfig.json -Info 30 [16:01:39.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/random/tsconfig.json 2000 undefined Project: /user/username/projects/myproject/random/tsconfig.json WatchType: Config file -Info 31 [16:01:40.000] Config: /user/username/projects/myproject/random/tsconfig.json : { +Info 27 [00:01:36.000] Search path: /user/username/projects/myproject/random +Info 28 [00:01:37.000] For info: /user/username/projects/myproject/random/random.ts :: Config file name: /user/username/projects/myproject/random/tsconfig.json +Info 29 [00:01:38.000] Creating configuration project /user/username/projects/myproject/random/tsconfig.json +Info 30 [00:01:39.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/random/tsconfig.json 2000 undefined Project: /user/username/projects/myproject/random/tsconfig.json WatchType: Config file +Info 31 [00:01:40.000] Config: /user/username/projects/myproject/random/tsconfig.json : { "rootNames": [ "/user/username/projects/myproject/random/random.ts" ], @@ -320,17 +320,17 @@ Info 31 [16:01:40.000] Config: /user/username/projects/myproject/random/tsconf "configFilePath": "/user/username/projects/myproject/random/tsconfig.json" } } -Info 32 [16:01:41.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/random 1 undefined Config: /user/username/projects/myproject/random/tsconfig.json WatchType: Wild card directory -Info 33 [16:01:42.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/random 1 undefined Config: /user/username/projects/myproject/random/tsconfig.json WatchType: Wild card directory -Info 34 [16:01:43.000] Plugins were requested but not running in environment that supports 'require'. Nothing will be loaded -Info 35 [16:01:44.000] Starting updateGraphWorker: Project: /user/username/projects/myproject/random/tsconfig.json -Info 36 [16:01:45.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/random/node_modules/@types 1 undefined Project: /user/username/projects/myproject/random/tsconfig.json WatchType: Type roots -Info 37 [16:01:46.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/random/node_modules/@types 1 undefined Project: /user/username/projects/myproject/random/tsconfig.json WatchType: Type roots -Info 38 [16:01:47.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/random/tsconfig.json WatchType: Type roots -Info 39 [16:01:48.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/random/tsconfig.json WatchType: Type roots -Info 40 [16:01:49.000] Finishing updateGraphWorker: Project: /user/username/projects/myproject/random/tsconfig.json Version: 1 structureChanged: true structureIsReused:: Not Elapsed:: *ms -Info 41 [16:01:50.000] Project '/user/username/projects/myproject/random/tsconfig.json' (Configured) -Info 42 [16:01:51.000] Files (2) +Info 32 [00:01:41.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/random 1 undefined Config: /user/username/projects/myproject/random/tsconfig.json WatchType: Wild card directory +Info 33 [00:01:42.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/random 1 undefined Config: /user/username/projects/myproject/random/tsconfig.json WatchType: Wild card directory +Info 34 [00:01:43.000] Plugins were requested but not running in environment that supports 'require'. Nothing will be loaded +Info 35 [00:01:44.000] Starting updateGraphWorker: Project: /user/username/projects/myproject/random/tsconfig.json +Info 36 [00:01:45.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/random/node_modules/@types 1 undefined Project: /user/username/projects/myproject/random/tsconfig.json WatchType: Type roots +Info 37 [00:01:46.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/random/node_modules/@types 1 undefined Project: /user/username/projects/myproject/random/tsconfig.json WatchType: Type roots +Info 38 [00:01:47.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/random/tsconfig.json WatchType: Type roots +Info 39 [00:01:48.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/random/tsconfig.json WatchType: Type roots +Info 40 [00:01:49.000] Finishing updateGraphWorker: Project: /user/username/projects/myproject/random/tsconfig.json Version: 1 structureChanged: true structureIsReused:: Not Elapsed:: *ms +Info 41 [00:01:50.000] Project '/user/username/projects/myproject/random/tsconfig.json' (Configured) +Info 42 [00:01:51.000] Files (2) /a/lib/lib.d.ts /user/username/projects/myproject/random/random.ts @@ -340,20 +340,20 @@ Info 42 [16:01:51.000] Files (2) random.ts Matched by default include pattern '**/*' -Info 43 [16:01:52.000] ----------------------------------------------- -Info 44 [16:01:53.000] Project '/user/username/projects/myproject/main/tsconfig.json' (Configured) -Info 44 [16:01:54.000] Files (3) +Info 43 [00:01:52.000] ----------------------------------------------- +Info 44 [00:01:53.000] Project '/user/username/projects/myproject/main/tsconfig.json' (Configured) +Info 44 [00:01:54.000] Files (3) -Info 44 [16:01:55.000] ----------------------------------------------- -Info 44 [16:01:56.000] Project '/user/username/projects/myproject/random/tsconfig.json' (Configured) -Info 44 [16:01:57.000] Files (2) +Info 44 [00:01:55.000] ----------------------------------------------- +Info 44 [00:01:56.000] Project '/user/username/projects/myproject/random/tsconfig.json' (Configured) +Info 44 [00:01:57.000] Files (2) -Info 44 [16:01:58.000] ----------------------------------------------- -Info 44 [16:01:59.000] Open files: -Info 44 [16:02:00.000] FileName: /user/username/projects/myproject/main/main.ts ProjectRootPath: undefined -Info 44 [16:02:01.000] Projects: /user/username/projects/myproject/main/tsconfig.json -Info 44 [16:02:02.000] FileName: /user/username/projects/myproject/random/random.ts ProjectRootPath: undefined -Info 44 [16:02:03.000] Projects: /user/username/projects/myproject/random/tsconfig.json +Info 44 [00:01:58.000] ----------------------------------------------- +Info 44 [00:01:59.000] Open files: +Info 44 [00:02:00.000] FileName: /user/username/projects/myproject/main/main.ts ProjectRootPath: undefined +Info 44 [00:02:01.000] Projects: /user/username/projects/myproject/main/tsconfig.json +Info 44 [00:02:02.000] FileName: /user/username/projects/myproject/random/random.ts ProjectRootPath: undefined +Info 44 [00:02:03.000] Projects: /user/username/projects/myproject/random/tsconfig.json After request PolledWatches:: @@ -382,11 +382,11 @@ FsWatchesRecursive:: /user/username/projects/myproject/random: {} -Info 44 [16:02:04.000] response: +Info 44 [00:02:04.000] response: { "responseRequired": false } -Info 45 [16:02:05.000] request: +Info 45 [00:02:05.000] request: { "command": "definitionAndBoundSpan", "arguments": { @@ -425,8 +425,8 @@ FsWatchesRecursive:: /user/username/projects/myproject/random: {} -Info 46 [16:02:06.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/decls/FnS.d.ts.map 500 undefined WatchType: Closed Script info -Info 47 [16:02:07.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/dependency/FnS.ts 500 undefined WatchType: Closed Script info +Info 46 [00:02:06.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/decls/FnS.d.ts.map 500 undefined WatchType: Closed Script info +Info 47 [00:02:07.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/dependency/FnS.ts 500 undefined WatchType: Closed Script info After request PolledWatches:: @@ -459,7 +459,7 @@ FsWatchesRecursive:: /user/username/projects/myproject/random: {} -Info 48 [16:02:08.000] response: +Info 48 [00:02:08.000] response: { "response": { "definitions": [ @@ -496,14 +496,14 @@ Info 48 [16:02:08.000] response: }, "responseRequired": true } -Info 49 [16:02:10.000] FileWatcher:: Triggered with /user/username/projects/myproject/decls/FnS.d.ts.map 2:: WatchInfo: /user/username/projects/myproject/decls/FnS.d.ts.map 500 undefined WatchType: Closed Script info -Info 50 [16:02:11.000] FileWatcher:: Close:: WatchInfo: /user/username/projects/myproject/decls/FnS.d.ts.map 500 undefined WatchType: Closed Script info -Info 51 [16:02:12.000] Scheduled: /user/username/projects/myproject/main/tsconfig.json -Info 52 [16:02:13.000] Scheduled: *ensureProjectForOpenFiles* -Info 53 [16:02:14.000] Elapsed:: *ms FileWatcher:: Triggered with /user/username/projects/myproject/decls/FnS.d.ts.map 2:: WatchInfo: /user/username/projects/myproject/decls/FnS.d.ts.map 500 undefined WatchType: Closed Script info -Info 54 [16:02:15.000] DirectoryWatcher:: Triggered with /user/username/projects/myproject/decls/FnS.d.ts.map :: WatchInfo: /user/username/projects/myproject/decls 1 undefined Project: /user/username/projects/myproject/main/tsconfig.json WatchType: Failed Lookup Locations -Info 55 [16:02:16.000] Elapsed:: *ms DirectoryWatcher:: Triggered with /user/username/projects/myproject/decls/FnS.d.ts.map :: WatchInfo: /user/username/projects/myproject/decls 1 undefined Project: /user/username/projects/myproject/main/tsconfig.json WatchType: Failed Lookup Locations -Info 56 [16:02:17.000] request: +Info 49 [00:02:10.000] FileWatcher:: Triggered with /user/username/projects/myproject/decls/FnS.d.ts.map 2:: WatchInfo: /user/username/projects/myproject/decls/FnS.d.ts.map 500 undefined WatchType: Closed Script info +Info 50 [00:02:11.000] FileWatcher:: Close:: WatchInfo: /user/username/projects/myproject/decls/FnS.d.ts.map 500 undefined WatchType: Closed Script info +Info 51 [00:02:12.000] Scheduled: /user/username/projects/myproject/main/tsconfig.json +Info 52 [00:02:13.000] Scheduled: *ensureProjectForOpenFiles* +Info 53 [00:02:14.000] Elapsed:: *ms FileWatcher:: Triggered with /user/username/projects/myproject/decls/FnS.d.ts.map 2:: WatchInfo: /user/username/projects/myproject/decls/FnS.d.ts.map 500 undefined WatchType: Closed Script info +Info 54 [00:02:15.000] DirectoryWatcher:: Triggered with /user/username/projects/myproject/decls/FnS.d.ts.map :: WatchInfo: /user/username/projects/myproject/decls 1 undefined Project: /user/username/projects/myproject/main/tsconfig.json WatchType: Failed Lookup Locations +Info 55 [00:02:16.000] Elapsed:: *ms DirectoryWatcher:: Triggered with /user/username/projects/myproject/decls/FnS.d.ts.map :: WatchInfo: /user/username/projects/myproject/decls 1 undefined Project: /user/username/projects/myproject/main/tsconfig.json WatchType: Failed Lookup Locations +Info 56 [00:02:17.000] request: { "command": "definitionAndBoundSpan", "arguments": { @@ -545,9 +545,9 @@ FsWatchesRecursive:: /user/username/projects/myproject/random: {} -Info 57 [16:02:18.000] Starting updateGraphWorker: Project: /user/username/projects/myproject/main/tsconfig.json -Info 58 [16:02:19.000] Finishing updateGraphWorker: Project: /user/username/projects/myproject/main/tsconfig.json Version: 2 structureChanged: false structureIsReused:: Not Elapsed:: *ms -Info 59 [16:02:20.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/decls/FnS.d.ts.map 2000 undefined WatchType: Missing source map file +Info 57 [00:02:18.000] Starting updateGraphWorker: Project: /user/username/projects/myproject/main/tsconfig.json +Info 58 [00:02:19.000] Finishing updateGraphWorker: Project: /user/username/projects/myproject/main/tsconfig.json Version: 2 structureChanged: false structureIsReused:: Not Elapsed:: *ms +Info 59 [00:02:20.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/decls/FnS.d.ts.map 2000 undefined WatchType: Missing source map file After request PolledWatches:: @@ -580,7 +580,7 @@ FsWatchesRecursive:: /user/username/projects/myproject/random: {} -Info 60 [16:02:21.000] response: +Info 60 [00:02:21.000] response: { "response": { "definitions": [ @@ -617,7 +617,7 @@ Info 60 [16:02:21.000] response: }, "responseRequired": true } -Info 61 [16:02:22.000] request: +Info 61 [00:02:22.000] request: { "command": "definitionAndBoundSpan", "arguments": { @@ -692,7 +692,7 @@ FsWatchesRecursive:: /user/username/projects/myproject/random: {} -Info 62 [16:02:23.000] response: +Info 62 [00:02:23.000] response: { "response": { "definitions": [ @@ -729,7 +729,7 @@ Info 62 [16:02:23.000] response: }, "responseRequired": true } -Info 63 [16:02:24.000] request: +Info 63 [00:02:24.000] request: { "command": "definitionAndBoundSpan", "arguments": { @@ -804,7 +804,7 @@ FsWatchesRecursive:: /user/username/projects/myproject/random: {} -Info 64 [16:02:25.000] response: +Info 64 [00:02:25.000] response: { "response": { "definitions": [ @@ -841,7 +841,7 @@ Info 64 [16:02:25.000] response: }, "responseRequired": true } -Info 65 [16:02:26.000] request: +Info 65 [00:02:26.000] request: { "command": "definitionAndBoundSpan", "arguments": { @@ -916,7 +916,7 @@ FsWatchesRecursive:: /user/username/projects/myproject/random: {} -Info 66 [16:02:27.000] response: +Info 66 [00:02:27.000] response: { "response": { "definitions": [ @@ -953,7 +953,7 @@ Info 66 [16:02:27.000] response: }, "responseRequired": true } -Info 67 [16:02:28.000] request: +Info 67 [00:02:28.000] request: { "command": "definitionAndBoundSpan", "arguments": { @@ -1028,7 +1028,7 @@ FsWatchesRecursive:: /user/username/projects/myproject/random: {} -Info 68 [16:02:29.000] response: +Info 68 [00:02:29.000] response: { "response": { "definitions": [ @@ -1065,7 +1065,7 @@ Info 68 [16:02:29.000] response: }, "responseRequired": true } -Info 69 [16:02:30.000] request: +Info 69 [00:02:30.000] request: { "seq": 0, "type": "request", @@ -1106,18 +1106,18 @@ FsWatchesRecursive:: /user/username/projects/myproject/random: {} -Info 70 [16:02:31.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/random/random.ts 500 undefined WatchType: Closed Script info -Info 71 [16:02:32.000] Project '/user/username/projects/myproject/main/tsconfig.json' (Configured) -Info 71 [16:02:33.000] Files (3) +Info 70 [00:02:31.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/random/random.ts 500 undefined WatchType: Closed Script info +Info 71 [00:02:32.000] Project '/user/username/projects/myproject/main/tsconfig.json' (Configured) +Info 71 [00:02:33.000] Files (3) -Info 71 [16:02:34.000] ----------------------------------------------- -Info 71 [16:02:35.000] Project '/user/username/projects/myproject/random/tsconfig.json' (Configured) -Info 71 [16:02:36.000] Files (2) +Info 71 [00:02:34.000] ----------------------------------------------- +Info 71 [00:02:35.000] Project '/user/username/projects/myproject/random/tsconfig.json' (Configured) +Info 71 [00:02:36.000] Files (2) -Info 71 [16:02:37.000] ----------------------------------------------- -Info 71 [16:02:38.000] Open files: -Info 71 [16:02:39.000] FileName: /user/username/projects/myproject/main/main.ts ProjectRootPath: undefined -Info 71 [16:02:40.000] Projects: /user/username/projects/myproject/main/tsconfig.json +Info 71 [00:02:37.000] ----------------------------------------------- +Info 71 [00:02:38.000] Open files: +Info 71 [00:02:39.000] FileName: /user/username/projects/myproject/main/main.ts ProjectRootPath: undefined +Info 71 [00:02:40.000] Projects: /user/username/projects/myproject/main/tsconfig.json After request PolledWatches:: @@ -1152,11 +1152,11 @@ FsWatchesRecursive:: /user/username/projects/myproject/random: {} -Info 71 [16:02:41.000] response: +Info 71 [00:02:41.000] response: { "responseRequired": false } -Info 72 [16:02:42.000] request: +Info 72 [00:02:42.000] request: { "seq": 0, "type": "request", @@ -1199,23 +1199,23 @@ FsWatchesRecursive:: /user/username/projects/myproject/random: {} -Info 73 [16:02:43.000] FileWatcher:: Close:: WatchInfo: /user/username/projects/myproject/random/random.ts 500 undefined WatchType: Closed Script info -Info 74 [16:02:44.000] Search path: /user/username/projects/myproject/random -Info 75 [16:02:45.000] For info: /user/username/projects/myproject/random/random.ts :: Config file name: /user/username/projects/myproject/random/tsconfig.json -Info 76 [16:02:46.000] FileWatcher:: Close:: WatchInfo: /user/username/projects/myproject/dependency/FnS.ts 500 undefined WatchType: Closed Script info -Info 77 [16:02:47.000] Project '/user/username/projects/myproject/main/tsconfig.json' (Configured) -Info 77 [16:02:48.000] Files (3) +Info 73 [00:02:43.000] FileWatcher:: Close:: WatchInfo: /user/username/projects/myproject/random/random.ts 500 undefined WatchType: Closed Script info +Info 74 [00:02:44.000] Search path: /user/username/projects/myproject/random +Info 75 [00:02:45.000] For info: /user/username/projects/myproject/random/random.ts :: Config file name: /user/username/projects/myproject/random/tsconfig.json +Info 76 [00:02:46.000] FileWatcher:: Close:: WatchInfo: /user/username/projects/myproject/dependency/FnS.ts 500 undefined WatchType: Closed Script info +Info 77 [00:02:47.000] Project '/user/username/projects/myproject/main/tsconfig.json' (Configured) +Info 77 [00:02:48.000] Files (3) -Info 77 [16:02:49.000] ----------------------------------------------- -Info 77 [16:02:50.000] Project '/user/username/projects/myproject/random/tsconfig.json' (Configured) -Info 77 [16:02:51.000] Files (2) +Info 77 [00:02:49.000] ----------------------------------------------- +Info 77 [00:02:50.000] Project '/user/username/projects/myproject/random/tsconfig.json' (Configured) +Info 77 [00:02:51.000] Files (2) -Info 77 [16:02:52.000] ----------------------------------------------- -Info 77 [16:02:53.000] Open files: -Info 77 [16:02:54.000] FileName: /user/username/projects/myproject/main/main.ts ProjectRootPath: undefined -Info 77 [16:02:55.000] Projects: /user/username/projects/myproject/main/tsconfig.json -Info 77 [16:02:56.000] FileName: /user/username/projects/myproject/random/random.ts ProjectRootPath: undefined -Info 77 [16:02:57.000] Projects: /user/username/projects/myproject/random/tsconfig.json +Info 77 [00:02:52.000] ----------------------------------------------- +Info 77 [00:02:53.000] Open files: +Info 77 [00:02:54.000] FileName: /user/username/projects/myproject/main/main.ts ProjectRootPath: undefined +Info 77 [00:02:55.000] Projects: /user/username/projects/myproject/main/tsconfig.json +Info 77 [00:02:56.000] FileName: /user/username/projects/myproject/random/random.ts ProjectRootPath: undefined +Info 77 [00:02:57.000] Projects: /user/username/projects/myproject/random/tsconfig.json After request PolledWatches:: @@ -1246,11 +1246,11 @@ FsWatchesRecursive:: /user/username/projects/myproject/random: {} -Info 77 [16:02:58.000] response: +Info 77 [00:02:58.000] response: { "responseRequired": false } -Info 78 [16:02:59.000] request: +Info 78 [00:02:59.000] request: { "seq": 0, "type": "request", @@ -1289,18 +1289,18 @@ FsWatchesRecursive:: /user/username/projects/myproject/random: {} -Info 79 [16:03:00.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/main/main.ts 500 undefined WatchType: Closed Script info -Info 80 [16:03:01.000] Project '/user/username/projects/myproject/main/tsconfig.json' (Configured) -Info 80 [16:03:02.000] Files (3) +Info 79 [00:03:00.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/main/main.ts 500 undefined WatchType: Closed Script info +Info 80 [00:03:01.000] Project '/user/username/projects/myproject/main/tsconfig.json' (Configured) +Info 80 [00:03:02.000] Files (3) -Info 80 [16:03:03.000] ----------------------------------------------- -Info 80 [16:03:04.000] Project '/user/username/projects/myproject/random/tsconfig.json' (Configured) -Info 80 [16:03:05.000] Files (2) +Info 80 [00:03:03.000] ----------------------------------------------- +Info 80 [00:03:04.000] Project '/user/username/projects/myproject/random/tsconfig.json' (Configured) +Info 80 [00:03:05.000] Files (2) -Info 80 [16:03:06.000] ----------------------------------------------- -Info 80 [16:03:07.000] Open files: -Info 80 [16:03:08.000] FileName: /user/username/projects/myproject/random/random.ts ProjectRootPath: undefined -Info 80 [16:03:09.000] Projects: /user/username/projects/myproject/random/tsconfig.json +Info 80 [00:03:06.000] ----------------------------------------------- +Info 80 [00:03:07.000] Open files: +Info 80 [00:03:08.000] FileName: /user/username/projects/myproject/random/random.ts ProjectRootPath: undefined +Info 80 [00:03:09.000] Projects: /user/username/projects/myproject/random/tsconfig.json After request PolledWatches:: @@ -1333,11 +1333,11 @@ FsWatchesRecursive:: /user/username/projects/myproject/random: {} -Info 80 [16:03:10.000] response: +Info 80 [00:03:10.000] response: { "responseRequired": false } -Info 81 [16:03:11.000] request: +Info 81 [00:03:11.000] request: { "seq": 0, "type": "request", @@ -1378,16 +1378,16 @@ FsWatchesRecursive:: /user/username/projects/myproject/random: {} -Info 82 [16:03:12.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/random/random.ts 500 undefined WatchType: Closed Script info -Info 83 [16:03:13.000] Project '/user/username/projects/myproject/main/tsconfig.json' (Configured) -Info 83 [16:03:14.000] Files (3) +Info 82 [00:03:12.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/random/random.ts 500 undefined WatchType: Closed Script info +Info 83 [00:03:13.000] Project '/user/username/projects/myproject/main/tsconfig.json' (Configured) +Info 83 [00:03:14.000] Files (3) -Info 83 [16:03:15.000] ----------------------------------------------- -Info 83 [16:03:16.000] Project '/user/username/projects/myproject/random/tsconfig.json' (Configured) -Info 83 [16:03:17.000] Files (2) +Info 83 [00:03:15.000] ----------------------------------------------- +Info 83 [00:03:16.000] Project '/user/username/projects/myproject/random/tsconfig.json' (Configured) +Info 83 [00:03:17.000] Files (2) -Info 83 [16:03:18.000] ----------------------------------------------- -Info 83 [16:03:19.000] Open files: +Info 83 [00:03:18.000] ----------------------------------------------- +Info 83 [00:03:19.000] Open files: After request PolledWatches:: @@ -1422,11 +1422,11 @@ FsWatchesRecursive:: /user/username/projects/myproject/random: {} -Info 83 [16:03:20.000] response: +Info 83 [00:03:20.000] response: { "responseRequired": false } -Info 84 [16:03:21.000] request: +Info 84 [00:03:21.000] request: { "seq": 0, "type": "request", @@ -1469,12 +1469,12 @@ FsWatchesRecursive:: /user/username/projects/myproject/random: {} -Info 85 [16:03:22.000] FileWatcher:: Close:: WatchInfo: /user/username/projects/myproject/random/random.ts 500 undefined WatchType: Closed Script info -Info 86 [16:03:23.000] Search path: /user/username/projects/myproject/random -Info 87 [16:03:24.000] For info: /user/username/projects/myproject/random/random.ts :: Config file name: /user/username/projects/myproject/random/tsconfig.json -Info 88 [16:03:25.000] `remove Project:: -Info 89 [16:03:26.000] Project '/user/username/projects/myproject/main/tsconfig.json' (Configured) -Info 90 [16:03:27.000] Files (3) +Info 85 [00:03:22.000] FileWatcher:: Close:: WatchInfo: /user/username/projects/myproject/random/random.ts 500 undefined WatchType: Closed Script info +Info 86 [00:03:23.000] Search path: /user/username/projects/myproject/random +Info 87 [00:03:24.000] For info: /user/username/projects/myproject/random/random.ts :: Config file name: /user/username/projects/myproject/random/tsconfig.json +Info 88 [00:03:25.000] `remove Project:: +Info 89 [00:03:26.000] Project '/user/username/projects/myproject/main/tsconfig.json' (Configured) +Info 90 [00:03:27.000] Files (3) /a/lib/lib.d.ts /user/username/projects/myproject/decls/fns.d.ts /user/username/projects/myproject/main/main.ts @@ -1487,26 +1487,26 @@ Info 90 [16:03:27.000] Files (3) main.ts Matched by default include pattern '**/*' -Info 91 [16:03:28.000] ----------------------------------------------- -Info 92 [16:03:29.000] DirectoryWatcher:: Close:: WatchInfo: /user/username/projects/myproject/main 1 undefined Config: /user/username/projects/myproject/main/tsconfig.json WatchType: Wild card directory -Info 93 [16:03:30.000] 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 94 [16:03:31.000] FileWatcher:: Close:: WatchInfo: /user/username/projects/myproject/main/tsconfig.json 2000 undefined Project: /user/username/projects/myproject/main/tsconfig.json WatchType: Config file -Info 95 [16:03:32.000] DirectoryWatcher:: Close:: WatchInfo: /user/username/projects/myproject/decls 1 undefined Project: /user/username/projects/myproject/main/tsconfig.json WatchType: Failed Lookup Locations -Info 96 [16:03:33.000] 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 97 [16:03:34.000] 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 98 [16:03:35.000] 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 99 [16:03:36.000] DirectoryWatcher:: Close:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/main/tsconfig.json WatchType: Type roots -Info 100 [16:03:37.000] 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 101 [16:03:38.000] FileWatcher:: Close:: WatchInfo: /user/username/projects/myproject/main/main.ts 500 undefined WatchType: Closed Script info -Info 102 [16:03:39.000] FileWatcher:: Close:: WatchInfo: /user/username/projects/myproject/decls/fns.d.ts 500 undefined WatchType: Closed Script info -Info 103 [16:03:40.000] FileWatcher:: Close:: WatchInfo: /user/username/projects/myproject/decls/FnS.d.ts.map 2000 undefined WatchType: Missing source map file -Info 104 [16:03:41.000] Project '/user/username/projects/myproject/random/tsconfig.json' (Configured) -Info 104 [16:03:42.000] Files (2) - -Info 104 [16:03:43.000] ----------------------------------------------- -Info 104 [16:03:44.000] Open files: -Info 104 [16:03:45.000] FileName: /user/username/projects/myproject/random/random.ts ProjectRootPath: undefined -Info 104 [16:03:46.000] Projects: /user/username/projects/myproject/random/tsconfig.json +Info 91 [00:03:28.000] ----------------------------------------------- +Info 92 [00:03:29.000] DirectoryWatcher:: Close:: WatchInfo: /user/username/projects/myproject/main 1 undefined Config: /user/username/projects/myproject/main/tsconfig.json WatchType: Wild card directory +Info 93 [00:03:30.000] 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 94 [00:03:31.000] FileWatcher:: Close:: WatchInfo: /user/username/projects/myproject/main/tsconfig.json 2000 undefined Project: /user/username/projects/myproject/main/tsconfig.json WatchType: Config file +Info 95 [00:03:32.000] DirectoryWatcher:: Close:: WatchInfo: /user/username/projects/myproject/decls 1 undefined Project: /user/username/projects/myproject/main/tsconfig.json WatchType: Failed Lookup Locations +Info 96 [00:03:33.000] 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 97 [00:03:34.000] 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 98 [00:03:35.000] 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 99 [00:03:36.000] DirectoryWatcher:: Close:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/main/tsconfig.json WatchType: Type roots +Info 100 [00:03:37.000] 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 101 [00:03:38.000] FileWatcher:: Close:: WatchInfo: /user/username/projects/myproject/main/main.ts 500 undefined WatchType: Closed Script info +Info 102 [00:03:39.000] FileWatcher:: Close:: WatchInfo: /user/username/projects/myproject/decls/fns.d.ts 500 undefined WatchType: Closed Script info +Info 103 [00:03:40.000] FileWatcher:: Close:: WatchInfo: /user/username/projects/myproject/decls/FnS.d.ts.map 2000 undefined WatchType: Missing source map file +Info 104 [00:03:41.000] Project '/user/username/projects/myproject/random/tsconfig.json' (Configured) +Info 104 [00:03:42.000] Files (2) + +Info 104 [00:03:43.000] ----------------------------------------------- +Info 104 [00:03:44.000] Open files: +Info 104 [00:03:45.000] FileName: /user/username/projects/myproject/random/random.ts ProjectRootPath: undefined +Info 104 [00:03:46.000] Projects: /user/username/projects/myproject/random/tsconfig.json After request PolledWatches:: @@ -1525,7 +1525,7 @@ FsWatchesRecursive:: /user/username/projects/myproject/random: {} -Info 104 [16:03:47.000] response: +Info 104 [00:03:47.000] response: { "responseRequired": false } \ No newline at end of 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 1d1bbb5657b0d..80dd17f00ed02 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 @@ -1,5 +1,5 @@ -Info 0 [16:01:04.000] Provided types map file "/a/lib/typesMap.json" doesn't exist -Info 1 [16:01:05.000] request: +Info 0 [00:01:04.000] Provided types map file "/a/lib/typesMap.json" doesn't exist +Info 1 [00:01:05.000] request: { "seq": 0, "type": "request", @@ -197,11 +197,11 @@ FsWatches:: FsWatchesRecursive:: -Info 2 [16:01:06.000] Search path: /user/username/projects/myproject/main -Info 3 [16:01:07.000] For info: /user/username/projects/myproject/main/main.ts :: Config file name: /user/username/projects/myproject/main/tsconfig.json -Info 4 [16:01:08.000] Creating configuration project /user/username/projects/myproject/main/tsconfig.json -Info 5 [16:01:09.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/main/tsconfig.json 2000 undefined Project: /user/username/projects/myproject/main/tsconfig.json WatchType: Config file -Info 6 [16:01:10.000] Config: /user/username/projects/myproject/main/tsconfig.json : { +Info 2 [00:01:06.000] Search path: /user/username/projects/myproject/main +Info 3 [00:01:07.000] For info: /user/username/projects/myproject/main/main.ts :: Config file name: /user/username/projects/myproject/main/tsconfig.json +Info 4 [00:01:08.000] Creating configuration project /user/username/projects/myproject/main/tsconfig.json +Info 5 [00:01:09.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/main/tsconfig.json 2000 undefined Project: /user/username/projects/myproject/main/tsconfig.json WatchType: Config file +Info 6 [00:01:10.000] Config: /user/username/projects/myproject/main/tsconfig.json : { "rootNames": [ "/user/username/projects/myproject/main/main.ts" ], @@ -211,21 +211,21 @@ Info 6 [16:01:10.000] Config: /user/username/projects/myproject/main/tsconfig "configFilePath": "/user/username/projects/myproject/main/tsconfig.json" } } -Info 7 [16:01:11.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/main 1 undefined Config: /user/username/projects/myproject/main/tsconfig.json WatchType: Wild card directory -Info 8 [16:01:12.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/main 1 undefined Config: /user/username/projects/myproject/main/tsconfig.json WatchType: Wild card directory -Info 9 [16:01:13.000] Plugins were requested but not running in environment that supports 'require'. Nothing will be loaded -Info 10 [16:01:14.000] Starting updateGraphWorker: Project: /user/username/projects/myproject/main/tsconfig.json -Info 11 [16:01:15.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/decls 1 undefined Project: /user/username/projects/myproject/main/tsconfig.json WatchType: Failed Lookup Locations -Info 12 [16:01:16.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/decls 1 undefined Project: /user/username/projects/myproject/main/tsconfig.json WatchType: Failed Lookup Locations -Info 13 [16:01:17.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/decls/fns.d.ts 500 undefined WatchType: Closed Script info -Info 14 [16:01:18.000] FileWatcher:: Added:: WatchInfo: /a/lib/lib.d.ts 500 undefined WatchType: Closed Script info -Info 15 [16:01:19.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/main/node_modules/@types 1 undefined Project: /user/username/projects/myproject/main/tsconfig.json WatchType: Type roots -Info 16 [16:01:20.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/main/node_modules/@types 1 undefined Project: /user/username/projects/myproject/main/tsconfig.json WatchType: Type roots -Info 17 [16:01:21.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/main/tsconfig.json WatchType: Type roots -Info 18 [16:01:22.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/main/tsconfig.json WatchType: Type roots -Info 19 [16:01:23.000] Finishing updateGraphWorker: Project: /user/username/projects/myproject/main/tsconfig.json Version: 1 structureChanged: true structureIsReused:: Not Elapsed:: *ms -Info 20 [16:01:24.000] Project '/user/username/projects/myproject/main/tsconfig.json' (Configured) -Info 21 [16:01:25.000] Files (3) +Info 7 [00:01:11.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/main 1 undefined Config: /user/username/projects/myproject/main/tsconfig.json WatchType: Wild card directory +Info 8 [00:01:12.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/main 1 undefined Config: /user/username/projects/myproject/main/tsconfig.json WatchType: Wild card directory +Info 9 [00:01:13.000] Plugins were requested but not running in environment that supports 'require'. Nothing will be loaded +Info 10 [00:01:14.000] Starting updateGraphWorker: Project: /user/username/projects/myproject/main/tsconfig.json +Info 11 [00:01:15.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/decls 1 undefined Project: /user/username/projects/myproject/main/tsconfig.json WatchType: Failed Lookup Locations +Info 12 [00:01:16.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/decls 1 undefined Project: /user/username/projects/myproject/main/tsconfig.json WatchType: Failed Lookup Locations +Info 13 [00:01:17.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/decls/fns.d.ts 500 undefined WatchType: Closed Script info +Info 14 [00:01:18.000] FileWatcher:: Added:: WatchInfo: /a/lib/lib.d.ts 500 undefined WatchType: Closed Script info +Info 15 [00:01:19.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/main/node_modules/@types 1 undefined Project: /user/username/projects/myproject/main/tsconfig.json WatchType: Type roots +Info 16 [00:01:20.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/main/node_modules/@types 1 undefined Project: /user/username/projects/myproject/main/tsconfig.json WatchType: Type roots +Info 17 [00:01:21.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/main/tsconfig.json WatchType: Type roots +Info 18 [00:01:22.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/main/tsconfig.json WatchType: Type roots +Info 19 [00:01:23.000] Finishing updateGraphWorker: Project: /user/username/projects/myproject/main/tsconfig.json Version: 1 structureChanged: true structureIsReused:: Not Elapsed:: *ms +Info 20 [00:01:24.000] Project '/user/username/projects/myproject/main/tsconfig.json' (Configured) +Info 21 [00:01:25.000] Files (3) /a/lib/lib.d.ts /user/username/projects/myproject/decls/fns.d.ts /user/username/projects/myproject/main/main.ts @@ -238,16 +238,16 @@ Info 21 [16:01:25.000] Files (3) main.ts Matched by default include pattern '**/*' -Info 22 [16:01:26.000] ----------------------------------------------- -Info 23 [16:01:27.000] Search path: /user/username/projects/myproject/main -Info 24 [16:01:28.000] For info: /user/username/projects/myproject/main/tsconfig.json :: No config files found. -Info 25 [16:01:29.000] Project '/user/username/projects/myproject/main/tsconfig.json' (Configured) -Info 25 [16:01:30.000] Files (3) +Info 22 [00:01:26.000] ----------------------------------------------- +Info 23 [00:01:27.000] Search path: /user/username/projects/myproject/main +Info 24 [00:01:28.000] For info: /user/username/projects/myproject/main/tsconfig.json :: No config files found. +Info 25 [00:01:29.000] Project '/user/username/projects/myproject/main/tsconfig.json' (Configured) +Info 25 [00:01:30.000] Files (3) -Info 25 [16:01:31.000] ----------------------------------------------- -Info 25 [16:01:32.000] Open files: -Info 25 [16:01:33.000] FileName: /user/username/projects/myproject/main/main.ts ProjectRootPath: undefined -Info 25 [16:01:34.000] Projects: /user/username/projects/myproject/main/tsconfig.json +Info 25 [00:01:31.000] ----------------------------------------------- +Info 25 [00:01:32.000] Open files: +Info 25 [00:01:33.000] FileName: /user/username/projects/myproject/main/main.ts ProjectRootPath: undefined +Info 25 [00:01:34.000] Projects: /user/username/projects/myproject/main/tsconfig.json After request PolledWatches:: @@ -270,11 +270,11 @@ FsWatchesRecursive:: /user/username/projects/myproject/decls: {} -Info 25 [16:01:35.000] response: +Info 25 [00:01:35.000] response: { "responseRequired": false } -Info 26 [16:01:36.000] request: +Info 26 [00:01:36.000] request: { "seq": 0, "type": "request", @@ -305,11 +305,11 @@ FsWatchesRecursive:: /user/username/projects/myproject/decls: {} -Info 27 [16:01:37.000] Search path: /user/username/projects/myproject/random -Info 28 [16:01:38.000] For info: /user/username/projects/myproject/random/random.ts :: Config file name: /user/username/projects/myproject/random/tsconfig.json -Info 29 [16:01:39.000] Creating configuration project /user/username/projects/myproject/random/tsconfig.json -Info 30 [16:01:40.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/random/tsconfig.json 2000 undefined Project: /user/username/projects/myproject/random/tsconfig.json WatchType: Config file -Info 31 [16:01:41.000] Config: /user/username/projects/myproject/random/tsconfig.json : { +Info 27 [00:01:37.000] Search path: /user/username/projects/myproject/random +Info 28 [00:01:38.000] For info: /user/username/projects/myproject/random/random.ts :: Config file name: /user/username/projects/myproject/random/tsconfig.json +Info 29 [00:01:39.000] Creating configuration project /user/username/projects/myproject/random/tsconfig.json +Info 30 [00:01:40.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/random/tsconfig.json 2000 undefined Project: /user/username/projects/myproject/random/tsconfig.json WatchType: Config file +Info 31 [00:01:41.000] Config: /user/username/projects/myproject/random/tsconfig.json : { "rootNames": [ "/user/username/projects/myproject/random/random.ts" ], @@ -317,17 +317,17 @@ Info 31 [16:01:41.000] Config: /user/username/projects/myproject/random/tsconf "configFilePath": "/user/username/projects/myproject/random/tsconfig.json" } } -Info 32 [16:01:42.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/random 1 undefined Config: /user/username/projects/myproject/random/tsconfig.json WatchType: Wild card directory -Info 33 [16:01:43.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/random 1 undefined Config: /user/username/projects/myproject/random/tsconfig.json WatchType: Wild card directory -Info 34 [16:01:44.000] Plugins were requested but not running in environment that supports 'require'. Nothing will be loaded -Info 35 [16:01:45.000] Starting updateGraphWorker: Project: /user/username/projects/myproject/random/tsconfig.json -Info 36 [16:01:46.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/random/node_modules/@types 1 undefined Project: /user/username/projects/myproject/random/tsconfig.json WatchType: Type roots -Info 37 [16:01:47.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/random/node_modules/@types 1 undefined Project: /user/username/projects/myproject/random/tsconfig.json WatchType: Type roots -Info 38 [16:01:48.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/random/tsconfig.json WatchType: Type roots -Info 39 [16:01:49.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/random/tsconfig.json WatchType: Type roots -Info 40 [16:01:50.000] Finishing updateGraphWorker: Project: /user/username/projects/myproject/random/tsconfig.json Version: 1 structureChanged: true structureIsReused:: Not Elapsed:: *ms -Info 41 [16:01:51.000] Project '/user/username/projects/myproject/random/tsconfig.json' (Configured) -Info 42 [16:01:52.000] Files (2) +Info 32 [00:01:42.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/random 1 undefined Config: /user/username/projects/myproject/random/tsconfig.json WatchType: Wild card directory +Info 33 [00:01:43.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/random 1 undefined Config: /user/username/projects/myproject/random/tsconfig.json WatchType: Wild card directory +Info 34 [00:01:44.000] Plugins were requested but not running in environment that supports 'require'. Nothing will be loaded +Info 35 [00:01:45.000] Starting updateGraphWorker: Project: /user/username/projects/myproject/random/tsconfig.json +Info 36 [00:01:46.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/random/node_modules/@types 1 undefined Project: /user/username/projects/myproject/random/tsconfig.json WatchType: Type roots +Info 37 [00:01:47.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/random/node_modules/@types 1 undefined Project: /user/username/projects/myproject/random/tsconfig.json WatchType: Type roots +Info 38 [00:01:48.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/random/tsconfig.json WatchType: Type roots +Info 39 [00:01:49.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/random/tsconfig.json WatchType: Type roots +Info 40 [00:01:50.000] Finishing updateGraphWorker: Project: /user/username/projects/myproject/random/tsconfig.json Version: 1 structureChanged: true structureIsReused:: Not Elapsed:: *ms +Info 41 [00:01:51.000] Project '/user/username/projects/myproject/random/tsconfig.json' (Configured) +Info 42 [00:01:52.000] Files (2) /a/lib/lib.d.ts /user/username/projects/myproject/random/random.ts @@ -337,20 +337,20 @@ Info 42 [16:01:52.000] Files (2) random.ts Matched by default include pattern '**/*' -Info 43 [16:01:53.000] ----------------------------------------------- -Info 44 [16:01:54.000] Project '/user/username/projects/myproject/main/tsconfig.json' (Configured) -Info 44 [16:01:55.000] Files (3) +Info 43 [00:01:53.000] ----------------------------------------------- +Info 44 [00:01:54.000] Project '/user/username/projects/myproject/main/tsconfig.json' (Configured) +Info 44 [00:01:55.000] Files (3) -Info 44 [16:01:56.000] ----------------------------------------------- -Info 44 [16:01:57.000] Project '/user/username/projects/myproject/random/tsconfig.json' (Configured) -Info 44 [16:01:58.000] Files (2) +Info 44 [00:01:56.000] ----------------------------------------------- +Info 44 [00:01:57.000] Project '/user/username/projects/myproject/random/tsconfig.json' (Configured) +Info 44 [00:01:58.000] Files (2) -Info 44 [16:01:59.000] ----------------------------------------------- -Info 44 [16:02:00.000] Open files: -Info 44 [16:02:01.000] FileName: /user/username/projects/myproject/main/main.ts ProjectRootPath: undefined -Info 44 [16:02:02.000] Projects: /user/username/projects/myproject/main/tsconfig.json -Info 44 [16:02:03.000] FileName: /user/username/projects/myproject/random/random.ts ProjectRootPath: undefined -Info 44 [16:02:04.000] Projects: /user/username/projects/myproject/random/tsconfig.json +Info 44 [00:01:59.000] ----------------------------------------------- +Info 44 [00:02:00.000] Open files: +Info 44 [00:02:01.000] FileName: /user/username/projects/myproject/main/main.ts ProjectRootPath: undefined +Info 44 [00:02:02.000] Projects: /user/username/projects/myproject/main/tsconfig.json +Info 44 [00:02:03.000] FileName: /user/username/projects/myproject/random/random.ts ProjectRootPath: undefined +Info 44 [00:02:04.000] Projects: /user/username/projects/myproject/random/tsconfig.json After request PolledWatches:: @@ -379,11 +379,11 @@ FsWatchesRecursive:: /user/username/projects/myproject/random: {} -Info 44 [16:02:05.000] response: +Info 44 [00:02:05.000] response: { "responseRequired": false } -Info 45 [16:02:06.000] request: +Info 45 [00:02:06.000] request: { "command": "definitionAndBoundSpan", "arguments": { @@ -422,7 +422,7 @@ FsWatchesRecursive:: /user/username/projects/myproject/random: {} -Info 46 [16:02:07.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/decls/FnS.d.ts.map 2000 undefined WatchType: Missing source map file +Info 46 [00:02:07.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/decls/FnS.d.ts.map 2000 undefined WatchType: Missing source map file After request PolledWatches:: @@ -453,7 +453,7 @@ FsWatchesRecursive:: /user/username/projects/myproject/random: {} -Info 47 [16:02:08.000] response: +Info 47 [00:02:08.000] response: { "response": { "definitions": [ @@ -490,7 +490,7 @@ Info 47 [16:02:08.000] response: }, "responseRequired": true } -Info 48 [16:02:09.000] request: +Info 48 [00:02:09.000] request: { "command": "definitionAndBoundSpan", "arguments": { @@ -561,7 +561,7 @@ FsWatchesRecursive:: /user/username/projects/myproject/random: {} -Info 49 [16:02:10.000] response: +Info 49 [00:02:10.000] response: { "response": { "definitions": [ @@ -598,7 +598,7 @@ Info 49 [16:02:10.000] response: }, "responseRequired": true } -Info 50 [16:02:11.000] request: +Info 50 [00:02:11.000] request: { "command": "definitionAndBoundSpan", "arguments": { @@ -669,7 +669,7 @@ FsWatchesRecursive:: /user/username/projects/myproject/random: {} -Info 51 [16:02:12.000] response: +Info 51 [00:02:12.000] response: { "response": { "definitions": [ @@ -706,7 +706,7 @@ Info 51 [16:02:12.000] response: }, "responseRequired": true } -Info 52 [16:02:13.000] request: +Info 52 [00:02:13.000] request: { "command": "definitionAndBoundSpan", "arguments": { @@ -777,7 +777,7 @@ FsWatchesRecursive:: /user/username/projects/myproject/random: {} -Info 53 [16:02:14.000] response: +Info 53 [00:02:14.000] response: { "response": { "definitions": [ @@ -814,7 +814,7 @@ Info 53 [16:02:14.000] response: }, "responseRequired": true } -Info 54 [16:02:15.000] request: +Info 54 [00:02:15.000] request: { "command": "definitionAndBoundSpan", "arguments": { @@ -885,7 +885,7 @@ FsWatchesRecursive:: /user/username/projects/myproject/random: {} -Info 55 [16:02:16.000] response: +Info 55 [00:02:16.000] response: { "response": { "definitions": [ @@ -922,7 +922,7 @@ Info 55 [16:02:16.000] response: }, "responseRequired": true } -Info 56 [16:02:17.000] request: +Info 56 [00:02:17.000] request: { "seq": 0, "type": "request", @@ -961,18 +961,18 @@ FsWatchesRecursive:: /user/username/projects/myproject/random: {} -Info 57 [16:02:18.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/random/random.ts 500 undefined WatchType: Closed Script info -Info 58 [16:02:19.000] Project '/user/username/projects/myproject/main/tsconfig.json' (Configured) -Info 58 [16:02:20.000] Files (3) +Info 57 [00:02:18.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/random/random.ts 500 undefined WatchType: Closed Script info +Info 58 [00:02:19.000] Project '/user/username/projects/myproject/main/tsconfig.json' (Configured) +Info 58 [00:02:20.000] Files (3) -Info 58 [16:02:21.000] ----------------------------------------------- -Info 58 [16:02:22.000] Project '/user/username/projects/myproject/random/tsconfig.json' (Configured) -Info 58 [16:02:23.000] Files (2) +Info 58 [00:02:21.000] ----------------------------------------------- +Info 58 [00:02:22.000] Project '/user/username/projects/myproject/random/tsconfig.json' (Configured) +Info 58 [00:02:23.000] Files (2) -Info 58 [16:02:24.000] ----------------------------------------------- -Info 58 [16:02:25.000] Open files: -Info 58 [16:02:26.000] FileName: /user/username/projects/myproject/main/main.ts ProjectRootPath: undefined -Info 58 [16:02:27.000] Projects: /user/username/projects/myproject/main/tsconfig.json +Info 58 [00:02:24.000] ----------------------------------------------- +Info 58 [00:02:25.000] Open files: +Info 58 [00:02:26.000] FileName: /user/username/projects/myproject/main/main.ts ProjectRootPath: undefined +Info 58 [00:02:27.000] Projects: /user/username/projects/myproject/main/tsconfig.json After request PolledWatches:: @@ -1005,11 +1005,11 @@ FsWatchesRecursive:: /user/username/projects/myproject/random: {} -Info 58 [16:02:28.000] response: +Info 58 [00:02:28.000] response: { "responseRequired": false } -Info 59 [16:02:29.000] request: +Info 59 [00:02:29.000] request: { "seq": 0, "type": "request", @@ -1050,22 +1050,22 @@ FsWatchesRecursive:: /user/username/projects/myproject/random: {} -Info 60 [16:02:30.000] FileWatcher:: Close:: WatchInfo: /user/username/projects/myproject/random/random.ts 500 undefined WatchType: Closed Script info -Info 61 [16:02:31.000] Search path: /user/username/projects/myproject/random -Info 62 [16:02:32.000] For info: /user/username/projects/myproject/random/random.ts :: Config file name: /user/username/projects/myproject/random/tsconfig.json -Info 63 [16:02:33.000] Project '/user/username/projects/myproject/main/tsconfig.json' (Configured) -Info 63 [16:02:34.000] Files (3) +Info 60 [00:02:30.000] FileWatcher:: Close:: WatchInfo: /user/username/projects/myproject/random/random.ts 500 undefined WatchType: Closed Script info +Info 61 [00:02:31.000] Search path: /user/username/projects/myproject/random +Info 62 [00:02:32.000] For info: /user/username/projects/myproject/random/random.ts :: Config file name: /user/username/projects/myproject/random/tsconfig.json +Info 63 [00:02:33.000] Project '/user/username/projects/myproject/main/tsconfig.json' (Configured) +Info 63 [00:02:34.000] Files (3) -Info 63 [16:02:35.000] ----------------------------------------------- -Info 63 [16:02:36.000] Project '/user/username/projects/myproject/random/tsconfig.json' (Configured) -Info 63 [16:02:37.000] Files (2) +Info 63 [00:02:35.000] ----------------------------------------------- +Info 63 [00:02:36.000] Project '/user/username/projects/myproject/random/tsconfig.json' (Configured) +Info 63 [00:02:37.000] Files (2) -Info 63 [16:02:38.000] ----------------------------------------------- -Info 63 [16:02:39.000] Open files: -Info 63 [16:02:40.000] FileName: /user/username/projects/myproject/main/main.ts ProjectRootPath: undefined -Info 63 [16:02:41.000] Projects: /user/username/projects/myproject/main/tsconfig.json -Info 63 [16:02:42.000] FileName: /user/username/projects/myproject/random/random.ts ProjectRootPath: undefined -Info 63 [16:02:43.000] Projects: /user/username/projects/myproject/random/tsconfig.json +Info 63 [00:02:38.000] ----------------------------------------------- +Info 63 [00:02:39.000] Open files: +Info 63 [00:02:40.000] FileName: /user/username/projects/myproject/main/main.ts ProjectRootPath: undefined +Info 63 [00:02:41.000] Projects: /user/username/projects/myproject/main/tsconfig.json +Info 63 [00:02:42.000] FileName: /user/username/projects/myproject/random/random.ts ProjectRootPath: undefined +Info 63 [00:02:43.000] Projects: /user/username/projects/myproject/random/tsconfig.json After request PolledWatches:: @@ -1096,11 +1096,11 @@ FsWatchesRecursive:: /user/username/projects/myproject/random: {} -Info 63 [16:02:44.000] response: +Info 63 [00:02:44.000] response: { "responseRequired": false } -Info 64 [16:02:45.000] request: +Info 64 [00:02:45.000] request: { "seq": 0, "type": "request", @@ -1139,18 +1139,18 @@ FsWatchesRecursive:: /user/username/projects/myproject/random: {} -Info 65 [16:02:46.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/main/main.ts 500 undefined WatchType: Closed Script info -Info 66 [16:02:47.000] Project '/user/username/projects/myproject/main/tsconfig.json' (Configured) -Info 66 [16:02:48.000] Files (3) +Info 65 [00:02:46.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/main/main.ts 500 undefined WatchType: Closed Script info +Info 66 [00:02:47.000] Project '/user/username/projects/myproject/main/tsconfig.json' (Configured) +Info 66 [00:02:48.000] Files (3) -Info 66 [16:02:49.000] ----------------------------------------------- -Info 66 [16:02:50.000] Project '/user/username/projects/myproject/random/tsconfig.json' (Configured) -Info 66 [16:02:51.000] Files (2) +Info 66 [00:02:49.000] ----------------------------------------------- +Info 66 [00:02:50.000] Project '/user/username/projects/myproject/random/tsconfig.json' (Configured) +Info 66 [00:02:51.000] Files (2) -Info 66 [16:02:52.000] ----------------------------------------------- -Info 66 [16:02:53.000] Open files: -Info 66 [16:02:54.000] FileName: /user/username/projects/myproject/random/random.ts ProjectRootPath: undefined -Info 66 [16:02:55.000] Projects: /user/username/projects/myproject/random/tsconfig.json +Info 66 [00:02:52.000] ----------------------------------------------- +Info 66 [00:02:53.000] Open files: +Info 66 [00:02:54.000] FileName: /user/username/projects/myproject/random/random.ts ProjectRootPath: undefined +Info 66 [00:02:55.000] Projects: /user/username/projects/myproject/random/tsconfig.json After request PolledWatches:: @@ -1183,11 +1183,11 @@ FsWatchesRecursive:: /user/username/projects/myproject/random: {} -Info 66 [16:02:56.000] response: +Info 66 [00:02:56.000] response: { "responseRequired": false } -Info 67 [16:02:57.000] request: +Info 67 [00:02:57.000] request: { "seq": 0, "type": "request", @@ -1228,16 +1228,16 @@ FsWatchesRecursive:: /user/username/projects/myproject/random: {} -Info 68 [16:02:58.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/random/random.ts 500 undefined WatchType: Closed Script info -Info 69 [16:02:59.000] Project '/user/username/projects/myproject/main/tsconfig.json' (Configured) -Info 69 [16:03:00.000] Files (3) +Info 68 [00:02:58.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/random/random.ts 500 undefined WatchType: Closed Script info +Info 69 [00:02:59.000] Project '/user/username/projects/myproject/main/tsconfig.json' (Configured) +Info 69 [00:03:00.000] Files (3) -Info 69 [16:03:01.000] ----------------------------------------------- -Info 69 [16:03:02.000] Project '/user/username/projects/myproject/random/tsconfig.json' (Configured) -Info 69 [16:03:03.000] Files (2) +Info 69 [00:03:01.000] ----------------------------------------------- +Info 69 [00:03:02.000] Project '/user/username/projects/myproject/random/tsconfig.json' (Configured) +Info 69 [00:03:03.000] Files (2) -Info 69 [16:03:04.000] ----------------------------------------------- -Info 69 [16:03:05.000] Open files: +Info 69 [00:03:04.000] ----------------------------------------------- +Info 69 [00:03:05.000] Open files: After request PolledWatches:: @@ -1272,11 +1272,11 @@ FsWatchesRecursive:: /user/username/projects/myproject/random: {} -Info 69 [16:03:06.000] response: +Info 69 [00:03:06.000] response: { "responseRequired": false } -Info 70 [16:03:07.000] request: +Info 70 [00:03:07.000] request: { "seq": 0, "type": "request", @@ -1319,12 +1319,12 @@ FsWatchesRecursive:: /user/username/projects/myproject/random: {} -Info 71 [16:03:08.000] FileWatcher:: Close:: WatchInfo: /user/username/projects/myproject/random/random.ts 500 undefined WatchType: Closed Script info -Info 72 [16:03:09.000] Search path: /user/username/projects/myproject/random -Info 73 [16:03:10.000] For info: /user/username/projects/myproject/random/random.ts :: Config file name: /user/username/projects/myproject/random/tsconfig.json -Info 74 [16:03:11.000] `remove Project:: -Info 75 [16:03:12.000] Project '/user/username/projects/myproject/main/tsconfig.json' (Configured) -Info 76 [16:03:13.000] Files (3) +Info 71 [00:03:08.000] FileWatcher:: Close:: WatchInfo: /user/username/projects/myproject/random/random.ts 500 undefined WatchType: Closed Script info +Info 72 [00:03:09.000] Search path: /user/username/projects/myproject/random +Info 73 [00:03:10.000] For info: /user/username/projects/myproject/random/random.ts :: Config file name: /user/username/projects/myproject/random/tsconfig.json +Info 74 [00:03:11.000] `remove Project:: +Info 75 [00:03:12.000] Project '/user/username/projects/myproject/main/tsconfig.json' (Configured) +Info 76 [00:03:13.000] Files (3) /a/lib/lib.d.ts /user/username/projects/myproject/decls/fns.d.ts /user/username/projects/myproject/main/main.ts @@ -1337,26 +1337,26 @@ Info 76 [16:03:13.000] Files (3) main.ts Matched by default include pattern '**/*' -Info 77 [16:03:14.000] ----------------------------------------------- -Info 78 [16:03:15.000] DirectoryWatcher:: Close:: WatchInfo: /user/username/projects/myproject/main 1 undefined Config: /user/username/projects/myproject/main/tsconfig.json WatchType: Wild card directory -Info 79 [16:03:16.000] 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 80 [16:03:17.000] FileWatcher:: Close:: WatchInfo: /user/username/projects/myproject/main/tsconfig.json 2000 undefined Project: /user/username/projects/myproject/main/tsconfig.json WatchType: Config file -Info 81 [16:03:18.000] DirectoryWatcher:: Close:: WatchInfo: /user/username/projects/myproject/decls 1 undefined Project: /user/username/projects/myproject/main/tsconfig.json WatchType: Failed Lookup Locations -Info 82 [16:03:19.000] 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 83 [16:03:20.000] 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 84 [16:03:21.000] 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 85 [16:03:22.000] DirectoryWatcher:: Close:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/main/tsconfig.json WatchType: Type roots -Info 86 [16:03:23.000] 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 87 [16:03:24.000] FileWatcher:: Close:: WatchInfo: /user/username/projects/myproject/main/main.ts 500 undefined WatchType: Closed Script info -Info 88 [16:03:25.000] FileWatcher:: Close:: WatchInfo: /user/username/projects/myproject/decls/fns.d.ts 500 undefined WatchType: Closed Script info -Info 89 [16:03:26.000] FileWatcher:: Close:: WatchInfo: /user/username/projects/myproject/decls/FnS.d.ts.map 2000 undefined WatchType: Missing source map file -Info 90 [16:03:27.000] Project '/user/username/projects/myproject/random/tsconfig.json' (Configured) -Info 90 [16:03:28.000] Files (2) - -Info 90 [16:03:29.000] ----------------------------------------------- -Info 90 [16:03:30.000] Open files: -Info 90 [16:03:31.000] FileName: /user/username/projects/myproject/random/random.ts ProjectRootPath: undefined -Info 90 [16:03:32.000] Projects: /user/username/projects/myproject/random/tsconfig.json +Info 77 [00:03:14.000] ----------------------------------------------- +Info 78 [00:03:15.000] DirectoryWatcher:: Close:: WatchInfo: /user/username/projects/myproject/main 1 undefined Config: /user/username/projects/myproject/main/tsconfig.json WatchType: Wild card directory +Info 79 [00:03:16.000] 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 80 [00:03:17.000] FileWatcher:: Close:: WatchInfo: /user/username/projects/myproject/main/tsconfig.json 2000 undefined Project: /user/username/projects/myproject/main/tsconfig.json WatchType: Config file +Info 81 [00:03:18.000] DirectoryWatcher:: Close:: WatchInfo: /user/username/projects/myproject/decls 1 undefined Project: /user/username/projects/myproject/main/tsconfig.json WatchType: Failed Lookup Locations +Info 82 [00:03:19.000] 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 83 [00:03:20.000] 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 84 [00:03:21.000] 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 85 [00:03:22.000] DirectoryWatcher:: Close:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/main/tsconfig.json WatchType: Type roots +Info 86 [00:03:23.000] 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 87 [00:03:24.000] FileWatcher:: Close:: WatchInfo: /user/username/projects/myproject/main/main.ts 500 undefined WatchType: Closed Script info +Info 88 [00:03:25.000] FileWatcher:: Close:: WatchInfo: /user/username/projects/myproject/decls/fns.d.ts 500 undefined WatchType: Closed Script info +Info 89 [00:03:26.000] FileWatcher:: Close:: WatchInfo: /user/username/projects/myproject/decls/FnS.d.ts.map 2000 undefined WatchType: Missing source map file +Info 90 [00:03:27.000] Project '/user/username/projects/myproject/random/tsconfig.json' (Configured) +Info 90 [00:03:28.000] Files (2) + +Info 90 [00:03:29.000] ----------------------------------------------- +Info 90 [00:03:30.000] Open files: +Info 90 [00:03:31.000] FileName: /user/username/projects/myproject/random/random.ts ProjectRootPath: undefined +Info 90 [00:03:32.000] Projects: /user/username/projects/myproject/random/tsconfig.json After request PolledWatches:: @@ -1375,7 +1375,7 @@ FsWatchesRecursive:: /user/username/projects/myproject/random: {} -Info 90 [16:03:33.000] response: +Info 90 [00:03:33.000] response: { "responseRequired": false } \ No newline at end of file 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 dad4a553d567c..dbe09dab45451 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 @@ -1,5 +1,5 @@ -Info 0 [16:01:03.000] Provided types map file "/a/lib/typesMap.json" doesn't exist -Info 1 [16:01:04.000] request: +Info 0 [00:01:03.000] Provided types map file "/a/lib/typesMap.json" doesn't exist +Info 1 [00:01:04.000] request: { "seq": 0, "type": "request", @@ -200,11 +200,11 @@ FsWatches:: FsWatchesRecursive:: -Info 2 [16:01:05.000] Search path: /user/username/projects/myproject/main -Info 3 [16:01:06.000] For info: /user/username/projects/myproject/main/main.ts :: Config file name: /user/username/projects/myproject/main/tsconfig.json -Info 4 [16:01:07.000] Creating configuration project /user/username/projects/myproject/main/tsconfig.json -Info 5 [16:01:08.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/main/tsconfig.json 2000 undefined Project: /user/username/projects/myproject/main/tsconfig.json WatchType: Config file -Info 6 [16:01:09.000] Config: /user/username/projects/myproject/main/tsconfig.json : { +Info 2 [00:01:05.000] Search path: /user/username/projects/myproject/main +Info 3 [00:01:06.000] For info: /user/username/projects/myproject/main/main.ts :: Config file name: /user/username/projects/myproject/main/tsconfig.json +Info 4 [00:01:07.000] Creating configuration project /user/username/projects/myproject/main/tsconfig.json +Info 5 [00:01:08.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/main/tsconfig.json 2000 undefined Project: /user/username/projects/myproject/main/tsconfig.json WatchType: Config file +Info 6 [00:01:09.000] Config: /user/username/projects/myproject/main/tsconfig.json : { "rootNames": [ "/user/username/projects/myproject/main/main.ts" ], @@ -214,21 +214,21 @@ Info 6 [16:01:09.000] Config: /user/username/projects/myproject/main/tsconfig "configFilePath": "/user/username/projects/myproject/main/tsconfig.json" } } -Info 7 [16:01:10.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/main 1 undefined Config: /user/username/projects/myproject/main/tsconfig.json WatchType: Wild card directory -Info 8 [16:01:11.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/main 1 undefined Config: /user/username/projects/myproject/main/tsconfig.json WatchType: Wild card directory -Info 9 [16:01:12.000] Plugins were requested but not running in environment that supports 'require'. Nothing will be loaded -Info 10 [16:01:13.000] Starting updateGraphWorker: Project: /user/username/projects/myproject/main/tsconfig.json -Info 11 [16:01:14.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/decls 1 undefined Project: /user/username/projects/myproject/main/tsconfig.json WatchType: Failed Lookup Locations -Info 12 [16:01:15.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/decls 1 undefined Project: /user/username/projects/myproject/main/tsconfig.json WatchType: Failed Lookup Locations -Info 13 [16:01:16.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/decls/fns.d.ts 500 undefined WatchType: Closed Script info -Info 14 [16:01:17.000] FileWatcher:: Added:: WatchInfo: /a/lib/lib.d.ts 500 undefined WatchType: Closed Script info -Info 15 [16:01:18.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/main/node_modules/@types 1 undefined Project: /user/username/projects/myproject/main/tsconfig.json WatchType: Type roots -Info 16 [16:01:19.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/main/node_modules/@types 1 undefined Project: /user/username/projects/myproject/main/tsconfig.json WatchType: Type roots -Info 17 [16:01:20.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/main/tsconfig.json WatchType: Type roots -Info 18 [16:01:21.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/main/tsconfig.json WatchType: Type roots -Info 19 [16:01:22.000] Finishing updateGraphWorker: Project: /user/username/projects/myproject/main/tsconfig.json Version: 1 structureChanged: true structureIsReused:: Not Elapsed:: *ms -Info 20 [16:01:23.000] Project '/user/username/projects/myproject/main/tsconfig.json' (Configured) -Info 21 [16:01:24.000] Files (3) +Info 7 [00:01:10.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/main 1 undefined Config: /user/username/projects/myproject/main/tsconfig.json WatchType: Wild card directory +Info 8 [00:01:11.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/main 1 undefined Config: /user/username/projects/myproject/main/tsconfig.json WatchType: Wild card directory +Info 9 [00:01:12.000] Plugins were requested but not running in environment that supports 'require'. Nothing will be loaded +Info 10 [00:01:13.000] Starting updateGraphWorker: Project: /user/username/projects/myproject/main/tsconfig.json +Info 11 [00:01:14.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/decls 1 undefined Project: /user/username/projects/myproject/main/tsconfig.json WatchType: Failed Lookup Locations +Info 12 [00:01:15.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/decls 1 undefined Project: /user/username/projects/myproject/main/tsconfig.json WatchType: Failed Lookup Locations +Info 13 [00:01:16.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/decls/fns.d.ts 500 undefined WatchType: Closed Script info +Info 14 [00:01:17.000] FileWatcher:: Added:: WatchInfo: /a/lib/lib.d.ts 500 undefined WatchType: Closed Script info +Info 15 [00:01:18.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/main/node_modules/@types 1 undefined Project: /user/username/projects/myproject/main/tsconfig.json WatchType: Type roots +Info 16 [00:01:19.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/main/node_modules/@types 1 undefined Project: /user/username/projects/myproject/main/tsconfig.json WatchType: Type roots +Info 17 [00:01:20.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/main/tsconfig.json WatchType: Type roots +Info 18 [00:01:21.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/main/tsconfig.json WatchType: Type roots +Info 19 [00:01:22.000] Finishing updateGraphWorker: Project: /user/username/projects/myproject/main/tsconfig.json Version: 1 structureChanged: true structureIsReused:: Not Elapsed:: *ms +Info 20 [00:01:23.000] Project '/user/username/projects/myproject/main/tsconfig.json' (Configured) +Info 21 [00:01:24.000] Files (3) /a/lib/lib.d.ts /user/username/projects/myproject/decls/fns.d.ts /user/username/projects/myproject/main/main.ts @@ -241,16 +241,16 @@ Info 21 [16:01:24.000] Files (3) main.ts Matched by default include pattern '**/*' -Info 22 [16:01:25.000] ----------------------------------------------- -Info 23 [16:01:26.000] Search path: /user/username/projects/myproject/main -Info 24 [16:01:27.000] For info: /user/username/projects/myproject/main/tsconfig.json :: No config files found. -Info 25 [16:01:28.000] Project '/user/username/projects/myproject/main/tsconfig.json' (Configured) -Info 25 [16:01:29.000] Files (3) +Info 22 [00:01:25.000] ----------------------------------------------- +Info 23 [00:01:26.000] Search path: /user/username/projects/myproject/main +Info 24 [00:01:27.000] For info: /user/username/projects/myproject/main/tsconfig.json :: No config files found. +Info 25 [00:01:28.000] Project '/user/username/projects/myproject/main/tsconfig.json' (Configured) +Info 25 [00:01:29.000] Files (3) -Info 25 [16:01:30.000] ----------------------------------------------- -Info 25 [16:01:31.000] Open files: -Info 25 [16:01:32.000] FileName: /user/username/projects/myproject/main/main.ts ProjectRootPath: undefined -Info 25 [16:01:33.000] Projects: /user/username/projects/myproject/main/tsconfig.json +Info 25 [00:01:30.000] ----------------------------------------------- +Info 25 [00:01:31.000] Open files: +Info 25 [00:01:32.000] FileName: /user/username/projects/myproject/main/main.ts ProjectRootPath: undefined +Info 25 [00:01:33.000] Projects: /user/username/projects/myproject/main/tsconfig.json After request PolledWatches:: @@ -273,11 +273,11 @@ FsWatchesRecursive:: /user/username/projects/myproject/decls: {} -Info 25 [16:01:34.000] response: +Info 25 [00:01:34.000] response: { "responseRequired": false } -Info 26 [16:01:35.000] request: +Info 26 [00:01:35.000] request: { "seq": 0, "type": "request", @@ -308,11 +308,11 @@ FsWatchesRecursive:: /user/username/projects/myproject/decls: {} -Info 27 [16:01:36.000] Search path: /user/username/projects/myproject/random -Info 28 [16:01:37.000] For info: /user/username/projects/myproject/random/random.ts :: Config file name: /user/username/projects/myproject/random/tsconfig.json -Info 29 [16:01:38.000] Creating configuration project /user/username/projects/myproject/random/tsconfig.json -Info 30 [16:01:39.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/random/tsconfig.json 2000 undefined Project: /user/username/projects/myproject/random/tsconfig.json WatchType: Config file -Info 31 [16:01:40.000] Config: /user/username/projects/myproject/random/tsconfig.json : { +Info 27 [00:01:36.000] Search path: /user/username/projects/myproject/random +Info 28 [00:01:37.000] For info: /user/username/projects/myproject/random/random.ts :: Config file name: /user/username/projects/myproject/random/tsconfig.json +Info 29 [00:01:38.000] Creating configuration project /user/username/projects/myproject/random/tsconfig.json +Info 30 [00:01:39.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/random/tsconfig.json 2000 undefined Project: /user/username/projects/myproject/random/tsconfig.json WatchType: Config file +Info 31 [00:01:40.000] Config: /user/username/projects/myproject/random/tsconfig.json : { "rootNames": [ "/user/username/projects/myproject/random/random.ts" ], @@ -320,17 +320,17 @@ Info 31 [16:01:40.000] Config: /user/username/projects/myproject/random/tsconf "configFilePath": "/user/username/projects/myproject/random/tsconfig.json" } } -Info 32 [16:01:41.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/random 1 undefined Config: /user/username/projects/myproject/random/tsconfig.json WatchType: Wild card directory -Info 33 [16:01:42.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/random 1 undefined Config: /user/username/projects/myproject/random/tsconfig.json WatchType: Wild card directory -Info 34 [16:01:43.000] Plugins were requested but not running in environment that supports 'require'. Nothing will be loaded -Info 35 [16:01:44.000] Starting updateGraphWorker: Project: /user/username/projects/myproject/random/tsconfig.json -Info 36 [16:01:45.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/random/node_modules/@types 1 undefined Project: /user/username/projects/myproject/random/tsconfig.json WatchType: Type roots -Info 37 [16:01:46.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/random/node_modules/@types 1 undefined Project: /user/username/projects/myproject/random/tsconfig.json WatchType: Type roots -Info 38 [16:01:47.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/random/tsconfig.json WatchType: Type roots -Info 39 [16:01:48.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/random/tsconfig.json WatchType: Type roots -Info 40 [16:01:49.000] Finishing updateGraphWorker: Project: /user/username/projects/myproject/random/tsconfig.json Version: 1 structureChanged: true structureIsReused:: Not Elapsed:: *ms -Info 41 [16:01:50.000] Project '/user/username/projects/myproject/random/tsconfig.json' (Configured) -Info 42 [16:01:51.000] Files (2) +Info 32 [00:01:41.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/random 1 undefined Config: /user/username/projects/myproject/random/tsconfig.json WatchType: Wild card directory +Info 33 [00:01:42.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/random 1 undefined Config: /user/username/projects/myproject/random/tsconfig.json WatchType: Wild card directory +Info 34 [00:01:43.000] Plugins were requested but not running in environment that supports 'require'. Nothing will be loaded +Info 35 [00:01:44.000] Starting updateGraphWorker: Project: /user/username/projects/myproject/random/tsconfig.json +Info 36 [00:01:45.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/random/node_modules/@types 1 undefined Project: /user/username/projects/myproject/random/tsconfig.json WatchType: Type roots +Info 37 [00:01:46.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/random/node_modules/@types 1 undefined Project: /user/username/projects/myproject/random/tsconfig.json WatchType: Type roots +Info 38 [00:01:47.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/random/tsconfig.json WatchType: Type roots +Info 39 [00:01:48.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/random/tsconfig.json WatchType: Type roots +Info 40 [00:01:49.000] Finishing updateGraphWorker: Project: /user/username/projects/myproject/random/tsconfig.json Version: 1 structureChanged: true structureIsReused:: Not Elapsed:: *ms +Info 41 [00:01:50.000] Project '/user/username/projects/myproject/random/tsconfig.json' (Configured) +Info 42 [00:01:51.000] Files (2) /a/lib/lib.d.ts /user/username/projects/myproject/random/random.ts @@ -340,20 +340,20 @@ Info 42 [16:01:51.000] Files (2) random.ts Matched by default include pattern '**/*' -Info 43 [16:01:52.000] ----------------------------------------------- -Info 44 [16:01:53.000] Project '/user/username/projects/myproject/main/tsconfig.json' (Configured) -Info 44 [16:01:54.000] Files (3) +Info 43 [00:01:52.000] ----------------------------------------------- +Info 44 [00:01:53.000] Project '/user/username/projects/myproject/main/tsconfig.json' (Configured) +Info 44 [00:01:54.000] Files (3) -Info 44 [16:01:55.000] ----------------------------------------------- -Info 44 [16:01:56.000] Project '/user/username/projects/myproject/random/tsconfig.json' (Configured) -Info 44 [16:01:57.000] Files (2) +Info 44 [00:01:55.000] ----------------------------------------------- +Info 44 [00:01:56.000] Project '/user/username/projects/myproject/random/tsconfig.json' (Configured) +Info 44 [00:01:57.000] Files (2) -Info 44 [16:01:58.000] ----------------------------------------------- -Info 44 [16:01:59.000] Open files: -Info 44 [16:02:00.000] FileName: /user/username/projects/myproject/main/main.ts ProjectRootPath: undefined -Info 44 [16:02:01.000] Projects: /user/username/projects/myproject/main/tsconfig.json -Info 44 [16:02:02.000] FileName: /user/username/projects/myproject/random/random.ts ProjectRootPath: undefined -Info 44 [16:02:03.000] Projects: /user/username/projects/myproject/random/tsconfig.json +Info 44 [00:01:58.000] ----------------------------------------------- +Info 44 [00:01:59.000] Open files: +Info 44 [00:02:00.000] FileName: /user/username/projects/myproject/main/main.ts ProjectRootPath: undefined +Info 44 [00:02:01.000] Projects: /user/username/projects/myproject/main/tsconfig.json +Info 44 [00:02:02.000] FileName: /user/username/projects/myproject/random/random.ts ProjectRootPath: undefined +Info 44 [00:02:03.000] Projects: /user/username/projects/myproject/random/tsconfig.json After request PolledWatches:: @@ -382,11 +382,11 @@ FsWatchesRecursive:: /user/username/projects/myproject/random: {} -Info 44 [16:02:04.000] response: +Info 44 [00:02:04.000] response: { "responseRequired": false } -Info 45 [16:02:05.000] request: +Info 45 [00:02:05.000] request: { "command": "definitionAndBoundSpan", "arguments": { @@ -425,8 +425,8 @@ FsWatchesRecursive:: /user/username/projects/myproject/random: {} -Info 46 [16:02:06.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/decls/FnS.d.ts.map 500 undefined WatchType: Closed Script info -Info 47 [16:02:07.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/dependency/FnS.ts 500 undefined WatchType: Closed Script info +Info 46 [00:02:06.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/decls/FnS.d.ts.map 500 undefined WatchType: Closed Script info +Info 47 [00:02:07.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/dependency/FnS.ts 500 undefined WatchType: Closed Script info After request PolledWatches:: @@ -459,7 +459,7 @@ FsWatchesRecursive:: /user/username/projects/myproject/random: {} -Info 48 [16:02:08.000] response: +Info 48 [00:02:08.000] response: { "response": { "definitions": [ @@ -496,7 +496,7 @@ Info 48 [16:02:08.000] response: }, "responseRequired": true } -Info 49 [16:02:09.000] request: +Info 49 [00:02:09.000] request: { "command": "change", "arguments": { @@ -574,7 +574,7 @@ FsWatchesRecursive:: /user/username/projects/myproject/random: {} -Info 50 [16:02:10.000] response: +Info 50 [00:02:10.000] response: { "responseRequired": false } @@ -642,7 +642,7 @@ FsWatchesRecursive:: /user/username/projects/myproject/random: {} -Info 51 [16:02:11.000] request: +Info 51 [00:02:11.000] request: { "command": "definitionAndBoundSpan", "arguments": { @@ -685,9 +685,9 @@ FsWatchesRecursive:: /user/username/projects/myproject/random: {} -Info 52 [16:02:12.000] Starting updateGraphWorker: Project: /user/username/projects/myproject/main/tsconfig.json -Info 53 [16:02:13.000] Finishing updateGraphWorker: Project: /user/username/projects/myproject/main/tsconfig.json Version: 2 structureChanged: false structureIsReused:: Completely Elapsed:: *ms -Info 54 [16:02:14.000] Different program with same set of files +Info 52 [00:02:12.000] Starting updateGraphWorker: Project: /user/username/projects/myproject/main/tsconfig.json +Info 53 [00:02:13.000] Finishing updateGraphWorker: Project: /user/username/projects/myproject/main/tsconfig.json Version: 2 structureChanged: false structureIsReused:: Completely Elapsed:: *ms +Info 54 [00:02:14.000] Different program with same set of files After request PolledWatches:: @@ -720,7 +720,7 @@ FsWatchesRecursive:: /user/username/projects/myproject/random: {} -Info 55 [16:02:15.000] response: +Info 55 [00:02:15.000] response: { "response": { "definitions": [ @@ -757,7 +757,7 @@ Info 55 [16:02:15.000] response: }, "responseRequired": true } -Info 56 [16:02:16.000] request: +Info 56 [00:02:16.000] request: { "command": "definitionAndBoundSpan", "arguments": { @@ -832,7 +832,7 @@ FsWatchesRecursive:: /user/username/projects/myproject/random: {} -Info 57 [16:02:17.000] response: +Info 57 [00:02:17.000] response: { "response": { "definitions": [ @@ -869,7 +869,7 @@ Info 57 [16:02:17.000] response: }, "responseRequired": true } -Info 58 [16:02:18.000] request: +Info 58 [00:02:18.000] request: { "command": "definitionAndBoundSpan", "arguments": { @@ -944,7 +944,7 @@ FsWatchesRecursive:: /user/username/projects/myproject/random: {} -Info 59 [16:02:19.000] response: +Info 59 [00:02:19.000] response: { "response": { "definitions": [ @@ -981,7 +981,7 @@ Info 59 [16:02:19.000] response: }, "responseRequired": true } -Info 60 [16:02:20.000] request: +Info 60 [00:02:20.000] request: { "command": "definitionAndBoundSpan", "arguments": { @@ -1056,7 +1056,7 @@ FsWatchesRecursive:: /user/username/projects/myproject/random: {} -Info 61 [16:02:21.000] response: +Info 61 [00:02:21.000] response: { "response": { "definitions": [ @@ -1093,7 +1093,7 @@ Info 61 [16:02:21.000] response: }, "responseRequired": true } -Info 62 [16:02:22.000] request: +Info 62 [00:02:22.000] request: { "command": "definitionAndBoundSpan", "arguments": { @@ -1168,7 +1168,7 @@ FsWatchesRecursive:: /user/username/projects/myproject/random: {} -Info 63 [16:02:23.000] response: +Info 63 [00:02:23.000] response: { "response": { "definitions": [ 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 7d9f66bbe6ff8..c66a6e833fc0b 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 @@ -1,5 +1,5 @@ -Info 0 [16:01:03.000] Provided types map file "/a/lib/typesMap.json" doesn't exist -Info 1 [16:01:04.000] request: +Info 0 [00:01:03.000] Provided types map file "/a/lib/typesMap.json" doesn't exist +Info 1 [00:01:04.000] request: { "seq": 0, "type": "request", @@ -200,11 +200,11 @@ FsWatches:: FsWatchesRecursive:: -Info 2 [16:01:05.000] Search path: /user/username/projects/myproject/main -Info 3 [16:01:06.000] For info: /user/username/projects/myproject/main/main.ts :: Config file name: /user/username/projects/myproject/main/tsconfig.json -Info 4 [16:01:07.000] Creating configuration project /user/username/projects/myproject/main/tsconfig.json -Info 5 [16:01:08.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/main/tsconfig.json 2000 undefined Project: /user/username/projects/myproject/main/tsconfig.json WatchType: Config file -Info 6 [16:01:09.000] Config: /user/username/projects/myproject/main/tsconfig.json : { +Info 2 [00:01:05.000] Search path: /user/username/projects/myproject/main +Info 3 [00:01:06.000] For info: /user/username/projects/myproject/main/main.ts :: Config file name: /user/username/projects/myproject/main/tsconfig.json +Info 4 [00:01:07.000] Creating configuration project /user/username/projects/myproject/main/tsconfig.json +Info 5 [00:01:08.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/main/tsconfig.json 2000 undefined Project: /user/username/projects/myproject/main/tsconfig.json WatchType: Config file +Info 6 [00:01:09.000] Config: /user/username/projects/myproject/main/tsconfig.json : { "rootNames": [ "/user/username/projects/myproject/main/main.ts" ], @@ -214,21 +214,21 @@ Info 6 [16:01:09.000] Config: /user/username/projects/myproject/main/tsconfig "configFilePath": "/user/username/projects/myproject/main/tsconfig.json" } } -Info 7 [16:01:10.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/main 1 undefined Config: /user/username/projects/myproject/main/tsconfig.json WatchType: Wild card directory -Info 8 [16:01:11.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/main 1 undefined Config: /user/username/projects/myproject/main/tsconfig.json WatchType: Wild card directory -Info 9 [16:01:12.000] Plugins were requested but not running in environment that supports 'require'. Nothing will be loaded -Info 10 [16:01:13.000] Starting updateGraphWorker: Project: /user/username/projects/myproject/main/tsconfig.json -Info 11 [16:01:14.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/decls 1 undefined Project: /user/username/projects/myproject/main/tsconfig.json WatchType: Failed Lookup Locations -Info 12 [16:01:15.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/decls 1 undefined Project: /user/username/projects/myproject/main/tsconfig.json WatchType: Failed Lookup Locations -Info 13 [16:01:16.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/decls/fns.d.ts 500 undefined WatchType: Closed Script info -Info 14 [16:01:17.000] FileWatcher:: Added:: WatchInfo: /a/lib/lib.d.ts 500 undefined WatchType: Closed Script info -Info 15 [16:01:18.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/main/node_modules/@types 1 undefined Project: /user/username/projects/myproject/main/tsconfig.json WatchType: Type roots -Info 16 [16:01:19.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/main/node_modules/@types 1 undefined Project: /user/username/projects/myproject/main/tsconfig.json WatchType: Type roots -Info 17 [16:01:20.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/main/tsconfig.json WatchType: Type roots -Info 18 [16:01:21.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/main/tsconfig.json WatchType: Type roots -Info 19 [16:01:22.000] Finishing updateGraphWorker: Project: /user/username/projects/myproject/main/tsconfig.json Version: 1 structureChanged: true structureIsReused:: Not Elapsed:: *ms -Info 20 [16:01:23.000] Project '/user/username/projects/myproject/main/tsconfig.json' (Configured) -Info 21 [16:01:24.000] Files (3) +Info 7 [00:01:10.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/main 1 undefined Config: /user/username/projects/myproject/main/tsconfig.json WatchType: Wild card directory +Info 8 [00:01:11.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/main 1 undefined Config: /user/username/projects/myproject/main/tsconfig.json WatchType: Wild card directory +Info 9 [00:01:12.000] Plugins were requested but not running in environment that supports 'require'. Nothing will be loaded +Info 10 [00:01:13.000] Starting updateGraphWorker: Project: /user/username/projects/myproject/main/tsconfig.json +Info 11 [00:01:14.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/decls 1 undefined Project: /user/username/projects/myproject/main/tsconfig.json WatchType: Failed Lookup Locations +Info 12 [00:01:15.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/decls 1 undefined Project: /user/username/projects/myproject/main/tsconfig.json WatchType: Failed Lookup Locations +Info 13 [00:01:16.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/decls/fns.d.ts 500 undefined WatchType: Closed Script info +Info 14 [00:01:17.000] FileWatcher:: Added:: WatchInfo: /a/lib/lib.d.ts 500 undefined WatchType: Closed Script info +Info 15 [00:01:18.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/main/node_modules/@types 1 undefined Project: /user/username/projects/myproject/main/tsconfig.json WatchType: Type roots +Info 16 [00:01:19.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/main/node_modules/@types 1 undefined Project: /user/username/projects/myproject/main/tsconfig.json WatchType: Type roots +Info 17 [00:01:20.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/main/tsconfig.json WatchType: Type roots +Info 18 [00:01:21.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/main/tsconfig.json WatchType: Type roots +Info 19 [00:01:22.000] Finishing updateGraphWorker: Project: /user/username/projects/myproject/main/tsconfig.json Version: 1 structureChanged: true structureIsReused:: Not Elapsed:: *ms +Info 20 [00:01:23.000] Project '/user/username/projects/myproject/main/tsconfig.json' (Configured) +Info 21 [00:01:24.000] Files (3) /a/lib/lib.d.ts /user/username/projects/myproject/decls/fns.d.ts /user/username/projects/myproject/main/main.ts @@ -241,16 +241,16 @@ Info 21 [16:01:24.000] Files (3) main.ts Matched by default include pattern '**/*' -Info 22 [16:01:25.000] ----------------------------------------------- -Info 23 [16:01:26.000] Search path: /user/username/projects/myproject/main -Info 24 [16:01:27.000] For info: /user/username/projects/myproject/main/tsconfig.json :: No config files found. -Info 25 [16:01:28.000] Project '/user/username/projects/myproject/main/tsconfig.json' (Configured) -Info 25 [16:01:29.000] Files (3) +Info 22 [00:01:25.000] ----------------------------------------------- +Info 23 [00:01:26.000] Search path: /user/username/projects/myproject/main +Info 24 [00:01:27.000] For info: /user/username/projects/myproject/main/tsconfig.json :: No config files found. +Info 25 [00:01:28.000] Project '/user/username/projects/myproject/main/tsconfig.json' (Configured) +Info 25 [00:01:29.000] Files (3) -Info 25 [16:01:30.000] ----------------------------------------------- -Info 25 [16:01:31.000] Open files: -Info 25 [16:01:32.000] FileName: /user/username/projects/myproject/main/main.ts ProjectRootPath: undefined -Info 25 [16:01:33.000] Projects: /user/username/projects/myproject/main/tsconfig.json +Info 25 [00:01:30.000] ----------------------------------------------- +Info 25 [00:01:31.000] Open files: +Info 25 [00:01:32.000] FileName: /user/username/projects/myproject/main/main.ts ProjectRootPath: undefined +Info 25 [00:01:33.000] Projects: /user/username/projects/myproject/main/tsconfig.json After request PolledWatches:: @@ -273,11 +273,11 @@ FsWatchesRecursive:: /user/username/projects/myproject/decls: {} -Info 25 [16:01:34.000] response: +Info 25 [00:01:34.000] response: { "responseRequired": false } -Info 26 [16:01:35.000] request: +Info 26 [00:01:35.000] request: { "seq": 0, "type": "request", @@ -308,11 +308,11 @@ FsWatchesRecursive:: /user/username/projects/myproject/decls: {} -Info 27 [16:01:36.000] Search path: /user/username/projects/myproject/random -Info 28 [16:01:37.000] For info: /user/username/projects/myproject/random/random.ts :: Config file name: /user/username/projects/myproject/random/tsconfig.json -Info 29 [16:01:38.000] Creating configuration project /user/username/projects/myproject/random/tsconfig.json -Info 30 [16:01:39.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/random/tsconfig.json 2000 undefined Project: /user/username/projects/myproject/random/tsconfig.json WatchType: Config file -Info 31 [16:01:40.000] Config: /user/username/projects/myproject/random/tsconfig.json : { +Info 27 [00:01:36.000] Search path: /user/username/projects/myproject/random +Info 28 [00:01:37.000] For info: /user/username/projects/myproject/random/random.ts :: Config file name: /user/username/projects/myproject/random/tsconfig.json +Info 29 [00:01:38.000] Creating configuration project /user/username/projects/myproject/random/tsconfig.json +Info 30 [00:01:39.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/random/tsconfig.json 2000 undefined Project: /user/username/projects/myproject/random/tsconfig.json WatchType: Config file +Info 31 [00:01:40.000] Config: /user/username/projects/myproject/random/tsconfig.json : { "rootNames": [ "/user/username/projects/myproject/random/random.ts" ], @@ -320,17 +320,17 @@ Info 31 [16:01:40.000] Config: /user/username/projects/myproject/random/tsconf "configFilePath": "/user/username/projects/myproject/random/tsconfig.json" } } -Info 32 [16:01:41.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/random 1 undefined Config: /user/username/projects/myproject/random/tsconfig.json WatchType: Wild card directory -Info 33 [16:01:42.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/random 1 undefined Config: /user/username/projects/myproject/random/tsconfig.json WatchType: Wild card directory -Info 34 [16:01:43.000] Plugins were requested but not running in environment that supports 'require'. Nothing will be loaded -Info 35 [16:01:44.000] Starting updateGraphWorker: Project: /user/username/projects/myproject/random/tsconfig.json -Info 36 [16:01:45.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/random/node_modules/@types 1 undefined Project: /user/username/projects/myproject/random/tsconfig.json WatchType: Type roots -Info 37 [16:01:46.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/random/node_modules/@types 1 undefined Project: /user/username/projects/myproject/random/tsconfig.json WatchType: Type roots -Info 38 [16:01:47.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/random/tsconfig.json WatchType: Type roots -Info 39 [16:01:48.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/random/tsconfig.json WatchType: Type roots -Info 40 [16:01:49.000] Finishing updateGraphWorker: Project: /user/username/projects/myproject/random/tsconfig.json Version: 1 structureChanged: true structureIsReused:: Not Elapsed:: *ms -Info 41 [16:01:50.000] Project '/user/username/projects/myproject/random/tsconfig.json' (Configured) -Info 42 [16:01:51.000] Files (2) +Info 32 [00:01:41.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/random 1 undefined Config: /user/username/projects/myproject/random/tsconfig.json WatchType: Wild card directory +Info 33 [00:01:42.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/random 1 undefined Config: /user/username/projects/myproject/random/tsconfig.json WatchType: Wild card directory +Info 34 [00:01:43.000] Plugins were requested but not running in environment that supports 'require'. Nothing will be loaded +Info 35 [00:01:44.000] Starting updateGraphWorker: Project: /user/username/projects/myproject/random/tsconfig.json +Info 36 [00:01:45.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/random/node_modules/@types 1 undefined Project: /user/username/projects/myproject/random/tsconfig.json WatchType: Type roots +Info 37 [00:01:46.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/random/node_modules/@types 1 undefined Project: /user/username/projects/myproject/random/tsconfig.json WatchType: Type roots +Info 38 [00:01:47.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/random/tsconfig.json WatchType: Type roots +Info 39 [00:01:48.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/random/tsconfig.json WatchType: Type roots +Info 40 [00:01:49.000] Finishing updateGraphWorker: Project: /user/username/projects/myproject/random/tsconfig.json Version: 1 structureChanged: true structureIsReused:: Not Elapsed:: *ms +Info 41 [00:01:50.000] Project '/user/username/projects/myproject/random/tsconfig.json' (Configured) +Info 42 [00:01:51.000] Files (2) /a/lib/lib.d.ts /user/username/projects/myproject/random/random.ts @@ -340,20 +340,20 @@ Info 42 [16:01:51.000] Files (2) random.ts Matched by default include pattern '**/*' -Info 43 [16:01:52.000] ----------------------------------------------- -Info 44 [16:01:53.000] Project '/user/username/projects/myproject/main/tsconfig.json' (Configured) -Info 44 [16:01:54.000] Files (3) +Info 43 [00:01:52.000] ----------------------------------------------- +Info 44 [00:01:53.000] Project '/user/username/projects/myproject/main/tsconfig.json' (Configured) +Info 44 [00:01:54.000] Files (3) -Info 44 [16:01:55.000] ----------------------------------------------- -Info 44 [16:01:56.000] Project '/user/username/projects/myproject/random/tsconfig.json' (Configured) -Info 44 [16:01:57.000] Files (2) +Info 44 [00:01:55.000] ----------------------------------------------- +Info 44 [00:01:56.000] Project '/user/username/projects/myproject/random/tsconfig.json' (Configured) +Info 44 [00:01:57.000] Files (2) -Info 44 [16:01:58.000] ----------------------------------------------- -Info 44 [16:01:59.000] Open files: -Info 44 [16:02:00.000] FileName: /user/username/projects/myproject/main/main.ts ProjectRootPath: undefined -Info 44 [16:02:01.000] Projects: /user/username/projects/myproject/main/tsconfig.json -Info 44 [16:02:02.000] FileName: /user/username/projects/myproject/random/random.ts ProjectRootPath: undefined -Info 44 [16:02:03.000] Projects: /user/username/projects/myproject/random/tsconfig.json +Info 44 [00:01:58.000] ----------------------------------------------- +Info 44 [00:01:59.000] Open files: +Info 44 [00:02:00.000] FileName: /user/username/projects/myproject/main/main.ts ProjectRootPath: undefined +Info 44 [00:02:01.000] Projects: /user/username/projects/myproject/main/tsconfig.json +Info 44 [00:02:02.000] FileName: /user/username/projects/myproject/random/random.ts ProjectRootPath: undefined +Info 44 [00:02:03.000] Projects: /user/username/projects/myproject/random/tsconfig.json After request PolledWatches:: @@ -382,11 +382,11 @@ FsWatchesRecursive:: /user/username/projects/myproject/random: {} -Info 44 [16:02:04.000] response: +Info 44 [00:02:04.000] response: { "responseRequired": false } -Info 45 [16:02:05.000] request: +Info 45 [00:02:05.000] request: { "command": "definitionAndBoundSpan", "arguments": { @@ -425,8 +425,8 @@ FsWatchesRecursive:: /user/username/projects/myproject/random: {} -Info 46 [16:02:06.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/decls/FnS.d.ts.map 500 undefined WatchType: Closed Script info -Info 47 [16:02:07.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/dependency/FnS.ts 500 undefined WatchType: Closed Script info +Info 46 [00:02:06.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/decls/FnS.d.ts.map 500 undefined WatchType: Closed Script info +Info 47 [00:02:07.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/dependency/FnS.ts 500 undefined WatchType: Closed Script info After request PolledWatches:: @@ -459,7 +459,7 @@ FsWatchesRecursive:: /user/username/projects/myproject/random: {} -Info 48 [16:02:08.000] response: +Info 48 [00:02:08.000] response: { "response": { "definitions": [ @@ -496,7 +496,7 @@ Info 48 [16:02:08.000] response: }, "responseRequired": true } -Info 49 [16:02:09.000] request: +Info 49 [00:02:09.000] request: { "command": "change", "arguments": { @@ -574,11 +574,11 @@ FsWatchesRecursive:: /user/username/projects/myproject/random: {} -Info 50 [16:02:10.000] response: +Info 50 [00:02:10.000] response: { "responseRequired": false } -Info 51 [16:02:11.000] request: +Info 51 [00:02:11.000] request: { "command": "definitionAndBoundSpan", "arguments": { @@ -621,9 +621,9 @@ FsWatchesRecursive:: /user/username/projects/myproject/random: {} -Info 52 [16:02:12.000] Starting updateGraphWorker: Project: /user/username/projects/myproject/main/tsconfig.json -Info 53 [16:02:13.000] Finishing updateGraphWorker: Project: /user/username/projects/myproject/main/tsconfig.json Version: 2 structureChanged: false structureIsReused:: Completely Elapsed:: *ms -Info 54 [16:02:14.000] Different program with same set of files +Info 52 [00:02:12.000] Starting updateGraphWorker: Project: /user/username/projects/myproject/main/tsconfig.json +Info 53 [00:02:13.000] Finishing updateGraphWorker: Project: /user/username/projects/myproject/main/tsconfig.json Version: 2 structureChanged: false structureIsReused:: Completely Elapsed:: *ms +Info 54 [00:02:14.000] Different program with same set of files After request PolledWatches:: @@ -656,7 +656,7 @@ FsWatchesRecursive:: /user/username/projects/myproject/random: {} -Info 55 [16:02:15.000] response: +Info 55 [00:02:15.000] response: { "response": { "definitions": [ @@ -693,7 +693,7 @@ Info 55 [16:02:15.000] response: }, "responseRequired": true } -Info 56 [16:02:16.000] request: +Info 56 [00:02:16.000] request: { "command": "definitionAndBoundSpan", "arguments": { @@ -768,7 +768,7 @@ FsWatchesRecursive:: /user/username/projects/myproject/random: {} -Info 57 [16:02:17.000] response: +Info 57 [00:02:17.000] response: { "response": { "definitions": [ @@ -805,7 +805,7 @@ Info 57 [16:02:17.000] response: }, "responseRequired": true } -Info 58 [16:02:18.000] request: +Info 58 [00:02:18.000] request: { "command": "definitionAndBoundSpan", "arguments": { @@ -880,7 +880,7 @@ FsWatchesRecursive:: /user/username/projects/myproject/random: {} -Info 59 [16:02:19.000] response: +Info 59 [00:02:19.000] response: { "response": { "definitions": [ @@ -917,7 +917,7 @@ Info 59 [16:02:19.000] response: }, "responseRequired": true } -Info 60 [16:02:20.000] request: +Info 60 [00:02:20.000] request: { "command": "definitionAndBoundSpan", "arguments": { @@ -992,7 +992,7 @@ FsWatchesRecursive:: /user/username/projects/myproject/random: {} -Info 61 [16:02:21.000] response: +Info 61 [00:02:21.000] response: { "response": { "definitions": [ @@ -1029,7 +1029,7 @@ Info 61 [16:02:21.000] response: }, "responseRequired": true } -Info 62 [16:02:22.000] request: +Info 62 [00:02:22.000] request: { "command": "definitionAndBoundSpan", "arguments": { @@ -1104,7 +1104,7 @@ FsWatchesRecursive:: /user/username/projects/myproject/random: {} -Info 63 [16:02:23.000] response: +Info 63 [00:02:23.000] response: { "response": { "definitions": [ 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 5044e61f64e83..c20bcc3ec7cc9 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 @@ -1,5 +1,5 @@ -Info 0 [16:01:00.000] Provided types map file "/a/lib/typesMap.json" doesn't exist -Info 1 [16:01:01.000] request: +Info 0 [00:01:00.000] Provided types map file "/a/lib/typesMap.json" doesn't exist +Info 1 [00:01:01.000] request: { "seq": 0, "type": "request", @@ -200,11 +200,11 @@ FsWatches:: FsWatchesRecursive:: -Info 2 [16:01:02.000] Search path: /user/username/projects/myproject/main -Info 3 [16:01:03.000] For info: /user/username/projects/myproject/main/main.ts :: Config file name: /user/username/projects/myproject/main/tsconfig.json -Info 4 [16:01:04.000] Creating configuration project /user/username/projects/myproject/main/tsconfig.json -Info 5 [16:01:05.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/main/tsconfig.json 2000 undefined Project: /user/username/projects/myproject/main/tsconfig.json WatchType: Config file -Info 6 [16:01:06.000] Config: /user/username/projects/myproject/main/tsconfig.json : { +Info 2 [00:01:02.000] Search path: /user/username/projects/myproject/main +Info 3 [00:01:03.000] For info: /user/username/projects/myproject/main/main.ts :: Config file name: /user/username/projects/myproject/main/tsconfig.json +Info 4 [00:01:04.000] Creating configuration project /user/username/projects/myproject/main/tsconfig.json +Info 5 [00:01:05.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/main/tsconfig.json 2000 undefined Project: /user/username/projects/myproject/main/tsconfig.json WatchType: Config file +Info 6 [00:01:06.000] Config: /user/username/projects/myproject/main/tsconfig.json : { "rootNames": [ "/user/username/projects/myproject/main/main.ts" ], @@ -220,11 +220,11 @@ Info 6 [16:01:06.000] Config: /user/username/projects/myproject/main/tsconfig } ] } -Info 7 [16:01:07.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/main 1 undefined Config: /user/username/projects/myproject/main/tsconfig.json WatchType: Wild card directory -Info 8 [16:01:08.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/main 1 undefined Config: /user/username/projects/myproject/main/tsconfig.json WatchType: Wild card directory -Info 9 [16:01:09.000] Plugins were requested but not running in environment that supports 'require'. Nothing will be loaded -Info 10 [16:01:10.000] Starting updateGraphWorker: Project: /user/username/projects/myproject/main/tsconfig.json -Info 11 [16:01:11.000] Config: /user/username/projects/myproject/dependency/tsconfig.json : { +Info 7 [00:01:07.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/main 1 undefined Config: /user/username/projects/myproject/main/tsconfig.json WatchType: Wild card directory +Info 8 [00:01:08.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/main 1 undefined Config: /user/username/projects/myproject/main/tsconfig.json WatchType: Wild card directory +Info 9 [00:01:09.000] Plugins were requested but not running in environment that supports 'require'. Nothing will be loaded +Info 10 [00:01:10.000] Starting updateGraphWorker: Project: /user/username/projects/myproject/main/tsconfig.json +Info 11 [00:01:11.000] Config: /user/username/projects/myproject/dependency/tsconfig.json : { "rootNames": [ "/user/username/projects/myproject/dependency/FnS.ts" ], @@ -235,20 +235,20 @@ Info 11 [16:01:11.000] Config: /user/username/projects/myproject/dependency/ts "configFilePath": "/user/username/projects/myproject/dependency/tsconfig.json" } } -Info 12 [16:01:12.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/dependency/tsconfig.json 2000 undefined Project: /user/username/projects/myproject/main/tsconfig.json WatchType: Config file -Info 13 [16:01:13.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/dependency 1 undefined Config: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Wild card directory -Info 14 [16:01:14.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/dependency 1 undefined Config: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Wild card directory -Info 15 [16:01:15.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/decls 1 undefined Project: /user/username/projects/myproject/main/tsconfig.json WatchType: Failed Lookup Locations -Info 16 [16:01:16.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/decls 1 undefined Project: /user/username/projects/myproject/main/tsconfig.json WatchType: Failed Lookup Locations -Info 17 [16:01:17.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/dependency/FnS.ts 500 undefined WatchType: Closed Script info -Info 18 [16:01:18.000] FileWatcher:: Added:: WatchInfo: /a/lib/lib.d.ts 500 undefined WatchType: Closed Script info -Info 19 [16:01:19.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/main/node_modules/@types 1 undefined Project: /user/username/projects/myproject/main/tsconfig.json WatchType: Type roots -Info 20 [16:01:20.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/main/node_modules/@types 1 undefined Project: /user/username/projects/myproject/main/tsconfig.json WatchType: Type roots -Info 21 [16:01:21.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/main/tsconfig.json WatchType: Type roots -Info 22 [16:01:22.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/main/tsconfig.json WatchType: Type roots -Info 23 [16:01:23.000] Finishing updateGraphWorker: Project: /user/username/projects/myproject/main/tsconfig.json Version: 1 structureChanged: true structureIsReused:: Not Elapsed:: *ms -Info 24 [16:01:24.000] Project '/user/username/projects/myproject/main/tsconfig.json' (Configured) -Info 25 [16:01:25.000] Files (3) +Info 12 [00:01:12.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/dependency/tsconfig.json 2000 undefined Project: /user/username/projects/myproject/main/tsconfig.json WatchType: Config file +Info 13 [00:01:13.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/dependency 1 undefined Config: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Wild card directory +Info 14 [00:01:14.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/dependency 1 undefined Config: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Wild card directory +Info 15 [00:01:15.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/decls 1 undefined Project: /user/username/projects/myproject/main/tsconfig.json WatchType: Failed Lookup Locations +Info 16 [00:01:16.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/decls 1 undefined Project: /user/username/projects/myproject/main/tsconfig.json WatchType: Failed Lookup Locations +Info 17 [00:01:17.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/dependency/FnS.ts 500 undefined WatchType: Closed Script info +Info 18 [00:01:18.000] FileWatcher:: Added:: WatchInfo: /a/lib/lib.d.ts 500 undefined WatchType: Closed Script info +Info 19 [00:01:19.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/main/node_modules/@types 1 undefined Project: /user/username/projects/myproject/main/tsconfig.json WatchType: Type roots +Info 20 [00:01:20.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/main/node_modules/@types 1 undefined Project: /user/username/projects/myproject/main/tsconfig.json WatchType: Type roots +Info 21 [00:01:21.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/main/tsconfig.json WatchType: Type roots +Info 22 [00:01:22.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/main/tsconfig.json WatchType: Type roots +Info 23 [00:01:23.000] Finishing updateGraphWorker: Project: /user/username/projects/myproject/main/tsconfig.json Version: 1 structureChanged: true structureIsReused:: Not Elapsed:: *ms +Info 24 [00:01:24.000] Project '/user/username/projects/myproject/main/tsconfig.json' (Configured) +Info 25 [00:01:25.000] Files (3) /a/lib/lib.d.ts /user/username/projects/myproject/dependency/FnS.ts /user/username/projects/myproject/main/main.ts @@ -261,16 +261,16 @@ Info 25 [16:01:25.000] Files (3) main.ts Matched by default include pattern '**/*' -Info 26 [16:01:26.000] ----------------------------------------------- -Info 27 [16:01:27.000] Search path: /user/username/projects/myproject/main -Info 28 [16:01:28.000] For info: /user/username/projects/myproject/main/tsconfig.json :: No config files found. -Info 29 [16:01:29.000] Project '/user/username/projects/myproject/main/tsconfig.json' (Configured) -Info 29 [16:01:30.000] Files (3) +Info 26 [00:01:26.000] ----------------------------------------------- +Info 27 [00:01:27.000] Search path: /user/username/projects/myproject/main +Info 28 [00:01:28.000] For info: /user/username/projects/myproject/main/tsconfig.json :: No config files found. +Info 29 [00:01:29.000] Project '/user/username/projects/myproject/main/tsconfig.json' (Configured) +Info 29 [00:01:30.000] Files (3) -Info 29 [16:01:31.000] ----------------------------------------------- -Info 29 [16:01:32.000] Open files: -Info 29 [16:01:33.000] FileName: /user/username/projects/myproject/main/main.ts ProjectRootPath: undefined -Info 29 [16:01:34.000] Projects: /user/username/projects/myproject/main/tsconfig.json +Info 29 [00:01:31.000] ----------------------------------------------- +Info 29 [00:01:32.000] Open files: +Info 29 [00:01:33.000] FileName: /user/username/projects/myproject/main/main.ts ProjectRootPath: undefined +Info 29 [00:01:34.000] Projects: /user/username/projects/myproject/main/tsconfig.json After request PolledWatches:: @@ -297,11 +297,11 @@ FsWatchesRecursive:: /user/username/projects/myproject/decls: {} -Info 29 [16:01:35.000] response: +Info 29 [00:01:35.000] response: { "responseRequired": false } -Info 30 [16:01:36.000] request: +Info 30 [00:01:36.000] request: { "seq": 0, "type": "request", @@ -336,11 +336,11 @@ FsWatchesRecursive:: /user/username/projects/myproject/decls: {} -Info 31 [16:01:37.000] Search path: /user/username/projects/myproject/random -Info 32 [16:01:38.000] For info: /user/username/projects/myproject/random/random.ts :: Config file name: /user/username/projects/myproject/random/tsconfig.json -Info 33 [16:01:39.000] Creating configuration project /user/username/projects/myproject/random/tsconfig.json -Info 34 [16:01:40.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/random/tsconfig.json 2000 undefined Project: /user/username/projects/myproject/random/tsconfig.json WatchType: Config file -Info 35 [16:01:41.000] Config: /user/username/projects/myproject/random/tsconfig.json : { +Info 31 [00:01:37.000] Search path: /user/username/projects/myproject/random +Info 32 [00:01:38.000] For info: /user/username/projects/myproject/random/random.ts :: Config file name: /user/username/projects/myproject/random/tsconfig.json +Info 33 [00:01:39.000] Creating configuration project /user/username/projects/myproject/random/tsconfig.json +Info 34 [00:01:40.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/random/tsconfig.json 2000 undefined Project: /user/username/projects/myproject/random/tsconfig.json WatchType: Config file +Info 35 [00:01:41.000] Config: /user/username/projects/myproject/random/tsconfig.json : { "rootNames": [ "/user/username/projects/myproject/random/random.ts" ], @@ -348,17 +348,17 @@ Info 35 [16:01:41.000] Config: /user/username/projects/myproject/random/tsconf "configFilePath": "/user/username/projects/myproject/random/tsconfig.json" } } -Info 36 [16:01:42.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/random 1 undefined Config: /user/username/projects/myproject/random/tsconfig.json WatchType: Wild card directory -Info 37 [16:01:43.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/random 1 undefined Config: /user/username/projects/myproject/random/tsconfig.json WatchType: Wild card directory -Info 38 [16:01:44.000] Plugins were requested but not running in environment that supports 'require'. Nothing will be loaded -Info 39 [16:01:45.000] Starting updateGraphWorker: Project: /user/username/projects/myproject/random/tsconfig.json -Info 40 [16:01:46.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/random/node_modules/@types 1 undefined Project: /user/username/projects/myproject/random/tsconfig.json WatchType: Type roots -Info 41 [16:01:47.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/random/node_modules/@types 1 undefined Project: /user/username/projects/myproject/random/tsconfig.json WatchType: Type roots -Info 42 [16:01:48.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/random/tsconfig.json WatchType: Type roots -Info 43 [16:01:49.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/random/tsconfig.json WatchType: Type roots -Info 44 [16:01:50.000] Finishing updateGraphWorker: Project: /user/username/projects/myproject/random/tsconfig.json Version: 1 structureChanged: true structureIsReused:: Not Elapsed:: *ms -Info 45 [16:01:51.000] Project '/user/username/projects/myproject/random/tsconfig.json' (Configured) -Info 46 [16:01:52.000] Files (2) +Info 36 [00:01:42.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/random 1 undefined Config: /user/username/projects/myproject/random/tsconfig.json WatchType: Wild card directory +Info 37 [00:01:43.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/random 1 undefined Config: /user/username/projects/myproject/random/tsconfig.json WatchType: Wild card directory +Info 38 [00:01:44.000] Plugins were requested but not running in environment that supports 'require'. Nothing will be loaded +Info 39 [00:01:45.000] Starting updateGraphWorker: Project: /user/username/projects/myproject/random/tsconfig.json +Info 40 [00:01:46.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/random/node_modules/@types 1 undefined Project: /user/username/projects/myproject/random/tsconfig.json WatchType: Type roots +Info 41 [00:01:47.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/random/node_modules/@types 1 undefined Project: /user/username/projects/myproject/random/tsconfig.json WatchType: Type roots +Info 42 [00:01:48.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/random/tsconfig.json WatchType: Type roots +Info 43 [00:01:49.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/random/tsconfig.json WatchType: Type roots +Info 44 [00:01:50.000] Finishing updateGraphWorker: Project: /user/username/projects/myproject/random/tsconfig.json Version: 1 structureChanged: true structureIsReused:: Not Elapsed:: *ms +Info 45 [00:01:51.000] Project '/user/username/projects/myproject/random/tsconfig.json' (Configured) +Info 46 [00:01:52.000] Files (2) /a/lib/lib.d.ts /user/username/projects/myproject/random/random.ts @@ -368,20 +368,20 @@ Info 46 [16:01:52.000] Files (2) random.ts Matched by default include pattern '**/*' -Info 47 [16:01:53.000] ----------------------------------------------- -Info 48 [16:01:54.000] Project '/user/username/projects/myproject/main/tsconfig.json' (Configured) -Info 48 [16:01:55.000] Files (3) +Info 47 [00:01:53.000] ----------------------------------------------- +Info 48 [00:01:54.000] Project '/user/username/projects/myproject/main/tsconfig.json' (Configured) +Info 48 [00:01:55.000] Files (3) -Info 48 [16:01:56.000] ----------------------------------------------- -Info 48 [16:01:57.000] Project '/user/username/projects/myproject/random/tsconfig.json' (Configured) -Info 48 [16:01:58.000] Files (2) +Info 48 [00:01:56.000] ----------------------------------------------- +Info 48 [00:01:57.000] Project '/user/username/projects/myproject/random/tsconfig.json' (Configured) +Info 48 [00:01:58.000] Files (2) -Info 48 [16:01:59.000] ----------------------------------------------- -Info 48 [16:02:00.000] Open files: -Info 48 [16:02:01.000] FileName: /user/username/projects/myproject/main/main.ts ProjectRootPath: undefined -Info 48 [16:02:02.000] Projects: /user/username/projects/myproject/main/tsconfig.json -Info 48 [16:02:03.000] FileName: /user/username/projects/myproject/random/random.ts ProjectRootPath: undefined -Info 48 [16:02:04.000] Projects: /user/username/projects/myproject/random/tsconfig.json +Info 48 [00:01:59.000] ----------------------------------------------- +Info 48 [00:02:00.000] Open files: +Info 48 [00:02:01.000] FileName: /user/username/projects/myproject/main/main.ts ProjectRootPath: undefined +Info 48 [00:02:02.000] Projects: /user/username/projects/myproject/main/tsconfig.json +Info 48 [00:02:03.000] FileName: /user/username/projects/myproject/random/random.ts ProjectRootPath: undefined +Info 48 [00:02:04.000] Projects: /user/username/projects/myproject/random/tsconfig.json After request PolledWatches:: @@ -414,11 +414,11 @@ FsWatchesRecursive:: /user/username/projects/myproject/random: {} -Info 48 [16:02:05.000] response: +Info 48 [00:02:05.000] response: { "responseRequired": false } -Info 49 [16:02:06.000] request: +Info 49 [00:02:06.000] request: { "command": "definitionAndBoundSpan", "arguments": { @@ -493,7 +493,7 @@ FsWatchesRecursive:: /user/username/projects/myproject/random: {} -Info 50 [16:02:07.000] response: +Info 50 [00:02:07.000] response: { "response": { "definitions": [ @@ -530,7 +530,7 @@ Info 50 [16:02:07.000] response: }, "responseRequired": true } -Info 51 [16:02:08.000] request: +Info 51 [00:02:08.000] request: { "command": "definitionAndBoundSpan", "arguments": { @@ -605,7 +605,7 @@ FsWatchesRecursive:: /user/username/projects/myproject/random: {} -Info 52 [16:02:09.000] response: +Info 52 [00:02:09.000] response: { "response": { "definitions": [ @@ -642,7 +642,7 @@ Info 52 [16:02:09.000] response: }, "responseRequired": true } -Info 53 [16:02:10.000] request: +Info 53 [00:02:10.000] request: { "command": "definitionAndBoundSpan", "arguments": { @@ -717,7 +717,7 @@ FsWatchesRecursive:: /user/username/projects/myproject/random: {} -Info 54 [16:02:11.000] response: +Info 54 [00:02:11.000] response: { "response": { "definitions": [ @@ -754,7 +754,7 @@ Info 54 [16:02:11.000] response: }, "responseRequired": true } -Info 55 [16:02:12.000] request: +Info 55 [00:02:12.000] request: { "command": "definitionAndBoundSpan", "arguments": { @@ -829,7 +829,7 @@ FsWatchesRecursive:: /user/username/projects/myproject/random: {} -Info 56 [16:02:13.000] response: +Info 56 [00:02:13.000] response: { "response": { "definitions": [ @@ -866,7 +866,7 @@ Info 56 [16:02:13.000] response: }, "responseRequired": true } -Info 57 [16:02:14.000] request: +Info 57 [00:02:14.000] request: { "command": "definitionAndBoundSpan", "arguments": { @@ -941,7 +941,7 @@ FsWatchesRecursive:: /user/username/projects/myproject/random: {} -Info 58 [16:02:15.000] response: +Info 58 [00:02:15.000] response: { "response": { "definitions": [ @@ -978,7 +978,7 @@ Info 58 [16:02:15.000] response: }, "responseRequired": true } -Info 59 [16:02:16.000] request: +Info 59 [00:02:16.000] request: { "seq": 0, "type": "request", @@ -1019,18 +1019,18 @@ FsWatchesRecursive:: /user/username/projects/myproject/random: {} -Info 60 [16:02:17.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/random/random.ts 500 undefined WatchType: Closed Script info -Info 61 [16:02:18.000] Project '/user/username/projects/myproject/main/tsconfig.json' (Configured) -Info 61 [16:02:19.000] Files (3) +Info 60 [00:02:17.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/random/random.ts 500 undefined WatchType: Closed Script info +Info 61 [00:02:18.000] Project '/user/username/projects/myproject/main/tsconfig.json' (Configured) +Info 61 [00:02:19.000] Files (3) -Info 61 [16:02:20.000] ----------------------------------------------- -Info 61 [16:02:21.000] Project '/user/username/projects/myproject/random/tsconfig.json' (Configured) -Info 61 [16:02:22.000] Files (2) +Info 61 [00:02:20.000] ----------------------------------------------- +Info 61 [00:02:21.000] Project '/user/username/projects/myproject/random/tsconfig.json' (Configured) +Info 61 [00:02:22.000] Files (2) -Info 61 [16:02:23.000] ----------------------------------------------- -Info 61 [16:02:24.000] Open files: -Info 61 [16:02:25.000] FileName: /user/username/projects/myproject/main/main.ts ProjectRootPath: undefined -Info 61 [16:02:26.000] Projects: /user/username/projects/myproject/main/tsconfig.json +Info 61 [00:02:23.000] ----------------------------------------------- +Info 61 [00:02:24.000] Open files: +Info 61 [00:02:25.000] FileName: /user/username/projects/myproject/main/main.ts ProjectRootPath: undefined +Info 61 [00:02:26.000] Projects: /user/username/projects/myproject/main/tsconfig.json After request PolledWatches:: @@ -1065,11 +1065,11 @@ FsWatchesRecursive:: /user/username/projects/myproject/random: {} -Info 61 [16:02:27.000] response: +Info 61 [00:02:27.000] response: { "responseRequired": false } -Info 62 [16:02:28.000] request: +Info 62 [00:02:28.000] request: { "seq": 0, "type": "request", @@ -1112,22 +1112,22 @@ FsWatchesRecursive:: /user/username/projects/myproject/random: {} -Info 63 [16:02:29.000] FileWatcher:: Close:: WatchInfo: /user/username/projects/myproject/random/random.ts 500 undefined WatchType: Closed Script info -Info 64 [16:02:30.000] Search path: /user/username/projects/myproject/random -Info 65 [16:02:31.000] For info: /user/username/projects/myproject/random/random.ts :: Config file name: /user/username/projects/myproject/random/tsconfig.json -Info 66 [16:02:32.000] Project '/user/username/projects/myproject/main/tsconfig.json' (Configured) -Info 66 [16:02:33.000] Files (3) +Info 63 [00:02:29.000] FileWatcher:: Close:: WatchInfo: /user/username/projects/myproject/random/random.ts 500 undefined WatchType: Closed Script info +Info 64 [00:02:30.000] Search path: /user/username/projects/myproject/random +Info 65 [00:02:31.000] For info: /user/username/projects/myproject/random/random.ts :: Config file name: /user/username/projects/myproject/random/tsconfig.json +Info 66 [00:02:32.000] Project '/user/username/projects/myproject/main/tsconfig.json' (Configured) +Info 66 [00:02:33.000] Files (3) -Info 66 [16:02:34.000] ----------------------------------------------- -Info 66 [16:02:35.000] Project '/user/username/projects/myproject/random/tsconfig.json' (Configured) -Info 66 [16:02:36.000] Files (2) +Info 66 [00:02:34.000] ----------------------------------------------- +Info 66 [00:02:35.000] Project '/user/username/projects/myproject/random/tsconfig.json' (Configured) +Info 66 [00:02:36.000] Files (2) -Info 66 [16:02:37.000] ----------------------------------------------- -Info 66 [16:02:38.000] Open files: -Info 66 [16:02:39.000] FileName: /user/username/projects/myproject/main/main.ts ProjectRootPath: undefined -Info 66 [16:02:40.000] Projects: /user/username/projects/myproject/main/tsconfig.json -Info 66 [16:02:41.000] FileName: /user/username/projects/myproject/random/random.ts ProjectRootPath: undefined -Info 66 [16:02:42.000] Projects: /user/username/projects/myproject/random/tsconfig.json +Info 66 [00:02:37.000] ----------------------------------------------- +Info 66 [00:02:38.000] Open files: +Info 66 [00:02:39.000] FileName: /user/username/projects/myproject/main/main.ts ProjectRootPath: undefined +Info 66 [00:02:40.000] Projects: /user/username/projects/myproject/main/tsconfig.json +Info 66 [00:02:41.000] FileName: /user/username/projects/myproject/random/random.ts ProjectRootPath: undefined +Info 66 [00:02:42.000] Projects: /user/username/projects/myproject/random/tsconfig.json After request PolledWatches:: @@ -1160,11 +1160,11 @@ FsWatchesRecursive:: /user/username/projects/myproject/random: {} -Info 66 [16:02:43.000] response: +Info 66 [00:02:43.000] response: { "responseRequired": false } -Info 67 [16:02:44.000] request: +Info 67 [00:02:44.000] request: { "seq": 0, "type": "request", @@ -1205,18 +1205,18 @@ FsWatchesRecursive:: /user/username/projects/myproject/random: {} -Info 68 [16:02:45.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/main/main.ts 500 undefined WatchType: Closed Script info -Info 69 [16:02:46.000] Project '/user/username/projects/myproject/main/tsconfig.json' (Configured) -Info 69 [16:02:47.000] Files (3) +Info 68 [00:02:45.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/main/main.ts 500 undefined WatchType: Closed Script info +Info 69 [00:02:46.000] Project '/user/username/projects/myproject/main/tsconfig.json' (Configured) +Info 69 [00:02:47.000] Files (3) -Info 69 [16:02:48.000] ----------------------------------------------- -Info 69 [16:02:49.000] Project '/user/username/projects/myproject/random/tsconfig.json' (Configured) -Info 69 [16:02:50.000] Files (2) +Info 69 [00:02:48.000] ----------------------------------------------- +Info 69 [00:02:49.000] Project '/user/username/projects/myproject/random/tsconfig.json' (Configured) +Info 69 [00:02:50.000] Files (2) -Info 69 [16:02:51.000] ----------------------------------------------- -Info 69 [16:02:52.000] Open files: -Info 69 [16:02:53.000] FileName: /user/username/projects/myproject/random/random.ts ProjectRootPath: undefined -Info 69 [16:02:54.000] Projects: /user/username/projects/myproject/random/tsconfig.json +Info 69 [00:02:51.000] ----------------------------------------------- +Info 69 [00:02:52.000] Open files: +Info 69 [00:02:53.000] FileName: /user/username/projects/myproject/random/random.ts ProjectRootPath: undefined +Info 69 [00:02:54.000] Projects: /user/username/projects/myproject/random/tsconfig.json After request PolledWatches:: @@ -1251,11 +1251,11 @@ FsWatchesRecursive:: /user/username/projects/myproject/random: {} -Info 69 [16:02:55.000] response: +Info 69 [00:02:55.000] response: { "responseRequired": false } -Info 70 [16:02:56.000] request: +Info 70 [00:02:56.000] request: { "seq": 0, "type": "request", @@ -1298,16 +1298,16 @@ FsWatchesRecursive:: /user/username/projects/myproject/random: {} -Info 71 [16:02:57.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/random/random.ts 500 undefined WatchType: Closed Script info -Info 72 [16:02:58.000] Project '/user/username/projects/myproject/main/tsconfig.json' (Configured) -Info 72 [16:02:59.000] Files (3) +Info 71 [00:02:57.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/random/random.ts 500 undefined WatchType: Closed Script info +Info 72 [00:02:58.000] Project '/user/username/projects/myproject/main/tsconfig.json' (Configured) +Info 72 [00:02:59.000] Files (3) -Info 72 [16:03:00.000] ----------------------------------------------- -Info 72 [16:03:01.000] Project '/user/username/projects/myproject/random/tsconfig.json' (Configured) -Info 72 [16:03:02.000] Files (2) +Info 72 [00:03:00.000] ----------------------------------------------- +Info 72 [00:03:01.000] Project '/user/username/projects/myproject/random/tsconfig.json' (Configured) +Info 72 [00:03:02.000] Files (2) -Info 72 [16:03:03.000] ----------------------------------------------- -Info 72 [16:03:04.000] Open files: +Info 72 [00:03:03.000] ----------------------------------------------- +Info 72 [00:03:04.000] Open files: After request PolledWatches:: @@ -1344,11 +1344,11 @@ FsWatchesRecursive:: /user/username/projects/myproject/random: {} -Info 72 [16:03:05.000] response: +Info 72 [00:03:05.000] response: { "responseRequired": false } -Info 73 [16:03:06.000] request: +Info 73 [00:03:06.000] request: { "seq": 0, "type": "request", @@ -1393,12 +1393,12 @@ FsWatchesRecursive:: /user/username/projects/myproject/random: {} -Info 74 [16:03:07.000] FileWatcher:: Close:: WatchInfo: /user/username/projects/myproject/random/random.ts 500 undefined WatchType: Closed Script info -Info 75 [16:03:08.000] Search path: /user/username/projects/myproject/random -Info 76 [16:03:09.000] For info: /user/username/projects/myproject/random/random.ts :: Config file name: /user/username/projects/myproject/random/tsconfig.json -Info 77 [16:03:10.000] `remove Project:: -Info 78 [16:03:11.000] Project '/user/username/projects/myproject/main/tsconfig.json' (Configured) -Info 79 [16:03:12.000] Files (3) +Info 74 [00:03:07.000] FileWatcher:: Close:: WatchInfo: /user/username/projects/myproject/random/random.ts 500 undefined WatchType: Closed Script info +Info 75 [00:03:08.000] Search path: /user/username/projects/myproject/random +Info 76 [00:03:09.000] For info: /user/username/projects/myproject/random/random.ts :: Config file name: /user/username/projects/myproject/random/tsconfig.json +Info 77 [00:03:10.000] `remove Project:: +Info 78 [00:03:11.000] Project '/user/username/projects/myproject/main/tsconfig.json' (Configured) +Info 79 [00:03:12.000] Files (3) /a/lib/lib.d.ts /user/username/projects/myproject/dependency/FnS.ts /user/username/projects/myproject/main/main.ts @@ -1411,28 +1411,28 @@ Info 79 [16:03:12.000] Files (3) main.ts Matched by default include pattern '**/*' -Info 80 [16:03:13.000] ----------------------------------------------- -Info 81 [16:03:14.000] DirectoryWatcher:: Close:: WatchInfo: /user/username/projects/myproject/main 1 undefined Config: /user/username/projects/myproject/main/tsconfig.json WatchType: Wild card directory -Info 82 [16:03:15.000] 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 83 [16:03:16.000] FileWatcher:: Close:: WatchInfo: /user/username/projects/myproject/main/tsconfig.json 2000 undefined Project: /user/username/projects/myproject/main/tsconfig.json WatchType: Config file -Info 84 [16:03:17.000] DirectoryWatcher:: Close:: WatchInfo: /user/username/projects/myproject/dependency 1 undefined Config: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Wild card directory -Info 85 [16:03:18.000] 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 86 [16:03:19.000] FileWatcher:: Close:: WatchInfo: /user/username/projects/myproject/dependency/tsconfig.json 2000 undefined Project: /user/username/projects/myproject/main/tsconfig.json WatchType: Config file -Info 87 [16:03:20.000] DirectoryWatcher:: Close:: WatchInfo: /user/username/projects/myproject/decls 1 undefined Project: /user/username/projects/myproject/main/tsconfig.json WatchType: Failed Lookup Locations -Info 88 [16:03:21.000] 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 89 [16:03:22.000] 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 90 [16:03:23.000] 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 91 [16:03:24.000] DirectoryWatcher:: Close:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/main/tsconfig.json WatchType: Type roots -Info 92 [16:03:25.000] 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 93 [16:03:26.000] FileWatcher:: Close:: WatchInfo: /user/username/projects/myproject/main/main.ts 500 undefined WatchType: Closed Script info -Info 94 [16:03:27.000] FileWatcher:: Close:: WatchInfo: /user/username/projects/myproject/dependency/FnS.ts 500 undefined WatchType: Closed Script info -Info 95 [16:03:28.000] Project '/user/username/projects/myproject/random/tsconfig.json' (Configured) -Info 95 [16:03:29.000] Files (2) - -Info 95 [16:03:30.000] ----------------------------------------------- -Info 95 [16:03:31.000] Open files: -Info 95 [16:03:32.000] FileName: /user/username/projects/myproject/random/random.ts ProjectRootPath: undefined -Info 95 [16:03:33.000] Projects: /user/username/projects/myproject/random/tsconfig.json +Info 80 [00:03:13.000] ----------------------------------------------- +Info 81 [00:03:14.000] DirectoryWatcher:: Close:: WatchInfo: /user/username/projects/myproject/main 1 undefined Config: /user/username/projects/myproject/main/tsconfig.json WatchType: Wild card directory +Info 82 [00:03:15.000] 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 83 [00:03:16.000] FileWatcher:: Close:: WatchInfo: /user/username/projects/myproject/main/tsconfig.json 2000 undefined Project: /user/username/projects/myproject/main/tsconfig.json WatchType: Config file +Info 84 [00:03:17.000] DirectoryWatcher:: Close:: WatchInfo: /user/username/projects/myproject/dependency 1 undefined Config: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Wild card directory +Info 85 [00:03:18.000] 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 86 [00:03:19.000] FileWatcher:: Close:: WatchInfo: /user/username/projects/myproject/dependency/tsconfig.json 2000 undefined Project: /user/username/projects/myproject/main/tsconfig.json WatchType: Config file +Info 87 [00:03:20.000] DirectoryWatcher:: Close:: WatchInfo: /user/username/projects/myproject/decls 1 undefined Project: /user/username/projects/myproject/main/tsconfig.json WatchType: Failed Lookup Locations +Info 88 [00:03:21.000] 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 89 [00:03:22.000] 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 90 [00:03:23.000] 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 91 [00:03:24.000] DirectoryWatcher:: Close:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/main/tsconfig.json WatchType: Type roots +Info 92 [00:03:25.000] 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 93 [00:03:26.000] FileWatcher:: Close:: WatchInfo: /user/username/projects/myproject/main/main.ts 500 undefined WatchType: Closed Script info +Info 94 [00:03:27.000] FileWatcher:: Close:: WatchInfo: /user/username/projects/myproject/dependency/FnS.ts 500 undefined WatchType: Closed Script info +Info 95 [00:03:28.000] Project '/user/username/projects/myproject/random/tsconfig.json' (Configured) +Info 95 [00:03:29.000] Files (2) + +Info 95 [00:03:30.000] ----------------------------------------------- +Info 95 [00:03:31.000] Open files: +Info 95 [00:03:32.000] FileName: /user/username/projects/myproject/random/random.ts ProjectRootPath: undefined +Info 95 [00:03:33.000] Projects: /user/username/projects/myproject/random/tsconfig.json After request PolledWatches:: @@ -1451,7 +1451,7 @@ FsWatchesRecursive:: /user/username/projects/myproject/random: {} -Info 95 [16:03:34.000] response: +Info 95 [00:03:34.000] response: { "responseRequired": false } \ No newline at end of file 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 be85ca1451765..a70c99362d3fc 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 @@ -1,5 +1,5 @@ -Info 0 [16:01:00.000] Provided types map file "/a/lib/typesMap.json" doesn't exist -Info 1 [16:01:01.000] request: +Info 0 [00:01:00.000] Provided types map file "/a/lib/typesMap.json" doesn't exist +Info 1 [00:01:01.000] request: { "seq": 0, "type": "request", @@ -200,11 +200,11 @@ FsWatches:: FsWatchesRecursive:: -Info 2 [16:01:02.000] Search path: /user/username/projects/myproject/main -Info 3 [16:01:03.000] For info: /user/username/projects/myproject/main/main.ts :: Config file name: /user/username/projects/myproject/main/tsconfig.json -Info 4 [16:01:04.000] Creating configuration project /user/username/projects/myproject/main/tsconfig.json -Info 5 [16:01:05.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/main/tsconfig.json 2000 undefined Project: /user/username/projects/myproject/main/tsconfig.json WatchType: Config file -Info 6 [16:01:06.000] Config: /user/username/projects/myproject/main/tsconfig.json : { +Info 2 [00:01:02.000] Search path: /user/username/projects/myproject/main +Info 3 [00:01:03.000] For info: /user/username/projects/myproject/main/main.ts :: Config file name: /user/username/projects/myproject/main/tsconfig.json +Info 4 [00:01:04.000] Creating configuration project /user/username/projects/myproject/main/tsconfig.json +Info 5 [00:01:05.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/main/tsconfig.json 2000 undefined Project: /user/username/projects/myproject/main/tsconfig.json WatchType: Config file +Info 6 [00:01:06.000] Config: /user/username/projects/myproject/main/tsconfig.json : { "rootNames": [ "/user/username/projects/myproject/main/main.ts" ], @@ -220,11 +220,11 @@ Info 6 [16:01:06.000] Config: /user/username/projects/myproject/main/tsconfig } ] } -Info 7 [16:01:07.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/main 1 undefined Config: /user/username/projects/myproject/main/tsconfig.json WatchType: Wild card directory -Info 8 [16:01:08.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/main 1 undefined Config: /user/username/projects/myproject/main/tsconfig.json WatchType: Wild card directory -Info 9 [16:01:09.000] Plugins were requested but not running in environment that supports 'require'. Nothing will be loaded -Info 10 [16:01:10.000] Starting updateGraphWorker: Project: /user/username/projects/myproject/main/tsconfig.json -Info 11 [16:01:11.000] Config: /user/username/projects/myproject/dependency/tsconfig.json : { +Info 7 [00:01:07.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/main 1 undefined Config: /user/username/projects/myproject/main/tsconfig.json WatchType: Wild card directory +Info 8 [00:01:08.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/main 1 undefined Config: /user/username/projects/myproject/main/tsconfig.json WatchType: Wild card directory +Info 9 [00:01:09.000] Plugins were requested but not running in environment that supports 'require'. Nothing will be loaded +Info 10 [00:01:10.000] Starting updateGraphWorker: Project: /user/username/projects/myproject/main/tsconfig.json +Info 11 [00:01:11.000] Config: /user/username/projects/myproject/dependency/tsconfig.json : { "rootNames": [ "/user/username/projects/myproject/dependency/FnS.ts" ], @@ -235,20 +235,20 @@ Info 11 [16:01:11.000] Config: /user/username/projects/myproject/dependency/ts "configFilePath": "/user/username/projects/myproject/dependency/tsconfig.json" } } -Info 12 [16:01:12.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/dependency/tsconfig.json 2000 undefined Project: /user/username/projects/myproject/main/tsconfig.json WatchType: Config file -Info 13 [16:01:13.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/dependency 1 undefined Config: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Wild card directory -Info 14 [16:01:14.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/dependency 1 undefined Config: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Wild card directory -Info 15 [16:01:15.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/decls 1 undefined Project: /user/username/projects/myproject/main/tsconfig.json WatchType: Failed Lookup Locations -Info 16 [16:01:16.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/decls 1 undefined Project: /user/username/projects/myproject/main/tsconfig.json WatchType: Failed Lookup Locations -Info 17 [16:01:17.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/dependency/FnS.ts 500 undefined WatchType: Closed Script info -Info 18 [16:01:18.000] FileWatcher:: Added:: WatchInfo: /a/lib/lib.d.ts 500 undefined WatchType: Closed Script info -Info 19 [16:01:19.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/main/node_modules/@types 1 undefined Project: /user/username/projects/myproject/main/tsconfig.json WatchType: Type roots -Info 20 [16:01:20.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/main/node_modules/@types 1 undefined Project: /user/username/projects/myproject/main/tsconfig.json WatchType: Type roots -Info 21 [16:01:21.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/main/tsconfig.json WatchType: Type roots -Info 22 [16:01:22.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/main/tsconfig.json WatchType: Type roots -Info 23 [16:01:23.000] Finishing updateGraphWorker: Project: /user/username/projects/myproject/main/tsconfig.json Version: 1 structureChanged: true structureIsReused:: Not Elapsed:: *ms -Info 24 [16:01:24.000] Project '/user/username/projects/myproject/main/tsconfig.json' (Configured) -Info 25 [16:01:25.000] Files (3) +Info 12 [00:01:12.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/dependency/tsconfig.json 2000 undefined Project: /user/username/projects/myproject/main/tsconfig.json WatchType: Config file +Info 13 [00:01:13.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/dependency 1 undefined Config: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Wild card directory +Info 14 [00:01:14.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/dependency 1 undefined Config: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Wild card directory +Info 15 [00:01:15.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/decls 1 undefined Project: /user/username/projects/myproject/main/tsconfig.json WatchType: Failed Lookup Locations +Info 16 [00:01:16.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/decls 1 undefined Project: /user/username/projects/myproject/main/tsconfig.json WatchType: Failed Lookup Locations +Info 17 [00:01:17.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/dependency/FnS.ts 500 undefined WatchType: Closed Script info +Info 18 [00:01:18.000] FileWatcher:: Added:: WatchInfo: /a/lib/lib.d.ts 500 undefined WatchType: Closed Script info +Info 19 [00:01:19.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/main/node_modules/@types 1 undefined Project: /user/username/projects/myproject/main/tsconfig.json WatchType: Type roots +Info 20 [00:01:20.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/main/node_modules/@types 1 undefined Project: /user/username/projects/myproject/main/tsconfig.json WatchType: Type roots +Info 21 [00:01:21.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/main/tsconfig.json WatchType: Type roots +Info 22 [00:01:22.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/main/tsconfig.json WatchType: Type roots +Info 23 [00:01:23.000] Finishing updateGraphWorker: Project: /user/username/projects/myproject/main/tsconfig.json Version: 1 structureChanged: true structureIsReused:: Not Elapsed:: *ms +Info 24 [00:01:24.000] Project '/user/username/projects/myproject/main/tsconfig.json' (Configured) +Info 25 [00:01:25.000] Files (3) /a/lib/lib.d.ts /user/username/projects/myproject/dependency/FnS.ts /user/username/projects/myproject/main/main.ts @@ -261,16 +261,16 @@ Info 25 [16:01:25.000] Files (3) main.ts Matched by default include pattern '**/*' -Info 26 [16:01:26.000] ----------------------------------------------- -Info 27 [16:01:27.000] Search path: /user/username/projects/myproject/main -Info 28 [16:01:28.000] For info: /user/username/projects/myproject/main/tsconfig.json :: No config files found. -Info 29 [16:01:29.000] Project '/user/username/projects/myproject/main/tsconfig.json' (Configured) -Info 29 [16:01:30.000] Files (3) +Info 26 [00:01:26.000] ----------------------------------------------- +Info 27 [00:01:27.000] Search path: /user/username/projects/myproject/main +Info 28 [00:01:28.000] For info: /user/username/projects/myproject/main/tsconfig.json :: No config files found. +Info 29 [00:01:29.000] Project '/user/username/projects/myproject/main/tsconfig.json' (Configured) +Info 29 [00:01:30.000] Files (3) -Info 29 [16:01:31.000] ----------------------------------------------- -Info 29 [16:01:32.000] Open files: -Info 29 [16:01:33.000] FileName: /user/username/projects/myproject/main/main.ts ProjectRootPath: undefined -Info 29 [16:01:34.000] Projects: /user/username/projects/myproject/main/tsconfig.json +Info 29 [00:01:31.000] ----------------------------------------------- +Info 29 [00:01:32.000] Open files: +Info 29 [00:01:33.000] FileName: /user/username/projects/myproject/main/main.ts ProjectRootPath: undefined +Info 29 [00:01:34.000] Projects: /user/username/projects/myproject/main/tsconfig.json After request PolledWatches:: @@ -297,11 +297,11 @@ FsWatchesRecursive:: /user/username/projects/myproject/decls: {} -Info 29 [16:01:35.000] response: +Info 29 [00:01:35.000] response: { "responseRequired": false } -Info 30 [16:01:36.000] request: +Info 30 [00:01:36.000] request: { "seq": 0, "type": "request", @@ -336,11 +336,11 @@ FsWatchesRecursive:: /user/username/projects/myproject/decls: {} -Info 31 [16:01:37.000] Search path: /user/username/projects/myproject/random -Info 32 [16:01:38.000] For info: /user/username/projects/myproject/random/random.ts :: Config file name: /user/username/projects/myproject/random/tsconfig.json -Info 33 [16:01:39.000] Creating configuration project /user/username/projects/myproject/random/tsconfig.json -Info 34 [16:01:40.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/random/tsconfig.json 2000 undefined Project: /user/username/projects/myproject/random/tsconfig.json WatchType: Config file -Info 35 [16:01:41.000] Config: /user/username/projects/myproject/random/tsconfig.json : { +Info 31 [00:01:37.000] Search path: /user/username/projects/myproject/random +Info 32 [00:01:38.000] For info: /user/username/projects/myproject/random/random.ts :: Config file name: /user/username/projects/myproject/random/tsconfig.json +Info 33 [00:01:39.000] Creating configuration project /user/username/projects/myproject/random/tsconfig.json +Info 34 [00:01:40.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/random/tsconfig.json 2000 undefined Project: /user/username/projects/myproject/random/tsconfig.json WatchType: Config file +Info 35 [00:01:41.000] Config: /user/username/projects/myproject/random/tsconfig.json : { "rootNames": [ "/user/username/projects/myproject/random/random.ts" ], @@ -348,17 +348,17 @@ Info 35 [16:01:41.000] Config: /user/username/projects/myproject/random/tsconf "configFilePath": "/user/username/projects/myproject/random/tsconfig.json" } } -Info 36 [16:01:42.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/random 1 undefined Config: /user/username/projects/myproject/random/tsconfig.json WatchType: Wild card directory -Info 37 [16:01:43.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/random 1 undefined Config: /user/username/projects/myproject/random/tsconfig.json WatchType: Wild card directory -Info 38 [16:01:44.000] Plugins were requested but not running in environment that supports 'require'. Nothing will be loaded -Info 39 [16:01:45.000] Starting updateGraphWorker: Project: /user/username/projects/myproject/random/tsconfig.json -Info 40 [16:01:46.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/random/node_modules/@types 1 undefined Project: /user/username/projects/myproject/random/tsconfig.json WatchType: Type roots -Info 41 [16:01:47.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/random/node_modules/@types 1 undefined Project: /user/username/projects/myproject/random/tsconfig.json WatchType: Type roots -Info 42 [16:01:48.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/random/tsconfig.json WatchType: Type roots -Info 43 [16:01:49.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/random/tsconfig.json WatchType: Type roots -Info 44 [16:01:50.000] Finishing updateGraphWorker: Project: /user/username/projects/myproject/random/tsconfig.json Version: 1 structureChanged: true structureIsReused:: Not Elapsed:: *ms -Info 45 [16:01:51.000] Project '/user/username/projects/myproject/random/tsconfig.json' (Configured) -Info 46 [16:01:52.000] Files (2) +Info 36 [00:01:42.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/random 1 undefined Config: /user/username/projects/myproject/random/tsconfig.json WatchType: Wild card directory +Info 37 [00:01:43.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/random 1 undefined Config: /user/username/projects/myproject/random/tsconfig.json WatchType: Wild card directory +Info 38 [00:01:44.000] Plugins were requested but not running in environment that supports 'require'. Nothing will be loaded +Info 39 [00:01:45.000] Starting updateGraphWorker: Project: /user/username/projects/myproject/random/tsconfig.json +Info 40 [00:01:46.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/random/node_modules/@types 1 undefined Project: /user/username/projects/myproject/random/tsconfig.json WatchType: Type roots +Info 41 [00:01:47.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/random/node_modules/@types 1 undefined Project: /user/username/projects/myproject/random/tsconfig.json WatchType: Type roots +Info 42 [00:01:48.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/random/tsconfig.json WatchType: Type roots +Info 43 [00:01:49.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/random/tsconfig.json WatchType: Type roots +Info 44 [00:01:50.000] Finishing updateGraphWorker: Project: /user/username/projects/myproject/random/tsconfig.json Version: 1 structureChanged: true structureIsReused:: Not Elapsed:: *ms +Info 45 [00:01:51.000] Project '/user/username/projects/myproject/random/tsconfig.json' (Configured) +Info 46 [00:01:52.000] Files (2) /a/lib/lib.d.ts /user/username/projects/myproject/random/random.ts @@ -368,20 +368,20 @@ Info 46 [16:01:52.000] Files (2) random.ts Matched by default include pattern '**/*' -Info 47 [16:01:53.000] ----------------------------------------------- -Info 48 [16:01:54.000] Project '/user/username/projects/myproject/main/tsconfig.json' (Configured) -Info 48 [16:01:55.000] Files (3) +Info 47 [00:01:53.000] ----------------------------------------------- +Info 48 [00:01:54.000] Project '/user/username/projects/myproject/main/tsconfig.json' (Configured) +Info 48 [00:01:55.000] Files (3) -Info 48 [16:01:56.000] ----------------------------------------------- -Info 48 [16:01:57.000] Project '/user/username/projects/myproject/random/tsconfig.json' (Configured) -Info 48 [16:01:58.000] Files (2) +Info 48 [00:01:56.000] ----------------------------------------------- +Info 48 [00:01:57.000] Project '/user/username/projects/myproject/random/tsconfig.json' (Configured) +Info 48 [00:01:58.000] Files (2) -Info 48 [16:01:59.000] ----------------------------------------------- -Info 48 [16:02:00.000] Open files: -Info 48 [16:02:01.000] FileName: /user/username/projects/myproject/main/main.ts ProjectRootPath: undefined -Info 48 [16:02:02.000] Projects: /user/username/projects/myproject/main/tsconfig.json -Info 48 [16:02:03.000] FileName: /user/username/projects/myproject/random/random.ts ProjectRootPath: undefined -Info 48 [16:02:04.000] Projects: /user/username/projects/myproject/random/tsconfig.json +Info 48 [00:01:59.000] ----------------------------------------------- +Info 48 [00:02:00.000] Open files: +Info 48 [00:02:01.000] FileName: /user/username/projects/myproject/main/main.ts ProjectRootPath: undefined +Info 48 [00:02:02.000] Projects: /user/username/projects/myproject/main/tsconfig.json +Info 48 [00:02:03.000] FileName: /user/username/projects/myproject/random/random.ts ProjectRootPath: undefined +Info 48 [00:02:04.000] Projects: /user/username/projects/myproject/random/tsconfig.json After request PolledWatches:: @@ -414,11 +414,11 @@ FsWatchesRecursive:: /user/username/projects/myproject/random: {} -Info 48 [16:02:05.000] response: +Info 48 [00:02:05.000] response: { "responseRequired": false } -Info 49 [16:02:06.000] request: +Info 49 [00:02:06.000] request: { "command": "definitionAndBoundSpan", "arguments": { @@ -493,7 +493,7 @@ FsWatchesRecursive:: /user/username/projects/myproject/random: {} -Info 50 [16:02:07.000] response: +Info 50 [00:02:07.000] response: { "response": { "definitions": [ @@ -603,7 +603,7 @@ FsWatchesRecursive:: /user/username/projects/myproject/random: {} -Info 51 [16:02:11.000] request: +Info 51 [00:02:11.000] request: { "command": "definitionAndBoundSpan", "arguments": { @@ -678,7 +678,7 @@ FsWatchesRecursive:: /user/username/projects/myproject/random: {} -Info 52 [16:02:12.000] response: +Info 52 [00:02:12.000] response: { "response": { "definitions": [ @@ -715,7 +715,7 @@ Info 52 [16:02:12.000] response: }, "responseRequired": true } -Info 53 [16:02:13.000] request: +Info 53 [00:02:13.000] request: { "command": "definitionAndBoundSpan", "arguments": { @@ -790,7 +790,7 @@ FsWatchesRecursive:: /user/username/projects/myproject/random: {} -Info 54 [16:02:14.000] response: +Info 54 [00:02:14.000] response: { "response": { "definitions": [ @@ -827,7 +827,7 @@ Info 54 [16:02:14.000] response: }, "responseRequired": true } -Info 55 [16:02:15.000] request: +Info 55 [00:02:15.000] request: { "command": "definitionAndBoundSpan", "arguments": { @@ -902,7 +902,7 @@ FsWatchesRecursive:: /user/username/projects/myproject/random: {} -Info 56 [16:02:16.000] response: +Info 56 [00:02:16.000] response: { "response": { "definitions": [ @@ -939,7 +939,7 @@ Info 56 [16:02:16.000] response: }, "responseRequired": true } -Info 57 [16:02:17.000] request: +Info 57 [00:02:17.000] request: { "command": "definitionAndBoundSpan", "arguments": { @@ -1014,7 +1014,7 @@ FsWatchesRecursive:: /user/username/projects/myproject/random: {} -Info 58 [16:02:18.000] response: +Info 58 [00:02:18.000] response: { "response": { "definitions": [ @@ -1051,7 +1051,7 @@ Info 58 [16:02:18.000] response: }, "responseRequired": true } -Info 59 [16:02:19.000] request: +Info 59 [00:02:19.000] request: { "command": "definitionAndBoundSpan", "arguments": { @@ -1126,7 +1126,7 @@ FsWatchesRecursive:: /user/username/projects/myproject/random: {} -Info 60 [16:02:20.000] response: +Info 60 [00:02:20.000] response: { "response": { "definitions": [ 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 ca5f9519a1415..0eb89beef058f 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 @@ -1,5 +1,5 @@ -Info 0 [16:01:00.000] Provided types map file "/a/lib/typesMap.json" doesn't exist -Info 1 [16:01:01.000] request: +Info 0 [00:01:00.000] Provided types map file "/a/lib/typesMap.json" doesn't exist +Info 1 [00:01:01.000] request: { "seq": 0, "type": "request", @@ -200,11 +200,11 @@ FsWatches:: FsWatchesRecursive:: -Info 2 [16:01:02.000] Search path: /user/username/projects/myproject/main -Info 3 [16:01:03.000] For info: /user/username/projects/myproject/main/main.ts :: Config file name: /user/username/projects/myproject/main/tsconfig.json -Info 4 [16:01:04.000] Creating configuration project /user/username/projects/myproject/main/tsconfig.json -Info 5 [16:01:05.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/main/tsconfig.json 2000 undefined Project: /user/username/projects/myproject/main/tsconfig.json WatchType: Config file -Info 6 [16:01:06.000] Config: /user/username/projects/myproject/main/tsconfig.json : { +Info 2 [00:01:02.000] Search path: /user/username/projects/myproject/main +Info 3 [00:01:03.000] For info: /user/username/projects/myproject/main/main.ts :: Config file name: /user/username/projects/myproject/main/tsconfig.json +Info 4 [00:01:04.000] Creating configuration project /user/username/projects/myproject/main/tsconfig.json +Info 5 [00:01:05.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/main/tsconfig.json 2000 undefined Project: /user/username/projects/myproject/main/tsconfig.json WatchType: Config file +Info 6 [00:01:06.000] Config: /user/username/projects/myproject/main/tsconfig.json : { "rootNames": [ "/user/username/projects/myproject/main/main.ts" ], @@ -220,11 +220,11 @@ Info 6 [16:01:06.000] Config: /user/username/projects/myproject/main/tsconfig } ] } -Info 7 [16:01:07.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/main 1 undefined Config: /user/username/projects/myproject/main/tsconfig.json WatchType: Wild card directory -Info 8 [16:01:08.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/main 1 undefined Config: /user/username/projects/myproject/main/tsconfig.json WatchType: Wild card directory -Info 9 [16:01:09.000] Plugins were requested but not running in environment that supports 'require'. Nothing will be loaded -Info 10 [16:01:10.000] Starting updateGraphWorker: Project: /user/username/projects/myproject/main/tsconfig.json -Info 11 [16:01:11.000] Config: /user/username/projects/myproject/dependency/tsconfig.json : { +Info 7 [00:01:07.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/main 1 undefined Config: /user/username/projects/myproject/main/tsconfig.json WatchType: Wild card directory +Info 8 [00:01:08.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/main 1 undefined Config: /user/username/projects/myproject/main/tsconfig.json WatchType: Wild card directory +Info 9 [00:01:09.000] Plugins were requested but not running in environment that supports 'require'. Nothing will be loaded +Info 10 [00:01:10.000] Starting updateGraphWorker: Project: /user/username/projects/myproject/main/tsconfig.json +Info 11 [00:01:11.000] Config: /user/username/projects/myproject/dependency/tsconfig.json : { "rootNames": [ "/user/username/projects/myproject/dependency/FnS.ts" ], @@ -235,20 +235,20 @@ Info 11 [16:01:11.000] Config: /user/username/projects/myproject/dependency/ts "configFilePath": "/user/username/projects/myproject/dependency/tsconfig.json" } } -Info 12 [16:01:12.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/dependency/tsconfig.json 2000 undefined Project: /user/username/projects/myproject/main/tsconfig.json WatchType: Config file -Info 13 [16:01:13.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/dependency 1 undefined Config: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Wild card directory -Info 14 [16:01:14.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/dependency 1 undefined Config: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Wild card directory -Info 15 [16:01:15.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/decls 1 undefined Project: /user/username/projects/myproject/main/tsconfig.json WatchType: Failed Lookup Locations -Info 16 [16:01:16.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/decls 1 undefined Project: /user/username/projects/myproject/main/tsconfig.json WatchType: Failed Lookup Locations -Info 17 [16:01:17.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/dependency/FnS.ts 500 undefined WatchType: Closed Script info -Info 18 [16:01:18.000] FileWatcher:: Added:: WatchInfo: /a/lib/lib.d.ts 500 undefined WatchType: Closed Script info -Info 19 [16:01:19.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/main/node_modules/@types 1 undefined Project: /user/username/projects/myproject/main/tsconfig.json WatchType: Type roots -Info 20 [16:01:20.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/main/node_modules/@types 1 undefined Project: /user/username/projects/myproject/main/tsconfig.json WatchType: Type roots -Info 21 [16:01:21.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/main/tsconfig.json WatchType: Type roots -Info 22 [16:01:22.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/main/tsconfig.json WatchType: Type roots -Info 23 [16:01:23.000] Finishing updateGraphWorker: Project: /user/username/projects/myproject/main/tsconfig.json Version: 1 structureChanged: true structureIsReused:: Not Elapsed:: *ms -Info 24 [16:01:24.000] Project '/user/username/projects/myproject/main/tsconfig.json' (Configured) -Info 25 [16:01:25.000] Files (3) +Info 12 [00:01:12.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/dependency/tsconfig.json 2000 undefined Project: /user/username/projects/myproject/main/tsconfig.json WatchType: Config file +Info 13 [00:01:13.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/dependency 1 undefined Config: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Wild card directory +Info 14 [00:01:14.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/dependency 1 undefined Config: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Wild card directory +Info 15 [00:01:15.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/decls 1 undefined Project: /user/username/projects/myproject/main/tsconfig.json WatchType: Failed Lookup Locations +Info 16 [00:01:16.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/decls 1 undefined Project: /user/username/projects/myproject/main/tsconfig.json WatchType: Failed Lookup Locations +Info 17 [00:01:17.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/dependency/FnS.ts 500 undefined WatchType: Closed Script info +Info 18 [00:01:18.000] FileWatcher:: Added:: WatchInfo: /a/lib/lib.d.ts 500 undefined WatchType: Closed Script info +Info 19 [00:01:19.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/main/node_modules/@types 1 undefined Project: /user/username/projects/myproject/main/tsconfig.json WatchType: Type roots +Info 20 [00:01:20.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/main/node_modules/@types 1 undefined Project: /user/username/projects/myproject/main/tsconfig.json WatchType: Type roots +Info 21 [00:01:21.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/main/tsconfig.json WatchType: Type roots +Info 22 [00:01:22.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/main/tsconfig.json WatchType: Type roots +Info 23 [00:01:23.000] Finishing updateGraphWorker: Project: /user/username/projects/myproject/main/tsconfig.json Version: 1 structureChanged: true structureIsReused:: Not Elapsed:: *ms +Info 24 [00:01:24.000] Project '/user/username/projects/myproject/main/tsconfig.json' (Configured) +Info 25 [00:01:25.000] Files (3) /a/lib/lib.d.ts /user/username/projects/myproject/dependency/FnS.ts /user/username/projects/myproject/main/main.ts @@ -261,16 +261,16 @@ Info 25 [16:01:25.000] Files (3) main.ts Matched by default include pattern '**/*' -Info 26 [16:01:26.000] ----------------------------------------------- -Info 27 [16:01:27.000] Search path: /user/username/projects/myproject/main -Info 28 [16:01:28.000] For info: /user/username/projects/myproject/main/tsconfig.json :: No config files found. -Info 29 [16:01:29.000] Project '/user/username/projects/myproject/main/tsconfig.json' (Configured) -Info 29 [16:01:30.000] Files (3) +Info 26 [00:01:26.000] ----------------------------------------------- +Info 27 [00:01:27.000] Search path: /user/username/projects/myproject/main +Info 28 [00:01:28.000] For info: /user/username/projects/myproject/main/tsconfig.json :: No config files found. +Info 29 [00:01:29.000] Project '/user/username/projects/myproject/main/tsconfig.json' (Configured) +Info 29 [00:01:30.000] Files (3) -Info 29 [16:01:31.000] ----------------------------------------------- -Info 29 [16:01:32.000] Open files: -Info 29 [16:01:33.000] FileName: /user/username/projects/myproject/main/main.ts ProjectRootPath: undefined -Info 29 [16:01:34.000] Projects: /user/username/projects/myproject/main/tsconfig.json +Info 29 [00:01:31.000] ----------------------------------------------- +Info 29 [00:01:32.000] Open files: +Info 29 [00:01:33.000] FileName: /user/username/projects/myproject/main/main.ts ProjectRootPath: undefined +Info 29 [00:01:34.000] Projects: /user/username/projects/myproject/main/tsconfig.json After request PolledWatches:: @@ -297,11 +297,11 @@ FsWatchesRecursive:: /user/username/projects/myproject/decls: {} -Info 29 [16:01:35.000] response: +Info 29 [00:01:35.000] response: { "responseRequired": false } -Info 30 [16:01:36.000] request: +Info 30 [00:01:36.000] request: { "seq": 0, "type": "request", @@ -336,11 +336,11 @@ FsWatchesRecursive:: /user/username/projects/myproject/decls: {} -Info 31 [16:01:37.000] Search path: /user/username/projects/myproject/random -Info 32 [16:01:38.000] For info: /user/username/projects/myproject/random/random.ts :: Config file name: /user/username/projects/myproject/random/tsconfig.json -Info 33 [16:01:39.000] Creating configuration project /user/username/projects/myproject/random/tsconfig.json -Info 34 [16:01:40.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/random/tsconfig.json 2000 undefined Project: /user/username/projects/myproject/random/tsconfig.json WatchType: Config file -Info 35 [16:01:41.000] Config: /user/username/projects/myproject/random/tsconfig.json : { +Info 31 [00:01:37.000] Search path: /user/username/projects/myproject/random +Info 32 [00:01:38.000] For info: /user/username/projects/myproject/random/random.ts :: Config file name: /user/username/projects/myproject/random/tsconfig.json +Info 33 [00:01:39.000] Creating configuration project /user/username/projects/myproject/random/tsconfig.json +Info 34 [00:01:40.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/random/tsconfig.json 2000 undefined Project: /user/username/projects/myproject/random/tsconfig.json WatchType: Config file +Info 35 [00:01:41.000] Config: /user/username/projects/myproject/random/tsconfig.json : { "rootNames": [ "/user/username/projects/myproject/random/random.ts" ], @@ -348,17 +348,17 @@ Info 35 [16:01:41.000] Config: /user/username/projects/myproject/random/tsconf "configFilePath": "/user/username/projects/myproject/random/tsconfig.json" } } -Info 36 [16:01:42.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/random 1 undefined Config: /user/username/projects/myproject/random/tsconfig.json WatchType: Wild card directory -Info 37 [16:01:43.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/random 1 undefined Config: /user/username/projects/myproject/random/tsconfig.json WatchType: Wild card directory -Info 38 [16:01:44.000] Plugins were requested but not running in environment that supports 'require'. Nothing will be loaded -Info 39 [16:01:45.000] Starting updateGraphWorker: Project: /user/username/projects/myproject/random/tsconfig.json -Info 40 [16:01:46.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/random/node_modules/@types 1 undefined Project: /user/username/projects/myproject/random/tsconfig.json WatchType: Type roots -Info 41 [16:01:47.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/random/node_modules/@types 1 undefined Project: /user/username/projects/myproject/random/tsconfig.json WatchType: Type roots -Info 42 [16:01:48.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/random/tsconfig.json WatchType: Type roots -Info 43 [16:01:49.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/random/tsconfig.json WatchType: Type roots -Info 44 [16:01:50.000] Finishing updateGraphWorker: Project: /user/username/projects/myproject/random/tsconfig.json Version: 1 structureChanged: true structureIsReused:: Not Elapsed:: *ms -Info 45 [16:01:51.000] Project '/user/username/projects/myproject/random/tsconfig.json' (Configured) -Info 46 [16:01:52.000] Files (2) +Info 36 [00:01:42.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/random 1 undefined Config: /user/username/projects/myproject/random/tsconfig.json WatchType: Wild card directory +Info 37 [00:01:43.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/random 1 undefined Config: /user/username/projects/myproject/random/tsconfig.json WatchType: Wild card directory +Info 38 [00:01:44.000] Plugins were requested but not running in environment that supports 'require'. Nothing will be loaded +Info 39 [00:01:45.000] Starting updateGraphWorker: Project: /user/username/projects/myproject/random/tsconfig.json +Info 40 [00:01:46.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/random/node_modules/@types 1 undefined Project: /user/username/projects/myproject/random/tsconfig.json WatchType: Type roots +Info 41 [00:01:47.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/random/node_modules/@types 1 undefined Project: /user/username/projects/myproject/random/tsconfig.json WatchType: Type roots +Info 42 [00:01:48.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/random/tsconfig.json WatchType: Type roots +Info 43 [00:01:49.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/random/tsconfig.json WatchType: Type roots +Info 44 [00:01:50.000] Finishing updateGraphWorker: Project: /user/username/projects/myproject/random/tsconfig.json Version: 1 structureChanged: true structureIsReused:: Not Elapsed:: *ms +Info 45 [00:01:51.000] Project '/user/username/projects/myproject/random/tsconfig.json' (Configured) +Info 46 [00:01:52.000] Files (2) /a/lib/lib.d.ts /user/username/projects/myproject/random/random.ts @@ -368,20 +368,20 @@ Info 46 [16:01:52.000] Files (2) random.ts Matched by default include pattern '**/*' -Info 47 [16:01:53.000] ----------------------------------------------- -Info 48 [16:01:54.000] Project '/user/username/projects/myproject/main/tsconfig.json' (Configured) -Info 48 [16:01:55.000] Files (3) +Info 47 [00:01:53.000] ----------------------------------------------- +Info 48 [00:01:54.000] Project '/user/username/projects/myproject/main/tsconfig.json' (Configured) +Info 48 [00:01:55.000] Files (3) -Info 48 [16:01:56.000] ----------------------------------------------- -Info 48 [16:01:57.000] Project '/user/username/projects/myproject/random/tsconfig.json' (Configured) -Info 48 [16:01:58.000] Files (2) +Info 48 [00:01:56.000] ----------------------------------------------- +Info 48 [00:01:57.000] Project '/user/username/projects/myproject/random/tsconfig.json' (Configured) +Info 48 [00:01:58.000] Files (2) -Info 48 [16:01:59.000] ----------------------------------------------- -Info 48 [16:02:00.000] Open files: -Info 48 [16:02:01.000] FileName: /user/username/projects/myproject/main/main.ts ProjectRootPath: undefined -Info 48 [16:02:02.000] Projects: /user/username/projects/myproject/main/tsconfig.json -Info 48 [16:02:03.000] FileName: /user/username/projects/myproject/random/random.ts ProjectRootPath: undefined -Info 48 [16:02:04.000] Projects: /user/username/projects/myproject/random/tsconfig.json +Info 48 [00:01:59.000] ----------------------------------------------- +Info 48 [00:02:00.000] Open files: +Info 48 [00:02:01.000] FileName: /user/username/projects/myproject/main/main.ts ProjectRootPath: undefined +Info 48 [00:02:02.000] Projects: /user/username/projects/myproject/main/tsconfig.json +Info 48 [00:02:03.000] FileName: /user/username/projects/myproject/random/random.ts ProjectRootPath: undefined +Info 48 [00:02:04.000] Projects: /user/username/projects/myproject/random/tsconfig.json After request PolledWatches:: @@ -414,11 +414,11 @@ FsWatchesRecursive:: /user/username/projects/myproject/random: {} -Info 48 [16:02:05.000] response: +Info 48 [00:02:05.000] response: { "responseRequired": false } -Info 49 [16:02:06.000] request: +Info 49 [00:02:06.000] request: { "command": "definitionAndBoundSpan", "arguments": { @@ -493,7 +493,7 @@ FsWatchesRecursive:: /user/username/projects/myproject/random: {} -Info 50 [16:02:07.000] response: +Info 50 [00:02:07.000] response: { "response": { "definitions": [ @@ -530,7 +530,7 @@ Info 50 [16:02:07.000] response: }, "responseRequired": true } -Info 51 [16:02:11.000] request: +Info 51 [00:02:11.000] request: { "command": "definitionAndBoundSpan", "arguments": { @@ -614,7 +614,7 @@ FsWatchesRecursive:: /user/username/projects/myproject/random: {} -Info 52 [16:02:12.000] response: +Info 52 [00:02:12.000] response: { "response": { "definitions": [ @@ -651,7 +651,7 @@ Info 52 [16:02:12.000] response: }, "responseRequired": true } -Info 53 [16:02:13.000] request: +Info 53 [00:02:13.000] request: { "command": "definitionAndBoundSpan", "arguments": { @@ -726,7 +726,7 @@ FsWatchesRecursive:: /user/username/projects/myproject/random: {} -Info 54 [16:02:14.000] response: +Info 54 [00:02:14.000] response: { "response": { "definitions": [ @@ -763,7 +763,7 @@ Info 54 [16:02:14.000] response: }, "responseRequired": true } -Info 55 [16:02:15.000] request: +Info 55 [00:02:15.000] request: { "command": "definitionAndBoundSpan", "arguments": { @@ -838,7 +838,7 @@ FsWatchesRecursive:: /user/username/projects/myproject/random: {} -Info 56 [16:02:16.000] response: +Info 56 [00:02:16.000] response: { "response": { "definitions": [ @@ -875,7 +875,7 @@ Info 56 [16:02:16.000] response: }, "responseRequired": true } -Info 57 [16:02:17.000] request: +Info 57 [00:02:17.000] request: { "command": "definitionAndBoundSpan", "arguments": { @@ -950,7 +950,7 @@ FsWatchesRecursive:: /user/username/projects/myproject/random: {} -Info 58 [16:02:18.000] response: +Info 58 [00:02:18.000] response: { "response": { "definitions": [ @@ -987,7 +987,7 @@ Info 58 [16:02:18.000] response: }, "responseRequired": true } -Info 59 [16:02:19.000] request: +Info 59 [00:02:19.000] request: { "command": "definitionAndBoundSpan", "arguments": { @@ -1062,7 +1062,7 @@ FsWatchesRecursive:: /user/username/projects/myproject/random: {} -Info 60 [16:02:20.000] response: +Info 60 [00:02:20.000] response: { "response": { "definitions": [ 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 c50bb127ebf1e..3db6e2298d8c3 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 @@ -1,5 +1,5 @@ -Info 0 [16:01:01.000] Provided types map file "/a/lib/typesMap.json" doesn't exist -Info 1 [16:01:02.000] request: +Info 0 [00:01:01.000] Provided types map file "/a/lib/typesMap.json" doesn't exist +Info 1 [00:01:02.000] request: { "seq": 0, "type": "request", @@ -192,11 +192,11 @@ FsWatches:: FsWatchesRecursive:: -Info 2 [16:01:03.000] Search path: /user/username/projects/myproject/main -Info 3 [16:01:04.000] For info: /user/username/projects/myproject/main/main.ts :: Config file name: /user/username/projects/myproject/main/tsconfig.json -Info 4 [16:01:05.000] Creating configuration project /user/username/projects/myproject/main/tsconfig.json -Info 5 [16:01:06.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/main/tsconfig.json 2000 undefined Project: /user/username/projects/myproject/main/tsconfig.json WatchType: Config file -Info 6 [16:01:07.000] Config: /user/username/projects/myproject/main/tsconfig.json : { +Info 2 [00:01:03.000] Search path: /user/username/projects/myproject/main +Info 3 [00:01:04.000] For info: /user/username/projects/myproject/main/main.ts :: Config file name: /user/username/projects/myproject/main/tsconfig.json +Info 4 [00:01:05.000] Creating configuration project /user/username/projects/myproject/main/tsconfig.json +Info 5 [00:01:06.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/main/tsconfig.json 2000 undefined Project: /user/username/projects/myproject/main/tsconfig.json WatchType: Config file +Info 6 [00:01:07.000] Config: /user/username/projects/myproject/main/tsconfig.json : { "rootNames": [ "/user/username/projects/myproject/main/main.ts" ], @@ -212,11 +212,11 @@ Info 6 [16:01:07.000] Config: /user/username/projects/myproject/main/tsconfig } ] } -Info 7 [16:01:08.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/main 1 undefined Config: /user/username/projects/myproject/main/tsconfig.json WatchType: Wild card directory -Info 8 [16:01:09.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/main 1 undefined Config: /user/username/projects/myproject/main/tsconfig.json WatchType: Wild card directory -Info 9 [16:01:10.000] Plugins were requested but not running in environment that supports 'require'. Nothing will be loaded -Info 10 [16:01:11.000] Starting updateGraphWorker: Project: /user/username/projects/myproject/main/tsconfig.json -Info 11 [16:01:12.000] Config: /user/username/projects/myproject/dependency/tsconfig.json : { +Info 7 [00:01:08.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/main 1 undefined Config: /user/username/projects/myproject/main/tsconfig.json WatchType: Wild card directory +Info 8 [00:01:09.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/main 1 undefined Config: /user/username/projects/myproject/main/tsconfig.json WatchType: Wild card directory +Info 9 [00:01:10.000] Plugins were requested but not running in environment that supports 'require'. Nothing will be loaded +Info 10 [00:01:11.000] Starting updateGraphWorker: Project: /user/username/projects/myproject/main/tsconfig.json +Info 11 [00:01:12.000] Config: /user/username/projects/myproject/dependency/tsconfig.json : { "rootNames": [ "/user/username/projects/myproject/dependency/FnS.ts" ], @@ -227,20 +227,20 @@ Info 11 [16:01:12.000] Config: /user/username/projects/myproject/dependency/ts "configFilePath": "/user/username/projects/myproject/dependency/tsconfig.json" } } -Info 12 [16:01:13.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/dependency/tsconfig.json 2000 undefined Project: /user/username/projects/myproject/main/tsconfig.json WatchType: Config file -Info 13 [16:01:14.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/dependency 1 undefined Config: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Wild card directory -Info 14 [16:01:15.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/dependency 1 undefined Config: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Wild card directory -Info 15 [16:01:16.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/decls 1 undefined Project: /user/username/projects/myproject/main/tsconfig.json WatchType: Failed Lookup Locations -Info 16 [16:01:17.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/decls 1 undefined Project: /user/username/projects/myproject/main/tsconfig.json WatchType: Failed Lookup Locations -Info 17 [16:01:18.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/dependency/FnS.ts 500 undefined WatchType: Closed Script info -Info 18 [16:01:19.000] FileWatcher:: Added:: WatchInfo: /a/lib/lib.d.ts 500 undefined WatchType: Closed Script info -Info 19 [16:01:20.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/main/node_modules/@types 1 undefined Project: /user/username/projects/myproject/main/tsconfig.json WatchType: Type roots -Info 20 [16:01:21.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/main/node_modules/@types 1 undefined Project: /user/username/projects/myproject/main/tsconfig.json WatchType: Type roots -Info 21 [16:01:22.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/main/tsconfig.json WatchType: Type roots -Info 22 [16:01:23.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/main/tsconfig.json WatchType: Type roots -Info 23 [16:01:24.000] Finishing updateGraphWorker: Project: /user/username/projects/myproject/main/tsconfig.json Version: 1 structureChanged: true structureIsReused:: Not Elapsed:: *ms -Info 24 [16:01:25.000] Project '/user/username/projects/myproject/main/tsconfig.json' (Configured) -Info 25 [16:01:26.000] Files (3) +Info 12 [00:01:13.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/dependency/tsconfig.json 2000 undefined Project: /user/username/projects/myproject/main/tsconfig.json WatchType: Config file +Info 13 [00:01:14.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/dependency 1 undefined Config: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Wild card directory +Info 14 [00:01:15.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/dependency 1 undefined Config: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Wild card directory +Info 15 [00:01:16.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/decls 1 undefined Project: /user/username/projects/myproject/main/tsconfig.json WatchType: Failed Lookup Locations +Info 16 [00:01:17.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/decls 1 undefined Project: /user/username/projects/myproject/main/tsconfig.json WatchType: Failed Lookup Locations +Info 17 [00:01:18.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/dependency/FnS.ts 500 undefined WatchType: Closed Script info +Info 18 [00:01:19.000] FileWatcher:: Added:: WatchInfo: /a/lib/lib.d.ts 500 undefined WatchType: Closed Script info +Info 19 [00:01:20.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/main/node_modules/@types 1 undefined Project: /user/username/projects/myproject/main/tsconfig.json WatchType: Type roots +Info 20 [00:01:21.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/main/node_modules/@types 1 undefined Project: /user/username/projects/myproject/main/tsconfig.json WatchType: Type roots +Info 21 [00:01:22.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/main/tsconfig.json WatchType: Type roots +Info 22 [00:01:23.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/main/tsconfig.json WatchType: Type roots +Info 23 [00:01:24.000] Finishing updateGraphWorker: Project: /user/username/projects/myproject/main/tsconfig.json Version: 1 structureChanged: true structureIsReused:: Not Elapsed:: *ms +Info 24 [00:01:25.000] Project '/user/username/projects/myproject/main/tsconfig.json' (Configured) +Info 25 [00:01:26.000] Files (3) /a/lib/lib.d.ts /user/username/projects/myproject/dependency/FnS.ts /user/username/projects/myproject/main/main.ts @@ -253,16 +253,16 @@ Info 25 [16:01:26.000] Files (3) main.ts Matched by default include pattern '**/*' -Info 26 [16:01:27.000] ----------------------------------------------- -Info 27 [16:01:28.000] Search path: /user/username/projects/myproject/main -Info 28 [16:01:29.000] For info: /user/username/projects/myproject/main/tsconfig.json :: No config files found. -Info 29 [16:01:30.000] Project '/user/username/projects/myproject/main/tsconfig.json' (Configured) -Info 29 [16:01:31.000] Files (3) +Info 26 [00:01:27.000] ----------------------------------------------- +Info 27 [00:01:28.000] Search path: /user/username/projects/myproject/main +Info 28 [00:01:29.000] For info: /user/username/projects/myproject/main/tsconfig.json :: No config files found. +Info 29 [00:01:30.000] Project '/user/username/projects/myproject/main/tsconfig.json' (Configured) +Info 29 [00:01:31.000] Files (3) -Info 29 [16:01:32.000] ----------------------------------------------- -Info 29 [16:01:33.000] Open files: -Info 29 [16:01:34.000] FileName: /user/username/projects/myproject/main/main.ts ProjectRootPath: undefined -Info 29 [16:01:35.000] Projects: /user/username/projects/myproject/main/tsconfig.json +Info 29 [00:01:32.000] ----------------------------------------------- +Info 29 [00:01:33.000] Open files: +Info 29 [00:01:34.000] FileName: /user/username/projects/myproject/main/main.ts ProjectRootPath: undefined +Info 29 [00:01:35.000] Projects: /user/username/projects/myproject/main/tsconfig.json After request PolledWatches:: @@ -289,11 +289,11 @@ FsWatchesRecursive:: /user/username/projects/myproject/decls: {} -Info 29 [16:01:36.000] response: +Info 29 [00:01:36.000] response: { "responseRequired": false } -Info 30 [16:01:37.000] request: +Info 30 [00:01:37.000] request: { "seq": 0, "type": "request", @@ -328,11 +328,11 @@ FsWatchesRecursive:: /user/username/projects/myproject/decls: {} -Info 31 [16:01:38.000] Search path: /user/username/projects/myproject/random -Info 32 [16:01:39.000] For info: /user/username/projects/myproject/random/random.ts :: Config file name: /user/username/projects/myproject/random/tsconfig.json -Info 33 [16:01:40.000] Creating configuration project /user/username/projects/myproject/random/tsconfig.json -Info 34 [16:01:41.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/random/tsconfig.json 2000 undefined Project: /user/username/projects/myproject/random/tsconfig.json WatchType: Config file -Info 35 [16:01:42.000] Config: /user/username/projects/myproject/random/tsconfig.json : { +Info 31 [00:01:38.000] Search path: /user/username/projects/myproject/random +Info 32 [00:01:39.000] For info: /user/username/projects/myproject/random/random.ts :: Config file name: /user/username/projects/myproject/random/tsconfig.json +Info 33 [00:01:40.000] Creating configuration project /user/username/projects/myproject/random/tsconfig.json +Info 34 [00:01:41.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/random/tsconfig.json 2000 undefined Project: /user/username/projects/myproject/random/tsconfig.json WatchType: Config file +Info 35 [00:01:42.000] Config: /user/username/projects/myproject/random/tsconfig.json : { "rootNames": [ "/user/username/projects/myproject/random/random.ts" ], @@ -340,17 +340,17 @@ Info 35 [16:01:42.000] Config: /user/username/projects/myproject/random/tsconf "configFilePath": "/user/username/projects/myproject/random/tsconfig.json" } } -Info 36 [16:01:43.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/random 1 undefined Config: /user/username/projects/myproject/random/tsconfig.json WatchType: Wild card directory -Info 37 [16:01:44.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/random 1 undefined Config: /user/username/projects/myproject/random/tsconfig.json WatchType: Wild card directory -Info 38 [16:01:45.000] Plugins were requested but not running in environment that supports 'require'. Nothing will be loaded -Info 39 [16:01:46.000] Starting updateGraphWorker: Project: /user/username/projects/myproject/random/tsconfig.json -Info 40 [16:01:47.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/random/node_modules/@types 1 undefined Project: /user/username/projects/myproject/random/tsconfig.json WatchType: Type roots -Info 41 [16:01:48.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/random/node_modules/@types 1 undefined Project: /user/username/projects/myproject/random/tsconfig.json WatchType: Type roots -Info 42 [16:01:49.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/random/tsconfig.json WatchType: Type roots -Info 43 [16:01:50.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/random/tsconfig.json WatchType: Type roots -Info 44 [16:01:51.000] Finishing updateGraphWorker: Project: /user/username/projects/myproject/random/tsconfig.json Version: 1 structureChanged: true structureIsReused:: Not Elapsed:: *ms -Info 45 [16:01:52.000] Project '/user/username/projects/myproject/random/tsconfig.json' (Configured) -Info 46 [16:01:53.000] Files (2) +Info 36 [00:01:43.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/random 1 undefined Config: /user/username/projects/myproject/random/tsconfig.json WatchType: Wild card directory +Info 37 [00:01:44.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/random 1 undefined Config: /user/username/projects/myproject/random/tsconfig.json WatchType: Wild card directory +Info 38 [00:01:45.000] Plugins were requested but not running in environment that supports 'require'. Nothing will be loaded +Info 39 [00:01:46.000] Starting updateGraphWorker: Project: /user/username/projects/myproject/random/tsconfig.json +Info 40 [00:01:47.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/random/node_modules/@types 1 undefined Project: /user/username/projects/myproject/random/tsconfig.json WatchType: Type roots +Info 41 [00:01:48.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/random/node_modules/@types 1 undefined Project: /user/username/projects/myproject/random/tsconfig.json WatchType: Type roots +Info 42 [00:01:49.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/random/tsconfig.json WatchType: Type roots +Info 43 [00:01:50.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/random/tsconfig.json WatchType: Type roots +Info 44 [00:01:51.000] Finishing updateGraphWorker: Project: /user/username/projects/myproject/random/tsconfig.json Version: 1 structureChanged: true structureIsReused:: Not Elapsed:: *ms +Info 45 [00:01:52.000] Project '/user/username/projects/myproject/random/tsconfig.json' (Configured) +Info 46 [00:01:53.000] Files (2) /a/lib/lib.d.ts /user/username/projects/myproject/random/random.ts @@ -360,20 +360,20 @@ Info 46 [16:01:53.000] Files (2) random.ts Matched by default include pattern '**/*' -Info 47 [16:01:54.000] ----------------------------------------------- -Info 48 [16:01:55.000] Project '/user/username/projects/myproject/main/tsconfig.json' (Configured) -Info 48 [16:01:56.000] Files (3) +Info 47 [00:01:54.000] ----------------------------------------------- +Info 48 [00:01:55.000] Project '/user/username/projects/myproject/main/tsconfig.json' (Configured) +Info 48 [00:01:56.000] Files (3) -Info 48 [16:01:57.000] ----------------------------------------------- -Info 48 [16:01:58.000] Project '/user/username/projects/myproject/random/tsconfig.json' (Configured) -Info 48 [16:01:59.000] Files (2) +Info 48 [00:01:57.000] ----------------------------------------------- +Info 48 [00:01:58.000] Project '/user/username/projects/myproject/random/tsconfig.json' (Configured) +Info 48 [00:01:59.000] Files (2) -Info 48 [16:02:00.000] ----------------------------------------------- -Info 48 [16:02:01.000] Open files: -Info 48 [16:02:02.000] FileName: /user/username/projects/myproject/main/main.ts ProjectRootPath: undefined -Info 48 [16:02:03.000] Projects: /user/username/projects/myproject/main/tsconfig.json -Info 48 [16:02:04.000] FileName: /user/username/projects/myproject/random/random.ts ProjectRootPath: undefined -Info 48 [16:02:05.000] Projects: /user/username/projects/myproject/random/tsconfig.json +Info 48 [00:02:00.000] ----------------------------------------------- +Info 48 [00:02:01.000] Open files: +Info 48 [00:02:02.000] FileName: /user/username/projects/myproject/main/main.ts ProjectRootPath: undefined +Info 48 [00:02:03.000] Projects: /user/username/projects/myproject/main/tsconfig.json +Info 48 [00:02:04.000] FileName: /user/username/projects/myproject/random/random.ts ProjectRootPath: undefined +Info 48 [00:02:05.000] Projects: /user/username/projects/myproject/random/tsconfig.json After request PolledWatches:: @@ -406,11 +406,11 @@ FsWatchesRecursive:: /user/username/projects/myproject/random: {} -Info 48 [16:02:06.000] response: +Info 48 [00:02:06.000] response: { "responseRequired": false } -Info 49 [16:02:07.000] request: +Info 49 [00:02:07.000] request: { "command": "definitionAndBoundSpan", "arguments": { @@ -485,7 +485,7 @@ FsWatchesRecursive:: /user/username/projects/myproject/random: {} -Info 50 [16:02:08.000] response: +Info 50 [00:02:08.000] response: { "response": { "definitions": [ @@ -522,10 +522,10 @@ Info 50 [16:02:08.000] response: }, "responseRequired": true } -Info 51 [16:02:11.000] DirectoryWatcher:: Triggered with /user/username/projects/myproject/decls/FnS.d.ts :: WatchInfo: /user/username/projects/myproject/decls 1 undefined Project: /user/username/projects/myproject/main/tsconfig.json WatchType: Failed Lookup Locations -Info 52 [16:02:12.000] Scheduled: /user/username/projects/myproject/main/tsconfig.jsonFailedLookupInvalidation -Info 53 [16:02:13.000] Elapsed:: *ms DirectoryWatcher:: Triggered with /user/username/projects/myproject/decls/FnS.d.ts :: WatchInfo: /user/username/projects/myproject/decls 1 undefined Project: /user/username/projects/myproject/main/tsconfig.json WatchType: Failed Lookup Locations -Info 54 [16:02:14.000] request: +Info 51 [00:02:11.000] DirectoryWatcher:: Triggered with /user/username/projects/myproject/decls/FnS.d.ts :: WatchInfo: /user/username/projects/myproject/decls 1 undefined Project: /user/username/projects/myproject/main/tsconfig.json WatchType: Failed Lookup Locations +Info 52 [00:02:12.000] Scheduled: /user/username/projects/myproject/main/tsconfig.jsonFailedLookupInvalidation +Info 53 [00:02:13.000] Elapsed:: *ms DirectoryWatcher:: Triggered with /user/username/projects/myproject/decls/FnS.d.ts :: WatchInfo: /user/username/projects/myproject/decls 1 undefined Project: /user/username/projects/myproject/main/tsconfig.json WatchType: Failed Lookup Locations +Info 54 [00:02:14.000] request: { "command": "definitionAndBoundSpan", "arguments": { @@ -608,7 +608,7 @@ FsWatchesRecursive:: /user/username/projects/myproject/random: {} -Info 55 [16:02:15.000] response: +Info 55 [00:02:15.000] response: { "response": { "definitions": [ @@ -645,7 +645,7 @@ Info 55 [16:02:15.000] response: }, "responseRequired": true } -Info 56 [16:02:16.000] request: +Info 56 [00:02:16.000] request: { "command": "definitionAndBoundSpan", "arguments": { @@ -720,7 +720,7 @@ FsWatchesRecursive:: /user/username/projects/myproject/random: {} -Info 57 [16:02:17.000] response: +Info 57 [00:02:17.000] response: { "response": { "definitions": [ @@ -757,7 +757,7 @@ Info 57 [16:02:17.000] response: }, "responseRequired": true } -Info 58 [16:02:18.000] request: +Info 58 [00:02:18.000] request: { "command": "definitionAndBoundSpan", "arguments": { @@ -832,7 +832,7 @@ FsWatchesRecursive:: /user/username/projects/myproject/random: {} -Info 59 [16:02:19.000] response: +Info 59 [00:02:19.000] response: { "response": { "definitions": [ @@ -869,7 +869,7 @@ Info 59 [16:02:19.000] response: }, "responseRequired": true } -Info 60 [16:02:20.000] request: +Info 60 [00:02:20.000] request: { "command": "definitionAndBoundSpan", "arguments": { @@ -944,7 +944,7 @@ FsWatchesRecursive:: /user/username/projects/myproject/random: {} -Info 61 [16:02:21.000] response: +Info 61 [00:02:21.000] response: { "response": { "definitions": [ @@ -981,7 +981,7 @@ Info 61 [16:02:21.000] response: }, "responseRequired": true } -Info 62 [16:02:22.000] request: +Info 62 [00:02:22.000] request: { "command": "definitionAndBoundSpan", "arguments": { @@ -1056,7 +1056,7 @@ FsWatchesRecursive:: /user/username/projects/myproject/random: {} -Info 63 [16:02:23.000] response: +Info 63 [00:02:23.000] response: { "response": { "definitions": [ @@ -1093,7 +1093,7 @@ Info 63 [16:02:23.000] response: }, "responseRequired": true } -Info 64 [16:02:24.000] request: +Info 64 [00:02:24.000] request: { "seq": 0, "type": "request", @@ -1134,18 +1134,18 @@ FsWatchesRecursive:: /user/username/projects/myproject/random: {} -Info 65 [16:02:25.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/random/random.ts 500 undefined WatchType: Closed Script info -Info 66 [16:02:26.000] Project '/user/username/projects/myproject/main/tsconfig.json' (Configured) -Info 66 [16:02:27.000] Files (3) +Info 65 [00:02:25.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/random/random.ts 500 undefined WatchType: Closed Script info +Info 66 [00:02:26.000] Project '/user/username/projects/myproject/main/tsconfig.json' (Configured) +Info 66 [00:02:27.000] Files (3) -Info 66 [16:02:28.000] ----------------------------------------------- -Info 66 [16:02:29.000] Project '/user/username/projects/myproject/random/tsconfig.json' (Configured) -Info 66 [16:02:30.000] Files (2) +Info 66 [00:02:28.000] ----------------------------------------------- +Info 66 [00:02:29.000] Project '/user/username/projects/myproject/random/tsconfig.json' (Configured) +Info 66 [00:02:30.000] Files (2) -Info 66 [16:02:31.000] ----------------------------------------------- -Info 66 [16:02:32.000] Open files: -Info 66 [16:02:33.000] FileName: /user/username/projects/myproject/main/main.ts ProjectRootPath: undefined -Info 66 [16:02:34.000] Projects: /user/username/projects/myproject/main/tsconfig.json +Info 66 [00:02:31.000] ----------------------------------------------- +Info 66 [00:02:32.000] Open files: +Info 66 [00:02:33.000] FileName: /user/username/projects/myproject/main/main.ts ProjectRootPath: undefined +Info 66 [00:02:34.000] Projects: /user/username/projects/myproject/main/tsconfig.json After request PolledWatches:: @@ -1180,11 +1180,11 @@ FsWatchesRecursive:: /user/username/projects/myproject/random: {} -Info 66 [16:02:35.000] response: +Info 66 [00:02:35.000] response: { "responseRequired": false } -Info 67 [16:02:36.000] request: +Info 67 [00:02:36.000] request: { "seq": 0, "type": "request", @@ -1227,22 +1227,22 @@ FsWatchesRecursive:: /user/username/projects/myproject/random: {} -Info 68 [16:02:37.000] FileWatcher:: Close:: WatchInfo: /user/username/projects/myproject/random/random.ts 500 undefined WatchType: Closed Script info -Info 69 [16:02:38.000] Search path: /user/username/projects/myproject/random -Info 70 [16:02:39.000] For info: /user/username/projects/myproject/random/random.ts :: Config file name: /user/username/projects/myproject/random/tsconfig.json -Info 71 [16:02:40.000] Project '/user/username/projects/myproject/main/tsconfig.json' (Configured) -Info 71 [16:02:41.000] Files (3) +Info 68 [00:02:37.000] FileWatcher:: Close:: WatchInfo: /user/username/projects/myproject/random/random.ts 500 undefined WatchType: Closed Script info +Info 69 [00:02:38.000] Search path: /user/username/projects/myproject/random +Info 70 [00:02:39.000] For info: /user/username/projects/myproject/random/random.ts :: Config file name: /user/username/projects/myproject/random/tsconfig.json +Info 71 [00:02:40.000] Project '/user/username/projects/myproject/main/tsconfig.json' (Configured) +Info 71 [00:02:41.000] Files (3) -Info 71 [16:02:42.000] ----------------------------------------------- -Info 71 [16:02:43.000] Project '/user/username/projects/myproject/random/tsconfig.json' (Configured) -Info 71 [16:02:44.000] Files (2) +Info 71 [00:02:42.000] ----------------------------------------------- +Info 71 [00:02:43.000] Project '/user/username/projects/myproject/random/tsconfig.json' (Configured) +Info 71 [00:02:44.000] Files (2) -Info 71 [16:02:45.000] ----------------------------------------------- -Info 71 [16:02:46.000] Open files: -Info 71 [16:02:47.000] FileName: /user/username/projects/myproject/main/main.ts ProjectRootPath: undefined -Info 71 [16:02:48.000] Projects: /user/username/projects/myproject/main/tsconfig.json -Info 71 [16:02:49.000] FileName: /user/username/projects/myproject/random/random.ts ProjectRootPath: undefined -Info 71 [16:02:50.000] Projects: /user/username/projects/myproject/random/tsconfig.json +Info 71 [00:02:45.000] ----------------------------------------------- +Info 71 [00:02:46.000] Open files: +Info 71 [00:02:47.000] FileName: /user/username/projects/myproject/main/main.ts ProjectRootPath: undefined +Info 71 [00:02:48.000] Projects: /user/username/projects/myproject/main/tsconfig.json +Info 71 [00:02:49.000] FileName: /user/username/projects/myproject/random/random.ts ProjectRootPath: undefined +Info 71 [00:02:50.000] Projects: /user/username/projects/myproject/random/tsconfig.json After request PolledWatches:: @@ -1275,11 +1275,11 @@ FsWatchesRecursive:: /user/username/projects/myproject/random: {} -Info 71 [16:02:51.000] response: +Info 71 [00:02:51.000] response: { "responseRequired": false } -Info 72 [16:02:52.000] request: +Info 72 [00:02:52.000] request: { "seq": 0, "type": "request", @@ -1320,18 +1320,18 @@ FsWatchesRecursive:: /user/username/projects/myproject/random: {} -Info 73 [16:02:53.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/main/main.ts 500 undefined WatchType: Closed Script info -Info 74 [16:02:54.000] Project '/user/username/projects/myproject/main/tsconfig.json' (Configured) -Info 74 [16:02:55.000] Files (3) +Info 73 [00:02:53.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/main/main.ts 500 undefined WatchType: Closed Script info +Info 74 [00:02:54.000] Project '/user/username/projects/myproject/main/tsconfig.json' (Configured) +Info 74 [00:02:55.000] Files (3) -Info 74 [16:02:56.000] ----------------------------------------------- -Info 74 [16:02:57.000] Project '/user/username/projects/myproject/random/tsconfig.json' (Configured) -Info 74 [16:02:58.000] Files (2) +Info 74 [00:02:56.000] ----------------------------------------------- +Info 74 [00:02:57.000] Project '/user/username/projects/myproject/random/tsconfig.json' (Configured) +Info 74 [00:02:58.000] Files (2) -Info 74 [16:02:59.000] ----------------------------------------------- -Info 74 [16:03:00.000] Open files: -Info 74 [16:03:01.000] FileName: /user/username/projects/myproject/random/random.ts ProjectRootPath: undefined -Info 74 [16:03:02.000] Projects: /user/username/projects/myproject/random/tsconfig.json +Info 74 [00:02:59.000] ----------------------------------------------- +Info 74 [00:03:00.000] Open files: +Info 74 [00:03:01.000] FileName: /user/username/projects/myproject/random/random.ts ProjectRootPath: undefined +Info 74 [00:03:02.000] Projects: /user/username/projects/myproject/random/tsconfig.json After request PolledWatches:: @@ -1366,11 +1366,11 @@ FsWatchesRecursive:: /user/username/projects/myproject/random: {} -Info 74 [16:03:03.000] response: +Info 74 [00:03:03.000] response: { "responseRequired": false } -Info 75 [16:03:04.000] request: +Info 75 [00:03:04.000] request: { "seq": 0, "type": "request", @@ -1413,16 +1413,16 @@ FsWatchesRecursive:: /user/username/projects/myproject/random: {} -Info 76 [16:03:05.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/random/random.ts 500 undefined WatchType: Closed Script info -Info 77 [16:03:06.000] Project '/user/username/projects/myproject/main/tsconfig.json' (Configured) -Info 77 [16:03:07.000] Files (3) +Info 76 [00:03:05.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/random/random.ts 500 undefined WatchType: Closed Script info +Info 77 [00:03:06.000] Project '/user/username/projects/myproject/main/tsconfig.json' (Configured) +Info 77 [00:03:07.000] Files (3) -Info 77 [16:03:08.000] ----------------------------------------------- -Info 77 [16:03:09.000] Project '/user/username/projects/myproject/random/tsconfig.json' (Configured) -Info 77 [16:03:10.000] Files (2) +Info 77 [00:03:08.000] ----------------------------------------------- +Info 77 [00:03:09.000] Project '/user/username/projects/myproject/random/tsconfig.json' (Configured) +Info 77 [00:03:10.000] Files (2) -Info 77 [16:03:11.000] ----------------------------------------------- -Info 77 [16:03:12.000] Open files: +Info 77 [00:03:11.000] ----------------------------------------------- +Info 77 [00:03:12.000] Open files: After request PolledWatches:: @@ -1459,11 +1459,11 @@ FsWatchesRecursive:: /user/username/projects/myproject/random: {} -Info 77 [16:03:13.000] response: +Info 77 [00:03:13.000] response: { "responseRequired": false } -Info 78 [16:03:14.000] request: +Info 78 [00:03:14.000] request: { "seq": 0, "type": "request", @@ -1508,12 +1508,12 @@ FsWatchesRecursive:: /user/username/projects/myproject/random: {} -Info 79 [16:03:15.000] FileWatcher:: Close:: WatchInfo: /user/username/projects/myproject/random/random.ts 500 undefined WatchType: Closed Script info -Info 80 [16:03:16.000] Search path: /user/username/projects/myproject/random -Info 81 [16:03:17.000] For info: /user/username/projects/myproject/random/random.ts :: Config file name: /user/username/projects/myproject/random/tsconfig.json -Info 82 [16:03:18.000] `remove Project:: -Info 83 [16:03:19.000] Project '/user/username/projects/myproject/main/tsconfig.json' (Configured) -Info 84 [16:03:20.000] Files (3) +Info 79 [00:03:15.000] FileWatcher:: Close:: WatchInfo: /user/username/projects/myproject/random/random.ts 500 undefined WatchType: Closed Script info +Info 80 [00:03:16.000] Search path: /user/username/projects/myproject/random +Info 81 [00:03:17.000] For info: /user/username/projects/myproject/random/random.ts :: Config file name: /user/username/projects/myproject/random/tsconfig.json +Info 82 [00:03:18.000] `remove Project:: +Info 83 [00:03:19.000] Project '/user/username/projects/myproject/main/tsconfig.json' (Configured) +Info 84 [00:03:20.000] Files (3) /a/lib/lib.d.ts /user/username/projects/myproject/dependency/FnS.ts /user/username/projects/myproject/main/main.ts @@ -1526,28 +1526,28 @@ Info 84 [16:03:20.000] Files (3) main.ts Matched by default include pattern '**/*' -Info 85 [16:03:21.000] ----------------------------------------------- -Info 86 [16:03:22.000] DirectoryWatcher:: Close:: WatchInfo: /user/username/projects/myproject/main 1 undefined Config: /user/username/projects/myproject/main/tsconfig.json WatchType: Wild card directory -Info 87 [16:03:23.000] 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 88 [16:03:24.000] FileWatcher:: Close:: WatchInfo: /user/username/projects/myproject/main/tsconfig.json 2000 undefined Project: /user/username/projects/myproject/main/tsconfig.json WatchType: Config file -Info 89 [16:03:25.000] DirectoryWatcher:: Close:: WatchInfo: /user/username/projects/myproject/dependency 1 undefined Config: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Wild card directory -Info 90 [16:03:26.000] 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 91 [16:03:27.000] FileWatcher:: Close:: WatchInfo: /user/username/projects/myproject/dependency/tsconfig.json 2000 undefined Project: /user/username/projects/myproject/main/tsconfig.json WatchType: Config file -Info 92 [16:03:28.000] DirectoryWatcher:: Close:: WatchInfo: /user/username/projects/myproject/decls 1 undefined Project: /user/username/projects/myproject/main/tsconfig.json WatchType: Failed Lookup Locations -Info 93 [16:03:29.000] 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 94 [16:03:30.000] 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 95 [16:03:31.000] 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 96 [16:03:32.000] DirectoryWatcher:: Close:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/main/tsconfig.json WatchType: Type roots -Info 97 [16:03:33.000] 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 98 [16:03:34.000] FileWatcher:: Close:: WatchInfo: /user/username/projects/myproject/main/main.ts 500 undefined WatchType: Closed Script info -Info 99 [16:03:35.000] FileWatcher:: Close:: WatchInfo: /user/username/projects/myproject/dependency/FnS.ts 500 undefined WatchType: Closed Script info -Info 100 [16:03:36.000] Project '/user/username/projects/myproject/random/tsconfig.json' (Configured) -Info 100 [16:03:37.000] Files (2) - -Info 100 [16:03:38.000] ----------------------------------------------- -Info 100 [16:03:39.000] Open files: -Info 100 [16:03:40.000] FileName: /user/username/projects/myproject/random/random.ts ProjectRootPath: undefined -Info 100 [16:03:41.000] Projects: /user/username/projects/myproject/random/tsconfig.json +Info 85 [00:03:21.000] ----------------------------------------------- +Info 86 [00:03:22.000] DirectoryWatcher:: Close:: WatchInfo: /user/username/projects/myproject/main 1 undefined Config: /user/username/projects/myproject/main/tsconfig.json WatchType: Wild card directory +Info 87 [00:03:23.000] 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 88 [00:03:24.000] FileWatcher:: Close:: WatchInfo: /user/username/projects/myproject/main/tsconfig.json 2000 undefined Project: /user/username/projects/myproject/main/tsconfig.json WatchType: Config file +Info 89 [00:03:25.000] DirectoryWatcher:: Close:: WatchInfo: /user/username/projects/myproject/dependency 1 undefined Config: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Wild card directory +Info 90 [00:03:26.000] 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 91 [00:03:27.000] FileWatcher:: Close:: WatchInfo: /user/username/projects/myproject/dependency/tsconfig.json 2000 undefined Project: /user/username/projects/myproject/main/tsconfig.json WatchType: Config file +Info 92 [00:03:28.000] DirectoryWatcher:: Close:: WatchInfo: /user/username/projects/myproject/decls 1 undefined Project: /user/username/projects/myproject/main/tsconfig.json WatchType: Failed Lookup Locations +Info 93 [00:03:29.000] 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 94 [00:03:30.000] 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 95 [00:03:31.000] 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 96 [00:03:32.000] DirectoryWatcher:: Close:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/main/tsconfig.json WatchType: Type roots +Info 97 [00:03:33.000] 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 98 [00:03:34.000] FileWatcher:: Close:: WatchInfo: /user/username/projects/myproject/main/main.ts 500 undefined WatchType: Closed Script info +Info 99 [00:03:35.000] FileWatcher:: Close:: WatchInfo: /user/username/projects/myproject/dependency/FnS.ts 500 undefined WatchType: Closed Script info +Info 100 [00:03:36.000] Project '/user/username/projects/myproject/random/tsconfig.json' (Configured) +Info 100 [00:03:37.000] Files (2) + +Info 100 [00:03:38.000] ----------------------------------------------- +Info 100 [00:03:39.000] Open files: +Info 100 [00:03:40.000] FileName: /user/username/projects/myproject/random/random.ts ProjectRootPath: undefined +Info 100 [00:03:41.000] Projects: /user/username/projects/myproject/random/tsconfig.json After request PolledWatches:: @@ -1566,7 +1566,7 @@ FsWatchesRecursive:: /user/username/projects/myproject/random: {} -Info 100 [16:03:42.000] response: +Info 100 [00:03:42.000] response: { "responseRequired": false } \ No newline at end of file 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 ea10299b24660..52d787f1f1858 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 @@ -1,5 +1,5 @@ -Info 0 [16:01:00.000] Provided types map file "/a/lib/typesMap.json" doesn't exist -Info 1 [16:01:01.000] request: +Info 0 [00:01:00.000] Provided types map file "/a/lib/typesMap.json" doesn't exist +Info 1 [00:01:01.000] request: { "seq": 0, "type": "request", @@ -200,11 +200,11 @@ FsWatches:: FsWatchesRecursive:: -Info 2 [16:01:02.000] Search path: /user/username/projects/myproject/main -Info 3 [16:01:03.000] For info: /user/username/projects/myproject/main/main.ts :: Config file name: /user/username/projects/myproject/main/tsconfig.json -Info 4 [16:01:04.000] Creating configuration project /user/username/projects/myproject/main/tsconfig.json -Info 5 [16:01:05.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/main/tsconfig.json 2000 undefined Project: /user/username/projects/myproject/main/tsconfig.json WatchType: Config file -Info 6 [16:01:06.000] Config: /user/username/projects/myproject/main/tsconfig.json : { +Info 2 [00:01:02.000] Search path: /user/username/projects/myproject/main +Info 3 [00:01:03.000] For info: /user/username/projects/myproject/main/main.ts :: Config file name: /user/username/projects/myproject/main/tsconfig.json +Info 4 [00:01:04.000] Creating configuration project /user/username/projects/myproject/main/tsconfig.json +Info 5 [00:01:05.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/main/tsconfig.json 2000 undefined Project: /user/username/projects/myproject/main/tsconfig.json WatchType: Config file +Info 6 [00:01:06.000] Config: /user/username/projects/myproject/main/tsconfig.json : { "rootNames": [ "/user/username/projects/myproject/main/main.ts" ], @@ -220,11 +220,11 @@ Info 6 [16:01:06.000] Config: /user/username/projects/myproject/main/tsconfig } ] } -Info 7 [16:01:07.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/main 1 undefined Config: /user/username/projects/myproject/main/tsconfig.json WatchType: Wild card directory -Info 8 [16:01:08.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/main 1 undefined Config: /user/username/projects/myproject/main/tsconfig.json WatchType: Wild card directory -Info 9 [16:01:09.000] Plugins were requested but not running in environment that supports 'require'. Nothing will be loaded -Info 10 [16:01:10.000] Starting updateGraphWorker: Project: /user/username/projects/myproject/main/tsconfig.json -Info 11 [16:01:11.000] Config: /user/username/projects/myproject/dependency/tsconfig.json : { +Info 7 [00:01:07.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/main 1 undefined Config: /user/username/projects/myproject/main/tsconfig.json WatchType: Wild card directory +Info 8 [00:01:08.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/main 1 undefined Config: /user/username/projects/myproject/main/tsconfig.json WatchType: Wild card directory +Info 9 [00:01:09.000] Plugins were requested but not running in environment that supports 'require'. Nothing will be loaded +Info 10 [00:01:10.000] Starting updateGraphWorker: Project: /user/username/projects/myproject/main/tsconfig.json +Info 11 [00:01:11.000] Config: /user/username/projects/myproject/dependency/tsconfig.json : { "rootNames": [ "/user/username/projects/myproject/dependency/FnS.ts" ], @@ -235,20 +235,20 @@ Info 11 [16:01:11.000] Config: /user/username/projects/myproject/dependency/ts "configFilePath": "/user/username/projects/myproject/dependency/tsconfig.json" } } -Info 12 [16:01:12.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/dependency/tsconfig.json 2000 undefined Project: /user/username/projects/myproject/main/tsconfig.json WatchType: Config file -Info 13 [16:01:13.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/dependency 1 undefined Config: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Wild card directory -Info 14 [16:01:14.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/dependency 1 undefined Config: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Wild card directory -Info 15 [16:01:15.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/decls 1 undefined Project: /user/username/projects/myproject/main/tsconfig.json WatchType: Failed Lookup Locations -Info 16 [16:01:16.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/decls 1 undefined Project: /user/username/projects/myproject/main/tsconfig.json WatchType: Failed Lookup Locations -Info 17 [16:01:17.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/dependency/FnS.ts 500 undefined WatchType: Closed Script info -Info 18 [16:01:18.000] FileWatcher:: Added:: WatchInfo: /a/lib/lib.d.ts 500 undefined WatchType: Closed Script info -Info 19 [16:01:19.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/main/node_modules/@types 1 undefined Project: /user/username/projects/myproject/main/tsconfig.json WatchType: Type roots -Info 20 [16:01:20.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/main/node_modules/@types 1 undefined Project: /user/username/projects/myproject/main/tsconfig.json WatchType: Type roots -Info 21 [16:01:21.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/main/tsconfig.json WatchType: Type roots -Info 22 [16:01:22.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/main/tsconfig.json WatchType: Type roots -Info 23 [16:01:23.000] Finishing updateGraphWorker: Project: /user/username/projects/myproject/main/tsconfig.json Version: 1 structureChanged: true structureIsReused:: Not Elapsed:: *ms -Info 24 [16:01:24.000] Project '/user/username/projects/myproject/main/tsconfig.json' (Configured) -Info 25 [16:01:25.000] Files (3) +Info 12 [00:01:12.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/dependency/tsconfig.json 2000 undefined Project: /user/username/projects/myproject/main/tsconfig.json WatchType: Config file +Info 13 [00:01:13.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/dependency 1 undefined Config: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Wild card directory +Info 14 [00:01:14.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/dependency 1 undefined Config: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Wild card directory +Info 15 [00:01:15.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/decls 1 undefined Project: /user/username/projects/myproject/main/tsconfig.json WatchType: Failed Lookup Locations +Info 16 [00:01:16.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/decls 1 undefined Project: /user/username/projects/myproject/main/tsconfig.json WatchType: Failed Lookup Locations +Info 17 [00:01:17.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/dependency/FnS.ts 500 undefined WatchType: Closed Script info +Info 18 [00:01:18.000] FileWatcher:: Added:: WatchInfo: /a/lib/lib.d.ts 500 undefined WatchType: Closed Script info +Info 19 [00:01:19.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/main/node_modules/@types 1 undefined Project: /user/username/projects/myproject/main/tsconfig.json WatchType: Type roots +Info 20 [00:01:20.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/main/node_modules/@types 1 undefined Project: /user/username/projects/myproject/main/tsconfig.json WatchType: Type roots +Info 21 [00:01:21.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/main/tsconfig.json WatchType: Type roots +Info 22 [00:01:22.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/main/tsconfig.json WatchType: Type roots +Info 23 [00:01:23.000] Finishing updateGraphWorker: Project: /user/username/projects/myproject/main/tsconfig.json Version: 1 structureChanged: true structureIsReused:: Not Elapsed:: *ms +Info 24 [00:01:24.000] Project '/user/username/projects/myproject/main/tsconfig.json' (Configured) +Info 25 [00:01:25.000] Files (3) /a/lib/lib.d.ts /user/username/projects/myproject/dependency/FnS.ts /user/username/projects/myproject/main/main.ts @@ -261,16 +261,16 @@ Info 25 [16:01:25.000] Files (3) main.ts Matched by default include pattern '**/*' -Info 26 [16:01:26.000] ----------------------------------------------- -Info 27 [16:01:27.000] Search path: /user/username/projects/myproject/main -Info 28 [16:01:28.000] For info: /user/username/projects/myproject/main/tsconfig.json :: No config files found. -Info 29 [16:01:29.000] Project '/user/username/projects/myproject/main/tsconfig.json' (Configured) -Info 29 [16:01:30.000] Files (3) +Info 26 [00:01:26.000] ----------------------------------------------- +Info 27 [00:01:27.000] Search path: /user/username/projects/myproject/main +Info 28 [00:01:28.000] For info: /user/username/projects/myproject/main/tsconfig.json :: No config files found. +Info 29 [00:01:29.000] Project '/user/username/projects/myproject/main/tsconfig.json' (Configured) +Info 29 [00:01:30.000] Files (3) -Info 29 [16:01:31.000] ----------------------------------------------- -Info 29 [16:01:32.000] Open files: -Info 29 [16:01:33.000] FileName: /user/username/projects/myproject/main/main.ts ProjectRootPath: undefined -Info 29 [16:01:34.000] Projects: /user/username/projects/myproject/main/tsconfig.json +Info 29 [00:01:31.000] ----------------------------------------------- +Info 29 [00:01:32.000] Open files: +Info 29 [00:01:33.000] FileName: /user/username/projects/myproject/main/main.ts ProjectRootPath: undefined +Info 29 [00:01:34.000] Projects: /user/username/projects/myproject/main/tsconfig.json After request PolledWatches:: @@ -297,11 +297,11 @@ FsWatchesRecursive:: /user/username/projects/myproject/decls: {} -Info 29 [16:01:35.000] response: +Info 29 [00:01:35.000] response: { "responseRequired": false } -Info 30 [16:01:36.000] request: +Info 30 [00:01:36.000] request: { "seq": 0, "type": "request", @@ -336,11 +336,11 @@ FsWatchesRecursive:: /user/username/projects/myproject/decls: {} -Info 31 [16:01:37.000] Search path: /user/username/projects/myproject/random -Info 32 [16:01:38.000] For info: /user/username/projects/myproject/random/random.ts :: Config file name: /user/username/projects/myproject/random/tsconfig.json -Info 33 [16:01:39.000] Creating configuration project /user/username/projects/myproject/random/tsconfig.json -Info 34 [16:01:40.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/random/tsconfig.json 2000 undefined Project: /user/username/projects/myproject/random/tsconfig.json WatchType: Config file -Info 35 [16:01:41.000] Config: /user/username/projects/myproject/random/tsconfig.json : { +Info 31 [00:01:37.000] Search path: /user/username/projects/myproject/random +Info 32 [00:01:38.000] For info: /user/username/projects/myproject/random/random.ts :: Config file name: /user/username/projects/myproject/random/tsconfig.json +Info 33 [00:01:39.000] Creating configuration project /user/username/projects/myproject/random/tsconfig.json +Info 34 [00:01:40.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/random/tsconfig.json 2000 undefined Project: /user/username/projects/myproject/random/tsconfig.json WatchType: Config file +Info 35 [00:01:41.000] Config: /user/username/projects/myproject/random/tsconfig.json : { "rootNames": [ "/user/username/projects/myproject/random/random.ts" ], @@ -348,17 +348,17 @@ Info 35 [16:01:41.000] Config: /user/username/projects/myproject/random/tsconf "configFilePath": "/user/username/projects/myproject/random/tsconfig.json" } } -Info 36 [16:01:42.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/random 1 undefined Config: /user/username/projects/myproject/random/tsconfig.json WatchType: Wild card directory -Info 37 [16:01:43.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/random 1 undefined Config: /user/username/projects/myproject/random/tsconfig.json WatchType: Wild card directory -Info 38 [16:01:44.000] Plugins were requested but not running in environment that supports 'require'. Nothing will be loaded -Info 39 [16:01:45.000] Starting updateGraphWorker: Project: /user/username/projects/myproject/random/tsconfig.json -Info 40 [16:01:46.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/random/node_modules/@types 1 undefined Project: /user/username/projects/myproject/random/tsconfig.json WatchType: Type roots -Info 41 [16:01:47.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/random/node_modules/@types 1 undefined Project: /user/username/projects/myproject/random/tsconfig.json WatchType: Type roots -Info 42 [16:01:48.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/random/tsconfig.json WatchType: Type roots -Info 43 [16:01:49.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/random/tsconfig.json WatchType: Type roots -Info 44 [16:01:50.000] Finishing updateGraphWorker: Project: /user/username/projects/myproject/random/tsconfig.json Version: 1 structureChanged: true structureIsReused:: Not Elapsed:: *ms -Info 45 [16:01:51.000] Project '/user/username/projects/myproject/random/tsconfig.json' (Configured) -Info 46 [16:01:52.000] Files (2) +Info 36 [00:01:42.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/random 1 undefined Config: /user/username/projects/myproject/random/tsconfig.json WatchType: Wild card directory +Info 37 [00:01:43.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/random 1 undefined Config: /user/username/projects/myproject/random/tsconfig.json WatchType: Wild card directory +Info 38 [00:01:44.000] Plugins were requested but not running in environment that supports 'require'. Nothing will be loaded +Info 39 [00:01:45.000] Starting updateGraphWorker: Project: /user/username/projects/myproject/random/tsconfig.json +Info 40 [00:01:46.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/random/node_modules/@types 1 undefined Project: /user/username/projects/myproject/random/tsconfig.json WatchType: Type roots +Info 41 [00:01:47.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/random/node_modules/@types 1 undefined Project: /user/username/projects/myproject/random/tsconfig.json WatchType: Type roots +Info 42 [00:01:48.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/random/tsconfig.json WatchType: Type roots +Info 43 [00:01:49.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/random/tsconfig.json WatchType: Type roots +Info 44 [00:01:50.000] Finishing updateGraphWorker: Project: /user/username/projects/myproject/random/tsconfig.json Version: 1 structureChanged: true structureIsReused:: Not Elapsed:: *ms +Info 45 [00:01:51.000] Project '/user/username/projects/myproject/random/tsconfig.json' (Configured) +Info 46 [00:01:52.000] Files (2) /a/lib/lib.d.ts /user/username/projects/myproject/random/random.ts @@ -368,20 +368,20 @@ Info 46 [16:01:52.000] Files (2) random.ts Matched by default include pattern '**/*' -Info 47 [16:01:53.000] ----------------------------------------------- -Info 48 [16:01:54.000] Project '/user/username/projects/myproject/main/tsconfig.json' (Configured) -Info 48 [16:01:55.000] Files (3) +Info 47 [00:01:53.000] ----------------------------------------------- +Info 48 [00:01:54.000] Project '/user/username/projects/myproject/main/tsconfig.json' (Configured) +Info 48 [00:01:55.000] Files (3) -Info 48 [16:01:56.000] ----------------------------------------------- -Info 48 [16:01:57.000] Project '/user/username/projects/myproject/random/tsconfig.json' (Configured) -Info 48 [16:01:58.000] Files (2) +Info 48 [00:01:56.000] ----------------------------------------------- +Info 48 [00:01:57.000] Project '/user/username/projects/myproject/random/tsconfig.json' (Configured) +Info 48 [00:01:58.000] Files (2) -Info 48 [16:01:59.000] ----------------------------------------------- -Info 48 [16:02:00.000] Open files: -Info 48 [16:02:01.000] FileName: /user/username/projects/myproject/main/main.ts ProjectRootPath: undefined -Info 48 [16:02:02.000] Projects: /user/username/projects/myproject/main/tsconfig.json -Info 48 [16:02:03.000] FileName: /user/username/projects/myproject/random/random.ts ProjectRootPath: undefined -Info 48 [16:02:04.000] Projects: /user/username/projects/myproject/random/tsconfig.json +Info 48 [00:01:59.000] ----------------------------------------------- +Info 48 [00:02:00.000] Open files: +Info 48 [00:02:01.000] FileName: /user/username/projects/myproject/main/main.ts ProjectRootPath: undefined +Info 48 [00:02:02.000] Projects: /user/username/projects/myproject/main/tsconfig.json +Info 48 [00:02:03.000] FileName: /user/username/projects/myproject/random/random.ts ProjectRootPath: undefined +Info 48 [00:02:04.000] Projects: /user/username/projects/myproject/random/tsconfig.json After request PolledWatches:: @@ -414,11 +414,11 @@ FsWatchesRecursive:: /user/username/projects/myproject/random: {} -Info 48 [16:02:05.000] response: +Info 48 [00:02:05.000] response: { "responseRequired": false } -Info 49 [16:02:06.000] request: +Info 49 [00:02:06.000] request: { "command": "definitionAndBoundSpan", "arguments": { @@ -493,7 +493,7 @@ FsWatchesRecursive:: /user/username/projects/myproject/random: {} -Info 50 [16:02:07.000] response: +Info 50 [00:02:07.000] response: { "response": { "definitions": [ @@ -530,10 +530,10 @@ Info 50 [16:02:07.000] response: }, "responseRequired": true } -Info 51 [16:02:09.000] DirectoryWatcher:: Triggered with /user/username/projects/myproject/decls/FnS.d.ts :: WatchInfo: /user/username/projects/myproject/decls 1 undefined Project: /user/username/projects/myproject/main/tsconfig.json WatchType: Failed Lookup Locations -Info 52 [16:02:10.000] Scheduled: /user/username/projects/myproject/main/tsconfig.jsonFailedLookupInvalidation -Info 53 [16:02:11.000] Elapsed:: *ms DirectoryWatcher:: Triggered with /user/username/projects/myproject/decls/FnS.d.ts :: WatchInfo: /user/username/projects/myproject/decls 1 undefined Project: /user/username/projects/myproject/main/tsconfig.json WatchType: Failed Lookup Locations -Info 54 [16:02:12.000] request: +Info 51 [00:02:09.000] DirectoryWatcher:: Triggered with /user/username/projects/myproject/decls/FnS.d.ts :: WatchInfo: /user/username/projects/myproject/decls 1 undefined Project: /user/username/projects/myproject/main/tsconfig.json WatchType: Failed Lookup Locations +Info 52 [00:02:10.000] Scheduled: /user/username/projects/myproject/main/tsconfig.jsonFailedLookupInvalidation +Info 53 [00:02:11.000] Elapsed:: *ms DirectoryWatcher:: Triggered with /user/username/projects/myproject/decls/FnS.d.ts :: WatchInfo: /user/username/projects/myproject/decls 1 undefined Project: /user/username/projects/myproject/main/tsconfig.json WatchType: Failed Lookup Locations +Info 54 [00:02:12.000] request: { "command": "definitionAndBoundSpan", "arguments": { @@ -609,7 +609,7 @@ FsWatchesRecursive:: /user/username/projects/myproject/random: {} -Info 55 [16:02:13.000] response: +Info 55 [00:02:13.000] response: { "response": { "definitions": [ @@ -646,7 +646,7 @@ Info 55 [16:02:13.000] response: }, "responseRequired": true } -Info 56 [16:02:14.000] request: +Info 56 [00:02:14.000] request: { "command": "definitionAndBoundSpan", "arguments": { @@ -721,7 +721,7 @@ FsWatchesRecursive:: /user/username/projects/myproject/random: {} -Info 57 [16:02:15.000] response: +Info 57 [00:02:15.000] response: { "response": { "definitions": [ @@ -758,7 +758,7 @@ Info 57 [16:02:15.000] response: }, "responseRequired": true } -Info 58 [16:02:16.000] request: +Info 58 [00:02:16.000] request: { "command": "definitionAndBoundSpan", "arguments": { @@ -833,7 +833,7 @@ FsWatchesRecursive:: /user/username/projects/myproject/random: {} -Info 59 [16:02:17.000] response: +Info 59 [00:02:17.000] response: { "response": { "definitions": [ @@ -870,7 +870,7 @@ Info 59 [16:02:17.000] response: }, "responseRequired": true } -Info 60 [16:02:18.000] request: +Info 60 [00:02:18.000] request: { "command": "definitionAndBoundSpan", "arguments": { @@ -945,7 +945,7 @@ FsWatchesRecursive:: /user/username/projects/myproject/random: {} -Info 61 [16:02:19.000] response: +Info 61 [00:02:19.000] response: { "response": { "definitions": [ @@ -982,7 +982,7 @@ Info 61 [16:02:19.000] response: }, "responseRequired": true } -Info 62 [16:02:20.000] request: +Info 62 [00:02:20.000] request: { "command": "definitionAndBoundSpan", "arguments": { @@ -1057,7 +1057,7 @@ FsWatchesRecursive:: /user/username/projects/myproject/random: {} -Info 63 [16:02:21.000] response: +Info 63 [00:02:21.000] response: { "response": { "definitions": [ @@ -1094,7 +1094,7 @@ Info 63 [16:02:21.000] response: }, "responseRequired": true } -Info 64 [16:02:22.000] request: +Info 64 [00:02:22.000] request: { "seq": 0, "type": "request", @@ -1135,18 +1135,18 @@ FsWatchesRecursive:: /user/username/projects/myproject/random: {} -Info 65 [16:02:23.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/random/random.ts 500 undefined WatchType: Closed Script info -Info 66 [16:02:24.000] Project '/user/username/projects/myproject/main/tsconfig.json' (Configured) -Info 66 [16:02:25.000] Files (3) +Info 65 [00:02:23.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/random/random.ts 500 undefined WatchType: Closed Script info +Info 66 [00:02:24.000] Project '/user/username/projects/myproject/main/tsconfig.json' (Configured) +Info 66 [00:02:25.000] Files (3) -Info 66 [16:02:26.000] ----------------------------------------------- -Info 66 [16:02:27.000] Project '/user/username/projects/myproject/random/tsconfig.json' (Configured) -Info 66 [16:02:28.000] Files (2) +Info 66 [00:02:26.000] ----------------------------------------------- +Info 66 [00:02:27.000] Project '/user/username/projects/myproject/random/tsconfig.json' (Configured) +Info 66 [00:02:28.000] Files (2) -Info 66 [16:02:29.000] ----------------------------------------------- -Info 66 [16:02:30.000] Open files: -Info 66 [16:02:31.000] FileName: /user/username/projects/myproject/main/main.ts ProjectRootPath: undefined -Info 66 [16:02:32.000] Projects: /user/username/projects/myproject/main/tsconfig.json +Info 66 [00:02:29.000] ----------------------------------------------- +Info 66 [00:02:30.000] Open files: +Info 66 [00:02:31.000] FileName: /user/username/projects/myproject/main/main.ts ProjectRootPath: undefined +Info 66 [00:02:32.000] Projects: /user/username/projects/myproject/main/tsconfig.json After request PolledWatches:: @@ -1181,11 +1181,11 @@ FsWatchesRecursive:: /user/username/projects/myproject/random: {} -Info 66 [16:02:33.000] response: +Info 66 [00:02:33.000] response: { "responseRequired": false } -Info 67 [16:02:34.000] request: +Info 67 [00:02:34.000] request: { "seq": 0, "type": "request", @@ -1228,22 +1228,22 @@ FsWatchesRecursive:: /user/username/projects/myproject/random: {} -Info 68 [16:02:35.000] FileWatcher:: Close:: WatchInfo: /user/username/projects/myproject/random/random.ts 500 undefined WatchType: Closed Script info -Info 69 [16:02:36.000] Search path: /user/username/projects/myproject/random -Info 70 [16:02:37.000] For info: /user/username/projects/myproject/random/random.ts :: Config file name: /user/username/projects/myproject/random/tsconfig.json -Info 71 [16:02:38.000] Project '/user/username/projects/myproject/main/tsconfig.json' (Configured) -Info 71 [16:02:39.000] Files (3) +Info 68 [00:02:35.000] FileWatcher:: Close:: WatchInfo: /user/username/projects/myproject/random/random.ts 500 undefined WatchType: Closed Script info +Info 69 [00:02:36.000] Search path: /user/username/projects/myproject/random +Info 70 [00:02:37.000] For info: /user/username/projects/myproject/random/random.ts :: Config file name: /user/username/projects/myproject/random/tsconfig.json +Info 71 [00:02:38.000] Project '/user/username/projects/myproject/main/tsconfig.json' (Configured) +Info 71 [00:02:39.000] Files (3) -Info 71 [16:02:40.000] ----------------------------------------------- -Info 71 [16:02:41.000] Project '/user/username/projects/myproject/random/tsconfig.json' (Configured) -Info 71 [16:02:42.000] Files (2) +Info 71 [00:02:40.000] ----------------------------------------------- +Info 71 [00:02:41.000] Project '/user/username/projects/myproject/random/tsconfig.json' (Configured) +Info 71 [00:02:42.000] Files (2) -Info 71 [16:02:43.000] ----------------------------------------------- -Info 71 [16:02:44.000] Open files: -Info 71 [16:02:45.000] FileName: /user/username/projects/myproject/main/main.ts ProjectRootPath: undefined -Info 71 [16:02:46.000] Projects: /user/username/projects/myproject/main/tsconfig.json -Info 71 [16:02:47.000] FileName: /user/username/projects/myproject/random/random.ts ProjectRootPath: undefined -Info 71 [16:02:48.000] Projects: /user/username/projects/myproject/random/tsconfig.json +Info 71 [00:02:43.000] ----------------------------------------------- +Info 71 [00:02:44.000] Open files: +Info 71 [00:02:45.000] FileName: /user/username/projects/myproject/main/main.ts ProjectRootPath: undefined +Info 71 [00:02:46.000] Projects: /user/username/projects/myproject/main/tsconfig.json +Info 71 [00:02:47.000] FileName: /user/username/projects/myproject/random/random.ts ProjectRootPath: undefined +Info 71 [00:02:48.000] Projects: /user/username/projects/myproject/random/tsconfig.json After request PolledWatches:: @@ -1276,11 +1276,11 @@ FsWatchesRecursive:: /user/username/projects/myproject/random: {} -Info 71 [16:02:49.000] response: +Info 71 [00:02:49.000] response: { "responseRequired": false } -Info 72 [16:02:50.000] request: +Info 72 [00:02:50.000] request: { "seq": 0, "type": "request", @@ -1321,18 +1321,18 @@ FsWatchesRecursive:: /user/username/projects/myproject/random: {} -Info 73 [16:02:51.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/main/main.ts 500 undefined WatchType: Closed Script info -Info 74 [16:02:52.000] Project '/user/username/projects/myproject/main/tsconfig.json' (Configured) -Info 74 [16:02:53.000] Files (3) +Info 73 [00:02:51.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/main/main.ts 500 undefined WatchType: Closed Script info +Info 74 [00:02:52.000] Project '/user/username/projects/myproject/main/tsconfig.json' (Configured) +Info 74 [00:02:53.000] Files (3) -Info 74 [16:02:54.000] ----------------------------------------------- -Info 74 [16:02:55.000] Project '/user/username/projects/myproject/random/tsconfig.json' (Configured) -Info 74 [16:02:56.000] Files (2) +Info 74 [00:02:54.000] ----------------------------------------------- +Info 74 [00:02:55.000] Project '/user/username/projects/myproject/random/tsconfig.json' (Configured) +Info 74 [00:02:56.000] Files (2) -Info 74 [16:02:57.000] ----------------------------------------------- -Info 74 [16:02:58.000] Open files: -Info 74 [16:02:59.000] FileName: /user/username/projects/myproject/random/random.ts ProjectRootPath: undefined -Info 74 [16:03:00.000] Projects: /user/username/projects/myproject/random/tsconfig.json +Info 74 [00:02:57.000] ----------------------------------------------- +Info 74 [00:02:58.000] Open files: +Info 74 [00:02:59.000] FileName: /user/username/projects/myproject/random/random.ts ProjectRootPath: undefined +Info 74 [00:03:00.000] Projects: /user/username/projects/myproject/random/tsconfig.json After request PolledWatches:: @@ -1367,11 +1367,11 @@ FsWatchesRecursive:: /user/username/projects/myproject/random: {} -Info 74 [16:03:01.000] response: +Info 74 [00:03:01.000] response: { "responseRequired": false } -Info 75 [16:03:02.000] request: +Info 75 [00:03:02.000] request: { "seq": 0, "type": "request", @@ -1414,16 +1414,16 @@ FsWatchesRecursive:: /user/username/projects/myproject/random: {} -Info 76 [16:03:03.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/random/random.ts 500 undefined WatchType: Closed Script info -Info 77 [16:03:04.000] Project '/user/username/projects/myproject/main/tsconfig.json' (Configured) -Info 77 [16:03:05.000] Files (3) +Info 76 [00:03:03.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/random/random.ts 500 undefined WatchType: Closed Script info +Info 77 [00:03:04.000] Project '/user/username/projects/myproject/main/tsconfig.json' (Configured) +Info 77 [00:03:05.000] Files (3) -Info 77 [16:03:06.000] ----------------------------------------------- -Info 77 [16:03:07.000] Project '/user/username/projects/myproject/random/tsconfig.json' (Configured) -Info 77 [16:03:08.000] Files (2) +Info 77 [00:03:06.000] ----------------------------------------------- +Info 77 [00:03:07.000] Project '/user/username/projects/myproject/random/tsconfig.json' (Configured) +Info 77 [00:03:08.000] Files (2) -Info 77 [16:03:09.000] ----------------------------------------------- -Info 77 [16:03:10.000] Open files: +Info 77 [00:03:09.000] ----------------------------------------------- +Info 77 [00:03:10.000] Open files: After request PolledWatches:: @@ -1460,11 +1460,11 @@ FsWatchesRecursive:: /user/username/projects/myproject/random: {} -Info 77 [16:03:11.000] response: +Info 77 [00:03:11.000] response: { "responseRequired": false } -Info 78 [16:03:12.000] request: +Info 78 [00:03:12.000] request: { "seq": 0, "type": "request", @@ -1509,12 +1509,12 @@ FsWatchesRecursive:: /user/username/projects/myproject/random: {} -Info 79 [16:03:13.000] FileWatcher:: Close:: WatchInfo: /user/username/projects/myproject/random/random.ts 500 undefined WatchType: Closed Script info -Info 80 [16:03:14.000] Search path: /user/username/projects/myproject/random -Info 81 [16:03:15.000] For info: /user/username/projects/myproject/random/random.ts :: Config file name: /user/username/projects/myproject/random/tsconfig.json -Info 82 [16:03:16.000] `remove Project:: -Info 83 [16:03:17.000] Project '/user/username/projects/myproject/main/tsconfig.json' (Configured) -Info 84 [16:03:18.000] Files (3) +Info 79 [00:03:13.000] FileWatcher:: Close:: WatchInfo: /user/username/projects/myproject/random/random.ts 500 undefined WatchType: Closed Script info +Info 80 [00:03:14.000] Search path: /user/username/projects/myproject/random +Info 81 [00:03:15.000] For info: /user/username/projects/myproject/random/random.ts :: Config file name: /user/username/projects/myproject/random/tsconfig.json +Info 82 [00:03:16.000] `remove Project:: +Info 83 [00:03:17.000] Project '/user/username/projects/myproject/main/tsconfig.json' (Configured) +Info 84 [00:03:18.000] Files (3) /a/lib/lib.d.ts /user/username/projects/myproject/dependency/FnS.ts /user/username/projects/myproject/main/main.ts @@ -1527,28 +1527,28 @@ Info 84 [16:03:18.000] Files (3) main.ts Matched by default include pattern '**/*' -Info 85 [16:03:19.000] ----------------------------------------------- -Info 86 [16:03:20.000] DirectoryWatcher:: Close:: WatchInfo: /user/username/projects/myproject/main 1 undefined Config: /user/username/projects/myproject/main/tsconfig.json WatchType: Wild card directory -Info 87 [16:03:21.000] 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 88 [16:03:22.000] FileWatcher:: Close:: WatchInfo: /user/username/projects/myproject/main/tsconfig.json 2000 undefined Project: /user/username/projects/myproject/main/tsconfig.json WatchType: Config file -Info 89 [16:03:23.000] DirectoryWatcher:: Close:: WatchInfo: /user/username/projects/myproject/dependency 1 undefined Config: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Wild card directory -Info 90 [16:03:24.000] 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 91 [16:03:25.000] FileWatcher:: Close:: WatchInfo: /user/username/projects/myproject/dependency/tsconfig.json 2000 undefined Project: /user/username/projects/myproject/main/tsconfig.json WatchType: Config file -Info 92 [16:03:26.000] DirectoryWatcher:: Close:: WatchInfo: /user/username/projects/myproject/decls 1 undefined Project: /user/username/projects/myproject/main/tsconfig.json WatchType: Failed Lookup Locations -Info 93 [16:03:27.000] 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 94 [16:03:28.000] 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 95 [16:03:29.000] 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 96 [16:03:30.000] DirectoryWatcher:: Close:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/main/tsconfig.json WatchType: Type roots -Info 97 [16:03:31.000] 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 98 [16:03:32.000] FileWatcher:: Close:: WatchInfo: /user/username/projects/myproject/main/main.ts 500 undefined WatchType: Closed Script info -Info 99 [16:03:33.000] FileWatcher:: Close:: WatchInfo: /user/username/projects/myproject/dependency/FnS.ts 500 undefined WatchType: Closed Script info -Info 100 [16:03:34.000] Project '/user/username/projects/myproject/random/tsconfig.json' (Configured) -Info 100 [16:03:35.000] Files (2) - -Info 100 [16:03:36.000] ----------------------------------------------- -Info 100 [16:03:37.000] Open files: -Info 100 [16:03:38.000] FileName: /user/username/projects/myproject/random/random.ts ProjectRootPath: undefined -Info 100 [16:03:39.000] Projects: /user/username/projects/myproject/random/tsconfig.json +Info 85 [00:03:19.000] ----------------------------------------------- +Info 86 [00:03:20.000] DirectoryWatcher:: Close:: WatchInfo: /user/username/projects/myproject/main 1 undefined Config: /user/username/projects/myproject/main/tsconfig.json WatchType: Wild card directory +Info 87 [00:03:21.000] 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 88 [00:03:22.000] FileWatcher:: Close:: WatchInfo: /user/username/projects/myproject/main/tsconfig.json 2000 undefined Project: /user/username/projects/myproject/main/tsconfig.json WatchType: Config file +Info 89 [00:03:23.000] DirectoryWatcher:: Close:: WatchInfo: /user/username/projects/myproject/dependency 1 undefined Config: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Wild card directory +Info 90 [00:03:24.000] 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 91 [00:03:25.000] FileWatcher:: Close:: WatchInfo: /user/username/projects/myproject/dependency/tsconfig.json 2000 undefined Project: /user/username/projects/myproject/main/tsconfig.json WatchType: Config file +Info 92 [00:03:26.000] DirectoryWatcher:: Close:: WatchInfo: /user/username/projects/myproject/decls 1 undefined Project: /user/username/projects/myproject/main/tsconfig.json WatchType: Failed Lookup Locations +Info 93 [00:03:27.000] 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 94 [00:03:28.000] 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 95 [00:03:29.000] 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 96 [00:03:30.000] DirectoryWatcher:: Close:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/main/tsconfig.json WatchType: Type roots +Info 97 [00:03:31.000] 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 98 [00:03:32.000] FileWatcher:: Close:: WatchInfo: /user/username/projects/myproject/main/main.ts 500 undefined WatchType: Closed Script info +Info 99 [00:03:33.000] FileWatcher:: Close:: WatchInfo: /user/username/projects/myproject/dependency/FnS.ts 500 undefined WatchType: Closed Script info +Info 100 [00:03:34.000] Project '/user/username/projects/myproject/random/tsconfig.json' (Configured) +Info 100 [00:03:35.000] Files (2) + +Info 100 [00:03:36.000] ----------------------------------------------- +Info 100 [00:03:37.000] Open files: +Info 100 [00:03:38.000] FileName: /user/username/projects/myproject/random/random.ts ProjectRootPath: undefined +Info 100 [00:03:39.000] Projects: /user/username/projects/myproject/random/tsconfig.json After request PolledWatches:: @@ -1567,7 +1567,7 @@ FsWatchesRecursive:: /user/username/projects/myproject/random: {} -Info 100 [16:03:40.000] response: +Info 100 [00:03:40.000] response: { "responseRequired": false } \ No newline at end of file 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 1d5211b7d1485..c6ffddc4cf790 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 @@ -1,5 +1,5 @@ -Info 0 [16:01:01.000] Provided types map file "/a/lib/typesMap.json" doesn't exist -Info 1 [16:01:02.000] request: +Info 0 [00:01:01.000] Provided types map file "/a/lib/typesMap.json" doesn't exist +Info 1 [00:01:02.000] request: { "seq": 0, "type": "request", @@ -192,11 +192,11 @@ FsWatches:: FsWatchesRecursive:: -Info 2 [16:01:03.000] Search path: /user/username/projects/myproject/main -Info 3 [16:01:04.000] For info: /user/username/projects/myproject/main/main.ts :: Config file name: /user/username/projects/myproject/main/tsconfig.json -Info 4 [16:01:05.000] Creating configuration project /user/username/projects/myproject/main/tsconfig.json -Info 5 [16:01:06.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/main/tsconfig.json 2000 undefined Project: /user/username/projects/myproject/main/tsconfig.json WatchType: Config file -Info 6 [16:01:07.000] Config: /user/username/projects/myproject/main/tsconfig.json : { +Info 2 [00:01:03.000] Search path: /user/username/projects/myproject/main +Info 3 [00:01:04.000] For info: /user/username/projects/myproject/main/main.ts :: Config file name: /user/username/projects/myproject/main/tsconfig.json +Info 4 [00:01:05.000] Creating configuration project /user/username/projects/myproject/main/tsconfig.json +Info 5 [00:01:06.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/main/tsconfig.json 2000 undefined Project: /user/username/projects/myproject/main/tsconfig.json WatchType: Config file +Info 6 [00:01:07.000] Config: /user/username/projects/myproject/main/tsconfig.json : { "rootNames": [ "/user/username/projects/myproject/main/main.ts" ], @@ -212,11 +212,11 @@ Info 6 [16:01:07.000] Config: /user/username/projects/myproject/main/tsconfig } ] } -Info 7 [16:01:08.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/main 1 undefined Config: /user/username/projects/myproject/main/tsconfig.json WatchType: Wild card directory -Info 8 [16:01:09.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/main 1 undefined Config: /user/username/projects/myproject/main/tsconfig.json WatchType: Wild card directory -Info 9 [16:01:10.000] Plugins were requested but not running in environment that supports 'require'. Nothing will be loaded -Info 10 [16:01:11.000] Starting updateGraphWorker: Project: /user/username/projects/myproject/main/tsconfig.json -Info 11 [16:01:12.000] Config: /user/username/projects/myproject/dependency/tsconfig.json : { +Info 7 [00:01:08.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/main 1 undefined Config: /user/username/projects/myproject/main/tsconfig.json WatchType: Wild card directory +Info 8 [00:01:09.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/main 1 undefined Config: /user/username/projects/myproject/main/tsconfig.json WatchType: Wild card directory +Info 9 [00:01:10.000] Plugins were requested but not running in environment that supports 'require'. Nothing will be loaded +Info 10 [00:01:11.000] Starting updateGraphWorker: Project: /user/username/projects/myproject/main/tsconfig.json +Info 11 [00:01:12.000] Config: /user/username/projects/myproject/dependency/tsconfig.json : { "rootNames": [ "/user/username/projects/myproject/dependency/FnS.ts" ], @@ -227,20 +227,20 @@ Info 11 [16:01:12.000] Config: /user/username/projects/myproject/dependency/ts "configFilePath": "/user/username/projects/myproject/dependency/tsconfig.json" } } -Info 12 [16:01:13.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/dependency/tsconfig.json 2000 undefined Project: /user/username/projects/myproject/main/tsconfig.json WatchType: Config file -Info 13 [16:01:14.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/dependency 1 undefined Config: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Wild card directory -Info 14 [16:01:15.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/dependency 1 undefined Config: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Wild card directory -Info 15 [16:01:16.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/decls 1 undefined Project: /user/username/projects/myproject/main/tsconfig.json WatchType: Failed Lookup Locations -Info 16 [16:01:17.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/decls 1 undefined Project: /user/username/projects/myproject/main/tsconfig.json WatchType: Failed Lookup Locations -Info 17 [16:01:18.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/dependency/FnS.ts 500 undefined WatchType: Closed Script info -Info 18 [16:01:19.000] FileWatcher:: Added:: WatchInfo: /a/lib/lib.d.ts 500 undefined WatchType: Closed Script info -Info 19 [16:01:20.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/main/node_modules/@types 1 undefined Project: /user/username/projects/myproject/main/tsconfig.json WatchType: Type roots -Info 20 [16:01:21.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/main/node_modules/@types 1 undefined Project: /user/username/projects/myproject/main/tsconfig.json WatchType: Type roots -Info 21 [16:01:22.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/main/tsconfig.json WatchType: Type roots -Info 22 [16:01:23.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/main/tsconfig.json WatchType: Type roots -Info 23 [16:01:24.000] Finishing updateGraphWorker: Project: /user/username/projects/myproject/main/tsconfig.json Version: 1 structureChanged: true structureIsReused:: Not Elapsed:: *ms -Info 24 [16:01:25.000] Project '/user/username/projects/myproject/main/tsconfig.json' (Configured) -Info 25 [16:01:26.000] Files (3) +Info 12 [00:01:13.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/dependency/tsconfig.json 2000 undefined Project: /user/username/projects/myproject/main/tsconfig.json WatchType: Config file +Info 13 [00:01:14.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/dependency 1 undefined Config: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Wild card directory +Info 14 [00:01:15.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/dependency 1 undefined Config: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Wild card directory +Info 15 [00:01:16.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/decls 1 undefined Project: /user/username/projects/myproject/main/tsconfig.json WatchType: Failed Lookup Locations +Info 16 [00:01:17.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/decls 1 undefined Project: /user/username/projects/myproject/main/tsconfig.json WatchType: Failed Lookup Locations +Info 17 [00:01:18.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/dependency/FnS.ts 500 undefined WatchType: Closed Script info +Info 18 [00:01:19.000] FileWatcher:: Added:: WatchInfo: /a/lib/lib.d.ts 500 undefined WatchType: Closed Script info +Info 19 [00:01:20.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/main/node_modules/@types 1 undefined Project: /user/username/projects/myproject/main/tsconfig.json WatchType: Type roots +Info 20 [00:01:21.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/main/node_modules/@types 1 undefined Project: /user/username/projects/myproject/main/tsconfig.json WatchType: Type roots +Info 21 [00:01:22.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/main/tsconfig.json WatchType: Type roots +Info 22 [00:01:23.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/main/tsconfig.json WatchType: Type roots +Info 23 [00:01:24.000] Finishing updateGraphWorker: Project: /user/username/projects/myproject/main/tsconfig.json Version: 1 structureChanged: true structureIsReused:: Not Elapsed:: *ms +Info 24 [00:01:25.000] Project '/user/username/projects/myproject/main/tsconfig.json' (Configured) +Info 25 [00:01:26.000] Files (3) /a/lib/lib.d.ts /user/username/projects/myproject/dependency/FnS.ts /user/username/projects/myproject/main/main.ts @@ -253,16 +253,16 @@ Info 25 [16:01:26.000] Files (3) main.ts Matched by default include pattern '**/*' -Info 26 [16:01:27.000] ----------------------------------------------- -Info 27 [16:01:28.000] Search path: /user/username/projects/myproject/main -Info 28 [16:01:29.000] For info: /user/username/projects/myproject/main/tsconfig.json :: No config files found. -Info 29 [16:01:30.000] Project '/user/username/projects/myproject/main/tsconfig.json' (Configured) -Info 29 [16:01:31.000] Files (3) +Info 26 [00:01:27.000] ----------------------------------------------- +Info 27 [00:01:28.000] Search path: /user/username/projects/myproject/main +Info 28 [00:01:29.000] For info: /user/username/projects/myproject/main/tsconfig.json :: No config files found. +Info 29 [00:01:30.000] Project '/user/username/projects/myproject/main/tsconfig.json' (Configured) +Info 29 [00:01:31.000] Files (3) -Info 29 [16:01:32.000] ----------------------------------------------- -Info 29 [16:01:33.000] Open files: -Info 29 [16:01:34.000] FileName: /user/username/projects/myproject/main/main.ts ProjectRootPath: undefined -Info 29 [16:01:35.000] Projects: /user/username/projects/myproject/main/tsconfig.json +Info 29 [00:01:32.000] ----------------------------------------------- +Info 29 [00:01:33.000] Open files: +Info 29 [00:01:34.000] FileName: /user/username/projects/myproject/main/main.ts ProjectRootPath: undefined +Info 29 [00:01:35.000] Projects: /user/username/projects/myproject/main/tsconfig.json After request PolledWatches:: @@ -289,11 +289,11 @@ FsWatchesRecursive:: /user/username/projects/myproject/decls: {} -Info 29 [16:01:36.000] response: +Info 29 [00:01:36.000] response: { "responseRequired": false } -Info 30 [16:01:37.000] request: +Info 30 [00:01:37.000] request: { "seq": 0, "type": "request", @@ -328,11 +328,11 @@ FsWatchesRecursive:: /user/username/projects/myproject/decls: {} -Info 31 [16:01:38.000] Search path: /user/username/projects/myproject/random -Info 32 [16:01:39.000] For info: /user/username/projects/myproject/random/random.ts :: Config file name: /user/username/projects/myproject/random/tsconfig.json -Info 33 [16:01:40.000] Creating configuration project /user/username/projects/myproject/random/tsconfig.json -Info 34 [16:01:41.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/random/tsconfig.json 2000 undefined Project: /user/username/projects/myproject/random/tsconfig.json WatchType: Config file -Info 35 [16:01:42.000] Config: /user/username/projects/myproject/random/tsconfig.json : { +Info 31 [00:01:38.000] Search path: /user/username/projects/myproject/random +Info 32 [00:01:39.000] For info: /user/username/projects/myproject/random/random.ts :: Config file name: /user/username/projects/myproject/random/tsconfig.json +Info 33 [00:01:40.000] Creating configuration project /user/username/projects/myproject/random/tsconfig.json +Info 34 [00:01:41.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/random/tsconfig.json 2000 undefined Project: /user/username/projects/myproject/random/tsconfig.json WatchType: Config file +Info 35 [00:01:42.000] Config: /user/username/projects/myproject/random/tsconfig.json : { "rootNames": [ "/user/username/projects/myproject/random/random.ts" ], @@ -340,17 +340,17 @@ Info 35 [16:01:42.000] Config: /user/username/projects/myproject/random/tsconf "configFilePath": "/user/username/projects/myproject/random/tsconfig.json" } } -Info 36 [16:01:43.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/random 1 undefined Config: /user/username/projects/myproject/random/tsconfig.json WatchType: Wild card directory -Info 37 [16:01:44.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/random 1 undefined Config: /user/username/projects/myproject/random/tsconfig.json WatchType: Wild card directory -Info 38 [16:01:45.000] Plugins were requested but not running in environment that supports 'require'. Nothing will be loaded -Info 39 [16:01:46.000] Starting updateGraphWorker: Project: /user/username/projects/myproject/random/tsconfig.json -Info 40 [16:01:47.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/random/node_modules/@types 1 undefined Project: /user/username/projects/myproject/random/tsconfig.json WatchType: Type roots -Info 41 [16:01:48.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/random/node_modules/@types 1 undefined Project: /user/username/projects/myproject/random/tsconfig.json WatchType: Type roots -Info 42 [16:01:49.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/random/tsconfig.json WatchType: Type roots -Info 43 [16:01:50.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/random/tsconfig.json WatchType: Type roots -Info 44 [16:01:51.000] Finishing updateGraphWorker: Project: /user/username/projects/myproject/random/tsconfig.json Version: 1 structureChanged: true structureIsReused:: Not Elapsed:: *ms -Info 45 [16:01:52.000] Project '/user/username/projects/myproject/random/tsconfig.json' (Configured) -Info 46 [16:01:53.000] Files (2) +Info 36 [00:01:43.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/random 1 undefined Config: /user/username/projects/myproject/random/tsconfig.json WatchType: Wild card directory +Info 37 [00:01:44.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/random 1 undefined Config: /user/username/projects/myproject/random/tsconfig.json WatchType: Wild card directory +Info 38 [00:01:45.000] Plugins were requested but not running in environment that supports 'require'. Nothing will be loaded +Info 39 [00:01:46.000] Starting updateGraphWorker: Project: /user/username/projects/myproject/random/tsconfig.json +Info 40 [00:01:47.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/random/node_modules/@types 1 undefined Project: /user/username/projects/myproject/random/tsconfig.json WatchType: Type roots +Info 41 [00:01:48.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/random/node_modules/@types 1 undefined Project: /user/username/projects/myproject/random/tsconfig.json WatchType: Type roots +Info 42 [00:01:49.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/random/tsconfig.json WatchType: Type roots +Info 43 [00:01:50.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/random/tsconfig.json WatchType: Type roots +Info 44 [00:01:51.000] Finishing updateGraphWorker: Project: /user/username/projects/myproject/random/tsconfig.json Version: 1 structureChanged: true structureIsReused:: Not Elapsed:: *ms +Info 45 [00:01:52.000] Project '/user/username/projects/myproject/random/tsconfig.json' (Configured) +Info 46 [00:01:53.000] Files (2) /a/lib/lib.d.ts /user/username/projects/myproject/random/random.ts @@ -360,20 +360,20 @@ Info 46 [16:01:53.000] Files (2) random.ts Matched by default include pattern '**/*' -Info 47 [16:01:54.000] ----------------------------------------------- -Info 48 [16:01:55.000] Project '/user/username/projects/myproject/main/tsconfig.json' (Configured) -Info 48 [16:01:56.000] Files (3) +Info 47 [00:01:54.000] ----------------------------------------------- +Info 48 [00:01:55.000] Project '/user/username/projects/myproject/main/tsconfig.json' (Configured) +Info 48 [00:01:56.000] Files (3) -Info 48 [16:01:57.000] ----------------------------------------------- -Info 48 [16:01:58.000] Project '/user/username/projects/myproject/random/tsconfig.json' (Configured) -Info 48 [16:01:59.000] Files (2) +Info 48 [00:01:57.000] ----------------------------------------------- +Info 48 [00:01:58.000] Project '/user/username/projects/myproject/random/tsconfig.json' (Configured) +Info 48 [00:01:59.000] Files (2) -Info 48 [16:02:00.000] ----------------------------------------------- -Info 48 [16:02:01.000] Open files: -Info 48 [16:02:02.000] FileName: /user/username/projects/myproject/main/main.ts ProjectRootPath: undefined -Info 48 [16:02:03.000] Projects: /user/username/projects/myproject/main/tsconfig.json -Info 48 [16:02:04.000] FileName: /user/username/projects/myproject/random/random.ts ProjectRootPath: undefined -Info 48 [16:02:05.000] Projects: /user/username/projects/myproject/random/tsconfig.json +Info 48 [00:02:00.000] ----------------------------------------------- +Info 48 [00:02:01.000] Open files: +Info 48 [00:02:02.000] FileName: /user/username/projects/myproject/main/main.ts ProjectRootPath: undefined +Info 48 [00:02:03.000] Projects: /user/username/projects/myproject/main/tsconfig.json +Info 48 [00:02:04.000] FileName: /user/username/projects/myproject/random/random.ts ProjectRootPath: undefined +Info 48 [00:02:05.000] Projects: /user/username/projects/myproject/random/tsconfig.json After request PolledWatches:: @@ -406,11 +406,11 @@ FsWatchesRecursive:: /user/username/projects/myproject/random: {} -Info 48 [16:02:06.000] response: +Info 48 [00:02:06.000] response: { "responseRequired": false } -Info 49 [16:02:07.000] request: +Info 49 [00:02:07.000] request: { "command": "definitionAndBoundSpan", "arguments": { @@ -485,7 +485,7 @@ FsWatchesRecursive:: /user/username/projects/myproject/random: {} -Info 50 [16:02:08.000] response: +Info 50 [00:02:08.000] response: { "response": { "definitions": [ @@ -522,7 +522,7 @@ Info 50 [16:02:08.000] response: }, "responseRequired": true } -Info 51 [16:02:09.000] request: +Info 51 [00:02:09.000] request: { "command": "definitionAndBoundSpan", "arguments": { @@ -597,7 +597,7 @@ FsWatchesRecursive:: /user/username/projects/myproject/random: {} -Info 52 [16:02:10.000] response: +Info 52 [00:02:10.000] response: { "response": { "definitions": [ @@ -634,7 +634,7 @@ Info 52 [16:02:10.000] response: }, "responseRequired": true } -Info 53 [16:02:11.000] request: +Info 53 [00:02:11.000] request: { "command": "definitionAndBoundSpan", "arguments": { @@ -709,7 +709,7 @@ FsWatchesRecursive:: /user/username/projects/myproject/random: {} -Info 54 [16:02:12.000] response: +Info 54 [00:02:12.000] response: { "response": { "definitions": [ @@ -746,7 +746,7 @@ Info 54 [16:02:12.000] response: }, "responseRequired": true } -Info 55 [16:02:13.000] request: +Info 55 [00:02:13.000] request: { "command": "definitionAndBoundSpan", "arguments": { @@ -821,7 +821,7 @@ FsWatchesRecursive:: /user/username/projects/myproject/random: {} -Info 56 [16:02:14.000] response: +Info 56 [00:02:14.000] response: { "response": { "definitions": [ @@ -858,7 +858,7 @@ Info 56 [16:02:14.000] response: }, "responseRequired": true } -Info 57 [16:02:15.000] request: +Info 57 [00:02:15.000] request: { "command": "definitionAndBoundSpan", "arguments": { @@ -933,7 +933,7 @@ FsWatchesRecursive:: /user/username/projects/myproject/random: {} -Info 58 [16:02:16.000] response: +Info 58 [00:02:16.000] response: { "response": { "definitions": [ @@ -970,7 +970,7 @@ Info 58 [16:02:16.000] response: }, "responseRequired": true } -Info 59 [16:02:17.000] request: +Info 59 [00:02:17.000] request: { "seq": 0, "type": "request", @@ -1011,18 +1011,18 @@ FsWatchesRecursive:: /user/username/projects/myproject/random: {} -Info 60 [16:02:18.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/random/random.ts 500 undefined WatchType: Closed Script info -Info 61 [16:02:19.000] Project '/user/username/projects/myproject/main/tsconfig.json' (Configured) -Info 61 [16:02:20.000] Files (3) +Info 60 [00:02:18.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/random/random.ts 500 undefined WatchType: Closed Script info +Info 61 [00:02:19.000] Project '/user/username/projects/myproject/main/tsconfig.json' (Configured) +Info 61 [00:02:20.000] Files (3) -Info 61 [16:02:21.000] ----------------------------------------------- -Info 61 [16:02:22.000] Project '/user/username/projects/myproject/random/tsconfig.json' (Configured) -Info 61 [16:02:23.000] Files (2) +Info 61 [00:02:21.000] ----------------------------------------------- +Info 61 [00:02:22.000] Project '/user/username/projects/myproject/random/tsconfig.json' (Configured) +Info 61 [00:02:23.000] Files (2) -Info 61 [16:02:24.000] ----------------------------------------------- -Info 61 [16:02:25.000] Open files: -Info 61 [16:02:26.000] FileName: /user/username/projects/myproject/main/main.ts ProjectRootPath: undefined -Info 61 [16:02:27.000] Projects: /user/username/projects/myproject/main/tsconfig.json +Info 61 [00:02:24.000] ----------------------------------------------- +Info 61 [00:02:25.000] Open files: +Info 61 [00:02:26.000] FileName: /user/username/projects/myproject/main/main.ts ProjectRootPath: undefined +Info 61 [00:02:27.000] Projects: /user/username/projects/myproject/main/tsconfig.json After request PolledWatches:: @@ -1057,11 +1057,11 @@ FsWatchesRecursive:: /user/username/projects/myproject/random: {} -Info 61 [16:02:28.000] response: +Info 61 [00:02:28.000] response: { "responseRequired": false } -Info 62 [16:02:29.000] request: +Info 62 [00:02:29.000] request: { "seq": 0, "type": "request", @@ -1104,22 +1104,22 @@ FsWatchesRecursive:: /user/username/projects/myproject/random: {} -Info 63 [16:02:30.000] FileWatcher:: Close:: WatchInfo: /user/username/projects/myproject/random/random.ts 500 undefined WatchType: Closed Script info -Info 64 [16:02:31.000] Search path: /user/username/projects/myproject/random -Info 65 [16:02:32.000] For info: /user/username/projects/myproject/random/random.ts :: Config file name: /user/username/projects/myproject/random/tsconfig.json -Info 66 [16:02:33.000] Project '/user/username/projects/myproject/main/tsconfig.json' (Configured) -Info 66 [16:02:34.000] Files (3) +Info 63 [00:02:30.000] FileWatcher:: Close:: WatchInfo: /user/username/projects/myproject/random/random.ts 500 undefined WatchType: Closed Script info +Info 64 [00:02:31.000] Search path: /user/username/projects/myproject/random +Info 65 [00:02:32.000] For info: /user/username/projects/myproject/random/random.ts :: Config file name: /user/username/projects/myproject/random/tsconfig.json +Info 66 [00:02:33.000] Project '/user/username/projects/myproject/main/tsconfig.json' (Configured) +Info 66 [00:02:34.000] Files (3) -Info 66 [16:02:35.000] ----------------------------------------------- -Info 66 [16:02:36.000] Project '/user/username/projects/myproject/random/tsconfig.json' (Configured) -Info 66 [16:02:37.000] Files (2) +Info 66 [00:02:35.000] ----------------------------------------------- +Info 66 [00:02:36.000] Project '/user/username/projects/myproject/random/tsconfig.json' (Configured) +Info 66 [00:02:37.000] Files (2) -Info 66 [16:02:38.000] ----------------------------------------------- -Info 66 [16:02:39.000] Open files: -Info 66 [16:02:40.000] FileName: /user/username/projects/myproject/main/main.ts ProjectRootPath: undefined -Info 66 [16:02:41.000] Projects: /user/username/projects/myproject/main/tsconfig.json -Info 66 [16:02:42.000] FileName: /user/username/projects/myproject/random/random.ts ProjectRootPath: undefined -Info 66 [16:02:43.000] Projects: /user/username/projects/myproject/random/tsconfig.json +Info 66 [00:02:38.000] ----------------------------------------------- +Info 66 [00:02:39.000] Open files: +Info 66 [00:02:40.000] FileName: /user/username/projects/myproject/main/main.ts ProjectRootPath: undefined +Info 66 [00:02:41.000] Projects: /user/username/projects/myproject/main/tsconfig.json +Info 66 [00:02:42.000] FileName: /user/username/projects/myproject/random/random.ts ProjectRootPath: undefined +Info 66 [00:02:43.000] Projects: /user/username/projects/myproject/random/tsconfig.json After request PolledWatches:: @@ -1152,11 +1152,11 @@ FsWatchesRecursive:: /user/username/projects/myproject/random: {} -Info 66 [16:02:44.000] response: +Info 66 [00:02:44.000] response: { "responseRequired": false } -Info 67 [16:02:45.000] request: +Info 67 [00:02:45.000] request: { "seq": 0, "type": "request", @@ -1197,18 +1197,18 @@ FsWatchesRecursive:: /user/username/projects/myproject/random: {} -Info 68 [16:02:46.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/main/main.ts 500 undefined WatchType: Closed Script info -Info 69 [16:02:47.000] Project '/user/username/projects/myproject/main/tsconfig.json' (Configured) -Info 69 [16:02:48.000] Files (3) +Info 68 [00:02:46.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/main/main.ts 500 undefined WatchType: Closed Script info +Info 69 [00:02:47.000] Project '/user/username/projects/myproject/main/tsconfig.json' (Configured) +Info 69 [00:02:48.000] Files (3) -Info 69 [16:02:49.000] ----------------------------------------------- -Info 69 [16:02:50.000] Project '/user/username/projects/myproject/random/tsconfig.json' (Configured) -Info 69 [16:02:51.000] Files (2) +Info 69 [00:02:49.000] ----------------------------------------------- +Info 69 [00:02:50.000] Project '/user/username/projects/myproject/random/tsconfig.json' (Configured) +Info 69 [00:02:51.000] Files (2) -Info 69 [16:02:52.000] ----------------------------------------------- -Info 69 [16:02:53.000] Open files: -Info 69 [16:02:54.000] FileName: /user/username/projects/myproject/random/random.ts ProjectRootPath: undefined -Info 69 [16:02:55.000] Projects: /user/username/projects/myproject/random/tsconfig.json +Info 69 [00:02:52.000] ----------------------------------------------- +Info 69 [00:02:53.000] Open files: +Info 69 [00:02:54.000] FileName: /user/username/projects/myproject/random/random.ts ProjectRootPath: undefined +Info 69 [00:02:55.000] Projects: /user/username/projects/myproject/random/tsconfig.json After request PolledWatches:: @@ -1243,11 +1243,11 @@ FsWatchesRecursive:: /user/username/projects/myproject/random: {} -Info 69 [16:02:56.000] response: +Info 69 [00:02:56.000] response: { "responseRequired": false } -Info 70 [16:02:57.000] request: +Info 70 [00:02:57.000] request: { "seq": 0, "type": "request", @@ -1290,16 +1290,16 @@ FsWatchesRecursive:: /user/username/projects/myproject/random: {} -Info 71 [16:02:58.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/random/random.ts 500 undefined WatchType: Closed Script info -Info 72 [16:02:59.000] Project '/user/username/projects/myproject/main/tsconfig.json' (Configured) -Info 72 [16:03:00.000] Files (3) +Info 71 [00:02:58.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/random/random.ts 500 undefined WatchType: Closed Script info +Info 72 [00:02:59.000] Project '/user/username/projects/myproject/main/tsconfig.json' (Configured) +Info 72 [00:03:00.000] Files (3) -Info 72 [16:03:01.000] ----------------------------------------------- -Info 72 [16:03:02.000] Project '/user/username/projects/myproject/random/tsconfig.json' (Configured) -Info 72 [16:03:03.000] Files (2) +Info 72 [00:03:01.000] ----------------------------------------------- +Info 72 [00:03:02.000] Project '/user/username/projects/myproject/random/tsconfig.json' (Configured) +Info 72 [00:03:03.000] Files (2) -Info 72 [16:03:04.000] ----------------------------------------------- -Info 72 [16:03:05.000] Open files: +Info 72 [00:03:04.000] ----------------------------------------------- +Info 72 [00:03:05.000] Open files: After request PolledWatches:: @@ -1336,11 +1336,11 @@ FsWatchesRecursive:: /user/username/projects/myproject/random: {} -Info 72 [16:03:06.000] response: +Info 72 [00:03:06.000] response: { "responseRequired": false } -Info 73 [16:03:07.000] request: +Info 73 [00:03:07.000] request: { "seq": 0, "type": "request", @@ -1385,12 +1385,12 @@ FsWatchesRecursive:: /user/username/projects/myproject/random: {} -Info 74 [16:03:08.000] FileWatcher:: Close:: WatchInfo: /user/username/projects/myproject/random/random.ts 500 undefined WatchType: Closed Script info -Info 75 [16:03:09.000] Search path: /user/username/projects/myproject/random -Info 76 [16:03:10.000] For info: /user/username/projects/myproject/random/random.ts :: Config file name: /user/username/projects/myproject/random/tsconfig.json -Info 77 [16:03:11.000] `remove Project:: -Info 78 [16:03:12.000] Project '/user/username/projects/myproject/main/tsconfig.json' (Configured) -Info 79 [16:03:13.000] Files (3) +Info 74 [00:03:08.000] FileWatcher:: Close:: WatchInfo: /user/username/projects/myproject/random/random.ts 500 undefined WatchType: Closed Script info +Info 75 [00:03:09.000] Search path: /user/username/projects/myproject/random +Info 76 [00:03:10.000] For info: /user/username/projects/myproject/random/random.ts :: Config file name: /user/username/projects/myproject/random/tsconfig.json +Info 77 [00:03:11.000] `remove Project:: +Info 78 [00:03:12.000] Project '/user/username/projects/myproject/main/tsconfig.json' (Configured) +Info 79 [00:03:13.000] Files (3) /a/lib/lib.d.ts /user/username/projects/myproject/dependency/FnS.ts /user/username/projects/myproject/main/main.ts @@ -1403,28 +1403,28 @@ Info 79 [16:03:13.000] Files (3) main.ts Matched by default include pattern '**/*' -Info 80 [16:03:14.000] ----------------------------------------------- -Info 81 [16:03:15.000] DirectoryWatcher:: Close:: WatchInfo: /user/username/projects/myproject/main 1 undefined Config: /user/username/projects/myproject/main/tsconfig.json WatchType: Wild card directory -Info 82 [16:03:16.000] 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 83 [16:03:17.000] FileWatcher:: Close:: WatchInfo: /user/username/projects/myproject/main/tsconfig.json 2000 undefined Project: /user/username/projects/myproject/main/tsconfig.json WatchType: Config file -Info 84 [16:03:18.000] DirectoryWatcher:: Close:: WatchInfo: /user/username/projects/myproject/dependency 1 undefined Config: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Wild card directory -Info 85 [16:03:19.000] 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 86 [16:03:20.000] FileWatcher:: Close:: WatchInfo: /user/username/projects/myproject/dependency/tsconfig.json 2000 undefined Project: /user/username/projects/myproject/main/tsconfig.json WatchType: Config file -Info 87 [16:03:21.000] DirectoryWatcher:: Close:: WatchInfo: /user/username/projects/myproject/decls 1 undefined Project: /user/username/projects/myproject/main/tsconfig.json WatchType: Failed Lookup Locations -Info 88 [16:03:22.000] 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 89 [16:03:23.000] 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 90 [16:03:24.000] 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 91 [16:03:25.000] DirectoryWatcher:: Close:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/main/tsconfig.json WatchType: Type roots -Info 92 [16:03:26.000] 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 93 [16:03:27.000] FileWatcher:: Close:: WatchInfo: /user/username/projects/myproject/main/main.ts 500 undefined WatchType: Closed Script info -Info 94 [16:03:28.000] FileWatcher:: Close:: WatchInfo: /user/username/projects/myproject/dependency/FnS.ts 500 undefined WatchType: Closed Script info -Info 95 [16:03:29.000] Project '/user/username/projects/myproject/random/tsconfig.json' (Configured) -Info 95 [16:03:30.000] Files (2) - -Info 95 [16:03:31.000] ----------------------------------------------- -Info 95 [16:03:32.000] Open files: -Info 95 [16:03:33.000] FileName: /user/username/projects/myproject/random/random.ts ProjectRootPath: undefined -Info 95 [16:03:34.000] Projects: /user/username/projects/myproject/random/tsconfig.json +Info 80 [00:03:14.000] ----------------------------------------------- +Info 81 [00:03:15.000] DirectoryWatcher:: Close:: WatchInfo: /user/username/projects/myproject/main 1 undefined Config: /user/username/projects/myproject/main/tsconfig.json WatchType: Wild card directory +Info 82 [00:03:16.000] 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 83 [00:03:17.000] FileWatcher:: Close:: WatchInfo: /user/username/projects/myproject/main/tsconfig.json 2000 undefined Project: /user/username/projects/myproject/main/tsconfig.json WatchType: Config file +Info 84 [00:03:18.000] DirectoryWatcher:: Close:: WatchInfo: /user/username/projects/myproject/dependency 1 undefined Config: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Wild card directory +Info 85 [00:03:19.000] 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 86 [00:03:20.000] FileWatcher:: Close:: WatchInfo: /user/username/projects/myproject/dependency/tsconfig.json 2000 undefined Project: /user/username/projects/myproject/main/tsconfig.json WatchType: Config file +Info 87 [00:03:21.000] DirectoryWatcher:: Close:: WatchInfo: /user/username/projects/myproject/decls 1 undefined Project: /user/username/projects/myproject/main/tsconfig.json WatchType: Failed Lookup Locations +Info 88 [00:03:22.000] 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 89 [00:03:23.000] 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 90 [00:03:24.000] 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 91 [00:03:25.000] DirectoryWatcher:: Close:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/main/tsconfig.json WatchType: Type roots +Info 92 [00:03:26.000] 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 93 [00:03:27.000] FileWatcher:: Close:: WatchInfo: /user/username/projects/myproject/main/main.ts 500 undefined WatchType: Closed Script info +Info 94 [00:03:28.000] FileWatcher:: Close:: WatchInfo: /user/username/projects/myproject/dependency/FnS.ts 500 undefined WatchType: Closed Script info +Info 95 [00:03:29.000] Project '/user/username/projects/myproject/random/tsconfig.json' (Configured) +Info 95 [00:03:30.000] Files (2) + +Info 95 [00:03:31.000] ----------------------------------------------- +Info 95 [00:03:32.000] Open files: +Info 95 [00:03:33.000] FileName: /user/username/projects/myproject/random/random.ts ProjectRootPath: undefined +Info 95 [00:03:34.000] Projects: /user/username/projects/myproject/random/tsconfig.json After request PolledWatches:: @@ -1443,7 +1443,7 @@ FsWatchesRecursive:: /user/username/projects/myproject/random: {} -Info 95 [16:03:35.000] response: +Info 95 [00:03:35.000] response: { "responseRequired": false } \ No newline at end of file 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 117039d584dd1..a4c16dd8eb70c 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 @@ -1,5 +1,5 @@ -Info 0 [16:01:00.000] Provided types map file "/a/lib/typesMap.json" doesn't exist -Info 1 [16:01:01.000] request: +Info 0 [00:01:00.000] Provided types map file "/a/lib/typesMap.json" doesn't exist +Info 1 [00:01:01.000] request: { "seq": 0, "type": "request", @@ -200,11 +200,11 @@ FsWatches:: FsWatchesRecursive:: -Info 2 [16:01:02.000] Search path: /user/username/projects/myproject/main -Info 3 [16:01:03.000] For info: /user/username/projects/myproject/main/main.ts :: Config file name: /user/username/projects/myproject/main/tsconfig.json -Info 4 [16:01:04.000] Creating configuration project /user/username/projects/myproject/main/tsconfig.json -Info 5 [16:01:05.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/main/tsconfig.json 2000 undefined Project: /user/username/projects/myproject/main/tsconfig.json WatchType: Config file -Info 6 [16:01:06.000] Config: /user/username/projects/myproject/main/tsconfig.json : { +Info 2 [00:01:02.000] Search path: /user/username/projects/myproject/main +Info 3 [00:01:03.000] For info: /user/username/projects/myproject/main/main.ts :: Config file name: /user/username/projects/myproject/main/tsconfig.json +Info 4 [00:01:04.000] Creating configuration project /user/username/projects/myproject/main/tsconfig.json +Info 5 [00:01:05.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/main/tsconfig.json 2000 undefined Project: /user/username/projects/myproject/main/tsconfig.json WatchType: Config file +Info 6 [00:01:06.000] Config: /user/username/projects/myproject/main/tsconfig.json : { "rootNames": [ "/user/username/projects/myproject/main/main.ts" ], @@ -220,11 +220,11 @@ Info 6 [16:01:06.000] Config: /user/username/projects/myproject/main/tsconfig } ] } -Info 7 [16:01:07.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/main 1 undefined Config: /user/username/projects/myproject/main/tsconfig.json WatchType: Wild card directory -Info 8 [16:01:08.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/main 1 undefined Config: /user/username/projects/myproject/main/tsconfig.json WatchType: Wild card directory -Info 9 [16:01:09.000] Plugins were requested but not running in environment that supports 'require'. Nothing will be loaded -Info 10 [16:01:10.000] Starting updateGraphWorker: Project: /user/username/projects/myproject/main/tsconfig.json -Info 11 [16:01:11.000] Config: /user/username/projects/myproject/dependency/tsconfig.json : { +Info 7 [00:01:07.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/main 1 undefined Config: /user/username/projects/myproject/main/tsconfig.json WatchType: Wild card directory +Info 8 [00:01:08.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/main 1 undefined Config: /user/username/projects/myproject/main/tsconfig.json WatchType: Wild card directory +Info 9 [00:01:09.000] Plugins were requested but not running in environment that supports 'require'. Nothing will be loaded +Info 10 [00:01:10.000] Starting updateGraphWorker: Project: /user/username/projects/myproject/main/tsconfig.json +Info 11 [00:01:11.000] Config: /user/username/projects/myproject/dependency/tsconfig.json : { "rootNames": [ "/user/username/projects/myproject/dependency/FnS.ts" ], @@ -235,20 +235,20 @@ Info 11 [16:01:11.000] Config: /user/username/projects/myproject/dependency/ts "configFilePath": "/user/username/projects/myproject/dependency/tsconfig.json" } } -Info 12 [16:01:12.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/dependency/tsconfig.json 2000 undefined Project: /user/username/projects/myproject/main/tsconfig.json WatchType: Config file -Info 13 [16:01:13.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/dependency 1 undefined Config: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Wild card directory -Info 14 [16:01:14.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/dependency 1 undefined Config: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Wild card directory -Info 15 [16:01:15.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/decls 1 undefined Project: /user/username/projects/myproject/main/tsconfig.json WatchType: Failed Lookup Locations -Info 16 [16:01:16.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/decls 1 undefined Project: /user/username/projects/myproject/main/tsconfig.json WatchType: Failed Lookup Locations -Info 17 [16:01:17.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/dependency/FnS.ts 500 undefined WatchType: Closed Script info -Info 18 [16:01:18.000] FileWatcher:: Added:: WatchInfo: /a/lib/lib.d.ts 500 undefined WatchType: Closed Script info -Info 19 [16:01:19.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/main/node_modules/@types 1 undefined Project: /user/username/projects/myproject/main/tsconfig.json WatchType: Type roots -Info 20 [16:01:20.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/main/node_modules/@types 1 undefined Project: /user/username/projects/myproject/main/tsconfig.json WatchType: Type roots -Info 21 [16:01:21.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/main/tsconfig.json WatchType: Type roots -Info 22 [16:01:22.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/main/tsconfig.json WatchType: Type roots -Info 23 [16:01:23.000] Finishing updateGraphWorker: Project: /user/username/projects/myproject/main/tsconfig.json Version: 1 structureChanged: true structureIsReused:: Not Elapsed:: *ms -Info 24 [16:01:24.000] Project '/user/username/projects/myproject/main/tsconfig.json' (Configured) -Info 25 [16:01:25.000] Files (3) +Info 12 [00:01:12.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/dependency/tsconfig.json 2000 undefined Project: /user/username/projects/myproject/main/tsconfig.json WatchType: Config file +Info 13 [00:01:13.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/dependency 1 undefined Config: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Wild card directory +Info 14 [00:01:14.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/dependency 1 undefined Config: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Wild card directory +Info 15 [00:01:15.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/decls 1 undefined Project: /user/username/projects/myproject/main/tsconfig.json WatchType: Failed Lookup Locations +Info 16 [00:01:16.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/decls 1 undefined Project: /user/username/projects/myproject/main/tsconfig.json WatchType: Failed Lookup Locations +Info 17 [00:01:17.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/dependency/FnS.ts 500 undefined WatchType: Closed Script info +Info 18 [00:01:18.000] FileWatcher:: Added:: WatchInfo: /a/lib/lib.d.ts 500 undefined WatchType: Closed Script info +Info 19 [00:01:19.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/main/node_modules/@types 1 undefined Project: /user/username/projects/myproject/main/tsconfig.json WatchType: Type roots +Info 20 [00:01:20.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/main/node_modules/@types 1 undefined Project: /user/username/projects/myproject/main/tsconfig.json WatchType: Type roots +Info 21 [00:01:21.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/main/tsconfig.json WatchType: Type roots +Info 22 [00:01:22.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/main/tsconfig.json WatchType: Type roots +Info 23 [00:01:23.000] Finishing updateGraphWorker: Project: /user/username/projects/myproject/main/tsconfig.json Version: 1 structureChanged: true structureIsReused:: Not Elapsed:: *ms +Info 24 [00:01:24.000] Project '/user/username/projects/myproject/main/tsconfig.json' (Configured) +Info 25 [00:01:25.000] Files (3) /a/lib/lib.d.ts /user/username/projects/myproject/dependency/FnS.ts /user/username/projects/myproject/main/main.ts @@ -261,16 +261,16 @@ Info 25 [16:01:25.000] Files (3) main.ts Matched by default include pattern '**/*' -Info 26 [16:01:26.000] ----------------------------------------------- -Info 27 [16:01:27.000] Search path: /user/username/projects/myproject/main -Info 28 [16:01:28.000] For info: /user/username/projects/myproject/main/tsconfig.json :: No config files found. -Info 29 [16:01:29.000] Project '/user/username/projects/myproject/main/tsconfig.json' (Configured) -Info 29 [16:01:30.000] Files (3) +Info 26 [00:01:26.000] ----------------------------------------------- +Info 27 [00:01:27.000] Search path: /user/username/projects/myproject/main +Info 28 [00:01:28.000] For info: /user/username/projects/myproject/main/tsconfig.json :: No config files found. +Info 29 [00:01:29.000] Project '/user/username/projects/myproject/main/tsconfig.json' (Configured) +Info 29 [00:01:30.000] Files (3) -Info 29 [16:01:31.000] ----------------------------------------------- -Info 29 [16:01:32.000] Open files: -Info 29 [16:01:33.000] FileName: /user/username/projects/myproject/main/main.ts ProjectRootPath: undefined -Info 29 [16:01:34.000] Projects: /user/username/projects/myproject/main/tsconfig.json +Info 29 [00:01:31.000] ----------------------------------------------- +Info 29 [00:01:32.000] Open files: +Info 29 [00:01:33.000] FileName: /user/username/projects/myproject/main/main.ts ProjectRootPath: undefined +Info 29 [00:01:34.000] Projects: /user/username/projects/myproject/main/tsconfig.json After request PolledWatches:: @@ -297,11 +297,11 @@ FsWatchesRecursive:: /user/username/projects/myproject/decls: {} -Info 29 [16:01:35.000] response: +Info 29 [00:01:35.000] response: { "responseRequired": false } -Info 30 [16:01:36.000] request: +Info 30 [00:01:36.000] request: { "seq": 0, "type": "request", @@ -336,11 +336,11 @@ FsWatchesRecursive:: /user/username/projects/myproject/decls: {} -Info 31 [16:01:37.000] Search path: /user/username/projects/myproject/random -Info 32 [16:01:38.000] For info: /user/username/projects/myproject/random/random.ts :: Config file name: /user/username/projects/myproject/random/tsconfig.json -Info 33 [16:01:39.000] Creating configuration project /user/username/projects/myproject/random/tsconfig.json -Info 34 [16:01:40.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/random/tsconfig.json 2000 undefined Project: /user/username/projects/myproject/random/tsconfig.json WatchType: Config file -Info 35 [16:01:41.000] Config: /user/username/projects/myproject/random/tsconfig.json : { +Info 31 [00:01:37.000] Search path: /user/username/projects/myproject/random +Info 32 [00:01:38.000] For info: /user/username/projects/myproject/random/random.ts :: Config file name: /user/username/projects/myproject/random/tsconfig.json +Info 33 [00:01:39.000] Creating configuration project /user/username/projects/myproject/random/tsconfig.json +Info 34 [00:01:40.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/random/tsconfig.json 2000 undefined Project: /user/username/projects/myproject/random/tsconfig.json WatchType: Config file +Info 35 [00:01:41.000] Config: /user/username/projects/myproject/random/tsconfig.json : { "rootNames": [ "/user/username/projects/myproject/random/random.ts" ], @@ -348,17 +348,17 @@ Info 35 [16:01:41.000] Config: /user/username/projects/myproject/random/tsconf "configFilePath": "/user/username/projects/myproject/random/tsconfig.json" } } -Info 36 [16:01:42.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/random 1 undefined Config: /user/username/projects/myproject/random/tsconfig.json WatchType: Wild card directory -Info 37 [16:01:43.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/random 1 undefined Config: /user/username/projects/myproject/random/tsconfig.json WatchType: Wild card directory -Info 38 [16:01:44.000] Plugins were requested but not running in environment that supports 'require'. Nothing will be loaded -Info 39 [16:01:45.000] Starting updateGraphWorker: Project: /user/username/projects/myproject/random/tsconfig.json -Info 40 [16:01:46.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/random/node_modules/@types 1 undefined Project: /user/username/projects/myproject/random/tsconfig.json WatchType: Type roots -Info 41 [16:01:47.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/random/node_modules/@types 1 undefined Project: /user/username/projects/myproject/random/tsconfig.json WatchType: Type roots -Info 42 [16:01:48.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/random/tsconfig.json WatchType: Type roots -Info 43 [16:01:49.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/random/tsconfig.json WatchType: Type roots -Info 44 [16:01:50.000] Finishing updateGraphWorker: Project: /user/username/projects/myproject/random/tsconfig.json Version: 1 structureChanged: true structureIsReused:: Not Elapsed:: *ms -Info 45 [16:01:51.000] Project '/user/username/projects/myproject/random/tsconfig.json' (Configured) -Info 46 [16:01:52.000] Files (2) +Info 36 [00:01:42.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/random 1 undefined Config: /user/username/projects/myproject/random/tsconfig.json WatchType: Wild card directory +Info 37 [00:01:43.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/random 1 undefined Config: /user/username/projects/myproject/random/tsconfig.json WatchType: Wild card directory +Info 38 [00:01:44.000] Plugins were requested but not running in environment that supports 'require'. Nothing will be loaded +Info 39 [00:01:45.000] Starting updateGraphWorker: Project: /user/username/projects/myproject/random/tsconfig.json +Info 40 [00:01:46.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/random/node_modules/@types 1 undefined Project: /user/username/projects/myproject/random/tsconfig.json WatchType: Type roots +Info 41 [00:01:47.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/random/node_modules/@types 1 undefined Project: /user/username/projects/myproject/random/tsconfig.json WatchType: Type roots +Info 42 [00:01:48.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/random/tsconfig.json WatchType: Type roots +Info 43 [00:01:49.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/random/tsconfig.json WatchType: Type roots +Info 44 [00:01:50.000] Finishing updateGraphWorker: Project: /user/username/projects/myproject/random/tsconfig.json Version: 1 structureChanged: true structureIsReused:: Not Elapsed:: *ms +Info 45 [00:01:51.000] Project '/user/username/projects/myproject/random/tsconfig.json' (Configured) +Info 46 [00:01:52.000] Files (2) /a/lib/lib.d.ts /user/username/projects/myproject/random/random.ts @@ -368,20 +368,20 @@ Info 46 [16:01:52.000] Files (2) random.ts Matched by default include pattern '**/*' -Info 47 [16:01:53.000] ----------------------------------------------- -Info 48 [16:01:54.000] Project '/user/username/projects/myproject/main/tsconfig.json' (Configured) -Info 48 [16:01:55.000] Files (3) +Info 47 [00:01:53.000] ----------------------------------------------- +Info 48 [00:01:54.000] Project '/user/username/projects/myproject/main/tsconfig.json' (Configured) +Info 48 [00:01:55.000] Files (3) -Info 48 [16:01:56.000] ----------------------------------------------- -Info 48 [16:01:57.000] Project '/user/username/projects/myproject/random/tsconfig.json' (Configured) -Info 48 [16:01:58.000] Files (2) +Info 48 [00:01:56.000] ----------------------------------------------- +Info 48 [00:01:57.000] Project '/user/username/projects/myproject/random/tsconfig.json' (Configured) +Info 48 [00:01:58.000] Files (2) -Info 48 [16:01:59.000] ----------------------------------------------- -Info 48 [16:02:00.000] Open files: -Info 48 [16:02:01.000] FileName: /user/username/projects/myproject/main/main.ts ProjectRootPath: undefined -Info 48 [16:02:02.000] Projects: /user/username/projects/myproject/main/tsconfig.json -Info 48 [16:02:03.000] FileName: /user/username/projects/myproject/random/random.ts ProjectRootPath: undefined -Info 48 [16:02:04.000] Projects: /user/username/projects/myproject/random/tsconfig.json +Info 48 [00:01:59.000] ----------------------------------------------- +Info 48 [00:02:00.000] Open files: +Info 48 [00:02:01.000] FileName: /user/username/projects/myproject/main/main.ts ProjectRootPath: undefined +Info 48 [00:02:02.000] Projects: /user/username/projects/myproject/main/tsconfig.json +Info 48 [00:02:03.000] FileName: /user/username/projects/myproject/random/random.ts ProjectRootPath: undefined +Info 48 [00:02:04.000] Projects: /user/username/projects/myproject/random/tsconfig.json After request PolledWatches:: @@ -414,11 +414,11 @@ FsWatchesRecursive:: /user/username/projects/myproject/random: {} -Info 48 [16:02:05.000] response: +Info 48 [00:02:05.000] response: { "responseRequired": false } -Info 49 [16:02:06.000] request: +Info 49 [00:02:06.000] request: { "command": "definitionAndBoundSpan", "arguments": { @@ -493,7 +493,7 @@ FsWatchesRecursive:: /user/username/projects/myproject/random: {} -Info 50 [16:02:07.000] response: +Info 50 [00:02:07.000] response: { "response": { "definitions": [ @@ -597,7 +597,7 @@ FsWatchesRecursive:: /user/username/projects/myproject/random: {} -Info 51 [16:02:11.000] request: +Info 51 [00:02:11.000] request: { "command": "definitionAndBoundSpan", "arguments": { @@ -672,7 +672,7 @@ FsWatchesRecursive:: /user/username/projects/myproject/random: {} -Info 52 [16:02:12.000] response: +Info 52 [00:02:12.000] response: { "response": { "definitions": [ @@ -709,7 +709,7 @@ Info 52 [16:02:12.000] response: }, "responseRequired": true } -Info 53 [16:02:13.000] request: +Info 53 [00:02:13.000] request: { "command": "definitionAndBoundSpan", "arguments": { @@ -784,7 +784,7 @@ FsWatchesRecursive:: /user/username/projects/myproject/random: {} -Info 54 [16:02:14.000] response: +Info 54 [00:02:14.000] response: { "response": { "definitions": [ @@ -821,7 +821,7 @@ Info 54 [16:02:14.000] response: }, "responseRequired": true } -Info 55 [16:02:15.000] request: +Info 55 [00:02:15.000] request: { "command": "definitionAndBoundSpan", "arguments": { @@ -896,7 +896,7 @@ FsWatchesRecursive:: /user/username/projects/myproject/random: {} -Info 56 [16:02:16.000] response: +Info 56 [00:02:16.000] response: { "response": { "definitions": [ @@ -933,7 +933,7 @@ Info 56 [16:02:16.000] response: }, "responseRequired": true } -Info 57 [16:02:17.000] request: +Info 57 [00:02:17.000] request: { "command": "definitionAndBoundSpan", "arguments": { @@ -1008,7 +1008,7 @@ FsWatchesRecursive:: /user/username/projects/myproject/random: {} -Info 58 [16:02:18.000] response: +Info 58 [00:02:18.000] response: { "response": { "definitions": [ @@ -1045,7 +1045,7 @@ Info 58 [16:02:18.000] response: }, "responseRequired": true } -Info 59 [16:02:19.000] request: +Info 59 [00:02:19.000] request: { "command": "definitionAndBoundSpan", "arguments": { @@ -1120,7 +1120,7 @@ FsWatchesRecursive:: /user/username/projects/myproject/random: {} -Info 60 [16:02:20.000] response: +Info 60 [00:02:20.000] response: { "response": { "definitions": [ 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 ab91c409f696e..cce687c6bad61 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 @@ -1,5 +1,5 @@ -Info 0 [16:01:00.000] Provided types map file "/a/lib/typesMap.json" doesn't exist -Info 1 [16:01:01.000] request: +Info 0 [00:01:00.000] Provided types map file "/a/lib/typesMap.json" doesn't exist +Info 1 [00:01:01.000] request: { "seq": 0, "type": "request", @@ -200,11 +200,11 @@ FsWatches:: FsWatchesRecursive:: -Info 2 [16:01:02.000] Search path: /user/username/projects/myproject/main -Info 3 [16:01:03.000] For info: /user/username/projects/myproject/main/main.ts :: Config file name: /user/username/projects/myproject/main/tsconfig.json -Info 4 [16:01:04.000] Creating configuration project /user/username/projects/myproject/main/tsconfig.json -Info 5 [16:01:05.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/main/tsconfig.json 2000 undefined Project: /user/username/projects/myproject/main/tsconfig.json WatchType: Config file -Info 6 [16:01:06.000] Config: /user/username/projects/myproject/main/tsconfig.json : { +Info 2 [00:01:02.000] Search path: /user/username/projects/myproject/main +Info 3 [00:01:03.000] For info: /user/username/projects/myproject/main/main.ts :: Config file name: /user/username/projects/myproject/main/tsconfig.json +Info 4 [00:01:04.000] Creating configuration project /user/username/projects/myproject/main/tsconfig.json +Info 5 [00:01:05.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/main/tsconfig.json 2000 undefined Project: /user/username/projects/myproject/main/tsconfig.json WatchType: Config file +Info 6 [00:01:06.000] Config: /user/username/projects/myproject/main/tsconfig.json : { "rootNames": [ "/user/username/projects/myproject/main/main.ts" ], @@ -220,11 +220,11 @@ Info 6 [16:01:06.000] Config: /user/username/projects/myproject/main/tsconfig } ] } -Info 7 [16:01:07.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/main 1 undefined Config: /user/username/projects/myproject/main/tsconfig.json WatchType: Wild card directory -Info 8 [16:01:08.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/main 1 undefined Config: /user/username/projects/myproject/main/tsconfig.json WatchType: Wild card directory -Info 9 [16:01:09.000] Plugins were requested but not running in environment that supports 'require'. Nothing will be loaded -Info 10 [16:01:10.000] Starting updateGraphWorker: Project: /user/username/projects/myproject/main/tsconfig.json -Info 11 [16:01:11.000] Config: /user/username/projects/myproject/dependency/tsconfig.json : { +Info 7 [00:01:07.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/main 1 undefined Config: /user/username/projects/myproject/main/tsconfig.json WatchType: Wild card directory +Info 8 [00:01:08.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/main 1 undefined Config: /user/username/projects/myproject/main/tsconfig.json WatchType: Wild card directory +Info 9 [00:01:09.000] Plugins were requested but not running in environment that supports 'require'. Nothing will be loaded +Info 10 [00:01:10.000] Starting updateGraphWorker: Project: /user/username/projects/myproject/main/tsconfig.json +Info 11 [00:01:11.000] Config: /user/username/projects/myproject/dependency/tsconfig.json : { "rootNames": [ "/user/username/projects/myproject/dependency/FnS.ts" ], @@ -235,20 +235,20 @@ Info 11 [16:01:11.000] Config: /user/username/projects/myproject/dependency/ts "configFilePath": "/user/username/projects/myproject/dependency/tsconfig.json" } } -Info 12 [16:01:12.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/dependency/tsconfig.json 2000 undefined Project: /user/username/projects/myproject/main/tsconfig.json WatchType: Config file -Info 13 [16:01:13.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/dependency 1 undefined Config: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Wild card directory -Info 14 [16:01:14.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/dependency 1 undefined Config: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Wild card directory -Info 15 [16:01:15.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/decls 1 undefined Project: /user/username/projects/myproject/main/tsconfig.json WatchType: Failed Lookup Locations -Info 16 [16:01:16.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/decls 1 undefined Project: /user/username/projects/myproject/main/tsconfig.json WatchType: Failed Lookup Locations -Info 17 [16:01:17.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/dependency/FnS.ts 500 undefined WatchType: Closed Script info -Info 18 [16:01:18.000] FileWatcher:: Added:: WatchInfo: /a/lib/lib.d.ts 500 undefined WatchType: Closed Script info -Info 19 [16:01:19.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/main/node_modules/@types 1 undefined Project: /user/username/projects/myproject/main/tsconfig.json WatchType: Type roots -Info 20 [16:01:20.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/main/node_modules/@types 1 undefined Project: /user/username/projects/myproject/main/tsconfig.json WatchType: Type roots -Info 21 [16:01:21.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/main/tsconfig.json WatchType: Type roots -Info 22 [16:01:22.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/main/tsconfig.json WatchType: Type roots -Info 23 [16:01:23.000] Finishing updateGraphWorker: Project: /user/username/projects/myproject/main/tsconfig.json Version: 1 structureChanged: true structureIsReused:: Not Elapsed:: *ms -Info 24 [16:01:24.000] Project '/user/username/projects/myproject/main/tsconfig.json' (Configured) -Info 25 [16:01:25.000] Files (3) +Info 12 [00:01:12.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/dependency/tsconfig.json 2000 undefined Project: /user/username/projects/myproject/main/tsconfig.json WatchType: Config file +Info 13 [00:01:13.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/dependency 1 undefined Config: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Wild card directory +Info 14 [00:01:14.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/dependency 1 undefined Config: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Wild card directory +Info 15 [00:01:15.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/decls 1 undefined Project: /user/username/projects/myproject/main/tsconfig.json WatchType: Failed Lookup Locations +Info 16 [00:01:16.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/decls 1 undefined Project: /user/username/projects/myproject/main/tsconfig.json WatchType: Failed Lookup Locations +Info 17 [00:01:17.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/dependency/FnS.ts 500 undefined WatchType: Closed Script info +Info 18 [00:01:18.000] FileWatcher:: Added:: WatchInfo: /a/lib/lib.d.ts 500 undefined WatchType: Closed Script info +Info 19 [00:01:19.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/main/node_modules/@types 1 undefined Project: /user/username/projects/myproject/main/tsconfig.json WatchType: Type roots +Info 20 [00:01:20.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/main/node_modules/@types 1 undefined Project: /user/username/projects/myproject/main/tsconfig.json WatchType: Type roots +Info 21 [00:01:21.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/main/tsconfig.json WatchType: Type roots +Info 22 [00:01:22.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/main/tsconfig.json WatchType: Type roots +Info 23 [00:01:23.000] Finishing updateGraphWorker: Project: /user/username/projects/myproject/main/tsconfig.json Version: 1 structureChanged: true structureIsReused:: Not Elapsed:: *ms +Info 24 [00:01:24.000] Project '/user/username/projects/myproject/main/tsconfig.json' (Configured) +Info 25 [00:01:25.000] Files (3) /a/lib/lib.d.ts /user/username/projects/myproject/dependency/FnS.ts /user/username/projects/myproject/main/main.ts @@ -261,16 +261,16 @@ Info 25 [16:01:25.000] Files (3) main.ts Matched by default include pattern '**/*' -Info 26 [16:01:26.000] ----------------------------------------------- -Info 27 [16:01:27.000] Search path: /user/username/projects/myproject/main -Info 28 [16:01:28.000] For info: /user/username/projects/myproject/main/tsconfig.json :: No config files found. -Info 29 [16:01:29.000] Project '/user/username/projects/myproject/main/tsconfig.json' (Configured) -Info 29 [16:01:30.000] Files (3) +Info 26 [00:01:26.000] ----------------------------------------------- +Info 27 [00:01:27.000] Search path: /user/username/projects/myproject/main +Info 28 [00:01:28.000] For info: /user/username/projects/myproject/main/tsconfig.json :: No config files found. +Info 29 [00:01:29.000] Project '/user/username/projects/myproject/main/tsconfig.json' (Configured) +Info 29 [00:01:30.000] Files (3) -Info 29 [16:01:31.000] ----------------------------------------------- -Info 29 [16:01:32.000] Open files: -Info 29 [16:01:33.000] FileName: /user/username/projects/myproject/main/main.ts ProjectRootPath: undefined -Info 29 [16:01:34.000] Projects: /user/username/projects/myproject/main/tsconfig.json +Info 29 [00:01:31.000] ----------------------------------------------- +Info 29 [00:01:32.000] Open files: +Info 29 [00:01:33.000] FileName: /user/username/projects/myproject/main/main.ts ProjectRootPath: undefined +Info 29 [00:01:34.000] Projects: /user/username/projects/myproject/main/tsconfig.json After request PolledWatches:: @@ -297,11 +297,11 @@ FsWatchesRecursive:: /user/username/projects/myproject/decls: {} -Info 29 [16:01:35.000] response: +Info 29 [00:01:35.000] response: { "responseRequired": false } -Info 30 [16:01:36.000] request: +Info 30 [00:01:36.000] request: { "seq": 0, "type": "request", @@ -336,11 +336,11 @@ FsWatchesRecursive:: /user/username/projects/myproject/decls: {} -Info 31 [16:01:37.000] Search path: /user/username/projects/myproject/random -Info 32 [16:01:38.000] For info: /user/username/projects/myproject/random/random.ts :: Config file name: /user/username/projects/myproject/random/tsconfig.json -Info 33 [16:01:39.000] Creating configuration project /user/username/projects/myproject/random/tsconfig.json -Info 34 [16:01:40.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/random/tsconfig.json 2000 undefined Project: /user/username/projects/myproject/random/tsconfig.json WatchType: Config file -Info 35 [16:01:41.000] Config: /user/username/projects/myproject/random/tsconfig.json : { +Info 31 [00:01:37.000] Search path: /user/username/projects/myproject/random +Info 32 [00:01:38.000] For info: /user/username/projects/myproject/random/random.ts :: Config file name: /user/username/projects/myproject/random/tsconfig.json +Info 33 [00:01:39.000] Creating configuration project /user/username/projects/myproject/random/tsconfig.json +Info 34 [00:01:40.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/random/tsconfig.json 2000 undefined Project: /user/username/projects/myproject/random/tsconfig.json WatchType: Config file +Info 35 [00:01:41.000] Config: /user/username/projects/myproject/random/tsconfig.json : { "rootNames": [ "/user/username/projects/myproject/random/random.ts" ], @@ -348,17 +348,17 @@ Info 35 [16:01:41.000] Config: /user/username/projects/myproject/random/tsconf "configFilePath": "/user/username/projects/myproject/random/tsconfig.json" } } -Info 36 [16:01:42.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/random 1 undefined Config: /user/username/projects/myproject/random/tsconfig.json WatchType: Wild card directory -Info 37 [16:01:43.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/random 1 undefined Config: /user/username/projects/myproject/random/tsconfig.json WatchType: Wild card directory -Info 38 [16:01:44.000] Plugins were requested but not running in environment that supports 'require'. Nothing will be loaded -Info 39 [16:01:45.000] Starting updateGraphWorker: Project: /user/username/projects/myproject/random/tsconfig.json -Info 40 [16:01:46.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/random/node_modules/@types 1 undefined Project: /user/username/projects/myproject/random/tsconfig.json WatchType: Type roots -Info 41 [16:01:47.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/random/node_modules/@types 1 undefined Project: /user/username/projects/myproject/random/tsconfig.json WatchType: Type roots -Info 42 [16:01:48.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/random/tsconfig.json WatchType: Type roots -Info 43 [16:01:49.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/random/tsconfig.json WatchType: Type roots -Info 44 [16:01:50.000] Finishing updateGraphWorker: Project: /user/username/projects/myproject/random/tsconfig.json Version: 1 structureChanged: true structureIsReused:: Not Elapsed:: *ms -Info 45 [16:01:51.000] Project '/user/username/projects/myproject/random/tsconfig.json' (Configured) -Info 46 [16:01:52.000] Files (2) +Info 36 [00:01:42.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/random 1 undefined Config: /user/username/projects/myproject/random/tsconfig.json WatchType: Wild card directory +Info 37 [00:01:43.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/random 1 undefined Config: /user/username/projects/myproject/random/tsconfig.json WatchType: Wild card directory +Info 38 [00:01:44.000] Plugins were requested but not running in environment that supports 'require'. Nothing will be loaded +Info 39 [00:01:45.000] Starting updateGraphWorker: Project: /user/username/projects/myproject/random/tsconfig.json +Info 40 [00:01:46.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/random/node_modules/@types 1 undefined Project: /user/username/projects/myproject/random/tsconfig.json WatchType: Type roots +Info 41 [00:01:47.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/random/node_modules/@types 1 undefined Project: /user/username/projects/myproject/random/tsconfig.json WatchType: Type roots +Info 42 [00:01:48.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/random/tsconfig.json WatchType: Type roots +Info 43 [00:01:49.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/random/tsconfig.json WatchType: Type roots +Info 44 [00:01:50.000] Finishing updateGraphWorker: Project: /user/username/projects/myproject/random/tsconfig.json Version: 1 structureChanged: true structureIsReused:: Not Elapsed:: *ms +Info 45 [00:01:51.000] Project '/user/username/projects/myproject/random/tsconfig.json' (Configured) +Info 46 [00:01:52.000] Files (2) /a/lib/lib.d.ts /user/username/projects/myproject/random/random.ts @@ -368,20 +368,20 @@ Info 46 [16:01:52.000] Files (2) random.ts Matched by default include pattern '**/*' -Info 47 [16:01:53.000] ----------------------------------------------- -Info 48 [16:01:54.000] Project '/user/username/projects/myproject/main/tsconfig.json' (Configured) -Info 48 [16:01:55.000] Files (3) +Info 47 [00:01:53.000] ----------------------------------------------- +Info 48 [00:01:54.000] Project '/user/username/projects/myproject/main/tsconfig.json' (Configured) +Info 48 [00:01:55.000] Files (3) -Info 48 [16:01:56.000] ----------------------------------------------- -Info 48 [16:01:57.000] Project '/user/username/projects/myproject/random/tsconfig.json' (Configured) -Info 48 [16:01:58.000] Files (2) +Info 48 [00:01:56.000] ----------------------------------------------- +Info 48 [00:01:57.000] Project '/user/username/projects/myproject/random/tsconfig.json' (Configured) +Info 48 [00:01:58.000] Files (2) -Info 48 [16:01:59.000] ----------------------------------------------- -Info 48 [16:02:00.000] Open files: -Info 48 [16:02:01.000] FileName: /user/username/projects/myproject/main/main.ts ProjectRootPath: undefined -Info 48 [16:02:02.000] Projects: /user/username/projects/myproject/main/tsconfig.json -Info 48 [16:02:03.000] FileName: /user/username/projects/myproject/random/random.ts ProjectRootPath: undefined -Info 48 [16:02:04.000] Projects: /user/username/projects/myproject/random/tsconfig.json +Info 48 [00:01:59.000] ----------------------------------------------- +Info 48 [00:02:00.000] Open files: +Info 48 [00:02:01.000] FileName: /user/username/projects/myproject/main/main.ts ProjectRootPath: undefined +Info 48 [00:02:02.000] Projects: /user/username/projects/myproject/main/tsconfig.json +Info 48 [00:02:03.000] FileName: /user/username/projects/myproject/random/random.ts ProjectRootPath: undefined +Info 48 [00:02:04.000] Projects: /user/username/projects/myproject/random/tsconfig.json After request PolledWatches:: @@ -414,11 +414,11 @@ FsWatchesRecursive:: /user/username/projects/myproject/random: {} -Info 48 [16:02:05.000] response: +Info 48 [00:02:05.000] response: { "responseRequired": false } -Info 49 [16:02:06.000] request: +Info 49 [00:02:06.000] request: { "command": "definitionAndBoundSpan", "arguments": { @@ -493,7 +493,7 @@ FsWatchesRecursive:: /user/username/projects/myproject/random: {} -Info 50 [16:02:07.000] response: +Info 50 [00:02:07.000] response: { "response": { "definitions": [ @@ -530,7 +530,7 @@ Info 50 [16:02:07.000] response: }, "responseRequired": true } -Info 51 [16:02:11.000] request: +Info 51 [00:02:11.000] request: { "command": "definitionAndBoundSpan", "arguments": { @@ -608,7 +608,7 @@ FsWatchesRecursive:: /user/username/projects/myproject/random: {} -Info 52 [16:02:12.000] response: +Info 52 [00:02:12.000] response: { "response": { "definitions": [ @@ -645,7 +645,7 @@ Info 52 [16:02:12.000] response: }, "responseRequired": true } -Info 53 [16:02:13.000] request: +Info 53 [00:02:13.000] request: { "command": "definitionAndBoundSpan", "arguments": { @@ -720,7 +720,7 @@ FsWatchesRecursive:: /user/username/projects/myproject/random: {} -Info 54 [16:02:14.000] response: +Info 54 [00:02:14.000] response: { "response": { "definitions": [ @@ -757,7 +757,7 @@ Info 54 [16:02:14.000] response: }, "responseRequired": true } -Info 55 [16:02:15.000] request: +Info 55 [00:02:15.000] request: { "command": "definitionAndBoundSpan", "arguments": { @@ -832,7 +832,7 @@ FsWatchesRecursive:: /user/username/projects/myproject/random: {} -Info 56 [16:02:16.000] response: +Info 56 [00:02:16.000] response: { "response": { "definitions": [ @@ -869,7 +869,7 @@ Info 56 [16:02:16.000] response: }, "responseRequired": true } -Info 57 [16:02:17.000] request: +Info 57 [00:02:17.000] request: { "command": "definitionAndBoundSpan", "arguments": { @@ -944,7 +944,7 @@ FsWatchesRecursive:: /user/username/projects/myproject/random: {} -Info 58 [16:02:18.000] response: +Info 58 [00:02:18.000] response: { "response": { "definitions": [ @@ -981,7 +981,7 @@ Info 58 [16:02:18.000] response: }, "responseRequired": true } -Info 59 [16:02:19.000] request: +Info 59 [00:02:19.000] request: { "command": "definitionAndBoundSpan", "arguments": { @@ -1056,7 +1056,7 @@ FsWatchesRecursive:: /user/username/projects/myproject/random: {} -Info 60 [16:02:20.000] response: +Info 60 [00:02:20.000] response: { "response": { "definitions": [ 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 479147a709989..94f99895ed602 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 @@ -1,5 +1,5 @@ -Info 0 [16:01:01.000] Provided types map file "/a/lib/typesMap.json" doesn't exist -Info 1 [16:01:02.000] request: +Info 0 [00:01:01.000] Provided types map file "/a/lib/typesMap.json" doesn't exist +Info 1 [00:01:02.000] request: { "seq": 0, "type": "request", @@ -197,11 +197,11 @@ FsWatches:: FsWatchesRecursive:: -Info 2 [16:01:03.000] Search path: /user/username/projects/myproject/main -Info 3 [16:01:04.000] For info: /user/username/projects/myproject/main/main.ts :: Config file name: /user/username/projects/myproject/main/tsconfig.json -Info 4 [16:01:05.000] Creating configuration project /user/username/projects/myproject/main/tsconfig.json -Info 5 [16:01:06.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/main/tsconfig.json 2000 undefined Project: /user/username/projects/myproject/main/tsconfig.json WatchType: Config file -Info 6 [16:01:07.000] Config: /user/username/projects/myproject/main/tsconfig.json : { +Info 2 [00:01:03.000] Search path: /user/username/projects/myproject/main +Info 3 [00:01:04.000] For info: /user/username/projects/myproject/main/main.ts :: Config file name: /user/username/projects/myproject/main/tsconfig.json +Info 4 [00:01:05.000] Creating configuration project /user/username/projects/myproject/main/tsconfig.json +Info 5 [00:01:06.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/main/tsconfig.json 2000 undefined Project: /user/username/projects/myproject/main/tsconfig.json WatchType: Config file +Info 6 [00:01:07.000] Config: /user/username/projects/myproject/main/tsconfig.json : { "rootNames": [ "/user/username/projects/myproject/main/main.ts" ], @@ -217,11 +217,11 @@ Info 6 [16:01:07.000] Config: /user/username/projects/myproject/main/tsconfig } ] } -Info 7 [16:01:08.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/main 1 undefined Config: /user/username/projects/myproject/main/tsconfig.json WatchType: Wild card directory -Info 8 [16:01:09.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/main 1 undefined Config: /user/username/projects/myproject/main/tsconfig.json WatchType: Wild card directory -Info 9 [16:01:10.000] Plugins were requested but not running in environment that supports 'require'. Nothing will be loaded -Info 10 [16:01:11.000] Starting updateGraphWorker: Project: /user/username/projects/myproject/main/tsconfig.json -Info 11 [16:01:12.000] Config: /user/username/projects/myproject/dependency/tsconfig.json : { +Info 7 [00:01:08.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/main 1 undefined Config: /user/username/projects/myproject/main/tsconfig.json WatchType: Wild card directory +Info 8 [00:01:09.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/main 1 undefined Config: /user/username/projects/myproject/main/tsconfig.json WatchType: Wild card directory +Info 9 [00:01:10.000] Plugins were requested but not running in environment that supports 'require'. Nothing will be loaded +Info 10 [00:01:11.000] Starting updateGraphWorker: Project: /user/username/projects/myproject/main/tsconfig.json +Info 11 [00:01:12.000] Config: /user/username/projects/myproject/dependency/tsconfig.json : { "rootNames": [ "/user/username/projects/myproject/dependency/FnS.ts" ], @@ -232,20 +232,20 @@ Info 11 [16:01:12.000] Config: /user/username/projects/myproject/dependency/ts "configFilePath": "/user/username/projects/myproject/dependency/tsconfig.json" } } -Info 12 [16:01:13.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/dependency/tsconfig.json 2000 undefined Project: /user/username/projects/myproject/main/tsconfig.json WatchType: Config file -Info 13 [16:01:14.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/dependency 1 undefined Config: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Wild card directory -Info 14 [16:01:15.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/dependency 1 undefined Config: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Wild card directory -Info 15 [16:01:16.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/decls 1 undefined Project: /user/username/projects/myproject/main/tsconfig.json WatchType: Failed Lookup Locations -Info 16 [16:01:17.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/decls 1 undefined Project: /user/username/projects/myproject/main/tsconfig.json WatchType: Failed Lookup Locations -Info 17 [16:01:18.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/dependency/FnS.ts 500 undefined WatchType: Closed Script info -Info 18 [16:01:19.000] FileWatcher:: Added:: WatchInfo: /a/lib/lib.d.ts 500 undefined WatchType: Closed Script info -Info 19 [16:01:20.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/main/node_modules/@types 1 undefined Project: /user/username/projects/myproject/main/tsconfig.json WatchType: Type roots -Info 20 [16:01:21.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/main/node_modules/@types 1 undefined Project: /user/username/projects/myproject/main/tsconfig.json WatchType: Type roots -Info 21 [16:01:22.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/main/tsconfig.json WatchType: Type roots -Info 22 [16:01:23.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/main/tsconfig.json WatchType: Type roots -Info 23 [16:01:24.000] Finishing updateGraphWorker: Project: /user/username/projects/myproject/main/tsconfig.json Version: 1 structureChanged: true structureIsReused:: Not Elapsed:: *ms -Info 24 [16:01:25.000] Project '/user/username/projects/myproject/main/tsconfig.json' (Configured) -Info 25 [16:01:26.000] Files (3) +Info 12 [00:01:13.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/dependency/tsconfig.json 2000 undefined Project: /user/username/projects/myproject/main/tsconfig.json WatchType: Config file +Info 13 [00:01:14.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/dependency 1 undefined Config: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Wild card directory +Info 14 [00:01:15.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/dependency 1 undefined Config: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Wild card directory +Info 15 [00:01:16.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/decls 1 undefined Project: /user/username/projects/myproject/main/tsconfig.json WatchType: Failed Lookup Locations +Info 16 [00:01:17.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/decls 1 undefined Project: /user/username/projects/myproject/main/tsconfig.json WatchType: Failed Lookup Locations +Info 17 [00:01:18.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/dependency/FnS.ts 500 undefined WatchType: Closed Script info +Info 18 [00:01:19.000] FileWatcher:: Added:: WatchInfo: /a/lib/lib.d.ts 500 undefined WatchType: Closed Script info +Info 19 [00:01:20.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/main/node_modules/@types 1 undefined Project: /user/username/projects/myproject/main/tsconfig.json WatchType: Type roots +Info 20 [00:01:21.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/main/node_modules/@types 1 undefined Project: /user/username/projects/myproject/main/tsconfig.json WatchType: Type roots +Info 21 [00:01:22.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/main/tsconfig.json WatchType: Type roots +Info 22 [00:01:23.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/main/tsconfig.json WatchType: Type roots +Info 23 [00:01:24.000] Finishing updateGraphWorker: Project: /user/username/projects/myproject/main/tsconfig.json Version: 1 structureChanged: true structureIsReused:: Not Elapsed:: *ms +Info 24 [00:01:25.000] Project '/user/username/projects/myproject/main/tsconfig.json' (Configured) +Info 25 [00:01:26.000] Files (3) /a/lib/lib.d.ts /user/username/projects/myproject/dependency/FnS.ts /user/username/projects/myproject/main/main.ts @@ -258,16 +258,16 @@ Info 25 [16:01:26.000] Files (3) main.ts Matched by default include pattern '**/*' -Info 26 [16:01:27.000] ----------------------------------------------- -Info 27 [16:01:28.000] Search path: /user/username/projects/myproject/main -Info 28 [16:01:29.000] For info: /user/username/projects/myproject/main/tsconfig.json :: No config files found. -Info 29 [16:01:30.000] Project '/user/username/projects/myproject/main/tsconfig.json' (Configured) -Info 29 [16:01:31.000] Files (3) +Info 26 [00:01:27.000] ----------------------------------------------- +Info 27 [00:01:28.000] Search path: /user/username/projects/myproject/main +Info 28 [00:01:29.000] For info: /user/username/projects/myproject/main/tsconfig.json :: No config files found. +Info 29 [00:01:30.000] Project '/user/username/projects/myproject/main/tsconfig.json' (Configured) +Info 29 [00:01:31.000] Files (3) -Info 29 [16:01:32.000] ----------------------------------------------- -Info 29 [16:01:33.000] Open files: -Info 29 [16:01:34.000] FileName: /user/username/projects/myproject/main/main.ts ProjectRootPath: undefined -Info 29 [16:01:35.000] Projects: /user/username/projects/myproject/main/tsconfig.json +Info 29 [00:01:32.000] ----------------------------------------------- +Info 29 [00:01:33.000] Open files: +Info 29 [00:01:34.000] FileName: /user/username/projects/myproject/main/main.ts ProjectRootPath: undefined +Info 29 [00:01:35.000] Projects: /user/username/projects/myproject/main/tsconfig.json After request PolledWatches:: @@ -294,11 +294,11 @@ FsWatchesRecursive:: /user/username/projects/myproject/decls: {} -Info 29 [16:01:36.000] response: +Info 29 [00:01:36.000] response: { "responseRequired": false } -Info 30 [16:01:37.000] request: +Info 30 [00:01:37.000] request: { "seq": 0, "type": "request", @@ -333,11 +333,11 @@ FsWatchesRecursive:: /user/username/projects/myproject/decls: {} -Info 31 [16:01:38.000] Search path: /user/username/projects/myproject/random -Info 32 [16:01:39.000] For info: /user/username/projects/myproject/random/random.ts :: Config file name: /user/username/projects/myproject/random/tsconfig.json -Info 33 [16:01:40.000] Creating configuration project /user/username/projects/myproject/random/tsconfig.json -Info 34 [16:01:41.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/random/tsconfig.json 2000 undefined Project: /user/username/projects/myproject/random/tsconfig.json WatchType: Config file -Info 35 [16:01:42.000] Config: /user/username/projects/myproject/random/tsconfig.json : { +Info 31 [00:01:38.000] Search path: /user/username/projects/myproject/random +Info 32 [00:01:39.000] For info: /user/username/projects/myproject/random/random.ts :: Config file name: /user/username/projects/myproject/random/tsconfig.json +Info 33 [00:01:40.000] Creating configuration project /user/username/projects/myproject/random/tsconfig.json +Info 34 [00:01:41.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/random/tsconfig.json 2000 undefined Project: /user/username/projects/myproject/random/tsconfig.json WatchType: Config file +Info 35 [00:01:42.000] Config: /user/username/projects/myproject/random/tsconfig.json : { "rootNames": [ "/user/username/projects/myproject/random/random.ts" ], @@ -345,17 +345,17 @@ Info 35 [16:01:42.000] Config: /user/username/projects/myproject/random/tsconf "configFilePath": "/user/username/projects/myproject/random/tsconfig.json" } } -Info 36 [16:01:43.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/random 1 undefined Config: /user/username/projects/myproject/random/tsconfig.json WatchType: Wild card directory -Info 37 [16:01:44.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/random 1 undefined Config: /user/username/projects/myproject/random/tsconfig.json WatchType: Wild card directory -Info 38 [16:01:45.000] Plugins were requested but not running in environment that supports 'require'. Nothing will be loaded -Info 39 [16:01:46.000] Starting updateGraphWorker: Project: /user/username/projects/myproject/random/tsconfig.json -Info 40 [16:01:47.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/random/node_modules/@types 1 undefined Project: /user/username/projects/myproject/random/tsconfig.json WatchType: Type roots -Info 41 [16:01:48.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/random/node_modules/@types 1 undefined Project: /user/username/projects/myproject/random/tsconfig.json WatchType: Type roots -Info 42 [16:01:49.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/random/tsconfig.json WatchType: Type roots -Info 43 [16:01:50.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/random/tsconfig.json WatchType: Type roots -Info 44 [16:01:51.000] Finishing updateGraphWorker: Project: /user/username/projects/myproject/random/tsconfig.json Version: 1 structureChanged: true structureIsReused:: Not Elapsed:: *ms -Info 45 [16:01:52.000] Project '/user/username/projects/myproject/random/tsconfig.json' (Configured) -Info 46 [16:01:53.000] Files (2) +Info 36 [00:01:43.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/random 1 undefined Config: /user/username/projects/myproject/random/tsconfig.json WatchType: Wild card directory +Info 37 [00:01:44.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/random 1 undefined Config: /user/username/projects/myproject/random/tsconfig.json WatchType: Wild card directory +Info 38 [00:01:45.000] Plugins were requested but not running in environment that supports 'require'. Nothing will be loaded +Info 39 [00:01:46.000] Starting updateGraphWorker: Project: /user/username/projects/myproject/random/tsconfig.json +Info 40 [00:01:47.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/random/node_modules/@types 1 undefined Project: /user/username/projects/myproject/random/tsconfig.json WatchType: Type roots +Info 41 [00:01:48.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/random/node_modules/@types 1 undefined Project: /user/username/projects/myproject/random/tsconfig.json WatchType: Type roots +Info 42 [00:01:49.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/random/tsconfig.json WatchType: Type roots +Info 43 [00:01:50.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/random/tsconfig.json WatchType: Type roots +Info 44 [00:01:51.000] Finishing updateGraphWorker: Project: /user/username/projects/myproject/random/tsconfig.json Version: 1 structureChanged: true structureIsReused:: Not Elapsed:: *ms +Info 45 [00:01:52.000] Project '/user/username/projects/myproject/random/tsconfig.json' (Configured) +Info 46 [00:01:53.000] Files (2) /a/lib/lib.d.ts /user/username/projects/myproject/random/random.ts @@ -365,20 +365,20 @@ Info 46 [16:01:53.000] Files (2) random.ts Matched by default include pattern '**/*' -Info 47 [16:01:54.000] ----------------------------------------------- -Info 48 [16:01:55.000] Project '/user/username/projects/myproject/main/tsconfig.json' (Configured) -Info 48 [16:01:56.000] Files (3) +Info 47 [00:01:54.000] ----------------------------------------------- +Info 48 [00:01:55.000] Project '/user/username/projects/myproject/main/tsconfig.json' (Configured) +Info 48 [00:01:56.000] Files (3) -Info 48 [16:01:57.000] ----------------------------------------------- -Info 48 [16:01:58.000] Project '/user/username/projects/myproject/random/tsconfig.json' (Configured) -Info 48 [16:01:59.000] Files (2) +Info 48 [00:01:57.000] ----------------------------------------------- +Info 48 [00:01:58.000] Project '/user/username/projects/myproject/random/tsconfig.json' (Configured) +Info 48 [00:01:59.000] Files (2) -Info 48 [16:02:00.000] ----------------------------------------------- -Info 48 [16:02:01.000] Open files: -Info 48 [16:02:02.000] FileName: /user/username/projects/myproject/main/main.ts ProjectRootPath: undefined -Info 48 [16:02:03.000] Projects: /user/username/projects/myproject/main/tsconfig.json -Info 48 [16:02:04.000] FileName: /user/username/projects/myproject/random/random.ts ProjectRootPath: undefined -Info 48 [16:02:05.000] Projects: /user/username/projects/myproject/random/tsconfig.json +Info 48 [00:02:00.000] ----------------------------------------------- +Info 48 [00:02:01.000] Open files: +Info 48 [00:02:02.000] FileName: /user/username/projects/myproject/main/main.ts ProjectRootPath: undefined +Info 48 [00:02:03.000] Projects: /user/username/projects/myproject/main/tsconfig.json +Info 48 [00:02:04.000] FileName: /user/username/projects/myproject/random/random.ts ProjectRootPath: undefined +Info 48 [00:02:05.000] Projects: /user/username/projects/myproject/random/tsconfig.json After request PolledWatches:: @@ -411,11 +411,11 @@ FsWatchesRecursive:: /user/username/projects/myproject/random: {} -Info 48 [16:02:06.000] response: +Info 48 [00:02:06.000] response: { "responseRequired": false } -Info 49 [16:02:07.000] request: +Info 49 [00:02:07.000] request: { "command": "definitionAndBoundSpan", "arguments": { @@ -490,7 +490,7 @@ FsWatchesRecursive:: /user/username/projects/myproject/random: {} -Info 50 [16:02:08.000] response: +Info 50 [00:02:08.000] response: { "response": { "definitions": [ @@ -527,9 +527,9 @@ Info 50 [16:02:08.000] response: }, "responseRequired": true } -Info 51 [16:02:11.000] DirectoryWatcher:: Triggered with /user/username/projects/myproject/decls/FnS.d.ts.map :: WatchInfo: /user/username/projects/myproject/decls 1 undefined Project: /user/username/projects/myproject/main/tsconfig.json WatchType: Failed Lookup Locations -Info 52 [16:02:12.000] Elapsed:: *ms DirectoryWatcher:: Triggered with /user/username/projects/myproject/decls/FnS.d.ts.map :: WatchInfo: /user/username/projects/myproject/decls 1 undefined Project: /user/username/projects/myproject/main/tsconfig.json WatchType: Failed Lookup Locations -Info 53 [16:02:13.000] request: +Info 51 [00:02:11.000] DirectoryWatcher:: Triggered with /user/username/projects/myproject/decls/FnS.d.ts.map :: WatchInfo: /user/username/projects/myproject/decls 1 undefined Project: /user/username/projects/myproject/main/tsconfig.json WatchType: Failed Lookup Locations +Info 52 [00:02:12.000] Elapsed:: *ms DirectoryWatcher:: Triggered with /user/username/projects/myproject/decls/FnS.d.ts.map :: WatchInfo: /user/username/projects/myproject/decls 1 undefined Project: /user/username/projects/myproject/main/tsconfig.json WatchType: Failed Lookup Locations +Info 53 [00:02:13.000] request: { "command": "definitionAndBoundSpan", "arguments": { @@ -607,7 +607,7 @@ FsWatchesRecursive:: /user/username/projects/myproject/random: {} -Info 54 [16:02:14.000] response: +Info 54 [00:02:14.000] response: { "response": { "definitions": [ @@ -644,7 +644,7 @@ Info 54 [16:02:14.000] response: }, "responseRequired": true } -Info 55 [16:02:15.000] request: +Info 55 [00:02:15.000] request: { "command": "definitionAndBoundSpan", "arguments": { @@ -719,7 +719,7 @@ FsWatchesRecursive:: /user/username/projects/myproject/random: {} -Info 56 [16:02:16.000] response: +Info 56 [00:02:16.000] response: { "response": { "definitions": [ @@ -756,7 +756,7 @@ Info 56 [16:02:16.000] response: }, "responseRequired": true } -Info 57 [16:02:17.000] request: +Info 57 [00:02:17.000] request: { "command": "definitionAndBoundSpan", "arguments": { @@ -831,7 +831,7 @@ FsWatchesRecursive:: /user/username/projects/myproject/random: {} -Info 58 [16:02:18.000] response: +Info 58 [00:02:18.000] response: { "response": { "definitions": [ @@ -868,7 +868,7 @@ Info 58 [16:02:18.000] response: }, "responseRequired": true } -Info 59 [16:02:19.000] request: +Info 59 [00:02:19.000] request: { "command": "definitionAndBoundSpan", "arguments": { @@ -943,7 +943,7 @@ FsWatchesRecursive:: /user/username/projects/myproject/random: {} -Info 60 [16:02:20.000] response: +Info 60 [00:02:20.000] response: { "response": { "definitions": [ @@ -980,7 +980,7 @@ Info 60 [16:02:20.000] response: }, "responseRequired": true } -Info 61 [16:02:21.000] request: +Info 61 [00:02:21.000] request: { "command": "definitionAndBoundSpan", "arguments": { @@ -1055,7 +1055,7 @@ FsWatchesRecursive:: /user/username/projects/myproject/random: {} -Info 62 [16:02:22.000] response: +Info 62 [00:02:22.000] response: { "response": { "definitions": [ @@ -1092,7 +1092,7 @@ Info 62 [16:02:22.000] response: }, "responseRequired": true } -Info 63 [16:02:23.000] request: +Info 63 [00:02:23.000] request: { "seq": 0, "type": "request", @@ -1133,18 +1133,18 @@ FsWatchesRecursive:: /user/username/projects/myproject/random: {} -Info 64 [16:02:24.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/random/random.ts 500 undefined WatchType: Closed Script info -Info 65 [16:02:25.000] Project '/user/username/projects/myproject/main/tsconfig.json' (Configured) -Info 65 [16:02:26.000] Files (3) +Info 64 [00:02:24.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/random/random.ts 500 undefined WatchType: Closed Script info +Info 65 [00:02:25.000] Project '/user/username/projects/myproject/main/tsconfig.json' (Configured) +Info 65 [00:02:26.000] Files (3) -Info 65 [16:02:27.000] ----------------------------------------------- -Info 65 [16:02:28.000] Project '/user/username/projects/myproject/random/tsconfig.json' (Configured) -Info 65 [16:02:29.000] Files (2) +Info 65 [00:02:27.000] ----------------------------------------------- +Info 65 [00:02:28.000] Project '/user/username/projects/myproject/random/tsconfig.json' (Configured) +Info 65 [00:02:29.000] Files (2) -Info 65 [16:02:30.000] ----------------------------------------------- -Info 65 [16:02:31.000] Open files: -Info 65 [16:02:32.000] FileName: /user/username/projects/myproject/main/main.ts ProjectRootPath: undefined -Info 65 [16:02:33.000] Projects: /user/username/projects/myproject/main/tsconfig.json +Info 65 [00:02:30.000] ----------------------------------------------- +Info 65 [00:02:31.000] Open files: +Info 65 [00:02:32.000] FileName: /user/username/projects/myproject/main/main.ts ProjectRootPath: undefined +Info 65 [00:02:33.000] Projects: /user/username/projects/myproject/main/tsconfig.json After request PolledWatches:: @@ -1179,11 +1179,11 @@ FsWatchesRecursive:: /user/username/projects/myproject/random: {} -Info 65 [16:02:34.000] response: +Info 65 [00:02:34.000] response: { "responseRequired": false } -Info 66 [16:02:35.000] request: +Info 66 [00:02:35.000] request: { "seq": 0, "type": "request", @@ -1226,22 +1226,22 @@ FsWatchesRecursive:: /user/username/projects/myproject/random: {} -Info 67 [16:02:36.000] FileWatcher:: Close:: WatchInfo: /user/username/projects/myproject/random/random.ts 500 undefined WatchType: Closed Script info -Info 68 [16:02:37.000] Search path: /user/username/projects/myproject/random -Info 69 [16:02:38.000] For info: /user/username/projects/myproject/random/random.ts :: Config file name: /user/username/projects/myproject/random/tsconfig.json -Info 70 [16:02:39.000] Project '/user/username/projects/myproject/main/tsconfig.json' (Configured) -Info 70 [16:02:40.000] Files (3) +Info 67 [00:02:36.000] FileWatcher:: Close:: WatchInfo: /user/username/projects/myproject/random/random.ts 500 undefined WatchType: Closed Script info +Info 68 [00:02:37.000] Search path: /user/username/projects/myproject/random +Info 69 [00:02:38.000] For info: /user/username/projects/myproject/random/random.ts :: Config file name: /user/username/projects/myproject/random/tsconfig.json +Info 70 [00:02:39.000] Project '/user/username/projects/myproject/main/tsconfig.json' (Configured) +Info 70 [00:02:40.000] Files (3) -Info 70 [16:02:41.000] ----------------------------------------------- -Info 70 [16:02:42.000] Project '/user/username/projects/myproject/random/tsconfig.json' (Configured) -Info 70 [16:02:43.000] Files (2) +Info 70 [00:02:41.000] ----------------------------------------------- +Info 70 [00:02:42.000] Project '/user/username/projects/myproject/random/tsconfig.json' (Configured) +Info 70 [00:02:43.000] Files (2) -Info 70 [16:02:44.000] ----------------------------------------------- -Info 70 [16:02:45.000] Open files: -Info 70 [16:02:46.000] FileName: /user/username/projects/myproject/main/main.ts ProjectRootPath: undefined -Info 70 [16:02:47.000] Projects: /user/username/projects/myproject/main/tsconfig.json -Info 70 [16:02:48.000] FileName: /user/username/projects/myproject/random/random.ts ProjectRootPath: undefined -Info 70 [16:02:49.000] Projects: /user/username/projects/myproject/random/tsconfig.json +Info 70 [00:02:44.000] ----------------------------------------------- +Info 70 [00:02:45.000] Open files: +Info 70 [00:02:46.000] FileName: /user/username/projects/myproject/main/main.ts ProjectRootPath: undefined +Info 70 [00:02:47.000] Projects: /user/username/projects/myproject/main/tsconfig.json +Info 70 [00:02:48.000] FileName: /user/username/projects/myproject/random/random.ts ProjectRootPath: undefined +Info 70 [00:02:49.000] Projects: /user/username/projects/myproject/random/tsconfig.json After request PolledWatches:: @@ -1274,11 +1274,11 @@ FsWatchesRecursive:: /user/username/projects/myproject/random: {} -Info 70 [16:02:50.000] response: +Info 70 [00:02:50.000] response: { "responseRequired": false } -Info 71 [16:02:51.000] request: +Info 71 [00:02:51.000] request: { "seq": 0, "type": "request", @@ -1319,18 +1319,18 @@ FsWatchesRecursive:: /user/username/projects/myproject/random: {} -Info 72 [16:02:52.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/main/main.ts 500 undefined WatchType: Closed Script info -Info 73 [16:02:53.000] Project '/user/username/projects/myproject/main/tsconfig.json' (Configured) -Info 73 [16:02:54.000] Files (3) +Info 72 [00:02:52.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/main/main.ts 500 undefined WatchType: Closed Script info +Info 73 [00:02:53.000] Project '/user/username/projects/myproject/main/tsconfig.json' (Configured) +Info 73 [00:02:54.000] Files (3) -Info 73 [16:02:55.000] ----------------------------------------------- -Info 73 [16:02:56.000] Project '/user/username/projects/myproject/random/tsconfig.json' (Configured) -Info 73 [16:02:57.000] Files (2) +Info 73 [00:02:55.000] ----------------------------------------------- +Info 73 [00:02:56.000] Project '/user/username/projects/myproject/random/tsconfig.json' (Configured) +Info 73 [00:02:57.000] Files (2) -Info 73 [16:02:58.000] ----------------------------------------------- -Info 73 [16:02:59.000] Open files: -Info 73 [16:03:00.000] FileName: /user/username/projects/myproject/random/random.ts ProjectRootPath: undefined -Info 73 [16:03:01.000] Projects: /user/username/projects/myproject/random/tsconfig.json +Info 73 [00:02:58.000] ----------------------------------------------- +Info 73 [00:02:59.000] Open files: +Info 73 [00:03:00.000] FileName: /user/username/projects/myproject/random/random.ts ProjectRootPath: undefined +Info 73 [00:03:01.000] Projects: /user/username/projects/myproject/random/tsconfig.json After request PolledWatches:: @@ -1365,11 +1365,11 @@ FsWatchesRecursive:: /user/username/projects/myproject/random: {} -Info 73 [16:03:02.000] response: +Info 73 [00:03:02.000] response: { "responseRequired": false } -Info 74 [16:03:03.000] request: +Info 74 [00:03:03.000] request: { "seq": 0, "type": "request", @@ -1412,16 +1412,16 @@ FsWatchesRecursive:: /user/username/projects/myproject/random: {} -Info 75 [16:03:04.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/random/random.ts 500 undefined WatchType: Closed Script info -Info 76 [16:03:05.000] Project '/user/username/projects/myproject/main/tsconfig.json' (Configured) -Info 76 [16:03:06.000] Files (3) +Info 75 [00:03:04.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/random/random.ts 500 undefined WatchType: Closed Script info +Info 76 [00:03:05.000] Project '/user/username/projects/myproject/main/tsconfig.json' (Configured) +Info 76 [00:03:06.000] Files (3) -Info 76 [16:03:07.000] ----------------------------------------------- -Info 76 [16:03:08.000] Project '/user/username/projects/myproject/random/tsconfig.json' (Configured) -Info 76 [16:03:09.000] Files (2) +Info 76 [00:03:07.000] ----------------------------------------------- +Info 76 [00:03:08.000] Project '/user/username/projects/myproject/random/tsconfig.json' (Configured) +Info 76 [00:03:09.000] Files (2) -Info 76 [16:03:10.000] ----------------------------------------------- -Info 76 [16:03:11.000] Open files: +Info 76 [00:03:10.000] ----------------------------------------------- +Info 76 [00:03:11.000] Open files: After request PolledWatches:: @@ -1458,11 +1458,11 @@ FsWatchesRecursive:: /user/username/projects/myproject/random: {} -Info 76 [16:03:12.000] response: +Info 76 [00:03:12.000] response: { "responseRequired": false } -Info 77 [16:03:13.000] request: +Info 77 [00:03:13.000] request: { "seq": 0, "type": "request", @@ -1507,12 +1507,12 @@ FsWatchesRecursive:: /user/username/projects/myproject/random: {} -Info 78 [16:03:14.000] FileWatcher:: Close:: WatchInfo: /user/username/projects/myproject/random/random.ts 500 undefined WatchType: Closed Script info -Info 79 [16:03:15.000] Search path: /user/username/projects/myproject/random -Info 80 [16:03:16.000] For info: /user/username/projects/myproject/random/random.ts :: Config file name: /user/username/projects/myproject/random/tsconfig.json -Info 81 [16:03:17.000] `remove Project:: -Info 82 [16:03:18.000] Project '/user/username/projects/myproject/main/tsconfig.json' (Configured) -Info 83 [16:03:19.000] Files (3) +Info 78 [00:03:14.000] FileWatcher:: Close:: WatchInfo: /user/username/projects/myproject/random/random.ts 500 undefined WatchType: Closed Script info +Info 79 [00:03:15.000] Search path: /user/username/projects/myproject/random +Info 80 [00:03:16.000] For info: /user/username/projects/myproject/random/random.ts :: Config file name: /user/username/projects/myproject/random/tsconfig.json +Info 81 [00:03:17.000] `remove Project:: +Info 82 [00:03:18.000] Project '/user/username/projects/myproject/main/tsconfig.json' (Configured) +Info 83 [00:03:19.000] Files (3) /a/lib/lib.d.ts /user/username/projects/myproject/dependency/FnS.ts /user/username/projects/myproject/main/main.ts @@ -1525,28 +1525,28 @@ Info 83 [16:03:19.000] Files (3) main.ts Matched by default include pattern '**/*' -Info 84 [16:03:20.000] ----------------------------------------------- -Info 85 [16:03:21.000] DirectoryWatcher:: Close:: WatchInfo: /user/username/projects/myproject/main 1 undefined Config: /user/username/projects/myproject/main/tsconfig.json WatchType: Wild card directory -Info 86 [16:03:22.000] 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 87 [16:03:23.000] FileWatcher:: Close:: WatchInfo: /user/username/projects/myproject/main/tsconfig.json 2000 undefined Project: /user/username/projects/myproject/main/tsconfig.json WatchType: Config file -Info 88 [16:03:24.000] DirectoryWatcher:: Close:: WatchInfo: /user/username/projects/myproject/dependency 1 undefined Config: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Wild card directory -Info 89 [16:03:25.000] 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 90 [16:03:26.000] FileWatcher:: Close:: WatchInfo: /user/username/projects/myproject/dependency/tsconfig.json 2000 undefined Project: /user/username/projects/myproject/main/tsconfig.json WatchType: Config file -Info 91 [16:03:27.000] DirectoryWatcher:: Close:: WatchInfo: /user/username/projects/myproject/decls 1 undefined Project: /user/username/projects/myproject/main/tsconfig.json WatchType: Failed Lookup Locations -Info 92 [16:03:28.000] 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 93 [16:03:29.000] 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 94 [16:03:30.000] 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 95 [16:03:31.000] DirectoryWatcher:: Close:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/main/tsconfig.json WatchType: Type roots -Info 96 [16:03:32.000] 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 97 [16:03:33.000] FileWatcher:: Close:: WatchInfo: /user/username/projects/myproject/main/main.ts 500 undefined WatchType: Closed Script info -Info 98 [16:03:34.000] FileWatcher:: Close:: WatchInfo: /user/username/projects/myproject/dependency/FnS.ts 500 undefined WatchType: Closed Script info -Info 99 [16:03:35.000] Project '/user/username/projects/myproject/random/tsconfig.json' (Configured) -Info 99 [16:03:36.000] Files (2) - -Info 99 [16:03:37.000] ----------------------------------------------- -Info 99 [16:03:38.000] Open files: -Info 99 [16:03:39.000] FileName: /user/username/projects/myproject/random/random.ts ProjectRootPath: undefined -Info 99 [16:03:40.000] Projects: /user/username/projects/myproject/random/tsconfig.json +Info 84 [00:03:20.000] ----------------------------------------------- +Info 85 [00:03:21.000] DirectoryWatcher:: Close:: WatchInfo: /user/username/projects/myproject/main 1 undefined Config: /user/username/projects/myproject/main/tsconfig.json WatchType: Wild card directory +Info 86 [00:03:22.000] 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 87 [00:03:23.000] FileWatcher:: Close:: WatchInfo: /user/username/projects/myproject/main/tsconfig.json 2000 undefined Project: /user/username/projects/myproject/main/tsconfig.json WatchType: Config file +Info 88 [00:03:24.000] DirectoryWatcher:: Close:: WatchInfo: /user/username/projects/myproject/dependency 1 undefined Config: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Wild card directory +Info 89 [00:03:25.000] 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 90 [00:03:26.000] FileWatcher:: Close:: WatchInfo: /user/username/projects/myproject/dependency/tsconfig.json 2000 undefined Project: /user/username/projects/myproject/main/tsconfig.json WatchType: Config file +Info 91 [00:03:27.000] DirectoryWatcher:: Close:: WatchInfo: /user/username/projects/myproject/decls 1 undefined Project: /user/username/projects/myproject/main/tsconfig.json WatchType: Failed Lookup Locations +Info 92 [00:03:28.000] 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 93 [00:03:29.000] 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 94 [00:03:30.000] 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 95 [00:03:31.000] DirectoryWatcher:: Close:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/main/tsconfig.json WatchType: Type roots +Info 96 [00:03:32.000] 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 97 [00:03:33.000] FileWatcher:: Close:: WatchInfo: /user/username/projects/myproject/main/main.ts 500 undefined WatchType: Closed Script info +Info 98 [00:03:34.000] FileWatcher:: Close:: WatchInfo: /user/username/projects/myproject/dependency/FnS.ts 500 undefined WatchType: Closed Script info +Info 99 [00:03:35.000] Project '/user/username/projects/myproject/random/tsconfig.json' (Configured) +Info 99 [00:03:36.000] Files (2) + +Info 99 [00:03:37.000] ----------------------------------------------- +Info 99 [00:03:38.000] Open files: +Info 99 [00:03:39.000] FileName: /user/username/projects/myproject/random/random.ts ProjectRootPath: undefined +Info 99 [00:03:40.000] Projects: /user/username/projects/myproject/random/tsconfig.json After request PolledWatches:: @@ -1565,7 +1565,7 @@ FsWatchesRecursive:: /user/username/projects/myproject/random: {} -Info 99 [16:03:41.000] response: +Info 99 [00:03:41.000] response: { "responseRequired": false } \ No newline at end of file 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 a84a06fc786fa..3fc79ef153257 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 @@ -1,5 +1,5 @@ -Info 0 [16:01:00.000] Provided types map file "/a/lib/typesMap.json" doesn't exist -Info 1 [16:01:01.000] request: +Info 0 [00:01:00.000] Provided types map file "/a/lib/typesMap.json" doesn't exist +Info 1 [00:01:01.000] request: { "seq": 0, "type": "request", @@ -200,11 +200,11 @@ FsWatches:: FsWatchesRecursive:: -Info 2 [16:01:02.000] Search path: /user/username/projects/myproject/main -Info 3 [16:01:03.000] For info: /user/username/projects/myproject/main/main.ts :: Config file name: /user/username/projects/myproject/main/tsconfig.json -Info 4 [16:01:04.000] Creating configuration project /user/username/projects/myproject/main/tsconfig.json -Info 5 [16:01:05.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/main/tsconfig.json 2000 undefined Project: /user/username/projects/myproject/main/tsconfig.json WatchType: Config file -Info 6 [16:01:06.000] Config: /user/username/projects/myproject/main/tsconfig.json : { +Info 2 [00:01:02.000] Search path: /user/username/projects/myproject/main +Info 3 [00:01:03.000] For info: /user/username/projects/myproject/main/main.ts :: Config file name: /user/username/projects/myproject/main/tsconfig.json +Info 4 [00:01:04.000] Creating configuration project /user/username/projects/myproject/main/tsconfig.json +Info 5 [00:01:05.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/main/tsconfig.json 2000 undefined Project: /user/username/projects/myproject/main/tsconfig.json WatchType: Config file +Info 6 [00:01:06.000] Config: /user/username/projects/myproject/main/tsconfig.json : { "rootNames": [ "/user/username/projects/myproject/main/main.ts" ], @@ -220,11 +220,11 @@ Info 6 [16:01:06.000] Config: /user/username/projects/myproject/main/tsconfig } ] } -Info 7 [16:01:07.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/main 1 undefined Config: /user/username/projects/myproject/main/tsconfig.json WatchType: Wild card directory -Info 8 [16:01:08.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/main 1 undefined Config: /user/username/projects/myproject/main/tsconfig.json WatchType: Wild card directory -Info 9 [16:01:09.000] Plugins were requested but not running in environment that supports 'require'. Nothing will be loaded -Info 10 [16:01:10.000] Starting updateGraphWorker: Project: /user/username/projects/myproject/main/tsconfig.json -Info 11 [16:01:11.000] Config: /user/username/projects/myproject/dependency/tsconfig.json : { +Info 7 [00:01:07.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/main 1 undefined Config: /user/username/projects/myproject/main/tsconfig.json WatchType: Wild card directory +Info 8 [00:01:08.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/main 1 undefined Config: /user/username/projects/myproject/main/tsconfig.json WatchType: Wild card directory +Info 9 [00:01:09.000] Plugins were requested but not running in environment that supports 'require'. Nothing will be loaded +Info 10 [00:01:10.000] Starting updateGraphWorker: Project: /user/username/projects/myproject/main/tsconfig.json +Info 11 [00:01:11.000] Config: /user/username/projects/myproject/dependency/tsconfig.json : { "rootNames": [ "/user/username/projects/myproject/dependency/FnS.ts" ], @@ -235,20 +235,20 @@ Info 11 [16:01:11.000] Config: /user/username/projects/myproject/dependency/ts "configFilePath": "/user/username/projects/myproject/dependency/tsconfig.json" } } -Info 12 [16:01:12.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/dependency/tsconfig.json 2000 undefined Project: /user/username/projects/myproject/main/tsconfig.json WatchType: Config file -Info 13 [16:01:13.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/dependency 1 undefined Config: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Wild card directory -Info 14 [16:01:14.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/dependency 1 undefined Config: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Wild card directory -Info 15 [16:01:15.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/decls 1 undefined Project: /user/username/projects/myproject/main/tsconfig.json WatchType: Failed Lookup Locations -Info 16 [16:01:16.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/decls 1 undefined Project: /user/username/projects/myproject/main/tsconfig.json WatchType: Failed Lookup Locations -Info 17 [16:01:17.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/dependency/FnS.ts 500 undefined WatchType: Closed Script info -Info 18 [16:01:18.000] FileWatcher:: Added:: WatchInfo: /a/lib/lib.d.ts 500 undefined WatchType: Closed Script info -Info 19 [16:01:19.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/main/node_modules/@types 1 undefined Project: /user/username/projects/myproject/main/tsconfig.json WatchType: Type roots -Info 20 [16:01:20.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/main/node_modules/@types 1 undefined Project: /user/username/projects/myproject/main/tsconfig.json WatchType: Type roots -Info 21 [16:01:21.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/main/tsconfig.json WatchType: Type roots -Info 22 [16:01:22.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/main/tsconfig.json WatchType: Type roots -Info 23 [16:01:23.000] Finishing updateGraphWorker: Project: /user/username/projects/myproject/main/tsconfig.json Version: 1 structureChanged: true structureIsReused:: Not Elapsed:: *ms -Info 24 [16:01:24.000] Project '/user/username/projects/myproject/main/tsconfig.json' (Configured) -Info 25 [16:01:25.000] Files (3) +Info 12 [00:01:12.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/dependency/tsconfig.json 2000 undefined Project: /user/username/projects/myproject/main/tsconfig.json WatchType: Config file +Info 13 [00:01:13.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/dependency 1 undefined Config: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Wild card directory +Info 14 [00:01:14.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/dependency 1 undefined Config: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Wild card directory +Info 15 [00:01:15.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/decls 1 undefined Project: /user/username/projects/myproject/main/tsconfig.json WatchType: Failed Lookup Locations +Info 16 [00:01:16.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/decls 1 undefined Project: /user/username/projects/myproject/main/tsconfig.json WatchType: Failed Lookup Locations +Info 17 [00:01:17.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/dependency/FnS.ts 500 undefined WatchType: Closed Script info +Info 18 [00:01:18.000] FileWatcher:: Added:: WatchInfo: /a/lib/lib.d.ts 500 undefined WatchType: Closed Script info +Info 19 [00:01:19.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/main/node_modules/@types 1 undefined Project: /user/username/projects/myproject/main/tsconfig.json WatchType: Type roots +Info 20 [00:01:20.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/main/node_modules/@types 1 undefined Project: /user/username/projects/myproject/main/tsconfig.json WatchType: Type roots +Info 21 [00:01:21.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/main/tsconfig.json WatchType: Type roots +Info 22 [00:01:22.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/main/tsconfig.json WatchType: Type roots +Info 23 [00:01:23.000] Finishing updateGraphWorker: Project: /user/username/projects/myproject/main/tsconfig.json Version: 1 structureChanged: true structureIsReused:: Not Elapsed:: *ms +Info 24 [00:01:24.000] Project '/user/username/projects/myproject/main/tsconfig.json' (Configured) +Info 25 [00:01:25.000] Files (3) /a/lib/lib.d.ts /user/username/projects/myproject/dependency/FnS.ts /user/username/projects/myproject/main/main.ts @@ -261,16 +261,16 @@ Info 25 [16:01:25.000] Files (3) main.ts Matched by default include pattern '**/*' -Info 26 [16:01:26.000] ----------------------------------------------- -Info 27 [16:01:27.000] Search path: /user/username/projects/myproject/main -Info 28 [16:01:28.000] For info: /user/username/projects/myproject/main/tsconfig.json :: No config files found. -Info 29 [16:01:29.000] Project '/user/username/projects/myproject/main/tsconfig.json' (Configured) -Info 29 [16:01:30.000] Files (3) +Info 26 [00:01:26.000] ----------------------------------------------- +Info 27 [00:01:27.000] Search path: /user/username/projects/myproject/main +Info 28 [00:01:28.000] For info: /user/username/projects/myproject/main/tsconfig.json :: No config files found. +Info 29 [00:01:29.000] Project '/user/username/projects/myproject/main/tsconfig.json' (Configured) +Info 29 [00:01:30.000] Files (3) -Info 29 [16:01:31.000] ----------------------------------------------- -Info 29 [16:01:32.000] Open files: -Info 29 [16:01:33.000] FileName: /user/username/projects/myproject/main/main.ts ProjectRootPath: undefined -Info 29 [16:01:34.000] Projects: /user/username/projects/myproject/main/tsconfig.json +Info 29 [00:01:31.000] ----------------------------------------------- +Info 29 [00:01:32.000] Open files: +Info 29 [00:01:33.000] FileName: /user/username/projects/myproject/main/main.ts ProjectRootPath: undefined +Info 29 [00:01:34.000] Projects: /user/username/projects/myproject/main/tsconfig.json After request PolledWatches:: @@ -297,11 +297,11 @@ FsWatchesRecursive:: /user/username/projects/myproject/decls: {} -Info 29 [16:01:35.000] response: +Info 29 [00:01:35.000] response: { "responseRequired": false } -Info 30 [16:01:36.000] request: +Info 30 [00:01:36.000] request: { "seq": 0, "type": "request", @@ -336,11 +336,11 @@ FsWatchesRecursive:: /user/username/projects/myproject/decls: {} -Info 31 [16:01:37.000] Search path: /user/username/projects/myproject/random -Info 32 [16:01:38.000] For info: /user/username/projects/myproject/random/random.ts :: Config file name: /user/username/projects/myproject/random/tsconfig.json -Info 33 [16:01:39.000] Creating configuration project /user/username/projects/myproject/random/tsconfig.json -Info 34 [16:01:40.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/random/tsconfig.json 2000 undefined Project: /user/username/projects/myproject/random/tsconfig.json WatchType: Config file -Info 35 [16:01:41.000] Config: /user/username/projects/myproject/random/tsconfig.json : { +Info 31 [00:01:37.000] Search path: /user/username/projects/myproject/random +Info 32 [00:01:38.000] For info: /user/username/projects/myproject/random/random.ts :: Config file name: /user/username/projects/myproject/random/tsconfig.json +Info 33 [00:01:39.000] Creating configuration project /user/username/projects/myproject/random/tsconfig.json +Info 34 [00:01:40.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/random/tsconfig.json 2000 undefined Project: /user/username/projects/myproject/random/tsconfig.json WatchType: Config file +Info 35 [00:01:41.000] Config: /user/username/projects/myproject/random/tsconfig.json : { "rootNames": [ "/user/username/projects/myproject/random/random.ts" ], @@ -348,17 +348,17 @@ Info 35 [16:01:41.000] Config: /user/username/projects/myproject/random/tsconf "configFilePath": "/user/username/projects/myproject/random/tsconfig.json" } } -Info 36 [16:01:42.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/random 1 undefined Config: /user/username/projects/myproject/random/tsconfig.json WatchType: Wild card directory -Info 37 [16:01:43.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/random 1 undefined Config: /user/username/projects/myproject/random/tsconfig.json WatchType: Wild card directory -Info 38 [16:01:44.000] Plugins were requested but not running in environment that supports 'require'. Nothing will be loaded -Info 39 [16:01:45.000] Starting updateGraphWorker: Project: /user/username/projects/myproject/random/tsconfig.json -Info 40 [16:01:46.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/random/node_modules/@types 1 undefined Project: /user/username/projects/myproject/random/tsconfig.json WatchType: Type roots -Info 41 [16:01:47.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/random/node_modules/@types 1 undefined Project: /user/username/projects/myproject/random/tsconfig.json WatchType: Type roots -Info 42 [16:01:48.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/random/tsconfig.json WatchType: Type roots -Info 43 [16:01:49.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/random/tsconfig.json WatchType: Type roots -Info 44 [16:01:50.000] Finishing updateGraphWorker: Project: /user/username/projects/myproject/random/tsconfig.json Version: 1 structureChanged: true structureIsReused:: Not Elapsed:: *ms -Info 45 [16:01:51.000] Project '/user/username/projects/myproject/random/tsconfig.json' (Configured) -Info 46 [16:01:52.000] Files (2) +Info 36 [00:01:42.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/random 1 undefined Config: /user/username/projects/myproject/random/tsconfig.json WatchType: Wild card directory +Info 37 [00:01:43.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/random 1 undefined Config: /user/username/projects/myproject/random/tsconfig.json WatchType: Wild card directory +Info 38 [00:01:44.000] Plugins were requested but not running in environment that supports 'require'. Nothing will be loaded +Info 39 [00:01:45.000] Starting updateGraphWorker: Project: /user/username/projects/myproject/random/tsconfig.json +Info 40 [00:01:46.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/random/node_modules/@types 1 undefined Project: /user/username/projects/myproject/random/tsconfig.json WatchType: Type roots +Info 41 [00:01:47.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/random/node_modules/@types 1 undefined Project: /user/username/projects/myproject/random/tsconfig.json WatchType: Type roots +Info 42 [00:01:48.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/random/tsconfig.json WatchType: Type roots +Info 43 [00:01:49.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/random/tsconfig.json WatchType: Type roots +Info 44 [00:01:50.000] Finishing updateGraphWorker: Project: /user/username/projects/myproject/random/tsconfig.json Version: 1 structureChanged: true structureIsReused:: Not Elapsed:: *ms +Info 45 [00:01:51.000] Project '/user/username/projects/myproject/random/tsconfig.json' (Configured) +Info 46 [00:01:52.000] Files (2) /a/lib/lib.d.ts /user/username/projects/myproject/random/random.ts @@ -368,20 +368,20 @@ Info 46 [16:01:52.000] Files (2) random.ts Matched by default include pattern '**/*' -Info 47 [16:01:53.000] ----------------------------------------------- -Info 48 [16:01:54.000] Project '/user/username/projects/myproject/main/tsconfig.json' (Configured) -Info 48 [16:01:55.000] Files (3) +Info 47 [00:01:53.000] ----------------------------------------------- +Info 48 [00:01:54.000] Project '/user/username/projects/myproject/main/tsconfig.json' (Configured) +Info 48 [00:01:55.000] Files (3) -Info 48 [16:01:56.000] ----------------------------------------------- -Info 48 [16:01:57.000] Project '/user/username/projects/myproject/random/tsconfig.json' (Configured) -Info 48 [16:01:58.000] Files (2) +Info 48 [00:01:56.000] ----------------------------------------------- +Info 48 [00:01:57.000] Project '/user/username/projects/myproject/random/tsconfig.json' (Configured) +Info 48 [00:01:58.000] Files (2) -Info 48 [16:01:59.000] ----------------------------------------------- -Info 48 [16:02:00.000] Open files: -Info 48 [16:02:01.000] FileName: /user/username/projects/myproject/main/main.ts ProjectRootPath: undefined -Info 48 [16:02:02.000] Projects: /user/username/projects/myproject/main/tsconfig.json -Info 48 [16:02:03.000] FileName: /user/username/projects/myproject/random/random.ts ProjectRootPath: undefined -Info 48 [16:02:04.000] Projects: /user/username/projects/myproject/random/tsconfig.json +Info 48 [00:01:59.000] ----------------------------------------------- +Info 48 [00:02:00.000] Open files: +Info 48 [00:02:01.000] FileName: /user/username/projects/myproject/main/main.ts ProjectRootPath: undefined +Info 48 [00:02:02.000] Projects: /user/username/projects/myproject/main/tsconfig.json +Info 48 [00:02:03.000] FileName: /user/username/projects/myproject/random/random.ts ProjectRootPath: undefined +Info 48 [00:02:04.000] Projects: /user/username/projects/myproject/random/tsconfig.json After request PolledWatches:: @@ -414,11 +414,11 @@ FsWatchesRecursive:: /user/username/projects/myproject/random: {} -Info 48 [16:02:05.000] response: +Info 48 [00:02:05.000] response: { "responseRequired": false } -Info 49 [16:02:06.000] request: +Info 49 [00:02:06.000] request: { "command": "definitionAndBoundSpan", "arguments": { @@ -493,7 +493,7 @@ FsWatchesRecursive:: /user/username/projects/myproject/random: {} -Info 50 [16:02:07.000] response: +Info 50 [00:02:07.000] response: { "response": { "definitions": [ @@ -530,9 +530,9 @@ Info 50 [16:02:07.000] response: }, "responseRequired": true } -Info 51 [16:02:09.000] DirectoryWatcher:: Triggered with /user/username/projects/myproject/decls/FnS.d.ts.map :: WatchInfo: /user/username/projects/myproject/decls 1 undefined Project: /user/username/projects/myproject/main/tsconfig.json WatchType: Failed Lookup Locations -Info 52 [16:02:10.000] Elapsed:: *ms DirectoryWatcher:: Triggered with /user/username/projects/myproject/decls/FnS.d.ts.map :: WatchInfo: /user/username/projects/myproject/decls 1 undefined Project: /user/username/projects/myproject/main/tsconfig.json WatchType: Failed Lookup Locations -Info 53 [16:02:11.000] request: +Info 51 [00:02:09.000] DirectoryWatcher:: Triggered with /user/username/projects/myproject/decls/FnS.d.ts.map :: WatchInfo: /user/username/projects/myproject/decls 1 undefined Project: /user/username/projects/myproject/main/tsconfig.json WatchType: Failed Lookup Locations +Info 52 [00:02:10.000] Elapsed:: *ms DirectoryWatcher:: Triggered with /user/username/projects/myproject/decls/FnS.d.ts.map :: WatchInfo: /user/username/projects/myproject/decls 1 undefined Project: /user/username/projects/myproject/main/tsconfig.json WatchType: Failed Lookup Locations +Info 53 [00:02:11.000] request: { "command": "definitionAndBoundSpan", "arguments": { @@ -608,7 +608,7 @@ FsWatchesRecursive:: /user/username/projects/myproject/random: {} -Info 54 [16:02:12.000] response: +Info 54 [00:02:12.000] response: { "response": { "definitions": [ @@ -645,7 +645,7 @@ Info 54 [16:02:12.000] response: }, "responseRequired": true } -Info 55 [16:02:13.000] request: +Info 55 [00:02:13.000] request: { "command": "definitionAndBoundSpan", "arguments": { @@ -720,7 +720,7 @@ FsWatchesRecursive:: /user/username/projects/myproject/random: {} -Info 56 [16:02:14.000] response: +Info 56 [00:02:14.000] response: { "response": { "definitions": [ @@ -757,7 +757,7 @@ Info 56 [16:02:14.000] response: }, "responseRequired": true } -Info 57 [16:02:15.000] request: +Info 57 [00:02:15.000] request: { "command": "definitionAndBoundSpan", "arguments": { @@ -832,7 +832,7 @@ FsWatchesRecursive:: /user/username/projects/myproject/random: {} -Info 58 [16:02:16.000] response: +Info 58 [00:02:16.000] response: { "response": { "definitions": [ @@ -869,7 +869,7 @@ Info 58 [16:02:16.000] response: }, "responseRequired": true } -Info 59 [16:02:17.000] request: +Info 59 [00:02:17.000] request: { "command": "definitionAndBoundSpan", "arguments": { @@ -944,7 +944,7 @@ FsWatchesRecursive:: /user/username/projects/myproject/random: {} -Info 60 [16:02:18.000] response: +Info 60 [00:02:18.000] response: { "response": { "definitions": [ @@ -981,7 +981,7 @@ Info 60 [16:02:18.000] response: }, "responseRequired": true } -Info 61 [16:02:19.000] request: +Info 61 [00:02:19.000] request: { "command": "definitionAndBoundSpan", "arguments": { @@ -1056,7 +1056,7 @@ FsWatchesRecursive:: /user/username/projects/myproject/random: {} -Info 62 [16:02:20.000] response: +Info 62 [00:02:20.000] response: { "response": { "definitions": [ @@ -1093,7 +1093,7 @@ Info 62 [16:02:20.000] response: }, "responseRequired": true } -Info 63 [16:02:21.000] request: +Info 63 [00:02:21.000] request: { "seq": 0, "type": "request", @@ -1134,18 +1134,18 @@ FsWatchesRecursive:: /user/username/projects/myproject/random: {} -Info 64 [16:02:22.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/random/random.ts 500 undefined WatchType: Closed Script info -Info 65 [16:02:23.000] Project '/user/username/projects/myproject/main/tsconfig.json' (Configured) -Info 65 [16:02:24.000] Files (3) +Info 64 [00:02:22.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/random/random.ts 500 undefined WatchType: Closed Script info +Info 65 [00:02:23.000] Project '/user/username/projects/myproject/main/tsconfig.json' (Configured) +Info 65 [00:02:24.000] Files (3) -Info 65 [16:02:25.000] ----------------------------------------------- -Info 65 [16:02:26.000] Project '/user/username/projects/myproject/random/tsconfig.json' (Configured) -Info 65 [16:02:27.000] Files (2) +Info 65 [00:02:25.000] ----------------------------------------------- +Info 65 [00:02:26.000] Project '/user/username/projects/myproject/random/tsconfig.json' (Configured) +Info 65 [00:02:27.000] Files (2) -Info 65 [16:02:28.000] ----------------------------------------------- -Info 65 [16:02:29.000] Open files: -Info 65 [16:02:30.000] FileName: /user/username/projects/myproject/main/main.ts ProjectRootPath: undefined -Info 65 [16:02:31.000] Projects: /user/username/projects/myproject/main/tsconfig.json +Info 65 [00:02:28.000] ----------------------------------------------- +Info 65 [00:02:29.000] Open files: +Info 65 [00:02:30.000] FileName: /user/username/projects/myproject/main/main.ts ProjectRootPath: undefined +Info 65 [00:02:31.000] Projects: /user/username/projects/myproject/main/tsconfig.json After request PolledWatches:: @@ -1180,11 +1180,11 @@ FsWatchesRecursive:: /user/username/projects/myproject/random: {} -Info 65 [16:02:32.000] response: +Info 65 [00:02:32.000] response: { "responseRequired": false } -Info 66 [16:02:33.000] request: +Info 66 [00:02:33.000] request: { "seq": 0, "type": "request", @@ -1227,22 +1227,22 @@ FsWatchesRecursive:: /user/username/projects/myproject/random: {} -Info 67 [16:02:34.000] FileWatcher:: Close:: WatchInfo: /user/username/projects/myproject/random/random.ts 500 undefined WatchType: Closed Script info -Info 68 [16:02:35.000] Search path: /user/username/projects/myproject/random -Info 69 [16:02:36.000] For info: /user/username/projects/myproject/random/random.ts :: Config file name: /user/username/projects/myproject/random/tsconfig.json -Info 70 [16:02:37.000] Project '/user/username/projects/myproject/main/tsconfig.json' (Configured) -Info 70 [16:02:38.000] Files (3) +Info 67 [00:02:34.000] FileWatcher:: Close:: WatchInfo: /user/username/projects/myproject/random/random.ts 500 undefined WatchType: Closed Script info +Info 68 [00:02:35.000] Search path: /user/username/projects/myproject/random +Info 69 [00:02:36.000] For info: /user/username/projects/myproject/random/random.ts :: Config file name: /user/username/projects/myproject/random/tsconfig.json +Info 70 [00:02:37.000] Project '/user/username/projects/myproject/main/tsconfig.json' (Configured) +Info 70 [00:02:38.000] Files (3) -Info 70 [16:02:39.000] ----------------------------------------------- -Info 70 [16:02:40.000] Project '/user/username/projects/myproject/random/tsconfig.json' (Configured) -Info 70 [16:02:41.000] Files (2) +Info 70 [00:02:39.000] ----------------------------------------------- +Info 70 [00:02:40.000] Project '/user/username/projects/myproject/random/tsconfig.json' (Configured) +Info 70 [00:02:41.000] Files (2) -Info 70 [16:02:42.000] ----------------------------------------------- -Info 70 [16:02:43.000] Open files: -Info 70 [16:02:44.000] FileName: /user/username/projects/myproject/main/main.ts ProjectRootPath: undefined -Info 70 [16:02:45.000] Projects: /user/username/projects/myproject/main/tsconfig.json -Info 70 [16:02:46.000] FileName: /user/username/projects/myproject/random/random.ts ProjectRootPath: undefined -Info 70 [16:02:47.000] Projects: /user/username/projects/myproject/random/tsconfig.json +Info 70 [00:02:42.000] ----------------------------------------------- +Info 70 [00:02:43.000] Open files: +Info 70 [00:02:44.000] FileName: /user/username/projects/myproject/main/main.ts ProjectRootPath: undefined +Info 70 [00:02:45.000] Projects: /user/username/projects/myproject/main/tsconfig.json +Info 70 [00:02:46.000] FileName: /user/username/projects/myproject/random/random.ts ProjectRootPath: undefined +Info 70 [00:02:47.000] Projects: /user/username/projects/myproject/random/tsconfig.json After request PolledWatches:: @@ -1275,11 +1275,11 @@ FsWatchesRecursive:: /user/username/projects/myproject/random: {} -Info 70 [16:02:48.000] response: +Info 70 [00:02:48.000] response: { "responseRequired": false } -Info 71 [16:02:49.000] request: +Info 71 [00:02:49.000] request: { "seq": 0, "type": "request", @@ -1320,18 +1320,18 @@ FsWatchesRecursive:: /user/username/projects/myproject/random: {} -Info 72 [16:02:50.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/main/main.ts 500 undefined WatchType: Closed Script info -Info 73 [16:02:51.000] Project '/user/username/projects/myproject/main/tsconfig.json' (Configured) -Info 73 [16:02:52.000] Files (3) +Info 72 [00:02:50.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/main/main.ts 500 undefined WatchType: Closed Script info +Info 73 [00:02:51.000] Project '/user/username/projects/myproject/main/tsconfig.json' (Configured) +Info 73 [00:02:52.000] Files (3) -Info 73 [16:02:53.000] ----------------------------------------------- -Info 73 [16:02:54.000] Project '/user/username/projects/myproject/random/tsconfig.json' (Configured) -Info 73 [16:02:55.000] Files (2) +Info 73 [00:02:53.000] ----------------------------------------------- +Info 73 [00:02:54.000] Project '/user/username/projects/myproject/random/tsconfig.json' (Configured) +Info 73 [00:02:55.000] Files (2) -Info 73 [16:02:56.000] ----------------------------------------------- -Info 73 [16:02:57.000] Open files: -Info 73 [16:02:58.000] FileName: /user/username/projects/myproject/random/random.ts ProjectRootPath: undefined -Info 73 [16:02:59.000] Projects: /user/username/projects/myproject/random/tsconfig.json +Info 73 [00:02:56.000] ----------------------------------------------- +Info 73 [00:02:57.000] Open files: +Info 73 [00:02:58.000] FileName: /user/username/projects/myproject/random/random.ts ProjectRootPath: undefined +Info 73 [00:02:59.000] Projects: /user/username/projects/myproject/random/tsconfig.json After request PolledWatches:: @@ -1366,11 +1366,11 @@ FsWatchesRecursive:: /user/username/projects/myproject/random: {} -Info 73 [16:03:00.000] response: +Info 73 [00:03:00.000] response: { "responseRequired": false } -Info 74 [16:03:01.000] request: +Info 74 [00:03:01.000] request: { "seq": 0, "type": "request", @@ -1413,16 +1413,16 @@ FsWatchesRecursive:: /user/username/projects/myproject/random: {} -Info 75 [16:03:02.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/random/random.ts 500 undefined WatchType: Closed Script info -Info 76 [16:03:03.000] Project '/user/username/projects/myproject/main/tsconfig.json' (Configured) -Info 76 [16:03:04.000] Files (3) +Info 75 [00:03:02.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/random/random.ts 500 undefined WatchType: Closed Script info +Info 76 [00:03:03.000] Project '/user/username/projects/myproject/main/tsconfig.json' (Configured) +Info 76 [00:03:04.000] Files (3) -Info 76 [16:03:05.000] ----------------------------------------------- -Info 76 [16:03:06.000] Project '/user/username/projects/myproject/random/tsconfig.json' (Configured) -Info 76 [16:03:07.000] Files (2) +Info 76 [00:03:05.000] ----------------------------------------------- +Info 76 [00:03:06.000] Project '/user/username/projects/myproject/random/tsconfig.json' (Configured) +Info 76 [00:03:07.000] Files (2) -Info 76 [16:03:08.000] ----------------------------------------------- -Info 76 [16:03:09.000] Open files: +Info 76 [00:03:08.000] ----------------------------------------------- +Info 76 [00:03:09.000] Open files: After request PolledWatches:: @@ -1459,11 +1459,11 @@ FsWatchesRecursive:: /user/username/projects/myproject/random: {} -Info 76 [16:03:10.000] response: +Info 76 [00:03:10.000] response: { "responseRequired": false } -Info 77 [16:03:11.000] request: +Info 77 [00:03:11.000] request: { "seq": 0, "type": "request", @@ -1508,12 +1508,12 @@ FsWatchesRecursive:: /user/username/projects/myproject/random: {} -Info 78 [16:03:12.000] FileWatcher:: Close:: WatchInfo: /user/username/projects/myproject/random/random.ts 500 undefined WatchType: Closed Script info -Info 79 [16:03:13.000] Search path: /user/username/projects/myproject/random -Info 80 [16:03:14.000] For info: /user/username/projects/myproject/random/random.ts :: Config file name: /user/username/projects/myproject/random/tsconfig.json -Info 81 [16:03:15.000] `remove Project:: -Info 82 [16:03:16.000] Project '/user/username/projects/myproject/main/tsconfig.json' (Configured) -Info 83 [16:03:17.000] Files (3) +Info 78 [00:03:12.000] FileWatcher:: Close:: WatchInfo: /user/username/projects/myproject/random/random.ts 500 undefined WatchType: Closed Script info +Info 79 [00:03:13.000] Search path: /user/username/projects/myproject/random +Info 80 [00:03:14.000] For info: /user/username/projects/myproject/random/random.ts :: Config file name: /user/username/projects/myproject/random/tsconfig.json +Info 81 [00:03:15.000] `remove Project:: +Info 82 [00:03:16.000] Project '/user/username/projects/myproject/main/tsconfig.json' (Configured) +Info 83 [00:03:17.000] Files (3) /a/lib/lib.d.ts /user/username/projects/myproject/dependency/FnS.ts /user/username/projects/myproject/main/main.ts @@ -1526,28 +1526,28 @@ Info 83 [16:03:17.000] Files (3) main.ts Matched by default include pattern '**/*' -Info 84 [16:03:18.000] ----------------------------------------------- -Info 85 [16:03:19.000] DirectoryWatcher:: Close:: WatchInfo: /user/username/projects/myproject/main 1 undefined Config: /user/username/projects/myproject/main/tsconfig.json WatchType: Wild card directory -Info 86 [16:03:20.000] 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 87 [16:03:21.000] FileWatcher:: Close:: WatchInfo: /user/username/projects/myproject/main/tsconfig.json 2000 undefined Project: /user/username/projects/myproject/main/tsconfig.json WatchType: Config file -Info 88 [16:03:22.000] DirectoryWatcher:: Close:: WatchInfo: /user/username/projects/myproject/dependency 1 undefined Config: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Wild card directory -Info 89 [16:03:23.000] 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 90 [16:03:24.000] FileWatcher:: Close:: WatchInfo: /user/username/projects/myproject/dependency/tsconfig.json 2000 undefined Project: /user/username/projects/myproject/main/tsconfig.json WatchType: Config file -Info 91 [16:03:25.000] DirectoryWatcher:: Close:: WatchInfo: /user/username/projects/myproject/decls 1 undefined Project: /user/username/projects/myproject/main/tsconfig.json WatchType: Failed Lookup Locations -Info 92 [16:03:26.000] 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 93 [16:03:27.000] 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 94 [16:03:28.000] 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 95 [16:03:29.000] DirectoryWatcher:: Close:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/main/tsconfig.json WatchType: Type roots -Info 96 [16:03:30.000] 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 97 [16:03:31.000] FileWatcher:: Close:: WatchInfo: /user/username/projects/myproject/main/main.ts 500 undefined WatchType: Closed Script info -Info 98 [16:03:32.000] FileWatcher:: Close:: WatchInfo: /user/username/projects/myproject/dependency/FnS.ts 500 undefined WatchType: Closed Script info -Info 99 [16:03:33.000] Project '/user/username/projects/myproject/random/tsconfig.json' (Configured) -Info 99 [16:03:34.000] Files (2) - -Info 99 [16:03:35.000] ----------------------------------------------- -Info 99 [16:03:36.000] Open files: -Info 99 [16:03:37.000] FileName: /user/username/projects/myproject/random/random.ts ProjectRootPath: undefined -Info 99 [16:03:38.000] Projects: /user/username/projects/myproject/random/tsconfig.json +Info 84 [00:03:18.000] ----------------------------------------------- +Info 85 [00:03:19.000] DirectoryWatcher:: Close:: WatchInfo: /user/username/projects/myproject/main 1 undefined Config: /user/username/projects/myproject/main/tsconfig.json WatchType: Wild card directory +Info 86 [00:03:20.000] 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 87 [00:03:21.000] FileWatcher:: Close:: WatchInfo: /user/username/projects/myproject/main/tsconfig.json 2000 undefined Project: /user/username/projects/myproject/main/tsconfig.json WatchType: Config file +Info 88 [00:03:22.000] DirectoryWatcher:: Close:: WatchInfo: /user/username/projects/myproject/dependency 1 undefined Config: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Wild card directory +Info 89 [00:03:23.000] 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 90 [00:03:24.000] FileWatcher:: Close:: WatchInfo: /user/username/projects/myproject/dependency/tsconfig.json 2000 undefined Project: /user/username/projects/myproject/main/tsconfig.json WatchType: Config file +Info 91 [00:03:25.000] DirectoryWatcher:: Close:: WatchInfo: /user/username/projects/myproject/decls 1 undefined Project: /user/username/projects/myproject/main/tsconfig.json WatchType: Failed Lookup Locations +Info 92 [00:03:26.000] 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 93 [00:03:27.000] 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 94 [00:03:28.000] 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 95 [00:03:29.000] DirectoryWatcher:: Close:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/main/tsconfig.json WatchType: Type roots +Info 96 [00:03:30.000] 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 97 [00:03:31.000] FileWatcher:: Close:: WatchInfo: /user/username/projects/myproject/main/main.ts 500 undefined WatchType: Closed Script info +Info 98 [00:03:32.000] FileWatcher:: Close:: WatchInfo: /user/username/projects/myproject/dependency/FnS.ts 500 undefined WatchType: Closed Script info +Info 99 [00:03:33.000] Project '/user/username/projects/myproject/random/tsconfig.json' (Configured) +Info 99 [00:03:34.000] Files (2) + +Info 99 [00:03:35.000] ----------------------------------------------- +Info 99 [00:03:36.000] Open files: +Info 99 [00:03:37.000] FileName: /user/username/projects/myproject/random/random.ts ProjectRootPath: undefined +Info 99 [00:03:38.000] Projects: /user/username/projects/myproject/random/tsconfig.json After request PolledWatches:: @@ -1566,7 +1566,7 @@ FsWatchesRecursive:: /user/username/projects/myproject/random: {} -Info 99 [16:03:39.000] response: +Info 99 [00:03:39.000] response: { "responseRequired": false } \ No newline at end of file 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 e090fa8886859..33e9329179bac 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 @@ -1,5 +1,5 @@ -Info 0 [16:01:01.000] Provided types map file "/a/lib/typesMap.json" doesn't exist -Info 1 [16:01:02.000] request: +Info 0 [00:01:01.000] Provided types map file "/a/lib/typesMap.json" doesn't exist +Info 1 [00:01:02.000] request: { "seq": 0, "type": "request", @@ -197,11 +197,11 @@ FsWatches:: FsWatchesRecursive:: -Info 2 [16:01:03.000] Search path: /user/username/projects/myproject/main -Info 3 [16:01:04.000] For info: /user/username/projects/myproject/main/main.ts :: Config file name: /user/username/projects/myproject/main/tsconfig.json -Info 4 [16:01:05.000] Creating configuration project /user/username/projects/myproject/main/tsconfig.json -Info 5 [16:01:06.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/main/tsconfig.json 2000 undefined Project: /user/username/projects/myproject/main/tsconfig.json WatchType: Config file -Info 6 [16:01:07.000] Config: /user/username/projects/myproject/main/tsconfig.json : { +Info 2 [00:01:03.000] Search path: /user/username/projects/myproject/main +Info 3 [00:01:04.000] For info: /user/username/projects/myproject/main/main.ts :: Config file name: /user/username/projects/myproject/main/tsconfig.json +Info 4 [00:01:05.000] Creating configuration project /user/username/projects/myproject/main/tsconfig.json +Info 5 [00:01:06.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/main/tsconfig.json 2000 undefined Project: /user/username/projects/myproject/main/tsconfig.json WatchType: Config file +Info 6 [00:01:07.000] Config: /user/username/projects/myproject/main/tsconfig.json : { "rootNames": [ "/user/username/projects/myproject/main/main.ts" ], @@ -217,11 +217,11 @@ Info 6 [16:01:07.000] Config: /user/username/projects/myproject/main/tsconfig } ] } -Info 7 [16:01:08.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/main 1 undefined Config: /user/username/projects/myproject/main/tsconfig.json WatchType: Wild card directory -Info 8 [16:01:09.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/main 1 undefined Config: /user/username/projects/myproject/main/tsconfig.json WatchType: Wild card directory -Info 9 [16:01:10.000] Plugins were requested but not running in environment that supports 'require'. Nothing will be loaded -Info 10 [16:01:11.000] Starting updateGraphWorker: Project: /user/username/projects/myproject/main/tsconfig.json -Info 11 [16:01:12.000] Config: /user/username/projects/myproject/dependency/tsconfig.json : { +Info 7 [00:01:08.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/main 1 undefined Config: /user/username/projects/myproject/main/tsconfig.json WatchType: Wild card directory +Info 8 [00:01:09.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/main 1 undefined Config: /user/username/projects/myproject/main/tsconfig.json WatchType: Wild card directory +Info 9 [00:01:10.000] Plugins were requested but not running in environment that supports 'require'. Nothing will be loaded +Info 10 [00:01:11.000] Starting updateGraphWorker: Project: /user/username/projects/myproject/main/tsconfig.json +Info 11 [00:01:12.000] Config: /user/username/projects/myproject/dependency/tsconfig.json : { "rootNames": [ "/user/username/projects/myproject/dependency/FnS.ts" ], @@ -232,20 +232,20 @@ Info 11 [16:01:12.000] Config: /user/username/projects/myproject/dependency/ts "configFilePath": "/user/username/projects/myproject/dependency/tsconfig.json" } } -Info 12 [16:01:13.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/dependency/tsconfig.json 2000 undefined Project: /user/username/projects/myproject/main/tsconfig.json WatchType: Config file -Info 13 [16:01:14.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/dependency 1 undefined Config: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Wild card directory -Info 14 [16:01:15.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/dependency 1 undefined Config: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Wild card directory -Info 15 [16:01:16.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/decls 1 undefined Project: /user/username/projects/myproject/main/tsconfig.json WatchType: Failed Lookup Locations -Info 16 [16:01:17.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/decls 1 undefined Project: /user/username/projects/myproject/main/tsconfig.json WatchType: Failed Lookup Locations -Info 17 [16:01:18.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/dependency/FnS.ts 500 undefined WatchType: Closed Script info -Info 18 [16:01:19.000] FileWatcher:: Added:: WatchInfo: /a/lib/lib.d.ts 500 undefined WatchType: Closed Script info -Info 19 [16:01:20.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/main/node_modules/@types 1 undefined Project: /user/username/projects/myproject/main/tsconfig.json WatchType: Type roots -Info 20 [16:01:21.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/main/node_modules/@types 1 undefined Project: /user/username/projects/myproject/main/tsconfig.json WatchType: Type roots -Info 21 [16:01:22.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/main/tsconfig.json WatchType: Type roots -Info 22 [16:01:23.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/main/tsconfig.json WatchType: Type roots -Info 23 [16:01:24.000] Finishing updateGraphWorker: Project: /user/username/projects/myproject/main/tsconfig.json Version: 1 structureChanged: true structureIsReused:: Not Elapsed:: *ms -Info 24 [16:01:25.000] Project '/user/username/projects/myproject/main/tsconfig.json' (Configured) -Info 25 [16:01:26.000] Files (3) +Info 12 [00:01:13.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/dependency/tsconfig.json 2000 undefined Project: /user/username/projects/myproject/main/tsconfig.json WatchType: Config file +Info 13 [00:01:14.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/dependency 1 undefined Config: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Wild card directory +Info 14 [00:01:15.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/dependency 1 undefined Config: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Wild card directory +Info 15 [00:01:16.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/decls 1 undefined Project: /user/username/projects/myproject/main/tsconfig.json WatchType: Failed Lookup Locations +Info 16 [00:01:17.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/decls 1 undefined Project: /user/username/projects/myproject/main/tsconfig.json WatchType: Failed Lookup Locations +Info 17 [00:01:18.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/dependency/FnS.ts 500 undefined WatchType: Closed Script info +Info 18 [00:01:19.000] FileWatcher:: Added:: WatchInfo: /a/lib/lib.d.ts 500 undefined WatchType: Closed Script info +Info 19 [00:01:20.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/main/node_modules/@types 1 undefined Project: /user/username/projects/myproject/main/tsconfig.json WatchType: Type roots +Info 20 [00:01:21.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/main/node_modules/@types 1 undefined Project: /user/username/projects/myproject/main/tsconfig.json WatchType: Type roots +Info 21 [00:01:22.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/main/tsconfig.json WatchType: Type roots +Info 22 [00:01:23.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/main/tsconfig.json WatchType: Type roots +Info 23 [00:01:24.000] Finishing updateGraphWorker: Project: /user/username/projects/myproject/main/tsconfig.json Version: 1 structureChanged: true structureIsReused:: Not Elapsed:: *ms +Info 24 [00:01:25.000] Project '/user/username/projects/myproject/main/tsconfig.json' (Configured) +Info 25 [00:01:26.000] Files (3) /a/lib/lib.d.ts /user/username/projects/myproject/dependency/FnS.ts /user/username/projects/myproject/main/main.ts @@ -258,16 +258,16 @@ Info 25 [16:01:26.000] Files (3) main.ts Matched by default include pattern '**/*' -Info 26 [16:01:27.000] ----------------------------------------------- -Info 27 [16:01:28.000] Search path: /user/username/projects/myproject/main -Info 28 [16:01:29.000] For info: /user/username/projects/myproject/main/tsconfig.json :: No config files found. -Info 29 [16:01:30.000] Project '/user/username/projects/myproject/main/tsconfig.json' (Configured) -Info 29 [16:01:31.000] Files (3) +Info 26 [00:01:27.000] ----------------------------------------------- +Info 27 [00:01:28.000] Search path: /user/username/projects/myproject/main +Info 28 [00:01:29.000] For info: /user/username/projects/myproject/main/tsconfig.json :: No config files found. +Info 29 [00:01:30.000] Project '/user/username/projects/myproject/main/tsconfig.json' (Configured) +Info 29 [00:01:31.000] Files (3) -Info 29 [16:01:32.000] ----------------------------------------------- -Info 29 [16:01:33.000] Open files: -Info 29 [16:01:34.000] FileName: /user/username/projects/myproject/main/main.ts ProjectRootPath: undefined -Info 29 [16:01:35.000] Projects: /user/username/projects/myproject/main/tsconfig.json +Info 29 [00:01:32.000] ----------------------------------------------- +Info 29 [00:01:33.000] Open files: +Info 29 [00:01:34.000] FileName: /user/username/projects/myproject/main/main.ts ProjectRootPath: undefined +Info 29 [00:01:35.000] Projects: /user/username/projects/myproject/main/tsconfig.json After request PolledWatches:: @@ -294,11 +294,11 @@ FsWatchesRecursive:: /user/username/projects/myproject/decls: {} -Info 29 [16:01:36.000] response: +Info 29 [00:01:36.000] response: { "responseRequired": false } -Info 30 [16:01:37.000] request: +Info 30 [00:01:37.000] request: { "seq": 0, "type": "request", @@ -333,11 +333,11 @@ FsWatchesRecursive:: /user/username/projects/myproject/decls: {} -Info 31 [16:01:38.000] Search path: /user/username/projects/myproject/random -Info 32 [16:01:39.000] For info: /user/username/projects/myproject/random/random.ts :: Config file name: /user/username/projects/myproject/random/tsconfig.json -Info 33 [16:01:40.000] Creating configuration project /user/username/projects/myproject/random/tsconfig.json -Info 34 [16:01:41.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/random/tsconfig.json 2000 undefined Project: /user/username/projects/myproject/random/tsconfig.json WatchType: Config file -Info 35 [16:01:42.000] Config: /user/username/projects/myproject/random/tsconfig.json : { +Info 31 [00:01:38.000] Search path: /user/username/projects/myproject/random +Info 32 [00:01:39.000] For info: /user/username/projects/myproject/random/random.ts :: Config file name: /user/username/projects/myproject/random/tsconfig.json +Info 33 [00:01:40.000] Creating configuration project /user/username/projects/myproject/random/tsconfig.json +Info 34 [00:01:41.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/random/tsconfig.json 2000 undefined Project: /user/username/projects/myproject/random/tsconfig.json WatchType: Config file +Info 35 [00:01:42.000] Config: /user/username/projects/myproject/random/tsconfig.json : { "rootNames": [ "/user/username/projects/myproject/random/random.ts" ], @@ -345,17 +345,17 @@ Info 35 [16:01:42.000] Config: /user/username/projects/myproject/random/tsconf "configFilePath": "/user/username/projects/myproject/random/tsconfig.json" } } -Info 36 [16:01:43.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/random 1 undefined Config: /user/username/projects/myproject/random/tsconfig.json WatchType: Wild card directory -Info 37 [16:01:44.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/random 1 undefined Config: /user/username/projects/myproject/random/tsconfig.json WatchType: Wild card directory -Info 38 [16:01:45.000] Plugins were requested but not running in environment that supports 'require'. Nothing will be loaded -Info 39 [16:01:46.000] Starting updateGraphWorker: Project: /user/username/projects/myproject/random/tsconfig.json -Info 40 [16:01:47.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/random/node_modules/@types 1 undefined Project: /user/username/projects/myproject/random/tsconfig.json WatchType: Type roots -Info 41 [16:01:48.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/random/node_modules/@types 1 undefined Project: /user/username/projects/myproject/random/tsconfig.json WatchType: Type roots -Info 42 [16:01:49.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/random/tsconfig.json WatchType: Type roots -Info 43 [16:01:50.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/random/tsconfig.json WatchType: Type roots -Info 44 [16:01:51.000] Finishing updateGraphWorker: Project: /user/username/projects/myproject/random/tsconfig.json Version: 1 structureChanged: true structureIsReused:: Not Elapsed:: *ms -Info 45 [16:01:52.000] Project '/user/username/projects/myproject/random/tsconfig.json' (Configured) -Info 46 [16:01:53.000] Files (2) +Info 36 [00:01:43.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/random 1 undefined Config: /user/username/projects/myproject/random/tsconfig.json WatchType: Wild card directory +Info 37 [00:01:44.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/random 1 undefined Config: /user/username/projects/myproject/random/tsconfig.json WatchType: Wild card directory +Info 38 [00:01:45.000] Plugins were requested but not running in environment that supports 'require'. Nothing will be loaded +Info 39 [00:01:46.000] Starting updateGraphWorker: Project: /user/username/projects/myproject/random/tsconfig.json +Info 40 [00:01:47.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/random/node_modules/@types 1 undefined Project: /user/username/projects/myproject/random/tsconfig.json WatchType: Type roots +Info 41 [00:01:48.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/random/node_modules/@types 1 undefined Project: /user/username/projects/myproject/random/tsconfig.json WatchType: Type roots +Info 42 [00:01:49.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/random/tsconfig.json WatchType: Type roots +Info 43 [00:01:50.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/random/tsconfig.json WatchType: Type roots +Info 44 [00:01:51.000] Finishing updateGraphWorker: Project: /user/username/projects/myproject/random/tsconfig.json Version: 1 structureChanged: true structureIsReused:: Not Elapsed:: *ms +Info 45 [00:01:52.000] Project '/user/username/projects/myproject/random/tsconfig.json' (Configured) +Info 46 [00:01:53.000] Files (2) /a/lib/lib.d.ts /user/username/projects/myproject/random/random.ts @@ -365,20 +365,20 @@ Info 46 [16:01:53.000] Files (2) random.ts Matched by default include pattern '**/*' -Info 47 [16:01:54.000] ----------------------------------------------- -Info 48 [16:01:55.000] Project '/user/username/projects/myproject/main/tsconfig.json' (Configured) -Info 48 [16:01:56.000] Files (3) +Info 47 [00:01:54.000] ----------------------------------------------- +Info 48 [00:01:55.000] Project '/user/username/projects/myproject/main/tsconfig.json' (Configured) +Info 48 [00:01:56.000] Files (3) -Info 48 [16:01:57.000] ----------------------------------------------- -Info 48 [16:01:58.000] Project '/user/username/projects/myproject/random/tsconfig.json' (Configured) -Info 48 [16:01:59.000] Files (2) +Info 48 [00:01:57.000] ----------------------------------------------- +Info 48 [00:01:58.000] Project '/user/username/projects/myproject/random/tsconfig.json' (Configured) +Info 48 [00:01:59.000] Files (2) -Info 48 [16:02:00.000] ----------------------------------------------- -Info 48 [16:02:01.000] Open files: -Info 48 [16:02:02.000] FileName: /user/username/projects/myproject/main/main.ts ProjectRootPath: undefined -Info 48 [16:02:03.000] Projects: /user/username/projects/myproject/main/tsconfig.json -Info 48 [16:02:04.000] FileName: /user/username/projects/myproject/random/random.ts ProjectRootPath: undefined -Info 48 [16:02:05.000] Projects: /user/username/projects/myproject/random/tsconfig.json +Info 48 [00:02:00.000] ----------------------------------------------- +Info 48 [00:02:01.000] Open files: +Info 48 [00:02:02.000] FileName: /user/username/projects/myproject/main/main.ts ProjectRootPath: undefined +Info 48 [00:02:03.000] Projects: /user/username/projects/myproject/main/tsconfig.json +Info 48 [00:02:04.000] FileName: /user/username/projects/myproject/random/random.ts ProjectRootPath: undefined +Info 48 [00:02:05.000] Projects: /user/username/projects/myproject/random/tsconfig.json After request PolledWatches:: @@ -411,11 +411,11 @@ FsWatchesRecursive:: /user/username/projects/myproject/random: {} -Info 48 [16:02:06.000] response: +Info 48 [00:02:06.000] response: { "responseRequired": false } -Info 49 [16:02:07.000] request: +Info 49 [00:02:07.000] request: { "command": "definitionAndBoundSpan", "arguments": { @@ -490,7 +490,7 @@ FsWatchesRecursive:: /user/username/projects/myproject/random: {} -Info 50 [16:02:08.000] response: +Info 50 [00:02:08.000] response: { "response": { "definitions": [ @@ -527,7 +527,7 @@ Info 50 [16:02:08.000] response: }, "responseRequired": true } -Info 51 [16:02:09.000] request: +Info 51 [00:02:09.000] request: { "command": "definitionAndBoundSpan", "arguments": { @@ -602,7 +602,7 @@ FsWatchesRecursive:: /user/username/projects/myproject/random: {} -Info 52 [16:02:10.000] response: +Info 52 [00:02:10.000] response: { "response": { "definitions": [ @@ -639,7 +639,7 @@ Info 52 [16:02:10.000] response: }, "responseRequired": true } -Info 53 [16:02:11.000] request: +Info 53 [00:02:11.000] request: { "command": "definitionAndBoundSpan", "arguments": { @@ -714,7 +714,7 @@ FsWatchesRecursive:: /user/username/projects/myproject/random: {} -Info 54 [16:02:12.000] response: +Info 54 [00:02:12.000] response: { "response": { "definitions": [ @@ -751,7 +751,7 @@ Info 54 [16:02:12.000] response: }, "responseRequired": true } -Info 55 [16:02:13.000] request: +Info 55 [00:02:13.000] request: { "command": "definitionAndBoundSpan", "arguments": { @@ -826,7 +826,7 @@ FsWatchesRecursive:: /user/username/projects/myproject/random: {} -Info 56 [16:02:14.000] response: +Info 56 [00:02:14.000] response: { "response": { "definitions": [ @@ -863,7 +863,7 @@ Info 56 [16:02:14.000] response: }, "responseRequired": true } -Info 57 [16:02:15.000] request: +Info 57 [00:02:15.000] request: { "command": "definitionAndBoundSpan", "arguments": { @@ -938,7 +938,7 @@ FsWatchesRecursive:: /user/username/projects/myproject/random: {} -Info 58 [16:02:16.000] response: +Info 58 [00:02:16.000] response: { "response": { "definitions": [ @@ -975,7 +975,7 @@ Info 58 [16:02:16.000] response: }, "responseRequired": true } -Info 59 [16:02:17.000] request: +Info 59 [00:02:17.000] request: { "seq": 0, "type": "request", @@ -1016,18 +1016,18 @@ FsWatchesRecursive:: /user/username/projects/myproject/random: {} -Info 60 [16:02:18.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/random/random.ts 500 undefined WatchType: Closed Script info -Info 61 [16:02:19.000] Project '/user/username/projects/myproject/main/tsconfig.json' (Configured) -Info 61 [16:02:20.000] Files (3) +Info 60 [00:02:18.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/random/random.ts 500 undefined WatchType: Closed Script info +Info 61 [00:02:19.000] Project '/user/username/projects/myproject/main/tsconfig.json' (Configured) +Info 61 [00:02:20.000] Files (3) -Info 61 [16:02:21.000] ----------------------------------------------- -Info 61 [16:02:22.000] Project '/user/username/projects/myproject/random/tsconfig.json' (Configured) -Info 61 [16:02:23.000] Files (2) +Info 61 [00:02:21.000] ----------------------------------------------- +Info 61 [00:02:22.000] Project '/user/username/projects/myproject/random/tsconfig.json' (Configured) +Info 61 [00:02:23.000] Files (2) -Info 61 [16:02:24.000] ----------------------------------------------- -Info 61 [16:02:25.000] Open files: -Info 61 [16:02:26.000] FileName: /user/username/projects/myproject/main/main.ts ProjectRootPath: undefined -Info 61 [16:02:27.000] Projects: /user/username/projects/myproject/main/tsconfig.json +Info 61 [00:02:24.000] ----------------------------------------------- +Info 61 [00:02:25.000] Open files: +Info 61 [00:02:26.000] FileName: /user/username/projects/myproject/main/main.ts ProjectRootPath: undefined +Info 61 [00:02:27.000] Projects: /user/username/projects/myproject/main/tsconfig.json After request PolledWatches:: @@ -1062,11 +1062,11 @@ FsWatchesRecursive:: /user/username/projects/myproject/random: {} -Info 61 [16:02:28.000] response: +Info 61 [00:02:28.000] response: { "responseRequired": false } -Info 62 [16:02:29.000] request: +Info 62 [00:02:29.000] request: { "seq": 0, "type": "request", @@ -1109,22 +1109,22 @@ FsWatchesRecursive:: /user/username/projects/myproject/random: {} -Info 63 [16:02:30.000] FileWatcher:: Close:: WatchInfo: /user/username/projects/myproject/random/random.ts 500 undefined WatchType: Closed Script info -Info 64 [16:02:31.000] Search path: /user/username/projects/myproject/random -Info 65 [16:02:32.000] For info: /user/username/projects/myproject/random/random.ts :: Config file name: /user/username/projects/myproject/random/tsconfig.json -Info 66 [16:02:33.000] Project '/user/username/projects/myproject/main/tsconfig.json' (Configured) -Info 66 [16:02:34.000] Files (3) +Info 63 [00:02:30.000] FileWatcher:: Close:: WatchInfo: /user/username/projects/myproject/random/random.ts 500 undefined WatchType: Closed Script info +Info 64 [00:02:31.000] Search path: /user/username/projects/myproject/random +Info 65 [00:02:32.000] For info: /user/username/projects/myproject/random/random.ts :: Config file name: /user/username/projects/myproject/random/tsconfig.json +Info 66 [00:02:33.000] Project '/user/username/projects/myproject/main/tsconfig.json' (Configured) +Info 66 [00:02:34.000] Files (3) -Info 66 [16:02:35.000] ----------------------------------------------- -Info 66 [16:02:36.000] Project '/user/username/projects/myproject/random/tsconfig.json' (Configured) -Info 66 [16:02:37.000] Files (2) +Info 66 [00:02:35.000] ----------------------------------------------- +Info 66 [00:02:36.000] Project '/user/username/projects/myproject/random/tsconfig.json' (Configured) +Info 66 [00:02:37.000] Files (2) -Info 66 [16:02:38.000] ----------------------------------------------- -Info 66 [16:02:39.000] Open files: -Info 66 [16:02:40.000] FileName: /user/username/projects/myproject/main/main.ts ProjectRootPath: undefined -Info 66 [16:02:41.000] Projects: /user/username/projects/myproject/main/tsconfig.json -Info 66 [16:02:42.000] FileName: /user/username/projects/myproject/random/random.ts ProjectRootPath: undefined -Info 66 [16:02:43.000] Projects: /user/username/projects/myproject/random/tsconfig.json +Info 66 [00:02:38.000] ----------------------------------------------- +Info 66 [00:02:39.000] Open files: +Info 66 [00:02:40.000] FileName: /user/username/projects/myproject/main/main.ts ProjectRootPath: undefined +Info 66 [00:02:41.000] Projects: /user/username/projects/myproject/main/tsconfig.json +Info 66 [00:02:42.000] FileName: /user/username/projects/myproject/random/random.ts ProjectRootPath: undefined +Info 66 [00:02:43.000] Projects: /user/username/projects/myproject/random/tsconfig.json After request PolledWatches:: @@ -1157,11 +1157,11 @@ FsWatchesRecursive:: /user/username/projects/myproject/random: {} -Info 66 [16:02:44.000] response: +Info 66 [00:02:44.000] response: { "responseRequired": false } -Info 67 [16:02:45.000] request: +Info 67 [00:02:45.000] request: { "seq": 0, "type": "request", @@ -1202,18 +1202,18 @@ FsWatchesRecursive:: /user/username/projects/myproject/random: {} -Info 68 [16:02:46.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/main/main.ts 500 undefined WatchType: Closed Script info -Info 69 [16:02:47.000] Project '/user/username/projects/myproject/main/tsconfig.json' (Configured) -Info 69 [16:02:48.000] Files (3) +Info 68 [00:02:46.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/main/main.ts 500 undefined WatchType: Closed Script info +Info 69 [00:02:47.000] Project '/user/username/projects/myproject/main/tsconfig.json' (Configured) +Info 69 [00:02:48.000] Files (3) -Info 69 [16:02:49.000] ----------------------------------------------- -Info 69 [16:02:50.000] Project '/user/username/projects/myproject/random/tsconfig.json' (Configured) -Info 69 [16:02:51.000] Files (2) +Info 69 [00:02:49.000] ----------------------------------------------- +Info 69 [00:02:50.000] Project '/user/username/projects/myproject/random/tsconfig.json' (Configured) +Info 69 [00:02:51.000] Files (2) -Info 69 [16:02:52.000] ----------------------------------------------- -Info 69 [16:02:53.000] Open files: -Info 69 [16:02:54.000] FileName: /user/username/projects/myproject/random/random.ts ProjectRootPath: undefined -Info 69 [16:02:55.000] Projects: /user/username/projects/myproject/random/tsconfig.json +Info 69 [00:02:52.000] ----------------------------------------------- +Info 69 [00:02:53.000] Open files: +Info 69 [00:02:54.000] FileName: /user/username/projects/myproject/random/random.ts ProjectRootPath: undefined +Info 69 [00:02:55.000] Projects: /user/username/projects/myproject/random/tsconfig.json After request PolledWatches:: @@ -1248,11 +1248,11 @@ FsWatchesRecursive:: /user/username/projects/myproject/random: {} -Info 69 [16:02:56.000] response: +Info 69 [00:02:56.000] response: { "responseRequired": false } -Info 70 [16:02:57.000] request: +Info 70 [00:02:57.000] request: { "seq": 0, "type": "request", @@ -1295,16 +1295,16 @@ FsWatchesRecursive:: /user/username/projects/myproject/random: {} -Info 71 [16:02:58.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/random/random.ts 500 undefined WatchType: Closed Script info -Info 72 [16:02:59.000] Project '/user/username/projects/myproject/main/tsconfig.json' (Configured) -Info 72 [16:03:00.000] Files (3) +Info 71 [00:02:58.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/random/random.ts 500 undefined WatchType: Closed Script info +Info 72 [00:02:59.000] Project '/user/username/projects/myproject/main/tsconfig.json' (Configured) +Info 72 [00:03:00.000] Files (3) -Info 72 [16:03:01.000] ----------------------------------------------- -Info 72 [16:03:02.000] Project '/user/username/projects/myproject/random/tsconfig.json' (Configured) -Info 72 [16:03:03.000] Files (2) +Info 72 [00:03:01.000] ----------------------------------------------- +Info 72 [00:03:02.000] Project '/user/username/projects/myproject/random/tsconfig.json' (Configured) +Info 72 [00:03:03.000] Files (2) -Info 72 [16:03:04.000] ----------------------------------------------- -Info 72 [16:03:05.000] Open files: +Info 72 [00:03:04.000] ----------------------------------------------- +Info 72 [00:03:05.000] Open files: After request PolledWatches:: @@ -1341,11 +1341,11 @@ FsWatchesRecursive:: /user/username/projects/myproject/random: {} -Info 72 [16:03:06.000] response: +Info 72 [00:03:06.000] response: { "responseRequired": false } -Info 73 [16:03:07.000] request: +Info 73 [00:03:07.000] request: { "seq": 0, "type": "request", @@ -1390,12 +1390,12 @@ FsWatchesRecursive:: /user/username/projects/myproject/random: {} -Info 74 [16:03:08.000] FileWatcher:: Close:: WatchInfo: /user/username/projects/myproject/random/random.ts 500 undefined WatchType: Closed Script info -Info 75 [16:03:09.000] Search path: /user/username/projects/myproject/random -Info 76 [16:03:10.000] For info: /user/username/projects/myproject/random/random.ts :: Config file name: /user/username/projects/myproject/random/tsconfig.json -Info 77 [16:03:11.000] `remove Project:: -Info 78 [16:03:12.000] Project '/user/username/projects/myproject/main/tsconfig.json' (Configured) -Info 79 [16:03:13.000] Files (3) +Info 74 [00:03:08.000] FileWatcher:: Close:: WatchInfo: /user/username/projects/myproject/random/random.ts 500 undefined WatchType: Closed Script info +Info 75 [00:03:09.000] Search path: /user/username/projects/myproject/random +Info 76 [00:03:10.000] For info: /user/username/projects/myproject/random/random.ts :: Config file name: /user/username/projects/myproject/random/tsconfig.json +Info 77 [00:03:11.000] `remove Project:: +Info 78 [00:03:12.000] Project '/user/username/projects/myproject/main/tsconfig.json' (Configured) +Info 79 [00:03:13.000] Files (3) /a/lib/lib.d.ts /user/username/projects/myproject/dependency/FnS.ts /user/username/projects/myproject/main/main.ts @@ -1408,28 +1408,28 @@ Info 79 [16:03:13.000] Files (3) main.ts Matched by default include pattern '**/*' -Info 80 [16:03:14.000] ----------------------------------------------- -Info 81 [16:03:15.000] DirectoryWatcher:: Close:: WatchInfo: /user/username/projects/myproject/main 1 undefined Config: /user/username/projects/myproject/main/tsconfig.json WatchType: Wild card directory -Info 82 [16:03:16.000] 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 83 [16:03:17.000] FileWatcher:: Close:: WatchInfo: /user/username/projects/myproject/main/tsconfig.json 2000 undefined Project: /user/username/projects/myproject/main/tsconfig.json WatchType: Config file -Info 84 [16:03:18.000] DirectoryWatcher:: Close:: WatchInfo: /user/username/projects/myproject/dependency 1 undefined Config: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Wild card directory -Info 85 [16:03:19.000] 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 86 [16:03:20.000] FileWatcher:: Close:: WatchInfo: /user/username/projects/myproject/dependency/tsconfig.json 2000 undefined Project: /user/username/projects/myproject/main/tsconfig.json WatchType: Config file -Info 87 [16:03:21.000] DirectoryWatcher:: Close:: WatchInfo: /user/username/projects/myproject/decls 1 undefined Project: /user/username/projects/myproject/main/tsconfig.json WatchType: Failed Lookup Locations -Info 88 [16:03:22.000] 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 89 [16:03:23.000] 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 90 [16:03:24.000] 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 91 [16:03:25.000] DirectoryWatcher:: Close:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/main/tsconfig.json WatchType: Type roots -Info 92 [16:03:26.000] 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 93 [16:03:27.000] FileWatcher:: Close:: WatchInfo: /user/username/projects/myproject/main/main.ts 500 undefined WatchType: Closed Script info -Info 94 [16:03:28.000] FileWatcher:: Close:: WatchInfo: /user/username/projects/myproject/dependency/FnS.ts 500 undefined WatchType: Closed Script info -Info 95 [16:03:29.000] Project '/user/username/projects/myproject/random/tsconfig.json' (Configured) -Info 95 [16:03:30.000] Files (2) - -Info 95 [16:03:31.000] ----------------------------------------------- -Info 95 [16:03:32.000] Open files: -Info 95 [16:03:33.000] FileName: /user/username/projects/myproject/random/random.ts ProjectRootPath: undefined -Info 95 [16:03:34.000] Projects: /user/username/projects/myproject/random/tsconfig.json +Info 80 [00:03:14.000] ----------------------------------------------- +Info 81 [00:03:15.000] DirectoryWatcher:: Close:: WatchInfo: /user/username/projects/myproject/main 1 undefined Config: /user/username/projects/myproject/main/tsconfig.json WatchType: Wild card directory +Info 82 [00:03:16.000] 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 83 [00:03:17.000] FileWatcher:: Close:: WatchInfo: /user/username/projects/myproject/main/tsconfig.json 2000 undefined Project: /user/username/projects/myproject/main/tsconfig.json WatchType: Config file +Info 84 [00:03:18.000] DirectoryWatcher:: Close:: WatchInfo: /user/username/projects/myproject/dependency 1 undefined Config: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Wild card directory +Info 85 [00:03:19.000] 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 86 [00:03:20.000] FileWatcher:: Close:: WatchInfo: /user/username/projects/myproject/dependency/tsconfig.json 2000 undefined Project: /user/username/projects/myproject/main/tsconfig.json WatchType: Config file +Info 87 [00:03:21.000] DirectoryWatcher:: Close:: WatchInfo: /user/username/projects/myproject/decls 1 undefined Project: /user/username/projects/myproject/main/tsconfig.json WatchType: Failed Lookup Locations +Info 88 [00:03:22.000] 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 89 [00:03:23.000] 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 90 [00:03:24.000] 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 91 [00:03:25.000] DirectoryWatcher:: Close:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/main/tsconfig.json WatchType: Type roots +Info 92 [00:03:26.000] 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 93 [00:03:27.000] FileWatcher:: Close:: WatchInfo: /user/username/projects/myproject/main/main.ts 500 undefined WatchType: Closed Script info +Info 94 [00:03:28.000] FileWatcher:: Close:: WatchInfo: /user/username/projects/myproject/dependency/FnS.ts 500 undefined WatchType: Closed Script info +Info 95 [00:03:29.000] Project '/user/username/projects/myproject/random/tsconfig.json' (Configured) +Info 95 [00:03:30.000] Files (2) + +Info 95 [00:03:31.000] ----------------------------------------------- +Info 95 [00:03:32.000] Open files: +Info 95 [00:03:33.000] FileName: /user/username/projects/myproject/random/random.ts ProjectRootPath: undefined +Info 95 [00:03:34.000] Projects: /user/username/projects/myproject/random/tsconfig.json After request PolledWatches:: @@ -1448,7 +1448,7 @@ FsWatchesRecursive:: /user/username/projects/myproject/random: {} -Info 95 [16:03:35.000] response: +Info 95 [00:03:35.000] response: { "responseRequired": false } \ No newline at end of file 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 fc4fc71be2606..d76bb44e6ac96 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 @@ -1,5 +1,5 @@ -Info 0 [16:01:00.000] Provided types map file "/a/lib/typesMap.json" doesn't exist -Info 1 [16:01:01.000] request: +Info 0 [00:01:00.000] Provided types map file "/a/lib/typesMap.json" doesn't exist +Info 1 [00:01:01.000] request: { "seq": 0, "type": "request", @@ -200,11 +200,11 @@ FsWatches:: FsWatchesRecursive:: -Info 2 [16:01:02.000] Search path: /user/username/projects/myproject/main -Info 3 [16:01:03.000] For info: /user/username/projects/myproject/main/main.ts :: Config file name: /user/username/projects/myproject/main/tsconfig.json -Info 4 [16:01:04.000] Creating configuration project /user/username/projects/myproject/main/tsconfig.json -Info 5 [16:01:05.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/main/tsconfig.json 2000 undefined Project: /user/username/projects/myproject/main/tsconfig.json WatchType: Config file -Info 6 [16:01:06.000] Config: /user/username/projects/myproject/main/tsconfig.json : { +Info 2 [00:01:02.000] Search path: /user/username/projects/myproject/main +Info 3 [00:01:03.000] For info: /user/username/projects/myproject/main/main.ts :: Config file name: /user/username/projects/myproject/main/tsconfig.json +Info 4 [00:01:04.000] Creating configuration project /user/username/projects/myproject/main/tsconfig.json +Info 5 [00:01:05.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/main/tsconfig.json 2000 undefined Project: /user/username/projects/myproject/main/tsconfig.json WatchType: Config file +Info 6 [00:01:06.000] Config: /user/username/projects/myproject/main/tsconfig.json : { "rootNames": [ "/user/username/projects/myproject/main/main.ts" ], @@ -220,11 +220,11 @@ Info 6 [16:01:06.000] Config: /user/username/projects/myproject/main/tsconfig } ] } -Info 7 [16:01:07.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/main 1 undefined Config: /user/username/projects/myproject/main/tsconfig.json WatchType: Wild card directory -Info 8 [16:01:08.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/main 1 undefined Config: /user/username/projects/myproject/main/tsconfig.json WatchType: Wild card directory -Info 9 [16:01:09.000] Plugins were requested but not running in environment that supports 'require'. Nothing will be loaded -Info 10 [16:01:10.000] Starting updateGraphWorker: Project: /user/username/projects/myproject/main/tsconfig.json -Info 11 [16:01:11.000] Config: /user/username/projects/myproject/dependency/tsconfig.json : { +Info 7 [00:01:07.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/main 1 undefined Config: /user/username/projects/myproject/main/tsconfig.json WatchType: Wild card directory +Info 8 [00:01:08.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/main 1 undefined Config: /user/username/projects/myproject/main/tsconfig.json WatchType: Wild card directory +Info 9 [00:01:09.000] Plugins were requested but not running in environment that supports 'require'. Nothing will be loaded +Info 10 [00:01:10.000] Starting updateGraphWorker: Project: /user/username/projects/myproject/main/tsconfig.json +Info 11 [00:01:11.000] Config: /user/username/projects/myproject/dependency/tsconfig.json : { "rootNames": [ "/user/username/projects/myproject/dependency/FnS.ts" ], @@ -235,20 +235,20 @@ Info 11 [16:01:11.000] Config: /user/username/projects/myproject/dependency/ts "configFilePath": "/user/username/projects/myproject/dependency/tsconfig.json" } } -Info 12 [16:01:12.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/dependency/tsconfig.json 2000 undefined Project: /user/username/projects/myproject/main/tsconfig.json WatchType: Config file -Info 13 [16:01:13.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/dependency 1 undefined Config: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Wild card directory -Info 14 [16:01:14.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/dependency 1 undefined Config: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Wild card directory -Info 15 [16:01:15.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/decls 1 undefined Project: /user/username/projects/myproject/main/tsconfig.json WatchType: Failed Lookup Locations -Info 16 [16:01:16.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/decls 1 undefined Project: /user/username/projects/myproject/main/tsconfig.json WatchType: Failed Lookup Locations -Info 17 [16:01:17.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/dependency/FnS.ts 500 undefined WatchType: Closed Script info -Info 18 [16:01:18.000] FileWatcher:: Added:: WatchInfo: /a/lib/lib.d.ts 500 undefined WatchType: Closed Script info -Info 19 [16:01:19.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/main/node_modules/@types 1 undefined Project: /user/username/projects/myproject/main/tsconfig.json WatchType: Type roots -Info 20 [16:01:20.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/main/node_modules/@types 1 undefined Project: /user/username/projects/myproject/main/tsconfig.json WatchType: Type roots -Info 21 [16:01:21.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/main/tsconfig.json WatchType: Type roots -Info 22 [16:01:22.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/main/tsconfig.json WatchType: Type roots -Info 23 [16:01:23.000] Finishing updateGraphWorker: Project: /user/username/projects/myproject/main/tsconfig.json Version: 1 structureChanged: true structureIsReused:: Not Elapsed:: *ms -Info 24 [16:01:24.000] Project '/user/username/projects/myproject/main/tsconfig.json' (Configured) -Info 25 [16:01:25.000] Files (3) +Info 12 [00:01:12.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/dependency/tsconfig.json 2000 undefined Project: /user/username/projects/myproject/main/tsconfig.json WatchType: Config file +Info 13 [00:01:13.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/dependency 1 undefined Config: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Wild card directory +Info 14 [00:01:14.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/dependency 1 undefined Config: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Wild card directory +Info 15 [00:01:15.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/decls 1 undefined Project: /user/username/projects/myproject/main/tsconfig.json WatchType: Failed Lookup Locations +Info 16 [00:01:16.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/decls 1 undefined Project: /user/username/projects/myproject/main/tsconfig.json WatchType: Failed Lookup Locations +Info 17 [00:01:17.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/dependency/FnS.ts 500 undefined WatchType: Closed Script info +Info 18 [00:01:18.000] FileWatcher:: Added:: WatchInfo: /a/lib/lib.d.ts 500 undefined WatchType: Closed Script info +Info 19 [00:01:19.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/main/node_modules/@types 1 undefined Project: /user/username/projects/myproject/main/tsconfig.json WatchType: Type roots +Info 20 [00:01:20.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/main/node_modules/@types 1 undefined Project: /user/username/projects/myproject/main/tsconfig.json WatchType: Type roots +Info 21 [00:01:21.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/main/tsconfig.json WatchType: Type roots +Info 22 [00:01:22.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/main/tsconfig.json WatchType: Type roots +Info 23 [00:01:23.000] Finishing updateGraphWorker: Project: /user/username/projects/myproject/main/tsconfig.json Version: 1 structureChanged: true structureIsReused:: Not Elapsed:: *ms +Info 24 [00:01:24.000] Project '/user/username/projects/myproject/main/tsconfig.json' (Configured) +Info 25 [00:01:25.000] Files (3) /a/lib/lib.d.ts /user/username/projects/myproject/dependency/FnS.ts /user/username/projects/myproject/main/main.ts @@ -261,16 +261,16 @@ Info 25 [16:01:25.000] Files (3) main.ts Matched by default include pattern '**/*' -Info 26 [16:01:26.000] ----------------------------------------------- -Info 27 [16:01:27.000] Search path: /user/username/projects/myproject/main -Info 28 [16:01:28.000] For info: /user/username/projects/myproject/main/tsconfig.json :: No config files found. -Info 29 [16:01:29.000] Project '/user/username/projects/myproject/main/tsconfig.json' (Configured) -Info 29 [16:01:30.000] Files (3) +Info 26 [00:01:26.000] ----------------------------------------------- +Info 27 [00:01:27.000] Search path: /user/username/projects/myproject/main +Info 28 [00:01:28.000] For info: /user/username/projects/myproject/main/tsconfig.json :: No config files found. +Info 29 [00:01:29.000] Project '/user/username/projects/myproject/main/tsconfig.json' (Configured) +Info 29 [00:01:30.000] Files (3) -Info 29 [16:01:31.000] ----------------------------------------------- -Info 29 [16:01:32.000] Open files: -Info 29 [16:01:33.000] FileName: /user/username/projects/myproject/main/main.ts ProjectRootPath: undefined -Info 29 [16:01:34.000] Projects: /user/username/projects/myproject/main/tsconfig.json +Info 29 [00:01:31.000] ----------------------------------------------- +Info 29 [00:01:32.000] Open files: +Info 29 [00:01:33.000] FileName: /user/username/projects/myproject/main/main.ts ProjectRootPath: undefined +Info 29 [00:01:34.000] Projects: /user/username/projects/myproject/main/tsconfig.json After request PolledWatches:: @@ -297,11 +297,11 @@ FsWatchesRecursive:: /user/username/projects/myproject/decls: {} -Info 29 [16:01:35.000] response: +Info 29 [00:01:35.000] response: { "responseRequired": false } -Info 30 [16:01:36.000] request: +Info 30 [00:01:36.000] request: { "seq": 0, "type": "request", @@ -336,11 +336,11 @@ FsWatchesRecursive:: /user/username/projects/myproject/decls: {} -Info 31 [16:01:37.000] Search path: /user/username/projects/myproject/random -Info 32 [16:01:38.000] For info: /user/username/projects/myproject/random/random.ts :: Config file name: /user/username/projects/myproject/random/tsconfig.json -Info 33 [16:01:39.000] Creating configuration project /user/username/projects/myproject/random/tsconfig.json -Info 34 [16:01:40.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/random/tsconfig.json 2000 undefined Project: /user/username/projects/myproject/random/tsconfig.json WatchType: Config file -Info 35 [16:01:41.000] Config: /user/username/projects/myproject/random/tsconfig.json : { +Info 31 [00:01:37.000] Search path: /user/username/projects/myproject/random +Info 32 [00:01:38.000] For info: /user/username/projects/myproject/random/random.ts :: Config file name: /user/username/projects/myproject/random/tsconfig.json +Info 33 [00:01:39.000] Creating configuration project /user/username/projects/myproject/random/tsconfig.json +Info 34 [00:01:40.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/random/tsconfig.json 2000 undefined Project: /user/username/projects/myproject/random/tsconfig.json WatchType: Config file +Info 35 [00:01:41.000] Config: /user/username/projects/myproject/random/tsconfig.json : { "rootNames": [ "/user/username/projects/myproject/random/random.ts" ], @@ -348,17 +348,17 @@ Info 35 [16:01:41.000] Config: /user/username/projects/myproject/random/tsconf "configFilePath": "/user/username/projects/myproject/random/tsconfig.json" } } -Info 36 [16:01:42.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/random 1 undefined Config: /user/username/projects/myproject/random/tsconfig.json WatchType: Wild card directory -Info 37 [16:01:43.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/random 1 undefined Config: /user/username/projects/myproject/random/tsconfig.json WatchType: Wild card directory -Info 38 [16:01:44.000] Plugins were requested but not running in environment that supports 'require'. Nothing will be loaded -Info 39 [16:01:45.000] Starting updateGraphWorker: Project: /user/username/projects/myproject/random/tsconfig.json -Info 40 [16:01:46.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/random/node_modules/@types 1 undefined Project: /user/username/projects/myproject/random/tsconfig.json WatchType: Type roots -Info 41 [16:01:47.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/random/node_modules/@types 1 undefined Project: /user/username/projects/myproject/random/tsconfig.json WatchType: Type roots -Info 42 [16:01:48.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/random/tsconfig.json WatchType: Type roots -Info 43 [16:01:49.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/random/tsconfig.json WatchType: Type roots -Info 44 [16:01:50.000] Finishing updateGraphWorker: Project: /user/username/projects/myproject/random/tsconfig.json Version: 1 structureChanged: true structureIsReused:: Not Elapsed:: *ms -Info 45 [16:01:51.000] Project '/user/username/projects/myproject/random/tsconfig.json' (Configured) -Info 46 [16:01:52.000] Files (2) +Info 36 [00:01:42.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/random 1 undefined Config: /user/username/projects/myproject/random/tsconfig.json WatchType: Wild card directory +Info 37 [00:01:43.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/random 1 undefined Config: /user/username/projects/myproject/random/tsconfig.json WatchType: Wild card directory +Info 38 [00:01:44.000] Plugins were requested but not running in environment that supports 'require'. Nothing will be loaded +Info 39 [00:01:45.000] Starting updateGraphWorker: Project: /user/username/projects/myproject/random/tsconfig.json +Info 40 [00:01:46.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/random/node_modules/@types 1 undefined Project: /user/username/projects/myproject/random/tsconfig.json WatchType: Type roots +Info 41 [00:01:47.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/random/node_modules/@types 1 undefined Project: /user/username/projects/myproject/random/tsconfig.json WatchType: Type roots +Info 42 [00:01:48.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/random/tsconfig.json WatchType: Type roots +Info 43 [00:01:49.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/random/tsconfig.json WatchType: Type roots +Info 44 [00:01:50.000] Finishing updateGraphWorker: Project: /user/username/projects/myproject/random/tsconfig.json Version: 1 structureChanged: true structureIsReused:: Not Elapsed:: *ms +Info 45 [00:01:51.000] Project '/user/username/projects/myproject/random/tsconfig.json' (Configured) +Info 46 [00:01:52.000] Files (2) /a/lib/lib.d.ts /user/username/projects/myproject/random/random.ts @@ -368,20 +368,20 @@ Info 46 [16:01:52.000] Files (2) random.ts Matched by default include pattern '**/*' -Info 47 [16:01:53.000] ----------------------------------------------- -Info 48 [16:01:54.000] Project '/user/username/projects/myproject/main/tsconfig.json' (Configured) -Info 48 [16:01:55.000] Files (3) +Info 47 [00:01:53.000] ----------------------------------------------- +Info 48 [00:01:54.000] Project '/user/username/projects/myproject/main/tsconfig.json' (Configured) +Info 48 [00:01:55.000] Files (3) -Info 48 [16:01:56.000] ----------------------------------------------- -Info 48 [16:01:57.000] Project '/user/username/projects/myproject/random/tsconfig.json' (Configured) -Info 48 [16:01:58.000] Files (2) +Info 48 [00:01:56.000] ----------------------------------------------- +Info 48 [00:01:57.000] Project '/user/username/projects/myproject/random/tsconfig.json' (Configured) +Info 48 [00:01:58.000] Files (2) -Info 48 [16:01:59.000] ----------------------------------------------- -Info 48 [16:02:00.000] Open files: -Info 48 [16:02:01.000] FileName: /user/username/projects/myproject/main/main.ts ProjectRootPath: undefined -Info 48 [16:02:02.000] Projects: /user/username/projects/myproject/main/tsconfig.json -Info 48 [16:02:03.000] FileName: /user/username/projects/myproject/random/random.ts ProjectRootPath: undefined -Info 48 [16:02:04.000] Projects: /user/username/projects/myproject/random/tsconfig.json +Info 48 [00:01:59.000] ----------------------------------------------- +Info 48 [00:02:00.000] Open files: +Info 48 [00:02:01.000] FileName: /user/username/projects/myproject/main/main.ts ProjectRootPath: undefined +Info 48 [00:02:02.000] Projects: /user/username/projects/myproject/main/tsconfig.json +Info 48 [00:02:03.000] FileName: /user/username/projects/myproject/random/random.ts ProjectRootPath: undefined +Info 48 [00:02:04.000] Projects: /user/username/projects/myproject/random/tsconfig.json After request PolledWatches:: @@ -414,11 +414,11 @@ FsWatchesRecursive:: /user/username/projects/myproject/random: {} -Info 48 [16:02:05.000] response: +Info 48 [00:02:05.000] response: { "responseRequired": false } -Info 49 [16:02:06.000] request: +Info 49 [00:02:06.000] request: { "command": "definitionAndBoundSpan", "arguments": { @@ -493,7 +493,7 @@ FsWatchesRecursive:: /user/username/projects/myproject/random: {} -Info 50 [16:02:07.000] response: +Info 50 [00:02:07.000] response: { "response": { "definitions": [ @@ -530,10 +530,10 @@ Info 50 [16:02:07.000] response: }, "responseRequired": true } -Info 51 [16:02:11.000] FileWatcher:: Triggered with /user/username/projects/myproject/dependency/FnS.ts 1:: WatchInfo: /user/username/projects/myproject/dependency/FnS.ts 500 undefined WatchType: Closed Script info -Info 52 [16:02:12.000] Scheduled: /user/username/projects/myproject/main/tsconfig.json -Info 53 [16:02:13.000] Scheduled: *ensureProjectForOpenFiles* -Info 54 [16:02:14.000] Elapsed:: *ms FileWatcher:: Triggered with /user/username/projects/myproject/dependency/FnS.ts 1:: WatchInfo: /user/username/projects/myproject/dependency/FnS.ts 500 undefined WatchType: Closed Script info +Info 51 [00:02:11.000] FileWatcher:: Triggered with /user/username/projects/myproject/dependency/FnS.ts 1:: WatchInfo: /user/username/projects/myproject/dependency/FnS.ts 500 undefined WatchType: Closed Script info +Info 52 [00:02:12.000] Scheduled: /user/username/projects/myproject/main/tsconfig.json +Info 53 [00:02:13.000] Scheduled: *ensureProjectForOpenFiles* +Info 54 [00:02:14.000] Elapsed:: *ms FileWatcher:: Triggered with /user/username/projects/myproject/dependency/FnS.ts 1:: WatchInfo: /user/username/projects/myproject/dependency/FnS.ts 500 undefined WatchType: Closed Script info Before running timeout callbacks //// [/user/username/projects/myproject/dependency/FnS.ts] function fooBar() { } @@ -575,39 +575,39 @@ FsWatchesRecursive:: /user/username/projects/myproject/random: {} -Info 55 [16:02:15.000] Running: /user/username/projects/myproject/main/tsconfig.json -Info 56 [16:02:16.000] Starting updateGraphWorker: Project: /user/username/projects/myproject/main/tsconfig.json -Info 57 [16:02:17.000] Finishing updateGraphWorker: Project: /user/username/projects/myproject/main/tsconfig.json Version: 2 structureChanged: false structureIsReused:: Completely Elapsed:: *ms -Info 58 [16:02:18.000] Different program with same set of files -Info 59 [16:02:19.000] Running: *ensureProjectForOpenFiles* -Info 60 [16:02:20.000] Before ensureProjectForOpenFiles: -Info 61 [16:02:21.000] Project '/user/username/projects/myproject/main/tsconfig.json' (Configured) -Info 61 [16:02:22.000] Files (3) - -Info 61 [16:02:23.000] ----------------------------------------------- -Info 61 [16:02:24.000] Project '/user/username/projects/myproject/random/tsconfig.json' (Configured) -Info 61 [16:02:25.000] Files (2) - -Info 61 [16:02:26.000] ----------------------------------------------- -Info 61 [16:02:27.000] Open files: -Info 61 [16:02:28.000] FileName: /user/username/projects/myproject/main/main.ts ProjectRootPath: undefined -Info 61 [16:02:29.000] Projects: /user/username/projects/myproject/main/tsconfig.json -Info 61 [16:02:30.000] FileName: /user/username/projects/myproject/random/random.ts ProjectRootPath: undefined -Info 61 [16:02:31.000] Projects: /user/username/projects/myproject/random/tsconfig.json -Info 61 [16:02:32.000] After ensureProjectForOpenFiles: -Info 62 [16:02:33.000] Project '/user/username/projects/myproject/main/tsconfig.json' (Configured) -Info 62 [16:02:34.000] Files (3) - -Info 62 [16:02:35.000] ----------------------------------------------- -Info 62 [16:02:36.000] Project '/user/username/projects/myproject/random/tsconfig.json' (Configured) -Info 62 [16:02:37.000] Files (2) - -Info 62 [16:02:38.000] ----------------------------------------------- -Info 62 [16:02:39.000] Open files: -Info 62 [16:02:40.000] FileName: /user/username/projects/myproject/main/main.ts ProjectRootPath: undefined -Info 62 [16:02:41.000] Projects: /user/username/projects/myproject/main/tsconfig.json -Info 62 [16:02:42.000] FileName: /user/username/projects/myproject/random/random.ts ProjectRootPath: undefined -Info 62 [16:02:43.000] Projects: /user/username/projects/myproject/random/tsconfig.json +Info 55 [00:02:15.000] Running: /user/username/projects/myproject/main/tsconfig.json +Info 56 [00:02:16.000] Starting updateGraphWorker: Project: /user/username/projects/myproject/main/tsconfig.json +Info 57 [00:02:17.000] Finishing updateGraphWorker: Project: /user/username/projects/myproject/main/tsconfig.json Version: 2 structureChanged: false structureIsReused:: Completely Elapsed:: *ms +Info 58 [00:02:18.000] Different program with same set of files +Info 59 [00:02:19.000] Running: *ensureProjectForOpenFiles* +Info 60 [00:02:20.000] Before ensureProjectForOpenFiles: +Info 61 [00:02:21.000] Project '/user/username/projects/myproject/main/tsconfig.json' (Configured) +Info 61 [00:02:22.000] Files (3) + +Info 61 [00:02:23.000] ----------------------------------------------- +Info 61 [00:02:24.000] Project '/user/username/projects/myproject/random/tsconfig.json' (Configured) +Info 61 [00:02:25.000] Files (2) + +Info 61 [00:02:26.000] ----------------------------------------------- +Info 61 [00:02:27.000] Open files: +Info 61 [00:02:28.000] FileName: /user/username/projects/myproject/main/main.ts ProjectRootPath: undefined +Info 61 [00:02:29.000] Projects: /user/username/projects/myproject/main/tsconfig.json +Info 61 [00:02:30.000] FileName: /user/username/projects/myproject/random/random.ts ProjectRootPath: undefined +Info 61 [00:02:31.000] Projects: /user/username/projects/myproject/random/tsconfig.json +Info 61 [00:02:32.000] After ensureProjectForOpenFiles: +Info 62 [00:02:33.000] Project '/user/username/projects/myproject/main/tsconfig.json' (Configured) +Info 62 [00:02:34.000] Files (3) + +Info 62 [00:02:35.000] ----------------------------------------------- +Info 62 [00:02:36.000] Project '/user/username/projects/myproject/random/tsconfig.json' (Configured) +Info 62 [00:02:37.000] Files (2) + +Info 62 [00:02:38.000] ----------------------------------------------- +Info 62 [00:02:39.000] Open files: +Info 62 [00:02:40.000] FileName: /user/username/projects/myproject/main/main.ts ProjectRootPath: undefined +Info 62 [00:02:41.000] Projects: /user/username/projects/myproject/main/tsconfig.json +Info 62 [00:02:42.000] FileName: /user/username/projects/myproject/random/random.ts ProjectRootPath: undefined +Info 62 [00:02:43.000] Projects: /user/username/projects/myproject/random/tsconfig.json After running timeout callbacks PolledWatches:: @@ -640,7 +640,7 @@ FsWatchesRecursive:: /user/username/projects/myproject/random: {} -Info 62 [16:02:44.000] request: +Info 62 [00:02:44.000] request: { "command": "definitionAndBoundSpan", "arguments": { @@ -715,7 +715,7 @@ FsWatchesRecursive:: /user/username/projects/myproject/random: {} -Info 63 [16:02:45.000] response: +Info 63 [00:02:45.000] response: { "response": { "definitions": [ @@ -752,7 +752,7 @@ Info 63 [16:02:45.000] response: }, "responseRequired": true } -Info 64 [16:02:46.000] request: +Info 64 [00:02:46.000] request: { "command": "definitionAndBoundSpan", "arguments": { @@ -827,7 +827,7 @@ FsWatchesRecursive:: /user/username/projects/myproject/random: {} -Info 65 [16:02:47.000] response: +Info 65 [00:02:47.000] response: { "response": { "definitions": [ @@ -864,7 +864,7 @@ Info 65 [16:02:47.000] response: }, "responseRequired": true } -Info 66 [16:02:48.000] request: +Info 66 [00:02:48.000] request: { "command": "definitionAndBoundSpan", "arguments": { @@ -939,7 +939,7 @@ FsWatchesRecursive:: /user/username/projects/myproject/random: {} -Info 67 [16:02:49.000] response: +Info 67 [00:02:49.000] response: { "response": { "definitions": [ @@ -976,7 +976,7 @@ Info 67 [16:02:49.000] response: }, "responseRequired": true } -Info 68 [16:02:50.000] request: +Info 68 [00:02:50.000] request: { "command": "definitionAndBoundSpan", "arguments": { @@ -1051,7 +1051,7 @@ FsWatchesRecursive:: /user/username/projects/myproject/random: {} -Info 69 [16:02:51.000] response: +Info 69 [00:02:51.000] response: { "response": { "definitions": [ @@ -1088,7 +1088,7 @@ Info 69 [16:02:51.000] response: }, "responseRequired": true } -Info 70 [16:02:52.000] request: +Info 70 [00:02:52.000] request: { "command": "definitionAndBoundSpan", "arguments": { @@ -1163,7 +1163,7 @@ FsWatchesRecursive:: /user/username/projects/myproject/random: {} -Info 71 [16:02:53.000] response: +Info 71 [00:02:53.000] response: { "response": { "definitions": [ 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 80e75dd94590d..a25f36eb318c3 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 @@ -1,5 +1,5 @@ -Info 0 [16:01:00.000] Provided types map file "/a/lib/typesMap.json" doesn't exist -Info 1 [16:01:01.000] request: +Info 0 [00:01:00.000] Provided types map file "/a/lib/typesMap.json" doesn't exist +Info 1 [00:01:01.000] request: { "seq": 0, "type": "request", @@ -200,11 +200,11 @@ FsWatches:: FsWatchesRecursive:: -Info 2 [16:01:02.000] Search path: /user/username/projects/myproject/main -Info 3 [16:01:03.000] For info: /user/username/projects/myproject/main/main.ts :: Config file name: /user/username/projects/myproject/main/tsconfig.json -Info 4 [16:01:04.000] Creating configuration project /user/username/projects/myproject/main/tsconfig.json -Info 5 [16:01:05.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/main/tsconfig.json 2000 undefined Project: /user/username/projects/myproject/main/tsconfig.json WatchType: Config file -Info 6 [16:01:06.000] Config: /user/username/projects/myproject/main/tsconfig.json : { +Info 2 [00:01:02.000] Search path: /user/username/projects/myproject/main +Info 3 [00:01:03.000] For info: /user/username/projects/myproject/main/main.ts :: Config file name: /user/username/projects/myproject/main/tsconfig.json +Info 4 [00:01:04.000] Creating configuration project /user/username/projects/myproject/main/tsconfig.json +Info 5 [00:01:05.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/main/tsconfig.json 2000 undefined Project: /user/username/projects/myproject/main/tsconfig.json WatchType: Config file +Info 6 [00:01:06.000] Config: /user/username/projects/myproject/main/tsconfig.json : { "rootNames": [ "/user/username/projects/myproject/main/main.ts" ], @@ -220,11 +220,11 @@ Info 6 [16:01:06.000] Config: /user/username/projects/myproject/main/tsconfig } ] } -Info 7 [16:01:07.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/main 1 undefined Config: /user/username/projects/myproject/main/tsconfig.json WatchType: Wild card directory -Info 8 [16:01:08.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/main 1 undefined Config: /user/username/projects/myproject/main/tsconfig.json WatchType: Wild card directory -Info 9 [16:01:09.000] Plugins were requested but not running in environment that supports 'require'. Nothing will be loaded -Info 10 [16:01:10.000] Starting updateGraphWorker: Project: /user/username/projects/myproject/main/tsconfig.json -Info 11 [16:01:11.000] Config: /user/username/projects/myproject/dependency/tsconfig.json : { +Info 7 [00:01:07.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/main 1 undefined Config: /user/username/projects/myproject/main/tsconfig.json WatchType: Wild card directory +Info 8 [00:01:08.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/main 1 undefined Config: /user/username/projects/myproject/main/tsconfig.json WatchType: Wild card directory +Info 9 [00:01:09.000] Plugins were requested but not running in environment that supports 'require'. Nothing will be loaded +Info 10 [00:01:10.000] Starting updateGraphWorker: Project: /user/username/projects/myproject/main/tsconfig.json +Info 11 [00:01:11.000] Config: /user/username/projects/myproject/dependency/tsconfig.json : { "rootNames": [ "/user/username/projects/myproject/dependency/FnS.ts" ], @@ -235,20 +235,20 @@ Info 11 [16:01:11.000] Config: /user/username/projects/myproject/dependency/ts "configFilePath": "/user/username/projects/myproject/dependency/tsconfig.json" } } -Info 12 [16:01:12.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/dependency/tsconfig.json 2000 undefined Project: /user/username/projects/myproject/main/tsconfig.json WatchType: Config file -Info 13 [16:01:13.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/dependency 1 undefined Config: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Wild card directory -Info 14 [16:01:14.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/dependency 1 undefined Config: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Wild card directory -Info 15 [16:01:15.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/decls 1 undefined Project: /user/username/projects/myproject/main/tsconfig.json WatchType: Failed Lookup Locations -Info 16 [16:01:16.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/decls 1 undefined Project: /user/username/projects/myproject/main/tsconfig.json WatchType: Failed Lookup Locations -Info 17 [16:01:17.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/dependency/FnS.ts 500 undefined WatchType: Closed Script info -Info 18 [16:01:18.000] FileWatcher:: Added:: WatchInfo: /a/lib/lib.d.ts 500 undefined WatchType: Closed Script info -Info 19 [16:01:19.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/main/node_modules/@types 1 undefined Project: /user/username/projects/myproject/main/tsconfig.json WatchType: Type roots -Info 20 [16:01:20.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/main/node_modules/@types 1 undefined Project: /user/username/projects/myproject/main/tsconfig.json WatchType: Type roots -Info 21 [16:01:21.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/main/tsconfig.json WatchType: Type roots -Info 22 [16:01:22.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/main/tsconfig.json WatchType: Type roots -Info 23 [16:01:23.000] Finishing updateGraphWorker: Project: /user/username/projects/myproject/main/tsconfig.json Version: 1 structureChanged: true structureIsReused:: Not Elapsed:: *ms -Info 24 [16:01:24.000] Project '/user/username/projects/myproject/main/tsconfig.json' (Configured) -Info 25 [16:01:25.000] Files (3) +Info 12 [00:01:12.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/dependency/tsconfig.json 2000 undefined Project: /user/username/projects/myproject/main/tsconfig.json WatchType: Config file +Info 13 [00:01:13.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/dependency 1 undefined Config: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Wild card directory +Info 14 [00:01:14.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/dependency 1 undefined Config: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Wild card directory +Info 15 [00:01:15.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/decls 1 undefined Project: /user/username/projects/myproject/main/tsconfig.json WatchType: Failed Lookup Locations +Info 16 [00:01:16.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/decls 1 undefined Project: /user/username/projects/myproject/main/tsconfig.json WatchType: Failed Lookup Locations +Info 17 [00:01:17.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/dependency/FnS.ts 500 undefined WatchType: Closed Script info +Info 18 [00:01:18.000] FileWatcher:: Added:: WatchInfo: /a/lib/lib.d.ts 500 undefined WatchType: Closed Script info +Info 19 [00:01:19.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/main/node_modules/@types 1 undefined Project: /user/username/projects/myproject/main/tsconfig.json WatchType: Type roots +Info 20 [00:01:20.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/main/node_modules/@types 1 undefined Project: /user/username/projects/myproject/main/tsconfig.json WatchType: Type roots +Info 21 [00:01:21.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/main/tsconfig.json WatchType: Type roots +Info 22 [00:01:22.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/main/tsconfig.json WatchType: Type roots +Info 23 [00:01:23.000] Finishing updateGraphWorker: Project: /user/username/projects/myproject/main/tsconfig.json Version: 1 structureChanged: true structureIsReused:: Not Elapsed:: *ms +Info 24 [00:01:24.000] Project '/user/username/projects/myproject/main/tsconfig.json' (Configured) +Info 25 [00:01:25.000] Files (3) /a/lib/lib.d.ts /user/username/projects/myproject/dependency/FnS.ts /user/username/projects/myproject/main/main.ts @@ -261,16 +261,16 @@ Info 25 [16:01:25.000] Files (3) main.ts Matched by default include pattern '**/*' -Info 26 [16:01:26.000] ----------------------------------------------- -Info 27 [16:01:27.000] Search path: /user/username/projects/myproject/main -Info 28 [16:01:28.000] For info: /user/username/projects/myproject/main/tsconfig.json :: No config files found. -Info 29 [16:01:29.000] Project '/user/username/projects/myproject/main/tsconfig.json' (Configured) -Info 29 [16:01:30.000] Files (3) +Info 26 [00:01:26.000] ----------------------------------------------- +Info 27 [00:01:27.000] Search path: /user/username/projects/myproject/main +Info 28 [00:01:28.000] For info: /user/username/projects/myproject/main/tsconfig.json :: No config files found. +Info 29 [00:01:29.000] Project '/user/username/projects/myproject/main/tsconfig.json' (Configured) +Info 29 [00:01:30.000] Files (3) -Info 29 [16:01:31.000] ----------------------------------------------- -Info 29 [16:01:32.000] Open files: -Info 29 [16:01:33.000] FileName: /user/username/projects/myproject/main/main.ts ProjectRootPath: undefined -Info 29 [16:01:34.000] Projects: /user/username/projects/myproject/main/tsconfig.json +Info 29 [00:01:31.000] ----------------------------------------------- +Info 29 [00:01:32.000] Open files: +Info 29 [00:01:33.000] FileName: /user/username/projects/myproject/main/main.ts ProjectRootPath: undefined +Info 29 [00:01:34.000] Projects: /user/username/projects/myproject/main/tsconfig.json After request PolledWatches:: @@ -297,11 +297,11 @@ FsWatchesRecursive:: /user/username/projects/myproject/decls: {} -Info 29 [16:01:35.000] response: +Info 29 [00:01:35.000] response: { "responseRequired": false } -Info 30 [16:01:36.000] request: +Info 30 [00:01:36.000] request: { "seq": 0, "type": "request", @@ -336,11 +336,11 @@ FsWatchesRecursive:: /user/username/projects/myproject/decls: {} -Info 31 [16:01:37.000] Search path: /user/username/projects/myproject/random -Info 32 [16:01:38.000] For info: /user/username/projects/myproject/random/random.ts :: Config file name: /user/username/projects/myproject/random/tsconfig.json -Info 33 [16:01:39.000] Creating configuration project /user/username/projects/myproject/random/tsconfig.json -Info 34 [16:01:40.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/random/tsconfig.json 2000 undefined Project: /user/username/projects/myproject/random/tsconfig.json WatchType: Config file -Info 35 [16:01:41.000] Config: /user/username/projects/myproject/random/tsconfig.json : { +Info 31 [00:01:37.000] Search path: /user/username/projects/myproject/random +Info 32 [00:01:38.000] For info: /user/username/projects/myproject/random/random.ts :: Config file name: /user/username/projects/myproject/random/tsconfig.json +Info 33 [00:01:39.000] Creating configuration project /user/username/projects/myproject/random/tsconfig.json +Info 34 [00:01:40.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/random/tsconfig.json 2000 undefined Project: /user/username/projects/myproject/random/tsconfig.json WatchType: Config file +Info 35 [00:01:41.000] Config: /user/username/projects/myproject/random/tsconfig.json : { "rootNames": [ "/user/username/projects/myproject/random/random.ts" ], @@ -348,17 +348,17 @@ Info 35 [16:01:41.000] Config: /user/username/projects/myproject/random/tsconf "configFilePath": "/user/username/projects/myproject/random/tsconfig.json" } } -Info 36 [16:01:42.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/random 1 undefined Config: /user/username/projects/myproject/random/tsconfig.json WatchType: Wild card directory -Info 37 [16:01:43.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/random 1 undefined Config: /user/username/projects/myproject/random/tsconfig.json WatchType: Wild card directory -Info 38 [16:01:44.000] Plugins were requested but not running in environment that supports 'require'. Nothing will be loaded -Info 39 [16:01:45.000] Starting updateGraphWorker: Project: /user/username/projects/myproject/random/tsconfig.json -Info 40 [16:01:46.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/random/node_modules/@types 1 undefined Project: /user/username/projects/myproject/random/tsconfig.json WatchType: Type roots -Info 41 [16:01:47.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/random/node_modules/@types 1 undefined Project: /user/username/projects/myproject/random/tsconfig.json WatchType: Type roots -Info 42 [16:01:48.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/random/tsconfig.json WatchType: Type roots -Info 43 [16:01:49.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/random/tsconfig.json WatchType: Type roots -Info 44 [16:01:50.000] Finishing updateGraphWorker: Project: /user/username/projects/myproject/random/tsconfig.json Version: 1 structureChanged: true structureIsReused:: Not Elapsed:: *ms -Info 45 [16:01:51.000] Project '/user/username/projects/myproject/random/tsconfig.json' (Configured) -Info 46 [16:01:52.000] Files (2) +Info 36 [00:01:42.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/random 1 undefined Config: /user/username/projects/myproject/random/tsconfig.json WatchType: Wild card directory +Info 37 [00:01:43.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/random 1 undefined Config: /user/username/projects/myproject/random/tsconfig.json WatchType: Wild card directory +Info 38 [00:01:44.000] Plugins were requested but not running in environment that supports 'require'. Nothing will be loaded +Info 39 [00:01:45.000] Starting updateGraphWorker: Project: /user/username/projects/myproject/random/tsconfig.json +Info 40 [00:01:46.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/random/node_modules/@types 1 undefined Project: /user/username/projects/myproject/random/tsconfig.json WatchType: Type roots +Info 41 [00:01:47.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/random/node_modules/@types 1 undefined Project: /user/username/projects/myproject/random/tsconfig.json WatchType: Type roots +Info 42 [00:01:48.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/random/tsconfig.json WatchType: Type roots +Info 43 [00:01:49.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/random/tsconfig.json WatchType: Type roots +Info 44 [00:01:50.000] Finishing updateGraphWorker: Project: /user/username/projects/myproject/random/tsconfig.json Version: 1 structureChanged: true structureIsReused:: Not Elapsed:: *ms +Info 45 [00:01:51.000] Project '/user/username/projects/myproject/random/tsconfig.json' (Configured) +Info 46 [00:01:52.000] Files (2) /a/lib/lib.d.ts /user/username/projects/myproject/random/random.ts @@ -368,20 +368,20 @@ Info 46 [16:01:52.000] Files (2) random.ts Matched by default include pattern '**/*' -Info 47 [16:01:53.000] ----------------------------------------------- -Info 48 [16:01:54.000] Project '/user/username/projects/myproject/main/tsconfig.json' (Configured) -Info 48 [16:01:55.000] Files (3) +Info 47 [00:01:53.000] ----------------------------------------------- +Info 48 [00:01:54.000] Project '/user/username/projects/myproject/main/tsconfig.json' (Configured) +Info 48 [00:01:55.000] Files (3) -Info 48 [16:01:56.000] ----------------------------------------------- -Info 48 [16:01:57.000] Project '/user/username/projects/myproject/random/tsconfig.json' (Configured) -Info 48 [16:01:58.000] Files (2) +Info 48 [00:01:56.000] ----------------------------------------------- +Info 48 [00:01:57.000] Project '/user/username/projects/myproject/random/tsconfig.json' (Configured) +Info 48 [00:01:58.000] Files (2) -Info 48 [16:01:59.000] ----------------------------------------------- -Info 48 [16:02:00.000] Open files: -Info 48 [16:02:01.000] FileName: /user/username/projects/myproject/main/main.ts ProjectRootPath: undefined -Info 48 [16:02:02.000] Projects: /user/username/projects/myproject/main/tsconfig.json -Info 48 [16:02:03.000] FileName: /user/username/projects/myproject/random/random.ts ProjectRootPath: undefined -Info 48 [16:02:04.000] Projects: /user/username/projects/myproject/random/tsconfig.json +Info 48 [00:01:59.000] ----------------------------------------------- +Info 48 [00:02:00.000] Open files: +Info 48 [00:02:01.000] FileName: /user/username/projects/myproject/main/main.ts ProjectRootPath: undefined +Info 48 [00:02:02.000] Projects: /user/username/projects/myproject/main/tsconfig.json +Info 48 [00:02:03.000] FileName: /user/username/projects/myproject/random/random.ts ProjectRootPath: undefined +Info 48 [00:02:04.000] Projects: /user/username/projects/myproject/random/tsconfig.json After request PolledWatches:: @@ -414,11 +414,11 @@ FsWatchesRecursive:: /user/username/projects/myproject/random: {} -Info 48 [16:02:05.000] response: +Info 48 [00:02:05.000] response: { "responseRequired": false } -Info 49 [16:02:06.000] request: +Info 49 [00:02:06.000] request: { "command": "definitionAndBoundSpan", "arguments": { @@ -493,7 +493,7 @@ FsWatchesRecursive:: /user/username/projects/myproject/random: {} -Info 50 [16:02:07.000] response: +Info 50 [00:02:07.000] response: { "response": { "definitions": [ @@ -530,11 +530,11 @@ Info 50 [16:02:07.000] response: }, "responseRequired": true } -Info 51 [16:02:11.000] FileWatcher:: Triggered with /user/username/projects/myproject/dependency/FnS.ts 1:: WatchInfo: /user/username/projects/myproject/dependency/FnS.ts 500 undefined WatchType: Closed Script info -Info 52 [16:02:12.000] Scheduled: /user/username/projects/myproject/main/tsconfig.json -Info 53 [16:02:13.000] Scheduled: *ensureProjectForOpenFiles* -Info 54 [16:02:14.000] Elapsed:: *ms FileWatcher:: Triggered with /user/username/projects/myproject/dependency/FnS.ts 1:: WatchInfo: /user/username/projects/myproject/dependency/FnS.ts 500 undefined WatchType: Closed Script info -Info 55 [16:02:15.000] request: +Info 51 [00:02:11.000] FileWatcher:: Triggered with /user/username/projects/myproject/dependency/FnS.ts 1:: WatchInfo: /user/username/projects/myproject/dependency/FnS.ts 500 undefined WatchType: Closed Script info +Info 52 [00:02:12.000] Scheduled: /user/username/projects/myproject/main/tsconfig.json +Info 53 [00:02:13.000] Scheduled: *ensureProjectForOpenFiles* +Info 54 [00:02:14.000] Elapsed:: *ms FileWatcher:: Triggered with /user/username/projects/myproject/dependency/FnS.ts 1:: WatchInfo: /user/username/projects/myproject/dependency/FnS.ts 500 undefined WatchType: Closed Script info +Info 55 [00:02:15.000] request: { "command": "definitionAndBoundSpan", "arguments": { @@ -586,9 +586,9 @@ FsWatchesRecursive:: /user/username/projects/myproject/random: {} -Info 56 [16:02:16.000] Starting updateGraphWorker: Project: /user/username/projects/myproject/main/tsconfig.json -Info 57 [16:02:17.000] Finishing updateGraphWorker: Project: /user/username/projects/myproject/main/tsconfig.json Version: 2 structureChanged: false structureIsReused:: Completely Elapsed:: *ms -Info 58 [16:02:18.000] Different program with same set of files +Info 56 [00:02:16.000] Starting updateGraphWorker: Project: /user/username/projects/myproject/main/tsconfig.json +Info 57 [00:02:17.000] Finishing updateGraphWorker: Project: /user/username/projects/myproject/main/tsconfig.json Version: 2 structureChanged: false structureIsReused:: Completely Elapsed:: *ms +Info 58 [00:02:18.000] Different program with same set of files After request PolledWatches:: @@ -621,7 +621,7 @@ FsWatchesRecursive:: /user/username/projects/myproject/random: {} -Info 59 [16:02:19.000] response: +Info 59 [00:02:19.000] response: { "response": { "definitions": [ @@ -658,7 +658,7 @@ Info 59 [16:02:19.000] response: }, "responseRequired": true } -Info 60 [16:02:20.000] request: +Info 60 [00:02:20.000] request: { "command": "definitionAndBoundSpan", "arguments": { @@ -733,7 +733,7 @@ FsWatchesRecursive:: /user/username/projects/myproject/random: {} -Info 61 [16:02:21.000] response: +Info 61 [00:02:21.000] response: { "response": { "definitions": [ @@ -770,7 +770,7 @@ Info 61 [16:02:21.000] response: }, "responseRequired": true } -Info 62 [16:02:22.000] request: +Info 62 [00:02:22.000] request: { "command": "definitionAndBoundSpan", "arguments": { @@ -845,7 +845,7 @@ FsWatchesRecursive:: /user/username/projects/myproject/random: {} -Info 63 [16:02:23.000] response: +Info 63 [00:02:23.000] response: { "response": { "definitions": [ @@ -882,7 +882,7 @@ Info 63 [16:02:23.000] response: }, "responseRequired": true } -Info 64 [16:02:24.000] request: +Info 64 [00:02:24.000] request: { "command": "definitionAndBoundSpan", "arguments": { @@ -957,7 +957,7 @@ FsWatchesRecursive:: /user/username/projects/myproject/random: {} -Info 65 [16:02:25.000] response: +Info 65 [00:02:25.000] response: { "response": { "definitions": [ @@ -994,7 +994,7 @@ Info 65 [16:02:25.000] response: }, "responseRequired": true } -Info 66 [16:02:26.000] request: +Info 66 [00:02:26.000] request: { "command": "definitionAndBoundSpan", "arguments": { @@ -1069,7 +1069,7 @@ FsWatchesRecursive:: /user/username/projects/myproject/random: {} -Info 67 [16:02:27.000] response: +Info 67 [00:02:27.000] response: { "response": { "definitions": [ 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 684f296785057..e9a783ddf1009 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 @@ -1,5 +1,5 @@ -Info 0 [16:01:00.000] Provided types map file "/a/lib/typesMap.json" doesn't exist -Info 1 [16:01:01.000] request: +Info 0 [00:01:00.000] Provided types map file "/a/lib/typesMap.json" doesn't exist +Info 1 [00:01:01.000] request: { "seq": 0, "type": "request", @@ -200,11 +200,11 @@ FsWatches:: FsWatchesRecursive:: -Info 2 [16:01:02.000] Search path: /user/username/projects/myproject/main -Info 3 [16:01:03.000] For info: /user/username/projects/myproject/main/main.ts :: Config file name: /user/username/projects/myproject/main/tsconfig.json -Info 4 [16:01:04.000] Creating configuration project /user/username/projects/myproject/main/tsconfig.json -Info 5 [16:01:05.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/main/tsconfig.json 2000 undefined Project: /user/username/projects/myproject/main/tsconfig.json WatchType: Config file -Info 6 [16:01:06.000] Config: /user/username/projects/myproject/main/tsconfig.json : { +Info 2 [00:01:02.000] Search path: /user/username/projects/myproject/main +Info 3 [00:01:03.000] For info: /user/username/projects/myproject/main/main.ts :: Config file name: /user/username/projects/myproject/main/tsconfig.json +Info 4 [00:01:04.000] Creating configuration project /user/username/projects/myproject/main/tsconfig.json +Info 5 [00:01:05.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/main/tsconfig.json 2000 undefined Project: /user/username/projects/myproject/main/tsconfig.json WatchType: Config file +Info 6 [00:01:06.000] Config: /user/username/projects/myproject/main/tsconfig.json : { "rootNames": [ "/user/username/projects/myproject/main/main.ts" ], @@ -220,11 +220,11 @@ Info 6 [16:01:06.000] Config: /user/username/projects/myproject/main/tsconfig } ] } -Info 7 [16:01:07.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/main 1 undefined Config: /user/username/projects/myproject/main/tsconfig.json WatchType: Wild card directory -Info 8 [16:01:08.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/main 1 undefined Config: /user/username/projects/myproject/main/tsconfig.json WatchType: Wild card directory -Info 9 [16:01:09.000] Plugins were requested but not running in environment that supports 'require'. Nothing will be loaded -Info 10 [16:01:10.000] Starting updateGraphWorker: Project: /user/username/projects/myproject/main/tsconfig.json -Info 11 [16:01:11.000] Config: /user/username/projects/myproject/dependency/tsconfig.json : { +Info 7 [00:01:07.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/main 1 undefined Config: /user/username/projects/myproject/main/tsconfig.json WatchType: Wild card directory +Info 8 [00:01:08.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/main 1 undefined Config: /user/username/projects/myproject/main/tsconfig.json WatchType: Wild card directory +Info 9 [00:01:09.000] Plugins were requested but not running in environment that supports 'require'. Nothing will be loaded +Info 10 [00:01:10.000] Starting updateGraphWorker: Project: /user/username/projects/myproject/main/tsconfig.json +Info 11 [00:01:11.000] Config: /user/username/projects/myproject/dependency/tsconfig.json : { "rootNames": [ "/user/username/projects/myproject/dependency/FnS.ts" ], @@ -235,20 +235,20 @@ Info 11 [16:01:11.000] Config: /user/username/projects/myproject/dependency/ts "configFilePath": "/user/username/projects/myproject/dependency/tsconfig.json" } } -Info 12 [16:01:12.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/dependency/tsconfig.json 2000 undefined Project: /user/username/projects/myproject/main/tsconfig.json WatchType: Config file -Info 13 [16:01:13.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/dependency 1 undefined Config: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Wild card directory -Info 14 [16:01:14.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/dependency 1 undefined Config: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Wild card directory -Info 15 [16:01:15.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/decls 1 undefined Project: /user/username/projects/myproject/main/tsconfig.json WatchType: Failed Lookup Locations -Info 16 [16:01:16.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/decls 1 undefined Project: /user/username/projects/myproject/main/tsconfig.json WatchType: Failed Lookup Locations -Info 17 [16:01:17.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/dependency/FnS.ts 500 undefined WatchType: Closed Script info -Info 18 [16:01:18.000] FileWatcher:: Added:: WatchInfo: /a/lib/lib.d.ts 500 undefined WatchType: Closed Script info -Info 19 [16:01:19.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/main/node_modules/@types 1 undefined Project: /user/username/projects/myproject/main/tsconfig.json WatchType: Type roots -Info 20 [16:01:20.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/main/node_modules/@types 1 undefined Project: /user/username/projects/myproject/main/tsconfig.json WatchType: Type roots -Info 21 [16:01:21.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/main/tsconfig.json WatchType: Type roots -Info 22 [16:01:22.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/main/tsconfig.json WatchType: Type roots -Info 23 [16:01:23.000] Finishing updateGraphWorker: Project: /user/username/projects/myproject/main/tsconfig.json Version: 1 structureChanged: true structureIsReused:: Not Elapsed:: *ms -Info 24 [16:01:24.000] Project '/user/username/projects/myproject/main/tsconfig.json' (Configured) -Info 25 [16:01:25.000] Files (3) +Info 12 [00:01:12.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/dependency/tsconfig.json 2000 undefined Project: /user/username/projects/myproject/main/tsconfig.json WatchType: Config file +Info 13 [00:01:13.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/dependency 1 undefined Config: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Wild card directory +Info 14 [00:01:14.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/dependency 1 undefined Config: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Wild card directory +Info 15 [00:01:15.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/decls 1 undefined Project: /user/username/projects/myproject/main/tsconfig.json WatchType: Failed Lookup Locations +Info 16 [00:01:16.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/decls 1 undefined Project: /user/username/projects/myproject/main/tsconfig.json WatchType: Failed Lookup Locations +Info 17 [00:01:17.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/dependency/FnS.ts 500 undefined WatchType: Closed Script info +Info 18 [00:01:18.000] FileWatcher:: Added:: WatchInfo: /a/lib/lib.d.ts 500 undefined WatchType: Closed Script info +Info 19 [00:01:19.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/main/node_modules/@types 1 undefined Project: /user/username/projects/myproject/main/tsconfig.json WatchType: Type roots +Info 20 [00:01:20.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/main/node_modules/@types 1 undefined Project: /user/username/projects/myproject/main/tsconfig.json WatchType: Type roots +Info 21 [00:01:21.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/main/tsconfig.json WatchType: Type roots +Info 22 [00:01:22.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/main/tsconfig.json WatchType: Type roots +Info 23 [00:01:23.000] Finishing updateGraphWorker: Project: /user/username/projects/myproject/main/tsconfig.json Version: 1 structureChanged: true structureIsReused:: Not Elapsed:: *ms +Info 24 [00:01:24.000] Project '/user/username/projects/myproject/main/tsconfig.json' (Configured) +Info 25 [00:01:25.000] Files (3) /a/lib/lib.d.ts /user/username/projects/myproject/dependency/FnS.ts /user/username/projects/myproject/main/main.ts @@ -261,16 +261,16 @@ Info 25 [16:01:25.000] Files (3) main.ts Matched by default include pattern '**/*' -Info 26 [16:01:26.000] ----------------------------------------------- -Info 27 [16:01:27.000] Search path: /user/username/projects/myproject/main -Info 28 [16:01:28.000] For info: /user/username/projects/myproject/main/tsconfig.json :: No config files found. -Info 29 [16:01:29.000] Project '/user/username/projects/myproject/main/tsconfig.json' (Configured) -Info 29 [16:01:30.000] Files (3) +Info 26 [00:01:26.000] ----------------------------------------------- +Info 27 [00:01:27.000] Search path: /user/username/projects/myproject/main +Info 28 [00:01:28.000] For info: /user/username/projects/myproject/main/tsconfig.json :: No config files found. +Info 29 [00:01:29.000] Project '/user/username/projects/myproject/main/tsconfig.json' (Configured) +Info 29 [00:01:30.000] Files (3) -Info 29 [16:01:31.000] ----------------------------------------------- -Info 29 [16:01:32.000] Open files: -Info 29 [16:01:33.000] FileName: /user/username/projects/myproject/main/main.ts ProjectRootPath: undefined -Info 29 [16:01:34.000] Projects: /user/username/projects/myproject/main/tsconfig.json +Info 29 [00:01:31.000] ----------------------------------------------- +Info 29 [00:01:32.000] Open files: +Info 29 [00:01:33.000] FileName: /user/username/projects/myproject/main/main.ts ProjectRootPath: undefined +Info 29 [00:01:34.000] Projects: /user/username/projects/myproject/main/tsconfig.json After request PolledWatches:: @@ -297,11 +297,11 @@ FsWatchesRecursive:: /user/username/projects/myproject/decls: {} -Info 29 [16:01:35.000] response: +Info 29 [00:01:35.000] response: { "responseRequired": false } -Info 30 [16:01:36.000] request: +Info 30 [00:01:36.000] request: { "seq": 0, "type": "request", @@ -336,11 +336,11 @@ FsWatchesRecursive:: /user/username/projects/myproject/decls: {} -Info 31 [16:01:37.000] Search path: /user/username/projects/myproject/random -Info 32 [16:01:38.000] For info: /user/username/projects/myproject/random/random.ts :: Config file name: /user/username/projects/myproject/random/tsconfig.json -Info 33 [16:01:39.000] Creating configuration project /user/username/projects/myproject/random/tsconfig.json -Info 34 [16:01:40.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/random/tsconfig.json 2000 undefined Project: /user/username/projects/myproject/random/tsconfig.json WatchType: Config file -Info 35 [16:01:41.000] Config: /user/username/projects/myproject/random/tsconfig.json : { +Info 31 [00:01:37.000] Search path: /user/username/projects/myproject/random +Info 32 [00:01:38.000] For info: /user/username/projects/myproject/random/random.ts :: Config file name: /user/username/projects/myproject/random/tsconfig.json +Info 33 [00:01:39.000] Creating configuration project /user/username/projects/myproject/random/tsconfig.json +Info 34 [00:01:40.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/random/tsconfig.json 2000 undefined Project: /user/username/projects/myproject/random/tsconfig.json WatchType: Config file +Info 35 [00:01:41.000] Config: /user/username/projects/myproject/random/tsconfig.json : { "rootNames": [ "/user/username/projects/myproject/random/random.ts" ], @@ -348,17 +348,17 @@ Info 35 [16:01:41.000] Config: /user/username/projects/myproject/random/tsconf "configFilePath": "/user/username/projects/myproject/random/tsconfig.json" } } -Info 36 [16:01:42.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/random 1 undefined Config: /user/username/projects/myproject/random/tsconfig.json WatchType: Wild card directory -Info 37 [16:01:43.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/random 1 undefined Config: /user/username/projects/myproject/random/tsconfig.json WatchType: Wild card directory -Info 38 [16:01:44.000] Plugins were requested but not running in environment that supports 'require'. Nothing will be loaded -Info 39 [16:01:45.000] Starting updateGraphWorker: Project: /user/username/projects/myproject/random/tsconfig.json -Info 40 [16:01:46.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/random/node_modules/@types 1 undefined Project: /user/username/projects/myproject/random/tsconfig.json WatchType: Type roots -Info 41 [16:01:47.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/random/node_modules/@types 1 undefined Project: /user/username/projects/myproject/random/tsconfig.json WatchType: Type roots -Info 42 [16:01:48.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/random/tsconfig.json WatchType: Type roots -Info 43 [16:01:49.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/random/tsconfig.json WatchType: Type roots -Info 44 [16:01:50.000] Finishing updateGraphWorker: Project: /user/username/projects/myproject/random/tsconfig.json Version: 1 structureChanged: true structureIsReused:: Not Elapsed:: *ms -Info 45 [16:01:51.000] Project '/user/username/projects/myproject/random/tsconfig.json' (Configured) -Info 46 [16:01:52.000] Files (2) +Info 36 [00:01:42.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/random 1 undefined Config: /user/username/projects/myproject/random/tsconfig.json WatchType: Wild card directory +Info 37 [00:01:43.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/random 1 undefined Config: /user/username/projects/myproject/random/tsconfig.json WatchType: Wild card directory +Info 38 [00:01:44.000] Plugins were requested but not running in environment that supports 'require'. Nothing will be loaded +Info 39 [00:01:45.000] Starting updateGraphWorker: Project: /user/username/projects/myproject/random/tsconfig.json +Info 40 [00:01:46.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/random/node_modules/@types 1 undefined Project: /user/username/projects/myproject/random/tsconfig.json WatchType: Type roots +Info 41 [00:01:47.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/random/node_modules/@types 1 undefined Project: /user/username/projects/myproject/random/tsconfig.json WatchType: Type roots +Info 42 [00:01:48.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/random/tsconfig.json WatchType: Type roots +Info 43 [00:01:49.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/random/tsconfig.json WatchType: Type roots +Info 44 [00:01:50.000] Finishing updateGraphWorker: Project: /user/username/projects/myproject/random/tsconfig.json Version: 1 structureChanged: true structureIsReused:: Not Elapsed:: *ms +Info 45 [00:01:51.000] Project '/user/username/projects/myproject/random/tsconfig.json' (Configured) +Info 46 [00:01:52.000] Files (2) /a/lib/lib.d.ts /user/username/projects/myproject/random/random.ts @@ -368,20 +368,20 @@ Info 46 [16:01:52.000] Files (2) random.ts Matched by default include pattern '**/*' -Info 47 [16:01:53.000] ----------------------------------------------- -Info 48 [16:01:54.000] Project '/user/username/projects/myproject/main/tsconfig.json' (Configured) -Info 48 [16:01:55.000] Files (3) +Info 47 [00:01:53.000] ----------------------------------------------- +Info 48 [00:01:54.000] Project '/user/username/projects/myproject/main/tsconfig.json' (Configured) +Info 48 [00:01:55.000] Files (3) -Info 48 [16:01:56.000] ----------------------------------------------- -Info 48 [16:01:57.000] Project '/user/username/projects/myproject/random/tsconfig.json' (Configured) -Info 48 [16:01:58.000] Files (2) +Info 48 [00:01:56.000] ----------------------------------------------- +Info 48 [00:01:57.000] Project '/user/username/projects/myproject/random/tsconfig.json' (Configured) +Info 48 [00:01:58.000] Files (2) -Info 48 [16:01:59.000] ----------------------------------------------- -Info 48 [16:02:00.000] Open files: -Info 48 [16:02:01.000] FileName: /user/username/projects/myproject/main/main.ts ProjectRootPath: undefined -Info 48 [16:02:02.000] Projects: /user/username/projects/myproject/main/tsconfig.json -Info 48 [16:02:03.000] FileName: /user/username/projects/myproject/random/random.ts ProjectRootPath: undefined -Info 48 [16:02:04.000] Projects: /user/username/projects/myproject/random/tsconfig.json +Info 48 [00:01:59.000] ----------------------------------------------- +Info 48 [00:02:00.000] Open files: +Info 48 [00:02:01.000] FileName: /user/username/projects/myproject/main/main.ts ProjectRootPath: undefined +Info 48 [00:02:02.000] Projects: /user/username/projects/myproject/main/tsconfig.json +Info 48 [00:02:03.000] FileName: /user/username/projects/myproject/random/random.ts ProjectRootPath: undefined +Info 48 [00:02:04.000] Projects: /user/username/projects/myproject/random/tsconfig.json After request PolledWatches:: @@ -414,11 +414,11 @@ FsWatchesRecursive:: /user/username/projects/myproject/random: {} -Info 48 [16:02:05.000] response: +Info 48 [00:02:05.000] response: { "responseRequired": false } -Info 49 [16:02:06.000] request: +Info 49 [00:02:06.000] request: { "command": "definitionAndBoundSpan", "arguments": { @@ -493,7 +493,7 @@ FsWatchesRecursive:: /user/username/projects/myproject/random: {} -Info 50 [16:02:07.000] response: +Info 50 [00:02:07.000] response: { "response": { "definitions": [ @@ -530,7 +530,7 @@ Info 50 [16:02:07.000] response: }, "responseRequired": true } -Info 51 [16:02:08.000] request: +Info 51 [00:02:08.000] request: { "command": "change", "arguments": { @@ -608,7 +608,7 @@ FsWatchesRecursive:: /user/username/projects/myproject/random: {} -Info 52 [16:02:09.000] response: +Info 52 [00:02:09.000] response: { "responseRequired": false } @@ -676,7 +676,7 @@ FsWatchesRecursive:: /user/username/projects/myproject/random: {} -Info 53 [16:02:10.000] request: +Info 53 [00:02:10.000] request: { "command": "definitionAndBoundSpan", "arguments": { @@ -719,9 +719,9 @@ FsWatchesRecursive:: /user/username/projects/myproject/random: {} -Info 54 [16:02:11.000] Starting updateGraphWorker: Project: /user/username/projects/myproject/main/tsconfig.json -Info 55 [16:02:12.000] Finishing updateGraphWorker: Project: /user/username/projects/myproject/main/tsconfig.json Version: 2 structureChanged: false structureIsReused:: Completely Elapsed:: *ms -Info 56 [16:02:13.000] Different program with same set of files +Info 54 [00:02:11.000] Starting updateGraphWorker: Project: /user/username/projects/myproject/main/tsconfig.json +Info 55 [00:02:12.000] Finishing updateGraphWorker: Project: /user/username/projects/myproject/main/tsconfig.json Version: 2 structureChanged: false structureIsReused:: Completely Elapsed:: *ms +Info 56 [00:02:13.000] Different program with same set of files After request PolledWatches:: @@ -754,7 +754,7 @@ FsWatchesRecursive:: /user/username/projects/myproject/random: {} -Info 57 [16:02:14.000] response: +Info 57 [00:02:14.000] response: { "response": { "definitions": [ @@ -791,7 +791,7 @@ Info 57 [16:02:14.000] response: }, "responseRequired": true } -Info 58 [16:02:15.000] request: +Info 58 [00:02:15.000] request: { "command": "definitionAndBoundSpan", "arguments": { @@ -866,7 +866,7 @@ FsWatchesRecursive:: /user/username/projects/myproject/random: {} -Info 59 [16:02:16.000] response: +Info 59 [00:02:16.000] response: { "response": { "definitions": [ @@ -903,7 +903,7 @@ Info 59 [16:02:16.000] response: }, "responseRequired": true } -Info 60 [16:02:17.000] request: +Info 60 [00:02:17.000] request: { "command": "definitionAndBoundSpan", "arguments": { @@ -978,7 +978,7 @@ FsWatchesRecursive:: /user/username/projects/myproject/random: {} -Info 61 [16:02:18.000] response: +Info 61 [00:02:18.000] response: { "response": { "definitions": [ @@ -1015,7 +1015,7 @@ Info 61 [16:02:18.000] response: }, "responseRequired": true } -Info 62 [16:02:19.000] request: +Info 62 [00:02:19.000] request: { "command": "definitionAndBoundSpan", "arguments": { @@ -1090,7 +1090,7 @@ FsWatchesRecursive:: /user/username/projects/myproject/random: {} -Info 63 [16:02:20.000] response: +Info 63 [00:02:20.000] response: { "response": { "definitions": [ @@ -1127,7 +1127,7 @@ Info 63 [16:02:20.000] response: }, "responseRequired": true } -Info 64 [16:02:21.000] request: +Info 64 [00:02:21.000] request: { "command": "definitionAndBoundSpan", "arguments": { @@ -1202,7 +1202,7 @@ FsWatchesRecursive:: /user/username/projects/myproject/random: {} -Info 65 [16:02:22.000] response: +Info 65 [00:02:22.000] response: { "response": { "definitions": [ 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 9b4024423bf60..4fe3436dda915 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 @@ -1,5 +1,5 @@ -Info 0 [16:01:00.000] Provided types map file "/a/lib/typesMap.json" doesn't exist -Info 1 [16:01:01.000] request: +Info 0 [00:01:00.000] Provided types map file "/a/lib/typesMap.json" doesn't exist +Info 1 [00:01:01.000] request: { "seq": 0, "type": "request", @@ -200,11 +200,11 @@ FsWatches:: FsWatchesRecursive:: -Info 2 [16:01:02.000] Search path: /user/username/projects/myproject/main -Info 3 [16:01:03.000] For info: /user/username/projects/myproject/main/main.ts :: Config file name: /user/username/projects/myproject/main/tsconfig.json -Info 4 [16:01:04.000] Creating configuration project /user/username/projects/myproject/main/tsconfig.json -Info 5 [16:01:05.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/main/tsconfig.json 2000 undefined Project: /user/username/projects/myproject/main/tsconfig.json WatchType: Config file -Info 6 [16:01:06.000] Config: /user/username/projects/myproject/main/tsconfig.json : { +Info 2 [00:01:02.000] Search path: /user/username/projects/myproject/main +Info 3 [00:01:03.000] For info: /user/username/projects/myproject/main/main.ts :: Config file name: /user/username/projects/myproject/main/tsconfig.json +Info 4 [00:01:04.000] Creating configuration project /user/username/projects/myproject/main/tsconfig.json +Info 5 [00:01:05.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/main/tsconfig.json 2000 undefined Project: /user/username/projects/myproject/main/tsconfig.json WatchType: Config file +Info 6 [00:01:06.000] Config: /user/username/projects/myproject/main/tsconfig.json : { "rootNames": [ "/user/username/projects/myproject/main/main.ts" ], @@ -220,11 +220,11 @@ Info 6 [16:01:06.000] Config: /user/username/projects/myproject/main/tsconfig } ] } -Info 7 [16:01:07.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/main 1 undefined Config: /user/username/projects/myproject/main/tsconfig.json WatchType: Wild card directory -Info 8 [16:01:08.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/main 1 undefined Config: /user/username/projects/myproject/main/tsconfig.json WatchType: Wild card directory -Info 9 [16:01:09.000] Plugins were requested but not running in environment that supports 'require'. Nothing will be loaded -Info 10 [16:01:10.000] Starting updateGraphWorker: Project: /user/username/projects/myproject/main/tsconfig.json -Info 11 [16:01:11.000] Config: /user/username/projects/myproject/dependency/tsconfig.json : { +Info 7 [00:01:07.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/main 1 undefined Config: /user/username/projects/myproject/main/tsconfig.json WatchType: Wild card directory +Info 8 [00:01:08.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/main 1 undefined Config: /user/username/projects/myproject/main/tsconfig.json WatchType: Wild card directory +Info 9 [00:01:09.000] Plugins were requested but not running in environment that supports 'require'. Nothing will be loaded +Info 10 [00:01:10.000] Starting updateGraphWorker: Project: /user/username/projects/myproject/main/tsconfig.json +Info 11 [00:01:11.000] Config: /user/username/projects/myproject/dependency/tsconfig.json : { "rootNames": [ "/user/username/projects/myproject/dependency/FnS.ts" ], @@ -235,20 +235,20 @@ Info 11 [16:01:11.000] Config: /user/username/projects/myproject/dependency/ts "configFilePath": "/user/username/projects/myproject/dependency/tsconfig.json" } } -Info 12 [16:01:12.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/dependency/tsconfig.json 2000 undefined Project: /user/username/projects/myproject/main/tsconfig.json WatchType: Config file -Info 13 [16:01:13.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/dependency 1 undefined Config: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Wild card directory -Info 14 [16:01:14.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/dependency 1 undefined Config: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Wild card directory -Info 15 [16:01:15.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/decls 1 undefined Project: /user/username/projects/myproject/main/tsconfig.json WatchType: Failed Lookup Locations -Info 16 [16:01:16.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/decls 1 undefined Project: /user/username/projects/myproject/main/tsconfig.json WatchType: Failed Lookup Locations -Info 17 [16:01:17.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/dependency/FnS.ts 500 undefined WatchType: Closed Script info -Info 18 [16:01:18.000] FileWatcher:: Added:: WatchInfo: /a/lib/lib.d.ts 500 undefined WatchType: Closed Script info -Info 19 [16:01:19.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/main/node_modules/@types 1 undefined Project: /user/username/projects/myproject/main/tsconfig.json WatchType: Type roots -Info 20 [16:01:20.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/main/node_modules/@types 1 undefined Project: /user/username/projects/myproject/main/tsconfig.json WatchType: Type roots -Info 21 [16:01:21.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/main/tsconfig.json WatchType: Type roots -Info 22 [16:01:22.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/main/tsconfig.json WatchType: Type roots -Info 23 [16:01:23.000] Finishing updateGraphWorker: Project: /user/username/projects/myproject/main/tsconfig.json Version: 1 structureChanged: true structureIsReused:: Not Elapsed:: *ms -Info 24 [16:01:24.000] Project '/user/username/projects/myproject/main/tsconfig.json' (Configured) -Info 25 [16:01:25.000] Files (3) +Info 12 [00:01:12.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/dependency/tsconfig.json 2000 undefined Project: /user/username/projects/myproject/main/tsconfig.json WatchType: Config file +Info 13 [00:01:13.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/dependency 1 undefined Config: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Wild card directory +Info 14 [00:01:14.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/dependency 1 undefined Config: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Wild card directory +Info 15 [00:01:15.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/decls 1 undefined Project: /user/username/projects/myproject/main/tsconfig.json WatchType: Failed Lookup Locations +Info 16 [00:01:16.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/decls 1 undefined Project: /user/username/projects/myproject/main/tsconfig.json WatchType: Failed Lookup Locations +Info 17 [00:01:17.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/dependency/FnS.ts 500 undefined WatchType: Closed Script info +Info 18 [00:01:18.000] FileWatcher:: Added:: WatchInfo: /a/lib/lib.d.ts 500 undefined WatchType: Closed Script info +Info 19 [00:01:19.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/main/node_modules/@types 1 undefined Project: /user/username/projects/myproject/main/tsconfig.json WatchType: Type roots +Info 20 [00:01:20.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/main/node_modules/@types 1 undefined Project: /user/username/projects/myproject/main/tsconfig.json WatchType: Type roots +Info 21 [00:01:21.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/main/tsconfig.json WatchType: Type roots +Info 22 [00:01:22.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/main/tsconfig.json WatchType: Type roots +Info 23 [00:01:23.000] Finishing updateGraphWorker: Project: /user/username/projects/myproject/main/tsconfig.json Version: 1 structureChanged: true structureIsReused:: Not Elapsed:: *ms +Info 24 [00:01:24.000] Project '/user/username/projects/myproject/main/tsconfig.json' (Configured) +Info 25 [00:01:25.000] Files (3) /a/lib/lib.d.ts /user/username/projects/myproject/dependency/FnS.ts /user/username/projects/myproject/main/main.ts @@ -261,16 +261,16 @@ Info 25 [16:01:25.000] Files (3) main.ts Matched by default include pattern '**/*' -Info 26 [16:01:26.000] ----------------------------------------------- -Info 27 [16:01:27.000] Search path: /user/username/projects/myproject/main -Info 28 [16:01:28.000] For info: /user/username/projects/myproject/main/tsconfig.json :: No config files found. -Info 29 [16:01:29.000] Project '/user/username/projects/myproject/main/tsconfig.json' (Configured) -Info 29 [16:01:30.000] Files (3) +Info 26 [00:01:26.000] ----------------------------------------------- +Info 27 [00:01:27.000] Search path: /user/username/projects/myproject/main +Info 28 [00:01:28.000] For info: /user/username/projects/myproject/main/tsconfig.json :: No config files found. +Info 29 [00:01:29.000] Project '/user/username/projects/myproject/main/tsconfig.json' (Configured) +Info 29 [00:01:30.000] Files (3) -Info 29 [16:01:31.000] ----------------------------------------------- -Info 29 [16:01:32.000] Open files: -Info 29 [16:01:33.000] FileName: /user/username/projects/myproject/main/main.ts ProjectRootPath: undefined -Info 29 [16:01:34.000] Projects: /user/username/projects/myproject/main/tsconfig.json +Info 29 [00:01:31.000] ----------------------------------------------- +Info 29 [00:01:32.000] Open files: +Info 29 [00:01:33.000] FileName: /user/username/projects/myproject/main/main.ts ProjectRootPath: undefined +Info 29 [00:01:34.000] Projects: /user/username/projects/myproject/main/tsconfig.json After request PolledWatches:: @@ -297,11 +297,11 @@ FsWatchesRecursive:: /user/username/projects/myproject/decls: {} -Info 29 [16:01:35.000] response: +Info 29 [00:01:35.000] response: { "responseRequired": false } -Info 30 [16:01:36.000] request: +Info 30 [00:01:36.000] request: { "seq": 0, "type": "request", @@ -336,11 +336,11 @@ FsWatchesRecursive:: /user/username/projects/myproject/decls: {} -Info 31 [16:01:37.000] Search path: /user/username/projects/myproject/random -Info 32 [16:01:38.000] For info: /user/username/projects/myproject/random/random.ts :: Config file name: /user/username/projects/myproject/random/tsconfig.json -Info 33 [16:01:39.000] Creating configuration project /user/username/projects/myproject/random/tsconfig.json -Info 34 [16:01:40.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/random/tsconfig.json 2000 undefined Project: /user/username/projects/myproject/random/tsconfig.json WatchType: Config file -Info 35 [16:01:41.000] Config: /user/username/projects/myproject/random/tsconfig.json : { +Info 31 [00:01:37.000] Search path: /user/username/projects/myproject/random +Info 32 [00:01:38.000] For info: /user/username/projects/myproject/random/random.ts :: Config file name: /user/username/projects/myproject/random/tsconfig.json +Info 33 [00:01:39.000] Creating configuration project /user/username/projects/myproject/random/tsconfig.json +Info 34 [00:01:40.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/random/tsconfig.json 2000 undefined Project: /user/username/projects/myproject/random/tsconfig.json WatchType: Config file +Info 35 [00:01:41.000] Config: /user/username/projects/myproject/random/tsconfig.json : { "rootNames": [ "/user/username/projects/myproject/random/random.ts" ], @@ -348,17 +348,17 @@ Info 35 [16:01:41.000] Config: /user/username/projects/myproject/random/tsconf "configFilePath": "/user/username/projects/myproject/random/tsconfig.json" } } -Info 36 [16:01:42.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/random 1 undefined Config: /user/username/projects/myproject/random/tsconfig.json WatchType: Wild card directory -Info 37 [16:01:43.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/random 1 undefined Config: /user/username/projects/myproject/random/tsconfig.json WatchType: Wild card directory -Info 38 [16:01:44.000] Plugins were requested but not running in environment that supports 'require'. Nothing will be loaded -Info 39 [16:01:45.000] Starting updateGraphWorker: Project: /user/username/projects/myproject/random/tsconfig.json -Info 40 [16:01:46.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/random/node_modules/@types 1 undefined Project: /user/username/projects/myproject/random/tsconfig.json WatchType: Type roots -Info 41 [16:01:47.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/random/node_modules/@types 1 undefined Project: /user/username/projects/myproject/random/tsconfig.json WatchType: Type roots -Info 42 [16:01:48.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/random/tsconfig.json WatchType: Type roots -Info 43 [16:01:49.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/random/tsconfig.json WatchType: Type roots -Info 44 [16:01:50.000] Finishing updateGraphWorker: Project: /user/username/projects/myproject/random/tsconfig.json Version: 1 structureChanged: true structureIsReused:: Not Elapsed:: *ms -Info 45 [16:01:51.000] Project '/user/username/projects/myproject/random/tsconfig.json' (Configured) -Info 46 [16:01:52.000] Files (2) +Info 36 [00:01:42.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/random 1 undefined Config: /user/username/projects/myproject/random/tsconfig.json WatchType: Wild card directory +Info 37 [00:01:43.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/random 1 undefined Config: /user/username/projects/myproject/random/tsconfig.json WatchType: Wild card directory +Info 38 [00:01:44.000] Plugins were requested but not running in environment that supports 'require'. Nothing will be loaded +Info 39 [00:01:45.000] Starting updateGraphWorker: Project: /user/username/projects/myproject/random/tsconfig.json +Info 40 [00:01:46.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/random/node_modules/@types 1 undefined Project: /user/username/projects/myproject/random/tsconfig.json WatchType: Type roots +Info 41 [00:01:47.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/random/node_modules/@types 1 undefined Project: /user/username/projects/myproject/random/tsconfig.json WatchType: Type roots +Info 42 [00:01:48.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/random/tsconfig.json WatchType: Type roots +Info 43 [00:01:49.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/random/tsconfig.json WatchType: Type roots +Info 44 [00:01:50.000] Finishing updateGraphWorker: Project: /user/username/projects/myproject/random/tsconfig.json Version: 1 structureChanged: true structureIsReused:: Not Elapsed:: *ms +Info 45 [00:01:51.000] Project '/user/username/projects/myproject/random/tsconfig.json' (Configured) +Info 46 [00:01:52.000] Files (2) /a/lib/lib.d.ts /user/username/projects/myproject/random/random.ts @@ -368,20 +368,20 @@ Info 46 [16:01:52.000] Files (2) random.ts Matched by default include pattern '**/*' -Info 47 [16:01:53.000] ----------------------------------------------- -Info 48 [16:01:54.000] Project '/user/username/projects/myproject/main/tsconfig.json' (Configured) -Info 48 [16:01:55.000] Files (3) +Info 47 [00:01:53.000] ----------------------------------------------- +Info 48 [00:01:54.000] Project '/user/username/projects/myproject/main/tsconfig.json' (Configured) +Info 48 [00:01:55.000] Files (3) -Info 48 [16:01:56.000] ----------------------------------------------- -Info 48 [16:01:57.000] Project '/user/username/projects/myproject/random/tsconfig.json' (Configured) -Info 48 [16:01:58.000] Files (2) +Info 48 [00:01:56.000] ----------------------------------------------- +Info 48 [00:01:57.000] Project '/user/username/projects/myproject/random/tsconfig.json' (Configured) +Info 48 [00:01:58.000] Files (2) -Info 48 [16:01:59.000] ----------------------------------------------- -Info 48 [16:02:00.000] Open files: -Info 48 [16:02:01.000] FileName: /user/username/projects/myproject/main/main.ts ProjectRootPath: undefined -Info 48 [16:02:02.000] Projects: /user/username/projects/myproject/main/tsconfig.json -Info 48 [16:02:03.000] FileName: /user/username/projects/myproject/random/random.ts ProjectRootPath: undefined -Info 48 [16:02:04.000] Projects: /user/username/projects/myproject/random/tsconfig.json +Info 48 [00:01:59.000] ----------------------------------------------- +Info 48 [00:02:00.000] Open files: +Info 48 [00:02:01.000] FileName: /user/username/projects/myproject/main/main.ts ProjectRootPath: undefined +Info 48 [00:02:02.000] Projects: /user/username/projects/myproject/main/tsconfig.json +Info 48 [00:02:03.000] FileName: /user/username/projects/myproject/random/random.ts ProjectRootPath: undefined +Info 48 [00:02:04.000] Projects: /user/username/projects/myproject/random/tsconfig.json After request PolledWatches:: @@ -414,11 +414,11 @@ FsWatchesRecursive:: /user/username/projects/myproject/random: {} -Info 48 [16:02:05.000] response: +Info 48 [00:02:05.000] response: { "responseRequired": false } -Info 49 [16:02:06.000] request: +Info 49 [00:02:06.000] request: { "command": "definitionAndBoundSpan", "arguments": { @@ -493,7 +493,7 @@ FsWatchesRecursive:: /user/username/projects/myproject/random: {} -Info 50 [16:02:07.000] response: +Info 50 [00:02:07.000] response: { "response": { "definitions": [ @@ -530,7 +530,7 @@ Info 50 [16:02:07.000] response: }, "responseRequired": true } -Info 51 [16:02:08.000] request: +Info 51 [00:02:08.000] request: { "command": "change", "arguments": { @@ -608,11 +608,11 @@ FsWatchesRecursive:: /user/username/projects/myproject/random: {} -Info 52 [16:02:09.000] response: +Info 52 [00:02:09.000] response: { "responseRequired": false } -Info 53 [16:02:10.000] request: +Info 53 [00:02:10.000] request: { "command": "definitionAndBoundSpan", "arguments": { @@ -655,9 +655,9 @@ FsWatchesRecursive:: /user/username/projects/myproject/random: {} -Info 54 [16:02:11.000] Starting updateGraphWorker: Project: /user/username/projects/myproject/main/tsconfig.json -Info 55 [16:02:12.000] Finishing updateGraphWorker: Project: /user/username/projects/myproject/main/tsconfig.json Version: 2 structureChanged: false structureIsReused:: Completely Elapsed:: *ms -Info 56 [16:02:13.000] Different program with same set of files +Info 54 [00:02:11.000] Starting updateGraphWorker: Project: /user/username/projects/myproject/main/tsconfig.json +Info 55 [00:02:12.000] Finishing updateGraphWorker: Project: /user/username/projects/myproject/main/tsconfig.json Version: 2 structureChanged: false structureIsReused:: Completely Elapsed:: *ms +Info 56 [00:02:13.000] Different program with same set of files After request PolledWatches:: @@ -690,7 +690,7 @@ FsWatchesRecursive:: /user/username/projects/myproject/random: {} -Info 57 [16:02:14.000] response: +Info 57 [00:02:14.000] response: { "response": { "definitions": [ @@ -727,7 +727,7 @@ Info 57 [16:02:14.000] response: }, "responseRequired": true } -Info 58 [16:02:15.000] request: +Info 58 [00:02:15.000] request: { "command": "definitionAndBoundSpan", "arguments": { @@ -802,7 +802,7 @@ FsWatchesRecursive:: /user/username/projects/myproject/random: {} -Info 59 [16:02:16.000] response: +Info 59 [00:02:16.000] response: { "response": { "definitions": [ @@ -839,7 +839,7 @@ Info 59 [16:02:16.000] response: }, "responseRequired": true } -Info 60 [16:02:17.000] request: +Info 60 [00:02:17.000] request: { "command": "definitionAndBoundSpan", "arguments": { @@ -914,7 +914,7 @@ FsWatchesRecursive:: /user/username/projects/myproject/random: {} -Info 61 [16:02:18.000] response: +Info 61 [00:02:18.000] response: { "response": { "definitions": [ @@ -951,7 +951,7 @@ Info 61 [16:02:18.000] response: }, "responseRequired": true } -Info 62 [16:02:19.000] request: +Info 62 [00:02:19.000] request: { "command": "definitionAndBoundSpan", "arguments": { @@ -1026,7 +1026,7 @@ FsWatchesRecursive:: /user/username/projects/myproject/random: {} -Info 63 [16:02:20.000] response: +Info 63 [00:02:20.000] response: { "response": { "definitions": [ @@ -1063,7 +1063,7 @@ Info 63 [16:02:20.000] response: }, "responseRequired": true } -Info 64 [16:02:21.000] request: +Info 64 [00:02:21.000] request: { "command": "definitionAndBoundSpan", "arguments": { @@ -1138,7 +1138,7 @@ FsWatchesRecursive:: /user/username/projects/myproject/random: {} -Info 65 [16:02:22.000] response: +Info 65 [00:02:22.000] response: { "response": { "definitions": [ 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 040f8d29cbdec..710e2ea179366 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 @@ -1,5 +1,5 @@ -Info 0 [16:00:35.000] Provided types map file "/a/lib/typesMap.json" doesn't exist -Info 1 [16:00:36.000] request: +Info 0 [00:00:35.000] Provided types map file "/a/lib/typesMap.json" doesn't exist +Info 1 [00:00:36.000] request: { "seq": 0, "type": "request", @@ -65,11 +65,11 @@ FsWatches:: FsWatchesRecursive:: -Info 2 [16:00:37.000] Search path: /user/username/projects/myproject/main -Info 3 [16:00:38.000] For info: /user/username/projects/myproject/main/main.ts :: Config file name: /user/username/projects/myproject/main/tsconfig.json -Info 4 [16:00:39.000] Creating configuration project /user/username/projects/myproject/main/tsconfig.json -Info 5 [16:00:40.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/main/tsconfig.json 2000 undefined Project: /user/username/projects/myproject/main/tsconfig.json WatchType: Config file -Info 6 [16:00:41.000] Config: /user/username/projects/myproject/main/tsconfig.json : { +Info 2 [00:00:37.000] Search path: /user/username/projects/myproject/main +Info 3 [00:00:38.000] For info: /user/username/projects/myproject/main/main.ts :: Config file name: /user/username/projects/myproject/main/tsconfig.json +Info 4 [00:00:39.000] Creating configuration project /user/username/projects/myproject/main/tsconfig.json +Info 5 [00:00:40.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/main/tsconfig.json 2000 undefined Project: /user/username/projects/myproject/main/tsconfig.json WatchType: Config file +Info 6 [00:00:41.000] Config: /user/username/projects/myproject/main/tsconfig.json : { "rootNames": [ "/user/username/projects/myproject/main/main.ts" ], @@ -85,11 +85,11 @@ Info 6 [16:00:41.000] Config: /user/username/projects/myproject/main/tsconfig } ] } -Info 7 [16:00:42.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/main 1 undefined Config: /user/username/projects/myproject/main/tsconfig.json WatchType: Wild card directory -Info 8 [16:00:43.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/main 1 undefined Config: /user/username/projects/myproject/main/tsconfig.json WatchType: Wild card directory -Info 9 [16:00:44.000] Plugins were requested but not running in environment that supports 'require'. Nothing will be loaded -Info 10 [16:00:45.000] Starting updateGraphWorker: Project: /user/username/projects/myproject/main/tsconfig.json -Info 11 [16:00:46.000] Config: /user/username/projects/myproject/dependency/tsconfig.json : { +Info 7 [00:00:42.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/main 1 undefined Config: /user/username/projects/myproject/main/tsconfig.json WatchType: Wild card directory +Info 8 [00:00:43.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/main 1 undefined Config: /user/username/projects/myproject/main/tsconfig.json WatchType: Wild card directory +Info 9 [00:00:44.000] Plugins were requested but not running in environment that supports 'require'. Nothing will be loaded +Info 10 [00:00:45.000] Starting updateGraphWorker: Project: /user/username/projects/myproject/main/tsconfig.json +Info 11 [00:00:46.000] Config: /user/username/projects/myproject/dependency/tsconfig.json : { "rootNames": [ "/user/username/projects/myproject/dependency/FnS.ts" ], @@ -100,20 +100,20 @@ Info 11 [16:00:46.000] Config: /user/username/projects/myproject/dependency/ts "configFilePath": "/user/username/projects/myproject/dependency/tsconfig.json" } } -Info 12 [16:00:47.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/dependency/tsconfig.json 2000 undefined Project: /user/username/projects/myproject/main/tsconfig.json WatchType: Config file -Info 13 [16:00:48.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/dependency 1 undefined Config: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Wild card directory -Info 14 [16:00:49.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/dependency 1 undefined Config: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Wild card directory -Info 15 [16:00:50.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/decls 1 undefined Project: /user/username/projects/myproject/main/tsconfig.json WatchType: Failed Lookup Locations -Info 16 [16:00:51.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/decls 1 undefined Project: /user/username/projects/myproject/main/tsconfig.json WatchType: Failed Lookup Locations -Info 17 [16:00:52.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/dependency/FnS.ts 500 undefined WatchType: Closed Script info -Info 18 [16:00:53.000] FileWatcher:: Added:: WatchInfo: /a/lib/lib.d.ts 500 undefined WatchType: Closed Script info -Info 19 [16:00:54.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/main/node_modules/@types 1 undefined Project: /user/username/projects/myproject/main/tsconfig.json WatchType: Type roots -Info 20 [16:00:55.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/main/node_modules/@types 1 undefined Project: /user/username/projects/myproject/main/tsconfig.json WatchType: Type roots -Info 21 [16:00:56.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/main/tsconfig.json WatchType: Type roots -Info 22 [16:00:57.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/main/tsconfig.json WatchType: Type roots -Info 23 [16:00:58.000] Finishing updateGraphWorker: Project: /user/username/projects/myproject/main/tsconfig.json Version: 1 structureChanged: true structureIsReused:: Not Elapsed:: *ms -Info 24 [16:00:59.000] Project '/user/username/projects/myproject/main/tsconfig.json' (Configured) -Info 25 [16:01:00.000] Files (3) +Info 12 [00:00:47.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/dependency/tsconfig.json 2000 undefined Project: /user/username/projects/myproject/main/tsconfig.json WatchType: Config file +Info 13 [00:00:48.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/dependency 1 undefined Config: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Wild card directory +Info 14 [00:00:49.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/dependency 1 undefined Config: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Wild card directory +Info 15 [00:00:50.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/decls 1 undefined Project: /user/username/projects/myproject/main/tsconfig.json WatchType: Failed Lookup Locations +Info 16 [00:00:51.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/decls 1 undefined Project: /user/username/projects/myproject/main/tsconfig.json WatchType: Failed Lookup Locations +Info 17 [00:00:52.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/dependency/FnS.ts 500 undefined WatchType: Closed Script info +Info 18 [00:00:53.000] FileWatcher:: Added:: WatchInfo: /a/lib/lib.d.ts 500 undefined WatchType: Closed Script info +Info 19 [00:00:54.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/main/node_modules/@types 1 undefined Project: /user/username/projects/myproject/main/tsconfig.json WatchType: Type roots +Info 20 [00:00:55.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/main/node_modules/@types 1 undefined Project: /user/username/projects/myproject/main/tsconfig.json WatchType: Type roots +Info 21 [00:00:56.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/main/tsconfig.json WatchType: Type roots +Info 22 [00:00:57.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/main/tsconfig.json WatchType: Type roots +Info 23 [00:00:58.000] Finishing updateGraphWorker: Project: /user/username/projects/myproject/main/tsconfig.json Version: 1 structureChanged: true structureIsReused:: Not Elapsed:: *ms +Info 24 [00:00:59.000] Project '/user/username/projects/myproject/main/tsconfig.json' (Configured) +Info 25 [00:01:00.000] Files (3) /a/lib/lib.d.ts /user/username/projects/myproject/dependency/FnS.ts /user/username/projects/myproject/main/main.ts @@ -126,16 +126,16 @@ Info 25 [16:01:00.000] Files (3) main.ts Matched by default include pattern '**/*' -Info 26 [16:01:01.000] ----------------------------------------------- -Info 27 [16:01:02.000] Search path: /user/username/projects/myproject/main -Info 28 [16:01:03.000] For info: /user/username/projects/myproject/main/tsconfig.json :: No config files found. -Info 29 [16:01:04.000] Project '/user/username/projects/myproject/main/tsconfig.json' (Configured) -Info 29 [16:01:05.000] Files (3) +Info 26 [00:01:01.000] ----------------------------------------------- +Info 27 [00:01:02.000] Search path: /user/username/projects/myproject/main +Info 28 [00:01:03.000] For info: /user/username/projects/myproject/main/tsconfig.json :: No config files found. +Info 29 [00:01:04.000] Project '/user/username/projects/myproject/main/tsconfig.json' (Configured) +Info 29 [00:01:05.000] Files (3) -Info 29 [16:01:06.000] ----------------------------------------------- -Info 29 [16:01:07.000] Open files: -Info 29 [16:01:08.000] FileName: /user/username/projects/myproject/main/main.ts ProjectRootPath: undefined -Info 29 [16:01:09.000] Projects: /user/username/projects/myproject/main/tsconfig.json +Info 29 [00:01:06.000] ----------------------------------------------- +Info 29 [00:01:07.000] Open files: +Info 29 [00:01:08.000] FileName: /user/username/projects/myproject/main/main.ts ProjectRootPath: undefined +Info 29 [00:01:09.000] Projects: /user/username/projects/myproject/main/tsconfig.json After request PolledWatches:: @@ -162,11 +162,11 @@ FsWatchesRecursive:: /user/username/projects/myproject/dependency: {} -Info 29 [16:01:10.000] response: +Info 29 [00:01:10.000] response: { "responseRequired": false } -Info 30 [16:01:11.000] request: +Info 30 [00:01:11.000] request: { "seq": 0, "type": "request", @@ -201,11 +201,11 @@ FsWatchesRecursive:: /user/username/projects/myproject/dependency: {} -Info 31 [16:01:12.000] Search path: /user/username/projects/myproject/random -Info 32 [16:01:13.000] For info: /user/username/projects/myproject/random/random.ts :: Config file name: /user/username/projects/myproject/random/tsconfig.json -Info 33 [16:01:14.000] Creating configuration project /user/username/projects/myproject/random/tsconfig.json -Info 34 [16:01:15.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/random/tsconfig.json 2000 undefined Project: /user/username/projects/myproject/random/tsconfig.json WatchType: Config file -Info 35 [16:01:16.000] Config: /user/username/projects/myproject/random/tsconfig.json : { +Info 31 [00:01:12.000] Search path: /user/username/projects/myproject/random +Info 32 [00:01:13.000] For info: /user/username/projects/myproject/random/random.ts :: Config file name: /user/username/projects/myproject/random/tsconfig.json +Info 33 [00:01:14.000] Creating configuration project /user/username/projects/myproject/random/tsconfig.json +Info 34 [00:01:15.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/random/tsconfig.json 2000 undefined Project: /user/username/projects/myproject/random/tsconfig.json WatchType: Config file +Info 35 [00:01:16.000] Config: /user/username/projects/myproject/random/tsconfig.json : { "rootNames": [ "/user/username/projects/myproject/random/random.ts" ], @@ -213,17 +213,17 @@ Info 35 [16:01:16.000] Config: /user/username/projects/myproject/random/tsconf "configFilePath": "/user/username/projects/myproject/random/tsconfig.json" } } -Info 36 [16:01:17.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/random 1 undefined Config: /user/username/projects/myproject/random/tsconfig.json WatchType: Wild card directory -Info 37 [16:01:18.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/random 1 undefined Config: /user/username/projects/myproject/random/tsconfig.json WatchType: Wild card directory -Info 38 [16:01:19.000] Plugins were requested but not running in environment that supports 'require'. Nothing will be loaded -Info 39 [16:01:20.000] Starting updateGraphWorker: Project: /user/username/projects/myproject/random/tsconfig.json -Info 40 [16:01:21.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/random/node_modules/@types 1 undefined Project: /user/username/projects/myproject/random/tsconfig.json WatchType: Type roots -Info 41 [16:01:22.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/random/node_modules/@types 1 undefined Project: /user/username/projects/myproject/random/tsconfig.json WatchType: Type roots -Info 42 [16:01:23.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/random/tsconfig.json WatchType: Type roots -Info 43 [16:01:24.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/random/tsconfig.json WatchType: Type roots -Info 44 [16:01:25.000] Finishing updateGraphWorker: Project: /user/username/projects/myproject/random/tsconfig.json Version: 1 structureChanged: true structureIsReused:: Not Elapsed:: *ms -Info 45 [16:01:26.000] Project '/user/username/projects/myproject/random/tsconfig.json' (Configured) -Info 46 [16:01:27.000] Files (2) +Info 36 [00:01:17.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/random 1 undefined Config: /user/username/projects/myproject/random/tsconfig.json WatchType: Wild card directory +Info 37 [00:01:18.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/random 1 undefined Config: /user/username/projects/myproject/random/tsconfig.json WatchType: Wild card directory +Info 38 [00:01:19.000] Plugins were requested but not running in environment that supports 'require'. Nothing will be loaded +Info 39 [00:01:20.000] Starting updateGraphWorker: Project: /user/username/projects/myproject/random/tsconfig.json +Info 40 [00:01:21.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/random/node_modules/@types 1 undefined Project: /user/username/projects/myproject/random/tsconfig.json WatchType: Type roots +Info 41 [00:01:22.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/random/node_modules/@types 1 undefined Project: /user/username/projects/myproject/random/tsconfig.json WatchType: Type roots +Info 42 [00:01:23.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/random/tsconfig.json WatchType: Type roots +Info 43 [00:01:24.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/random/tsconfig.json WatchType: Type roots +Info 44 [00:01:25.000] Finishing updateGraphWorker: Project: /user/username/projects/myproject/random/tsconfig.json Version: 1 structureChanged: true structureIsReused:: Not Elapsed:: *ms +Info 45 [00:01:26.000] Project '/user/username/projects/myproject/random/tsconfig.json' (Configured) +Info 46 [00:01:27.000] Files (2) /a/lib/lib.d.ts /user/username/projects/myproject/random/random.ts @@ -233,20 +233,20 @@ Info 46 [16:01:27.000] Files (2) random.ts Matched by default include pattern '**/*' -Info 47 [16:01:28.000] ----------------------------------------------- -Info 48 [16:01:29.000] Project '/user/username/projects/myproject/main/tsconfig.json' (Configured) -Info 48 [16:01:30.000] Files (3) +Info 47 [00:01:28.000] ----------------------------------------------- +Info 48 [00:01:29.000] Project '/user/username/projects/myproject/main/tsconfig.json' (Configured) +Info 48 [00:01:30.000] Files (3) -Info 48 [16:01:31.000] ----------------------------------------------- -Info 48 [16:01:32.000] Project '/user/username/projects/myproject/random/tsconfig.json' (Configured) -Info 48 [16:01:33.000] Files (2) +Info 48 [00:01:31.000] ----------------------------------------------- +Info 48 [00:01:32.000] Project '/user/username/projects/myproject/random/tsconfig.json' (Configured) +Info 48 [00:01:33.000] Files (2) -Info 48 [16:01:34.000] ----------------------------------------------- -Info 48 [16:01:35.000] Open files: -Info 48 [16:01:36.000] FileName: /user/username/projects/myproject/main/main.ts ProjectRootPath: undefined -Info 48 [16:01:37.000] Projects: /user/username/projects/myproject/main/tsconfig.json -Info 48 [16:01:38.000] FileName: /user/username/projects/myproject/random/random.ts ProjectRootPath: undefined -Info 48 [16:01:39.000] Projects: /user/username/projects/myproject/random/tsconfig.json +Info 48 [00:01:34.000] ----------------------------------------------- +Info 48 [00:01:35.000] Open files: +Info 48 [00:01:36.000] FileName: /user/username/projects/myproject/main/main.ts ProjectRootPath: undefined +Info 48 [00:01:37.000] Projects: /user/username/projects/myproject/main/tsconfig.json +Info 48 [00:01:38.000] FileName: /user/username/projects/myproject/random/random.ts ProjectRootPath: undefined +Info 48 [00:01:39.000] Projects: /user/username/projects/myproject/random/tsconfig.json After request PolledWatches:: @@ -279,11 +279,11 @@ FsWatchesRecursive:: /user/username/projects/myproject/random: {} -Info 48 [16:01:40.000] response: +Info 48 [00:01:40.000] response: { "responseRequired": false } -Info 49 [16:01:41.000] request: +Info 49 [00:01:41.000] request: { "command": "definitionAndBoundSpan", "arguments": { @@ -358,7 +358,7 @@ FsWatchesRecursive:: /user/username/projects/myproject/random: {} -Info 50 [16:01:42.000] response: +Info 50 [00:01:42.000] response: { "response": { "definitions": [ @@ -395,7 +395,7 @@ Info 50 [16:01:42.000] response: }, "responseRequired": true } -Info 51 [16:01:43.000] request: +Info 51 [00:01:43.000] request: { "command": "definitionAndBoundSpan", "arguments": { @@ -470,7 +470,7 @@ FsWatchesRecursive:: /user/username/projects/myproject/random: {} -Info 52 [16:01:44.000] response: +Info 52 [00:01:44.000] response: { "response": { "definitions": [ @@ -507,7 +507,7 @@ Info 52 [16:01:44.000] response: }, "responseRequired": true } -Info 53 [16:01:45.000] request: +Info 53 [00:01:45.000] request: { "command": "definitionAndBoundSpan", "arguments": { @@ -582,7 +582,7 @@ FsWatchesRecursive:: /user/username/projects/myproject/random: {} -Info 54 [16:01:46.000] response: +Info 54 [00:01:46.000] response: { "response": { "definitions": [ @@ -619,7 +619,7 @@ Info 54 [16:01:46.000] response: }, "responseRequired": true } -Info 55 [16:01:47.000] request: +Info 55 [00:01:47.000] request: { "command": "definitionAndBoundSpan", "arguments": { @@ -694,7 +694,7 @@ FsWatchesRecursive:: /user/username/projects/myproject/random: {} -Info 56 [16:01:48.000] response: +Info 56 [00:01:48.000] response: { "response": { "definitions": [ @@ -731,7 +731,7 @@ Info 56 [16:01:48.000] response: }, "responseRequired": true } -Info 57 [16:01:49.000] request: +Info 57 [00:01:49.000] request: { "command": "definitionAndBoundSpan", "arguments": { @@ -806,7 +806,7 @@ FsWatchesRecursive:: /user/username/projects/myproject/random: {} -Info 58 [16:01:50.000] response: +Info 58 [00:01:50.000] response: { "response": { "definitions": [ @@ -843,7 +843,7 @@ Info 58 [16:01:50.000] response: }, "responseRequired": true } -Info 59 [16:01:51.000] request: +Info 59 [00:01:51.000] request: { "seq": 0, "type": "request", @@ -884,18 +884,18 @@ FsWatchesRecursive:: /user/username/projects/myproject/random: {} -Info 60 [16:01:52.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/random/random.ts 500 undefined WatchType: Closed Script info -Info 61 [16:01:53.000] Project '/user/username/projects/myproject/main/tsconfig.json' (Configured) -Info 61 [16:01:54.000] Files (3) +Info 60 [00:01:52.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/random/random.ts 500 undefined WatchType: Closed Script info +Info 61 [00:01:53.000] Project '/user/username/projects/myproject/main/tsconfig.json' (Configured) +Info 61 [00:01:54.000] Files (3) -Info 61 [16:01:55.000] ----------------------------------------------- -Info 61 [16:01:56.000] Project '/user/username/projects/myproject/random/tsconfig.json' (Configured) -Info 61 [16:01:57.000] Files (2) +Info 61 [00:01:55.000] ----------------------------------------------- +Info 61 [00:01:56.000] Project '/user/username/projects/myproject/random/tsconfig.json' (Configured) +Info 61 [00:01:57.000] Files (2) -Info 61 [16:01:58.000] ----------------------------------------------- -Info 61 [16:01:59.000] Open files: -Info 61 [16:02:00.000] FileName: /user/username/projects/myproject/main/main.ts ProjectRootPath: undefined -Info 61 [16:02:01.000] Projects: /user/username/projects/myproject/main/tsconfig.json +Info 61 [00:01:58.000] ----------------------------------------------- +Info 61 [00:01:59.000] Open files: +Info 61 [00:02:00.000] FileName: /user/username/projects/myproject/main/main.ts ProjectRootPath: undefined +Info 61 [00:02:01.000] Projects: /user/username/projects/myproject/main/tsconfig.json After request PolledWatches:: @@ -930,11 +930,11 @@ FsWatchesRecursive:: /user/username/projects/myproject/random: {} -Info 61 [16:02:02.000] response: +Info 61 [00:02:02.000] response: { "responseRequired": false } -Info 62 [16:02:03.000] request: +Info 62 [00:02:03.000] request: { "seq": 0, "type": "request", @@ -977,22 +977,22 @@ FsWatchesRecursive:: /user/username/projects/myproject/random: {} -Info 63 [16:02:04.000] FileWatcher:: Close:: WatchInfo: /user/username/projects/myproject/random/random.ts 500 undefined WatchType: Closed Script info -Info 64 [16:02:05.000] Search path: /user/username/projects/myproject/random -Info 65 [16:02:06.000] For info: /user/username/projects/myproject/random/random.ts :: Config file name: /user/username/projects/myproject/random/tsconfig.json -Info 66 [16:02:07.000] Project '/user/username/projects/myproject/main/tsconfig.json' (Configured) -Info 66 [16:02:08.000] Files (3) +Info 63 [00:02:04.000] FileWatcher:: Close:: WatchInfo: /user/username/projects/myproject/random/random.ts 500 undefined WatchType: Closed Script info +Info 64 [00:02:05.000] Search path: /user/username/projects/myproject/random +Info 65 [00:02:06.000] For info: /user/username/projects/myproject/random/random.ts :: Config file name: /user/username/projects/myproject/random/tsconfig.json +Info 66 [00:02:07.000] Project '/user/username/projects/myproject/main/tsconfig.json' (Configured) +Info 66 [00:02:08.000] Files (3) -Info 66 [16:02:09.000] ----------------------------------------------- -Info 66 [16:02:10.000] Project '/user/username/projects/myproject/random/tsconfig.json' (Configured) -Info 66 [16:02:11.000] Files (2) +Info 66 [00:02:09.000] ----------------------------------------------- +Info 66 [00:02:10.000] Project '/user/username/projects/myproject/random/tsconfig.json' (Configured) +Info 66 [00:02:11.000] Files (2) -Info 66 [16:02:12.000] ----------------------------------------------- -Info 66 [16:02:13.000] Open files: -Info 66 [16:02:14.000] FileName: /user/username/projects/myproject/main/main.ts ProjectRootPath: undefined -Info 66 [16:02:15.000] Projects: /user/username/projects/myproject/main/tsconfig.json -Info 66 [16:02:16.000] FileName: /user/username/projects/myproject/random/random.ts ProjectRootPath: undefined -Info 66 [16:02:17.000] Projects: /user/username/projects/myproject/random/tsconfig.json +Info 66 [00:02:12.000] ----------------------------------------------- +Info 66 [00:02:13.000] Open files: +Info 66 [00:02:14.000] FileName: /user/username/projects/myproject/main/main.ts ProjectRootPath: undefined +Info 66 [00:02:15.000] Projects: /user/username/projects/myproject/main/tsconfig.json +Info 66 [00:02:16.000] FileName: /user/username/projects/myproject/random/random.ts ProjectRootPath: undefined +Info 66 [00:02:17.000] Projects: /user/username/projects/myproject/random/tsconfig.json After request PolledWatches:: @@ -1025,11 +1025,11 @@ FsWatchesRecursive:: /user/username/projects/myproject/random: {} -Info 66 [16:02:18.000] response: +Info 66 [00:02:18.000] response: { "responseRequired": false } -Info 67 [16:02:19.000] request: +Info 67 [00:02:19.000] request: { "seq": 0, "type": "request", @@ -1070,18 +1070,18 @@ FsWatchesRecursive:: /user/username/projects/myproject/random: {} -Info 68 [16:02:20.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/main/main.ts 500 undefined WatchType: Closed Script info -Info 69 [16:02:21.000] Project '/user/username/projects/myproject/main/tsconfig.json' (Configured) -Info 69 [16:02:22.000] Files (3) +Info 68 [00:02:20.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/main/main.ts 500 undefined WatchType: Closed Script info +Info 69 [00:02:21.000] Project '/user/username/projects/myproject/main/tsconfig.json' (Configured) +Info 69 [00:02:22.000] Files (3) -Info 69 [16:02:23.000] ----------------------------------------------- -Info 69 [16:02:24.000] Project '/user/username/projects/myproject/random/tsconfig.json' (Configured) -Info 69 [16:02:25.000] Files (2) +Info 69 [00:02:23.000] ----------------------------------------------- +Info 69 [00:02:24.000] Project '/user/username/projects/myproject/random/tsconfig.json' (Configured) +Info 69 [00:02:25.000] Files (2) -Info 69 [16:02:26.000] ----------------------------------------------- -Info 69 [16:02:27.000] Open files: -Info 69 [16:02:28.000] FileName: /user/username/projects/myproject/random/random.ts ProjectRootPath: undefined -Info 69 [16:02:29.000] Projects: /user/username/projects/myproject/random/tsconfig.json +Info 69 [00:02:26.000] ----------------------------------------------- +Info 69 [00:02:27.000] Open files: +Info 69 [00:02:28.000] FileName: /user/username/projects/myproject/random/random.ts ProjectRootPath: undefined +Info 69 [00:02:29.000] Projects: /user/username/projects/myproject/random/tsconfig.json After request PolledWatches:: @@ -1116,11 +1116,11 @@ FsWatchesRecursive:: /user/username/projects/myproject/random: {} -Info 69 [16:02:30.000] response: +Info 69 [00:02:30.000] response: { "responseRequired": false } -Info 70 [16:02:31.000] request: +Info 70 [00:02:31.000] request: { "seq": 0, "type": "request", @@ -1163,16 +1163,16 @@ FsWatchesRecursive:: /user/username/projects/myproject/random: {} -Info 71 [16:02:32.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/random/random.ts 500 undefined WatchType: Closed Script info -Info 72 [16:02:33.000] Project '/user/username/projects/myproject/main/tsconfig.json' (Configured) -Info 72 [16:02:34.000] Files (3) +Info 71 [00:02:32.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/random/random.ts 500 undefined WatchType: Closed Script info +Info 72 [00:02:33.000] Project '/user/username/projects/myproject/main/tsconfig.json' (Configured) +Info 72 [00:02:34.000] Files (3) -Info 72 [16:02:35.000] ----------------------------------------------- -Info 72 [16:02:36.000] Project '/user/username/projects/myproject/random/tsconfig.json' (Configured) -Info 72 [16:02:37.000] Files (2) +Info 72 [00:02:35.000] ----------------------------------------------- +Info 72 [00:02:36.000] Project '/user/username/projects/myproject/random/tsconfig.json' (Configured) +Info 72 [00:02:37.000] Files (2) -Info 72 [16:02:38.000] ----------------------------------------------- -Info 72 [16:02:39.000] Open files: +Info 72 [00:02:38.000] ----------------------------------------------- +Info 72 [00:02:39.000] Open files: After request PolledWatches:: @@ -1209,11 +1209,11 @@ FsWatchesRecursive:: /user/username/projects/myproject/random: {} -Info 72 [16:02:40.000] response: +Info 72 [00:02:40.000] response: { "responseRequired": false } -Info 73 [16:02:41.000] request: +Info 73 [00:02:41.000] request: { "seq": 0, "type": "request", @@ -1258,12 +1258,12 @@ FsWatchesRecursive:: /user/username/projects/myproject/random: {} -Info 74 [16:02:42.000] FileWatcher:: Close:: WatchInfo: /user/username/projects/myproject/random/random.ts 500 undefined WatchType: Closed Script info -Info 75 [16:02:43.000] Search path: /user/username/projects/myproject/random -Info 76 [16:02:44.000] For info: /user/username/projects/myproject/random/random.ts :: Config file name: /user/username/projects/myproject/random/tsconfig.json -Info 77 [16:02:45.000] `remove Project:: -Info 78 [16:02:46.000] Project '/user/username/projects/myproject/main/tsconfig.json' (Configured) -Info 79 [16:02:47.000] Files (3) +Info 74 [00:02:42.000] FileWatcher:: Close:: WatchInfo: /user/username/projects/myproject/random/random.ts 500 undefined WatchType: Closed Script info +Info 75 [00:02:43.000] Search path: /user/username/projects/myproject/random +Info 76 [00:02:44.000] For info: /user/username/projects/myproject/random/random.ts :: Config file name: /user/username/projects/myproject/random/tsconfig.json +Info 77 [00:02:45.000] `remove Project:: +Info 78 [00:02:46.000] Project '/user/username/projects/myproject/main/tsconfig.json' (Configured) +Info 79 [00:02:47.000] Files (3) /a/lib/lib.d.ts /user/username/projects/myproject/dependency/FnS.ts /user/username/projects/myproject/main/main.ts @@ -1276,28 +1276,28 @@ Info 79 [16:02:47.000] Files (3) main.ts Matched by default include pattern '**/*' -Info 80 [16:02:48.000] ----------------------------------------------- -Info 81 [16:02:49.000] DirectoryWatcher:: Close:: WatchInfo: /user/username/projects/myproject/main 1 undefined Config: /user/username/projects/myproject/main/tsconfig.json WatchType: Wild card directory -Info 82 [16:02:50.000] 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 83 [16:02:51.000] FileWatcher:: Close:: WatchInfo: /user/username/projects/myproject/main/tsconfig.json 2000 undefined Project: /user/username/projects/myproject/main/tsconfig.json WatchType: Config file -Info 84 [16:02:52.000] DirectoryWatcher:: Close:: WatchInfo: /user/username/projects/myproject/dependency 1 undefined Config: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Wild card directory -Info 85 [16:02:53.000] 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 86 [16:02:54.000] FileWatcher:: Close:: WatchInfo: /user/username/projects/myproject/dependency/tsconfig.json 2000 undefined Project: /user/username/projects/myproject/main/tsconfig.json WatchType: Config file -Info 87 [16:02:55.000] DirectoryWatcher:: Close:: WatchInfo: /user/username/projects/myproject/decls 1 undefined Project: /user/username/projects/myproject/main/tsconfig.json WatchType: Failed Lookup Locations -Info 88 [16:02:56.000] 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 89 [16:02:57.000] 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 90 [16:02:58.000] 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 91 [16:02:59.000] DirectoryWatcher:: Close:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/main/tsconfig.json WatchType: Type roots -Info 92 [16:03:00.000] 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 93 [16:03:01.000] FileWatcher:: Close:: WatchInfo: /user/username/projects/myproject/main/main.ts 500 undefined WatchType: Closed Script info -Info 94 [16:03:02.000] FileWatcher:: Close:: WatchInfo: /user/username/projects/myproject/dependency/FnS.ts 500 undefined WatchType: Closed Script info -Info 95 [16:03:03.000] Project '/user/username/projects/myproject/random/tsconfig.json' (Configured) -Info 95 [16:03:04.000] Files (2) - -Info 95 [16:03:05.000] ----------------------------------------------- -Info 95 [16:03:06.000] Open files: -Info 95 [16:03:07.000] FileName: /user/username/projects/myproject/random/random.ts ProjectRootPath: undefined -Info 95 [16:03:08.000] Projects: /user/username/projects/myproject/random/tsconfig.json +Info 80 [00:02:48.000] ----------------------------------------------- +Info 81 [00:02:49.000] DirectoryWatcher:: Close:: WatchInfo: /user/username/projects/myproject/main 1 undefined Config: /user/username/projects/myproject/main/tsconfig.json WatchType: Wild card directory +Info 82 [00:02:50.000] 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 83 [00:02:51.000] FileWatcher:: Close:: WatchInfo: /user/username/projects/myproject/main/tsconfig.json 2000 undefined Project: /user/username/projects/myproject/main/tsconfig.json WatchType: Config file +Info 84 [00:02:52.000] DirectoryWatcher:: Close:: WatchInfo: /user/username/projects/myproject/dependency 1 undefined Config: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Wild card directory +Info 85 [00:02:53.000] 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 86 [00:02:54.000] FileWatcher:: Close:: WatchInfo: /user/username/projects/myproject/dependency/tsconfig.json 2000 undefined Project: /user/username/projects/myproject/main/tsconfig.json WatchType: Config file +Info 87 [00:02:55.000] DirectoryWatcher:: Close:: WatchInfo: /user/username/projects/myproject/decls 1 undefined Project: /user/username/projects/myproject/main/tsconfig.json WatchType: Failed Lookup Locations +Info 88 [00:02:56.000] 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 89 [00:02:57.000] 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 90 [00:02:58.000] 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 91 [00:02:59.000] DirectoryWatcher:: Close:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/main/tsconfig.json WatchType: Type roots +Info 92 [00:03:00.000] 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 93 [00:03:01.000] FileWatcher:: Close:: WatchInfo: /user/username/projects/myproject/main/main.ts 500 undefined WatchType: Closed Script info +Info 94 [00:03:02.000] FileWatcher:: Close:: WatchInfo: /user/username/projects/myproject/dependency/FnS.ts 500 undefined WatchType: Closed Script info +Info 95 [00:03:03.000] Project '/user/username/projects/myproject/random/tsconfig.json' (Configured) +Info 95 [00:03:04.000] Files (2) + +Info 95 [00:03:05.000] ----------------------------------------------- +Info 95 [00:03:06.000] Open files: +Info 95 [00:03:07.000] FileName: /user/username/projects/myproject/random/random.ts ProjectRootPath: undefined +Info 95 [00:03:08.000] Projects: /user/username/projects/myproject/random/tsconfig.json After request PolledWatches:: @@ -1316,7 +1316,7 @@ FsWatchesRecursive:: /user/username/projects/myproject/random: {} -Info 95 [16:03:09.000] response: +Info 95 [00:03:09.000] response: { "responseRequired": false } \ No newline at end of file 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 d13e945204a84..9bafbb76c91b6 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 @@ -1,5 +1,5 @@ -Info 0 [16:01:03.000] Provided types map file "/a/lib/typesMap.json" doesn't exist -Info 1 [16:01:04.000] request: +Info 0 [00:01:03.000] Provided types map file "/a/lib/typesMap.json" doesn't exist +Info 1 [00:01:04.000] request: { "seq": 0, "type": "request", @@ -200,11 +200,11 @@ FsWatches:: FsWatchesRecursive:: -Info 2 [16:01:05.000] Search path: /user/username/projects/myproject/main -Info 3 [16:01:06.000] For info: /user/username/projects/myproject/main/main.ts :: Config file name: /user/username/projects/myproject/main/tsconfig.json -Info 4 [16:01:07.000] Creating configuration project /user/username/projects/myproject/main/tsconfig.json -Info 5 [16:01:08.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/main/tsconfig.json 2000 undefined Project: /user/username/projects/myproject/main/tsconfig.json WatchType: Config file -Info 6 [16:01:09.000] Config: /user/username/projects/myproject/main/tsconfig.json : { +Info 2 [00:01:05.000] Search path: /user/username/projects/myproject/main +Info 3 [00:01:06.000] For info: /user/username/projects/myproject/main/main.ts :: Config file name: /user/username/projects/myproject/main/tsconfig.json +Info 4 [00:01:07.000] Creating configuration project /user/username/projects/myproject/main/tsconfig.json +Info 5 [00:01:08.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/main/tsconfig.json 2000 undefined Project: /user/username/projects/myproject/main/tsconfig.json WatchType: Config file +Info 6 [00:01:09.000] Config: /user/username/projects/myproject/main/tsconfig.json : { "rootNames": [ "/user/username/projects/myproject/main/main.ts" ], @@ -221,11 +221,11 @@ Info 6 [16:01:09.000] Config: /user/username/projects/myproject/main/tsconfig } ] } -Info 7 [16:01:10.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/main 1 undefined Config: /user/username/projects/myproject/main/tsconfig.json WatchType: Wild card directory -Info 8 [16:01:11.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/main 1 undefined Config: /user/username/projects/myproject/main/tsconfig.json WatchType: Wild card directory -Info 9 [16:01:12.000] Plugins were requested but not running in environment that supports 'require'. Nothing will be loaded -Info 10 [16:01:13.000] Starting updateGraphWorker: Project: /user/username/projects/myproject/main/tsconfig.json -Info 11 [16:01:14.000] Config: /user/username/projects/myproject/dependency/tsconfig.json : { +Info 7 [00:01:10.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/main 1 undefined Config: /user/username/projects/myproject/main/tsconfig.json WatchType: Wild card directory +Info 8 [00:01:11.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/main 1 undefined Config: /user/username/projects/myproject/main/tsconfig.json WatchType: Wild card directory +Info 9 [00:01:12.000] Plugins were requested but not running in environment that supports 'require'. Nothing will be loaded +Info 10 [00:01:13.000] Starting updateGraphWorker: Project: /user/username/projects/myproject/main/tsconfig.json +Info 11 [00:01:14.000] Config: /user/username/projects/myproject/dependency/tsconfig.json : { "rootNames": [ "/user/username/projects/myproject/dependency/FnS.ts" ], @@ -236,20 +236,20 @@ Info 11 [16:01:14.000] Config: /user/username/projects/myproject/dependency/ts "configFilePath": "/user/username/projects/myproject/dependency/tsconfig.json" } } -Info 12 [16:01:15.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/dependency/tsconfig.json 2000 undefined Project: /user/username/projects/myproject/main/tsconfig.json WatchType: Config file -Info 13 [16:01:16.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/dependency 1 undefined Config: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Wild card directory -Info 14 [16:01:17.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/dependency 1 undefined Config: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Wild card directory -Info 15 [16:01:18.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/decls 1 undefined Project: /user/username/projects/myproject/main/tsconfig.json WatchType: Failed Lookup Locations -Info 16 [16:01:19.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/decls 1 undefined Project: /user/username/projects/myproject/main/tsconfig.json WatchType: Failed Lookup Locations -Info 17 [16:01:20.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/decls/fns.d.ts 500 undefined WatchType: Closed Script info -Info 18 [16:01:21.000] FileWatcher:: Added:: WatchInfo: /a/lib/lib.d.ts 500 undefined WatchType: Closed Script info -Info 19 [16:01:22.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/main/node_modules/@types 1 undefined Project: /user/username/projects/myproject/main/tsconfig.json WatchType: Type roots -Info 20 [16:01:23.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/main/node_modules/@types 1 undefined Project: /user/username/projects/myproject/main/tsconfig.json WatchType: Type roots -Info 21 [16:01:24.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/main/tsconfig.json WatchType: Type roots -Info 22 [16:01:25.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/main/tsconfig.json WatchType: Type roots -Info 23 [16:01:26.000] Finishing updateGraphWorker: Project: /user/username/projects/myproject/main/tsconfig.json Version: 1 structureChanged: true structureIsReused:: Not Elapsed:: *ms -Info 24 [16:01:27.000] Project '/user/username/projects/myproject/main/tsconfig.json' (Configured) -Info 25 [16:01:28.000] Files (3) +Info 12 [00:01:15.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/dependency/tsconfig.json 2000 undefined Project: /user/username/projects/myproject/main/tsconfig.json WatchType: Config file +Info 13 [00:01:16.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/dependency 1 undefined Config: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Wild card directory +Info 14 [00:01:17.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/dependency 1 undefined Config: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Wild card directory +Info 15 [00:01:18.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/decls 1 undefined Project: /user/username/projects/myproject/main/tsconfig.json WatchType: Failed Lookup Locations +Info 16 [00:01:19.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/decls 1 undefined Project: /user/username/projects/myproject/main/tsconfig.json WatchType: Failed Lookup Locations +Info 17 [00:01:20.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/decls/fns.d.ts 500 undefined WatchType: Closed Script info +Info 18 [00:01:21.000] FileWatcher:: Added:: WatchInfo: /a/lib/lib.d.ts 500 undefined WatchType: Closed Script info +Info 19 [00:01:22.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/main/node_modules/@types 1 undefined Project: /user/username/projects/myproject/main/tsconfig.json WatchType: Type roots +Info 20 [00:01:23.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/main/node_modules/@types 1 undefined Project: /user/username/projects/myproject/main/tsconfig.json WatchType: Type roots +Info 21 [00:01:24.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/main/tsconfig.json WatchType: Type roots +Info 22 [00:01:25.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/main/tsconfig.json WatchType: Type roots +Info 23 [00:01:26.000] Finishing updateGraphWorker: Project: /user/username/projects/myproject/main/tsconfig.json Version: 1 structureChanged: true structureIsReused:: Not Elapsed:: *ms +Info 24 [00:01:27.000] Project '/user/username/projects/myproject/main/tsconfig.json' (Configured) +Info 25 [00:01:28.000] Files (3) /a/lib/lib.d.ts /user/username/projects/myproject/decls/fns.d.ts /user/username/projects/myproject/main/main.ts @@ -262,16 +262,16 @@ Info 25 [16:01:28.000] Files (3) main.ts Matched by default include pattern '**/*' -Info 26 [16:01:29.000] ----------------------------------------------- -Info 27 [16:01:30.000] Search path: /user/username/projects/myproject/main -Info 28 [16:01:31.000] For info: /user/username/projects/myproject/main/tsconfig.json :: No config files found. -Info 29 [16:01:32.000] Project '/user/username/projects/myproject/main/tsconfig.json' (Configured) -Info 29 [16:01:33.000] Files (3) +Info 26 [00:01:29.000] ----------------------------------------------- +Info 27 [00:01:30.000] Search path: /user/username/projects/myproject/main +Info 28 [00:01:31.000] For info: /user/username/projects/myproject/main/tsconfig.json :: No config files found. +Info 29 [00:01:32.000] Project '/user/username/projects/myproject/main/tsconfig.json' (Configured) +Info 29 [00:01:33.000] Files (3) -Info 29 [16:01:34.000] ----------------------------------------------- -Info 29 [16:01:35.000] Open files: -Info 29 [16:01:36.000] FileName: /user/username/projects/myproject/main/main.ts ProjectRootPath: undefined -Info 29 [16:01:37.000] Projects: /user/username/projects/myproject/main/tsconfig.json +Info 29 [00:01:34.000] ----------------------------------------------- +Info 29 [00:01:35.000] Open files: +Info 29 [00:01:36.000] FileName: /user/username/projects/myproject/main/main.ts ProjectRootPath: undefined +Info 29 [00:01:37.000] Projects: /user/username/projects/myproject/main/tsconfig.json After request PolledWatches:: @@ -298,11 +298,11 @@ FsWatchesRecursive:: /user/username/projects/myproject/decls: {} -Info 29 [16:01:38.000] response: +Info 29 [00:01:38.000] response: { "responseRequired": false } -Info 30 [16:01:39.000] request: +Info 30 [00:01:39.000] request: { "seq": 0, "type": "request", @@ -337,11 +337,11 @@ FsWatchesRecursive:: /user/username/projects/myproject/decls: {} -Info 31 [16:01:40.000] Search path: /user/username/projects/myproject/random -Info 32 [16:01:41.000] For info: /user/username/projects/myproject/random/random.ts :: Config file name: /user/username/projects/myproject/random/tsconfig.json -Info 33 [16:01:42.000] Creating configuration project /user/username/projects/myproject/random/tsconfig.json -Info 34 [16:01:43.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/random/tsconfig.json 2000 undefined Project: /user/username/projects/myproject/random/tsconfig.json WatchType: Config file -Info 35 [16:01:44.000] Config: /user/username/projects/myproject/random/tsconfig.json : { +Info 31 [00:01:40.000] Search path: /user/username/projects/myproject/random +Info 32 [00:01:41.000] For info: /user/username/projects/myproject/random/random.ts :: Config file name: /user/username/projects/myproject/random/tsconfig.json +Info 33 [00:01:42.000] Creating configuration project /user/username/projects/myproject/random/tsconfig.json +Info 34 [00:01:43.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/random/tsconfig.json 2000 undefined Project: /user/username/projects/myproject/random/tsconfig.json WatchType: Config file +Info 35 [00:01:44.000] Config: /user/username/projects/myproject/random/tsconfig.json : { "rootNames": [ "/user/username/projects/myproject/random/random.ts" ], @@ -349,17 +349,17 @@ Info 35 [16:01:44.000] Config: /user/username/projects/myproject/random/tsconf "configFilePath": "/user/username/projects/myproject/random/tsconfig.json" } } -Info 36 [16:01:45.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/random 1 undefined Config: /user/username/projects/myproject/random/tsconfig.json WatchType: Wild card directory -Info 37 [16:01:46.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/random 1 undefined Config: /user/username/projects/myproject/random/tsconfig.json WatchType: Wild card directory -Info 38 [16:01:47.000] Plugins were requested but not running in environment that supports 'require'. Nothing will be loaded -Info 39 [16:01:48.000] Starting updateGraphWorker: Project: /user/username/projects/myproject/random/tsconfig.json -Info 40 [16:01:49.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/random/node_modules/@types 1 undefined Project: /user/username/projects/myproject/random/tsconfig.json WatchType: Type roots -Info 41 [16:01:50.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/random/node_modules/@types 1 undefined Project: /user/username/projects/myproject/random/tsconfig.json WatchType: Type roots -Info 42 [16:01:51.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/random/tsconfig.json WatchType: Type roots -Info 43 [16:01:52.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/random/tsconfig.json WatchType: Type roots -Info 44 [16:01:53.000] Finishing updateGraphWorker: Project: /user/username/projects/myproject/random/tsconfig.json Version: 1 structureChanged: true structureIsReused:: Not Elapsed:: *ms -Info 45 [16:01:54.000] Project '/user/username/projects/myproject/random/tsconfig.json' (Configured) -Info 46 [16:01:55.000] Files (2) +Info 36 [00:01:45.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/random 1 undefined Config: /user/username/projects/myproject/random/tsconfig.json WatchType: Wild card directory +Info 37 [00:01:46.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/random 1 undefined Config: /user/username/projects/myproject/random/tsconfig.json WatchType: Wild card directory +Info 38 [00:01:47.000] Plugins were requested but not running in environment that supports 'require'. Nothing will be loaded +Info 39 [00:01:48.000] Starting updateGraphWorker: Project: /user/username/projects/myproject/random/tsconfig.json +Info 40 [00:01:49.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/random/node_modules/@types 1 undefined Project: /user/username/projects/myproject/random/tsconfig.json WatchType: Type roots +Info 41 [00:01:50.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/random/node_modules/@types 1 undefined Project: /user/username/projects/myproject/random/tsconfig.json WatchType: Type roots +Info 42 [00:01:51.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/random/tsconfig.json WatchType: Type roots +Info 43 [00:01:52.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/random/tsconfig.json WatchType: Type roots +Info 44 [00:01:53.000] Finishing updateGraphWorker: Project: /user/username/projects/myproject/random/tsconfig.json Version: 1 structureChanged: true structureIsReused:: Not Elapsed:: *ms +Info 45 [00:01:54.000] Project '/user/username/projects/myproject/random/tsconfig.json' (Configured) +Info 46 [00:01:55.000] Files (2) /a/lib/lib.d.ts /user/username/projects/myproject/random/random.ts @@ -369,20 +369,20 @@ Info 46 [16:01:55.000] Files (2) random.ts Matched by default include pattern '**/*' -Info 47 [16:01:56.000] ----------------------------------------------- -Info 48 [16:01:57.000] Project '/user/username/projects/myproject/main/tsconfig.json' (Configured) -Info 48 [16:01:58.000] Files (3) +Info 47 [00:01:56.000] ----------------------------------------------- +Info 48 [00:01:57.000] Project '/user/username/projects/myproject/main/tsconfig.json' (Configured) +Info 48 [00:01:58.000] Files (3) -Info 48 [16:01:59.000] ----------------------------------------------- -Info 48 [16:02:00.000] Project '/user/username/projects/myproject/random/tsconfig.json' (Configured) -Info 48 [16:02:01.000] Files (2) +Info 48 [00:01:59.000] ----------------------------------------------- +Info 48 [00:02:00.000] Project '/user/username/projects/myproject/random/tsconfig.json' (Configured) +Info 48 [00:02:01.000] Files (2) -Info 48 [16:02:02.000] ----------------------------------------------- -Info 48 [16:02:03.000] Open files: -Info 48 [16:02:04.000] FileName: /user/username/projects/myproject/main/main.ts ProjectRootPath: undefined -Info 48 [16:02:05.000] Projects: /user/username/projects/myproject/main/tsconfig.json -Info 48 [16:02:06.000] FileName: /user/username/projects/myproject/random/random.ts ProjectRootPath: undefined -Info 48 [16:02:07.000] Projects: /user/username/projects/myproject/random/tsconfig.json +Info 48 [00:02:02.000] ----------------------------------------------- +Info 48 [00:02:03.000] Open files: +Info 48 [00:02:04.000] FileName: /user/username/projects/myproject/main/main.ts ProjectRootPath: undefined +Info 48 [00:02:05.000] Projects: /user/username/projects/myproject/main/tsconfig.json +Info 48 [00:02:06.000] FileName: /user/username/projects/myproject/random/random.ts ProjectRootPath: undefined +Info 48 [00:02:07.000] Projects: /user/username/projects/myproject/random/tsconfig.json After request PolledWatches:: @@ -415,11 +415,11 @@ FsWatchesRecursive:: /user/username/projects/myproject/random: {} -Info 48 [16:02:08.000] response: +Info 48 [00:02:08.000] response: { "responseRequired": false } -Info 49 [16:02:09.000] request: +Info 49 [00:02:09.000] request: { "command": "definitionAndBoundSpan", "arguments": { @@ -462,8 +462,8 @@ FsWatchesRecursive:: /user/username/projects/myproject/random: {} -Info 50 [16:02:10.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/decls/FnS.d.ts.map 500 undefined WatchType: Closed Script info -Info 51 [16:02:11.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/dependency/FnS.ts 500 undefined WatchType: Closed Script info +Info 50 [00:02:10.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/decls/FnS.d.ts.map 500 undefined WatchType: Closed Script info +Info 51 [00:02:11.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/dependency/FnS.ts 500 undefined WatchType: Closed Script info After request PolledWatches:: @@ -500,7 +500,7 @@ FsWatchesRecursive:: /user/username/projects/myproject/random: {} -Info 52 [16:02:12.000] response: +Info 52 [00:02:12.000] response: { "response": { "definitions": [ @@ -537,7 +537,7 @@ Info 52 [16:02:12.000] response: }, "responseRequired": true } -Info 53 [16:02:13.000] request: +Info 53 [00:02:13.000] request: { "command": "definitionAndBoundSpan", "arguments": { @@ -620,7 +620,7 @@ FsWatchesRecursive:: /user/username/projects/myproject/random: {} -Info 54 [16:02:14.000] response: +Info 54 [00:02:14.000] response: { "response": { "definitions": [ @@ -657,7 +657,7 @@ Info 54 [16:02:14.000] response: }, "responseRequired": true } -Info 55 [16:02:15.000] request: +Info 55 [00:02:15.000] request: { "command": "definitionAndBoundSpan", "arguments": { @@ -740,7 +740,7 @@ FsWatchesRecursive:: /user/username/projects/myproject/random: {} -Info 56 [16:02:16.000] response: +Info 56 [00:02:16.000] response: { "response": { "definitions": [ @@ -777,7 +777,7 @@ Info 56 [16:02:16.000] response: }, "responseRequired": true } -Info 57 [16:02:17.000] request: +Info 57 [00:02:17.000] request: { "command": "definitionAndBoundSpan", "arguments": { @@ -860,7 +860,7 @@ FsWatchesRecursive:: /user/username/projects/myproject/random: {} -Info 58 [16:02:18.000] response: +Info 58 [00:02:18.000] response: { "response": { "definitions": [ @@ -897,7 +897,7 @@ Info 58 [16:02:18.000] response: }, "responseRequired": true } -Info 59 [16:02:19.000] request: +Info 59 [00:02:19.000] request: { "command": "definitionAndBoundSpan", "arguments": { @@ -980,7 +980,7 @@ FsWatchesRecursive:: /user/username/projects/myproject/random: {} -Info 60 [16:02:20.000] response: +Info 60 [00:02:20.000] response: { "response": { "definitions": [ @@ -1017,7 +1017,7 @@ Info 60 [16:02:20.000] response: }, "responseRequired": true } -Info 61 [16:02:21.000] request: +Info 61 [00:02:21.000] request: { "seq": 0, "type": "request", @@ -1062,18 +1062,18 @@ FsWatchesRecursive:: /user/username/projects/myproject/random: {} -Info 62 [16:02:22.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/random/random.ts 500 undefined WatchType: Closed Script info -Info 63 [16:02:23.000] Project '/user/username/projects/myproject/main/tsconfig.json' (Configured) -Info 63 [16:02:24.000] Files (3) +Info 62 [00:02:22.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/random/random.ts 500 undefined WatchType: Closed Script info +Info 63 [00:02:23.000] Project '/user/username/projects/myproject/main/tsconfig.json' (Configured) +Info 63 [00:02:24.000] Files (3) -Info 63 [16:02:25.000] ----------------------------------------------- -Info 63 [16:02:26.000] Project '/user/username/projects/myproject/random/tsconfig.json' (Configured) -Info 63 [16:02:27.000] Files (2) +Info 63 [00:02:25.000] ----------------------------------------------- +Info 63 [00:02:26.000] Project '/user/username/projects/myproject/random/tsconfig.json' (Configured) +Info 63 [00:02:27.000] Files (2) -Info 63 [16:02:28.000] ----------------------------------------------- -Info 63 [16:02:29.000] Open files: -Info 63 [16:02:30.000] FileName: /user/username/projects/myproject/main/main.ts ProjectRootPath: undefined -Info 63 [16:02:31.000] Projects: /user/username/projects/myproject/main/tsconfig.json +Info 63 [00:02:28.000] ----------------------------------------------- +Info 63 [00:02:29.000] Open files: +Info 63 [00:02:30.000] FileName: /user/username/projects/myproject/main/main.ts ProjectRootPath: undefined +Info 63 [00:02:31.000] Projects: /user/username/projects/myproject/main/tsconfig.json After request PolledWatches:: @@ -1112,11 +1112,11 @@ FsWatchesRecursive:: /user/username/projects/myproject/random: {} -Info 63 [16:02:32.000] response: +Info 63 [00:02:32.000] response: { "responseRequired": false } -Info 64 [16:02:33.000] request: +Info 64 [00:02:33.000] request: { "seq": 0, "type": "request", @@ -1163,22 +1163,22 @@ FsWatchesRecursive:: /user/username/projects/myproject/random: {} -Info 65 [16:02:34.000] FileWatcher:: Close:: WatchInfo: /user/username/projects/myproject/random/random.ts 500 undefined WatchType: Closed Script info -Info 66 [16:02:35.000] Search path: /user/username/projects/myproject/random -Info 67 [16:02:36.000] For info: /user/username/projects/myproject/random/random.ts :: Config file name: /user/username/projects/myproject/random/tsconfig.json -Info 68 [16:02:37.000] Project '/user/username/projects/myproject/main/tsconfig.json' (Configured) -Info 68 [16:02:38.000] Files (3) +Info 65 [00:02:34.000] FileWatcher:: Close:: WatchInfo: /user/username/projects/myproject/random/random.ts 500 undefined WatchType: Closed Script info +Info 66 [00:02:35.000] Search path: /user/username/projects/myproject/random +Info 67 [00:02:36.000] For info: /user/username/projects/myproject/random/random.ts :: Config file name: /user/username/projects/myproject/random/tsconfig.json +Info 68 [00:02:37.000] Project '/user/username/projects/myproject/main/tsconfig.json' (Configured) +Info 68 [00:02:38.000] Files (3) -Info 68 [16:02:39.000] ----------------------------------------------- -Info 68 [16:02:40.000] Project '/user/username/projects/myproject/random/tsconfig.json' (Configured) -Info 68 [16:02:41.000] Files (2) +Info 68 [00:02:39.000] ----------------------------------------------- +Info 68 [00:02:40.000] Project '/user/username/projects/myproject/random/tsconfig.json' (Configured) +Info 68 [00:02:41.000] Files (2) -Info 68 [16:02:42.000] ----------------------------------------------- -Info 68 [16:02:43.000] Open files: -Info 68 [16:02:44.000] FileName: /user/username/projects/myproject/main/main.ts ProjectRootPath: undefined -Info 68 [16:02:45.000] Projects: /user/username/projects/myproject/main/tsconfig.json -Info 68 [16:02:46.000] FileName: /user/username/projects/myproject/random/random.ts ProjectRootPath: undefined -Info 68 [16:02:47.000] Projects: /user/username/projects/myproject/random/tsconfig.json +Info 68 [00:02:42.000] ----------------------------------------------- +Info 68 [00:02:43.000] Open files: +Info 68 [00:02:44.000] FileName: /user/username/projects/myproject/main/main.ts ProjectRootPath: undefined +Info 68 [00:02:45.000] Projects: /user/username/projects/myproject/main/tsconfig.json +Info 68 [00:02:46.000] FileName: /user/username/projects/myproject/random/random.ts ProjectRootPath: undefined +Info 68 [00:02:47.000] Projects: /user/username/projects/myproject/random/tsconfig.json After request PolledWatches:: @@ -1215,11 +1215,11 @@ FsWatchesRecursive:: /user/username/projects/myproject/random: {} -Info 68 [16:02:48.000] response: +Info 68 [00:02:48.000] response: { "responseRequired": false } -Info 69 [16:02:49.000] request: +Info 69 [00:02:49.000] request: { "seq": 0, "type": "request", @@ -1264,18 +1264,18 @@ FsWatchesRecursive:: /user/username/projects/myproject/random: {} -Info 70 [16:02:50.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/main/main.ts 500 undefined WatchType: Closed Script info -Info 71 [16:02:51.000] Project '/user/username/projects/myproject/main/tsconfig.json' (Configured) -Info 71 [16:02:52.000] Files (3) +Info 70 [00:02:50.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/main/main.ts 500 undefined WatchType: Closed Script info +Info 71 [00:02:51.000] Project '/user/username/projects/myproject/main/tsconfig.json' (Configured) +Info 71 [00:02:52.000] Files (3) -Info 71 [16:02:53.000] ----------------------------------------------- -Info 71 [16:02:54.000] Project '/user/username/projects/myproject/random/tsconfig.json' (Configured) -Info 71 [16:02:55.000] Files (2) +Info 71 [00:02:53.000] ----------------------------------------------- +Info 71 [00:02:54.000] Project '/user/username/projects/myproject/random/tsconfig.json' (Configured) +Info 71 [00:02:55.000] Files (2) -Info 71 [16:02:56.000] ----------------------------------------------- -Info 71 [16:02:57.000] Open files: -Info 71 [16:02:58.000] FileName: /user/username/projects/myproject/random/random.ts ProjectRootPath: undefined -Info 71 [16:02:59.000] Projects: /user/username/projects/myproject/random/tsconfig.json +Info 71 [00:02:56.000] ----------------------------------------------- +Info 71 [00:02:57.000] Open files: +Info 71 [00:02:58.000] FileName: /user/username/projects/myproject/random/random.ts ProjectRootPath: undefined +Info 71 [00:02:59.000] Projects: /user/username/projects/myproject/random/tsconfig.json After request PolledWatches:: @@ -1314,11 +1314,11 @@ FsWatchesRecursive:: /user/username/projects/myproject/random: {} -Info 71 [16:03:00.000] response: +Info 71 [00:03:00.000] response: { "responseRequired": false } -Info 72 [16:03:01.000] request: +Info 72 [00:03:01.000] request: { "seq": 0, "type": "request", @@ -1365,16 +1365,16 @@ FsWatchesRecursive:: /user/username/projects/myproject/random: {} -Info 73 [16:03:02.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/random/random.ts 500 undefined WatchType: Closed Script info -Info 74 [16:03:03.000] Project '/user/username/projects/myproject/main/tsconfig.json' (Configured) -Info 74 [16:03:04.000] Files (3) +Info 73 [00:03:02.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/random/random.ts 500 undefined WatchType: Closed Script info +Info 74 [00:03:03.000] Project '/user/username/projects/myproject/main/tsconfig.json' (Configured) +Info 74 [00:03:04.000] Files (3) -Info 74 [16:03:05.000] ----------------------------------------------- -Info 74 [16:03:06.000] Project '/user/username/projects/myproject/random/tsconfig.json' (Configured) -Info 74 [16:03:07.000] Files (2) +Info 74 [00:03:05.000] ----------------------------------------------- +Info 74 [00:03:06.000] Project '/user/username/projects/myproject/random/tsconfig.json' (Configured) +Info 74 [00:03:07.000] Files (2) -Info 74 [16:03:08.000] ----------------------------------------------- -Info 74 [16:03:09.000] Open files: +Info 74 [00:03:08.000] ----------------------------------------------- +Info 74 [00:03:09.000] Open files: After request PolledWatches:: @@ -1415,11 +1415,11 @@ FsWatchesRecursive:: /user/username/projects/myproject/random: {} -Info 74 [16:03:10.000] response: +Info 74 [00:03:10.000] response: { "responseRequired": false } -Info 75 [16:03:11.000] request: +Info 75 [00:03:11.000] request: { "seq": 0, "type": "request", @@ -1468,12 +1468,12 @@ FsWatchesRecursive:: /user/username/projects/myproject/random: {} -Info 76 [16:03:12.000] FileWatcher:: Close:: WatchInfo: /user/username/projects/myproject/random/random.ts 500 undefined WatchType: Closed Script info -Info 77 [16:03:13.000] Search path: /user/username/projects/myproject/random -Info 78 [16:03:14.000] For info: /user/username/projects/myproject/random/random.ts :: Config file name: /user/username/projects/myproject/random/tsconfig.json -Info 79 [16:03:15.000] `remove Project:: -Info 80 [16:03:16.000] Project '/user/username/projects/myproject/main/tsconfig.json' (Configured) -Info 81 [16:03:17.000] Files (3) +Info 76 [00:03:12.000] FileWatcher:: Close:: WatchInfo: /user/username/projects/myproject/random/random.ts 500 undefined WatchType: Closed Script info +Info 77 [00:03:13.000] Search path: /user/username/projects/myproject/random +Info 78 [00:03:14.000] For info: /user/username/projects/myproject/random/random.ts :: Config file name: /user/username/projects/myproject/random/tsconfig.json +Info 79 [00:03:15.000] `remove Project:: +Info 80 [00:03:16.000] Project '/user/username/projects/myproject/main/tsconfig.json' (Configured) +Info 81 [00:03:17.000] Files (3) /a/lib/lib.d.ts /user/username/projects/myproject/decls/fns.d.ts /user/username/projects/myproject/main/main.ts @@ -1486,30 +1486,30 @@ Info 81 [16:03:17.000] Files (3) main.ts Matched by default include pattern '**/*' -Info 82 [16:03:18.000] ----------------------------------------------- -Info 83 [16:03:19.000] DirectoryWatcher:: Close:: WatchInfo: /user/username/projects/myproject/main 1 undefined Config: /user/username/projects/myproject/main/tsconfig.json WatchType: Wild card directory -Info 84 [16:03:20.000] 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 85 [16:03:21.000] FileWatcher:: Close:: WatchInfo: /user/username/projects/myproject/main/tsconfig.json 2000 undefined Project: /user/username/projects/myproject/main/tsconfig.json WatchType: Config file -Info 86 [16:03:22.000] DirectoryWatcher:: Close:: WatchInfo: /user/username/projects/myproject/dependency 1 undefined Config: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Wild card directory -Info 87 [16:03:23.000] 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 88 [16:03:24.000] FileWatcher:: Close:: WatchInfo: /user/username/projects/myproject/dependency/tsconfig.json 2000 undefined Project: /user/username/projects/myproject/main/tsconfig.json WatchType: Config file -Info 89 [16:03:25.000] DirectoryWatcher:: Close:: WatchInfo: /user/username/projects/myproject/decls 1 undefined Project: /user/username/projects/myproject/main/tsconfig.json WatchType: Failed Lookup Locations -Info 90 [16:03:26.000] 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 91 [16:03:27.000] 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 92 [16:03:28.000] 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 93 [16:03:29.000] DirectoryWatcher:: Close:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/main/tsconfig.json WatchType: Type roots -Info 94 [16:03:30.000] 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 95 [16:03:31.000] FileWatcher:: Close:: WatchInfo: /user/username/projects/myproject/main/main.ts 500 undefined WatchType: Closed Script info -Info 96 [16:03:32.000] FileWatcher:: Close:: WatchInfo: /user/username/projects/myproject/decls/fns.d.ts 500 undefined WatchType: Closed Script info -Info 97 [16:03:33.000] FileWatcher:: Close:: WatchInfo: /user/username/projects/myproject/decls/FnS.d.ts.map 500 undefined WatchType: Closed Script info -Info 98 [16:03:34.000] FileWatcher:: Close:: WatchInfo: /user/username/projects/myproject/dependency/FnS.ts 500 undefined WatchType: Closed Script info -Info 99 [16:03:35.000] Project '/user/username/projects/myproject/random/tsconfig.json' (Configured) -Info 99 [16:03:36.000] Files (2) - -Info 99 [16:03:37.000] ----------------------------------------------- -Info 99 [16:03:38.000] Open files: -Info 99 [16:03:39.000] FileName: /user/username/projects/myproject/random/random.ts ProjectRootPath: undefined -Info 99 [16:03:40.000] Projects: /user/username/projects/myproject/random/tsconfig.json +Info 82 [00:03:18.000] ----------------------------------------------- +Info 83 [00:03:19.000] DirectoryWatcher:: Close:: WatchInfo: /user/username/projects/myproject/main 1 undefined Config: /user/username/projects/myproject/main/tsconfig.json WatchType: Wild card directory +Info 84 [00:03:20.000] 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 85 [00:03:21.000] FileWatcher:: Close:: WatchInfo: /user/username/projects/myproject/main/tsconfig.json 2000 undefined Project: /user/username/projects/myproject/main/tsconfig.json WatchType: Config file +Info 86 [00:03:22.000] DirectoryWatcher:: Close:: WatchInfo: /user/username/projects/myproject/dependency 1 undefined Config: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Wild card directory +Info 87 [00:03:23.000] 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 88 [00:03:24.000] FileWatcher:: Close:: WatchInfo: /user/username/projects/myproject/dependency/tsconfig.json 2000 undefined Project: /user/username/projects/myproject/main/tsconfig.json WatchType: Config file +Info 89 [00:03:25.000] DirectoryWatcher:: Close:: WatchInfo: /user/username/projects/myproject/decls 1 undefined Project: /user/username/projects/myproject/main/tsconfig.json WatchType: Failed Lookup Locations +Info 90 [00:03:26.000] 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 91 [00:03:27.000] 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 92 [00:03:28.000] 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 93 [00:03:29.000] DirectoryWatcher:: Close:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/main/tsconfig.json WatchType: Type roots +Info 94 [00:03:30.000] 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 95 [00:03:31.000] FileWatcher:: Close:: WatchInfo: /user/username/projects/myproject/main/main.ts 500 undefined WatchType: Closed Script info +Info 96 [00:03:32.000] FileWatcher:: Close:: WatchInfo: /user/username/projects/myproject/decls/fns.d.ts 500 undefined WatchType: Closed Script info +Info 97 [00:03:33.000] FileWatcher:: Close:: WatchInfo: /user/username/projects/myproject/decls/FnS.d.ts.map 500 undefined WatchType: Closed Script info +Info 98 [00:03:34.000] FileWatcher:: Close:: WatchInfo: /user/username/projects/myproject/dependency/FnS.ts 500 undefined WatchType: Closed Script info +Info 99 [00:03:35.000] Project '/user/username/projects/myproject/random/tsconfig.json' (Configured) +Info 99 [00:03:36.000] Files (2) + +Info 99 [00:03:37.000] ----------------------------------------------- +Info 99 [00:03:38.000] Open files: +Info 99 [00:03:39.000] FileName: /user/username/projects/myproject/random/random.ts ProjectRootPath: undefined +Info 99 [00:03:40.000] Projects: /user/username/projects/myproject/random/tsconfig.json After request PolledWatches:: @@ -1528,7 +1528,7 @@ FsWatchesRecursive:: /user/username/projects/myproject/random: {} -Info 99 [16:03:41.000] response: +Info 99 [00:03:41.000] response: { "responseRequired": false } \ No newline at end of file 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 efd7085291434..c68c8b94dcd38 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 @@ -1,5 +1,5 @@ -Info 0 [16:01:03.000] Provided types map file "/a/lib/typesMap.json" doesn't exist -Info 1 [16:01:04.000] request: +Info 0 [00:01:03.000] Provided types map file "/a/lib/typesMap.json" doesn't exist +Info 1 [00:01:04.000] request: { "seq": 0, "type": "request", @@ -200,11 +200,11 @@ FsWatches:: FsWatchesRecursive:: -Info 2 [16:01:05.000] Search path: /user/username/projects/myproject/main -Info 3 [16:01:06.000] For info: /user/username/projects/myproject/main/main.ts :: Config file name: /user/username/projects/myproject/main/tsconfig.json -Info 4 [16:01:07.000] Creating configuration project /user/username/projects/myproject/main/tsconfig.json -Info 5 [16:01:08.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/main/tsconfig.json 2000 undefined Project: /user/username/projects/myproject/main/tsconfig.json WatchType: Config file -Info 6 [16:01:09.000] Config: /user/username/projects/myproject/main/tsconfig.json : { +Info 2 [00:01:05.000] Search path: /user/username/projects/myproject/main +Info 3 [00:01:06.000] For info: /user/username/projects/myproject/main/main.ts :: Config file name: /user/username/projects/myproject/main/tsconfig.json +Info 4 [00:01:07.000] Creating configuration project /user/username/projects/myproject/main/tsconfig.json +Info 5 [00:01:08.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/main/tsconfig.json 2000 undefined Project: /user/username/projects/myproject/main/tsconfig.json WatchType: Config file +Info 6 [00:01:09.000] Config: /user/username/projects/myproject/main/tsconfig.json : { "rootNames": [ "/user/username/projects/myproject/main/main.ts" ], @@ -221,11 +221,11 @@ Info 6 [16:01:09.000] Config: /user/username/projects/myproject/main/tsconfig } ] } -Info 7 [16:01:10.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/main 1 undefined Config: /user/username/projects/myproject/main/tsconfig.json WatchType: Wild card directory -Info 8 [16:01:11.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/main 1 undefined Config: /user/username/projects/myproject/main/tsconfig.json WatchType: Wild card directory -Info 9 [16:01:12.000] Plugins were requested but not running in environment that supports 'require'. Nothing will be loaded -Info 10 [16:01:13.000] Starting updateGraphWorker: Project: /user/username/projects/myproject/main/tsconfig.json -Info 11 [16:01:14.000] Config: /user/username/projects/myproject/dependency/tsconfig.json : { +Info 7 [00:01:10.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/main 1 undefined Config: /user/username/projects/myproject/main/tsconfig.json WatchType: Wild card directory +Info 8 [00:01:11.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/main 1 undefined Config: /user/username/projects/myproject/main/tsconfig.json WatchType: Wild card directory +Info 9 [00:01:12.000] Plugins were requested but not running in environment that supports 'require'. Nothing will be loaded +Info 10 [00:01:13.000] Starting updateGraphWorker: Project: /user/username/projects/myproject/main/tsconfig.json +Info 11 [00:01:14.000] Config: /user/username/projects/myproject/dependency/tsconfig.json : { "rootNames": [ "/user/username/projects/myproject/dependency/FnS.ts" ], @@ -236,20 +236,20 @@ Info 11 [16:01:14.000] Config: /user/username/projects/myproject/dependency/ts "configFilePath": "/user/username/projects/myproject/dependency/tsconfig.json" } } -Info 12 [16:01:15.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/dependency/tsconfig.json 2000 undefined Project: /user/username/projects/myproject/main/tsconfig.json WatchType: Config file -Info 13 [16:01:16.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/dependency 1 undefined Config: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Wild card directory -Info 14 [16:01:17.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/dependency 1 undefined Config: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Wild card directory -Info 15 [16:01:18.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/decls 1 undefined Project: /user/username/projects/myproject/main/tsconfig.json WatchType: Failed Lookup Locations -Info 16 [16:01:19.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/decls 1 undefined Project: /user/username/projects/myproject/main/tsconfig.json WatchType: Failed Lookup Locations -Info 17 [16:01:20.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/decls/fns.d.ts 500 undefined WatchType: Closed Script info -Info 18 [16:01:21.000] FileWatcher:: Added:: WatchInfo: /a/lib/lib.d.ts 500 undefined WatchType: Closed Script info -Info 19 [16:01:22.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/main/node_modules/@types 1 undefined Project: /user/username/projects/myproject/main/tsconfig.json WatchType: Type roots -Info 20 [16:01:23.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/main/node_modules/@types 1 undefined Project: /user/username/projects/myproject/main/tsconfig.json WatchType: Type roots -Info 21 [16:01:24.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/main/tsconfig.json WatchType: Type roots -Info 22 [16:01:25.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/main/tsconfig.json WatchType: Type roots -Info 23 [16:01:26.000] Finishing updateGraphWorker: Project: /user/username/projects/myproject/main/tsconfig.json Version: 1 structureChanged: true structureIsReused:: Not Elapsed:: *ms -Info 24 [16:01:27.000] Project '/user/username/projects/myproject/main/tsconfig.json' (Configured) -Info 25 [16:01:28.000] Files (3) +Info 12 [00:01:15.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/dependency/tsconfig.json 2000 undefined Project: /user/username/projects/myproject/main/tsconfig.json WatchType: Config file +Info 13 [00:01:16.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/dependency 1 undefined Config: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Wild card directory +Info 14 [00:01:17.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/dependency 1 undefined Config: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Wild card directory +Info 15 [00:01:18.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/decls 1 undefined Project: /user/username/projects/myproject/main/tsconfig.json WatchType: Failed Lookup Locations +Info 16 [00:01:19.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/decls 1 undefined Project: /user/username/projects/myproject/main/tsconfig.json WatchType: Failed Lookup Locations +Info 17 [00:01:20.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/decls/fns.d.ts 500 undefined WatchType: Closed Script info +Info 18 [00:01:21.000] FileWatcher:: Added:: WatchInfo: /a/lib/lib.d.ts 500 undefined WatchType: Closed Script info +Info 19 [00:01:22.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/main/node_modules/@types 1 undefined Project: /user/username/projects/myproject/main/tsconfig.json WatchType: Type roots +Info 20 [00:01:23.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/main/node_modules/@types 1 undefined Project: /user/username/projects/myproject/main/tsconfig.json WatchType: Type roots +Info 21 [00:01:24.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/main/tsconfig.json WatchType: Type roots +Info 22 [00:01:25.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/main/tsconfig.json WatchType: Type roots +Info 23 [00:01:26.000] Finishing updateGraphWorker: Project: /user/username/projects/myproject/main/tsconfig.json Version: 1 structureChanged: true structureIsReused:: Not Elapsed:: *ms +Info 24 [00:01:27.000] Project '/user/username/projects/myproject/main/tsconfig.json' (Configured) +Info 25 [00:01:28.000] Files (3) /a/lib/lib.d.ts /user/username/projects/myproject/decls/fns.d.ts /user/username/projects/myproject/main/main.ts @@ -262,16 +262,16 @@ Info 25 [16:01:28.000] Files (3) main.ts Matched by default include pattern '**/*' -Info 26 [16:01:29.000] ----------------------------------------------- -Info 27 [16:01:30.000] Search path: /user/username/projects/myproject/main -Info 28 [16:01:31.000] For info: /user/username/projects/myproject/main/tsconfig.json :: No config files found. -Info 29 [16:01:32.000] Project '/user/username/projects/myproject/main/tsconfig.json' (Configured) -Info 29 [16:01:33.000] Files (3) +Info 26 [00:01:29.000] ----------------------------------------------- +Info 27 [00:01:30.000] Search path: /user/username/projects/myproject/main +Info 28 [00:01:31.000] For info: /user/username/projects/myproject/main/tsconfig.json :: No config files found. +Info 29 [00:01:32.000] Project '/user/username/projects/myproject/main/tsconfig.json' (Configured) +Info 29 [00:01:33.000] Files (3) -Info 29 [16:01:34.000] ----------------------------------------------- -Info 29 [16:01:35.000] Open files: -Info 29 [16:01:36.000] FileName: /user/username/projects/myproject/main/main.ts ProjectRootPath: undefined -Info 29 [16:01:37.000] Projects: /user/username/projects/myproject/main/tsconfig.json +Info 29 [00:01:34.000] ----------------------------------------------- +Info 29 [00:01:35.000] Open files: +Info 29 [00:01:36.000] FileName: /user/username/projects/myproject/main/main.ts ProjectRootPath: undefined +Info 29 [00:01:37.000] Projects: /user/username/projects/myproject/main/tsconfig.json After request PolledWatches:: @@ -298,11 +298,11 @@ FsWatchesRecursive:: /user/username/projects/myproject/decls: {} -Info 29 [16:01:38.000] response: +Info 29 [00:01:38.000] response: { "responseRequired": false } -Info 30 [16:01:39.000] request: +Info 30 [00:01:39.000] request: { "seq": 0, "type": "request", @@ -337,11 +337,11 @@ FsWatchesRecursive:: /user/username/projects/myproject/decls: {} -Info 31 [16:01:40.000] Search path: /user/username/projects/myproject/random -Info 32 [16:01:41.000] For info: /user/username/projects/myproject/random/random.ts :: Config file name: /user/username/projects/myproject/random/tsconfig.json -Info 33 [16:01:42.000] Creating configuration project /user/username/projects/myproject/random/tsconfig.json -Info 34 [16:01:43.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/random/tsconfig.json 2000 undefined Project: /user/username/projects/myproject/random/tsconfig.json WatchType: Config file -Info 35 [16:01:44.000] Config: /user/username/projects/myproject/random/tsconfig.json : { +Info 31 [00:01:40.000] Search path: /user/username/projects/myproject/random +Info 32 [00:01:41.000] For info: /user/username/projects/myproject/random/random.ts :: Config file name: /user/username/projects/myproject/random/tsconfig.json +Info 33 [00:01:42.000] Creating configuration project /user/username/projects/myproject/random/tsconfig.json +Info 34 [00:01:43.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/random/tsconfig.json 2000 undefined Project: /user/username/projects/myproject/random/tsconfig.json WatchType: Config file +Info 35 [00:01:44.000] Config: /user/username/projects/myproject/random/tsconfig.json : { "rootNames": [ "/user/username/projects/myproject/random/random.ts" ], @@ -349,17 +349,17 @@ Info 35 [16:01:44.000] Config: /user/username/projects/myproject/random/tsconf "configFilePath": "/user/username/projects/myproject/random/tsconfig.json" } } -Info 36 [16:01:45.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/random 1 undefined Config: /user/username/projects/myproject/random/tsconfig.json WatchType: Wild card directory -Info 37 [16:01:46.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/random 1 undefined Config: /user/username/projects/myproject/random/tsconfig.json WatchType: Wild card directory -Info 38 [16:01:47.000] Plugins were requested but not running in environment that supports 'require'. Nothing will be loaded -Info 39 [16:01:48.000] Starting updateGraphWorker: Project: /user/username/projects/myproject/random/tsconfig.json -Info 40 [16:01:49.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/random/node_modules/@types 1 undefined Project: /user/username/projects/myproject/random/tsconfig.json WatchType: Type roots -Info 41 [16:01:50.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/random/node_modules/@types 1 undefined Project: /user/username/projects/myproject/random/tsconfig.json WatchType: Type roots -Info 42 [16:01:51.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/random/tsconfig.json WatchType: Type roots -Info 43 [16:01:52.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/random/tsconfig.json WatchType: Type roots -Info 44 [16:01:53.000] Finishing updateGraphWorker: Project: /user/username/projects/myproject/random/tsconfig.json Version: 1 structureChanged: true structureIsReused:: Not Elapsed:: *ms -Info 45 [16:01:54.000] Project '/user/username/projects/myproject/random/tsconfig.json' (Configured) -Info 46 [16:01:55.000] Files (2) +Info 36 [00:01:45.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/random 1 undefined Config: /user/username/projects/myproject/random/tsconfig.json WatchType: Wild card directory +Info 37 [00:01:46.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/random 1 undefined Config: /user/username/projects/myproject/random/tsconfig.json WatchType: Wild card directory +Info 38 [00:01:47.000] Plugins were requested but not running in environment that supports 'require'. Nothing will be loaded +Info 39 [00:01:48.000] Starting updateGraphWorker: Project: /user/username/projects/myproject/random/tsconfig.json +Info 40 [00:01:49.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/random/node_modules/@types 1 undefined Project: /user/username/projects/myproject/random/tsconfig.json WatchType: Type roots +Info 41 [00:01:50.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/random/node_modules/@types 1 undefined Project: /user/username/projects/myproject/random/tsconfig.json WatchType: Type roots +Info 42 [00:01:51.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/random/tsconfig.json WatchType: Type roots +Info 43 [00:01:52.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/random/tsconfig.json WatchType: Type roots +Info 44 [00:01:53.000] Finishing updateGraphWorker: Project: /user/username/projects/myproject/random/tsconfig.json Version: 1 structureChanged: true structureIsReused:: Not Elapsed:: *ms +Info 45 [00:01:54.000] Project '/user/username/projects/myproject/random/tsconfig.json' (Configured) +Info 46 [00:01:55.000] Files (2) /a/lib/lib.d.ts /user/username/projects/myproject/random/random.ts @@ -369,20 +369,20 @@ Info 46 [16:01:55.000] Files (2) random.ts Matched by default include pattern '**/*' -Info 47 [16:01:56.000] ----------------------------------------------- -Info 48 [16:01:57.000] Project '/user/username/projects/myproject/main/tsconfig.json' (Configured) -Info 48 [16:01:58.000] Files (3) +Info 47 [00:01:56.000] ----------------------------------------------- +Info 48 [00:01:57.000] Project '/user/username/projects/myproject/main/tsconfig.json' (Configured) +Info 48 [00:01:58.000] Files (3) -Info 48 [16:01:59.000] ----------------------------------------------- -Info 48 [16:02:00.000] Project '/user/username/projects/myproject/random/tsconfig.json' (Configured) -Info 48 [16:02:01.000] Files (2) +Info 48 [00:01:59.000] ----------------------------------------------- +Info 48 [00:02:00.000] Project '/user/username/projects/myproject/random/tsconfig.json' (Configured) +Info 48 [00:02:01.000] Files (2) -Info 48 [16:02:02.000] ----------------------------------------------- -Info 48 [16:02:03.000] Open files: -Info 48 [16:02:04.000] FileName: /user/username/projects/myproject/main/main.ts ProjectRootPath: undefined -Info 48 [16:02:05.000] Projects: /user/username/projects/myproject/main/tsconfig.json -Info 48 [16:02:06.000] FileName: /user/username/projects/myproject/random/random.ts ProjectRootPath: undefined -Info 48 [16:02:07.000] Projects: /user/username/projects/myproject/random/tsconfig.json +Info 48 [00:02:02.000] ----------------------------------------------- +Info 48 [00:02:03.000] Open files: +Info 48 [00:02:04.000] FileName: /user/username/projects/myproject/main/main.ts ProjectRootPath: undefined +Info 48 [00:02:05.000] Projects: /user/username/projects/myproject/main/tsconfig.json +Info 48 [00:02:06.000] FileName: /user/username/projects/myproject/random/random.ts ProjectRootPath: undefined +Info 48 [00:02:07.000] Projects: /user/username/projects/myproject/random/tsconfig.json After request PolledWatches:: @@ -415,11 +415,11 @@ FsWatchesRecursive:: /user/username/projects/myproject/random: {} -Info 48 [16:02:08.000] response: +Info 48 [00:02:08.000] response: { "responseRequired": false } -Info 49 [16:02:09.000] request: +Info 49 [00:02:09.000] request: { "command": "definitionAndBoundSpan", "arguments": { @@ -462,8 +462,8 @@ FsWatchesRecursive:: /user/username/projects/myproject/random: {} -Info 50 [16:02:10.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/decls/FnS.d.ts.map 500 undefined WatchType: Closed Script info -Info 51 [16:02:11.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/dependency/FnS.ts 500 undefined WatchType: Closed Script info +Info 50 [00:02:10.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/decls/FnS.d.ts.map 500 undefined WatchType: Closed Script info +Info 51 [00:02:11.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/dependency/FnS.ts 500 undefined WatchType: Closed Script info After request PolledWatches:: @@ -500,7 +500,7 @@ FsWatchesRecursive:: /user/username/projects/myproject/random: {} -Info 52 [16:02:12.000] response: +Info 52 [00:02:12.000] response: { "response": { "definitions": [ @@ -537,10 +537,10 @@ Info 52 [16:02:12.000] response: }, "responseRequired": true } -Info 53 [16:02:16.000] FileWatcher:: Triggered with /user/username/projects/myproject/decls/fns.d.ts 1:: WatchInfo: /user/username/projects/myproject/decls/fns.d.ts 500 undefined WatchType: Closed Script info -Info 54 [16:02:17.000] Scheduled: /user/username/projects/myproject/main/tsconfig.json -Info 55 [16:02:18.000] Scheduled: *ensureProjectForOpenFiles* -Info 56 [16:02:19.000] Elapsed:: *ms FileWatcher:: Triggered with /user/username/projects/myproject/decls/fns.d.ts 1:: WatchInfo: /user/username/projects/myproject/decls/fns.d.ts 500 undefined WatchType: Closed Script info +Info 53 [00:02:16.000] FileWatcher:: Triggered with /user/username/projects/myproject/decls/fns.d.ts 1:: WatchInfo: /user/username/projects/myproject/decls/fns.d.ts 500 undefined WatchType: Closed Script info +Info 54 [00:02:17.000] Scheduled: /user/username/projects/myproject/main/tsconfig.json +Info 55 [00:02:18.000] Scheduled: *ensureProjectForOpenFiles* +Info 56 [00:02:19.000] Elapsed:: *ms FileWatcher:: Triggered with /user/username/projects/myproject/decls/fns.d.ts 1:: WatchInfo: /user/username/projects/myproject/decls/fns.d.ts 500 undefined WatchType: Closed Script info Before running timeout callbacks //// [/user/username/projects/myproject/decls/FnS.d.ts] export declare function fn1(): void; @@ -586,39 +586,39 @@ FsWatchesRecursive:: /user/username/projects/myproject/random: {} -Info 57 [16:02:20.000] Running: /user/username/projects/myproject/main/tsconfig.json -Info 58 [16:02:21.000] Starting updateGraphWorker: Project: /user/username/projects/myproject/main/tsconfig.json -Info 59 [16:02:22.000] Finishing updateGraphWorker: Project: /user/username/projects/myproject/main/tsconfig.json Version: 2 structureChanged: false structureIsReused:: Completely Elapsed:: *ms -Info 60 [16:02:23.000] Different program with same set of files -Info 61 [16:02:24.000] Running: *ensureProjectForOpenFiles* -Info 62 [16:02:25.000] Before ensureProjectForOpenFiles: -Info 63 [16:02:26.000] Project '/user/username/projects/myproject/main/tsconfig.json' (Configured) -Info 63 [16:02:27.000] Files (3) - -Info 63 [16:02:28.000] ----------------------------------------------- -Info 63 [16:02:29.000] Project '/user/username/projects/myproject/random/tsconfig.json' (Configured) -Info 63 [16:02:30.000] Files (2) - -Info 63 [16:02:31.000] ----------------------------------------------- -Info 63 [16:02:32.000] Open files: -Info 63 [16:02:33.000] FileName: /user/username/projects/myproject/main/main.ts ProjectRootPath: undefined -Info 63 [16:02:34.000] Projects: /user/username/projects/myproject/main/tsconfig.json -Info 63 [16:02:35.000] FileName: /user/username/projects/myproject/random/random.ts ProjectRootPath: undefined -Info 63 [16:02:36.000] Projects: /user/username/projects/myproject/random/tsconfig.json -Info 63 [16:02:37.000] After ensureProjectForOpenFiles: -Info 64 [16:02:38.000] Project '/user/username/projects/myproject/main/tsconfig.json' (Configured) -Info 64 [16:02:39.000] Files (3) - -Info 64 [16:02:40.000] ----------------------------------------------- -Info 64 [16:02:41.000] Project '/user/username/projects/myproject/random/tsconfig.json' (Configured) -Info 64 [16:02:42.000] Files (2) - -Info 64 [16:02:43.000] ----------------------------------------------- -Info 64 [16:02:44.000] Open files: -Info 64 [16:02:45.000] FileName: /user/username/projects/myproject/main/main.ts ProjectRootPath: undefined -Info 64 [16:02:46.000] Projects: /user/username/projects/myproject/main/tsconfig.json -Info 64 [16:02:47.000] FileName: /user/username/projects/myproject/random/random.ts ProjectRootPath: undefined -Info 64 [16:02:48.000] Projects: /user/username/projects/myproject/random/tsconfig.json +Info 57 [00:02:20.000] Running: /user/username/projects/myproject/main/tsconfig.json +Info 58 [00:02:21.000] Starting updateGraphWorker: Project: /user/username/projects/myproject/main/tsconfig.json +Info 59 [00:02:22.000] Finishing updateGraphWorker: Project: /user/username/projects/myproject/main/tsconfig.json Version: 2 structureChanged: false structureIsReused:: Completely Elapsed:: *ms +Info 60 [00:02:23.000] Different program with same set of files +Info 61 [00:02:24.000] Running: *ensureProjectForOpenFiles* +Info 62 [00:02:25.000] Before ensureProjectForOpenFiles: +Info 63 [00:02:26.000] Project '/user/username/projects/myproject/main/tsconfig.json' (Configured) +Info 63 [00:02:27.000] Files (3) + +Info 63 [00:02:28.000] ----------------------------------------------- +Info 63 [00:02:29.000] Project '/user/username/projects/myproject/random/tsconfig.json' (Configured) +Info 63 [00:02:30.000] Files (2) + +Info 63 [00:02:31.000] ----------------------------------------------- +Info 63 [00:02:32.000] Open files: +Info 63 [00:02:33.000] FileName: /user/username/projects/myproject/main/main.ts ProjectRootPath: undefined +Info 63 [00:02:34.000] Projects: /user/username/projects/myproject/main/tsconfig.json +Info 63 [00:02:35.000] FileName: /user/username/projects/myproject/random/random.ts ProjectRootPath: undefined +Info 63 [00:02:36.000] Projects: /user/username/projects/myproject/random/tsconfig.json +Info 63 [00:02:37.000] After ensureProjectForOpenFiles: +Info 64 [00:02:38.000] Project '/user/username/projects/myproject/main/tsconfig.json' (Configured) +Info 64 [00:02:39.000] Files (3) + +Info 64 [00:02:40.000] ----------------------------------------------- +Info 64 [00:02:41.000] Project '/user/username/projects/myproject/random/tsconfig.json' (Configured) +Info 64 [00:02:42.000] Files (2) + +Info 64 [00:02:43.000] ----------------------------------------------- +Info 64 [00:02:44.000] Open files: +Info 64 [00:02:45.000] FileName: /user/username/projects/myproject/main/main.ts ProjectRootPath: undefined +Info 64 [00:02:46.000] Projects: /user/username/projects/myproject/main/tsconfig.json +Info 64 [00:02:47.000] FileName: /user/username/projects/myproject/random/random.ts ProjectRootPath: undefined +Info 64 [00:02:48.000] Projects: /user/username/projects/myproject/random/tsconfig.json After running timeout callbacks PolledWatches:: @@ -655,7 +655,7 @@ FsWatchesRecursive:: /user/username/projects/myproject/random: {} -Info 64 [16:02:49.000] request: +Info 64 [00:02:49.000] request: { "command": "definitionAndBoundSpan", "arguments": { @@ -738,7 +738,7 @@ FsWatchesRecursive:: /user/username/projects/myproject/random: {} -Info 65 [16:02:50.000] response: +Info 65 [00:02:50.000] response: { "response": { "definitions": [ @@ -775,7 +775,7 @@ Info 65 [16:02:50.000] response: }, "responseRequired": true } -Info 66 [16:02:51.000] request: +Info 66 [00:02:51.000] request: { "command": "definitionAndBoundSpan", "arguments": { @@ -858,7 +858,7 @@ FsWatchesRecursive:: /user/username/projects/myproject/random: {} -Info 67 [16:02:52.000] response: +Info 67 [00:02:52.000] response: { "response": { "definitions": [ @@ -895,7 +895,7 @@ Info 67 [16:02:52.000] response: }, "responseRequired": true } -Info 68 [16:02:53.000] request: +Info 68 [00:02:53.000] request: { "command": "definitionAndBoundSpan", "arguments": { @@ -978,7 +978,7 @@ FsWatchesRecursive:: /user/username/projects/myproject/random: {} -Info 69 [16:02:54.000] response: +Info 69 [00:02:54.000] response: { "response": { "definitions": [ @@ -1015,7 +1015,7 @@ Info 69 [16:02:54.000] response: }, "responseRequired": true } -Info 70 [16:02:55.000] request: +Info 70 [00:02:55.000] request: { "command": "definitionAndBoundSpan", "arguments": { @@ -1098,7 +1098,7 @@ FsWatchesRecursive:: /user/username/projects/myproject/random: {} -Info 71 [16:02:56.000] response: +Info 71 [00:02:56.000] response: { "response": { "definitions": [ @@ -1135,7 +1135,7 @@ Info 71 [16:02:56.000] response: }, "responseRequired": true } -Info 72 [16:02:57.000] request: +Info 72 [00:02:57.000] request: { "command": "definitionAndBoundSpan", "arguments": { @@ -1218,7 +1218,7 @@ FsWatchesRecursive:: /user/username/projects/myproject/random: {} -Info 73 [16:02:58.000] response: +Info 73 [00:02:58.000] response: { "response": { "definitions": [ 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 166a40f6234ff..d251c2b08d60f 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 @@ -1,5 +1,5 @@ -Info 0 [16:01:03.000] Provided types map file "/a/lib/typesMap.json" doesn't exist -Info 1 [16:01:04.000] request: +Info 0 [00:01:03.000] Provided types map file "/a/lib/typesMap.json" doesn't exist +Info 1 [00:01:04.000] request: { "seq": 0, "type": "request", @@ -200,11 +200,11 @@ FsWatches:: FsWatchesRecursive:: -Info 2 [16:01:05.000] Search path: /user/username/projects/myproject/main -Info 3 [16:01:06.000] For info: /user/username/projects/myproject/main/main.ts :: Config file name: /user/username/projects/myproject/main/tsconfig.json -Info 4 [16:01:07.000] Creating configuration project /user/username/projects/myproject/main/tsconfig.json -Info 5 [16:01:08.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/main/tsconfig.json 2000 undefined Project: /user/username/projects/myproject/main/tsconfig.json WatchType: Config file -Info 6 [16:01:09.000] Config: /user/username/projects/myproject/main/tsconfig.json : { +Info 2 [00:01:05.000] Search path: /user/username/projects/myproject/main +Info 3 [00:01:06.000] For info: /user/username/projects/myproject/main/main.ts :: Config file name: /user/username/projects/myproject/main/tsconfig.json +Info 4 [00:01:07.000] Creating configuration project /user/username/projects/myproject/main/tsconfig.json +Info 5 [00:01:08.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/main/tsconfig.json 2000 undefined Project: /user/username/projects/myproject/main/tsconfig.json WatchType: Config file +Info 6 [00:01:09.000] Config: /user/username/projects/myproject/main/tsconfig.json : { "rootNames": [ "/user/username/projects/myproject/main/main.ts" ], @@ -221,11 +221,11 @@ Info 6 [16:01:09.000] Config: /user/username/projects/myproject/main/tsconfig } ] } -Info 7 [16:01:10.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/main 1 undefined Config: /user/username/projects/myproject/main/tsconfig.json WatchType: Wild card directory -Info 8 [16:01:11.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/main 1 undefined Config: /user/username/projects/myproject/main/tsconfig.json WatchType: Wild card directory -Info 9 [16:01:12.000] Plugins were requested but not running in environment that supports 'require'. Nothing will be loaded -Info 10 [16:01:13.000] Starting updateGraphWorker: Project: /user/username/projects/myproject/main/tsconfig.json -Info 11 [16:01:14.000] Config: /user/username/projects/myproject/dependency/tsconfig.json : { +Info 7 [00:01:10.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/main 1 undefined Config: /user/username/projects/myproject/main/tsconfig.json WatchType: Wild card directory +Info 8 [00:01:11.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/main 1 undefined Config: /user/username/projects/myproject/main/tsconfig.json WatchType: Wild card directory +Info 9 [00:01:12.000] Plugins were requested but not running in environment that supports 'require'. Nothing will be loaded +Info 10 [00:01:13.000] Starting updateGraphWorker: Project: /user/username/projects/myproject/main/tsconfig.json +Info 11 [00:01:14.000] Config: /user/username/projects/myproject/dependency/tsconfig.json : { "rootNames": [ "/user/username/projects/myproject/dependency/FnS.ts" ], @@ -236,20 +236,20 @@ Info 11 [16:01:14.000] Config: /user/username/projects/myproject/dependency/ts "configFilePath": "/user/username/projects/myproject/dependency/tsconfig.json" } } -Info 12 [16:01:15.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/dependency/tsconfig.json 2000 undefined Project: /user/username/projects/myproject/main/tsconfig.json WatchType: Config file -Info 13 [16:01:16.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/dependency 1 undefined Config: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Wild card directory -Info 14 [16:01:17.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/dependency 1 undefined Config: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Wild card directory -Info 15 [16:01:18.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/decls 1 undefined Project: /user/username/projects/myproject/main/tsconfig.json WatchType: Failed Lookup Locations -Info 16 [16:01:19.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/decls 1 undefined Project: /user/username/projects/myproject/main/tsconfig.json WatchType: Failed Lookup Locations -Info 17 [16:01:20.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/decls/fns.d.ts 500 undefined WatchType: Closed Script info -Info 18 [16:01:21.000] FileWatcher:: Added:: WatchInfo: /a/lib/lib.d.ts 500 undefined WatchType: Closed Script info -Info 19 [16:01:22.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/main/node_modules/@types 1 undefined Project: /user/username/projects/myproject/main/tsconfig.json WatchType: Type roots -Info 20 [16:01:23.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/main/node_modules/@types 1 undefined Project: /user/username/projects/myproject/main/tsconfig.json WatchType: Type roots -Info 21 [16:01:24.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/main/tsconfig.json WatchType: Type roots -Info 22 [16:01:25.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/main/tsconfig.json WatchType: Type roots -Info 23 [16:01:26.000] Finishing updateGraphWorker: Project: /user/username/projects/myproject/main/tsconfig.json Version: 1 structureChanged: true structureIsReused:: Not Elapsed:: *ms -Info 24 [16:01:27.000] Project '/user/username/projects/myproject/main/tsconfig.json' (Configured) -Info 25 [16:01:28.000] Files (3) +Info 12 [00:01:15.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/dependency/tsconfig.json 2000 undefined Project: /user/username/projects/myproject/main/tsconfig.json WatchType: Config file +Info 13 [00:01:16.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/dependency 1 undefined Config: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Wild card directory +Info 14 [00:01:17.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/dependency 1 undefined Config: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Wild card directory +Info 15 [00:01:18.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/decls 1 undefined Project: /user/username/projects/myproject/main/tsconfig.json WatchType: Failed Lookup Locations +Info 16 [00:01:19.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/decls 1 undefined Project: /user/username/projects/myproject/main/tsconfig.json WatchType: Failed Lookup Locations +Info 17 [00:01:20.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/decls/fns.d.ts 500 undefined WatchType: Closed Script info +Info 18 [00:01:21.000] FileWatcher:: Added:: WatchInfo: /a/lib/lib.d.ts 500 undefined WatchType: Closed Script info +Info 19 [00:01:22.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/main/node_modules/@types 1 undefined Project: /user/username/projects/myproject/main/tsconfig.json WatchType: Type roots +Info 20 [00:01:23.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/main/node_modules/@types 1 undefined Project: /user/username/projects/myproject/main/tsconfig.json WatchType: Type roots +Info 21 [00:01:24.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/main/tsconfig.json WatchType: Type roots +Info 22 [00:01:25.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/main/tsconfig.json WatchType: Type roots +Info 23 [00:01:26.000] Finishing updateGraphWorker: Project: /user/username/projects/myproject/main/tsconfig.json Version: 1 structureChanged: true structureIsReused:: Not Elapsed:: *ms +Info 24 [00:01:27.000] Project '/user/username/projects/myproject/main/tsconfig.json' (Configured) +Info 25 [00:01:28.000] Files (3) /a/lib/lib.d.ts /user/username/projects/myproject/decls/fns.d.ts /user/username/projects/myproject/main/main.ts @@ -262,16 +262,16 @@ Info 25 [16:01:28.000] Files (3) main.ts Matched by default include pattern '**/*' -Info 26 [16:01:29.000] ----------------------------------------------- -Info 27 [16:01:30.000] Search path: /user/username/projects/myproject/main -Info 28 [16:01:31.000] For info: /user/username/projects/myproject/main/tsconfig.json :: No config files found. -Info 29 [16:01:32.000] Project '/user/username/projects/myproject/main/tsconfig.json' (Configured) -Info 29 [16:01:33.000] Files (3) +Info 26 [00:01:29.000] ----------------------------------------------- +Info 27 [00:01:30.000] Search path: /user/username/projects/myproject/main +Info 28 [00:01:31.000] For info: /user/username/projects/myproject/main/tsconfig.json :: No config files found. +Info 29 [00:01:32.000] Project '/user/username/projects/myproject/main/tsconfig.json' (Configured) +Info 29 [00:01:33.000] Files (3) -Info 29 [16:01:34.000] ----------------------------------------------- -Info 29 [16:01:35.000] Open files: -Info 29 [16:01:36.000] FileName: /user/username/projects/myproject/main/main.ts ProjectRootPath: undefined -Info 29 [16:01:37.000] Projects: /user/username/projects/myproject/main/tsconfig.json +Info 29 [00:01:34.000] ----------------------------------------------- +Info 29 [00:01:35.000] Open files: +Info 29 [00:01:36.000] FileName: /user/username/projects/myproject/main/main.ts ProjectRootPath: undefined +Info 29 [00:01:37.000] Projects: /user/username/projects/myproject/main/tsconfig.json After request PolledWatches:: @@ -298,11 +298,11 @@ FsWatchesRecursive:: /user/username/projects/myproject/decls: {} -Info 29 [16:01:38.000] response: +Info 29 [00:01:38.000] response: { "responseRequired": false } -Info 30 [16:01:39.000] request: +Info 30 [00:01:39.000] request: { "seq": 0, "type": "request", @@ -337,11 +337,11 @@ FsWatchesRecursive:: /user/username/projects/myproject/decls: {} -Info 31 [16:01:40.000] Search path: /user/username/projects/myproject/random -Info 32 [16:01:41.000] For info: /user/username/projects/myproject/random/random.ts :: Config file name: /user/username/projects/myproject/random/tsconfig.json -Info 33 [16:01:42.000] Creating configuration project /user/username/projects/myproject/random/tsconfig.json -Info 34 [16:01:43.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/random/tsconfig.json 2000 undefined Project: /user/username/projects/myproject/random/tsconfig.json WatchType: Config file -Info 35 [16:01:44.000] Config: /user/username/projects/myproject/random/tsconfig.json : { +Info 31 [00:01:40.000] Search path: /user/username/projects/myproject/random +Info 32 [00:01:41.000] For info: /user/username/projects/myproject/random/random.ts :: Config file name: /user/username/projects/myproject/random/tsconfig.json +Info 33 [00:01:42.000] Creating configuration project /user/username/projects/myproject/random/tsconfig.json +Info 34 [00:01:43.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/random/tsconfig.json 2000 undefined Project: /user/username/projects/myproject/random/tsconfig.json WatchType: Config file +Info 35 [00:01:44.000] Config: /user/username/projects/myproject/random/tsconfig.json : { "rootNames": [ "/user/username/projects/myproject/random/random.ts" ], @@ -349,17 +349,17 @@ Info 35 [16:01:44.000] Config: /user/username/projects/myproject/random/tsconf "configFilePath": "/user/username/projects/myproject/random/tsconfig.json" } } -Info 36 [16:01:45.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/random 1 undefined Config: /user/username/projects/myproject/random/tsconfig.json WatchType: Wild card directory -Info 37 [16:01:46.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/random 1 undefined Config: /user/username/projects/myproject/random/tsconfig.json WatchType: Wild card directory -Info 38 [16:01:47.000] Plugins were requested but not running in environment that supports 'require'. Nothing will be loaded -Info 39 [16:01:48.000] Starting updateGraphWorker: Project: /user/username/projects/myproject/random/tsconfig.json -Info 40 [16:01:49.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/random/node_modules/@types 1 undefined Project: /user/username/projects/myproject/random/tsconfig.json WatchType: Type roots -Info 41 [16:01:50.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/random/node_modules/@types 1 undefined Project: /user/username/projects/myproject/random/tsconfig.json WatchType: Type roots -Info 42 [16:01:51.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/random/tsconfig.json WatchType: Type roots -Info 43 [16:01:52.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/random/tsconfig.json WatchType: Type roots -Info 44 [16:01:53.000] Finishing updateGraphWorker: Project: /user/username/projects/myproject/random/tsconfig.json Version: 1 structureChanged: true structureIsReused:: Not Elapsed:: *ms -Info 45 [16:01:54.000] Project '/user/username/projects/myproject/random/tsconfig.json' (Configured) -Info 46 [16:01:55.000] Files (2) +Info 36 [00:01:45.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/random 1 undefined Config: /user/username/projects/myproject/random/tsconfig.json WatchType: Wild card directory +Info 37 [00:01:46.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/random 1 undefined Config: /user/username/projects/myproject/random/tsconfig.json WatchType: Wild card directory +Info 38 [00:01:47.000] Plugins were requested but not running in environment that supports 'require'. Nothing will be loaded +Info 39 [00:01:48.000] Starting updateGraphWorker: Project: /user/username/projects/myproject/random/tsconfig.json +Info 40 [00:01:49.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/random/node_modules/@types 1 undefined Project: /user/username/projects/myproject/random/tsconfig.json WatchType: Type roots +Info 41 [00:01:50.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/random/node_modules/@types 1 undefined Project: /user/username/projects/myproject/random/tsconfig.json WatchType: Type roots +Info 42 [00:01:51.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/random/tsconfig.json WatchType: Type roots +Info 43 [00:01:52.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/random/tsconfig.json WatchType: Type roots +Info 44 [00:01:53.000] Finishing updateGraphWorker: Project: /user/username/projects/myproject/random/tsconfig.json Version: 1 structureChanged: true structureIsReused:: Not Elapsed:: *ms +Info 45 [00:01:54.000] Project '/user/username/projects/myproject/random/tsconfig.json' (Configured) +Info 46 [00:01:55.000] Files (2) /a/lib/lib.d.ts /user/username/projects/myproject/random/random.ts @@ -369,20 +369,20 @@ Info 46 [16:01:55.000] Files (2) random.ts Matched by default include pattern '**/*' -Info 47 [16:01:56.000] ----------------------------------------------- -Info 48 [16:01:57.000] Project '/user/username/projects/myproject/main/tsconfig.json' (Configured) -Info 48 [16:01:58.000] Files (3) +Info 47 [00:01:56.000] ----------------------------------------------- +Info 48 [00:01:57.000] Project '/user/username/projects/myproject/main/tsconfig.json' (Configured) +Info 48 [00:01:58.000] Files (3) -Info 48 [16:01:59.000] ----------------------------------------------- -Info 48 [16:02:00.000] Project '/user/username/projects/myproject/random/tsconfig.json' (Configured) -Info 48 [16:02:01.000] Files (2) +Info 48 [00:01:59.000] ----------------------------------------------- +Info 48 [00:02:00.000] Project '/user/username/projects/myproject/random/tsconfig.json' (Configured) +Info 48 [00:02:01.000] Files (2) -Info 48 [16:02:02.000] ----------------------------------------------- -Info 48 [16:02:03.000] Open files: -Info 48 [16:02:04.000] FileName: /user/username/projects/myproject/main/main.ts ProjectRootPath: undefined -Info 48 [16:02:05.000] Projects: /user/username/projects/myproject/main/tsconfig.json -Info 48 [16:02:06.000] FileName: /user/username/projects/myproject/random/random.ts ProjectRootPath: undefined -Info 48 [16:02:07.000] Projects: /user/username/projects/myproject/random/tsconfig.json +Info 48 [00:02:02.000] ----------------------------------------------- +Info 48 [00:02:03.000] Open files: +Info 48 [00:02:04.000] FileName: /user/username/projects/myproject/main/main.ts ProjectRootPath: undefined +Info 48 [00:02:05.000] Projects: /user/username/projects/myproject/main/tsconfig.json +Info 48 [00:02:06.000] FileName: /user/username/projects/myproject/random/random.ts ProjectRootPath: undefined +Info 48 [00:02:07.000] Projects: /user/username/projects/myproject/random/tsconfig.json After request PolledWatches:: @@ -415,11 +415,11 @@ FsWatchesRecursive:: /user/username/projects/myproject/random: {} -Info 48 [16:02:08.000] response: +Info 48 [00:02:08.000] response: { "responseRequired": false } -Info 49 [16:02:09.000] request: +Info 49 [00:02:09.000] request: { "command": "definitionAndBoundSpan", "arguments": { @@ -462,8 +462,8 @@ FsWatchesRecursive:: /user/username/projects/myproject/random: {} -Info 50 [16:02:10.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/decls/FnS.d.ts.map 500 undefined WatchType: Closed Script info -Info 51 [16:02:11.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/dependency/FnS.ts 500 undefined WatchType: Closed Script info +Info 50 [00:02:10.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/decls/FnS.d.ts.map 500 undefined WatchType: Closed Script info +Info 51 [00:02:11.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/dependency/FnS.ts 500 undefined WatchType: Closed Script info After request PolledWatches:: @@ -500,7 +500,7 @@ FsWatchesRecursive:: /user/username/projects/myproject/random: {} -Info 52 [16:02:12.000] response: +Info 52 [00:02:12.000] response: { "response": { "definitions": [ @@ -537,11 +537,11 @@ Info 52 [16:02:12.000] response: }, "responseRequired": true } -Info 53 [16:02:16.000] FileWatcher:: Triggered with /user/username/projects/myproject/decls/fns.d.ts 1:: WatchInfo: /user/username/projects/myproject/decls/fns.d.ts 500 undefined WatchType: Closed Script info -Info 54 [16:02:17.000] Scheduled: /user/username/projects/myproject/main/tsconfig.json -Info 55 [16:02:18.000] Scheduled: *ensureProjectForOpenFiles* -Info 56 [16:02:19.000] Elapsed:: *ms FileWatcher:: Triggered with /user/username/projects/myproject/decls/fns.d.ts 1:: WatchInfo: /user/username/projects/myproject/decls/fns.d.ts 500 undefined WatchType: Closed Script info -Info 57 [16:02:20.000] request: +Info 53 [00:02:16.000] FileWatcher:: Triggered with /user/username/projects/myproject/decls/fns.d.ts 1:: WatchInfo: /user/username/projects/myproject/decls/fns.d.ts 500 undefined WatchType: Closed Script info +Info 54 [00:02:17.000] Scheduled: /user/username/projects/myproject/main/tsconfig.json +Info 55 [00:02:18.000] Scheduled: *ensureProjectForOpenFiles* +Info 56 [00:02:19.000] Elapsed:: *ms FileWatcher:: Triggered with /user/username/projects/myproject/decls/fns.d.ts 1:: WatchInfo: /user/username/projects/myproject/decls/fns.d.ts 500 undefined WatchType: Closed Script info +Info 57 [00:02:20.000] request: { "command": "definitionAndBoundSpan", "arguments": { @@ -597,9 +597,9 @@ FsWatchesRecursive:: /user/username/projects/myproject/random: {} -Info 58 [16:02:21.000] Starting updateGraphWorker: Project: /user/username/projects/myproject/main/tsconfig.json -Info 59 [16:02:22.000] Finishing updateGraphWorker: Project: /user/username/projects/myproject/main/tsconfig.json Version: 2 structureChanged: false structureIsReused:: Completely Elapsed:: *ms -Info 60 [16:02:23.000] Different program with same set of files +Info 58 [00:02:21.000] Starting updateGraphWorker: Project: /user/username/projects/myproject/main/tsconfig.json +Info 59 [00:02:22.000] Finishing updateGraphWorker: Project: /user/username/projects/myproject/main/tsconfig.json Version: 2 structureChanged: false structureIsReused:: Completely Elapsed:: *ms +Info 60 [00:02:23.000] Different program with same set of files After request PolledWatches:: @@ -636,7 +636,7 @@ FsWatchesRecursive:: /user/username/projects/myproject/random: {} -Info 61 [16:02:24.000] response: +Info 61 [00:02:24.000] response: { "response": { "definitions": [ @@ -673,7 +673,7 @@ Info 61 [16:02:24.000] response: }, "responseRequired": true } -Info 62 [16:02:25.000] request: +Info 62 [00:02:25.000] request: { "command": "definitionAndBoundSpan", "arguments": { @@ -756,7 +756,7 @@ FsWatchesRecursive:: /user/username/projects/myproject/random: {} -Info 63 [16:02:26.000] response: +Info 63 [00:02:26.000] response: { "response": { "definitions": [ @@ -793,7 +793,7 @@ Info 63 [16:02:26.000] response: }, "responseRequired": true } -Info 64 [16:02:27.000] request: +Info 64 [00:02:27.000] request: { "command": "definitionAndBoundSpan", "arguments": { @@ -876,7 +876,7 @@ FsWatchesRecursive:: /user/username/projects/myproject/random: {} -Info 65 [16:02:28.000] response: +Info 65 [00:02:28.000] response: { "response": { "definitions": [ @@ -913,7 +913,7 @@ Info 65 [16:02:28.000] response: }, "responseRequired": true } -Info 66 [16:02:29.000] request: +Info 66 [00:02:29.000] request: { "command": "definitionAndBoundSpan", "arguments": { @@ -996,7 +996,7 @@ FsWatchesRecursive:: /user/username/projects/myproject/random: {} -Info 67 [16:02:30.000] response: +Info 67 [00:02:30.000] response: { "response": { "definitions": [ @@ -1033,7 +1033,7 @@ Info 67 [16:02:30.000] response: }, "responseRequired": true } -Info 68 [16:02:31.000] request: +Info 68 [00:02:31.000] request: { "command": "definitionAndBoundSpan", "arguments": { @@ -1116,7 +1116,7 @@ FsWatchesRecursive:: /user/username/projects/myproject/random: {} -Info 69 [16:02:32.000] response: +Info 69 [00:02:32.000] response: { "response": { "definitions": [ 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 914282ca2f10b..f23baae813382 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 @@ -1,5 +1,5 @@ -Info 0 [16:01:04.000] Provided types map file "/a/lib/typesMap.json" doesn't exist -Info 1 [16:01:05.000] request: +Info 0 [00:01:04.000] Provided types map file "/a/lib/typesMap.json" doesn't exist +Info 1 [00:01:05.000] request: { "seq": 0, "type": "request", @@ -192,11 +192,11 @@ FsWatches:: FsWatchesRecursive:: -Info 2 [16:01:06.000] Search path: /user/username/projects/myproject/main -Info 3 [16:01:07.000] For info: /user/username/projects/myproject/main/main.ts :: Config file name: /user/username/projects/myproject/main/tsconfig.json -Info 4 [16:01:08.000] Creating configuration project /user/username/projects/myproject/main/tsconfig.json -Info 5 [16:01:09.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/main/tsconfig.json 2000 undefined Project: /user/username/projects/myproject/main/tsconfig.json WatchType: Config file -Info 6 [16:01:10.000] Config: /user/username/projects/myproject/main/tsconfig.json : { +Info 2 [00:01:06.000] Search path: /user/username/projects/myproject/main +Info 3 [00:01:07.000] For info: /user/username/projects/myproject/main/main.ts :: Config file name: /user/username/projects/myproject/main/tsconfig.json +Info 4 [00:01:08.000] Creating configuration project /user/username/projects/myproject/main/tsconfig.json +Info 5 [00:01:09.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/main/tsconfig.json 2000 undefined Project: /user/username/projects/myproject/main/tsconfig.json WatchType: Config file +Info 6 [00:01:10.000] Config: /user/username/projects/myproject/main/tsconfig.json : { "rootNames": [ "/user/username/projects/myproject/main/main.ts" ], @@ -213,11 +213,11 @@ Info 6 [16:01:10.000] Config: /user/username/projects/myproject/main/tsconfig } ] } -Info 7 [16:01:11.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/main 1 undefined Config: /user/username/projects/myproject/main/tsconfig.json WatchType: Wild card directory -Info 8 [16:01:12.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/main 1 undefined Config: /user/username/projects/myproject/main/tsconfig.json WatchType: Wild card directory -Info 9 [16:01:13.000] Plugins were requested but not running in environment that supports 'require'. Nothing will be loaded -Info 10 [16:01:14.000] Starting updateGraphWorker: Project: /user/username/projects/myproject/main/tsconfig.json -Info 11 [16:01:15.000] Config: /user/username/projects/myproject/dependency/tsconfig.json : { +Info 7 [00:01:11.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/main 1 undefined Config: /user/username/projects/myproject/main/tsconfig.json WatchType: Wild card directory +Info 8 [00:01:12.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/main 1 undefined Config: /user/username/projects/myproject/main/tsconfig.json WatchType: Wild card directory +Info 9 [00:01:13.000] Plugins were requested but not running in environment that supports 'require'. Nothing will be loaded +Info 10 [00:01:14.000] Starting updateGraphWorker: Project: /user/username/projects/myproject/main/tsconfig.json +Info 11 [00:01:15.000] Config: /user/username/projects/myproject/dependency/tsconfig.json : { "rootNames": [ "/user/username/projects/myproject/dependency/FnS.ts" ], @@ -228,19 +228,19 @@ Info 11 [16:01:15.000] Config: /user/username/projects/myproject/dependency/ts "configFilePath": "/user/username/projects/myproject/dependency/tsconfig.json" } } -Info 12 [16:01:16.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/dependency/tsconfig.json 2000 undefined Project: /user/username/projects/myproject/main/tsconfig.json WatchType: Config file -Info 13 [16:01:17.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/dependency 1 undefined Config: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Wild card directory -Info 14 [16:01:18.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/dependency 1 undefined Config: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Wild card directory -Info 15 [16:01:19.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/decls 1 undefined Project: /user/username/projects/myproject/main/tsconfig.json WatchType: Failed Lookup Locations -Info 16 [16:01:20.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/decls 1 undefined Project: /user/username/projects/myproject/main/tsconfig.json WatchType: Failed Lookup Locations -Info 17 [16:01:21.000] FileWatcher:: Added:: WatchInfo: /a/lib/lib.d.ts 500 undefined WatchType: Closed Script info -Info 18 [16:01:22.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/main/node_modules/@types 1 undefined Project: /user/username/projects/myproject/main/tsconfig.json WatchType: Type roots -Info 19 [16:01:23.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/main/node_modules/@types 1 undefined Project: /user/username/projects/myproject/main/tsconfig.json WatchType: Type roots -Info 20 [16:01:24.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/main/tsconfig.json WatchType: Type roots -Info 21 [16:01:25.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/main/tsconfig.json WatchType: Type roots -Info 22 [16:01:26.000] Finishing updateGraphWorker: Project: /user/username/projects/myproject/main/tsconfig.json Version: 1 structureChanged: true structureIsReused:: Not Elapsed:: *ms -Info 23 [16:01:27.000] Project '/user/username/projects/myproject/main/tsconfig.json' (Configured) -Info 24 [16:01:28.000] Files (2) +Info 12 [00:01:16.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/dependency/tsconfig.json 2000 undefined Project: /user/username/projects/myproject/main/tsconfig.json WatchType: Config file +Info 13 [00:01:17.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/dependency 1 undefined Config: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Wild card directory +Info 14 [00:01:18.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/dependency 1 undefined Config: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Wild card directory +Info 15 [00:01:19.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/decls 1 undefined Project: /user/username/projects/myproject/main/tsconfig.json WatchType: Failed Lookup Locations +Info 16 [00:01:20.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/decls 1 undefined Project: /user/username/projects/myproject/main/tsconfig.json WatchType: Failed Lookup Locations +Info 17 [00:01:21.000] FileWatcher:: Added:: WatchInfo: /a/lib/lib.d.ts 500 undefined WatchType: Closed Script info +Info 18 [00:01:22.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/main/node_modules/@types 1 undefined Project: /user/username/projects/myproject/main/tsconfig.json WatchType: Type roots +Info 19 [00:01:23.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/main/node_modules/@types 1 undefined Project: /user/username/projects/myproject/main/tsconfig.json WatchType: Type roots +Info 20 [00:01:24.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/main/tsconfig.json WatchType: Type roots +Info 21 [00:01:25.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/main/tsconfig.json WatchType: Type roots +Info 22 [00:01:26.000] Finishing updateGraphWorker: Project: /user/username/projects/myproject/main/tsconfig.json Version: 1 structureChanged: true structureIsReused:: Not Elapsed:: *ms +Info 23 [00:01:27.000] Project '/user/username/projects/myproject/main/tsconfig.json' (Configured) +Info 24 [00:01:28.000] Files (2) /a/lib/lib.d.ts /user/username/projects/myproject/main/main.ts @@ -250,16 +250,16 @@ Info 24 [16:01:28.000] Files (2) main.ts Matched by default include pattern '**/*' -Info 25 [16:01:29.000] ----------------------------------------------- -Info 26 [16:01:30.000] Search path: /user/username/projects/myproject/main -Info 27 [16:01:31.000] For info: /user/username/projects/myproject/main/tsconfig.json :: No config files found. -Info 28 [16:01:32.000] Project '/user/username/projects/myproject/main/tsconfig.json' (Configured) -Info 28 [16:01:33.000] Files (2) +Info 25 [00:01:29.000] ----------------------------------------------- +Info 26 [00:01:30.000] Search path: /user/username/projects/myproject/main +Info 27 [00:01:31.000] For info: /user/username/projects/myproject/main/tsconfig.json :: No config files found. +Info 28 [00:01:32.000] Project '/user/username/projects/myproject/main/tsconfig.json' (Configured) +Info 28 [00:01:33.000] Files (2) -Info 28 [16:01:34.000] ----------------------------------------------- -Info 28 [16:01:35.000] Open files: -Info 28 [16:01:36.000] FileName: /user/username/projects/myproject/main/main.ts ProjectRootPath: undefined -Info 28 [16:01:37.000] Projects: /user/username/projects/myproject/main/tsconfig.json +Info 28 [00:01:34.000] ----------------------------------------------- +Info 28 [00:01:35.000] Open files: +Info 28 [00:01:36.000] FileName: /user/username/projects/myproject/main/main.ts ProjectRootPath: undefined +Info 28 [00:01:37.000] Projects: /user/username/projects/myproject/main/tsconfig.json After request PolledWatches:: @@ -284,11 +284,11 @@ FsWatchesRecursive:: /user/username/projects/myproject/decls: {} -Info 28 [16:01:38.000] response: +Info 28 [00:01:38.000] response: { "responseRequired": false } -Info 29 [16:01:39.000] request: +Info 29 [00:01:39.000] request: { "seq": 0, "type": "request", @@ -321,11 +321,11 @@ FsWatchesRecursive:: /user/username/projects/myproject/decls: {} -Info 30 [16:01:40.000] Search path: /user/username/projects/myproject/random -Info 31 [16:01:41.000] For info: /user/username/projects/myproject/random/random.ts :: Config file name: /user/username/projects/myproject/random/tsconfig.json -Info 32 [16:01:42.000] Creating configuration project /user/username/projects/myproject/random/tsconfig.json -Info 33 [16:01:43.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/random/tsconfig.json 2000 undefined Project: /user/username/projects/myproject/random/tsconfig.json WatchType: Config file -Info 34 [16:01:44.000] Config: /user/username/projects/myproject/random/tsconfig.json : { +Info 30 [00:01:40.000] Search path: /user/username/projects/myproject/random +Info 31 [00:01:41.000] For info: /user/username/projects/myproject/random/random.ts :: Config file name: /user/username/projects/myproject/random/tsconfig.json +Info 32 [00:01:42.000] Creating configuration project /user/username/projects/myproject/random/tsconfig.json +Info 33 [00:01:43.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/random/tsconfig.json 2000 undefined Project: /user/username/projects/myproject/random/tsconfig.json WatchType: Config file +Info 34 [00:01:44.000] Config: /user/username/projects/myproject/random/tsconfig.json : { "rootNames": [ "/user/username/projects/myproject/random/random.ts" ], @@ -333,17 +333,17 @@ Info 34 [16:01:44.000] Config: /user/username/projects/myproject/random/tsconf "configFilePath": "/user/username/projects/myproject/random/tsconfig.json" } } -Info 35 [16:01:45.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/random 1 undefined Config: /user/username/projects/myproject/random/tsconfig.json WatchType: Wild card directory -Info 36 [16:01:46.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/random 1 undefined Config: /user/username/projects/myproject/random/tsconfig.json WatchType: Wild card directory -Info 37 [16:01:47.000] Plugins were requested but not running in environment that supports 'require'. Nothing will be loaded -Info 38 [16:01:48.000] Starting updateGraphWorker: Project: /user/username/projects/myproject/random/tsconfig.json -Info 39 [16:01:49.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/random/node_modules/@types 1 undefined Project: /user/username/projects/myproject/random/tsconfig.json WatchType: Type roots -Info 40 [16:01:50.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/random/node_modules/@types 1 undefined Project: /user/username/projects/myproject/random/tsconfig.json WatchType: Type roots -Info 41 [16:01:51.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/random/tsconfig.json WatchType: Type roots -Info 42 [16:01:52.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/random/tsconfig.json WatchType: Type roots -Info 43 [16:01:53.000] Finishing updateGraphWorker: Project: /user/username/projects/myproject/random/tsconfig.json Version: 1 structureChanged: true structureIsReused:: Not Elapsed:: *ms -Info 44 [16:01:54.000] Project '/user/username/projects/myproject/random/tsconfig.json' (Configured) -Info 45 [16:01:55.000] Files (2) +Info 35 [00:01:45.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/random 1 undefined Config: /user/username/projects/myproject/random/tsconfig.json WatchType: Wild card directory +Info 36 [00:01:46.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/random 1 undefined Config: /user/username/projects/myproject/random/tsconfig.json WatchType: Wild card directory +Info 37 [00:01:47.000] Plugins were requested but not running in environment that supports 'require'. Nothing will be loaded +Info 38 [00:01:48.000] Starting updateGraphWorker: Project: /user/username/projects/myproject/random/tsconfig.json +Info 39 [00:01:49.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/random/node_modules/@types 1 undefined Project: /user/username/projects/myproject/random/tsconfig.json WatchType: Type roots +Info 40 [00:01:50.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/random/node_modules/@types 1 undefined Project: /user/username/projects/myproject/random/tsconfig.json WatchType: Type roots +Info 41 [00:01:51.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/random/tsconfig.json WatchType: Type roots +Info 42 [00:01:52.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/random/tsconfig.json WatchType: Type roots +Info 43 [00:01:53.000] Finishing updateGraphWorker: Project: /user/username/projects/myproject/random/tsconfig.json Version: 1 structureChanged: true structureIsReused:: Not Elapsed:: *ms +Info 44 [00:01:54.000] Project '/user/username/projects/myproject/random/tsconfig.json' (Configured) +Info 45 [00:01:55.000] Files (2) /a/lib/lib.d.ts /user/username/projects/myproject/random/random.ts @@ -353,20 +353,20 @@ Info 45 [16:01:55.000] Files (2) random.ts Matched by default include pattern '**/*' -Info 46 [16:01:56.000] ----------------------------------------------- -Info 47 [16:01:57.000] Project '/user/username/projects/myproject/main/tsconfig.json' (Configured) -Info 47 [16:01:58.000] Files (2) +Info 46 [00:01:56.000] ----------------------------------------------- +Info 47 [00:01:57.000] Project '/user/username/projects/myproject/main/tsconfig.json' (Configured) +Info 47 [00:01:58.000] Files (2) -Info 47 [16:01:59.000] ----------------------------------------------- -Info 47 [16:02:00.000] Project '/user/username/projects/myproject/random/tsconfig.json' (Configured) -Info 47 [16:02:01.000] Files (2) +Info 47 [00:01:59.000] ----------------------------------------------- +Info 47 [00:02:00.000] Project '/user/username/projects/myproject/random/tsconfig.json' (Configured) +Info 47 [00:02:01.000] Files (2) -Info 47 [16:02:02.000] ----------------------------------------------- -Info 47 [16:02:03.000] Open files: -Info 47 [16:02:04.000] FileName: /user/username/projects/myproject/main/main.ts ProjectRootPath: undefined -Info 47 [16:02:05.000] Projects: /user/username/projects/myproject/main/tsconfig.json -Info 47 [16:02:06.000] FileName: /user/username/projects/myproject/random/random.ts ProjectRootPath: undefined -Info 47 [16:02:07.000] Projects: /user/username/projects/myproject/random/tsconfig.json +Info 47 [00:02:02.000] ----------------------------------------------- +Info 47 [00:02:03.000] Open files: +Info 47 [00:02:04.000] FileName: /user/username/projects/myproject/main/main.ts ProjectRootPath: undefined +Info 47 [00:02:05.000] Projects: /user/username/projects/myproject/main/tsconfig.json +Info 47 [00:02:06.000] FileName: /user/username/projects/myproject/random/random.ts ProjectRootPath: undefined +Info 47 [00:02:07.000] Projects: /user/username/projects/myproject/random/tsconfig.json After request PolledWatches:: @@ -397,11 +397,11 @@ FsWatchesRecursive:: /user/username/projects/myproject/random: {} -Info 47 [16:02:08.000] response: +Info 47 [00:02:08.000] response: { "responseRequired": false } -Info 48 [16:02:09.000] request: +Info 48 [00:02:09.000] request: { "command": "definitionAndBoundSpan", "arguments": { @@ -472,7 +472,7 @@ FsWatchesRecursive:: /user/username/projects/myproject/random: {} -Info 49 [16:02:10.000] response: +Info 49 [00:02:10.000] response: { "response": { "definitions": [ @@ -509,10 +509,10 @@ Info 49 [16:02:10.000] response: }, "responseRequired": true } -Info 50 [16:02:13.000] DirectoryWatcher:: Triggered with /user/username/projects/myproject/decls/FnS.d.ts :: WatchInfo: /user/username/projects/myproject/decls 1 undefined Project: /user/username/projects/myproject/main/tsconfig.json WatchType: Failed Lookup Locations -Info 51 [16:02:14.000] Scheduled: /user/username/projects/myproject/main/tsconfig.jsonFailedLookupInvalidation -Info 52 [16:02:15.000] Elapsed:: *ms DirectoryWatcher:: Triggered with /user/username/projects/myproject/decls/FnS.d.ts :: WatchInfo: /user/username/projects/myproject/decls 1 undefined Project: /user/username/projects/myproject/main/tsconfig.json WatchType: Failed Lookup Locations -Info 53 [16:02:16.000] request: +Info 50 [00:02:13.000] DirectoryWatcher:: Triggered with /user/username/projects/myproject/decls/FnS.d.ts :: WatchInfo: /user/username/projects/myproject/decls 1 undefined Project: /user/username/projects/myproject/main/tsconfig.json WatchType: Failed Lookup Locations +Info 51 [00:02:14.000] Scheduled: /user/username/projects/myproject/main/tsconfig.jsonFailedLookupInvalidation +Info 52 [00:02:15.000] Elapsed:: *ms DirectoryWatcher:: Triggered with /user/username/projects/myproject/decls/FnS.d.ts :: WatchInfo: /user/username/projects/myproject/decls 1 undefined Project: /user/username/projects/myproject/main/tsconfig.json WatchType: Failed Lookup Locations +Info 53 [00:02:16.000] request: { "command": "definitionAndBoundSpan", "arguments": { @@ -561,12 +561,12 @@ FsWatchesRecursive:: /user/username/projects/myproject/random: {} -Info 54 [16:02:17.000] Scheduled: *ensureProjectForOpenFiles* -Info 55 [16:02:18.000] Starting updateGraphWorker: Project: /user/username/projects/myproject/main/tsconfig.json -Info 56 [16:02:19.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/decls/fns.d.ts 500 undefined WatchType: Closed Script info -Info 57 [16:02:20.000] Finishing updateGraphWorker: Project: /user/username/projects/myproject/main/tsconfig.json Version: 2 structureChanged: true structureIsReused:: SafeModules Elapsed:: *ms -Info 58 [16:02:21.000] Project '/user/username/projects/myproject/main/tsconfig.json' (Configured) -Info 59 [16:02:22.000] Files (3) +Info 54 [00:02:17.000] Scheduled: *ensureProjectForOpenFiles* +Info 55 [00:02:18.000] Starting updateGraphWorker: Project: /user/username/projects/myproject/main/tsconfig.json +Info 56 [00:02:19.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/decls/fns.d.ts 500 undefined WatchType: Closed Script info +Info 57 [00:02:20.000] Finishing updateGraphWorker: Project: /user/username/projects/myproject/main/tsconfig.json Version: 2 structureChanged: true structureIsReused:: SafeModules Elapsed:: *ms +Info 58 [00:02:21.000] Project '/user/username/projects/myproject/main/tsconfig.json' (Configured) +Info 59 [00:02:22.000] Files (3) /a/lib/lib.d.ts /user/username/projects/myproject/decls/fns.d.ts /user/username/projects/myproject/main/main.ts @@ -579,9 +579,9 @@ Info 59 [16:02:22.000] Files (3) main.ts Matched by default include pattern '**/*' -Info 60 [16:02:23.000] ----------------------------------------------- -Info 61 [16:02:24.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/decls/FnS.d.ts.map 500 undefined WatchType: Closed Script info -Info 62 [16:02:25.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/dependency/FnS.ts 500 undefined WatchType: Closed Script info +Info 60 [00:02:23.000] ----------------------------------------------- +Info 61 [00:02:24.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/decls/FnS.d.ts.map 500 undefined WatchType: Closed Script info +Info 62 [00:02:25.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/dependency/FnS.ts 500 undefined WatchType: Closed Script info After request PolledWatches:: @@ -618,7 +618,7 @@ FsWatchesRecursive:: /user/username/projects/myproject/random: {} -Info 63 [16:02:26.000] response: +Info 63 [00:02:26.000] response: { "response": { "definitions": [ @@ -655,7 +655,7 @@ Info 63 [16:02:26.000] response: }, "responseRequired": true } -Info 64 [16:02:27.000] request: +Info 64 [00:02:27.000] request: { "command": "definitionAndBoundSpan", "arguments": { @@ -738,7 +738,7 @@ FsWatchesRecursive:: /user/username/projects/myproject/random: {} -Info 65 [16:02:28.000] response: +Info 65 [00:02:28.000] response: { "response": { "definitions": [ @@ -775,7 +775,7 @@ Info 65 [16:02:28.000] response: }, "responseRequired": true } -Info 66 [16:02:29.000] request: +Info 66 [00:02:29.000] request: { "command": "definitionAndBoundSpan", "arguments": { @@ -858,7 +858,7 @@ FsWatchesRecursive:: /user/username/projects/myproject/random: {} -Info 67 [16:02:30.000] response: +Info 67 [00:02:30.000] response: { "response": { "definitions": [ @@ -895,7 +895,7 @@ Info 67 [16:02:30.000] response: }, "responseRequired": true } -Info 68 [16:02:31.000] request: +Info 68 [00:02:31.000] request: { "command": "definitionAndBoundSpan", "arguments": { @@ -978,7 +978,7 @@ FsWatchesRecursive:: /user/username/projects/myproject/random: {} -Info 69 [16:02:32.000] response: +Info 69 [00:02:32.000] response: { "response": { "definitions": [ @@ -1015,7 +1015,7 @@ Info 69 [16:02:32.000] response: }, "responseRequired": true } -Info 70 [16:02:33.000] request: +Info 70 [00:02:33.000] request: { "command": "definitionAndBoundSpan", "arguments": { @@ -1098,7 +1098,7 @@ FsWatchesRecursive:: /user/username/projects/myproject/random: {} -Info 71 [16:02:34.000] response: +Info 71 [00:02:34.000] response: { "response": { "definitions": [ @@ -1135,7 +1135,7 @@ Info 71 [16:02:34.000] response: }, "responseRequired": true } -Info 72 [16:02:35.000] request: +Info 72 [00:02:35.000] request: { "seq": 0, "type": "request", @@ -1180,18 +1180,18 @@ FsWatchesRecursive:: /user/username/projects/myproject/random: {} -Info 73 [16:02:36.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/random/random.ts 500 undefined WatchType: Closed Script info -Info 74 [16:02:37.000] Project '/user/username/projects/myproject/main/tsconfig.json' (Configured) -Info 74 [16:02:38.000] Files (3) +Info 73 [00:02:36.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/random/random.ts 500 undefined WatchType: Closed Script info +Info 74 [00:02:37.000] Project '/user/username/projects/myproject/main/tsconfig.json' (Configured) +Info 74 [00:02:38.000] Files (3) -Info 74 [16:02:39.000] ----------------------------------------------- -Info 74 [16:02:40.000] Project '/user/username/projects/myproject/random/tsconfig.json' (Configured) -Info 74 [16:02:41.000] Files (2) +Info 74 [00:02:39.000] ----------------------------------------------- +Info 74 [00:02:40.000] Project '/user/username/projects/myproject/random/tsconfig.json' (Configured) +Info 74 [00:02:41.000] Files (2) -Info 74 [16:02:42.000] ----------------------------------------------- -Info 74 [16:02:43.000] Open files: -Info 74 [16:02:44.000] FileName: /user/username/projects/myproject/main/main.ts ProjectRootPath: undefined -Info 74 [16:02:45.000] Projects: /user/username/projects/myproject/main/tsconfig.json +Info 74 [00:02:42.000] ----------------------------------------------- +Info 74 [00:02:43.000] Open files: +Info 74 [00:02:44.000] FileName: /user/username/projects/myproject/main/main.ts ProjectRootPath: undefined +Info 74 [00:02:45.000] Projects: /user/username/projects/myproject/main/tsconfig.json After request PolledWatches:: @@ -1230,11 +1230,11 @@ FsWatchesRecursive:: /user/username/projects/myproject/random: {} -Info 74 [16:02:46.000] response: +Info 74 [00:02:46.000] response: { "responseRequired": false } -Info 75 [16:02:47.000] request: +Info 75 [00:02:47.000] request: { "seq": 0, "type": "request", @@ -1281,22 +1281,22 @@ FsWatchesRecursive:: /user/username/projects/myproject/random: {} -Info 76 [16:02:48.000] FileWatcher:: Close:: WatchInfo: /user/username/projects/myproject/random/random.ts 500 undefined WatchType: Closed Script info -Info 77 [16:02:49.000] Search path: /user/username/projects/myproject/random -Info 78 [16:02:50.000] For info: /user/username/projects/myproject/random/random.ts :: Config file name: /user/username/projects/myproject/random/tsconfig.json -Info 79 [16:02:51.000] Project '/user/username/projects/myproject/main/tsconfig.json' (Configured) -Info 79 [16:02:52.000] Files (3) +Info 76 [00:02:48.000] FileWatcher:: Close:: WatchInfo: /user/username/projects/myproject/random/random.ts 500 undefined WatchType: Closed Script info +Info 77 [00:02:49.000] Search path: /user/username/projects/myproject/random +Info 78 [00:02:50.000] For info: /user/username/projects/myproject/random/random.ts :: Config file name: /user/username/projects/myproject/random/tsconfig.json +Info 79 [00:02:51.000] Project '/user/username/projects/myproject/main/tsconfig.json' (Configured) +Info 79 [00:02:52.000] Files (3) -Info 79 [16:02:53.000] ----------------------------------------------- -Info 79 [16:02:54.000] Project '/user/username/projects/myproject/random/tsconfig.json' (Configured) -Info 79 [16:02:55.000] Files (2) +Info 79 [00:02:53.000] ----------------------------------------------- +Info 79 [00:02:54.000] Project '/user/username/projects/myproject/random/tsconfig.json' (Configured) +Info 79 [00:02:55.000] Files (2) -Info 79 [16:02:56.000] ----------------------------------------------- -Info 79 [16:02:57.000] Open files: -Info 79 [16:02:58.000] FileName: /user/username/projects/myproject/main/main.ts ProjectRootPath: undefined -Info 79 [16:02:59.000] Projects: /user/username/projects/myproject/main/tsconfig.json -Info 79 [16:03:00.000] FileName: /user/username/projects/myproject/random/random.ts ProjectRootPath: undefined -Info 79 [16:03:01.000] Projects: /user/username/projects/myproject/random/tsconfig.json +Info 79 [00:02:56.000] ----------------------------------------------- +Info 79 [00:02:57.000] Open files: +Info 79 [00:02:58.000] FileName: /user/username/projects/myproject/main/main.ts ProjectRootPath: undefined +Info 79 [00:02:59.000] Projects: /user/username/projects/myproject/main/tsconfig.json +Info 79 [00:03:00.000] FileName: /user/username/projects/myproject/random/random.ts ProjectRootPath: undefined +Info 79 [00:03:01.000] Projects: /user/username/projects/myproject/random/tsconfig.json After request PolledWatches:: @@ -1333,11 +1333,11 @@ FsWatchesRecursive:: /user/username/projects/myproject/random: {} -Info 79 [16:03:02.000] response: +Info 79 [00:03:02.000] response: { "responseRequired": false } -Info 80 [16:03:03.000] request: +Info 80 [00:03:03.000] request: { "seq": 0, "type": "request", @@ -1382,18 +1382,18 @@ FsWatchesRecursive:: /user/username/projects/myproject/random: {} -Info 81 [16:03:04.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/main/main.ts 500 undefined WatchType: Closed Script info -Info 82 [16:03:05.000] Project '/user/username/projects/myproject/main/tsconfig.json' (Configured) -Info 82 [16:03:06.000] Files (3) +Info 81 [00:03:04.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/main/main.ts 500 undefined WatchType: Closed Script info +Info 82 [00:03:05.000] Project '/user/username/projects/myproject/main/tsconfig.json' (Configured) +Info 82 [00:03:06.000] Files (3) -Info 82 [16:03:07.000] ----------------------------------------------- -Info 82 [16:03:08.000] Project '/user/username/projects/myproject/random/tsconfig.json' (Configured) -Info 82 [16:03:09.000] Files (2) +Info 82 [00:03:07.000] ----------------------------------------------- +Info 82 [00:03:08.000] Project '/user/username/projects/myproject/random/tsconfig.json' (Configured) +Info 82 [00:03:09.000] Files (2) -Info 82 [16:03:10.000] ----------------------------------------------- -Info 82 [16:03:11.000] Open files: -Info 82 [16:03:12.000] FileName: /user/username/projects/myproject/random/random.ts ProjectRootPath: undefined -Info 82 [16:03:13.000] Projects: /user/username/projects/myproject/random/tsconfig.json +Info 82 [00:03:10.000] ----------------------------------------------- +Info 82 [00:03:11.000] Open files: +Info 82 [00:03:12.000] FileName: /user/username/projects/myproject/random/random.ts ProjectRootPath: undefined +Info 82 [00:03:13.000] Projects: /user/username/projects/myproject/random/tsconfig.json After request PolledWatches:: @@ -1432,11 +1432,11 @@ FsWatchesRecursive:: /user/username/projects/myproject/random: {} -Info 82 [16:03:14.000] response: +Info 82 [00:03:14.000] response: { "responseRequired": false } -Info 83 [16:03:15.000] request: +Info 83 [00:03:15.000] request: { "seq": 0, "type": "request", @@ -1483,16 +1483,16 @@ FsWatchesRecursive:: /user/username/projects/myproject/random: {} -Info 84 [16:03:16.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/random/random.ts 500 undefined WatchType: Closed Script info -Info 85 [16:03:17.000] Project '/user/username/projects/myproject/main/tsconfig.json' (Configured) -Info 85 [16:03:18.000] Files (3) +Info 84 [00:03:16.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/random/random.ts 500 undefined WatchType: Closed Script info +Info 85 [00:03:17.000] Project '/user/username/projects/myproject/main/tsconfig.json' (Configured) +Info 85 [00:03:18.000] Files (3) -Info 85 [16:03:19.000] ----------------------------------------------- -Info 85 [16:03:20.000] Project '/user/username/projects/myproject/random/tsconfig.json' (Configured) -Info 85 [16:03:21.000] Files (2) +Info 85 [00:03:19.000] ----------------------------------------------- +Info 85 [00:03:20.000] Project '/user/username/projects/myproject/random/tsconfig.json' (Configured) +Info 85 [00:03:21.000] Files (2) -Info 85 [16:03:22.000] ----------------------------------------------- -Info 85 [16:03:23.000] Open files: +Info 85 [00:03:22.000] ----------------------------------------------- +Info 85 [00:03:23.000] Open files: After request PolledWatches:: @@ -1533,11 +1533,11 @@ FsWatchesRecursive:: /user/username/projects/myproject/random: {} -Info 85 [16:03:24.000] response: +Info 85 [00:03:24.000] response: { "responseRequired": false } -Info 86 [16:03:25.000] request: +Info 86 [00:03:25.000] request: { "seq": 0, "type": "request", @@ -1586,12 +1586,12 @@ FsWatchesRecursive:: /user/username/projects/myproject/random: {} -Info 87 [16:03:26.000] FileWatcher:: Close:: WatchInfo: /user/username/projects/myproject/random/random.ts 500 undefined WatchType: Closed Script info -Info 88 [16:03:27.000] Search path: /user/username/projects/myproject/random -Info 89 [16:03:28.000] For info: /user/username/projects/myproject/random/random.ts :: Config file name: /user/username/projects/myproject/random/tsconfig.json -Info 90 [16:03:29.000] `remove Project:: -Info 91 [16:03:30.000] Project '/user/username/projects/myproject/main/tsconfig.json' (Configured) -Info 92 [16:03:31.000] Files (3) +Info 87 [00:03:26.000] FileWatcher:: Close:: WatchInfo: /user/username/projects/myproject/random/random.ts 500 undefined WatchType: Closed Script info +Info 88 [00:03:27.000] Search path: /user/username/projects/myproject/random +Info 89 [00:03:28.000] For info: /user/username/projects/myproject/random/random.ts :: Config file name: /user/username/projects/myproject/random/tsconfig.json +Info 90 [00:03:29.000] `remove Project:: +Info 91 [00:03:30.000] Project '/user/username/projects/myproject/main/tsconfig.json' (Configured) +Info 92 [00:03:31.000] Files (3) /a/lib/lib.d.ts /user/username/projects/myproject/decls/fns.d.ts /user/username/projects/myproject/main/main.ts @@ -1604,30 +1604,30 @@ Info 92 [16:03:31.000] Files (3) main.ts Matched by default include pattern '**/*' -Info 93 [16:03:32.000] ----------------------------------------------- -Info 94 [16:03:33.000] DirectoryWatcher:: Close:: WatchInfo: /user/username/projects/myproject/main 1 undefined Config: /user/username/projects/myproject/main/tsconfig.json WatchType: Wild card directory -Info 95 [16:03:34.000] 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 96 [16:03:35.000] FileWatcher:: Close:: WatchInfo: /user/username/projects/myproject/main/tsconfig.json 2000 undefined Project: /user/username/projects/myproject/main/tsconfig.json WatchType: Config file -Info 97 [16:03:36.000] DirectoryWatcher:: Close:: WatchInfo: /user/username/projects/myproject/dependency 1 undefined Config: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Wild card directory -Info 98 [16:03:37.000] 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 99 [16:03:38.000] FileWatcher:: Close:: WatchInfo: /user/username/projects/myproject/dependency/tsconfig.json 2000 undefined Project: /user/username/projects/myproject/main/tsconfig.json WatchType: Config file -Info 100 [16:03:39.000] DirectoryWatcher:: Close:: WatchInfo: /user/username/projects/myproject/decls 1 undefined Project: /user/username/projects/myproject/main/tsconfig.json WatchType: Failed Lookup Locations -Info 101 [16:03:40.000] 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 102 [16:03:41.000] 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 103 [16:03:42.000] 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 104 [16:03:43.000] DirectoryWatcher:: Close:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/main/tsconfig.json WatchType: Type roots -Info 105 [16:03:44.000] 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 106 [16:03:45.000] FileWatcher:: Close:: WatchInfo: /user/username/projects/myproject/main/main.ts 500 undefined WatchType: Closed Script info -Info 107 [16:03:46.000] FileWatcher:: Close:: WatchInfo: /user/username/projects/myproject/decls/fns.d.ts 500 undefined WatchType: Closed Script info -Info 108 [16:03:47.000] FileWatcher:: Close:: WatchInfo: /user/username/projects/myproject/decls/FnS.d.ts.map 500 undefined WatchType: Closed Script info -Info 109 [16:03:48.000] FileWatcher:: Close:: WatchInfo: /user/username/projects/myproject/dependency/FnS.ts 500 undefined WatchType: Closed Script info -Info 110 [16:03:49.000] Project '/user/username/projects/myproject/random/tsconfig.json' (Configured) -Info 110 [16:03:50.000] Files (2) - -Info 110 [16:03:51.000] ----------------------------------------------- -Info 110 [16:03:52.000] Open files: -Info 110 [16:03:53.000] FileName: /user/username/projects/myproject/random/random.ts ProjectRootPath: undefined -Info 110 [16:03:54.000] Projects: /user/username/projects/myproject/random/tsconfig.json +Info 93 [00:03:32.000] ----------------------------------------------- +Info 94 [00:03:33.000] DirectoryWatcher:: Close:: WatchInfo: /user/username/projects/myproject/main 1 undefined Config: /user/username/projects/myproject/main/tsconfig.json WatchType: Wild card directory +Info 95 [00:03:34.000] 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 96 [00:03:35.000] FileWatcher:: Close:: WatchInfo: /user/username/projects/myproject/main/tsconfig.json 2000 undefined Project: /user/username/projects/myproject/main/tsconfig.json WatchType: Config file +Info 97 [00:03:36.000] DirectoryWatcher:: Close:: WatchInfo: /user/username/projects/myproject/dependency 1 undefined Config: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Wild card directory +Info 98 [00:03:37.000] 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 99 [00:03:38.000] FileWatcher:: Close:: WatchInfo: /user/username/projects/myproject/dependency/tsconfig.json 2000 undefined Project: /user/username/projects/myproject/main/tsconfig.json WatchType: Config file +Info 100 [00:03:39.000] DirectoryWatcher:: Close:: WatchInfo: /user/username/projects/myproject/decls 1 undefined Project: /user/username/projects/myproject/main/tsconfig.json WatchType: Failed Lookup Locations +Info 101 [00:03:40.000] 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 102 [00:03:41.000] 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 103 [00:03:42.000] 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 104 [00:03:43.000] DirectoryWatcher:: Close:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/main/tsconfig.json WatchType: Type roots +Info 105 [00:03:44.000] 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 106 [00:03:45.000] FileWatcher:: Close:: WatchInfo: /user/username/projects/myproject/main/main.ts 500 undefined WatchType: Closed Script info +Info 107 [00:03:46.000] FileWatcher:: Close:: WatchInfo: /user/username/projects/myproject/decls/fns.d.ts 500 undefined WatchType: Closed Script info +Info 108 [00:03:47.000] FileWatcher:: Close:: WatchInfo: /user/username/projects/myproject/decls/FnS.d.ts.map 500 undefined WatchType: Closed Script info +Info 109 [00:03:48.000] FileWatcher:: Close:: WatchInfo: /user/username/projects/myproject/dependency/FnS.ts 500 undefined WatchType: Closed Script info +Info 110 [00:03:49.000] Project '/user/username/projects/myproject/random/tsconfig.json' (Configured) +Info 110 [00:03:50.000] Files (2) + +Info 110 [00:03:51.000] ----------------------------------------------- +Info 110 [00:03:52.000] Open files: +Info 110 [00:03:53.000] FileName: /user/username/projects/myproject/random/random.ts ProjectRootPath: undefined +Info 110 [00:03:54.000] Projects: /user/username/projects/myproject/random/tsconfig.json After request PolledWatches:: @@ -1646,7 +1646,7 @@ FsWatchesRecursive:: /user/username/projects/myproject/random: {} -Info 110 [16:03:55.000] response: +Info 110 [00:03:55.000] response: { "responseRequired": false } \ No newline at end of file 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 3b386356b33a7..b5796ef8ee2cd 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 @@ -1,5 +1,5 @@ -Info 0 [16:01:03.000] Provided types map file "/a/lib/typesMap.json" doesn't exist -Info 1 [16:01:04.000] request: +Info 0 [00:01:03.000] Provided types map file "/a/lib/typesMap.json" doesn't exist +Info 1 [00:01:04.000] request: { "seq": 0, "type": "request", @@ -200,11 +200,11 @@ FsWatches:: FsWatchesRecursive:: -Info 2 [16:01:05.000] Search path: /user/username/projects/myproject/main -Info 3 [16:01:06.000] For info: /user/username/projects/myproject/main/main.ts :: Config file name: /user/username/projects/myproject/main/tsconfig.json -Info 4 [16:01:07.000] Creating configuration project /user/username/projects/myproject/main/tsconfig.json -Info 5 [16:01:08.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/main/tsconfig.json 2000 undefined Project: /user/username/projects/myproject/main/tsconfig.json WatchType: Config file -Info 6 [16:01:09.000] Config: /user/username/projects/myproject/main/tsconfig.json : { +Info 2 [00:01:05.000] Search path: /user/username/projects/myproject/main +Info 3 [00:01:06.000] For info: /user/username/projects/myproject/main/main.ts :: Config file name: /user/username/projects/myproject/main/tsconfig.json +Info 4 [00:01:07.000] Creating configuration project /user/username/projects/myproject/main/tsconfig.json +Info 5 [00:01:08.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/main/tsconfig.json 2000 undefined Project: /user/username/projects/myproject/main/tsconfig.json WatchType: Config file +Info 6 [00:01:09.000] Config: /user/username/projects/myproject/main/tsconfig.json : { "rootNames": [ "/user/username/projects/myproject/main/main.ts" ], @@ -221,11 +221,11 @@ Info 6 [16:01:09.000] Config: /user/username/projects/myproject/main/tsconfig } ] } -Info 7 [16:01:10.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/main 1 undefined Config: /user/username/projects/myproject/main/tsconfig.json WatchType: Wild card directory -Info 8 [16:01:11.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/main 1 undefined Config: /user/username/projects/myproject/main/tsconfig.json WatchType: Wild card directory -Info 9 [16:01:12.000] Plugins were requested but not running in environment that supports 'require'. Nothing will be loaded -Info 10 [16:01:13.000] Starting updateGraphWorker: Project: /user/username/projects/myproject/main/tsconfig.json -Info 11 [16:01:14.000] Config: /user/username/projects/myproject/dependency/tsconfig.json : { +Info 7 [00:01:10.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/main 1 undefined Config: /user/username/projects/myproject/main/tsconfig.json WatchType: Wild card directory +Info 8 [00:01:11.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/main 1 undefined Config: /user/username/projects/myproject/main/tsconfig.json WatchType: Wild card directory +Info 9 [00:01:12.000] Plugins were requested but not running in environment that supports 'require'. Nothing will be loaded +Info 10 [00:01:13.000] Starting updateGraphWorker: Project: /user/username/projects/myproject/main/tsconfig.json +Info 11 [00:01:14.000] Config: /user/username/projects/myproject/dependency/tsconfig.json : { "rootNames": [ "/user/username/projects/myproject/dependency/FnS.ts" ], @@ -236,20 +236,20 @@ Info 11 [16:01:14.000] Config: /user/username/projects/myproject/dependency/ts "configFilePath": "/user/username/projects/myproject/dependency/tsconfig.json" } } -Info 12 [16:01:15.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/dependency/tsconfig.json 2000 undefined Project: /user/username/projects/myproject/main/tsconfig.json WatchType: Config file -Info 13 [16:01:16.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/dependency 1 undefined Config: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Wild card directory -Info 14 [16:01:17.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/dependency 1 undefined Config: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Wild card directory -Info 15 [16:01:18.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/decls 1 undefined Project: /user/username/projects/myproject/main/tsconfig.json WatchType: Failed Lookup Locations -Info 16 [16:01:19.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/decls 1 undefined Project: /user/username/projects/myproject/main/tsconfig.json WatchType: Failed Lookup Locations -Info 17 [16:01:20.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/decls/fns.d.ts 500 undefined WatchType: Closed Script info -Info 18 [16:01:21.000] FileWatcher:: Added:: WatchInfo: /a/lib/lib.d.ts 500 undefined WatchType: Closed Script info -Info 19 [16:01:22.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/main/node_modules/@types 1 undefined Project: /user/username/projects/myproject/main/tsconfig.json WatchType: Type roots -Info 20 [16:01:23.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/main/node_modules/@types 1 undefined Project: /user/username/projects/myproject/main/tsconfig.json WatchType: Type roots -Info 21 [16:01:24.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/main/tsconfig.json WatchType: Type roots -Info 22 [16:01:25.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/main/tsconfig.json WatchType: Type roots -Info 23 [16:01:26.000] Finishing updateGraphWorker: Project: /user/username/projects/myproject/main/tsconfig.json Version: 1 structureChanged: true structureIsReused:: Not Elapsed:: *ms -Info 24 [16:01:27.000] Project '/user/username/projects/myproject/main/tsconfig.json' (Configured) -Info 25 [16:01:28.000] Files (3) +Info 12 [00:01:15.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/dependency/tsconfig.json 2000 undefined Project: /user/username/projects/myproject/main/tsconfig.json WatchType: Config file +Info 13 [00:01:16.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/dependency 1 undefined Config: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Wild card directory +Info 14 [00:01:17.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/dependency 1 undefined Config: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Wild card directory +Info 15 [00:01:18.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/decls 1 undefined Project: /user/username/projects/myproject/main/tsconfig.json WatchType: Failed Lookup Locations +Info 16 [00:01:19.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/decls 1 undefined Project: /user/username/projects/myproject/main/tsconfig.json WatchType: Failed Lookup Locations +Info 17 [00:01:20.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/decls/fns.d.ts 500 undefined WatchType: Closed Script info +Info 18 [00:01:21.000] FileWatcher:: Added:: WatchInfo: /a/lib/lib.d.ts 500 undefined WatchType: Closed Script info +Info 19 [00:01:22.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/main/node_modules/@types 1 undefined Project: /user/username/projects/myproject/main/tsconfig.json WatchType: Type roots +Info 20 [00:01:23.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/main/node_modules/@types 1 undefined Project: /user/username/projects/myproject/main/tsconfig.json WatchType: Type roots +Info 21 [00:01:24.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/main/tsconfig.json WatchType: Type roots +Info 22 [00:01:25.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/main/tsconfig.json WatchType: Type roots +Info 23 [00:01:26.000] Finishing updateGraphWorker: Project: /user/username/projects/myproject/main/tsconfig.json Version: 1 structureChanged: true structureIsReused:: Not Elapsed:: *ms +Info 24 [00:01:27.000] Project '/user/username/projects/myproject/main/tsconfig.json' (Configured) +Info 25 [00:01:28.000] Files (3) /a/lib/lib.d.ts /user/username/projects/myproject/decls/fns.d.ts /user/username/projects/myproject/main/main.ts @@ -262,16 +262,16 @@ Info 25 [16:01:28.000] Files (3) main.ts Matched by default include pattern '**/*' -Info 26 [16:01:29.000] ----------------------------------------------- -Info 27 [16:01:30.000] Search path: /user/username/projects/myproject/main -Info 28 [16:01:31.000] For info: /user/username/projects/myproject/main/tsconfig.json :: No config files found. -Info 29 [16:01:32.000] Project '/user/username/projects/myproject/main/tsconfig.json' (Configured) -Info 29 [16:01:33.000] Files (3) +Info 26 [00:01:29.000] ----------------------------------------------- +Info 27 [00:01:30.000] Search path: /user/username/projects/myproject/main +Info 28 [00:01:31.000] For info: /user/username/projects/myproject/main/tsconfig.json :: No config files found. +Info 29 [00:01:32.000] Project '/user/username/projects/myproject/main/tsconfig.json' (Configured) +Info 29 [00:01:33.000] Files (3) -Info 29 [16:01:34.000] ----------------------------------------------- -Info 29 [16:01:35.000] Open files: -Info 29 [16:01:36.000] FileName: /user/username/projects/myproject/main/main.ts ProjectRootPath: undefined -Info 29 [16:01:37.000] Projects: /user/username/projects/myproject/main/tsconfig.json +Info 29 [00:01:34.000] ----------------------------------------------- +Info 29 [00:01:35.000] Open files: +Info 29 [00:01:36.000] FileName: /user/username/projects/myproject/main/main.ts ProjectRootPath: undefined +Info 29 [00:01:37.000] Projects: /user/username/projects/myproject/main/tsconfig.json After request PolledWatches:: @@ -298,11 +298,11 @@ FsWatchesRecursive:: /user/username/projects/myproject/decls: {} -Info 29 [16:01:38.000] response: +Info 29 [00:01:38.000] response: { "responseRequired": false } -Info 30 [16:01:39.000] request: +Info 30 [00:01:39.000] request: { "seq": 0, "type": "request", @@ -337,11 +337,11 @@ FsWatchesRecursive:: /user/username/projects/myproject/decls: {} -Info 31 [16:01:40.000] Search path: /user/username/projects/myproject/random -Info 32 [16:01:41.000] For info: /user/username/projects/myproject/random/random.ts :: Config file name: /user/username/projects/myproject/random/tsconfig.json -Info 33 [16:01:42.000] Creating configuration project /user/username/projects/myproject/random/tsconfig.json -Info 34 [16:01:43.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/random/tsconfig.json 2000 undefined Project: /user/username/projects/myproject/random/tsconfig.json WatchType: Config file -Info 35 [16:01:44.000] Config: /user/username/projects/myproject/random/tsconfig.json : { +Info 31 [00:01:40.000] Search path: /user/username/projects/myproject/random +Info 32 [00:01:41.000] For info: /user/username/projects/myproject/random/random.ts :: Config file name: /user/username/projects/myproject/random/tsconfig.json +Info 33 [00:01:42.000] Creating configuration project /user/username/projects/myproject/random/tsconfig.json +Info 34 [00:01:43.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/random/tsconfig.json 2000 undefined Project: /user/username/projects/myproject/random/tsconfig.json WatchType: Config file +Info 35 [00:01:44.000] Config: /user/username/projects/myproject/random/tsconfig.json : { "rootNames": [ "/user/username/projects/myproject/random/random.ts" ], @@ -349,17 +349,17 @@ Info 35 [16:01:44.000] Config: /user/username/projects/myproject/random/tsconf "configFilePath": "/user/username/projects/myproject/random/tsconfig.json" } } -Info 36 [16:01:45.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/random 1 undefined Config: /user/username/projects/myproject/random/tsconfig.json WatchType: Wild card directory -Info 37 [16:01:46.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/random 1 undefined Config: /user/username/projects/myproject/random/tsconfig.json WatchType: Wild card directory -Info 38 [16:01:47.000] Plugins were requested but not running in environment that supports 'require'. Nothing will be loaded -Info 39 [16:01:48.000] Starting updateGraphWorker: Project: /user/username/projects/myproject/random/tsconfig.json -Info 40 [16:01:49.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/random/node_modules/@types 1 undefined Project: /user/username/projects/myproject/random/tsconfig.json WatchType: Type roots -Info 41 [16:01:50.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/random/node_modules/@types 1 undefined Project: /user/username/projects/myproject/random/tsconfig.json WatchType: Type roots -Info 42 [16:01:51.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/random/tsconfig.json WatchType: Type roots -Info 43 [16:01:52.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/random/tsconfig.json WatchType: Type roots -Info 44 [16:01:53.000] Finishing updateGraphWorker: Project: /user/username/projects/myproject/random/tsconfig.json Version: 1 structureChanged: true structureIsReused:: Not Elapsed:: *ms -Info 45 [16:01:54.000] Project '/user/username/projects/myproject/random/tsconfig.json' (Configured) -Info 46 [16:01:55.000] Files (2) +Info 36 [00:01:45.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/random 1 undefined Config: /user/username/projects/myproject/random/tsconfig.json WatchType: Wild card directory +Info 37 [00:01:46.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/random 1 undefined Config: /user/username/projects/myproject/random/tsconfig.json WatchType: Wild card directory +Info 38 [00:01:47.000] Plugins were requested but not running in environment that supports 'require'. Nothing will be loaded +Info 39 [00:01:48.000] Starting updateGraphWorker: Project: /user/username/projects/myproject/random/tsconfig.json +Info 40 [00:01:49.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/random/node_modules/@types 1 undefined Project: /user/username/projects/myproject/random/tsconfig.json WatchType: Type roots +Info 41 [00:01:50.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/random/node_modules/@types 1 undefined Project: /user/username/projects/myproject/random/tsconfig.json WatchType: Type roots +Info 42 [00:01:51.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/random/tsconfig.json WatchType: Type roots +Info 43 [00:01:52.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/random/tsconfig.json WatchType: Type roots +Info 44 [00:01:53.000] Finishing updateGraphWorker: Project: /user/username/projects/myproject/random/tsconfig.json Version: 1 structureChanged: true structureIsReused:: Not Elapsed:: *ms +Info 45 [00:01:54.000] Project '/user/username/projects/myproject/random/tsconfig.json' (Configured) +Info 46 [00:01:55.000] Files (2) /a/lib/lib.d.ts /user/username/projects/myproject/random/random.ts @@ -369,20 +369,20 @@ Info 46 [16:01:55.000] Files (2) random.ts Matched by default include pattern '**/*' -Info 47 [16:01:56.000] ----------------------------------------------- -Info 48 [16:01:57.000] Project '/user/username/projects/myproject/main/tsconfig.json' (Configured) -Info 48 [16:01:58.000] Files (3) +Info 47 [00:01:56.000] ----------------------------------------------- +Info 48 [00:01:57.000] Project '/user/username/projects/myproject/main/tsconfig.json' (Configured) +Info 48 [00:01:58.000] Files (3) -Info 48 [16:01:59.000] ----------------------------------------------- -Info 48 [16:02:00.000] Project '/user/username/projects/myproject/random/tsconfig.json' (Configured) -Info 48 [16:02:01.000] Files (2) +Info 48 [00:01:59.000] ----------------------------------------------- +Info 48 [00:02:00.000] Project '/user/username/projects/myproject/random/tsconfig.json' (Configured) +Info 48 [00:02:01.000] Files (2) -Info 48 [16:02:02.000] ----------------------------------------------- -Info 48 [16:02:03.000] Open files: -Info 48 [16:02:04.000] FileName: /user/username/projects/myproject/main/main.ts ProjectRootPath: undefined -Info 48 [16:02:05.000] Projects: /user/username/projects/myproject/main/tsconfig.json -Info 48 [16:02:06.000] FileName: /user/username/projects/myproject/random/random.ts ProjectRootPath: undefined -Info 48 [16:02:07.000] Projects: /user/username/projects/myproject/random/tsconfig.json +Info 48 [00:02:02.000] ----------------------------------------------- +Info 48 [00:02:03.000] Open files: +Info 48 [00:02:04.000] FileName: /user/username/projects/myproject/main/main.ts ProjectRootPath: undefined +Info 48 [00:02:05.000] Projects: /user/username/projects/myproject/main/tsconfig.json +Info 48 [00:02:06.000] FileName: /user/username/projects/myproject/random/random.ts ProjectRootPath: undefined +Info 48 [00:02:07.000] Projects: /user/username/projects/myproject/random/tsconfig.json After request PolledWatches:: @@ -415,11 +415,11 @@ FsWatchesRecursive:: /user/username/projects/myproject/random: {} -Info 48 [16:02:08.000] response: +Info 48 [00:02:08.000] response: { "responseRequired": false } -Info 49 [16:02:09.000] request: +Info 49 [00:02:09.000] request: { "command": "definitionAndBoundSpan", "arguments": { @@ -462,8 +462,8 @@ FsWatchesRecursive:: /user/username/projects/myproject/random: {} -Info 50 [16:02:10.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/decls/FnS.d.ts.map 500 undefined WatchType: Closed Script info -Info 51 [16:02:11.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/dependency/FnS.ts 500 undefined WatchType: Closed Script info +Info 50 [00:02:10.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/decls/FnS.d.ts.map 500 undefined WatchType: Closed Script info +Info 51 [00:02:11.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/dependency/FnS.ts 500 undefined WatchType: Closed Script info After request PolledWatches:: @@ -500,7 +500,7 @@ FsWatchesRecursive:: /user/username/projects/myproject/random: {} -Info 52 [16:02:12.000] response: +Info 52 [00:02:12.000] response: { "response": { "definitions": [ @@ -537,15 +537,15 @@ Info 52 [16:02:12.000] response: }, "responseRequired": true } -Info 53 [16:02:14.000] FileWatcher:: Triggered with /user/username/projects/myproject/decls/fns.d.ts 2:: WatchInfo: /user/username/projects/myproject/decls/fns.d.ts 500 undefined WatchType: Closed Script info -Info 54 [16:02:15.000] FileWatcher:: Close:: WatchInfo: /user/username/projects/myproject/decls/fns.d.ts 500 undefined WatchType: Closed Script info -Info 55 [16:02:16.000] Scheduled: /user/username/projects/myproject/main/tsconfig.json -Info 56 [16:02:17.000] Scheduled: *ensureProjectForOpenFiles* -Info 57 [16:02:18.000] Elapsed:: *ms FileWatcher:: Triggered with /user/username/projects/myproject/decls/fns.d.ts 2:: WatchInfo: /user/username/projects/myproject/decls/fns.d.ts 500 undefined WatchType: Closed Script info -Info 58 [16:02:19.000] DirectoryWatcher:: Triggered with /user/username/projects/myproject/decls/FnS.d.ts :: WatchInfo: /user/username/projects/myproject/decls 1 undefined Project: /user/username/projects/myproject/main/tsconfig.json WatchType: Failed Lookup Locations -Info 59 [16:02:20.000] Scheduled: /user/username/projects/myproject/main/tsconfig.jsonFailedLookupInvalidation -Info 60 [16:02:21.000] Elapsed:: *ms DirectoryWatcher:: Triggered with /user/username/projects/myproject/decls/FnS.d.ts :: WatchInfo: /user/username/projects/myproject/decls 1 undefined Project: /user/username/projects/myproject/main/tsconfig.json WatchType: Failed Lookup Locations -Info 61 [16:02:22.000] request: +Info 53 [00:02:14.000] FileWatcher:: Triggered with /user/username/projects/myproject/decls/fns.d.ts 2:: WatchInfo: /user/username/projects/myproject/decls/fns.d.ts 500 undefined WatchType: Closed Script info +Info 54 [00:02:15.000] FileWatcher:: Close:: WatchInfo: /user/username/projects/myproject/decls/fns.d.ts 500 undefined WatchType: Closed Script info +Info 55 [00:02:16.000] Scheduled: /user/username/projects/myproject/main/tsconfig.json +Info 56 [00:02:17.000] Scheduled: *ensureProjectForOpenFiles* +Info 57 [00:02:18.000] Elapsed:: *ms FileWatcher:: Triggered with /user/username/projects/myproject/decls/fns.d.ts 2:: WatchInfo: /user/username/projects/myproject/decls/fns.d.ts 500 undefined WatchType: Closed Script info +Info 58 [00:02:19.000] DirectoryWatcher:: Triggered with /user/username/projects/myproject/decls/FnS.d.ts :: WatchInfo: /user/username/projects/myproject/decls 1 undefined Project: /user/username/projects/myproject/main/tsconfig.json WatchType: Failed Lookup Locations +Info 59 [00:02:20.000] Scheduled: /user/username/projects/myproject/main/tsconfig.jsonFailedLookupInvalidation +Info 60 [00:02:21.000] Elapsed:: *ms DirectoryWatcher:: Triggered with /user/username/projects/myproject/decls/FnS.d.ts :: WatchInfo: /user/username/projects/myproject/decls 1 undefined Project: /user/username/projects/myproject/main/tsconfig.json WatchType: Failed Lookup Locations +Info 61 [00:02:22.000] request: { "command": "definitionAndBoundSpan", "arguments": { @@ -591,10 +591,10 @@ FsWatchesRecursive:: /user/username/projects/myproject/random: {} -Info 62 [16:02:23.000] Starting updateGraphWorker: Project: /user/username/projects/myproject/main/tsconfig.json -Info 63 [16:02:24.000] Finishing updateGraphWorker: Project: /user/username/projects/myproject/main/tsconfig.json Version: 2 structureChanged: true structureIsReused:: Not Elapsed:: *ms -Info 64 [16:02:25.000] Project '/user/username/projects/myproject/main/tsconfig.json' (Configured) -Info 65 [16:02:26.000] Files (2) +Info 62 [00:02:23.000] Starting updateGraphWorker: Project: /user/username/projects/myproject/main/tsconfig.json +Info 63 [00:02:24.000] Finishing updateGraphWorker: Project: /user/username/projects/myproject/main/tsconfig.json Version: 2 structureChanged: true structureIsReused:: Not Elapsed:: *ms +Info 64 [00:02:25.000] Project '/user/username/projects/myproject/main/tsconfig.json' (Configured) +Info 65 [00:02:26.000] Files (2) /a/lib/lib.d.ts /user/username/projects/myproject/main/main.ts @@ -604,7 +604,7 @@ Info 65 [16:02:26.000] Files (2) main.ts Matched by default include pattern '**/*' -Info 66 [16:02:27.000] ----------------------------------------------- +Info 66 [00:02:27.000] ----------------------------------------------- After request PolledWatches:: @@ -639,7 +639,7 @@ FsWatchesRecursive:: /user/username/projects/myproject/random: {} -Info 67 [16:02:28.000] response: +Info 67 [00:02:28.000] response: { "response": { "definitions": [ @@ -676,7 +676,7 @@ Info 67 [16:02:28.000] response: }, "responseRequired": true } -Info 68 [16:02:29.000] request: +Info 68 [00:02:29.000] request: { "command": "definitionAndBoundSpan", "arguments": { @@ -755,7 +755,7 @@ FsWatchesRecursive:: /user/username/projects/myproject/random: {} -Info 69 [16:02:30.000] response: +Info 69 [00:02:30.000] response: { "response": { "definitions": [ @@ -792,7 +792,7 @@ Info 69 [16:02:30.000] response: }, "responseRequired": true } -Info 70 [16:02:31.000] request: +Info 70 [00:02:31.000] request: { "command": "definitionAndBoundSpan", "arguments": { @@ -871,7 +871,7 @@ FsWatchesRecursive:: /user/username/projects/myproject/random: {} -Info 71 [16:02:32.000] response: +Info 71 [00:02:32.000] response: { "response": { "definitions": [ @@ -908,7 +908,7 @@ Info 71 [16:02:32.000] response: }, "responseRequired": true } -Info 72 [16:02:33.000] request: +Info 72 [00:02:33.000] request: { "command": "definitionAndBoundSpan", "arguments": { @@ -987,7 +987,7 @@ FsWatchesRecursive:: /user/username/projects/myproject/random: {} -Info 73 [16:02:34.000] response: +Info 73 [00:02:34.000] response: { "response": { "definitions": [ @@ -1024,7 +1024,7 @@ Info 73 [16:02:34.000] response: }, "responseRequired": true } -Info 74 [16:02:35.000] request: +Info 74 [00:02:35.000] request: { "command": "definitionAndBoundSpan", "arguments": { @@ -1103,7 +1103,7 @@ FsWatchesRecursive:: /user/username/projects/myproject/random: {} -Info 75 [16:02:36.000] response: +Info 75 [00:02:36.000] response: { "response": { "definitions": [ @@ -1140,7 +1140,7 @@ Info 75 [16:02:36.000] response: }, "responseRequired": true } -Info 76 [16:02:37.000] request: +Info 76 [00:02:37.000] request: { "seq": 0, "type": "request", @@ -1183,18 +1183,18 @@ FsWatchesRecursive:: /user/username/projects/myproject/random: {} -Info 77 [16:02:38.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/random/random.ts 500 undefined WatchType: Closed Script info -Info 78 [16:02:39.000] Project '/user/username/projects/myproject/main/tsconfig.json' (Configured) -Info 78 [16:02:40.000] Files (2) +Info 77 [00:02:38.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/random/random.ts 500 undefined WatchType: Closed Script info +Info 78 [00:02:39.000] Project '/user/username/projects/myproject/main/tsconfig.json' (Configured) +Info 78 [00:02:40.000] Files (2) -Info 78 [16:02:41.000] ----------------------------------------------- -Info 78 [16:02:42.000] Project '/user/username/projects/myproject/random/tsconfig.json' (Configured) -Info 78 [16:02:43.000] Files (2) +Info 78 [00:02:41.000] ----------------------------------------------- +Info 78 [00:02:42.000] Project '/user/username/projects/myproject/random/tsconfig.json' (Configured) +Info 78 [00:02:43.000] Files (2) -Info 78 [16:02:44.000] ----------------------------------------------- -Info 78 [16:02:45.000] Open files: -Info 78 [16:02:46.000] FileName: /user/username/projects/myproject/main/main.ts ProjectRootPath: undefined -Info 78 [16:02:47.000] Projects: /user/username/projects/myproject/main/tsconfig.json +Info 78 [00:02:44.000] ----------------------------------------------- +Info 78 [00:02:45.000] Open files: +Info 78 [00:02:46.000] FileName: /user/username/projects/myproject/main/main.ts ProjectRootPath: undefined +Info 78 [00:02:47.000] Projects: /user/username/projects/myproject/main/tsconfig.json After request PolledWatches:: @@ -1231,11 +1231,11 @@ FsWatchesRecursive:: /user/username/projects/myproject/random: {} -Info 78 [16:02:48.000] response: +Info 78 [00:02:48.000] response: { "responseRequired": false } -Info 79 [16:02:49.000] request: +Info 79 [00:02:49.000] request: { "seq": 0, "type": "request", @@ -1280,24 +1280,24 @@ FsWatchesRecursive:: /user/username/projects/myproject/random: {} -Info 80 [16:02:50.000] FileWatcher:: Close:: WatchInfo: /user/username/projects/myproject/random/random.ts 500 undefined WatchType: Closed Script info -Info 81 [16:02:51.000] Search path: /user/username/projects/myproject/random -Info 82 [16:02:52.000] For info: /user/username/projects/myproject/random/random.ts :: Config file name: /user/username/projects/myproject/random/tsconfig.json -Info 83 [16:02:53.000] FileWatcher:: Close:: WatchInfo: /user/username/projects/myproject/decls/FnS.d.ts.map 500 undefined WatchType: Closed Script info -Info 84 [16:02:54.000] FileWatcher:: Close:: WatchInfo: /user/username/projects/myproject/dependency/FnS.ts 500 undefined WatchType: Closed Script info -Info 85 [16:02:55.000] Project '/user/username/projects/myproject/main/tsconfig.json' (Configured) -Info 85 [16:02:56.000] Files (2) - -Info 85 [16:02:57.000] ----------------------------------------------- -Info 85 [16:02:58.000] Project '/user/username/projects/myproject/random/tsconfig.json' (Configured) -Info 85 [16:02:59.000] Files (2) - -Info 85 [16:03:00.000] ----------------------------------------------- -Info 85 [16:03:01.000] Open files: -Info 85 [16:03:02.000] FileName: /user/username/projects/myproject/main/main.ts ProjectRootPath: undefined -Info 85 [16:03:03.000] Projects: /user/username/projects/myproject/main/tsconfig.json -Info 85 [16:03:04.000] FileName: /user/username/projects/myproject/random/random.ts ProjectRootPath: undefined -Info 85 [16:03:05.000] Projects: /user/username/projects/myproject/random/tsconfig.json +Info 80 [00:02:50.000] FileWatcher:: Close:: WatchInfo: /user/username/projects/myproject/random/random.ts 500 undefined WatchType: Closed Script info +Info 81 [00:02:51.000] Search path: /user/username/projects/myproject/random +Info 82 [00:02:52.000] For info: /user/username/projects/myproject/random/random.ts :: Config file name: /user/username/projects/myproject/random/tsconfig.json +Info 83 [00:02:53.000] FileWatcher:: Close:: WatchInfo: /user/username/projects/myproject/decls/FnS.d.ts.map 500 undefined WatchType: Closed Script info +Info 84 [00:02:54.000] FileWatcher:: Close:: WatchInfo: /user/username/projects/myproject/dependency/FnS.ts 500 undefined WatchType: Closed Script info +Info 85 [00:02:55.000] Project '/user/username/projects/myproject/main/tsconfig.json' (Configured) +Info 85 [00:02:56.000] Files (2) + +Info 85 [00:02:57.000] ----------------------------------------------- +Info 85 [00:02:58.000] Project '/user/username/projects/myproject/random/tsconfig.json' (Configured) +Info 85 [00:02:59.000] Files (2) + +Info 85 [00:03:00.000] ----------------------------------------------- +Info 85 [00:03:01.000] Open files: +Info 85 [00:03:02.000] FileName: /user/username/projects/myproject/main/main.ts ProjectRootPath: undefined +Info 85 [00:03:03.000] Projects: /user/username/projects/myproject/main/tsconfig.json +Info 85 [00:03:04.000] FileName: /user/username/projects/myproject/random/random.ts ProjectRootPath: undefined +Info 85 [00:03:05.000] Projects: /user/username/projects/myproject/random/tsconfig.json After request PolledWatches:: @@ -1328,11 +1328,11 @@ FsWatchesRecursive:: /user/username/projects/myproject/random: {} -Info 85 [16:03:06.000] response: +Info 85 [00:03:06.000] response: { "responseRequired": false } -Info 86 [16:03:07.000] request: +Info 86 [00:03:07.000] request: { "seq": 0, "type": "request", @@ -1371,18 +1371,18 @@ FsWatchesRecursive:: /user/username/projects/myproject/random: {} -Info 87 [16:03:08.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/main/main.ts 500 undefined WatchType: Closed Script info -Info 88 [16:03:09.000] Project '/user/username/projects/myproject/main/tsconfig.json' (Configured) -Info 88 [16:03:10.000] Files (2) +Info 87 [00:03:08.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/main/main.ts 500 undefined WatchType: Closed Script info +Info 88 [00:03:09.000] Project '/user/username/projects/myproject/main/tsconfig.json' (Configured) +Info 88 [00:03:10.000] Files (2) -Info 88 [16:03:11.000] ----------------------------------------------- -Info 88 [16:03:12.000] Project '/user/username/projects/myproject/random/tsconfig.json' (Configured) -Info 88 [16:03:13.000] Files (2) +Info 88 [00:03:11.000] ----------------------------------------------- +Info 88 [00:03:12.000] Project '/user/username/projects/myproject/random/tsconfig.json' (Configured) +Info 88 [00:03:13.000] Files (2) -Info 88 [16:03:14.000] ----------------------------------------------- -Info 88 [16:03:15.000] Open files: -Info 88 [16:03:16.000] FileName: /user/username/projects/myproject/random/random.ts ProjectRootPath: undefined -Info 88 [16:03:17.000] Projects: /user/username/projects/myproject/random/tsconfig.json +Info 88 [00:03:14.000] ----------------------------------------------- +Info 88 [00:03:15.000] Open files: +Info 88 [00:03:16.000] FileName: /user/username/projects/myproject/random/random.ts ProjectRootPath: undefined +Info 88 [00:03:17.000] Projects: /user/username/projects/myproject/random/tsconfig.json After request PolledWatches:: @@ -1415,11 +1415,11 @@ FsWatchesRecursive:: /user/username/projects/myproject/random: {} -Info 88 [16:03:18.000] response: +Info 88 [00:03:18.000] response: { "responseRequired": false } -Info 89 [16:03:19.000] request: +Info 89 [00:03:19.000] request: { "seq": 0, "type": "request", @@ -1460,16 +1460,16 @@ FsWatchesRecursive:: /user/username/projects/myproject/random: {} -Info 90 [16:03:20.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/random/random.ts 500 undefined WatchType: Closed Script info -Info 91 [16:03:21.000] Project '/user/username/projects/myproject/main/tsconfig.json' (Configured) -Info 91 [16:03:22.000] Files (2) +Info 90 [00:03:20.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/random/random.ts 500 undefined WatchType: Closed Script info +Info 91 [00:03:21.000] Project '/user/username/projects/myproject/main/tsconfig.json' (Configured) +Info 91 [00:03:22.000] Files (2) -Info 91 [16:03:23.000] ----------------------------------------------- -Info 91 [16:03:24.000] Project '/user/username/projects/myproject/random/tsconfig.json' (Configured) -Info 91 [16:03:25.000] Files (2) +Info 91 [00:03:23.000] ----------------------------------------------- +Info 91 [00:03:24.000] Project '/user/username/projects/myproject/random/tsconfig.json' (Configured) +Info 91 [00:03:25.000] Files (2) -Info 91 [16:03:26.000] ----------------------------------------------- -Info 91 [16:03:27.000] Open files: +Info 91 [00:03:26.000] ----------------------------------------------- +Info 91 [00:03:27.000] Open files: After request PolledWatches:: @@ -1504,11 +1504,11 @@ FsWatchesRecursive:: /user/username/projects/myproject/random: {} -Info 91 [16:03:28.000] response: +Info 91 [00:03:28.000] response: { "responseRequired": false } -Info 92 [16:03:29.000] request: +Info 92 [00:03:29.000] request: { "seq": 0, "type": "request", @@ -1551,12 +1551,12 @@ FsWatchesRecursive:: /user/username/projects/myproject/random: {} -Info 93 [16:03:30.000] FileWatcher:: Close:: WatchInfo: /user/username/projects/myproject/random/random.ts 500 undefined WatchType: Closed Script info -Info 94 [16:03:31.000] Search path: /user/username/projects/myproject/random -Info 95 [16:03:32.000] For info: /user/username/projects/myproject/random/random.ts :: Config file name: /user/username/projects/myproject/random/tsconfig.json -Info 96 [16:03:33.000] `remove Project:: -Info 97 [16:03:34.000] Project '/user/username/projects/myproject/main/tsconfig.json' (Configured) -Info 98 [16:03:35.000] Files (2) +Info 93 [00:03:30.000] FileWatcher:: Close:: WatchInfo: /user/username/projects/myproject/random/random.ts 500 undefined WatchType: Closed Script info +Info 94 [00:03:31.000] Search path: /user/username/projects/myproject/random +Info 95 [00:03:32.000] For info: /user/username/projects/myproject/random/random.ts :: Config file name: /user/username/projects/myproject/random/tsconfig.json +Info 96 [00:03:33.000] `remove Project:: +Info 97 [00:03:34.000] Project '/user/username/projects/myproject/main/tsconfig.json' (Configured) +Info 98 [00:03:35.000] Files (2) /a/lib/lib.d.ts /user/username/projects/myproject/main/main.ts @@ -1566,27 +1566,27 @@ Info 98 [16:03:35.000] Files (2) main.ts Matched by default include pattern '**/*' -Info 99 [16:03:36.000] ----------------------------------------------- -Info 100 [16:03:37.000] DirectoryWatcher:: Close:: WatchInfo: /user/username/projects/myproject/main 1 undefined Config: /user/username/projects/myproject/main/tsconfig.json WatchType: Wild card directory -Info 101 [16:03:38.000] 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 102 [16:03:39.000] FileWatcher:: Close:: WatchInfo: /user/username/projects/myproject/main/tsconfig.json 2000 undefined Project: /user/username/projects/myproject/main/tsconfig.json WatchType: Config file -Info 103 [16:03:40.000] DirectoryWatcher:: Close:: WatchInfo: /user/username/projects/myproject/dependency 1 undefined Config: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Wild card directory -Info 104 [16:03:41.000] 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 105 [16:03:42.000] FileWatcher:: Close:: WatchInfo: /user/username/projects/myproject/dependency/tsconfig.json 2000 undefined Project: /user/username/projects/myproject/main/tsconfig.json WatchType: Config file -Info 106 [16:03:43.000] DirectoryWatcher:: Close:: WatchInfo: /user/username/projects/myproject/decls 1 undefined Project: /user/username/projects/myproject/main/tsconfig.json WatchType: Failed Lookup Locations -Info 107 [16:03:44.000] 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 108 [16:03:45.000] 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 109 [16:03:46.000] 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 110 [16:03:47.000] DirectoryWatcher:: Close:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/main/tsconfig.json WatchType: Type roots -Info 111 [16:03:48.000] 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 112 [16:03:49.000] FileWatcher:: Close:: WatchInfo: /user/username/projects/myproject/main/main.ts 500 undefined WatchType: Closed Script info -Info 113 [16:03:50.000] Project '/user/username/projects/myproject/random/tsconfig.json' (Configured) -Info 113 [16:03:51.000] Files (2) - -Info 113 [16:03:52.000] ----------------------------------------------- -Info 113 [16:03:53.000] Open files: -Info 113 [16:03:54.000] FileName: /user/username/projects/myproject/random/random.ts ProjectRootPath: undefined -Info 113 [16:03:55.000] Projects: /user/username/projects/myproject/random/tsconfig.json +Info 99 [00:03:36.000] ----------------------------------------------- +Info 100 [00:03:37.000] DirectoryWatcher:: Close:: WatchInfo: /user/username/projects/myproject/main 1 undefined Config: /user/username/projects/myproject/main/tsconfig.json WatchType: Wild card directory +Info 101 [00:03:38.000] 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 102 [00:03:39.000] FileWatcher:: Close:: WatchInfo: /user/username/projects/myproject/main/tsconfig.json 2000 undefined Project: /user/username/projects/myproject/main/tsconfig.json WatchType: Config file +Info 103 [00:03:40.000] DirectoryWatcher:: Close:: WatchInfo: /user/username/projects/myproject/dependency 1 undefined Config: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Wild card directory +Info 104 [00:03:41.000] 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 105 [00:03:42.000] FileWatcher:: Close:: WatchInfo: /user/username/projects/myproject/dependency/tsconfig.json 2000 undefined Project: /user/username/projects/myproject/main/tsconfig.json WatchType: Config file +Info 106 [00:03:43.000] DirectoryWatcher:: Close:: WatchInfo: /user/username/projects/myproject/decls 1 undefined Project: /user/username/projects/myproject/main/tsconfig.json WatchType: Failed Lookup Locations +Info 107 [00:03:44.000] 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 108 [00:03:45.000] 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 109 [00:03:46.000] 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 110 [00:03:47.000] DirectoryWatcher:: Close:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/main/tsconfig.json WatchType: Type roots +Info 111 [00:03:48.000] 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 112 [00:03:49.000] FileWatcher:: Close:: WatchInfo: /user/username/projects/myproject/main/main.ts 500 undefined WatchType: Closed Script info +Info 113 [00:03:50.000] Project '/user/username/projects/myproject/random/tsconfig.json' (Configured) +Info 113 [00:03:51.000] Files (2) + +Info 113 [00:03:52.000] ----------------------------------------------- +Info 113 [00:03:53.000] Open files: +Info 113 [00:03:54.000] FileName: /user/username/projects/myproject/random/random.ts ProjectRootPath: undefined +Info 113 [00:03:55.000] Projects: /user/username/projects/myproject/random/tsconfig.json After request PolledWatches:: @@ -1605,7 +1605,7 @@ FsWatchesRecursive:: /user/username/projects/myproject/random: {} -Info 113 [16:03:56.000] response: +Info 113 [00:03:56.000] response: { "responseRequired": false } \ No newline at end of file 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 9502bc6c5702e..b35eefe1f9378 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 @@ -1,5 +1,5 @@ -Info 0 [16:01:04.000] Provided types map file "/a/lib/typesMap.json" doesn't exist -Info 1 [16:01:05.000] request: +Info 0 [00:01:04.000] Provided types map file "/a/lib/typesMap.json" doesn't exist +Info 1 [00:01:05.000] request: { "seq": 0, "type": "request", @@ -192,11 +192,11 @@ FsWatches:: FsWatchesRecursive:: -Info 2 [16:01:06.000] Search path: /user/username/projects/myproject/main -Info 3 [16:01:07.000] For info: /user/username/projects/myproject/main/main.ts :: Config file name: /user/username/projects/myproject/main/tsconfig.json -Info 4 [16:01:08.000] Creating configuration project /user/username/projects/myproject/main/tsconfig.json -Info 5 [16:01:09.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/main/tsconfig.json 2000 undefined Project: /user/username/projects/myproject/main/tsconfig.json WatchType: Config file -Info 6 [16:01:10.000] Config: /user/username/projects/myproject/main/tsconfig.json : { +Info 2 [00:01:06.000] Search path: /user/username/projects/myproject/main +Info 3 [00:01:07.000] For info: /user/username/projects/myproject/main/main.ts :: Config file name: /user/username/projects/myproject/main/tsconfig.json +Info 4 [00:01:08.000] Creating configuration project /user/username/projects/myproject/main/tsconfig.json +Info 5 [00:01:09.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/main/tsconfig.json 2000 undefined Project: /user/username/projects/myproject/main/tsconfig.json WatchType: Config file +Info 6 [00:01:10.000] Config: /user/username/projects/myproject/main/tsconfig.json : { "rootNames": [ "/user/username/projects/myproject/main/main.ts" ], @@ -213,11 +213,11 @@ Info 6 [16:01:10.000] Config: /user/username/projects/myproject/main/tsconfig } ] } -Info 7 [16:01:11.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/main 1 undefined Config: /user/username/projects/myproject/main/tsconfig.json WatchType: Wild card directory -Info 8 [16:01:12.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/main 1 undefined Config: /user/username/projects/myproject/main/tsconfig.json WatchType: Wild card directory -Info 9 [16:01:13.000] Plugins were requested but not running in environment that supports 'require'. Nothing will be loaded -Info 10 [16:01:14.000] Starting updateGraphWorker: Project: /user/username/projects/myproject/main/tsconfig.json -Info 11 [16:01:15.000] Config: /user/username/projects/myproject/dependency/tsconfig.json : { +Info 7 [00:01:11.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/main 1 undefined Config: /user/username/projects/myproject/main/tsconfig.json WatchType: Wild card directory +Info 8 [00:01:12.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/main 1 undefined Config: /user/username/projects/myproject/main/tsconfig.json WatchType: Wild card directory +Info 9 [00:01:13.000] Plugins were requested but not running in environment that supports 'require'. Nothing will be loaded +Info 10 [00:01:14.000] Starting updateGraphWorker: Project: /user/username/projects/myproject/main/tsconfig.json +Info 11 [00:01:15.000] Config: /user/username/projects/myproject/dependency/tsconfig.json : { "rootNames": [ "/user/username/projects/myproject/dependency/FnS.ts" ], @@ -228,19 +228,19 @@ Info 11 [16:01:15.000] Config: /user/username/projects/myproject/dependency/ts "configFilePath": "/user/username/projects/myproject/dependency/tsconfig.json" } } -Info 12 [16:01:16.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/dependency/tsconfig.json 2000 undefined Project: /user/username/projects/myproject/main/tsconfig.json WatchType: Config file -Info 13 [16:01:17.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/dependency 1 undefined Config: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Wild card directory -Info 14 [16:01:18.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/dependency 1 undefined Config: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Wild card directory -Info 15 [16:01:19.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/decls 1 undefined Project: /user/username/projects/myproject/main/tsconfig.json WatchType: Failed Lookup Locations -Info 16 [16:01:20.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/decls 1 undefined Project: /user/username/projects/myproject/main/tsconfig.json WatchType: Failed Lookup Locations -Info 17 [16:01:21.000] FileWatcher:: Added:: WatchInfo: /a/lib/lib.d.ts 500 undefined WatchType: Closed Script info -Info 18 [16:01:22.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/main/node_modules/@types 1 undefined Project: /user/username/projects/myproject/main/tsconfig.json WatchType: Type roots -Info 19 [16:01:23.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/main/node_modules/@types 1 undefined Project: /user/username/projects/myproject/main/tsconfig.json WatchType: Type roots -Info 20 [16:01:24.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/main/tsconfig.json WatchType: Type roots -Info 21 [16:01:25.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/main/tsconfig.json WatchType: Type roots -Info 22 [16:01:26.000] Finishing updateGraphWorker: Project: /user/username/projects/myproject/main/tsconfig.json Version: 1 structureChanged: true structureIsReused:: Not Elapsed:: *ms -Info 23 [16:01:27.000] Project '/user/username/projects/myproject/main/tsconfig.json' (Configured) -Info 24 [16:01:28.000] Files (2) +Info 12 [00:01:16.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/dependency/tsconfig.json 2000 undefined Project: /user/username/projects/myproject/main/tsconfig.json WatchType: Config file +Info 13 [00:01:17.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/dependency 1 undefined Config: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Wild card directory +Info 14 [00:01:18.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/dependency 1 undefined Config: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Wild card directory +Info 15 [00:01:19.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/decls 1 undefined Project: /user/username/projects/myproject/main/tsconfig.json WatchType: Failed Lookup Locations +Info 16 [00:01:20.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/decls 1 undefined Project: /user/username/projects/myproject/main/tsconfig.json WatchType: Failed Lookup Locations +Info 17 [00:01:21.000] FileWatcher:: Added:: WatchInfo: /a/lib/lib.d.ts 500 undefined WatchType: Closed Script info +Info 18 [00:01:22.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/main/node_modules/@types 1 undefined Project: /user/username/projects/myproject/main/tsconfig.json WatchType: Type roots +Info 19 [00:01:23.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/main/node_modules/@types 1 undefined Project: /user/username/projects/myproject/main/tsconfig.json WatchType: Type roots +Info 20 [00:01:24.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/main/tsconfig.json WatchType: Type roots +Info 21 [00:01:25.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/main/tsconfig.json WatchType: Type roots +Info 22 [00:01:26.000] Finishing updateGraphWorker: Project: /user/username/projects/myproject/main/tsconfig.json Version: 1 structureChanged: true structureIsReused:: Not Elapsed:: *ms +Info 23 [00:01:27.000] Project '/user/username/projects/myproject/main/tsconfig.json' (Configured) +Info 24 [00:01:28.000] Files (2) /a/lib/lib.d.ts /user/username/projects/myproject/main/main.ts @@ -250,16 +250,16 @@ Info 24 [16:01:28.000] Files (2) main.ts Matched by default include pattern '**/*' -Info 25 [16:01:29.000] ----------------------------------------------- -Info 26 [16:01:30.000] Search path: /user/username/projects/myproject/main -Info 27 [16:01:31.000] For info: /user/username/projects/myproject/main/tsconfig.json :: No config files found. -Info 28 [16:01:32.000] Project '/user/username/projects/myproject/main/tsconfig.json' (Configured) -Info 28 [16:01:33.000] Files (2) +Info 25 [00:01:29.000] ----------------------------------------------- +Info 26 [00:01:30.000] Search path: /user/username/projects/myproject/main +Info 27 [00:01:31.000] For info: /user/username/projects/myproject/main/tsconfig.json :: No config files found. +Info 28 [00:01:32.000] Project '/user/username/projects/myproject/main/tsconfig.json' (Configured) +Info 28 [00:01:33.000] Files (2) -Info 28 [16:01:34.000] ----------------------------------------------- -Info 28 [16:01:35.000] Open files: -Info 28 [16:01:36.000] FileName: /user/username/projects/myproject/main/main.ts ProjectRootPath: undefined -Info 28 [16:01:37.000] Projects: /user/username/projects/myproject/main/tsconfig.json +Info 28 [00:01:34.000] ----------------------------------------------- +Info 28 [00:01:35.000] Open files: +Info 28 [00:01:36.000] FileName: /user/username/projects/myproject/main/main.ts ProjectRootPath: undefined +Info 28 [00:01:37.000] Projects: /user/username/projects/myproject/main/tsconfig.json After request PolledWatches:: @@ -284,11 +284,11 @@ FsWatchesRecursive:: /user/username/projects/myproject/decls: {} -Info 28 [16:01:38.000] response: +Info 28 [00:01:38.000] response: { "responseRequired": false } -Info 29 [16:01:39.000] request: +Info 29 [00:01:39.000] request: { "seq": 0, "type": "request", @@ -321,11 +321,11 @@ FsWatchesRecursive:: /user/username/projects/myproject/decls: {} -Info 30 [16:01:40.000] Search path: /user/username/projects/myproject/random -Info 31 [16:01:41.000] For info: /user/username/projects/myproject/random/random.ts :: Config file name: /user/username/projects/myproject/random/tsconfig.json -Info 32 [16:01:42.000] Creating configuration project /user/username/projects/myproject/random/tsconfig.json -Info 33 [16:01:43.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/random/tsconfig.json 2000 undefined Project: /user/username/projects/myproject/random/tsconfig.json WatchType: Config file -Info 34 [16:01:44.000] Config: /user/username/projects/myproject/random/tsconfig.json : { +Info 30 [00:01:40.000] Search path: /user/username/projects/myproject/random +Info 31 [00:01:41.000] For info: /user/username/projects/myproject/random/random.ts :: Config file name: /user/username/projects/myproject/random/tsconfig.json +Info 32 [00:01:42.000] Creating configuration project /user/username/projects/myproject/random/tsconfig.json +Info 33 [00:01:43.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/random/tsconfig.json 2000 undefined Project: /user/username/projects/myproject/random/tsconfig.json WatchType: Config file +Info 34 [00:01:44.000] Config: /user/username/projects/myproject/random/tsconfig.json : { "rootNames": [ "/user/username/projects/myproject/random/random.ts" ], @@ -333,17 +333,17 @@ Info 34 [16:01:44.000] Config: /user/username/projects/myproject/random/tsconf "configFilePath": "/user/username/projects/myproject/random/tsconfig.json" } } -Info 35 [16:01:45.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/random 1 undefined Config: /user/username/projects/myproject/random/tsconfig.json WatchType: Wild card directory -Info 36 [16:01:46.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/random 1 undefined Config: /user/username/projects/myproject/random/tsconfig.json WatchType: Wild card directory -Info 37 [16:01:47.000] Plugins were requested but not running in environment that supports 'require'. Nothing will be loaded -Info 38 [16:01:48.000] Starting updateGraphWorker: Project: /user/username/projects/myproject/random/tsconfig.json -Info 39 [16:01:49.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/random/node_modules/@types 1 undefined Project: /user/username/projects/myproject/random/tsconfig.json WatchType: Type roots -Info 40 [16:01:50.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/random/node_modules/@types 1 undefined Project: /user/username/projects/myproject/random/tsconfig.json WatchType: Type roots -Info 41 [16:01:51.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/random/tsconfig.json WatchType: Type roots -Info 42 [16:01:52.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/random/tsconfig.json WatchType: Type roots -Info 43 [16:01:53.000] Finishing updateGraphWorker: Project: /user/username/projects/myproject/random/tsconfig.json Version: 1 structureChanged: true structureIsReused:: Not Elapsed:: *ms -Info 44 [16:01:54.000] Project '/user/username/projects/myproject/random/tsconfig.json' (Configured) -Info 45 [16:01:55.000] Files (2) +Info 35 [00:01:45.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/random 1 undefined Config: /user/username/projects/myproject/random/tsconfig.json WatchType: Wild card directory +Info 36 [00:01:46.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/random 1 undefined Config: /user/username/projects/myproject/random/tsconfig.json WatchType: Wild card directory +Info 37 [00:01:47.000] Plugins were requested but not running in environment that supports 'require'. Nothing will be loaded +Info 38 [00:01:48.000] Starting updateGraphWorker: Project: /user/username/projects/myproject/random/tsconfig.json +Info 39 [00:01:49.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/random/node_modules/@types 1 undefined Project: /user/username/projects/myproject/random/tsconfig.json WatchType: Type roots +Info 40 [00:01:50.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/random/node_modules/@types 1 undefined Project: /user/username/projects/myproject/random/tsconfig.json WatchType: Type roots +Info 41 [00:01:51.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/random/tsconfig.json WatchType: Type roots +Info 42 [00:01:52.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/random/tsconfig.json WatchType: Type roots +Info 43 [00:01:53.000] Finishing updateGraphWorker: Project: /user/username/projects/myproject/random/tsconfig.json Version: 1 structureChanged: true structureIsReused:: Not Elapsed:: *ms +Info 44 [00:01:54.000] Project '/user/username/projects/myproject/random/tsconfig.json' (Configured) +Info 45 [00:01:55.000] Files (2) /a/lib/lib.d.ts /user/username/projects/myproject/random/random.ts @@ -353,20 +353,20 @@ Info 45 [16:01:55.000] Files (2) random.ts Matched by default include pattern '**/*' -Info 46 [16:01:56.000] ----------------------------------------------- -Info 47 [16:01:57.000] Project '/user/username/projects/myproject/main/tsconfig.json' (Configured) -Info 47 [16:01:58.000] Files (2) +Info 46 [00:01:56.000] ----------------------------------------------- +Info 47 [00:01:57.000] Project '/user/username/projects/myproject/main/tsconfig.json' (Configured) +Info 47 [00:01:58.000] Files (2) -Info 47 [16:01:59.000] ----------------------------------------------- -Info 47 [16:02:00.000] Project '/user/username/projects/myproject/random/tsconfig.json' (Configured) -Info 47 [16:02:01.000] Files (2) +Info 47 [00:01:59.000] ----------------------------------------------- +Info 47 [00:02:00.000] Project '/user/username/projects/myproject/random/tsconfig.json' (Configured) +Info 47 [00:02:01.000] Files (2) -Info 47 [16:02:02.000] ----------------------------------------------- -Info 47 [16:02:03.000] Open files: -Info 47 [16:02:04.000] FileName: /user/username/projects/myproject/main/main.ts ProjectRootPath: undefined -Info 47 [16:02:05.000] Projects: /user/username/projects/myproject/main/tsconfig.json -Info 47 [16:02:06.000] FileName: /user/username/projects/myproject/random/random.ts ProjectRootPath: undefined -Info 47 [16:02:07.000] Projects: /user/username/projects/myproject/random/tsconfig.json +Info 47 [00:02:02.000] ----------------------------------------------- +Info 47 [00:02:03.000] Open files: +Info 47 [00:02:04.000] FileName: /user/username/projects/myproject/main/main.ts ProjectRootPath: undefined +Info 47 [00:02:05.000] Projects: /user/username/projects/myproject/main/tsconfig.json +Info 47 [00:02:06.000] FileName: /user/username/projects/myproject/random/random.ts ProjectRootPath: undefined +Info 47 [00:02:07.000] Projects: /user/username/projects/myproject/random/tsconfig.json After request PolledWatches:: @@ -397,11 +397,11 @@ FsWatchesRecursive:: /user/username/projects/myproject/random: {} -Info 47 [16:02:08.000] response: +Info 47 [00:02:08.000] response: { "responseRequired": false } -Info 48 [16:02:09.000] request: +Info 48 [00:02:09.000] request: { "command": "definitionAndBoundSpan", "arguments": { @@ -472,7 +472,7 @@ FsWatchesRecursive:: /user/username/projects/myproject/random: {} -Info 49 [16:02:10.000] response: +Info 49 [00:02:10.000] response: { "response": { "definitions": [ @@ -509,7 +509,7 @@ Info 49 [16:02:10.000] response: }, "responseRequired": true } -Info 50 [16:02:11.000] request: +Info 50 [00:02:11.000] request: { "command": "definitionAndBoundSpan", "arguments": { @@ -580,7 +580,7 @@ FsWatchesRecursive:: /user/username/projects/myproject/random: {} -Info 51 [16:02:12.000] response: +Info 51 [00:02:12.000] response: { "response": { "definitions": [ @@ -617,7 +617,7 @@ Info 51 [16:02:12.000] response: }, "responseRequired": true } -Info 52 [16:02:13.000] request: +Info 52 [00:02:13.000] request: { "command": "definitionAndBoundSpan", "arguments": { @@ -688,7 +688,7 @@ FsWatchesRecursive:: /user/username/projects/myproject/random: {} -Info 53 [16:02:14.000] response: +Info 53 [00:02:14.000] response: { "response": { "definitions": [ @@ -725,7 +725,7 @@ Info 53 [16:02:14.000] response: }, "responseRequired": true } -Info 54 [16:02:15.000] request: +Info 54 [00:02:15.000] request: { "command": "definitionAndBoundSpan", "arguments": { @@ -796,7 +796,7 @@ FsWatchesRecursive:: /user/username/projects/myproject/random: {} -Info 55 [16:02:16.000] response: +Info 55 [00:02:16.000] response: { "response": { "definitions": [ @@ -833,7 +833,7 @@ Info 55 [16:02:16.000] response: }, "responseRequired": true } -Info 56 [16:02:17.000] request: +Info 56 [00:02:17.000] request: { "command": "definitionAndBoundSpan", "arguments": { @@ -904,7 +904,7 @@ FsWatchesRecursive:: /user/username/projects/myproject/random: {} -Info 57 [16:02:18.000] response: +Info 57 [00:02:18.000] response: { "response": { "definitions": [ @@ -941,7 +941,7 @@ Info 57 [16:02:18.000] response: }, "responseRequired": true } -Info 58 [16:02:19.000] request: +Info 58 [00:02:19.000] request: { "seq": 0, "type": "request", @@ -980,18 +980,18 @@ FsWatchesRecursive:: /user/username/projects/myproject/random: {} -Info 59 [16:02:20.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/random/random.ts 500 undefined WatchType: Closed Script info -Info 60 [16:02:21.000] Project '/user/username/projects/myproject/main/tsconfig.json' (Configured) -Info 60 [16:02:22.000] Files (2) +Info 59 [00:02:20.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/random/random.ts 500 undefined WatchType: Closed Script info +Info 60 [00:02:21.000] Project '/user/username/projects/myproject/main/tsconfig.json' (Configured) +Info 60 [00:02:22.000] Files (2) -Info 60 [16:02:23.000] ----------------------------------------------- -Info 60 [16:02:24.000] Project '/user/username/projects/myproject/random/tsconfig.json' (Configured) -Info 60 [16:02:25.000] Files (2) +Info 60 [00:02:23.000] ----------------------------------------------- +Info 60 [00:02:24.000] Project '/user/username/projects/myproject/random/tsconfig.json' (Configured) +Info 60 [00:02:25.000] Files (2) -Info 60 [16:02:26.000] ----------------------------------------------- -Info 60 [16:02:27.000] Open files: -Info 60 [16:02:28.000] FileName: /user/username/projects/myproject/main/main.ts ProjectRootPath: undefined -Info 60 [16:02:29.000] Projects: /user/username/projects/myproject/main/tsconfig.json +Info 60 [00:02:26.000] ----------------------------------------------- +Info 60 [00:02:27.000] Open files: +Info 60 [00:02:28.000] FileName: /user/username/projects/myproject/main/main.ts ProjectRootPath: undefined +Info 60 [00:02:29.000] Projects: /user/username/projects/myproject/main/tsconfig.json After request PolledWatches:: @@ -1024,11 +1024,11 @@ FsWatchesRecursive:: /user/username/projects/myproject/random: {} -Info 60 [16:02:30.000] response: +Info 60 [00:02:30.000] response: { "responseRequired": false } -Info 61 [16:02:31.000] request: +Info 61 [00:02:31.000] request: { "seq": 0, "type": "request", @@ -1069,22 +1069,22 @@ FsWatchesRecursive:: /user/username/projects/myproject/random: {} -Info 62 [16:02:32.000] FileWatcher:: Close:: WatchInfo: /user/username/projects/myproject/random/random.ts 500 undefined WatchType: Closed Script info -Info 63 [16:02:33.000] Search path: /user/username/projects/myproject/random -Info 64 [16:02:34.000] For info: /user/username/projects/myproject/random/random.ts :: Config file name: /user/username/projects/myproject/random/tsconfig.json -Info 65 [16:02:35.000] Project '/user/username/projects/myproject/main/tsconfig.json' (Configured) -Info 65 [16:02:36.000] Files (2) +Info 62 [00:02:32.000] FileWatcher:: Close:: WatchInfo: /user/username/projects/myproject/random/random.ts 500 undefined WatchType: Closed Script info +Info 63 [00:02:33.000] Search path: /user/username/projects/myproject/random +Info 64 [00:02:34.000] For info: /user/username/projects/myproject/random/random.ts :: Config file name: /user/username/projects/myproject/random/tsconfig.json +Info 65 [00:02:35.000] Project '/user/username/projects/myproject/main/tsconfig.json' (Configured) +Info 65 [00:02:36.000] Files (2) -Info 65 [16:02:37.000] ----------------------------------------------- -Info 65 [16:02:38.000] Project '/user/username/projects/myproject/random/tsconfig.json' (Configured) -Info 65 [16:02:39.000] Files (2) +Info 65 [00:02:37.000] ----------------------------------------------- +Info 65 [00:02:38.000] Project '/user/username/projects/myproject/random/tsconfig.json' (Configured) +Info 65 [00:02:39.000] Files (2) -Info 65 [16:02:40.000] ----------------------------------------------- -Info 65 [16:02:41.000] Open files: -Info 65 [16:02:42.000] FileName: /user/username/projects/myproject/main/main.ts ProjectRootPath: undefined -Info 65 [16:02:43.000] Projects: /user/username/projects/myproject/main/tsconfig.json -Info 65 [16:02:44.000] FileName: /user/username/projects/myproject/random/random.ts ProjectRootPath: undefined -Info 65 [16:02:45.000] Projects: /user/username/projects/myproject/random/tsconfig.json +Info 65 [00:02:40.000] ----------------------------------------------- +Info 65 [00:02:41.000] Open files: +Info 65 [00:02:42.000] FileName: /user/username/projects/myproject/main/main.ts ProjectRootPath: undefined +Info 65 [00:02:43.000] Projects: /user/username/projects/myproject/main/tsconfig.json +Info 65 [00:02:44.000] FileName: /user/username/projects/myproject/random/random.ts ProjectRootPath: undefined +Info 65 [00:02:45.000] Projects: /user/username/projects/myproject/random/tsconfig.json After request PolledWatches:: @@ -1115,11 +1115,11 @@ FsWatchesRecursive:: /user/username/projects/myproject/random: {} -Info 65 [16:02:46.000] response: +Info 65 [00:02:46.000] response: { "responseRequired": false } -Info 66 [16:02:47.000] request: +Info 66 [00:02:47.000] request: { "seq": 0, "type": "request", @@ -1158,18 +1158,18 @@ FsWatchesRecursive:: /user/username/projects/myproject/random: {} -Info 67 [16:02:48.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/main/main.ts 500 undefined WatchType: Closed Script info -Info 68 [16:02:49.000] Project '/user/username/projects/myproject/main/tsconfig.json' (Configured) -Info 68 [16:02:50.000] Files (2) +Info 67 [00:02:48.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/main/main.ts 500 undefined WatchType: Closed Script info +Info 68 [00:02:49.000] Project '/user/username/projects/myproject/main/tsconfig.json' (Configured) +Info 68 [00:02:50.000] Files (2) -Info 68 [16:02:51.000] ----------------------------------------------- -Info 68 [16:02:52.000] Project '/user/username/projects/myproject/random/tsconfig.json' (Configured) -Info 68 [16:02:53.000] Files (2) +Info 68 [00:02:51.000] ----------------------------------------------- +Info 68 [00:02:52.000] Project '/user/username/projects/myproject/random/tsconfig.json' (Configured) +Info 68 [00:02:53.000] Files (2) -Info 68 [16:02:54.000] ----------------------------------------------- -Info 68 [16:02:55.000] Open files: -Info 68 [16:02:56.000] FileName: /user/username/projects/myproject/random/random.ts ProjectRootPath: undefined -Info 68 [16:02:57.000] Projects: /user/username/projects/myproject/random/tsconfig.json +Info 68 [00:02:54.000] ----------------------------------------------- +Info 68 [00:02:55.000] Open files: +Info 68 [00:02:56.000] FileName: /user/username/projects/myproject/random/random.ts ProjectRootPath: undefined +Info 68 [00:02:57.000] Projects: /user/username/projects/myproject/random/tsconfig.json After request PolledWatches:: @@ -1202,11 +1202,11 @@ FsWatchesRecursive:: /user/username/projects/myproject/random: {} -Info 68 [16:02:58.000] response: +Info 68 [00:02:58.000] response: { "responseRequired": false } -Info 69 [16:02:59.000] request: +Info 69 [00:02:59.000] request: { "seq": 0, "type": "request", @@ -1247,16 +1247,16 @@ FsWatchesRecursive:: /user/username/projects/myproject/random: {} -Info 70 [16:03:00.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/random/random.ts 500 undefined WatchType: Closed Script info -Info 71 [16:03:01.000] Project '/user/username/projects/myproject/main/tsconfig.json' (Configured) -Info 71 [16:03:02.000] Files (2) +Info 70 [00:03:00.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/random/random.ts 500 undefined WatchType: Closed Script info +Info 71 [00:03:01.000] Project '/user/username/projects/myproject/main/tsconfig.json' (Configured) +Info 71 [00:03:02.000] Files (2) -Info 71 [16:03:03.000] ----------------------------------------------- -Info 71 [16:03:04.000] Project '/user/username/projects/myproject/random/tsconfig.json' (Configured) -Info 71 [16:03:05.000] Files (2) +Info 71 [00:03:03.000] ----------------------------------------------- +Info 71 [00:03:04.000] Project '/user/username/projects/myproject/random/tsconfig.json' (Configured) +Info 71 [00:03:05.000] Files (2) -Info 71 [16:03:06.000] ----------------------------------------------- -Info 71 [16:03:07.000] Open files: +Info 71 [00:03:06.000] ----------------------------------------------- +Info 71 [00:03:07.000] Open files: After request PolledWatches:: @@ -1291,11 +1291,11 @@ FsWatchesRecursive:: /user/username/projects/myproject/random: {} -Info 71 [16:03:08.000] response: +Info 71 [00:03:08.000] response: { "responseRequired": false } -Info 72 [16:03:09.000] request: +Info 72 [00:03:09.000] request: { "seq": 0, "type": "request", @@ -1338,12 +1338,12 @@ FsWatchesRecursive:: /user/username/projects/myproject/random: {} -Info 73 [16:03:10.000] FileWatcher:: Close:: WatchInfo: /user/username/projects/myproject/random/random.ts 500 undefined WatchType: Closed Script info -Info 74 [16:03:11.000] Search path: /user/username/projects/myproject/random -Info 75 [16:03:12.000] For info: /user/username/projects/myproject/random/random.ts :: Config file name: /user/username/projects/myproject/random/tsconfig.json -Info 76 [16:03:13.000] `remove Project:: -Info 77 [16:03:14.000] Project '/user/username/projects/myproject/main/tsconfig.json' (Configured) -Info 78 [16:03:15.000] Files (2) +Info 73 [00:03:10.000] FileWatcher:: Close:: WatchInfo: /user/username/projects/myproject/random/random.ts 500 undefined WatchType: Closed Script info +Info 74 [00:03:11.000] Search path: /user/username/projects/myproject/random +Info 75 [00:03:12.000] For info: /user/username/projects/myproject/random/random.ts :: Config file name: /user/username/projects/myproject/random/tsconfig.json +Info 76 [00:03:13.000] `remove Project:: +Info 77 [00:03:14.000] Project '/user/username/projects/myproject/main/tsconfig.json' (Configured) +Info 78 [00:03:15.000] Files (2) /a/lib/lib.d.ts /user/username/projects/myproject/main/main.ts @@ -1353,27 +1353,27 @@ Info 78 [16:03:15.000] Files (2) main.ts Matched by default include pattern '**/*' -Info 79 [16:03:16.000] ----------------------------------------------- -Info 80 [16:03:17.000] DirectoryWatcher:: Close:: WatchInfo: /user/username/projects/myproject/main 1 undefined Config: /user/username/projects/myproject/main/tsconfig.json WatchType: Wild card directory -Info 81 [16:03:18.000] 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 82 [16:03:19.000] FileWatcher:: Close:: WatchInfo: /user/username/projects/myproject/main/tsconfig.json 2000 undefined Project: /user/username/projects/myproject/main/tsconfig.json WatchType: Config file -Info 83 [16:03:20.000] DirectoryWatcher:: Close:: WatchInfo: /user/username/projects/myproject/dependency 1 undefined Config: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Wild card directory -Info 84 [16:03:21.000] 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 85 [16:03:22.000] FileWatcher:: Close:: WatchInfo: /user/username/projects/myproject/dependency/tsconfig.json 2000 undefined Project: /user/username/projects/myproject/main/tsconfig.json WatchType: Config file -Info 86 [16:03:23.000] DirectoryWatcher:: Close:: WatchInfo: /user/username/projects/myproject/decls 1 undefined Project: /user/username/projects/myproject/main/tsconfig.json WatchType: Failed Lookup Locations -Info 87 [16:03:24.000] 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 88 [16:03:25.000] 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 89 [16:03:26.000] 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 90 [16:03:27.000] DirectoryWatcher:: Close:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/main/tsconfig.json WatchType: Type roots -Info 91 [16:03:28.000] 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 92 [16:03:29.000] FileWatcher:: Close:: WatchInfo: /user/username/projects/myproject/main/main.ts 500 undefined WatchType: Closed Script info -Info 93 [16:03:30.000] Project '/user/username/projects/myproject/random/tsconfig.json' (Configured) -Info 93 [16:03:31.000] Files (2) - -Info 93 [16:03:32.000] ----------------------------------------------- -Info 93 [16:03:33.000] Open files: -Info 93 [16:03:34.000] FileName: /user/username/projects/myproject/random/random.ts ProjectRootPath: undefined -Info 93 [16:03:35.000] Projects: /user/username/projects/myproject/random/tsconfig.json +Info 79 [00:03:16.000] ----------------------------------------------- +Info 80 [00:03:17.000] DirectoryWatcher:: Close:: WatchInfo: /user/username/projects/myproject/main 1 undefined Config: /user/username/projects/myproject/main/tsconfig.json WatchType: Wild card directory +Info 81 [00:03:18.000] 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 82 [00:03:19.000] FileWatcher:: Close:: WatchInfo: /user/username/projects/myproject/main/tsconfig.json 2000 undefined Project: /user/username/projects/myproject/main/tsconfig.json WatchType: Config file +Info 83 [00:03:20.000] DirectoryWatcher:: Close:: WatchInfo: /user/username/projects/myproject/dependency 1 undefined Config: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Wild card directory +Info 84 [00:03:21.000] 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 85 [00:03:22.000] FileWatcher:: Close:: WatchInfo: /user/username/projects/myproject/dependency/tsconfig.json 2000 undefined Project: /user/username/projects/myproject/main/tsconfig.json WatchType: Config file +Info 86 [00:03:23.000] DirectoryWatcher:: Close:: WatchInfo: /user/username/projects/myproject/decls 1 undefined Project: /user/username/projects/myproject/main/tsconfig.json WatchType: Failed Lookup Locations +Info 87 [00:03:24.000] 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 88 [00:03:25.000] 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 89 [00:03:26.000] 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 90 [00:03:27.000] DirectoryWatcher:: Close:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/main/tsconfig.json WatchType: Type roots +Info 91 [00:03:28.000] 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 92 [00:03:29.000] FileWatcher:: Close:: WatchInfo: /user/username/projects/myproject/main/main.ts 500 undefined WatchType: Closed Script info +Info 93 [00:03:30.000] Project '/user/username/projects/myproject/random/tsconfig.json' (Configured) +Info 93 [00:03:31.000] Files (2) + +Info 93 [00:03:32.000] ----------------------------------------------- +Info 93 [00:03:33.000] Open files: +Info 93 [00:03:34.000] FileName: /user/username/projects/myproject/random/random.ts ProjectRootPath: undefined +Info 93 [00:03:35.000] Projects: /user/username/projects/myproject/random/tsconfig.json After request PolledWatches:: @@ -1392,7 +1392,7 @@ FsWatchesRecursive:: /user/username/projects/myproject/random: {} -Info 93 [16:03:36.000] response: +Info 93 [00:03:36.000] response: { "responseRequired": false } \ No newline at end of file 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 68129ac767263..af66767e1fe4f 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 @@ -1,5 +1,5 @@ -Info 0 [16:01:03.000] Provided types map file "/a/lib/typesMap.json" doesn't exist -Info 1 [16:01:04.000] request: +Info 0 [00:01:03.000] Provided types map file "/a/lib/typesMap.json" doesn't exist +Info 1 [00:01:04.000] request: { "seq": 0, "type": "request", @@ -200,11 +200,11 @@ FsWatches:: FsWatchesRecursive:: -Info 2 [16:01:05.000] Search path: /user/username/projects/myproject/main -Info 3 [16:01:06.000] For info: /user/username/projects/myproject/main/main.ts :: Config file name: /user/username/projects/myproject/main/tsconfig.json -Info 4 [16:01:07.000] Creating configuration project /user/username/projects/myproject/main/tsconfig.json -Info 5 [16:01:08.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/main/tsconfig.json 2000 undefined Project: /user/username/projects/myproject/main/tsconfig.json WatchType: Config file -Info 6 [16:01:09.000] Config: /user/username/projects/myproject/main/tsconfig.json : { +Info 2 [00:01:05.000] Search path: /user/username/projects/myproject/main +Info 3 [00:01:06.000] For info: /user/username/projects/myproject/main/main.ts :: Config file name: /user/username/projects/myproject/main/tsconfig.json +Info 4 [00:01:07.000] Creating configuration project /user/username/projects/myproject/main/tsconfig.json +Info 5 [00:01:08.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/main/tsconfig.json 2000 undefined Project: /user/username/projects/myproject/main/tsconfig.json WatchType: Config file +Info 6 [00:01:09.000] Config: /user/username/projects/myproject/main/tsconfig.json : { "rootNames": [ "/user/username/projects/myproject/main/main.ts" ], @@ -221,11 +221,11 @@ Info 6 [16:01:09.000] Config: /user/username/projects/myproject/main/tsconfig } ] } -Info 7 [16:01:10.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/main 1 undefined Config: /user/username/projects/myproject/main/tsconfig.json WatchType: Wild card directory -Info 8 [16:01:11.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/main 1 undefined Config: /user/username/projects/myproject/main/tsconfig.json WatchType: Wild card directory -Info 9 [16:01:12.000] Plugins were requested but not running in environment that supports 'require'. Nothing will be loaded -Info 10 [16:01:13.000] Starting updateGraphWorker: Project: /user/username/projects/myproject/main/tsconfig.json -Info 11 [16:01:14.000] Config: /user/username/projects/myproject/dependency/tsconfig.json : { +Info 7 [00:01:10.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/main 1 undefined Config: /user/username/projects/myproject/main/tsconfig.json WatchType: Wild card directory +Info 8 [00:01:11.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/main 1 undefined Config: /user/username/projects/myproject/main/tsconfig.json WatchType: Wild card directory +Info 9 [00:01:12.000] Plugins were requested but not running in environment that supports 'require'. Nothing will be loaded +Info 10 [00:01:13.000] Starting updateGraphWorker: Project: /user/username/projects/myproject/main/tsconfig.json +Info 11 [00:01:14.000] Config: /user/username/projects/myproject/dependency/tsconfig.json : { "rootNames": [ "/user/username/projects/myproject/dependency/FnS.ts" ], @@ -236,20 +236,20 @@ Info 11 [16:01:14.000] Config: /user/username/projects/myproject/dependency/ts "configFilePath": "/user/username/projects/myproject/dependency/tsconfig.json" } } -Info 12 [16:01:15.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/dependency/tsconfig.json 2000 undefined Project: /user/username/projects/myproject/main/tsconfig.json WatchType: Config file -Info 13 [16:01:16.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/dependency 1 undefined Config: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Wild card directory -Info 14 [16:01:17.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/dependency 1 undefined Config: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Wild card directory -Info 15 [16:01:18.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/decls 1 undefined Project: /user/username/projects/myproject/main/tsconfig.json WatchType: Failed Lookup Locations -Info 16 [16:01:19.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/decls 1 undefined Project: /user/username/projects/myproject/main/tsconfig.json WatchType: Failed Lookup Locations -Info 17 [16:01:20.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/decls/fns.d.ts 500 undefined WatchType: Closed Script info -Info 18 [16:01:21.000] FileWatcher:: Added:: WatchInfo: /a/lib/lib.d.ts 500 undefined WatchType: Closed Script info -Info 19 [16:01:22.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/main/node_modules/@types 1 undefined Project: /user/username/projects/myproject/main/tsconfig.json WatchType: Type roots -Info 20 [16:01:23.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/main/node_modules/@types 1 undefined Project: /user/username/projects/myproject/main/tsconfig.json WatchType: Type roots -Info 21 [16:01:24.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/main/tsconfig.json WatchType: Type roots -Info 22 [16:01:25.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/main/tsconfig.json WatchType: Type roots -Info 23 [16:01:26.000] Finishing updateGraphWorker: Project: /user/username/projects/myproject/main/tsconfig.json Version: 1 structureChanged: true structureIsReused:: Not Elapsed:: *ms -Info 24 [16:01:27.000] Project '/user/username/projects/myproject/main/tsconfig.json' (Configured) -Info 25 [16:01:28.000] Files (3) +Info 12 [00:01:15.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/dependency/tsconfig.json 2000 undefined Project: /user/username/projects/myproject/main/tsconfig.json WatchType: Config file +Info 13 [00:01:16.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/dependency 1 undefined Config: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Wild card directory +Info 14 [00:01:17.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/dependency 1 undefined Config: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Wild card directory +Info 15 [00:01:18.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/decls 1 undefined Project: /user/username/projects/myproject/main/tsconfig.json WatchType: Failed Lookup Locations +Info 16 [00:01:19.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/decls 1 undefined Project: /user/username/projects/myproject/main/tsconfig.json WatchType: Failed Lookup Locations +Info 17 [00:01:20.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/decls/fns.d.ts 500 undefined WatchType: Closed Script info +Info 18 [00:01:21.000] FileWatcher:: Added:: WatchInfo: /a/lib/lib.d.ts 500 undefined WatchType: Closed Script info +Info 19 [00:01:22.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/main/node_modules/@types 1 undefined Project: /user/username/projects/myproject/main/tsconfig.json WatchType: Type roots +Info 20 [00:01:23.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/main/node_modules/@types 1 undefined Project: /user/username/projects/myproject/main/tsconfig.json WatchType: Type roots +Info 21 [00:01:24.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/main/tsconfig.json WatchType: Type roots +Info 22 [00:01:25.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/main/tsconfig.json WatchType: Type roots +Info 23 [00:01:26.000] Finishing updateGraphWorker: Project: /user/username/projects/myproject/main/tsconfig.json Version: 1 structureChanged: true structureIsReused:: Not Elapsed:: *ms +Info 24 [00:01:27.000] Project '/user/username/projects/myproject/main/tsconfig.json' (Configured) +Info 25 [00:01:28.000] Files (3) /a/lib/lib.d.ts /user/username/projects/myproject/decls/fns.d.ts /user/username/projects/myproject/main/main.ts @@ -262,16 +262,16 @@ Info 25 [16:01:28.000] Files (3) main.ts Matched by default include pattern '**/*' -Info 26 [16:01:29.000] ----------------------------------------------- -Info 27 [16:01:30.000] Search path: /user/username/projects/myproject/main -Info 28 [16:01:31.000] For info: /user/username/projects/myproject/main/tsconfig.json :: No config files found. -Info 29 [16:01:32.000] Project '/user/username/projects/myproject/main/tsconfig.json' (Configured) -Info 29 [16:01:33.000] Files (3) +Info 26 [00:01:29.000] ----------------------------------------------- +Info 27 [00:01:30.000] Search path: /user/username/projects/myproject/main +Info 28 [00:01:31.000] For info: /user/username/projects/myproject/main/tsconfig.json :: No config files found. +Info 29 [00:01:32.000] Project '/user/username/projects/myproject/main/tsconfig.json' (Configured) +Info 29 [00:01:33.000] Files (3) -Info 29 [16:01:34.000] ----------------------------------------------- -Info 29 [16:01:35.000] Open files: -Info 29 [16:01:36.000] FileName: /user/username/projects/myproject/main/main.ts ProjectRootPath: undefined -Info 29 [16:01:37.000] Projects: /user/username/projects/myproject/main/tsconfig.json +Info 29 [00:01:34.000] ----------------------------------------------- +Info 29 [00:01:35.000] Open files: +Info 29 [00:01:36.000] FileName: /user/username/projects/myproject/main/main.ts ProjectRootPath: undefined +Info 29 [00:01:37.000] Projects: /user/username/projects/myproject/main/tsconfig.json After request PolledWatches:: @@ -298,11 +298,11 @@ FsWatchesRecursive:: /user/username/projects/myproject/decls: {} -Info 29 [16:01:38.000] response: +Info 29 [00:01:38.000] response: { "responseRequired": false } -Info 30 [16:01:39.000] request: +Info 30 [00:01:39.000] request: { "seq": 0, "type": "request", @@ -337,11 +337,11 @@ FsWatchesRecursive:: /user/username/projects/myproject/decls: {} -Info 31 [16:01:40.000] Search path: /user/username/projects/myproject/random -Info 32 [16:01:41.000] For info: /user/username/projects/myproject/random/random.ts :: Config file name: /user/username/projects/myproject/random/tsconfig.json -Info 33 [16:01:42.000] Creating configuration project /user/username/projects/myproject/random/tsconfig.json -Info 34 [16:01:43.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/random/tsconfig.json 2000 undefined Project: /user/username/projects/myproject/random/tsconfig.json WatchType: Config file -Info 35 [16:01:44.000] Config: /user/username/projects/myproject/random/tsconfig.json : { +Info 31 [00:01:40.000] Search path: /user/username/projects/myproject/random +Info 32 [00:01:41.000] For info: /user/username/projects/myproject/random/random.ts :: Config file name: /user/username/projects/myproject/random/tsconfig.json +Info 33 [00:01:42.000] Creating configuration project /user/username/projects/myproject/random/tsconfig.json +Info 34 [00:01:43.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/random/tsconfig.json 2000 undefined Project: /user/username/projects/myproject/random/tsconfig.json WatchType: Config file +Info 35 [00:01:44.000] Config: /user/username/projects/myproject/random/tsconfig.json : { "rootNames": [ "/user/username/projects/myproject/random/random.ts" ], @@ -349,17 +349,17 @@ Info 35 [16:01:44.000] Config: /user/username/projects/myproject/random/tsconf "configFilePath": "/user/username/projects/myproject/random/tsconfig.json" } } -Info 36 [16:01:45.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/random 1 undefined Config: /user/username/projects/myproject/random/tsconfig.json WatchType: Wild card directory -Info 37 [16:01:46.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/random 1 undefined Config: /user/username/projects/myproject/random/tsconfig.json WatchType: Wild card directory -Info 38 [16:01:47.000] Plugins were requested but not running in environment that supports 'require'. Nothing will be loaded -Info 39 [16:01:48.000] Starting updateGraphWorker: Project: /user/username/projects/myproject/random/tsconfig.json -Info 40 [16:01:49.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/random/node_modules/@types 1 undefined Project: /user/username/projects/myproject/random/tsconfig.json WatchType: Type roots -Info 41 [16:01:50.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/random/node_modules/@types 1 undefined Project: /user/username/projects/myproject/random/tsconfig.json WatchType: Type roots -Info 42 [16:01:51.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/random/tsconfig.json WatchType: Type roots -Info 43 [16:01:52.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/random/tsconfig.json WatchType: Type roots -Info 44 [16:01:53.000] Finishing updateGraphWorker: Project: /user/username/projects/myproject/random/tsconfig.json Version: 1 structureChanged: true structureIsReused:: Not Elapsed:: *ms -Info 45 [16:01:54.000] Project '/user/username/projects/myproject/random/tsconfig.json' (Configured) -Info 46 [16:01:55.000] Files (2) +Info 36 [00:01:45.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/random 1 undefined Config: /user/username/projects/myproject/random/tsconfig.json WatchType: Wild card directory +Info 37 [00:01:46.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/random 1 undefined Config: /user/username/projects/myproject/random/tsconfig.json WatchType: Wild card directory +Info 38 [00:01:47.000] Plugins were requested but not running in environment that supports 'require'. Nothing will be loaded +Info 39 [00:01:48.000] Starting updateGraphWorker: Project: /user/username/projects/myproject/random/tsconfig.json +Info 40 [00:01:49.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/random/node_modules/@types 1 undefined Project: /user/username/projects/myproject/random/tsconfig.json WatchType: Type roots +Info 41 [00:01:50.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/random/node_modules/@types 1 undefined Project: /user/username/projects/myproject/random/tsconfig.json WatchType: Type roots +Info 42 [00:01:51.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/random/tsconfig.json WatchType: Type roots +Info 43 [00:01:52.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/random/tsconfig.json WatchType: Type roots +Info 44 [00:01:53.000] Finishing updateGraphWorker: Project: /user/username/projects/myproject/random/tsconfig.json Version: 1 structureChanged: true structureIsReused:: Not Elapsed:: *ms +Info 45 [00:01:54.000] Project '/user/username/projects/myproject/random/tsconfig.json' (Configured) +Info 46 [00:01:55.000] Files (2) /a/lib/lib.d.ts /user/username/projects/myproject/random/random.ts @@ -369,20 +369,20 @@ Info 46 [16:01:55.000] Files (2) random.ts Matched by default include pattern '**/*' -Info 47 [16:01:56.000] ----------------------------------------------- -Info 48 [16:01:57.000] Project '/user/username/projects/myproject/main/tsconfig.json' (Configured) -Info 48 [16:01:58.000] Files (3) +Info 47 [00:01:56.000] ----------------------------------------------- +Info 48 [00:01:57.000] Project '/user/username/projects/myproject/main/tsconfig.json' (Configured) +Info 48 [00:01:58.000] Files (3) -Info 48 [16:01:59.000] ----------------------------------------------- -Info 48 [16:02:00.000] Project '/user/username/projects/myproject/random/tsconfig.json' (Configured) -Info 48 [16:02:01.000] Files (2) +Info 48 [00:01:59.000] ----------------------------------------------- +Info 48 [00:02:00.000] Project '/user/username/projects/myproject/random/tsconfig.json' (Configured) +Info 48 [00:02:01.000] Files (2) -Info 48 [16:02:02.000] ----------------------------------------------- -Info 48 [16:02:03.000] Open files: -Info 48 [16:02:04.000] FileName: /user/username/projects/myproject/main/main.ts ProjectRootPath: undefined -Info 48 [16:02:05.000] Projects: /user/username/projects/myproject/main/tsconfig.json -Info 48 [16:02:06.000] FileName: /user/username/projects/myproject/random/random.ts ProjectRootPath: undefined -Info 48 [16:02:07.000] Projects: /user/username/projects/myproject/random/tsconfig.json +Info 48 [00:02:02.000] ----------------------------------------------- +Info 48 [00:02:03.000] Open files: +Info 48 [00:02:04.000] FileName: /user/username/projects/myproject/main/main.ts ProjectRootPath: undefined +Info 48 [00:02:05.000] Projects: /user/username/projects/myproject/main/tsconfig.json +Info 48 [00:02:06.000] FileName: /user/username/projects/myproject/random/random.ts ProjectRootPath: undefined +Info 48 [00:02:07.000] Projects: /user/username/projects/myproject/random/tsconfig.json After request PolledWatches:: @@ -415,11 +415,11 @@ FsWatchesRecursive:: /user/username/projects/myproject/random: {} -Info 48 [16:02:08.000] response: +Info 48 [00:02:08.000] response: { "responseRequired": false } -Info 49 [16:02:09.000] request: +Info 49 [00:02:09.000] request: { "command": "definitionAndBoundSpan", "arguments": { @@ -462,8 +462,8 @@ FsWatchesRecursive:: /user/username/projects/myproject/random: {} -Info 50 [16:02:10.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/decls/FnS.d.ts.map 500 undefined WatchType: Closed Script info -Info 51 [16:02:11.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/dependency/FnS.ts 500 undefined WatchType: Closed Script info +Info 50 [00:02:10.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/decls/FnS.d.ts.map 500 undefined WatchType: Closed Script info +Info 51 [00:02:11.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/dependency/FnS.ts 500 undefined WatchType: Closed Script info After request PolledWatches:: @@ -500,7 +500,7 @@ FsWatchesRecursive:: /user/username/projects/myproject/random: {} -Info 52 [16:02:12.000] response: +Info 52 [00:02:12.000] response: { "response": { "definitions": [ @@ -537,10 +537,10 @@ Info 52 [16:02:12.000] response: }, "responseRequired": true } -Info 53 [16:02:16.000] FileWatcher:: Triggered with /user/username/projects/myproject/decls/FnS.d.ts.map 1:: WatchInfo: /user/username/projects/myproject/decls/FnS.d.ts.map 500 undefined WatchType: Closed Script info -Info 54 [16:02:17.000] Scheduled: /user/username/projects/myproject/main/tsconfig.json -Info 55 [16:02:18.000] Scheduled: *ensureProjectForOpenFiles* -Info 56 [16:02:19.000] Elapsed:: *ms FileWatcher:: Triggered with /user/username/projects/myproject/decls/FnS.d.ts.map 1:: WatchInfo: /user/username/projects/myproject/decls/FnS.d.ts.map 500 undefined WatchType: Closed Script info +Info 53 [00:02:16.000] FileWatcher:: Triggered with /user/username/projects/myproject/decls/FnS.d.ts.map 1:: WatchInfo: /user/username/projects/myproject/decls/FnS.d.ts.map 500 undefined WatchType: Closed Script info +Info 54 [00:02:17.000] Scheduled: /user/username/projects/myproject/main/tsconfig.json +Info 55 [00:02:18.000] Scheduled: *ensureProjectForOpenFiles* +Info 56 [00:02:19.000] Elapsed:: *ms FileWatcher:: Triggered with /user/username/projects/myproject/decls/FnS.d.ts.map 1:: WatchInfo: /user/username/projects/myproject/decls/FnS.d.ts.map 500 undefined WatchType: Closed Script info Before running timeout callbacks //// [/user/username/projects/myproject/decls/FnS.d.ts.map] {"version":3,"file":"FnS.d.ts","sourceRoot":"","sources":["../dependency/FnS.ts"],"names":[],"mappings":"AAAA,wBAAgB,GAAG,SAAM;AACzB,wBAAgB,GAAG,SAAM;AACzB,wBAAgB,GAAG,SAAM;AACzB,wBAAgB,GAAG,SAAM;AACzB,wBAAgB,GAAG,SAAM;AACzB,eAAO,MAAM,CAAC,KAAK,CAAC"} @@ -580,38 +580,38 @@ FsWatchesRecursive:: /user/username/projects/myproject/random: {} -Info 57 [16:02:20.000] Running: /user/username/projects/myproject/main/tsconfig.json -Info 58 [16:02:21.000] Starting updateGraphWorker: Project: /user/username/projects/myproject/main/tsconfig.json -Info 59 [16:02:22.000] Finishing updateGraphWorker: Project: /user/username/projects/myproject/main/tsconfig.json Version: 2 structureChanged: false structureIsReused:: Not Elapsed:: *ms -Info 60 [16:02:23.000] Running: *ensureProjectForOpenFiles* -Info 61 [16:02:24.000] Before ensureProjectForOpenFiles: -Info 62 [16:02:25.000] Project '/user/username/projects/myproject/main/tsconfig.json' (Configured) -Info 62 [16:02:26.000] Files (3) - -Info 62 [16:02:27.000] ----------------------------------------------- -Info 62 [16:02:28.000] Project '/user/username/projects/myproject/random/tsconfig.json' (Configured) -Info 62 [16:02:29.000] Files (2) - -Info 62 [16:02:30.000] ----------------------------------------------- -Info 62 [16:02:31.000] Open files: -Info 62 [16:02:32.000] FileName: /user/username/projects/myproject/main/main.ts ProjectRootPath: undefined -Info 62 [16:02:33.000] Projects: /user/username/projects/myproject/main/tsconfig.json -Info 62 [16:02:34.000] FileName: /user/username/projects/myproject/random/random.ts ProjectRootPath: undefined -Info 62 [16:02:35.000] Projects: /user/username/projects/myproject/random/tsconfig.json -Info 62 [16:02:36.000] After ensureProjectForOpenFiles: -Info 63 [16:02:37.000] Project '/user/username/projects/myproject/main/tsconfig.json' (Configured) -Info 63 [16:02:38.000] Files (3) - -Info 63 [16:02:39.000] ----------------------------------------------- -Info 63 [16:02:40.000] Project '/user/username/projects/myproject/random/tsconfig.json' (Configured) -Info 63 [16:02:41.000] Files (2) - -Info 63 [16:02:42.000] ----------------------------------------------- -Info 63 [16:02:43.000] Open files: -Info 63 [16:02:44.000] FileName: /user/username/projects/myproject/main/main.ts ProjectRootPath: undefined -Info 63 [16:02:45.000] Projects: /user/username/projects/myproject/main/tsconfig.json -Info 63 [16:02:46.000] FileName: /user/username/projects/myproject/random/random.ts ProjectRootPath: undefined -Info 63 [16:02:47.000] Projects: /user/username/projects/myproject/random/tsconfig.json +Info 57 [00:02:20.000] Running: /user/username/projects/myproject/main/tsconfig.json +Info 58 [00:02:21.000] Starting updateGraphWorker: Project: /user/username/projects/myproject/main/tsconfig.json +Info 59 [00:02:22.000] Finishing updateGraphWorker: Project: /user/username/projects/myproject/main/tsconfig.json Version: 2 structureChanged: false structureIsReused:: Not Elapsed:: *ms +Info 60 [00:02:23.000] Running: *ensureProjectForOpenFiles* +Info 61 [00:02:24.000] Before ensureProjectForOpenFiles: +Info 62 [00:02:25.000] Project '/user/username/projects/myproject/main/tsconfig.json' (Configured) +Info 62 [00:02:26.000] Files (3) + +Info 62 [00:02:27.000] ----------------------------------------------- +Info 62 [00:02:28.000] Project '/user/username/projects/myproject/random/tsconfig.json' (Configured) +Info 62 [00:02:29.000] Files (2) + +Info 62 [00:02:30.000] ----------------------------------------------- +Info 62 [00:02:31.000] Open files: +Info 62 [00:02:32.000] FileName: /user/username/projects/myproject/main/main.ts ProjectRootPath: undefined +Info 62 [00:02:33.000] Projects: /user/username/projects/myproject/main/tsconfig.json +Info 62 [00:02:34.000] FileName: /user/username/projects/myproject/random/random.ts ProjectRootPath: undefined +Info 62 [00:02:35.000] Projects: /user/username/projects/myproject/random/tsconfig.json +Info 62 [00:02:36.000] After ensureProjectForOpenFiles: +Info 63 [00:02:37.000] Project '/user/username/projects/myproject/main/tsconfig.json' (Configured) +Info 63 [00:02:38.000] Files (3) + +Info 63 [00:02:39.000] ----------------------------------------------- +Info 63 [00:02:40.000] Project '/user/username/projects/myproject/random/tsconfig.json' (Configured) +Info 63 [00:02:41.000] Files (2) + +Info 63 [00:02:42.000] ----------------------------------------------- +Info 63 [00:02:43.000] Open files: +Info 63 [00:02:44.000] FileName: /user/username/projects/myproject/main/main.ts ProjectRootPath: undefined +Info 63 [00:02:45.000] Projects: /user/username/projects/myproject/main/tsconfig.json +Info 63 [00:02:46.000] FileName: /user/username/projects/myproject/random/random.ts ProjectRootPath: undefined +Info 63 [00:02:47.000] Projects: /user/username/projects/myproject/random/tsconfig.json After running timeout callbacks PolledWatches:: @@ -648,7 +648,7 @@ FsWatchesRecursive:: /user/username/projects/myproject/random: {} -Info 63 [16:02:48.000] request: +Info 63 [00:02:48.000] request: { "command": "definitionAndBoundSpan", "arguments": { @@ -731,7 +731,7 @@ FsWatchesRecursive:: /user/username/projects/myproject/random: {} -Info 64 [16:02:49.000] response: +Info 64 [00:02:49.000] response: { "response": { "definitions": [ @@ -768,7 +768,7 @@ Info 64 [16:02:49.000] response: }, "responseRequired": true } -Info 65 [16:02:50.000] request: +Info 65 [00:02:50.000] request: { "command": "definitionAndBoundSpan", "arguments": { @@ -851,7 +851,7 @@ FsWatchesRecursive:: /user/username/projects/myproject/random: {} -Info 66 [16:02:51.000] response: +Info 66 [00:02:51.000] response: { "response": { "definitions": [ @@ -888,7 +888,7 @@ Info 66 [16:02:51.000] response: }, "responseRequired": true } -Info 67 [16:02:52.000] request: +Info 67 [00:02:52.000] request: { "command": "definitionAndBoundSpan", "arguments": { @@ -971,7 +971,7 @@ FsWatchesRecursive:: /user/username/projects/myproject/random: {} -Info 68 [16:02:53.000] response: +Info 68 [00:02:53.000] response: { "response": { "definitions": [ @@ -1008,7 +1008,7 @@ Info 68 [16:02:53.000] response: }, "responseRequired": true } -Info 69 [16:02:54.000] request: +Info 69 [00:02:54.000] request: { "command": "definitionAndBoundSpan", "arguments": { @@ -1091,7 +1091,7 @@ FsWatchesRecursive:: /user/username/projects/myproject/random: {} -Info 70 [16:02:55.000] response: +Info 70 [00:02:55.000] response: { "response": { "definitions": [ @@ -1128,7 +1128,7 @@ Info 70 [16:02:55.000] response: }, "responseRequired": true } -Info 71 [16:02:56.000] request: +Info 71 [00:02:56.000] request: { "command": "definitionAndBoundSpan", "arguments": { @@ -1211,7 +1211,7 @@ FsWatchesRecursive:: /user/username/projects/myproject/random: {} -Info 72 [16:02:57.000] response: +Info 72 [00:02:57.000] response: { "response": { "definitions": [ 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 5e04119c97924..40fb6cef17231 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 @@ -1,5 +1,5 @@ -Info 0 [16:01:03.000] Provided types map file "/a/lib/typesMap.json" doesn't exist -Info 1 [16:01:04.000] request: +Info 0 [00:01:03.000] Provided types map file "/a/lib/typesMap.json" doesn't exist +Info 1 [00:01:04.000] request: { "seq": 0, "type": "request", @@ -200,11 +200,11 @@ FsWatches:: FsWatchesRecursive:: -Info 2 [16:01:05.000] Search path: /user/username/projects/myproject/main -Info 3 [16:01:06.000] For info: /user/username/projects/myproject/main/main.ts :: Config file name: /user/username/projects/myproject/main/tsconfig.json -Info 4 [16:01:07.000] Creating configuration project /user/username/projects/myproject/main/tsconfig.json -Info 5 [16:01:08.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/main/tsconfig.json 2000 undefined Project: /user/username/projects/myproject/main/tsconfig.json WatchType: Config file -Info 6 [16:01:09.000] Config: /user/username/projects/myproject/main/tsconfig.json : { +Info 2 [00:01:05.000] Search path: /user/username/projects/myproject/main +Info 3 [00:01:06.000] For info: /user/username/projects/myproject/main/main.ts :: Config file name: /user/username/projects/myproject/main/tsconfig.json +Info 4 [00:01:07.000] Creating configuration project /user/username/projects/myproject/main/tsconfig.json +Info 5 [00:01:08.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/main/tsconfig.json 2000 undefined Project: /user/username/projects/myproject/main/tsconfig.json WatchType: Config file +Info 6 [00:01:09.000] Config: /user/username/projects/myproject/main/tsconfig.json : { "rootNames": [ "/user/username/projects/myproject/main/main.ts" ], @@ -221,11 +221,11 @@ Info 6 [16:01:09.000] Config: /user/username/projects/myproject/main/tsconfig } ] } -Info 7 [16:01:10.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/main 1 undefined Config: /user/username/projects/myproject/main/tsconfig.json WatchType: Wild card directory -Info 8 [16:01:11.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/main 1 undefined Config: /user/username/projects/myproject/main/tsconfig.json WatchType: Wild card directory -Info 9 [16:01:12.000] Plugins were requested but not running in environment that supports 'require'. Nothing will be loaded -Info 10 [16:01:13.000] Starting updateGraphWorker: Project: /user/username/projects/myproject/main/tsconfig.json -Info 11 [16:01:14.000] Config: /user/username/projects/myproject/dependency/tsconfig.json : { +Info 7 [00:01:10.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/main 1 undefined Config: /user/username/projects/myproject/main/tsconfig.json WatchType: Wild card directory +Info 8 [00:01:11.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/main 1 undefined Config: /user/username/projects/myproject/main/tsconfig.json WatchType: Wild card directory +Info 9 [00:01:12.000] Plugins were requested but not running in environment that supports 'require'. Nothing will be loaded +Info 10 [00:01:13.000] Starting updateGraphWorker: Project: /user/username/projects/myproject/main/tsconfig.json +Info 11 [00:01:14.000] Config: /user/username/projects/myproject/dependency/tsconfig.json : { "rootNames": [ "/user/username/projects/myproject/dependency/FnS.ts" ], @@ -236,20 +236,20 @@ Info 11 [16:01:14.000] Config: /user/username/projects/myproject/dependency/ts "configFilePath": "/user/username/projects/myproject/dependency/tsconfig.json" } } -Info 12 [16:01:15.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/dependency/tsconfig.json 2000 undefined Project: /user/username/projects/myproject/main/tsconfig.json WatchType: Config file -Info 13 [16:01:16.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/dependency 1 undefined Config: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Wild card directory -Info 14 [16:01:17.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/dependency 1 undefined Config: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Wild card directory -Info 15 [16:01:18.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/decls 1 undefined Project: /user/username/projects/myproject/main/tsconfig.json WatchType: Failed Lookup Locations -Info 16 [16:01:19.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/decls 1 undefined Project: /user/username/projects/myproject/main/tsconfig.json WatchType: Failed Lookup Locations -Info 17 [16:01:20.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/decls/fns.d.ts 500 undefined WatchType: Closed Script info -Info 18 [16:01:21.000] FileWatcher:: Added:: WatchInfo: /a/lib/lib.d.ts 500 undefined WatchType: Closed Script info -Info 19 [16:01:22.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/main/node_modules/@types 1 undefined Project: /user/username/projects/myproject/main/tsconfig.json WatchType: Type roots -Info 20 [16:01:23.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/main/node_modules/@types 1 undefined Project: /user/username/projects/myproject/main/tsconfig.json WatchType: Type roots -Info 21 [16:01:24.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/main/tsconfig.json WatchType: Type roots -Info 22 [16:01:25.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/main/tsconfig.json WatchType: Type roots -Info 23 [16:01:26.000] Finishing updateGraphWorker: Project: /user/username/projects/myproject/main/tsconfig.json Version: 1 structureChanged: true structureIsReused:: Not Elapsed:: *ms -Info 24 [16:01:27.000] Project '/user/username/projects/myproject/main/tsconfig.json' (Configured) -Info 25 [16:01:28.000] Files (3) +Info 12 [00:01:15.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/dependency/tsconfig.json 2000 undefined Project: /user/username/projects/myproject/main/tsconfig.json WatchType: Config file +Info 13 [00:01:16.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/dependency 1 undefined Config: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Wild card directory +Info 14 [00:01:17.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/dependency 1 undefined Config: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Wild card directory +Info 15 [00:01:18.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/decls 1 undefined Project: /user/username/projects/myproject/main/tsconfig.json WatchType: Failed Lookup Locations +Info 16 [00:01:19.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/decls 1 undefined Project: /user/username/projects/myproject/main/tsconfig.json WatchType: Failed Lookup Locations +Info 17 [00:01:20.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/decls/fns.d.ts 500 undefined WatchType: Closed Script info +Info 18 [00:01:21.000] FileWatcher:: Added:: WatchInfo: /a/lib/lib.d.ts 500 undefined WatchType: Closed Script info +Info 19 [00:01:22.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/main/node_modules/@types 1 undefined Project: /user/username/projects/myproject/main/tsconfig.json WatchType: Type roots +Info 20 [00:01:23.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/main/node_modules/@types 1 undefined Project: /user/username/projects/myproject/main/tsconfig.json WatchType: Type roots +Info 21 [00:01:24.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/main/tsconfig.json WatchType: Type roots +Info 22 [00:01:25.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/main/tsconfig.json WatchType: Type roots +Info 23 [00:01:26.000] Finishing updateGraphWorker: Project: /user/username/projects/myproject/main/tsconfig.json Version: 1 structureChanged: true structureIsReused:: Not Elapsed:: *ms +Info 24 [00:01:27.000] Project '/user/username/projects/myproject/main/tsconfig.json' (Configured) +Info 25 [00:01:28.000] Files (3) /a/lib/lib.d.ts /user/username/projects/myproject/decls/fns.d.ts /user/username/projects/myproject/main/main.ts @@ -262,16 +262,16 @@ Info 25 [16:01:28.000] Files (3) main.ts Matched by default include pattern '**/*' -Info 26 [16:01:29.000] ----------------------------------------------- -Info 27 [16:01:30.000] Search path: /user/username/projects/myproject/main -Info 28 [16:01:31.000] For info: /user/username/projects/myproject/main/tsconfig.json :: No config files found. -Info 29 [16:01:32.000] Project '/user/username/projects/myproject/main/tsconfig.json' (Configured) -Info 29 [16:01:33.000] Files (3) +Info 26 [00:01:29.000] ----------------------------------------------- +Info 27 [00:01:30.000] Search path: /user/username/projects/myproject/main +Info 28 [00:01:31.000] For info: /user/username/projects/myproject/main/tsconfig.json :: No config files found. +Info 29 [00:01:32.000] Project '/user/username/projects/myproject/main/tsconfig.json' (Configured) +Info 29 [00:01:33.000] Files (3) -Info 29 [16:01:34.000] ----------------------------------------------- -Info 29 [16:01:35.000] Open files: -Info 29 [16:01:36.000] FileName: /user/username/projects/myproject/main/main.ts ProjectRootPath: undefined -Info 29 [16:01:37.000] Projects: /user/username/projects/myproject/main/tsconfig.json +Info 29 [00:01:34.000] ----------------------------------------------- +Info 29 [00:01:35.000] Open files: +Info 29 [00:01:36.000] FileName: /user/username/projects/myproject/main/main.ts ProjectRootPath: undefined +Info 29 [00:01:37.000] Projects: /user/username/projects/myproject/main/tsconfig.json After request PolledWatches:: @@ -298,11 +298,11 @@ FsWatchesRecursive:: /user/username/projects/myproject/decls: {} -Info 29 [16:01:38.000] response: +Info 29 [00:01:38.000] response: { "responseRequired": false } -Info 30 [16:01:39.000] request: +Info 30 [00:01:39.000] request: { "seq": 0, "type": "request", @@ -337,11 +337,11 @@ FsWatchesRecursive:: /user/username/projects/myproject/decls: {} -Info 31 [16:01:40.000] Search path: /user/username/projects/myproject/random -Info 32 [16:01:41.000] For info: /user/username/projects/myproject/random/random.ts :: Config file name: /user/username/projects/myproject/random/tsconfig.json -Info 33 [16:01:42.000] Creating configuration project /user/username/projects/myproject/random/tsconfig.json -Info 34 [16:01:43.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/random/tsconfig.json 2000 undefined Project: /user/username/projects/myproject/random/tsconfig.json WatchType: Config file -Info 35 [16:01:44.000] Config: /user/username/projects/myproject/random/tsconfig.json : { +Info 31 [00:01:40.000] Search path: /user/username/projects/myproject/random +Info 32 [00:01:41.000] For info: /user/username/projects/myproject/random/random.ts :: Config file name: /user/username/projects/myproject/random/tsconfig.json +Info 33 [00:01:42.000] Creating configuration project /user/username/projects/myproject/random/tsconfig.json +Info 34 [00:01:43.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/random/tsconfig.json 2000 undefined Project: /user/username/projects/myproject/random/tsconfig.json WatchType: Config file +Info 35 [00:01:44.000] Config: /user/username/projects/myproject/random/tsconfig.json : { "rootNames": [ "/user/username/projects/myproject/random/random.ts" ], @@ -349,17 +349,17 @@ Info 35 [16:01:44.000] Config: /user/username/projects/myproject/random/tsconf "configFilePath": "/user/username/projects/myproject/random/tsconfig.json" } } -Info 36 [16:01:45.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/random 1 undefined Config: /user/username/projects/myproject/random/tsconfig.json WatchType: Wild card directory -Info 37 [16:01:46.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/random 1 undefined Config: /user/username/projects/myproject/random/tsconfig.json WatchType: Wild card directory -Info 38 [16:01:47.000] Plugins were requested but not running in environment that supports 'require'. Nothing will be loaded -Info 39 [16:01:48.000] Starting updateGraphWorker: Project: /user/username/projects/myproject/random/tsconfig.json -Info 40 [16:01:49.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/random/node_modules/@types 1 undefined Project: /user/username/projects/myproject/random/tsconfig.json WatchType: Type roots -Info 41 [16:01:50.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/random/node_modules/@types 1 undefined Project: /user/username/projects/myproject/random/tsconfig.json WatchType: Type roots -Info 42 [16:01:51.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/random/tsconfig.json WatchType: Type roots -Info 43 [16:01:52.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/random/tsconfig.json WatchType: Type roots -Info 44 [16:01:53.000] Finishing updateGraphWorker: Project: /user/username/projects/myproject/random/tsconfig.json Version: 1 structureChanged: true structureIsReused:: Not Elapsed:: *ms -Info 45 [16:01:54.000] Project '/user/username/projects/myproject/random/tsconfig.json' (Configured) -Info 46 [16:01:55.000] Files (2) +Info 36 [00:01:45.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/random 1 undefined Config: /user/username/projects/myproject/random/tsconfig.json WatchType: Wild card directory +Info 37 [00:01:46.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/random 1 undefined Config: /user/username/projects/myproject/random/tsconfig.json WatchType: Wild card directory +Info 38 [00:01:47.000] Plugins were requested but not running in environment that supports 'require'. Nothing will be loaded +Info 39 [00:01:48.000] Starting updateGraphWorker: Project: /user/username/projects/myproject/random/tsconfig.json +Info 40 [00:01:49.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/random/node_modules/@types 1 undefined Project: /user/username/projects/myproject/random/tsconfig.json WatchType: Type roots +Info 41 [00:01:50.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/random/node_modules/@types 1 undefined Project: /user/username/projects/myproject/random/tsconfig.json WatchType: Type roots +Info 42 [00:01:51.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/random/tsconfig.json WatchType: Type roots +Info 43 [00:01:52.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/random/tsconfig.json WatchType: Type roots +Info 44 [00:01:53.000] Finishing updateGraphWorker: Project: /user/username/projects/myproject/random/tsconfig.json Version: 1 structureChanged: true structureIsReused:: Not Elapsed:: *ms +Info 45 [00:01:54.000] Project '/user/username/projects/myproject/random/tsconfig.json' (Configured) +Info 46 [00:01:55.000] Files (2) /a/lib/lib.d.ts /user/username/projects/myproject/random/random.ts @@ -369,20 +369,20 @@ Info 46 [16:01:55.000] Files (2) random.ts Matched by default include pattern '**/*' -Info 47 [16:01:56.000] ----------------------------------------------- -Info 48 [16:01:57.000] Project '/user/username/projects/myproject/main/tsconfig.json' (Configured) -Info 48 [16:01:58.000] Files (3) +Info 47 [00:01:56.000] ----------------------------------------------- +Info 48 [00:01:57.000] Project '/user/username/projects/myproject/main/tsconfig.json' (Configured) +Info 48 [00:01:58.000] Files (3) -Info 48 [16:01:59.000] ----------------------------------------------- -Info 48 [16:02:00.000] Project '/user/username/projects/myproject/random/tsconfig.json' (Configured) -Info 48 [16:02:01.000] Files (2) +Info 48 [00:01:59.000] ----------------------------------------------- +Info 48 [00:02:00.000] Project '/user/username/projects/myproject/random/tsconfig.json' (Configured) +Info 48 [00:02:01.000] Files (2) -Info 48 [16:02:02.000] ----------------------------------------------- -Info 48 [16:02:03.000] Open files: -Info 48 [16:02:04.000] FileName: /user/username/projects/myproject/main/main.ts ProjectRootPath: undefined -Info 48 [16:02:05.000] Projects: /user/username/projects/myproject/main/tsconfig.json -Info 48 [16:02:06.000] FileName: /user/username/projects/myproject/random/random.ts ProjectRootPath: undefined -Info 48 [16:02:07.000] Projects: /user/username/projects/myproject/random/tsconfig.json +Info 48 [00:02:02.000] ----------------------------------------------- +Info 48 [00:02:03.000] Open files: +Info 48 [00:02:04.000] FileName: /user/username/projects/myproject/main/main.ts ProjectRootPath: undefined +Info 48 [00:02:05.000] Projects: /user/username/projects/myproject/main/tsconfig.json +Info 48 [00:02:06.000] FileName: /user/username/projects/myproject/random/random.ts ProjectRootPath: undefined +Info 48 [00:02:07.000] Projects: /user/username/projects/myproject/random/tsconfig.json After request PolledWatches:: @@ -415,11 +415,11 @@ FsWatchesRecursive:: /user/username/projects/myproject/random: {} -Info 48 [16:02:08.000] response: +Info 48 [00:02:08.000] response: { "responseRequired": false } -Info 49 [16:02:09.000] request: +Info 49 [00:02:09.000] request: { "command": "definitionAndBoundSpan", "arguments": { @@ -462,8 +462,8 @@ FsWatchesRecursive:: /user/username/projects/myproject/random: {} -Info 50 [16:02:10.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/decls/FnS.d.ts.map 500 undefined WatchType: Closed Script info -Info 51 [16:02:11.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/dependency/FnS.ts 500 undefined WatchType: Closed Script info +Info 50 [00:02:10.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/decls/FnS.d.ts.map 500 undefined WatchType: Closed Script info +Info 51 [00:02:11.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/dependency/FnS.ts 500 undefined WatchType: Closed Script info After request PolledWatches:: @@ -500,7 +500,7 @@ FsWatchesRecursive:: /user/username/projects/myproject/random: {} -Info 52 [16:02:12.000] response: +Info 52 [00:02:12.000] response: { "response": { "definitions": [ @@ -537,11 +537,11 @@ Info 52 [16:02:12.000] response: }, "responseRequired": true } -Info 53 [16:02:16.000] FileWatcher:: Triggered with /user/username/projects/myproject/decls/FnS.d.ts.map 1:: WatchInfo: /user/username/projects/myproject/decls/FnS.d.ts.map 500 undefined WatchType: Closed Script info -Info 54 [16:02:17.000] Scheduled: /user/username/projects/myproject/main/tsconfig.json -Info 55 [16:02:18.000] Scheduled: *ensureProjectForOpenFiles* -Info 56 [16:02:19.000] Elapsed:: *ms FileWatcher:: Triggered with /user/username/projects/myproject/decls/FnS.d.ts.map 1:: WatchInfo: /user/username/projects/myproject/decls/FnS.d.ts.map 500 undefined WatchType: Closed Script info -Info 57 [16:02:20.000] request: +Info 53 [00:02:16.000] FileWatcher:: Triggered with /user/username/projects/myproject/decls/FnS.d.ts.map 1:: WatchInfo: /user/username/projects/myproject/decls/FnS.d.ts.map 500 undefined WatchType: Closed Script info +Info 54 [00:02:17.000] Scheduled: /user/username/projects/myproject/main/tsconfig.json +Info 55 [00:02:18.000] Scheduled: *ensureProjectForOpenFiles* +Info 56 [00:02:19.000] Elapsed:: *ms FileWatcher:: Triggered with /user/username/projects/myproject/decls/FnS.d.ts.map 1:: WatchInfo: /user/username/projects/myproject/decls/FnS.d.ts.map 500 undefined WatchType: Closed Script info +Info 57 [00:02:20.000] request: { "command": "definitionAndBoundSpan", "arguments": { @@ -591,8 +591,8 @@ FsWatchesRecursive:: /user/username/projects/myproject/random: {} -Info 58 [16:02:21.000] Starting updateGraphWorker: Project: /user/username/projects/myproject/main/tsconfig.json -Info 59 [16:02:22.000] Finishing updateGraphWorker: Project: /user/username/projects/myproject/main/tsconfig.json Version: 2 structureChanged: false structureIsReused:: Not Elapsed:: *ms +Info 58 [00:02:21.000] Starting updateGraphWorker: Project: /user/username/projects/myproject/main/tsconfig.json +Info 59 [00:02:22.000] Finishing updateGraphWorker: Project: /user/username/projects/myproject/main/tsconfig.json Version: 2 structureChanged: false structureIsReused:: Not Elapsed:: *ms After request PolledWatches:: @@ -629,7 +629,7 @@ FsWatchesRecursive:: /user/username/projects/myproject/random: {} -Info 60 [16:02:23.000] response: +Info 60 [00:02:23.000] response: { "response": { "definitions": [ @@ -666,7 +666,7 @@ Info 60 [16:02:23.000] response: }, "responseRequired": true } -Info 61 [16:02:24.000] request: +Info 61 [00:02:24.000] request: { "command": "definitionAndBoundSpan", "arguments": { @@ -749,7 +749,7 @@ FsWatchesRecursive:: /user/username/projects/myproject/random: {} -Info 62 [16:02:25.000] response: +Info 62 [00:02:25.000] response: { "response": { "definitions": [ @@ -786,7 +786,7 @@ Info 62 [16:02:25.000] response: }, "responseRequired": true } -Info 63 [16:02:26.000] request: +Info 63 [00:02:26.000] request: { "command": "definitionAndBoundSpan", "arguments": { @@ -869,7 +869,7 @@ FsWatchesRecursive:: /user/username/projects/myproject/random: {} -Info 64 [16:02:27.000] response: +Info 64 [00:02:27.000] response: { "response": { "definitions": [ @@ -906,7 +906,7 @@ Info 64 [16:02:27.000] response: }, "responseRequired": true } -Info 65 [16:02:28.000] request: +Info 65 [00:02:28.000] request: { "command": "definitionAndBoundSpan", "arguments": { @@ -989,7 +989,7 @@ FsWatchesRecursive:: /user/username/projects/myproject/random: {} -Info 66 [16:02:29.000] response: +Info 66 [00:02:29.000] response: { "response": { "definitions": [ @@ -1026,7 +1026,7 @@ Info 66 [16:02:29.000] response: }, "responseRequired": true } -Info 67 [16:02:30.000] request: +Info 67 [00:02:30.000] request: { "command": "definitionAndBoundSpan", "arguments": { @@ -1109,7 +1109,7 @@ FsWatchesRecursive:: /user/username/projects/myproject/random: {} -Info 68 [16:02:31.000] response: +Info 68 [00:02:31.000] response: { "response": { "definitions": [ 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 b2a9cfcd530e1..cf865f9fc32e0 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 @@ -1,5 +1,5 @@ -Info 0 [16:01:04.000] Provided types map file "/a/lib/typesMap.json" doesn't exist -Info 1 [16:01:05.000] request: +Info 0 [00:01:04.000] Provided types map file "/a/lib/typesMap.json" doesn't exist +Info 1 [00:01:05.000] request: { "seq": 0, "type": "request", @@ -197,11 +197,11 @@ FsWatches:: FsWatchesRecursive:: -Info 2 [16:01:06.000] Search path: /user/username/projects/myproject/main -Info 3 [16:01:07.000] For info: /user/username/projects/myproject/main/main.ts :: Config file name: /user/username/projects/myproject/main/tsconfig.json -Info 4 [16:01:08.000] Creating configuration project /user/username/projects/myproject/main/tsconfig.json -Info 5 [16:01:09.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/main/tsconfig.json 2000 undefined Project: /user/username/projects/myproject/main/tsconfig.json WatchType: Config file -Info 6 [16:01:10.000] Config: /user/username/projects/myproject/main/tsconfig.json : { +Info 2 [00:01:06.000] Search path: /user/username/projects/myproject/main +Info 3 [00:01:07.000] For info: /user/username/projects/myproject/main/main.ts :: Config file name: /user/username/projects/myproject/main/tsconfig.json +Info 4 [00:01:08.000] Creating configuration project /user/username/projects/myproject/main/tsconfig.json +Info 5 [00:01:09.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/main/tsconfig.json 2000 undefined Project: /user/username/projects/myproject/main/tsconfig.json WatchType: Config file +Info 6 [00:01:10.000] Config: /user/username/projects/myproject/main/tsconfig.json : { "rootNames": [ "/user/username/projects/myproject/main/main.ts" ], @@ -218,11 +218,11 @@ Info 6 [16:01:10.000] Config: /user/username/projects/myproject/main/tsconfig } ] } -Info 7 [16:01:11.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/main 1 undefined Config: /user/username/projects/myproject/main/tsconfig.json WatchType: Wild card directory -Info 8 [16:01:12.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/main 1 undefined Config: /user/username/projects/myproject/main/tsconfig.json WatchType: Wild card directory -Info 9 [16:01:13.000] Plugins were requested but not running in environment that supports 'require'. Nothing will be loaded -Info 10 [16:01:14.000] Starting updateGraphWorker: Project: /user/username/projects/myproject/main/tsconfig.json -Info 11 [16:01:15.000] Config: /user/username/projects/myproject/dependency/tsconfig.json : { +Info 7 [00:01:11.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/main 1 undefined Config: /user/username/projects/myproject/main/tsconfig.json WatchType: Wild card directory +Info 8 [00:01:12.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/main 1 undefined Config: /user/username/projects/myproject/main/tsconfig.json WatchType: Wild card directory +Info 9 [00:01:13.000] Plugins were requested but not running in environment that supports 'require'. Nothing will be loaded +Info 10 [00:01:14.000] Starting updateGraphWorker: Project: /user/username/projects/myproject/main/tsconfig.json +Info 11 [00:01:15.000] Config: /user/username/projects/myproject/dependency/tsconfig.json : { "rootNames": [ "/user/username/projects/myproject/dependency/FnS.ts" ], @@ -233,20 +233,20 @@ Info 11 [16:01:15.000] Config: /user/username/projects/myproject/dependency/ts "configFilePath": "/user/username/projects/myproject/dependency/tsconfig.json" } } -Info 12 [16:01:16.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/dependency/tsconfig.json 2000 undefined Project: /user/username/projects/myproject/main/tsconfig.json WatchType: Config file -Info 13 [16:01:17.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/dependency 1 undefined Config: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Wild card directory -Info 14 [16:01:18.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/dependency 1 undefined Config: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Wild card directory -Info 15 [16:01:19.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/decls 1 undefined Project: /user/username/projects/myproject/main/tsconfig.json WatchType: Failed Lookup Locations -Info 16 [16:01:20.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/decls 1 undefined Project: /user/username/projects/myproject/main/tsconfig.json WatchType: Failed Lookup Locations -Info 17 [16:01:21.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/decls/fns.d.ts 500 undefined WatchType: Closed Script info -Info 18 [16:01:22.000] FileWatcher:: Added:: WatchInfo: /a/lib/lib.d.ts 500 undefined WatchType: Closed Script info -Info 19 [16:01:23.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/main/node_modules/@types 1 undefined Project: /user/username/projects/myproject/main/tsconfig.json WatchType: Type roots -Info 20 [16:01:24.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/main/node_modules/@types 1 undefined Project: /user/username/projects/myproject/main/tsconfig.json WatchType: Type roots -Info 21 [16:01:25.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/main/tsconfig.json WatchType: Type roots -Info 22 [16:01:26.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/main/tsconfig.json WatchType: Type roots -Info 23 [16:01:27.000] Finishing updateGraphWorker: Project: /user/username/projects/myproject/main/tsconfig.json Version: 1 structureChanged: true structureIsReused:: Not Elapsed:: *ms -Info 24 [16:01:28.000] Project '/user/username/projects/myproject/main/tsconfig.json' (Configured) -Info 25 [16:01:29.000] Files (3) +Info 12 [00:01:16.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/dependency/tsconfig.json 2000 undefined Project: /user/username/projects/myproject/main/tsconfig.json WatchType: Config file +Info 13 [00:01:17.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/dependency 1 undefined Config: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Wild card directory +Info 14 [00:01:18.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/dependency 1 undefined Config: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Wild card directory +Info 15 [00:01:19.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/decls 1 undefined Project: /user/username/projects/myproject/main/tsconfig.json WatchType: Failed Lookup Locations +Info 16 [00:01:20.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/decls 1 undefined Project: /user/username/projects/myproject/main/tsconfig.json WatchType: Failed Lookup Locations +Info 17 [00:01:21.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/decls/fns.d.ts 500 undefined WatchType: Closed Script info +Info 18 [00:01:22.000] FileWatcher:: Added:: WatchInfo: /a/lib/lib.d.ts 500 undefined WatchType: Closed Script info +Info 19 [00:01:23.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/main/node_modules/@types 1 undefined Project: /user/username/projects/myproject/main/tsconfig.json WatchType: Type roots +Info 20 [00:01:24.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/main/node_modules/@types 1 undefined Project: /user/username/projects/myproject/main/tsconfig.json WatchType: Type roots +Info 21 [00:01:25.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/main/tsconfig.json WatchType: Type roots +Info 22 [00:01:26.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/main/tsconfig.json WatchType: Type roots +Info 23 [00:01:27.000] Finishing updateGraphWorker: Project: /user/username/projects/myproject/main/tsconfig.json Version: 1 structureChanged: true structureIsReused:: Not Elapsed:: *ms +Info 24 [00:01:28.000] Project '/user/username/projects/myproject/main/tsconfig.json' (Configured) +Info 25 [00:01:29.000] Files (3) /a/lib/lib.d.ts /user/username/projects/myproject/decls/fns.d.ts /user/username/projects/myproject/main/main.ts @@ -259,16 +259,16 @@ Info 25 [16:01:29.000] Files (3) main.ts Matched by default include pattern '**/*' -Info 26 [16:01:30.000] ----------------------------------------------- -Info 27 [16:01:31.000] Search path: /user/username/projects/myproject/main -Info 28 [16:01:32.000] For info: /user/username/projects/myproject/main/tsconfig.json :: No config files found. -Info 29 [16:01:33.000] Project '/user/username/projects/myproject/main/tsconfig.json' (Configured) -Info 29 [16:01:34.000] Files (3) +Info 26 [00:01:30.000] ----------------------------------------------- +Info 27 [00:01:31.000] Search path: /user/username/projects/myproject/main +Info 28 [00:01:32.000] For info: /user/username/projects/myproject/main/tsconfig.json :: No config files found. +Info 29 [00:01:33.000] Project '/user/username/projects/myproject/main/tsconfig.json' (Configured) +Info 29 [00:01:34.000] Files (3) -Info 29 [16:01:35.000] ----------------------------------------------- -Info 29 [16:01:36.000] Open files: -Info 29 [16:01:37.000] FileName: /user/username/projects/myproject/main/main.ts ProjectRootPath: undefined -Info 29 [16:01:38.000] Projects: /user/username/projects/myproject/main/tsconfig.json +Info 29 [00:01:35.000] ----------------------------------------------- +Info 29 [00:01:36.000] Open files: +Info 29 [00:01:37.000] FileName: /user/username/projects/myproject/main/main.ts ProjectRootPath: undefined +Info 29 [00:01:38.000] Projects: /user/username/projects/myproject/main/tsconfig.json After request PolledWatches:: @@ -295,11 +295,11 @@ FsWatchesRecursive:: /user/username/projects/myproject/decls: {} -Info 29 [16:01:39.000] response: +Info 29 [00:01:39.000] response: { "responseRequired": false } -Info 30 [16:01:40.000] request: +Info 30 [00:01:40.000] request: { "seq": 0, "type": "request", @@ -334,11 +334,11 @@ FsWatchesRecursive:: /user/username/projects/myproject/decls: {} -Info 31 [16:01:41.000] Search path: /user/username/projects/myproject/random -Info 32 [16:01:42.000] For info: /user/username/projects/myproject/random/random.ts :: Config file name: /user/username/projects/myproject/random/tsconfig.json -Info 33 [16:01:43.000] Creating configuration project /user/username/projects/myproject/random/tsconfig.json -Info 34 [16:01:44.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/random/tsconfig.json 2000 undefined Project: /user/username/projects/myproject/random/tsconfig.json WatchType: Config file -Info 35 [16:01:45.000] Config: /user/username/projects/myproject/random/tsconfig.json : { +Info 31 [00:01:41.000] Search path: /user/username/projects/myproject/random +Info 32 [00:01:42.000] For info: /user/username/projects/myproject/random/random.ts :: Config file name: /user/username/projects/myproject/random/tsconfig.json +Info 33 [00:01:43.000] Creating configuration project /user/username/projects/myproject/random/tsconfig.json +Info 34 [00:01:44.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/random/tsconfig.json 2000 undefined Project: /user/username/projects/myproject/random/tsconfig.json WatchType: Config file +Info 35 [00:01:45.000] Config: /user/username/projects/myproject/random/tsconfig.json : { "rootNames": [ "/user/username/projects/myproject/random/random.ts" ], @@ -346,17 +346,17 @@ Info 35 [16:01:45.000] Config: /user/username/projects/myproject/random/tsconf "configFilePath": "/user/username/projects/myproject/random/tsconfig.json" } } -Info 36 [16:01:46.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/random 1 undefined Config: /user/username/projects/myproject/random/tsconfig.json WatchType: Wild card directory -Info 37 [16:01:47.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/random 1 undefined Config: /user/username/projects/myproject/random/tsconfig.json WatchType: Wild card directory -Info 38 [16:01:48.000] Plugins were requested but not running in environment that supports 'require'. Nothing will be loaded -Info 39 [16:01:49.000] Starting updateGraphWorker: Project: /user/username/projects/myproject/random/tsconfig.json -Info 40 [16:01:50.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/random/node_modules/@types 1 undefined Project: /user/username/projects/myproject/random/tsconfig.json WatchType: Type roots -Info 41 [16:01:51.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/random/node_modules/@types 1 undefined Project: /user/username/projects/myproject/random/tsconfig.json WatchType: Type roots -Info 42 [16:01:52.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/random/tsconfig.json WatchType: Type roots -Info 43 [16:01:53.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/random/tsconfig.json WatchType: Type roots -Info 44 [16:01:54.000] Finishing updateGraphWorker: Project: /user/username/projects/myproject/random/tsconfig.json Version: 1 structureChanged: true structureIsReused:: Not Elapsed:: *ms -Info 45 [16:01:55.000] Project '/user/username/projects/myproject/random/tsconfig.json' (Configured) -Info 46 [16:01:56.000] Files (2) +Info 36 [00:01:46.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/random 1 undefined Config: /user/username/projects/myproject/random/tsconfig.json WatchType: Wild card directory +Info 37 [00:01:47.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/random 1 undefined Config: /user/username/projects/myproject/random/tsconfig.json WatchType: Wild card directory +Info 38 [00:01:48.000] Plugins were requested but not running in environment that supports 'require'. Nothing will be loaded +Info 39 [00:01:49.000] Starting updateGraphWorker: Project: /user/username/projects/myproject/random/tsconfig.json +Info 40 [00:01:50.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/random/node_modules/@types 1 undefined Project: /user/username/projects/myproject/random/tsconfig.json WatchType: Type roots +Info 41 [00:01:51.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/random/node_modules/@types 1 undefined Project: /user/username/projects/myproject/random/tsconfig.json WatchType: Type roots +Info 42 [00:01:52.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/random/tsconfig.json WatchType: Type roots +Info 43 [00:01:53.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/random/tsconfig.json WatchType: Type roots +Info 44 [00:01:54.000] Finishing updateGraphWorker: Project: /user/username/projects/myproject/random/tsconfig.json Version: 1 structureChanged: true structureIsReused:: Not Elapsed:: *ms +Info 45 [00:01:55.000] Project '/user/username/projects/myproject/random/tsconfig.json' (Configured) +Info 46 [00:01:56.000] Files (2) /a/lib/lib.d.ts /user/username/projects/myproject/random/random.ts @@ -366,20 +366,20 @@ Info 46 [16:01:56.000] Files (2) random.ts Matched by default include pattern '**/*' -Info 47 [16:01:57.000] ----------------------------------------------- -Info 48 [16:01:58.000] Project '/user/username/projects/myproject/main/tsconfig.json' (Configured) -Info 48 [16:01:59.000] Files (3) +Info 47 [00:01:57.000] ----------------------------------------------- +Info 48 [00:01:58.000] Project '/user/username/projects/myproject/main/tsconfig.json' (Configured) +Info 48 [00:01:59.000] Files (3) -Info 48 [16:02:00.000] ----------------------------------------------- -Info 48 [16:02:01.000] Project '/user/username/projects/myproject/random/tsconfig.json' (Configured) -Info 48 [16:02:02.000] Files (2) +Info 48 [00:02:00.000] ----------------------------------------------- +Info 48 [00:02:01.000] Project '/user/username/projects/myproject/random/tsconfig.json' (Configured) +Info 48 [00:02:02.000] Files (2) -Info 48 [16:02:03.000] ----------------------------------------------- -Info 48 [16:02:04.000] Open files: -Info 48 [16:02:05.000] FileName: /user/username/projects/myproject/main/main.ts ProjectRootPath: undefined -Info 48 [16:02:06.000] Projects: /user/username/projects/myproject/main/tsconfig.json -Info 48 [16:02:07.000] FileName: /user/username/projects/myproject/random/random.ts ProjectRootPath: undefined -Info 48 [16:02:08.000] Projects: /user/username/projects/myproject/random/tsconfig.json +Info 48 [00:02:03.000] ----------------------------------------------- +Info 48 [00:02:04.000] Open files: +Info 48 [00:02:05.000] FileName: /user/username/projects/myproject/main/main.ts ProjectRootPath: undefined +Info 48 [00:02:06.000] Projects: /user/username/projects/myproject/main/tsconfig.json +Info 48 [00:02:07.000] FileName: /user/username/projects/myproject/random/random.ts ProjectRootPath: undefined +Info 48 [00:02:08.000] Projects: /user/username/projects/myproject/random/tsconfig.json After request PolledWatches:: @@ -412,11 +412,11 @@ FsWatchesRecursive:: /user/username/projects/myproject/random: {} -Info 48 [16:02:09.000] response: +Info 48 [00:02:09.000] response: { "responseRequired": false } -Info 49 [16:02:10.000] request: +Info 49 [00:02:10.000] request: { "command": "definitionAndBoundSpan", "arguments": { @@ -459,7 +459,7 @@ FsWatchesRecursive:: /user/username/projects/myproject/random: {} -Info 50 [16:02:11.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/decls/FnS.d.ts.map 2000 undefined WatchType: Missing source map file +Info 50 [00:02:11.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/decls/FnS.d.ts.map 2000 undefined WatchType: Missing source map file After request PolledWatches:: @@ -494,7 +494,7 @@ FsWatchesRecursive:: /user/username/projects/myproject/random: {} -Info 51 [16:02:12.000] response: +Info 51 [00:02:12.000] response: { "response": { "definitions": [ @@ -531,14 +531,14 @@ Info 51 [16:02:12.000] response: }, "responseRequired": true } -Info 52 [16:02:15.000] FileWatcher:: Triggered with /user/username/projects/myproject/decls/FnS.d.ts.map 0:: WatchInfo: /user/username/projects/myproject/decls/FnS.d.ts.map 2000 undefined WatchType: Missing source map file -Info 53 [16:02:16.000] Scheduled: /user/username/projects/myproject/main/tsconfig.json -Info 54 [16:02:17.000] Scheduled: *ensureProjectForOpenFiles* -Info 55 [16:02:18.000] FileWatcher:: Close:: WatchInfo: /user/username/projects/myproject/decls/FnS.d.ts.map 2000 undefined WatchType: Missing source map file -Info 56 [16:02:19.000] Elapsed:: *ms FileWatcher:: Triggered with /user/username/projects/myproject/decls/FnS.d.ts.map 0:: WatchInfo: /user/username/projects/myproject/decls/FnS.d.ts.map 2000 undefined WatchType: Missing source map file -Info 57 [16:02:20.000] DirectoryWatcher:: Triggered with /user/username/projects/myproject/decls/FnS.d.ts.map :: WatchInfo: /user/username/projects/myproject/decls 1 undefined Project: /user/username/projects/myproject/main/tsconfig.json WatchType: Failed Lookup Locations -Info 58 [16:02:21.000] Elapsed:: *ms DirectoryWatcher:: Triggered with /user/username/projects/myproject/decls/FnS.d.ts.map :: WatchInfo: /user/username/projects/myproject/decls 1 undefined Project: /user/username/projects/myproject/main/tsconfig.json WatchType: Failed Lookup Locations -Info 59 [16:02:22.000] request: +Info 52 [00:02:15.000] FileWatcher:: Triggered with /user/username/projects/myproject/decls/FnS.d.ts.map 0:: WatchInfo: /user/username/projects/myproject/decls/FnS.d.ts.map 2000 undefined WatchType: Missing source map file +Info 53 [00:02:16.000] Scheduled: /user/username/projects/myproject/main/tsconfig.json +Info 54 [00:02:17.000] Scheduled: *ensureProjectForOpenFiles* +Info 55 [00:02:18.000] FileWatcher:: Close:: WatchInfo: /user/username/projects/myproject/decls/FnS.d.ts.map 2000 undefined WatchType: Missing source map file +Info 56 [00:02:19.000] Elapsed:: *ms FileWatcher:: Triggered with /user/username/projects/myproject/decls/FnS.d.ts.map 0:: WatchInfo: /user/username/projects/myproject/decls/FnS.d.ts.map 2000 undefined WatchType: Missing source map file +Info 57 [00:02:20.000] DirectoryWatcher:: Triggered with /user/username/projects/myproject/decls/FnS.d.ts.map :: WatchInfo: /user/username/projects/myproject/decls 1 undefined Project: /user/username/projects/myproject/main/tsconfig.json WatchType: Failed Lookup Locations +Info 58 [00:02:21.000] Elapsed:: *ms DirectoryWatcher:: Triggered with /user/username/projects/myproject/decls/FnS.d.ts.map :: WatchInfo: /user/username/projects/myproject/decls 1 undefined Project: /user/username/projects/myproject/main/tsconfig.json WatchType: Failed Lookup Locations +Info 59 [00:02:22.000] request: { "command": "definitionAndBoundSpan", "arguments": { @@ -584,10 +584,10 @@ FsWatchesRecursive:: /user/username/projects/myproject/random: {} -Info 60 [16:02:23.000] Starting updateGraphWorker: Project: /user/username/projects/myproject/main/tsconfig.json -Info 61 [16:02:24.000] Finishing updateGraphWorker: Project: /user/username/projects/myproject/main/tsconfig.json Version: 2 structureChanged: false structureIsReused:: Not Elapsed:: *ms -Info 62 [16:02:25.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/decls/FnS.d.ts.map 500 undefined WatchType: Closed Script info -Info 63 [16:02:26.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/dependency/FnS.ts 500 undefined WatchType: Closed Script info +Info 60 [00:02:23.000] Starting updateGraphWorker: Project: /user/username/projects/myproject/main/tsconfig.json +Info 61 [00:02:24.000] Finishing updateGraphWorker: Project: /user/username/projects/myproject/main/tsconfig.json Version: 2 structureChanged: false structureIsReused:: Not Elapsed:: *ms +Info 62 [00:02:25.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/decls/FnS.d.ts.map 500 undefined WatchType: Closed Script info +Info 63 [00:02:26.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/dependency/FnS.ts 500 undefined WatchType: Closed Script info After request PolledWatches:: @@ -624,7 +624,7 @@ FsWatchesRecursive:: /user/username/projects/myproject/random: {} -Info 64 [16:02:27.000] response: +Info 64 [00:02:27.000] response: { "response": { "definitions": [ @@ -661,7 +661,7 @@ Info 64 [16:02:27.000] response: }, "responseRequired": true } -Info 65 [16:02:28.000] request: +Info 65 [00:02:28.000] request: { "command": "definitionAndBoundSpan", "arguments": { @@ -744,7 +744,7 @@ FsWatchesRecursive:: /user/username/projects/myproject/random: {} -Info 66 [16:02:29.000] response: +Info 66 [00:02:29.000] response: { "response": { "definitions": [ @@ -781,7 +781,7 @@ Info 66 [16:02:29.000] response: }, "responseRequired": true } -Info 67 [16:02:30.000] request: +Info 67 [00:02:30.000] request: { "command": "definitionAndBoundSpan", "arguments": { @@ -864,7 +864,7 @@ FsWatchesRecursive:: /user/username/projects/myproject/random: {} -Info 68 [16:02:31.000] response: +Info 68 [00:02:31.000] response: { "response": { "definitions": [ @@ -901,7 +901,7 @@ Info 68 [16:02:31.000] response: }, "responseRequired": true } -Info 69 [16:02:32.000] request: +Info 69 [00:02:32.000] request: { "command": "definitionAndBoundSpan", "arguments": { @@ -984,7 +984,7 @@ FsWatchesRecursive:: /user/username/projects/myproject/random: {} -Info 70 [16:02:33.000] response: +Info 70 [00:02:33.000] response: { "response": { "definitions": [ @@ -1021,7 +1021,7 @@ Info 70 [16:02:33.000] response: }, "responseRequired": true } -Info 71 [16:02:34.000] request: +Info 71 [00:02:34.000] request: { "command": "definitionAndBoundSpan", "arguments": { @@ -1104,7 +1104,7 @@ FsWatchesRecursive:: /user/username/projects/myproject/random: {} -Info 72 [16:02:35.000] response: +Info 72 [00:02:35.000] response: { "response": { "definitions": [ @@ -1141,7 +1141,7 @@ Info 72 [16:02:35.000] response: }, "responseRequired": true } -Info 73 [16:02:36.000] request: +Info 73 [00:02:36.000] request: { "seq": 0, "type": "request", @@ -1186,18 +1186,18 @@ FsWatchesRecursive:: /user/username/projects/myproject/random: {} -Info 74 [16:02:37.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/random/random.ts 500 undefined WatchType: Closed Script info -Info 75 [16:02:38.000] Project '/user/username/projects/myproject/main/tsconfig.json' (Configured) -Info 75 [16:02:39.000] Files (3) +Info 74 [00:02:37.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/random/random.ts 500 undefined WatchType: Closed Script info +Info 75 [00:02:38.000] Project '/user/username/projects/myproject/main/tsconfig.json' (Configured) +Info 75 [00:02:39.000] Files (3) -Info 75 [16:02:40.000] ----------------------------------------------- -Info 75 [16:02:41.000] Project '/user/username/projects/myproject/random/tsconfig.json' (Configured) -Info 75 [16:02:42.000] Files (2) +Info 75 [00:02:40.000] ----------------------------------------------- +Info 75 [00:02:41.000] Project '/user/username/projects/myproject/random/tsconfig.json' (Configured) +Info 75 [00:02:42.000] Files (2) -Info 75 [16:02:43.000] ----------------------------------------------- -Info 75 [16:02:44.000] Open files: -Info 75 [16:02:45.000] FileName: /user/username/projects/myproject/main/main.ts ProjectRootPath: undefined -Info 75 [16:02:46.000] Projects: /user/username/projects/myproject/main/tsconfig.json +Info 75 [00:02:43.000] ----------------------------------------------- +Info 75 [00:02:44.000] Open files: +Info 75 [00:02:45.000] FileName: /user/username/projects/myproject/main/main.ts ProjectRootPath: undefined +Info 75 [00:02:46.000] Projects: /user/username/projects/myproject/main/tsconfig.json After request PolledWatches:: @@ -1236,11 +1236,11 @@ FsWatchesRecursive:: /user/username/projects/myproject/random: {} -Info 75 [16:02:47.000] response: +Info 75 [00:02:47.000] response: { "responseRequired": false } -Info 76 [16:02:48.000] request: +Info 76 [00:02:48.000] request: { "seq": 0, "type": "request", @@ -1287,22 +1287,22 @@ FsWatchesRecursive:: /user/username/projects/myproject/random: {} -Info 77 [16:02:49.000] FileWatcher:: Close:: WatchInfo: /user/username/projects/myproject/random/random.ts 500 undefined WatchType: Closed Script info -Info 78 [16:02:50.000] Search path: /user/username/projects/myproject/random -Info 79 [16:02:51.000] For info: /user/username/projects/myproject/random/random.ts :: Config file name: /user/username/projects/myproject/random/tsconfig.json -Info 80 [16:02:52.000] Project '/user/username/projects/myproject/main/tsconfig.json' (Configured) -Info 80 [16:02:53.000] Files (3) +Info 77 [00:02:49.000] FileWatcher:: Close:: WatchInfo: /user/username/projects/myproject/random/random.ts 500 undefined WatchType: Closed Script info +Info 78 [00:02:50.000] Search path: /user/username/projects/myproject/random +Info 79 [00:02:51.000] For info: /user/username/projects/myproject/random/random.ts :: Config file name: /user/username/projects/myproject/random/tsconfig.json +Info 80 [00:02:52.000] Project '/user/username/projects/myproject/main/tsconfig.json' (Configured) +Info 80 [00:02:53.000] Files (3) -Info 80 [16:02:54.000] ----------------------------------------------- -Info 80 [16:02:55.000] Project '/user/username/projects/myproject/random/tsconfig.json' (Configured) -Info 80 [16:02:56.000] Files (2) +Info 80 [00:02:54.000] ----------------------------------------------- +Info 80 [00:02:55.000] Project '/user/username/projects/myproject/random/tsconfig.json' (Configured) +Info 80 [00:02:56.000] Files (2) -Info 80 [16:02:57.000] ----------------------------------------------- -Info 80 [16:02:58.000] Open files: -Info 80 [16:02:59.000] FileName: /user/username/projects/myproject/main/main.ts ProjectRootPath: undefined -Info 80 [16:03:00.000] Projects: /user/username/projects/myproject/main/tsconfig.json -Info 80 [16:03:01.000] FileName: /user/username/projects/myproject/random/random.ts ProjectRootPath: undefined -Info 80 [16:03:02.000] Projects: /user/username/projects/myproject/random/tsconfig.json +Info 80 [00:02:57.000] ----------------------------------------------- +Info 80 [00:02:58.000] Open files: +Info 80 [00:02:59.000] FileName: /user/username/projects/myproject/main/main.ts ProjectRootPath: undefined +Info 80 [00:03:00.000] Projects: /user/username/projects/myproject/main/tsconfig.json +Info 80 [00:03:01.000] FileName: /user/username/projects/myproject/random/random.ts ProjectRootPath: undefined +Info 80 [00:03:02.000] Projects: /user/username/projects/myproject/random/tsconfig.json After request PolledWatches:: @@ -1339,11 +1339,11 @@ FsWatchesRecursive:: /user/username/projects/myproject/random: {} -Info 80 [16:03:03.000] response: +Info 80 [00:03:03.000] response: { "responseRequired": false } -Info 81 [16:03:04.000] request: +Info 81 [00:03:04.000] request: { "seq": 0, "type": "request", @@ -1388,18 +1388,18 @@ FsWatchesRecursive:: /user/username/projects/myproject/random: {} -Info 82 [16:03:05.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/main/main.ts 500 undefined WatchType: Closed Script info -Info 83 [16:03:06.000] Project '/user/username/projects/myproject/main/tsconfig.json' (Configured) -Info 83 [16:03:07.000] Files (3) +Info 82 [00:03:05.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/main/main.ts 500 undefined WatchType: Closed Script info +Info 83 [00:03:06.000] Project '/user/username/projects/myproject/main/tsconfig.json' (Configured) +Info 83 [00:03:07.000] Files (3) -Info 83 [16:03:08.000] ----------------------------------------------- -Info 83 [16:03:09.000] Project '/user/username/projects/myproject/random/tsconfig.json' (Configured) -Info 83 [16:03:10.000] Files (2) +Info 83 [00:03:08.000] ----------------------------------------------- +Info 83 [00:03:09.000] Project '/user/username/projects/myproject/random/tsconfig.json' (Configured) +Info 83 [00:03:10.000] Files (2) -Info 83 [16:03:11.000] ----------------------------------------------- -Info 83 [16:03:12.000] Open files: -Info 83 [16:03:13.000] FileName: /user/username/projects/myproject/random/random.ts ProjectRootPath: undefined -Info 83 [16:03:14.000] Projects: /user/username/projects/myproject/random/tsconfig.json +Info 83 [00:03:11.000] ----------------------------------------------- +Info 83 [00:03:12.000] Open files: +Info 83 [00:03:13.000] FileName: /user/username/projects/myproject/random/random.ts ProjectRootPath: undefined +Info 83 [00:03:14.000] Projects: /user/username/projects/myproject/random/tsconfig.json After request PolledWatches:: @@ -1438,11 +1438,11 @@ FsWatchesRecursive:: /user/username/projects/myproject/random: {} -Info 83 [16:03:15.000] response: +Info 83 [00:03:15.000] response: { "responseRequired": false } -Info 84 [16:03:16.000] request: +Info 84 [00:03:16.000] request: { "seq": 0, "type": "request", @@ -1489,16 +1489,16 @@ FsWatchesRecursive:: /user/username/projects/myproject/random: {} -Info 85 [16:03:17.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/random/random.ts 500 undefined WatchType: Closed Script info -Info 86 [16:03:18.000] Project '/user/username/projects/myproject/main/tsconfig.json' (Configured) -Info 86 [16:03:19.000] Files (3) +Info 85 [00:03:17.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/random/random.ts 500 undefined WatchType: Closed Script info +Info 86 [00:03:18.000] Project '/user/username/projects/myproject/main/tsconfig.json' (Configured) +Info 86 [00:03:19.000] Files (3) -Info 86 [16:03:20.000] ----------------------------------------------- -Info 86 [16:03:21.000] Project '/user/username/projects/myproject/random/tsconfig.json' (Configured) -Info 86 [16:03:22.000] Files (2) +Info 86 [00:03:20.000] ----------------------------------------------- +Info 86 [00:03:21.000] Project '/user/username/projects/myproject/random/tsconfig.json' (Configured) +Info 86 [00:03:22.000] Files (2) -Info 86 [16:03:23.000] ----------------------------------------------- -Info 86 [16:03:24.000] Open files: +Info 86 [00:03:23.000] ----------------------------------------------- +Info 86 [00:03:24.000] Open files: After request PolledWatches:: @@ -1539,11 +1539,11 @@ FsWatchesRecursive:: /user/username/projects/myproject/random: {} -Info 86 [16:03:25.000] response: +Info 86 [00:03:25.000] response: { "responseRequired": false } -Info 87 [16:03:26.000] request: +Info 87 [00:03:26.000] request: { "seq": 0, "type": "request", @@ -1592,12 +1592,12 @@ FsWatchesRecursive:: /user/username/projects/myproject/random: {} -Info 88 [16:03:27.000] FileWatcher:: Close:: WatchInfo: /user/username/projects/myproject/random/random.ts 500 undefined WatchType: Closed Script info -Info 89 [16:03:28.000] Search path: /user/username/projects/myproject/random -Info 90 [16:03:29.000] For info: /user/username/projects/myproject/random/random.ts :: Config file name: /user/username/projects/myproject/random/tsconfig.json -Info 91 [16:03:30.000] `remove Project:: -Info 92 [16:03:31.000] Project '/user/username/projects/myproject/main/tsconfig.json' (Configured) -Info 93 [16:03:32.000] Files (3) +Info 88 [00:03:27.000] FileWatcher:: Close:: WatchInfo: /user/username/projects/myproject/random/random.ts 500 undefined WatchType: Closed Script info +Info 89 [00:03:28.000] Search path: /user/username/projects/myproject/random +Info 90 [00:03:29.000] For info: /user/username/projects/myproject/random/random.ts :: Config file name: /user/username/projects/myproject/random/tsconfig.json +Info 91 [00:03:30.000] `remove Project:: +Info 92 [00:03:31.000] Project '/user/username/projects/myproject/main/tsconfig.json' (Configured) +Info 93 [00:03:32.000] Files (3) /a/lib/lib.d.ts /user/username/projects/myproject/decls/fns.d.ts /user/username/projects/myproject/main/main.ts @@ -1610,30 +1610,30 @@ Info 93 [16:03:32.000] Files (3) main.ts Matched by default include pattern '**/*' -Info 94 [16:03:33.000] ----------------------------------------------- -Info 95 [16:03:34.000] DirectoryWatcher:: Close:: WatchInfo: /user/username/projects/myproject/main 1 undefined Config: /user/username/projects/myproject/main/tsconfig.json WatchType: Wild card directory -Info 96 [16:03:35.000] 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 97 [16:03:36.000] FileWatcher:: Close:: WatchInfo: /user/username/projects/myproject/main/tsconfig.json 2000 undefined Project: /user/username/projects/myproject/main/tsconfig.json WatchType: Config file -Info 98 [16:03:37.000] DirectoryWatcher:: Close:: WatchInfo: /user/username/projects/myproject/dependency 1 undefined Config: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Wild card directory -Info 99 [16:03:38.000] 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 100 [16:03:39.000] FileWatcher:: Close:: WatchInfo: /user/username/projects/myproject/dependency/tsconfig.json 2000 undefined Project: /user/username/projects/myproject/main/tsconfig.json WatchType: Config file -Info 101 [16:03:40.000] DirectoryWatcher:: Close:: WatchInfo: /user/username/projects/myproject/decls 1 undefined Project: /user/username/projects/myproject/main/tsconfig.json WatchType: Failed Lookup Locations -Info 102 [16:03:41.000] 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 103 [16:03:42.000] 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 104 [16:03:43.000] 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 105 [16:03:44.000] DirectoryWatcher:: Close:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/main/tsconfig.json WatchType: Type roots -Info 106 [16:03:45.000] 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 107 [16:03:46.000] FileWatcher:: Close:: WatchInfo: /user/username/projects/myproject/main/main.ts 500 undefined WatchType: Closed Script info -Info 108 [16:03:47.000] FileWatcher:: Close:: WatchInfo: /user/username/projects/myproject/decls/fns.d.ts 500 undefined WatchType: Closed Script info -Info 109 [16:03:48.000] FileWatcher:: Close:: WatchInfo: /user/username/projects/myproject/decls/FnS.d.ts.map 500 undefined WatchType: Closed Script info -Info 110 [16:03:49.000] FileWatcher:: Close:: WatchInfo: /user/username/projects/myproject/dependency/FnS.ts 500 undefined WatchType: Closed Script info -Info 111 [16:03:50.000] Project '/user/username/projects/myproject/random/tsconfig.json' (Configured) -Info 111 [16:03:51.000] Files (2) - -Info 111 [16:03:52.000] ----------------------------------------------- -Info 111 [16:03:53.000] Open files: -Info 111 [16:03:54.000] FileName: /user/username/projects/myproject/random/random.ts ProjectRootPath: undefined -Info 111 [16:03:55.000] Projects: /user/username/projects/myproject/random/tsconfig.json +Info 94 [00:03:33.000] ----------------------------------------------- +Info 95 [00:03:34.000] DirectoryWatcher:: Close:: WatchInfo: /user/username/projects/myproject/main 1 undefined Config: /user/username/projects/myproject/main/tsconfig.json WatchType: Wild card directory +Info 96 [00:03:35.000] 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 97 [00:03:36.000] FileWatcher:: Close:: WatchInfo: /user/username/projects/myproject/main/tsconfig.json 2000 undefined Project: /user/username/projects/myproject/main/tsconfig.json WatchType: Config file +Info 98 [00:03:37.000] DirectoryWatcher:: Close:: WatchInfo: /user/username/projects/myproject/dependency 1 undefined Config: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Wild card directory +Info 99 [00:03:38.000] 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 100 [00:03:39.000] FileWatcher:: Close:: WatchInfo: /user/username/projects/myproject/dependency/tsconfig.json 2000 undefined Project: /user/username/projects/myproject/main/tsconfig.json WatchType: Config file +Info 101 [00:03:40.000] DirectoryWatcher:: Close:: WatchInfo: /user/username/projects/myproject/decls 1 undefined Project: /user/username/projects/myproject/main/tsconfig.json WatchType: Failed Lookup Locations +Info 102 [00:03:41.000] 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 103 [00:03:42.000] 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 104 [00:03:43.000] 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 105 [00:03:44.000] DirectoryWatcher:: Close:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/main/tsconfig.json WatchType: Type roots +Info 106 [00:03:45.000] 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 107 [00:03:46.000] FileWatcher:: Close:: WatchInfo: /user/username/projects/myproject/main/main.ts 500 undefined WatchType: Closed Script info +Info 108 [00:03:47.000] FileWatcher:: Close:: WatchInfo: /user/username/projects/myproject/decls/fns.d.ts 500 undefined WatchType: Closed Script info +Info 109 [00:03:48.000] FileWatcher:: Close:: WatchInfo: /user/username/projects/myproject/decls/FnS.d.ts.map 500 undefined WatchType: Closed Script info +Info 110 [00:03:49.000] FileWatcher:: Close:: WatchInfo: /user/username/projects/myproject/dependency/FnS.ts 500 undefined WatchType: Closed Script info +Info 111 [00:03:50.000] Project '/user/username/projects/myproject/random/tsconfig.json' (Configured) +Info 111 [00:03:51.000] Files (2) + +Info 111 [00:03:52.000] ----------------------------------------------- +Info 111 [00:03:53.000] Open files: +Info 111 [00:03:54.000] FileName: /user/username/projects/myproject/random/random.ts ProjectRootPath: undefined +Info 111 [00:03:55.000] Projects: /user/username/projects/myproject/random/tsconfig.json After request PolledWatches:: @@ -1652,7 +1652,7 @@ FsWatchesRecursive:: /user/username/projects/myproject/random: {} -Info 111 [16:03:56.000] response: +Info 111 [00:03:56.000] response: { "responseRequired": false } \ No newline at end of file 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 038a8ffe086dd..e5536480b8ed5 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 @@ -1,5 +1,5 @@ -Info 0 [16:01:03.000] Provided types map file "/a/lib/typesMap.json" doesn't exist -Info 1 [16:01:04.000] request: +Info 0 [00:01:03.000] Provided types map file "/a/lib/typesMap.json" doesn't exist +Info 1 [00:01:04.000] request: { "seq": 0, "type": "request", @@ -200,11 +200,11 @@ FsWatches:: FsWatchesRecursive:: -Info 2 [16:01:05.000] Search path: /user/username/projects/myproject/main -Info 3 [16:01:06.000] For info: /user/username/projects/myproject/main/main.ts :: Config file name: /user/username/projects/myproject/main/tsconfig.json -Info 4 [16:01:07.000] Creating configuration project /user/username/projects/myproject/main/tsconfig.json -Info 5 [16:01:08.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/main/tsconfig.json 2000 undefined Project: /user/username/projects/myproject/main/tsconfig.json WatchType: Config file -Info 6 [16:01:09.000] Config: /user/username/projects/myproject/main/tsconfig.json : { +Info 2 [00:01:05.000] Search path: /user/username/projects/myproject/main +Info 3 [00:01:06.000] For info: /user/username/projects/myproject/main/main.ts :: Config file name: /user/username/projects/myproject/main/tsconfig.json +Info 4 [00:01:07.000] Creating configuration project /user/username/projects/myproject/main/tsconfig.json +Info 5 [00:01:08.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/main/tsconfig.json 2000 undefined Project: /user/username/projects/myproject/main/tsconfig.json WatchType: Config file +Info 6 [00:01:09.000] Config: /user/username/projects/myproject/main/tsconfig.json : { "rootNames": [ "/user/username/projects/myproject/main/main.ts" ], @@ -221,11 +221,11 @@ Info 6 [16:01:09.000] Config: /user/username/projects/myproject/main/tsconfig } ] } -Info 7 [16:01:10.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/main 1 undefined Config: /user/username/projects/myproject/main/tsconfig.json WatchType: Wild card directory -Info 8 [16:01:11.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/main 1 undefined Config: /user/username/projects/myproject/main/tsconfig.json WatchType: Wild card directory -Info 9 [16:01:12.000] Plugins were requested but not running in environment that supports 'require'. Nothing will be loaded -Info 10 [16:01:13.000] Starting updateGraphWorker: Project: /user/username/projects/myproject/main/tsconfig.json -Info 11 [16:01:14.000] Config: /user/username/projects/myproject/dependency/tsconfig.json : { +Info 7 [00:01:10.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/main 1 undefined Config: /user/username/projects/myproject/main/tsconfig.json WatchType: Wild card directory +Info 8 [00:01:11.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/main 1 undefined Config: /user/username/projects/myproject/main/tsconfig.json WatchType: Wild card directory +Info 9 [00:01:12.000] Plugins were requested but not running in environment that supports 'require'. Nothing will be loaded +Info 10 [00:01:13.000] Starting updateGraphWorker: Project: /user/username/projects/myproject/main/tsconfig.json +Info 11 [00:01:14.000] Config: /user/username/projects/myproject/dependency/tsconfig.json : { "rootNames": [ "/user/username/projects/myproject/dependency/FnS.ts" ], @@ -236,20 +236,20 @@ Info 11 [16:01:14.000] Config: /user/username/projects/myproject/dependency/ts "configFilePath": "/user/username/projects/myproject/dependency/tsconfig.json" } } -Info 12 [16:01:15.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/dependency/tsconfig.json 2000 undefined Project: /user/username/projects/myproject/main/tsconfig.json WatchType: Config file -Info 13 [16:01:16.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/dependency 1 undefined Config: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Wild card directory -Info 14 [16:01:17.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/dependency 1 undefined Config: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Wild card directory -Info 15 [16:01:18.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/decls 1 undefined Project: /user/username/projects/myproject/main/tsconfig.json WatchType: Failed Lookup Locations -Info 16 [16:01:19.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/decls 1 undefined Project: /user/username/projects/myproject/main/tsconfig.json WatchType: Failed Lookup Locations -Info 17 [16:01:20.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/decls/fns.d.ts 500 undefined WatchType: Closed Script info -Info 18 [16:01:21.000] FileWatcher:: Added:: WatchInfo: /a/lib/lib.d.ts 500 undefined WatchType: Closed Script info -Info 19 [16:01:22.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/main/node_modules/@types 1 undefined Project: /user/username/projects/myproject/main/tsconfig.json WatchType: Type roots -Info 20 [16:01:23.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/main/node_modules/@types 1 undefined Project: /user/username/projects/myproject/main/tsconfig.json WatchType: Type roots -Info 21 [16:01:24.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/main/tsconfig.json WatchType: Type roots -Info 22 [16:01:25.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/main/tsconfig.json WatchType: Type roots -Info 23 [16:01:26.000] Finishing updateGraphWorker: Project: /user/username/projects/myproject/main/tsconfig.json Version: 1 structureChanged: true structureIsReused:: Not Elapsed:: *ms -Info 24 [16:01:27.000] Project '/user/username/projects/myproject/main/tsconfig.json' (Configured) -Info 25 [16:01:28.000] Files (3) +Info 12 [00:01:15.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/dependency/tsconfig.json 2000 undefined Project: /user/username/projects/myproject/main/tsconfig.json WatchType: Config file +Info 13 [00:01:16.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/dependency 1 undefined Config: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Wild card directory +Info 14 [00:01:17.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/dependency 1 undefined Config: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Wild card directory +Info 15 [00:01:18.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/decls 1 undefined Project: /user/username/projects/myproject/main/tsconfig.json WatchType: Failed Lookup Locations +Info 16 [00:01:19.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/decls 1 undefined Project: /user/username/projects/myproject/main/tsconfig.json WatchType: Failed Lookup Locations +Info 17 [00:01:20.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/decls/fns.d.ts 500 undefined WatchType: Closed Script info +Info 18 [00:01:21.000] FileWatcher:: Added:: WatchInfo: /a/lib/lib.d.ts 500 undefined WatchType: Closed Script info +Info 19 [00:01:22.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/main/node_modules/@types 1 undefined Project: /user/username/projects/myproject/main/tsconfig.json WatchType: Type roots +Info 20 [00:01:23.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/main/node_modules/@types 1 undefined Project: /user/username/projects/myproject/main/tsconfig.json WatchType: Type roots +Info 21 [00:01:24.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/main/tsconfig.json WatchType: Type roots +Info 22 [00:01:25.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/main/tsconfig.json WatchType: Type roots +Info 23 [00:01:26.000] Finishing updateGraphWorker: Project: /user/username/projects/myproject/main/tsconfig.json Version: 1 structureChanged: true structureIsReused:: Not Elapsed:: *ms +Info 24 [00:01:27.000] Project '/user/username/projects/myproject/main/tsconfig.json' (Configured) +Info 25 [00:01:28.000] Files (3) /a/lib/lib.d.ts /user/username/projects/myproject/decls/fns.d.ts /user/username/projects/myproject/main/main.ts @@ -262,16 +262,16 @@ Info 25 [16:01:28.000] Files (3) main.ts Matched by default include pattern '**/*' -Info 26 [16:01:29.000] ----------------------------------------------- -Info 27 [16:01:30.000] Search path: /user/username/projects/myproject/main -Info 28 [16:01:31.000] For info: /user/username/projects/myproject/main/tsconfig.json :: No config files found. -Info 29 [16:01:32.000] Project '/user/username/projects/myproject/main/tsconfig.json' (Configured) -Info 29 [16:01:33.000] Files (3) +Info 26 [00:01:29.000] ----------------------------------------------- +Info 27 [00:01:30.000] Search path: /user/username/projects/myproject/main +Info 28 [00:01:31.000] For info: /user/username/projects/myproject/main/tsconfig.json :: No config files found. +Info 29 [00:01:32.000] Project '/user/username/projects/myproject/main/tsconfig.json' (Configured) +Info 29 [00:01:33.000] Files (3) -Info 29 [16:01:34.000] ----------------------------------------------- -Info 29 [16:01:35.000] Open files: -Info 29 [16:01:36.000] FileName: /user/username/projects/myproject/main/main.ts ProjectRootPath: undefined -Info 29 [16:01:37.000] Projects: /user/username/projects/myproject/main/tsconfig.json +Info 29 [00:01:34.000] ----------------------------------------------- +Info 29 [00:01:35.000] Open files: +Info 29 [00:01:36.000] FileName: /user/username/projects/myproject/main/main.ts ProjectRootPath: undefined +Info 29 [00:01:37.000] Projects: /user/username/projects/myproject/main/tsconfig.json After request PolledWatches:: @@ -298,11 +298,11 @@ FsWatchesRecursive:: /user/username/projects/myproject/decls: {} -Info 29 [16:01:38.000] response: +Info 29 [00:01:38.000] response: { "responseRequired": false } -Info 30 [16:01:39.000] request: +Info 30 [00:01:39.000] request: { "seq": 0, "type": "request", @@ -337,11 +337,11 @@ FsWatchesRecursive:: /user/username/projects/myproject/decls: {} -Info 31 [16:01:40.000] Search path: /user/username/projects/myproject/random -Info 32 [16:01:41.000] For info: /user/username/projects/myproject/random/random.ts :: Config file name: /user/username/projects/myproject/random/tsconfig.json -Info 33 [16:01:42.000] Creating configuration project /user/username/projects/myproject/random/tsconfig.json -Info 34 [16:01:43.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/random/tsconfig.json 2000 undefined Project: /user/username/projects/myproject/random/tsconfig.json WatchType: Config file -Info 35 [16:01:44.000] Config: /user/username/projects/myproject/random/tsconfig.json : { +Info 31 [00:01:40.000] Search path: /user/username/projects/myproject/random +Info 32 [00:01:41.000] For info: /user/username/projects/myproject/random/random.ts :: Config file name: /user/username/projects/myproject/random/tsconfig.json +Info 33 [00:01:42.000] Creating configuration project /user/username/projects/myproject/random/tsconfig.json +Info 34 [00:01:43.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/random/tsconfig.json 2000 undefined Project: /user/username/projects/myproject/random/tsconfig.json WatchType: Config file +Info 35 [00:01:44.000] Config: /user/username/projects/myproject/random/tsconfig.json : { "rootNames": [ "/user/username/projects/myproject/random/random.ts" ], @@ -349,17 +349,17 @@ Info 35 [16:01:44.000] Config: /user/username/projects/myproject/random/tsconf "configFilePath": "/user/username/projects/myproject/random/tsconfig.json" } } -Info 36 [16:01:45.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/random 1 undefined Config: /user/username/projects/myproject/random/tsconfig.json WatchType: Wild card directory -Info 37 [16:01:46.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/random 1 undefined Config: /user/username/projects/myproject/random/tsconfig.json WatchType: Wild card directory -Info 38 [16:01:47.000] Plugins were requested but not running in environment that supports 'require'. Nothing will be loaded -Info 39 [16:01:48.000] Starting updateGraphWorker: Project: /user/username/projects/myproject/random/tsconfig.json -Info 40 [16:01:49.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/random/node_modules/@types 1 undefined Project: /user/username/projects/myproject/random/tsconfig.json WatchType: Type roots -Info 41 [16:01:50.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/random/node_modules/@types 1 undefined Project: /user/username/projects/myproject/random/tsconfig.json WatchType: Type roots -Info 42 [16:01:51.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/random/tsconfig.json WatchType: Type roots -Info 43 [16:01:52.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/random/tsconfig.json WatchType: Type roots -Info 44 [16:01:53.000] Finishing updateGraphWorker: Project: /user/username/projects/myproject/random/tsconfig.json Version: 1 structureChanged: true structureIsReused:: Not Elapsed:: *ms -Info 45 [16:01:54.000] Project '/user/username/projects/myproject/random/tsconfig.json' (Configured) -Info 46 [16:01:55.000] Files (2) +Info 36 [00:01:45.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/random 1 undefined Config: /user/username/projects/myproject/random/tsconfig.json WatchType: Wild card directory +Info 37 [00:01:46.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/random 1 undefined Config: /user/username/projects/myproject/random/tsconfig.json WatchType: Wild card directory +Info 38 [00:01:47.000] Plugins were requested but not running in environment that supports 'require'. Nothing will be loaded +Info 39 [00:01:48.000] Starting updateGraphWorker: Project: /user/username/projects/myproject/random/tsconfig.json +Info 40 [00:01:49.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/random/node_modules/@types 1 undefined Project: /user/username/projects/myproject/random/tsconfig.json WatchType: Type roots +Info 41 [00:01:50.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/random/node_modules/@types 1 undefined Project: /user/username/projects/myproject/random/tsconfig.json WatchType: Type roots +Info 42 [00:01:51.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/random/tsconfig.json WatchType: Type roots +Info 43 [00:01:52.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/random/tsconfig.json WatchType: Type roots +Info 44 [00:01:53.000] Finishing updateGraphWorker: Project: /user/username/projects/myproject/random/tsconfig.json Version: 1 structureChanged: true structureIsReused:: Not Elapsed:: *ms +Info 45 [00:01:54.000] Project '/user/username/projects/myproject/random/tsconfig.json' (Configured) +Info 46 [00:01:55.000] Files (2) /a/lib/lib.d.ts /user/username/projects/myproject/random/random.ts @@ -369,20 +369,20 @@ Info 46 [16:01:55.000] Files (2) random.ts Matched by default include pattern '**/*' -Info 47 [16:01:56.000] ----------------------------------------------- -Info 48 [16:01:57.000] Project '/user/username/projects/myproject/main/tsconfig.json' (Configured) -Info 48 [16:01:58.000] Files (3) +Info 47 [00:01:56.000] ----------------------------------------------- +Info 48 [00:01:57.000] Project '/user/username/projects/myproject/main/tsconfig.json' (Configured) +Info 48 [00:01:58.000] Files (3) -Info 48 [16:01:59.000] ----------------------------------------------- -Info 48 [16:02:00.000] Project '/user/username/projects/myproject/random/tsconfig.json' (Configured) -Info 48 [16:02:01.000] Files (2) +Info 48 [00:01:59.000] ----------------------------------------------- +Info 48 [00:02:00.000] Project '/user/username/projects/myproject/random/tsconfig.json' (Configured) +Info 48 [00:02:01.000] Files (2) -Info 48 [16:02:02.000] ----------------------------------------------- -Info 48 [16:02:03.000] Open files: -Info 48 [16:02:04.000] FileName: /user/username/projects/myproject/main/main.ts ProjectRootPath: undefined -Info 48 [16:02:05.000] Projects: /user/username/projects/myproject/main/tsconfig.json -Info 48 [16:02:06.000] FileName: /user/username/projects/myproject/random/random.ts ProjectRootPath: undefined -Info 48 [16:02:07.000] Projects: /user/username/projects/myproject/random/tsconfig.json +Info 48 [00:02:02.000] ----------------------------------------------- +Info 48 [00:02:03.000] Open files: +Info 48 [00:02:04.000] FileName: /user/username/projects/myproject/main/main.ts ProjectRootPath: undefined +Info 48 [00:02:05.000] Projects: /user/username/projects/myproject/main/tsconfig.json +Info 48 [00:02:06.000] FileName: /user/username/projects/myproject/random/random.ts ProjectRootPath: undefined +Info 48 [00:02:07.000] Projects: /user/username/projects/myproject/random/tsconfig.json After request PolledWatches:: @@ -415,11 +415,11 @@ FsWatchesRecursive:: /user/username/projects/myproject/random: {} -Info 48 [16:02:08.000] response: +Info 48 [00:02:08.000] response: { "responseRequired": false } -Info 49 [16:02:09.000] request: +Info 49 [00:02:09.000] request: { "command": "definitionAndBoundSpan", "arguments": { @@ -462,8 +462,8 @@ FsWatchesRecursive:: /user/username/projects/myproject/random: {} -Info 50 [16:02:10.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/decls/FnS.d.ts.map 500 undefined WatchType: Closed Script info -Info 51 [16:02:11.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/dependency/FnS.ts 500 undefined WatchType: Closed Script info +Info 50 [00:02:10.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/decls/FnS.d.ts.map 500 undefined WatchType: Closed Script info +Info 51 [00:02:11.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/dependency/FnS.ts 500 undefined WatchType: Closed Script info After request PolledWatches:: @@ -500,7 +500,7 @@ FsWatchesRecursive:: /user/username/projects/myproject/random: {} -Info 52 [16:02:12.000] response: +Info 52 [00:02:12.000] response: { "response": { "definitions": [ @@ -537,14 +537,14 @@ Info 52 [16:02:12.000] response: }, "responseRequired": true } -Info 53 [16:02:14.000] FileWatcher:: Triggered with /user/username/projects/myproject/decls/FnS.d.ts.map 2:: WatchInfo: /user/username/projects/myproject/decls/FnS.d.ts.map 500 undefined WatchType: Closed Script info -Info 54 [16:02:15.000] FileWatcher:: Close:: WatchInfo: /user/username/projects/myproject/decls/FnS.d.ts.map 500 undefined WatchType: Closed Script info -Info 55 [16:02:16.000] Scheduled: /user/username/projects/myproject/main/tsconfig.json -Info 56 [16:02:17.000] Scheduled: *ensureProjectForOpenFiles* -Info 57 [16:02:18.000] Elapsed:: *ms FileWatcher:: Triggered with /user/username/projects/myproject/decls/FnS.d.ts.map 2:: WatchInfo: /user/username/projects/myproject/decls/FnS.d.ts.map 500 undefined WatchType: Closed Script info -Info 58 [16:02:19.000] DirectoryWatcher:: Triggered with /user/username/projects/myproject/decls/FnS.d.ts.map :: WatchInfo: /user/username/projects/myproject/decls 1 undefined Project: /user/username/projects/myproject/main/tsconfig.json WatchType: Failed Lookup Locations -Info 59 [16:02:20.000] Elapsed:: *ms DirectoryWatcher:: Triggered with /user/username/projects/myproject/decls/FnS.d.ts.map :: WatchInfo: /user/username/projects/myproject/decls 1 undefined Project: /user/username/projects/myproject/main/tsconfig.json WatchType: Failed Lookup Locations -Info 60 [16:02:21.000] request: +Info 53 [00:02:14.000] FileWatcher:: Triggered with /user/username/projects/myproject/decls/FnS.d.ts.map 2:: WatchInfo: /user/username/projects/myproject/decls/FnS.d.ts.map 500 undefined WatchType: Closed Script info +Info 54 [00:02:15.000] FileWatcher:: Close:: WatchInfo: /user/username/projects/myproject/decls/FnS.d.ts.map 500 undefined WatchType: Closed Script info +Info 55 [00:02:16.000] Scheduled: /user/username/projects/myproject/main/tsconfig.json +Info 56 [00:02:17.000] Scheduled: *ensureProjectForOpenFiles* +Info 57 [00:02:18.000] Elapsed:: *ms FileWatcher:: Triggered with /user/username/projects/myproject/decls/FnS.d.ts.map 2:: WatchInfo: /user/username/projects/myproject/decls/FnS.d.ts.map 500 undefined WatchType: Closed Script info +Info 58 [00:02:19.000] DirectoryWatcher:: Triggered with /user/username/projects/myproject/decls/FnS.d.ts.map :: WatchInfo: /user/username/projects/myproject/decls 1 undefined Project: /user/username/projects/myproject/main/tsconfig.json WatchType: Failed Lookup Locations +Info 59 [00:02:20.000] Elapsed:: *ms DirectoryWatcher:: Triggered with /user/username/projects/myproject/decls/FnS.d.ts.map :: WatchInfo: /user/username/projects/myproject/decls 1 undefined Project: /user/username/projects/myproject/main/tsconfig.json WatchType: Failed Lookup Locations +Info 60 [00:02:21.000] request: { "command": "definitionAndBoundSpan", "arguments": { @@ -590,9 +590,9 @@ FsWatchesRecursive:: /user/username/projects/myproject/random: {} -Info 61 [16:02:22.000] Starting updateGraphWorker: Project: /user/username/projects/myproject/main/tsconfig.json -Info 62 [16:02:23.000] Finishing updateGraphWorker: Project: /user/username/projects/myproject/main/tsconfig.json Version: 2 structureChanged: false structureIsReused:: Not Elapsed:: *ms -Info 63 [16:02:24.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/decls/FnS.d.ts.map 2000 undefined WatchType: Missing source map file +Info 61 [00:02:22.000] Starting updateGraphWorker: Project: /user/username/projects/myproject/main/tsconfig.json +Info 62 [00:02:23.000] Finishing updateGraphWorker: Project: /user/username/projects/myproject/main/tsconfig.json Version: 2 structureChanged: false structureIsReused:: Not Elapsed:: *ms +Info 63 [00:02:24.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/decls/FnS.d.ts.map 2000 undefined WatchType: Missing source map file After request PolledWatches:: @@ -629,7 +629,7 @@ FsWatchesRecursive:: /user/username/projects/myproject/random: {} -Info 64 [16:02:25.000] response: +Info 64 [00:02:25.000] response: { "response": { "definitions": [ @@ -666,7 +666,7 @@ Info 64 [16:02:25.000] response: }, "responseRequired": true } -Info 65 [16:02:26.000] request: +Info 65 [00:02:26.000] request: { "command": "definitionAndBoundSpan", "arguments": { @@ -749,7 +749,7 @@ FsWatchesRecursive:: /user/username/projects/myproject/random: {} -Info 66 [16:02:27.000] response: +Info 66 [00:02:27.000] response: { "response": { "definitions": [ @@ -786,7 +786,7 @@ Info 66 [16:02:27.000] response: }, "responseRequired": true } -Info 67 [16:02:28.000] request: +Info 67 [00:02:28.000] request: { "command": "definitionAndBoundSpan", "arguments": { @@ -869,7 +869,7 @@ FsWatchesRecursive:: /user/username/projects/myproject/random: {} -Info 68 [16:02:29.000] response: +Info 68 [00:02:29.000] response: { "response": { "definitions": [ @@ -906,7 +906,7 @@ Info 68 [16:02:29.000] response: }, "responseRequired": true } -Info 69 [16:02:30.000] request: +Info 69 [00:02:30.000] request: { "command": "definitionAndBoundSpan", "arguments": { @@ -989,7 +989,7 @@ FsWatchesRecursive:: /user/username/projects/myproject/random: {} -Info 70 [16:02:31.000] response: +Info 70 [00:02:31.000] response: { "response": { "definitions": [ @@ -1026,7 +1026,7 @@ Info 70 [16:02:31.000] response: }, "responseRequired": true } -Info 71 [16:02:32.000] request: +Info 71 [00:02:32.000] request: { "command": "definitionAndBoundSpan", "arguments": { @@ -1109,7 +1109,7 @@ FsWatchesRecursive:: /user/username/projects/myproject/random: {} -Info 72 [16:02:33.000] response: +Info 72 [00:02:33.000] response: { "response": { "definitions": [ @@ -1146,7 +1146,7 @@ Info 72 [16:02:33.000] response: }, "responseRequired": true } -Info 73 [16:02:34.000] request: +Info 73 [00:02:34.000] request: { "seq": 0, "type": "request", @@ -1191,18 +1191,18 @@ FsWatchesRecursive:: /user/username/projects/myproject/random: {} -Info 74 [16:02:35.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/random/random.ts 500 undefined WatchType: Closed Script info -Info 75 [16:02:36.000] Project '/user/username/projects/myproject/main/tsconfig.json' (Configured) -Info 75 [16:02:37.000] Files (3) +Info 74 [00:02:35.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/random/random.ts 500 undefined WatchType: Closed Script info +Info 75 [00:02:36.000] Project '/user/username/projects/myproject/main/tsconfig.json' (Configured) +Info 75 [00:02:37.000] Files (3) -Info 75 [16:02:38.000] ----------------------------------------------- -Info 75 [16:02:39.000] Project '/user/username/projects/myproject/random/tsconfig.json' (Configured) -Info 75 [16:02:40.000] Files (2) +Info 75 [00:02:38.000] ----------------------------------------------- +Info 75 [00:02:39.000] Project '/user/username/projects/myproject/random/tsconfig.json' (Configured) +Info 75 [00:02:40.000] Files (2) -Info 75 [16:02:41.000] ----------------------------------------------- -Info 75 [16:02:42.000] Open files: -Info 75 [16:02:43.000] FileName: /user/username/projects/myproject/main/main.ts ProjectRootPath: undefined -Info 75 [16:02:44.000] Projects: /user/username/projects/myproject/main/tsconfig.json +Info 75 [00:02:41.000] ----------------------------------------------- +Info 75 [00:02:42.000] Open files: +Info 75 [00:02:43.000] FileName: /user/username/projects/myproject/main/main.ts ProjectRootPath: undefined +Info 75 [00:02:44.000] Projects: /user/username/projects/myproject/main/tsconfig.json After request PolledWatches:: @@ -1241,11 +1241,11 @@ FsWatchesRecursive:: /user/username/projects/myproject/random: {} -Info 75 [16:02:45.000] response: +Info 75 [00:02:45.000] response: { "responseRequired": false } -Info 76 [16:02:46.000] request: +Info 76 [00:02:46.000] request: { "seq": 0, "type": "request", @@ -1292,23 +1292,23 @@ FsWatchesRecursive:: /user/username/projects/myproject/random: {} -Info 77 [16:02:47.000] FileWatcher:: Close:: WatchInfo: /user/username/projects/myproject/random/random.ts 500 undefined WatchType: Closed Script info -Info 78 [16:02:48.000] Search path: /user/username/projects/myproject/random -Info 79 [16:02:49.000] For info: /user/username/projects/myproject/random/random.ts :: Config file name: /user/username/projects/myproject/random/tsconfig.json -Info 80 [16:02:50.000] FileWatcher:: Close:: WatchInfo: /user/username/projects/myproject/dependency/FnS.ts 500 undefined WatchType: Closed Script info -Info 81 [16:02:51.000] Project '/user/username/projects/myproject/main/tsconfig.json' (Configured) -Info 81 [16:02:52.000] Files (3) +Info 77 [00:02:47.000] FileWatcher:: Close:: WatchInfo: /user/username/projects/myproject/random/random.ts 500 undefined WatchType: Closed Script info +Info 78 [00:02:48.000] Search path: /user/username/projects/myproject/random +Info 79 [00:02:49.000] For info: /user/username/projects/myproject/random/random.ts :: Config file name: /user/username/projects/myproject/random/tsconfig.json +Info 80 [00:02:50.000] FileWatcher:: Close:: WatchInfo: /user/username/projects/myproject/dependency/FnS.ts 500 undefined WatchType: Closed Script info +Info 81 [00:02:51.000] Project '/user/username/projects/myproject/main/tsconfig.json' (Configured) +Info 81 [00:02:52.000] Files (3) -Info 81 [16:02:53.000] ----------------------------------------------- -Info 81 [16:02:54.000] Project '/user/username/projects/myproject/random/tsconfig.json' (Configured) -Info 81 [16:02:55.000] Files (2) +Info 81 [00:02:53.000] ----------------------------------------------- +Info 81 [00:02:54.000] Project '/user/username/projects/myproject/random/tsconfig.json' (Configured) +Info 81 [00:02:55.000] Files (2) -Info 81 [16:02:56.000] ----------------------------------------------- -Info 81 [16:02:57.000] Open files: -Info 81 [16:02:58.000] FileName: /user/username/projects/myproject/main/main.ts ProjectRootPath: undefined -Info 81 [16:02:59.000] Projects: /user/username/projects/myproject/main/tsconfig.json -Info 81 [16:03:00.000] FileName: /user/username/projects/myproject/random/random.ts ProjectRootPath: undefined -Info 81 [16:03:01.000] Projects: /user/username/projects/myproject/random/tsconfig.json +Info 81 [00:02:56.000] ----------------------------------------------- +Info 81 [00:02:57.000] Open files: +Info 81 [00:02:58.000] FileName: /user/username/projects/myproject/main/main.ts ProjectRootPath: undefined +Info 81 [00:02:59.000] Projects: /user/username/projects/myproject/main/tsconfig.json +Info 81 [00:03:00.000] FileName: /user/username/projects/myproject/random/random.ts ProjectRootPath: undefined +Info 81 [00:03:01.000] Projects: /user/username/projects/myproject/random/tsconfig.json After request PolledWatches:: @@ -1343,11 +1343,11 @@ FsWatchesRecursive:: /user/username/projects/myproject/random: {} -Info 81 [16:03:02.000] response: +Info 81 [00:03:02.000] response: { "responseRequired": false } -Info 82 [16:03:03.000] request: +Info 82 [00:03:03.000] request: { "seq": 0, "type": "request", @@ -1390,18 +1390,18 @@ FsWatchesRecursive:: /user/username/projects/myproject/random: {} -Info 83 [16:03:04.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/main/main.ts 500 undefined WatchType: Closed Script info -Info 84 [16:03:05.000] Project '/user/username/projects/myproject/main/tsconfig.json' (Configured) -Info 84 [16:03:06.000] Files (3) +Info 83 [00:03:04.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/main/main.ts 500 undefined WatchType: Closed Script info +Info 84 [00:03:05.000] Project '/user/username/projects/myproject/main/tsconfig.json' (Configured) +Info 84 [00:03:06.000] Files (3) -Info 84 [16:03:07.000] ----------------------------------------------- -Info 84 [16:03:08.000] Project '/user/username/projects/myproject/random/tsconfig.json' (Configured) -Info 84 [16:03:09.000] Files (2) +Info 84 [00:03:07.000] ----------------------------------------------- +Info 84 [00:03:08.000] Project '/user/username/projects/myproject/random/tsconfig.json' (Configured) +Info 84 [00:03:09.000] Files (2) -Info 84 [16:03:10.000] ----------------------------------------------- -Info 84 [16:03:11.000] Open files: -Info 84 [16:03:12.000] FileName: /user/username/projects/myproject/random/random.ts ProjectRootPath: undefined -Info 84 [16:03:13.000] Projects: /user/username/projects/myproject/random/tsconfig.json +Info 84 [00:03:10.000] ----------------------------------------------- +Info 84 [00:03:11.000] Open files: +Info 84 [00:03:12.000] FileName: /user/username/projects/myproject/random/random.ts ProjectRootPath: undefined +Info 84 [00:03:13.000] Projects: /user/username/projects/myproject/random/tsconfig.json After request PolledWatches:: @@ -1438,11 +1438,11 @@ FsWatchesRecursive:: /user/username/projects/myproject/random: {} -Info 84 [16:03:14.000] response: +Info 84 [00:03:14.000] response: { "responseRequired": false } -Info 85 [16:03:15.000] request: +Info 85 [00:03:15.000] request: { "seq": 0, "type": "request", @@ -1487,16 +1487,16 @@ FsWatchesRecursive:: /user/username/projects/myproject/random: {} -Info 86 [16:03:16.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/random/random.ts 500 undefined WatchType: Closed Script info -Info 87 [16:03:17.000] Project '/user/username/projects/myproject/main/tsconfig.json' (Configured) -Info 87 [16:03:18.000] Files (3) +Info 86 [00:03:16.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/random/random.ts 500 undefined WatchType: Closed Script info +Info 87 [00:03:17.000] Project '/user/username/projects/myproject/main/tsconfig.json' (Configured) +Info 87 [00:03:18.000] Files (3) -Info 87 [16:03:19.000] ----------------------------------------------- -Info 87 [16:03:20.000] Project '/user/username/projects/myproject/random/tsconfig.json' (Configured) -Info 87 [16:03:21.000] Files (2) +Info 87 [00:03:19.000] ----------------------------------------------- +Info 87 [00:03:20.000] Project '/user/username/projects/myproject/random/tsconfig.json' (Configured) +Info 87 [00:03:21.000] Files (2) -Info 87 [16:03:22.000] ----------------------------------------------- -Info 87 [16:03:23.000] Open files: +Info 87 [00:03:22.000] ----------------------------------------------- +Info 87 [00:03:23.000] Open files: After request PolledWatches:: @@ -1535,11 +1535,11 @@ FsWatchesRecursive:: /user/username/projects/myproject/random: {} -Info 87 [16:03:24.000] response: +Info 87 [00:03:24.000] response: { "responseRequired": false } -Info 88 [16:03:25.000] request: +Info 88 [00:03:25.000] request: { "seq": 0, "type": "request", @@ -1586,12 +1586,12 @@ FsWatchesRecursive:: /user/username/projects/myproject/random: {} -Info 89 [16:03:26.000] FileWatcher:: Close:: WatchInfo: /user/username/projects/myproject/random/random.ts 500 undefined WatchType: Closed Script info -Info 90 [16:03:27.000] Search path: /user/username/projects/myproject/random -Info 91 [16:03:28.000] For info: /user/username/projects/myproject/random/random.ts :: Config file name: /user/username/projects/myproject/random/tsconfig.json -Info 92 [16:03:29.000] `remove Project:: -Info 93 [16:03:30.000] Project '/user/username/projects/myproject/main/tsconfig.json' (Configured) -Info 94 [16:03:31.000] Files (3) +Info 89 [00:03:26.000] FileWatcher:: Close:: WatchInfo: /user/username/projects/myproject/random/random.ts 500 undefined WatchType: Closed Script info +Info 90 [00:03:27.000] Search path: /user/username/projects/myproject/random +Info 91 [00:03:28.000] For info: /user/username/projects/myproject/random/random.ts :: Config file name: /user/username/projects/myproject/random/tsconfig.json +Info 92 [00:03:29.000] `remove Project:: +Info 93 [00:03:30.000] Project '/user/username/projects/myproject/main/tsconfig.json' (Configured) +Info 94 [00:03:31.000] Files (3) /a/lib/lib.d.ts /user/username/projects/myproject/decls/fns.d.ts /user/username/projects/myproject/main/main.ts @@ -1604,29 +1604,29 @@ Info 94 [16:03:31.000] Files (3) main.ts Matched by default include pattern '**/*' -Info 95 [16:03:32.000] ----------------------------------------------- -Info 96 [16:03:33.000] DirectoryWatcher:: Close:: WatchInfo: /user/username/projects/myproject/main 1 undefined Config: /user/username/projects/myproject/main/tsconfig.json WatchType: Wild card directory -Info 97 [16:03:34.000] 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 98 [16:03:35.000] FileWatcher:: Close:: WatchInfo: /user/username/projects/myproject/main/tsconfig.json 2000 undefined Project: /user/username/projects/myproject/main/tsconfig.json WatchType: Config file -Info 99 [16:03:36.000] DirectoryWatcher:: Close:: WatchInfo: /user/username/projects/myproject/dependency 1 undefined Config: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Wild card directory -Info 100 [16:03:37.000] 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 101 [16:03:38.000] FileWatcher:: Close:: WatchInfo: /user/username/projects/myproject/dependency/tsconfig.json 2000 undefined Project: /user/username/projects/myproject/main/tsconfig.json WatchType: Config file -Info 102 [16:03:39.000] DirectoryWatcher:: Close:: WatchInfo: /user/username/projects/myproject/decls 1 undefined Project: /user/username/projects/myproject/main/tsconfig.json WatchType: Failed Lookup Locations -Info 103 [16:03:40.000] 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 104 [16:03:41.000] 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 105 [16:03:42.000] 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 106 [16:03:43.000] DirectoryWatcher:: Close:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/main/tsconfig.json WatchType: Type roots -Info 107 [16:03:44.000] 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 108 [16:03:45.000] FileWatcher:: Close:: WatchInfo: /user/username/projects/myproject/main/main.ts 500 undefined WatchType: Closed Script info -Info 109 [16:03:46.000] FileWatcher:: Close:: WatchInfo: /user/username/projects/myproject/decls/fns.d.ts 500 undefined WatchType: Closed Script info -Info 110 [16:03:47.000] FileWatcher:: Close:: WatchInfo: /user/username/projects/myproject/decls/FnS.d.ts.map 2000 undefined WatchType: Missing source map file -Info 111 [16:03:48.000] Project '/user/username/projects/myproject/random/tsconfig.json' (Configured) -Info 111 [16:03:49.000] Files (2) - -Info 111 [16:03:50.000] ----------------------------------------------- -Info 111 [16:03:51.000] Open files: -Info 111 [16:03:52.000] FileName: /user/username/projects/myproject/random/random.ts ProjectRootPath: undefined -Info 111 [16:03:53.000] Projects: /user/username/projects/myproject/random/tsconfig.json +Info 95 [00:03:32.000] ----------------------------------------------- +Info 96 [00:03:33.000] DirectoryWatcher:: Close:: WatchInfo: /user/username/projects/myproject/main 1 undefined Config: /user/username/projects/myproject/main/tsconfig.json WatchType: Wild card directory +Info 97 [00:03:34.000] 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 98 [00:03:35.000] FileWatcher:: Close:: WatchInfo: /user/username/projects/myproject/main/tsconfig.json 2000 undefined Project: /user/username/projects/myproject/main/tsconfig.json WatchType: Config file +Info 99 [00:03:36.000] DirectoryWatcher:: Close:: WatchInfo: /user/username/projects/myproject/dependency 1 undefined Config: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Wild card directory +Info 100 [00:03:37.000] 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 101 [00:03:38.000] FileWatcher:: Close:: WatchInfo: /user/username/projects/myproject/dependency/tsconfig.json 2000 undefined Project: /user/username/projects/myproject/main/tsconfig.json WatchType: Config file +Info 102 [00:03:39.000] DirectoryWatcher:: Close:: WatchInfo: /user/username/projects/myproject/decls 1 undefined Project: /user/username/projects/myproject/main/tsconfig.json WatchType: Failed Lookup Locations +Info 103 [00:03:40.000] 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 104 [00:03:41.000] 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 105 [00:03:42.000] 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 106 [00:03:43.000] DirectoryWatcher:: Close:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/main/tsconfig.json WatchType: Type roots +Info 107 [00:03:44.000] 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 108 [00:03:45.000] FileWatcher:: Close:: WatchInfo: /user/username/projects/myproject/main/main.ts 500 undefined WatchType: Closed Script info +Info 109 [00:03:46.000] FileWatcher:: Close:: WatchInfo: /user/username/projects/myproject/decls/fns.d.ts 500 undefined WatchType: Closed Script info +Info 110 [00:03:47.000] FileWatcher:: Close:: WatchInfo: /user/username/projects/myproject/decls/FnS.d.ts.map 2000 undefined WatchType: Missing source map file +Info 111 [00:03:48.000] Project '/user/username/projects/myproject/random/tsconfig.json' (Configured) +Info 111 [00:03:49.000] Files (2) + +Info 111 [00:03:50.000] ----------------------------------------------- +Info 111 [00:03:51.000] Open files: +Info 111 [00:03:52.000] FileName: /user/username/projects/myproject/random/random.ts ProjectRootPath: undefined +Info 111 [00:03:53.000] Projects: /user/username/projects/myproject/random/tsconfig.json After request PolledWatches:: @@ -1645,7 +1645,7 @@ FsWatchesRecursive:: /user/username/projects/myproject/random: {} -Info 111 [16:03:54.000] response: +Info 111 [00:03:54.000] response: { "responseRequired": false } \ No newline at end of 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 027c962a8ea69..b76fd93a5c0e8 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 @@ -1,5 +1,5 @@ -Info 0 [16:01:04.000] Provided types map file "/a/lib/typesMap.json" doesn't exist -Info 1 [16:01:05.000] request: +Info 0 [00:01:04.000] Provided types map file "/a/lib/typesMap.json" doesn't exist +Info 1 [00:01:05.000] request: { "seq": 0, "type": "request", @@ -197,11 +197,11 @@ FsWatches:: FsWatchesRecursive:: -Info 2 [16:01:06.000] Search path: /user/username/projects/myproject/main -Info 3 [16:01:07.000] For info: /user/username/projects/myproject/main/main.ts :: Config file name: /user/username/projects/myproject/main/tsconfig.json -Info 4 [16:01:08.000] Creating configuration project /user/username/projects/myproject/main/tsconfig.json -Info 5 [16:01:09.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/main/tsconfig.json 2000 undefined Project: /user/username/projects/myproject/main/tsconfig.json WatchType: Config file -Info 6 [16:01:10.000] Config: /user/username/projects/myproject/main/tsconfig.json : { +Info 2 [00:01:06.000] Search path: /user/username/projects/myproject/main +Info 3 [00:01:07.000] For info: /user/username/projects/myproject/main/main.ts :: Config file name: /user/username/projects/myproject/main/tsconfig.json +Info 4 [00:01:08.000] Creating configuration project /user/username/projects/myproject/main/tsconfig.json +Info 5 [00:01:09.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/main/tsconfig.json 2000 undefined Project: /user/username/projects/myproject/main/tsconfig.json WatchType: Config file +Info 6 [00:01:10.000] Config: /user/username/projects/myproject/main/tsconfig.json : { "rootNames": [ "/user/username/projects/myproject/main/main.ts" ], @@ -218,11 +218,11 @@ Info 6 [16:01:10.000] Config: /user/username/projects/myproject/main/tsconfig } ] } -Info 7 [16:01:11.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/main 1 undefined Config: /user/username/projects/myproject/main/tsconfig.json WatchType: Wild card directory -Info 8 [16:01:12.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/main 1 undefined Config: /user/username/projects/myproject/main/tsconfig.json WatchType: Wild card directory -Info 9 [16:01:13.000] Plugins were requested but not running in environment that supports 'require'. Nothing will be loaded -Info 10 [16:01:14.000] Starting updateGraphWorker: Project: /user/username/projects/myproject/main/tsconfig.json -Info 11 [16:01:15.000] Config: /user/username/projects/myproject/dependency/tsconfig.json : { +Info 7 [00:01:11.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/main 1 undefined Config: /user/username/projects/myproject/main/tsconfig.json WatchType: Wild card directory +Info 8 [00:01:12.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/main 1 undefined Config: /user/username/projects/myproject/main/tsconfig.json WatchType: Wild card directory +Info 9 [00:01:13.000] Plugins were requested but not running in environment that supports 'require'. Nothing will be loaded +Info 10 [00:01:14.000] Starting updateGraphWorker: Project: /user/username/projects/myproject/main/tsconfig.json +Info 11 [00:01:15.000] Config: /user/username/projects/myproject/dependency/tsconfig.json : { "rootNames": [ "/user/username/projects/myproject/dependency/FnS.ts" ], @@ -233,20 +233,20 @@ Info 11 [16:01:15.000] Config: /user/username/projects/myproject/dependency/ts "configFilePath": "/user/username/projects/myproject/dependency/tsconfig.json" } } -Info 12 [16:01:16.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/dependency/tsconfig.json 2000 undefined Project: /user/username/projects/myproject/main/tsconfig.json WatchType: Config file -Info 13 [16:01:17.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/dependency 1 undefined Config: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Wild card directory -Info 14 [16:01:18.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/dependency 1 undefined Config: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Wild card directory -Info 15 [16:01:19.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/decls 1 undefined Project: /user/username/projects/myproject/main/tsconfig.json WatchType: Failed Lookup Locations -Info 16 [16:01:20.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/decls 1 undefined Project: /user/username/projects/myproject/main/tsconfig.json WatchType: Failed Lookup Locations -Info 17 [16:01:21.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/decls/fns.d.ts 500 undefined WatchType: Closed Script info -Info 18 [16:01:22.000] FileWatcher:: Added:: WatchInfo: /a/lib/lib.d.ts 500 undefined WatchType: Closed Script info -Info 19 [16:01:23.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/main/node_modules/@types 1 undefined Project: /user/username/projects/myproject/main/tsconfig.json WatchType: Type roots -Info 20 [16:01:24.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/main/node_modules/@types 1 undefined Project: /user/username/projects/myproject/main/tsconfig.json WatchType: Type roots -Info 21 [16:01:25.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/main/tsconfig.json WatchType: Type roots -Info 22 [16:01:26.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/main/tsconfig.json WatchType: Type roots -Info 23 [16:01:27.000] Finishing updateGraphWorker: Project: /user/username/projects/myproject/main/tsconfig.json Version: 1 structureChanged: true structureIsReused:: Not Elapsed:: *ms -Info 24 [16:01:28.000] Project '/user/username/projects/myproject/main/tsconfig.json' (Configured) -Info 25 [16:01:29.000] Files (3) +Info 12 [00:01:16.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/dependency/tsconfig.json 2000 undefined Project: /user/username/projects/myproject/main/tsconfig.json WatchType: Config file +Info 13 [00:01:17.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/dependency 1 undefined Config: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Wild card directory +Info 14 [00:01:18.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/dependency 1 undefined Config: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Wild card directory +Info 15 [00:01:19.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/decls 1 undefined Project: /user/username/projects/myproject/main/tsconfig.json WatchType: Failed Lookup Locations +Info 16 [00:01:20.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/decls 1 undefined Project: /user/username/projects/myproject/main/tsconfig.json WatchType: Failed Lookup Locations +Info 17 [00:01:21.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/decls/fns.d.ts 500 undefined WatchType: Closed Script info +Info 18 [00:01:22.000] FileWatcher:: Added:: WatchInfo: /a/lib/lib.d.ts 500 undefined WatchType: Closed Script info +Info 19 [00:01:23.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/main/node_modules/@types 1 undefined Project: /user/username/projects/myproject/main/tsconfig.json WatchType: Type roots +Info 20 [00:01:24.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/main/node_modules/@types 1 undefined Project: /user/username/projects/myproject/main/tsconfig.json WatchType: Type roots +Info 21 [00:01:25.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/main/tsconfig.json WatchType: Type roots +Info 22 [00:01:26.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/main/tsconfig.json WatchType: Type roots +Info 23 [00:01:27.000] Finishing updateGraphWorker: Project: /user/username/projects/myproject/main/tsconfig.json Version: 1 structureChanged: true structureIsReused:: Not Elapsed:: *ms +Info 24 [00:01:28.000] Project '/user/username/projects/myproject/main/tsconfig.json' (Configured) +Info 25 [00:01:29.000] Files (3) /a/lib/lib.d.ts /user/username/projects/myproject/decls/fns.d.ts /user/username/projects/myproject/main/main.ts @@ -259,16 +259,16 @@ Info 25 [16:01:29.000] Files (3) main.ts Matched by default include pattern '**/*' -Info 26 [16:01:30.000] ----------------------------------------------- -Info 27 [16:01:31.000] Search path: /user/username/projects/myproject/main -Info 28 [16:01:32.000] For info: /user/username/projects/myproject/main/tsconfig.json :: No config files found. -Info 29 [16:01:33.000] Project '/user/username/projects/myproject/main/tsconfig.json' (Configured) -Info 29 [16:01:34.000] Files (3) +Info 26 [00:01:30.000] ----------------------------------------------- +Info 27 [00:01:31.000] Search path: /user/username/projects/myproject/main +Info 28 [00:01:32.000] For info: /user/username/projects/myproject/main/tsconfig.json :: No config files found. +Info 29 [00:01:33.000] Project '/user/username/projects/myproject/main/tsconfig.json' (Configured) +Info 29 [00:01:34.000] Files (3) -Info 29 [16:01:35.000] ----------------------------------------------- -Info 29 [16:01:36.000] Open files: -Info 29 [16:01:37.000] FileName: /user/username/projects/myproject/main/main.ts ProjectRootPath: undefined -Info 29 [16:01:38.000] Projects: /user/username/projects/myproject/main/tsconfig.json +Info 29 [00:01:35.000] ----------------------------------------------- +Info 29 [00:01:36.000] Open files: +Info 29 [00:01:37.000] FileName: /user/username/projects/myproject/main/main.ts ProjectRootPath: undefined +Info 29 [00:01:38.000] Projects: /user/username/projects/myproject/main/tsconfig.json After request PolledWatches:: @@ -295,11 +295,11 @@ FsWatchesRecursive:: /user/username/projects/myproject/decls: {} -Info 29 [16:01:39.000] response: +Info 29 [00:01:39.000] response: { "responseRequired": false } -Info 30 [16:01:40.000] request: +Info 30 [00:01:40.000] request: { "seq": 0, "type": "request", @@ -334,11 +334,11 @@ FsWatchesRecursive:: /user/username/projects/myproject/decls: {} -Info 31 [16:01:41.000] Search path: /user/username/projects/myproject/random -Info 32 [16:01:42.000] For info: /user/username/projects/myproject/random/random.ts :: Config file name: /user/username/projects/myproject/random/tsconfig.json -Info 33 [16:01:43.000] Creating configuration project /user/username/projects/myproject/random/tsconfig.json -Info 34 [16:01:44.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/random/tsconfig.json 2000 undefined Project: /user/username/projects/myproject/random/tsconfig.json WatchType: Config file -Info 35 [16:01:45.000] Config: /user/username/projects/myproject/random/tsconfig.json : { +Info 31 [00:01:41.000] Search path: /user/username/projects/myproject/random +Info 32 [00:01:42.000] For info: /user/username/projects/myproject/random/random.ts :: Config file name: /user/username/projects/myproject/random/tsconfig.json +Info 33 [00:01:43.000] Creating configuration project /user/username/projects/myproject/random/tsconfig.json +Info 34 [00:01:44.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/random/tsconfig.json 2000 undefined Project: /user/username/projects/myproject/random/tsconfig.json WatchType: Config file +Info 35 [00:01:45.000] Config: /user/username/projects/myproject/random/tsconfig.json : { "rootNames": [ "/user/username/projects/myproject/random/random.ts" ], @@ -346,17 +346,17 @@ Info 35 [16:01:45.000] Config: /user/username/projects/myproject/random/tsconf "configFilePath": "/user/username/projects/myproject/random/tsconfig.json" } } -Info 36 [16:01:46.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/random 1 undefined Config: /user/username/projects/myproject/random/tsconfig.json WatchType: Wild card directory -Info 37 [16:01:47.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/random 1 undefined Config: /user/username/projects/myproject/random/tsconfig.json WatchType: Wild card directory -Info 38 [16:01:48.000] Plugins were requested but not running in environment that supports 'require'. Nothing will be loaded -Info 39 [16:01:49.000] Starting updateGraphWorker: Project: /user/username/projects/myproject/random/tsconfig.json -Info 40 [16:01:50.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/random/node_modules/@types 1 undefined Project: /user/username/projects/myproject/random/tsconfig.json WatchType: Type roots -Info 41 [16:01:51.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/random/node_modules/@types 1 undefined Project: /user/username/projects/myproject/random/tsconfig.json WatchType: Type roots -Info 42 [16:01:52.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/random/tsconfig.json WatchType: Type roots -Info 43 [16:01:53.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/random/tsconfig.json WatchType: Type roots -Info 44 [16:01:54.000] Finishing updateGraphWorker: Project: /user/username/projects/myproject/random/tsconfig.json Version: 1 structureChanged: true structureIsReused:: Not Elapsed:: *ms -Info 45 [16:01:55.000] Project '/user/username/projects/myproject/random/tsconfig.json' (Configured) -Info 46 [16:01:56.000] Files (2) +Info 36 [00:01:46.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/random 1 undefined Config: /user/username/projects/myproject/random/tsconfig.json WatchType: Wild card directory +Info 37 [00:01:47.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/random 1 undefined Config: /user/username/projects/myproject/random/tsconfig.json WatchType: Wild card directory +Info 38 [00:01:48.000] Plugins were requested but not running in environment that supports 'require'. Nothing will be loaded +Info 39 [00:01:49.000] Starting updateGraphWorker: Project: /user/username/projects/myproject/random/tsconfig.json +Info 40 [00:01:50.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/random/node_modules/@types 1 undefined Project: /user/username/projects/myproject/random/tsconfig.json WatchType: Type roots +Info 41 [00:01:51.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/random/node_modules/@types 1 undefined Project: /user/username/projects/myproject/random/tsconfig.json WatchType: Type roots +Info 42 [00:01:52.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/random/tsconfig.json WatchType: Type roots +Info 43 [00:01:53.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/random/tsconfig.json WatchType: Type roots +Info 44 [00:01:54.000] Finishing updateGraphWorker: Project: /user/username/projects/myproject/random/tsconfig.json Version: 1 structureChanged: true structureIsReused:: Not Elapsed:: *ms +Info 45 [00:01:55.000] Project '/user/username/projects/myproject/random/tsconfig.json' (Configured) +Info 46 [00:01:56.000] Files (2) /a/lib/lib.d.ts /user/username/projects/myproject/random/random.ts @@ -366,20 +366,20 @@ Info 46 [16:01:56.000] Files (2) random.ts Matched by default include pattern '**/*' -Info 47 [16:01:57.000] ----------------------------------------------- -Info 48 [16:01:58.000] Project '/user/username/projects/myproject/main/tsconfig.json' (Configured) -Info 48 [16:01:59.000] Files (3) +Info 47 [00:01:57.000] ----------------------------------------------- +Info 48 [00:01:58.000] Project '/user/username/projects/myproject/main/tsconfig.json' (Configured) +Info 48 [00:01:59.000] Files (3) -Info 48 [16:02:00.000] ----------------------------------------------- -Info 48 [16:02:01.000] Project '/user/username/projects/myproject/random/tsconfig.json' (Configured) -Info 48 [16:02:02.000] Files (2) +Info 48 [00:02:00.000] ----------------------------------------------- +Info 48 [00:02:01.000] Project '/user/username/projects/myproject/random/tsconfig.json' (Configured) +Info 48 [00:02:02.000] Files (2) -Info 48 [16:02:03.000] ----------------------------------------------- -Info 48 [16:02:04.000] Open files: -Info 48 [16:02:05.000] FileName: /user/username/projects/myproject/main/main.ts ProjectRootPath: undefined -Info 48 [16:02:06.000] Projects: /user/username/projects/myproject/main/tsconfig.json -Info 48 [16:02:07.000] FileName: /user/username/projects/myproject/random/random.ts ProjectRootPath: undefined -Info 48 [16:02:08.000] Projects: /user/username/projects/myproject/random/tsconfig.json +Info 48 [00:02:03.000] ----------------------------------------------- +Info 48 [00:02:04.000] Open files: +Info 48 [00:02:05.000] FileName: /user/username/projects/myproject/main/main.ts ProjectRootPath: undefined +Info 48 [00:02:06.000] Projects: /user/username/projects/myproject/main/tsconfig.json +Info 48 [00:02:07.000] FileName: /user/username/projects/myproject/random/random.ts ProjectRootPath: undefined +Info 48 [00:02:08.000] Projects: /user/username/projects/myproject/random/tsconfig.json After request PolledWatches:: @@ -412,11 +412,11 @@ FsWatchesRecursive:: /user/username/projects/myproject/random: {} -Info 48 [16:02:09.000] response: +Info 48 [00:02:09.000] response: { "responseRequired": false } -Info 49 [16:02:10.000] request: +Info 49 [00:02:10.000] request: { "command": "definitionAndBoundSpan", "arguments": { @@ -459,7 +459,7 @@ FsWatchesRecursive:: /user/username/projects/myproject/random: {} -Info 50 [16:02:11.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/decls/FnS.d.ts.map 2000 undefined WatchType: Missing source map file +Info 50 [00:02:11.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/decls/FnS.d.ts.map 2000 undefined WatchType: Missing source map file After request PolledWatches:: @@ -494,7 +494,7 @@ FsWatchesRecursive:: /user/username/projects/myproject/random: {} -Info 51 [16:02:12.000] response: +Info 51 [00:02:12.000] response: { "response": { "definitions": [ @@ -531,7 +531,7 @@ Info 51 [16:02:12.000] response: }, "responseRequired": true } -Info 52 [16:02:13.000] request: +Info 52 [00:02:13.000] request: { "command": "definitionAndBoundSpan", "arguments": { @@ -610,7 +610,7 @@ FsWatchesRecursive:: /user/username/projects/myproject/random: {} -Info 53 [16:02:14.000] response: +Info 53 [00:02:14.000] response: { "response": { "definitions": [ @@ -647,7 +647,7 @@ Info 53 [16:02:14.000] response: }, "responseRequired": true } -Info 54 [16:02:15.000] request: +Info 54 [00:02:15.000] request: { "command": "definitionAndBoundSpan", "arguments": { @@ -726,7 +726,7 @@ FsWatchesRecursive:: /user/username/projects/myproject/random: {} -Info 55 [16:02:16.000] response: +Info 55 [00:02:16.000] response: { "response": { "definitions": [ @@ -763,7 +763,7 @@ Info 55 [16:02:16.000] response: }, "responseRequired": true } -Info 56 [16:02:17.000] request: +Info 56 [00:02:17.000] request: { "command": "definitionAndBoundSpan", "arguments": { @@ -842,7 +842,7 @@ FsWatchesRecursive:: /user/username/projects/myproject/random: {} -Info 57 [16:02:18.000] response: +Info 57 [00:02:18.000] response: { "response": { "definitions": [ @@ -879,7 +879,7 @@ Info 57 [16:02:18.000] response: }, "responseRequired": true } -Info 58 [16:02:19.000] request: +Info 58 [00:02:19.000] request: { "command": "definitionAndBoundSpan", "arguments": { @@ -958,7 +958,7 @@ FsWatchesRecursive:: /user/username/projects/myproject/random: {} -Info 59 [16:02:20.000] response: +Info 59 [00:02:20.000] response: { "response": { "definitions": [ @@ -995,7 +995,7 @@ Info 59 [16:02:20.000] response: }, "responseRequired": true } -Info 60 [16:02:21.000] request: +Info 60 [00:02:21.000] request: { "seq": 0, "type": "request", @@ -1038,18 +1038,18 @@ FsWatchesRecursive:: /user/username/projects/myproject/random: {} -Info 61 [16:02:22.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/random/random.ts 500 undefined WatchType: Closed Script info -Info 62 [16:02:23.000] Project '/user/username/projects/myproject/main/tsconfig.json' (Configured) -Info 62 [16:02:24.000] Files (3) +Info 61 [00:02:22.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/random/random.ts 500 undefined WatchType: Closed Script info +Info 62 [00:02:23.000] Project '/user/username/projects/myproject/main/tsconfig.json' (Configured) +Info 62 [00:02:24.000] Files (3) -Info 62 [16:02:25.000] ----------------------------------------------- -Info 62 [16:02:26.000] Project '/user/username/projects/myproject/random/tsconfig.json' (Configured) -Info 62 [16:02:27.000] Files (2) +Info 62 [00:02:25.000] ----------------------------------------------- +Info 62 [00:02:26.000] Project '/user/username/projects/myproject/random/tsconfig.json' (Configured) +Info 62 [00:02:27.000] Files (2) -Info 62 [16:02:28.000] ----------------------------------------------- -Info 62 [16:02:29.000] Open files: -Info 62 [16:02:30.000] FileName: /user/username/projects/myproject/main/main.ts ProjectRootPath: undefined -Info 62 [16:02:31.000] Projects: /user/username/projects/myproject/main/tsconfig.json +Info 62 [00:02:28.000] ----------------------------------------------- +Info 62 [00:02:29.000] Open files: +Info 62 [00:02:30.000] FileName: /user/username/projects/myproject/main/main.ts ProjectRootPath: undefined +Info 62 [00:02:31.000] Projects: /user/username/projects/myproject/main/tsconfig.json After request PolledWatches:: @@ -1086,11 +1086,11 @@ FsWatchesRecursive:: /user/username/projects/myproject/random: {} -Info 62 [16:02:32.000] response: +Info 62 [00:02:32.000] response: { "responseRequired": false } -Info 63 [16:02:33.000] request: +Info 63 [00:02:33.000] request: { "seq": 0, "type": "request", @@ -1135,22 +1135,22 @@ FsWatchesRecursive:: /user/username/projects/myproject/random: {} -Info 64 [16:02:34.000] FileWatcher:: Close:: WatchInfo: /user/username/projects/myproject/random/random.ts 500 undefined WatchType: Closed Script info -Info 65 [16:02:35.000] Search path: /user/username/projects/myproject/random -Info 66 [16:02:36.000] For info: /user/username/projects/myproject/random/random.ts :: Config file name: /user/username/projects/myproject/random/tsconfig.json -Info 67 [16:02:37.000] Project '/user/username/projects/myproject/main/tsconfig.json' (Configured) -Info 67 [16:02:38.000] Files (3) +Info 64 [00:02:34.000] FileWatcher:: Close:: WatchInfo: /user/username/projects/myproject/random/random.ts 500 undefined WatchType: Closed Script info +Info 65 [00:02:35.000] Search path: /user/username/projects/myproject/random +Info 66 [00:02:36.000] For info: /user/username/projects/myproject/random/random.ts :: Config file name: /user/username/projects/myproject/random/tsconfig.json +Info 67 [00:02:37.000] Project '/user/username/projects/myproject/main/tsconfig.json' (Configured) +Info 67 [00:02:38.000] Files (3) -Info 67 [16:02:39.000] ----------------------------------------------- -Info 67 [16:02:40.000] Project '/user/username/projects/myproject/random/tsconfig.json' (Configured) -Info 67 [16:02:41.000] Files (2) +Info 67 [00:02:39.000] ----------------------------------------------- +Info 67 [00:02:40.000] Project '/user/username/projects/myproject/random/tsconfig.json' (Configured) +Info 67 [00:02:41.000] Files (2) -Info 67 [16:02:42.000] ----------------------------------------------- -Info 67 [16:02:43.000] Open files: -Info 67 [16:02:44.000] FileName: /user/username/projects/myproject/main/main.ts ProjectRootPath: undefined -Info 67 [16:02:45.000] Projects: /user/username/projects/myproject/main/tsconfig.json -Info 67 [16:02:46.000] FileName: /user/username/projects/myproject/random/random.ts ProjectRootPath: undefined -Info 67 [16:02:47.000] Projects: /user/username/projects/myproject/random/tsconfig.json +Info 67 [00:02:42.000] ----------------------------------------------- +Info 67 [00:02:43.000] Open files: +Info 67 [00:02:44.000] FileName: /user/username/projects/myproject/main/main.ts ProjectRootPath: undefined +Info 67 [00:02:45.000] Projects: /user/username/projects/myproject/main/tsconfig.json +Info 67 [00:02:46.000] FileName: /user/username/projects/myproject/random/random.ts ProjectRootPath: undefined +Info 67 [00:02:47.000] Projects: /user/username/projects/myproject/random/tsconfig.json After request PolledWatches:: @@ -1185,11 +1185,11 @@ FsWatchesRecursive:: /user/username/projects/myproject/random: {} -Info 67 [16:02:48.000] response: +Info 67 [00:02:48.000] response: { "responseRequired": false } -Info 68 [16:02:49.000] request: +Info 68 [00:02:49.000] request: { "seq": 0, "type": "request", @@ -1232,18 +1232,18 @@ FsWatchesRecursive:: /user/username/projects/myproject/random: {} -Info 69 [16:02:50.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/main/main.ts 500 undefined WatchType: Closed Script info -Info 70 [16:02:51.000] Project '/user/username/projects/myproject/main/tsconfig.json' (Configured) -Info 70 [16:02:52.000] Files (3) +Info 69 [00:02:50.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/main/main.ts 500 undefined WatchType: Closed Script info +Info 70 [00:02:51.000] Project '/user/username/projects/myproject/main/tsconfig.json' (Configured) +Info 70 [00:02:52.000] Files (3) -Info 70 [16:02:53.000] ----------------------------------------------- -Info 70 [16:02:54.000] Project '/user/username/projects/myproject/random/tsconfig.json' (Configured) -Info 70 [16:02:55.000] Files (2) +Info 70 [00:02:53.000] ----------------------------------------------- +Info 70 [00:02:54.000] Project '/user/username/projects/myproject/random/tsconfig.json' (Configured) +Info 70 [00:02:55.000] Files (2) -Info 70 [16:02:56.000] ----------------------------------------------- -Info 70 [16:02:57.000] Open files: -Info 70 [16:02:58.000] FileName: /user/username/projects/myproject/random/random.ts ProjectRootPath: undefined -Info 70 [16:02:59.000] Projects: /user/username/projects/myproject/random/tsconfig.json +Info 70 [00:02:56.000] ----------------------------------------------- +Info 70 [00:02:57.000] Open files: +Info 70 [00:02:58.000] FileName: /user/username/projects/myproject/random/random.ts ProjectRootPath: undefined +Info 70 [00:02:59.000] Projects: /user/username/projects/myproject/random/tsconfig.json After request PolledWatches:: @@ -1280,11 +1280,11 @@ FsWatchesRecursive:: /user/username/projects/myproject/random: {} -Info 70 [16:03:00.000] response: +Info 70 [00:03:00.000] response: { "responseRequired": false } -Info 71 [16:03:01.000] request: +Info 71 [00:03:01.000] request: { "seq": 0, "type": "request", @@ -1329,16 +1329,16 @@ FsWatchesRecursive:: /user/username/projects/myproject/random: {} -Info 72 [16:03:02.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/random/random.ts 500 undefined WatchType: Closed Script info -Info 73 [16:03:03.000] Project '/user/username/projects/myproject/main/tsconfig.json' (Configured) -Info 73 [16:03:04.000] Files (3) +Info 72 [00:03:02.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/random/random.ts 500 undefined WatchType: Closed Script info +Info 73 [00:03:03.000] Project '/user/username/projects/myproject/main/tsconfig.json' (Configured) +Info 73 [00:03:04.000] Files (3) -Info 73 [16:03:05.000] ----------------------------------------------- -Info 73 [16:03:06.000] Project '/user/username/projects/myproject/random/tsconfig.json' (Configured) -Info 73 [16:03:07.000] Files (2) +Info 73 [00:03:05.000] ----------------------------------------------- +Info 73 [00:03:06.000] Project '/user/username/projects/myproject/random/tsconfig.json' (Configured) +Info 73 [00:03:07.000] Files (2) -Info 73 [16:03:08.000] ----------------------------------------------- -Info 73 [16:03:09.000] Open files: +Info 73 [00:03:08.000] ----------------------------------------------- +Info 73 [00:03:09.000] Open files: After request PolledWatches:: @@ -1377,11 +1377,11 @@ FsWatchesRecursive:: /user/username/projects/myproject/random: {} -Info 73 [16:03:10.000] response: +Info 73 [00:03:10.000] response: { "responseRequired": false } -Info 74 [16:03:11.000] request: +Info 74 [00:03:11.000] request: { "seq": 0, "type": "request", @@ -1428,12 +1428,12 @@ FsWatchesRecursive:: /user/username/projects/myproject/random: {} -Info 75 [16:03:12.000] FileWatcher:: Close:: WatchInfo: /user/username/projects/myproject/random/random.ts 500 undefined WatchType: Closed Script info -Info 76 [16:03:13.000] Search path: /user/username/projects/myproject/random -Info 77 [16:03:14.000] For info: /user/username/projects/myproject/random/random.ts :: Config file name: /user/username/projects/myproject/random/tsconfig.json -Info 78 [16:03:15.000] `remove Project:: -Info 79 [16:03:16.000] Project '/user/username/projects/myproject/main/tsconfig.json' (Configured) -Info 80 [16:03:17.000] Files (3) +Info 75 [00:03:12.000] FileWatcher:: Close:: WatchInfo: /user/username/projects/myproject/random/random.ts 500 undefined WatchType: Closed Script info +Info 76 [00:03:13.000] Search path: /user/username/projects/myproject/random +Info 77 [00:03:14.000] For info: /user/username/projects/myproject/random/random.ts :: Config file name: /user/username/projects/myproject/random/tsconfig.json +Info 78 [00:03:15.000] `remove Project:: +Info 79 [00:03:16.000] Project '/user/username/projects/myproject/main/tsconfig.json' (Configured) +Info 80 [00:03:17.000] Files (3) /a/lib/lib.d.ts /user/username/projects/myproject/decls/fns.d.ts /user/username/projects/myproject/main/main.ts @@ -1446,29 +1446,29 @@ Info 80 [16:03:17.000] Files (3) main.ts Matched by default include pattern '**/*' -Info 81 [16:03:18.000] ----------------------------------------------- -Info 82 [16:03:19.000] DirectoryWatcher:: Close:: WatchInfo: /user/username/projects/myproject/main 1 undefined Config: /user/username/projects/myproject/main/tsconfig.json WatchType: Wild card directory -Info 83 [16:03:20.000] 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 84 [16:03:21.000] FileWatcher:: Close:: WatchInfo: /user/username/projects/myproject/main/tsconfig.json 2000 undefined Project: /user/username/projects/myproject/main/tsconfig.json WatchType: Config file -Info 85 [16:03:22.000] DirectoryWatcher:: Close:: WatchInfo: /user/username/projects/myproject/dependency 1 undefined Config: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Wild card directory -Info 86 [16:03:23.000] 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 87 [16:03:24.000] FileWatcher:: Close:: WatchInfo: /user/username/projects/myproject/dependency/tsconfig.json 2000 undefined Project: /user/username/projects/myproject/main/tsconfig.json WatchType: Config file -Info 88 [16:03:25.000] DirectoryWatcher:: Close:: WatchInfo: /user/username/projects/myproject/decls 1 undefined Project: /user/username/projects/myproject/main/tsconfig.json WatchType: Failed Lookup Locations -Info 89 [16:03:26.000] 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 90 [16:03:27.000] 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 91 [16:03:28.000] 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 92 [16:03:29.000] DirectoryWatcher:: Close:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/main/tsconfig.json WatchType: Type roots -Info 93 [16:03:30.000] 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 94 [16:03:31.000] FileWatcher:: Close:: WatchInfo: /user/username/projects/myproject/main/main.ts 500 undefined WatchType: Closed Script info -Info 95 [16:03:32.000] FileWatcher:: Close:: WatchInfo: /user/username/projects/myproject/decls/fns.d.ts 500 undefined WatchType: Closed Script info -Info 96 [16:03:33.000] FileWatcher:: Close:: WatchInfo: /user/username/projects/myproject/decls/FnS.d.ts.map 2000 undefined WatchType: Missing source map file -Info 97 [16:03:34.000] Project '/user/username/projects/myproject/random/tsconfig.json' (Configured) -Info 97 [16:03:35.000] Files (2) - -Info 97 [16:03:36.000] ----------------------------------------------- -Info 97 [16:03:37.000] Open files: -Info 97 [16:03:38.000] FileName: /user/username/projects/myproject/random/random.ts ProjectRootPath: undefined -Info 97 [16:03:39.000] Projects: /user/username/projects/myproject/random/tsconfig.json +Info 81 [00:03:18.000] ----------------------------------------------- +Info 82 [00:03:19.000] DirectoryWatcher:: Close:: WatchInfo: /user/username/projects/myproject/main 1 undefined Config: /user/username/projects/myproject/main/tsconfig.json WatchType: Wild card directory +Info 83 [00:03:20.000] 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 84 [00:03:21.000] FileWatcher:: Close:: WatchInfo: /user/username/projects/myproject/main/tsconfig.json 2000 undefined Project: /user/username/projects/myproject/main/tsconfig.json WatchType: Config file +Info 85 [00:03:22.000] DirectoryWatcher:: Close:: WatchInfo: /user/username/projects/myproject/dependency 1 undefined Config: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Wild card directory +Info 86 [00:03:23.000] 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 87 [00:03:24.000] FileWatcher:: Close:: WatchInfo: /user/username/projects/myproject/dependency/tsconfig.json 2000 undefined Project: /user/username/projects/myproject/main/tsconfig.json WatchType: Config file +Info 88 [00:03:25.000] DirectoryWatcher:: Close:: WatchInfo: /user/username/projects/myproject/decls 1 undefined Project: /user/username/projects/myproject/main/tsconfig.json WatchType: Failed Lookup Locations +Info 89 [00:03:26.000] 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 90 [00:03:27.000] 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 91 [00:03:28.000] 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 92 [00:03:29.000] DirectoryWatcher:: Close:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/main/tsconfig.json WatchType: Type roots +Info 93 [00:03:30.000] 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 94 [00:03:31.000] FileWatcher:: Close:: WatchInfo: /user/username/projects/myproject/main/main.ts 500 undefined WatchType: Closed Script info +Info 95 [00:03:32.000] FileWatcher:: Close:: WatchInfo: /user/username/projects/myproject/decls/fns.d.ts 500 undefined WatchType: Closed Script info +Info 96 [00:03:33.000] FileWatcher:: Close:: WatchInfo: /user/username/projects/myproject/decls/FnS.d.ts.map 2000 undefined WatchType: Missing source map file +Info 97 [00:03:34.000] Project '/user/username/projects/myproject/random/tsconfig.json' (Configured) +Info 97 [00:03:35.000] Files (2) + +Info 97 [00:03:36.000] ----------------------------------------------- +Info 97 [00:03:37.000] Open files: +Info 97 [00:03:38.000] FileName: /user/username/projects/myproject/random/random.ts ProjectRootPath: undefined +Info 97 [00:03:39.000] Projects: /user/username/projects/myproject/random/tsconfig.json After request PolledWatches:: @@ -1487,7 +1487,7 @@ FsWatchesRecursive:: /user/username/projects/myproject/random: {} -Info 97 [16:03:40.000] response: +Info 97 [00:03:40.000] response: { "responseRequired": false } \ No newline at end of file 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 de10974947fff..bd67843b952e8 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 @@ -1,5 +1,5 @@ -Info 0 [16:01:03.000] Provided types map file "/a/lib/typesMap.json" doesn't exist -Info 1 [16:01:04.000] request: +Info 0 [00:01:03.000] Provided types map file "/a/lib/typesMap.json" doesn't exist +Info 1 [00:01:04.000] request: { "seq": 0, "type": "request", @@ -200,11 +200,11 @@ FsWatches:: FsWatchesRecursive:: -Info 2 [16:01:05.000] Search path: /user/username/projects/myproject/main -Info 3 [16:01:06.000] For info: /user/username/projects/myproject/main/main.ts :: Config file name: /user/username/projects/myproject/main/tsconfig.json -Info 4 [16:01:07.000] Creating configuration project /user/username/projects/myproject/main/tsconfig.json -Info 5 [16:01:08.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/main/tsconfig.json 2000 undefined Project: /user/username/projects/myproject/main/tsconfig.json WatchType: Config file -Info 6 [16:01:09.000] Config: /user/username/projects/myproject/main/tsconfig.json : { +Info 2 [00:01:05.000] Search path: /user/username/projects/myproject/main +Info 3 [00:01:06.000] For info: /user/username/projects/myproject/main/main.ts :: Config file name: /user/username/projects/myproject/main/tsconfig.json +Info 4 [00:01:07.000] Creating configuration project /user/username/projects/myproject/main/tsconfig.json +Info 5 [00:01:08.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/main/tsconfig.json 2000 undefined Project: /user/username/projects/myproject/main/tsconfig.json WatchType: Config file +Info 6 [00:01:09.000] Config: /user/username/projects/myproject/main/tsconfig.json : { "rootNames": [ "/user/username/projects/myproject/main/main.ts" ], @@ -221,11 +221,11 @@ Info 6 [16:01:09.000] Config: /user/username/projects/myproject/main/tsconfig } ] } -Info 7 [16:01:10.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/main 1 undefined Config: /user/username/projects/myproject/main/tsconfig.json WatchType: Wild card directory -Info 8 [16:01:11.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/main 1 undefined Config: /user/username/projects/myproject/main/tsconfig.json WatchType: Wild card directory -Info 9 [16:01:12.000] Plugins were requested but not running in environment that supports 'require'. Nothing will be loaded -Info 10 [16:01:13.000] Starting updateGraphWorker: Project: /user/username/projects/myproject/main/tsconfig.json -Info 11 [16:01:14.000] Config: /user/username/projects/myproject/dependency/tsconfig.json : { +Info 7 [00:01:10.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/main 1 undefined Config: /user/username/projects/myproject/main/tsconfig.json WatchType: Wild card directory +Info 8 [00:01:11.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/main 1 undefined Config: /user/username/projects/myproject/main/tsconfig.json WatchType: Wild card directory +Info 9 [00:01:12.000] Plugins were requested but not running in environment that supports 'require'. Nothing will be loaded +Info 10 [00:01:13.000] Starting updateGraphWorker: Project: /user/username/projects/myproject/main/tsconfig.json +Info 11 [00:01:14.000] Config: /user/username/projects/myproject/dependency/tsconfig.json : { "rootNames": [ "/user/username/projects/myproject/dependency/FnS.ts" ], @@ -236,20 +236,20 @@ Info 11 [16:01:14.000] Config: /user/username/projects/myproject/dependency/ts "configFilePath": "/user/username/projects/myproject/dependency/tsconfig.json" } } -Info 12 [16:01:15.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/dependency/tsconfig.json 2000 undefined Project: /user/username/projects/myproject/main/tsconfig.json WatchType: Config file -Info 13 [16:01:16.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/dependency 1 undefined Config: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Wild card directory -Info 14 [16:01:17.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/dependency 1 undefined Config: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Wild card directory -Info 15 [16:01:18.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/decls 1 undefined Project: /user/username/projects/myproject/main/tsconfig.json WatchType: Failed Lookup Locations -Info 16 [16:01:19.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/decls 1 undefined Project: /user/username/projects/myproject/main/tsconfig.json WatchType: Failed Lookup Locations -Info 17 [16:01:20.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/decls/fns.d.ts 500 undefined WatchType: Closed Script info -Info 18 [16:01:21.000] FileWatcher:: Added:: WatchInfo: /a/lib/lib.d.ts 500 undefined WatchType: Closed Script info -Info 19 [16:01:22.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/main/node_modules/@types 1 undefined Project: /user/username/projects/myproject/main/tsconfig.json WatchType: Type roots -Info 20 [16:01:23.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/main/node_modules/@types 1 undefined Project: /user/username/projects/myproject/main/tsconfig.json WatchType: Type roots -Info 21 [16:01:24.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/main/tsconfig.json WatchType: Type roots -Info 22 [16:01:25.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/main/tsconfig.json WatchType: Type roots -Info 23 [16:01:26.000] Finishing updateGraphWorker: Project: /user/username/projects/myproject/main/tsconfig.json Version: 1 structureChanged: true structureIsReused:: Not Elapsed:: *ms -Info 24 [16:01:27.000] Project '/user/username/projects/myproject/main/tsconfig.json' (Configured) -Info 25 [16:01:28.000] Files (3) +Info 12 [00:01:15.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/dependency/tsconfig.json 2000 undefined Project: /user/username/projects/myproject/main/tsconfig.json WatchType: Config file +Info 13 [00:01:16.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/dependency 1 undefined Config: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Wild card directory +Info 14 [00:01:17.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/dependency 1 undefined Config: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Wild card directory +Info 15 [00:01:18.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/decls 1 undefined Project: /user/username/projects/myproject/main/tsconfig.json WatchType: Failed Lookup Locations +Info 16 [00:01:19.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/decls 1 undefined Project: /user/username/projects/myproject/main/tsconfig.json WatchType: Failed Lookup Locations +Info 17 [00:01:20.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/decls/fns.d.ts 500 undefined WatchType: Closed Script info +Info 18 [00:01:21.000] FileWatcher:: Added:: WatchInfo: /a/lib/lib.d.ts 500 undefined WatchType: Closed Script info +Info 19 [00:01:22.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/main/node_modules/@types 1 undefined Project: /user/username/projects/myproject/main/tsconfig.json WatchType: Type roots +Info 20 [00:01:23.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/main/node_modules/@types 1 undefined Project: /user/username/projects/myproject/main/tsconfig.json WatchType: Type roots +Info 21 [00:01:24.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/main/tsconfig.json WatchType: Type roots +Info 22 [00:01:25.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/main/tsconfig.json WatchType: Type roots +Info 23 [00:01:26.000] Finishing updateGraphWorker: Project: /user/username/projects/myproject/main/tsconfig.json Version: 1 structureChanged: true structureIsReused:: Not Elapsed:: *ms +Info 24 [00:01:27.000] Project '/user/username/projects/myproject/main/tsconfig.json' (Configured) +Info 25 [00:01:28.000] Files (3) /a/lib/lib.d.ts /user/username/projects/myproject/decls/fns.d.ts /user/username/projects/myproject/main/main.ts @@ -262,16 +262,16 @@ Info 25 [16:01:28.000] Files (3) main.ts Matched by default include pattern '**/*' -Info 26 [16:01:29.000] ----------------------------------------------- -Info 27 [16:01:30.000] Search path: /user/username/projects/myproject/main -Info 28 [16:01:31.000] For info: /user/username/projects/myproject/main/tsconfig.json :: No config files found. -Info 29 [16:01:32.000] Project '/user/username/projects/myproject/main/tsconfig.json' (Configured) -Info 29 [16:01:33.000] Files (3) +Info 26 [00:01:29.000] ----------------------------------------------- +Info 27 [00:01:30.000] Search path: /user/username/projects/myproject/main +Info 28 [00:01:31.000] For info: /user/username/projects/myproject/main/tsconfig.json :: No config files found. +Info 29 [00:01:32.000] Project '/user/username/projects/myproject/main/tsconfig.json' (Configured) +Info 29 [00:01:33.000] Files (3) -Info 29 [16:01:34.000] ----------------------------------------------- -Info 29 [16:01:35.000] Open files: -Info 29 [16:01:36.000] FileName: /user/username/projects/myproject/main/main.ts ProjectRootPath: undefined -Info 29 [16:01:37.000] Projects: /user/username/projects/myproject/main/tsconfig.json +Info 29 [00:01:34.000] ----------------------------------------------- +Info 29 [00:01:35.000] Open files: +Info 29 [00:01:36.000] FileName: /user/username/projects/myproject/main/main.ts ProjectRootPath: undefined +Info 29 [00:01:37.000] Projects: /user/username/projects/myproject/main/tsconfig.json After request PolledWatches:: @@ -298,11 +298,11 @@ FsWatchesRecursive:: /user/username/projects/myproject/decls: {} -Info 29 [16:01:38.000] response: +Info 29 [00:01:38.000] response: { "responseRequired": false } -Info 30 [16:01:39.000] request: +Info 30 [00:01:39.000] request: { "seq": 0, "type": "request", @@ -337,11 +337,11 @@ FsWatchesRecursive:: /user/username/projects/myproject/decls: {} -Info 31 [16:01:40.000] Search path: /user/username/projects/myproject/random -Info 32 [16:01:41.000] For info: /user/username/projects/myproject/random/random.ts :: Config file name: /user/username/projects/myproject/random/tsconfig.json -Info 33 [16:01:42.000] Creating configuration project /user/username/projects/myproject/random/tsconfig.json -Info 34 [16:01:43.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/random/tsconfig.json 2000 undefined Project: /user/username/projects/myproject/random/tsconfig.json WatchType: Config file -Info 35 [16:01:44.000] Config: /user/username/projects/myproject/random/tsconfig.json : { +Info 31 [00:01:40.000] Search path: /user/username/projects/myproject/random +Info 32 [00:01:41.000] For info: /user/username/projects/myproject/random/random.ts :: Config file name: /user/username/projects/myproject/random/tsconfig.json +Info 33 [00:01:42.000] Creating configuration project /user/username/projects/myproject/random/tsconfig.json +Info 34 [00:01:43.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/random/tsconfig.json 2000 undefined Project: /user/username/projects/myproject/random/tsconfig.json WatchType: Config file +Info 35 [00:01:44.000] Config: /user/username/projects/myproject/random/tsconfig.json : { "rootNames": [ "/user/username/projects/myproject/random/random.ts" ], @@ -349,17 +349,17 @@ Info 35 [16:01:44.000] Config: /user/username/projects/myproject/random/tsconf "configFilePath": "/user/username/projects/myproject/random/tsconfig.json" } } -Info 36 [16:01:45.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/random 1 undefined Config: /user/username/projects/myproject/random/tsconfig.json WatchType: Wild card directory -Info 37 [16:01:46.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/random 1 undefined Config: /user/username/projects/myproject/random/tsconfig.json WatchType: Wild card directory -Info 38 [16:01:47.000] Plugins were requested but not running in environment that supports 'require'. Nothing will be loaded -Info 39 [16:01:48.000] Starting updateGraphWorker: Project: /user/username/projects/myproject/random/tsconfig.json -Info 40 [16:01:49.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/random/node_modules/@types 1 undefined Project: /user/username/projects/myproject/random/tsconfig.json WatchType: Type roots -Info 41 [16:01:50.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/random/node_modules/@types 1 undefined Project: /user/username/projects/myproject/random/tsconfig.json WatchType: Type roots -Info 42 [16:01:51.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/random/tsconfig.json WatchType: Type roots -Info 43 [16:01:52.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/random/tsconfig.json WatchType: Type roots -Info 44 [16:01:53.000] Finishing updateGraphWorker: Project: /user/username/projects/myproject/random/tsconfig.json Version: 1 structureChanged: true structureIsReused:: Not Elapsed:: *ms -Info 45 [16:01:54.000] Project '/user/username/projects/myproject/random/tsconfig.json' (Configured) -Info 46 [16:01:55.000] Files (2) +Info 36 [00:01:45.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/random 1 undefined Config: /user/username/projects/myproject/random/tsconfig.json WatchType: Wild card directory +Info 37 [00:01:46.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/random 1 undefined Config: /user/username/projects/myproject/random/tsconfig.json WatchType: Wild card directory +Info 38 [00:01:47.000] Plugins were requested but not running in environment that supports 'require'. Nothing will be loaded +Info 39 [00:01:48.000] Starting updateGraphWorker: Project: /user/username/projects/myproject/random/tsconfig.json +Info 40 [00:01:49.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/random/node_modules/@types 1 undefined Project: /user/username/projects/myproject/random/tsconfig.json WatchType: Type roots +Info 41 [00:01:50.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/random/node_modules/@types 1 undefined Project: /user/username/projects/myproject/random/tsconfig.json WatchType: Type roots +Info 42 [00:01:51.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/random/tsconfig.json WatchType: Type roots +Info 43 [00:01:52.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/random/tsconfig.json WatchType: Type roots +Info 44 [00:01:53.000] Finishing updateGraphWorker: Project: /user/username/projects/myproject/random/tsconfig.json Version: 1 structureChanged: true structureIsReused:: Not Elapsed:: *ms +Info 45 [00:01:54.000] Project '/user/username/projects/myproject/random/tsconfig.json' (Configured) +Info 46 [00:01:55.000] Files (2) /a/lib/lib.d.ts /user/username/projects/myproject/random/random.ts @@ -369,20 +369,20 @@ Info 46 [16:01:55.000] Files (2) random.ts Matched by default include pattern '**/*' -Info 47 [16:01:56.000] ----------------------------------------------- -Info 48 [16:01:57.000] Project '/user/username/projects/myproject/main/tsconfig.json' (Configured) -Info 48 [16:01:58.000] Files (3) +Info 47 [00:01:56.000] ----------------------------------------------- +Info 48 [00:01:57.000] Project '/user/username/projects/myproject/main/tsconfig.json' (Configured) +Info 48 [00:01:58.000] Files (3) -Info 48 [16:01:59.000] ----------------------------------------------- -Info 48 [16:02:00.000] Project '/user/username/projects/myproject/random/tsconfig.json' (Configured) -Info 48 [16:02:01.000] Files (2) +Info 48 [00:01:59.000] ----------------------------------------------- +Info 48 [00:02:00.000] Project '/user/username/projects/myproject/random/tsconfig.json' (Configured) +Info 48 [00:02:01.000] Files (2) -Info 48 [16:02:02.000] ----------------------------------------------- -Info 48 [16:02:03.000] Open files: -Info 48 [16:02:04.000] FileName: /user/username/projects/myproject/main/main.ts ProjectRootPath: undefined -Info 48 [16:02:05.000] Projects: /user/username/projects/myproject/main/tsconfig.json -Info 48 [16:02:06.000] FileName: /user/username/projects/myproject/random/random.ts ProjectRootPath: undefined -Info 48 [16:02:07.000] Projects: /user/username/projects/myproject/random/tsconfig.json +Info 48 [00:02:02.000] ----------------------------------------------- +Info 48 [00:02:03.000] Open files: +Info 48 [00:02:04.000] FileName: /user/username/projects/myproject/main/main.ts ProjectRootPath: undefined +Info 48 [00:02:05.000] Projects: /user/username/projects/myproject/main/tsconfig.json +Info 48 [00:02:06.000] FileName: /user/username/projects/myproject/random/random.ts ProjectRootPath: undefined +Info 48 [00:02:07.000] Projects: /user/username/projects/myproject/random/tsconfig.json After request PolledWatches:: @@ -415,11 +415,11 @@ FsWatchesRecursive:: /user/username/projects/myproject/random: {} -Info 48 [16:02:08.000] response: +Info 48 [00:02:08.000] response: { "responseRequired": false } -Info 49 [16:02:09.000] request: +Info 49 [00:02:09.000] request: { "command": "definitionAndBoundSpan", "arguments": { @@ -462,8 +462,8 @@ FsWatchesRecursive:: /user/username/projects/myproject/random: {} -Info 50 [16:02:10.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/decls/FnS.d.ts.map 500 undefined WatchType: Closed Script info -Info 51 [16:02:11.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/dependency/FnS.ts 500 undefined WatchType: Closed Script info +Info 50 [00:02:10.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/decls/FnS.d.ts.map 500 undefined WatchType: Closed Script info +Info 51 [00:02:11.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/dependency/FnS.ts 500 undefined WatchType: Closed Script info After request PolledWatches:: @@ -500,7 +500,7 @@ FsWatchesRecursive:: /user/username/projects/myproject/random: {} -Info 52 [16:02:12.000] response: +Info 52 [00:02:12.000] response: { "response": { "definitions": [ @@ -537,7 +537,7 @@ Info 52 [16:02:12.000] response: }, "responseRequired": true } -Info 53 [16:02:13.000] request: +Info 53 [00:02:13.000] request: { "command": "change", "arguments": { @@ -623,7 +623,7 @@ FsWatchesRecursive:: /user/username/projects/myproject/random: {} -Info 54 [16:02:14.000] response: +Info 54 [00:02:14.000] response: { "responseRequired": false } @@ -699,7 +699,7 @@ FsWatchesRecursive:: /user/username/projects/myproject/random: {} -Info 55 [16:02:15.000] request: +Info 55 [00:02:15.000] request: { "command": "definitionAndBoundSpan", "arguments": { @@ -746,9 +746,9 @@ FsWatchesRecursive:: /user/username/projects/myproject/random: {} -Info 56 [16:02:16.000] Starting updateGraphWorker: Project: /user/username/projects/myproject/main/tsconfig.json -Info 57 [16:02:17.000] Finishing updateGraphWorker: Project: /user/username/projects/myproject/main/tsconfig.json Version: 2 structureChanged: false structureIsReused:: Completely Elapsed:: *ms -Info 58 [16:02:18.000] Different program with same set of files +Info 56 [00:02:16.000] Starting updateGraphWorker: Project: /user/username/projects/myproject/main/tsconfig.json +Info 57 [00:02:17.000] Finishing updateGraphWorker: Project: /user/username/projects/myproject/main/tsconfig.json Version: 2 structureChanged: false structureIsReused:: Completely Elapsed:: *ms +Info 58 [00:02:18.000] Different program with same set of files After request PolledWatches:: @@ -785,7 +785,7 @@ FsWatchesRecursive:: /user/username/projects/myproject/random: {} -Info 59 [16:02:19.000] response: +Info 59 [00:02:19.000] response: { "response": { "definitions": [ @@ -822,7 +822,7 @@ Info 59 [16:02:19.000] response: }, "responseRequired": true } -Info 60 [16:02:20.000] request: +Info 60 [00:02:20.000] request: { "command": "definitionAndBoundSpan", "arguments": { @@ -905,7 +905,7 @@ FsWatchesRecursive:: /user/username/projects/myproject/random: {} -Info 61 [16:02:21.000] response: +Info 61 [00:02:21.000] response: { "response": { "definitions": [ @@ -942,7 +942,7 @@ Info 61 [16:02:21.000] response: }, "responseRequired": true } -Info 62 [16:02:22.000] request: +Info 62 [00:02:22.000] request: { "command": "definitionAndBoundSpan", "arguments": { @@ -1025,7 +1025,7 @@ FsWatchesRecursive:: /user/username/projects/myproject/random: {} -Info 63 [16:02:23.000] response: +Info 63 [00:02:23.000] response: { "response": { "definitions": [ @@ -1062,7 +1062,7 @@ Info 63 [16:02:23.000] response: }, "responseRequired": true } -Info 64 [16:02:24.000] request: +Info 64 [00:02:24.000] request: { "command": "definitionAndBoundSpan", "arguments": { @@ -1145,7 +1145,7 @@ FsWatchesRecursive:: /user/username/projects/myproject/random: {} -Info 65 [16:02:25.000] response: +Info 65 [00:02:25.000] response: { "response": { "definitions": [ @@ -1182,7 +1182,7 @@ Info 65 [16:02:25.000] response: }, "responseRequired": true } -Info 66 [16:02:26.000] request: +Info 66 [00:02:26.000] request: { "command": "definitionAndBoundSpan", "arguments": { @@ -1265,7 +1265,7 @@ FsWatchesRecursive:: /user/username/projects/myproject/random: {} -Info 67 [16:02:27.000] response: +Info 67 [00:02:27.000] response: { "response": { "definitions": [ 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 04a93e42e40e2..7adeab4dd7fec 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 @@ -1,5 +1,5 @@ -Info 0 [16:01:03.000] Provided types map file "/a/lib/typesMap.json" doesn't exist -Info 1 [16:01:04.000] request: +Info 0 [00:01:03.000] Provided types map file "/a/lib/typesMap.json" doesn't exist +Info 1 [00:01:04.000] request: { "seq": 0, "type": "request", @@ -200,11 +200,11 @@ FsWatches:: FsWatchesRecursive:: -Info 2 [16:01:05.000] Search path: /user/username/projects/myproject/main -Info 3 [16:01:06.000] For info: /user/username/projects/myproject/main/main.ts :: Config file name: /user/username/projects/myproject/main/tsconfig.json -Info 4 [16:01:07.000] Creating configuration project /user/username/projects/myproject/main/tsconfig.json -Info 5 [16:01:08.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/main/tsconfig.json 2000 undefined Project: /user/username/projects/myproject/main/tsconfig.json WatchType: Config file -Info 6 [16:01:09.000] Config: /user/username/projects/myproject/main/tsconfig.json : { +Info 2 [00:01:05.000] Search path: /user/username/projects/myproject/main +Info 3 [00:01:06.000] For info: /user/username/projects/myproject/main/main.ts :: Config file name: /user/username/projects/myproject/main/tsconfig.json +Info 4 [00:01:07.000] Creating configuration project /user/username/projects/myproject/main/tsconfig.json +Info 5 [00:01:08.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/main/tsconfig.json 2000 undefined Project: /user/username/projects/myproject/main/tsconfig.json WatchType: Config file +Info 6 [00:01:09.000] Config: /user/username/projects/myproject/main/tsconfig.json : { "rootNames": [ "/user/username/projects/myproject/main/main.ts" ], @@ -221,11 +221,11 @@ Info 6 [16:01:09.000] Config: /user/username/projects/myproject/main/tsconfig } ] } -Info 7 [16:01:10.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/main 1 undefined Config: /user/username/projects/myproject/main/tsconfig.json WatchType: Wild card directory -Info 8 [16:01:11.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/main 1 undefined Config: /user/username/projects/myproject/main/tsconfig.json WatchType: Wild card directory -Info 9 [16:01:12.000] Plugins were requested but not running in environment that supports 'require'. Nothing will be loaded -Info 10 [16:01:13.000] Starting updateGraphWorker: Project: /user/username/projects/myproject/main/tsconfig.json -Info 11 [16:01:14.000] Config: /user/username/projects/myproject/dependency/tsconfig.json : { +Info 7 [00:01:10.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/main 1 undefined Config: /user/username/projects/myproject/main/tsconfig.json WatchType: Wild card directory +Info 8 [00:01:11.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/main 1 undefined Config: /user/username/projects/myproject/main/tsconfig.json WatchType: Wild card directory +Info 9 [00:01:12.000] Plugins were requested but not running in environment that supports 'require'. Nothing will be loaded +Info 10 [00:01:13.000] Starting updateGraphWorker: Project: /user/username/projects/myproject/main/tsconfig.json +Info 11 [00:01:14.000] Config: /user/username/projects/myproject/dependency/tsconfig.json : { "rootNames": [ "/user/username/projects/myproject/dependency/FnS.ts" ], @@ -236,20 +236,20 @@ Info 11 [16:01:14.000] Config: /user/username/projects/myproject/dependency/ts "configFilePath": "/user/username/projects/myproject/dependency/tsconfig.json" } } -Info 12 [16:01:15.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/dependency/tsconfig.json 2000 undefined Project: /user/username/projects/myproject/main/tsconfig.json WatchType: Config file -Info 13 [16:01:16.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/dependency 1 undefined Config: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Wild card directory -Info 14 [16:01:17.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/dependency 1 undefined Config: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Wild card directory -Info 15 [16:01:18.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/decls 1 undefined Project: /user/username/projects/myproject/main/tsconfig.json WatchType: Failed Lookup Locations -Info 16 [16:01:19.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/decls 1 undefined Project: /user/username/projects/myproject/main/tsconfig.json WatchType: Failed Lookup Locations -Info 17 [16:01:20.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/decls/fns.d.ts 500 undefined WatchType: Closed Script info -Info 18 [16:01:21.000] FileWatcher:: Added:: WatchInfo: /a/lib/lib.d.ts 500 undefined WatchType: Closed Script info -Info 19 [16:01:22.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/main/node_modules/@types 1 undefined Project: /user/username/projects/myproject/main/tsconfig.json WatchType: Type roots -Info 20 [16:01:23.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/main/node_modules/@types 1 undefined Project: /user/username/projects/myproject/main/tsconfig.json WatchType: Type roots -Info 21 [16:01:24.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/main/tsconfig.json WatchType: Type roots -Info 22 [16:01:25.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/main/tsconfig.json WatchType: Type roots -Info 23 [16:01:26.000] Finishing updateGraphWorker: Project: /user/username/projects/myproject/main/tsconfig.json Version: 1 structureChanged: true structureIsReused:: Not Elapsed:: *ms -Info 24 [16:01:27.000] Project '/user/username/projects/myproject/main/tsconfig.json' (Configured) -Info 25 [16:01:28.000] Files (3) +Info 12 [00:01:15.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/dependency/tsconfig.json 2000 undefined Project: /user/username/projects/myproject/main/tsconfig.json WatchType: Config file +Info 13 [00:01:16.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/dependency 1 undefined Config: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Wild card directory +Info 14 [00:01:17.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/dependency 1 undefined Config: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Wild card directory +Info 15 [00:01:18.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/decls 1 undefined Project: /user/username/projects/myproject/main/tsconfig.json WatchType: Failed Lookup Locations +Info 16 [00:01:19.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/decls 1 undefined Project: /user/username/projects/myproject/main/tsconfig.json WatchType: Failed Lookup Locations +Info 17 [00:01:20.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/decls/fns.d.ts 500 undefined WatchType: Closed Script info +Info 18 [00:01:21.000] FileWatcher:: Added:: WatchInfo: /a/lib/lib.d.ts 500 undefined WatchType: Closed Script info +Info 19 [00:01:22.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/main/node_modules/@types 1 undefined Project: /user/username/projects/myproject/main/tsconfig.json WatchType: Type roots +Info 20 [00:01:23.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/main/node_modules/@types 1 undefined Project: /user/username/projects/myproject/main/tsconfig.json WatchType: Type roots +Info 21 [00:01:24.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/main/tsconfig.json WatchType: Type roots +Info 22 [00:01:25.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/main/tsconfig.json WatchType: Type roots +Info 23 [00:01:26.000] Finishing updateGraphWorker: Project: /user/username/projects/myproject/main/tsconfig.json Version: 1 structureChanged: true structureIsReused:: Not Elapsed:: *ms +Info 24 [00:01:27.000] Project '/user/username/projects/myproject/main/tsconfig.json' (Configured) +Info 25 [00:01:28.000] Files (3) /a/lib/lib.d.ts /user/username/projects/myproject/decls/fns.d.ts /user/username/projects/myproject/main/main.ts @@ -262,16 +262,16 @@ Info 25 [16:01:28.000] Files (3) main.ts Matched by default include pattern '**/*' -Info 26 [16:01:29.000] ----------------------------------------------- -Info 27 [16:01:30.000] Search path: /user/username/projects/myproject/main -Info 28 [16:01:31.000] For info: /user/username/projects/myproject/main/tsconfig.json :: No config files found. -Info 29 [16:01:32.000] Project '/user/username/projects/myproject/main/tsconfig.json' (Configured) -Info 29 [16:01:33.000] Files (3) +Info 26 [00:01:29.000] ----------------------------------------------- +Info 27 [00:01:30.000] Search path: /user/username/projects/myproject/main +Info 28 [00:01:31.000] For info: /user/username/projects/myproject/main/tsconfig.json :: No config files found. +Info 29 [00:01:32.000] Project '/user/username/projects/myproject/main/tsconfig.json' (Configured) +Info 29 [00:01:33.000] Files (3) -Info 29 [16:01:34.000] ----------------------------------------------- -Info 29 [16:01:35.000] Open files: -Info 29 [16:01:36.000] FileName: /user/username/projects/myproject/main/main.ts ProjectRootPath: undefined -Info 29 [16:01:37.000] Projects: /user/username/projects/myproject/main/tsconfig.json +Info 29 [00:01:34.000] ----------------------------------------------- +Info 29 [00:01:35.000] Open files: +Info 29 [00:01:36.000] FileName: /user/username/projects/myproject/main/main.ts ProjectRootPath: undefined +Info 29 [00:01:37.000] Projects: /user/username/projects/myproject/main/tsconfig.json After request PolledWatches:: @@ -298,11 +298,11 @@ FsWatchesRecursive:: /user/username/projects/myproject/decls: {} -Info 29 [16:01:38.000] response: +Info 29 [00:01:38.000] response: { "responseRequired": false } -Info 30 [16:01:39.000] request: +Info 30 [00:01:39.000] request: { "seq": 0, "type": "request", @@ -337,11 +337,11 @@ FsWatchesRecursive:: /user/username/projects/myproject/decls: {} -Info 31 [16:01:40.000] Search path: /user/username/projects/myproject/random -Info 32 [16:01:41.000] For info: /user/username/projects/myproject/random/random.ts :: Config file name: /user/username/projects/myproject/random/tsconfig.json -Info 33 [16:01:42.000] Creating configuration project /user/username/projects/myproject/random/tsconfig.json -Info 34 [16:01:43.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/random/tsconfig.json 2000 undefined Project: /user/username/projects/myproject/random/tsconfig.json WatchType: Config file -Info 35 [16:01:44.000] Config: /user/username/projects/myproject/random/tsconfig.json : { +Info 31 [00:01:40.000] Search path: /user/username/projects/myproject/random +Info 32 [00:01:41.000] For info: /user/username/projects/myproject/random/random.ts :: Config file name: /user/username/projects/myproject/random/tsconfig.json +Info 33 [00:01:42.000] Creating configuration project /user/username/projects/myproject/random/tsconfig.json +Info 34 [00:01:43.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/random/tsconfig.json 2000 undefined Project: /user/username/projects/myproject/random/tsconfig.json WatchType: Config file +Info 35 [00:01:44.000] Config: /user/username/projects/myproject/random/tsconfig.json : { "rootNames": [ "/user/username/projects/myproject/random/random.ts" ], @@ -349,17 +349,17 @@ Info 35 [16:01:44.000] Config: /user/username/projects/myproject/random/tsconf "configFilePath": "/user/username/projects/myproject/random/tsconfig.json" } } -Info 36 [16:01:45.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/random 1 undefined Config: /user/username/projects/myproject/random/tsconfig.json WatchType: Wild card directory -Info 37 [16:01:46.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/random 1 undefined Config: /user/username/projects/myproject/random/tsconfig.json WatchType: Wild card directory -Info 38 [16:01:47.000] Plugins were requested but not running in environment that supports 'require'. Nothing will be loaded -Info 39 [16:01:48.000] Starting updateGraphWorker: Project: /user/username/projects/myproject/random/tsconfig.json -Info 40 [16:01:49.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/random/node_modules/@types 1 undefined Project: /user/username/projects/myproject/random/tsconfig.json WatchType: Type roots -Info 41 [16:01:50.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/random/node_modules/@types 1 undefined Project: /user/username/projects/myproject/random/tsconfig.json WatchType: Type roots -Info 42 [16:01:51.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/random/tsconfig.json WatchType: Type roots -Info 43 [16:01:52.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/random/tsconfig.json WatchType: Type roots -Info 44 [16:01:53.000] Finishing updateGraphWorker: Project: /user/username/projects/myproject/random/tsconfig.json Version: 1 structureChanged: true structureIsReused:: Not Elapsed:: *ms -Info 45 [16:01:54.000] Project '/user/username/projects/myproject/random/tsconfig.json' (Configured) -Info 46 [16:01:55.000] Files (2) +Info 36 [00:01:45.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/random 1 undefined Config: /user/username/projects/myproject/random/tsconfig.json WatchType: Wild card directory +Info 37 [00:01:46.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/random 1 undefined Config: /user/username/projects/myproject/random/tsconfig.json WatchType: Wild card directory +Info 38 [00:01:47.000] Plugins were requested but not running in environment that supports 'require'. Nothing will be loaded +Info 39 [00:01:48.000] Starting updateGraphWorker: Project: /user/username/projects/myproject/random/tsconfig.json +Info 40 [00:01:49.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/random/node_modules/@types 1 undefined Project: /user/username/projects/myproject/random/tsconfig.json WatchType: Type roots +Info 41 [00:01:50.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/random/node_modules/@types 1 undefined Project: /user/username/projects/myproject/random/tsconfig.json WatchType: Type roots +Info 42 [00:01:51.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/random/tsconfig.json WatchType: Type roots +Info 43 [00:01:52.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/random/tsconfig.json WatchType: Type roots +Info 44 [00:01:53.000] Finishing updateGraphWorker: Project: /user/username/projects/myproject/random/tsconfig.json Version: 1 structureChanged: true structureIsReused:: Not Elapsed:: *ms +Info 45 [00:01:54.000] Project '/user/username/projects/myproject/random/tsconfig.json' (Configured) +Info 46 [00:01:55.000] Files (2) /a/lib/lib.d.ts /user/username/projects/myproject/random/random.ts @@ -369,20 +369,20 @@ Info 46 [16:01:55.000] Files (2) random.ts Matched by default include pattern '**/*' -Info 47 [16:01:56.000] ----------------------------------------------- -Info 48 [16:01:57.000] Project '/user/username/projects/myproject/main/tsconfig.json' (Configured) -Info 48 [16:01:58.000] Files (3) +Info 47 [00:01:56.000] ----------------------------------------------- +Info 48 [00:01:57.000] Project '/user/username/projects/myproject/main/tsconfig.json' (Configured) +Info 48 [00:01:58.000] Files (3) -Info 48 [16:01:59.000] ----------------------------------------------- -Info 48 [16:02:00.000] Project '/user/username/projects/myproject/random/tsconfig.json' (Configured) -Info 48 [16:02:01.000] Files (2) +Info 48 [00:01:59.000] ----------------------------------------------- +Info 48 [00:02:00.000] Project '/user/username/projects/myproject/random/tsconfig.json' (Configured) +Info 48 [00:02:01.000] Files (2) -Info 48 [16:02:02.000] ----------------------------------------------- -Info 48 [16:02:03.000] Open files: -Info 48 [16:02:04.000] FileName: /user/username/projects/myproject/main/main.ts ProjectRootPath: undefined -Info 48 [16:02:05.000] Projects: /user/username/projects/myproject/main/tsconfig.json -Info 48 [16:02:06.000] FileName: /user/username/projects/myproject/random/random.ts ProjectRootPath: undefined -Info 48 [16:02:07.000] Projects: /user/username/projects/myproject/random/tsconfig.json +Info 48 [00:02:02.000] ----------------------------------------------- +Info 48 [00:02:03.000] Open files: +Info 48 [00:02:04.000] FileName: /user/username/projects/myproject/main/main.ts ProjectRootPath: undefined +Info 48 [00:02:05.000] Projects: /user/username/projects/myproject/main/tsconfig.json +Info 48 [00:02:06.000] FileName: /user/username/projects/myproject/random/random.ts ProjectRootPath: undefined +Info 48 [00:02:07.000] Projects: /user/username/projects/myproject/random/tsconfig.json After request PolledWatches:: @@ -415,11 +415,11 @@ FsWatchesRecursive:: /user/username/projects/myproject/random: {} -Info 48 [16:02:08.000] response: +Info 48 [00:02:08.000] response: { "responseRequired": false } -Info 49 [16:02:09.000] request: +Info 49 [00:02:09.000] request: { "command": "definitionAndBoundSpan", "arguments": { @@ -462,8 +462,8 @@ FsWatchesRecursive:: /user/username/projects/myproject/random: {} -Info 50 [16:02:10.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/decls/FnS.d.ts.map 500 undefined WatchType: Closed Script info -Info 51 [16:02:11.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/dependency/FnS.ts 500 undefined WatchType: Closed Script info +Info 50 [00:02:10.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/decls/FnS.d.ts.map 500 undefined WatchType: Closed Script info +Info 51 [00:02:11.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/dependency/FnS.ts 500 undefined WatchType: Closed Script info After request PolledWatches:: @@ -500,7 +500,7 @@ FsWatchesRecursive:: /user/username/projects/myproject/random: {} -Info 52 [16:02:12.000] response: +Info 52 [00:02:12.000] response: { "response": { "definitions": [ @@ -537,7 +537,7 @@ Info 52 [16:02:12.000] response: }, "responseRequired": true } -Info 53 [16:02:13.000] request: +Info 53 [00:02:13.000] request: { "command": "change", "arguments": { @@ -623,11 +623,11 @@ FsWatchesRecursive:: /user/username/projects/myproject/random: {} -Info 54 [16:02:14.000] response: +Info 54 [00:02:14.000] response: { "responseRequired": false } -Info 55 [16:02:15.000] request: +Info 55 [00:02:15.000] request: { "command": "definitionAndBoundSpan", "arguments": { @@ -674,9 +674,9 @@ FsWatchesRecursive:: /user/username/projects/myproject/random: {} -Info 56 [16:02:16.000] Starting updateGraphWorker: Project: /user/username/projects/myproject/main/tsconfig.json -Info 57 [16:02:17.000] Finishing updateGraphWorker: Project: /user/username/projects/myproject/main/tsconfig.json Version: 2 structureChanged: false structureIsReused:: Completely Elapsed:: *ms -Info 58 [16:02:18.000] Different program with same set of files +Info 56 [00:02:16.000] Starting updateGraphWorker: Project: /user/username/projects/myproject/main/tsconfig.json +Info 57 [00:02:17.000] Finishing updateGraphWorker: Project: /user/username/projects/myproject/main/tsconfig.json Version: 2 structureChanged: false structureIsReused:: Completely Elapsed:: *ms +Info 58 [00:02:18.000] Different program with same set of files After request PolledWatches:: @@ -713,7 +713,7 @@ FsWatchesRecursive:: /user/username/projects/myproject/random: {} -Info 59 [16:02:19.000] response: +Info 59 [00:02:19.000] response: { "response": { "definitions": [ @@ -750,7 +750,7 @@ Info 59 [16:02:19.000] response: }, "responseRequired": true } -Info 60 [16:02:20.000] request: +Info 60 [00:02:20.000] request: { "command": "definitionAndBoundSpan", "arguments": { @@ -833,7 +833,7 @@ FsWatchesRecursive:: /user/username/projects/myproject/random: {} -Info 61 [16:02:21.000] response: +Info 61 [00:02:21.000] response: { "response": { "definitions": [ @@ -870,7 +870,7 @@ Info 61 [16:02:21.000] response: }, "responseRequired": true } -Info 62 [16:02:22.000] request: +Info 62 [00:02:22.000] request: { "command": "definitionAndBoundSpan", "arguments": { @@ -953,7 +953,7 @@ FsWatchesRecursive:: /user/username/projects/myproject/random: {} -Info 63 [16:02:23.000] response: +Info 63 [00:02:23.000] response: { "response": { "definitions": [ @@ -990,7 +990,7 @@ Info 63 [16:02:23.000] response: }, "responseRequired": true } -Info 64 [16:02:24.000] request: +Info 64 [00:02:24.000] request: { "command": "definitionAndBoundSpan", "arguments": { @@ -1073,7 +1073,7 @@ FsWatchesRecursive:: /user/username/projects/myproject/random: {} -Info 65 [16:02:25.000] response: +Info 65 [00:02:25.000] response: { "response": { "definitions": [ @@ -1110,7 +1110,7 @@ Info 65 [16:02:25.000] response: }, "responseRequired": true } -Info 66 [16:02:26.000] request: +Info 66 [00:02:26.000] request: { "command": "definitionAndBoundSpan", "arguments": { @@ -1193,7 +1193,7 @@ FsWatchesRecursive:: /user/username/projects/myproject/random: {} -Info 67 [16:02:27.000] response: +Info 67 [00:02:27.000] response: { "response": { "definitions": [ diff --git a/tests/baselines/reference/tsserver/projectUpdatedInBackground/when-event-handler-is-set-in-the-session-and-project-is-at-root-level.js b/tests/baselines/reference/tsserver/projectUpdatedInBackground/when-event-handler-is-set-in-the-session-and-project-is-at-root-level.js index bddaad27cd1dd..0d9531c51a760 100644 --- a/tests/baselines/reference/tsserver/projectUpdatedInBackground/when-event-handler-is-set-in-the-session-and-project-is-at-root-level.js +++ b/tests/baselines/reference/tsserver/projectUpdatedInBackground/when-event-handler-is-set-in-the-session-and-project-is-at-root-level.js @@ -1,5 +1,5 @@ -Info 0 [16:00:19.000] Provided types map file "/a/lib/typesMap.json" doesn't exist -Info 1 [16:00:20.000] request: +Info 0 [00:00:19.000] Provided types map file "/a/lib/typesMap.json" doesn't exist +Info 1 [00:00:20.000] request: { "command": "open", "arguments": { @@ -38,11 +38,11 @@ FsWatches:: FsWatchesRecursive:: -Info 2 [16:00:21.000] Search path: /a/b/project -Info 3 [16:00:22.000] For info: /a/b/project/file1.ts :: Config file name: /a/b/project/tsconfig.json -Info 4 [16:00:23.000] Creating configuration project /a/b/project/tsconfig.json -Info 5 [16:00:24.000] FileWatcher:: Added:: WatchInfo: /a/b/project/tsconfig.json 2000 undefined Project: /a/b/project/tsconfig.json WatchType: Config file -Info 6 [16:00:25.000] Config: /a/b/project/tsconfig.json : { +Info 2 [00:00:21.000] Search path: /a/b/project +Info 3 [00:00:22.000] For info: /a/b/project/file1.ts :: Config file name: /a/b/project/tsconfig.json +Info 4 [00:00:23.000] Creating configuration project /a/b/project/tsconfig.json +Info 5 [00:00:24.000] FileWatcher:: Added:: WatchInfo: /a/b/project/tsconfig.json 2000 undefined Project: /a/b/project/tsconfig.json WatchType: Config file +Info 6 [00:00:25.000] Config: /a/b/project/tsconfig.json : { "rootNames": [ "/a/b/project/file1.ts", "/a/b/project/file3.ts" @@ -52,17 +52,17 @@ Info 6 [16:00:25.000] Config: /a/b/project/tsconfig.json : { "configFilePath": "/a/b/project/tsconfig.json" } } -Info 7 [16:00:26.000] DirectoryWatcher:: Added:: WatchInfo: /a/b/project 1 undefined Config: /a/b/project/tsconfig.json WatchType: Wild card directory -Info 8 [16:00:27.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /a/b/project 1 undefined Config: /a/b/project/tsconfig.json WatchType: Wild card directory -Info 9 [16:00:28.000] Plugins were requested but not running in environment that supports 'require'. Nothing will be loaded -Info 10 [16:00:29.000] FileWatcher:: Added:: WatchInfo: /a/b/project/file3.ts 500 undefined WatchType: Closed Script info -Info 11 [16:00:30.000] Starting updateGraphWorker: Project: /a/b/project/tsconfig.json -Info 12 [16:00:31.000] FileWatcher:: Added:: WatchInfo: /a/lib/lib.d.ts 500 undefined WatchType: Closed Script info -Info 13 [16:00:32.000] DirectoryWatcher:: Added:: WatchInfo: /a/b/project/node_modules 1 undefined Project: /a/b/project/tsconfig.json WatchType: Failed Lookup Locations -Info 14 [16:00:33.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /a/b/project/node_modules 1 undefined Project: /a/b/project/tsconfig.json WatchType: Failed Lookup Locations -Info 15 [16:00:34.000] Finishing updateGraphWorker: Project: /a/b/project/tsconfig.json Version: 1 structureChanged: true structureIsReused:: Not Elapsed:: *ms -Info 16 [16:00:35.000] Project '/a/b/project/tsconfig.json' (Configured) -Info 17 [16:00:36.000] Files (3) +Info 7 [00:00:26.000] DirectoryWatcher:: Added:: WatchInfo: /a/b/project 1 undefined Config: /a/b/project/tsconfig.json WatchType: Wild card directory +Info 8 [00:00:27.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /a/b/project 1 undefined Config: /a/b/project/tsconfig.json WatchType: Wild card directory +Info 9 [00:00:28.000] Plugins were requested but not running in environment that supports 'require'. Nothing will be loaded +Info 10 [00:00:29.000] FileWatcher:: Added:: WatchInfo: /a/b/project/file3.ts 500 undefined WatchType: Closed Script info +Info 11 [00:00:30.000] Starting updateGraphWorker: Project: /a/b/project/tsconfig.json +Info 12 [00:00:31.000] FileWatcher:: Added:: WatchInfo: /a/lib/lib.d.ts 500 undefined WatchType: Closed Script info +Info 13 [00:00:32.000] DirectoryWatcher:: Added:: WatchInfo: /a/b/project/node_modules 1 undefined Project: /a/b/project/tsconfig.json WatchType: Failed Lookup Locations +Info 14 [00:00:33.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /a/b/project/node_modules 1 undefined Project: /a/b/project/tsconfig.json WatchType: Failed Lookup Locations +Info 15 [00:00:34.000] Finishing updateGraphWorker: Project: /a/b/project/tsconfig.json Version: 1 structureChanged: true structureIsReused:: Not Elapsed:: *ms +Info 16 [00:00:35.000] Project '/a/b/project/tsconfig.json' (Configured) +Info 17 [00:00:36.000] Files (3) /a/lib/lib.d.ts /a/b/project/file1.ts /a/b/project/file3.ts @@ -75,14 +75,14 @@ Info 17 [16:00:36.000] Files (3) file3.ts Matched by default include pattern '**/*' -Info 18 [16:00:37.000] ----------------------------------------------- -Info 19 [16:00:38.000] Project '/a/b/project/tsconfig.json' (Configured) -Info 19 [16:00:39.000] Files (3) +Info 18 [00:00:37.000] ----------------------------------------------- +Info 19 [00:00:38.000] Project '/a/b/project/tsconfig.json' (Configured) +Info 19 [00:00:39.000] Files (3) -Info 19 [16:00:40.000] ----------------------------------------------- -Info 19 [16:00:41.000] Open files: -Info 19 [16:00:42.000] FileName: /a/b/project/file1.ts ProjectRootPath: undefined -Info 19 [16:00:43.000] Projects: /a/b/project/tsconfig.json +Info 19 [00:00:40.000] ----------------------------------------------- +Info 19 [00:00:41.000] Open files: +Info 19 [00:00:42.000] FileName: /a/b/project/file1.ts ProjectRootPath: undefined +Info 19 [00:00:43.000] Projects: /a/b/project/tsconfig.json After request PolledWatches:: @@ -101,14 +101,14 @@ FsWatchesRecursive:: /a/b/project: {} -Info 19 [16:00:44.000] response: +Info 19 [00:00:44.000] response: { "responseRequired": false } -Info 20 [16:00:48.000] FileWatcher:: Triggered with /a/b/project/file3.ts 1:: WatchInfo: /a/b/project/file3.ts 500 undefined WatchType: Closed Script info -Info 21 [16:00:49.000] Scheduled: /a/b/project/tsconfig.json -Info 22 [16:00:50.000] Scheduled: *ensureProjectForOpenFiles* -Info 23 [16:00:51.000] Elapsed:: *ms FileWatcher:: Triggered with /a/b/project/file3.ts 1:: WatchInfo: /a/b/project/file3.ts 500 undefined WatchType: Closed Script info +Info 20 [00:00:48.000] FileWatcher:: Triggered with /a/b/project/file3.ts 1:: WatchInfo: /a/b/project/file3.ts 500 undefined WatchType: Closed Script info +Info 21 [00:00:49.000] Scheduled: /a/b/project/tsconfig.json +Info 22 [00:00:50.000] Scheduled: *ensureProjectForOpenFiles* +Info 23 [00:00:51.000] Elapsed:: *ms FileWatcher:: Triggered with /a/b/project/file3.ts 1:: WatchInfo: /a/b/project/file3.ts 500 undefined WatchType: Closed Script info Before checking timeout queue length (2) and running //// [/a/b/project/file3.ts] export class c { }export class d {} @@ -130,27 +130,27 @@ FsWatchesRecursive:: /a/b/project: {} -Info 24 [16:00:52.000] Running: /a/b/project/tsconfig.json -Info 25 [16:00:53.000] Starting updateGraphWorker: Project: /a/b/project/tsconfig.json -Info 26 [16:00:54.000] Finishing updateGraphWorker: Project: /a/b/project/tsconfig.json Version: 2 structureChanged: false structureIsReused:: Completely Elapsed:: *ms -Info 27 [16:00:55.000] Different program with same set of files -Info 28 [16:00:56.000] Running: *ensureProjectForOpenFiles* -Info 29 [16:00:57.000] Before ensureProjectForOpenFiles: -Info 30 [16:00:58.000] Project '/a/b/project/tsconfig.json' (Configured) -Info 30 [16:00:59.000] Files (3) - -Info 30 [16:01:00.000] ----------------------------------------------- -Info 30 [16:01:01.000] Open files: -Info 30 [16:01:02.000] FileName: /a/b/project/file1.ts ProjectRootPath: undefined -Info 30 [16:01:03.000] Projects: /a/b/project/tsconfig.json -Info 30 [16:01:04.000] After ensureProjectForOpenFiles: -Info 31 [16:01:05.000] Project '/a/b/project/tsconfig.json' (Configured) -Info 31 [16:01:06.000] Files (3) - -Info 31 [16:01:07.000] ----------------------------------------------- -Info 31 [16:01:08.000] Open files: -Info 31 [16:01:09.000] FileName: /a/b/project/file1.ts ProjectRootPath: undefined -Info 31 [16:01:10.000] Projects: /a/b/project/tsconfig.json +Info 24 [00:00:52.000] Running: /a/b/project/tsconfig.json +Info 25 [00:00:53.000] Starting updateGraphWorker: Project: /a/b/project/tsconfig.json +Info 26 [00:00:54.000] Finishing updateGraphWorker: Project: /a/b/project/tsconfig.json Version: 2 structureChanged: false structureIsReused:: Completely Elapsed:: *ms +Info 27 [00:00:55.000] Different program with same set of files +Info 28 [00:00:56.000] Running: *ensureProjectForOpenFiles* +Info 29 [00:00:57.000] Before ensureProjectForOpenFiles: +Info 30 [00:00:58.000] Project '/a/b/project/tsconfig.json' (Configured) +Info 30 [00:00:59.000] Files (3) + +Info 30 [00:01:00.000] ----------------------------------------------- +Info 30 [00:01:01.000] Open files: +Info 30 [00:01:02.000] FileName: /a/b/project/file1.ts ProjectRootPath: undefined +Info 30 [00:01:03.000] Projects: /a/b/project/tsconfig.json +Info 30 [00:01:04.000] After ensureProjectForOpenFiles: +Info 31 [00:01:05.000] Project '/a/b/project/tsconfig.json' (Configured) +Info 31 [00:01:06.000] Files (3) + +Info 31 [00:01:07.000] ----------------------------------------------- +Info 31 [00:01:08.000] Open files: +Info 31 [00:01:09.000] FileName: /a/b/project/file1.ts ProjectRootPath: undefined +Info 31 [00:01:10.000] Projects: /a/b/project/tsconfig.json After checking timeout queue length (2) and running PolledWatches:: diff --git a/tests/baselines/reference/tsserver/projectUpdatedInBackground/when-event-handler-is-set-in-the-session-and-project-is-not-at-root-level.js b/tests/baselines/reference/tsserver/projectUpdatedInBackground/when-event-handler-is-set-in-the-session-and-project-is-not-at-root-level.js index 5887dc2a06f91..614f19da74b90 100644 --- a/tests/baselines/reference/tsserver/projectUpdatedInBackground/when-event-handler-is-set-in-the-session-and-project-is-not-at-root-level.js +++ b/tests/baselines/reference/tsserver/projectUpdatedInBackground/when-event-handler-is-set-in-the-session-and-project-is-not-at-root-level.js @@ -1,5 +1,5 @@ -Info 0 [16:00:29.000] Provided types map file "/a/lib/typesMap.json" doesn't exist -Info 1 [16:00:30.000] request: +Info 0 [00:00:29.000] Provided types map file "/a/lib/typesMap.json" doesn't exist +Info 1 [00:00:30.000] request: { "command": "open", "arguments": { @@ -38,11 +38,11 @@ FsWatches:: FsWatchesRecursive:: -Info 2 [16:00:31.000] Search path: /user/username/rootfolder/otherfolder/a/b/project -Info 3 [16:00:32.000] For info: /user/username/rootfolder/otherfolder/a/b/project/file1.ts :: Config file name: /user/username/rootfolder/otherfolder/a/b/project/tsconfig.json -Info 4 [16:00:33.000] Creating configuration project /user/username/rootfolder/otherfolder/a/b/project/tsconfig.json -Info 5 [16:00:34.000] FileWatcher:: Added:: WatchInfo: /user/username/rootfolder/otherfolder/a/b/project/tsconfig.json 2000 undefined Project: /user/username/rootfolder/otherfolder/a/b/project/tsconfig.json WatchType: Config file -Info 6 [16:00:35.000] Config: /user/username/rootfolder/otherfolder/a/b/project/tsconfig.json : { +Info 2 [00:00:31.000] Search path: /user/username/rootfolder/otherfolder/a/b/project +Info 3 [00:00:32.000] For info: /user/username/rootfolder/otherfolder/a/b/project/file1.ts :: Config file name: /user/username/rootfolder/otherfolder/a/b/project/tsconfig.json +Info 4 [00:00:33.000] Creating configuration project /user/username/rootfolder/otherfolder/a/b/project/tsconfig.json +Info 5 [00:00:34.000] FileWatcher:: Added:: WatchInfo: /user/username/rootfolder/otherfolder/a/b/project/tsconfig.json 2000 undefined Project: /user/username/rootfolder/otherfolder/a/b/project/tsconfig.json WatchType: Config file +Info 6 [00:00:35.000] Config: /user/username/rootfolder/otherfolder/a/b/project/tsconfig.json : { "rootNames": [ "/user/username/rootfolder/otherfolder/a/b/project/file1.ts", "/user/username/rootfolder/otherfolder/a/b/project/file3.ts" @@ -52,23 +52,23 @@ Info 6 [16:00:35.000] Config: /user/username/rootfolder/otherfolder/a/b/proje "configFilePath": "/user/username/rootfolder/otherfolder/a/b/project/tsconfig.json" } } -Info 7 [16:00:36.000] 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 8 [16:00:37.000] 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 9 [16:00:38.000] Plugins were requested but not running in environment that supports 'require'. Nothing will be loaded -Info 10 [16:00:39.000] FileWatcher:: Added:: WatchInfo: /user/username/rootfolder/otherfolder/a/b/project/file3.ts 500 undefined WatchType: Closed Script info -Info 11 [16:00:40.000] Starting updateGraphWorker: Project: /user/username/rootfolder/otherfolder/a/b/project/tsconfig.json -Info 12 [16:00:41.000] FileWatcher:: Added:: WatchInfo: /a/lib/lib.d.ts 500 undefined WatchType: Closed Script info -Info 13 [16:00:42.000] 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 14 [16:00:43.000] 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 15 [16:00:44.000] 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 -Info 16 [16:00:45.000] Elapsed:: *ms 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 -Info 17 [16:00:46.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/rootfolder/otherfolder/a/node_modules 1 undefined Project: /user/username/rootfolder/otherfolder/a/b/project/tsconfig.json WatchType: Failed Lookup Locations -Info 18 [16:00:47.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/rootfolder/otherfolder/a/node_modules 1 undefined Project: /user/username/rootfolder/otherfolder/a/b/project/tsconfig.json WatchType: Failed Lookup Locations -Info 19 [16:00:48.000] 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 20 [16:00:49.000] 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 21 [16:00:50.000] Finishing updateGraphWorker: Project: /user/username/rootfolder/otherfolder/a/b/project/tsconfig.json Version: 1 structureChanged: true structureIsReused:: Not Elapsed:: *ms -Info 22 [16:00:51.000] Project '/user/username/rootfolder/otherfolder/a/b/project/tsconfig.json' (Configured) -Info 23 [16:00:52.000] Files (3) +Info 7 [00:00:36.000] 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 8 [00:00:37.000] 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 9 [00:00:38.000] Plugins were requested but not running in environment that supports 'require'. Nothing will be loaded +Info 10 [00:00:39.000] FileWatcher:: Added:: WatchInfo: /user/username/rootfolder/otherfolder/a/b/project/file3.ts 500 undefined WatchType: Closed Script info +Info 11 [00:00:40.000] Starting updateGraphWorker: Project: /user/username/rootfolder/otherfolder/a/b/project/tsconfig.json +Info 12 [00:00:41.000] FileWatcher:: Added:: WatchInfo: /a/lib/lib.d.ts 500 undefined WatchType: Closed Script info +Info 13 [00:00:42.000] 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 14 [00:00:43.000] 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 15 [00:00:44.000] 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 +Info 16 [00:00:45.000] Elapsed:: *ms 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 +Info 17 [00:00:46.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/rootfolder/otherfolder/a/node_modules 1 undefined Project: /user/username/rootfolder/otherfolder/a/b/project/tsconfig.json WatchType: Failed Lookup Locations +Info 18 [00:00:47.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/rootfolder/otherfolder/a/node_modules 1 undefined Project: /user/username/rootfolder/otherfolder/a/b/project/tsconfig.json WatchType: Failed Lookup Locations +Info 19 [00:00:48.000] 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 20 [00:00:49.000] 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 21 [00:00:50.000] Finishing updateGraphWorker: Project: /user/username/rootfolder/otherfolder/a/b/project/tsconfig.json Version: 1 structureChanged: true structureIsReused:: Not Elapsed:: *ms +Info 22 [00:00:51.000] Project '/user/username/rootfolder/otherfolder/a/b/project/tsconfig.json' (Configured) +Info 23 [00:00:52.000] Files (3) /a/lib/lib.d.ts /user/username/rootfolder/otherfolder/a/b/project/file1.ts /user/username/rootfolder/otherfolder/a/b/project/file3.ts @@ -81,14 +81,14 @@ Info 23 [16:00:52.000] Files (3) file3.ts Matched by default include pattern '**/*' -Info 24 [16:00:53.000] ----------------------------------------------- -Info 25 [16:00:54.000] Project '/user/username/rootfolder/otherfolder/a/b/project/tsconfig.json' (Configured) -Info 25 [16:00:55.000] Files (3) +Info 24 [00:00:53.000] ----------------------------------------------- +Info 25 [00:00:54.000] Project '/user/username/rootfolder/otherfolder/a/b/project/tsconfig.json' (Configured) +Info 25 [00:00:55.000] Files (3) -Info 25 [16:00:56.000] ----------------------------------------------- -Info 25 [16:00:57.000] Open files: -Info 25 [16:00:58.000] FileName: /user/username/rootfolder/otherfolder/a/b/project/file1.ts ProjectRootPath: undefined -Info 25 [16:00:59.000] Projects: /user/username/rootfolder/otherfolder/a/b/project/tsconfig.json +Info 25 [00:00:56.000] ----------------------------------------------- +Info 25 [00:00:57.000] Open files: +Info 25 [00:00:58.000] FileName: /user/username/rootfolder/otherfolder/a/b/project/file1.ts ProjectRootPath: undefined +Info 25 [00:00:59.000] Projects: /user/username/rootfolder/otherfolder/a/b/project/tsconfig.json After request PolledWatches:: @@ -113,14 +113,14 @@ FsWatchesRecursive:: /user/username/rootfolder/otherfolder/a/b/project: {} -Info 25 [16:01:00.000] response: +Info 25 [00:01:00.000] response: { "responseRequired": false } -Info 26 [16:01:04.000] FileWatcher:: Triggered with /user/username/rootfolder/otherfolder/a/b/project/file3.ts 1:: WatchInfo: /user/username/rootfolder/otherfolder/a/b/project/file3.ts 500 undefined WatchType: Closed Script info -Info 27 [16:01:05.000] Scheduled: /user/username/rootfolder/otherfolder/a/b/project/tsconfig.json -Info 28 [16:01:06.000] Scheduled: *ensureProjectForOpenFiles* -Info 29 [16:01:07.000] Elapsed:: *ms FileWatcher:: Triggered with /user/username/rootfolder/otherfolder/a/b/project/file3.ts 1:: WatchInfo: /user/username/rootfolder/otherfolder/a/b/project/file3.ts 500 undefined WatchType: Closed Script info +Info 26 [00:01:04.000] FileWatcher:: Triggered with /user/username/rootfolder/otherfolder/a/b/project/file3.ts 1:: WatchInfo: /user/username/rootfolder/otherfolder/a/b/project/file3.ts 500 undefined WatchType: Closed Script info +Info 27 [00:01:05.000] Scheduled: /user/username/rootfolder/otherfolder/a/b/project/tsconfig.json +Info 28 [00:01:06.000] Scheduled: *ensureProjectForOpenFiles* +Info 29 [00:01:07.000] Elapsed:: *ms FileWatcher:: Triggered with /user/username/rootfolder/otherfolder/a/b/project/file3.ts 1:: WatchInfo: /user/username/rootfolder/otherfolder/a/b/project/file3.ts 500 undefined WatchType: Closed Script info Before checking timeout queue length (2) and running //// [/user/username/rootfolder/otherfolder/a/b/project/file3.ts] export class c { }export class d {} @@ -148,27 +148,27 @@ FsWatchesRecursive:: /user/username/rootfolder/otherfolder/a/b/project: {} -Info 30 [16:01:08.000] Running: /user/username/rootfolder/otherfolder/a/b/project/tsconfig.json -Info 31 [16:01:09.000] Starting updateGraphWorker: Project: /user/username/rootfolder/otherfolder/a/b/project/tsconfig.json -Info 32 [16:01:10.000] Finishing updateGraphWorker: Project: /user/username/rootfolder/otherfolder/a/b/project/tsconfig.json Version: 2 structureChanged: false structureIsReused:: Completely Elapsed:: *ms -Info 33 [16:01:11.000] Different program with same set of files -Info 34 [16:01:12.000] Running: *ensureProjectForOpenFiles* -Info 35 [16:01:13.000] Before ensureProjectForOpenFiles: -Info 36 [16:01:14.000] Project '/user/username/rootfolder/otherfolder/a/b/project/tsconfig.json' (Configured) -Info 36 [16:01:15.000] Files (3) - -Info 36 [16:01:16.000] ----------------------------------------------- -Info 36 [16:01:17.000] Open files: -Info 36 [16:01:18.000] FileName: /user/username/rootfolder/otherfolder/a/b/project/file1.ts ProjectRootPath: undefined -Info 36 [16:01:19.000] Projects: /user/username/rootfolder/otherfolder/a/b/project/tsconfig.json -Info 36 [16:01:20.000] After ensureProjectForOpenFiles: -Info 37 [16:01:21.000] Project '/user/username/rootfolder/otherfolder/a/b/project/tsconfig.json' (Configured) -Info 37 [16:01:22.000] Files (3) - -Info 37 [16:01:23.000] ----------------------------------------------- -Info 37 [16:01:24.000] Open files: -Info 37 [16:01:25.000] FileName: /user/username/rootfolder/otherfolder/a/b/project/file1.ts ProjectRootPath: undefined -Info 37 [16:01:26.000] Projects: /user/username/rootfolder/otherfolder/a/b/project/tsconfig.json +Info 30 [00:01:08.000] Running: /user/username/rootfolder/otherfolder/a/b/project/tsconfig.json +Info 31 [00:01:09.000] Starting updateGraphWorker: Project: /user/username/rootfolder/otherfolder/a/b/project/tsconfig.json +Info 32 [00:01:10.000] Finishing updateGraphWorker: Project: /user/username/rootfolder/otherfolder/a/b/project/tsconfig.json Version: 2 structureChanged: false structureIsReused:: Completely Elapsed:: *ms +Info 33 [00:01:11.000] Different program with same set of files +Info 34 [00:01:12.000] Running: *ensureProjectForOpenFiles* +Info 35 [00:01:13.000] Before ensureProjectForOpenFiles: +Info 36 [00:01:14.000] Project '/user/username/rootfolder/otherfolder/a/b/project/tsconfig.json' (Configured) +Info 36 [00:01:15.000] Files (3) + +Info 36 [00:01:16.000] ----------------------------------------------- +Info 36 [00:01:17.000] Open files: +Info 36 [00:01:18.000] FileName: /user/username/rootfolder/otherfolder/a/b/project/file1.ts ProjectRootPath: undefined +Info 36 [00:01:19.000] Projects: /user/username/rootfolder/otherfolder/a/b/project/tsconfig.json +Info 36 [00:01:20.000] After ensureProjectForOpenFiles: +Info 37 [00:01:21.000] Project '/user/username/rootfolder/otherfolder/a/b/project/tsconfig.json' (Configured) +Info 37 [00:01:22.000] Files (3) + +Info 37 [00:01:23.000] ----------------------------------------------- +Info 37 [00:01:24.000] Open files: +Info 37 [00:01:25.000] FileName: /user/username/rootfolder/otherfolder/a/b/project/file1.ts ProjectRootPath: undefined +Info 37 [00:01:26.000] Projects: /user/username/rootfolder/otherfolder/a/b/project/tsconfig.json After checking timeout queue length (2) and running PolledWatches:: @@ -193,15 +193,15 @@ FsWatchesRecursive:: /user/username/rootfolder/otherfolder/a/b/project: {} -Info 37 [16:01:30.000] DirectoryWatcher:: Triggered with /user/username/rootfolder/otherfolder/a/b/node_modules :: 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 -Info 38 [16:01:31.000] Scheduled: /user/username/rootfolder/otherfolder/a/b/project/tsconfig.jsonFailedLookupInvalidation -Info 39 [16:01:32.000] Elapsed:: *ms DirectoryWatcher:: Triggered with /user/username/rootfolder/otherfolder/a/b/node_modules :: 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 -Info 40 [16:01:33.000] DirectoryWatcher:: Triggered with /user/username/rootfolder/otherfolder/a/b/node_modules :: 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 -Info 41 [16:01:34.000] Scheduled: /user/username/rootfolder/otherfolder/a/b/project/tsconfig.jsonFailedLookupInvalidation, Cancelled earlier one -Info 42 [16:01:35.000] Elapsed:: *ms DirectoryWatcher:: Triggered with /user/username/rootfolder/otherfolder/a/b/node_modules :: 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 -Info 43 [16:01:38.000] DirectoryWatcher:: Triggered with /user/username/rootfolder/otherfolder/a/b/node_modules/file2.d.ts :: 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 -Info 44 [16:01:39.000] Scheduled: /user/username/rootfolder/otherfolder/a/b/project/tsconfig.jsonFailedLookupInvalidation, Cancelled earlier one -Info 45 [16:01:40.000] Elapsed:: *ms DirectoryWatcher:: Triggered with /user/username/rootfolder/otherfolder/a/b/node_modules/file2.d.ts :: 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 +Info 37 [00:01:30.000] DirectoryWatcher:: Triggered with /user/username/rootfolder/otherfolder/a/b/node_modules :: 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 +Info 38 [00:01:31.000] Scheduled: /user/username/rootfolder/otherfolder/a/b/project/tsconfig.jsonFailedLookupInvalidation +Info 39 [00:01:32.000] Elapsed:: *ms DirectoryWatcher:: Triggered with /user/username/rootfolder/otherfolder/a/b/node_modules :: 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 +Info 40 [00:01:33.000] DirectoryWatcher:: Triggered with /user/username/rootfolder/otherfolder/a/b/node_modules :: 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 +Info 41 [00:01:34.000] Scheduled: /user/username/rootfolder/otherfolder/a/b/project/tsconfig.jsonFailedLookupInvalidation, Cancelled earlier one +Info 42 [00:01:35.000] Elapsed:: *ms DirectoryWatcher:: Triggered with /user/username/rootfolder/otherfolder/a/b/node_modules :: 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 +Info 43 [00:01:38.000] DirectoryWatcher:: Triggered with /user/username/rootfolder/otherfolder/a/b/node_modules/file2.d.ts :: 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 +Info 44 [00:01:39.000] Scheduled: /user/username/rootfolder/otherfolder/a/b/project/tsconfig.jsonFailedLookupInvalidation, Cancelled earlier one +Info 45 [00:01:40.000] Elapsed:: *ms DirectoryWatcher:: Triggered with /user/username/rootfolder/otherfolder/a/b/node_modules/file2.d.ts :: 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 Before running timeout callbacks //// [/user/username/rootfolder/otherfolder/a/b/node_modules/file2.d.ts] export class a { } @@ -229,9 +229,9 @@ FsWatchesRecursive:: /user/username/rootfolder/otherfolder/a/b/node_modules: {} -Info 46 [16:01:41.000] Running: /user/username/rootfolder/otherfolder/a/b/project/tsconfig.jsonFailedLookupInvalidation -Info 47 [16:01:42.000] Scheduled: /user/username/rootfolder/otherfolder/a/b/project/tsconfig.json -Info 48 [16:01:43.000] Scheduled: *ensureProjectForOpenFiles* +Info 46 [00:01:41.000] Running: /user/username/rootfolder/otherfolder/a/b/project/tsconfig.jsonFailedLookupInvalidation +Info 47 [00:01:42.000] Scheduled: /user/username/rootfolder/otherfolder/a/b/project/tsconfig.json +Info 48 [00:01:43.000] Scheduled: *ensureProjectForOpenFiles* After running timeout callbacks PolledWatches:: @@ -280,17 +280,17 @@ FsWatchesRecursive:: /user/username/rootfolder/otherfolder/a/b/node_modules: {} -Info 49 [16:01:44.000] Running: /user/username/rootfolder/otherfolder/a/b/project/tsconfig.json -Info 50 [16:01:45.000] Starting updateGraphWorker: Project: /user/username/rootfolder/otherfolder/a/b/project/tsconfig.json -Info 51 [16:01:46.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/rootfolder/otherfolder/a/b/node_modules 1 undefined WatchType: node_modules for closed script infos and package.jsons affecting module specifier cache -Info 52 [16:01:47.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/rootfolder/otherfolder/a/b/node_modules 1 undefined WatchType: node_modules for closed script infos and package.jsons affecting module specifier cache -Info 53 [16:01:48.000] DirectoryWatcher:: Close:: WatchInfo: /user/username/rootfolder/otherfolder/a/node_modules 1 undefined Project: /user/username/rootfolder/otherfolder/a/b/project/tsconfig.json WatchType: Failed Lookup Locations -Info 54 [16:01:49.000] Elapsed:: *ms DirectoryWatcher:: Close:: WatchInfo: /user/username/rootfolder/otherfolder/a/node_modules 1 undefined Project: /user/username/rootfolder/otherfolder/a/b/project/tsconfig.json WatchType: Failed Lookup Locations -Info 55 [16:01:50.000] DirectoryWatcher:: Close:: WatchInfo: /user/username/rootfolder/otherfolder/node_modules 1 undefined Project: /user/username/rootfolder/otherfolder/a/b/project/tsconfig.json WatchType: Failed Lookup Locations -Info 56 [16:01:51.000] Elapsed:: *ms DirectoryWatcher:: Close:: WatchInfo: /user/username/rootfolder/otherfolder/node_modules 1 undefined Project: /user/username/rootfolder/otherfolder/a/b/project/tsconfig.json WatchType: Failed Lookup Locations -Info 57 [16:01:52.000] Finishing updateGraphWorker: Project: /user/username/rootfolder/otherfolder/a/b/project/tsconfig.json Version: 3 structureChanged: true structureIsReused:: SafeModules Elapsed:: *ms -Info 58 [16:01:53.000] Project '/user/username/rootfolder/otherfolder/a/b/project/tsconfig.json' (Configured) -Info 59 [16:01:54.000] Files (4) +Info 49 [00:01:44.000] Running: /user/username/rootfolder/otherfolder/a/b/project/tsconfig.json +Info 50 [00:01:45.000] Starting updateGraphWorker: Project: /user/username/rootfolder/otherfolder/a/b/project/tsconfig.json +Info 51 [00:01:46.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/rootfolder/otherfolder/a/b/node_modules 1 undefined WatchType: node_modules for closed script infos and package.jsons affecting module specifier cache +Info 52 [00:01:47.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/rootfolder/otherfolder/a/b/node_modules 1 undefined WatchType: node_modules for closed script infos and package.jsons affecting module specifier cache +Info 53 [00:01:48.000] DirectoryWatcher:: Close:: WatchInfo: /user/username/rootfolder/otherfolder/a/node_modules 1 undefined Project: /user/username/rootfolder/otherfolder/a/b/project/tsconfig.json WatchType: Failed Lookup Locations +Info 54 [00:01:49.000] Elapsed:: *ms DirectoryWatcher:: Close:: WatchInfo: /user/username/rootfolder/otherfolder/a/node_modules 1 undefined Project: /user/username/rootfolder/otherfolder/a/b/project/tsconfig.json WatchType: Failed Lookup Locations +Info 55 [00:01:50.000] DirectoryWatcher:: Close:: WatchInfo: /user/username/rootfolder/otherfolder/node_modules 1 undefined Project: /user/username/rootfolder/otherfolder/a/b/project/tsconfig.json WatchType: Failed Lookup Locations +Info 56 [00:01:51.000] Elapsed:: *ms DirectoryWatcher:: Close:: WatchInfo: /user/username/rootfolder/otherfolder/node_modules 1 undefined Project: /user/username/rootfolder/otherfolder/a/b/project/tsconfig.json WatchType: Failed Lookup Locations +Info 57 [00:01:52.000] Finishing updateGraphWorker: Project: /user/username/rootfolder/otherfolder/a/b/project/tsconfig.json Version: 3 structureChanged: true structureIsReused:: SafeModules Elapsed:: *ms +Info 58 [00:01:53.000] Project '/user/username/rootfolder/otherfolder/a/b/project/tsconfig.json' (Configured) +Info 59 [00:01:54.000] Files (4) /a/lib/lib.d.ts /user/username/rootfolder/otherfolder/a/b/node_modules/file2.d.ts /user/username/rootfolder/otherfolder/a/b/project/file1.ts @@ -306,24 +306,24 @@ Info 59 [16:01:54.000] Files (4) file3.ts Matched by default include pattern '**/*' -Info 60 [16:01:55.000] ----------------------------------------------- -Info 61 [16:01:56.000] Running: *ensureProjectForOpenFiles* -Info 62 [16:01:57.000] Before ensureProjectForOpenFiles: -Info 63 [16:01:58.000] Project '/user/username/rootfolder/otherfolder/a/b/project/tsconfig.json' (Configured) -Info 63 [16:01:59.000] Files (4) - -Info 63 [16:02:00.000] ----------------------------------------------- -Info 63 [16:02:01.000] Open files: -Info 63 [16:02:02.000] FileName: /user/username/rootfolder/otherfolder/a/b/project/file1.ts ProjectRootPath: undefined -Info 63 [16:02:03.000] Projects: /user/username/rootfolder/otherfolder/a/b/project/tsconfig.json -Info 63 [16:02:04.000] After ensureProjectForOpenFiles: -Info 64 [16:02:05.000] Project '/user/username/rootfolder/otherfolder/a/b/project/tsconfig.json' (Configured) -Info 64 [16:02:06.000] Files (4) - -Info 64 [16:02:07.000] ----------------------------------------------- -Info 64 [16:02:08.000] Open files: -Info 64 [16:02:09.000] FileName: /user/username/rootfolder/otherfolder/a/b/project/file1.ts ProjectRootPath: undefined -Info 64 [16:02:10.000] Projects: /user/username/rootfolder/otherfolder/a/b/project/tsconfig.json +Info 60 [00:01:55.000] ----------------------------------------------- +Info 61 [00:01:56.000] Running: *ensureProjectForOpenFiles* +Info 62 [00:01:57.000] Before ensureProjectForOpenFiles: +Info 63 [00:01:58.000] Project '/user/username/rootfolder/otherfolder/a/b/project/tsconfig.json' (Configured) +Info 63 [00:01:59.000] Files (4) + +Info 63 [00:02:00.000] ----------------------------------------------- +Info 63 [00:02:01.000] Open files: +Info 63 [00:02:02.000] FileName: /user/username/rootfolder/otherfolder/a/b/project/file1.ts ProjectRootPath: undefined +Info 63 [00:02:03.000] Projects: /user/username/rootfolder/otherfolder/a/b/project/tsconfig.json +Info 63 [00:02:04.000] After ensureProjectForOpenFiles: +Info 64 [00:02:05.000] Project '/user/username/rootfolder/otherfolder/a/b/project/tsconfig.json' (Configured) +Info 64 [00:02:06.000] Files (4) + +Info 64 [00:02:07.000] ----------------------------------------------- +Info 64 [00:02:08.000] Open files: +Info 64 [00:02:09.000] FileName: /user/username/rootfolder/otherfolder/a/b/project/file1.ts ProjectRootPath: undefined +Info 64 [00:02:10.000] Projects: /user/username/rootfolder/otherfolder/a/b/project/tsconfig.json After running timeout callbacks PolledWatches:: diff --git a/tests/baselines/reference/tsserver/projectUpdatedInBackground/with-noGetErrOnBackgroundUpdate-and-project-is-at-root-level.js b/tests/baselines/reference/tsserver/projectUpdatedInBackground/with-noGetErrOnBackgroundUpdate-and-project-is-at-root-level.js index 94a7c61d7d242..ee76811aea637 100644 --- a/tests/baselines/reference/tsserver/projectUpdatedInBackground/with-noGetErrOnBackgroundUpdate-and-project-is-at-root-level.js +++ b/tests/baselines/reference/tsserver/projectUpdatedInBackground/with-noGetErrOnBackgroundUpdate-and-project-is-at-root-level.js @@ -1,5 +1,5 @@ -Info 0 [16:00:19.000] Provided types map file "/a/lib/typesMap.json" doesn't exist -Info 1 [16:00:20.000] request: +Info 0 [00:00:19.000] Provided types map file "/a/lib/typesMap.json" doesn't exist +Info 1 [00:00:20.000] request: { "command": "open", "arguments": { @@ -38,13 +38,13 @@ FsWatches:: FsWatchesRecursive:: -Info 2 [16:00:21.000] Search path: /a/b/project -Info 3 [16:00:22.000] For info: /a/b/project/file1.ts :: Config file name: /a/b/project/tsconfig.json -Info 4 [16:00:23.000] Creating configuration project /a/b/project/tsconfig.json -Info 5 [16:00:24.000] FileWatcher:: Added:: WatchInfo: /a/b/project/tsconfig.json 2000 undefined Project: /a/b/project/tsconfig.json WatchType: Config file -Info 6 [16:00:25.000] event: +Info 2 [00:00:21.000] Search path: /a/b/project +Info 3 [00:00:22.000] For info: /a/b/project/file1.ts :: Config file name: /a/b/project/tsconfig.json +Info 4 [00:00:23.000] Creating configuration project /a/b/project/tsconfig.json +Info 5 [00:00:24.000] FileWatcher:: Added:: WatchInfo: /a/b/project/tsconfig.json 2000 undefined Project: /a/b/project/tsconfig.json WatchType: Config file +Info 6 [00:00:25.000] event: {"seq":0,"type":"event","event":"projectLoadingStart","body":{"projectName":"/a/b/project/tsconfig.json","reason":"Creating possible configured project for /a/b/project/file1.ts to open"}} -Info 7 [16:00:26.000] Config: /a/b/project/tsconfig.json : { +Info 7 [00:00:26.000] Config: /a/b/project/tsconfig.json : { "rootNames": [ "/a/b/project/file1.ts", "/a/b/project/file3.ts" @@ -54,17 +54,17 @@ Info 7 [16:00:26.000] Config: /a/b/project/tsconfig.json : { "configFilePath": "/a/b/project/tsconfig.json" } } -Info 8 [16:00:27.000] DirectoryWatcher:: Added:: WatchInfo: /a/b/project 1 undefined Config: /a/b/project/tsconfig.json WatchType: Wild card directory -Info 9 [16:00:28.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /a/b/project 1 undefined Config: /a/b/project/tsconfig.json WatchType: Wild card directory -Info 10 [16:00:29.000] Plugins were requested but not running in environment that supports 'require'. Nothing will be loaded -Info 11 [16:00:30.000] FileWatcher:: Added:: WatchInfo: /a/b/project/file3.ts 500 undefined WatchType: Closed Script info -Info 12 [16:00:31.000] Starting updateGraphWorker: Project: /a/b/project/tsconfig.json -Info 13 [16:00:32.000] FileWatcher:: Added:: WatchInfo: /a/lib/lib.d.ts 500 undefined WatchType: Closed Script info -Info 14 [16:00:33.000] DirectoryWatcher:: Added:: WatchInfo: /a/b/project/node_modules 1 undefined Project: /a/b/project/tsconfig.json WatchType: Failed Lookup Locations -Info 15 [16:00:34.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /a/b/project/node_modules 1 undefined Project: /a/b/project/tsconfig.json WatchType: Failed Lookup Locations -Info 16 [16:00:35.000] Finishing updateGraphWorker: Project: /a/b/project/tsconfig.json Version: 1 structureChanged: true structureIsReused:: Not Elapsed:: *ms -Info 17 [16:00:36.000] Project '/a/b/project/tsconfig.json' (Configured) -Info 18 [16:00:37.000] Files (3) +Info 8 [00:00:27.000] DirectoryWatcher:: Added:: WatchInfo: /a/b/project 1 undefined Config: /a/b/project/tsconfig.json WatchType: Wild card directory +Info 9 [00:00:28.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /a/b/project 1 undefined Config: /a/b/project/tsconfig.json WatchType: Wild card directory +Info 10 [00:00:29.000] Plugins were requested but not running in environment that supports 'require'. Nothing will be loaded +Info 11 [00:00:30.000] FileWatcher:: Added:: WatchInfo: /a/b/project/file3.ts 500 undefined WatchType: Closed Script info +Info 12 [00:00:31.000] Starting updateGraphWorker: Project: /a/b/project/tsconfig.json +Info 13 [00:00:32.000] FileWatcher:: Added:: WatchInfo: /a/lib/lib.d.ts 500 undefined WatchType: Closed Script info +Info 14 [00:00:33.000] DirectoryWatcher:: Added:: WatchInfo: /a/b/project/node_modules 1 undefined Project: /a/b/project/tsconfig.json WatchType: Failed Lookup Locations +Info 15 [00:00:34.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /a/b/project/node_modules 1 undefined Project: /a/b/project/tsconfig.json WatchType: Failed Lookup Locations +Info 16 [00:00:35.000] Finishing updateGraphWorker: Project: /a/b/project/tsconfig.json Version: 1 structureChanged: true structureIsReused:: Not Elapsed:: *ms +Info 17 [00:00:36.000] Project '/a/b/project/tsconfig.json' (Configured) +Info 18 [00:00:37.000] Files (3) /a/lib/lib.d.ts /a/b/project/file1.ts /a/b/project/file3.ts @@ -77,20 +77,20 @@ Info 18 [16:00:37.000] Files (3) file3.ts Matched by default include pattern '**/*' -Info 19 [16:00:38.000] ----------------------------------------------- -Info 20 [16:00:39.000] event: +Info 19 [00:00:38.000] ----------------------------------------------- +Info 20 [00:00:39.000] event: {"seq":0,"type":"event","event":"projectLoadingFinish","body":{"projectName":"/a/b/project/tsconfig.json"}} -Info 21 [16:00:40.000] event: +Info 21 [00:00:40.000] event: {"seq":0,"type":"event","event":"telemetry","body":{"telemetryEventName":"projectInfo","payload":{"projectId":"1cf2001c133ce00fd258494c136bfa9707203d90270d151ea0f575d93d990f9d","fileStats":{"js":0,"jsSize":0,"jsx":0,"jsxSize":0,"ts":2,"tsSize":39,"tsx":0,"tsxSize":0,"dts":1,"dtsSize":334,"deferred":0,"deferredSize":0},"compilerOptions":{"typeRoots":[]},"typeAcquisition":{"enable":false,"include":false,"exclude":false},"extends":false,"files":false,"include":false,"exclude":false,"compileOnSave":false,"configFileName":"tsconfig.json","projectType":"configured","languageServiceEnabled":true,"version":"FakeVersion"}}} -Info 22 [16:00:41.000] event: +Info 22 [00:00:41.000] event: {"seq":0,"type":"event","event":"configFileDiag","body":{"triggerFile":"/a/b/project/file1.ts","configFile":"/a/b/project/tsconfig.json","diagnostics":[]}} -Info 23 [16:00:42.000] Project '/a/b/project/tsconfig.json' (Configured) -Info 23 [16:00:43.000] Files (3) +Info 23 [00:00:42.000] Project '/a/b/project/tsconfig.json' (Configured) +Info 23 [00:00:43.000] Files (3) -Info 23 [16:00:44.000] ----------------------------------------------- -Info 23 [16:00:45.000] Open files: -Info 23 [16:00:46.000] FileName: /a/b/project/file1.ts ProjectRootPath: undefined -Info 23 [16:00:47.000] Projects: /a/b/project/tsconfig.json +Info 23 [00:00:44.000] ----------------------------------------------- +Info 23 [00:00:45.000] Open files: +Info 23 [00:00:46.000] FileName: /a/b/project/file1.ts ProjectRootPath: undefined +Info 23 [00:00:47.000] Projects: /a/b/project/tsconfig.json After request PolledWatches:: @@ -109,14 +109,14 @@ FsWatchesRecursive:: /a/b/project: {} -Info 23 [16:00:48.000] response: +Info 23 [00:00:48.000] response: { "responseRequired": false } -Info 24 [16:00:52.000] FileWatcher:: Triggered with /a/b/project/file3.ts 1:: WatchInfo: /a/b/project/file3.ts 500 undefined WatchType: Closed Script info -Info 25 [16:00:53.000] Scheduled: /a/b/project/tsconfig.json -Info 26 [16:00:54.000] Scheduled: *ensureProjectForOpenFiles* -Info 27 [16:00:55.000] Elapsed:: *ms FileWatcher:: Triggered with /a/b/project/file3.ts 1:: WatchInfo: /a/b/project/file3.ts 500 undefined WatchType: Closed Script info +Info 24 [00:00:52.000] FileWatcher:: Triggered with /a/b/project/file3.ts 1:: WatchInfo: /a/b/project/file3.ts 500 undefined WatchType: Closed Script info +Info 25 [00:00:53.000] Scheduled: /a/b/project/tsconfig.json +Info 26 [00:00:54.000] Scheduled: *ensureProjectForOpenFiles* +Info 27 [00:00:55.000] Elapsed:: *ms FileWatcher:: Triggered with /a/b/project/file3.ts 1:: WatchInfo: /a/b/project/file3.ts 500 undefined WatchType: Closed Script info Before checking timeout queue length (2) and running //// [/a/b/project/file3.ts] export class c { }export class d {} @@ -138,29 +138,29 @@ FsWatchesRecursive:: /a/b/project: {} -Info 28 [16:00:56.000] Running: /a/b/project/tsconfig.json -Info 29 [16:00:57.000] Starting updateGraphWorker: Project: /a/b/project/tsconfig.json -Info 30 [16:00:58.000] Finishing updateGraphWorker: Project: /a/b/project/tsconfig.json Version: 2 structureChanged: false structureIsReused:: Completely Elapsed:: *ms -Info 31 [16:00:59.000] Different program with same set of files -Info 32 [16:01:00.000] Running: *ensureProjectForOpenFiles* -Info 33 [16:01:01.000] Before ensureProjectForOpenFiles: -Info 34 [16:01:02.000] Project '/a/b/project/tsconfig.json' (Configured) -Info 34 [16:01:03.000] Files (3) - -Info 34 [16:01:04.000] ----------------------------------------------- -Info 34 [16:01:05.000] Open files: -Info 34 [16:01:06.000] FileName: /a/b/project/file1.ts ProjectRootPath: undefined -Info 34 [16:01:07.000] Projects: /a/b/project/tsconfig.json -Info 34 [16:01:08.000] After ensureProjectForOpenFiles: -Info 35 [16:01:09.000] Project '/a/b/project/tsconfig.json' (Configured) -Info 35 [16:01:10.000] Files (3) - -Info 35 [16:01:11.000] ----------------------------------------------- -Info 35 [16:01:12.000] Open files: -Info 35 [16:01:13.000] FileName: /a/b/project/file1.ts ProjectRootPath: undefined -Info 35 [16:01:14.000] Projects: /a/b/project/tsconfig.json -Info 35 [16:01:15.000] got projects updated in background, updating diagnostics for /a/b/project/file1.ts -Info 36 [16:01:16.000] event: +Info 28 [00:00:56.000] Running: /a/b/project/tsconfig.json +Info 29 [00:00:57.000] Starting updateGraphWorker: Project: /a/b/project/tsconfig.json +Info 30 [00:00:58.000] Finishing updateGraphWorker: Project: /a/b/project/tsconfig.json Version: 2 structureChanged: false structureIsReused:: Completely Elapsed:: *ms +Info 31 [00:00:59.000] Different program with same set of files +Info 32 [00:01:00.000] Running: *ensureProjectForOpenFiles* +Info 33 [00:01:01.000] Before ensureProjectForOpenFiles: +Info 34 [00:01:02.000] Project '/a/b/project/tsconfig.json' (Configured) +Info 34 [00:01:03.000] Files (3) + +Info 34 [00:01:04.000] ----------------------------------------------- +Info 34 [00:01:05.000] Open files: +Info 34 [00:01:06.000] FileName: /a/b/project/file1.ts ProjectRootPath: undefined +Info 34 [00:01:07.000] Projects: /a/b/project/tsconfig.json +Info 34 [00:01:08.000] After ensureProjectForOpenFiles: +Info 35 [00:01:09.000] Project '/a/b/project/tsconfig.json' (Configured) +Info 35 [00:01:10.000] Files (3) + +Info 35 [00:01:11.000] ----------------------------------------------- +Info 35 [00:01:12.000] Open files: +Info 35 [00:01:13.000] FileName: /a/b/project/file1.ts ProjectRootPath: undefined +Info 35 [00:01:14.000] Projects: /a/b/project/tsconfig.json +Info 35 [00:01:15.000] got projects updated in background, updating diagnostics for /a/b/project/file1.ts +Info 36 [00:01:16.000] event: {"seq":0,"type":"event","event":"projectsUpdatedInBackground","body":{"openFiles":["/a/b/project/file1.ts"]}} After checking timeout queue length (2) and running diff --git a/tests/baselines/reference/tsserver/projectUpdatedInBackground/with-noGetErrOnBackgroundUpdate-and-project-is-not-at-root-level.js b/tests/baselines/reference/tsserver/projectUpdatedInBackground/with-noGetErrOnBackgroundUpdate-and-project-is-not-at-root-level.js index 7cab15d7d62c1..4caf578af99b1 100644 --- a/tests/baselines/reference/tsserver/projectUpdatedInBackground/with-noGetErrOnBackgroundUpdate-and-project-is-not-at-root-level.js +++ b/tests/baselines/reference/tsserver/projectUpdatedInBackground/with-noGetErrOnBackgroundUpdate-and-project-is-not-at-root-level.js @@ -1,5 +1,5 @@ -Info 0 [16:00:29.000] Provided types map file "/a/lib/typesMap.json" doesn't exist -Info 1 [16:00:30.000] request: +Info 0 [00:00:29.000] Provided types map file "/a/lib/typesMap.json" doesn't exist +Info 1 [00:00:30.000] request: { "command": "open", "arguments": { @@ -38,13 +38,13 @@ FsWatches:: FsWatchesRecursive:: -Info 2 [16:00:31.000] Search path: /user/username/rootfolder/otherfolder/a/b/project -Info 3 [16:00:32.000] For info: /user/username/rootfolder/otherfolder/a/b/project/file1.ts :: Config file name: /user/username/rootfolder/otherfolder/a/b/project/tsconfig.json -Info 4 [16:00:33.000] Creating configuration project /user/username/rootfolder/otherfolder/a/b/project/tsconfig.json -Info 5 [16:00:34.000] FileWatcher:: Added:: WatchInfo: /user/username/rootfolder/otherfolder/a/b/project/tsconfig.json 2000 undefined Project: /user/username/rootfolder/otherfolder/a/b/project/tsconfig.json WatchType: Config file -Info 6 [16:00:35.000] event: +Info 2 [00:00:31.000] Search path: /user/username/rootfolder/otherfolder/a/b/project +Info 3 [00:00:32.000] For info: /user/username/rootfolder/otherfolder/a/b/project/file1.ts :: Config file name: /user/username/rootfolder/otherfolder/a/b/project/tsconfig.json +Info 4 [00:00:33.000] Creating configuration project /user/username/rootfolder/otherfolder/a/b/project/tsconfig.json +Info 5 [00:00:34.000] FileWatcher:: Added:: WatchInfo: /user/username/rootfolder/otherfolder/a/b/project/tsconfig.json 2000 undefined Project: /user/username/rootfolder/otherfolder/a/b/project/tsconfig.json WatchType: Config file +Info 6 [00:00:35.000] event: {"seq":0,"type":"event","event":"projectLoadingStart","body":{"projectName":"/user/username/rootfolder/otherfolder/a/b/project/tsconfig.json","reason":"Creating possible configured project for /user/username/rootfolder/otherfolder/a/b/project/file1.ts to open"}} -Info 7 [16:00:36.000] Config: /user/username/rootfolder/otherfolder/a/b/project/tsconfig.json : { +Info 7 [00:00:36.000] Config: /user/username/rootfolder/otherfolder/a/b/project/tsconfig.json : { "rootNames": [ "/user/username/rootfolder/otherfolder/a/b/project/file1.ts", "/user/username/rootfolder/otherfolder/a/b/project/file3.ts" @@ -54,23 +54,23 @@ Info 7 [16:00:36.000] Config: /user/username/rootfolder/otherfolder/a/b/proje "configFilePath": "/user/username/rootfolder/otherfolder/a/b/project/tsconfig.json" } } -Info 8 [16:00:37.000] 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 9 [16:00:38.000] 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 10 [16:00:39.000] Plugins were requested but not running in environment that supports 'require'. Nothing will be loaded -Info 11 [16:00:40.000] FileWatcher:: Added:: WatchInfo: /user/username/rootfolder/otherfolder/a/b/project/file3.ts 500 undefined WatchType: Closed Script info -Info 12 [16:00:41.000] Starting updateGraphWorker: Project: /user/username/rootfolder/otherfolder/a/b/project/tsconfig.json -Info 13 [16:00:42.000] FileWatcher:: Added:: WatchInfo: /a/lib/lib.d.ts 500 undefined WatchType: Closed Script info -Info 14 [16:00:43.000] 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 15 [16:00:44.000] 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 16 [16:00:45.000] 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 -Info 17 [16:00:46.000] Elapsed:: *ms 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 -Info 18 [16:00:47.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/rootfolder/otherfolder/a/node_modules 1 undefined Project: /user/username/rootfolder/otherfolder/a/b/project/tsconfig.json WatchType: Failed Lookup Locations -Info 19 [16:00:48.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/rootfolder/otherfolder/a/node_modules 1 undefined Project: /user/username/rootfolder/otherfolder/a/b/project/tsconfig.json WatchType: Failed Lookup Locations -Info 20 [16:00:49.000] 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 21 [16:00:50.000] 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 22 [16:00:51.000] Finishing updateGraphWorker: Project: /user/username/rootfolder/otherfolder/a/b/project/tsconfig.json Version: 1 structureChanged: true structureIsReused:: Not Elapsed:: *ms -Info 23 [16:00:52.000] Project '/user/username/rootfolder/otherfolder/a/b/project/tsconfig.json' (Configured) -Info 24 [16:00:53.000] Files (3) +Info 8 [00:00:37.000] 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 9 [00:00:38.000] 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 10 [00:00:39.000] Plugins were requested but not running in environment that supports 'require'. Nothing will be loaded +Info 11 [00:00:40.000] FileWatcher:: Added:: WatchInfo: /user/username/rootfolder/otherfolder/a/b/project/file3.ts 500 undefined WatchType: Closed Script info +Info 12 [00:00:41.000] Starting updateGraphWorker: Project: /user/username/rootfolder/otherfolder/a/b/project/tsconfig.json +Info 13 [00:00:42.000] FileWatcher:: Added:: WatchInfo: /a/lib/lib.d.ts 500 undefined WatchType: Closed Script info +Info 14 [00:00:43.000] 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 15 [00:00:44.000] 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 16 [00:00:45.000] 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 +Info 17 [00:00:46.000] Elapsed:: *ms 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 +Info 18 [00:00:47.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/rootfolder/otherfolder/a/node_modules 1 undefined Project: /user/username/rootfolder/otherfolder/a/b/project/tsconfig.json WatchType: Failed Lookup Locations +Info 19 [00:00:48.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/rootfolder/otherfolder/a/node_modules 1 undefined Project: /user/username/rootfolder/otherfolder/a/b/project/tsconfig.json WatchType: Failed Lookup Locations +Info 20 [00:00:49.000] 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 21 [00:00:50.000] 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 22 [00:00:51.000] Finishing updateGraphWorker: Project: /user/username/rootfolder/otherfolder/a/b/project/tsconfig.json Version: 1 structureChanged: true structureIsReused:: Not Elapsed:: *ms +Info 23 [00:00:52.000] Project '/user/username/rootfolder/otherfolder/a/b/project/tsconfig.json' (Configured) +Info 24 [00:00:53.000] Files (3) /a/lib/lib.d.ts /user/username/rootfolder/otherfolder/a/b/project/file1.ts /user/username/rootfolder/otherfolder/a/b/project/file3.ts @@ -83,20 +83,20 @@ Info 24 [16:00:53.000] Files (3) file3.ts Matched by default include pattern '**/*' -Info 25 [16:00:54.000] ----------------------------------------------- -Info 26 [16:00:55.000] event: +Info 25 [00:00:54.000] ----------------------------------------------- +Info 26 [00:00:55.000] event: {"seq":0,"type":"event","event":"projectLoadingFinish","body":{"projectName":"/user/username/rootfolder/otherfolder/a/b/project/tsconfig.json"}} -Info 27 [16:00:56.000] event: +Info 27 [00:00:56.000] event: {"seq":0,"type":"event","event":"telemetry","body":{"telemetryEventName":"projectInfo","payload":{"projectId":"79b1a0103ed8006f174a1f979cf698219d4ec4ae3a48594da1085f7a1749553c","fileStats":{"js":0,"jsSize":0,"jsx":0,"jsxSize":0,"ts":2,"tsSize":39,"tsx":0,"tsxSize":0,"dts":1,"dtsSize":334,"deferred":0,"deferredSize":0},"compilerOptions":{"typeRoots":[]},"typeAcquisition":{"enable":false,"include":false,"exclude":false},"extends":false,"files":false,"include":false,"exclude":false,"compileOnSave":false,"configFileName":"tsconfig.json","projectType":"configured","languageServiceEnabled":true,"version":"FakeVersion"}}} -Info 28 [16:00:57.000] event: +Info 28 [00:00:57.000] event: {"seq":0,"type":"event","event":"configFileDiag","body":{"triggerFile":"/user/username/rootfolder/otherfolder/a/b/project/file1.ts","configFile":"/user/username/rootfolder/otherfolder/a/b/project/tsconfig.json","diagnostics":[]}} -Info 29 [16:00:58.000] Project '/user/username/rootfolder/otherfolder/a/b/project/tsconfig.json' (Configured) -Info 29 [16:00:59.000] Files (3) +Info 29 [00:00:58.000] Project '/user/username/rootfolder/otherfolder/a/b/project/tsconfig.json' (Configured) +Info 29 [00:00:59.000] Files (3) -Info 29 [16:01:00.000] ----------------------------------------------- -Info 29 [16:01:01.000] Open files: -Info 29 [16:01:02.000] FileName: /user/username/rootfolder/otherfolder/a/b/project/file1.ts ProjectRootPath: undefined -Info 29 [16:01:03.000] Projects: /user/username/rootfolder/otherfolder/a/b/project/tsconfig.json +Info 29 [00:01:00.000] ----------------------------------------------- +Info 29 [00:01:01.000] Open files: +Info 29 [00:01:02.000] FileName: /user/username/rootfolder/otherfolder/a/b/project/file1.ts ProjectRootPath: undefined +Info 29 [00:01:03.000] Projects: /user/username/rootfolder/otherfolder/a/b/project/tsconfig.json After request PolledWatches:: @@ -121,14 +121,14 @@ FsWatchesRecursive:: /user/username/rootfolder/otherfolder/a/b/project: {} -Info 29 [16:01:04.000] response: +Info 29 [00:01:04.000] response: { "responseRequired": false } -Info 30 [16:01:08.000] FileWatcher:: Triggered with /user/username/rootfolder/otherfolder/a/b/project/file3.ts 1:: WatchInfo: /user/username/rootfolder/otherfolder/a/b/project/file3.ts 500 undefined WatchType: Closed Script info -Info 31 [16:01:09.000] Scheduled: /user/username/rootfolder/otherfolder/a/b/project/tsconfig.json -Info 32 [16:01:10.000] Scheduled: *ensureProjectForOpenFiles* -Info 33 [16:01:11.000] Elapsed:: *ms FileWatcher:: Triggered with /user/username/rootfolder/otherfolder/a/b/project/file3.ts 1:: WatchInfo: /user/username/rootfolder/otherfolder/a/b/project/file3.ts 500 undefined WatchType: Closed Script info +Info 30 [00:01:08.000] FileWatcher:: Triggered with /user/username/rootfolder/otherfolder/a/b/project/file3.ts 1:: WatchInfo: /user/username/rootfolder/otherfolder/a/b/project/file3.ts 500 undefined WatchType: Closed Script info +Info 31 [00:01:09.000] Scheduled: /user/username/rootfolder/otherfolder/a/b/project/tsconfig.json +Info 32 [00:01:10.000] Scheduled: *ensureProjectForOpenFiles* +Info 33 [00:01:11.000] Elapsed:: *ms FileWatcher:: Triggered with /user/username/rootfolder/otherfolder/a/b/project/file3.ts 1:: WatchInfo: /user/username/rootfolder/otherfolder/a/b/project/file3.ts 500 undefined WatchType: Closed Script info Before checking timeout queue length (2) and running //// [/user/username/rootfolder/otherfolder/a/b/project/file3.ts] export class c { }export class d {} @@ -156,29 +156,29 @@ FsWatchesRecursive:: /user/username/rootfolder/otherfolder/a/b/project: {} -Info 34 [16:01:12.000] Running: /user/username/rootfolder/otherfolder/a/b/project/tsconfig.json -Info 35 [16:01:13.000] Starting updateGraphWorker: Project: /user/username/rootfolder/otherfolder/a/b/project/tsconfig.json -Info 36 [16:01:14.000] Finishing updateGraphWorker: Project: /user/username/rootfolder/otherfolder/a/b/project/tsconfig.json Version: 2 structureChanged: false structureIsReused:: Completely Elapsed:: *ms -Info 37 [16:01:15.000] Different program with same set of files -Info 38 [16:01:16.000] Running: *ensureProjectForOpenFiles* -Info 39 [16:01:17.000] Before ensureProjectForOpenFiles: -Info 40 [16:01:18.000] Project '/user/username/rootfolder/otherfolder/a/b/project/tsconfig.json' (Configured) -Info 40 [16:01:19.000] Files (3) - -Info 40 [16:01:20.000] ----------------------------------------------- -Info 40 [16:01:21.000] Open files: -Info 40 [16:01:22.000] FileName: /user/username/rootfolder/otherfolder/a/b/project/file1.ts ProjectRootPath: undefined -Info 40 [16:01:23.000] Projects: /user/username/rootfolder/otherfolder/a/b/project/tsconfig.json -Info 40 [16:01:24.000] After ensureProjectForOpenFiles: -Info 41 [16:01:25.000] Project '/user/username/rootfolder/otherfolder/a/b/project/tsconfig.json' (Configured) -Info 41 [16:01:26.000] Files (3) - -Info 41 [16:01:27.000] ----------------------------------------------- -Info 41 [16:01:28.000] Open files: -Info 41 [16:01:29.000] FileName: /user/username/rootfolder/otherfolder/a/b/project/file1.ts ProjectRootPath: undefined -Info 41 [16:01:30.000] Projects: /user/username/rootfolder/otherfolder/a/b/project/tsconfig.json -Info 41 [16:01:31.000] got projects updated in background, updating diagnostics for /user/username/rootfolder/otherfolder/a/b/project/file1.ts -Info 42 [16:01:32.000] event: +Info 34 [00:01:12.000] Running: /user/username/rootfolder/otherfolder/a/b/project/tsconfig.json +Info 35 [00:01:13.000] Starting updateGraphWorker: Project: /user/username/rootfolder/otherfolder/a/b/project/tsconfig.json +Info 36 [00:01:14.000] Finishing updateGraphWorker: Project: /user/username/rootfolder/otherfolder/a/b/project/tsconfig.json Version: 2 structureChanged: false structureIsReused:: Completely Elapsed:: *ms +Info 37 [00:01:15.000] Different program with same set of files +Info 38 [00:01:16.000] Running: *ensureProjectForOpenFiles* +Info 39 [00:01:17.000] Before ensureProjectForOpenFiles: +Info 40 [00:01:18.000] Project '/user/username/rootfolder/otherfolder/a/b/project/tsconfig.json' (Configured) +Info 40 [00:01:19.000] Files (3) + +Info 40 [00:01:20.000] ----------------------------------------------- +Info 40 [00:01:21.000] Open files: +Info 40 [00:01:22.000] FileName: /user/username/rootfolder/otherfolder/a/b/project/file1.ts ProjectRootPath: undefined +Info 40 [00:01:23.000] Projects: /user/username/rootfolder/otherfolder/a/b/project/tsconfig.json +Info 40 [00:01:24.000] After ensureProjectForOpenFiles: +Info 41 [00:01:25.000] Project '/user/username/rootfolder/otherfolder/a/b/project/tsconfig.json' (Configured) +Info 41 [00:01:26.000] Files (3) + +Info 41 [00:01:27.000] ----------------------------------------------- +Info 41 [00:01:28.000] Open files: +Info 41 [00:01:29.000] FileName: /user/username/rootfolder/otherfolder/a/b/project/file1.ts ProjectRootPath: undefined +Info 41 [00:01:30.000] Projects: /user/username/rootfolder/otherfolder/a/b/project/tsconfig.json +Info 41 [00:01:31.000] got projects updated in background, updating diagnostics for /user/username/rootfolder/otherfolder/a/b/project/file1.ts +Info 42 [00:01:32.000] event: {"seq":0,"type":"event","event":"projectsUpdatedInBackground","body":{"openFiles":["/user/username/rootfolder/otherfolder/a/b/project/file1.ts"]}} After checking timeout queue length (2) and running @@ -204,15 +204,15 @@ FsWatchesRecursive:: /user/username/rootfolder/otherfolder/a/b/project: {} -Info 43 [16:01:36.000] DirectoryWatcher:: Triggered with /user/username/rootfolder/otherfolder/a/b/node_modules :: 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 -Info 44 [16:01:37.000] Scheduled: /user/username/rootfolder/otherfolder/a/b/project/tsconfig.jsonFailedLookupInvalidation -Info 45 [16:01:38.000] Elapsed:: *ms DirectoryWatcher:: Triggered with /user/username/rootfolder/otherfolder/a/b/node_modules :: 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 -Info 46 [16:01:39.000] DirectoryWatcher:: Triggered with /user/username/rootfolder/otherfolder/a/b/node_modules :: 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 -Info 47 [16:01:40.000] Scheduled: /user/username/rootfolder/otherfolder/a/b/project/tsconfig.jsonFailedLookupInvalidation, Cancelled earlier one -Info 48 [16:01:41.000] Elapsed:: *ms DirectoryWatcher:: Triggered with /user/username/rootfolder/otherfolder/a/b/node_modules :: 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 -Info 49 [16:01:44.000] DirectoryWatcher:: Triggered with /user/username/rootfolder/otherfolder/a/b/node_modules/file2.d.ts :: 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 -Info 50 [16:01:45.000] Scheduled: /user/username/rootfolder/otherfolder/a/b/project/tsconfig.jsonFailedLookupInvalidation, Cancelled earlier one -Info 51 [16:01:46.000] Elapsed:: *ms DirectoryWatcher:: Triggered with /user/username/rootfolder/otherfolder/a/b/node_modules/file2.d.ts :: 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 +Info 43 [00:01:36.000] DirectoryWatcher:: Triggered with /user/username/rootfolder/otherfolder/a/b/node_modules :: 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 +Info 44 [00:01:37.000] Scheduled: /user/username/rootfolder/otherfolder/a/b/project/tsconfig.jsonFailedLookupInvalidation +Info 45 [00:01:38.000] Elapsed:: *ms DirectoryWatcher:: Triggered with /user/username/rootfolder/otherfolder/a/b/node_modules :: 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 +Info 46 [00:01:39.000] DirectoryWatcher:: Triggered with /user/username/rootfolder/otherfolder/a/b/node_modules :: 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 +Info 47 [00:01:40.000] Scheduled: /user/username/rootfolder/otherfolder/a/b/project/tsconfig.jsonFailedLookupInvalidation, Cancelled earlier one +Info 48 [00:01:41.000] Elapsed:: *ms DirectoryWatcher:: Triggered with /user/username/rootfolder/otherfolder/a/b/node_modules :: 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 +Info 49 [00:01:44.000] DirectoryWatcher:: Triggered with /user/username/rootfolder/otherfolder/a/b/node_modules/file2.d.ts :: 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 +Info 50 [00:01:45.000] Scheduled: /user/username/rootfolder/otherfolder/a/b/project/tsconfig.jsonFailedLookupInvalidation, Cancelled earlier one +Info 51 [00:01:46.000] Elapsed:: *ms DirectoryWatcher:: Triggered with /user/username/rootfolder/otherfolder/a/b/node_modules/file2.d.ts :: 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 Before running timeout callbacks //// [/user/username/rootfolder/otherfolder/a/b/node_modules/file2.d.ts] export class a { } @@ -240,9 +240,9 @@ FsWatchesRecursive:: /user/username/rootfolder/otherfolder/a/b/node_modules: {} -Info 52 [16:01:47.000] Running: /user/username/rootfolder/otherfolder/a/b/project/tsconfig.jsonFailedLookupInvalidation -Info 53 [16:01:48.000] Scheduled: /user/username/rootfolder/otherfolder/a/b/project/tsconfig.json -Info 54 [16:01:49.000] Scheduled: *ensureProjectForOpenFiles* +Info 52 [00:01:47.000] Running: /user/username/rootfolder/otherfolder/a/b/project/tsconfig.jsonFailedLookupInvalidation +Info 53 [00:01:48.000] Scheduled: /user/username/rootfolder/otherfolder/a/b/project/tsconfig.json +Info 54 [00:01:49.000] Scheduled: *ensureProjectForOpenFiles* After running timeout callbacks PolledWatches:: @@ -291,17 +291,17 @@ FsWatchesRecursive:: /user/username/rootfolder/otherfolder/a/b/node_modules: {} -Info 55 [16:01:50.000] Running: /user/username/rootfolder/otherfolder/a/b/project/tsconfig.json -Info 56 [16:01:51.000] Starting updateGraphWorker: Project: /user/username/rootfolder/otherfolder/a/b/project/tsconfig.json -Info 57 [16:01:52.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/rootfolder/otherfolder/a/b/node_modules 1 undefined WatchType: node_modules for closed script infos and package.jsons affecting module specifier cache -Info 58 [16:01:53.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/rootfolder/otherfolder/a/b/node_modules 1 undefined WatchType: node_modules for closed script infos and package.jsons affecting module specifier cache -Info 59 [16:01:54.000] DirectoryWatcher:: Close:: WatchInfo: /user/username/rootfolder/otherfolder/a/node_modules 1 undefined Project: /user/username/rootfolder/otherfolder/a/b/project/tsconfig.json WatchType: Failed Lookup Locations -Info 60 [16:01:55.000] Elapsed:: *ms DirectoryWatcher:: Close:: WatchInfo: /user/username/rootfolder/otherfolder/a/node_modules 1 undefined Project: /user/username/rootfolder/otherfolder/a/b/project/tsconfig.json WatchType: Failed Lookup Locations -Info 61 [16:01:56.000] DirectoryWatcher:: Close:: WatchInfo: /user/username/rootfolder/otherfolder/node_modules 1 undefined Project: /user/username/rootfolder/otherfolder/a/b/project/tsconfig.json WatchType: Failed Lookup Locations -Info 62 [16:01:57.000] Elapsed:: *ms DirectoryWatcher:: Close:: WatchInfo: /user/username/rootfolder/otherfolder/node_modules 1 undefined Project: /user/username/rootfolder/otherfolder/a/b/project/tsconfig.json WatchType: Failed Lookup Locations -Info 63 [16:01:58.000] Finishing updateGraphWorker: Project: /user/username/rootfolder/otherfolder/a/b/project/tsconfig.json Version: 3 structureChanged: true structureIsReused:: SafeModules Elapsed:: *ms -Info 64 [16:01:59.000] Project '/user/username/rootfolder/otherfolder/a/b/project/tsconfig.json' (Configured) -Info 65 [16:02:00.000] Files (4) +Info 55 [00:01:50.000] Running: /user/username/rootfolder/otherfolder/a/b/project/tsconfig.json +Info 56 [00:01:51.000] Starting updateGraphWorker: Project: /user/username/rootfolder/otherfolder/a/b/project/tsconfig.json +Info 57 [00:01:52.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/rootfolder/otherfolder/a/b/node_modules 1 undefined WatchType: node_modules for closed script infos and package.jsons affecting module specifier cache +Info 58 [00:01:53.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/rootfolder/otherfolder/a/b/node_modules 1 undefined WatchType: node_modules for closed script infos and package.jsons affecting module specifier cache +Info 59 [00:01:54.000] DirectoryWatcher:: Close:: WatchInfo: /user/username/rootfolder/otherfolder/a/node_modules 1 undefined Project: /user/username/rootfolder/otherfolder/a/b/project/tsconfig.json WatchType: Failed Lookup Locations +Info 60 [00:01:55.000] Elapsed:: *ms DirectoryWatcher:: Close:: WatchInfo: /user/username/rootfolder/otherfolder/a/node_modules 1 undefined Project: /user/username/rootfolder/otherfolder/a/b/project/tsconfig.json WatchType: Failed Lookup Locations +Info 61 [00:01:56.000] DirectoryWatcher:: Close:: WatchInfo: /user/username/rootfolder/otherfolder/node_modules 1 undefined Project: /user/username/rootfolder/otherfolder/a/b/project/tsconfig.json WatchType: Failed Lookup Locations +Info 62 [00:01:57.000] Elapsed:: *ms DirectoryWatcher:: Close:: WatchInfo: /user/username/rootfolder/otherfolder/node_modules 1 undefined Project: /user/username/rootfolder/otherfolder/a/b/project/tsconfig.json WatchType: Failed Lookup Locations +Info 63 [00:01:58.000] Finishing updateGraphWorker: Project: /user/username/rootfolder/otherfolder/a/b/project/tsconfig.json Version: 3 structureChanged: true structureIsReused:: SafeModules Elapsed:: *ms +Info 64 [00:01:59.000] Project '/user/username/rootfolder/otherfolder/a/b/project/tsconfig.json' (Configured) +Info 65 [00:02:00.000] Files (4) /a/lib/lib.d.ts /user/username/rootfolder/otherfolder/a/b/node_modules/file2.d.ts /user/username/rootfolder/otherfolder/a/b/project/file1.ts @@ -317,26 +317,26 @@ Info 65 [16:02:00.000] Files (4) file3.ts Matched by default include pattern '**/*' -Info 66 [16:02:01.000] ----------------------------------------------- -Info 67 [16:02:02.000] Running: *ensureProjectForOpenFiles* -Info 68 [16:02:03.000] Before ensureProjectForOpenFiles: -Info 69 [16:02:04.000] Project '/user/username/rootfolder/otherfolder/a/b/project/tsconfig.json' (Configured) -Info 69 [16:02:05.000] Files (4) - -Info 69 [16:02:06.000] ----------------------------------------------- -Info 69 [16:02:07.000] Open files: -Info 69 [16:02:08.000] FileName: /user/username/rootfolder/otherfolder/a/b/project/file1.ts ProjectRootPath: undefined -Info 69 [16:02:09.000] Projects: /user/username/rootfolder/otherfolder/a/b/project/tsconfig.json -Info 69 [16:02:10.000] After ensureProjectForOpenFiles: -Info 70 [16:02:11.000] Project '/user/username/rootfolder/otherfolder/a/b/project/tsconfig.json' (Configured) -Info 70 [16:02:12.000] Files (4) - -Info 70 [16:02:13.000] ----------------------------------------------- -Info 70 [16:02:14.000] Open files: -Info 70 [16:02:15.000] FileName: /user/username/rootfolder/otherfolder/a/b/project/file1.ts ProjectRootPath: undefined -Info 70 [16:02:16.000] Projects: /user/username/rootfolder/otherfolder/a/b/project/tsconfig.json -Info 70 [16:02:17.000] got projects updated in background, updating diagnostics for /user/username/rootfolder/otherfolder/a/b/project/file1.ts -Info 71 [16:02:18.000] event: +Info 66 [00:02:01.000] ----------------------------------------------- +Info 67 [00:02:02.000] Running: *ensureProjectForOpenFiles* +Info 68 [00:02:03.000] Before ensureProjectForOpenFiles: +Info 69 [00:02:04.000] Project '/user/username/rootfolder/otherfolder/a/b/project/tsconfig.json' (Configured) +Info 69 [00:02:05.000] Files (4) + +Info 69 [00:02:06.000] ----------------------------------------------- +Info 69 [00:02:07.000] Open files: +Info 69 [00:02:08.000] FileName: /user/username/rootfolder/otherfolder/a/b/project/file1.ts ProjectRootPath: undefined +Info 69 [00:02:09.000] Projects: /user/username/rootfolder/otherfolder/a/b/project/tsconfig.json +Info 69 [00:02:10.000] After ensureProjectForOpenFiles: +Info 70 [00:02:11.000] Project '/user/username/rootfolder/otherfolder/a/b/project/tsconfig.json' (Configured) +Info 70 [00:02:12.000] Files (4) + +Info 70 [00:02:13.000] ----------------------------------------------- +Info 70 [00:02:14.000] Open files: +Info 70 [00:02:15.000] FileName: /user/username/rootfolder/otherfolder/a/b/project/file1.ts ProjectRootPath: undefined +Info 70 [00:02:16.000] Projects: /user/username/rootfolder/otherfolder/a/b/project/tsconfig.json +Info 70 [00:02:17.000] got projects updated in background, updating diagnostics for /user/username/rootfolder/otherfolder/a/b/project/file1.ts +Info 71 [00:02:18.000] event: {"seq":0,"type":"event","event":"projectsUpdatedInBackground","body":{"openFiles":["/user/username/rootfolder/otherfolder/a/b/project/file1.ts"]}} After running timeout callbacks diff --git a/tests/baselines/reference/tsserver/projectUpdatedInBackground/without-noGetErrOnBackgroundUpdate-and-project-is-at-root-level.js b/tests/baselines/reference/tsserver/projectUpdatedInBackground/without-noGetErrOnBackgroundUpdate-and-project-is-at-root-level.js index 157b618737600..82758f666df8d 100644 --- a/tests/baselines/reference/tsserver/projectUpdatedInBackground/without-noGetErrOnBackgroundUpdate-and-project-is-at-root-level.js +++ b/tests/baselines/reference/tsserver/projectUpdatedInBackground/without-noGetErrOnBackgroundUpdate-and-project-is-at-root-level.js @@ -1,5 +1,5 @@ -Info 0 [16:00:19.000] Provided types map file "/a/lib/typesMap.json" doesn't exist -Info 1 [16:00:20.000] request: +Info 0 [00:00:19.000] Provided types map file "/a/lib/typesMap.json" doesn't exist +Info 1 [00:00:20.000] request: { "command": "open", "arguments": { @@ -38,13 +38,13 @@ FsWatches:: FsWatchesRecursive:: -Info 2 [16:00:21.000] Search path: /a/b/project -Info 3 [16:00:22.000] For info: /a/b/project/file1.ts :: Config file name: /a/b/project/tsconfig.json -Info 4 [16:00:23.000] Creating configuration project /a/b/project/tsconfig.json -Info 5 [16:00:24.000] FileWatcher:: Added:: WatchInfo: /a/b/project/tsconfig.json 2000 undefined Project: /a/b/project/tsconfig.json WatchType: Config file -Info 6 [16:00:25.000] event: +Info 2 [00:00:21.000] Search path: /a/b/project +Info 3 [00:00:22.000] For info: /a/b/project/file1.ts :: Config file name: /a/b/project/tsconfig.json +Info 4 [00:00:23.000] Creating configuration project /a/b/project/tsconfig.json +Info 5 [00:00:24.000] FileWatcher:: Added:: WatchInfo: /a/b/project/tsconfig.json 2000 undefined Project: /a/b/project/tsconfig.json WatchType: Config file +Info 6 [00:00:25.000] event: {"seq":0,"type":"event","event":"projectLoadingStart","body":{"projectName":"/a/b/project/tsconfig.json","reason":"Creating possible configured project for /a/b/project/file1.ts to open"}} -Info 7 [16:00:26.000] Config: /a/b/project/tsconfig.json : { +Info 7 [00:00:26.000] Config: /a/b/project/tsconfig.json : { "rootNames": [ "/a/b/project/file1.ts", "/a/b/project/file3.ts" @@ -54,17 +54,17 @@ Info 7 [16:00:26.000] Config: /a/b/project/tsconfig.json : { "configFilePath": "/a/b/project/tsconfig.json" } } -Info 8 [16:00:27.000] DirectoryWatcher:: Added:: WatchInfo: /a/b/project 1 undefined Config: /a/b/project/tsconfig.json WatchType: Wild card directory -Info 9 [16:00:28.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /a/b/project 1 undefined Config: /a/b/project/tsconfig.json WatchType: Wild card directory -Info 10 [16:00:29.000] Plugins were requested but not running in environment that supports 'require'. Nothing will be loaded -Info 11 [16:00:30.000] FileWatcher:: Added:: WatchInfo: /a/b/project/file3.ts 500 undefined WatchType: Closed Script info -Info 12 [16:00:31.000] Starting updateGraphWorker: Project: /a/b/project/tsconfig.json -Info 13 [16:00:32.000] FileWatcher:: Added:: WatchInfo: /a/lib/lib.d.ts 500 undefined WatchType: Closed Script info -Info 14 [16:00:33.000] DirectoryWatcher:: Added:: WatchInfo: /a/b/project/node_modules 1 undefined Project: /a/b/project/tsconfig.json WatchType: Failed Lookup Locations -Info 15 [16:00:34.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /a/b/project/node_modules 1 undefined Project: /a/b/project/tsconfig.json WatchType: Failed Lookup Locations -Info 16 [16:00:35.000] Finishing updateGraphWorker: Project: /a/b/project/tsconfig.json Version: 1 structureChanged: true structureIsReused:: Not Elapsed:: *ms -Info 17 [16:00:36.000] Project '/a/b/project/tsconfig.json' (Configured) -Info 18 [16:00:37.000] Files (3) +Info 8 [00:00:27.000] DirectoryWatcher:: Added:: WatchInfo: /a/b/project 1 undefined Config: /a/b/project/tsconfig.json WatchType: Wild card directory +Info 9 [00:00:28.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /a/b/project 1 undefined Config: /a/b/project/tsconfig.json WatchType: Wild card directory +Info 10 [00:00:29.000] Plugins were requested but not running in environment that supports 'require'. Nothing will be loaded +Info 11 [00:00:30.000] FileWatcher:: Added:: WatchInfo: /a/b/project/file3.ts 500 undefined WatchType: Closed Script info +Info 12 [00:00:31.000] Starting updateGraphWorker: Project: /a/b/project/tsconfig.json +Info 13 [00:00:32.000] FileWatcher:: Added:: WatchInfo: /a/lib/lib.d.ts 500 undefined WatchType: Closed Script info +Info 14 [00:00:33.000] DirectoryWatcher:: Added:: WatchInfo: /a/b/project/node_modules 1 undefined Project: /a/b/project/tsconfig.json WatchType: Failed Lookup Locations +Info 15 [00:00:34.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /a/b/project/node_modules 1 undefined Project: /a/b/project/tsconfig.json WatchType: Failed Lookup Locations +Info 16 [00:00:35.000] Finishing updateGraphWorker: Project: /a/b/project/tsconfig.json Version: 1 structureChanged: true structureIsReused:: Not Elapsed:: *ms +Info 17 [00:00:36.000] Project '/a/b/project/tsconfig.json' (Configured) +Info 18 [00:00:37.000] Files (3) /a/lib/lib.d.ts /a/b/project/file1.ts /a/b/project/file3.ts @@ -77,20 +77,20 @@ Info 18 [16:00:37.000] Files (3) file3.ts Matched by default include pattern '**/*' -Info 19 [16:00:38.000] ----------------------------------------------- -Info 20 [16:00:39.000] event: +Info 19 [00:00:38.000] ----------------------------------------------- +Info 20 [00:00:39.000] event: {"seq":0,"type":"event","event":"projectLoadingFinish","body":{"projectName":"/a/b/project/tsconfig.json"}} -Info 21 [16:00:40.000] event: +Info 21 [00:00:40.000] event: {"seq":0,"type":"event","event":"telemetry","body":{"telemetryEventName":"projectInfo","payload":{"projectId":"1cf2001c133ce00fd258494c136bfa9707203d90270d151ea0f575d93d990f9d","fileStats":{"js":0,"jsSize":0,"jsx":0,"jsxSize":0,"ts":2,"tsSize":39,"tsx":0,"tsxSize":0,"dts":1,"dtsSize":334,"deferred":0,"deferredSize":0},"compilerOptions":{"typeRoots":[]},"typeAcquisition":{"enable":false,"include":false,"exclude":false},"extends":false,"files":false,"include":false,"exclude":false,"compileOnSave":false,"configFileName":"tsconfig.json","projectType":"configured","languageServiceEnabled":true,"version":"FakeVersion"}}} -Info 22 [16:00:41.000] event: +Info 22 [00:00:41.000] event: {"seq":0,"type":"event","event":"configFileDiag","body":{"triggerFile":"/a/b/project/file1.ts","configFile":"/a/b/project/tsconfig.json","diagnostics":[]}} -Info 23 [16:00:42.000] Project '/a/b/project/tsconfig.json' (Configured) -Info 23 [16:00:43.000] Files (3) +Info 23 [00:00:42.000] Project '/a/b/project/tsconfig.json' (Configured) +Info 23 [00:00:43.000] Files (3) -Info 23 [16:00:44.000] ----------------------------------------------- -Info 23 [16:00:45.000] Open files: -Info 23 [16:00:46.000] FileName: /a/b/project/file1.ts ProjectRootPath: undefined -Info 23 [16:00:47.000] Projects: /a/b/project/tsconfig.json +Info 23 [00:00:44.000] ----------------------------------------------- +Info 23 [00:00:45.000] Open files: +Info 23 [00:00:46.000] FileName: /a/b/project/file1.ts ProjectRootPath: undefined +Info 23 [00:00:47.000] Projects: /a/b/project/tsconfig.json After request PolledWatches:: @@ -109,14 +109,14 @@ FsWatchesRecursive:: /a/b/project: {} -Info 23 [16:00:48.000] response: +Info 23 [00:00:48.000] response: { "responseRequired": false } -Info 24 [16:00:52.000] FileWatcher:: Triggered with /a/b/project/file3.ts 1:: WatchInfo: /a/b/project/file3.ts 500 undefined WatchType: Closed Script info -Info 25 [16:00:53.000] Scheduled: /a/b/project/tsconfig.json -Info 26 [16:00:54.000] Scheduled: *ensureProjectForOpenFiles* -Info 27 [16:00:55.000] Elapsed:: *ms FileWatcher:: Triggered with /a/b/project/file3.ts 1:: WatchInfo: /a/b/project/file3.ts 500 undefined WatchType: Closed Script info +Info 24 [00:00:52.000] FileWatcher:: Triggered with /a/b/project/file3.ts 1:: WatchInfo: /a/b/project/file3.ts 500 undefined WatchType: Closed Script info +Info 25 [00:00:53.000] Scheduled: /a/b/project/tsconfig.json +Info 26 [00:00:54.000] Scheduled: *ensureProjectForOpenFiles* +Info 27 [00:00:55.000] Elapsed:: *ms FileWatcher:: Triggered with /a/b/project/file3.ts 1:: WatchInfo: /a/b/project/file3.ts 500 undefined WatchType: Closed Script info Before checking timeout queue length (2) and running //// [/a/b/project/file3.ts] export class c { }export class d {} @@ -138,29 +138,29 @@ FsWatchesRecursive:: /a/b/project: {} -Info 28 [16:00:56.000] Running: /a/b/project/tsconfig.json -Info 29 [16:00:57.000] Starting updateGraphWorker: Project: /a/b/project/tsconfig.json -Info 30 [16:00:58.000] Finishing updateGraphWorker: Project: /a/b/project/tsconfig.json Version: 2 structureChanged: false structureIsReused:: Completely Elapsed:: *ms -Info 31 [16:00:59.000] Different program with same set of files -Info 32 [16:01:00.000] Running: *ensureProjectForOpenFiles* -Info 33 [16:01:01.000] Before ensureProjectForOpenFiles: -Info 34 [16:01:02.000] Project '/a/b/project/tsconfig.json' (Configured) -Info 34 [16:01:03.000] Files (3) - -Info 34 [16:01:04.000] ----------------------------------------------- -Info 34 [16:01:05.000] Open files: -Info 34 [16:01:06.000] FileName: /a/b/project/file1.ts ProjectRootPath: undefined -Info 34 [16:01:07.000] Projects: /a/b/project/tsconfig.json -Info 34 [16:01:08.000] After ensureProjectForOpenFiles: -Info 35 [16:01:09.000] Project '/a/b/project/tsconfig.json' (Configured) -Info 35 [16:01:10.000] Files (3) - -Info 35 [16:01:11.000] ----------------------------------------------- -Info 35 [16:01:12.000] Open files: -Info 35 [16:01:13.000] FileName: /a/b/project/file1.ts ProjectRootPath: undefined -Info 35 [16:01:14.000] Projects: /a/b/project/tsconfig.json -Info 35 [16:01:15.000] got projects updated in background, updating diagnostics for /a/b/project/file1.ts -Info 36 [16:01:16.000] event: +Info 28 [00:00:56.000] Running: /a/b/project/tsconfig.json +Info 29 [00:00:57.000] Starting updateGraphWorker: Project: /a/b/project/tsconfig.json +Info 30 [00:00:58.000] Finishing updateGraphWorker: Project: /a/b/project/tsconfig.json Version: 2 structureChanged: false structureIsReused:: Completely Elapsed:: *ms +Info 31 [00:00:59.000] Different program with same set of files +Info 32 [00:01:00.000] Running: *ensureProjectForOpenFiles* +Info 33 [00:01:01.000] Before ensureProjectForOpenFiles: +Info 34 [00:01:02.000] Project '/a/b/project/tsconfig.json' (Configured) +Info 34 [00:01:03.000] Files (3) + +Info 34 [00:01:04.000] ----------------------------------------------- +Info 34 [00:01:05.000] Open files: +Info 34 [00:01:06.000] FileName: /a/b/project/file1.ts ProjectRootPath: undefined +Info 34 [00:01:07.000] Projects: /a/b/project/tsconfig.json +Info 34 [00:01:08.000] After ensureProjectForOpenFiles: +Info 35 [00:01:09.000] Project '/a/b/project/tsconfig.json' (Configured) +Info 35 [00:01:10.000] Files (3) + +Info 35 [00:01:11.000] ----------------------------------------------- +Info 35 [00:01:12.000] Open files: +Info 35 [00:01:13.000] FileName: /a/b/project/file1.ts ProjectRootPath: undefined +Info 35 [00:01:14.000] Projects: /a/b/project/tsconfig.json +Info 35 [00:01:15.000] got projects updated in background, updating diagnostics for /a/b/project/file1.ts +Info 36 [00:01:16.000] event: {"seq":0,"type":"event","event":"projectsUpdatedInBackground","body":{"openFiles":["/a/b/project/file1.ts"]}} After checking timeout queue length (2) and running @@ -201,7 +201,7 @@ FsWatchesRecursive:: /a/b/project: {} -Info 37 [16:01:22.000] event: +Info 37 [00:01:22.000] event: {"seq":0,"type":"event","event":"syntaxDiag","body":{"file":"/a/b/project/file1.ts","diagnostics":[]}} After running timeout callbacks diff --git a/tests/baselines/reference/tsserver/projectUpdatedInBackground/without-noGetErrOnBackgroundUpdate-and-project-is-not-at-root-level.js b/tests/baselines/reference/tsserver/projectUpdatedInBackground/without-noGetErrOnBackgroundUpdate-and-project-is-not-at-root-level.js index f60cd8a3a4c46..2f7bebb4a2c74 100644 --- a/tests/baselines/reference/tsserver/projectUpdatedInBackground/without-noGetErrOnBackgroundUpdate-and-project-is-not-at-root-level.js +++ b/tests/baselines/reference/tsserver/projectUpdatedInBackground/without-noGetErrOnBackgroundUpdate-and-project-is-not-at-root-level.js @@ -1,5 +1,5 @@ -Info 0 [16:00:29.000] Provided types map file "/a/lib/typesMap.json" doesn't exist -Info 1 [16:00:30.000] request: +Info 0 [00:00:29.000] Provided types map file "/a/lib/typesMap.json" doesn't exist +Info 1 [00:00:30.000] request: { "command": "open", "arguments": { @@ -38,13 +38,13 @@ FsWatches:: FsWatchesRecursive:: -Info 2 [16:00:31.000] Search path: /user/username/rootfolder/otherfolder/a/b/project -Info 3 [16:00:32.000] For info: /user/username/rootfolder/otherfolder/a/b/project/file1.ts :: Config file name: /user/username/rootfolder/otherfolder/a/b/project/tsconfig.json -Info 4 [16:00:33.000] Creating configuration project /user/username/rootfolder/otherfolder/a/b/project/tsconfig.json -Info 5 [16:00:34.000] FileWatcher:: Added:: WatchInfo: /user/username/rootfolder/otherfolder/a/b/project/tsconfig.json 2000 undefined Project: /user/username/rootfolder/otherfolder/a/b/project/tsconfig.json WatchType: Config file -Info 6 [16:00:35.000] event: +Info 2 [00:00:31.000] Search path: /user/username/rootfolder/otherfolder/a/b/project +Info 3 [00:00:32.000] For info: /user/username/rootfolder/otherfolder/a/b/project/file1.ts :: Config file name: /user/username/rootfolder/otherfolder/a/b/project/tsconfig.json +Info 4 [00:00:33.000] Creating configuration project /user/username/rootfolder/otherfolder/a/b/project/tsconfig.json +Info 5 [00:00:34.000] FileWatcher:: Added:: WatchInfo: /user/username/rootfolder/otherfolder/a/b/project/tsconfig.json 2000 undefined Project: /user/username/rootfolder/otherfolder/a/b/project/tsconfig.json WatchType: Config file +Info 6 [00:00:35.000] event: {"seq":0,"type":"event","event":"projectLoadingStart","body":{"projectName":"/user/username/rootfolder/otherfolder/a/b/project/tsconfig.json","reason":"Creating possible configured project for /user/username/rootfolder/otherfolder/a/b/project/file1.ts to open"}} -Info 7 [16:00:36.000] Config: /user/username/rootfolder/otherfolder/a/b/project/tsconfig.json : { +Info 7 [00:00:36.000] Config: /user/username/rootfolder/otherfolder/a/b/project/tsconfig.json : { "rootNames": [ "/user/username/rootfolder/otherfolder/a/b/project/file1.ts", "/user/username/rootfolder/otherfolder/a/b/project/file3.ts" @@ -54,23 +54,23 @@ Info 7 [16:00:36.000] Config: /user/username/rootfolder/otherfolder/a/b/proje "configFilePath": "/user/username/rootfolder/otherfolder/a/b/project/tsconfig.json" } } -Info 8 [16:00:37.000] 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 9 [16:00:38.000] 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 10 [16:00:39.000] Plugins were requested but not running in environment that supports 'require'. Nothing will be loaded -Info 11 [16:00:40.000] FileWatcher:: Added:: WatchInfo: /user/username/rootfolder/otherfolder/a/b/project/file3.ts 500 undefined WatchType: Closed Script info -Info 12 [16:00:41.000] Starting updateGraphWorker: Project: /user/username/rootfolder/otherfolder/a/b/project/tsconfig.json -Info 13 [16:00:42.000] FileWatcher:: Added:: WatchInfo: /a/lib/lib.d.ts 500 undefined WatchType: Closed Script info -Info 14 [16:00:43.000] 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 15 [16:00:44.000] 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 16 [16:00:45.000] 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 -Info 17 [16:00:46.000] Elapsed:: *ms 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 -Info 18 [16:00:47.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/rootfolder/otherfolder/a/node_modules 1 undefined Project: /user/username/rootfolder/otherfolder/a/b/project/tsconfig.json WatchType: Failed Lookup Locations -Info 19 [16:00:48.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/rootfolder/otherfolder/a/node_modules 1 undefined Project: /user/username/rootfolder/otherfolder/a/b/project/tsconfig.json WatchType: Failed Lookup Locations -Info 20 [16:00:49.000] 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 21 [16:00:50.000] 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 22 [16:00:51.000] Finishing updateGraphWorker: Project: /user/username/rootfolder/otherfolder/a/b/project/tsconfig.json Version: 1 structureChanged: true structureIsReused:: Not Elapsed:: *ms -Info 23 [16:00:52.000] Project '/user/username/rootfolder/otherfolder/a/b/project/tsconfig.json' (Configured) -Info 24 [16:00:53.000] Files (3) +Info 8 [00:00:37.000] 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 9 [00:00:38.000] 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 10 [00:00:39.000] Plugins were requested but not running in environment that supports 'require'. Nothing will be loaded +Info 11 [00:00:40.000] FileWatcher:: Added:: WatchInfo: /user/username/rootfolder/otherfolder/a/b/project/file3.ts 500 undefined WatchType: Closed Script info +Info 12 [00:00:41.000] Starting updateGraphWorker: Project: /user/username/rootfolder/otherfolder/a/b/project/tsconfig.json +Info 13 [00:00:42.000] FileWatcher:: Added:: WatchInfo: /a/lib/lib.d.ts 500 undefined WatchType: Closed Script info +Info 14 [00:00:43.000] 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 15 [00:00:44.000] 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 16 [00:00:45.000] 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 +Info 17 [00:00:46.000] Elapsed:: *ms 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 +Info 18 [00:00:47.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/rootfolder/otherfolder/a/node_modules 1 undefined Project: /user/username/rootfolder/otherfolder/a/b/project/tsconfig.json WatchType: Failed Lookup Locations +Info 19 [00:00:48.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/rootfolder/otherfolder/a/node_modules 1 undefined Project: /user/username/rootfolder/otherfolder/a/b/project/tsconfig.json WatchType: Failed Lookup Locations +Info 20 [00:00:49.000] 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 21 [00:00:50.000] 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 22 [00:00:51.000] Finishing updateGraphWorker: Project: /user/username/rootfolder/otherfolder/a/b/project/tsconfig.json Version: 1 structureChanged: true structureIsReused:: Not Elapsed:: *ms +Info 23 [00:00:52.000] Project '/user/username/rootfolder/otherfolder/a/b/project/tsconfig.json' (Configured) +Info 24 [00:00:53.000] Files (3) /a/lib/lib.d.ts /user/username/rootfolder/otherfolder/a/b/project/file1.ts /user/username/rootfolder/otherfolder/a/b/project/file3.ts @@ -83,20 +83,20 @@ Info 24 [16:00:53.000] Files (3) file3.ts Matched by default include pattern '**/*' -Info 25 [16:00:54.000] ----------------------------------------------- -Info 26 [16:00:55.000] event: +Info 25 [00:00:54.000] ----------------------------------------------- +Info 26 [00:00:55.000] event: {"seq":0,"type":"event","event":"projectLoadingFinish","body":{"projectName":"/user/username/rootfolder/otherfolder/a/b/project/tsconfig.json"}} -Info 27 [16:00:56.000] event: +Info 27 [00:00:56.000] event: {"seq":0,"type":"event","event":"telemetry","body":{"telemetryEventName":"projectInfo","payload":{"projectId":"79b1a0103ed8006f174a1f979cf698219d4ec4ae3a48594da1085f7a1749553c","fileStats":{"js":0,"jsSize":0,"jsx":0,"jsxSize":0,"ts":2,"tsSize":39,"tsx":0,"tsxSize":0,"dts":1,"dtsSize":334,"deferred":0,"deferredSize":0},"compilerOptions":{"typeRoots":[]},"typeAcquisition":{"enable":false,"include":false,"exclude":false},"extends":false,"files":false,"include":false,"exclude":false,"compileOnSave":false,"configFileName":"tsconfig.json","projectType":"configured","languageServiceEnabled":true,"version":"FakeVersion"}}} -Info 28 [16:00:57.000] event: +Info 28 [00:00:57.000] event: {"seq":0,"type":"event","event":"configFileDiag","body":{"triggerFile":"/user/username/rootfolder/otherfolder/a/b/project/file1.ts","configFile":"/user/username/rootfolder/otherfolder/a/b/project/tsconfig.json","diagnostics":[]}} -Info 29 [16:00:58.000] Project '/user/username/rootfolder/otherfolder/a/b/project/tsconfig.json' (Configured) -Info 29 [16:00:59.000] Files (3) +Info 29 [00:00:58.000] Project '/user/username/rootfolder/otherfolder/a/b/project/tsconfig.json' (Configured) +Info 29 [00:00:59.000] Files (3) -Info 29 [16:01:00.000] ----------------------------------------------- -Info 29 [16:01:01.000] Open files: -Info 29 [16:01:02.000] FileName: /user/username/rootfolder/otherfolder/a/b/project/file1.ts ProjectRootPath: undefined -Info 29 [16:01:03.000] Projects: /user/username/rootfolder/otherfolder/a/b/project/tsconfig.json +Info 29 [00:01:00.000] ----------------------------------------------- +Info 29 [00:01:01.000] Open files: +Info 29 [00:01:02.000] FileName: /user/username/rootfolder/otherfolder/a/b/project/file1.ts ProjectRootPath: undefined +Info 29 [00:01:03.000] Projects: /user/username/rootfolder/otherfolder/a/b/project/tsconfig.json After request PolledWatches:: @@ -121,14 +121,14 @@ FsWatchesRecursive:: /user/username/rootfolder/otherfolder/a/b/project: {} -Info 29 [16:01:04.000] response: +Info 29 [00:01:04.000] response: { "responseRequired": false } -Info 30 [16:01:08.000] FileWatcher:: Triggered with /user/username/rootfolder/otherfolder/a/b/project/file3.ts 1:: WatchInfo: /user/username/rootfolder/otherfolder/a/b/project/file3.ts 500 undefined WatchType: Closed Script info -Info 31 [16:01:09.000] Scheduled: /user/username/rootfolder/otherfolder/a/b/project/tsconfig.json -Info 32 [16:01:10.000] Scheduled: *ensureProjectForOpenFiles* -Info 33 [16:01:11.000] Elapsed:: *ms FileWatcher:: Triggered with /user/username/rootfolder/otherfolder/a/b/project/file3.ts 1:: WatchInfo: /user/username/rootfolder/otherfolder/a/b/project/file3.ts 500 undefined WatchType: Closed Script info +Info 30 [00:01:08.000] FileWatcher:: Triggered with /user/username/rootfolder/otherfolder/a/b/project/file3.ts 1:: WatchInfo: /user/username/rootfolder/otherfolder/a/b/project/file3.ts 500 undefined WatchType: Closed Script info +Info 31 [00:01:09.000] Scheduled: /user/username/rootfolder/otherfolder/a/b/project/tsconfig.json +Info 32 [00:01:10.000] Scheduled: *ensureProjectForOpenFiles* +Info 33 [00:01:11.000] Elapsed:: *ms FileWatcher:: Triggered with /user/username/rootfolder/otherfolder/a/b/project/file3.ts 1:: WatchInfo: /user/username/rootfolder/otherfolder/a/b/project/file3.ts 500 undefined WatchType: Closed Script info Before checking timeout queue length (2) and running //// [/user/username/rootfolder/otherfolder/a/b/project/file3.ts] export class c { }export class d {} @@ -156,29 +156,29 @@ FsWatchesRecursive:: /user/username/rootfolder/otherfolder/a/b/project: {} -Info 34 [16:01:12.000] Running: /user/username/rootfolder/otherfolder/a/b/project/tsconfig.json -Info 35 [16:01:13.000] Starting updateGraphWorker: Project: /user/username/rootfolder/otherfolder/a/b/project/tsconfig.json -Info 36 [16:01:14.000] Finishing updateGraphWorker: Project: /user/username/rootfolder/otherfolder/a/b/project/tsconfig.json Version: 2 structureChanged: false structureIsReused:: Completely Elapsed:: *ms -Info 37 [16:01:15.000] Different program with same set of files -Info 38 [16:01:16.000] Running: *ensureProjectForOpenFiles* -Info 39 [16:01:17.000] Before ensureProjectForOpenFiles: -Info 40 [16:01:18.000] Project '/user/username/rootfolder/otherfolder/a/b/project/tsconfig.json' (Configured) -Info 40 [16:01:19.000] Files (3) - -Info 40 [16:01:20.000] ----------------------------------------------- -Info 40 [16:01:21.000] Open files: -Info 40 [16:01:22.000] FileName: /user/username/rootfolder/otherfolder/a/b/project/file1.ts ProjectRootPath: undefined -Info 40 [16:01:23.000] Projects: /user/username/rootfolder/otherfolder/a/b/project/tsconfig.json -Info 40 [16:01:24.000] After ensureProjectForOpenFiles: -Info 41 [16:01:25.000] Project '/user/username/rootfolder/otherfolder/a/b/project/tsconfig.json' (Configured) -Info 41 [16:01:26.000] Files (3) - -Info 41 [16:01:27.000] ----------------------------------------------- -Info 41 [16:01:28.000] Open files: -Info 41 [16:01:29.000] FileName: /user/username/rootfolder/otherfolder/a/b/project/file1.ts ProjectRootPath: undefined -Info 41 [16:01:30.000] Projects: /user/username/rootfolder/otherfolder/a/b/project/tsconfig.json -Info 41 [16:01:31.000] got projects updated in background, updating diagnostics for /user/username/rootfolder/otherfolder/a/b/project/file1.ts -Info 42 [16:01:32.000] event: +Info 34 [00:01:12.000] Running: /user/username/rootfolder/otherfolder/a/b/project/tsconfig.json +Info 35 [00:01:13.000] Starting updateGraphWorker: Project: /user/username/rootfolder/otherfolder/a/b/project/tsconfig.json +Info 36 [00:01:14.000] Finishing updateGraphWorker: Project: /user/username/rootfolder/otherfolder/a/b/project/tsconfig.json Version: 2 structureChanged: false structureIsReused:: Completely Elapsed:: *ms +Info 37 [00:01:15.000] Different program with same set of files +Info 38 [00:01:16.000] Running: *ensureProjectForOpenFiles* +Info 39 [00:01:17.000] Before ensureProjectForOpenFiles: +Info 40 [00:01:18.000] Project '/user/username/rootfolder/otherfolder/a/b/project/tsconfig.json' (Configured) +Info 40 [00:01:19.000] Files (3) + +Info 40 [00:01:20.000] ----------------------------------------------- +Info 40 [00:01:21.000] Open files: +Info 40 [00:01:22.000] FileName: /user/username/rootfolder/otherfolder/a/b/project/file1.ts ProjectRootPath: undefined +Info 40 [00:01:23.000] Projects: /user/username/rootfolder/otherfolder/a/b/project/tsconfig.json +Info 40 [00:01:24.000] After ensureProjectForOpenFiles: +Info 41 [00:01:25.000] Project '/user/username/rootfolder/otherfolder/a/b/project/tsconfig.json' (Configured) +Info 41 [00:01:26.000] Files (3) + +Info 41 [00:01:27.000] ----------------------------------------------- +Info 41 [00:01:28.000] Open files: +Info 41 [00:01:29.000] FileName: /user/username/rootfolder/otherfolder/a/b/project/file1.ts ProjectRootPath: undefined +Info 41 [00:01:30.000] Projects: /user/username/rootfolder/otherfolder/a/b/project/tsconfig.json +Info 41 [00:01:31.000] got projects updated in background, updating diagnostics for /user/username/rootfolder/otherfolder/a/b/project/file1.ts +Info 42 [00:01:32.000] event: {"seq":0,"type":"event","event":"projectsUpdatedInBackground","body":{"openFiles":["/user/username/rootfolder/otherfolder/a/b/project/file1.ts"]}} After checking timeout queue length (2) and running @@ -204,15 +204,15 @@ FsWatchesRecursive:: /user/username/rootfolder/otherfolder/a/b/project: {} -Info 43 [16:01:36.000] DirectoryWatcher:: Triggered with /user/username/rootfolder/otherfolder/a/b/node_modules :: 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 -Info 44 [16:01:37.000] Scheduled: /user/username/rootfolder/otherfolder/a/b/project/tsconfig.jsonFailedLookupInvalidation -Info 45 [16:01:38.000] Elapsed:: *ms DirectoryWatcher:: Triggered with /user/username/rootfolder/otherfolder/a/b/node_modules :: 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 -Info 46 [16:01:39.000] DirectoryWatcher:: Triggered with /user/username/rootfolder/otherfolder/a/b/node_modules :: 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 -Info 47 [16:01:40.000] Scheduled: /user/username/rootfolder/otherfolder/a/b/project/tsconfig.jsonFailedLookupInvalidation, Cancelled earlier one -Info 48 [16:01:41.000] Elapsed:: *ms DirectoryWatcher:: Triggered with /user/username/rootfolder/otherfolder/a/b/node_modules :: 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 -Info 49 [16:01:44.000] DirectoryWatcher:: Triggered with /user/username/rootfolder/otherfolder/a/b/node_modules/file2.d.ts :: 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 -Info 50 [16:01:45.000] Scheduled: /user/username/rootfolder/otherfolder/a/b/project/tsconfig.jsonFailedLookupInvalidation, Cancelled earlier one -Info 51 [16:01:46.000] Elapsed:: *ms DirectoryWatcher:: Triggered with /user/username/rootfolder/otherfolder/a/b/node_modules/file2.d.ts :: 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 +Info 43 [00:01:36.000] DirectoryWatcher:: Triggered with /user/username/rootfolder/otherfolder/a/b/node_modules :: 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 +Info 44 [00:01:37.000] Scheduled: /user/username/rootfolder/otherfolder/a/b/project/tsconfig.jsonFailedLookupInvalidation +Info 45 [00:01:38.000] Elapsed:: *ms DirectoryWatcher:: Triggered with /user/username/rootfolder/otherfolder/a/b/node_modules :: 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 +Info 46 [00:01:39.000] DirectoryWatcher:: Triggered with /user/username/rootfolder/otherfolder/a/b/node_modules :: 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 +Info 47 [00:01:40.000] Scheduled: /user/username/rootfolder/otherfolder/a/b/project/tsconfig.jsonFailedLookupInvalidation, Cancelled earlier one +Info 48 [00:01:41.000] Elapsed:: *ms DirectoryWatcher:: Triggered with /user/username/rootfolder/otherfolder/a/b/node_modules :: 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 +Info 49 [00:01:44.000] DirectoryWatcher:: Triggered with /user/username/rootfolder/otherfolder/a/b/node_modules/file2.d.ts :: 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 +Info 50 [00:01:45.000] Scheduled: /user/username/rootfolder/otherfolder/a/b/project/tsconfig.jsonFailedLookupInvalidation, Cancelled earlier one +Info 51 [00:01:46.000] Elapsed:: *ms DirectoryWatcher:: Triggered with /user/username/rootfolder/otherfolder/a/b/node_modules/file2.d.ts :: 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 Before running timeout callbacks //// [/user/username/rootfolder/otherfolder/a/b/node_modules/file2.d.ts] export class a { } @@ -240,17 +240,17 @@ FsWatchesRecursive:: /user/username/rootfolder/otherfolder/a/b/node_modules: {} -Info 52 [16:01:47.000] Scheduled: *ensureProjectForOpenFiles* -Info 53 [16:01:48.000] Starting updateGraphWorker: Project: /user/username/rootfolder/otherfolder/a/b/project/tsconfig.json -Info 54 [16:01:49.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/rootfolder/otherfolder/a/b/node_modules 1 undefined WatchType: node_modules for closed script infos and package.jsons affecting module specifier cache -Info 55 [16:01:50.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/rootfolder/otherfolder/a/b/node_modules 1 undefined WatchType: node_modules for closed script infos and package.jsons affecting module specifier cache -Info 56 [16:01:51.000] DirectoryWatcher:: Close:: WatchInfo: /user/username/rootfolder/otherfolder/a/node_modules 1 undefined Project: /user/username/rootfolder/otherfolder/a/b/project/tsconfig.json WatchType: Failed Lookup Locations -Info 57 [16:01:52.000] Elapsed:: *ms DirectoryWatcher:: Close:: WatchInfo: /user/username/rootfolder/otherfolder/a/node_modules 1 undefined Project: /user/username/rootfolder/otherfolder/a/b/project/tsconfig.json WatchType: Failed Lookup Locations -Info 58 [16:01:53.000] DirectoryWatcher:: Close:: WatchInfo: /user/username/rootfolder/otherfolder/node_modules 1 undefined Project: /user/username/rootfolder/otherfolder/a/b/project/tsconfig.json WatchType: Failed Lookup Locations -Info 59 [16:01:54.000] Elapsed:: *ms DirectoryWatcher:: Close:: WatchInfo: /user/username/rootfolder/otherfolder/node_modules 1 undefined Project: /user/username/rootfolder/otherfolder/a/b/project/tsconfig.json WatchType: Failed Lookup Locations -Info 60 [16:01:55.000] Finishing updateGraphWorker: Project: /user/username/rootfolder/otherfolder/a/b/project/tsconfig.json Version: 3 structureChanged: true structureIsReused:: SafeModules Elapsed:: *ms -Info 61 [16:01:56.000] Project '/user/username/rootfolder/otherfolder/a/b/project/tsconfig.json' (Configured) -Info 62 [16:01:57.000] Files (4) +Info 52 [00:01:47.000] Scheduled: *ensureProjectForOpenFiles* +Info 53 [00:01:48.000] Starting updateGraphWorker: Project: /user/username/rootfolder/otherfolder/a/b/project/tsconfig.json +Info 54 [00:01:49.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/rootfolder/otherfolder/a/b/node_modules 1 undefined WatchType: node_modules for closed script infos and package.jsons affecting module specifier cache +Info 55 [00:01:50.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/rootfolder/otherfolder/a/b/node_modules 1 undefined WatchType: node_modules for closed script infos and package.jsons affecting module specifier cache +Info 56 [00:01:51.000] DirectoryWatcher:: Close:: WatchInfo: /user/username/rootfolder/otherfolder/a/node_modules 1 undefined Project: /user/username/rootfolder/otherfolder/a/b/project/tsconfig.json WatchType: Failed Lookup Locations +Info 57 [00:01:52.000] Elapsed:: *ms DirectoryWatcher:: Close:: WatchInfo: /user/username/rootfolder/otherfolder/a/node_modules 1 undefined Project: /user/username/rootfolder/otherfolder/a/b/project/tsconfig.json WatchType: Failed Lookup Locations +Info 58 [00:01:53.000] DirectoryWatcher:: Close:: WatchInfo: /user/username/rootfolder/otherfolder/node_modules 1 undefined Project: /user/username/rootfolder/otherfolder/a/b/project/tsconfig.json WatchType: Failed Lookup Locations +Info 59 [00:01:54.000] Elapsed:: *ms DirectoryWatcher:: Close:: WatchInfo: /user/username/rootfolder/otherfolder/node_modules 1 undefined Project: /user/username/rootfolder/otherfolder/a/b/project/tsconfig.json WatchType: Failed Lookup Locations +Info 60 [00:01:55.000] Finishing updateGraphWorker: Project: /user/username/rootfolder/otherfolder/a/b/project/tsconfig.json Version: 3 structureChanged: true structureIsReused:: SafeModules Elapsed:: *ms +Info 61 [00:01:56.000] Project '/user/username/rootfolder/otherfolder/a/b/project/tsconfig.json' (Configured) +Info 62 [00:01:57.000] Files (4) /a/lib/lib.d.ts /user/username/rootfolder/otherfolder/a/b/node_modules/file2.d.ts /user/username/rootfolder/otherfolder/a/b/project/file1.ts @@ -266,8 +266,8 @@ Info 62 [16:01:57.000] Files (4) file3.ts Matched by default include pattern '**/*' -Info 63 [16:01:58.000] ----------------------------------------------- -Info 64 [16:01:59.000] event: +Info 63 [00:01:58.000] ----------------------------------------------- +Info 64 [00:01:59.000] event: {"seq":0,"type":"event","event":"syntaxDiag","body":{"file":"/user/username/rootfolder/otherfolder/a/b/project/file1.ts","diagnostics":[]}} After running timeout callbacks @@ -309,25 +309,25 @@ FsWatchesRecursive:: /user/username/rootfolder/otherfolder/a/b/node_modules: {} -Info 65 [16:02:00.000] Running: *ensureProjectForOpenFiles* -Info 66 [16:02:01.000] Before ensureProjectForOpenFiles: -Info 67 [16:02:02.000] Project '/user/username/rootfolder/otherfolder/a/b/project/tsconfig.json' (Configured) -Info 67 [16:02:03.000] Files (4) - -Info 67 [16:02:04.000] ----------------------------------------------- -Info 67 [16:02:05.000] Open files: -Info 67 [16:02:06.000] FileName: /user/username/rootfolder/otherfolder/a/b/project/file1.ts ProjectRootPath: undefined -Info 67 [16:02:07.000] Projects: /user/username/rootfolder/otherfolder/a/b/project/tsconfig.json -Info 67 [16:02:08.000] After ensureProjectForOpenFiles: -Info 68 [16:02:09.000] Project '/user/username/rootfolder/otherfolder/a/b/project/tsconfig.json' (Configured) -Info 68 [16:02:10.000] Files (4) - -Info 68 [16:02:11.000] ----------------------------------------------- -Info 68 [16:02:12.000] Open files: -Info 68 [16:02:13.000] FileName: /user/username/rootfolder/otherfolder/a/b/project/file1.ts ProjectRootPath: undefined -Info 68 [16:02:14.000] Projects: /user/username/rootfolder/otherfolder/a/b/project/tsconfig.json -Info 68 [16:02:15.000] got projects updated in background, updating diagnostics for /user/username/rootfolder/otherfolder/a/b/project/file1.ts -Info 69 [16:02:16.000] event: +Info 65 [00:02:00.000] Running: *ensureProjectForOpenFiles* +Info 66 [00:02:01.000] Before ensureProjectForOpenFiles: +Info 67 [00:02:02.000] Project '/user/username/rootfolder/otherfolder/a/b/project/tsconfig.json' (Configured) +Info 67 [00:02:03.000] Files (4) + +Info 67 [00:02:04.000] ----------------------------------------------- +Info 67 [00:02:05.000] Open files: +Info 67 [00:02:06.000] FileName: /user/username/rootfolder/otherfolder/a/b/project/file1.ts ProjectRootPath: undefined +Info 67 [00:02:07.000] Projects: /user/username/rootfolder/otherfolder/a/b/project/tsconfig.json +Info 67 [00:02:08.000] After ensureProjectForOpenFiles: +Info 68 [00:02:09.000] Project '/user/username/rootfolder/otherfolder/a/b/project/tsconfig.json' (Configured) +Info 68 [00:02:10.000] Files (4) + +Info 68 [00:02:11.000] ----------------------------------------------- +Info 68 [00:02:12.000] Open files: +Info 68 [00:02:13.000] FileName: /user/username/rootfolder/otherfolder/a/b/project/file1.ts ProjectRootPath: undefined +Info 68 [00:02:14.000] Projects: /user/username/rootfolder/otherfolder/a/b/project/tsconfig.json +Info 68 [00:02:15.000] got projects updated in background, updating diagnostics for /user/username/rootfolder/otherfolder/a/b/project/file1.ts +Info 69 [00:02:16.000] event: {"seq":0,"type":"event","event":"projectsUpdatedInBackground","body":{"openFiles":["/user/username/rootfolder/otherfolder/a/b/project/file1.ts"]}} After running timeout callbacks 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 5315529cca5ce..bd6da67e8d39e 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 @@ -1,5 +1,5 @@ -Info 0 [16:00:35.000] Provided types map file "/a/lib/typesMap.json" doesn't exist -Info 1 [16:00:36.000] request: +Info 0 [00:00:35.000] Provided types map file "/a/lib/typesMap.json" doesn't exist +Info 1 [00:00:36.000] request: { "seq": 0, "type": "request", @@ -44,11 +44,11 @@ FsWatches:: FsWatchesRecursive:: -Info 2 [16:00:37.000] Search path: /user/username/projects/myproject/playground -Info 3 [16:00:38.000] For info: /user/username/projects/myproject/playground/tests.ts :: Config file name: /user/username/projects/myproject/playground/tsconfig.json -Info 4 [16:00:39.000] Creating configuration project /user/username/projects/myproject/playground/tsconfig.json -Info 5 [16:00:40.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/playground/tsconfig.json 2000 undefined Project: /user/username/projects/myproject/playground/tsconfig.json WatchType: Config file -Info 6 [16:00:41.000] Config: /user/username/projects/myproject/playground/tsconfig.json : { +Info 2 [00:00:37.000] Search path: /user/username/projects/myproject/playground +Info 3 [00:00:38.000] For info: /user/username/projects/myproject/playground/tests.ts :: Config file name: /user/username/projects/myproject/playground/tsconfig.json +Info 4 [00:00:39.000] Creating configuration project /user/username/projects/myproject/playground/tsconfig.json +Info 5 [00:00:40.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/playground/tsconfig.json 2000 undefined Project: /user/username/projects/myproject/playground/tsconfig.json WatchType: Config file +Info 6 [00:00:41.000] Config: /user/username/projects/myproject/playground/tsconfig.json : { "rootNames": [ "/user/username/projects/myproject/playground/tests.ts", "/user/username/projects/myproject/playground/tsconfig-json/src/src.ts", @@ -58,20 +58,20 @@ Info 6 [16:00:41.000] Config: /user/username/projects/myproject/playground/ts "configFilePath": "/user/username/projects/myproject/playground/tsconfig.json" } } -Info 7 [16:00:42.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/playground 1 undefined Config: /user/username/projects/myproject/playground/tsconfig.json WatchType: Wild card directory -Info 8 [16:00:43.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/playground 1 undefined Config: /user/username/projects/myproject/playground/tsconfig.json WatchType: Wild card directory -Info 9 [16:00:44.000] Plugins were requested but not running in environment that supports 'require'. Nothing will be loaded -Info 10 [16:00:45.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/playground/tsconfig-json/src/src.ts 500 undefined WatchType: Closed Script info -Info 11 [16:00:46.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/playground/tsconfig-json/tests/spec.ts 500 undefined WatchType: Closed Script info -Info 12 [16:00:47.000] Starting updateGraphWorker: Project: /user/username/projects/myproject/playground/tsconfig.json -Info 13 [16:00:48.000] FileWatcher:: Added:: WatchInfo: /a/lib/lib.d.ts 500 undefined WatchType: Closed Script info -Info 14 [16:00:49.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/playground/node_modules/@types 1 undefined Project: /user/username/projects/myproject/playground/tsconfig.json WatchType: Type roots -Info 15 [16:00:50.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/playground/node_modules/@types 1 undefined Project: /user/username/projects/myproject/playground/tsconfig.json WatchType: Type roots -Info 16 [16:00:51.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/playground/tsconfig.json WatchType: Type roots -Info 17 [16:00:52.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/playground/tsconfig.json WatchType: Type roots -Info 18 [16:00:53.000] Finishing updateGraphWorker: Project: /user/username/projects/myproject/playground/tsconfig.json Version: 1 structureChanged: true structureIsReused:: Not Elapsed:: *ms -Info 19 [16:00:54.000] Project '/user/username/projects/myproject/playground/tsconfig.json' (Configured) -Info 20 [16:00:55.000] Files (4) +Info 7 [00:00:42.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/playground 1 undefined Config: /user/username/projects/myproject/playground/tsconfig.json WatchType: Wild card directory +Info 8 [00:00:43.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/playground 1 undefined Config: /user/username/projects/myproject/playground/tsconfig.json WatchType: Wild card directory +Info 9 [00:00:44.000] Plugins were requested but not running in environment that supports 'require'. Nothing will be loaded +Info 10 [00:00:45.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/playground/tsconfig-json/src/src.ts 500 undefined WatchType: Closed Script info +Info 11 [00:00:46.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/playground/tsconfig-json/tests/spec.ts 500 undefined WatchType: Closed Script info +Info 12 [00:00:47.000] Starting updateGraphWorker: Project: /user/username/projects/myproject/playground/tsconfig.json +Info 13 [00:00:48.000] FileWatcher:: Added:: WatchInfo: /a/lib/lib.d.ts 500 undefined WatchType: Closed Script info +Info 14 [00:00:49.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/playground/node_modules/@types 1 undefined Project: /user/username/projects/myproject/playground/tsconfig.json WatchType: Type roots +Info 15 [00:00:50.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/playground/node_modules/@types 1 undefined Project: /user/username/projects/myproject/playground/tsconfig.json WatchType: Type roots +Info 16 [00:00:51.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/playground/tsconfig.json WatchType: Type roots +Info 17 [00:00:52.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/playground/tsconfig.json WatchType: Type roots +Info 18 [00:00:53.000] Finishing updateGraphWorker: Project: /user/username/projects/myproject/playground/tsconfig.json Version: 1 structureChanged: true structureIsReused:: Not Elapsed:: *ms +Info 19 [00:00:54.000] Project '/user/username/projects/myproject/playground/tsconfig.json' (Configured) +Info 20 [00:00:55.000] Files (4) /a/lib/lib.d.ts /user/username/projects/myproject/playground/tests.ts /user/username/projects/myproject/playground/tsconfig-json/src/src.ts @@ -87,14 +87,14 @@ Info 20 [16:00:55.000] Files (4) tsconfig-json/tests/spec.ts Matched by default include pattern '**/*' -Info 21 [16:00:56.000] ----------------------------------------------- -Info 22 [16:00:57.000] Project '/user/username/projects/myproject/playground/tsconfig.json' (Configured) -Info 22 [16:00:58.000] Files (4) +Info 21 [00:00:56.000] ----------------------------------------------- +Info 22 [00:00:57.000] Project '/user/username/projects/myproject/playground/tsconfig.json' (Configured) +Info 22 [00:00:58.000] Files (4) -Info 22 [16:00:59.000] ----------------------------------------------- -Info 22 [16:01:00.000] Open files: -Info 22 [16:01:01.000] FileName: /user/username/projects/myproject/playground/tests.ts ProjectRootPath: undefined -Info 22 [16:01:02.000] Projects: /user/username/projects/myproject/playground/tsconfig.json +Info 22 [00:00:59.000] ----------------------------------------------- +Info 22 [00:01:00.000] Open files: +Info 22 [00:01:01.000] FileName: /user/username/projects/myproject/playground/tests.ts ProjectRootPath: undefined +Info 22 [00:01:02.000] Projects: /user/username/projects/myproject/playground/tsconfig.json After request PolledWatches:: @@ -117,11 +117,11 @@ FsWatchesRecursive:: /user/username/projects/myproject/playground: {} -Info 22 [16:01:03.000] response: +Info 22 [00:01:03.000] response: { "responseRequired": false } -Info 23 [16:01:04.000] request: +Info 23 [00:01:04.000] request: { "seq": 0, "type": "request", @@ -152,12 +152,12 @@ FsWatchesRecursive:: /user/username/projects/myproject/playground: {} -Info 24 [16:01:05.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/playground/tests.ts 500 undefined WatchType: Closed Script info -Info 25 [16:01:06.000] Project '/user/username/projects/myproject/playground/tsconfig.json' (Configured) -Info 25 [16:01:07.000] Files (4) +Info 24 [00:01:05.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/playground/tests.ts 500 undefined WatchType: Closed Script info +Info 25 [00:01:06.000] Project '/user/username/projects/myproject/playground/tsconfig.json' (Configured) +Info 25 [00:01:07.000] Files (4) -Info 25 [16:01:08.000] ----------------------------------------------- -Info 25 [16:01:09.000] Open files: +Info 25 [00:01:08.000] ----------------------------------------------- +Info 25 [00:01:09.000] Open files: After request PolledWatches:: @@ -182,11 +182,11 @@ FsWatchesRecursive:: /user/username/projects/myproject/playground: {} -Info 25 [16:01:10.000] response: +Info 25 [00:01:10.000] response: { "responseRequired": false } -Info 26 [16:01:11.000] request: +Info 26 [00:01:11.000] request: { "seq": 0, "type": "request", @@ -219,12 +219,12 @@ FsWatchesRecursive:: /user/username/projects/myproject/playground: {} -Info 27 [16:01:12.000] FileWatcher:: Close:: WatchInfo: /user/username/projects/myproject/playground/tsconfig-json/tests/spec.ts 500 undefined WatchType: Closed Script info -Info 28 [16:01:13.000] Search path: /user/username/projects/myproject/playground/tsconfig-json/tests -Info 29 [16:01:14.000] For info: /user/username/projects/myproject/playground/tsconfig-json/tests/spec.ts :: Config file name: /user/username/projects/myproject/playground/tsconfig-json/tsconfig.json -Info 30 [16:01:15.000] Creating configuration project /user/username/projects/myproject/playground/tsconfig-json/tsconfig.json -Info 31 [16:01:16.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/playground/tsconfig-json/tsconfig.json 2000 undefined Project: /user/username/projects/myproject/playground/tsconfig-json/tsconfig.json WatchType: Config file -Info 32 [16:01:17.000] Config: /user/username/projects/myproject/playground/tsconfig-json/tsconfig.json : { +Info 27 [00:01:12.000] FileWatcher:: Close:: WatchInfo: /user/username/projects/myproject/playground/tsconfig-json/tests/spec.ts 500 undefined WatchType: Closed Script info +Info 28 [00:01:13.000] Search path: /user/username/projects/myproject/playground/tsconfig-json/tests +Info 29 [00:01:14.000] For info: /user/username/projects/myproject/playground/tsconfig-json/tests/spec.ts :: Config file name: /user/username/projects/myproject/playground/tsconfig-json/tsconfig.json +Info 30 [00:01:15.000] Creating configuration project /user/username/projects/myproject/playground/tsconfig-json/tsconfig.json +Info 31 [00:01:16.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/playground/tsconfig-json/tsconfig.json 2000 undefined Project: /user/username/projects/myproject/playground/tsconfig-json/tsconfig.json WatchType: Config file +Info 32 [00:01:17.000] Config: /user/username/projects/myproject/playground/tsconfig-json/tsconfig.json : { "rootNames": [ "/user/username/projects/myproject/playground/tsconfig-json/src/src.ts" ], @@ -232,19 +232,19 @@ Info 32 [16:01:17.000] Config: /user/username/projects/myproject/playground/ts "configFilePath": "/user/username/projects/myproject/playground/tsconfig-json/tsconfig.json" } } -Info 33 [16:01:18.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/playground/tsconfig-json/src 1 undefined Config: /user/username/projects/myproject/playground/tsconfig-json/tsconfig.json WatchType: Wild card directory -Info 34 [16:01:19.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/playground/tsconfig-json/src 1 undefined Config: /user/username/projects/myproject/playground/tsconfig-json/tsconfig.json WatchType: Wild card directory -Info 35 [16:01:20.000] Plugins were requested but not running in environment that supports 'require'. Nothing will be loaded -Info 36 [16:01:21.000] Starting updateGraphWorker: Project: /user/username/projects/myproject/playground/tsconfig-json/tsconfig.json -Info 37 [16:01:22.000] 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 38 [16:01:23.000] 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 39 [16:01:24.000] 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 40 [16:01:25.000] 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 41 [16:01:26.000] 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 42 [16:01:27.000] 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 43 [16:01:28.000] Finishing updateGraphWorker: Project: /user/username/projects/myproject/playground/tsconfig-json/tsconfig.json Version: 1 structureChanged: true structureIsReused:: Not Elapsed:: *ms -Info 44 [16:01:29.000] Project '/user/username/projects/myproject/playground/tsconfig-json/tsconfig.json' (Configured) -Info 45 [16:01:30.000] Files (2) +Info 33 [00:01:18.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/playground/tsconfig-json/src 1 undefined Config: /user/username/projects/myproject/playground/tsconfig-json/tsconfig.json WatchType: Wild card directory +Info 34 [00:01:19.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/playground/tsconfig-json/src 1 undefined Config: /user/username/projects/myproject/playground/tsconfig-json/tsconfig.json WatchType: Wild card directory +Info 35 [00:01:20.000] Plugins were requested but not running in environment that supports 'require'. Nothing will be loaded +Info 36 [00:01:21.000] Starting updateGraphWorker: Project: /user/username/projects/myproject/playground/tsconfig-json/tsconfig.json +Info 37 [00:01:22.000] 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 38 [00:01:23.000] 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 39 [00:01:24.000] 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 40 [00:01:25.000] 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 41 [00:01:26.000] 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 42 [00:01:27.000] 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 43 [00:01:28.000] Finishing updateGraphWorker: Project: /user/username/projects/myproject/playground/tsconfig-json/tsconfig.json Version: 1 structureChanged: true structureIsReused:: Not Elapsed:: *ms +Info 44 [00:01:29.000] Project '/user/username/projects/myproject/playground/tsconfig-json/tsconfig.json' (Configured) +Info 45 [00:01:30.000] Files (2) /a/lib/lib.d.ts /user/username/projects/myproject/playground/tsconfig-json/src/src.ts @@ -254,10 +254,10 @@ Info 45 [16:01:30.000] Files (2) src/src.ts Matched by include pattern './src' in 'tsconfig.json' -Info 46 [16:01:31.000] ----------------------------------------------- -Info 47 [16:01:32.000] `remove Project:: -Info 48 [16:01:33.000] Project '/user/username/projects/myproject/playground/tsconfig.json' (Configured) -Info 49 [16:01:34.000] Files (4) +Info 46 [00:01:31.000] ----------------------------------------------- +Info 47 [00:01:32.000] `remove Project:: +Info 48 [00:01:33.000] Project '/user/username/projects/myproject/playground/tsconfig.json' (Configured) +Info 49 [00:01:34.000] Files (4) /a/lib/lib.d.ts /user/username/projects/myproject/playground/tests.ts /user/username/projects/myproject/playground/tsconfig-json/src/src.ts @@ -273,22 +273,22 @@ Info 49 [16:01:34.000] Files (4) tsconfig-json/tests/spec.ts Matched by default include pattern '**/*' -Info 50 [16:01:35.000] ----------------------------------------------- -Info 51 [16:01:36.000] DirectoryWatcher:: Close:: WatchInfo: /user/username/projects/myproject/playground 1 undefined Config: /user/username/projects/myproject/playground/tsconfig.json WatchType: Wild card directory -Info 52 [16:01:37.000] Elapsed:: *ms DirectoryWatcher:: Close:: WatchInfo: /user/username/projects/myproject/playground 1 undefined Config: /user/username/projects/myproject/playground/tsconfig.json WatchType: Wild card directory -Info 53 [16:01:38.000] FileWatcher:: Close:: WatchInfo: /user/username/projects/myproject/playground/tsconfig.json 2000 undefined Project: /user/username/projects/myproject/playground/tsconfig.json WatchType: Config file -Info 54 [16:01:39.000] DirectoryWatcher:: Close:: WatchInfo: /user/username/projects/myproject/playground/node_modules/@types 1 undefined Project: /user/username/projects/myproject/playground/tsconfig.json WatchType: Type roots -Info 55 [16:01:40.000] Elapsed:: *ms DirectoryWatcher:: Close:: WatchInfo: /user/username/projects/myproject/playground/node_modules/@types 1 undefined Project: /user/username/projects/myproject/playground/tsconfig.json WatchType: Type roots -Info 56 [16:01:41.000] DirectoryWatcher:: Close:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/playground/tsconfig.json WatchType: Type roots -Info 57 [16:01:42.000] Elapsed:: *ms DirectoryWatcher:: Close:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/playground/tsconfig.json WatchType: Type roots -Info 58 [16:01:43.000] FileWatcher:: Close:: WatchInfo: /user/username/projects/myproject/playground/tests.ts 500 undefined WatchType: Closed Script info -Info 59 [16:01:44.000] Project '/user/username/projects/myproject/playground/tsconfig-json/tsconfig.json' (Configured) -Info 59 [16:01:45.000] Files (2) - -Info 59 [16:01:46.000] ----------------------------------------------- -Info 59 [16:01:47.000] Open files: -Info 59 [16:01:48.000] FileName: /user/username/projects/myproject/playground/tsconfig-json/tests/spec.ts ProjectRootPath: undefined -Info 59 [16:01:49.000] Projects: +Info 50 [00:01:35.000] ----------------------------------------------- +Info 51 [00:01:36.000] DirectoryWatcher:: Close:: WatchInfo: /user/username/projects/myproject/playground 1 undefined Config: /user/username/projects/myproject/playground/tsconfig.json WatchType: Wild card directory +Info 52 [00:01:37.000] Elapsed:: *ms DirectoryWatcher:: Close:: WatchInfo: /user/username/projects/myproject/playground 1 undefined Config: /user/username/projects/myproject/playground/tsconfig.json WatchType: Wild card directory +Info 53 [00:01:38.000] FileWatcher:: Close:: WatchInfo: /user/username/projects/myproject/playground/tsconfig.json 2000 undefined Project: /user/username/projects/myproject/playground/tsconfig.json WatchType: Config file +Info 54 [00:01:39.000] DirectoryWatcher:: Close:: WatchInfo: /user/username/projects/myproject/playground/node_modules/@types 1 undefined Project: /user/username/projects/myproject/playground/tsconfig.json WatchType: Type roots +Info 55 [00:01:40.000] Elapsed:: *ms DirectoryWatcher:: Close:: WatchInfo: /user/username/projects/myproject/playground/node_modules/@types 1 undefined Project: /user/username/projects/myproject/playground/tsconfig.json WatchType: Type roots +Info 56 [00:01:41.000] DirectoryWatcher:: Close:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/playground/tsconfig.json WatchType: Type roots +Info 57 [00:01:42.000] Elapsed:: *ms DirectoryWatcher:: Close:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/playground/tsconfig.json WatchType: Type roots +Info 58 [00:01:43.000] FileWatcher:: Close:: WatchInfo: /user/username/projects/myproject/playground/tests.ts 500 undefined WatchType: Closed Script info +Info 59 [00:01:44.000] Project '/user/username/projects/myproject/playground/tsconfig-json/tsconfig.json' (Configured) +Info 59 [00:01:45.000] Files (2) + +Info 59 [00:01:46.000] ----------------------------------------------- +Info 59 [00:01:47.000] Open files: +Info 59 [00:01:48.000] FileName: /user/username/projects/myproject/playground/tsconfig-json/tests/spec.ts ProjectRootPath: undefined +Info 59 [00:01:49.000] Projects: After request PolledWatches:: @@ -311,11 +311,11 @@ FsWatchesRecursive:: /user/username/projects/myproject/playground/tsconfig-json/src: {} -Info 59 [16:01:50.000] response: +Info 59 [00:01:50.000] response: { "responseRequired": false } -Info 60 [16:01:51.000] request: +Info 60 [00:01:51.000] request: { "command": "getOutliningSpans", "arguments": { @@ -346,34 +346,34 @@ FsWatchesRecursive:: /user/username/projects/myproject/playground/tsconfig-json/src: {} -Info 61 [16:01:52.000] Before ensureProjectForOpenFiles: -Info 62 [16:01:53.000] Project '/user/username/projects/myproject/playground/tsconfig-json/tsconfig.json' (Configured) -Info 62 [16:01:54.000] Files (2) - -Info 62 [16:01:55.000] ----------------------------------------------- -Info 62 [16:01:56.000] Open files: -Info 62 [16:01:57.000] FileName: /user/username/projects/myproject/playground/tsconfig-json/tests/spec.ts ProjectRootPath: undefined -Info 62 [16:01:58.000] Projects: -Info 62 [16:01:59.000] Plugins were requested but not running in environment that supports 'require'. Nothing will be loaded -Info 63 [16:02:00.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/playground/tsconfig-json/tests/tsconfig.json 2000 undefined WatchType: Config file for the inferred project root -Info 64 [16:02:01.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/playground/tsconfig-json/tests/jsconfig.json 2000 undefined WatchType: Config file for the inferred project root -Info 65 [16:02:02.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/playground/tsconfig-json/jsconfig.json 2000 undefined WatchType: Config file for the inferred project root -Info 66 [16:02:03.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/playground/tsconfig.json 2000 undefined WatchType: Config file for the inferred project root -Info 67 [16:02:04.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/playground/jsconfig.json 2000 undefined WatchType: Config file for the inferred project root -Info 68 [16:02:05.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/tsconfig.json 2000 undefined WatchType: Config file for the inferred project root -Info 69 [16:02:06.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/jsconfig.json 2000 undefined WatchType: Config file for the inferred project root -Info 70 [16:02:07.000] Starting updateGraphWorker: Project: /dev/null/inferredProject1* -Info 71 [16:02:08.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/playground/tsconfig-json/tests/node_modules/@types 1 undefined Project: /dev/null/inferredProject1* WatchType: Type roots -Info 72 [16:02:09.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/playground/tsconfig-json/tests/node_modules/@types 1 undefined Project: /dev/null/inferredProject1* WatchType: Type roots -Info 73 [16:02:10.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/playground/tsconfig-json/node_modules/@types 1 undefined Project: /dev/null/inferredProject1* WatchType: Type roots -Info 74 [16:02:11.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/playground/tsconfig-json/node_modules/@types 1 undefined Project: /dev/null/inferredProject1* WatchType: Type roots -Info 75 [16:02:12.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/playground/node_modules/@types 1 undefined Project: /dev/null/inferredProject1* WatchType: Type roots -Info 76 [16:02:13.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/playground/node_modules/@types 1 undefined Project: /dev/null/inferredProject1* WatchType: Type roots -Info 77 [16:02:14.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /dev/null/inferredProject1* WatchType: Type roots -Info 78 [16:02:15.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /dev/null/inferredProject1* WatchType: Type roots -Info 79 [16:02:16.000] Finishing updateGraphWorker: Project: /dev/null/inferredProject1* Version: 1 structureChanged: true structureIsReused:: Not Elapsed:: *ms -Info 80 [16:02:17.000] Project '/dev/null/inferredProject1*' (Inferred) -Info 81 [16:02:18.000] Files (2) +Info 61 [00:01:52.000] Before ensureProjectForOpenFiles: +Info 62 [00:01:53.000] Project '/user/username/projects/myproject/playground/tsconfig-json/tsconfig.json' (Configured) +Info 62 [00:01:54.000] Files (2) + +Info 62 [00:01:55.000] ----------------------------------------------- +Info 62 [00:01:56.000] Open files: +Info 62 [00:01:57.000] FileName: /user/username/projects/myproject/playground/tsconfig-json/tests/spec.ts ProjectRootPath: undefined +Info 62 [00:01:58.000] Projects: +Info 62 [00:01:59.000] Plugins were requested but not running in environment that supports 'require'. Nothing will be loaded +Info 63 [00:02:00.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/playground/tsconfig-json/tests/tsconfig.json 2000 undefined WatchType: Config file for the inferred project root +Info 64 [00:02:01.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/playground/tsconfig-json/tests/jsconfig.json 2000 undefined WatchType: Config file for the inferred project root +Info 65 [00:02:02.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/playground/tsconfig-json/jsconfig.json 2000 undefined WatchType: Config file for the inferred project root +Info 66 [00:02:03.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/playground/tsconfig.json 2000 undefined WatchType: Config file for the inferred project root +Info 67 [00:02:04.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/playground/jsconfig.json 2000 undefined WatchType: Config file for the inferred project root +Info 68 [00:02:05.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/tsconfig.json 2000 undefined WatchType: Config file for the inferred project root +Info 69 [00:02:06.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/jsconfig.json 2000 undefined WatchType: Config file for the inferred project root +Info 70 [00:02:07.000] Starting updateGraphWorker: Project: /dev/null/inferredProject1* +Info 71 [00:02:08.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/playground/tsconfig-json/tests/node_modules/@types 1 undefined Project: /dev/null/inferredProject1* WatchType: Type roots +Info 72 [00:02:09.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/playground/tsconfig-json/tests/node_modules/@types 1 undefined Project: /dev/null/inferredProject1* WatchType: Type roots +Info 73 [00:02:10.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/playground/tsconfig-json/node_modules/@types 1 undefined Project: /dev/null/inferredProject1* WatchType: Type roots +Info 74 [00:02:11.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/playground/tsconfig-json/node_modules/@types 1 undefined Project: /dev/null/inferredProject1* WatchType: Type roots +Info 75 [00:02:12.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/playground/node_modules/@types 1 undefined Project: /dev/null/inferredProject1* WatchType: Type roots +Info 76 [00:02:13.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/playground/node_modules/@types 1 undefined Project: /dev/null/inferredProject1* WatchType: Type roots +Info 77 [00:02:14.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /dev/null/inferredProject1* WatchType: Type roots +Info 78 [00:02:15.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /dev/null/inferredProject1* WatchType: Type roots +Info 79 [00:02:16.000] Finishing updateGraphWorker: Project: /dev/null/inferredProject1* Version: 1 structureChanged: true structureIsReused:: Not Elapsed:: *ms +Info 80 [00:02:17.000] Project '/dev/null/inferredProject1*' (Inferred) +Info 81 [00:02:18.000] Files (2) /a/lib/lib.d.ts /user/username/projects/myproject/playground/tsconfig-json/tests/spec.ts @@ -383,19 +383,19 @@ Info 81 [16:02:18.000] Files (2) spec.ts Root file specified for compilation -Info 82 [16:02:19.000] ----------------------------------------------- -Info 83 [16:02:20.000] After ensureProjectForOpenFiles: -Info 84 [16:02:21.000] Project '/user/username/projects/myproject/playground/tsconfig-json/tsconfig.json' (Configured) -Info 84 [16:02:22.000] Files (2) +Info 82 [00:02:19.000] ----------------------------------------------- +Info 83 [00:02:20.000] After ensureProjectForOpenFiles: +Info 84 [00:02:21.000] Project '/user/username/projects/myproject/playground/tsconfig-json/tsconfig.json' (Configured) +Info 84 [00:02:22.000] Files (2) -Info 84 [16:02:23.000] ----------------------------------------------- -Info 84 [16:02:24.000] Project '/dev/null/inferredProject1*' (Inferred) -Info 84 [16:02:25.000] Files (2) +Info 84 [00:02:23.000] ----------------------------------------------- +Info 84 [00:02:24.000] Project '/dev/null/inferredProject1*' (Inferred) +Info 84 [00:02:25.000] Files (2) -Info 84 [16:02:26.000] ----------------------------------------------- -Info 84 [16:02:27.000] Open files: -Info 84 [16:02:28.000] FileName: /user/username/projects/myproject/playground/tsconfig-json/tests/spec.ts ProjectRootPath: undefined -Info 84 [16:02:29.000] Projects: /dev/null/inferredProject1* +Info 84 [00:02:26.000] ----------------------------------------------- +Info 84 [00:02:27.000] Open files: +Info 84 [00:02:28.000] FileName: /user/username/projects/myproject/playground/tsconfig-json/tests/spec.ts ProjectRootPath: undefined +Info 84 [00:02:29.000] Projects: /dev/null/inferredProject1* After request PolledWatches:: @@ -434,7 +434,7 @@ FsWatchesRecursive:: /user/username/projects/myproject/playground/tsconfig-json/src: {} -Info 84 [16:02:30.000] response: +Info 84 [00:02:30.000] response: { "response": [ { 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 5831dfd053bd0..80774af8d823c 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 @@ -1,5 +1,5 @@ -Info 0 [16:00:25.000] Provided types map file "/a/lib/typesMap.json" doesn't exist -Info 1 [16:00:26.000] request: +Info 0 [00:00:25.000] Provided types map file "/a/lib/typesMap.json" doesn't exist +Info 1 [00:00:26.000] request: { "command": "open", "arguments": { @@ -41,11 +41,11 @@ FsWatches:: FsWatchesRecursive:: -Info 2 [16:00:27.000] Search path: /a/b/projects/config -Info 3 [16:00:28.000] For info: /a/b/projects/config/file.ts :: Config file name: /a/b/projects/config/tsconfig.json -Info 4 [16:00:29.000] Creating configuration project /a/b/projects/config/tsconfig.json -Info 5 [16:00:30.000] FileWatcher:: Added:: WatchInfo: /a/b/projects/config/tsconfig.json 2000 undefined Project: /a/b/projects/config/tsconfig.json WatchType: Config file -Info 6 [16:00:31.000] Config: /a/b/projects/config/tsconfig.json : { +Info 2 [00:00:27.000] Search path: /a/b/projects/config +Info 3 [00:00:28.000] For info: /a/b/projects/config/file.ts :: Config file name: /a/b/projects/config/tsconfig.json +Info 4 [00:00:29.000] Creating configuration project /a/b/projects/config/tsconfig.json +Info 5 [00:00:30.000] FileWatcher:: Added:: WatchInfo: /a/b/projects/config/tsconfig.json 2000 undefined Project: /a/b/projects/config/tsconfig.json WatchType: Config file +Info 6 [00:00:31.000] Config: /a/b/projects/config/tsconfig.json : { "rootNames": [ "/a/b/projects/config/file.ts" ], @@ -53,17 +53,17 @@ Info 6 [16:00:31.000] Config: /a/b/projects/config/tsconfig.json : { "configFilePath": "/a/b/projects/config/tsconfig.json" } } -Info 7 [16:00:32.000] DirectoryWatcher:: Added:: WatchInfo: /a/b/projects/config 1 undefined Config: /a/b/projects/config/tsconfig.json WatchType: Wild card directory -Info 8 [16:00:33.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /a/b/projects/config 1 undefined Config: /a/b/projects/config/tsconfig.json WatchType: Wild card directory -Info 9 [16:00:34.000] Plugins were requested but not running in environment that supports 'require'. Nothing will be loaded -Info 10 [16:00:35.000] Starting updateGraphWorker: Project: /a/b/projects/config/tsconfig.json -Info 11 [16:00:36.000] FileWatcher:: Added:: WatchInfo: /a/b/projects/files/file1.ts 500 undefined WatchType: Closed Script info -Info 12 [16:00:37.000] FileWatcher:: Added:: WatchInfo: /a/lib/lib.d.ts 500 undefined WatchType: Closed Script info -Info 13 [16:00:38.000] DirectoryWatcher:: Added:: WatchInfo: /a/b/projects/config/node_modules/@types 1 undefined Project: /a/b/projects/config/tsconfig.json WatchType: Type roots -Info 14 [16:00:39.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /a/b/projects/config/node_modules/@types 1 undefined Project: /a/b/projects/config/tsconfig.json WatchType: Type roots -Info 15 [16:00:40.000] Finishing updateGraphWorker: Project: /a/b/projects/config/tsconfig.json Version: 1 structureChanged: true structureIsReused:: Not Elapsed:: *ms -Info 16 [16:00:41.000] Project '/a/b/projects/config/tsconfig.json' (Configured) -Info 17 [16:00:42.000] Files (3) +Info 7 [00:00:32.000] DirectoryWatcher:: Added:: WatchInfo: /a/b/projects/config 1 undefined Config: /a/b/projects/config/tsconfig.json WatchType: Wild card directory +Info 8 [00:00:33.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /a/b/projects/config 1 undefined Config: /a/b/projects/config/tsconfig.json WatchType: Wild card directory +Info 9 [00:00:34.000] Plugins were requested but not running in environment that supports 'require'. Nothing will be loaded +Info 10 [00:00:35.000] Starting updateGraphWorker: Project: /a/b/projects/config/tsconfig.json +Info 11 [00:00:36.000] FileWatcher:: Added:: WatchInfo: /a/b/projects/files/file1.ts 500 undefined WatchType: Closed Script info +Info 12 [00:00:37.000] FileWatcher:: Added:: WatchInfo: /a/lib/lib.d.ts 500 undefined WatchType: Closed Script info +Info 13 [00:00:38.000] DirectoryWatcher:: Added:: WatchInfo: /a/b/projects/config/node_modules/@types 1 undefined Project: /a/b/projects/config/tsconfig.json WatchType: Type roots +Info 14 [00:00:39.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /a/b/projects/config/node_modules/@types 1 undefined Project: /a/b/projects/config/tsconfig.json WatchType: Type roots +Info 15 [00:00:40.000] Finishing updateGraphWorker: Project: /a/b/projects/config/tsconfig.json Version: 1 structureChanged: true structureIsReused:: Not Elapsed:: *ms +Info 16 [00:00:41.000] Project '/a/b/projects/config/tsconfig.json' (Configured) +Info 17 [00:00:42.000] Files (3) /a/lib/lib.d.ts /a/b/projects/files/file1.ts /a/b/projects/config/file.ts @@ -76,14 +76,14 @@ Info 17 [16:00:42.000] Files (3) file.ts Matched by default include pattern '**/*' -Info 18 [16:00:43.000] ----------------------------------------------- -Info 19 [16:00:44.000] Project '/a/b/projects/config/tsconfig.json' (Configured) -Info 19 [16:00:45.000] Files (3) +Info 18 [00:00:43.000] ----------------------------------------------- +Info 19 [00:00:44.000] Project '/a/b/projects/config/tsconfig.json' (Configured) +Info 19 [00:00:45.000] Files (3) -Info 19 [16:00:46.000] ----------------------------------------------- -Info 19 [16:00:47.000] Open files: -Info 19 [16:00:48.000] FileName: /a/b/projects/config/file.ts ProjectRootPath: undefined -Info 19 [16:00:49.000] Projects: /a/b/projects/config/tsconfig.json +Info 19 [00:00:46.000] ----------------------------------------------- +Info 19 [00:00:47.000] Open files: +Info 19 [00:00:48.000] FileName: /a/b/projects/config/file.ts ProjectRootPath: undefined +Info 19 [00:00:49.000] Projects: /a/b/projects/config/tsconfig.json After request PolledWatches:: @@ -102,11 +102,11 @@ FsWatchesRecursive:: /a/b/projects/config: {} -Info 19 [16:00:50.000] response: +Info 19 [00:00:50.000] response: { "responseRequired": false } -Info 20 [16:00:51.000] request: +Info 20 [00:00:51.000] request: { "command": "open", "arguments": { @@ -133,18 +133,18 @@ FsWatchesRecursive:: /a/b/projects/config: {} -Info 21 [16:00:52.000] FileWatcher:: Close:: WatchInfo: /a/b/projects/files/file1.ts 500 undefined WatchType: Closed Script info -Info 22 [16:00:53.000] Search path: /a/b/projects/files -Info 23 [16:00:54.000] For info: /a/b/projects/files/file1.ts :: No config files found. -Info 24 [16:00:55.000] Project '/a/b/projects/config/tsconfig.json' (Configured) -Info 24 [16:00:56.000] Files (3) - -Info 24 [16:00:57.000] ----------------------------------------------- -Info 24 [16:00:58.000] Open files: -Info 24 [16:00:59.000] FileName: /a/b/projects/config/file.ts ProjectRootPath: undefined -Info 24 [16:01:00.000] Projects: /a/b/projects/config/tsconfig.json -Info 24 [16:01:01.000] FileName: /a/b/projects/files/file1.ts ProjectRootPath: undefined -Info 24 [16:01:02.000] Projects: /a/b/projects/config/tsconfig.json +Info 21 [00:00:52.000] FileWatcher:: Close:: WatchInfo: /a/b/projects/files/file1.ts 500 undefined WatchType: Closed Script info +Info 22 [00:00:53.000] Search path: /a/b/projects/files +Info 23 [00:00:54.000] For info: /a/b/projects/files/file1.ts :: No config files found. +Info 24 [00:00:55.000] Project '/a/b/projects/config/tsconfig.json' (Configured) +Info 24 [00:00:56.000] Files (3) + +Info 24 [00:00:57.000] ----------------------------------------------- +Info 24 [00:00:58.000] Open files: +Info 24 [00:00:59.000] FileName: /a/b/projects/config/file.ts ProjectRootPath: undefined +Info 24 [00:01:00.000] Projects: /a/b/projects/config/tsconfig.json +Info 24 [00:01:01.000] FileName: /a/b/projects/files/file1.ts ProjectRootPath: undefined +Info 24 [00:01:02.000] Projects: /a/b/projects/config/tsconfig.json After request PolledWatches:: @@ -161,11 +161,11 @@ FsWatchesRecursive:: /a/b/projects/config: {} -Info 24 [16:01:03.000] response: +Info 24 [00:01:03.000] response: { "responseRequired": false } -Info 25 [16:01:04.000] request: +Info 25 [00:01:04.000] request: { "command": "close", "arguments": { @@ -190,14 +190,14 @@ FsWatchesRecursive:: /a/b/projects/config: {} -Info 26 [16:01:05.000] FileWatcher:: Added:: WatchInfo: /a/b/projects/config/file.ts 500 undefined WatchType: Closed Script info -Info 27 [16:01:06.000] Project '/a/b/projects/config/tsconfig.json' (Configured) -Info 27 [16:01:07.000] Files (3) +Info 26 [00:01:05.000] FileWatcher:: Added:: WatchInfo: /a/b/projects/config/file.ts 500 undefined WatchType: Closed Script info +Info 27 [00:01:06.000] Project '/a/b/projects/config/tsconfig.json' (Configured) +Info 27 [00:01:07.000] Files (3) -Info 27 [16:01:08.000] ----------------------------------------------- -Info 27 [16:01:09.000] Open files: -Info 27 [16:01:10.000] FileName: /a/b/projects/files/file1.ts ProjectRootPath: undefined -Info 27 [16:01:11.000] Projects: /a/b/projects/config/tsconfig.json +Info 27 [00:01:08.000] ----------------------------------------------- +Info 27 [00:01:09.000] Open files: +Info 27 [00:01:10.000] FileName: /a/b/projects/files/file1.ts ProjectRootPath: undefined +Info 27 [00:01:11.000] Projects: /a/b/projects/config/tsconfig.json After request PolledWatches:: @@ -216,11 +216,11 @@ FsWatchesRecursive:: /a/b/projects/config: {} -Info 27 [16:01:12.000] response: +Info 27 [00:01:12.000] response: { "responseRequired": false } -Info 28 [16:01:13.000] request: +Info 28 [00:01:13.000] request: { "command": "open", "arguments": { @@ -247,17 +247,17 @@ FsWatchesRecursive:: /a/b/projects/config: {} -Info 29 [16:01:14.000] Search path: /a/b/projects/files -Info 30 [16:01:15.000] For info: /a/b/projects/files/file2.ts :: No config files found. -Info 31 [16:01:16.000] Plugins were requested but not running in environment that supports 'require'. Nothing will be loaded -Info 32 [16:01:17.000] FileWatcher:: Added:: WatchInfo: /a/b/projects/files/tsconfig.json 2000 undefined WatchType: Config file for the inferred project root -Info 33 [16:01:18.000] FileWatcher:: Added:: WatchInfo: /a/b/projects/files/jsconfig.json 2000 undefined WatchType: Config file for the inferred project root -Info 34 [16:01:19.000] Starting updateGraphWorker: Project: /dev/null/inferredProject1* -Info 35 [16:01:20.000] DirectoryWatcher:: Added:: WatchInfo: /a/b/projects/files/node_modules/@types 1 undefined Project: /dev/null/inferredProject1* WatchType: Type roots -Info 36 [16:01:21.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /a/b/projects/files/node_modules/@types 1 undefined Project: /dev/null/inferredProject1* WatchType: Type roots -Info 37 [16:01:22.000] Finishing updateGraphWorker: Project: /dev/null/inferredProject1* Version: 1 structureChanged: true structureIsReused:: Not Elapsed:: *ms -Info 38 [16:01:23.000] Project '/dev/null/inferredProject1*' (Inferred) -Info 39 [16:01:24.000] Files (2) +Info 29 [00:01:14.000] Search path: /a/b/projects/files +Info 30 [00:01:15.000] For info: /a/b/projects/files/file2.ts :: No config files found. +Info 31 [00:01:16.000] Plugins were requested but not running in environment that supports 'require'. Nothing will be loaded +Info 32 [00:01:17.000] FileWatcher:: Added:: WatchInfo: /a/b/projects/files/tsconfig.json 2000 undefined WatchType: Config file for the inferred project root +Info 33 [00:01:18.000] FileWatcher:: Added:: WatchInfo: /a/b/projects/files/jsconfig.json 2000 undefined WatchType: Config file for the inferred project root +Info 34 [00:01:19.000] Starting updateGraphWorker: Project: /dev/null/inferredProject1* +Info 35 [00:01:20.000] DirectoryWatcher:: Added:: WatchInfo: /a/b/projects/files/node_modules/@types 1 undefined Project: /dev/null/inferredProject1* WatchType: Type roots +Info 36 [00:01:21.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /a/b/projects/files/node_modules/@types 1 undefined Project: /dev/null/inferredProject1* WatchType: Type roots +Info 37 [00:01:22.000] Finishing updateGraphWorker: Project: /dev/null/inferredProject1* Version: 1 structureChanged: true structureIsReused:: Not Elapsed:: *ms +Info 38 [00:01:23.000] Project '/dev/null/inferredProject1*' (Inferred) +Info 39 [00:01:24.000] Files (2) /a/lib/lib.d.ts /a/b/projects/files/file2.ts @@ -267,10 +267,10 @@ Info 39 [16:01:24.000] Files (2) file2.ts Root file specified for compilation -Info 40 [16:01:25.000] ----------------------------------------------- -Info 41 [16:01:26.000] `remove Project:: -Info 42 [16:01:27.000] Project '/a/b/projects/config/tsconfig.json' (Configured) -Info 43 [16:01:28.000] Files (3) +Info 40 [00:01:25.000] ----------------------------------------------- +Info 41 [00:01:26.000] `remove Project:: +Info 42 [00:01:27.000] Project '/a/b/projects/config/tsconfig.json' (Configured) +Info 43 [00:01:28.000] Files (3) /a/lib/lib.d.ts /a/b/projects/files/file1.ts /a/b/projects/config/file.ts @@ -283,22 +283,22 @@ Info 43 [16:01:28.000] Files (3) file.ts Matched by default include pattern '**/*' -Info 44 [16:01:29.000] ----------------------------------------------- -Info 45 [16:01:30.000] DirectoryWatcher:: Close:: WatchInfo: /a/b/projects/config 1 undefined Config: /a/b/projects/config/tsconfig.json WatchType: Wild card directory -Info 46 [16:01:31.000] Elapsed:: *ms DirectoryWatcher:: Close:: WatchInfo: /a/b/projects/config 1 undefined Config: /a/b/projects/config/tsconfig.json WatchType: Wild card directory -Info 47 [16:01:32.000] FileWatcher:: Close:: WatchInfo: /a/b/projects/config/tsconfig.json 2000 undefined Project: /a/b/projects/config/tsconfig.json WatchType: Config file -Info 48 [16:01:33.000] DirectoryWatcher:: Close:: WatchInfo: /a/b/projects/config/node_modules/@types 1 undefined Project: /a/b/projects/config/tsconfig.json WatchType: Type roots -Info 49 [16:01:34.000] Elapsed:: *ms DirectoryWatcher:: Close:: WatchInfo: /a/b/projects/config/node_modules/@types 1 undefined Project: /a/b/projects/config/tsconfig.json WatchType: Type roots -Info 50 [16:01:35.000] FileWatcher:: Close:: WatchInfo: /a/b/projects/config/file.ts 500 undefined WatchType: Closed Script info -Info 51 [16:01:36.000] Project '/dev/null/inferredProject1*' (Inferred) -Info 51 [16:01:37.000] Files (2) - -Info 51 [16:01:38.000] ----------------------------------------------- -Info 51 [16:01:39.000] Open files: -Info 51 [16:01:40.000] FileName: /a/b/projects/files/file1.ts ProjectRootPath: undefined -Info 51 [16:01:41.000] Projects: -Info 51 [16:01:42.000] FileName: /a/b/projects/files/file2.ts ProjectRootPath: undefined -Info 51 [16:01:43.000] Projects: /dev/null/inferredProject1* +Info 44 [00:01:29.000] ----------------------------------------------- +Info 45 [00:01:30.000] DirectoryWatcher:: Close:: WatchInfo: /a/b/projects/config 1 undefined Config: /a/b/projects/config/tsconfig.json WatchType: Wild card directory +Info 46 [00:01:31.000] Elapsed:: *ms DirectoryWatcher:: Close:: WatchInfo: /a/b/projects/config 1 undefined Config: /a/b/projects/config/tsconfig.json WatchType: Wild card directory +Info 47 [00:01:32.000] FileWatcher:: Close:: WatchInfo: /a/b/projects/config/tsconfig.json 2000 undefined Project: /a/b/projects/config/tsconfig.json WatchType: Config file +Info 48 [00:01:33.000] DirectoryWatcher:: Close:: WatchInfo: /a/b/projects/config/node_modules/@types 1 undefined Project: /a/b/projects/config/tsconfig.json WatchType: Type roots +Info 49 [00:01:34.000] Elapsed:: *ms DirectoryWatcher:: Close:: WatchInfo: /a/b/projects/config/node_modules/@types 1 undefined Project: /a/b/projects/config/tsconfig.json WatchType: Type roots +Info 50 [00:01:35.000] FileWatcher:: Close:: WatchInfo: /a/b/projects/config/file.ts 500 undefined WatchType: Closed Script info +Info 51 [00:01:36.000] Project '/dev/null/inferredProject1*' (Inferred) +Info 51 [00:01:37.000] Files (2) + +Info 51 [00:01:38.000] ----------------------------------------------- +Info 51 [00:01:39.000] Open files: +Info 51 [00:01:40.000] FileName: /a/b/projects/files/file1.ts ProjectRootPath: undefined +Info 51 [00:01:41.000] Projects: +Info 51 [00:01:42.000] FileName: /a/b/projects/files/file2.ts ProjectRootPath: undefined +Info 51 [00:01:43.000] Projects: /dev/null/inferredProject1* After request PolledWatches:: @@ -315,11 +315,11 @@ FsWatches:: FsWatchesRecursive:: -Info 51 [16:01:44.000] response: +Info 51 [00:01:44.000] response: { "responseRequired": false } -Info 52 [16:01:45.000] request: +Info 52 [00:01:45.000] request: { "command": "occurrences", "arguments": { @@ -346,23 +346,23 @@ FsWatches:: FsWatchesRecursive:: -Info 53 [16:01:46.000] Before ensureProjectForOpenFiles: -Info 54 [16:01:47.000] Project '/dev/null/inferredProject1*' (Inferred) -Info 54 [16:01:48.000] Files (2) - -Info 54 [16:01:49.000] ----------------------------------------------- -Info 54 [16:01:50.000] Open files: -Info 54 [16:01:51.000] FileName: /a/b/projects/files/file1.ts ProjectRootPath: undefined -Info 54 [16:01:52.000] Projects: -Info 54 [16:01:53.000] FileName: /a/b/projects/files/file2.ts ProjectRootPath: undefined -Info 54 [16:01:54.000] Projects: /dev/null/inferredProject1* -Info 54 [16:01:55.000] Plugins were requested but not running in environment that supports 'require'. Nothing will be loaded -Info 55 [16:01:56.000] Starting updateGraphWorker: Project: /dev/null/inferredProject2* -Info 56 [16:01:57.000] DirectoryWatcher:: Added:: WatchInfo: /a/b/projects/files/node_modules/@types 1 undefined Project: /dev/null/inferredProject2* WatchType: Type roots -Info 57 [16:01:58.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /a/b/projects/files/node_modules/@types 1 undefined Project: /dev/null/inferredProject2* WatchType: Type roots -Info 58 [16:01:59.000] Finishing updateGraphWorker: Project: /dev/null/inferredProject2* Version: 1 structureChanged: true structureIsReused:: Not Elapsed:: *ms -Info 59 [16:02:00.000] Project '/dev/null/inferredProject2*' (Inferred) -Info 60 [16:02:01.000] Files (2) +Info 53 [00:01:46.000] Before ensureProjectForOpenFiles: +Info 54 [00:01:47.000] Project '/dev/null/inferredProject1*' (Inferred) +Info 54 [00:01:48.000] Files (2) + +Info 54 [00:01:49.000] ----------------------------------------------- +Info 54 [00:01:50.000] Open files: +Info 54 [00:01:51.000] FileName: /a/b/projects/files/file1.ts ProjectRootPath: undefined +Info 54 [00:01:52.000] Projects: +Info 54 [00:01:53.000] FileName: /a/b/projects/files/file2.ts ProjectRootPath: undefined +Info 54 [00:01:54.000] Projects: /dev/null/inferredProject1* +Info 54 [00:01:55.000] Plugins were requested but not running in environment that supports 'require'. Nothing will be loaded +Info 55 [00:01:56.000] Starting updateGraphWorker: Project: /dev/null/inferredProject2* +Info 56 [00:01:57.000] DirectoryWatcher:: Added:: WatchInfo: /a/b/projects/files/node_modules/@types 1 undefined Project: /dev/null/inferredProject2* WatchType: Type roots +Info 57 [00:01:58.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /a/b/projects/files/node_modules/@types 1 undefined Project: /dev/null/inferredProject2* WatchType: Type roots +Info 58 [00:01:59.000] Finishing updateGraphWorker: Project: /dev/null/inferredProject2* Version: 1 structureChanged: true structureIsReused:: Not Elapsed:: *ms +Info 59 [00:02:00.000] Project '/dev/null/inferredProject2*' (Inferred) +Info 60 [00:02:01.000] Files (2) /a/lib/lib.d.ts /a/b/projects/files/file1.ts @@ -372,21 +372,21 @@ Info 60 [16:02:01.000] Files (2) file1.ts Root file specified for compilation -Info 61 [16:02:02.000] ----------------------------------------------- -Info 62 [16:02:03.000] After ensureProjectForOpenFiles: -Info 63 [16:02:04.000] Project '/dev/null/inferredProject1*' (Inferred) -Info 63 [16:02:05.000] Files (2) - -Info 63 [16:02:06.000] ----------------------------------------------- -Info 63 [16:02:07.000] Project '/dev/null/inferredProject2*' (Inferred) -Info 63 [16:02:08.000] Files (2) - -Info 63 [16:02:09.000] ----------------------------------------------- -Info 63 [16:02:10.000] Open files: -Info 63 [16:02:11.000] FileName: /a/b/projects/files/file1.ts ProjectRootPath: undefined -Info 63 [16:02:12.000] Projects: /dev/null/inferredProject2* -Info 63 [16:02:13.000] FileName: /a/b/projects/files/file2.ts ProjectRootPath: undefined -Info 63 [16:02:14.000] Projects: /dev/null/inferredProject1* +Info 61 [00:02:02.000] ----------------------------------------------- +Info 62 [00:02:03.000] After ensureProjectForOpenFiles: +Info 63 [00:02:04.000] Project '/dev/null/inferredProject1*' (Inferred) +Info 63 [00:02:05.000] Files (2) + +Info 63 [00:02:06.000] ----------------------------------------------- +Info 63 [00:02:07.000] Project '/dev/null/inferredProject2*' (Inferred) +Info 63 [00:02:08.000] Files (2) + +Info 63 [00:02:09.000] ----------------------------------------------- +Info 63 [00:02:10.000] Open files: +Info 63 [00:02:11.000] FileName: /a/b/projects/files/file1.ts ProjectRootPath: undefined +Info 63 [00:02:12.000] Projects: /dev/null/inferredProject2* +Info 63 [00:02:13.000] FileName: /a/b/projects/files/file2.ts ProjectRootPath: undefined +Info 63 [00:02:14.000] Projects: /dev/null/inferredProject1* After request PolledWatches:: @@ -403,7 +403,7 @@ FsWatches:: FsWatchesRecursive:: -Info 63 [16:02:15.000] response: +Info 63 [00:02:15.000] response: { "response": [], "responseRequired": true 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 0aa7c30a7eb38..0feeee010598f 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 @@ -1,4 +1,4 @@ -Info 0 [16:00:09.000] Provided types map file "/typesMap.json" doesn't exist +Info 0 [00:00:09.000] Provided types map file "/typesMap.json" doesn't exist Creating project service //// [/a/b/f1.html]